diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0cdb40fae3fb1a10f93047c2a5a5de695778ecb8..f5afe18a5b52bf0ee6b217090819734be0b445b7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -74,11 +74,11 @@ coverage: pages: stage: deploy only: - - cookBux + - develop except: - schedules script: - - cd sphinx-doc/ + - cd sphinxdoc/ - pip install -r requirements_sphinx.txt - make doc - cp -r _build/html ../public diff --git a/CHANGELOG.md b/CHANGELOG.md index da88ffd8683a4b990ccc82e228ef41dc5e913d75..62b8c92c7286c9dc1a341ebeb66b420eea07e4f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,92 +1,39 @@ -# 1.1 - -## Features -- register is importable from the top level module -- flagIsolated now respects time gaps in addition to value numbers -- Make the comparator argument to isflagged available from the config - - -## Bugfixes -- Fixed missing constant lookup in the evaluator -- Preserve untouched/checked variables and don't remove them from the data input - - -## Refactorings --- - -## Breaking Changes --- - -# 1.2 - -## Features -- Python 3.8 support -- exe: added the dmp flagger option -- exe: use nodata argument as nodata-representation in output -- flagging functions: implemented flagging function aiming to flag invalid value raises in a given time range -- anaconda support - -## Bugfixes -- pass the harmonization function names to the flagger -- variables not listed in the varname column of the configuration file - were not available in generic tests -- Harmonization by interpolation, now will no longer insert a BAD-flagged but propperly interpolated value between two frequency alligned meassurements, that are seperated exactly by a margin of two times the frequency (instead, BAD flagged NaN gets inserted - as expected) -- Fixed "not a frequency" - bug, occuring when trying to aggregate values to a 1-unit-frequency (1 Day, 1 Hour, ...) - -## Refactorings -- configuration reader rework - -## Breaking Changes --- - -# 1.3 - -## Features -- spike detection test `spikes_flagRaise` -- spike detection test `spikes_oddWater` -- generic processing function `procGeneric` - -## Bugfixes -- configuration: certain whitespace patterns broke the configuration parsing -- configuration: multiple tests in one configuration row were not parsed correctly -- reader: variables only available within the flagger were not transformed correctly - -## Refactorings -- Improved logging - -## Breaking Changes -- configuration: quoted variable names are handled as regular expressions -- functions: renamed many test functions to a uniform naming scheme - - -# 1.4 - -## Features -- added the data processing module `proc_functions` -- `flagCrossValidation` implemented -- CLI: added support for parquet files - -## Bugfixes -- `spikes_flagRaise` - overestimation of value courses average fixed -- `spikes_flagRaise` - raise check window now closed on both sides - -## Refactorings -- renamed `spikes_oddWater` to `spikes_flagMultivarScores` -- added STRAY auto treshing algorithm to `spikes_flagMultivarScores` -- added "unflagging" - postprocess to `spikes_flagMultivarScores` -- improved and extended masking - -## Breaking Changes -- register is now a decorator instead of a wrapper - -# 1.5 - -coming soon ... - -## Features - -## Bugfixes - -## Refactorings - -## Breaking Changes +# Changelog + +This changelog starts with version 2.0.0. Basically all parts of the system, including the format of this changelog, have been reworked between the releases 1.4 and 2.0. Preceding the major breaking release 2.0, the maintenance of this file was rather sloppy, so we won't provide a detailed change history for early versions. + + +## [Unreleased] +### Added +### Changed +### Removed +### Fixed + +## [2.0.1] - 2021-12-20 +### Added +- CLI now accepts remote configuration and data files as URL +- new function `transferFlags` +- improved error messages from `flagGeneric` and `processGeneric` +- new `ax_kwargs` keyword to `SaQC.plot` function +### Changed +- generate documentation from the `develop` branch +- doctest is now ran upon push to the `develop` branch, failing doc snippets cause CI-pipeline to fail +- renamed function `flagCrossStatistic` to `flagCrossStatistics` +### Removed +- removed function `flagDriftFromScaledNorm` +- removed `stats` keywords and functionality from `SaQC.plot` function +### Fixed +- RDM/UFZ logos: + - use the English versions of the respective images + - use full URLs instead of the repository local URLs in `README.md` +- fix code snippets in `README.md` +- fix version confusion +- `copyField`: fix misleading error message +- `flagGeneric`: fix failure on empty data +- existing `target` variables led to function calls on `target` instead of `field` +- the functions `flagDriftFromNorm`, `flagDriftFromReference`, `flagCrossStatistics` and `flagMVScores` now properly support the field-target workflow +- `field` was not masked for resampling functions +- allow custom registered functions to overwrite built-ins. + +## [2.0.0] - 2021-11-25 +This release marks the beginning of a new release cycle. Basically the entire system got reworked between versions 1.4 and 2.0, a detailed changelog is not recoverable and/or useful. diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 0000000000000000000000000000000000000000..4f6b69fbf66c3f6a6fa262917ee04360292dade5 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,34 @@ +cff-version: 1.2.0 +title: SaQC - System for automated Quality Control +message: "Please cite this software using these metadata." +type: software +version: 2.0.0 +doi: +date-released: "2021-11-25" +license: "GPL-3.0" +repository-code: "https://git.ufz.de/rdm-software/saqc" +keywords: + - time series data + - environmental sensor data +authors: + - given-names: David + family-names: Schäfer + email: david.schaefer@ufz.de + affiliation: >- + Helmholtz Centre for Environmental Research - + UFZ + orcid: 'https://orcid.org/0000-0003-4517-6459' + - given-names: Bert + family-names: Palm + email: bert.palm@ufz.de + affiliation: >- + Helmholtz Centre for Environmental Research - + UFZ + orcid: 'https://orcid.org/0000-0000-0000-0000' + - given-names: Peter + family-names: Lünenschloß + email: peter.luenenschloss@ufz.de + affiliation: >- + Helmholtz Centre for Environmental Research - + UFZ + orcid: 'https://orcid.org/0000-0000-0000-0000' diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4cd12ace56e9e2fe51bd4530adef4c0eab10f4b4..f9dcdbbc8370ca06ed44a449e43657f17918c280 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,5 +1,5 @@ # Development Environment -We recommend a virtual python environment for development. The setup process is described in detail in our [GettingStarted](docs/GettingStarted.md). +We recommend a virtual python environment for development, a more detailed description of the setup process can be found in the [docs](https://rdm-software.pages.ufz.de/saqc/getting_started/InstallationGuide.html#set-up-a-virtual-environment). # Testing SaQC comes with an extensive test suite based on [pytest](https://docs.pytest.org/en/latest/). @@ -59,7 +59,7 @@ It is not a shame to name a parameter just `n` or `alpha` etc. if for example th - testnames: [testmodule_]flagTestName ## Formatting -We use (black)[https://black.readthedocs.io/en/stable/] in its default settings. +We use [black](https://black.readthedocs.io/en/stable/) in its default settings. Within the `saqc` root directory run `black .`. ## Imports @@ -71,12 +71,12 @@ Only absolute imports are accepted. - `master` - branch: + Stable and usually protected. - + Regular merges from `develop` according to the [release cycle](#release-cycle). These merges get a tag, increasing at least the minor version. - + Irregular merges from `develop` in case if critical bugs. Such merges increase at least the patch level. - + Merges into `master` usually lead to a PyPI release + + Regular merges from `develop`, these merges are tagged and increasing at least the minor version. + + Irregular merges from `develop` in case of critical bugs. Such merges increase at least the patch level. + + Merges into `master` usually lead to a PyPI release. - `develop` - branch: - + The main development branch, no hard stability requirements/guarantees - + Merges into `develop` should mostly follow a Merge Request Workflow, minor changes can however be committed directly. Such minor changes include: + + The main development branch, no hard stability requirements/guarantees. + + Merges into `develop` should mostly follow a [Merge Request Workflow](#merge-request-workflow), minor changes can however be committed directly. Such minor changes include: * Typos and white space changes * Obvious bug in features implemented by the committing developer diff --git a/README.md b/README.md index dce9fa2b991795df90649c93e5f6a9abd58b8720..80533c112ba9969b40617dc882ef135209f3b2a8 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,12 @@ +<a href="https://www.ufz.de/index.php?en=33573"> + <img src="https://git.ufz.de/rdm-software/saqc/raw/develop/sphinxdoc/ressources/images/Representative/UFZLogo.png" width="400"/> +</a> -<img src="sphinx-doc/ressources/images/Representative/UFZLogo.jpg" width="400"/> +<a href="https://www.ufz.de/index.php?en=45348"> + <img src="https://git.ufz.de/rdm-software/saqc/raw/develop/sphinxdoc/ressources/images/Representative/RDMLogo.png" align="right" width="220"/> +</a> -<img src="sphinx-doc/ressources/images/Representative/RDMlogo.jpg" align="right" width="180"/> +[](https://www.repostatus.org/#active) # System for automated Quality Control (SaQC) @@ -40,24 +45,34 @@ and a python module with a simple API. The command line application is controlled by a semicolon-separated text file listing the variables in the dataset and the routines to inspect, quality control and/or process them. The content of such a configuration -could look like this: +could look like [this](https://git.ufz.de/rdm-software/saqc/raw/develop/ressources/data/config.csv): ``` varname ; test -#----------;------------------------------------ -SM2 ; shiftToFreq(freq="15Min") -SM2 ; flagMissing() -'SM(1|2)+' ; flagRange(min=10, max=60) -SM2 ; flagMad(window="30d", z=3.5) +#----------; ----------------------------------------------------- +SM2 ; shift(freq="15Min") +'SM(1|2)+' ; flagMissing() +SM1 ; flagRange(min=10, max=60) +SM2 ; flagRange(min=10, max=40) +SM2 ; flagMAD(window="30d", z=3.5) +Dummy ; flagGeneric(field=["SM1", "SM2"], func=(isflagged(x) | isflagged(y))) ``` As soon as the basic inputs, dataset and configuration file, are -prepared, `SaQC` is run with: +prepared, run `SaQC`: ```sh saqc \ - --config path_to_configuration.txt \ - --data path_to_data.csv \ - --outfile path_to_output.csv + --config PATH_TO_CONFIGURATION \ + --data PATH_TO_DATA \ + --outfile PATH_TO_OUTPUT +``` + +A full `SaQC` run against provided example data can be invoked with: +```sh +saqc \ + --config https://git.ufz.de/rdm-software/saqc/raw/develop/ressources/data/config.csv \ + --data https://git.ufz.de/rdm-software/saqc/raw/develop/ressources/data/data.csv \ + --outfile saqc_test.csv ``` ### SaQC as a python module @@ -66,18 +81,48 @@ The following snippet implements the same configuration given above through the Python-API: ```python -import numpy as np +import pandas as pd from saqc import SaQC -saqc = (SaQC(data) - .shiftToFreq("SM2", freq="15Min") - .flagMissing("SM2") - .flagRange("SM(1|2)+", regex=True, min=10, max=60) - .flagMad("SM2", window="30d", z=3.5)) - -data, flags = saqc.getResult() +data = pd.read_csv( + "https://git.ufz.de/rdm-software/saqc/raw/develop/ressources/data/data.csv", + index_col=0, parse_dates=True, +) + +saqc = SaQC(data=data) +saqc = (saqc + .shift("SM2", freq="15Min") + .flagMissing("SM(1|2)+", regex=True) + .flagRange("SM1", min=10, max=60) + .flagRange("SM2", min=10, max=40) + .flagMAD("SM2", window="30d", z=3.5) + .flagGeneric(field=["SM1", "SM2"], target="Dummy", func=lambda x, y: (isflagged(x) | isflagged(y)))) ``` A more detailed description of the Python API is available in the [respective section](https://rdm-software.pages.ufz.de/saqc/getting_started/TutorialAPI.html) of the documentation. + +## Changelog +All notable changes to this project will be documented in [CHANGELOG.md](CHANGELOG.md). + +## Contributing +You found a bug or you want to suggest some cool features? Please refer to our [contributing guidelines](CONTRIBUTING.md) to see how you can contribute to SaQC. + +## Copyright and License +Copyright(c) 2021, [Helmholtz-Zentrum für Umweltforschung GmbH -- UFZ](https://www.ufz.de). All rights reserved. + +- Documentation: [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/) <a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/80x15.png" /></a> +- Source code: [GNU General Public License 3](https://www.gnu.org/licenses/gpl-3.0.html) + +For full details, see [LICENSE](LICENSE.md). + +## Acknowledgements +... + +## Publications +... + +## How to cite SaQC +... + diff --git a/dios/requirements.txt b/dios/requirements.txt index 139f044f250877d0aaf33406d2e4e87334691a46..4c87cfb3c08c272e57b405bf580e6e7f6632daa3 100644 --- a/dios/requirements.txt +++ b/dios/requirements.txt @@ -1,5 +1,5 @@ numpy==1.21.2 -pandas==1.3.3 -python-dateutil==2.8.1 -pytz==2021.1 +pandas==1.3.4 +python-dateutil==2.8.2 +pytz==2021.3 six==1.16.0 diff --git a/requirements.txt b/requirements.txt index 1f9510979613e3a9e7a33d24e12ed37b54412251..5bf2d384d7b87874d58ed5a8b8866fff529a74ab 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,15 +1,15 @@ -Click==8.0.1 +Click==8.0.3 dtw==1.4.0 -hypothesis==6.23.1 -matplotlib==3.4.3 -numba==0.54.0 +hypothesis==6.29.0 +matplotlib==3.5.0 +numba==0.54.1 numpy==1.20.3 outlier-utils==0.0.3 -pyarrow==4.0.1 -pandas==1.3.3 +pyarrow==6.0.1 +pandas==1.3.4 pytest==6.2.5 pytest-lazy-fixture==0.6.3 -scikit-learn==1.0 -scipy==1.7.1 -typing_extensions==3.10.0.2 +scikit-learn==1.0.1 +scipy==1.7.3 +typing_extensions==4.0.0 seaborn==0.11.2 diff --git a/saqc/__init__.py b/saqc/__init__.py index 7bd3bb9011a94d76edd502681c34855fee6c9d42..7b00e20cbdf8095266a203f1fd66f968837080d6 100644 --- a/saqc/__init__.py +++ b/saqc/__init__.py @@ -2,9 +2,8 @@ # -*- coding: utf-8 -*- """The system for automated quality controll package.""" -__version__ = "1.4" +from saqc.version import __version__ -# import order: from small to big from saqc.constants import ( UNFLAGGED, GOOD, @@ -12,6 +11,7 @@ from saqc.constants import ( BAD, ) +# import order: from small to big, to a void cycles from saqc.core import ( Flags, SaQC, diff --git a/saqc/__main__.py b/saqc/__main__.py index 1326bd0be4a96628804a86b826963aad6e7297a1..8068d96c05deafc395986f2bd85dd635489bf128 100644 --- a/saqc/__main__.py +++ b/saqc/__main__.py @@ -65,14 +65,14 @@ def writeData(writer_dict, df, fname): @click.option( "-c", "--config", - type=click.Path(exists=True), + type=click.Path(), required=True, help="path to the configuration file", ) @click.option( "-d", "--data", - type=click.Path(exists=True), + type=click.Path(), multiple=True, required=True, help="path to the data file", diff --git a/saqc/core/__init__.py b/saqc/core/__init__.py index cf86db46d2572cdca0c32b7ae2bc098bfa52ddef..5146d88130f3d449ff4fbdf59af0e744a4a50e9a 100644 --- a/saqc/core/__init__.py +++ b/saqc/core/__init__.py @@ -3,6 +3,7 @@ from saqc.core.register import register, flagging, processing from saqc.core.flags import Flags, initFlagsLike +from saqc.core.history import History from saqc.core.core import SaQC from saqc.core.translation import ( FloatScheme, diff --git a/saqc/core/core.py b/saqc/core/core.py index b7bb6050b0069252e7c63958e2d57bc744e1820f..2de8f7b987ed37a3f5878c1009a44886dac2e231 100644 --- a/saqc/core/core.py +++ b/saqc/core/core.py @@ -140,7 +140,6 @@ class SaQC(FunctionsMixin): def _expandFields( self, regex: bool, - multivariate: bool, field: str | Sequence[str], target: str | Sequence[str] = None, ) -> Tuple[List[str], List[str]]: @@ -148,10 +147,6 @@ class SaQC(FunctionsMixin): check and expand `field` and `target` """ - if regex and target is not None: - raise NotImplementedError( - "explicit `target` not supported with regular expressions" - ) # expand regular expressions if regex: fmask = self._data.columns.str.match(field) @@ -161,14 +156,6 @@ class SaQC(FunctionsMixin): targets = fields if target is None else toSequence(target) - if multivariate: - # wrap again to generalize the down stream loop - fields, targets = [fields], [targets] - else: - if len(fields) != len(targets): - raise ValueError( - "expected the same number of 'field' and 'target' values" - ) return fields, targets def _wrap(self, func: FunctionWrapper): @@ -198,38 +185,48 @@ class SaQC(FunctionsMixin): kwargs.setdefault("dfilter", self._scheme.DFILTER_DEFAULT) if not isinstance(flag, OptionalNone): - # translation schemes might want to use a flag, - # None so we introduce a special class here + # translation schemes might want to use a flag + # `None` so we introduce a special class here kwargs["flag"] = self._scheme(flag) fields, targets = self._expandFields( - regex=regex, multivariate=func.multivariate, field=field, target=target + regex=regex, field=field, target=target ) - out = self - for field, target in zip(fields, targets): - - fkwargs = { - **kwargs, - "field": field, - "target": target, - } + if not func.handles_target: + if len(fields) != len(targets): + raise ValueError( + "expected the same number of 'field' and 'target' values" + ) - if not func.handles_target and field != target: - if target not in self.data.columns: + # initialize all target variables + for src, trg in zip(fields, targets): + if src != trg: out = out._callFunction( FUNC_MAP["copyField"], - *args, - **fkwargs, + field=src, + target=trg, + overwrite=True, ) - fkwargs["field"] = fkwargs.pop("target") + if func.multivariate: + # pass all fields and targets out = out._callFunction( func, + field=fields, + target=targets, *args, - **fkwargs, + **kwargs, ) + else: + # call the function on target + for src, trg in zip(fields, targets): + fkwargs = {**kwargs, "field": src, "target": trg} + if not func.handles_target: + fkwargs["field"] = fkwargs.pop("target") + out = out._callFunction(func, *args, **fkwargs) + return out return inner diff --git a/saqc/core/flags.py b/saqc/core/flags.py index 6b119d70491d63ac59b442ca7aaf5e87b80eb1e6..fa990c1788e0339d6c4738260f664de8aeb5c4ad 100644 --- a/saqc/core/flags.py +++ b/saqc/core/flags.py @@ -70,51 +70,63 @@ class Flags: We create an empty instance, by calling ``Flags`` without any arguments and then add a column to it. - >>> from saqc.constants import UNFLAGGED, BAD, DOUBTFUL - >>> flags = Flags() - >>> flags - Empty Flags - Columns: [] + .. doctest:: exampleFlags + >>> from saqc.constants import UNFLAGGED, BAD, DOUBTFUL + >>> flags = saqc.Flags() + >>> flags + Empty Flags + Columns: [] - >>> flags['v0'] = pd.Series([BAD,BAD,UNFLAGGED], dtype=float) - >>> flags - v0 | - ======== | - 0 255.0 | - 1 255.0 | - 2 -inf | + .. doctest:: exampleFlags + + >>> flags['v0'] = pd.Series([BAD,BAD,UNFLAGGED], dtype=float) + >>> flags # doctest:+NORMALIZE_WHITESPACE + v0 | + ======== | + 0 255.0 | + 1 255.0 | + 2 -inf | + <BLANKLINE> Once the column exist, we cannot overwrite it anymore, with a different series. - >>> flags = Flags() - >>> flags['v0'] = pd.Series([666.], dtype=float) - Traceback (most recent call last): - some file path ... - ValueError: Index does not match + .. doctest:: exampleFlags + + >>> flags['v0'] = pd.Series([666.], dtype=float) # doctest:+ELLIPSIS + Traceback (most recent call last): + ... + ValueError: Index does not match + But if we pass a series, which index match it will work, because the series now is interpreted as value-to-set. - >>> flags['v0'] = pd.Series([DOUBT,np.nan,DOUBT], dtype=float) - >>> flags - v0 | - ======== | - 0 25.0 | - 1 255.0 | - 2 25.0 | + .. doctest:: exampleFlags + + >>> flags['v0'] = pd.Series([DOUBTFUL,np.nan,DOUBTFUL], dtype=float) + >>> flags # doctest:+NORMALIZE_WHITESPACE + v0 | + ======== | + 0 25.0 | + 1 255.0 | + 2 25.0 | + <BLANKLINE> As we see above, the column now holds a combination from the values from the first and the second set. This is, because ``numpy.nan`` was used. We can inspect all the updates that was made by looking in the history. - >>> flags['v0'] = pd.Series([DOUBTFUL, np.nan, DOUBTFUL], dtype=float) - >>> flags.history['v0'] - 0 1 - 0 (255.0) 25.0 - 1 255.0 nan - 2 (-inf) 25.0 + .. doctest:: exampleFlags + + >>> flags['v0'] = pd.Series([DOUBTFUL, np.nan, DOUBTFUL], dtype=float) + >>> flags.history['v0'] # doctest:+NORMALIZE_WHITESPACE + 0 1 2 + 0 255.0 25.0 25.0 + 1 255.0 nan nan + 2 -inf 25.0 25.0 + As we see now, the second call sets ``25.0`` and shadows (represented by the parentheses) ``(255.0)`` in the first row and ``(-inf)`` in the last, but in the second row ``255.0`` still is valid, because it was @@ -123,19 +135,25 @@ class Flags: It is also possible to set values by a mask, which can be interpreted as condidional setting. Imagine we want to `reset` all flags to ``0.`` if the existing flags are lower that ``255.``. - >>> mask = flags['v0'] < BAD - >>> mask - 0 True - 1 False - 2 True - dtype: bool - >>> flags[mask, 'v0'] = 0 - >>> flags - v0 | - ======== | - 0 0.0 | - 1 255.0 | - 2 0.0 | + .. doctest:: exampleFlags + + >>> mask = flags['v0'] < BAD + >>> mask # doctest:+NORMALIZE_WHITESPACE + 0 True + 1 False + 2 True + Name: 2, dtype: bool + + .. doctest:: exampleFlags + + >>> flags[mask, 'v0'] = 0 + >>> flags # doctest:+NORMALIZE_WHITESPACE + v0 | + ======== | + 0 0.0 | + 1 255.0 | + 2 0.0 | + <BLANKLINE> The objects you can pass as a row selector (``flags[rows, column]``) are: @@ -145,21 +163,27 @@ class Flags: For example, to set `all` values to a scalar value, use a Null-slice: - >>> flags[:, 'v0'] = 99.0 - >>> flags - v0 | - ======= | - 0 99.0 | - 1 99.0 | - 2 99.0 | - - After all calls presented here, the history look like this: - - >>> flags.history['v0'] - 0 1 2 3 - 0 (255.0) (25.0) (0.0) 99.0 - 1 (255.0) (nan) (nan) 99.0 - 2 (-inf) (25.0) (0.0) 99.0 + .. doctest:: exampleFlags + + >>> flags[:, 'v0'] = 99.0 + >>> flags # doctest:+NORMALIZE_WHITESPACE + v0 | + ======= | + 0 99.0 | + 1 99.0 | + 2 99.0 | + <BLANKLINE> + + + After all calls presented here, the history looks like this: + + .. doctest:: exampleFlags + + >>> flags.history['v0'] + 0 1 2 3 4 + 0 255.0 25.0 25.0 0.0 99.0 + 1 255.0 nan nan nan 99.0 + 2 -inf 25.0 25.0 0.0 99.0 """ def __init__( diff --git a/saqc/core/history.py b/saqc/core/history.py index 9aa1859bdc996d6bc0cba75d037271e8c054e062..f035da7238ad929885feeee0a9e601609c6ff715 100644 --- a/saqc/core/history.py +++ b/saqc/core/history.py @@ -2,14 +2,12 @@ from __future__ import annotations from copy import deepcopy, copy as shallowcopy -import itertools +from typing import Dict, Tuple, Union, List, Any -from typing import Dict, Tuple, Type, Union, List, Any -from typing_extensions import Literal import pandas as pd import numpy as np -from saqc.constants import * +from saqc.constants import UNFLAGGED class History: diff --git a/saqc/core/modules/drift.py b/saqc/core/modules/drift.py index e2b6c4f2aed1ed01af14792db6907074d748e1f8..2cc22ff5c092426e08381a94e957350fac7d9e10 100644 --- a/saqc/core/modules/drift.py +++ b/saqc/core/modules/drift.py @@ -41,31 +41,11 @@ class Drift: np.array([x, y]), metric="cityblock" ) / len(x), - target=None, flag: float = BAD, **kwargs ) -> saqc.SaQC: return self._defer("flagDriftFromReference", locals()) - def flagDriftFromScaledNorm( - self, - field: str, - set_1: Sequence[str], - set_2: Sequence[str], - freq: str, - spread: float, - frac: float = 0.5, - metric: Callable[[np.ndarray, np.ndarray], float] = lambda x, y: pdist( - np.array([x, y]), metric="cityblock" - ) - / len(x), - method: LinkageString = "single", - target: str = None, - flag: float = BAD, - **kwargs - ) -> saqc.SaQC: - return self._defer("flagDriftFromScaledNorm", locals()) - def correctDrift( self, field: str, diff --git a/saqc/core/modules/flagtools.py b/saqc/core/modules/flagtools.py index 0df9dfc27d5b3e2c9761d40a2a6299f5f5fcbd47..bad840b58e2396dc9876ba966fad60bdc47f8d1e 100644 --- a/saqc/core/modules/flagtools.py +++ b/saqc/core/modules/flagtools.py @@ -39,3 +39,12 @@ class FlagTools: **kwargs, ) -> saqc.SaQC: return self._defer("flagManual", locals()) + + def transferFlags( + self, + field: str | Sequence[str], + target: str | Sequence[str], + flag: float = BAD, + **kwargs, + ) -> saqc.SaQC: + return self._defer("transferFlags", locals()) diff --git a/saqc/core/modules/outliers.py b/saqc/core/modules/outliers.py index f66e3b10134d30340096dcfac7f8f668c7e7e49c..9d85d8e6bd08b0df35819ecb101f4ef632fb4173 100644 --- a/saqc/core/modules/outliers.py +++ b/saqc/core/modules/outliers.py @@ -39,7 +39,6 @@ class Outliers: drop_flagged: bool = False, # TODO: still a case ? thresh: float = 3.5, min_periods: int = 1, - target: str = None, flag: float = BAD, **kwargs, ) -> saqc.SaQC: @@ -104,13 +103,12 @@ class Outliers: ) -> saqc.SaQC: return self._defer("flagRange", locals()) - def flagCrossStatistic( + def flagCrossStatistics( self, field: Sequence[str], thresh: float, method: Literal["modZscore", "Zscore"] = "modZscore", flag: float = BAD, - target: str = None, **kwargs, ) -> saqc.SaQC: return self._defer("flagCrossStatistic", locals()) diff --git a/saqc/core/modules/tools.py b/saqc/core/modules/tools.py index cf6fd5d0a09df53c973c27580d486aa399e114ab..352922dc2db7381c507931c23722672f1380b6ea 100644 --- a/saqc/core/modules/tools.py +++ b/saqc/core/modules/tools.py @@ -12,7 +12,9 @@ from saqc.constants import FILTER_NONE class Tools: - def copyField(self, field: str, target: str, **kwargs) -> saqc.SaQC: + def copyField( + self, field: str, target: str, overwrite: bool = False, **kwargs + ) -> saqc.SaQC: return self._defer("copyField", locals()) def dropField(self, field: str, **kwargs) -> saqc.SaQC: @@ -38,11 +40,9 @@ class Tools: field: str, path: Optional[str] = None, max_gap: Optional[str] = None, - stats: bool = False, history: Optional[Literal["valid", "complete", "clear"]] = "valid", xscope: Optional[slice] = None, phaseplot: Optional[str] = None, - stats_dict: Optional[dict] = None, store_kwargs: Optional[dict] = None, dfilter: Optional[float] = FILTER_NONE, **kwargs, diff --git a/saqc/core/reader.py b/saqc/core/reader.py index 1f1a6113a691e1bd8c16cbed1ced26ec764bbd48..c826a8cea762401538f5b10623b66f53375b29cb 100644 --- a/saqc/core/reader.py +++ b/saqc/core/reader.py @@ -4,6 +4,9 @@ import io import ast from pathlib import Path +from urllib.request import urlopen +from typing import TextIO + import pandas as pd from saqc.core.core import SaQC @@ -15,13 +18,29 @@ COMMENT = "#" SEPARATOR = ";" +def _openFile(fname) -> TextIO: + if isinstance(fname, (str, Path)): + try: + fobj = io.StringIO(urlopen(str(fname)).read().decode("utf-8")) + fobj.seek(0) + except ValueError: + fobj = io.open(fname, "r", encoding="utf-8") + else: + fobj = fname + + return fobj + + +def _closeFile(fobj): + try: + fobj.close() + except AttributeError: + pass + + def readFile(fname) -> pd.DataFrame: - fobj = ( - io.open(fname, "r", encoding="utf-8") - if isinstance(fname, (str, Path)) - else fname - ) + fobj = _openFile(fname) out = [] for i, line in enumerate(fobj): @@ -39,10 +58,7 @@ def readFile(fname) -> pd.DataFrame: ) out.append([i + 1] + parts) - try: - fobj.close() - except AttributeError: - pass + _closeFile(fobj) df = pd.DataFrame( out[1:], @@ -54,6 +70,7 @@ def readFile(fname) -> pd.DataFrame: return df +# Todo: needs (maybe tiny) docstring! def fromConfig(fname, *args, **kwargs): saqc = SaQC(*args, **kwargs) config = readFile(fname) @@ -75,7 +92,7 @@ def fromConfig(fname, *args, **kwargs): kwargs["field" if "field" not in kwargs else "target"] = fld try: - saqc = getattr(saqc, func_name)(regex=regex, **kwargs) + saqc = saqc.__getattr__(func_name)(regex=regex, **kwargs) except Exception as e: raise type(e)(f"failed to execute: {field} ; {expr}") from e diff --git a/saqc/core/register.py b/saqc/core/register.py index 8f7aec66886441b6eaa6dd524d9ed47d6b59eae1..72bfd0d079f4d5d1642fad44fce5d18ff15d016f 100644 --- a/saqc/core/register.py +++ b/saqc/core/register.py @@ -40,8 +40,6 @@ class FunctionWrapper: # ensure type and all elements exist in signature self._checkDecoratorKeywords(mask, demask, squeeze) - if multivariate and not handles_target: - raise ValueError("multivariate=True requires handle_target=True") self.decorator_mask = mask self.decorator_demask = demask @@ -85,7 +83,7 @@ class FunctionWrapper: def _argnamesToColumns(names: list, values: dict): clist = [] for name in names: - value = values[name] # eg. the value behind 'field' + value = values.get(name) # eg. the value behind 'field' # NOTE: do not change order of the tests if value is None: diff --git a/saqc/funcs/breaks.py b/saqc/funcs/breaks.py index 92da3e89a6b4d0b4ff4a17260df9c1ee5e230c34..fc673eb37ade07507c9ce3fb40a10393f88396ef 100644 --- a/saqc/funcs/breaks.py +++ b/saqc/funcs/breaks.py @@ -2,10 +2,12 @@ # -*- coding: utf-8 -*- -"""Detecting breakish changes in timeseries value courses. +""" +Detecting breaks in data. -This module provides functions to detect and flag breakish changes in the data value course, like gaps -(:py:func:`flagMissing`), jumps/drops (:py:func:`flagJumps`) or isolated values (:py:func:`flagIsolated`). +This module provides functions to detect and flag breaks in data, for example temporal +gaps (:py:func:`flagMissing`), jumps and drops (:py:func:`flagJumps`) or temporal +isolated values (:py:func:`flagIsolated`). """ from typing import Tuple @@ -20,7 +22,6 @@ from saqc.constants import * from saqc.lib.tools import groupConsecutives from saqc.funcs.changepoints import _assignChangePointCluster from saqc.core.flags import Flags -from saqc.core.history import History from saqc.core.register import _isflagged, register, flagging @@ -34,25 +35,34 @@ def flagMissing( **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ - The function flags all values indicating missing data. + Flag NaNs in data. + + By default only NaNs are flagged, that not already have a flag. + `to_mask` can be used to pass a flag that is used as threshold. + Each flag worse than the threshold is replaced by the function. + This is, because the data gets masked (with NaNs) before the + function evaluates the NaNs. Parameters ---------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. + The data container. + field : str - The fieldname of the column, holding the data-to-be-flagged. + Column(s) in flags and data. + flags : saqc.Flags - Container to store quality flags to data. + The flags container. + flag : float, default BAD - flag to set. + Flag to set. Returns ------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. + Unmodified data container flags : saqc.Flags - The quality flags of data + The flags container """ datacol = data[field] @@ -75,47 +85,53 @@ def flagIsolated( **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ - The function flags arbitrary large groups of values, if they are surrounded by sufficiently - large data gaps. + Find and flag temporal isolated groups of data. - A gap is a timespan containing either no data or data invalid only (usually `nan`) . + The function flags arbitrarily large groups of values, if they are surrounded by + sufficiently large data gaps. A gap is a timespan containing either no data at all + or NaNs only. Parameters ---------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. + The data container. + field : str - The fieldname of the column, holding the data-to-be-flagged. + Column(s) in flags and data. + flags : saqc.Flags - A flags object + The flags container. + gap_window : str - The minimum size of the gap before and after a group of valid values, making this group considered an - isolated group. See condition (2) and (3) + Minimum gap size required before and after a data group to consider it + isolated. See condition (2) and (3) + group_window : str - The maximum temporal extension allowed for a group that is isolated by gaps of size 'gap_window', - to be actually flagged as isolated group. See condition (1). + Maximum size of a data chunk to consider it a candidate for an isolated group. + Data chunks that are bigger than the ``group_window`` are ignored. + This does not include the possible gaps surrounding it. + See condition (1). + flag : float, default BAD - flag to set. + Flag to set. Returns ------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. + Unmodified data container flags : saqc.Flags - The flags object, holding flags and additional information related to `data`. + The flags container Notes ----- - A series of values :math:`x_k,x_{k+1},...,x_{k+n}`, with associated timestamps :math:`t_k,t_{k+1},...,t_{k+n}`, - is considered to be isolated, if: + A series of values :math:`x_k,x_{k+1},...,x_{k+n}`, with associated + timestamps :math:`t_k,t_{k+1},...,t_{k+n}`, is considered to be isolated, if: 1. :math:`t_{k+1} - t_n <` `group_window` - 2. None of the :math:`x_j` with :math:`0 < t_k - t_j <` `gap_window`, is valid (preceeding gap). - 3. None of the :math:`x_j` with :math:`0 < t_j - t_(k+n) <` `gap_window`, is valid (succeding gap). - - See Also - -------- - :py:func:`flagMissing` + 2. None of the :math:`x_j` with :math:`0 < t_k - t_j <` `gap_window`, + is valid (preceeding gap). + 3. None of the :math:`x_j` with :math:`0 < t_j - t_(k+n) <` `gap_window`, + is valid (succeding gap). """ gap_window = pd.tseries.frequencies.to_offset(gap_window) group_window = pd.tseries.frequencies.to_offset(group_window) @@ -155,26 +171,34 @@ def flagJumps( **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ - Flag where the mean of the values significantly changes (the data "jumps"). + Flag jumps and drops in data. + + Flag data where the mean of its values significantly changes (the data "jumps"). Parameters ---------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. + The data container. + field : str - The reference variable, the deviation from wich determines the flagging. + Column(s) in flags and data. + flags : saqc.Flags - A flags object, holding flags and additional informations related to `data`. + The flags container. + thresh : float - The threshold, the mean of the values have to change by, to trigger flagging. + Threshold value by which the mean of data has to change to trigger flagging. + window : str - The temporal extension, of the rolling windows, the mean values that are to be - compared, are obtained from. + Size of the moving window. This is the number of observations used + for calculating the statistic. + min_periods : int, default 1 - Minimum number of periods that have to be present in a window of size `window`, - so that the mean value obtained from that window is regarded valid. + Minimum number of observations in window required to calculate a valid + mean value. + flag : float, default BAD - flag to set. + Flag to set. """ return _assignChangePointCluster( data, diff --git a/saqc/funcs/changepoints.py b/saqc/funcs/changepoints.py index 1cd87eff083fcb3cfaaaa4b22305a2dc944f28bb..46ba4f298836884ac046bf7ad9b9ca2f00449532 100644 --- a/saqc/funcs/changepoints.py +++ b/saqc/funcs/changepoints.py @@ -33,6 +33,8 @@ def flagChangePoints( **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ + Flag data where it significantly changes. + Flag data points, where the parametrization of the process, the data is assumed to generate by, significantly changes. @@ -41,26 +43,29 @@ def flagChangePoints( Parameters ---------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. + The data container. field : str - The reference variable, the deviation from wich determines the flagging. + A column in flags and data. - flags : saqc.flags - A flags object, holding flags and additional information related to `data`. + flags : saqc.Flags + The flags container. - stat_func : Callable[numpy.array, numpy.array] + stat_func : Callable A function that assigns a value to every twin window. The backward-facing window content will be passed as the first array, the forward-facing window content as the second. - thresh_func : Callable[numpy.array, numpy.array] + thresh_func : Callable A function that determines the value level, exceeding wich qualifies a timestamps func value as denoting a change-point. - window : str, tuple of string - Size of the rolling windows the calculation is performed in. If it is a single - frequency offset, it applies for the backward- and the forward-facing window. + window : str, tuple of str + Size of the moving windows. This is the number of observations used for + calculating the statistic. + + If it is a single frequency offset, it applies for the backward- and the + forward-facing window. If two offsets (as a tuple) is passed the first defines the size of the backward facing window, the second the size of the forward facing window. @@ -73,25 +78,35 @@ def flagChangePoints( closed : {'right', 'left', 'both', 'neither'}, default 'both' Determines the closure of the sliding windows. - reduce_window : {None, str}, default None - The sliding window search method is not an exact CP search method and usually there wont be - detected a single changepoint, but a "region" of change around a changepoint. + reduce_window : str or None, default None + The sliding window search method is not an exact CP search method and usually + there wont be detected a single changepoint, but a "region" of change around + a changepoint. + If `reduce_window` is given, for every window of size `reduce_window`, there - will be selected the value with index `reduce_func(x, y)` and the others will be dropped. - If `reduce_window` is None, the reduction window size equals the - twin window size, the changepoints have been detected with. + will be selected the value with index `reduce_func(x, y)` and the others will + be dropped. + + If `reduce_window` is None, the reduction window size equals the twin window + size, the changepoints have been detected with. - reduce_func : Callable[[numpy.ndarray, numpy.ndarray], int], default lambda x, y: x.argmax() + reduce_func : Callable, default ``lambda x, y: x.argmax()`` A function that must return an index value upon input of two arrays x and y. - First input parameter will hold the result from the stat_func evaluation for every - reduction window. Second input parameter holds the result from the thresh_func evaluation. - The default reduction function just selects the value that maximizes the stat_func. + First input parameter will hold the result from the stat_func evaluation for + every reduction window. Second input parameter holds the result from the + `thresh_func` evaluation. + The default reduction function just selects the value that maximizes the + `stat_func`. flag : float, default BAD flag to set. Returns ------- + data : dios.DictOfSeries + Unmodified data container + flags : saqc.Flags + The flags container """ return _assignChangePointCluster( data, @@ -128,12 +143,15 @@ def assignChangePointCluster( **kwargs, ): """ + Label data where it changes significantly. + + The labels will be stored in data. Unless `target` is given the labels will + overwrite the data in `field`. The flags will always set to `UNFLAGGED`. + Assigns label to the data, aiming to reflect continuous regimes of the processes the data is assumed to be generated by. The regime change points detection is based on a sliding window search. - Note, that the cluster labels will be stored to the `field` field of the input - data, so that the data that is clustered gets overridden. Parameters ---------- @@ -187,10 +205,14 @@ def assignChangePointCluster( that maximizes the stat_func. model_by_resids : bool, default False - If True, the stat_funcs results are written, otherwise the regime labels. + If True, the results of `stat_funcs` are written, otherwise the regime labels. Returns ------- + data : dios.DictOfSeries + Modified data. + flags : saqc.Flags + The flags container """ reserved = ["assign_cluster", "set_flags", "flag"] kwargs = filterKwargs(kwargs, reserved) diff --git a/saqc/funcs/constants.py b/saqc/funcs/constants.py index 18bf035497c79cbfc708f29753803707af0b5245..476d2d75cda99ba5eb8dfb319e52972313294bb6 100644 --- a/saqc/funcs/constants.py +++ b/saqc/funcs/constants.py @@ -1,7 +1,6 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -from operator import mod from typing import Tuple import numpy as np @@ -28,39 +27,49 @@ def flagConstants( **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ - This functions flags plateaus/series of constant values of length `window` if - their maximum total change is smaller than thresh. + Flag constant data values. - Function flags plateaus/series of constant values. Any interval of values y(t),..y(t+n) is flagged, if: + Flags plateaus of constant data if their maximum total change in + a rolling window does not exceed a certain threshold. - (1) n > `window` - (2) `|(y(t + i) - (t + j)|` < `thresh`, for all i,j in [0, 1, ..., n] - - Flag values are (semi-)constant. + Any interval of values y(t),...,y(t+n) is flagged, if: + - (1): n > ``window`` + - (2): abs(y(t + i) - (t + j)) < `thresh`, for all i,j in [0, 1, ..., n] Parameters ---------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. + The data container. + field : str - Name of the column, holding the data-to-be-flagged. + A column in flags and data. + flags : saqc.Flags - Container to store quality flags to data. + The flags container. + thresh : float - Upper bound for the maximum total change of an interval to be flagged constant. - window : str - Lower bound for the size of an interval to be flagged constant. + Maximum total change allowed per window. + + window : str | int + Size of the moving window. This is the number of observations used + for calculating the statistic. Each window will be a fixed size. + If its an offset then this will be the time period of each window. + Each window will be a variable sized based on the observations included + in the time-period. + flag : float, default BAD - flag to set. + Flag to set. Returns ------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. + Unmodified data container flags : saqc.Flags - The flags object, holding flags and additional informations related to `data`. - Flags values may have changed, relatively to the flags input. + The flags container """ + if not isinstance(window, (str, int)): + raise TypeError("window must be offset string or int.") + d = data[field] # min_periods=2 ensures that at least two non-nan values are present @@ -84,7 +93,7 @@ def flagByVariance( data: DictOfSeries, field: str, flags: Flags, - window: str = "12h", + window: str, thresh: float = 0.0005, maxna: int = None, maxna_group: int = None, @@ -92,7 +101,12 @@ def flagByVariance( **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ - Function flags plateaus/series of constant values. Any interval of values y(t),..y(t+n) is flagged, if: + Flag low-variance data. + + Flags plateaus of constant data if the variance in a rolling window does not + exceed a certain threshold. + + Any interval of values y(t),..y(t+n) is flagged, if: (1) n > `window` (2) variance(y(t),...,y(t+n) < `thresh` @@ -100,30 +114,40 @@ def flagByVariance( Parameters ---------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. + The data container. + field : str - The fieldname of the column, holding the data-to-be-flagged. + A column in flags and data. + flags : saqc.Flags - Container to store quality flags to data. - window : str - Only intervals of minimum size "window" have the chance to get flagged as constant intervals - thresh : float - The upper bound, the variance of an interval must not exceed, if the interval wants to be flagged a plateau. + The flags container. + + window : str | int + Size of the moving window. This is the number of observations used + for calculating the statistic. Each window will be a fixed size. + If its an offset then this will be the time period of each window. + Each window will be sized, based on the number of observations included + in the time-period. + + thresh : float, default 0.0005 + Maximum total variance allowed per window. + maxna : int, default None - Maximum number of NaNs tolerated in an interval. If more NaNs are present, the - interval is not flagged as plateau. + Maximum number of NaNs allowed in window. + If more NaNs are present, the window is not flagged. + maxna_group : int, default None Same as `maxna` but for consecutive NaNs. + flag : float, default BAD - flag to set. + Flag to set. Returns ------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. + Unmodified data container flags : saqc.Flags - The flags object, holding flags and additional informations related to `data`. - Flags values may have changed, relatively to the flags input. + The flags container """ dataseries = data[field] delta = getFreqDelta(dataseries.index) diff --git a/saqc/funcs/curvefit.py b/saqc/funcs/curvefit.py index a49cf98eb1e3b7df85c56fa7dc3fe6312d509999..d1be904674dbaa97cc1b8575875886d3252af6ac 100644 --- a/saqc/funcs/curvefit.py +++ b/saqc/funcs/curvefit.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- +from __future__ import annotations -from math import floor from typing import Tuple, Union from typing_extensions import Literal import numpy as np @@ -25,7 +25,7 @@ def fitPolynomial( data: DictOfSeries, field: str, flags: Flags, - window: Union[int, str], + window: int | str, order: int, min_periods: int = 0, **kwargs @@ -52,37 +52,40 @@ def fitPolynomial( Parameters ---------- - data : dios.DictOfSeries - The data. + data : DictOfSeries + The data container. field : str - The column, holding the data-to-be-modelled. + A column in flags and data. - flags : saqc.Flags - Container to store quality flags to data. + flags : Flags + The flags container. - window : {str, int} - The size of the window you want to use for fitting. If an integer is passed, + window : str, int + Size of the window you want to use for fitting. If an integer is passed, the size refers to the number of periods for every fitting window. If an offset string is passed, the size refers to the total temporal extension. The window will be centered around the vaule-to-be-fitted. For regularly sampled - timeseries the period number will be casted down to an odd number if even. + data always a odd number of periods will be used for the fit (periods-1 if + periods is even). order : int - The degree of the polynomial used for fitting + Degree of the polynomial used for fitting min_periods : int or None, default 0 - The minimum number of periods, that has to be available in every values - fitting surrounding for the polynomial fit to be performed. If there are not - enough values, np.nan gets assigned. Default (0) results in fitting - regardless of the number of values present (results in overfitting for too - sparse intervals). To automatically set the minimum number of periods to the - number of values in an offset defined window size, pass np.nan. + Minimum number of observations in a window required to perform the fit, + otherwise NaNs will be assigned. + If ``None``, `min_periods` defaults to 1 for integer windows and to the + size of the window for offset based windows. + Passing 0, disables the feature and will result in over-fitting for too + sparse windows. Returns ------- data : dios.DictOfSeries + Modified data flags : saqc.Flags + Flags """ reserved = ["residues", "set_flags"] filterKwargs(kwargs, reserved) diff --git a/saqc/funcs/drift.py b/saqc/funcs/drift.py index 98a1c9e380cbddf41d93d6d8b051f2d788fccca2..ff874b53593df69e9c0d4afddfc0efb7030d484b 100644 --- a/saqc/funcs/drift.py +++ b/saqc/funcs/drift.py @@ -1,22 +1,23 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- + + from __future__ import annotations import functools -from typing import Optional, Tuple, Sequence, Callable, Optional +from typing import Tuple, Sequence, Callable from typing_extensions import Literal import numpy as np import pandas as pd -from scipy import stats from scipy.optimize import curve_fit from scipy.spatial.distance import pdist from dios import DictOfSeries from saqc.constants import BAD -from saqc.core.register import register, flagging -from saqc.core import Flags + +from saqc.core.register import register, flagging, Flags from saqc.funcs.changepoints import _assignChangePointCluster from saqc.funcs.tools import dropField, copyField @@ -33,7 +34,13 @@ LinkageString = Literal[ MODELDICT = {"linear": linearDriftModel, "exponential": expDriftModel} -@flagging() +@register( + mask=["field"], + demask=["field"], + squeeze=["field"], # reference is written ! + multivariate=True, + handles_target=False, +) def flagDriftFromNorm( data: DictOfSeries, field: Sequence[str], @@ -50,81 +57,81 @@ def flagDriftFromNorm( **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ - The function flags value courses that significantly deviate from a group of normal value courses. + Flags data that deviates from an avarage data course. - "Normality" is determined in terms of a maximum spreading distance, that members of a normal group must not exceed. - In addition, only a group is considered "normal" if it contains more then `frac` percent of the - variables in "field". + "Normality" is determined in terms of a maximum spreading distance, + that members of a normal group must not exceed. In addition, only a group is considered + "normal" if it contains more then `frac` percent of the variables in "field". See the Notes section for a more detailed presentation of the algorithm Parameters ---------- - data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. - field : list of str - List of fieldnames in data, determining which variables are to be included into the flagging process. - flags : saqc.Flags - A flags object, holding flags and additional informations related to `data`. + data : DictOfSeries + The data container. + + field : str + A column in flags and data. + + flags : Flags + The flags container. + freq : str - An offset string, determining the size of the seperate datachunks that the algorihm is to be piecewise - applied on. + Frequency, that split the data in chunks. + spread : float - A parameter limiting the maximum "spread" of the timeseries, allowed in the "normal" group. See Notes section - for more details. + Maximum spread allowed in the group of *normal* data. See Notes section for more details. + frac : float, default 0.5 - Has to be in [0,1]. Determines the minimum percentage of variables, the "normal" group has to comprise to be the - normal group actually. The higher that value, the more stable the algorithm will be with respect to false - positives. Also, nobody knows what happens, if this value is below 0.5. - metric : Callable[[numpy.array, numpy.array], float] - A distance function. It should be a function of 2 1-dimensional arrays and return a float scalar value. - This value is interpreted as the distance of the two input arrays. The default is the averaged manhatten metric. - See the Notes section to get an idea of why this could be a good choice. + Fraction defining the normal group. Use a value from the interval [0,1]. + The higher the value, the more stable the algorithm will be. For values below + 0.5 the results are undefined. + + metric : Callable, default ``lambda x,y:pdist(np.array([x,y]),metric="cityblock")/len(x)`` + Distance function that takes two arrays as input and returns a scalar float. + This value is interpreted as the distance of the two input arrays. + Defaults to the `averaged manhattan metric` (see Notes). + method : {"single", "complete", "average", "weighted", "centroid", "median", "ward"}, default "single" - The linkage method used for hierarchical (agglomerative) clustering of the timeseries. - See the Notes section for more details. - The keyword gets passed on to scipy.hierarchy.linkage. See its documentation to learn more about the different - keywords (References [1]). - See wikipedia for an introduction to hierarchical clustering (References [2]). + Linkage method used for hierarchical (agglomerative) clustering of the data. + `method` is directly passed to ``scipy.hierarchy.linkage``. See its documentation [1] for + more details. For a general introduction on hierarchical clustering see [2]. + flag : float, default BAD flag to set. Returns ------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. flags : saqc.Flags - The quality flags of data - Flags values may have changed relatively to the input flags. Notes ----- following steps are performed for every data "segment" of length `freq` in order to find the "abnormal" data: - 1. Calculate the distances :math:`d(x_i,x_j)` for all :math:`x_i` in parameter `field`. (with :math:`d` - denoting the distance function - passed to the parameter `metric`. - 2. Calculate a dendogram with a hierarchical linkage algorithm, specified by the parameter `method`. - 3. Flatten the dendogram at the level, the agglomeration costs exceed the value given by the parameter `spread` - 4. check if there is a cluster containing more than `frac` percentage of the variables in field. + 1. Calculate distances :math:`d(x_i,x_j)` for all :math:`x_i` in parameter `field`. + (with :math:`d` denoting the distance function, specified by `metric`. + 2. Calculate a dendogram with a hierarchical linkage algorithm, specified by `method`. + 3. Flatten the dendogram at the level, the agglomeration costs exceed `spread` + 4. check if a cluster containing more than `frac` variables. 1. if yes: flag all the variables that are not in that cluster (inside the segment) 2. if no: flag nothing - The main parameter giving control over the algorithms behavior is the `spread` parameter, that determines - the maximum spread of a normal group by limiting the costs, a cluster agglomeration must not exceed in every - linkage step. - For singleton clusters, that costs just equal half the distance, the timeseries in the clusters, have to - each other. So, no timeseries can be clustered together, that are more then - 2*`spread` distanted from each other. - When timeseries get clustered together, this new clusters distance to all the other timeseries/clusters is - calculated according to the linkage method specified by `method`. By default, it is the minimum distance, - the members of the clusters have to each other. - Having that in mind, it is advisable to choose a distance function, that can be well interpreted in the units - dimension of the measurement and where the interpretation is invariant over the length of the timeseries. - That is, why, the "averaged manhatten metric" is set as the metric default, since it corresponds to the - averaged value distance, two timeseries have (as opposed by euclidean, for example). + The main parameter giving control over the algorithms behavior is the `spread` parameter, + that determines the maximum spread of a normal group by limiting the costs, a cluster + agglomeration must not exceed in every linkage step. + For singleton clusters, that costs just equal half the distance, the data in the + clusters, have to each other. So, no data can be clustered together, that are more then + 2*`spread` distances away from each other. When data get clustered together, this new + clusters distance to all the other data/clusters is calculated according to the linkage + method specified by `method`. By default, it is the minimum distance, the members of the + clusters have to each other. Having that in mind, it is advisable to choose a distance + function, that can be well interpreted in the units dimension of the measurement and where + the interpretation is invariant over the length of the data. That is, why, + the "averaged manhattan metric" is set as the metric default, since it corresponds to the + averaged value distance, two data sets have (as opposed by euclidean, for example). References ---------- @@ -134,6 +141,7 @@ def flagDriftFromNorm( [2] https://en.wikipedia.org/wiki/Hierarchical_clustering """ fields = toSequence(field) + data_to_flag = data[fields].to_df() data_to_flag.dropna(inplace=True) @@ -151,13 +159,12 @@ def flagDriftFromNorm( return data, flags -# default multivariate flagging @register( mask=["field", "reference"], demask=["field", "reference"], squeeze=["field", "reference"], # reference is written ! multivariate=True, - handles_target=True, + handles_target=False, ) def flagDriftFromReference( data: DictOfSeries, @@ -170,64 +177,66 @@ def flagDriftFromReference( np.array([x, y]), metric="cityblock" ) / len(x), - target=None, flag: float = BAD, **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ - The function flags value courses that deviate from a reference course by a margin exceeding a certain threshold. + Flags data that deviates from a reference course. - The deviation is measured by the distance function passed to parameter metric. + The deviation is measured by a passed distance function. Parameters ---------- - data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. - field : list of str - List of fieldnames in data, determining wich variables are to be included into the flagging process. - flags : saqc.Flags - A flags object, holding flags and additional informations related to `data`. - reference : str - The reference variable, the deviation from wich determines the flagging. + data : DictOfSeries + The data container. + + field : str + A column in flags and data. + + flags : Flags + The flags container. + freq : str - An offset string, determining the size of the seperate datachunks that the algorihm is to be piecewise - applied on. + Frequency, that split the data in chunks. + + reference : str + Reference variable, the deviation is calculated from. + thresh : float - The threshod by wich normal variables can deviate from the reference variable at max. - metric : Callable[(numpyp.array, numpy-array), float] - A distance function. It should be a function of 2 1-dimensional arrays and return a float scalar value. - This value is interpreted as the distance of the two input arrays. The default is the averaged manhatten metric. - See the Notes section to get an idea of why this could be a good choice. + Maximum deviation from reference. + + metric : Callable + Distance function. Takes two arrays as input and returns a scalar float. + This value is interpreted as the mutual distance of the two input arrays. + Defaults to the `averaged manhattan metric` (see Notes). + target : None - ignored. + Ignored. + flag : float, default BAD - flag to set. + Flag to set. Returns ------- data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. flags : saqc.Flags - The quality flags of data - Flags values may have changed relatively to the input flags. Notes ----- - it is advisable to choose a distance function, that can be well interpreted in the units - dimension of the measurement and where the interpretation is invariant over the length of the timeseries. - That is, why, the "averaged manhatten metric" is set as the metric default, since it corresponds to the - averaged value distance, two timeseries have (as opposed by euclidean, for example). + It is advisable to choose a distance function, that can be well interpreted in + the units dimension of the measurement and where the interpretation is invariant over the + length of the data. That is, why, the "averaged manhatten metric" is set as the metric + default, since it corresponds to the averaged value distance, two data sets have (as opposed + by euclidean, for example). """ - if target: - raise NotImplementedError("target is not implemented for this function") fields = toSequence(field) - data_to_flag = data[fields].to_df().dropna() - fields = list(fields) if reference not in fields: fields.append(reference) + data_to_flag = data[fields].to_df().dropna() + segments = data_to_flag.groupby(pd.Grouper(freq=freq)) for segment in segments: @@ -245,156 +254,6 @@ def flagDriftFromReference( return data, flags -# default multivariate flagging -@register( - mask=["set_1", "set_2"], - demask=["set_1", "set_2"], - squeeze=["set_1", "set_2"], - multivariate=True, - handles_target=True, -) -def flagDriftFromScaledNorm( - data: DictOfSeries, - field: str, - flags: Flags, - set_1: Sequence[str], - set_2: Sequence[str], - freq: str, - spread: float, - frac: float = 0.5, - metric: Callable[[np.ndarray, np.ndarray], float] = lambda x, y: pdist( - np.array([x, y]), metric="cityblock" - ) - / len(x), - method: LinkageString = "single", - target: str = None, - flag: float = BAD, - **kwargs, -) -> Tuple[DictOfSeries, Flags]: - """ - The function linearly rescales one set of variables to another set of variables - with a different scale and then flags value courses that significantly deviate - from a group of normal value courses. - - The two sets of variables can be linearly scaled one to another and hence the - scaling transformation is performed via linear regression: A linear regression is - performed on each pair of variables giving a slope and an intercept. The - transformation is then calculated a the median of all the calculated slopes and - intercepts. - - Once the transformation is performed, the function flags those values, - that deviate from a group of normal values. "Normality" is determined in terms of - a maximum spreading distance, that members of a normal group must not exceed. In - addition, only a group is considered "normal" if it contains more then `frac` - percent of the variables in "fields". - - Parameters - ---------- - data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. - - field : str - A dummy parameter. - - flags : saqc.Flags - A flags object, holding flags and additional informations related to `data`. - - set_1 : str - The first set of fieldnames in data to be included into the flagging process. - - set_2 : str - The second set of fieldnames in data to be included into the flagging process. - - freq : str - An offset string, determining the size of the seperate datachunks that the - algorihm is to be piecewise applied on. - - spread : float - A parameter limiting the maximum "spread" of the timeseries, allowed in the - "normal" group. See Notes section for more details. - - frac : float, default 0.5 - Has to be in [0,1]. Determines the minimum percentage of variables, - the "normal" group has to comprise to be the normal group actually. The - higher that value, the more stable the algorithm will be with respect to - false positives. Also, nobody knows what happens, if this value is below 0.5. - - metric : Callable[(numpyp.array, numpy-array), float] - A distance function. It should be a function of 2 1-dimensional arrays and - return a float scalar value. This value is interpreted as the distance of the - two input arrays. The default is the averaged manhatten metric. See the Notes - section to get an idea of why this could be a good choice. - - method : str, default "single" - The linkage method used for hierarchical (agglomerative) clustering of the - timeseries. See the Notes section for more details. The keyword gets passed - on to scipy.hierarchy.linkage. See its documentation to learn more about the - different keywords (References [1]). See wikipedia for an introduction to - hierarchical clustering (References [2]). - - target : None - ignored - - flag : float, default BAD - flag to set. - - Returns - ------- - data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. - flags : saqc.Flags - The quality flags of data - Flags values may have changed relatively to the input flags. - - References - ---------- - Documentation of the underlying hierarchical clustering algorithm: - [1] https://docs.scipy.org/doc/scipy/reference/generated/scipy.cluster.hierarchy.linkage.html - Introduction to Hierarchical clustering: - [2] https://en.wikipedia.org/wiki/Hierarchical_clustering - """ - if target: - raise NotImplementedError("target is not implemented for this function") - - fields = list(set_1) + list(set_2) - data_to_flag = data[fields].to_df().dropna() - - convert_slope = [] - convert_intercept = [] - - for field1 in set_1: - for field2 in set_2: - slope, intercept, *_ = stats.linregress( - data_to_flag[field1], data_to_flag[field2] - ) - convert_slope.append(slope) - convert_intercept.append(intercept) - - factor_slope = np.median(convert_slope) - factor_intercept = np.median(convert_intercept) - - dat = DictOfSeries() - for field1 in set_1: - dat[field1] = factor_intercept + factor_slope * data_to_flag[field1] - for field2 in set_2: - dat[field2] = data_to_flag[field2] - - dat_to_flag = dat[fields].to_df() - - segments = dat_to_flag.groupby(pd.Grouper(freq=freq)) - for segment in segments: - - if segment[1].shape[0] <= 1: - continue - - drifters = detectDeviants(segment[1], metric, spread, frac, method, "variables") - - for var in drifters: - flags[segment[1].index, fields[var]] = flag - - return data, flags - - @register(mask=["field"], demask=[], squeeze=[]) def correctDrift( data: DictOfSeries, @@ -412,17 +271,21 @@ def correctDrift( Parameters ---------- - data : dios.DictOfSeries - A dictionary of pandas.Series, holding all the data. + data : DictOfSeries + The data container. + field : str - The fieldname of the data column, you want to correct. + Column in data and flags. + flags : saqc.Flags - Container to store quality flags to data. + Flags container. + maintenance_field : str - The fieldname of the datacolumn holding the support-points information. - The maint data is to expected to have following form: - The series' timestamp itself represents the beginning of a - maintenance event, wheras the values represent the endings of the maintenance intervals. + Column holding the support-points information. + The data is expected to have the following form: + The index of the series represents the beginning of a maintenance + event, wheras the values represent its endings. + model : Callable or {'exponential', 'linear'} A modelfunction describing the drift behavior, that is to be corrected. Either use built-in exponential or linear drift model by passing a string, or pass a custom callable. @@ -431,9 +294,10 @@ def correctDrift( After the data parameter, there can occure an arbitrary number of model calibration arguments in the signature. See the Notes section for an extensive description. + cal_range : int, default 5 - The number of values the mean is computed over, for obtaining the value level directly after and - directly before maintenance event. This values are needed for shift calibration. (see above description) + Number of values to calculate the mean of, for obtaining the value level directly + after and directly before a maintenance event. Needed for shift calibration. Returns ------- @@ -445,25 +309,27 @@ def correctDrift( Notes ----- - It is assumed, that between support points, there is a drift effect shifting the meassurements in a way, that - can be described, by a model function ``M(t, *p, origin, target)``. (With ``0<=t<=1``, ``p`` being a parameter - set, and ``origin``, ``target`` being floats). + It is assumed, that between support points, there is a drift effect shifting the + meassurements in a way, that can be described, by a model function M(t, p, origin, target). + (With 0<=t<=1, p being a parameter set, and origin, target being floats). Note, that its possible for the model to have no free parameters p at all. (linear drift mainly) - The drift model, directly after the last support point (``t=0``), - should evaluate to the origin - calibration level (``origin``), and directly before the next support point - (``t=1``), it should evaluate to the target calibration level (``target``).:: + The drift model, directly after the last support point (t=0), + should evaluate to the origin - calibration level (origin), and directly before the next + support point (t=1), it should evaluate to the target calibration level (target). + - M(0, *p, origin, target) = origin - M(1, *p, origin, target) = target + M(0, p, origin, target) = origin + M(1, p, origin, target) = target - The model is than fitted to any data chunk in between support points, by optimizing the parameters ``p*``, and - thus, obtaining optimal parameterset ``P*``. + + The model is than fitted to any data chunk in between support points, by optimizing + the parameters p, and thus, obtaining optimal parameterset P. The new values at t are computed via::: - new_vals(t) = old_vals(t) + M(t, *P, origin, target) - M_drift(t, *P, origin, new_target) + new_vals(t) = old_vals(t) + M(t, P, origin, target) - M_drift(t, P, origin, new_target) Wheras ``new_target`` represents the value level immediately after the next support point. @@ -473,12 +339,13 @@ def correctDrift( Linear drift modell (no free parameters). - >>> M = lambda t, origin, target: origin + t * target + + >>> Model = lambda t, origin, target: origin + t*target exponential drift model (exponential raise!) >>> expFunc = lambda t, a, b, c: a + b * (np.exp(c * x) - 1) - >>> M = lambda t, p, origin, target: expFunc(t, (target - origin) / (np.exp(abs(c)) - 1), abs(c)) + >>> Model = lambda t, p, origin, target: expFunc(t, (target - origin) / (np.exp(abs(c)) - 1), abs(c)) Exponential and linear driftmodels are part of the ``ts_operators`` library, under the names ``expDriftModel`` and ``linearDriftModel``. @@ -538,7 +405,7 @@ def correctRegimeAnomaly( flags: Flags, cluster_field: str, model: CurveFitter, - tolerance: Optional[str] = None, + tolerance: str = None, epoch: bool = False, **kwargs, ) -> Tuple[DictOfSeries, Flags]: @@ -659,7 +526,7 @@ def correctOffset( spread: float, window: str, min_periods: int, - tolerance: Optional[str] = None, + tolerance: str = None, **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ @@ -837,7 +704,7 @@ def assignRegimeAnomaly( cluster_field: str, spread: float, method: LinkageString = "single", - metric: Callable[[np.array, np.array], float] = lambda x, y: np.abs( + metric: Callable[[np.ndarray, np.ndarray], float] = lambda x, y: np.abs( np.nanmean(x) - np.nanmean(y) ), frac: float = 0.5, diff --git a/saqc/funcs/flagtools.py b/saqc/funcs/flagtools.py index 12bea62a516241f287aa7f6bcd7ae793b854474a..cafe7e1d74c36c6d6eb4248e2e5245bfed927ec0 100644 --- a/saqc/funcs/flagtools.py +++ b/saqc/funcs/flagtools.py @@ -1,6 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -from typing import Any, Tuple, Union +from __future__ import annotations +from typing import Any, Tuple, Union, Sequence from typing_extensions import Literal import pandas as pd from dateutil.parser import ParserError @@ -12,6 +13,7 @@ from saqc.core import register, Flags import warnings from saqc.core.register import flagging +from saqc.funcs.generic import flagGeneric @register(mask=[], demask=[], squeeze=["field"]) @@ -206,54 +208,64 @@ def flagManual( -------- An example for mdata - >>> mdata = pd.Series([1,0,1], index=pd.to_datetime(['2000-02', '2000-03', '2001-05'])) - >>> mdata - 2000-02-01 1 - 2000-03-01 0 - 2001-05-01 1 - dtype: int64 + .. doctest:: ExampleFlagManual - On *dayly* data, with the 'ontime' method, only the provided timestamnps are used. + >>> mdata = pd.Series([1,0,1], index=pd.to_datetime(['2000-02', '2000-03', '2001-05'])) + >>> mdata + 2000-02-01 1 + 2000-03-01 0 + 2001-05-01 1 + dtype: int64 + + On *dayly* data, with the 'ontime' method, only the provided timestamps are used. Bear in mind that only exact timestamps apply, any offset will result in ignoring the timestamp. - >>> _, fl = flagManual(data, field, flags, mdata, mflag=1, method='ontime') - >>> fl[field] > UNFLAGGED - 2000-01-31 False - 2000-02-01 True - 2000-02-02 False - 2000-02-03 False - .. .. - 2000-02-29 False - 2000-03-01 True - 2000-03-02 False - Freq: D, dtype: bool + .. doctest:: ExampleFlagManual + + >>> data = a=pd.Series(0, index=pd.date_range('2000-01-31', '2000-03-02', freq='1D'), name='dailyData') + >>> qc = saqc.SaQC(data) + >>> qc = qc.flagManual('dailyData', mdata, mflag=1, mformat='mdata', method='ontime') + >>> qc.flags['dailyData'] > UNFLAGGED #doctest:+SKIP + 2000-01-31 False + 2000-02-01 True + 2000-02-02 False + 2000-02-03 False + .. .. + 2000-02-29 False + 2000-03-01 True + 2000-03-02 False + Freq: D, dtype: bool With the 'right-open' method, the mdata is forward fill: - >>> _, fl = flagManual(data, field, flags, mdata, mflag=1, method='right-open') - >>> fl[field] > UNFLAGGED - 2000-01-31 False - 2000-02-01 True - 2000-02-02 True - .. .. - 2000-02-29 True - 2000-03-01 False - 2000-03-02 False - Freq: D, dtype: bool + .. doctest:: ExampleFlagManual + + >>> qc = qc.flagManual('dailyData', mdata, mflag=1, mformat='mdata', method='right-open') + >>> qc.flags['dailyData'] > UNFLAGGED #doctest:+SKIP + 2000-01-31 False + 2000-02-01 True + 2000-02-02 True + .. .. + 2000-02-29 True + 2000-03-01 False + 2000-03-02 False + Freq: D, dtype: bool With the 'left-open' method, backward filling is used: - >>> _, fl = flagManual(data, field, flags, mdata, mflag=1, method='left-open') - >>> fl[field] > UNFLAGGED - 2000-01-31 False - 2000-02-01 False - 2000-02-02 True - .. .. - 2000-02-29 True - 2000-03-01 True - 2000-03-02 False - Freq: D, dtype: bool + .. doctest:: ExampleFlagManual + + >>> qc = qc.flagManual('dailyData', mdata, mflag=1, mformat='mdata', method='left-open') + >>> qc.flags['dailyData'] > UNFLAGGED #doctest:+SKIP + 2000-01-31 False + 2000-02-01 False + 2000-02-02 True + .. .. + 2000-02-29 True + 2000-03-01 True + 2000-03-02 False + Freq: D, dtype: bool """ dat = data[field] # internal not-mflag-value -> cant go for np.nan @@ -346,3 +358,88 @@ def flagDummy( The quality flags of data """ return data, flags + + +@register( + mask=[], + demask=[], + squeeze=["target"], + handles_target=True, +) +def transferFlags( + data: DictOfSeries, + field: str | Sequence[str], + flags: Flags, + target: str | Sequence[str], + **kwargs, +): + """ + Transfer Flags of one variable to another. + + Parameters + ---------- + + data : {pd.DataFrame, dios.DictOfSeries} + data + + field : str or List of str + Variable or list of variables, the flags of which are to be transferred. + + flags : {pd.DataFrame, dios.DictOfSeries, saqc.flagger} + Flags or flagger object + + target : str or List of str + Variable or list of variables, the flags of `field` are to be transferred to. + + See Also + -------- + * :py:meth:`saqc.SaQC.flagGeneric` + + Examples + -------- + First, generate some data with some flags: + + .. doctest:: exampleTransfer + + >>> import pandas as pd #doctest:+SKIP + >>> import saqc #doctest:+SKIP + >>> data = pd.DataFrame({'a':[1,2], 'b':[1,2], 'c':[1,2]}) + >>> qc = saqc.SaQC(data) + >>> qc = qc.flagRange('a', max=1.5) + >>> qc.flags + columns a b c + 0 -inf -inf -inf + 1 255.0 -inf -inf + + Now we can project the flag from `a` to `b` via + + .. doctest:: exampleTransfer + + >>> qc = qc.transferFlags('a', target='b') + >>> qc.flags + columns a b c + 0 -inf -inf -inf + 1 255.0 255.0 -inf + + You can skip the explicit target parameter designation: + + .. doctest:: exampleTransfer + + >>> qc = qc.transferFlags('a', 'b') + + To project the flags of `a` to both the variables `b` and `c` in one call, align the field and target variables in + 2 lists: + + .. doctest:: exampleTransfer + + >>> qc = qc.transferFlags(['a','a'], ['b', 'c']) + >>> qc.flags + columns a b c + 0 -inf -inf -inf + 1 255.0 255.0 255.0 + """ + + data, flags = flagGeneric( + data, field, flags, target=target, func=lambda x: isflagged(x), **kwargs + ) + return data, flags diff --git a/saqc/funcs/generic.py b/saqc/funcs/generic.py index 5f7977b684c0ae382b95f3d83370a213a2541c53..aa1da90e4986df65074498c7a47e7276eb450882 100644 --- a/saqc/funcs/generic.py +++ b/saqc/funcs/generic.py @@ -45,6 +45,12 @@ def _execGeneric( data = data.to_frame() out = func(*[data[c] for c in data.columns]) + if pd.api.types.is_scalar(out): + raise ValueError( + "generic function should return a sequence object, " + f"got '{type(out)}' instead" + ) + return DictOfSeries(out) @@ -121,7 +127,12 @@ def processGeneric( Compute the sum of the variables 'rainfall' and 'snowfall' and save the result to a (new) variable 'precipitation' - >>> saqc.genericProcess(field=["rainfall", "snowfall"], target="precipitation'", func=lambda x, y: x + y) + .. testsetup:: + + qc = saqc.SaQC(pd.DataFrame({'rainfall':[0], 'snowfall':[0], 'precipitation':[0]}, index=pd.DatetimeIndex([0]))) + + + >>> qc = qc.processGeneric(field=["rainfall", "snowfall"], target="precipitation'", func=lambda x, y: x + y) """ fields = toSequence(field) @@ -134,6 +145,7 @@ def processGeneric( "func": "procGeneric", "args": (), "kwargs": { + **kwargs, "field": field, "func": func.__name__, "target": target, @@ -228,17 +240,27 @@ def flagGeneric( Examples -------- + .. testsetup:: exampleFlagGeneric + + qc = saqc.SaQC(pd.DataFrame({'temperature':[0], 'uncertainty':[0], 'rainfall':[0], 'fan':[0]}, index=pd.DatetimeIndex([0]))) + 1. Flag the variable 'rainfall', if the sum of the variables 'temperature' and 'uncertainty' is below zero: - >>> saqc.flagGeneric(field=["temperature", "uncertainty"], target="rainfall", func= lambda x, y: temperature + uncertainty < 0 + .. testcode:: exampleFlagGeneric + + qc.flagGeneric(field=["temperature", "uncertainty"], target="rainfall", func= lambda x, y: x + y < 0) 2. Flag the variable 'temperature', where the variable 'fan' is flagged: - >>> saqc.flagGeneric(field="fan", target="temperature", func=lambda x: isflagged(x)) + .. testcode:: exampleFlagGeneric + + qc.flagGeneric(field="fan", target="temperature", func=lambda x: isflagged(x)) 3. The generic functions also support all pandas and numpy functions: - >>> saqc.flagGeneric(field="fan", target="temperature", func=lambda x: np.sqrt(x) < 7) + .. testcode:: exampleFlagGeneric + + qc = qc.flagGeneric(field="fan", target="temperature", func=lambda x: np.sqrt(x) < 7) """ fields = toSequence(field) @@ -252,13 +274,14 @@ def flagGeneric( f"the generic function returned {len(result.columns)} field(s), but only {len(targets)} target(s) were given" ) - if not (result.dtypes == bool).all(): + if not result.empty and not (result.dtypes == bool).all(): raise TypeError(f"generic expression does not return a boolean array") meta = { "func": "flagGeneric", "args": (), "kwargs": { + **kwargs, "field": field, "func": func.__name__, "target": target, diff --git a/saqc/funcs/interpolation.py b/saqc/funcs/interpolation.py index 6076ba88ce053d4c7b236e1d6f48049008905b98..ba131d8fc84b606ae358ada6e021ce4ad9772f26 100644 --- a/saqc/funcs/interpolation.py +++ b/saqc/funcs/interpolation.py @@ -206,7 +206,7 @@ def _resampleOverlapping(data: pd.Series, freq: str, fill_value): return data.fillna(fill_value).astype(dtype) -@processing() +@register(mask=["field"], demask=[], squeeze=[]) def interpolateIndex( data: DictOfSeries, field: str, diff --git a/saqc/funcs/outliers.py b/saqc/funcs/outliers.py index adeb2091302651e449d4cd0f6b5086131e0add69..c41079481420a3f5d5752b6af54d42bf6fa897d3 100644 --- a/saqc/funcs/outliers.py +++ b/saqc/funcs/outliers.py @@ -1,6 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -import warnings + +import uuid from typing import Optional, Union, Tuple, Sequence, Callable from typing_extensions import Literal @@ -13,7 +14,7 @@ from dios import DictOfSeries from outliers import smirnov_grubbs from scipy.optimize import curve_fit -from saqc.constants import * +from saqc.constants import BAD, UNFLAGGED from saqc.core import register, Flags from saqc.core.register import flagging from saqc.lib.tools import customRoller, findIndex, getFreqDelta, toSequence @@ -134,7 +135,7 @@ def _evalStrayLabels( data: DictOfSeries, field: str, flags: Flags, - fields: Sequence[str], + target: Sequence[str], reduction_range: Optional[str] = None, reduction_drop_flagged: bool = False, # TODO: still a case ? reduction_thresh: float = 3.5, @@ -158,7 +159,7 @@ def _evalStrayLabels( flags : saqc.Flags Container to store quality flags to data. - fields : list of str + target : list of str A list of strings, holding the column names of the variables, the stray labels shall be projected onto. @@ -173,7 +174,7 @@ def _evalStrayLabels( reduction_range : {None, str} An offset string, denoting the range of the temporal surrounding to include into the MAD testing. If ``None`` is passed, no testing will be performed and - all fields will have the stray flag projected. + all targets will have the stray flag projected. reduction_drop_flagged : bool, default False Wheather or not to drop flagged values other than the value under test, from the @@ -196,17 +197,17 @@ def _evalStrayLabels( ---------- [1] https://www.itl.nist.gov/div898/handbook/eda/section3/eda35h.htm """ - val_frame = data[fields].to_df() + val_frame = data[target].to_df() stray_detects = flags[field] > UNFLAGGED stray_detects = stray_detects[stray_detects] - to_flag_frame = pd.DataFrame(False, columns=fields, index=stray_detects.index) + to_flag_frame = pd.DataFrame(False, columns=target, index=stray_detects.index) if reduction_range is None: for field in to_flag_frame.columns: flags[to_flag_frame.index, field] = flag return data, flags - for var in fields: + for var in target: for index in enumerate(to_flag_frame.index): index_slice = slice( @@ -403,7 +404,7 @@ def _expFit( demask=["field"], squeeze=["field"], multivariate=True, - handles_target=True, + handles_target=False, ) def flagMVScores( data: DictOfSeries, @@ -420,7 +421,6 @@ def flagMVScores( drop_flagged: bool = False, # TODO: still a case ? thresh: float = 3.5, min_periods: int = 1, - target: str = None, flag: float = BAD, **kwargs, ) -> Tuple[DictOfSeries, Flags]: @@ -506,9 +506,6 @@ def flagMVScores( necessarily present in a reduction interval for reduction actually to be performed. - target : None - ignored. - flag : float, default BAD flag to set. @@ -558,19 +555,24 @@ def flagMVScores( more details. Although [2] gives a fully detailed overview over the `stray` algorithm. """ - if target: - raise NotImplementedError("target is not implemented for this function") fields = toSequence(field) + + fields_ = [] for f in fields: - data, flags = copyField(data, f, flags, f"trafo_{f}") - data, flags = transform(data, f"trafo_{f}", flags, func=trafo, freq=partition) + field_ = str(uuid.uuid4()) + data, flags = copyField(data, field=f, flags=flags, target=field_) + data, flags = transform( + data, field=field_, flags=flags, func=trafo, freq=partition + ) + fields_.append(field_) + knn_field = str(uuid.uuid4()) data, flags = assignKNNScore( data=data, - field=[f"trafo_{f}" for f in fields], + field=fields_, flags=flags, - target="kNN", + target=knn_field, n=n, func=func, freq=partition, @@ -578,11 +580,13 @@ def flagMVScores( min_periods=partition_min, **kwargs, ) + for field_ in fields_: + data, flags = dropField(data, field_, flags) data, flags = flagByStray( - data, - "kNN", - flags, + data=data, + field=knn_field, + flags=flags, freq=partition, min_periods=partition_min, iter_start=iter_start, @@ -593,8 +597,8 @@ def flagMVScores( data, flags = _evalStrayLabels( data=data, - field="kNN", - fields=fields, + field=knn_field, + target=fields, flags=flags, reduction_range=stray_range, reduction_drop_flagged=drop_flagged, @@ -603,9 +607,7 @@ def flagMVScores( flag=flag, **kwargs, ) - data, flags = dropField(data, "kNN", flags) - for f in fields: - data, flags = dropField(data, f"trafo_{f}", flags) + data, flags = dropField(data, knn_field, flags) return data, flags @@ -1202,16 +1204,15 @@ def flagRange( demask=["field"], squeeze=["field"], multivariate=True, - handles_target=True, + handles_target=False, ) -def flagCrossStatistic( +def flagCrossStatistics( data: DictOfSeries, field: Sequence[str], flags: Flags, thresh: float, method: Literal["modZscore", "Zscore"] = "modZscore", flag: float = BAD, - target: str = None, **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ @@ -1248,10 +1249,6 @@ def flagCrossStatistic( flag : float, default BAD flag to set. - target : None - ignored - - Returns ------- data : dios.DictOfSeries @@ -1264,10 +1261,16 @@ def flagCrossStatistic( ---------- [1] https://www.itl.nist.gov/div898/handbook/eda/section3/eda35h.htm """ - if target: - raise NotImplementedError("target is not implemented for this function") fields = toSequence(field) + + for src in fields[1:]: + if (data[src].index != data[fields[0]].index).any(): + raise ValueError( + f"indices of '{fields[0]}' and '{src}' are not compatibble, " + "please resample all variables to a common (time-)grid" + ) + df = data[fields].loc[data[fields].index_of("shared")].to_df() if isinstance(method, str): @@ -1303,7 +1306,7 @@ def flagCrossStatistic( if mask.empty: return data, flags - for var in fields: - flags[mask[var], var] = flag + for f in fields: + flags[mask[f], f] = flag return data, flags diff --git a/saqc/funcs/resampling.py b/saqc/funcs/resampling.py index 35a1ce6626aa069d48ada12faeedb6bbf201a9d7..79566f5ed20734d8e117ff5932e686ca6b524a05 100644 --- a/saqc/funcs/resampling.py +++ b/saqc/funcs/resampling.py @@ -27,7 +27,7 @@ METHOD2ARGS = { } -@processing() +@register(mask=["field"], demask=[], squeeze=[]) def linear( data: DictOfSeries, field: str, @@ -75,7 +75,7 @@ def linear( return interpolateIndex(data, field, flags, freq, "time", **kwargs) -@processing() +@register(mask=["field"], demask=[], squeeze=[]) def interpolate( data: DictOfSeries, field: str, @@ -141,7 +141,6 @@ def interpolate( ) -# for @processing this would need to handle dfilter @register(mask=["field"], demask=[], squeeze=[]) def shift( data: DictOfSeries, @@ -219,7 +218,6 @@ def shift( return data, flags -# for @processing this would need to handle dfilter @register(mask=["field"], demask=[], squeeze=[]) def resample( data: DictOfSeries, diff --git a/saqc/funcs/scores.py b/saqc/funcs/scores.py index 5c41170b68f3decd4aabd9e81e05737ab8e080eb..e931b72c7ad8d632c83b5cd569714a39583cdb1b 100644 --- a/saqc/funcs/scores.py +++ b/saqc/funcs/scores.py @@ -101,8 +101,13 @@ def assignKNNScore( ---------- [1] https://scikit-learn.org/stable/modules/generated/sklearn.neighbors.NearestNeighbors.html """ - if target in data.columns: - raise ValueError(f"'target' must not exist.") + if isinstance(target, list): + if (len(target) > 1) or (target[0] in data.columns): + raise ValueError( + f"'target' must not exist and be of length 1. {target} was passed instead." + ) + target = target[0] + fields = toSequence(field) val_frame = data[fields].copy() score_index = val_frame.index_of("shared") diff --git a/saqc/funcs/tools.py b/saqc/funcs/tools.py index 9bd2ee6d668dc842c97d8f66f2adc764b462e1e9..c67584fa6d4ab0c75d57fb6e7b3eeb28f851a6c5 100644 --- a/saqc/funcs/tools.py +++ b/saqc/funcs/tools.py @@ -22,7 +22,12 @@ _MPL_DEFAULT_BACKEND = mpl.get_backend() @register(mask=[], demask=[], squeeze=[], handles_target=True) def copyField( - data: DictOfSeries, field: str, flags: Flags, target: str, **kwargs + data: DictOfSeries, + field: str, + flags: Flags, + target: str, + overwrite: bool = False, + **kwargs, ) -> Tuple[DictOfSeries, Flags]: """ Copy data and flags to a new name (preserve flags history). @@ -47,8 +52,13 @@ def copyField( The quality flags of data Flags shape may have changed relatively to the flags input. """ + if field == target: + return data, flags + if target in flags.columns.union(data.columns): - raise ValueError(f"{field}: field already exist") + if not overwrite: + raise ValueError(f"{target}: already exist") + data, flags = dropField(data=data, flags=flags, field=target) data[target] = data[field].copy() flags.history[target] = flags.history[field].copy() @@ -249,12 +259,11 @@ def plot( flags: Flags, path: Optional[str] = None, max_gap: Optional[str] = None, - stats: bool = False, history: Optional[Literal["valid", "complete", "clear"]] = "valid", xscope: Optional[slice] = None, phaseplot: Optional[str] = None, - stats_dict: Optional[dict] = None, store_kwargs: Optional[dict] = None, + ax_kwargs: Optional[dict] = None, dfilter: float = FILTER_ALL, **kwargs, ): @@ -290,9 +299,6 @@ def plot( before plotting. If an offset string is passed, only points that have a distance below `max_gap` get connected via the plotting line. - stats : bool, default False - Whether to include statistics table in plot. - history : {"valid", "complete", None}, default "valid" Discriminate the plotted flags with respect to the tests they originate from. @@ -315,35 +321,10 @@ def plot( ``{'pickle': True}``, but note that all other store_kwargs are ignored then. Reopen with: ``pickle.load(open(savepath,'w')).show()`` - stats_dict: dict, default None - (Only relevant if ``stats = True``) - Dictionary of additional statisticts to write to the statistics table - accompanying the data plot. An entry to the stats_dict has to be of the form: - - * ``{"stat_name": lambda x, y, z: func(x, y, z)}`` - - The lambda args ``x``,``y``,``z`` will be fed by: - - * ``x``: the data (``data[field]``). - * ``y``: the flags (``flags[field]``). - * ``z``: The passed flags level (``kwargs[flag]``) + ax_kwargs : dict, default {} + Axis keywords. Change the axis labeling defaults. Most important keywords: + 'x_label', 'y_label', 'title', 'fontsize'. - See examples section for examples - - Examples - -------- - Summary statistic function examples: - - >>> func = lambda x, y, z: len(x) - - Total number of nan-values: - - >>> func = lambda x, y, z: x.isna().sum() - - Percentage of values, flagged greater than passed flag (always round float results - to avoid table cell overflow): - - >>> func = lambda x, y, z: round((x.isna().sum()) / len(x), 2) """ interactive = path is None @@ -356,6 +337,9 @@ def plot( if store_kwargs is None: store_kwargs = {} + if ax_kwargs is None: + ax_kwargs = {} + if interactive: mpl.use(_MPL_DEFAULT_BACKEND) @@ -368,11 +352,10 @@ def plot( flags=flags, level=level, max_gap=max_gap, - stats=stats, history=history, xscope=xscope, phaseplot=phaseplot, - stats_dict=stats_dict, + ax_kwargs=ax_kwargs, ) if interactive: diff --git a/saqc/lib/plotting.py b/saqc/lib/plotting.py index 08305933f2d25838cc8f4cb627fbaa7d46740078..588954a7b21b7570ed4b9b83dff5f5861d394fa8 100644 --- a/saqc/lib/plotting.py +++ b/saqc/lib/plotting.py @@ -24,7 +24,6 @@ STATSDICT = { } PLOT_KWARGS = {"alpha": 0.8, "linewidth": 1} -AX_KWARGS = {} FIG_KWARGS = {"figsize": (16, 9)} SCATTER_KWARGS = { "marker": ["s", "D", "^", "o"], @@ -42,11 +41,10 @@ def makeFig( flags: Flags, level: float, max_gap: Optional[str] = None, - stats: bool = False, history: Optional[Literal["valid", "complete"]] = "valid", xscope: Optional[slice] = None, phaseplot: Optional[str] = None, - stats_dict: Optional[dict] = None, + ax_kwargs: Optional[dict] = None, ): """ Returns a figure object, containing data graph with flag marks for field. @@ -71,8 +69,6 @@ def makeFig( before plotting. If an Offset string is passed, only points that have a distance below `max_gap` get connected via the plotting line. - stats : bool, default False - Whether to include statistics table in plot. history : {"valid", "complete", None}, default "valid" Discriminate the plotted flags with respect to the tests they originate from. @@ -88,45 +84,14 @@ def makeFig( phaseplot : - stats_dict: dict, default None - (Only relevant if `stats`=True). - Dictionary of additional statisticts to write to the statistics table - accompanying the data plot. An entry to the stats_dict has to be of the form: - - * {"stat_name": lambda x, y, z: func(x, y, z)} - - The lambda args ``x``,``y``,``z`` will be fed by: - - * ``x``: the data (``data[field]``). - * ``y``: the flags (``flags[field]``). - * ``z``: The passed flags level (``kwargs[flag]``) - - See examples section for examples - Returns ------- fig : matplotlib.pyplot.figure figure object. - Examples - -------- - Summary statistic function examples: - - >>> func = lambda x, y, z: len(x) - - Total number of nan-values: - - >>> func = lambda x, y, z: x.isna().sum() - - Percentage of values, flagged greater than passed flag (always round float results to avoid table cell overflow): - - >>> func = lambda x, y, z: round((x.isna().sum()) / len(x), 2) """ - if stats_dict is None: - stats_dict = {} - # data retrieval d = data[field] # data slicing: @@ -135,9 +100,10 @@ def makeFig( flags_vals = flags[field][xscope] flags_hist = flags.history[field].hist.loc[xscope] flags_meta = flags.history[field].meta - if stats: - stats_dict.update(STATSDICT) - stats_dict = _evalStatsDict(stats_dict, d, flags_vals, level) + + # set fontsize: + default = plt.rcParams["font.size"] + plt.rcParams["font.size"] = ax_kwargs.pop("fontsize", None) or default na_mask = d.isna() d = d[~na_mask] @@ -151,10 +117,9 @@ def makeFig( flags_vals.index = phase_index flags_hist.index = phase_index plot_kwargs = {**PLOT_KWARGS, **{"marker": "o", "linewidth": 0}} - ax_kwargs = {**{"xlabel": phaseplot, "ylabel": d.name}, **AX_KWARGS} + ax_kwargs = {**{"xlabel": phaseplot, "ylabel": d.name}, **ax_kwargs} else: plot_kwargs = PLOT_KWARGS - ax_kwargs = AX_KWARGS # insert nans between values mutually spaced > max_gap if max_gap and not d.empty: @@ -163,13 +128,7 @@ def makeFig( # figure composition fig = mpl.pyplot.figure(constrained_layout=True, **FIG_KWARGS) grid = fig.add_gridspec() - if stats: - plot_gs, tab_gs = grid[0].subgridspec(ncols=2, nrows=1, width_ratios=[5, 1]) - ax = fig.add_subplot(tab_gs) - _plotStatsTable(ax, stats_dict) - ax = fig.add_subplot(plot_gs) - else: - ax = fig.add_subplot(grid[0]) + ax = fig.add_subplot(grid[0]) _plotVarWithFlags( ax, @@ -184,29 +143,9 @@ def makeFig( ax_kwargs, SCATTER_KWARGS, ) - return fig - -def _evalStatsDict(in_dict, datser, flagser, level): - out_dict = {} - for key in in_dict: - out_dict[key] = str(in_dict[key](datser, flagser, level)) - return out_dict - - -def _plotStatsTable(ax, stats_dict): - ax.axis("tight") - ax.axis("off") - tab_obj = ax.table( - cellText=[[a, b] for a, b in stats_dict.items()], - in_layout=True, - loc="center", - # make the table a bit smaller than the plot - bbox=[0.0, 0.1, 0.95, 0.8], - ) - tab_obj.auto_set_column_width(False) - tab_obj.auto_set_font_size(False) - tab_obj.set_fontsize(10) + plt.rcParams["font.size"] = default + return fig def _plotVarWithFlags( diff --git a/saqc/lib/tools.py b/saqc/lib/tools.py index 94205e5a5863a873f1682d0103b721fae8bb4995..95c9e294dab3e492bb15216098bac22d80699298 100644 --- a/saqc/lib/tools.py +++ b/saqc/lib/tools.py @@ -25,17 +25,6 @@ from saqc.lib.rolling import customRoller T = TypeVar("T", str, float, int) -def _swapToTarget(field, target, flags): - if target is None: - return field, flags - if not isinstance(target, str): - raise TypeError(f"target must be of type string, not {repr(type(target))}") - if target in flags.columns: - raise ValueError(f"cannot create target {repr(target)}, it already exists.") - flags.history[target] = flags.history[field].copy() - return target, flags - - def assertScalar(name, value, optional=False): if (not np.isscalar(value)) and (value is not None) and (optional is True): raise ValueError(f"'{name}' needs to be a scalar or 'None'") @@ -44,7 +33,7 @@ def assertScalar(name, value, optional=False): def toSequence(value: T | Sequence[T]) -> List[T]: - if isinstance(value, (str, int, float)): + if isinstance(value, T.__constraints__): return [value] return list(value) diff --git a/saqc/version.py b/saqc/version.py new file mode 100644 index 0000000000000000000000000000000000000000..423813e43f505ef32b3ce488943b4ec6bd249e3e --- /dev/null +++ b/saqc/version.py @@ -0,0 +1,3 @@ +#!/usr/bin/env python + +__version__ = "2.0.1" diff --git a/setup.py b/setup.py index 2ea09a26956e2bbd508bf54ac5e82fb0633dc3eb..7e6ddfc9f0f809093f3d73ba04d862741bd2185e 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,21 @@ from setuptools import setup, find_packages +from distutils.util import convert_path + +# read the version string from saqc without importing it. See the +# link for a more detailed description of the problem and the solution +# https://stackoverflow.com/questions/2058802/how-can-i-get-the-version-defined-in-setup-py-setuptools-in-my-package +vdict = {} +version_fpath = convert_path("saqc/version.py") +with open(version_fpath) as f: + exec(f.read(), vdict) +version = vdict["__version__"] with open("README.md", "r") as fh: long_description = fh.read() setup( name="saqc", - version="2.0.0", + version=version, author="Bert Palm, David Schaefer, Peter Luenenschloss, Lennard Schmidt", author_email="david.schaefer@ufz.de", description="Data quality checking and processing tool/framework", @@ -15,17 +25,17 @@ setup( packages=find_packages(exclude=("tests",)), python_requires=">=3.7, <3.10", install_requires=[ + "Click==8.0.*", + "dtw==1.4.*", + "matplotlib>=3.4,<3.6", + "numba==0.54.*", "numpy==1.20.*", + "outlier-utils==0.0.3", + "pyarrow==6.0.*", "pandas==1.3.*", - "scipy==1.7.*", "scikit-learn==1.0.*", - "numba==0.54.*", - "matplotlib==3.4.*", - "Click==8.0.*", - "pyarrow==4.0.*", - "typing_extensions==3.10.*", - "outlier-utils==0.0.3", - "dtw==1.4.*", + "scipy==1.7.*", + "typing_extensions==4.*", "seaborn==0.11.*", ], license_files=("LICENSE.md",), diff --git a/sphinx-doc/.gitignore b/sphinx-doc/.gitignore deleted file mode 100644 index 16f05fe5bcb986845d46c131c0e10447581670b2..0000000000000000000000000000000000000000 --- a/sphinx-doc/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ - -_api/ -_build/ -_static/ -*.automodsumm -_static/* \ No newline at end of file diff --git a/sphinx-doc/Makefile b/sphinx-doc/Makefile deleted file mode 100644 index f3db1da13588941376be9065785a5055e0a97e63..0000000000000000000000000000000000000000 --- a/sphinx-doc/Makefile +++ /dev/null @@ -1,53 +0,0 @@ -# Minimal makefile for Sphinx documentation -# - -# You can set these variables from the command line, and also -# from the environment for the first two. -SPHINXOPTS ?= -SPHINXBUILD ?= sphinx-build -SOURCEDIR = . -BUILDDIR = _build - -# sphinx build controll: -# Function documentations will be acessible through: FUNCTIONS.saqc -FUNCTIONS = Functions -CORE = Core -# List of folders containing markdown content to include into the build -MDLIST = getting_started_md how_to_doc_md cook_books_md misc_md -# Put it first so that "make" without argument is like "make help". -help: - @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - -.PHONY: help Makefile clean - -test: - for k in $(MDLIST); do echo sphinx-doc/"$$k"; done - -# clean sphinx generated stuff -clean: - rm -rf _build _static - rm -rf ../$(FUNCTIONS) - rm -rf ../$(CORE) - mkdir _static - # for k in $(MDLIST); do rm -r "$$k"_m2r; done - rm -f *.automodsumm - rm -f *.automodapi - rm -f moduleAPIs/*.automodsumm - rm -f moduleAPIs/*.automodapi - -# trigger (saqc) customized documentation pipeline -doc: - # generate parent fake module for the functions to be documented - python scripts/make_doc_module.py -p "saqc/funcs" -t "$(FUNCTIONS)" -sr ".." - # generate environment table from dictionary - python scripts/make_env_tab.py - # make rest folders from markdown folders - # for k in $(MDLIST); do python scripts/make_md_to_rst.py -p sphinx-doc/"$$k" -sr ".."; done - # make the html build - @$(SPHINXBUILD) -M html "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - -# Catch-all target: route all unknown targets to Sphinx using the new -# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). -%: Makefile - @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - diff --git a/sphinx-doc/cook_books/MultivariateFlagging.rst b/sphinx-doc/cook_books/MultivariateFlagging.rst deleted file mode 100644 index c7ba19919e41d7ec4c2e2d6ad718d3ef977ff391..0000000000000000000000000000000000000000 --- a/sphinx-doc/cook_books/MultivariateFlagging.rst +++ /dev/null @@ -1,67 +0,0 @@ - -Multivariate Flagging -===================== - -The tutorial aims to introduce the usage of SaQC in the context of some more complex flagging and processing techniques. -Mainly we will see how to apply Drift Corrections onto the data and how to perform multivariate flagging. - - -#. :ref:`Data Preparation <cook_books/MultivariateFlagging:Data Preparation>` - -#. :ref:`Drift Correction <cook_books/MultivariateFlagging:Drift Correction>` - -#. `Multivariate Flagging (odd Water) <#Multivariate-Flagging>`_ - -Data preparation ----------------- - - -* Flagging missing values via :py:func:`flagMissing <Functions.saqc.flagMissing>`. -* Flagging out of range values via :py:func:`flagRange <Functions.saqc.flagRange>`. -* Flagging values, where the Specific Conductance (\ *K25*\ ) drops down to near zero. (via :py:func:`flagGeneric <Functions.saqc.flag>`) -* Resampling the data via linear Interpolation (:py:func:`linear <Functions.saqc.linear>`). - -Drift Correction ----------------- - -Exponential Drift -^^^^^^^^^^^^^^^^^ - - -* The variables *SAK254* and *Turbidity* show drifting behavior originating from dirt, that accumulates on the light sensitive sensor surfaces over time. -* The effect, the dirt accumulation has on the measurement values, is assumed to be properly described by an exponential model. -* The Sensors are cleaned periodocally, resulting in a periodical reset of the drifting effect. -* The Dates and Times of the maintenance events are input to the :py:func:`correctDrift <Functions.saqc.correctDrift>`, that will correct the data in between any two such maintenance intervals. (Find some formal description of the process :doc:`here <../misc/ExponentialModel>`.) - -Linear Long Time Drift -^^^^^^^^^^^^^^^^^^^^^^ - - -* Afterwards, there remains a long time linear Drift in the *SAK254* and *Turbidity* measurements, originating from scratches, that accumule on the sensors glass lenses over time -* The lenses are replaced periodically, resulting in a periodical reset of that long time drifting effect -* The Dates and Times of the lenses replacements are input to the :py:func:`correctDrift <Functions.saqc.correctDrift>`, that will correct the data in between any two such maintenance intervals according to the assumption of a linearly increasing bias. - -Maintenance Intervals Flagging -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - - -* The *SAK254* and *Turbidity* values, obtained while maintenance, are, of course not trustworthy, thus, all the values obtained while maintenance get flagged via the :py:func:`flagManual <Functions.saqc.flagManual>` method. -* When maintaining the *SAK254* and *Turbidity* sensors, also the *NO3* sensors get removed from the water - thus, they also have to be flagged via the :py:func:`flagManual <Functions.saqc.flagManual>` method. - -Multivariate Flagging ---------------------- - -Basically following the *oddWater* procedure, as suggested in *Talagala, P.D. et al (2019): A Feature-Based Procedure for Detecting Technical Outliers in Water-Quality Data From In Situ Sensors. Water Ressources Research, 55(11), 8547-8568.* - - -* Variables *SAK254*\ , *Turbidity*\ , *Pegel*\ , *NO3N*\ , *WaterTemp* and *pH* get transformed to comparable scales -* We are obtaining nearest neighbor scores and assigign those to a new variable, via :py:func:`assignKNNScores <Functions.saqc.assignKNNScores>`. -* We are applying the *STRAY* Algorithm to find the cut_off points for the scores, above which values qualify as outliers. (:py:func:`flagByStray <Functions.saqc.flagByStray>`) -* We project the calculated flags onto the input variables via :py:func:`assignKNNScore <Functions.saqc.assignKNNScore>`. - -Postprocessing --------------- - - -* (Flags reduction onto subspaces) -* Back projection of calculated flags from resampled Data onto original data via :py:func: ``mapToOriginal <Functions.saqc.mapToOriginal>`` diff --git a/sphinx-doc/documentation/GenericFunctions.rst b/sphinx-doc/documentation/GenericFunctions.rst deleted file mode 100644 index b630a24832881431393c8f8de938ce5a8da9077e..0000000000000000000000000000000000000000 --- a/sphinx-doc/documentation/GenericFunctions.rst +++ /dev/null @@ -1,4 +0,0 @@ -Generic Functions -================= - -TODO diff --git a/sphinx-doc/environment/freqAliases.rst b/sphinx-doc/environment/freqAliases.rst deleted file mode 100644 index f33af8a092ca93ab3d729ff9bb010f2ee2c3bcee..0000000000000000000000000000000000000000 --- a/sphinx-doc/environment/freqAliases.rst +++ /dev/null @@ -1,18 +0,0 @@ -.. list-table:: - :header-rows: 1 - - * - Alias Example - - Freq - * - "s" - - 1 second - * - "7min" - - 7 minutes - * - "3h" - - 3 hours - * - "1d" - - 1 days - * - "3M" - - 3 Months (only for resampling) - * - "8Y" - - 8 Years (only for resampling) - diff --git a/sphinx-doc/getting_started/TutorialCLI.rst b/sphinx-doc/getting_started/TutorialCLI.rst deleted file mode 100644 index dd15a5df37170bcc6f6a35e04fdf6ed624fd7b6c..0000000000000000000000000000000000000000 --- a/sphinx-doc/getting_started/TutorialCLI.rst +++ /dev/null @@ -1,285 +0,0 @@ -Command Line Application -======================== - -.. note: - - The content of this page is outdate and the provided code sample will very likely - not work as expected. A rewrite of this document is pending... - - -Contents --------- - - -* :ref:`1 Get toy data and configuration <getting_started/GettingStarted:get toy data and configuration>` -* :ref:`2 Run SaQC <getting_started/GettingStarted:run saqc>` -* :ref:`3 Configure SaQC <getting_started/GettingStarted:configure saqc>` - - * :ref:`Change test parameters <getting_started/GettingStarted:change test parameters>` - -* :ref:`4 Explore the functionality <getting_started/GettingStarted:explore the functionality>` - - * :ref:`Process multiple variables <getting_started/GettingStarted:process multiple variables>` - * :ref:`Data harmonization and custom functions <getting_started/GettingStarted:data harmonization and custom functions>` - - -The following passage guides you through the essentials of the usage of SaQC via -a toy dataset and a toy configuration. - -1. Get toy data and configuration ---------------------------------- - -If you take a look into the folder ``saqc/ressources/data`` you will find a toy -dataset ``data.csv`` which contains the following: - -.. code-block:: - - Date,Battery,SM1,SM2 - 2016-04-01 00:05:48,3573,32.685,29.3157 - 2016-04-01 00:20:42,3572,32.7428,29.3157 - 2016-04-01 00:35:37,3572,32.6186,29.3679 - 2016-04-01 00:50:32,3572,32.736999999999995,29.3679 - ... - - -These are two timeseries of soil moisture (SM1+2) and the battery voltage of the -measuring device over time. Generally, this is the way that your data should -look like to run saqc. Note, however, that you do not necessarily need a series -of dates to reference to and that you are free to use more columns of any name -that you like. - -Now create your our own configuration file ``saqc/ressources/data/myconfig.csv`` -and paste the following lines into it: - -.. code-block:: - - varname;test;plot - SM2;flagRange(min=10, max=60);False - SM2;flagMad(window="30d", z=3.5);True - - -These lines illustrate how different quality control tests can be specified for -different variables, - -In this case, we define a range-test that flags all values outside the range -[10,60] and a test to detect spikes using the MAD-method. You can find an -overview of all available quality control tests in the -:doc:`documentation <FunctionIndex>`. Note that the tests are -*executed in the order that you define in the configuration file*. The quality -flags that are set during one test are always passed on to the subsequent one. - -2. Run SaQC ------------ - -Remember to have your virtual environment activated: - -On Unix/Mac-systems -""""""""""""""""""" - -.. code-block:: sh - - source env_saqc/bin/activate - -On Windows -"""""""""" - -.. code-block:: sh - - cd env_saqc/Scripts - ./activate - -Via your console, move into the folder you downloaded saqc into: - -.. code-block:: sh - - cd saqc - -From here, you can run saqc and tell it to run the tests from the toy -config-file on the toy dataset via the ``-c`` and ``-d`` options: - -On Unix/Mac-systems -""""""""""""""""""" - -.. code-block:: sh - - python3 -m saqc -c ressources/data/myconfig.csv -d ressources/data/data.csv - -On Windows -"""""""""" - -.. code-block:: sh - - py -3 -m saqc -c ressources/data/myconfig.csv -d ressources/data/data.csv - -If you installed saqc via PYPi, you can omit ``sh python -m``. - -The command will output this plot: - - -.. image:: ../ressources/images/example_plot_1.png - :target: ../ressources/images/example_plot_1.png - :alt: Toy Plot - - -So, what do we see here? - - -* The plot shows the data as well as the quality flags that were set by the - tests for the variable ``SM2``\ , as defined in the config-file -* Following our definition in the config-file, first the ``flagRange``\ -test that flags - all values outside the range [10,60] was executed and after that, - the ``flagMad``\ -test to identify spikes in the data -* In the config, we set the plotting option to ``True`` for ``flagMad``\ , - only. Thus, the plot aggregates all preceeding tests (here: ``range``\ ) to black - points and highlights the flags of the selected test as red points. - -Save outputs to file -^^^^^^^^^^^^^^^^^^^^ - -If you want the final results to be saved to a csv-file, you can do so by the -use of the ``-o`` option: - -.. code-block:: sh - - saqc -c ressources/data/config.csv -d ressources/data/data.csv -o ressources/data/out.csv - -Which saves a dataframe that contains both the original data and the quality -flags that were assigned by SaQC for each of the variables: - -.. code-block:: - - Date,SM1,SM1_flags,SM2,SM2_flags - 2016-04-01 00:05:48,32.685,OK,29.3157,OK - 2016-04-01 00:20:42,32.7428,OK,29.3157,OK - 2016-04-01 00:35:37,32.6186,OK,29.3679,OK - 2016-04-01 00:50:32,32.736999999999995,OK,29.3679,OK - ... - - - -3. Configure SaQC ------------------ - -Change test parameters -"""""""""""""""""""""" - -Now you can start to change the settings in the config-file and investigate the -effect that has on how many datapoints are flagged as "BAD". When using your -own data, this is your way to configure the tests according to your needs. For -example, you could modify your ``myconfig.csv`` and change the parameters of the -range-test: - -.. code-block:: - - varname;test;plot - SM2;flagRange(min=-20, max=60);False - SM2;flagMad(window="30d", z=3.5);True - -Rerunning SaQC as above produces the following plot: - - -.. image:: ../ressources/images/example_plot_2.png - :target: ../ressources/images/example_plot_2.png - :alt: Changing the config - - -You can see that the changes that we made to the parameters of the range test -take effect so that only the values > 60 are flagged by it (black points). This, -in turn, leaves more erroneous data that is then identified by the proceeding -spike-test (red points). - -4. Explore the functionality ----------------------------- - -Process multiple variables -"""""""""""""""""""""""""" - -You can also define multiple tests for multiple variables in your data. These -are then executed sequentially and can be plotted seperately. E.g. you could do -something like this: - -.. code-block:: - - varname;test;plot - SM1;flagRange(min=10, max=60);False - SM2;flagRange(min=10, max=60);False - SM1;flagMad(window="15d", z=3.5);True - SM2;flagMad(window="30d", z=3.5);True - - -which gives you separate plots for each line where the plotting option is set to -``True`` as well as one summary "data plot" that depicts the joint flags from all -tests: - -.. list-table:: - :header-rows: 1 - - * - SM1 - - SM2 - * - here - - there - - -.. list-table:: - :header-rows: 1 - - * - SM1 - - SM2 - * - .. image:: ../ressources/images/example_plot_31.png - :target: ../ressources/images/example_plot_31.png - :alt: - - - .. image:: ../ressources/images/example_plot_32.png - :target: ../ressources/images/example_plot_32.png - :alt: - - * - .. image:: ../ressources/images/example_plot_31.png - :target: ../ressources/images/example_plot_31.png - :alt: - - - - - - -.. image:: ../ressources/images/example_plot_33.png - :target: ../ressources/images/example_plot_33.png - :alt: - - -Data harmonization and custom functions -""""""""""""""""""""""""""""""""""""""" - -SaQC includes functionality to harmonize the timestamps of one or more data -series. Also, you can write your own tests using a python-based -:doc:`extension language <GenericFunctions>`. This would look like this: - -.. code-block:: - - varname;test;plot - SM2;shiftToFreq(freq="15Min");False - SM2;generic(func=(SM2 < 30));True - - -The above executes an internal framework that harmonizes the timestamps of SM2 -to a 15min-grid (see data below). Further information about this routine can be -found in the :ref:`Flagging Functions Overview <flaggingFunctions>`. - -.. code-block:: - - Date,SM1,SM1_flags,SM2,SM2_flags - 2016-04-01 00:00:00,,,29.3157,OK - 2016-04-01 00:05:48,32.685,OK,, - 2016-04-01 00:15:00,,,29.3157,OK - 2016-04-01 00:20:42,32.7428,OK,, - ... - - -Also, all values where SM2 is below 30 are flagged via the custom function (see -plot below). You can learn more about the syntax of these custom functions -:doc:`here <GenericFunctions>`. - - -.. image:: ../ressources/images/example_plot_4.png - :target: ../ressources/images/example_plot_4.png - :alt: Example custom function - diff --git a/sphinx-doc/how_to_doc/HowToDoc.rst b/sphinx-doc/how_to_doc/HowToDoc.rst deleted file mode 100644 index 273ef245705123cc957ee4d080d0a6034fe066a6..0000000000000000000000000000000000000000 --- a/sphinx-doc/how_to_doc/HowToDoc.rst +++ /dev/null @@ -1,237 +0,0 @@ - -Documentation Guide -=================== - -We document our code via docstrings in numpy-style. -Features, install and usage instructions and other more text intense stuff, -is written in extra documents. -The documents and the docstrings then are collected and rendered using `sphinx <https://www.sphinx-doc.org/>`_. - -Documentation Strings ---------------------- - - -* - Write docstrings for all public modules, functions, classes, and methods. - Docstrings are not necessary for non-public methods, - but you should have a comment that describes what the method does. - This comment should appear after the def line. - [\ `PEP8 <https://www.python.org/dev/peps/pep-0008/#documentation-strings>`_\ ] - -* - Note that most importantly, the ``"""`` that ends a multiline docstring should be on a line by itself [\ `PEP8 <https://www.python.org/dev/peps/pep-0008/#documentation-strings>`_\ ] : - - .. code-block:: python - - """Return a foobang - - Optional plotz says to frobnicate the bizbaz first. - """ - -* - For one liner docstrings, please keep the closing ``"""`` on the same line. - [\ `PEP8 <https://www.python.org/dev/peps/pep-0008/#documentation-strings>`_\ ] - -Pandas Style -^^^^^^^^^^^^ - -We use `Pandas-style <https://pandas.pydata.org/pandas-docs/stable/development/contributing_docstring.html>`_ docstrings: - -Flagger, data, field, etc. --------------------------- - -use this: - -.. code-block:: py - - def foo(data, field, flagger): - """ - data : dios.DictOfSeries - A saqc-data object. - - field : str - A field denoting a column in data. - - flagger : saqc.flagger.BaseFlagger - A saqc-flagger object. - """ - -IDE helper -^^^^^^^^^^ - -In pycharm one can activate autogeneration of numpy doc style like so: - - -#. ``File->Settings...`` -#. ``Tools->Python Integrated Tools`` -#. ``Docstrings->Docstring format`` -#. Choose ``NumPy`` - -Docstring formatting pitfalls -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - - -* Latex is included via - .. code-block:: - - :math:`<latex_code>` - -* - Latex commands need to be signified with **double** backlash! (\ ``\\mu`` instead of ``\mu``\ ) - -* - Nested lists need to be all of the same kind (either numbered or marked - otherwise result is salad) - -* List items covering several lines in the docstring have to be all aligned - (so, not only the superfluent ones, but ALL, including the first one - otherwise result is salad) -* Start of a list has to be seperated from preceding docstring code by *one blank line* - (otherwise list items get just chained in one line and result is salad) -* Most formatting signifiers are not allowed to start or end with a space. (so no :math: `1+1 `, ` var2`, `` a=1 ``, ...) -* Do not include lines *only* containing two or more ``-`` signs, except it is the underscore line of the section heading (otherwise resulting html representation could be messed up) - -hyperlinking docstrings ------------------------ - - -* - Link code content/modules via python roles. - -* - Cite/link via the py domain roles. Link content ``bar``\ , that is registered to the API with the adress ``foo.bar`` and - shall be represented by the name ``link_name``\ , via: - - .. code-block:: - - :py:role:`link_name <foo.bar>` - -* - check out the *_api* folder in the `repository <https://git.ufz.de/rdm-software/saqc/-/tree/develop/sphinx-doc>`_ to get an - overview of already registered paths. Most important may be: - -* - constants are available via ``saqc.constants`` - for example: - - .. code-block:: - - :py:const:`~saqc.constants.BAD` - -* - the ``~`` is a shorthand for hiding the module path and only displaying ``BAD``. - -* - Functions are available via the "simulated" module ``Functions.saqc`` - for example: - -.. code-block:: - - :py:func:`saqc.flagRange <saqc.Functions.flagRange>` - - -* Modules are available via the "simulated" package ``Functions.`` - for example: - -.. code-block:: - - :py:mod:`generic <Functions.generic>` - - -* The saqc object and/or its content is available via: - -.. code-block:: - - :py:class:`saqc.SaQC` - :py:meth:`saqc.SaQC.getResults` - - -* The Flags object and/or its content is available via: - -.. code-block:: - - :py:class:`saqc.Flags` - - -* - you can add .rst files containing ``automodapi`` directives to the modulesAPI folder to make available more modules via pyroles - -* - the Environment table, including variables available via config files is available as restfile located in the environment folder. (Use include directive to include, or linking syntax to link it. - -Adding Markdown content to the Documentation --------------------------------------------- - - -* - By linking the markdown file "foo/bar.md", or any folder that contains markdown files directly, - you can trigger sphinx - ``recommonmark``\ , which is fine for not-too complex markdown documents. - -* - Especially, if you have multiple markdown files that are mutually linked and/or, contain tables of certain fencieness (tables with figures), - you will have to take some minor extra steps: - -* - You will have to gather all markdown files in subfolders of "sphinx-doc" directory (you can have multiple subfolders). - -* - To include a folder named ``foo`` of markdown files in the documentation, or refer to content in ``foo``\ , you will have - to append the folder name to the MDLIST variable in the Makefile: - -* - The markdown files must be in one of the subfolders listed in MDLIST - they cant be gathered in nested subfolders. - -* - You can not link to sections in other markdown files, that contain the ``-`` character (sorry). - -* - The Section structure/ordering must be consistent in the ReST sence (otherwise they wont appear - thats also required if you use plain ``recommonmark`` - -* - You can link to ressources - like pictures and include them in the markdown, if the pictures are in (possibly another) folder in ``\sphinx-doc`` and the paths to this ressources are given relatively! - -* - You can include a markdown file in a rest document, by appending '_m2r' to the folder name when linking it path_wise. - So, to include the markdown file 'foo/bar.md' in a toc tree for example - you would do something like: - -* - the Environment table, including variables availbe via config files is available as restfile located in the environment folder. (Use include directive to include, or linking syntax to link it.) - -.. code-block:: python - - .. toctree:: - :hidden: - :maxdepth: 1 - - foo_m2r/bar - -Linking ReST sources in markdown documentation ----------------------------------------------- - - -* - If you want to hyperlink/include other sources from the sphinx documentation that are rest-files (and docstrings), - you will not be able to include them in a way, that they will appear in you markdown rendering. - however - there is - the posibillity to just include the respective rest directives (see directive/link :ref:`examples <how_to_doc/HowToDoc:hyperlinking docstrings>`\ ). - -* - This will mess up your markdown code - meaning that you will have - those rest snippets flying around, but when the markdown file gets converted to the rest file and build into the - sphinx html build, the linked sources will be integrated properly. The syntax for linking rest sources is as - follows as follows: - -* - to include the link to the rest source ``functions.rst`` in the folder ``foo``\ , under the name ``bar``\ , you would need to insert: - - .. code-block:: - - :doc:`foo <rel_path/functions>` - -* - to link to a section with name ``foo`` in a rest source named ``bumm.rst``\ , under the name ``bar``\ , you would just insert: - - .. code-block:: - - :ref:`bar <relative/path/from/sphinx/root/bumm:foo>` - -* - in that manner you might be able to smuggle most rest directives through into the resulting html build. Especially if you want to link to the docstrings of certain (domain specific) objects. Lets say you want to link to the *function* ``saqc.funcs.flagRange`` under the name ``ranger`` - you just include: - -.. code-block:: - - :py:func:`Ranger <saqc.funcs.flagRange>` - -whereas the ``:func:`` part determines the role, the object is documented as. See `this page <https://www.sphinx-doc.org/en/master/#ref-role>`_ for an overview of the available roles diff --git a/sphinx-doc/misc/ExponentialModel.rst b/sphinx-doc/misc/ExponentialModel.rst deleted file mode 100644 index abd06681b914f680045e559cffdb2852c110e445..0000000000000000000000000000000000000000 --- a/sphinx-doc/misc/ExponentialModel.rst +++ /dev/null @@ -1,31 +0,0 @@ - -Exponential Drift Model and Correction -====================================== - -It is assumed, that, in between maintenance events, there is a drift effect shifting the measurements in a way, that the resulting value course can be described by the exponential model $\ ``M``\ $: - -$\ ``M(t, a, b, c) = a + b(e^{ct}-1)``\ $ - -We consider the timespan in between maintenance events to be scaled to the $\ ``[0,1]``\ $ interval. -To additionally make sure, the modeled curve can be used to calibrate the value course, we added the following two conditions. - -$\ ``M(0, a, b, c) = y_0``\ $ - -$\ ``M(1, a, b, c) = y_1``\ $ - -With $\ ``y_0``\ $ denoting the mean value obtained from the first 6 meassurements directly after the last maintenance event, and $\ ``y_1``\ $ denoting the mean over the 6 meassurements, directly preceeding the beginning of the next maintenance event. - -Solving the equation, one obtains the one-parameter Model: - -$\ ``M_{drift}(t, c) = y_0 + ( \frac{y_1 - y_0}{e^c - 1} ) (e^{ct} - 1)``\ $ - -For every datachunk in between maintenance events. - -After having found the parameter $\ ``c^*``\ $, that minimizes the squared residues between data and drift model, the correction is performed by bending the fitted curve, $\ ``M_{drift}(t, c^*)``\ $, in a way, that it matches $\ ``y_2``\ $ at $\ ``t=1``\ $ (,with $\ ``y_2``\ $ being the mean value observed directly after the end of the next maintenance event). -This bended curve is given by: - -$\ ``M_{shift}(t, c^{*}) = M(t, y_0, \frac{y_1 - y_0}{e^c - 1} , c^*)``\ $ - -the new values $\ ``y_{shifted}``\ $ are computed via: - -$\ ``y_{shifted} = y + M_{shift} - M_{drift}``\ $ diff --git a/sphinx-doc/moduleAPIs/Functionsbreaks.rst b/sphinx-doc/moduleAPIs/Functionsbreaks.rst deleted file mode 100644 index 102ff3d23ea480793e5def5820cdd7d8ac6550af..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionsbreaks.rst +++ /dev/null @@ -1,5 +0,0 @@ -breaks -====== - -.. automodapi:: Functions.breaks - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionschangepoints.rst b/sphinx-doc/moduleAPIs/Functionschangepoints.rst deleted file mode 100644 index d3b545582d5403d065de1ef64f1ed96f65de29b8..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionschangepoints.rst +++ /dev/null @@ -1,5 +0,0 @@ -changepoints -============ - -.. automodapi:: Functions.changepoints - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsconstants.rst b/sphinx-doc/moduleAPIs/Functionsconstants.rst deleted file mode 100644 index 3aeb8feda3132a3eba0799d62a610ae1f9be9edd..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionsconstants.rst +++ /dev/null @@ -1,5 +0,0 @@ -constants -========= - -.. automodapi:: Functions.constants - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionscurvefit.rst b/sphinx-doc/moduleAPIs/Functionscurvefit.rst deleted file mode 100644 index 4e64814b5da5bfb1dc3fa3376473d36675601ab0..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionscurvefit.rst +++ /dev/null @@ -1,5 +0,0 @@ -curvefit -======== - -.. automodapi:: Functions.curvefit - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsdrift.rst b/sphinx-doc/moduleAPIs/Functionsdrift.rst deleted file mode 100644 index 6fff728821955cf745be0fb42274ac696508c46b..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionsdrift.rst +++ /dev/null @@ -1,5 +0,0 @@ -drift -===== - -.. automodapi:: Functions.drift - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsflagtools.rst b/sphinx-doc/moduleAPIs/Functionsflagtools.rst deleted file mode 100644 index d07f78c06d045ee97241a41bcd44a76d2fa81746..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionsflagtools.rst +++ /dev/null @@ -1,5 +0,0 @@ -flagtools -========= - -.. automodapi:: Functions.flagtools - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsgeneric.rst b/sphinx-doc/moduleAPIs/Functionsgeneric.rst deleted file mode 100644 index fa0f435dc27fdccca1fc907630bd59054fe4ebfd..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionsgeneric.rst +++ /dev/null @@ -1,5 +0,0 @@ -generic -======= - -.. automodapi:: Functions.generic - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsinterpolation.rst b/sphinx-doc/moduleAPIs/Functionsinterpolation.rst deleted file mode 100644 index b30ebf19c0dde054fdc82c8b3d1307e1e5ef3a57..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionsinterpolation.rst +++ /dev/null @@ -1,5 +0,0 @@ -interpolation -============= - -.. automodapi:: Functions.interpolation - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsnoise.rst b/sphinx-doc/moduleAPIs/Functionsnoise.rst deleted file mode 100644 index 6a8a74657cd3554a40498b6048de354a8c77c1ea..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionsnoise.rst +++ /dev/null @@ -1,5 +0,0 @@ -noise -===== - -.. automodapi:: Functions.noise - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsoutliers.rst b/sphinx-doc/moduleAPIs/Functionsoutliers.rst deleted file mode 100644 index 13dc3d806da548c1e5bbe62460746e69e1fb2057..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionsoutliers.rst +++ /dev/null @@ -1,5 +0,0 @@ -outliers -======== - -.. automodapi:: Functions.outliers - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionspattern.rst b/sphinx-doc/moduleAPIs/Functionspattern.rst deleted file mode 100644 index bd010b4d1d8f23305a6f380da07fcecae40bddcb..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionspattern.rst +++ /dev/null @@ -1,5 +0,0 @@ -pattern -======= - -.. automodapi:: Functions.pattern - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsresampling.rst b/sphinx-doc/moduleAPIs/Functionsresampling.rst deleted file mode 100644 index 5e7e22367ad71274b16519fde5cb3f794e4990c1..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionsresampling.rst +++ /dev/null @@ -1,5 +0,0 @@ -resampling -========== - -.. automodapi:: Functions.resampling - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsresidues.rst b/sphinx-doc/moduleAPIs/Functionsresidues.rst deleted file mode 100644 index c97bfed02a2614d47ce1f25e9c0ce45e55a25e7e..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionsresidues.rst +++ /dev/null @@ -1,5 +0,0 @@ -residues -======== - -.. automodapi:: Functions.residues - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsrolling.rst b/sphinx-doc/moduleAPIs/Functionsrolling.rst deleted file mode 100644 index 8cd668265f234bfc1e7fb8705e4e4d16038a9bc6..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionsrolling.rst +++ /dev/null @@ -1,5 +0,0 @@ -rolling -======= - -.. automodapi:: Functions.rolling - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionssaqc.rst b/sphinx-doc/moduleAPIs/Functionssaqc.rst deleted file mode 100644 index 54c41273bafb912a4b31b9a6f00c662dab00ae01..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionssaqc.rst +++ /dev/null @@ -1,5 +0,0 @@ -saqc -==== - -.. automodapi:: Functions.saqc - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionsscores.rst b/sphinx-doc/moduleAPIs/Functionsscores.rst deleted file mode 100644 index c3867522989e9abfff6872c9fd8b5da042d5f7af..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionsscores.rst +++ /dev/null @@ -1,5 +0,0 @@ -scores -====== - -.. automodapi:: Functions.scores - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionstools.rst b/sphinx-doc/moduleAPIs/Functionstools.rst deleted file mode 100644 index 42989321f245e2f5328683e3e709e4f87bb2a5bb..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionstools.rst +++ /dev/null @@ -1,5 +0,0 @@ -tools -===== - -.. automodapi:: Functions.tools - :no-heading: diff --git a/sphinx-doc/moduleAPIs/Functionstransformation.rst b/sphinx-doc/moduleAPIs/Functionstransformation.rst deleted file mode 100644 index 8b20b6ebc1676c2b4523f92add02135f8306e8e2..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/Functionstransformation.rst +++ /dev/null @@ -1,5 +0,0 @@ -transformation -============== - -.. automodapi:: Functions.transformation - :no-heading: diff --git a/sphinx-doc/moduleAPIs/saqcClass.rst b/sphinx-doc/moduleAPIs/saqcClass.rst deleted file mode 100644 index 97f70bd99dcf779343cc68156707cfb3f91598a7..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/saqcClass.rst +++ /dev/null @@ -1,5 +0,0 @@ - -SaQC -==== - -* :py:class:`saqc.SaQC <Core.Core.SaQC>` \ No newline at end of file diff --git a/sphinx-doc/moduleAPIs/saqcInit.rst b/sphinx-doc/moduleAPIs/saqcInit.rst deleted file mode 100644 index c0fc167dcc27967152d8793e1e30ebe8f0353fa8..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/saqcInit.rst +++ /dev/null @@ -1,7 +0,0 @@ - -saqc -==== - -UFZ proudly presents: - -.. automodapi:: saqc \ No newline at end of file diff --git a/sphinx-doc/moduleAPIs/saqcVisitor.rst b/sphinx-doc/moduleAPIs/saqcVisitor.rst deleted file mode 100644 index 3b15895e0979ecfce96f57ed803bf4146d7a3ddb..0000000000000000000000000000000000000000 --- a/sphinx-doc/moduleAPIs/saqcVisitor.rst +++ /dev/null @@ -1,6 +0,0 @@ - -saqc -==== - -.. automodapi:: saqc.core.visitor - :include-all-objects: \ No newline at end of file diff --git a/sphinx-doc/ressources/data/hydro_config.csv b/sphinx-doc/ressources/data/hydro_config.csv deleted file mode 100644 index 3589f46f9ccb2d2d58defb85ed6da900ccd165f1..0000000000000000000000000000000000000000 --- a/sphinx-doc/ressources/data/hydro_config.csv +++ /dev/null @@ -1,26 +0,0 @@ -varname ; test -#---------------;--------------------------------------- -level_raw ; flagRange(min=0) -water_temp_raw ; flagRange(min=-1) -sak254_raw ; flagRange(min=0, max=70) -level_raw ; linear(target='level', freq='15min') -water_temp_raw ; linear(target='water_temp', freq='15min') -sak254_raw ; linear(target='sac254, freq='15min') -sak254 ; correctDrift(target='sak254_corr', maintenance_field='maint', model='exponential') -sak254_corr ; flagManual(mdata='maint') -level ; transform(target='level_norm', func='zNorm', freq='20D') -sac254_corr ; transform(target='sac254_norm', func='zNorm', freq='20D') -water_temp ; transform('water_temp_norm', func='zNorm', freq='20D') -level_norm, sac_corr_norm, water_temp_norm ; scores.assignKNNScore(target='kNN_scores', freq='20D') -kNN_scores ; flagByStray(freq='20D') -level ; genericFlag(func=lambda kNNscores: isFlagged(kNNscores)) -sac25_corr ; genericFlag(func=lambda kNNscores: isFlagged(kNNscores)) -water_temp ; genericFlag(func=lambda kNNscores: isFlagged(kNNscores)) -level ; concatFlags(target='level_raw', 'inverse_interpolation') -sac_corr ; concatFlags(target='sac254_raw', 'inverse_interpolation') -water_temp ; concatFlags(target='water_temp_raw', 'inverse_interpolation') - - - - - diff --git a/sphinx-doc/scripts/make_md_to_rst.py b/sphinx-doc/scripts/make_md_to_rst.py deleted file mode 100644 index a02eecdcb7db4cf2663c0ca698186b74077466a9..0000000000000000000000000000000000000000 --- a/sphinx-doc/scripts/make_md_to_rst.py +++ /dev/null @@ -1,181 +0,0 @@ -""" -The script generates a folder of rest files from a folder of markdown files. -Markdown Hyperlinks between the files in the folder get converted to rest links so that they function properly in a -sphinx generated html build obtained from the resulting rest folder. -""" - -import os -import click -import shutil -from m2r import parse_from_file -import re - -new_line_re = "(\r\n|[\r\n])" - - -def rebaseAbsRoot(path, target, root): - """ - If path and target intersect at root, return relative path from path to target - Functionality is limited. - path and target must be path strings pointing at FILES! - root is only allowed to appear once in every path - you cant root to os.sep (no folder seperators allowed in the root string) - """ - - p = path.find(root) - t = target.find(root) - if (p == -1) or (t == -1) or (".." in path): - return target - - path = path[path.find(root) :].split(os.sep) - target = target[target.find(root) :].split(os.sep) - # remove common path chunks: - while path[0] == target[0]: - del path[0] - del target[0] - - up_steps = (len(path) - 1) * f"..{os.sep}" - down_steps = os.sep.join(target) - new_path = os.path.join(up_steps, down_steps) - return new_path - - -def fixTables(f_rst): - body_re = f"((.+){new_line_re})*{new_line_re}((.+){new_line_re})*" - tables = list(re.finditer(f"\.\. list-table::{new_line_re}" + body_re, f_rst)) - for t in tables: - tab = t[0] - - def pic_repl(match): - leading = match.groupdict()["list_level"] - pic_dir = match.groupdict()["pic_directive"] - pic_pad = re.match("^[ ]*", pic_dir).span()[1] - pic_dir = re.sub(f'{" " * pic_pad}', " " * len(leading), pic_dir) - pic_dir = leading + pic_dir[len(leading) :] - end_space = re.search(f"{new_line_re}[ ]*$", match[0]) - if end_space: - pic_dir = re.sub(f"{new_line_re}[ ]*$", end_space[0], pic_dir) - return pic_dir - - messy_re = ( - f"(?P<list_level>.*){new_line_re}(?P<pic_directive>[ ]*.. image::[^*-]*)" - ) - # using while loop cause messed pic patterns overlap - tab, repnum = re.subn(messy_re, pic_repl, tab, 1) - while repnum: - tab, repnum = re.subn(messy_re, pic_repl, tab, 1) - - bullets = tab.split(" *")[1:] - items = [bullet.split(" -") for bullet in bullets] - last_items = items[-1] - item_num = len(items[0]) - last_item_num = len(last_items) - if item_num > last_item_num: - has_content = ( - len([content for content in last_items if re.search("[^\s-]", content)]) - > 0 - ) - if has_content: - # append empty cells - tab += " - \n" * (item_num - last_item_num) - else: - # delete last row (using replace to avoid false meta char interpretation - tab = tab.replace(bullets[-1][0], "") - - bullet_num = len( - list(re.finditer(f" \*(?P<items>([ ]+-.*{new_line_re})*)", tab)) - ) - if bullet_num == 1: - # fix empty body table error: - tab = re.sub(":header-rows: [0-9]", ":header-rows: 0", tab) - - if tab != t[0]: - f_rst = f_rst.replace(t[0], tab) - - return f_rst - - -def fixLinks(f_rst, f, targetpath): - md_links = list( - re.finditer( - "(?P<numbered>\. )?`(?P<link_name>[^<`]*) <(?P<md_link>\S*.md)?(#)?(?P<section>[^>]*)?>`_?", - f_rst, - ) - ) - for link in md_links: - # change directory: - link_path = link.groupdict()["md_link"] - if not link_path: - link_path = f - # change directory to point at temporal rest dir (if link isnt relative): - if os.path.dirname(link_path) != "": - link_path = os.path.join( - os.path.dirname(link_path) + "_m2r", os.path.basename(link_path) - ) - # rebase the link to relative link if its not - link_path = rebaseAbsRoot(os.path.join(targetpath, f), link_path, "sphinx-doc") - # remove extension name (rst syntax) - link_path = re.sub("\.md$", "", link_path) - if link.groupdict()["section"]: - # while document links have to be relative - section links have to be absolute from sphinx doc dir - - # markdown space representation by dash has to be removed... - abs_path = os.path.basename(os.path.abspath("")) - abs_path = targetpath[targetpath.find(abs_path) + len(abs_path) + 1 :] - link_path = os.path.join(abs_path, os.path.basename(link_path)) - role = ":ref:" - section = ":" + link.groupdict()["section"].replace("-", " ") - # one more regex spell for the sake of numbered section linking: - if link.groupdict()["numbered"]: - section = re.sub("(:[0-9]+)", "\g<1>.", section) - else: - role = ":doc:" - section = "" - - f_rst = re.sub( - f'`(?P<link_name>{link.groupdict()["link_name"]}) ' - f'<({link.groupdict()["md_link"]})?(#[^>]*)?>`(_)?', - r"{}`\g<link_name> <{}{}>`".format(role, link_path, section), - f_rst, - ) - return f_rst - - -@click.command() -@click.option( - "-p", - "--mdpath", - type=str, - required=True, - default="sphinx-doc/getting_started_md", - help="Relative path to the folder containing the .md files to be converted (relative to sphinx root).", -) -@click.option( - "-sr", - "--sphinxroot", - type=str, - required=True, - default="..", - help="Relative path to the sphinx root.", -) -def main(mdpath, sphinxroot): - root_path = os.path.abspath(sphinxroot) - mdpath = os.path.join(root_path, mdpath) - targetpath = mdpath + "_m2r" - - # clear target directory: - if os.path.isdir(targetpath): - shutil.rmtree(targetpath) - os.mkdir(targetpath) - - mdfiles = [f for f in os.listdir(mdpath) if os.path.splitext(f)[1] == ".md"] - for f in mdfiles: - f_rst = parse_from_file(os.path.join(mdpath, f)) - # regex magic- replace invalid links: - f_rst = fixLinks(f_rst, f, targetpath) - f_rst = fixTables(f_rst) - with open(os.path.join(targetpath, f.replace(".md", ".rst")), "w+") as file_: - file_.write(f_rst) - - -if __name__ == "__main__": - main() diff --git a/sphinxdoc/Makefile b/sphinxdoc/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..b3a754c158ab6913ce6d2761884b3b568086bbb0 --- /dev/null +++ b/sphinxdoc/Makefile @@ -0,0 +1,75 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = . +BUILDDIR = _build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile clean + +test: + for k in $(MDLIST); do echo sphinxdoc/"$$k"; done + +# clean sphinx generated stuff +clean: + rm -rf _build _static + mkdir _static + rm -f *.automodsumm + rm -f *.automodapi + rm -f moduleAPIs/*.automodsumm + rm -f moduleAPIs/*.automodapi + rm -f */*.automodsumm + rm -f -r coredoc + +# make doctest, make documentation, make clean +doc: + # generate parent fake module for the functions to be documented + python scripts/make_doc_module.py -p "saqc/funcs" -sr ".." -su "funcSummaries" + # generate environment table from dictionary + python scripts/make_env_tab.py + @$(SPHINXBUILD) -M doctest "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + @$(SPHINXBUILD) -M html "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + python scripts/modify_html_API.py + rm -f *.automodsumm + rm -f *.automodapi + rm -f moduleAPIs/*.automodsumm + rm -f moduleAPIs/*.automodapi + rm -f */*.automodsumm + rm -f -r coredoc + +# make documentation +doconly: + # generate parent fake module for the functions to be documented + python scripts/make_doc_module.py -p "saqc/funcs" -sr ".." -su "funcSummaries" + # generate environment table from dictionary + python scripts/make_env_tab.py + @$(SPHINXBUILD) -M html "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + python scripts/modify_html_API.py + + +# make test, clean up +testonly: + # generate parent fake module for the functions to be documented + python scripts/make_doc_module.py -p "saqc/funcs" -sr ".." -su "funcSummaries" + # generate environment table from dictionary + python scripts/make_env_tab.py + @$(SPHINXBUILD) -M doctest "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + rm -f *.automodsumm + rm -f *.automodapi + rm -f moduleAPIs/*.automodsumm + rm -f moduleAPIs/*.automodapi + rm -f */*.automodsumm + rm -f -r coredoc + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + diff --git a/sphinx-doc/conf.py b/sphinxdoc/conf.py similarity index 92% rename from sphinx-doc/conf.py rename to sphinxdoc/conf.py index bed7ae63676e534c3b34c3d404bbdb1f1ed96059..b58390666b1b7544bc1e4dc4406e3ec5e2206b6e 100644 --- a/sphinx-doc/conf.py +++ b/sphinxdoc/conf.py @@ -71,9 +71,12 @@ extensions = [ # -- Params of the extensions ------------------------------------------------ +autosummary_ignore_module_all = True +autosummary_imported_members = False add_module_names = False numpydoc_show_class_members = False - +plot_html_show_formats = False +plot_html_show_source_link = False automodsumm_inherited_members = True # write out the files generated by automodapi, mainly for debugging automodsumm_writereprocessed = True @@ -88,6 +91,7 @@ doctest_global_setup = """ import saqc import pandas as pd import numpy as np +from saqc.constants import * """ # -- Other options ----------------------------------------------------------- @@ -125,12 +129,12 @@ html_static_path = ["_static", "css"] # -- RST options ------- rst_prolog = """ -.. |ufzLogo| image:: /ressources/images/Representative/UFZLogo.jpg +.. |ufzLogo| image:: /ressources/images/Representative/UFZLogo.png :width: 40 % :target: https://www.ufz.de/ -.. |rdmLogo| image:: /ressources/images/Representative/RDMlogo.jpg - :width: 18 % +.. |rdmLogo| image:: /ressources/images/Representative/RDMLogo.png + :width: 22 % :target: https://www.ufz.de/index.php?de=45348 :class: align-right diff --git a/sphinx-doc/cook_books/DataRegularisation.rst b/sphinxdoc/cook_books/DataRegularisation.rst similarity index 87% rename from sphinx-doc/cook_books/DataRegularisation.rst rename to sphinxdoc/cook_books/DataRegularisation.rst index 3bf9fd5c7107cb258c986e0938686f31cf2df807..f1debd6f40cd53d19f6a90579475c42897bd53de 100644 --- a/sphinx-doc/cook_books/DataRegularisation.rst +++ b/sphinxdoc/cook_books/DataRegularisation.rst @@ -5,7 +5,7 @@ The tutorial aims to introduce the usage of ``SaQC`` methods, in order to obtain from given time series data input. Regularly sampled time series data, is data, that exhibits a constant temporal spacing in between subsequent data points. -In the following steps, the tutorial guides through the usage of the *SaQC* :py:mod:`resampling <saqc.resampling>` +In the following steps, the tutorial guides through the usage of the *SaQC* :doc:`resampling <../funcSummaries/generic>` library. #. Initially, we introduce and motivate regularisation techniques and we do import the tutorial data. @@ -78,32 +78,27 @@ example data set: Lets import it and check out the first and last lines. - ->>> import pandas as pd ->>> data_path = './ressources/data/SoilMoisture.csv' ->>> data = pd.read_csv(data_path, index_col=0) ->>> data.index = pd.DatetimeIndex(data.index) ->>> data - SoilMoisture -2021-01-01 00:09:07 23.429701 -2021-01-01 00:18:55 23.431900 -2021-01-01 00:28:42 23.343100 -2021-01-01 00:38:30 23.476400 -2021-01-01 00:48:18 23.343100 -... ... -2021-03-20 07:13:49 152.883102 -2021-03-20 07:26:16 156.587906 -2021-03-20 07:40:37 166.146194 -2021-03-20 07:54:59 164.690598 -2021-03-20 08:40:41 155.318893 -<BLANKLINE> -[10607 rows x 1 columns] - -.. testsetup:: - - data_path = './ressources/data/SoilMoisture.csv' - data = pd.read_csv(data_path, index_col=0) - data.index = pd.DatetimeIndex(data.index) +.. doctest:: example + + >>> import pandas as pd + >>> data_path = './ressources/data/SoilMoisture.csv' + >>> data = pd.read_csv(data_path, index_col=0) + >>> data.index = pd.DatetimeIndex(data.index) + >>> data + SoilMoisture + 2021-01-01 00:09:07 23.429701 + 2021-01-01 00:18:55 23.431900 + 2021-01-01 00:28:42 23.343100 + 2021-01-01 00:38:30 23.476400 + 2021-01-01 00:48:18 23.343100 + ... ... + 2021-03-20 07:13:49 152.883102 + 2021-03-20 07:26:16 156.587906 + 2021-03-20 07:40:37 166.146194 + 2021-03-20 07:54:59 164.690598 + 2021-03-20 08:40:41 155.318893 + <BLANKLINE> + [10607 rows x 1 columns] The data series seems to start with a sampling rate of roughly *10* minutes. @@ -123,7 +118,7 @@ Regularisations So lets transform the measurements timestamps to have a regular *10* minutes frequency. In order to do so, we have to decide what to do with each time stamps associated data, when we alter the timestamps value. -Basically, there are three types of :doc:`regularisations <../moduleAPIs/Functionsresampling>` methods: +Basically, there are three types of :doc:`regularisations <../funcSummaries/resampling>` methods: #. We could keep the values as they are, and thus, @@ -134,16 +129,14 @@ Basically, there are three types of :doc:`regularisations <../moduleAPIs/Functio Shift ----- -Lets apply a simple shift via the :py:func:`shift <Functions.saqc.shift>` method. +Lets apply a simple shift via the :py:meth:`~saqc.SaQC.shift` method. ->>> import saqc ->>> qc = saqc.SaQC(data) ->>> qc = qc.shift('SoilMoisture', target='SoilMoisture_bshift', freq='10min', method='bshift') +.. doctest:: -.. testsetup:: + >>> import saqc + >>> qc = saqc.SaQC(data) + >>> qc = qc.shift('SoilMoisture', target='SoilMoisture_bshift', freq='10min', method='bshift') - qc = saqc.SaQC(data) - qc = qc.shift('SoilMoisture', target='SoilMoisture_bshift', freq='10min', method='bshift') Target parameter ^^^^^^^^^^^^^^^^ @@ -156,7 +149,7 @@ Freq parameter We passed the ``freq`` keyword of the intended sampling frequency in terms of a `date alias <https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#offset-aliases>`_ string. All of -the :doc:`regularisations <../moduleAPIs/Functionsresampling>` methods have such a frequency keyword, +the :doc:`regularisations <../funcSummaries/resampling>` methods have such a frequency keyword, and it just determines the sampling rate, the resulting regular timeseries will have. Shifting Method @@ -164,7 +157,7 @@ Shifting Method With the ``method`` keyword, we determined the direction of the shift. We passed it the string ``bshift`` - which applies a *backwards* shift, so data points get shifted *backwards*\ , until they match a timestamp -that is a multiple of *10* minutes. (See :py:func:`saqc.shift <Functions.saqc.shift>` documentation for more +that is a multiple of *10* minutes. (See :py:meth:`~saqc.SaQC.shift` documentation for more details on the keywords.) Lets see, how the data is now sampled. Therefore, we use the ``data_raw`` Atribute from the @@ -175,7 +168,7 @@ comprehensible from one look. Shifted data ^^^^^^^^^^^^ - >>> qc.data_raw + >>> qc.dataRaw # doctest: +SKIP SoilMoisture | SoilMoisture_bshift | ================================ | ======================================= | 2021-01-01 00:09:07 23.429701 | 2021-01-01 00:00:00 23.429701 | @@ -200,7 +193,7 @@ We see, the first and last *10* datapoints of both, the original data time serie Obveously, the shifted data series now exhibits a regular sampling rate of *10* minutes, with the index ranging from the latest timestamp, that is a multiple of *10* minutes and preceeds the initial timestamp of the original data, up to the first *10* minutes multiple, that succeeds the last original datas timestamp. -This is default behavior to all the :doc:`regularisations <../moduleAPIs/Functionsresampling>` provided by ``saqc``. +This is default behavior to all the :doc:`regularisations <../funcSummaries/resampling>` provided by ``saqc``. Data Loss and Empty Intervals ----------------------------- @@ -241,9 +234,9 @@ If there are multiple values present within an interval with size according to t ``freq``\ , this values get reduced to one single value, that will get assigned to the timestamp associated with the interval. -This reduction depends on the selected :doc:`regularisation <../moduleAPIs/Functionsresampling>` method. +This reduction depends on the selected :doc:`regularisation <../funcSummaries/resampling>` method. -For example, :ref:`above <cook_books/DataRegularisation:shift>`\ , we applied a backwards :py:func:`shift <Functions.saqc.shift>` with a *10* minutes frequency. +For example, :ref:`above <cook_books/DataRegularisation:shift>`\ , we applied a backwards :py:meth:`~saqc.SaQC.shift` with a *10* minutes frequency. As a result, the first value, encountered after any multiple of *10* minutes, gets shifted backwards to be aligned with the desired frequency and any other value in that *10* minutes interval just gets discarded. @@ -252,7 +245,7 @@ within the *10* minutes interval ranging from ``2021-01-01 07:30:00`` to ``2021- in the original data - and only the first of the two reappears in the shifted data set, as representation for that interval. - >>> qc.data_raw["2021-01-01 07:00:00":"2021-01-01 08:00:00"] + >>> qc.dataRaw["2021-01-01 07:00:00":"2021-01-01 08:00:00"] # doctest: +SKIP SoilMoisture_bshift | SoilMoisture | ================================ | ========================================= | Date Time | Date Time | @@ -274,7 +267,7 @@ To shift to any frequncy aligned timestamp the value that is closest to that tim can perform a *nearest shift* instead of a simple *back shift*\ , by using the shift method ``"nshift"``\ : >>> qc = qc.shift('SoilMoisture', target='SoilMoisture_nshift', freq='10min', method='nshift') - >>> qc.data_raw['2021-01-01T07:00:00':'2021-01-01T08:00:00'] + >>> qc.dataRaw['2021-01-01T07:00:00':'2021-01-01T08:00:00'] # doctest: +SKIP SoilMoisture_nshift | SoilMoisture | ================================ | ========================================= | Date Time | Date Time | @@ -291,7 +284,7 @@ timestamp would get assigned the nearest value of all the values, that preceed o Maybe check out, what happens with the chunk of the final 2 hours of our shifted *Soil Moisture* dataset, to get an idea. - >>> qc.data_raw['2021-03-20 07:00:00':] + >>> qc.dataRaw['2021-03-20 07:00:00':] # doctest: +SKIP SoilMoisture_nshift | SoilMoisture | ================================ | ========================================= | Date Time | Date Time | @@ -316,13 +309,13 @@ Aggregation ----------- If we want to comprise several values by aggregation and assign the result to the new regular timestamp, instead of -selecting a single one, we can do this, with the :py:func:`saqc.resample <Functions.saqc.resample>` method. +selecting a single one, we can do this, with the :py:meth:`~saqc.SaQC.resample` method. Lets resample the *SoilMoisture* data to have a *20* minutes sample rate by aggregating every *20* minutes intervals content with the arithmetic mean (which is implemented by numpies ``numpy.mean`` function for example). >>> import numpy as np >>> qc = qc.resample('SoilMoisture', target='SoilMoisture_mean', freq='20min', method='bagg', agg_func=np.mean) - >>> qc.data_raw + >>> qc.dataRaw # doctest: +SKIP SoilMoisture | SoilMoisture_mean | ================================ | ===================================== | Date Time | Date Time | @@ -373,17 +366,17 @@ Interpolation Another common way of obtaining regular timestamps, is, the interpolation of data at regular timestamps. In the pool of py:mod:`regularisation <Functions.saqc.resampling>` methods, is available the -:py:func:`saqc.interpolate <Functions.saqc.interpolate>` method. +:py:meth:`~saqc.SaQC.interpolate` method. Lets apply a linear interpolation onto the dataset. To access linear interpolation, we pass the ``method`` parameter the string ``"time"``. This applies an interpolation, that is sensitive to the difference in temporal gaps (as opposed by ``"linear"``\ , wich expects all the gaps to be equal). Get an overview -of the possible interpolation methods in the :py:func:`saqc.interpolate <Functions.saqc.interpolate>` +of the possible interpolation methods in the :py:meth:`~saqc.SaQC.interpolate>` documentation. Lets check the results: >>> qc = qc.interpolate('SoilMoisture', target='SoilMoisture_linear', freq='10min', method='time') - >>> qc.data_raw + >>> qc.dataRaw # doctest: +SKIP SoilMoisture | SoilMoisture_linear | ================================ | ========================================= | Date Time | Date Time | @@ -426,12 +419,12 @@ a :ref:`valid <cook_books/DataRegularisation:valid data>` value at ``2021-03-20 This behavior is intended to reflect the sparsity of the original data in the regularized data set. The behavior can be circumvented by applying the more general -:py:func:`saqc.interpolateIndex <Functions.saqc.interpolateIndex>`. +:py:meth:`~saqc.SaQC.interpolateIndex`. Linear Interpolation ~~~~~~~~~~~~~~~~~~~~ -Note, that there is a wrapper available for linear interpolation: :py:func:`saqc.linear <Functions.saqc.linear>`. +Note, that there is a wrapper available for linear interpolation: :py:meth:`~saqc.SaQC.linear`. Flags and Regularisation ------------------------ @@ -441,17 +434,17 @@ Since data, that is flagged by a level higher or equal to the passed ``to_mask`` it can be of advantage, to flag data before regularisation in order to effectively exclude it from the resulting regularly sampled data set. Lets see an example for the *SoilMoisture* data set. - >>> qc = qc.linear('SoilMoisture', target='SoilMoisture_linear', freq='10min') - >>> qc.data_raw['2021-01-01 15:00:00':'2021-01-01 16:00:00'] - SoilMoisture_linear | SoilMoisture | - ================================ | ========================================= | - Date Time | Date Time | - 2021-01-01 15:00:00 23.341182 | 2021-01-01 15:00:51 23.3410 | - 2021-01-01 15:10:00 23.342964 | 2021-01-01 15:10:38 23.3431 | - 2021-01-01 15:20:00 23.341092 | 2021-01-01 15:20:26 23.3410 | - 2021-01-01 15:30:00 23.341000 | 2021-01-01 15:30:14 23.3410 | - 2021-01-01 15:40:00 -119.512446 | 2021-01-01 15:40:02 -120.0000 | - 2021-01-01 15:50:00 23.299553 | 2021-01-01 15:49:50 23.2988 | +>>> qc = qc.linear('SoilMoisture', target='SoilMoisture_linear', freq='10min') # doctest: +SKIP +>>> qc.dataRaw['2021-01-01 15:00:00':'2021-01-01 16:00:00'] # doctest: +SKIP + SoilMoisture_linear | SoilMoisture | +================================ | ========================================= | +Date Time | Date Time | +2021-01-01 15:00:00 23.341182 | 2021-01-01 15:00:51 23.3410 | +2021-01-01 15:10:00 23.342964 | 2021-01-01 15:10:38 23.3431 | +2021-01-01 15:20:00 23.341092 | 2021-01-01 15:20:26 23.3410 | +2021-01-01 15:30:00 23.341000 | 2021-01-01 15:30:14 23.3410 | +2021-01-01 15:40:00 -119.512446 | 2021-01-01 15:40:02 -120.0000 | +2021-01-01 15:50:00 23.299553 | 2021-01-01 15:49:50 23.2988 | At ``2021-01-01 15:40:02`` the original data exhibits a measurement value of ``-120`` - which is obviously not a valid data point, regarding the fact, that *SoilMoisture* measurements @@ -468,13 +461,13 @@ We can circumvent having that gap, by flagging that value before interpolation. works, because there is actually another, now valid value, available in the interval in between ``2021-01-01 15:40:00`` and ``2021-01-01 15:50:00``\ , that can serve as right pillow point for the interpolation at ``2021-01-01 15:40:00``. So lets flag all the values smaller than *0* -with the :py:func:`saqc.flagRange <Functions.saqc.flagRange>` method and after this, +with the :py:meth:`~saqc.SaQC.flagRange` method and after this, do the interpolation. >>> qc = qc.flagRange('SoilMoisture', min=0) >>> qc = qc.interpolate('SoilMoisture', freq='10min', method='time') - >>> qc.data_raw['2021-01-01T07:00:00':'2021-01-01T08:00:00'] - SoilMoisture | SoilMoisture_original | + >>> qc.dataRaw['2021-01-01T07:00:00':'2021-01-01T08:00:00'] # doctest: +SKIP + SoilMoisture | SoilMoisture_original | ================================ | ========================================= | Date Time | Date Time | 2021-01-01 15:00:00 23.341182 | 2021-01-01 15:00:51 23.3410 | diff --git a/sphinxdoc/cook_books/MultivariateFlagging.rst b/sphinxdoc/cook_books/MultivariateFlagging.rst new file mode 100644 index 0000000000000000000000000000000000000000..6e6a9c48cceaac11eeee5b336a630cb33751944f --- /dev/null +++ b/sphinxdoc/cook_books/MultivariateFlagging.rst @@ -0,0 +1,392 @@ + +.. testsetup:: exampleMV + + import matplotlib.pyplot as plt + datapath = './ressources/data/hydro_data.csv' + maintpath = './ressources/data/hydro_maint.csv' + configpath = './ressources/data/hydro_config.csv' + +.. plot:: + :context: + :include-source: False + + import matplotlib + import saqc + import pandas as pd + datapath = '../ressources/data/hydro_data.csv' + maintpath = '../ressources/data/hydro_maint.csv' + data = pd.read_csv(datapath, index_col=0) + maint = pd.read_csv(maintpath, index_col=0) + maint.index = pd.DatetimeIndex(maint.index) + data.index = pd.DatetimeIndex(data.index) + qc = saqc.SaQC([data, maint]) + + +Multivariate Flagging +===================== + +The tutorial aims to introduce the usage of SaQC in the context of some more complex flagging and processing techniques. +Mainly we will see how to apply Drift Corrections onto the data and how to perform multivariate flagging. + + +#. `Data Preparation`_ + +#. `Drift Correction`_ + +#. `Multivariate Flagging Procedure`_ + +#. `Config`_ + + +Data Preparation +---------------- + +First import the data (from the repository), and generate an saqc instance from it. You will need to download the `sensor +data <https://git.ufz.de/rdm-software/saqc/-/blob/develop/sphinxdoc/ressources/data/hydro_config.csv>`_ and the +`maintenance data <https://git.ufz.de/rdm-software/saqc/-/blob/develop/sphinxdoc/ressources/data/hydro_maint.csv>`_ +from the `repository <https://git.ufz.de/rdm-software/saqc.git>`_ and make variables `datapath` and `maintpath` be +paths pointing at those downloaded files. Note, that the :py:class:`~saqc.SaQC` digests the loaded data in a list. +This is done, to circumvent having to concatenate both datasets in a pandas Dataframe instance, which would introduce +`NaN` values to both the datasets, wherever their timestamps missmatch. `SaQC` can handle those unaligned data +internally without introducing artificial fill values to them. + +.. testcode:: exampleMV + + import saqc + import pandas as pd + data = pd.read_csv(datapath, index_col=0) + maint = pd.read_csv(maintpath, index_col=0) + maint.index = pd.DatetimeIndex(maint.index) + data.index = pd.DatetimeIndex(data.index) + qc = saqc.SaQC([data, maint]) # dataframes "data" and "maint" are integrated internally + +We can check out the fields, the newly generated :py:class:`~saqc.SaQC` object contains as follows: + +.. doctest:: exampleMV + + >>> qc.data.columns + Index(['sac254_raw', 'level_raw', 'water_temp_raw', 'maint'], dtype='object', name='columns') + +The variables represent meassurements of *water level*, the *specific absorption coefficient* at 254 nm Wavelength, +the *water temperature* and there is also a variable, *maint*, that refers to time periods, where the *sac254* sensor +was maintained. Lets have a look at those: + +.. doctest:: exampleMV + + >>> qc.data_raw['maint'] # doctest:+SKIP + Timestamp + 2016-01-10 11:15:00 2016-01-10 12:15:00 + 2016-01-12 14:40:00 2016-01-12 15:30:00 + 2016-02-10 13:40:00 2016-02-10 14:40:00 + 2016-02-24 16:40:00 2016-02-24 17:30:00 + .... .... + 2017-10-17 08:55:00 2017-10-17 10:20:00 + 2017-11-14 15:30:00 2017-11-14 16:20:00 + 2017-11-27 09:10:00 2017-11-27 10:10:00 + 2017-12-12 14:10:00 2017-12-12 14:50:00 + Name: maint, dtype: object + +Measurements collected while maintenance are not trustworthy, so any measurement taken, in any of the listed +intervals should be flagged right away. This can be achieved, with the :py:meth:`~saqc.SaQC.flagManual` method. Also, +we will flag out-of-range values in the data with the :py:meth:`~saqc.SaQC.flagRange` method: + +.. doctest:: exampleMV + + >>> qc = qc.flagManual('sac254_raw', mdata='maint', method='closed', label='Maintenance') + >>> qc = qc.flagRange('level_raw', min=0) + >>> qc = qc.flagRange('water_temp_raw', min=-1, max=40) + >>> qc = qc.flagRange('sac254_raw', min=0, max=60) + +.. plot:: + :context: + :include-source: False + + qc = qc.flagManual('sac254_raw', mdata='maint', method='closed', label='Maintenance') + qc = qc.flagRange('level_raw', min=0) + qc = qc.flagRange('water_temp_raw', min=-1, max=40) + qc = qc.flagRange('sac254_raw', min=0, max=60) + +Lets check out the resulting flags for the *sac254* variable with the :py:meth:`~saqc.SaQC.plot` method: + +>>> qc.plot('sac254_raw') #doctest:+SKIP + +.. plot:: + :context: + :include-source: False + :width: 80 % + :class: center + + qc.plot('sac254_raw') + + +Now we should figure out, what sampling rate the data is intended to have, by accessing the *_raw* variables +constituting the sensor data. Since :py:attr:`saqc.SaQC.data` yields a common +`pandas.DataFrame <https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html>`_ object, we can index it with +the desired variables as column names and have a look at the console output to get a first impression. + +.. doctest:: exampleMV + + >>> qc.data[['sac254_raw', 'level_raw', 'water_temp_raw']] # doctest:+NORMALIZE_WHITESPACE + columns sac254_raw level_raw water_temp_raw + Timestamp + 2016-01-01 00:02:00 18.4500 103.290 4.84 + 2016-01-01 00:17:00 18.6437 103.285 4.82 + 2016-01-01 00:32:00 18.9887 103.253 4.81 + 2016-01-01 00:47:00 18.8388 103.210 4.80 + 2016-01-01 01:02:00 18.7438 103.167 4.78 + ... ... ... + 2017-12-31 22:47:00 43.2275 186.060 5.49 + 2017-12-31 23:02:00 43.6937 186.115 5.49 + 2017-12-31 23:17:00 43.6012 186.137 5.50 + 2017-12-31 23:32:00 43.2237 186.128 5.51 + 2017-12-31 23:47:00 43.7438 186.130 5.53 + <BLANKLINE> + [70199 rows x 3 columns] + +The data seems to have a fairly regular sampling rate of *15* minutes at first glance. +But checking out values around *2017-10-29*, we notice, that the sampling rate seems not to be totally stable: + +.. doctest:: exampleMV + + >>> qc.data[['sac254_raw', 'level_raw', 'water_temp_raw']]['2017-10-29 07:00:00':'2017-10-29 09:00:00'] # doctest:+NORMALIZE_WHITESPACE + columns sac254_raw level_raw water_temp_raw + Timestamp + 2017-10-29 07:02:00 40.3050 112.570 10.91 + 2017-10-29 07:17:00 39.6287 112.497 10.90 + 2017-10-29 07:32:00 39.5800 112.460 10.88 + 2017-10-29 07:32:01 39.9750 111.837 10.70 + 2017-10-29 07:47:00 39.1350 112.330 10.84 + 2017-10-29 07:47:01 40.6937 111.615 10.68 + 2017-10-29 08:02:00 40.4938 112.040 10.77 + 2017-10-29 08:02:01 39.3337 111.552 10.68 + 2017-10-29 08:17:00 41.5238 111.835 10.72 + 2017-10-29 08:17:01 38.6963 111.750 10.69 + 2017-10-29 08:32:01 39.4337 112.027 10.66 + 2017-10-29 08:47:01 40.4987 112.450 10.64 + +Those instabilities do bias most statistical evaluations and it is common practice to apply some +:doc:`resampling functions <../funcSummaries/resampling>` onto the data, to obtain a regularly spaced timestamp. +(See also the :ref:`harmonization tutorial <cook_books/DataRegularisation:data regularisation>` for more informations +on that topic.) + +We will apply :py:meth:`linear harmonisation <saqc.SaQC.linear>` to all the sensor data variables, +to interpolate pillar points of multiples of *15* minutes linearly. + +.. doctest:: exampleMV + + >>> qc = qc.linear(['sac254_raw', 'level_raw', 'water_temp_raw'], freq='15min') + +.. plot:: + :context: close-figs + :include-source: False + + qc = qc.linear(['sac254_raw', 'level_raw', 'water_temp_raw'], freq='15min') + + +The resulting timeseries now has has regular timestamp. + + +.. doctest:: exampleMV + + >>> qc.data['sac254_raw'] #doctest:+NORMALIZE_WHITESPACE + Timestamp + 2016-01-01 00:00:00 NaN + 2016-01-01 00:15:00 18.617873 + 2016-01-01 00:30:00 18.942700 + 2016-01-01 00:45:00 18.858787 + 2016-01-01 01:00:00 18.756467 + ... + 2017-12-31 23:00:00 43.631540 + 2017-12-31 23:15:00 43.613533 + 2017-12-31 23:30:00 43.274033 + 2017-12-31 23:45:00 43.674453 + 2018-01-01 00:00:00 NaN + Name: sac254_raw, Length: 70194, dtype: float64 + +Since points, that were identified as malicous get excluded before the harmonization, the resulting regularly sampled +timeseries does not include them anymore: + +.. doctest:: exampleMV + + >>> qc.plot('sac254_raw') # doctest:+SKIP + +.. plot:: + :context: + :include-source: False + :width: 80 % + :class: center + + qc.plot('sac254_raw') + + +Drift Correction +---------------- + +The variables *SAK254* and *Turbidity* show drifting behavior originating from dirt, that accumulates on the light +sensitive sensor surfaces over time. The effect, the dirt accumulation has on the measurement values, is assumed to be +properly described by an exponential model. The Sensors are cleaned periodocally, resulting in a periodical reset of +the drifting effect. The Dates and Times of the maintenance events are input to the method +:py:meth:`~saqc.SaQC.correctDrift`, that will correct the data in between any two such maintenance intervals. + +.. doctest:: exampleMV + + >>> qc = qc.correctDrift('sac254_raw', target='sac254_corrected',maintenance_field='maint', model='exponential') + +.. plot:: + :context: close-figs + :include-source: False + :width: 80 % + :class: center + + qc = qc.correctDrift('sac254_raw', target='sac254_corrected',maintenance_field='maint', model='exponential') + +Check out the results for the year *2016* + +.. doctest:: exampleMV + + >>> plt.plot(qc.data_raw['sac254_raw']['2016'], alpha=.5, color='black', label='original') # doctest:+SKIP + >>> plt.plot(qc.data_raw['sac254_corrected']['2016'], color='black', label='corrected') # doctest:+SKIP + +.. plot:: + :context: + :include-source: False + + plt.figure(figsize=(16,9)) + plt.plot(qc.data_raw['sac254_raw']['2016'], alpha=.5, color='black', label='original') + plt.plot(qc.data_raw['sac254_corrected']['2016'], color='black', label='corrected') + plt.legend() + +Multivariate Flagging Procedure +------------------------------- + +We are basically following the *oddWater* procedure, as suggested in *Talagala, P.D. et al (2019): A Feature-Based +Procedure for Detecting Technical Outliers in Water-Quality Data From In Situ Sensors. Water Ressources Research, +55(11), 8547-8568.* + +First, we define a transformation, we want the variables to be transformed with, to make them equally significant in +their common feature space. We go for the common pick of just *zScoring* the variables. +Therefor, we just import *scipys* `zscore` function and wrap it, so that it will be able to digest *nan* values, +without returning *nan*. + +.. doctest:: exampleMV + + >>> from scipy.stats import zscore + >>> zscore_func = lambda x: zscore(x, nan_policy='omit') + +.. plot:: + :context: close-figs + :include-source: False + + from scipy.stats import zscore + zscore_func = lambda x: zscore(x, nan_policy='omit') + +Now we can pass the function to the :py:meth:`~saqc.SaQC.transform` method. + +.. doctest:: exampleMV + + >>> qc = qc.transform(['sac254_corrected', 'level_raw', 'water_temp_raw'], target=['sac_z', 'level_z', 'water_z'], func=zscore_func, freq='30D') + + +.. plot:: + :context: close-figs + :include-source: False + :width: 80 % + :class: center + + qc = qc.transform(['sac254_raw', 'level_raw', 'water_temp_raw'], target=['sac_z', 'level_z', 'water_z'], func=zscore_func, freq='30D') + +The idea of the multivariate flagging approach we are going for, is, +to assign any datapoint a score, derived from the distance this datapoint has to its *k* nearest +neighbors in feature space. We can do this, via the :py:meth:`~saqc.SaQC.assignKNNScore` method. + + +.. doctest:: exampleMV + + >>> qc = qc.assignKNNScore(field=['sac_z', 'level_z', 'water_z'], target='kNNscores', freq='30D', n=5) + +Lets have a look at the resulting score variable. + +.. doctest:: exampleMV + + >>> qc.plot('kNNscores') # doctest:+SKIP + +.. plot:: + :context: close-figs + :include-source: False + :width: 80 % + :class: center + + qc = qc.assignKNNScore(field=['sac_z', 'level_z', 'water_z'], target='kNNscores', freq='30D', n=5) + qc.plot('kNNscores') + +Those scores roughly correlate with the isolation of the scored points in the feature space. For example, have a look at +the projection of this feature space onto the 2 dimensional *sac* - *level* space, in november 2016: + +.. doctest:: exampleMV + + >>> qc.plot('sac_z', phaseplot='level_z', xscope='2016-11') # doctest:+SKIP + +.. plot:: + :context: close-figs + :include-source: False + :width: 80 % + :class: center + + qc.plot('sac_z', phaseplot='level_z', xscope='2016-11') + + +We can clearly see some outliers, that seem to be isolated from the cloud of the normalish points. Since those outliers are +correlated with relatively high *kNNscores*, we could try to calculate a threshold that determines, how extreme an +*kNN* score has to be to qualify an outlier. Therefor, we will use the saqc-implementation of the +`STRAY <https://arxiv.org/pdf/1908.04000.pdf>`_ algorithm, which is available as the method: +:py:meth:`~saqc.SaQC.flagByStray`. This method will mark some samples of the `kNNscore` variable as anomaly. +Subsequently we project this marks (or *flags*) on to the *sac* variable with a call to +:py:meth:`~saqc.SaQC.transferFlags`. For the sake of demonstration, we also project the flags +on the normalized *sac* and plot the flagged values in the *sac_z* - *level_z* feature space. + + +.. doctest:: exampleMV + + >>> qc = qc.flagByStray(field='kNNscores', freq='30D', alpha=.3) + >>> qc = qc.transferFlags(field='kNNscores', target='sac254_corrected', label='STRAY') + >>> qc = qc.transferFlags(field='kNNscores', target='sac_z', label='STRAY') + >>> qc.plot('sac254_corrected', xscope='2016-11') # doctest:+SKIP + >>> qc.plot('sac_z', phaseplot='level_z', xscope='2016-11') # doctest:+SKIP + +.. plot:: + :context: close-figs + :include-source: False + + qc = qc.flagByStray(field='kNNscores', freq='30D', alpha=.3) + qc = qc.transferFlags(field='kNNscores', target='sac254_corrected', label='STRAY') + qc = qc.transferFlags(field='kNNscores', target='sac_z', label='STRAY') + +.. plot:: + :context: close-figs + :include-source: False + :width: 80 % + :align: center + + qc.plot('sac254_corrected', xscope='2016-11') + +.. plot:: + :context: close-figs + :include-source: False + :width: 80 % + :class: center + + qc.plot('sac_z', phaseplot='level_z', xscope='2016-11') + +Config +------ + +.. testcode:: exampleMV + :hide: + + saqc.fromConfig(configpath, [data, maint]) + +To configure `saqc` to execute the above data processing and flagging steps, the config file would have to look +as follows: + +.. literalinclude:: ../ressources/data/hydro_config.csv + diff --git a/sphinx-doc/cook_books/OutlierDetection.rst b/sphinxdoc/cook_books/OutlierDetection.rst similarity index 70% rename from sphinx-doc/cook_books/OutlierDetection.rst rename to sphinxdoc/cook_books/OutlierDetection.rst index a464b67e5fe408096fd7ad89fa3aa18160878d8c..061a068c26d4b343920d793efb5378d0bf04a2dc 100644 --- a/sphinx-doc/cook_books/OutlierDetection.rst +++ b/sphinxdoc/cook_books/OutlierDetection.rst @@ -13,8 +13,7 @@ The tutorial guides through the following steps: * :ref:`Data <cook_books/OutlierDetection:Data>` * :ref:`Initialisation <cook_books/OutlierDetection:Initialisation>` -#. - We will see how to apply different smoothing methods and models to the data in order to obtain usefull residue +#. We will see how to apply different smoothing methods and models to the data in order to obtain usefull residue variables. @@ -27,8 +26,7 @@ The tutorial guides through the following steps: * :ref:`Evaluation and Visualisation <cook_books/OutlierDetection:Visualisation>` -#. - We will see how we can obtain residues and scores from the calculated model curves. +#. We will see how we can obtain residues and scores from the calculated model curves. * :ref:`Residues and Scores <cook_books/OutlierDetection:Residues and Scores>` @@ -37,8 +35,7 @@ The tutorial guides through the following steps: * :ref:`Scores <cook_books/OutlierDetection:Scores>` * :ref:`Optimization by Decomposition <cook_books/OutlierDetection:Optimization by Decomposition>` -#. - Finally, we will see how to derive flags from the scores itself and impose additional conditions, functioning as +#. Finally, we will see how to derive flags from the scores itself and impose additional conditions, functioning as correctives. @@ -82,35 +79,42 @@ Initialisation ^^^^^^^^^^^^^^ We initially want to import the data into our workspace. Therefore we import the `pandas <https://pandas.pydata.org/>`_ -library and use its csv file parser `pd.read_csv <https://pandas.pydata.org/docs/reference/api/pandas.read_csv.html>`_. +library and use its csv file parser `pd.read_csv <https://pandas.pydata.org/docs/reference/api/pandas.read_csv.html>`_. -.. code-block:: python +.. testsetup:: example + + data_path = './ressources/data/incidentsLKG.csv' + +.. doctest:: exampleOD + + >>> data_path = './ressources/data/incidentsLKG.csv' + >>> import pandas as pd + >>> data = pd.read_csv(data_path, index_col=0) - import pandas as pd - data = pd.read_csv(data_path, index_col=0) The resulting ``data`` variable is a pandas `data frame <https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html>`_ object. We can generate an :py:class:`SaQC <saqc.core.core.SaQC>` object directly from that. Beforehand we have to make sure, the index of ``data`` is of the right type. -.. code-block:: python +.. doctest:: exampleOD - data.index = pd.DatetimeIndex(data.index) + >>> data.index = pd.DatetimeIndex(data.index) Now we do load the saqc package into the workspace and generate an instance of :py:class:`SaQC <saqc.core.core.SaQC>` object, that refers to the loaded data. -.. code-block:: python +.. doctest:: exampleOD - import saqc - saqc = saqc.SaQC(data) + >>> import saqc + >>> qc = saqc.SaQC(data) The only timeseries have here, is the *incidents* dataset. We can have a look at the data and obtain the above plot through -the method :py:meth:`plot <Functions.saqc.plot>`: +the method :py:meth:`~saqc.SaQC.plot`: + +.. doctest:: exampleOD -.. code-block:: python + >>> qc.plot('incidents') # doctest: +SKIP - >>> saqc.plot('incidents') Modelling --------- @@ -121,27 +125,27 @@ Rolling Mean ^^^^^^^^^^^^ Easiest thing to do, would be, to apply some rolling mean -model via the method :py:meth:`roll <Functions.saqc.roll>`. +model via the method :py:meth:`saqc.SaQC.roll`. -.. code-block:: python +.. doctest:: exampleOD >>> import numpy as np - >>> saqc = saqc.roll(field='incidents', target='incidents_mean', func=np.mean, window='13D') + >>> qc = qc.roll(field='incidents', target='incidents_mean', func=np.mean, window='13D') -The :py:attr:`field` parameter is passed the variable name, we want to calculate the rolling mean of. -The :py:attr:`target` parameter holds the name, we want to store the results of the calculation to. -The :py:attr:`window` parameter controlls the size of the rolling window. It can be fed any so called `date alias <https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#offset-aliases>`_ string. We chose the rolling window to have a 13 days span. +The ``field`` parameter is passed the variable name, we want to calculate the rolling mean of. +The ``target`` parameter holds the name, we want to store the results of the calculation to. +The ``window`` parameter controlls the size of the rolling window. It can be fed any so called `date alias <https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#offset-aliases>`_ string. We chose the rolling window to have a 13 days span. Rolling Median ^^^^^^^^^^^^^^ -You can pass arbitrary function objects to the :py:attr:`func` parameter, to be applied to calculate every single windows "score". +You can pass arbitrary function objects to the ``func`` parameter, to be applied to calculate every single windows "score". For example, you could go for the *median* instead of the *mean*. The numpy library provides a `median <https://numpy.org/doc/stable/reference/generated/numpy.median.html>`_ function under the name ``ǹp.median``. We just calculate another model curve for the ``"incidents"`` data with the ``np.median`` function from the ``numpy`` library. -.. code-block:: python +.. doctest:: exampleOD - >>> saqc = saqc.roll(field='incidents', target='incidents_median', func=np.median, window='13D') + >>> qc = qc.roll(field='incidents', target='incidents_median', func=np.median, window='13D') We chose another :py:attr:`target` value for the rolling *median* calculation, in order to not override our results from the previous rolling *mean* calculation. @@ -157,12 +161,11 @@ Polynomial Fit ^^^^^^^^^^^^^^ Another common approach, is, to fit polynomials of certain degrees to the data. -:py:class:`SaQC <saqc.core.core.SaQC>` provides the polynomial fit function :py:meth:`fitPolynomial <Functions.saqc.fitPolynomial>`: +:py:class:`SaQC <Core.Core.SaQC>` provides the polynomial fit function :py:meth:`~saqc.SaQC.fitPolynomial`: -.. code-block:: python - - >>> saqc = saqc.fitPolynomial(field='incidents', target='incidents_polynomial', order=2, window='13D') +.. doctest:: exampleOD + >>> qc = qc.fitPolynomial(field='incidents', target='incidents_polynomial', order=2, window='13D') It also takes a :py:attr:`window` parameter, determining the size of the fitting window. The parameter, :py:attr:`order` refers to the size of the rolling window, the polynomials get fitted to. @@ -171,26 +174,24 @@ Custom Models ^^^^^^^^^^^^^ If you want to apply a completely arbitrary function to your data, without pre-chunking it by a rolling window, -you can make use of the more general :py:meth:`processGeneric <Functions.saqc.process>` function. +you can make use of the more general :py:meth:`~saqc.SaQC.process` function. Lets apply a smoothing filter from the `scipy.signal <https://docs.scipy.org/doc/scipy/reference/signal.html>`_ module. We wrap the filter generator up into a function first: -.. code-block:: python +.. testcode:: exampleOD from scipy.signal import filtfilt, butter - def butterFilter(x, filter_order, nyq, cutoff, filter_type="lowpass"): - b, a = butter(N=filter_order, Wn=cutoff / nyq, btype=filter_type) - return pd.Series(filtfilt(b, a, x), index=x.index) + b, a = butter(N=filter_order, Wn=cutoff / nyq, btype=filter_type) + return pd.Series(filtfilt(b, a, x), index=x.index) -This function object, we can pass on to the :py:meth:`processGeneric <Functions.saqc.process>` methods :py:attr:`func` argument. +This function object, we can pass on to the :py:meth:`~saqc.SaQC.processGeneric` methods ``func`` argument. -.. code-block:: python - - saqc = saqc.processGeneric(field='incidents', target='incidents_lowPass', func=lambda x: butterFilter(x, cutoff=0.1, nyq=0.5, filter_order=2)) +.. doctest:: exampleOD + >>> qc = qc.processGeneric(field='incidents', target='incidents_lowPass', func=lambda x: butterFilter(x, cutoff=0.1, nyq=0.5, filter_order=2)) Visualisation ------------- @@ -198,16 +199,16 @@ Visualisation We can obtain those updated informations by generating a `pandas dataframe <https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html>`_ representation of it, with the :py:attr:`data <saqc.core.core.SaQC.data>` method: -.. code-block:: python +.. doctest:: exampleOD - >>> data = saqc.data + >>> data = qc.data To see all the results obtained so far, plotted in one figure window, we make use of the dataframes `plot <https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.plot.html>`_ method. -.. code-block:: python +.. doctest:: exampleOD >>> data.plot() - + <AxesSubplot:> .. image:: ../ressources/images/cbooks_incidents2.png :target: ../ressources/images/cbooks_incidents2.png @@ -223,18 +224,17 @@ Residues We want to evaluate the residues of one of our models model, in order to score the outlierish-nes of every point. Therefor we just stick to the initially calculated rolling mean curve. -First, we retrieve the residues via the :py:meth:`processGeneric <Functions.saqc.process>` method. +First, we retrieve the residues via the :py:meth:`~saqc.SaQC.processGeneric` method. This method always comes into play, when we want to obtain variables, resulting from basic algebraic manipulations of one or more input variables. For obtaining the models residues, we just subtract the model data from the original data and assign the result of this operation to a new variable, called ``incidents_residues``. This Assignment, we, as usual, -control via the :py:attr:`target` parameter. +control via the ``target`` parameter. -.. code-block:: python - - saqc = saqc.processGeneric(['incidents', 'incidents_mean'], target='incidents_residues', func=lambda x, y: x - y) +.. doctest:: exampleOD + >>> qc = qc.processGeneric(['incidents', 'incidents_mean'], target='incidents_residues', func=lambda x, y: x - y) Scores ^^^^^^ @@ -245,16 +245,16 @@ The Z-score of a point $\ ``x``\ $, relative to its surrounding $\ ``D``\ $, eva So, if we would like to roll with a window of a fixed size of *27* periods through the data and calculate the *Z*\ -score for the point lying in the center of every window, we would define our function ``z_score``\ : -.. code-block:: python +.. doctest:: exampleOD - z_score = lambda D: abs((D[14] - np.mean(D)) / np.std(D)) + >>> z_score = lambda D: abs((D[14] - np.mean(D)) / np.std(D)) -And subsequently, use the :py:meth:`roll <Functions.saqc.roll>` method to make a rolling window application with the scoring +And subsequently, use the :py:meth:`~saqc.SaQC.roll` method to make a rolling window application with the scoring function: -.. code-block:: python +.. doctest:: exampleOD - saqc = saqc.roll(field='incidents_residues', target='incidents_scores', func=z_score, window='27D') + >>> qc = qc.roll(field='incidents_residues', target='incidents_scores', func=z_score, window='27D') Optimization by Decomposition @@ -273,35 +273,34 @@ So the attempt works fine, only because our data set is small and strictly regul Meaning that it has constant temporal distances between subsequent meassurements. In order to tweak our calculations and make them much more stable, it might be useful to decompose the scoring -into seperate calls to the :py:meth:`roll <Functions.saqc.roll>` function, by calculating the series of the +into seperate calls to the :py:meth:`~saqc.SaQC.roll` function, by calculating the series of the residues *mean* and *standard deviation* seperately: -.. code-block:: python - - saqc = saqc.roll(field='incidents_residues', target='residues_mean', window='27D', func=np.mean) - saqc = saqc.roll(field='incidents_residues', target='residues_std', window='27D', func=np.std) - saqc = saqc.processGeneric(field=['incidents_scores', "residues_mean", "residues_std"], target="residues_norm", func=lambda this, mean, std: (this - mean) / std) +.. doctest:: exampleOD + + >>> qc = qc.roll(field='incidents_residues', target='residues_mean', window='27D', func=np.mean) + >>> qc = qc.roll(field='incidents_residues', target='residues_std', window='27D', func=np.std) + >>> qc = qc.processGeneric(field=['incidents_scores', "residues_mean", "residues_std"], target="residues_norm", func=lambda this, mean, std: (this - mean) / std) With huge datasets, this will be noticably faster, compared to the method presented :ref:`initially <cook_books/OutlierDetection:Scores>`\ , because ``saqc`` dispatches the rolling with the basic numpy statistic methods to an optimized pandas built-in. -Also, as a result of the :py:func: ``saqc.roll <Functions.saqc.roll>`` assigning its results to the center of every window, +Also, as a result of the :py:meth:`~saqc.SaQC.roll` assigning its results to the center of every window, all the values are centered and we dont have to care about window center indices when we are generating the *Z*\ -Scores from the two series. We simply combine them via the -:py:meth:`processGeneric <Functions.saqc.generic>` method, in order to obtain the scores: +:py:meth:`~saqc.SaQC.processGeneric` method, in order to obtain the scores: -.. code-block:: python +.. doctest:: exampleOD - saqc = saqc.processGeneric(field=['incidents_residues','incidents_mean','incidents_median'], target='incidents_scores', func=lambda x,y,z: abs((x-y) / z)) + >>> qc = qc.processGeneric(field=['incidents_residues','incidents_mean','incidents_median'], target='incidents_scores', func=lambda x,y,z: abs((x-y) / z)) Let's have a look at the resulting scores: -.. code-block:: python - - saqc.plot('incidents_scores') +.. doctest:: exampleOD + >>> qc.plot('incidents_scores') # doctest:+SKIP .. image:: ../ressources/images/cbook_incidents_scoresUnflagged.png :target: ../ressources/images/cbook_incidents_scoresUnflagged.png @@ -316,18 +315,15 @@ Flagging the Scores We can now implement the common `rule of thumb <https://en.wikipedia.org/wiki/68%E2%80%9395%E2%80%9399.7_rule>`_\ , that any *Z*\ -score value above *3* may indicate an outlierish data point, -by applying the :py:meth:`flagRange <Functions.saqc.flagRange>` method with a :py:attr:`max` value of *3*. +by applying the :py:meth:`~saqc.SaQC.flagRange` method with a `max` value of *3*. -.. code-block:: python +.. doctest:: exampleOD - saqc = saqc.flagRange('incidents_scores', max=3) + >>> qc = qc.flagRange('incidents_scores', max=3) Now flags have been calculated for the scores: -.. code-block:: python - - >>> saqc.plot('incidents_scores') - +>>> qc.plot('incidents_scores') # doctest:+SKIP .. image:: ../ressources/images/cbooks_incidents_scores.png :target: ../ressources/images/cbooks_incidents_scores.png @@ -339,23 +335,22 @@ Projecting Flags We now can project those flags onto our original incidents timeseries: -.. code-block:: python +.. doctest:: exampleOD - >>> saqc = saqc.flagGeneric(field=['incidents_scores'], target='incidents', func=lambda x: isflagged(x)) + >>> qc = qc.flagGeneric(field=['incidents_scores'], target='incidents', func=lambda x: isflagged(x)) Note, that we could have skipped the :ref:`range flagging step <cook_books/OutlierDetection:Flagging the scores>`\ , by including the cutting off in our generic expression: -.. code-block:: python +.. doctest:: exampleOD - >>> saqc = saqc.flagGeneric(field=['incidents_scores'], target='incidents', func=lambda x: x > 3) + >>> qc = qc.flagGeneric(field=['incidents_scores'], target='incidents', func=lambda x: x > 3) Lets check out the results: -.. code-block:: python - - >>> saqc.plot('incidents') +.. doctest:: exampleOD + >>> qc.plot('incidents') # doctest: +SKIP .. image:: ../ressources/images/cbooks_incidentsOverflagged.png :target: ../ressources/images/cbooks_incidentsOverflagged.png @@ -386,20 +381,20 @@ Unflagging We can do that posterior to the preceeding flagging step, by *removing* some flags based on some condition. -In orer want to *unflag* those values, that do not relate to -sufficiently large residues, we assign them the :py:const:`unflagged <saqc.constants.UNFLAGGED>` flag. +In order want to *unflag* those values, that do not relate to +sufficiently large residues, we assign them the :py:const:`~saqc.constants.UNFLAGGED` flag. -Therefore, we make use of the :py:meth:`flagGeneric <Functions.saqc.flag>` method. +Therefore, we make use of the :py:meth:`~saqc.SaQC.flagGeneric` method. This method usually comes into play, when we want to assign flags based on the evaluation of logical expressions. So, we check out, which residues evaluate to a level below *20*\ , and assign the -flag value for :py:const:`unflagged <saqc.constants.UNFLAGGED>`. This value defaults to +flag value for :py:const:`~saqc.constants.UNFLAGGED`. This value defaults to to ``-np.inf`` in the default translation scheme, wich we selected implicitly by not specifying any special scheme in the -generation of the :py:class:`SaQC <saqc.core.core.SaQC>` object in the :ref:`beginning <cook_books/OutlierDetection:Initialisation>`. +generation of the :py:class:`~Core.Core.SaQC>` object in the :ref:`beginning <cook_books/OutlierDetection:Initialisation>`. -.. code-block:: python +.. doctest:: exampleOD - >>> saqc = saqc.flagGeneric(field=['incidents','incidents_residues'], target="incidents", func=lambda x,y: isflagged(x) & (y < 50), flag=-np.inf) + >>> qc = qc.flagGeneric(field=['incidents','incidents_residues'], target="incidents", func=lambda x,y: isflagged(x) & (y < 50), flag=-np.inf) Notice, that we passed the desired flag level to the :py:attr:`flag` keyword in order to perform an "unflagging" instead of the usual flagging. The :py:attr:`flag` keyword can be passed to all the functions @@ -407,10 +402,9 @@ and defaults to the selected translation schemes :py:const:`BAD <saqc.constants. Plotting proofs the tweaking did in deed improve the flagging result: -.. code-block:: python - - >>> saqc.plot("incidents") +.. doctest:: exampleOD + >>> qc.plot("incidents") # doctest:+SKIP .. image:: ../ressources/images/cbooks_incidents_correctFlagged.png :target: ../ressources/images/cbooks_incidents_correctFlagged.png @@ -422,12 +416,12 @@ Including multiple conditions If we do not want to first set flags, only to remove the majority of them in the next step, we also could circumvent the :ref:`unflagging <cook_books/OutlierDetection:Unflagging>` step, by adding to the call to -:py:meth:`flagRange <Functions.saqc.flagRange>` the condition for the residues having to be above *20* +:py:meth:`~saqc.SaQC.flagRange` the condition for the residues having to be above *20* -.. code-block:: python +.. doctest:: exampleOD - >>> saqc = saqc.flagGeneric(field=['incidents_scores', 'incidents_residues'], target='incidents', func=lambda x, y: (x > 3) & (y > 20)) - >>> saqc.plot("incidents") + >>> qc = qc.flagGeneric(field=['incidents_scores', 'incidents_residues'], target='incidents', func=lambda x, y: (x > 3) & (y > 20)) + >>> qc.plot("incidents") # doctest: +SKIP .. image:: ../ressources/images/cbooks_incidents_correctFlagged.png diff --git a/sphinx-doc/documentation/FlaggingTranslation.rst b/sphinxdoc/documentation/FlaggingTranslation.rst similarity index 100% rename from sphinx-doc/documentation/FlaggingTranslation.rst rename to sphinxdoc/documentation/FlaggingTranslation.rst diff --git a/sphinx-doc/getting_started/GenericFunctions.rst b/sphinxdoc/documentation/GenericFunctions.rst similarity index 88% rename from sphinx-doc/getting_started/GenericFunctions.rst rename to sphinxdoc/documentation/GenericFunctions.rst index 6907ecc97a18045b679ff5bc960d5add1aff7e98..93d313645c75d44db262d9edf23da2712b693835 100644 --- a/sphinx-doc/getting_started/GenericFunctions.rst +++ b/sphinxdoc/documentation/GenericFunctions.rst @@ -16,7 +16,7 @@ can be explained by the dataset itself. Think of a an active, fan-cooled measurement device: no matter how precise the instrument may work, problems are to be expected when the fan stops working or the power supply drops below a certain threshold. While these dependencies are easy to -:ref:`formalize <getting_started_md_m2r/GenericFunctions:a real world example>` on a per dataset basis, it is quite +:ref:`formalize <documentation/GenericFunctions:a real world example>` on a per dataset basis, it is quite challenging to translate them into generic source code. Specification @@ -30,9 +30,9 @@ signature looks like that: flagGeneric(func=<expression>, flag=<flagging_constant>) -where ``<expression>`` is composed of the :ref:`supported constructs <getting_started_md_m2r/GenericFunctions:supported constructs>` +where ``<expression>`` is composed of the `supported constructs`_ and ``<flag_constant>`` is one of the predefined -:ref:`flagging constants <getting_started_md_m2r/ParameterDescriptions:flagging constants>` (default: ``BAD``\ ). +:ref:`flagging constants <getting_started/ParameterDescriptions:flagging constants>` (default: ``BAD``\ ). Generic flagging functions are expected to return a boolean value, i.e. ``True`` or ``False``. All other expressions will fail during the runtime of ``SaQC``. @@ -177,7 +177,7 @@ The basic signature looks like that: procGeneric(func=<expression>) -where ``<expression>`` is composed of the :ref:`supported constructs <getting_started_md_m2r/GenericFunctions:supported constructs>`. +where ``<expression>`` is composed of the `supported constructs`_. Variable References ------------------- @@ -185,7 +185,7 @@ Variable References All variables of the processed dataset are available within generic functions, so arbitrary cross references are possible. The variable of interest is furthermore available with the special reference ``this``\ , so the second -:ref:`example <getting_started_md_m2r/GenericFunctions:calculations>` could be rewritten as: +:ref:`example <documentation/GenericFunctions:calculations>` could be rewritten as: .. code-block:: @@ -274,8 +274,8 @@ The bitwise operators also act as logical operators in comparison chains Functions ^^^^^^^^^ -All functions expect a :ref:`variable reference <getting_started_md_m2r/GenericFunctions:variable references>` -as the only non-keyword argument (see :ref:`here <getting_started_md_m2r/GenericFunctions:special functions>`\ ) +All functions expect a :ref:`variable reference <documentation/GenericFunctions:variable references>` +as the only non-keyword argument (see :ref:`here <documentation/GenericFunctions:special functions>`\ ) Mathematical Functions ~~~~~~~~~~~~~~~~~~~~~~ @@ -319,4 +319,4 @@ Constants ^^^^^^^^^ Generic functions support the same constants as normal functions, a detailed -list is available :ref:`here <getting_started_md_m2r/ParameterDescriptions:constants>`. +list is available :ref:`here <getting_started/ParameterDescriptions:constants>`. diff --git a/sphinx-doc/documentation/SourceTarget.rst b/sphinxdoc/documentation/SourceTarget.rst similarity index 100% rename from sphinx-doc/documentation/SourceTarget.rst rename to sphinxdoc/documentation/SourceTarget.rst diff --git a/sphinxdoc/documentation/WritingFunctions.rst b/sphinxdoc/documentation/WritingFunctions.rst new file mode 100644 index 0000000000000000000000000000000000000000..5cf8e48fa23cb86576125d16e6626a0198f15e4d --- /dev/null +++ b/sphinxdoc/documentation/WritingFunctions.rst @@ -0,0 +1,72 @@ +Writing Functions +================= + +Writing non-standard functions +------------------------------ + +When implementing non-standard functions, i.e. all function not decorated with ``flagging``, some special care is +needed to comply to the standard ``SaQC`` behaviour. The following passages guide you through the jungle of +``register`` arguments and there semantics. + +Masking +""""""" +TODO + +Demasking +""""""""" +TODO + +History squeezing +""""""""""""""""" +TODO + +Target handling +""""""""""""""" +Functions decorated with ``register(handles_target=True)`` are fully in charge to implement the source-target +workflow. That means they need to handle the following cases: + +- Existing ``target``: one ore more of the given targets might already exist in ``data`` and ``flags``. + There is (currently) no hard rule how we expect functions to handle this case, the default functions + however drop pre-existing ``target`` with: + + .. code-block:: python + + from saqc.funcs import dropField + + data, flags = dropField(data=data, fags=flags, field=field, target=target) + +- Non-existing ``target``: we stick to the idea, that non existing targets will be handled + gracefully. Usually that implies, that after a function returns all names given in ``target`` exist + in ``data`` as well as in ``flags``. The easiest solution here is to create an explicit copy: + + .. code-block:: python + + from saqc.funcs import copyField + + data, flags = copyField(data=data, flags=flags, field=field, target=target) + + However, such a direct mapping/lineage between ``field`` and ``target`` is not always meaningful. Usually + the function itself either provides new ``flags`` or new ``data``, but we need to also provide values for + for the respective other structure. For ``data`` we default to a series with all ``np.nan`` values, e.g. + + .. code-block:: python + + data[target] = pd.Series(np.nan, index=data[field].index) + + and empty ``flags``, e.g. + + .. code-block:: python + + from saqc.core import History + flags.history[target] = saqc.core.history.History(data[target].index) + +- Incompatible lengths of ``field`` and ``target``: Certain functions might have specific mapping + needs, some multivariate functions, for example, might map exactly three ``fields`` to one ``target``, + or need exactly on ``target`` for every field. If this is the case, such invriants should be checked + accordingly. + +- Incompatible indices for ``field`` and ``target``: Depending on the function, differing indices for + ``field`` and ``target`` might or might not impose problems for the implementation. If not coded carefully, + chances are however high, that this might cause breakage. It is therefore recommended to check this + accordingly. + diff --git a/sphinx-doc/environment/configEnv.rst b/sphinxdoc/environment/configEnv.rst similarity index 100% rename from sphinx-doc/environment/configEnv.rst rename to sphinxdoc/environment/configEnv.rst diff --git a/sphinxdoc/funcSummaries/breaks.rst b/sphinxdoc/funcSummaries/breaks.rst new file mode 100644 index 0000000000000000000000000000000000000000..78cc399bfef1b81fadadf36d104d3aac6cc3bddf --- /dev/null +++ b/sphinxdoc/funcSummaries/breaks.rst @@ -0,0 +1,16 @@ +breaks +====== + +Detecting breaks in data. + +This module provides functions to detect and flag breaks in data, for example temporal +gaps (:py:func:`flagMissing`), jumps and drops (:py:func:`flagJumps`) or temporal +isolated values (:py:func:`flagIsolated`). + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.flagMissing + ~SaQC.flagIsolated + ~SaQC.flagJumps diff --git a/sphinxdoc/funcSummaries/changepoints.rst b/sphinxdoc/funcSummaries/changepoints.rst new file mode 100644 index 0000000000000000000000000000000000000000..89625498cb9f271b38704a534887eb849372712f --- /dev/null +++ b/sphinxdoc/funcSummaries/changepoints.rst @@ -0,0 +1,11 @@ +changepoints +============ + + + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.flagChangePoints + ~SaQC.assignChangePointCluster diff --git a/sphinxdoc/funcSummaries/constants.rst b/sphinxdoc/funcSummaries/constants.rst new file mode 100644 index 0000000000000000000000000000000000000000..a2b9ac669b91d90da7de0d085ef3c7f507060db6 --- /dev/null +++ b/sphinxdoc/funcSummaries/constants.rst @@ -0,0 +1,11 @@ +constants +========= + + + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.flagConstants + ~SaQC.flagByVariance diff --git a/sphinxdoc/funcSummaries/curvefit.rst b/sphinxdoc/funcSummaries/curvefit.rst new file mode 100644 index 0000000000000000000000000000000000000000..8e7a8d384540782c4f3844b7c4f1037ddfb48740 --- /dev/null +++ b/sphinxdoc/funcSummaries/curvefit.rst @@ -0,0 +1,10 @@ +curvefit +======== + + + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.fitPolynomial diff --git a/sphinxdoc/funcSummaries/drift.rst b/sphinxdoc/funcSummaries/drift.rst new file mode 100644 index 0000000000000000000000000000000000000000..535bbc41d5721e4980e6fdced659a6a043399726 --- /dev/null +++ b/sphinxdoc/funcSummaries/drift.rst @@ -0,0 +1,16 @@ +drift +===== + + + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.flagDriftFromNorm + ~SaQC.flagDriftFromReference + ~SaQC.correctDrift + ~SaQC.correctRegimeAnomaly + ~SaQC.correctOffset + ~SaQC.flagRegimeAnomaly + ~SaQC.assignRegimeAnomaly diff --git a/sphinxdoc/funcSummaries/flagtools.rst b/sphinxdoc/funcSummaries/flagtools.rst new file mode 100644 index 0000000000000000000000000000000000000000..544c82ae44be43d253f3d4f943e1332508aa9a39 --- /dev/null +++ b/sphinxdoc/funcSummaries/flagtools.rst @@ -0,0 +1,15 @@ +flagtools +========= + + + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.forceFlags + ~SaQC.clearFlags + ~SaQC.flagUnflagged + ~SaQC.flagManual + ~SaQC.flagDummy + ~SaQC.transferFlags diff --git a/sphinxdoc/funcSummaries/generic.rst b/sphinxdoc/funcSummaries/generic.rst new file mode 100644 index 0000000000000000000000000000000000000000..88fb0454bb9372ca9a49bc098795a1ddf7185804 --- /dev/null +++ b/sphinxdoc/funcSummaries/generic.rst @@ -0,0 +1,11 @@ +generic +======= + + + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.processGeneric + ~SaQC.flagGeneric diff --git a/sphinxdoc/funcSummaries/interpolation.rst b/sphinxdoc/funcSummaries/interpolation.rst new file mode 100644 index 0000000000000000000000000000000000000000..173ef11ccf1515d31bb8f8b5e1ea76e695b3663d --- /dev/null +++ b/sphinxdoc/funcSummaries/interpolation.rst @@ -0,0 +1,12 @@ +interpolation +============= + + + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.interpolateByRolling + ~SaQC.interpolateInvalid + ~SaQC.interpolateIndex diff --git a/sphinxdoc/funcSummaries/noise.rst b/sphinxdoc/funcSummaries/noise.rst new file mode 100644 index 0000000000000000000000000000000000000000..5db1a3fdf5ffb726b4207d439896e16db66180db --- /dev/null +++ b/sphinxdoc/funcSummaries/noise.rst @@ -0,0 +1,10 @@ +noise +===== + + + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.flagByStatLowPass diff --git a/sphinxdoc/funcSummaries/outliers.rst b/sphinxdoc/funcSummaries/outliers.rst new file mode 100644 index 0000000000000000000000000000000000000000..7c1bf5a78dc943f9d11a1700a850b48e8df7f5d5 --- /dev/null +++ b/sphinxdoc/funcSummaries/outliers.rst @@ -0,0 +1,17 @@ +outliers +======== + + + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.flagByStray + ~SaQC.flagMVScores + ~SaQC.flagRaise + ~SaQC.flagMAD + ~SaQC.flagOffset + ~SaQC.flagByGrubbs + ~SaQC.flagRange + ~SaQC.flagCrossStatistics diff --git a/sphinxdoc/funcSummaries/pattern.rst b/sphinxdoc/funcSummaries/pattern.rst new file mode 100644 index 0000000000000000000000000000000000000000..652b5425a1f3dbf18ec61d51270feb675b3d3773 --- /dev/null +++ b/sphinxdoc/funcSummaries/pattern.rst @@ -0,0 +1,12 @@ +pattern +======= + + + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.flagPatternByWavelet + ~SaQC.calculateDistanceByDTW + ~SaQC.flagPatternByDTW diff --git a/sphinxdoc/funcSummaries/resampling.rst b/sphinxdoc/funcSummaries/resampling.rst new file mode 100644 index 0000000000000000000000000000000000000000..cffbee451560bcb56b136d62b1c9e02810b43ddc --- /dev/null +++ b/sphinxdoc/funcSummaries/resampling.rst @@ -0,0 +1,14 @@ +resampling +========== + + + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.linear + ~SaQC.interpolate + ~SaQC.shift + ~SaQC.resample + ~SaQC.concatFlags diff --git a/sphinxdoc/funcSummaries/residues.rst b/sphinxdoc/funcSummaries/residues.rst new file mode 100644 index 0000000000000000000000000000000000000000..f4a876ca78c0f5624de7dd25ef08fc2c92b68a5d --- /dev/null +++ b/sphinxdoc/funcSummaries/residues.rst @@ -0,0 +1,11 @@ +residues +======== + + + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.calculatePolynomialResidues + ~SaQC.calculateRollingResidues diff --git a/sphinxdoc/funcSummaries/rolling.rst b/sphinxdoc/funcSummaries/rolling.rst new file mode 100644 index 0000000000000000000000000000000000000000..37facd6199c4d20c59a5260e7564f89292f9e849 --- /dev/null +++ b/sphinxdoc/funcSummaries/rolling.rst @@ -0,0 +1,10 @@ +rolling +======= + + + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.roll diff --git a/sphinxdoc/funcSummaries/scores.rst b/sphinxdoc/funcSummaries/scores.rst new file mode 100644 index 0000000000000000000000000000000000000000..50a1c1dec02280b2c4c40d104f40e70393384aca --- /dev/null +++ b/sphinxdoc/funcSummaries/scores.rst @@ -0,0 +1,10 @@ +scores +====== + + + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.assignKNNScore diff --git a/sphinxdoc/funcSummaries/tools.rst b/sphinxdoc/funcSummaries/tools.rst new file mode 100644 index 0000000000000000000000000000000000000000..18d408ddbf89a440b6e97350e5e9fd0bd3e76ba4 --- /dev/null +++ b/sphinxdoc/funcSummaries/tools.rst @@ -0,0 +1,14 @@ +tools +===== + + + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.copyField + ~SaQC.dropField + ~SaQC.renameField + ~SaQC.maskTime + ~SaQC.plot diff --git a/sphinxdoc/funcSummaries/transformation.rst b/sphinxdoc/funcSummaries/transformation.rst new file mode 100644 index 0000000000000000000000000000000000000000..8f2789bc644cf4eee299a9d4a9e23f8eb550a107 --- /dev/null +++ b/sphinxdoc/funcSummaries/transformation.rst @@ -0,0 +1,10 @@ +transformation +============== + + + +.. currentmodule:: saqc + +.. autosummary:: + + ~SaQC.transform diff --git a/sphinx-doc/getting_started/ConfigurationFiles.rst b/sphinxdoc/getting_started/ConfigurationFiles.rst similarity index 97% rename from sphinx-doc/getting_started/ConfigurationFiles.rst rename to sphinxdoc/getting_started/ConfigurationFiles.rst index e530d39dcb8f591246655656e074a8d08d1a1b09..41d3f0aaee0827e34991956a64c2f9527acc8e50 100644 --- a/sphinx-doc/getting_started/ConfigurationFiles.rst +++ b/sphinxdoc/getting_started/ConfigurationFiles.rst @@ -29,7 +29,7 @@ configuration headers have a look `here <saqc/core/config.py>`_. - name of a variable - yes * - test - - :ref:`function notation <getting_started_md_m2r/ConfigurationFiles:test function notation>` + - :ref:`function notation <getting_started/ConfigurationFiles:test function notation>` - test function - yes * - plot diff --git a/sphinx-doc/getting_started/Customizations.rst b/sphinxdoc/getting_started/Customizations.rst similarity index 87% rename from sphinx-doc/getting_started/Customizations.rst rename to sphinxdoc/getting_started/Customizations.rst index f5c624e3160cb5614ecd7a3ff5c2320aa9853224..c5b0739f7b9e9182546af92bdcea6437d86f8888 100644 --- a/sphinx-doc/getting_started/Customizations.rst +++ b/sphinxdoc/getting_started/Customizations.rst @@ -10,8 +10,8 @@ functions provided won't fulfill all your needs and requirements. Acknowledging the impossibility to address all imaginable use cases, we designed the system to allow for extensions and costumizations. The main extensions options, namely -:ref:`quality check routines <getting_started_md_m2r/Customizations:custom quality check routines>` -and the :ref:`flagging scheme <getting_started_md_m2r/Customizations:custom flagging schemes>` +:ref:`quality check routines <getting_started/Customizations:custom quality check routines>` +and the :ref:`flagging scheme <getting_started/Customizations:custom flagging schemes>` are described within this documents. Custom quality check routines @@ -24,8 +24,8 @@ you are more the "no-way-I-get-this-done-by-myself" type of person, SaQC provides two ways to integrate custom routines into the system: -#. The :doc:`extension language <GenericFunctions>` -#. An :ref:`interface <getting_started_md_m2r/Customizations:interface>` to the evaluation machinery +#. The :ref:`extension language <documentation/GenericFunctions:Generic Functions>` +#. An :ref:`interface <getting_started/Customizations:interface>` to the evaluation machinery Interface ^^^^^^^^^ diff --git a/sphinx-doc/getting_started/FlaggingSchemes.rst b/sphinxdoc/getting_started/FlaggingSchemes.rst similarity index 100% rename from sphinx-doc/getting_started/FlaggingSchemes.rst rename to sphinxdoc/getting_started/FlaggingSchemes.rst diff --git a/sphinx-doc/getting_started/InstallationGuide.rst b/sphinxdoc/getting_started/InstallationGuide.rst similarity index 100% rename from sphinx-doc/getting_started/InstallationGuide.rst rename to sphinxdoc/getting_started/InstallationGuide.rst diff --git a/sphinx-doc/getting_started/ParameterDescriptions.rst b/sphinxdoc/getting_started/ParameterDescriptions.rst similarity index 100% rename from sphinx-doc/getting_started/ParameterDescriptions.rst rename to sphinxdoc/getting_started/ParameterDescriptions.rst diff --git a/sphinx-doc/getting_started/TutorialAPI.rst b/sphinxdoc/getting_started/TutorialAPI.rst similarity index 76% rename from sphinx-doc/getting_started/TutorialAPI.rst rename to sphinxdoc/getting_started/TutorialAPI.rst index 52f456871475755984648371700b7dc1c9475e9e..bc8b530c197e2f6fb7b159ec0cb345059e102844 100644 --- a/sphinx-doc/getting_started/TutorialAPI.rst +++ b/sphinxdoc/getting_started/TutorialAPI.rst @@ -1,3 +1,7 @@ +.. testsetup:: python + + np.random.seed(100) + Python API ========== @@ -6,9 +10,9 @@ General structure The Python API of SaQC consists of three distinct components: -1. the core class ``SaQC`` +1. the core class, :py:class:`saqc.SaQC` 2. a number of flagging schemes -3. a collection of functions +3. a collection of :doc:`functions <../moduleAPIs/saqcFuncTOC>`. One and two are implemented as distinct classes, the core object is called ``SaQC`` and we currently provide three flagging schemes, namely: @@ -22,7 +26,8 @@ provide three flagging schemes, namely: 3. ``DmpScheme``: Provides the four distinct flags ``NIL``, ``OK``, ``DOUBTFUL``, ``BAD``, whereas each flag is extended by information about the generating function and optional comments. -The third component, the actual test functions, appear as methods of ``SaQC``. +The third component, the actual test functions, appear as methods of +:py:class:`~saqc.SaQC` instances. Getting started - Put something in @@ -33,7 +38,7 @@ of an appropriate flagging scheme. For reasons of simplicity, we'll use the ``Si the following examples. However, as the flagging schemes are mostly interchangable, replacing the ``SimpleScheme`` with something more elaborate, is in fact a one line change. So let's start with: -.. code-block:: python +.. testcode:: python import numpy as np import pandas as pd @@ -56,13 +61,13 @@ Moving on - Quality control your data ------------------------------------- The ``qc`` variable now serves as the base for all further processing steps. As mentioned above, all -available functions appear as methods of the ``SaQC`` class, so we can add a tests to our suite with: +available functions appear as methods of the :py:class:`~saqc.SaQC` class, so we can add a tests to our suite with: -.. code-block:: python +.. testcode:: python - qc.flagRange("a", min=20, max=80) + qc = qc.flagRange("a", min=20, max=80) -:py:func:`flagRange <Functions.saqc.flagRange>` is the easiest of all functions and simply marks all values +:py:meth:`~saqc.SaQC.flagRange>` is the easiest of all functions and simply marks all values smaller than ``min`` and larger than ``max``. This feature by itself wouldn't be worth the trouble of getting into ``SaQC``, but it serves as a simple example. All functions expect the name of a column in the given ``data`` as their first positional argument (called ``field``). The function ``flagRange`` (like all other @@ -70,10 +75,10 @@ functions for that matter) is then called on the given ``field`` (only). Each call to a ``SaQC`` method returns a new object (all itermediate objects share the main internal data structures, so we only create shallow copies). Setting up more complex quality control suites (here by calling -the additional methods :py:func:`flagConstants <Functions.saqc.flagConstants>` and -:py:func:`flagByGrubbs <Functions.saqc.flagByGrubbs>`) is therefore simply a matter of method chaining. +the additional methods :py:meth:`~saqc.SaQC.flagConstants` and +:py:meth:`~saqc.SaQC.flagByGrubbs`) is therefore simply a matter of method chaining. -.. code-block:: python +.. testcode:: python # execute some tests qc = (qc @@ -90,20 +95,45 @@ we have seen above, calling quality checks does however not immediately return t associated flags, but rather an new ``SaQC`` object. The actual execution products are accessible through a number of different attributes, of which you likely might want to use the following: -.. code-block:: python - - # retrieve the data as a pandas.DataFrame - qc.data - - # retrieve the flags as a pandas.DataFrame - qc.flags +.. doctest:: python + + >>> qc.data # retrieve the data as a pandas.DataFrame + columns a + 2020-01-01 8.0 + 2020-01-02 24.0 + 2020-01-03 67.0 + 2020-01-04 87.0 + 2020-01-05 79.0 + ... ... + 2020-04-05 38.0 + 2020-04-06 86.0 + 2020-04-07 94.0 + 2020-04-08 98.0 + 2020-04-09 42.0 + <BLANKLINE> + [100 rows x 1 columns] + >>> qc.flags # retrieve the flags as a pandas.DataFrame + columns a + 2020-01-01 BAD + 2020-01-02 UNFLAGGED + 2020-01-03 UNFLAGGED + 2020-01-04 BAD + 2020-01-05 UNFLAGGED + ... ... + 2020-04-05 UNFLAGGED + 2020-04-06 BAD + 2020-04-07 BAD + 2020-04-08 BAD + 2020-04-09 UNFLAGGED + <BLANKLINE> + [100 rows x 1 columns] Putting it together - The complete workflow ------------------------------------------- The snippet below provides you with a compete example from the things we have seen so far. -.. code-block:: python +.. testcode:: python import numpy as np import pandas as pd @@ -142,7 +172,7 @@ We provide an elaborated plotting method to generate and show or write matplotli the example :ref:`above <getting_started/TutorialAPI:putting it together - the complete workflow>` above simply call: -.. code-block:: python +.. testcode:: python qc.plot("a") diff --git a/sphinxdoc/getting_started/TutorialCLI.rst b/sphinxdoc/getting_started/TutorialCLI.rst new file mode 100644 index 0000000000000000000000000000000000000000..f0cdc5816946c02aeac798cb7f152a4c6327b44d --- /dev/null +++ b/sphinxdoc/getting_started/TutorialCLI.rst @@ -0,0 +1,290 @@ +.. testsetup:: exampleCLI + + datapath = './ressources/data/data.csv' + configpath = lambda x: f'./ressources/data/myconfig{x}.csv' + temppath = lambda x: f'./ressources/temp/{x}' + data = pd.read_csv(datapath, index_col=0) + data.index = pd.DatetimeIndex(data.index) + +.. plot:: + :include-source: False + :context: close-figs + + import pandas as pd + import saqc + import matplotlib + datapath = '../ressources/data/data.csv' + configpath = lambda x: f'../ressources/data/myconfig{x}.csv' + temppath = lambda x: f'../ressources/temp/{x}' + data = pd.read_csv(datapath, index_col=0) + data.index = pd.DatetimeIndex(data.index) + +Command Line Application +======================== + + +Contents +-------- + + +* `1. Get toy data and configuration`_ +* `2. Run SaQC`_ +* `3. Configure SaQC`_ + + * `Change test parameters`_ + +* `4. Explore the functionality`_ + + * `Process multiple variables`_ + * `Data harmonization and custom functions`_ + + +The following passage guides you through the essentials of the usage of SaQC via +a toy dataset and a toy configuration. + +1. Get toy data and configuration +--------------------------------- + +If you take a look into the folder ``saqc/ressources/data`` you will find a toy +dataset ``data.csv`` which contains the following data: + +.. literalinclude:: ../ressources/data/data.csv + :lines: 1-6 + + +These are the first entries of two timeseries of soil moisture (SM1+2) and the battery voltage of the +measuring device over time. Generally, this is the way that your data should +look like to run saqc. Note, however, that you do not necessarily need a series +of dates to reference to and that you are free to use more columns of any name +that you like. + +Now have a look at a basic sonfiguration file, as +`this one <https://git.ufz.de/rdm-software/saqc/-/blob/develop/sphinxdoc/ressources/data/myconfig.csv>`_. +It contains the following lines: + +.. literalinclude:: ../ressources/data/myconfig.csv + +These lines illustrate how different quality control tests can be specified for +different variables. + +In this case, we trigger a :py:meth:`range <saqc.SaQC.flagRange>` test, that flags all values exceeding +the range of the bounds of the interval *[10,60]*. Subsequently, a test to detect spikes, is applied, +using the MAD-method. (:py:meth:`~saqc.SaQC.flagMAD`). +You can find an overview of all available quality control tests +:ref:`here <moduleAPI/saqcFuncTOC:SaQC Flagging Functions>`. Note that the tests are +*executed in the order that you define in the configuration file*. The quality +flags that are set during one test are always passed on to the subsequent one. + +.. testcode:: exampleCLI + :hide: + + qc = saqc.fromConfig(configpath(''), data) + +2. Run SaQC +----------- + +On Unix/Mac-systems +""""""""""""""""""" + +Remember to have your virtual environment activated: + +.. code-block:: sh + + source env_saqc/bin/activate + +From here, you can run saqc and tell it to run the tests from the toy +config-file on the toy dataset via the ``-c`` and ``-d`` options: + +.. code-block:: sh + + python3 -m saqc -c ressources/data/myconfig.csv -d ressources/data/data.csv + +On Windows +"""""""""" + +.. code-block:: sh + + cd env_saqc/Scripts + ./activate + +Via your console, move into the folder you downloaded saqc into: + +.. code-block:: sh + + cd saqc + +From here, you can run saqc and tell it to run the tests from the toy +config-file on the toy dataset via the ``-c`` and ``-d`` options: + + +.. code-block:: sh + + py -3 -m saqc -c ressources/data/myconfig.csv -d ressources/data/data.csv + +If you installed saqc via PYPi, you can omit ``sh python -m``. + +The command will output this plot: + + +.. plot:: + :context: close-figs + :include-source: False + :width: 80 % + :align: center + + qc = saqc.fromConfig(configpath(''), data) + +So, what do we see here? + + +* The plot shows the data as well as the quality flags that were set by the + tests for the variable ``SM2``\ , as defined in the config-file +* Following our definition in the config-file, first the :py:meth:`~saqc.SaQC.flagRange` -test that flags + all values outside the range [10,60] was executed and after that, + the :py:meth:`~saqc.SaQC.flagMAD` -test to identify spikes in the data +* Finally we triggered the generation of a plot, by adding the :py:meth:`~saqc.SaQC.plot` function in the last line. + +Save outputs to file +^^^^^^^^^^^^^^^^^^^^ + +If you want the final results to be saved to a csv-file, you can do so by the +use of the ``-o`` option: + +.. code-block:: sh + + saqc -c ressources/data/config.csv -d ressources/data/data.csv -o ressources/data/out.csv + +Which saves a dataframe that contains both the original data and the quality +flags that were assigned by SaQC for each of the variables: + +.. code-block:: + + Date,SM1,SM1_flags,SM2,SM2_flags + 2016-04-01 00:05:48,32.685,OK,29.3157,OK + 2016-04-01 00:20:42,32.7428,OK,29.3157,OK + 2016-04-01 00:35:37,32.6186,OK,29.3679,OK + 2016-04-01 00:50:32,32.736999999999995,OK,29.3679,OK + ... + + + +3. Configure SaQC +----------------- + +Change test parameters +"""""""""""""""""""""" + +Now you can start to change the settings in the config-file and investigate the +effect that has on how many datapoints are flagged as "BAD". When using your +own data, this is your way to configure the tests according to your needs. For +example, you could modify your ``myconfig.csv`` and change the parameters of the +range-test: + +.. literalinclude:: ../ressources/data/myconfig2.csv + +Rerunning SaQC as above produces the following plot: + +.. testcode:: exampleCLI + :hide: + + qc = saqc.fromConfig(configpath('2'), data) + + +.. plot:: + :context: close-figs + :include-source: False + :width: 80 % + :align: center + + qc = saqc.fromConfig(configpath('2'), data) + + +You can see that the changes that we made to the parameters of the range test +take effect so that only the values > 60 are flagged by it (black points). This, +in turn, leaves more erroneous data that is then identified by the proceeding +spike-test (red points). + +4. Explore the functionality +---------------------------- + +Process multiple variables +"""""""""""""""""""""""""" + +You can also define multiple tests for multiple variables in your data. These +are then executed sequentially and can be plotted seperately. To not interrupt processing, the plots +get stored to files. + +.. literalinclude:: ../ressources/data/myconfig4.csv + + +.. plot:: + :context: close-figs + :include-source: False + + qc = saqc.fromConfig(configpath('4'), data) + +which gives you separate plots for each line where the plotting option is set to +``True`` as well as one summary "data plot" that depicts the joint flags from all +tests: + + +.. list-table:: + :header-rows: 1 + + * - SM1 + - SM2 + * - .. image:: ../ressources/images/SM1processingResults.png + :target: ../ressources/images/SM1processingResults.png + :alt: + + - .. image:: ../ressources/images/SM2processingResults.png + :target: ../ressources/images/SM2processingResults.png + :alt: + + +Data harmonization and custom functions +""""""""""""""""""""""""""""""""""""""" + +SaQC includes functionality to harmonize the timestamps of one or more data +series. Also, you can write your own tests using a python-based +:ref:`extension language <documentation/GenericFunctions:Generic Functions>`. This would look like this: + +.. literalinclude:: ../ressources/data/myconfig3.csv + +.. testcode:: exampleCLI + :hide: + + qc = saqc.fromConfig(configpath('3'), data) + +.. plot:: + :context: close-figs + :include-source: False + :nofigs: + + import os + qc = saqc.fromConfig(configpath('3'), data) + qc.data.to_csv(temppath('TutorialCLIHarmData.csv')) + + +The above executes an internal framework that aligns the timestamps of SM2 +to a 15min-grid (:py:meth:`saqc.SaQC.shift`). Further information on harmonization can be +found in the :doc:`Resampling cookbook <../cook_books/DataRegularisation>`. + + +.. literalinclude:: ../ressources/temp/TutorialCLIHarmData.csv + :lines: 1-10 + + +Also, all values where SM2 is below 30 are flagged via the custom function (see +plot below) and the plot is labeled with the string passed to the `label` keyword. +You can learn more about the syntax of these custom functions +:ref:`here <documentation/GenericFunctions:Generic Functions>`. + + +.. plot:: + :context: close-figs + :include-source: False + :width: 80 % + :align: center + + qc.plot('SM2') diff --git a/sphinxdoc/how_to_doc/HowToDoc.rst b/sphinxdoc/how_to_doc/HowToDoc.rst new file mode 100644 index 0000000000000000000000000000000000000000..6dd9f8086ba63cfd34e80a6acae80631a21323e1 --- /dev/null +++ b/sphinxdoc/how_to_doc/HowToDoc.rst @@ -0,0 +1,299 @@ + +Documentation Guide +=================== + +We document our code via docstrings in numpy-style. +Features, install and usage instructions and other more text intense stuff, +is written in extra documents. +The documents and the docstrings then are collected and rendered using `sphinx <https://www.sphinx-doc.org/>`_. + +Documentation Strings +--------------------- + + +* Write docstrings for all public modules, functions, classes, and methods. + Docstrings are not necessary for non-public methods, + but you should have a comment that describes what the method does. + This comment should appear after the def line. + [\ `PEP8 <https://www.python.org/dev/peps/pep-0008/#documentation-strings>`_\ ] + +* Note that most importantly, the ``"""`` that ends a multiline docstring should be on a line by itself [\ `PEP8 <https://www.python.org/dev/peps/pep-0008/#documentation-strings>`_\ ] : + + .. code-block:: python + + """Return a foobang + + Optional plotz says to frobnicate the bizbaz first. + """ + +* For one liner docstrings, please keep the closing ``"""`` on the same line. + [\ `PEP8 <https://www.python.org/dev/peps/pep-0008/#documentation-strings>`_\ ] + +Pandas Style +^^^^^^^^^^^^ + +We use `Pandas-style <https://pandas.pydata.org/pandas-docs/stable/development/contributing_docstring.html>`_ docstrings: + +Flagger, data, field, etc. +-------------------------- + +use this: + +.. code-block:: py + + def foo(data, field, flagger): + """ + data : dios.DictOfSeries + A saqc-data object. + + field : str + A field denoting a column in data. + + flagger : saqc.flagger.BaseFlagger + A saqc-flagger object. + """ + +IDE helper +^^^^^^^^^^ + +In pycharm one can activate autogeneration of numpy doc style like so: + +#. ``File->Settings...`` +#. ``Tools->Python Integrated Tools`` +#. ``Docstrings->Docstring format`` +#. Choose ``NumPy`` + +Docstring formatting pitfalls +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +* Latex is included via: + + .. code-block:: + + :math:`<latex_code>` + +* Latex commands need to be signified with **double** backlash! (``\\mu``) +* Nested lists need to be all of the same kind (either numbered or marked - otherwise result is salad) +* List items covering several lines in the docstring have to be all aligned - (so, not only the superfluent ones, but ALL, including the first one - otherwise result is salad) +* Start of a list has to be seperated from preceding docstring code by *one blank line* - (otherwise list items get just chained in one line and result is salad) +* Most formatting signifiers are not allowed to start or end with a space. +* Do not include lines *only* containing two or more ``-`` signs, except it is the underscore line of the section heading (otherwise resulting html representation could be messed up) + +hyperlinking docstrings +----------------------- + +* Link code content/modules via python roles. +* Cite/link via the py domain roles. Link content ``bar``\ , that is registered to the API with the adress ``foo.bar`` and + shall be represented by the name ``link_name``\ , via: + + .. code-block:: + + :py:role:`link_name <foo.bar>` + +* Check out the *_api* folder in the `repository <https://git.ufz.de/rdm-software/saqc/-/tree/develop/sphinx-doc>`_ to get an + overview of already registered paths. Most important may be: +* Constants are available via ``saqc.constants`` - for example: + + .. code-block:: + + :py:const:`~saqc.constants.BAD` + +* The ``~`` is a shorthand for hiding the module path and only displaying ``BAD``. +* Functions are available via the "simulated" module ``Functions.saqc`` - for example: + + .. code-block:: + + :py:func:`coolMethod <saqc.SaQC.flagRange>` + + +* The saqc object and/or its content is available via: + + .. code-block:: + + :py:class:`saqc.SaQC` + :py:meth:`saqc.SaQC.flagRange` + + +* The Flags object and/or its content is available via: + + .. code-block:: + + :py:class:`saqc.Flags` + +* You can add .rst files containing ``automodapi`` directives to the modulesAPI folder to make available more modules via pyroles +* The Environment table, including variables available via config files is available as restfile located in the environment folder. (Use include directive to include, or linking syntax to link it. + +Integrating doctested code snippets +----------------------------------- + +code-block +^^^^^^^^^^ + +If you want to ONLY RENDER code blocks, use the common `code-block` directive: + +.. code-block:: rest + + .. code-block:: python + + a = 1 + b = 2 + a + b + +This results in: + +.. code-block:: python + + a = 1 + b = 2 + a + b + +testcode +^^^^^^^^ + +If you want code to be RENDERED and TESTED, use the `testcode` directive. You can specify a group, where +assignments and imports will be stored to, and available for later `testcode` directives +of the same group and same document. Code is executed, and the doctest will fail, if execution causes an exception to be thrown. + +.. code-block:: rest + + .. testcode:: group1 + + a = 1 + b = 2 + a + b + +This will be rendered as: + +.. testcode:: group1 + + a = 1 + b = 2 + a + b + +Assignments (and imports) will be available in any other `testcode` directive, that has the same group assigned. +So the following wont fail, since ``a`` is known in ``group1``: + +.. code-block:: rest + + .. testcode:: group1 + + a - 4 + +testsetup +^^^^^^^^^ + +If you want to setup the example environment in a hidden manor, you can use the `testsetup` directive: + +.. code-block:: rest + + .. testsetup:: group1 + + import scipy + +Will import scipy into the group environment, omitting rendering/display of the code. + +testoutput +^^^^^^^^^^ + +If you want to additionally check the final *std_out* output of a `testcode` block, you can use +the `testoutput` directive: + +.. code-block:: rest + + .. testcode:: group1 + + a - 4 + + .. testoutput:: + + -3 + +This will be rendered as follows: + +.. testcode:: group1 + + a - 4 + +.. testoutput:: + + -3 + +You can omit displaying of the testoutput, by adding the `hidden` option. + +doctest +^^^^^^^ + +If you want to have code tested and rendered in the doctest style rendering, +(including *>>>*), you can use doctest syntax: + +.. code-block:: rest + + >>> 1+1 + 2 + +This will be rendered as: + +>>> 1+1 +2 + +It can be a little tricky, to match complexer std_out strings, like dios or DataFrames. There are some +doctest flags that can mitigate frustration: + +#. NORMALIZE_WHITESPACE will map all whitespace/tab combos onto a single whitespace. Use like: + + .. code-block:: rest + + >>> 'ab c' #doctest:+NORMALIZE_WHITESPACE + 'ab c' + +#. ELLIPSIS will allow usage of the '...'-Wildcard in the expected output. (Usefull, if output contains unpredictable substrings, like memory adresses or filepaths + + .. code-block:: rest + + >>> 'abcdefg' #doctest:+ELLIPSIS + 'a...b' + +#. SKIP skips the check (and execution of the line) all together. (usually used, if display is demanded, but testing would somehow be unstable, due to random/unpredictable components) + + .. code-block:: rest + + >>> time #doctest:+SKIP + CPU times: user 5 µs, sys: 3 µs, total: 8 µs + Wall time: 13.8 µs + + .. caution:: + Skipped lines are NOT tested! The execution of the line is skipped all together with the check against the + expected output. + +To assign a group to doctest snippets, use the more verbose `doctest` directive: + +.. code-block:: rest + + .. doctest:: group1 + + >>> time #doctest:+SKIP + CPU times: user 5 µs, sys: 3 µs, total: 8 µs + Wall time: 13.8 µs + +Will be rendered, as: + +.. doctest:: group1 + + >>> time #doctest:+SKIP + CPU times: user 5 µs, sys: 3 µs, total: 8 µs + Wall time: 13.8 µs + + +Run doctest locally +------------------- + +Since doctest checks guard the push to the develop branch, you might wish to chek if your local modification passes +all doctests beforehand. + +There for go to the sphinxdoc directory and run: + +.. code-block:: + + make testonly + +To only run the doctests. \ No newline at end of file diff --git a/sphinx-doc/index.rst b/sphinxdoc/index.rst similarity index 55% rename from sphinx-doc/index.rst rename to sphinxdoc/index.rst index 3ee256b2d00b5afa2591beaba1db9d8e104d5b96..8466583581b3c6cffabf6fdc40ebf43f224c6f81 100644 --- a/sphinx-doc/index.rst +++ b/sphinxdoc/index.rst @@ -7,7 +7,6 @@ :maxdepth: 1 Repository <https://git.ufz.de/rdm-software/saqc> - Package API <moduleAPIs/saqcInit> Getting Started =============== @@ -48,32 +47,31 @@ Getting Started :glob: :titlesonly: - all <moduleAPIs/Functionssaqc> - resampling <moduleAPIs/Functionsresampling> - generic <moduleAPIs/Functionsgeneric> - outliers <moduleAPIs/Functionsoutliers> - breaks <moduleAPIs/Functionsbreaks> - constants <moduleAPIs/Functionsconstants> - changepoints <moduleAPIs/Functionschangepoints> - drift <moduleAPIs/Functionsdrift> - curvefit <moduleAPIs/Functionscurvefit> - interpolation <moduleAPIs/Functionsinterpolation> - residues <moduleAPIs/Functionsresidues> - tools <moduleAPIs/Functionstools> - flagtools <moduleAPIs/Functionsflagtools> - rolling <moduleAPIs/Functionsrolling> - scores <moduleAPIs/Functionsscores> - transformation <moduleAPIs/Functionstransformation> - noise <moduleAPIs/Functionsnoise> + resampling <funcSummaries/resampling> + generic <funcSummaries/generic> + outliers <funcSummaries/outliers> + breaks <funcSummaries/breaks> + constants <funcSummaries/constants> + changepoints <funcSummaries/changepoints> + drift <funcSummaries/drift> + curvefit <funcSummaries/curvefit> + interpolation <funcSummaries/interpolation> + residues <funcSummaries/residues> + tools <funcSummaries/tools> + flagtools <funcSummaries/flagtools> + rolling <funcSummaries/rolling> + scores <funcSummaries/scores> + transformation <funcSummaries/transformation> + noise <funcSummaries/noise> + pattern <funcSummaries/pattern> .. toctree:: :caption: SaQC :hidden: - :maxdepth: 1 + :maxdepth: 2 - SaQC Object <moduleAPIs/saqcClass> - Constants <moduleAPI/saqcConstants> + Package <moduleAPIs/saqc> Config Environment <environment/configEnv> @@ -83,6 +81,7 @@ Getting Started :maxdepth: 1 Documentation Guide <how_to_doc/HowToDoc> + Writing Functions <documentation/WritingFunctions> Indices and tables diff --git a/sphinx-doc/make.bat b/sphinxdoc/make.bat similarity index 100% rename from sphinx-doc/make.bat rename to sphinxdoc/make.bat diff --git a/sphinx-doc/misc/title.rst b/sphinxdoc/misc/title.rst similarity index 93% rename from sphinx-doc/misc/title.rst rename to sphinxdoc/misc/title.rst index bb92d288f350908b1b0727c4c0ff03947f752e01..f7e5641ddd143abebf06602c64bfdd98c27f2f3a 100644 --- a/sphinx-doc/misc/title.rst +++ b/sphinxdoc/misc/title.rst @@ -68,7 +68,7 @@ Features * or use SaQC as a commandline application and configure your pipelines via plain text * - |sacRaw| - * easily load data from multiple sources, concatenating them in a SaQC object - * preprocess your data, by aligning it to shared frequency grids + * :ref:`preprocess your data, by aligning it to shared frequency grids <cook_books/DataRegularisation:Data Regularisation>` * - |sacFlagged| - * apply basic plausibility checks, as well as * more complex, univariat flagging Functions @@ -79,4 +79,4 @@ Features - * modify your data by :ref:`interpolations <cook_books/DataRegularisation:Interpolation>`, corrections and :ref:`transformations <cook_books/DataRegularisation:Aggregation>` * calculate data products, such as :ref:`residues or outlier scores <cook_books/OutlierDetection:Residues and Scores>` * - |sacMV| - - * apply multivariate flagging function + - * apply :ref:`multivariate flagging functions <cook_books/MultivariateFlagging:Multivariate Flagging>` diff --git a/sphinxdoc/moduleAPIs/saqc.rst b/sphinxdoc/moduleAPIs/saqc.rst new file mode 100644 index 0000000000000000000000000000000000000000..9cdee31aabb0fddda2d6686f0cc6c3217beea29c --- /dev/null +++ b/sphinxdoc/moduleAPIs/saqc.rst @@ -0,0 +1,8 @@ + +SaQC +==== + +.. automodapi:: saqc + + + diff --git a/sphinx-doc/moduleAPIs/saqcConstants.rst b/sphinxdoc/moduleAPIs/saqcConstants.rst similarity index 70% rename from sphinx-doc/moduleAPIs/saqcConstants.rst rename to sphinxdoc/moduleAPIs/saqcConstants.rst index 3c6636edbcd85673ae95ccc19e41728fa231034f..db20cc67b9289435bb59f631a7236a8f0067f4ea 100644 --- a/sphinx-doc/moduleAPIs/saqcConstants.rst +++ b/sphinxdoc/moduleAPIs/saqcConstants.rst @@ -4,3 +4,4 @@ saqc .. automodapi:: saqc.constants :include-all-objects: + :skip: ENVIRONMENT diff --git a/sphinxdoc/moduleAPIs/saqcFuncClass.rst b/sphinxdoc/moduleAPIs/saqcFuncClass.rst new file mode 100644 index 0000000000000000000000000000000000000000..c537ab13ca0819ec19a8828b0d3f74151f198fd8 --- /dev/null +++ b/sphinxdoc/moduleAPIs/saqcFuncClass.rst @@ -0,0 +1,8 @@ + +SaQC +==== + +.. automodapi:: sphinxdoc.coredoc + + + diff --git a/sphinxdoc/moduleAPIs/saqcFuncTOC.rst b/sphinxdoc/moduleAPIs/saqcFuncTOC.rst new file mode 100644 index 0000000000000000000000000000000000000000..6a3ff1aa1673f522cf65af0fbef5f518545290fb --- /dev/null +++ b/sphinxdoc/moduleAPIs/saqcFuncTOC.rst @@ -0,0 +1,10 @@ +SaQC Flagging Functions +----------------------- + +.. toctree:: + :glob: + + ../funcSummaries/* + + + diff --git a/sphinx-doc/requirements_sphinx.txt b/sphinxdoc/requirements_sphinx.txt similarity index 100% rename from sphinx-doc/requirements_sphinx.txt rename to sphinxdoc/requirements_sphinx.txt diff --git a/sphinx-doc/ressources/data/SoilMoisture.csv b/sphinxdoc/ressources/data/SoilMoisture.csv similarity index 100% rename from sphinx-doc/ressources/data/SoilMoisture.csv rename to sphinxdoc/ressources/data/SoilMoisture.csv diff --git a/sphinxdoc/ressources/data/TutorialCLIHarmData.csv b/sphinxdoc/ressources/data/TutorialCLIHarmData.csv new file mode 100644 index 0000000000000000000000000000000000000000..09e1c045a5c31631e45cd29564638c989b98463e --- /dev/null +++ b/sphinxdoc/ressources/data/TutorialCLIHarmData.csv @@ -0,0 +1,29365 @@ +Date,Battery,SM1,SM2 +2016-04-01 00:00:00,,,29.3157 +2016-04-01 00:05:48,3573.0,32.685, +2016-04-01 00:15:00,,,29.3157 +2016-04-01 00:20:42,3572.0,32.7428, +2016-04-01 00:30:00,,,29.3679 +2016-04-01 00:35:37,3572.0,32.6186, +2016-04-01 00:45:00,,,29.3679 +2016-04-01 00:50:32,3572.0,32.736999999999995, +2016-04-01 01:00:00,,,29.3131 +2016-04-01 01:05:26,3572.0,32.736999999999995, +2016-04-01 01:15:00,,,29.3157 +2016-04-01 01:20:21,3571.0,32.6186, +2016-04-01 01:30:00,,,29.3157 +2016-04-01 01:35:16,3571.0,32.736999999999995, +2016-04-01 01:45:00,,,29.4727 +2016-04-01 01:50:11,3571.0,32.736999999999995, +2016-04-01 02:00:00,,,29.5252 +2016-04-01 02:05:05,3571.0,32.6186, +2016-04-01 02:15:00,,,29.5252 +2016-04-01 02:20:00,3571.0,32.911, +2016-04-01 02:30:00,,,29.5226 +2016-04-01 02:34:55,3570.0,32.85, +2016-04-01 02:45:00,,,29.4727 +2016-04-01 02:49:49,3570.0,32.911, +2016-04-01 03:00:00,,,29.5252 +2016-04-01 03:04:44,3570.0,32.9081, +2016-04-01 03:15:00,,,29.5252 +2016-04-01 03:19:39,3569.0,32.8993, +2016-04-01 03:30:00,,,29.4176 +2016-04-01 03:34:33,3569.0,32.9023, +2016-04-01 03:45:00,,,29.5252 +2016-04-01 03:49:28,3568.0,32.7861, +2016-04-01 04:00:00,,,29.5252 +2016-04-01 04:04:23,3568.0,32.9023, +2016-04-01 04:15:00,,,29.4727 +2016-04-01 04:19:17,3568.0,33.013000000000005, +2016-04-01 04:30:00,,,29.5252 +2016-04-01 04:34:12,3568.0,32.9023, +2016-04-01 04:45:00,,,29.5252 +2016-04-01 04:49:07,3567.0,32.8993, +2016-04-01 05:00:00,,,29.5252 +2016-04-01 05:04:01,3567.0,32.9023, +2016-04-01 05:15:00,,,29.4727 +2016-04-01 05:18:56,3566.0,32.9023, +2016-04-01 05:30:00,,,29.5252 +2016-04-01 05:33:50,3567.0,32.7861, +2016-04-01 05:45:00,,,29.5252 +2016-04-01 05:48:45,3566.0,32.8993, +2016-04-01 06:00:00,,,29.4727 +2016-04-01 06:03:39,3566.0,32.8993, +2016-04-01 06:15:00,,,29.5252 +2016-04-01 06:18:34,3566.0,32.8935, +2016-04-01 06:30:00,,,29.4727 +2016-04-01 06:33:28,3565.0,32.7774, +2016-04-01 06:45:00,,,29.4727 +2016-04-01 06:48:22,3565.0,32.8935, +2016-04-01 07:00:00,,,29.5252 +2016-04-01 07:03:17,3565.0,32.8935, +2016-04-01 07:15:00,,,29.4727 +2016-04-01 07:18:11,3565.0,32.8935, +2016-04-01 07:30:00,,,29.5252 +2016-04-01 07:33:06,3565.0,32.8935, +2016-04-01 07:45:00,,,29.5252 +2016-04-01 07:48:00,3565.0,32.8935, +2016-04-01 08:00:00,,,29.47 +2016-04-01 08:02:55,3565.0,32.8935, +2016-04-01 08:15:00,,,29.5252 +2016-04-01 08:17:49,3566.0,32.8935, +2016-04-01 08:30:00,,,29.5252 +2016-04-01 08:32:43,3567.0,32.8964, +2016-04-01 08:45:00,,,29.5252 +2016-04-01 08:47:38,3568.0,32.8935, +2016-04-01 09:00:00,,,29.5252 +2016-04-01 09:02:32,3570.0,32.8354, +2016-04-01 09:15:00,,,29.4727 +2016-04-01 09:17:27,3572.0,32.8935, +2016-04-01 09:30:00,,,29.5252 +2016-04-01 09:32:22,3575.0,32.8935, +2016-04-01 09:45:00,,,29.4203 +2016-04-01 09:47:17,3578.0,32.8354, +2016-04-01 10:00:00,,,29.4176 +2016-04-01 10:02:12,3581.0,32.8935, +2016-04-01 10:15:00,,,29.47 +2016-04-01 10:17:07,3583.0,32.8354, +2016-04-01 10:30:00,,,29.4176 +2016-04-01 10:32:02,3587.0,32.8964, +2016-04-01 10:45:00,,,29.4203 +2016-04-01 10:46:57,3591.0,32.8325, +2016-04-01 11:00:00,,,29.5252 +2016-04-01 11:01:52,3594.0,32.7774, +2016-04-01 11:15:00,,,29.5252 +2016-04-01 11:16:47,3596.0,32.7803, +2016-04-01 11:30:00,,,29.4727 +2016-04-01 11:31:42,3598.0,32.8935, +2016-04-01 11:45:00,,,29.5252 +2016-04-01 11:46:37,3598.0,32.7745, +2016-04-01 12:00:00,,,29.5252 +2016-04-01 12:01:32,3598.0,32.8935, +2016-04-01 12:15:00,,,29.5252 +2016-04-01 12:16:27,3598.0,32.8354, +2016-04-01 12:30:00,,,29.4727 +2016-04-01 12:31:22,3599.0,32.9023, +2016-04-01 12:45:00,,,29.4727 +2016-04-01 12:46:17,3599.0,32.7861, +2016-04-01 13:00:00,,,29.47 +2016-04-01 13:01:12,3599.0,32.7861, +2016-04-01 13:15:00,,,29.4203 +2016-04-01 13:16:08,3599.0,32.7949, +2016-04-01 13:30:00,,,29.4176 +2016-04-01 13:31:03,3599.0,32.9081, +2016-04-01 13:45:00,,,29.4203 +2016-04-01 13:45:58,3599.0,32.7891, +2016-04-01 14:00:00,,,29.47 +2016-04-01 14:00:53,3599.0,32.8036, +2016-04-01 14:15:00,,,29.4203 +2016-04-01 14:15:48,3599.0,32.7428, +2016-04-01 14:30:00,,,29.5252 +2016-04-01 14:30:43,3599.0,32.685, +2016-04-01 14:45:00,,,29.4727 +2016-04-01 14:45:38,3599.0,32.6937, +2016-04-01 15:00:00,,,29.4203 +2016-04-01 15:00:34,3599.0,32.636, +2016-04-01 15:15:00,,,29.4203 +2016-04-01 15:15:29,3599.0,32.636, +2016-04-01 15:30:00,,,29.4203 +2016-04-01 15:30:24,3599.0,32.636, +2016-04-01 15:45:00,,,29.47 +2016-04-01 15:45:19,3599.0,32.636, +2016-04-01 16:00:00,,,29.4176 +2016-04-01 16:00:15,3599.0,32.6389, +2016-04-01 16:15:00,,,29.4203 +2016-04-01 16:15:10,3599.0,32.7515, +2016-04-01 16:30:00,,,29.4203 +2016-04-01 16:30:05,3599.0,32.6937, +2016-04-01 16:45:00,,,29.4727 +2016-04-01 16:45:01,3599.0,32.636, +2016-04-01 16:59:56,3599.0,32.7631, +2016-04-01 17:00:00,,,29.4727 +2016-04-01 17:14:51,3598.0,32.6447, +2016-04-01 17:15:00,,,29.4727 +2016-04-01 17:29:46,3598.0,32.6476, +2016-04-01 17:30:00,,,29.4727 +2016-04-01 17:44:41,3598.0,32.7024, +2016-04-01 17:45:00,,,29.47 +2016-04-01 17:59:36,3598.0,32.7024, +2016-04-01 18:00:00,,,29.4727 +2016-04-01 18:14:31,3597.0,32.5958, +2016-04-01 18:15:00,,,29.4203 +2016-04-01 18:29:26,3596.0,32.6534, +2016-04-01 18:30:00,,,29.4176 +2016-04-01 18:44:21,3595.0,32.6534, +2016-04-01 18:45:00,,,29.4727 +2016-04-01 18:59:16,3593.0,32.7689, +2016-04-01 19:00:00,,,29.5252 +2016-04-01 19:14:11,3591.0,32.7111, +2016-04-01 19:15:00,,,29.47 +2016-04-01 19:29:06,3589.0,32.7689, +2016-04-01 19:30:00,,,29.4727 +2016-04-01 19:44:01,3587.0,32.6563, +2016-04-01 19:45:00,,,29.47 +2016-04-01 19:58:55,3585.0,32.7111, +2016-04-01 20:00:00,,,29.4727 +2016-04-01 20:13:50,3583.0,32.6534, +2016-04-01 20:15:00,,,29.4727 +2016-04-01 20:28:45,3581.0,32.714, +2016-04-01 20:30:00,,,29.4727 +2016-04-01 20:43:39,3578.0,32.7689, +2016-04-01 20:45:00,,,29.5252 +2016-04-01 20:58:34,3577.0,32.7718, +2016-04-01 21:00:00,,,29.4203 +2016-04-01 21:13:28,3574.0,32.8269, +2016-04-01 21:15:00,,,29.4805 +2016-04-01 21:28:23,3573.0,32.7631, +2016-04-01 21:30:00,,,29.5252 +2016-04-01 21:43:17,3572.0,32.7053, +2016-04-01 21:45:00,,,29.5252 +2016-04-01 21:58:12,3570.0,32.7631, +2016-04-01 22:00:00,,,29.533 +2016-04-01 22:13:06,3569.0,32.6447, +2016-04-01 22:15:00,,,29.5304 +2016-04-01 22:28:00,3567.0,32.7631, +2016-04-01 22:30:00,,,29.4805 +2016-04-01 22:42:55,3566.0,32.7053, +2016-04-01 22:45:00,,,29.5304 +2016-04-01 22:57:50,3566.0,32.6937, +2016-04-01 23:00:00,,,29.533 +2016-04-01 23:12:44,3566.0,32.7631, +2016-04-01 23:15:00,,,29.533 +2016-04-01 23:27:38,3564.0,32.7631, +2016-04-01 23:30:00,,,29.533 +2016-04-01 23:42:33,3564.0,32.6937, +2016-04-01 23:45:00,,,29.4805 +2016-04-01 23:57:27,3563.0,32.6966, +2016-04-02 00:00:00,,,29.533 +2016-04-02 00:12:22,3562.0,32.6937, +2016-04-02 00:15:00,,,29.533 +2016-04-02 00:27:16,3561.0,32.636, +2016-04-02 00:30:00,,,29.533 +2016-04-02 00:42:11,3561.0,32.6937, +2016-04-02 00:45:00,,,29.4805 +2016-04-02 00:57:05,3560.0,32.6389, +2016-04-02 01:00:00,,,29.5304 +2016-04-02 01:11:59,3559.0,32.7515, +2016-04-02 01:15:00,,,29.5357 +2016-04-02 01:26:54,3559.0,32.8094, +2016-04-02 01:30:00,,,29.533 +2016-04-02 01:41:49,3559.0,32.6966, +2016-04-02 01:45:00,,,29.533 +2016-04-02 01:56:43,3559.0,32.7515, +2016-04-02 02:00:00,,,29.4805 +2016-04-02 02:11:38,3559.0,32.7515, +2016-04-02 02:15:00,,,29.533 +2016-04-02 02:26:32,3558.0,32.636, +2016-04-02 02:30:00,,,29.533 +2016-04-02 02:41:26,3558.0,32.7515, +2016-04-02 02:45:00,,,29.5857 +2016-04-02 02:56:21,3558.0,32.6389, +2016-04-02 03:00:00,,,29.4281 +2016-04-02 03:11:15,3557.0,32.6879, +2016-04-02 03:15:00,,,29.533 +2016-04-02 03:26:10,3557.0,32.6908, +2016-04-02 03:30:00,,,29.533 +2016-04-02 03:41:04,3557.0,32.685, +2016-04-02 03:45:00,,,29.5304 +2016-04-02 03:55:58,3556.0,32.6908, +2016-04-02 04:00:00,,,29.5357 +2016-04-02 04:10:53,3556.0,32.6215, +2016-04-02 04:15:00,,,29.4255 +2016-04-02 04:25:47,3556.0,32.6215, +2016-04-02 04:30:00,,,29.5357 +2016-04-02 04:40:42,3556.0,32.736999999999995, +2016-04-02 04:45:00,,,29.5357 +2016-04-02 04:55:36,3555.0,32.6763, +2016-04-02 05:00:00,,,29.5409 +2016-04-02 05:10:30,3556.0,32.6186, +2016-04-02 05:15:00,,,29.5435 +2016-04-02 05:25:32,3556.0,32.7341, +2016-04-02 05:30:00,,,29.5409 +2016-04-02 05:40:26,3556.0,32.7283, +2016-04-02 05:45:00,,,29.5909 +2016-04-02 05:55:21,3556.0,32.7254, +2016-04-02 06:00:00,,,29.5409 +2016-04-02 06:10:15,3557.0,32.7254, +2016-04-02 06:15:00,,,29.3758 +2016-04-02 06:25:10,3556.0,32.6705, +2016-04-02 06:30:00,,,29.4359 +2016-04-02 06:40:04,3557.0,32.6676, +2016-04-02 06:45:00,,,29.4281 +2016-04-02 06:54:59,3557.0,32.6013, +2016-04-02 07:00:00,,,29.3862 +2016-04-02 07:09:53,3556.0,32.6618, +2016-04-02 07:15:00,,,29.3836 +2016-04-02 07:24:48,3556.0,32.7196, +2016-04-02 07:30:00,,,29.3287 +2016-04-02 07:39:42,3557.0,32.6618, +2016-04-02 07:45:00,,,29.3235 +2016-04-02 07:54:37,3558.0,32.7196, +2016-04-02 08:00:00,,,29.3313 +2016-04-02 08:09:31,3559.0,32.7166, +2016-04-02 08:15:00,,,29.3732 +2016-04-02 08:24:26,3562.0,32.7196, +2016-04-02 08:30:00,,,29.3313 +2016-04-02 08:39:20,3565.0,32.7196, +2016-04-02 08:45:00,,,29.3287 +2016-04-02 08:54:15,3566.0,32.6618, +2016-04-02 09:00:00,,,29.381 +2016-04-02 09:09:10,3570.0,32.7196, +2016-04-02 09:15:00,,,29.3758 +2016-04-02 09:24:04,3572.0,32.7196, +2016-04-02 09:30:00,,,29.3313 +2016-04-02 09:38:59,3575.0,32.6042, +2016-04-02 09:45:00,,,29.3235 +2016-04-02 09:53:54,3577.0,32.7196, +2016-04-02 10:00:00,,,29.3235 +2016-04-02 10:08:49,3579.0,32.6071, +2016-04-02 10:15:00,,,29.3235 +2016-04-02 10:23:43,3582.0,32.4892, +2016-04-02 10:30:00,,,29.3209 +2016-04-02 10:38:38,3585.0,32.4892, +2016-04-02 10:45:00,,,29.3235 +2016-04-02 10:53:33,3588.0,32.4319, +2016-04-02 11:00:00,,,29.3235 +2016-04-02 11:08:28,3591.0,32.4892, +2016-04-02 11:15:00,,,29.3235 +2016-04-02 11:23:24,3593.0,32.4864, +2016-04-02 11:30:00,,,29.3235 +2016-04-02 11:38:19,3595.0,32.4892, +2016-04-02 11:45:00,,,29.3758 +2016-04-02 11:53:14,3597.0,32.4892, +2016-04-02 12:00:00,,,29.3235 +2016-04-02 12:08:09,3598.0,32.4892, +2016-04-02 12:15:00,,,29.3209 +2016-04-02 12:23:04,3598.0,32.4892, +2016-04-02 12:30:00,,,29.3235 +2016-04-02 12:38:00,3599.0,32.4864, +2016-04-02 12:45:00,,,29.3209 +2016-04-02 12:52:55,3599.0,32.4319, +2016-04-02 13:00:00,,,29.3209 +2016-04-02 13:07:50,3599.0,32.4892, +2016-04-02 13:15:00,,,29.3235 +2016-04-02 13:22:46,3599.0,32.4348, +2016-04-02 13:30:00,,,29.3209 +2016-04-02 13:37:41,3599.0,32.4377, +2016-04-02 13:45:00,,,29.3235 +2016-04-02 13:52:37,3599.0,32.5036, +2016-04-02 14:00:00,,,29.3209 +2016-04-02 14:07:32,3599.0,32.5036, +2016-04-02 14:15:00,,,29.3758 +2016-04-02 14:22:28,3599.0,32.5065, +2016-04-02 14:30:00,,,29.3235 +2016-04-02 14:37:23,3599.0,32.5123, +2016-04-02 14:45:00,,,29.3209 +2016-04-02 14:52:19,3599.0,32.455, +2016-04-02 15:00:00,,,29.3235 +2016-04-02 15:07:14,3599.0,32.521, +2016-04-02 15:15:00,,,29.3235 +2016-04-02 15:22:10,3599.0,32.4636, +2016-04-02 15:30:00,,,29.3209 +2016-04-02 15:37:06,3599.0,32.521, +2016-04-02 15:45:00,,,29.3732 +2016-04-02 15:52:01,3599.0,32.5784, +2016-04-02 16:00:00,,,29.3209 +2016-04-02 16:06:56,3599.0,32.521, +2016-04-02 16:15:00,,,29.3235 +2016-04-02 16:21:52,3599.0,32.4665, +2016-04-02 16:30:00,,,29.3732 +2016-04-02 16:36:47,3599.0,32.415, +2016-04-02 16:45:00,,,29.3209 +2016-04-02 16:51:43,3599.0,32.5296, +2016-04-02 17:00:00,,,29.3235 +2016-04-02 17:06:38,3599.0,32.4809, +2016-04-02 17:15:00,,,29.3235 +2016-04-02 17:21:33,3599.0,32.4809, +2016-04-02 17:30:00,,,29.2714 +2016-04-02 17:36:29,3599.0,32.4809, +2016-04-02 17:45:00,,,29.3732 +2016-04-02 17:51:24,3599.0,32.5412, +2016-04-02 18:00:00,,,29.2688 +2016-04-02 18:06:20,3599.0,32.5469, +2016-04-02 18:15:00,,,29.3732 +2016-04-02 18:21:15,3599.0,32.544000000000004, +2016-04-02 18:30:00,,,29.3209 +2016-04-02 18:36:10,3599.0,32.4867, +2016-04-02 18:45:00,,,29.3235 +2016-04-02 18:51:06,3599.0,32.6015, +2016-04-02 19:00:00,,,29.3235 +2016-04-02 19:06:01,3599.0,32.5469, +2016-04-02 19:15:00,,,29.3235 +2016-04-02 19:20:56,3599.0,32.5498, +2016-04-02 19:30:00,,,29.2714 +2016-04-02 19:35:51,3599.0,32.544000000000004, +2016-04-02 19:45:00,,,29.3209 +2016-04-02 19:50:46,3598.0,32.4895, +2016-04-02 20:00:00,,,29.3235 +2016-04-02 20:05:42,3598.0,32.4867, +2016-04-02 20:15:00,,,29.3758 +2016-04-02 20:20:37,3598.0,32.544000000000004, +2016-04-02 20:30:00,,,29.381 +2016-04-02 20:35:32,3596.0,32.4867, +2016-04-02 20:45:00,,,29.3235 +2016-04-02 20:50:27,3595.0,32.5469, +2016-04-02 21:00:00,,,29.3235 +2016-04-02 21:05:22,3594.0,32.6015, +2016-04-02 21:15:00,,,29.3235 +2016-04-02 21:20:24,3593.0,32.5469, +2016-04-02 21:30:00,,,29.3235 +2016-04-02 21:35:18,3592.0,32.5469, +2016-04-02 21:45:00,,,29.3313 +2016-04-02 21:50:13,3591.0,32.544000000000004, +2016-04-02 22:00:00,,,29.3836 +2016-04-02 22:05:08,3590.0,32.5469, +2016-04-02 22:15:00,,,29.3836 +2016-04-02 22:20:03,3588.0,32.544000000000004, +2016-04-02 22:30:00,,,29.3235 +2016-04-02 22:34:58,3588.0,32.544000000000004, +2016-04-02 22:45:00,,,29.3313 +2016-04-02 22:49:52,3588.0,32.5469, +2016-04-02 23:00:00,,,29.3836 +2016-04-02 23:04:47,3588.0,32.544000000000004, +2016-04-02 23:15:00,,,29.3313 +2016-04-02 23:19:42,3588.0,32.4895, +2016-04-02 23:30:00,,,29.3836 +2016-04-02 23:34:36,3587.0,32.6044, +2016-04-02 23:45:00,,,29.3313 +2016-04-02 23:49:31,3587.0,32.6015, +2016-04-03 00:00:00,,, +2016-04-03 00:15:00,,, +2016-04-03 00:30:00,,, +2016-04-03 00:45:00,,, +2016-04-03 01:00:00,,,29.3287 +2016-04-03 01:04:13,3587.0,32.4895, +2016-04-03 01:15:00,,,29.3313 +2016-04-03 01:19:07,3587.0,32.544000000000004, +2016-04-03 01:30:00,,,29.3313 +2016-04-03 01:34:02,3587.0,32.544000000000004, +2016-04-03 01:45:00,,,29.3836 +2016-04-03 01:48:57,3587.0,32.4867, +2016-04-03 02:00:00,,,29.3391 +2016-04-03 02:03:51,3586.0,32.5469, +2016-04-03 02:15:00,,,29.3313 +2016-04-03 02:18:46,3587.0,32.544000000000004, +2016-04-03 02:30:00,,,29.3391 +2016-04-03 02:33:41,3586.0,32.4294, +2016-04-03 02:45:00,,,29.3365 +2016-04-03 02:48:35,3586.0,32.4895, +2016-04-03 03:00:00,,,29.3391 +2016-04-03 03:03:30,3587.0,32.5469, +2016-04-03 03:15:00,,,29.287 +2016-04-03 03:18:25,3587.0,32.544000000000004, +2016-04-03 03:30:00,,,29.3365 +2016-04-03 03:33:20,3587.0,32.4867, +2016-04-03 03:45:00,,,29.3888 +2016-04-03 03:48:15,3586.0,32.6044, +2016-04-03 04:00:00,,,29.183000000000003 +2016-04-03 04:03:09,3586.0,32.5469, +2016-04-03 04:15:00,,,29.2349 +2016-04-03 04:18:04,3586.0,32.4867, +2016-04-03 04:30:00,,,29.183000000000003 +2016-04-03 04:32:59,3585.0,32.6044, +2016-04-03 04:45:00,,,29.1311 +2016-04-03 04:47:53,3585.0,32.5469, +2016-04-03 05:00:00,,,29.183000000000003 +2016-04-03 05:02:48,3584.0,32.5498, +2016-04-03 05:15:00,,,29.183000000000003 +2016-04-03 05:17:43,3584.0,32.544000000000004, +2016-04-03 05:30:00,,,29.2349 +2016-04-03 05:32:37,3584.0,32.6044, +2016-04-03 05:45:00,,,29.2349 +2016-04-03 05:47:32,3583.0,32.544000000000004, +2016-04-03 06:00:00,,,29.183000000000003 +2016-04-03 06:02:27,3583.0,32.6044, +2016-04-03 06:15:00,,,29.183000000000003 +2016-04-03 06:17:21,3582.0,32.5469, +2016-04-03 06:30:00,,,29.183000000000003 +2016-04-03 06:32:16,3582.0,32.5469, +2016-04-03 06:45:00,,,29.1882 +2016-04-03 06:47:10,3581.0,32.544000000000004, +2016-04-03 07:00:00,,,29.2349 +2016-04-03 07:02:04,3581.0,32.4895, +2016-04-03 07:15:00,,,29.1311 +2016-04-03 07:17:07,3581.0,32.544000000000004, +2016-04-03 07:30:00,,,29.1804 +2016-04-03 07:32:02,3582.0,32.544000000000004, +2016-04-03 07:45:00,,,29.2401 +2016-04-03 07:46:56,3583.0,32.5469, +2016-04-03 08:00:00,,,29.2401 +2016-04-03 08:01:51,3584.0,32.544000000000004, +2016-04-03 08:15:00,,,29.1882 +2016-04-03 08:16:46,3585.0,32.544000000000004, +2016-04-03 08:30:00,,,29.1311 +2016-04-03 08:31:41,3587.0,32.5469, +2016-04-03 08:45:00,,,29.1882 +2016-04-03 08:46:36,3588.0,32.544000000000004, +2016-04-03 09:00:00,,,29.2401 +2016-04-03 09:01:38,3591.0,32.4895, +2016-04-03 09:15:00,,,29.1882 +2016-04-03 09:16:33,3594.0,32.5469, +2016-04-03 09:30:00,,,29.1363 +2016-04-03 09:31:28,3597.0,32.544000000000004, +2016-04-03 09:45:00,,,29.1882 +2016-04-03 09:46:23,3598.0,32.4895, +2016-04-03 10:00:00,,,29.1882 +2016-04-03 10:01:18,3599.0,32.544000000000004, +2016-04-03 10:15:00,,,29.1882 +2016-04-03 10:16:13,3599.0,32.544000000000004, +2016-04-03 10:30:00,,,29.1882 +2016-04-03 10:31:08,3599.0,32.4867, +2016-04-03 10:45:00,,,29.1363 +2016-04-03 10:46:04,3599.0,32.544000000000004, +2016-04-03 11:00:00,,,29.1882 +2016-04-03 11:00:59,3599.0,32.544000000000004, +2016-04-03 11:15:00,,,29.1363 +2016-04-03 11:15:55,3599.0,32.4294, +2016-04-03 11:30:00,,,29.1363 +2016-04-03 11:30:50,3599.0,32.5469, +2016-04-03 11:45:00,,,29.1882 +2016-04-03 11:45:45,3599.0,32.4867, +2016-04-03 12:00:00,,,29.1882 +2016-04-03 12:00:41,3599.0,32.544000000000004, +2016-04-03 12:15:00,,,29.1907 +2016-04-03 12:15:36,3599.0,32.438, +2016-04-03 12:30:00,,,29.1882 +2016-04-03 12:30:32,3599.0,32.438, +2016-04-03 12:45:00,,,29.1363 +2016-04-03 12:45:28,3599.0,32.4953, +2016-04-03 13:00:00,,,29.1882 +2016-04-03 13:00:23,3599.0,32.504, +2016-04-03 13:15:00,,,29.1882 +2016-04-03 13:15:19,3599.0,32.5643, +2016-04-03 13:30:00,,,29.1882 +2016-04-03 13:30:15,3599.0,32.5729, +2016-04-03 13:45:00,,,29.1882 +2016-04-03 13:45:10,3599.0,32.5729, +2016-04-03 14:00:00,,,29.1882 +2016-04-03 14:00:06,3599.0,32.5126, +2016-04-03 14:15:00,,,29.1363 +2016-04-03 14:15:02,3599.0,32.6276, +2016-04-03 14:29:58,3599.0,32.57, +2016-04-03 14:30:00,,,29.1882 +2016-04-03 14:44:54,3599.0,32.5155, +2016-04-03 14:45:00,,,29.1882 +2016-04-03 14:59:49,3599.0,32.5787, +2016-04-03 15:00:00,,,29.2401 +2016-04-03 15:14:45,3599.0,32.5241, +2016-04-03 15:15:00,,,29.1882 +2016-04-03 15:29:41,3599.0,32.645, +2016-04-03 15:30:00,,,29.1363 +2016-04-03 15:44:37,3599.0,32.5386, +2016-04-03 15:45:00,,,29.1363 +2016-04-03 15:59:32,3599.0,32.4812, +2016-04-03 16:00:00,,,29.1882 +2016-04-03 16:14:28,3599.0,32.5961, +2016-04-03 16:15:00,,,29.1882 +2016-04-03 16:29:24,3599.0,32.4812, +2016-04-03 16:30:00,,,29.1856 +2016-04-03 16:44:19,3599.0,32.5961, +2016-04-03 16:45:00,,,29.1882 +2016-04-03 16:59:15,3599.0,32.5961, +2016-04-03 17:00:00,,,29.1363 +2016-04-03 17:14:11,3599.0,32.6537, +2016-04-03 17:15:00,,,29.1882 +2016-04-03 17:29:06,3599.0,32.3754, +2016-04-03 17:30:00,,,29.1882 +2016-04-03 17:44:02,3599.0,32.3754, +2016-04-03 17:45:00,,,29.2401 +2016-04-03 17:58:58,3599.0,32.3841, +2016-04-03 18:00:00,,,29.1882 +2016-04-03 18:13:53,3599.0,32.3812, +2016-04-03 18:15:00,,,29.1882 +2016-04-03 18:28:49,3599.0,32.3956, +2016-04-03 18:30:00,,,29.2401 +2016-04-03 18:43:44,3599.0,32.3927, +2016-04-03 18:45:00,,,29.1882 +2016-04-03 18:58:40,3599.0,32.4499, +2016-04-03 19:00:00,,,29.1363 +2016-04-03 19:13:35,3599.0,32.3927, +2016-04-03 19:15:00,,,29.1363 +2016-04-03 19:28:30,3599.0,32.4499, +2016-04-03 19:30:00,,,29.1882 +2016-04-03 19:43:26,3599.0,32.3927, +2016-04-03 19:45:00,,,29.1363 +2016-04-03 19:58:21,3599.0,32.3927, +2016-04-03 20:00:00,,,29.1882 +2016-04-03 20:13:16,3599.0,32.4013, +2016-04-03 20:15:00,,,29.1882 +2016-04-03 20:28:11,3599.0,32.3927, +2016-04-03 20:30:00,,,29.1882 +2016-04-03 20:43:07,3599.0,32.4585, +2016-04-03 20:45:00,,,29.1882 +2016-04-03 20:58:02,3599.0,32.4585, +2016-04-03 21:00:00,,,29.1882 +2016-04-03 21:12:57,3599.0,32.4013, +2016-04-03 21:15:00,,,29.1882 +2016-04-03 21:27:53,3599.0,32.4013, +2016-04-03 21:30:00,,,29.1882 +2016-04-03 21:42:48,3599.0,32.4013, +2016-04-03 21:45:00,,,29.1882 +2016-04-03 21:57:43,3599.0,32.4013, +2016-04-03 22:00:00,,,29.1882 +2016-04-03 22:12:38,3599.0,32.4013, +2016-04-03 22:15:00,,,29.1882 +2016-04-03 22:27:34,3599.0,32.4585, +2016-04-03 22:30:00,,,29.2401 +2016-04-03 22:42:29,3599.0,32.3984, +2016-04-03 22:45:00,,,29.2479 +2016-04-03 22:57:24,3599.0,32.3984, +2016-04-03 23:00:00,,,29.144 +2016-04-03 23:12:19,3599.0,32.3984, +2016-04-03 23:15:00,,,29.1959 +2016-04-03 23:27:14,3599.0,32.4013, +2016-04-03 23:30:00,,,29.144 +2016-04-03 23:42:09,3599.0,32.4042, +2016-04-03 23:45:00,,,29.1985 +2016-04-03 23:57:04,3599.0,32.5158, +2016-04-04 00:00:00,,,29.1959 +2016-04-04 00:11:59,3599.0,32.4013, +2016-04-04 00:15:00,,,29.1959 +2016-04-04 00:26:54,3599.0,32.4585, +2016-04-04 00:30:00,,,29.2037 +2016-04-04 00:41:49,3599.0,32.4013, +2016-04-04 00:45:00,,,29.1959 +2016-04-04 00:56:44,3599.0,32.4585, +2016-04-04 01:00:00,,,29.2011 +2016-04-04 01:11:39,3599.0,32.4013, +2016-04-04 01:15:00,,,29.2037 +2016-04-04 01:26:34,3599.0,32.4013, +2016-04-04 01:30:00,,,29.2037 +2016-04-04 01:41:29,3599.0,32.4013, +2016-04-04 01:45:00,,,29.2037 +2016-04-04 01:56:24,3599.0,32.3442, +2016-04-04 02:00:00,,,29.2037 +2016-04-04 02:11:19,3599.0,32.5158, +2016-04-04 02:15:00,,,29.2037 +2016-04-04 02:26:14,3599.0,32.4013, +2016-04-04 02:30:00,,,29.2557 +2016-04-04 02:41:09,3599.0,32.4013, +2016-04-04 02:45:00,,,29.2037 +2016-04-04 02:56:04,3599.0,32.4585, +2016-04-04 03:00:00,,,29.2037 +2016-04-04 03:10:58,3598.0,32.4013, +2016-04-04 03:15:00,,,29.2115 +2016-04-04 03:25:53,3598.0,32.4585, +2016-04-04 03:30:00,,,29.2115 +2016-04-04 03:40:48,3598.0,32.4585, +2016-04-04 03:45:00,,,29.2115 +2016-04-04 03:55:43,3598.0,32.4013, +2016-04-04 04:00:00,,,29.2141 +2016-04-04 04:10:38,3598.0,32.3442, +2016-04-04 04:15:00,,,29.2115 +2016-04-04 04:25:33,3598.0,32.4614, +2016-04-04 04:30:00,,,29.2115 +2016-04-04 04:40:28,3598.0,32.4013, +2016-04-04 04:45:00,,,29.2115 +2016-04-04 04:55:22,3598.0,32.4585, +2016-04-04 05:00:00,,,29.2115 +2016-04-04 05:10:17,3598.0,32.4585, +2016-04-04 05:15:00,,,29.2635 +2016-04-04 05:25:12,3598.0,32.4585, +2016-04-04 05:30:00,,,29.2115 +2016-04-04 05:40:07,3598.0,32.5158, +2016-04-04 05:45:00,,,29.2115 +2016-04-04 05:55:02,3598.0,32.4013, +2016-04-04 06:00:00,,,29.2115 +2016-04-04 06:09:57,3598.0,32.3442, +2016-04-04 06:15:00,,,29.2635 +2016-04-04 06:24:52,3598.0,32.4585, +2016-04-04 06:30:00,,,29.2141 +2016-04-04 06:39:47,3598.0,32.4585, +2016-04-04 06:45:00,,,29.2635 +2016-04-04 06:54:42,3598.0,32.4013, +2016-04-04 07:00:00,,,29.2115 +2016-04-04 07:09:37,3598.0,32.4585, +2016-04-04 07:15:00,,,29.2115 +2016-04-04 07:24:32,3598.0,32.4013, +2016-04-04 07:30:00,,,29.2635 +2016-04-04 07:39:27,3598.0,32.4013, +2016-04-04 07:45:00,,,29.2115 +2016-04-04 07:54:22,3598.0,32.4585, +2016-04-04 08:00:00,,,29.2115 +2016-04-04 08:09:17,3599.0,32.4585, +2016-04-04 08:15:00,,,29.2115 +2016-04-04 08:24:12,3599.0,32.3442, +2016-04-04 08:30:00,,,29.2115 +2016-04-04 08:39:07,3599.0,32.4013, +2016-04-04 08:45:00,,,29.2635 +2016-04-04 08:54:02,3599.0,32.4585, +2016-04-04 09:00:00,,,29.2661 +2016-04-04 09:08:57,3599.0,32.4013, +2016-04-04 09:15:00,,,29.2115 +2016-04-04 09:23:52,3599.0,32.4013, +2016-04-04 09:30:00,,,29.2635 +2016-04-04 09:38:47,3599.0,32.4556, +2016-04-04 09:45:00,,,29.2115 +2016-04-04 09:53:43,3598.0,32.4013, +2016-04-04 10:00:00,,,29.1596 +2016-04-04 10:08:38,3599.0,32.3442, +2016-04-04 10:15:00,,,29.2115 +2016-04-04 10:23:33,3599.0,32.3984, +2016-04-04 10:30:00,,,29.2115 +2016-04-04 10:38:29,3599.0,32.4013, +2016-04-04 10:45:00,,,29.2141 +2016-04-04 10:53:24,3599.0,32.4042, +2016-04-04 11:00:00,,,29.2115 +2016-04-04 11:08:20,3599.0,32.4556, +2016-04-04 11:15:00,,,29.2635 +2016-04-04 11:23:15,3599.0,32.4585, +2016-04-04 11:30:00,,,29.2115 +2016-04-04 11:38:11,3599.0,32.4071, +2016-04-04 11:45:00,,,29.2635 +2016-04-04 11:53:07,3599.0,32.4672, +2016-04-04 12:00:00,,,29.1596 +2016-04-04 12:08:03,3599.0,32.4099, +2016-04-04 12:15:00,,,29.2115 +2016-04-04 12:22:58,3599.0,32.4758, +2016-04-04 12:30:00,,,29.2115 +2016-04-04 12:37:54,3599.0,32.4758, +2016-04-04 12:45:00,,,29.2167 +2016-04-04 12:52:50,3599.0,32.4157, +2016-04-04 13:00:00,,,29.2167 +2016-04-04 13:07:46,3599.0,32.4186, +2016-04-04 13:15:00,,,29.2193 +2016-04-04 13:22:42,3599.0,32.3614, +2016-04-04 13:30:00,,,29.2115 +2016-04-04 13:37:38,3599.0,32.3102, +2016-04-04 13:45:00,,,29.2167 +2016-04-04 13:52:34,3599.0,32.4243, +2016-04-04 14:00:00,,,29.2167 +2016-04-04 14:07:30,3599.0,32.4243, +2016-04-04 14:15:00,,,29.2167 +2016-04-04 14:22:26,3599.0,32.4243, +2016-04-04 14:30:00,,,29.2167 +2016-04-04 14:37:29,3599.0,32.433, +2016-04-04 14:45:00,,,29.2167 +2016-04-04 14:52:25,3599.0,32.4902, +2016-04-04 15:00:00,,,29.2193 +2016-04-04 15:07:21,3599.0,32.3188, +2016-04-04 15:15:00,,,29.2167 +2016-04-04 15:22:17,3599.0,32.4416, +2016-04-04 15:30:00,,,29.1647 +2016-04-04 15:37:13,3599.0,32.4445, +2016-04-04 15:45:00,,,29.2167 +2016-04-04 15:52:09,3599.0,32.4416, +2016-04-04 16:00:00,,,29.1673 +2016-04-04 16:07:05,3599.0,32.4387, +2016-04-04 16:15:00,,,29.227 +2016-04-04 16:22:01,3599.0,32.3274, +2016-04-04 16:30:00,,,29.2167 +2016-04-04 16:36:57,3599.0,32.279, +2016-04-04 16:45:00,,,29.1725 +2016-04-04 16:51:53,3599.0,32.2762, +2016-04-04 17:00:00,,,29.2244 +2016-04-04 17:06:49,3599.0,32.2193, +2016-04-04 17:15:00,,,29.2244 +2016-04-04 17:21:45,3599.0,32.336, +2016-04-04 17:30:00,,,29.2244 +2016-04-04 17:36:41,3599.0,32.279, +2016-04-04 17:45:00,,,29.1725 +2016-04-04 17:51:37,3599.0,32.2848, +2016-04-04 18:00:00,,,29.227 +2016-04-04 18:06:33,3599.0,32.3417, +2016-04-04 18:15:00,,,29.1751 +2016-04-04 18:21:29,3599.0,32.3417, +2016-04-04 18:30:00,,,29.2843 +2016-04-04 18:36:25,3599.0,32.2934, +2016-04-04 18:45:00,,,29.2244 +2016-04-04 18:51:21,3599.0,32.2962, +2016-04-04 19:00:00,,,29.2322 +2016-04-04 19:06:17,3599.0,32.2962, +2016-04-04 19:15:00,,,29.2348 +2016-04-04 19:21:12,3599.0,32.2962, +2016-04-04 19:30:00,,,29.2322 +2016-04-04 19:36:08,3599.0,32.2934, +2016-04-04 19:45:00,,,29.2322 +2016-04-04 19:51:04,3599.0,32.2962, +2016-04-04 20:00:00,,,29.2348 +2016-04-04 20:05:59,3599.0,32.2962, +2016-04-04 20:15:00,,,29.2322 +2016-04-04 20:20:55,3599.0,32.2962, +2016-04-04 20:30:00,,,29.1803 +2016-04-04 20:35:51,3599.0,32.2962, +2016-04-04 20:45:00,,,29.2348 +2016-04-04 20:50:46,3599.0,32.2962, +2016-04-04 21:00:00,,,29.2348 +2016-04-04 21:05:42,3599.0,32.3532, +2016-04-04 21:15:00,,,29.2322 +2016-04-04 21:20:37,3599.0,32.4675, +2016-04-04 21:30:00,,,29.2322 +2016-04-04 21:35:33,3599.0,32.3048, +2016-04-04 21:45:00,,,29.2322 +2016-04-04 21:50:28,3599.0,32.3503, +2016-04-04 22:00:00,,,29.2322 +2016-04-04 22:05:24,3599.0,32.3503, +2016-04-04 22:15:00,,,29.2348 +2016-04-04 22:20:19,3599.0,32.3532, +2016-04-04 22:30:00,,,29.2348 +2016-04-04 22:35:15,3599.0,32.2365, +2016-04-04 22:45:00,,,29.2322 +2016-04-04 22:50:10,3599.0,32.2394, +2016-04-04 23:00:00,,,29.2322 +2016-04-04 23:05:06,3599.0,32.2962, +2016-04-04 23:15:00,,,29.2348 +2016-04-04 23:20:01,3599.0,32.2962, +2016-04-04 23:30:00,,,29.2322 +2016-04-04 23:34:57,3599.0,32.2934, +2016-04-04 23:45:00,,,29.2348 +2016-04-04 23:49:52,3599.0,32.2962, +2016-04-05 00:00:00,,,29.2348 +2016-04-05 00:04:47,3599.0,32.3503, +2016-04-05 00:15:00,,,29.2322 +2016-04-05 00:19:43,3599.0,32.2962, +2016-04-05 00:30:00,,,29.2348 +2016-04-05 00:34:38,3598.0,32.2962, +2016-04-05 00:45:00,,,29.2348 +2016-04-05 00:49:37,3598.0,32.2962, +2016-04-05 01:00:00,,,29.2348 +2016-04-05 01:04:32,3598.0,32.3532, +2016-04-05 01:15:00,,,29.2322 +2016-04-05 01:19:28,3598.0,32.2394, +2016-04-05 01:30:00,,,29.2348 +2016-04-05 01:34:23,3598.0,32.2962, +2016-04-05 01:45:00,,,29.2426 +2016-04-05 01:49:18,3597.0,32.2962, +2016-04-05 02:00:00,,,29.24 +2016-04-05 02:04:14,3597.0,32.2365, +2016-04-05 02:15:00,,,29.2426 +2016-04-05 02:19:09,3596.0,32.2962, +2016-04-05 02:30:00,,,29.2921 +2016-04-05 02:34:04,3596.0,32.2394, +2016-04-05 02:45:00,,,29.2426 +2016-04-05 02:48:59,3595.0,32.3532, +2016-04-05 03:00:00,,,29.2426 +2016-04-05 03:03:55,3594.0,32.2394, +2016-04-05 03:15:00,,,29.2478 +2016-04-05 03:18:50,3594.0,32.2962, +2016-04-05 03:30:00,,,29.24 +2016-04-05 03:33:45,3594.0,32.2876, +2016-04-05 03:45:00,,,29.24 +2016-04-05 03:48:40,3594.0,32.3446, +2016-04-05 04:00:00,,,29.2504 +2016-04-05 04:03:35,3593.0,32.3446, +2016-04-05 04:15:00,,,29.2504 +2016-04-05 04:18:30,3593.0,32.2876, +2016-04-05 04:30:00,,,29.2504 +2016-04-05 04:33:25,3593.0,32.2876, +2016-04-05 04:45:00,,,29.2999 +2016-04-05 04:48:20,3593.0,32.2876, +2016-04-05 05:00:00,,,29.2504 +2016-04-05 05:03:15,3593.0,32.3446, +2016-04-05 05:15:00,,,29.2504 +2016-04-05 05:18:10,3592.0,32.3446, +2016-04-05 05:30:00,,,29.2504 +2016-04-05 05:33:05,3592.0,32.336, +2016-04-05 05:45:00,,,29.2504 +2016-04-05 05:48:00,3592.0,32.336, +2016-04-05 06:00:00,,,29.2478 +2016-04-05 06:02:55,3592.0,32.279, +2016-04-05 06:15:00,,,29.3103 +2016-04-05 06:17:50,3592.0,32.2762, +2016-04-05 06:30:00,,,29.3025 +2016-04-05 06:32:45,3592.0,32.336, +2016-04-05 06:45:00,,,29.2478 +2016-04-05 06:47:40,3592.0,32.2222, +2016-04-05 07:00:00,,,29.1465 +2016-04-05 07:02:35,3592.0,32.279, +2016-04-05 07:15:00,,,29.3025 +2016-04-05 07:17:30,3591.0,32.279, +2016-04-05 07:30:00,,,29.1025 +2016-04-05 07:32:25,3591.0,32.336, +2016-04-05 07:45:00,,,29.1025 +2016-04-05 07:47:20,3590.0,32.2762, +2016-04-05 08:00:00,,,29.1465 +2016-04-05 08:02:15,3590.0,32.336, +2016-04-05 08:15:00,,,29.1025 +2016-04-05 08:17:10,3590.0,32.4502, +2016-04-05 08:30:00,,,29.1543 +2016-04-05 08:32:05,3590.0,32.3331, +2016-04-05 08:45:00,,,29.1025 +2016-04-05 08:47:00,3592.0,32.279, +2016-04-05 09:00:00,,,29.0999 +2016-04-05 09:01:55,3592.0,32.336, +2016-04-05 09:15:00,,,29.1025 +2016-04-05 09:16:50,3594.0,32.336, +2016-04-05 09:30:00,,,29.0999 +2016-04-05 09:31:45,3595.0,32.2193, +2016-04-05 09:45:00,,,29.1543 +2016-04-05 09:46:40,3596.0,32.279, +2016-04-05 10:00:00,,,29.1025 +2016-04-05 10:01:35,3598.0,32.279, +2016-04-05 10:15:00,,,29.1025 +2016-04-05 10:16:31,3598.0,32.279, +2016-04-05 10:30:00,,,29.1543 +2016-04-05 10:31:26,3598.0,32.336, +2016-04-05 10:45:00,,,29.1543 +2016-04-05 10:46:21,3598.0,32.3331, +2016-04-05 11:00:00,,,29.0508 +2016-04-05 11:01:17,3598.0,32.279, +2016-04-05 11:15:00,,,29.0999 +2016-04-05 11:16:12,3599.0,32.3902, +2016-04-05 11:30:00,,,29.0999 +2016-04-05 11:31:08,3599.0,32.336, +2016-04-05 11:45:00,,,29.0508 +2016-04-05 11:46:03,3599.0,32.336, +2016-04-05 12:00:00,,,29.0999 +2016-04-05 12:00:59,3599.0,32.336, +2016-04-05 12:15:00,,,29.1025 +2016-04-05 12:15:54,3599.0,32.336, +2016-04-05 12:30:00,,,29.0999 +2016-04-05 12:30:50,3599.0,32.336, +2016-04-05 12:45:00,,,29.1025 +2016-04-05 12:45:46,3599.0,32.3331, +2016-04-05 13:00:00,,,29.0999 +2016-04-05 13:00:42,3599.0,32.336, +2016-04-05 13:15:00,,,29.0999 +2016-04-05 13:15:37,3599.0,32.3446, +2016-04-05 13:30:00,,,29.0999 +2016-04-05 13:30:33,3599.0,32.4017, +2016-04-05 13:45:00,,,29.0999 +2016-04-05 13:45:29,3599.0,32.3446, +2016-04-05 14:00:00,,,29.0482 +2016-04-05 14:00:24,3599.0,32.3503, +2016-04-05 14:15:00,,,29.0999 +2016-04-05 14:15:20,3599.0,32.3532, +2016-04-05 14:30:00,,,29.0999 +2016-04-05 14:30:16,3599.0,32.2934, +2016-04-05 14:45:00,,,29.0999 +2016-04-05 14:45:12,3599.0,32.3532, +2016-04-05 15:00:00,,,29.0999 +2016-04-05 15:00:08,3599.0,32.126, +2016-04-05 15:15:00,,,29.0973 +2016-04-05 15:15:03,3599.0,32.2962, +2016-04-05 15:29:59,3599.0,32.248000000000005, +2016-04-05 15:30:00,,,29.0999 +2016-04-05 15:44:55,3599.0,32.1345, +2016-04-05 15:45:00,,,29.1025 +2016-04-05 15:59:51,3599.0,32.1345, +2016-04-05 16:00:00,,,29.0999 +2016-04-05 16:14:47,3599.0,32.1912, +2016-04-05 16:15:00,,,29.0508 +2016-04-05 16:29:43,3599.0,32.1431, +2016-04-05 16:30:00,,,29.0999 +2016-04-05 16:44:38,3599.0,32.1431, +2016-04-05 16:45:00,,,29.1543 +2016-04-05 16:59:34,3599.0,32.1402, +2016-04-05 17:00:00,,,29.0999 +2016-04-05 17:14:30,3599.0,32.1431, +2016-04-05 17:15:00,,,29.0999 +2016-04-05 17:29:26,3599.0,32.0865, +2016-04-05 17:30:00,,,29.1025 +2016-04-05 17:44:21,3599.0,32.1998, +2016-04-05 17:45:00,,,29.0999 +2016-04-05 17:59:17,3599.0,32.1431, +2016-04-05 18:00:00,,,29.1025 +2016-04-05 18:14:13,3599.0,32.1969, +2016-04-05 18:15:00,,,29.1025 +2016-04-05 18:29:08,3599.0,32.1488, +2016-04-05 18:30:00,,,29.0999 +2016-04-05 18:44:04,3599.0,32.1488, +2016-04-05 18:45:00,,,29.0999 +2016-04-05 18:59:00,3599.0,32.1488, +2016-04-05 19:00:00,,,29.0999 +2016-04-05 19:13:55,3599.0,32.2055, +2016-04-05 19:15:00,,,29.1025 +2016-04-05 19:28:51,3599.0,32.2623, +2016-04-05 19:30:00,,,29.0482 +2016-04-05 19:43:46,3599.0,32.2623, +2016-04-05 19:45:00,,,29.0999 +2016-04-05 19:58:42,3599.0,32.1488, +2016-04-05 20:00:00,,,29.1025 +2016-04-05 20:13:38,3599.0,32.1516, +2016-04-05 20:15:00,,,29.1025 +2016-04-05 20:28:33,3599.0,32.1488, +2016-04-05 20:30:00,,,29.1076 +2016-04-05 20:43:28,3599.0,32.1488, +2016-04-05 20:45:00,,,29.1076 +2016-04-05 20:58:24,3599.0,32.3192, +2016-04-05 21:00:00,,,29.1076 +2016-04-05 21:13:19,3599.0,32.1488, +2016-04-05 21:15:00,,,29.2114 +2016-04-05 21:28:14,3598.0,32.3192, +2016-04-05 21:30:00,,,29.1076 +2016-04-05 21:43:10,3598.0,32.4333, +2016-04-05 21:45:00,,,29.1076 +2016-04-05 21:58:05,3598.0,32.3791, +2016-04-05 22:00:00,,,29.1595 +2016-04-05 22:13:00,3596.0,32.3733, +2016-04-05 22:15:00,,,29.1076 +2016-04-05 22:27:55,3595.0,32.1516, +2016-04-05 22:30:00,,,29.1595 +2016-04-05 22:42:51,3593.0,32.2623, +2016-04-05 22:45:00,,,29.1076 +2016-04-05 22:57:46,3592.0,32.1488, +2016-04-05 23:00:00,,,29.1076 +2016-04-05 23:12:41,3591.0,32.1488, +2016-04-05 23:15:00,,,29.1595 +2016-04-05 23:27:36,3590.0,32.1488, +2016-04-05 23:30:00,,,29.1102 +2016-04-05 23:42:31,3589.0,32.3762, +2016-04-05 23:45:00,,,29.1076 +2016-04-05 23:57:26,3588.0,32.2623, +2016-04-06 00:00:00,,,29.1076 +2016-04-06 00:12:21,3588.0,32.1998, +2016-04-06 00:15:00,,,29.1076 +2016-04-06 00:27:16,3586.0,32.1431, +2016-04-06 00:30:00,,,29.118 +2016-04-06 00:42:11,3586.0,32.1402, +2016-04-06 00:45:00,,,29.1154 +2016-04-06 00:57:06,3585.0,32.0865, +2016-04-06 01:00:00,,,29.1154 +2016-04-06 01:12:01,3585.0,32.2565, +2016-04-06 01:15:00,,,29.1154 +2016-04-06 01:26:57,3585.0,32.1431, +2016-04-06 01:30:00,,,29.1672 +2016-04-06 01:41:52,3583.0,32.1431, +2016-04-06 01:45:00,,,29.1154 +2016-04-06 01:56:47,3583.0,32.0865, +2016-04-06 02:00:00,,,29.0714 +2016-04-06 02:11:42,3583.0,32.1998, +2016-04-06 02:15:00,,,29.118 +2016-04-06 02:26:37,3582.0,32.1431, +2016-04-06 02:30:00,,,29.118 +2016-04-06 02:41:32,3581.0,32.2508, +2016-04-06 02:45:00,,,29.1154 +2016-04-06 02:56:26,3581.0,32.1374, +2016-04-06 03:00:00,,,29.1154 +2016-04-06 03:11:21,3581.0,32.1345, +2016-04-06 03:15:00,,,29.1672 +2016-04-06 03:26:17,3581.0,32.1345, +2016-04-06 03:30:00,,,29.1672 +2016-04-06 03:41:12,3581.0,32.1345, +2016-04-06 03:45:00,,,29.1232 +2016-04-06 03:56:07,3580.0,32.126, +2016-04-06 04:00:00,,,29.1232 +2016-04-06 04:11:02,3579.0,32.078, +2016-04-06 04:15:00,,,29.2269 +2016-04-06 04:25:56,3579.0,32.126, +2016-04-06 04:30:00,,,29.1232 +2016-04-06 04:40:51,3578.0,32.0694, +2016-04-06 04:45:00,,,29.175 +2016-04-06 04:55:46,3577.0,32.126, +2016-04-06 05:00:00,,,29.1257 +2016-04-06 05:10:41,3577.0,32.0723, +2016-04-06 05:15:00,,,29.175 +2016-04-06 05:25:36,3575.0,32.1288, +2016-04-06 05:30:00,,,29.0714 +2016-04-06 05:40:30,3575.0,32.126, +2016-04-06 05:45:00,,,29.2269 +2016-04-06 05:55:25,3574.0,32.126, +2016-04-06 06:00:00,,,29.1776 +2016-04-06 06:10:20,3573.0,32.0609, +2016-04-06 06:15:00,,,29.1232 +2016-04-06 06:25:15,3572.0,32.2308, +2016-04-06 06:30:00,,,29.1776 +2016-04-06 06:40:10,3571.0,32.1174, +2016-04-06 06:45:00,,,29.2295 +2016-04-06 06:55:04,3571.0,32.0609, +2016-04-06 07:00:00,,,29.175 +2016-04-06 07:09:59,3570.0,32.1174, +2016-04-06 07:15:00,,,29.1257 +2016-04-06 07:24:54,3571.0,32.1088, +2016-04-06 07:30:00,,,29.2269 +2016-04-06 07:39:48,3571.0,32.0523, +2016-04-06 07:45:00,,,29.1232 +2016-04-06 07:54:43,3572.0,32.0523, +2016-04-06 08:00:00,,,29.2269 +2016-04-06 08:09:38,3573.0,32.2222, +2016-04-06 08:15:00,,,29.2269 +2016-04-06 08:24:33,3574.0,32.1117, +2016-04-06 08:30:00,,,29.1232 +2016-04-06 08:39:27,3576.0,32.106, +2016-04-06 08:45:00,,,29.074 +2016-04-06 08:54:22,3579.0,32.1088, +2016-04-06 09:00:00,,,29.1232 +2016-04-06 09:09:17,3581.0,32.2193, +2016-04-06 09:15:00,,,29.1257 +2016-04-06 09:24:12,3584.0,32.2193, +2016-04-06 09:30:00,,,29.1232 +2016-04-06 09:39:07,3585.0,32.1655, +2016-04-06 09:45:00,,,29.1232 +2016-04-06 09:54:02,3586.0,32.1003, +2016-04-06 10:00:00,,,29.1232 +2016-04-06 10:08:57,3588.0,32.1655, +2016-04-06 10:15:00,,,29.1232 +2016-04-06 10:23:52,3590.0,32.2222, +2016-04-06 10:30:00,,,29.1232 +2016-04-06 10:38:48,3592.0,32.106, +2016-04-06 10:45:00,,,29.1232 +2016-04-06 10:53:43,3594.0,32.1003, +2016-04-06 11:00:00,,,29.1232 +2016-04-06 11:08:38,3595.0,32.1003, +2016-04-06 11:15:00,,,29.1232 +2016-04-06 11:23:33,3597.0,32.1088, +2016-04-06 11:30:00,,,29.1232 +2016-04-06 11:38:28,3598.0,32.0523, +2016-04-06 11:45:00,,,29.1232 +2016-04-06 11:53:23,3598.0,32.1003, +2016-04-06 12:00:00,,,29.1232 +2016-04-06 12:08:18,3598.0,32.1598, +2016-04-06 12:15:00,,,29.1232 +2016-04-06 12:23:14,3598.0,32.1088, +2016-04-06 12:30:00,,,29.1232 +2016-04-06 12:38:09,3599.0,32.1655, +2016-04-06 12:45:00,,,29.1232 +2016-04-06 12:53:04,3599.0,32.1655, +2016-04-06 13:00:00,,,29.1232 +2016-04-06 13:07:59,3599.0,32.2222, +2016-04-06 13:15:00,,,29.1232 +2016-04-06 13:22:54,3599.0,32.2193, +2016-04-06 13:30:00,,,29.1232 +2016-04-06 13:37:50,3599.0,32.1088, +2016-04-06 13:45:00,,,29.175 +2016-04-06 13:52:45,3599.0,32.1626, +2016-04-06 14:00:00,,,29.1232 +2016-04-06 14:07:40,3599.0,32.106, +2016-04-06 14:15:00,,,29.1232 +2016-04-06 14:22:36,3599.0,32.2222, +2016-04-06 14:30:00,,,29.1232 +2016-04-06 14:37:31,3599.0,32.1088, +2016-04-06 14:45:00,,,29.2269 +2016-04-06 14:52:26,3599.0,32.2308, +2016-04-06 15:00:00,,,29.1232 +2016-04-06 15:07:22,3599.0,32.1174, +2016-04-06 15:15:00,,,29.1776 +2016-04-06 15:22:17,3599.0,32.2308, +2016-04-06 15:30:00,,,29.1232 +2016-04-06 15:37:12,3599.0,32.1174, +2016-04-06 15:45:00,,,29.1232 +2016-04-06 15:52:07,3599.0,32.2308, +2016-04-06 16:00:00,,,29.1232 +2016-04-06 16:07:03,3599.0,32.1174, +2016-04-06 16:15:00,,,29.1232 +2016-04-06 16:21:58,3599.0,32.2394, +2016-04-06 16:30:00,,,29.1257 +2016-04-06 16:36:53,3599.0,32.126, +2016-04-06 16:45:00,,,29.1232 +2016-04-06 16:51:49,3599.0,32.126, +2016-04-06 17:00:00,,,29.1232 +2016-04-06 17:06:44,3599.0,32.1826, +2016-04-06 17:15:00,,,29.1232 +2016-04-06 17:21:40,3599.0,32.0694, +2016-04-06 17:30:00,,,29.1232 +2016-04-06 17:36:35,3599.0,32.2394, +2016-04-06 17:45:00,,,29.1232 +2016-04-06 17:51:30,3599.0,32.1826, +2016-04-06 18:00:00,,,29.1257 +2016-04-06 18:06:26,3599.0,32.126, +2016-04-06 18:15:00,,,29.1232 +2016-04-06 18:21:21,3599.0,32.1826, +2016-04-06 18:30:00,,,29.1232 +2016-04-06 18:36:16,3599.0,32.1826, +2016-04-06 18:45:00,,,29.1257 +2016-04-06 18:51:12,3599.0,32.1826, +2016-04-06 19:00:00,,,29.1232 +2016-04-06 19:06:07,3599.0,32.126, +2016-04-06 19:15:00,,,29.1232 +2016-04-06 19:21:02,3599.0,32.2394, +2016-04-06 19:30:00,,,29.1232 +2016-04-06 19:35:57,3598.0,32.126, +2016-04-06 19:45:00,,,29.1232 +2016-04-06 19:50:53,3598.0,32.1826, +2016-04-06 20:00:00,,,29.1232 +2016-04-06 20:05:48,3597.0,32.126, +2016-04-06 20:15:00,,,29.1232 +2016-04-06 20:20:43,3596.0,32.0694, +2016-04-06 20:30:00,,,29.1206 +2016-04-06 20:35:38,3595.0,32.1231, +2016-04-06 20:45:00,,,29.1232 +2016-04-06 20:50:33,3594.0,32.1826, +2016-04-06 21:00:00,,,29.1232 +2016-04-06 21:05:28,3592.0,32.1826, +2016-04-06 21:15:00,,,29.1232 +2016-04-06 21:20:23,3591.0,32.126, +2016-04-06 21:30:00,,,29.1232 +2016-04-06 21:35:18,3590.0,32.2962, +2016-04-06 21:45:00,,,29.1232 +2016-04-06 21:50:13,3590.0,32.1826, +2016-04-06 22:00:00,,,29.0224 +2016-04-06 22:05:15,3589.0,32.126, +2016-04-06 22:15:00,,,29.0198 +2016-04-06 22:20:10,3589.0,32.126, +2016-04-06 22:30:00,,,28.9682 +2016-04-06 22:35:05,3588.0,32.126, +2016-04-06 22:45:00,,,29.1232 +2016-04-06 22:50:00,3589.0,32.2962, +2016-04-06 23:00:00,,,28.9682 +2016-04-06 23:04:55,3589.0,32.2394, +2016-04-06 23:15:00,,,29.0198 +2016-04-06 23:19:50,3589.0,32.1203, +2016-04-06 23:30:00,,,29.0198 +2016-04-06 23:34:45,3588.0,32.1174, +2016-04-06 23:45:00,,,28.9682 +2016-04-06 23:49:40,3588.0,32.174, +2016-04-07 00:00:00,,,28.9682 +2016-04-07 00:04:36,3588.0,32.174, +2016-04-07 00:15:00,,,29.0198 +2016-04-07 00:19:31,3587.0,32.0637, +2016-04-07 00:30:00,,,28.9682 +2016-04-07 00:34:26,3587.0,32.0609, +2016-04-07 00:45:00,,,29.0198 +2016-04-07 00:49:21,3587.0,32.1174, +2016-04-07 01:00:00,,,28.9168 +2016-04-07 01:04:15,3586.0,32.2308, +2016-04-07 01:15:00,,,28.9682 +2016-04-07 01:19:10,3585.0,32.2222, +2016-04-07 01:30:00,,,29.0275 +2016-04-07 01:34:05,3585.0,32.1655, +2016-04-07 01:45:00,,,29.0275 +2016-04-07 01:49:00,3584.0,32.2222, +2016-04-07 02:00:00,,,28.9759 +2016-04-07 02:03:55,3584.0,32.106, +2016-04-07 02:15:00,,,28.9168 +2016-04-07 02:18:50,3584.0,32.0523, +2016-04-07 02:30:00,,,29.0275 +2016-04-07 02:33:45,3582.0,32.1088, +2016-04-07 02:45:00,,,29.0275 +2016-04-07 02:48:40,3581.0,32.0495, +2016-04-07 03:00:00,,,29.0198 +2016-04-07 03:03:34,3581.0,32.2762, +2016-04-07 03:15:00,,,28.9759 +2016-04-07 03:18:29,3580.0,32.1088, +2016-04-07 03:30:00,,,29.0275 +2016-04-07 03:33:24,3579.0,32.1655, +2016-04-07 03:45:00,,,28.9785 +2016-04-07 03:48:19,3578.0,32.0523, +2016-04-07 04:00:00,,,28.9759 +2016-04-07 04:03:13,3577.0,32.2222, +2016-04-07 04:15:00,,,29.0275 +2016-04-07 04:18:08,3576.0,32.0523, +2016-04-07 04:30:00,,,29.0275 +2016-04-07 04:33:03,3575.0,32.106, +2016-04-07 04:45:00,,,29.0198 +2016-04-07 04:47:58,3574.0,32.0467, +2016-04-07 05:00:00,,,29.0275 +2016-04-07 05:02:52,3573.0,32.0438, +2016-04-07 05:15:00,,,28.9759 +2016-04-07 05:17:47,3571.0,32.0438, +2016-04-07 05:30:00,,,28.9785 +2016-04-07 05:32:42,3571.0,32.1031, +2016-04-07 05:45:00,,,29.0275 +2016-04-07 05:47:36,3569.0,32.1031, +2016-04-07 06:00:00,,,29.0301 +2016-04-07 06:02:31,3567.0,33.7913, +2016-04-07 06:15:00,,,29.0327 +2016-04-07 06:17:25,3566.0,32.1541, +2016-04-07 06:30:00,,,29.0224 +2016-04-07 06:32:20,3565.0,32.0467, +2016-04-07 06:45:00,,,28.9759 +2016-04-07 06:47:14,3563.0,32.0467, +2016-04-07 07:00:00,,,28.9759 +2016-04-07 07:02:09,3563.0,32.0946, +2016-04-07 07:15:00,,,28.9785 +2016-04-07 07:17:04,3561.0,32.0918, +2016-04-07 07:30:00,,,29.0275 +2016-04-07 07:31:58,3561.0,32.0946, +2016-04-07 07:45:00,,,29.0275 +2016-04-07 07:46:53,3560.0,32.0946, +2016-04-07 08:00:00,,,28.9759 +2016-04-07 08:01:47,3559.0,32.0946, +2016-04-07 08:15:00,,,29.0301 +2016-04-07 08:16:42,3561.0,32.0832, +2016-04-07 08:30:00,,,28.9759 +2016-04-07 08:31:37,3561.0,32.1398, +2016-04-07 08:45:00,,,29.0275 +2016-04-07 08:46:31,3564.0,32.0861, +2016-04-07 09:00:00,,,29.0275 +2016-04-07 09:01:26,3568.0,32.0267, +2016-04-07 09:15:00,,,28.9245 +2016-04-07 09:16:21,3572.0,32.0832, +2016-04-07 09:30:00,,,29.0275 +2016-04-07 09:31:16,3575.0,32.0832, +2016-04-07 09:45:00,,,28.9759 +2016-04-07 09:46:11,3577.0,32.0861, +2016-04-07 10:00:00,,,29.0275 +2016-04-07 10:01:06,3581.0,32.0832, +2016-04-07 10:15:00,,,29.0275 +2016-04-07 10:16:01,3582.0,32.0832, +2016-04-07 10:30:00,,,29.0275 +2016-04-07 10:30:56,3585.0,32.1398, +2016-04-07 10:45:00,,,28.9682 +2016-04-07 10:45:51,3586.0,32.0861, +2016-04-07 11:00:00,,,28.9759 +2016-04-07 11:00:46,3587.0,32.1398, +2016-04-07 11:15:00,,,29.0275 +2016-04-07 11:15:41,3588.0,32.0832, +2016-04-07 11:30:00,,,28.9682 +2016-04-07 11:30:37,3588.0,32.1398, +2016-04-07 11:45:00,,,28.9682 +2016-04-07 11:45:32,3588.0,32.1965, +2016-04-07 12:00:00,,,28.9682 +2016-04-07 12:00:27,3588.0,32.1426, +2016-04-07 12:15:00,,,28.9708 +2016-04-07 12:15:23,3588.0,32.0267, +2016-04-07 12:30:00,,,28.9193 +2016-04-07 12:30:18,3590.0,32.1398, +2016-04-07 12:45:00,,,28.9682 +2016-04-07 12:45:13,3592.0,32.1341, +2016-04-07 13:00:00,,,28.9759 +2016-04-07 13:00:08,3593.0,32.0832, +2016-04-07 13:15:00,,,28.9682 +2016-04-07 13:15:04,3594.0,32.0861, +2016-04-07 13:29:59,3595.0,32.0861, +2016-04-07 13:30:00,,,28.9245 +2016-04-07 13:44:54,3595.0,32.0832, +2016-04-07 13:45:00,,,29.0198 +2016-04-07 13:59:50,3596.0,32.1965, +2016-04-07 14:00:00,,,28.9682 +2016-04-07 14:14:45,3597.0,32.1398, +2016-04-07 14:15:00,,,29.0198 +2016-04-07 14:29:40,3598.0,32.0832, +2016-04-07 14:30:00,,,29.0198 +2016-04-07 14:44:35,3598.0,32.0861, +2016-04-07 14:45:00,,,28.9193 +2016-04-07 14:59:31,3598.0,32.1398, +2016-04-07 15:00:00,,,28.9168 +2016-04-07 15:14:26,3598.0,32.0832, +2016-04-07 15:15:00,,,28.9682 +2016-04-07 15:29:21,3598.0,32.0832, +2016-04-07 15:30:00,,,28.9168 +2016-04-07 15:44:16,3598.0,32.0353, +2016-04-07 15:45:00,,,29.0198 +2016-04-07 15:59:12,3598.0,32.1512, +2016-04-07 16:00:00,,,29.0198 +2016-04-07 16:14:07,3598.0,32.205, +2016-04-07 16:15:00,,,28.9168 +2016-04-07 16:29:02,3598.0,32.0946, +2016-04-07 16:30:00,,,28.9682 +2016-04-07 16:43:57,3598.0,32.1512, +2016-04-07 16:45:00,,,28.9168 +2016-04-07 16:59:00,3598.0,32.1003, +2016-04-07 17:00:00,,,28.9682 +2016-04-07 17:13:55,3598.0,32.041, +2016-04-07 17:15:00,,,28.9682 +2016-04-07 17:28:51,3598.0,32.1003, +2016-04-07 17:30:00,,,28.9682 +2016-04-07 17:43:46,3597.0,32.1031, +2016-04-07 17:45:00,,,28.9168 +2016-04-07 17:58:41,3596.0,32.0467, +2016-04-07 18:00:00,,,28.9682 +2016-04-07 18:13:36,3596.0,32.1031, +2016-04-07 18:15:00,,,28.9682 +2016-04-07 18:28:31,3595.0,32.1598, +2016-04-07 18:30:00,,,28.9682 +2016-04-07 18:43:26,3594.0,32.2108, +2016-04-07 18:45:00,,,28.9168 +2016-04-07 18:58:22,3593.0,32.0975, +2016-04-07 19:00:00,,,28.9682 +2016-04-07 19:13:16,3592.0,32.2136, +2016-04-07 19:15:00,,,28.9168 +2016-04-07 19:28:11,3589.0,32.1598, +2016-04-07 19:30:00,,,28.9682 +2016-04-07 19:43:06,3588.0,32.1031, +2016-04-07 19:45:00,,,28.9682 +2016-04-07 19:58:01,3586.0,32.1031, +2016-04-07 20:00:00,,,28.9708 +2016-04-07 20:12:56,3585.0,32.1031, +2016-04-07 20:15:00,,,28.9682 +2016-04-07 20:27:58,3582.0,32.0438, +2016-04-07 20:30:00,,,29.0172 +2016-04-07 20:42:53,3580.0,32.0467, +2016-04-07 20:45:00,,,28.9682 +2016-04-07 20:57:48,3578.0,32.1031, +2016-04-07 21:00:00,,,28.9708 +2016-04-07 21:12:42,3576.0,32.0918, +2016-04-07 21:15:00,,,28.9682 +2016-04-07 21:27:37,3574.0,32.0918, +2016-04-07 21:30:00,,,28.9193 +2016-04-07 21:42:32,3572.0,32.0353, +2016-04-07 21:45:00,,,28.9682 +2016-04-07 21:57:26,3570.0,32.0918, +2016-04-07 22:00:00,,,29.0249 +2016-04-07 22:12:21,3568.0,32.0832, +2016-04-07 22:15:00,,,28.9168 +2016-04-07 22:27:16,3566.0,32.0861, +2016-04-07 22:30:00,,,29.0198 +2016-04-07 22:42:10,3565.0,32.0861, +2016-04-07 22:45:00,,,28.9193 +2016-04-07 22:57:05,3564.0,32.0832, +2016-04-07 23:00:00,,,29.0198 +2016-04-07 23:12:00,3563.0,32.0832, +2016-04-07 23:15:00,,,29.0198 +2016-04-07 23:26:54,3561.0,32.1426, +2016-04-07 23:30:00,,,29.0198 +2016-04-07 23:41:49,3559.0,32.0861, +2016-04-07 23:45:00,,,29.0198 +2016-04-07 23:56:43,3559.0,32.0861, +2016-04-08 00:00:00,,,29.0198 +2016-04-08 00:11:38,3557.0,32.0861, +2016-04-08 00:15:00,,,28.9682 +2016-04-08 00:26:32,3557.0,32.1993, +2016-04-08 00:30:00,,,29.0198 +2016-04-08 00:41:26,3556.0,32.0775, +2016-04-08 00:45:00,,,28.9682 +2016-04-08 00:56:21,3555.0,32.0775, +2016-04-08 01:00:00,,,29.0198 +2016-04-08 01:11:15,3553.0,32.0775, +2016-04-08 01:15:00,,,29.0198 +2016-04-08 01:26:09,3552.0,32.0775, +2016-04-08 01:30:00,,,29.0224 +2016-04-08 01:41:04,3552.0,32.1936, +2016-04-08 01:45:00,,,29.0224 +2016-04-08 01:55:58,3550.0,32.0239, +2016-04-08 02:00:00,,,28.9708 +2016-04-08 02:10:53,3550.0,32.0775, +2016-04-08 02:15:00,,,29.0198 +2016-04-08 02:25:47,3549.0,32.1341, +2016-04-08 02:30:00,,,29.0198 +2016-04-08 02:40:41,3548.0,32.069, +2016-04-08 02:45:00,,,29.0224 +2016-04-08 02:55:35,3548.0,32.0718, +2016-04-08 03:00:00,,,28.9708 +2016-04-08 03:10:29,3547.0,32.069, +2016-04-08 03:15:00,,,28.9682 +2016-04-08 03:25:24,3547.0,32.0604, +2016-04-08 03:30:00,,,29.0224 +2016-04-08 03:40:18,3546.0,32.1765, +2016-04-08 03:45:00,,,29.0224 +2016-04-08 03:55:12,3545.0,32.0604, +2016-04-08 04:00:00,,,28.9708 +2016-04-08 04:10:07,3545.0,32.117, +2016-04-08 04:15:00,,,29.0224 +2016-04-08 04:25:01,3545.0,32.117, +2016-04-08 04:30:00,,,28.9682 +2016-04-08 04:39:56,3545.0,32.0604, +2016-04-08 04:45:00,,,28.868 +2016-04-08 04:54:50,3545.0,32.117, +2016-04-08 05:00:00,,,28.8167 +2016-04-08 05:09:44,3545.0,32.0604, +2016-04-08 05:15:00,,,28.8654 +2016-04-08 05:24:38,3545.0,32.2218, +2016-04-08 05:30:00,,,28.8654 +2016-04-08 05:39:33,3545.0,32.0547, +2016-04-08 05:45:00,,,28.9168 +2016-04-08 05:54:27,3544.0,32.1679, +2016-04-08 06:00:00,,,28.8142 +2016-04-08 06:09:21,3544.0,32.1113, +2016-04-08 06:15:00,,,28.868 +2016-04-08 06:24:16,3543.0,32.1679, +2016-04-08 06:30:00,,,28.8654 +2016-04-08 06:39:10,3542.0,32.0519, +2016-04-08 06:45:00,,,28.868 +2016-04-08 06:54:04,3542.0,32.0547, +2016-04-08 07:00:00,,,28.868 +2016-04-08 07:08:59,3542.0,32.1565, +2016-04-08 07:15:00,,,28.8654 +2016-04-08 07:23:53,3542.0,32.0999, +2016-04-08 07:30:00,,,28.8654 +2016-04-08 07:38:47,3543.0,32.097, +2016-04-08 07:45:00,,,28.8654 +2016-04-08 07:53:42,3545.0,32.1565, +2016-04-08 08:00:00,,,28.8167 +2016-04-08 08:08:36,3546.0,32.0434, +2016-04-08 08:15:00,,,28.8654 +2016-04-08 08:23:31,3550.0,31.9785, +2016-04-08 08:30:00,,,28.8654 +2016-04-08 08:38:26,3554.0,32.2046, +2016-04-08 08:45:00,,,28.8654 +2016-04-08 08:53:20,3557.0,32.0913, +2016-04-08 09:00:00,,,28.868 +2016-04-08 09:08:15,3563.0,32.0348, +2016-04-08 09:15:00,,,28.8142 +2016-04-08 09:23:10,3567.0,31.9699, +2016-04-08 09:30:00,,,28.8167 +2016-04-08 09:38:05,3571.0,32.0263, +2016-04-08 09:45:00,,,28.8142 +2016-04-08 09:53:00,3574.0,32.0263, +2016-04-08 10:00:00,,,28.8142 +2016-04-08 10:07:55,3577.0,31.9728, +2016-04-08 10:15:00,,,28.8142 +2016-04-08 10:22:50,3581.0,32.0263, +2016-04-08 10:30:00,,,28.8142 +2016-04-08 10:37:45,3585.0,32.0828, +2016-04-08 10:45:00,,,28.8142 +2016-04-08 10:52:40,3588.0,32.0263, +2016-04-08 11:00:00,,,28.8142 +2016-04-08 11:07:35,3591.0,32.0263, +2016-04-08 11:15:00,,,28.8142 +2016-04-08 11:22:30,3593.0,32.0263, +2016-04-08 11:30:00,,,28.8142 +2016-04-08 11:37:26,3594.0,31.9785, +2016-04-08 11:45:00,,,28.8065 +2016-04-08 11:52:21,3596.0,32.0348, +2016-04-08 12:00:00,,,28.8091 +2016-04-08 12:07:16,3597.0,32.0348, +2016-04-08 12:15:00,,,28.7554 +2016-04-08 12:22:12,3598.0,32.0434, +2016-04-08 12:30:00,,,28.7554 +2016-04-08 12:37:07,3598.0,31.987, +2016-04-08 12:45:00,,,28.8065 +2016-04-08 12:52:02,3598.0,31.9279, +2016-04-08 13:00:00,,,28.8065 +2016-04-08 13:06:58,3599.0,31.8745, +2016-04-08 13:15:00,,,28.8065 +2016-04-08 13:21:53,3599.0,31.9955, +2016-04-08 13:30:00,,,28.7554 +2016-04-08 13:36:49,3599.0,31.9392, +2016-04-08 13:45:00,,,28.8065 +2016-04-08 13:51:44,3599.0,31.8269, +2016-04-08 14:00:00,,,28.7554 +2016-04-08 14:06:39,3599.0,31.9392, +2016-04-08 14:15:00,,,28.8577 +2016-04-08 14:21:34,3599.0,31.9477, +2016-04-08 14:30:00,,,28.8065 +2016-04-08 14:36:30,3599.0,31.8915, +2016-04-08 14:45:00,,,28.8091 +2016-04-08 14:51:25,3599.0,31.9449, +2016-04-08 15:00:00,,,28.8091 +2016-04-08 15:06:20,3599.0,31.9477, +2016-04-08 15:15:00,,,28.8065 +2016-04-08 15:21:16,3599.0,32.004, +2016-04-08 15:30:00,,,28.8065 +2016-04-08 15:36:11,3599.0,32.0012, +2016-04-08 15:45:00,,,28.8577 +2016-04-08 15:51:07,3599.0,31.9562, +2016-04-08 16:00:00,,,28.7477 +2016-04-08 16:06:02,3599.0,32.0154, +2016-04-08 16:15:00,,,28.7988 +2016-04-08 16:20:57,3599.0,31.9, +2016-04-08 16:30:00,,,28.8014 +2016-04-08 16:35:52,3599.0,31.9619, +2016-04-08 16:45:00,,,28.8065 +2016-04-08 16:50:48,3599.0,31.9647, +2016-04-08 17:00:00,,,28.7988 +2016-04-08 17:05:43,3599.0,32.0211, +2016-04-08 17:15:00,,,28.7988 +2016-04-08 17:20:38,3599.0,32.0211, +2016-04-08 17:30:00,,,28.7988 +2016-04-08 17:35:33,3599.0,32.0182, +2016-04-08 17:45:00,,,28.7963 +2016-04-08 17:50:28,3599.0,31.9619, +2016-04-08 18:00:00,,,28.7988 +2016-04-08 18:05:23,3598.0,31.9647, +2016-04-08 18:15:00,,,28.8065 +2016-04-08 18:20:18,3598.0,31.9085, +2016-04-08 18:30:00,,,28.8065 +2016-04-08 18:35:14,3598.0,32.0267, +2016-04-08 18:45:00,,,28.7477 +2016-04-08 18:50:09,3598.0,31.9704, +2016-04-08 19:00:00,,,28.8577 +2016-04-08 19:05:04,3595.0,32.0296, +2016-04-08 19:15:00,,,28.8065 +2016-04-08 19:19:58,3594.0,32.0296, +2016-04-08 19:30:00,,,28.7988 +2016-04-08 19:34:53,3592.0,31.9704, +2016-04-08 19:45:00,,,28.8065 +2016-04-08 19:49:48,3589.0,32.0267, +2016-04-08 20:00:00,,,28.8065 +2016-04-08 20:04:43,3588.0,32.0296, +2016-04-08 20:15:00,,,28.7988 +2016-04-08 20:19:38,3586.0,31.8608, +2016-04-08 20:30:00,,,28.8065 +2016-04-08 20:34:32,3584.0,32.0861, +2016-04-08 20:45:00,,,28.8577 +2016-04-08 20:49:27,3581.0,32.0296, +2016-04-08 21:00:00,,,28.7988 +2016-04-08 21:04:22,3579.0,31.917, +2016-04-08 21:15:00,,,28.8577 +2016-04-08 21:19:17,3577.0,31.9619, +2016-04-08 21:30:00,,,28.8065 +2016-04-08 21:34:11,3574.0,32.0211, +2016-04-08 21:45:00,,,28.8577 +2016-04-08 21:49:06,3574.0,31.9647, +2016-04-08 22:00:00,,,28.7988 +2016-04-08 22:04:00,3571.0,31.9085, +2016-04-08 22:15:00,,,28.8603 +2016-04-08 22:18:54,3570.0,31.9085, +2016-04-08 22:30:00,,,28.8501 +2016-04-08 22:33:56,3568.0,31.9085, +2016-04-08 22:45:00,,,28.8501 +2016-04-08 22:48:51,3566.0,31.9056, +2016-04-08 23:00:00,,,28.8065 +2016-04-08 23:03:45,3565.0,31.9647, +2016-04-08 23:15:00,,,28.8603 +2016-04-08 23:18:39,3564.0,32.0211, +2016-04-08 23:30:00,,,28.8065 +2016-04-08 23:33:34,3563.0,31.9647, +2016-04-08 23:45:00,,,28.8577 +2016-04-08 23:48:28,3561.0,31.9647, +2016-04-09 00:00:00,,,28.8501 +2016-04-09 00:03:23,3559.0,31.8467, +2016-04-09 00:15:00,,,28.8577 +2016-04-09 00:18:17,3559.0,31.9, +2016-04-09 00:30:00,,,28.8577 +2016-04-09 00:33:12,3558.0,31.9028, +2016-04-09 00:45:00,,,28.8577 +2016-04-09 00:48:06,3557.0,31.8467, +2016-04-09 01:00:00,,,28.8629 +2016-04-09 01:03:00,3556.0,31.9562, +2016-04-09 01:15:00,,,28.8501 +2016-04-09 01:17:55,3555.0,31.8354, +2016-04-09 01:30:00,,,28.8603 +2016-04-09 01:32:49,3554.0,31.8354, +2016-04-09 01:45:00,,,28.8526 +2016-04-09 01:47:44,3553.0,31.8382, +2016-04-09 02:00:00,,,28.8577 +2016-04-09 02:02:38,3552.0,32.004, +2016-04-09 02:15:00,,,28.8603 +2016-04-09 02:17:32,3552.0,32.0069, +2016-04-09 02:30:00,,,28.8603 +2016-04-09 02:32:34,3550.0,31.8915, +2016-04-09 02:45:00,,,28.8629 +2016-04-09 02:47:28,3550.0,31.9477, +2016-04-09 03:00:00,,,28.8065 +2016-04-09 03:02:23,3549.0,32.0633, +2016-04-09 03:15:00,,,28.8577 +2016-04-09 03:17:17,3549.0,31.9392, +2016-04-09 03:30:00,,,28.8603 +2016-04-09 03:32:11,3549.0,31.883000000000006, +2016-04-09 03:45:00,,,28.8603 +2016-04-09 03:47:05,3549.0,31.883000000000006, +2016-04-09 04:00:00,,,28.8603 +2016-04-09 04:02:00,3548.0,31.883000000000006, +2016-04-09 04:15:00,,,28.8603 +2016-04-09 04:16:54,3547.0,31.9955, +2016-04-09 04:30:00,,,28.8577 +2016-04-09 04:31:48,3546.0,31.883000000000006, +2016-04-09 04:45:00,,,28.8065 +2016-04-09 04:46:43,3545.0,31.8858, +2016-04-09 05:00:00,,,28.8577 +2016-04-09 05:01:37,3545.0,31.883000000000006, +2016-04-09 05:15:00,,,28.8603 +2016-04-09 05:16:31,3545.0,31.9955, +2016-04-09 05:30:00,,,28.8577 +2016-04-09 05:31:26,3545.0,31.9307, +2016-04-09 05:45:00,,,28.8577 +2016-04-09 05:46:20,3544.0,31.9307, +2016-04-09 06:00:00,,,28.8091 +2016-04-09 06:01:14,3544.0,31.9307, +2016-04-09 06:15:00,,,28.8065 +2016-04-09 06:16:08,3544.0,31.9222, +2016-04-09 06:30:00,,,28.8091 +2016-04-09 06:31:03,3544.0,31.9222, +2016-04-09 06:45:00,,,28.8577 +2016-04-09 06:45:57,3545.0,31.866, +2016-04-09 07:00:00,,,28.8577 +2016-04-09 07:00:51,3545.0,31.866, +2016-04-09 07:15:00,,,28.8065 +2016-04-09 07:15:46,3545.0,31.9785, +2016-04-09 07:30:00,,,28.8091 +2016-04-09 07:30:40,3546.0,31.9699, +2016-04-09 07:45:00,,,28.8577 +2016-04-09 07:45:34,3549.0,31.9699, +2016-04-09 08:00:00,,,28.8014 +2016-04-09 08:00:36,3550.0,31.9137, +2016-04-09 08:15:00,,,28.8065 +2016-04-09 08:15:31,3555.0,31.8072, +2016-04-09 08:30:00,,,28.8091 +2016-04-09 08:30:26,3559.0,31.8015, +2016-04-09 08:45:00,,,28.8065 +2016-04-09 08:45:20,3563.0,31.8575, +2016-04-09 09:00:00,,,28.7988 +2016-04-09 09:00:15,3567.0,31.8043, +2016-04-09 09:15:00,,,28.7988 +2016-04-09 09:15:10,3571.0,31.8015, +2016-04-09 09:30:00,,,28.8065 +2016-04-09 09:30:05,3575.0,31.8575, +2016-04-09 09:45:00,3579.0,31.9137,28.7988 +2016-04-09 09:59:55,3582.0,31.9137, +2016-04-09 10:00:00,,,28.7988 +2016-04-09 10:14:50,3586.0,31.9137, +2016-04-09 10:15:00,,,28.8501 +2016-04-09 10:29:45,3588.0,31.8015, +2016-04-09 10:30:00,,,28.7988 +2016-04-09 10:44:40,3592.0,31.9137, +2016-04-09 10:45:00,,,28.7988 +2016-04-09 10:59:35,3595.0,31.9699, +2016-04-09 11:00:00,,,28.7988 +2016-04-09 11:14:31,3596.0,31.8015, +2016-04-09 11:15:00,,,28.7988 +2016-04-09 11:29:26,3597.0,31.8015, +2016-04-09 11:30:00,,,28.7963 +2016-04-09 11:44:21,3598.0,31.9699, +2016-04-09 11:45:00,,,28.7988 +2016-04-09 11:59:17,3598.0,31.8632, +2016-04-09 12:00:00,,,28.7988 +2016-04-09 12:14:12,3598.0,31.9222, +2016-04-09 12:15:00,,,28.7988 +2016-04-09 12:29:07,3599.0,31.81, +2016-04-09 12:30:00,,,28.7988 +2016-04-09 12:44:03,3599.0,31.9307, +2016-04-09 12:45:00,,,28.7988 +2016-04-09 12:58:58,3599.0,31.8184, +2016-04-09 13:00:00,,,28.7988 +2016-04-09 13:13:54,3599.0,31.987, +2016-04-09 13:15:00,,,28.8501 +2016-04-09 13:28:49,3599.0,31.883000000000006, +2016-04-09 13:30:00,,,28.7988 +2016-04-09 13:43:44,3599.0,31.9364, +2016-04-09 13:45:00,,,28.7988 +2016-04-09 13:58:40,3599.0,31.9955, +2016-04-09 14:00:00,,,28.7988 +2016-04-09 14:13:35,3599.0,31.9392, +2016-04-09 14:15:00,,,28.74 +2016-04-09 14:28:31,3599.0,31.9955, +2016-04-09 14:30:00,,,28.8501 +2016-04-09 14:43:26,3599.0,32.0012, +2016-04-09 14:45:00,,,28.7988 +2016-04-09 14:58:22,3599.0,31.8915, +2016-04-09 15:00:00,,,28.7988 +2016-04-09 15:13:18,3599.0,32.9202, +2016-04-09 15:15:00,,,28.7477 +2016-04-09 15:28:13,3599.0,31.959, +2016-04-09 15:30:00,,,28.7988 +2016-04-09 15:43:09,3599.0,31.959, +2016-04-09 15:45:00,,,28.7912 +2016-04-09 15:58:04,3599.0,31.959, +2016-04-09 16:00:00,,,28.7912 +2016-04-09 16:13:00,3599.0,31.9534, +2016-04-09 16:15:00,,,28.7988 +2016-04-09 16:27:55,3599.0,31.9647, +2016-04-09 16:30:00,,,28.7988 +2016-04-09 16:42:51,3599.0,31.7963, +2016-04-09 16:45:00,,,28.7988 +2016-04-09 16:57:46,3599.0,31.8524, +2016-04-09 17:00:00,,,28.7988 +2016-04-09 17:12:41,3599.0,31.8495, +2016-04-09 17:15:00,,,28.7937 +2016-04-09 17:27:37,3599.0,31.7963, +2016-04-09 17:30:00,,,28.7937 +2016-04-09 17:42:32,3599.0,31.858, +2016-04-09 17:45:00,,,28.7426 +2016-04-09 17:57:27,3599.0,31.858, +2016-04-09 18:00:00,,,28.7912 +2016-04-09 18:12:22,3598.0,31.7461, +2016-04-09 18:15:00,,,28.7912 +2016-04-09 18:27:18,3598.0,31.8608, +2016-04-09 18:30:00,,,28.7937 +2016-04-09 18:42:13,3598.0,31.858, +2016-04-09 18:45:00,,,28.7937 +2016-04-09 18:57:08,3598.0,31.802, +2016-04-09 19:00:00,,,28.7988 +2016-04-09 19:12:03,3596.0,31.9704, +2016-04-09 19:15:00,,,28.7988 +2016-04-09 19:26:58,3595.0,31.858, +2016-04-09 19:30:00,,,28.7988 +2016-04-09 19:41:53,3593.0,31.8048, +2016-04-09 19:45:00,,,28.7988 +2016-04-09 19:56:48,3591.0,31.802, +2016-04-09 20:00:00,,,28.8014 +2016-04-09 20:11:43,3588.0,31.6374, +2016-04-09 20:15:00,,,28.7988 +2016-04-09 20:26:37,3587.0,31.7461, +2016-04-09 20:30:00,,,28.7988 +2016-04-09 20:41:32,3586.0,31.7461, +2016-04-09 20:45:00,,,28.7988 +2016-04-09 20:56:27,3585.0,31.7489, +2016-04-09 21:00:00,,,28.8501 +2016-04-09 21:11:22,3582.0,31.8608, +2016-04-09 21:15:00,,,28.6482 +2016-04-09 21:26:17,3581.0,31.8048, +2016-04-09 21:30:00,,,28.8501 +2016-04-09 21:41:12,3581.0,31.7461, +2016-04-09 21:45:00,,,28.6967 +2016-04-09 21:56:07,3579.0,31.858, +2016-04-09 22:00:00,,,28.6916 +2016-04-09 22:11:02,3578.0,31.8608, +2016-04-09 22:15:00,,,28.6457 +2016-04-09 22:25:56,3577.0,31.802, +2016-04-09 22:30:00,,,28.6967 +2016-04-09 22:40:51,3576.0,31.802, +2016-04-09 22:45:00,,,28.6457 +2016-04-09 22:55:46,3574.0,31.7376, +2016-04-09 23:00:00,,,28.6457 +2016-04-09 23:10:41,3574.0,31.7404, +2016-04-09 23:15:00,,,28.6482 +2016-04-09 23:25:35,3573.0,31.7404, +2016-04-09 23:30:00,,,28.6992 +2016-04-09 23:40:30,3572.0,31.7963, +2016-04-09 23:45:00,,,28.6992 +2016-04-09 23:55:25,3571.0,31.7935, +2016-04-10 00:00:00,,,28.6967 +2016-04-10 00:10:19,3571.0,31.8524, +2016-04-10 00:15:00,,,28.6967 +2016-04-10 00:25:14,3571.0,31.9647, +2016-04-10 00:30:00,,,28.6457 +2016-04-10 00:40:08,3570.0,31.8524, +2016-04-10 00:45:00,,,28.7043 +2016-04-10 00:55:03,3570.0,31.7963, +2016-04-10 01:00:00,,,28.6967 +2016-04-10 01:10:00,3570.0,31.7404, +2016-04-10 01:15:00,,,28.6457 +2016-04-10 01:24:55,3569.0,31.7404, +2016-04-10 01:30:00,,,28.6457 +2016-04-10 01:39:49,3569.0,31.7963, +2016-04-10 01:45:00,,,28.6482 +2016-04-10 01:54:44,3568.0,31.7963, +2016-04-10 02:00:00,,,28.6457 +2016-04-10 02:09:38,3568.0,31.7907, +2016-04-10 02:15:00,,,28.6967 +2016-04-10 02:24:33,3567.0,31.7879, +2016-04-10 02:30:00,,,28.6457 +2016-04-10 02:39:27,3567.0,31.8439, +2016-04-10 02:45:00,,,28.6533 +2016-04-10 02:54:21,3566.0,31.732, +2016-04-10 03:00:00,,,28.6457 +2016-04-10 03:09:16,3566.0,31.6177, +2016-04-10 03:15:00,,,28.6533 +2016-04-10 03:24:10,3565.0,31.6734, +2016-04-10 03:30:00,,,28.6482 +2016-04-10 03:39:05,3565.0,31.7794, +2016-04-10 03:45:00,,,28.7068 +2016-04-10 03:53:59,3564.0,31.7794, +2016-04-10 04:00:00,,,28.6559 +2016-04-10 04:08:54,3564.0,31.7235, +2016-04-10 04:15:00,,,28.6967 +2016-04-10 04:23:48,3563.0,31.7794, +2016-04-10 04:30:00,,,28.7068 +2016-04-10 04:38:43,3562.0,31.7235, +2016-04-10 04:45:00,,,28.7094 +2016-04-10 04:53:37,3560.0,31.7822, +2016-04-10 05:00:00,,,28.6967 +2016-04-10 05:08:31,3559.0,31.8354, +2016-04-10 05:15:00,,,28.6533 +2016-04-10 05:23:26,3559.0,31.7235, +2016-04-10 05:30:00,,,28.7017 +2016-04-10 05:38:20,3558.0,31.7794, +2016-04-10 05:45:00,,,28.7043 +2016-04-10 05:53:14,3557.0,31.7263, +2016-04-10 06:00:00,,,28.6533 +2016-04-10 06:08:09,3556.0,31.7794, +2016-04-10 06:15:00,,,28.7043 +2016-04-10 06:23:03,3556.0,31.7179, +2016-04-10 06:30:00,,,28.7043 +2016-04-10 06:37:57,3555.0,31.7179, +2016-04-10 06:45:00,,,28.6533 +2016-04-10 06:52:51,3554.0,31.7151, +2016-04-10 07:00:00,,,28.6533 +2016-04-10 07:07:46,3554.0,31.7179, +2016-04-10 07:15:00,,,28.7043 +2016-04-10 07:22:40,3555.0,31.7179, +2016-04-10 07:30:00,,,28.7043 +2016-04-10 07:37:34,3556.0,31.7709, +2016-04-10 07:45:00,,,28.6533 +2016-04-10 07:52:29,3558.0,31.7151, +2016-04-10 08:00:00,,,28.6533 +2016-04-10 08:07:23,3560.0,31.7179, +2016-04-10 08:15:00,,,28.6533 +2016-04-10 08:22:17,3565.0,31.7709, +2016-04-10 08:30:00,,,28.6533 +2016-04-10 08:37:12,3568.0,31.8269, +2016-04-10 08:45:00,,,28.6533 +2016-04-10 08:52:06,3572.0,31.7179, +2016-04-10 09:00:00,,,28.6533 +2016-04-10 09:07:01,3575.0,31.8269, +2016-04-10 09:15:00,,,28.6025 +2016-04-10 09:21:56,3580.0,31.7597, +2016-04-10 09:30:00,,,28.6533 +2016-04-10 09:36:51,3583.0,31.7625, +2016-04-10 09:45:00,,,28.6457 +2016-04-10 09:51:46,3587.0,31.8269, +2016-04-10 10:00:00,,,28.6533 +2016-04-10 10:06:41,3589.0,31.7066, +2016-04-10 10:15:00,,,28.6533 +2016-04-10 10:21:35,3593.0,31.8184, +2016-04-10 10:30:00,,,28.6967 +2016-04-10 10:36:31,3595.0,31.8269, +2016-04-10 10:45:00,,,28.6533 +2016-04-10 10:51:26,3598.0,31.8297, +2016-04-10 11:00:00,,,28.6457 +2016-04-10 11:06:21,3598.0,31.9392, +2016-04-10 11:15:00,,,28.6457 +2016-04-10 11:21:16,3598.0,31.8269, +2016-04-10 11:30:00,,,28.6533 +2016-04-10 11:36:11,3599.0,31.883000000000006, +2016-04-10 11:45:00,,,28.6533 +2016-04-10 11:51:14,3599.0,31.7709, +2016-04-10 12:00:00,,,28.6457 +2016-04-10 12:06:10,3599.0,31.7709, +2016-04-10 12:15:00,,,28.6457 +2016-04-10 12:21:05,3599.0,31.8269, +2016-04-10 12:30:00,,,28.6457 +2016-04-10 12:36:00,3599.0,31.8354, +2016-04-10 12:45:00,,,28.6432 +2016-04-10 12:50:56,3599.0,31.7794, +2016-04-10 13:00:00,,,28.6457 +2016-04-10 13:05:51,3599.0,31.9449, +2016-04-10 13:15:00,,,28.6533 +2016-04-10 13:20:47,3599.0,31.7794, +2016-04-10 13:30:00,,,28.6025 +2016-04-10 13:35:42,3599.0,31.7794, +2016-04-10 13:45:00,,,28.6533 +2016-04-10 13:50:37,3599.0,31.8972, +2016-04-10 14:00:00,,,28.6457 +2016-04-10 14:05:33,3599.0,31.9, +2016-04-10 14:15:00,,,28.6457 +2016-04-10 14:20:28,3599.0,31.7879, +2016-04-10 14:30:00,,,28.6457 +2016-04-10 14:35:24,3599.0,31.7935, +2016-04-10 14:45:00,,,28.6533 +2016-04-10 14:50:19,3599.0,31.8495, +2016-04-10 15:00:00,,,28.6457 +2016-04-10 15:05:14,3599.0,31.8524, +2016-04-10 15:15:00,,,28.6457 +2016-04-10 15:20:10,3599.0,31.8524, +2016-04-10 15:30:00,,,28.6457 +2016-04-10 15:35:05,3599.0,31.7963, +2016-04-10 15:45:00,,,28.6457 +2016-04-10 15:50:01,3599.0,31.9085, +2016-04-10 16:00:00,,,28.6533 +2016-04-10 16:04:56,3599.0,31.9141, +2016-04-10 16:15:00,,,28.6457 +2016-04-10 16:19:51,3599.0,31.858, +2016-04-10 16:30:00,,,28.6457 +2016-04-10 16:34:47,3599.0,31.858, +2016-04-10 16:45:00,,,28.6457 +2016-04-10 16:49:42,3599.0,31.858, +2016-04-10 17:00:00,,,28.5949 +2016-04-10 17:04:37,3599.0,31.9704, +2016-04-10 17:15:00,,,28.5949 +2016-04-10 17:19:32,3598.0,31.802, +2016-04-10 17:30:00,,,28.6559 +2016-04-10 17:34:27,3599.0,31.802, +2016-04-10 17:45:00,,,28.6457 +2016-04-10 17:49:23,3599.0,31.802, +2016-04-10 18:00:00,,,28.6457 +2016-04-10 18:04:18,3598.0,31.9817, +2016-04-10 18:15:00,,,28.6457 +2016-04-10 18:19:13,3598.0,31.8133, +2016-04-10 18:30:00,,,28.7043 +2016-04-10 18:34:07,3598.0,31.9255, +2016-04-10 18:45:00,,,28.6457 +2016-04-10 18:49:02,3597.0,31.9789, +2016-04-10 19:00:00,,,28.6457 +2016-04-10 19:03:57,3595.0,31.8693, +2016-04-10 19:15:00,,,28.6457 +2016-04-10 19:18:52,3594.0,31.8133, +2016-04-10 19:30:00,,,28.6457 +2016-04-10 19:33:47,3592.0,31.8105, +2016-04-10 19:45:00,,,28.7043 +2016-04-10 19:48:42,3590.0,31.8693, +2016-04-10 20:00:00,,,28.6457 +2016-04-10 20:03:36,3588.0,31.8133, +2016-04-10 20:15:00,,,28.6457 +2016-04-10 20:18:31,3586.0,31.8693, +2016-04-10 20:30:00,,,28.6533 +2016-04-10 20:33:26,3585.0,31.8693, +2016-04-10 20:45:00,,,28.7043 +2016-04-10 20:48:20,3582.0,31.8665, +2016-04-10 21:00:00,,,28.7068 +2016-04-10 21:03:15,3581.0,31.8693, +2016-04-10 21:15:00,,,28.6533 +2016-04-10 21:18:10,3578.0,31.7573, +2016-04-10 21:30:00,,,28.6533 +2016-04-10 21:33:04,3576.0,31.8133, +2016-04-10 21:45:00,,,28.6533 +2016-04-10 21:47:59,3574.0,31.7573, +2016-04-10 22:00:00,,,28.7043 +2016-04-10 22:02:53,3573.0,31.9255, +2016-04-10 22:15:00,,,28.7554 +2016-04-10 22:17:48,3571.0,31.802, +2016-04-10 22:30:00,,,28.7043 +2016-04-10 22:32:42,3570.0,31.7461, +2016-04-10 22:45:00,,,28.7043 +2016-04-10 22:47:36,3568.0,31.8048, +2016-04-10 23:00:00,,,28.6559 +2016-04-10 23:02:31,3566.0,31.8048, +2016-04-10 23:15:00,,,28.6559 +2016-04-10 23:17:25,3565.0,31.8048, +2016-04-10 23:30:00,,,28.6559 +2016-04-10 23:32:19,3564.0,31.7489, +2016-04-10 23:45:00,,,28.7043 +2016-04-10 23:47:14,3563.0,31.8048, +2016-04-11 00:00:00,,,28.7554 +2016-04-11 00:02:08,3562.0,31.8608, +2016-04-11 00:15:00,,,28.6533 +2016-04-11 00:17:02,3560.0,31.8608, +2016-04-11 00:30:00,,,28.6533 +2016-04-11 00:31:57,3559.0,31.6931, +2016-04-11 00:45:00,,,28.6533 +2016-04-11 00:46:51,3558.0,31.8495, +2016-04-11 01:00:00,,,28.7068 +2016-04-11 01:01:52,3557.0,31.9676, +2016-04-11 01:15:00,,,28.7043 +2016-04-11 01:16:47,3556.0,31.7404, +2016-04-11 01:30:00,,,28.7043 +2016-04-11 01:31:41,3556.0,31.6846, +2016-04-11 01:45:00,,,28.7145 +2016-04-11 01:46:36,3554.0,31.7935, +2016-04-11 02:00:00,,,28.7145 +2016-04-11 02:01:30,3553.0,31.6818, +2016-04-11 02:15:00,,,28.6533 +2016-04-11 02:16:24,3552.0,31.6846, +2016-04-11 02:30:00,,,28.7119 +2016-04-11 02:31:19,3551.0,31.7963, +2016-04-11 02:45:00,,,28.7043 +2016-04-11 02:46:13,3551.0,31.7376, +2016-04-11 03:00:00,,,28.7145 +2016-04-11 03:01:07,3550.0,31.7879, +2016-04-11 03:15:00,,,28.7119 +2016-04-11 03:16:01,3549.0,31.7851, +2016-04-11 03:30:00,,,28.7145 +2016-04-11 03:30:55,3549.0,31.7348, +2016-04-11 03:45:00,,,28.7119 +2016-04-11 03:45:49,3547.0,31.7879, +2016-04-11 04:00:00,,,28.7119 +2016-04-11 04:00:43,3546.0,31.7235, +2016-04-11 04:15:00,,,28.661 +2016-04-11 04:15:38,3545.0,31.7822, +2016-04-11 04:30:00,,,28.6635 +2016-04-11 04:30:32,3545.0,31.7235, +2016-04-11 04:45:00,,,28.661 +2016-04-11 04:45:26,3545.0,31.7794, +2016-04-11 05:00:00,,,28.7119 +2016-04-11 05:00:21,3544.0,31.6706, +2016-04-11 05:15:00,,,28.7145 +2016-04-11 05:15:15,3543.0,31.7794, +2016-04-11 05:30:00,,,28.7119 +2016-04-11 05:30:09,3543.0,31.8915, +2016-04-11 05:45:00,,,28.7119 +2016-04-11 05:45:03,3542.0,31.6121, +2016-04-11 05:59:58,3542.0,31.7738, +2016-04-11 06:00:00,,,28.7119 +2016-04-11 06:14:52,3541.0,31.7151, +2016-04-11 06:15:00,,,28.7656 +2016-04-11 06:29:46,3541.0,31.7738, +2016-04-11 06:30:00,,,28.661 +2016-04-11 06:44:40,3541.0,31.7738, +2016-04-11 06:45:00,,,28.7119 +2016-04-11 06:59:35,3541.0,31.8269, +2016-04-11 07:00:00,,,28.7068 +2016-04-11 07:14:29,3541.0,31.7179, +2016-04-11 07:15:00,,,28.661 +2016-04-11 07:29:23,3542.0,31.7151, +2016-04-11 07:30:00,,,28.7145 +2016-04-11 07:44:17,3544.0,31.7095, +2016-04-11 07:45:00,,,28.7068 +2016-04-11 07:59:12,3545.0,31.5397, +2016-04-11 08:00:00,,,28.7145 +2016-04-11 08:14:06,3546.0,31.5953, +2016-04-11 08:15:00,,,28.7119 +2016-04-11 08:29:01,3549.0,31.7095, +2016-04-11 08:30:00,,,28.6635 +2016-04-11 08:43:55,3550.0,31.5313, +2016-04-11 08:45:00,,,28.7043 +2016-04-11 08:58:50,3552.0,31.701, +2016-04-11 09:00:00,,,28.7119 +2016-04-11 09:13:44,3554.0,31.5897, +2016-04-11 09:15:00,,,28.6533 +2016-04-11 09:28:39,3556.0,31.6982, +2016-04-11 09:30:00,,,28.7068 +2016-04-11 09:43:33,3558.0,31.5841, +2016-04-11 09:45:00,,,28.7119 +2016-04-11 09:58:28,3559.0,31.5313, +2016-04-11 10:00:00,,,28.7043 +2016-04-11 10:13:23,3562.0,31.4676, +2016-04-11 10:15:00,,,28.661 +2016-04-11 10:28:17,3564.0,31.5229, +2016-04-11 10:30:00,,,28.7043 +2016-04-11 10:43:12,3566.0,31.5229, +2016-04-11 10:45:00,,,28.6533 +2016-04-11 10:58:07,3567.0,31.5229, +2016-04-11 11:00:00,,,28.7068 +2016-04-11 11:13:01,3570.0,31.5784, +2016-04-11 11:15:00,,,28.6533 +2016-04-11 11:27:56,3571.0,31.5229, +2016-04-11 11:30:00,,,28.6559 +2016-04-11 11:42:51,3573.0,31.5812, +2016-04-11 11:45:00,,,28.6533 +2016-04-11 11:57:46,3574.0,31.4676, +2016-04-11 12:00:00,,,28.6533 +2016-04-11 12:12:41,3577.0,31.5784, +2016-04-11 12:15:00,,,28.6533 +2016-04-11 12:27:36,3578.0,31.5229, +2016-04-11 12:30:00,,,28.6533 +2016-04-11 12:42:30,3581.0,31.5229, +2016-04-11 12:45:00,,,28.7043 +2016-04-11 12:57:33,3582.0,31.6425, +2016-04-11 13:00:00,,,28.6533 +2016-04-11 13:12:28,3583.0,31.5869, +2016-04-11 13:15:00,,,28.6533 +2016-04-11 13:27:23,3585.0,31.5313, +2016-04-11 13:30:00,,,28.6533 +2016-04-11 13:42:17,3586.0,31.5869, +2016-04-11 13:45:00,,,28.6533 +2016-04-11 13:57:12,3587.0,31.5869, +2016-04-11 14:00:00,,,28.7043 +2016-04-11 14:12:07,3588.0,31.5841, +2016-04-11 14:15:00,,,28.6533 +2016-04-11 14:27:02,3588.0,31.5869, +2016-04-11 14:30:00,,,28.7043 +2016-04-11 14:41:56,3590.0,31.6481, +2016-04-11 14:45:00,,,28.6533 +2016-04-11 14:56:51,3591.0,31.6509, +2016-04-11 15:00:00,,,28.6457 +2016-04-11 15:11:46,3592.0,31.5953, +2016-04-11 15:15:00,,,28.6533 +2016-04-11 15:26:41,3592.0,31.5953, +2016-04-11 15:30:00,,,28.6533 +2016-04-11 15:41:36,3593.0,31.5953, +2016-04-11 15:45:00,,,28.6457 +2016-04-11 15:56:32,3594.0,31.5953, +2016-04-11 16:00:00,,,28.6482 +2016-04-11 16:11:27,3594.0,31.7151, +2016-04-11 16:15:00,,,28.6432 +2016-04-11 16:26:22,3595.0,31.6037, +2016-04-11 16:30:00,,,28.6967 +2016-04-11 16:41:17,3595.0,31.5481, +2016-04-11 16:45:00,,,28.6457 +2016-04-11 16:56:12,3595.0,31.6621, +2016-04-11 17:00:00,,,28.6457 +2016-04-11 17:11:14,3595.0,31.5481, +2016-04-11 17:15:00,,,28.6457 +2016-04-11 17:26:10,3595.0,31.5481, +2016-04-11 17:30:00,,,28.6457 +2016-04-11 17:41:05,3594.0,31.5481, +2016-04-11 17:45:00,,,28.6967 +2016-04-11 17:56:00,3593.0,31.6037, +2016-04-11 18:00:00,,,28.6482 +2016-04-11 18:10:55,3593.0,31.6593, +2016-04-11 18:15:00,,,28.6457 +2016-04-11 18:25:50,3593.0,31.6593, +2016-04-11 18:30:00,,,28.6457 +2016-04-11 18:40:45,3592.0,31.6121, +2016-04-11 18:45:00,,,28.6967 +2016-04-11 18:55:40,3592.0,31.7235, +2016-04-11 19:00:00,,,28.5923 +2016-04-11 19:10:35,3591.0,31.6678, +2016-04-11 19:15:00,,,28.5949 +2016-04-11 19:25:30,3590.0,31.5565, +2016-04-11 19:30:00,,,28.6457 +2016-04-11 19:40:25,3588.0,31.5565, +2016-04-11 19:45:00,,,28.6992 +2016-04-11 19:55:20,3588.0,31.6093, +2016-04-11 20:00:00,,,28.6457 +2016-04-11 20:10:15,3588.0,31.6678, +2016-04-11 20:15:00,,,28.6482 +2016-04-11 20:25:10,3588.0,31.5537, +2016-04-11 20:30:00,,,28.6457 +2016-04-11 20:40:05,3587.0,31.7235, +2016-04-11 20:45:00,,,28.6432 +2016-04-11 20:55:00,3587.0,31.6121, +2016-04-11 21:00:00,,,28.6457 +2016-04-11 21:09:55,3586.0,31.6678, +2016-04-11 21:15:00,,,28.5949 +2016-04-11 21:24:50,3586.0,31.6678, +2016-04-11 21:30:00,,,28.6457 +2016-04-11 21:39:45,3585.0,31.6678, +2016-04-11 21:45:00,,,28.6457 +2016-04-11 21:54:40,3584.0,31.6121, +2016-04-11 22:00:00,,,28.6457 +2016-04-11 22:09:34,3584.0,31.6121, +2016-04-11 22:15:00,,,28.6457 +2016-04-11 22:24:29,3583.0,31.5565, +2016-04-11 22:30:00,,,28.6967 +2016-04-11 22:39:24,3583.0,31.5011, +2016-04-11 22:45:00,,,28.6457 +2016-04-11 22:54:19,3583.0,31.6093, +2016-04-11 23:00:00,,,28.6482 +2016-04-11 23:09:14,3582.0,31.5565, +2016-04-11 23:15:00,,,28.6482 +2016-04-11 23:24:09,3581.0,31.6121, +2016-04-11 23:30:00,,,28.6967 +2016-04-11 23:39:03,3581.0,31.6121, +2016-04-11 23:45:00,,,28.6457 +2016-04-11 23:53:58,3581.0,31.6121, +2016-04-12 00:00:00,,,28.6992 +2016-04-12 00:08:53,3581.0,31.5565, +2016-04-12 00:15:00,,,28.6967 +2016-04-12 00:23:48,3579.0,31.6121, +2016-04-12 00:30:00,,,28.6457 +2016-04-12 00:38:43,3581.0,31.5565, +2016-04-12 00:45:00,,,28.6457 +2016-04-12 00:53:38,3579.0,31.6121, +2016-04-12 01:00:00,,,28.6457 +2016-04-12 01:08:33,3579.0,31.5565, +2016-04-12 01:15:00,,,28.6482 +2016-04-12 01:23:28,3579.0,31.5565, +2016-04-12 01:30:00,,,28.6967 +2016-04-12 01:38:23,3579.0,31.6121, +2016-04-12 01:45:00,,,28.6457 +2016-04-12 01:53:18,3578.0,31.6121, +2016-04-12 02:00:00,,,28.6457 +2016-04-12 02:08:13,3578.0,31.5565, +2016-04-12 02:15:00,,,28.6457 +2016-04-12 02:23:08,3578.0,31.6121, +2016-04-12 02:30:00,,,28.6457 +2016-04-12 02:38:03,3578.0,31.6121, +2016-04-12 02:45:00,,,28.6967 +2016-04-12 02:52:58,3578.0,31.6121, +2016-04-12 03:00:00,,,28.6457 +2016-04-12 03:07:53,3578.0,31.5565, +2016-04-12 03:15:00,,,28.6482 +2016-04-12 03:22:48,3578.0,31.6706, +2016-04-12 03:30:00,,,28.6457 +2016-04-12 03:37:50,3577.0,31.5565, +2016-04-12 03:45:00,,,28.6967 +2016-04-12 03:52:45,3577.0,31.7235, +2016-04-12 04:00:00,,,28.6457 +2016-04-12 04:07:40,3577.0,31.6121, +2016-04-12 04:15:00,,,28.6967 +2016-04-12 04:22:35,3577.0,31.5565, +2016-04-12 04:30:00,,,28.6533 +2016-04-12 04:37:30,3577.0,31.7235, +2016-04-12 04:45:00,,,28.6967 +2016-04-12 04:52:25,3577.0,31.6121, +2016-04-12 05:00:00,,,28.6457 +2016-04-12 05:07:20,3576.0,31.5565, +2016-04-12 05:15:00,,,28.6457 +2016-04-12 05:22:15,3576.0,31.6678, +2016-04-12 05:30:00,,,28.6457 +2016-04-12 05:37:09,3576.0,31.6706, +2016-04-12 05:45:00,,,28.6457 +2016-04-12 05:52:04,3576.0,31.6678, +2016-04-12 06:00:00,,,28.6533 +2016-04-12 06:06:59,3576.0,31.7794, +2016-04-12 06:15:00,,,28.6457 +2016-04-12 06:21:54,3575.0,31.5565, +2016-04-12 06:30:00,,,28.7043 +2016-04-12 06:36:49,3575.0,31.5565, +2016-04-12 06:45:00,,,28.7043 +2016-04-12 06:51:44,3575.0,31.6121, +2016-04-12 07:00:00,,,28.6457 +2016-04-12 07:06:39,3575.0,31.6121, +2016-04-12 07:15:00,,,28.6967 +2016-04-12 07:21:34,3576.0,31.6093, +2016-04-12 07:30:00,,,28.5949 +2016-04-12 07:36:29,3576.0,31.7794, +2016-04-12 07:45:00,,,28.7043 +2016-04-12 07:51:23,3577.0,31.6678, +2016-04-12 08:00:00,,,28.6967 +2016-04-12 08:06:18,3577.0,31.5565, +2016-04-12 08:15:00,,,28.6457 +2016-04-12 08:21:13,3578.0,31.5565, +2016-04-12 08:30:00,,,28.6457 +2016-04-12 08:36:08,3580.0,31.6678, +2016-04-12 08:45:00,,,28.7043 +2016-04-12 08:51:03,3582.0,31.6121, +2016-04-12 09:00:00,,,28.6508 +2016-04-12 09:05:58,3585.0,31.5011, +2016-04-12 09:15:00,,,28.6941 +2016-04-12 09:20:54,3588.0,31.6678, +2016-04-12 09:30:00,,,28.5949 +2016-04-12 09:35:49,3591.0,31.7235, +2016-04-12 09:45:00,,,28.5999 +2016-04-12 09:50:44,3595.0,31.7235, +2016-04-12 10:00:00,,,28.6457 +2016-04-12 10:05:40,3598.0,31.6678, +2016-04-12 10:15:00,,,28.6457 +2016-04-12 10:20:35,3598.0,31.6121, +2016-04-12 10:30:00,,,28.6533 +2016-04-12 10:35:31,3598.0,31.6649, +2016-04-12 10:45:00,,,28.6508 +2016-04-12 10:50:26,3599.0,31.6121, +2016-04-12 11:00:00,,,28.6533 +2016-04-12 11:05:22,3599.0,31.6177, +2016-04-12 11:15:00,,,28.6533 +2016-04-12 11:20:18,3599.0,31.6762, +2016-04-12 11:30:00,,,28.6533 +2016-04-12 11:35:13,3599.0,31.732, +2016-04-12 11:45:00,,,28.6025 +2016-04-12 11:50:09,3599.0,31.7404, +2016-04-12 12:00:00,,,28.6508 +2016-04-12 12:05:05,3599.0,31.7376, +2016-04-12 12:15:00,,,28.6559 +2016-04-12 12:20:01,3599.0,31.6261, +2016-04-12 12:30:00,,,28.6025 +2016-04-12 12:34:57,3599.0,31.6261, +2016-04-12 12:45:00,,,28.6457 +2016-04-12 12:49:52,3599.0,31.6818, +2016-04-12 13:00:00,,,28.6457 +2016-04-12 13:04:48,3599.0,31.7461, +2016-04-12 13:15:00,,,28.6533 +2016-04-12 13:19:44,3599.0,31.6345, +2016-04-12 13:30:00,,,28.6457 +2016-04-12 13:34:39,3599.0,31.7461, +2016-04-12 13:45:00,,,28.6025 +2016-04-12 13:49:35,3599.0,31.6345, +2016-04-12 14:00:00,,,28.6533 +2016-04-12 14:04:31,3599.0,31.7461, +2016-04-12 14:15:00,,,28.6508 +2016-04-12 14:19:27,3599.0,31.7545, +2016-04-12 14:30:00,,,28.6025 +2016-04-12 14:34:23,3599.0,31.643, +2016-04-12 14:45:00,,,28.6508 +2016-04-12 14:49:19,3599.0,31.763, +2016-04-12 15:00:00,,,28.6533 +2016-04-12 15:04:14,3599.0,31.6514, +2016-04-12 15:15:00,,,28.6025 +2016-04-12 15:19:10,3599.0,31.7602, +2016-04-12 15:30:00,,,28.5999 +2016-04-12 15:34:06,3599.0,31.763, +2016-04-12 15:45:00,,,28.5517 +2016-04-12 15:49:02,3599.0,31.7686, +2016-04-12 16:00:00,,,28.6025 +2016-04-12 16:03:58,3599.0,31.6598, +2016-04-12 16:15:00,,,28.6508 +2016-04-12 16:18:54,3599.0,31.5487, +2016-04-12 16:30:00,,,28.6533 +2016-04-12 16:33:50,3599.0,31.657, +2016-04-12 16:45:00,,,28.6533 +2016-04-12 16:48:45,3599.0,31.8359, +2016-04-12 17:00:00,,,28.6025 +2016-04-12 17:03:41,3599.0,31.6655, +2016-04-12 17:15:00,,,28.5999 +2016-04-12 17:18:37,3599.0,31.7799, +2016-04-12 17:30:00,,,28.6025 +2016-04-12 17:33:32,3599.0,31.6767, +2016-04-12 17:45:00,,,28.6533 +2016-04-12 17:48:28,3599.0,31.7855, +2016-04-12 18:00:00,,,28.6508 +2016-04-12 18:03:24,3599.0,31.7884, +2016-04-12 18:15:00,,,28.6533 +2016-04-12 18:18:19,3599.0,31.7325, +2016-04-12 18:30:00,,,28.6533 +2016-04-12 18:33:15,3599.0,31.7325, +2016-04-12 18:45:00,,,28.6533 +2016-04-12 18:48:10,3599.0,31.7325, +2016-04-12 19:00:00,,,28.6533 +2016-04-12 19:03:05,3599.0,31.7884, +2016-04-12 19:15:00,,,28.6533 +2016-04-12 19:18:01,3599.0,31.7325, +2016-04-12 19:30:00,,,28.661 +2016-04-12 19:32:56,3599.0,31.7968, +2016-04-12 19:45:00,,,28.661 +2016-04-12 19:47:51,3599.0,31.7325, +2016-04-12 20:00:00,,,28.661 +2016-04-12 20:02:46,3598.0,31.7409, +2016-04-12 20:15:00,,,28.661 +2016-04-12 20:17:41,3598.0,31.6851, +2016-04-12 20:30:00,,,28.661 +2016-04-12 20:32:36,3598.0,31.7409, +2016-04-12 20:45:00,,,28.661 +2016-04-12 20:47:31,3597.0,31.7968, +2016-04-12 21:00:00,,,28.661 +2016-04-12 21:02:26,3595.0,31.6851, +2016-04-12 21:15:00,,,28.6101 +2016-04-12 21:17:21,3595.0,31.7409, +2016-04-12 21:30:00,,,28.661 +2016-04-12 21:32:16,3594.0,31.7409, +2016-04-12 21:45:00,,,28.7119 +2016-04-12 21:47:11,3592.0,31.7409, +2016-04-12 22:00:00,,,28.661 +2016-04-12 22:02:06,3592.0,31.6851, +2016-04-12 22:15:00,,,28.7119 +2016-04-12 22:17:01,3592.0,31.7968, +2016-04-12 22:30:00,,,28.661 +2016-04-12 22:31:56,3590.0,31.7968, +2016-04-12 22:45:00,,,28.661 +2016-04-12 22:46:51,3589.0,31.7968, +2016-04-12 23:00:00,,,28.661 +2016-04-12 23:01:45,3588.0,31.7968, +2016-04-12 23:15:00,,,28.661 +2016-04-12 23:16:40,3588.0,31.7968, +2016-04-12 23:30:00,,,28.661 +2016-04-12 23:31:35,3588.0,31.6851, +2016-04-12 23:45:00,,,28.7119 +2016-04-12 23:46:30,3587.0,31.7409, +2016-04-13 00:00:00,,, +2016-04-13 00:15:00,,, +2016-04-13 00:30:00,,, +2016-04-13 00:45:00,,, +2016-04-13 01:00:00,,,28.7119 +2016-04-13 01:01:03,3582.0,31.7884, +2016-04-13 01:15:00,,,28.661 +2016-04-13 01:15:58,3581.0,31.6767, +2016-04-13 01:30:00,,,28.6686 +2016-04-13 01:30:53,3580.0,31.6767, +2016-04-13 01:45:00,,,28.6686 +2016-04-13 01:45:47,3579.0,31.7884, +2016-04-13 02:00:00,,,28.6686 +2016-04-13 02:00:42,3578.0,31.7325, +2016-04-13 02:15:00,,,28.6686 +2016-04-13 02:15:37,3577.0,31.7297, +2016-04-13 02:30:00,,,28.6711 +2016-04-13 02:30:32,3577.0,31.7353, +2016-04-13 02:45:00,,,28.6686 +2016-04-13 02:45:26,3576.0,31.7325, +2016-04-13 03:00:00,,,28.6686 +2016-04-13 03:00:21,3576.0,31.6767, +2016-04-13 03:15:00,,,28.6686 +2016-04-13 03:15:16,3576.0,31.6767, +2016-04-13 03:30:00,,,28.6711 +2016-04-13 03:30:10,3576.0,31.7884, +2016-04-13 03:45:00,,,28.7196 +2016-04-13 03:45:05,3575.0,31.6126, +2016-04-13 04:00:00,3575.0,31.7799,28.6686 +2016-04-13 04:14:54,3574.0,31.7799, +2016-04-13 04:15:00,,,28.6711 +2016-04-13 04:29:49,3574.0,31.7827, +2016-04-13 04:30:00,,,28.6686 +2016-04-13 04:44:43,3574.0,31.6683, +2016-04-13 04:45:00,,,28.7196 +2016-04-13 04:59:38,3574.0,31.6683, +2016-04-13 05:00:00,,,28.6686 +2016-04-13 05:14:33,3574.0,31.7799, +2016-04-13 05:15:00,,,28.6686 +2016-04-13 05:29:27,3574.0,31.7714, +2016-04-13 05:30:00,,,28.6686 +2016-04-13 05:44:22,3573.0,31.6598, +2016-04-13 05:45:00,,,28.7196 +2016-04-13 05:59:16,3572.0,31.7156, +2016-04-13 06:00:00,,,28.6686 +2016-04-13 06:14:11,3572.0,31.6042, +2016-04-13 06:15:00,,,28.6686 +2016-04-13 06:29:06,3572.0,31.657, +2016-04-13 06:30:00,,,28.6686 +2016-04-13 06:44:00,3572.0,31.7714, +2016-04-13 06:45:00,,,28.6711 +2016-04-13 06:58:55,3572.0,31.7686, +2016-04-13 07:00:00,,,28.7221 +2016-04-13 07:13:50,3573.0,31.7128, +2016-04-13 07:15:00,,,28.7196 +2016-04-13 07:28:44,3574.0,31.6598, +2016-04-13 07:30:00,,,28.6686 +2016-04-13 07:43:39,3574.0,31.6598, +2016-04-13 07:45:00,,,28.6686 +2016-04-13 07:58:34,3576.0,31.6598, +2016-04-13 08:00:00,,,28.7196 +2016-04-13 08:13:29,3578.0,31.6598, +2016-04-13 08:15:00,,,28.6686 +2016-04-13 08:28:24,3581.0,31.657, +2016-04-13 08:30:00,,,28.7196 +2016-04-13 08:43:18,3583.0,31.6542, +2016-04-13 08:45:00,,,28.6686 +2016-04-13 08:58:13,3585.0,31.7099, +2016-04-13 09:00:00,,,28.6686 +2016-04-13 09:13:08,3587.0,31.763, +2016-04-13 09:15:00,,,28.6686 +2016-04-13 09:28:03,3589.0,31.763, +2016-04-13 09:30:00,,,28.6686 +2016-04-13 09:42:58,3592.0,31.763, +2016-04-13 09:45:00,,,28.6686 +2016-04-13 09:57:54,3594.0,31.6514, +2016-04-13 10:00:00,,,28.6686 +2016-04-13 10:12:49,3597.0,31.6514, +2016-04-13 10:15:00,,,28.6686 +2016-04-13 10:27:44,3598.0,31.763, +2016-04-13 10:30:00,,,28.6152 +2016-04-13 10:42:40,3598.0,31.7156, +2016-04-13 10:45:00,,,28.6686 +2016-04-13 10:57:35,3599.0,31.8189, +2016-04-13 11:00:00,,,28.6686 +2016-04-13 11:12:31,3599.0,31.657, +2016-04-13 11:15:00,,,28.6686 +2016-04-13 11:27:26,3599.0,31.8274, +2016-04-13 11:30:00,,,28.6686 +2016-04-13 11:42:22,3599.0,31.7714, +2016-04-13 11:45:00,,,28.6686 +2016-04-13 11:57:17,3599.0,31.7156, +2016-04-13 12:00:00,,,28.6686 +2016-04-13 12:12:13,3599.0,31.6014, +2016-04-13 12:15:00,,,28.6686 +2016-04-13 12:27:08,3599.0,31.7686, +2016-04-13 12:30:00,,,28.6686 +2016-04-13 12:42:04,3599.0,31.7686, +2016-04-13 12:45:00,,,28.6737 +2016-04-13 12:56:59,3599.0,31.657, +2016-04-13 13:00:00,,,28.6737 +2016-04-13 13:11:54,3599.0,31.7799, +2016-04-13 13:15:00,,,28.6711 +2016-04-13 13:26:49,3599.0,31.7799, +2016-04-13 13:30:00,,,28.6152 +2016-04-13 13:41:45,3599.0,31.8359, +2016-04-13 13:45:00,,,28.6737 +2016-04-13 13:56:40,3599.0,31.7799, +2016-04-13 14:00:00,,,28.6686 +2016-04-13 14:11:36,3599.0,31.7884, +2016-04-13 14:15:00,,,28.6686 +2016-04-13 14:26:31,3599.0,31.7325, +2016-04-13 14:30:00,,,28.6737 +2016-04-13 14:41:26,3599.0,31.7884, +2016-04-13 14:45:00,,,28.6228 +2016-04-13 14:56:22,3599.0,31.7325, +2016-04-13 15:00:00,,,28.6686 +2016-04-13 15:11:17,3599.0,31.7884, +2016-04-13 15:15:00,,,28.6177 +2016-04-13 15:26:12,3599.0,31.7884, +2016-04-13 15:30:00,,,28.6177 +2016-04-13 15:41:07,3599.0,31.8444, +2016-04-13 15:45:00,,,28.6737 +2016-04-13 15:56:03,3599.0,31.7968, +2016-04-13 16:00:00,,,28.6177 +2016-04-13 16:10:58,3599.0,31.7968, +2016-04-13 16:15:00,,,28.6737 +2016-04-13 16:25:53,3599.0,31.6851, +2016-04-13 16:30:00,,,28.6686 +2016-04-13 16:40:48,3599.0,31.7968, +2016-04-13 16:45:00,,,28.6737 +2016-04-13 16:55:43,3599.0,31.7466, +2016-04-13 17:00:00,,,28.6737 +2016-04-13 17:10:39,3599.0,31.8025, +2016-04-13 17:15:00,,,28.6737 +2016-04-13 17:25:34,3599.0,31.8053, +2016-04-13 17:30:00,,,28.6737 +2016-04-13 17:40:29,3599.0,31.7997, +2016-04-13 17:45:00,,,28.6686 +2016-04-13 17:55:24,3599.0,31.8053, +2016-04-13 18:00:00,,,28.6737 +2016-04-13 18:10:19,3599.0,31.6936, +2016-04-13 18:15:00,,,28.6737 +2016-04-13 18:25:15,3599.0,31.7466, +2016-04-13 18:30:00,,,28.6762 +2016-04-13 18:40:10,3599.0,31.8613, +2016-04-13 18:45:00,,,28.6737 +2016-04-13 18:55:05,3598.0,31.6936, +2016-04-13 19:00:00,,,28.6762 +2016-04-13 19:10:00,3598.0,31.8585, +2016-04-13 19:15:00,,,28.6737 +2016-04-13 19:24:55,3598.0,31.8053, +2016-04-13 19:30:00,,,28.6762 +2016-04-13 19:39:50,3598.0,31.8053, +2016-04-13 19:45:00,,,28.6228 +2016-04-13 19:54:45,3597.0,31.8053, +2016-04-13 20:00:00,,,28.6737 +2016-04-13 20:09:40,3596.0,31.8053, +2016-04-13 20:15:00,,,28.6762 +2016-04-13 20:24:35,3595.0,31.7494, +2016-04-13 20:30:00,,,28.6762 +2016-04-13 20:39:30,3594.0,31.7494, +2016-04-13 20:45:00,,,28.6788 +2016-04-13 20:54:32,3593.0,31.8053, +2016-04-13 21:00:00,,,28.6762 +2016-04-13 21:09:27,3593.0,31.8053, +2016-04-13 21:15:00,,,28.6737 +2016-04-13 21:24:22,3592.0,31.7494, +2016-04-13 21:30:00,,,28.6762 +2016-04-13 21:39:17,3591.0,31.8613, +2016-04-13 21:45:00,,,28.6762 +2016-04-13 21:54:12,3590.0,31.6936, +2016-04-13 22:00:00,,,28.6839 +2016-04-13 22:09:06,3589.0,31.6936, +2016-04-13 22:15:00,,,28.6839 +2016-04-13 22:24:01,3588.0,31.9146, +2016-04-13 22:30:00,,,28.6737 +2016-04-13 22:38:56,3588.0,31.8053, +2016-04-13 22:45:00,,,28.6813 +2016-04-13 22:53:51,3588.0,31.6936, +2016-04-13 23:00:00,,,28.6813 +2016-04-13 23:08:46,3588.0,31.6936, +2016-04-13 23:15:00,,,28.6813 +2016-04-13 23:23:41,3588.0,31.8053, +2016-04-13 23:30:00,,,28.6813 +2016-04-13 23:38:35,3588.0,31.8613, +2016-04-13 23:45:00,,,28.6762 +2016-04-13 23:53:30,3588.0,31.9146, +2016-04-14 00:00:00,,,28.6813 +2016-04-14 00:08:25,3587.0,31.7494, +2016-04-14 00:15:00,,,28.7323 +2016-04-14 00:23:20,3587.0,31.8025, +2016-04-14 00:30:00,,,28.7323 +2016-04-14 00:38:15,3586.0,31.8025, +2016-04-14 00:45:00,,,28.6813 +2016-04-14 00:53:09,3586.0,31.8053, +2016-04-14 01:00:00,,,28.6304 +2016-04-14 01:08:04,3585.0,31.8053, +2016-04-14 01:15:00,,,28.6813 +2016-04-14 01:22:59,3585.0,31.6936, +2016-04-14 01:30:00,,,28.6839 +2016-04-14 01:37:53,3585.0,31.8053, +2016-04-14 01:45:00,,,28.6813 +2016-04-14 01:52:48,3584.0,31.7437, +2016-04-14 02:00:00,,,28.6813 +2016-04-14 02:07:43,3583.0,31.6294, +2016-04-14 02:15:00,,,28.6813 +2016-04-14 02:22:37,3582.0,31.7968, +2016-04-14 02:30:00,,,28.6813 +2016-04-14 02:37:32,3581.0,31.7968, +2016-04-14 02:45:00,,,28.6839 +2016-04-14 02:52:26,3580.0,31.8528, +2016-04-14 03:00:00,,,28.6813 +2016-04-14 03:07:21,3579.0,31.7968, +2016-04-14 03:15:00,,,28.6839 +2016-04-14 03:22:15,3578.0,31.7968, +2016-04-14 03:30:00,,,28.7323 +2016-04-14 03:37:10,3577.0,31.7968, +2016-04-14 03:45:00,,,28.6813 +2016-04-14 03:52:05,3576.0,31.7884, +2016-04-14 04:00:00,,,28.6813 +2016-04-14 04:06:59,3575.0,31.8444, +2016-04-14 04:15:00,,,28.6839 +2016-04-14 04:21:54,3574.0,31.6767, +2016-04-14 04:30:00,,,28.6839 +2016-04-14 04:36:48,3574.0,31.8444, +2016-04-14 04:45:00,,,28.6839 +2016-04-14 04:51:43,3574.0,31.8444, +2016-04-14 05:00:00,,,28.7374 +2016-04-14 05:06:37,3574.0,31.7325, +2016-04-14 05:15:00,,,28.6355 +2016-04-14 05:21:32,3574.0,31.621, +2016-04-14 05:30:00,,,28.6864 +2016-04-14 05:36:26,3574.0,31.6767, +2016-04-14 05:45:00,,,28.6813 +2016-04-14 05:51:21,3574.0,31.7325, +2016-04-14 06:00:00,,,28.6839 +2016-04-14 06:06:15,3574.0,31.6767, +2016-04-14 06:15:00,,,28.6839 +2016-04-14 06:21:10,3574.0,31.6767, +2016-04-14 06:30:00,,,28.6813 +2016-04-14 06:36:05,3574.0,31.7884, +2016-04-14 06:45:00,,,28.6813 +2016-04-14 06:50:59,3574.0,31.7884, +2016-04-14 07:00:00,,,28.6813 +2016-04-14 07:05:54,3574.0,31.6767, +2016-04-14 07:15:00,,,28.6839 +2016-04-14 07:20:48,3575.0,31.7325, +2016-04-14 07:30:00,,,28.6839 +2016-04-14 07:35:43,3575.0,31.6683, +2016-04-14 07:45:00,,,28.6839 +2016-04-14 07:50:37,3576.0,31.7799, +2016-04-14 08:00:00,,,28.7349 +2016-04-14 08:05:32,3576.0,31.7799, +2016-04-14 08:15:00,,,28.6813 +2016-04-14 08:20:26,3576.0,31.7799, +2016-04-14 08:30:00,,,28.6839 +2016-04-14 08:35:21,3576.0,31.7799, +2016-04-14 08:45:00,,,28.7349 +2016-04-14 08:50:16,3577.0,31.7799, +2016-04-14 09:00:00,,,28.6839 +2016-04-14 09:05:10,3577.0,31.7799, +2016-04-14 09:15:00,,,28.7349 +2016-04-14 09:20:05,3577.0,31.8359, +2016-04-14 09:30:00,,,28.6813 +2016-04-14 09:34:59,3578.0,31.6683, +2016-04-14 09:45:00,,,28.6813 +2016-04-14 09:49:54,3579.0,31.6598, +2016-04-14 10:00:00,,,28.6839 +2016-04-14 10:04:49,3579.0,31.6126, +2016-04-14 10:15:00,,,28.6813 +2016-04-14 10:19:43,3580.0,31.6683, +2016-04-14 10:30:00,,,28.6839 +2016-04-14 10:34:38,3581.0,31.8359, +2016-04-14 10:45:00,,,28.7323 +2016-04-14 10:49:33,3581.0,31.7714, +2016-04-14 11:00:00,,,28.6915 +2016-04-14 11:04:27,3581.0,31.7799, +2016-04-14 11:15:00,,,28.6839 +2016-04-14 11:19:22,3581.0,31.6042, +2016-04-14 11:30:00,,,28.6813 +2016-04-14 11:34:17,3581.0,31.7799, +2016-04-14 11:45:00,,,28.6813 +2016-04-14 11:49:12,3582.0,31.7714, +2016-04-14 12:00:00,,,28.6839 +2016-04-14 12:04:06,3582.0,31.6683, +2016-04-14 12:15:00,,,28.6813 +2016-04-14 12:19:01,3583.0,31.7686, +2016-04-14 12:30:00,,,28.6813 +2016-04-14 12:33:56,3585.0,31.7799, +2016-04-14 12:45:00,,,28.7323 +2016-04-14 12:48:50,3586.0,31.7714, +2016-04-14 13:00:00,,,28.6813 +2016-04-14 13:03:52,3586.0,31.7799, +2016-04-14 13:15:00,,,28.6813 +2016-04-14 13:18:47,3588.0,31.724, +2016-04-14 13:30:00,,,28.6839 +2016-04-14 13:33:42,3589.0,31.7799, +2016-04-14 13:45:00,,,28.6839 +2016-04-14 13:48:37,3592.0,31.7799, +2016-04-14 14:00:00,,,28.6329 +2016-04-14 14:03:32,3593.0,31.724, +2016-04-14 14:15:00,,,28.6813 +2016-04-14 14:18:27,3594.0,31.7799, +2016-04-14 14:30:00,,,28.6813 +2016-04-14 14:33:29,3595.0,31.6683, +2016-04-14 14:45:00,,,28.6839 +2016-04-14 14:48:24,3595.0,31.5571, +2016-04-14 15:00:00,,,28.6813 +2016-04-14 15:03:20,3596.0,31.724, +2016-04-14 15:15:00,,,28.6839 +2016-04-14 15:18:15,3597.0,31.724, +2016-04-14 15:30:00,,,28.6813 +2016-04-14 15:33:10,3597.0,31.7297, +2016-04-14 15:45:00,,,28.6813 +2016-04-14 15:48:05,3598.0,31.8444, +2016-04-14 16:00:00,,,28.6839 +2016-04-14 16:03:00,3598.0,31.6767, +2016-04-14 16:15:00,,,28.6813 +2016-04-14 16:17:55,3598.0,31.6739, +2016-04-14 16:30:00,,,28.6813 +2016-04-14 16:32:50,3598.0,31.7297, +2016-04-14 16:45:00,,,28.6813 +2016-04-14 16:47:46,3598.0,31.7884, +2016-04-14 17:00:00,,,28.689 +2016-04-14 17:02:41,3598.0,31.7325, +2016-04-14 17:15:00,,,28.6813 +2016-04-14 17:17:36,3598.0,31.8415, +2016-04-14 17:30:00,,,28.5289 +2016-04-14 17:32:31,3598.0,31.7353, +2016-04-14 17:45:00,,,28.5314 +2016-04-14 17:47:26,3598.0,31.7884, +2016-04-14 18:00:00,,,28.6304 +2016-04-14 18:02:22,3598.0,31.7325, +2016-04-14 18:15:00,,,28.5365 +2016-04-14 18:17:16,3598.0,31.7297, +2016-04-14 18:30:00,,,28.6813 +2016-04-14 18:32:11,3598.0,31.6767, +2016-04-14 18:45:00,,,28.5289 +2016-04-14 18:47:06,3598.0,31.7968, +2016-04-14 19:00:00,,,28.5289 +2016-04-14 19:02:01,3597.0,31.7968, +2016-04-14 19:15:00,,,28.5289 +2016-04-14 19:16:56,3595.0,31.6851, +2016-04-14 19:30:00,,,28.6813 +2016-04-14 19:31:51,3595.0,31.6294, +2016-04-14 19:45:00,,,28.5796 +2016-04-14 19:46:46,3593.0,31.7968, +2016-04-14 20:00:00,,,28.5314 +2016-04-14 20:01:41,3591.0,31.7968, +2016-04-14 20:15:00,,,28.5314 +2016-04-14 20:16:36,3589.0,31.7381, +2016-04-14 20:30:00,,,28.5365 +2016-04-14 20:31:31,3588.0,31.7409, +2016-04-14 20:45:00,,,28.5289 +2016-04-14 20:46:26,3586.0,31.7968, +2016-04-14 21:00:00,,,28.539 +2016-04-14 21:01:20,3584.0,31.7968, +2016-04-14 21:15:00,,,28.5897 +2016-04-14 21:16:15,3582.0,31.7884, +2016-04-14 21:30:00,,,28.539 +2016-04-14 21:31:10,3580.0,31.7968, +2016-04-14 21:45:00,,,28.5897 +2016-04-14 21:46:05,3578.0,31.8557, +2016-04-14 22:00:00,,,28.539 +2016-04-14 22:00:59,3577.0,31.7884, +2016-04-14 22:15:00,,,28.5365 +2016-04-14 22:15:54,3575.0,31.8444, +2016-04-14 22:30:00,,,28.5289 +2016-04-14 22:30:49,3574.0,31.7884, +2016-04-14 22:45:00,,,28.539 +2016-04-14 22:45:43,3573.0,31.7884, +2016-04-14 23:00:00,,,28.5365 +2016-04-14 23:00:38,3572.0,31.7884, +2016-04-14 23:15:00,,,28.5897 +2016-04-14 23:15:32,3571.0,31.7325, +2016-04-14 23:30:00,,,28.638 +2016-04-14 23:30:27,3570.0,31.6767, +2016-04-14 23:45:00,,,28.5872 +2016-04-14 23:45:22,3569.0,31.621, +2016-04-15 00:00:00,,,28.5365 +2016-04-15 00:00:16,3568.0,31.8444, +2016-04-15 00:15:00,,,28.5365 +2016-04-15 00:15:11,3567.0,31.6767, +2016-04-15 00:30:00,,,28.4883 +2016-04-15 00:30:05,3566.0,31.8444, +2016-04-15 00:45:00,3566.0,31.7799,28.539 +2016-04-15 00:59:54,3566.0,31.6711, +2016-04-15 01:00:00,,,28.5872 +2016-04-15 01:14:49,3565.0,31.7799, +2016-04-15 01:15:00,,,28.5897 +2016-04-15 01:29:43,3565.0,31.724, +2016-04-15 01:30:00,,,28.539 +2016-04-15 01:44:38,3564.0,31.6126, +2016-04-15 01:45:00,,,28.5365 +2016-04-15 01:59:32,3564.0,31.7714, +2016-04-15 02:00:00,,,28.5897 +2016-04-15 02:14:27,3564.0,31.7714, +2016-04-15 02:15:00,,,28.5365 +2016-04-15 02:29:21,3564.0,31.7714, +2016-04-15 02:30:00,,,28.5897 +2016-04-15 02:44:16,3564.0,31.6598, +2016-04-15 02:45:00,,,28.539 +2016-04-15 02:59:10,3564.0,31.6598, +2016-04-15 03:00:00,,,28.539 +2016-04-15 03:14:04,3563.0,31.6598, +2016-04-15 03:15:00,,,28.539 +2016-04-15 03:28:59,3563.0,31.6598, +2016-04-15 03:30:00,,,28.5897 +2016-04-15 03:43:53,3564.0,31.7714, +2016-04-15 03:45:00,,,28.638 +2016-04-15 03:58:48,3564.0,31.6598, +2016-04-15 04:00:00,,,28.5365 +2016-04-15 04:13:42,3564.0,31.7184, +2016-04-15 04:15:00,,,28.539 +2016-04-15 04:28:37,3564.0,31.5958, +2016-04-15 04:30:00,,,28.5872 +2016-04-15 04:43:31,3564.0,31.7156, +2016-04-15 04:45:00,,,28.539 +2016-04-15 04:58:26,3565.0,31.7099, +2016-04-15 05:00:00,,,28.5872 +2016-04-15 05:13:20,3566.0,31.8217, +2016-04-15 05:15:00,,,28.5365 +2016-04-15 05:28:15,3566.0,31.7658, +2016-04-15 05:30:00,,,28.5365 +2016-04-15 05:43:09,3566.0,31.6514, +2016-04-15 05:45:00,,,28.539 +2016-04-15 05:58:03,3566.0,31.7099, +2016-04-15 06:00:00,,,28.5872 +2016-04-15 06:13:06,3566.0,31.7658, +2016-04-15 06:15:00,,,28.539 +2016-04-15 06:28:00,3567.0,31.7099, +2016-04-15 06:30:00,,,28.5289 +2016-04-15 06:42:55,3567.0,31.7071, +2016-04-15 06:45:00,,,28.5872 +2016-04-15 06:57:49,3568.0,31.5958, +2016-04-15 07:00:00,,,28.5365 +2016-04-15 07:12:44,3569.0,31.8217, +2016-04-15 07:15:00,,,28.5897 +2016-04-15 07:27:39,3570.0,31.7658, +2016-04-15 07:30:00,,,28.5365 +2016-04-15 07:42:33,3571.0,31.7658, +2016-04-15 07:45:00,,,28.5365 +2016-04-15 07:57:28,3572.0,31.7658, +2016-04-15 08:00:00,,,28.5365 +2016-04-15 08:12:22,3573.0,31.6542, +2016-04-15 08:15:00,,,28.5365 +2016-04-15 08:27:17,3574.0,31.763, +2016-04-15 08:30:00,,,28.5872 +2016-04-15 08:42:11,3576.0,31.7545, +2016-04-15 08:45:00,,,28.5365 +2016-04-15 08:57:06,3577.0,31.8133, +2016-04-15 09:00:00,,,28.539 +2016-04-15 09:12:01,3577.0,31.7545, +2016-04-15 09:15:00,,,28.539 +2016-04-15 09:26:55,3577.0,31.7573, +2016-04-15 09:30:00,,,28.5897 +2016-04-15 09:41:50,3577.0,31.6458, +2016-04-15 09:45:00,,,28.5365 +2016-04-15 09:56:44,3578.0,31.7573, +2016-04-15 10:00:00,,,28.539 +2016-04-15 10:11:39,3578.0,31.7573, +2016-04-15 10:15:00,,,28.539 +2016-04-15 10:26:33,3578.0,31.6987, +2016-04-15 10:30:00,,,28.539 +2016-04-15 10:41:28,3578.0,31.7128, +2016-04-15 10:45:00,,,28.5365 +2016-04-15 10:56:23,3578.0,31.6542, +2016-04-15 11:00:00,,,28.539 +2016-04-15 11:11:17,3578.0,31.6458, +2016-04-15 11:15:00,,,28.6329 +2016-04-15 11:26:12,3579.0,31.7573, +2016-04-15 11:30:00,,,28.5897 +2016-04-15 11:41:07,3580.0,31.6458, +2016-04-15 11:45:00,,,28.5897 +2016-04-15 11:56:01,3581.0,31.7099, +2016-04-15 12:00:00,,,28.5314 +2016-04-15 12:10:56,3581.0,31.763, +2016-04-15 12:15:00,,,28.5289 +2016-04-15 12:25:51,3581.0,31.9255, +2016-04-15 12:30:00,,,28.74 +2016-04-15 12:40:46,3582.0,31.934, +2016-04-15 12:45:00,,,28.6915 +2016-04-15 12:55:41,3583.0,31.8778, +2016-04-15 13:00:00,,,28.6813 +2016-04-15 13:10:35,3584.0,31.7573, +2016-04-15 13:15:00,,,28.6813 +2016-04-15 13:25:30,3584.0,31.8217, +2016-04-15 13:30:00,,,28.6915 +2016-04-15 13:40:25,3586.0,31.9903, +2016-04-15 13:45:00,,,28.7349 +2016-04-15 13:55:20,3587.0,31.875, +2016-04-15 14:00:00,,,28.6813 +2016-04-15 14:10:15,3588.0,31.8722, +2016-04-15 14:15:00,,,28.6839 +2016-04-15 14:25:11,3591.0,31.934, +2016-04-15 14:30:00,,,28.6813 +2016-04-15 14:40:06,3592.0,31.8778, +2016-04-15 14:45:00,,,28.6813 +2016-04-15 14:55:01,3594.0,31.8217, +2016-04-15 15:00:00,,,28.6304 +2016-04-15 15:09:56,3595.0,31.8778, +2016-04-15 15:15:00,,,28.6813 +2016-04-15 15:24:51,3596.0,31.9874, +2016-04-15 15:30:00,,,28.6813 +2016-04-15 15:39:46,3597.0,31.8217, +2016-04-15 15:45:00,,,28.6813 +2016-04-15 15:54:41,3597.0,31.8806, +2016-04-15 16:00:00,,,28.6813 +2016-04-15 16:09:36,3598.0,31.8246, +2016-04-15 16:15:00,,,28.6813 +2016-04-15 16:24:32,3597.0,31.8835, +2016-04-15 16:30:00,,,28.6813 +2016-04-15 16:39:27,3597.0,31.8835, +2016-04-15 16:45:00,,,28.6839 +2016-04-15 16:54:22,3597.0,31.8835, +2016-04-15 17:00:00,,,28.6813 +2016-04-15 17:09:16,3597.0,31.8835, +2016-04-15 17:15:00,,,28.6813 +2016-04-15 17:24:12,3597.0,31.8274, +2016-04-15 17:30:00,,,28.7323 +2016-04-15 17:39:06,3598.0,31.9482, +2016-04-15 17:45:00,,,28.6839 +2016-04-15 17:54:02,3597.0,32.0045, +2016-04-15 18:00:00,,,28.6329 +2016-04-15 18:08:57,3596.0,32.0045, +2016-04-15 18:15:00,,,28.6813 +2016-04-15 18:23:51,3596.0,31.8387, +2016-04-15 18:30:00,,,28.6839 +2016-04-15 18:38:46,3595.0,31.8359, +2016-04-15 18:45:00,,,28.6813 +2016-04-15 18:53:41,3595.0,31.8359, +2016-04-15 19:00:00,,,28.6839 +2016-04-15 19:08:36,3593.0,31.833, +2016-04-15 19:15:00,,,28.6839 +2016-04-15 19:23:31,3592.0,31.8359, +2016-04-15 19:30:00,,,28.6813 +2016-04-15 19:38:26,3591.0,32.0045, +2016-04-15 19:45:00,,,28.6813 +2016-04-15 19:53:21,3589.0,32.013000000000005, +2016-04-15 20:00:00,,,28.6813 +2016-04-15 20:08:16,3588.0,31.8444, +2016-04-15 20:15:00,,,28.6813 +2016-04-15 20:23:11,3587.0,31.9482, +2016-04-15 20:30:00,,,28.7323 +2016-04-15 20:38:06,3585.0,31.9482, +2016-04-15 20:45:00,,,28.6813 +2016-04-15 20:53:01,3583.0,31.8359, +2016-04-15 21:00:00,,,28.6813 +2016-04-15 21:07:55,3581.0,31.9482, +2016-04-15 21:15:00,,,28.7374 +2016-04-15 21:22:50,3580.0,31.8359, +2016-04-15 21:30:00,,,28.6813 +2016-04-15 21:37:45,3578.0,31.8359, +2016-04-15 21:45:00,,,28.6839 +2016-04-15 21:52:39,3577.0,31.8359, +2016-04-15 22:00:00,,,28.6839 +2016-04-15 22:07:41,3574.0,31.892, +2016-04-15 22:15:00,,,28.6813 +2016-04-15 22:22:36,3574.0,31.892, +2016-04-15 22:30:00,,,28.6839 +2016-04-15 22:37:31,3573.0,31.8359, +2016-04-15 22:45:00,,,28.6839 +2016-04-15 22:52:26,3572.0,32.0045, +2016-04-15 23:00:00,,,28.7349 +2016-04-15 23:07:21,3571.0,31.892, +2016-04-15 23:15:00,,,28.6813 +2016-04-15 23:22:15,3571.0,31.8948, +2016-04-15 23:30:00,,,28.7323 +2016-04-15 23:37:10,3570.0,32.0045, +2016-04-15 23:45:00,,,28.6813 +2016-04-15 23:52:05,3569.0,31.8359, +2016-04-16 00:00:00,,,28.7349 +2016-04-16 00:07:00,3568.0,31.8274, +2016-04-16 00:15:00,,,28.6915 +2016-04-16 00:21:54,3568.0,32.0523, +2016-04-16 00:30:00,,,28.6864 +2016-04-16 00:36:49,3567.0,31.9397, +2016-04-16 00:45:00,,,28.638 +2016-04-16 00:51:44,3566.0,31.7156, +2016-04-16 01:00:00,,,28.6813 +2016-04-16 01:06:38,3566.0,31.8835, +2016-04-16 01:15:00,,,28.689 +2016-04-16 01:21:33,3566.0,31.7686, +2016-04-16 01:30:00,,,28.7349 +2016-04-16 01:36:28,3566.0,31.7714, +2016-04-16 01:45:00,,,28.7349 +2016-04-16 01:51:22,3566.0,31.8274, +2016-04-16 02:00:00,,,28.6813 +2016-04-16 02:06:17,3566.0,31.8806, +2016-04-16 02:15:00,,,28.6839 +2016-04-16 02:21:12,3566.0,31.7714, +2016-04-16 02:30:00,,,28.6864 +2016-04-16 02:36:06,3566.0,31.8835, +2016-04-16 02:45:00,,,28.6915 +2016-04-16 02:51:01,3567.0,31.8778, +2016-04-16 03:00:00,,,28.689 +2016-04-16 03:05:55,3567.0,31.9903, +2016-04-16 03:15:00,,,28.689 +2016-04-16 03:20:50,3566.0,31.8217, +2016-04-16 03:30:00,,,28.7425 +2016-04-16 03:35:45,3567.0,31.9903, +2016-04-16 03:45:00,,,28.74 +2016-04-16 03:50:39,3567.0,31.8778, +2016-04-16 04:00:00,,,28.6915 +2016-04-16 04:05:34,3567.0,31.875, +2016-04-16 04:15:00,,,28.6839 +2016-04-16 04:20:29,3568.0,31.8778, +2016-04-16 04:30:00,,,28.7349 +2016-04-16 04:35:24,3569.0,31.934, +2016-04-16 04:45:00,,,28.6813 +2016-04-16 04:50:18,3569.0,31.875, +2016-04-16 05:00:00,,,28.6915 +2016-04-16 05:05:13,3570.0,31.8778, +2016-04-16 05:15:00,,,28.6839 +2016-04-16 05:20:08,3571.0,31.934, +2016-04-16 05:30:00,,,28.7323 +2016-04-16 05:35:03,3571.0,31.875, +2016-04-16 05:45:00,,,28.74 +2016-04-16 05:49:58,3571.0,31.8778, +2016-04-16 06:00:00,,,28.6915 +2016-04-16 06:04:53,3571.0,31.9874, +2016-04-16 06:15:00,,,28.7425 +2016-04-16 06:19:47,3571.0,31.8189, +2016-04-16 06:30:00,,,28.6839 +2016-04-16 06:34:42,3572.0,31.8217, +2016-04-16 06:45:00,,,28.6839 +2016-04-16 06:49:37,3572.0,31.7658, +2016-04-16 07:00:00,,,28.6813 +2016-04-16 07:04:32,3573.0,31.875, +2016-04-16 07:15:00,,,28.6813 +2016-04-16 07:19:26,3574.0,31.8217, +2016-04-16 07:30:00,,,28.6915 +2016-04-16 07:34:21,3574.0,31.8189, +2016-04-16 07:45:00,,,28.689 +2016-04-16 07:49:16,3576.0,31.8693, +2016-04-16 08:00:00,,,28.6864 +2016-04-16 08:04:11,3577.0,31.8778, +2016-04-16 08:15:00,,,28.6813 +2016-04-16 08:19:05,3578.0,31.9255, +2016-04-16 08:30:00,,,28.6915 +2016-04-16 08:34:00,3579.0,31.8665, +2016-04-16 08:45:00,,,28.6304 +2016-04-16 08:48:55,3581.0,31.8133, +2016-04-16 09:00:00,,,28.6839 +2016-04-16 09:03:50,3582.0,31.8665, +2016-04-16 09:15:00,,,28.7323 +2016-04-16 09:18:45,3585.0,31.8133, +2016-04-16 09:30:00,,,28.6839 +2016-04-16 09:33:39,3585.0,31.8105, +2016-04-16 09:45:00,,,28.6915 +2016-04-16 09:48:34,3587.0,31.9817, +2016-04-16 10:00:00,,,28.689 +2016-04-16 10:03:29,3588.0,31.8778, +2016-04-16 10:15:00,,,28.6813 +2016-04-16 10:18:24,3588.0,31.8693, +2016-04-16 10:30:00,,,28.6813 +2016-04-16 10:33:19,3590.0,31.875, +2016-04-16 10:45:00,,,28.6915 +2016-04-16 10:48:14,3591.0,31.9903, +2016-04-16 11:00:00,,,28.6813 +2016-04-16 11:03:09,3592.0,31.875, +2016-04-16 11:15:00,,,28.6915 +2016-04-16 11:18:04,3592.0,31.875, +2016-04-16 11:30:00,,,28.6813 +2016-04-16 11:33:06,3592.0,31.8189, +2016-04-16 11:45:00,,,28.6813 +2016-04-16 11:48:02,3592.0,31.875, +2016-04-16 12:00:00,,,28.6839 +2016-04-16 12:02:57,3592.0,32.1003, +2016-04-16 12:15:00,,,28.6813 +2016-04-16 12:17:52,3592.0,32.1003, +2016-04-16 12:30:00,,,28.6813 +2016-04-16 12:32:47,3593.0,32.1598, +2016-04-16 12:45:00,,,28.6839 +2016-04-16 12:47:42,3593.0,32.0467, +2016-04-16 13:00:00,,,28.6839 +2016-04-16 13:02:37,3593.0,32.0438, +2016-04-16 13:15:00,,,28.6915 +2016-04-16 13:17:32,3593.0,32.1031, +2016-04-16 13:30:00,,,28.6839 +2016-04-16 13:32:27,3593.0,32.0495, +2016-04-16 13:45:00,,,28.6813 +2016-04-16 13:47:22,3593.0,32.1088, +2016-04-16 14:00:00,,,28.6839 +2016-04-16 14:02:16,3592.0,32.1626, +2016-04-16 14:15:00,,,28.7323 +2016-04-16 14:17:11,3592.0,31.9959, +2016-04-16 14:30:00,,,28.7349 +2016-04-16 14:32:06,3592.0,32.1088, +2016-04-16 14:45:00,,,28.6839 +2016-04-16 14:47:01,3591.0,32.0523, +2016-04-16 15:00:00,,,28.6304 +2016-04-16 15:01:56,3590.0,32.0495, +2016-04-16 15:15:00,,,28.7323 +2016-04-16 15:16:51,3591.0,32.0523, +2016-04-16 15:30:00,,,28.6839 +2016-04-16 15:31:45,3591.0,32.0523, +2016-04-16 15:45:00,,,28.6813 +2016-04-16 15:46:40,3592.0,31.9959, +2016-04-16 16:00:00,,,28.6813 +2016-04-16 16:01:35,3593.0,31.9931, +2016-04-16 16:15:00,,,28.6864 +2016-04-16 16:16:30,3594.0,31.9931, +2016-04-16 16:30:00,,,28.6813 +2016-04-16 16:31:25,3595.0,32.1655, +2016-04-16 16:45:00,,,28.6813 +2016-04-16 16:46:20,3597.0,32.0609, +2016-04-16 17:00:00,,,28.6839 +2016-04-16 17:01:16,3597.0,32.1088, +2016-04-16 17:15:00,,,28.6915 +2016-04-16 17:16:11,3598.0,32.0609, +2016-04-16 17:30:00,,,28.689 +2016-04-16 17:31:06,3598.0,32.0045, +2016-04-16 17:45:00,,,28.6813 +2016-04-16 17:46:01,3598.0,32.1174, +2016-04-16 18:00:00,,,28.6813 +2016-04-16 18:00:56,3597.0,32.0045, +2016-04-16 18:15:00,,,28.6813 +2016-04-16 18:15:51,3596.0,32.126, +2016-04-16 18:30:00,,,28.6839 +2016-04-16 18:30:46,3596.0,32.0694, +2016-04-16 18:45:00,,,28.689 +2016-04-16 18:45:41,3595.0,32.0694, +2016-04-16 19:00:00,,,28.6839 +2016-04-16 19:00:36,3595.0,32.1826, +2016-04-16 19:15:00,,,28.6813 +2016-04-16 19:15:32,3594.0,32.126, +2016-04-16 19:30:00,,,28.6839 +2016-04-16 19:30:27,3593.0,32.0694, +2016-04-16 19:45:00,,,28.6839 +2016-04-16 19:45:22,3593.0,32.0694, +2016-04-16 20:00:00,,,28.6813 +2016-04-16 20:00:17,3592.0,32.0694, +2016-04-16 20:15:00,,,28.6813 +2016-04-16 20:15:12,3591.0,32.126, +2016-04-16 20:30:00,,,28.6915 +2016-04-16 20:30:06,3590.0,32.013000000000005, +2016-04-16 20:45:00,,,28.6864 +2016-04-16 20:45:01,3588.0,32.0666, +2016-04-16 20:59:57,3588.0,32.013000000000005, +2016-04-16 21:00:00,,,28.6915 +2016-04-16 21:14:51,3587.0,32.0694, +2016-04-16 21:15:00,,,28.689 +2016-04-16 21:29:46,3586.0,32.0694, +2016-04-16 21:30:00,,,28.6839 +2016-04-16 21:44:41,3584.0,32.0694, +2016-04-16 21:45:00,,,28.7349 +2016-04-16 21:59:36,3584.0,32.0694, +2016-04-16 22:00:00,,,28.6839 +2016-04-16 22:14:31,3582.0,32.0101, +2016-04-16 22:15:00,,,28.6839 +2016-04-16 22:29:26,3581.0,32.0694, +2016-04-16 22:30:00,,,28.6839 +2016-04-16 22:44:21,3581.0,32.0694, +2016-04-16 22:45:00,,,28.689 +2016-04-16 22:59:16,3581.0,32.0694, +2016-04-16 23:00:00,,,28.74 +2016-04-16 23:14:11,3580.0,32.013000000000005, +2016-04-16 23:15:00,,,28.6915 +2016-04-16 23:29:05,3579.0,32.0694, +2016-04-16 23:30:00,,,28.689 +2016-04-16 23:44:00,3578.0,32.0101, +2016-04-16 23:45:00,,,28.6915 +2016-04-16 23:58:55,3578.0,32.0694, +2016-04-17 00:00:00,,,28.689 +2016-04-17 00:13:50,3578.0,31.9567, +2016-04-17 00:15:00,,,28.6915 +2016-04-17 00:28:45,3578.0,32.013000000000005, +2016-04-17 00:30:00,,,28.6915 +2016-04-17 00:43:39,3578.0,32.126, +2016-04-17 00:45:00,,,28.74 +2016-04-17 00:58:34,3577.0,32.126, +2016-04-17 01:00:00,,,28.6915 +2016-04-17 01:13:32,3577.0,32.013000000000005, +2016-04-17 01:15:00,,,28.7425 +2016-04-17 01:28:27,3577.0,32.0694, +2016-04-17 01:30:00,,,28.8423 +2016-04-17 01:43:22,3577.0,32.126, +2016-04-17 01:45:00,,,28.8449 +2016-04-17 01:58:16,3576.0,32.0694, +2016-04-17 02:00:00,,,28.8962 +2016-04-17 02:13:11,3575.0,32.0045, +2016-04-17 02:15:00,,,28.8962 +2016-04-17 02:28:06,3574.0,32.0694, +2016-04-17 02:30:00,,,28.8423 +2016-04-17 02:43:01,3574.0,32.0609, +2016-04-17 02:45:00,,,28.8449 +2016-04-17 02:57:55,3574.0,32.0045, +2016-04-17 03:00:00,,,28.8962 +2016-04-17 03:12:50,3573.0,32.0609, +2016-04-17 03:15:00,,,28.74 +2016-04-17 03:27:45,3572.0,32.0045, +2016-04-17 03:30:00,,,28.689 +2016-04-17 03:42:39,3572.0,32.1174, +2016-04-17 03:45:00,,,28.8423 +2016-04-17 03:57:34,3572.0,32.0045, +2016-04-17 04:00:00,,,28.8423 +2016-04-17 04:12:28,3571.0,32.0609, +2016-04-17 04:15:00,,,28.8423 +2016-04-17 04:27:23,3571.0,32.0045, +2016-04-17 04:30:00,,,28.8423 +2016-04-17 04:42:17,3571.0,32.0552, +2016-04-17 04:45:00,,,28.8423 +2016-04-17 04:57:12,3570.0,32.0609, +2016-04-17 05:00:00,,,28.6915 +2016-04-17 05:12:06,3570.0,32.1655, +2016-04-17 05:15:00,,,28.8423 +2016-04-17 05:27:01,3569.0,31.9931, +2016-04-17 05:30:00,,,28.7425 +2016-04-17 05:41:56,3568.0,32.0523, +2016-04-17 05:45:00,,,28.8962 +2016-04-17 05:56:50,3568.0,31.9959, +2016-04-17 06:00:00,,,28.7425 +2016-04-17 06:11:44,3567.0,31.8274, +2016-04-17 06:15:00,,,28.6915 +2016-04-17 06:26:39,3566.0,31.9959, +2016-04-17 06:30:00,,,28.8423 +2016-04-17 06:41:33,3566.0,31.9959, +2016-04-17 06:45:00,,,28.6915 +2016-04-17 06:56:28,3565.0,31.9959, +2016-04-17 07:00:00,,,28.6915 +2016-04-17 07:11:22,3565.0,32.1088, +2016-04-17 07:15:00,,,28.6915 +2016-04-17 07:26:17,3565.0,31.9931, +2016-04-17 07:30:00,,,28.7425 +2016-04-17 07:41:11,3565.0,31.9959, +2016-04-17 07:45:00,,,28.7425 +2016-04-17 07:56:06,3565.0,32.0523, +2016-04-17 08:00:00,,,28.7425 +2016-04-17 08:11:01,3566.0,31.8835, +2016-04-17 08:15:00,,,28.689 +2016-04-17 08:25:55,3566.0,31.9903, +2016-04-17 08:30:00,,,28.6915 +2016-04-17 08:40:50,3566.0,32.1598, +2016-04-17 08:45:00,,,28.689 +2016-04-17 08:55:45,3566.0,31.9931, +2016-04-17 09:00:00,,,28.689 +2016-04-17 09:10:39,3567.0,31.9903, +2016-04-17 09:15:00,,,28.74 +2016-04-17 09:25:34,3568.0,32.1031, +2016-04-17 09:30:00,,,28.6915 +2016-04-17 09:40:29,3568.0,32.0467, +2016-04-17 09:45:00,,,28.6915 +2016-04-17 09:55:24,3569.0,32.0467, +2016-04-17 10:00:00,,,28.6915 +2016-04-17 10:10:19,3570.0,32.0467, +2016-04-17 10:15:00,,,28.7425 +2016-04-17 10:25:13,3572.0,32.0467, +2016-04-17 10:30:00,,,28.6915 +2016-04-17 10:40:08,3573.0,32.1031, +2016-04-17 10:45:00,,,28.6915 +2016-04-17 10:55:03,3575.0,31.9874, +2016-04-17 11:00:00,,,28.6915 +2016-04-17 11:09:58,3577.0,31.9874, +2016-04-17 11:15:00,,,28.689 +2016-04-17 11:24:53,3579.0,32.0467, +2016-04-17 11:30:00,,,28.689 +2016-04-17 11:39:48,3581.0,31.9874, +2016-04-17 11:45:00,,,28.7425 +2016-04-17 11:54:43,3583.0,31.8189, +2016-04-17 12:00:00,,,28.6915 +2016-04-17 12:09:38,3585.0,31.875, +2016-04-17 12:15:00,,,28.689 +2016-04-17 12:24:33,3586.0,31.9311, +2016-04-17 12:30:00,,,28.6915 +2016-04-17 12:39:28,3587.0,31.8217, +2016-04-17 12:45:00,,,28.6915 +2016-04-17 12:54:23,3588.0,31.8778, +2016-04-17 13:00:00,,,28.689 +2016-04-17 13:09:18,3590.0,31.8189, +2016-04-17 13:15:00,,,28.6915 +2016-04-17 13:24:13,3591.0,31.763, +2016-04-17 13:30:00,,,28.6915 +2016-04-17 13:39:08,3592.0,31.8806, +2016-04-17 13:45:00,,,28.689 +2016-04-17 13:54:03,3593.0,31.8274, +2016-04-17 14:00:00,,,28.6915 +2016-04-17 14:08:58,3593.0,31.8246, +2016-04-17 14:15:00,,,28.689 +2016-04-17 14:23:53,3594.0,31.8274, +2016-04-17 14:30:00,,,28.6915 +2016-04-17 14:38:48,3594.0,31.9397, +2016-04-17 14:45:00,,,28.7425 +2016-04-17 14:53:43,3595.0,31.8835, +2016-04-17 15:00:00,,,28.6915 +2016-04-17 15:08:39,3595.0,31.9397, +2016-04-17 15:15:00,,,28.6915 +2016-04-17 15:23:34,3595.0,31.8835, +2016-04-17 15:30:00,,,28.689 +2016-04-17 15:38:29,3595.0,31.892, +2016-04-17 15:45:00,,,28.74 +2016-04-17 15:53:24,3594.0,31.9482, +2016-04-17 16:00:00,,,28.6915 +2016-04-17 16:08:19,3593.0,32.0045, +2016-04-17 16:15:00,,,28.689 +2016-04-17 16:23:14,3593.0,31.892, +2016-04-17 16:30:00,,,28.6915 +2016-04-17 16:38:09,3593.0,31.7799, +2016-04-17 16:45:00,,,28.6915 +2016-04-17 16:53:04,3592.0,31.8976, +2016-04-17 17:00:00,,,28.689 +2016-04-17 17:08:00,3592.0,31.7884, +2016-04-17 17:15:00,,,28.689 +2016-04-17 17:22:55,3592.0,31.9005, +2016-04-17 17:30:00,,,28.6915 +2016-04-17 17:37:50,3591.0,31.9567, +2016-04-17 17:45:00,,,28.74 +2016-04-17 17:52:45,3589.0,31.9005, +2016-04-17 18:00:00,,,28.689 +2016-04-17 18:07:40,3588.0,31.8415, +2016-04-17 18:15:00,,,28.689 +2016-04-17 18:22:35,3587.0,31.9005, +2016-04-17 18:30:00,,,28.7425 +2016-04-17 18:37:30,3586.0,32.013000000000005, +2016-04-17 18:45:00,,,28.7425 +2016-04-17 18:52:32,3585.0,31.9005, +2016-04-17 19:00:00,,,28.6915 +2016-04-17 19:07:27,3584.0,31.9538, +2016-04-17 19:15:00,,,28.7425 +2016-04-17 19:22:22,3582.0,31.8976, +2016-04-17 19:30:00,,,28.6915 +2016-04-17 19:37:17,3581.0,31.9005, +2016-04-17 19:45:00,,,28.6915 +2016-04-17 19:52:12,3579.0,32.013000000000005, +2016-04-17 20:00:00,,,28.689 +2016-04-17 20:07:06,3577.0,31.9005, +2016-04-17 20:15:00,,,28.6915 +2016-04-17 20:22:01,3576.0,31.9567, +2016-04-17 20:30:00,,,28.6915 +2016-04-17 20:36:56,3574.0,31.8444, +2016-04-17 20:45:00,,,28.689 +2016-04-17 20:51:51,3572.0,31.9567, +2016-04-17 21:00:00,,,28.7425 +2016-04-17 21:06:45,3571.0,31.8444, +2016-04-17 21:15:00,,,28.7425 +2016-04-17 21:21:40,3568.0,31.9005, +2016-04-17 21:30:00,,,28.7425 +2016-04-17 21:36:35,3566.0,31.9005, +2016-04-17 21:45:00,,,28.6915 +2016-04-17 21:51:29,3565.0,31.9595, +2016-04-17 22:00:00,,,28.7425 +2016-04-17 22:06:24,3563.0,31.7799, +2016-04-17 22:15:00,,,28.6915 +2016-04-17 22:21:18,3561.0,31.8359, +2016-04-17 22:30:00,,,28.74 +2016-04-17 22:36:13,3559.0,31.8359, +2016-04-17 22:45:00,,,28.7425 +2016-04-17 22:51:08,3558.0,31.8976, +2016-04-17 23:00:00,,,28.6915 +2016-04-17 23:06:02,3557.0,31.6598, +2016-04-17 23:15:00,,,28.74 +2016-04-17 23:20:57,3556.0,31.7184, +2016-04-17 23:30:00,,,28.7425 +2016-04-17 23:35:51,3555.0,31.8835, +2016-04-17 23:45:00,,,28.74 +2016-04-17 23:50:46,3554.0,31.6598, +2016-04-18 00:00:00,,,28.7425 +2016-04-18 00:05:40,3553.0,31.6626, +2016-04-18 00:15:00,,,28.6915 +2016-04-18 00:20:35,3552.0,31.8274, +2016-04-18 00:30:00,,,28.74 +2016-04-18 00:35:29,3551.0,31.8274, +2016-04-18 00:45:00,,,28.7425 +2016-04-18 00:50:24,3550.0,31.8274, +2016-04-18 01:00:00,,,28.7425 +2016-04-18 01:05:18,3550.0,31.7686, +2016-04-18 01:15:00,,,28.7425 +2016-04-18 01:20:13,3549.0,31.7714, +2016-04-18 01:30:00,,,28.689 +2016-04-18 01:35:08,3548.0,31.8217, +2016-04-18 01:45:00,,,28.7425 +2016-04-18 01:50:02,3547.0,31.8217, +2016-04-18 02:00:00,,,28.7425 +2016-04-18 02:04:57,3546.0,31.8189, +2016-04-18 02:15:00,,,28.6915 +2016-04-18 02:19:51,3545.0,31.7658, +2016-04-18 02:30:00,,,28.6915 +2016-04-18 02:34:46,3545.0,31.7658, +2016-04-18 02:45:00,,,28.6915 +2016-04-18 02:49:40,3545.0,31.7658, +2016-04-18 03:00:00,,,28.6915 +2016-04-18 03:04:34,3544.0,31.8133, +2016-04-18 03:15:00,,,28.7425 +2016-04-18 03:19:29,3543.0,31.8133, +2016-04-18 03:30:00,,,28.7425 +2016-04-18 03:34:23,3542.0,31.7573, +2016-04-18 03:45:00,,,28.74 +2016-04-18 03:49:18,3542.0,31.8105, +2016-04-18 04:00:00,,,28.689 +2016-04-18 04:04:12,3541.0,31.8693, +2016-04-18 04:15:00,,,28.6915 +2016-04-18 04:19:06,3541.0,31.8048, +2016-04-18 04:30:00,,,28.7425 +2016-04-18 04:34:01,3540.0,31.8048, +2016-04-18 04:45:00,,,28.6915 +2016-04-18 04:48:55,3539.0,31.8048, +2016-04-18 05:00:00,,,28.7425 +2016-04-18 05:03:49,3538.0,31.7489, +2016-04-18 05:15:00,,,28.7425 +2016-04-18 05:18:43,3537.0,31.802, +2016-04-18 05:30:00,,,28.74 +2016-04-18 05:33:38,3537.0,31.7489, +2016-04-18 05:45:00,,,28.7425 +2016-04-18 05:48:32,3537.0,31.8608, +2016-04-18 06:00:00,,,28.7425 +2016-04-18 06:03:27,3537.0,31.8048, +2016-04-18 06:15:00,,,28.74 +2016-04-18 06:18:21,3537.0,31.7963, +2016-04-18 06:30:00,,,28.7425 +2016-04-18 06:33:15,3537.0,31.8524, +2016-04-18 06:45:00,,,28.7425 +2016-04-18 06:48:10,3537.0,31.7963, +2016-04-18 07:00:00,,,28.7425 +2016-04-18 07:03:04,3538.0,31.8524, +2016-04-18 07:15:00,,,28.6915 +2016-04-18 07:17:58,3540.0,31.8524, +2016-04-18 07:30:00,,,28.7425 +2016-04-18 07:32:53,3542.0,31.7963, +2016-04-18 07:45:00,,,28.7425 +2016-04-18 07:47:48,3545.0,31.7963, +2016-04-18 08:00:00,,,28.7425 +2016-04-18 08:02:42,3547.0,31.732, +2016-04-18 08:15:00,,,28.6915 +2016-04-18 08:17:37,3551.0,31.7907, +2016-04-18 08:30:00,,,28.7425 +2016-04-18 08:32:31,3554.0,31.732, +2016-04-18 08:45:00,,,28.74 +2016-04-18 08:47:26,3557.0,31.9, +2016-04-18 09:00:00,,,28.7425 +2016-04-18 09:02:21,3560.0,31.7348, +2016-04-18 09:15:00,,,28.689 +2016-04-18 09:17:16,3565.0,31.7794, +2016-04-18 09:30:00,,,28.689 +2016-04-18 09:32:11,3569.0,31.732, +2016-04-18 09:45:00,,,28.6915 +2016-04-18 09:47:05,3574.0,31.8354, +2016-04-18 10:00:00,,,28.6915 +2016-04-18 10:02:01,3577.0,31.7851, +2016-04-18 10:15:00,,,28.689 +2016-04-18 10:16:56,3581.0,31.7907, +2016-04-18 10:30:00,,,28.6915 +2016-04-18 10:31:51,3585.0,31.8326, +2016-04-18 10:45:00,,,28.689 +2016-04-18 10:46:46,3587.0,31.7794, +2016-04-18 11:00:00,,,28.689 +2016-04-18 11:01:41,3588.0,31.8354, +2016-04-18 11:15:00,,,28.7425 +2016-04-18 11:16:37,3591.0,31.8354, +2016-04-18 11:30:00,,,28.689 +2016-04-18 11:31:32,3591.0,31.7879, +2016-04-18 11:45:00,,,28.6813 +2016-04-18 11:46:27,3592.0,31.9, +2016-04-18 12:00:00,,,28.6813 +2016-04-18 12:01:23,3592.0,31.9562, +2016-04-18 12:15:00,,,28.6915 +2016-04-18 12:16:18,3592.0,31.7879, +2016-04-18 12:30:00,,,28.6813 +2016-04-18 12:31:13,3593.0,31.7935, +2016-04-18 12:45:00,,,28.6813 +2016-04-18 12:46:08,3594.0,31.7376, +2016-04-18 13:00:00,,,28.689 +2016-04-18 13:01:03,3595.0,31.9056, +2016-04-18 13:15:00,,,28.6813 +2016-04-18 13:15:58,3596.0,31.9085, +2016-04-18 13:30:00,,,28.6329 +2016-04-18 13:30:53,3596.0,31.8524, +2016-04-18 13:45:00,,,28.6839 +2016-04-18 13:45:56,3597.0,31.8495, +2016-04-18 14:00:00,,,28.6813 +2016-04-18 14:00:51,3598.0,31.8524, +2016-04-18 14:15:00,,,28.6813 +2016-04-18 14:15:47,3598.0,31.858, +2016-04-18 14:30:00,,,28.6813 +2016-04-18 14:30:42,3598.0,31.7461, +2016-04-18 14:45:00,,,28.6813 +2016-04-18 14:45:37,3598.0,31.6374, +2016-04-18 15:00:00,,,28.6839 +2016-04-18 15:00:33,3598.0,31.6345, +2016-04-18 15:15:00,,,28.6813 +2016-04-18 15:15:28,3598.0,31.7461, +2016-04-18 15:30:00,,,28.6813 +2016-04-18 15:30:23,3598.0,31.7545, +2016-04-18 15:45:00,,,28.6813 +2016-04-18 15:45:18,3598.0,31.643, +2016-04-18 16:00:00,,,28.6329 +2016-04-18 16:00:13,3598.0,31.8105, +2016-04-18 16:15:00,,,28.6813 +2016-04-18 16:15:09,3598.0,31.6486, +2016-04-18 16:30:00,,,28.6813 +2016-04-18 16:30:04,3598.0,31.7071, +2016-04-18 16:44:59,3598.0,31.7099, +2016-04-18 16:45:00,,,28.6813 +2016-04-18 16:59:54,3597.0,31.5958, +2016-04-18 17:00:00,,,28.6839 +2016-04-18 17:14:49,3597.0,31.6514, +2016-04-18 17:15:00,,,28.6813 +2016-04-18 17:29:44,3596.0,31.6542, +2016-04-18 17:30:00,,,28.6839 +2016-04-18 17:44:39,3596.0,31.763, +2016-04-18 17:45:00,,,28.7323 +2016-04-18 17:59:34,3595.0,31.763, +2016-04-18 18:00:00,,,28.7323 +2016-04-18 18:14:29,3594.0,31.8217, +2016-04-18 18:15:00,,,28.6813 +2016-04-18 18:29:24,3593.0,31.7156, +2016-04-18 18:30:00,,,28.6839 +2016-04-18 18:44:19,3592.0,31.7156, +2016-04-18 18:45:00,,,28.6813 +2016-04-18 18:59:14,3591.0,31.7686, +2016-04-18 19:00:00,,,28.6839 +2016-04-18 19:14:09,3589.0,31.7714, +2016-04-18 19:15:00,,,28.6813 +2016-04-18 19:29:04,3588.0,31.6014, +2016-04-18 19:30:00,,,28.6813 +2016-04-18 19:43:59,3586.0,31.7714, +2016-04-18 19:45:00,,,28.6839 +2016-04-18 19:58:53,3585.0,31.8274, +2016-04-18 20:00:00,,,28.6839 +2016-04-18 20:13:48,3583.0,31.6598, +2016-04-18 20:15:00,,,28.6864 +2016-04-18 20:28:43,3581.0,31.7686, +2016-04-18 20:30:00,,,28.6839 +2016-04-18 20:43:38,3580.0,31.7686, +2016-04-18 20:45:00,,,28.7349 +2016-04-18 20:58:32,3578.0,31.6598, +2016-04-18 21:00:00,,,28.6813 +2016-04-18 21:13:27,3577.0,31.8274, +2016-04-18 21:15:00,,,28.6813 +2016-04-18 21:28:22,3577.0,31.6598, +2016-04-18 21:30:00,,,28.6813 +2016-04-18 21:43:17,3576.0,31.7714, +2016-04-18 21:45:00,,,28.6839 +2016-04-18 21:58:11,3575.0,31.7156, +2016-04-18 22:00:00,,,28.6813 +2016-04-18 22:13:06,3574.0,31.7602, +2016-04-18 22:15:00,,,28.6864 +2016-04-18 22:28:01,3574.0,31.6542, +2016-04-18 22:30:00,,,28.6839 +2016-04-18 22:42:56,3574.0,31.7658, +2016-04-18 22:45:00,,,28.6864 +2016-04-18 22:57:50,3573.0,31.7099, +2016-04-18 23:00:00,,,28.7349 +2016-04-18 23:12:45,3573.0,31.6514, +2016-04-18 23:15:00,,,28.6813 +2016-04-18 23:27:40,3573.0,31.5958, +2016-04-18 23:30:00,,,28.7323 +2016-04-18 23:42:34,3572.0,31.763, +2016-04-18 23:45:00,,,28.6839 +2016-04-18 23:57:37,3572.0,31.5986, +2016-04-19 00:00:00,,,28.6813 +2016-04-19 00:12:31,3572.0,31.8217, +2016-04-19 00:15:00,,,28.6813 +2016-04-19 00:27:26,3572.0,31.6542, +2016-04-19 00:30:00,,,28.7323 +2016-04-19 00:42:20,3572.0,31.6542, +2016-04-19 00:45:00,,,28.6839 +2016-04-19 00:57:15,3572.0,31.7658, +2016-04-19 01:00:00,,,28.6864 +2016-04-19 01:12:10,3572.0,31.6542, +2016-04-19 01:15:00,,,28.6864 +2016-04-19 01:27:04,3572.0,31.7071, +2016-04-19 01:30:00,,,28.6839 +2016-04-19 01:41:59,3573.0,31.5958, +2016-04-19 01:45:00,,,28.6813 +2016-04-19 01:56:54,3573.0,31.6542, +2016-04-19 02:00:00,,,28.7349 +2016-04-19 02:11:48,3572.0,31.7099, +2016-04-19 02:15:00,,,28.6839 +2016-04-19 02:26:43,3572.0,31.7071, +2016-04-19 02:30:00,,,28.6839 +2016-04-19 02:41:38,3573.0,31.6458, +2016-04-19 02:45:00,,,28.6839 +2016-04-19 02:56:33,3573.0,31.6987, +2016-04-19 03:00:00,,,28.6813 +2016-04-19 03:11:28,3573.0,31.6458, +2016-04-19 03:15:00,,,28.7323 +2016-04-19 03:26:22,3572.0,31.643, +2016-04-19 03:30:00,,,28.6839 +2016-04-19 03:41:17,3572.0,31.5902, +2016-04-19 03:45:00,,,28.6839 +2016-04-19 03:56:11,3572.0,31.643, +2016-04-19 04:00:00,,,28.7323 +2016-04-19 04:11:06,3572.0,31.5874, +2016-04-19 04:15:00,,,28.6813 +2016-04-19 04:26:01,3571.0,31.7015, +2016-04-19 04:30:00,,,28.6839 +2016-04-19 04:40:56,3571.0,31.643, +2016-04-19 04:45:00,,,28.6864 +2016-04-19 04:55:50,3571.0,31.5902, +2016-04-19 05:00:00,,,28.6813 +2016-04-19 05:10:45,3571.0,31.6458, +2016-04-19 05:15:00,,,28.6813 +2016-04-19 05:25:40,3571.0,31.6987, +2016-04-19 05:30:00,,,28.7349 +2016-04-19 05:40:35,3570.0,31.7461, +2016-04-19 05:45:00,,,28.6839 +2016-04-19 05:55:29,3570.0,31.6931, +2016-04-19 06:00:00,,,28.7349 +2016-04-19 06:10:24,3570.0,31.6374, +2016-04-19 06:15:00,,,28.6813 +2016-04-19 06:25:19,3571.0,31.5818, +2016-04-19 06:30:00,,,28.7349 +2016-04-19 06:40:14,3570.0,31.7461, +2016-04-19 06:45:00,,,28.7349 +2016-04-19 06:55:09,3570.0,31.7461, +2016-04-19 07:00:00,,,28.7323 +2016-04-19 07:10:03,3570.0,31.7489, +2016-04-19 07:15:00,,,28.7349 +2016-04-19 07:24:58,3570.0,31.6345, +2016-04-19 07:30:00,,,28.6864 +2016-04-19 07:39:53,3570.0,31.6345, +2016-04-19 07:45:00,,,28.7349 +2016-04-19 07:54:48,3570.0,31.6374, +2016-04-19 08:00:00,,,28.7374 +2016-04-19 08:09:43,3570.0,31.6374, +2016-04-19 08:15:00,,,28.6813 +2016-04-19 08:24:37,3571.0,31.6374, +2016-04-19 08:30:00,,,28.6813 +2016-04-19 08:39:32,3571.0,31.5789, +2016-04-19 08:45:00,,,28.7323 +2016-04-19 08:54:27,3572.0,31.6345, +2016-04-19 09:00:00,,,28.6839 +2016-04-19 09:09:22,3573.0,31.7489, +2016-04-19 09:15:00,,,28.6813 +2016-04-19 09:24:17,3574.0,31.6931, +2016-04-19 09:30:00,,,28.6813 +2016-04-19 09:39:12,3577.0,31.6374, +2016-04-19 09:45:00,,,28.6839 +2016-04-19 09:54:07,3579.0,31.6931, +2016-04-19 10:00:00,,,28.6813 +2016-04-19 10:09:02,3581.0,31.6345, +2016-04-19 10:15:00,,,28.6813 +2016-04-19 10:23:57,3585.0,31.7461, +2016-04-19 10:30:00,,,28.6813 +2016-04-19 10:39:00,3587.0,31.6345, +2016-04-19 10:45:00,,,28.6813 +2016-04-19 10:53:55,3588.0,31.7461, +2016-04-19 11:00:00,,,28.6813 +2016-04-19 11:08:50,3589.0,31.7461, +2016-04-19 11:15:00,,,28.6813 +2016-04-19 11:23:53,3589.0,31.6345, +2016-04-19 11:30:00,,,28.6839 +2016-04-19 11:38:48,3590.0,31.7489, +2016-04-19 11:45:00,,,28.6813 +2016-04-19 11:53:43,3591.0,31.6903, +2016-04-19 12:00:00,,,28.6839 +2016-04-19 12:08:38,3592.0,31.6903, +2016-04-19 12:15:00,,,28.6813 +2016-04-19 12:23:34,3592.0,31.6903, +2016-04-19 12:30:00,,,28.6839 +2016-04-19 12:38:29,3593.0,31.7461, +2016-04-19 12:45:00,,,28.6813 +2016-04-19 12:53:24,3592.0,31.643, +2016-04-19 13:00:00,,,28.6813 +2016-04-19 13:08:19,3593.0,31.6987, +2016-04-19 13:15:00,,,28.6839 +2016-04-19 13:23:14,3593.0,31.7573, +2016-04-19 13:30:00,,,28.6813 +2016-04-19 13:38:09,3593.0,31.7545, +2016-04-19 13:45:00,,,28.6839 +2016-04-19 13:53:04,3593.0,31.5874, +2016-04-19 14:00:00,,,28.6839 +2016-04-19 14:08:00,3594.0,31.7015, +2016-04-19 14:15:00,,,28.6813 +2016-04-19 14:22:55,3594.0,31.763, +2016-04-19 14:30:00,,,28.6813 +2016-04-19 14:37:50,3594.0,31.7658, +2016-04-19 14:45:00,,,28.6304 +2016-04-19 14:52:46,3594.0,31.7658, +2016-04-19 15:00:00,,,28.6839 +2016-04-19 15:07:41,3595.0,31.763, +2016-04-19 15:15:00,,,28.6813 +2016-04-19 15:22:36,3595.0,31.7071, +2016-04-19 15:30:00,,,28.6839 +2016-04-19 15:37:31,3595.0,31.7658, +2016-04-19 15:45:00,,,28.6839 +2016-04-19 15:52:27,3595.0,31.6486, +2016-04-19 16:00:00,,,28.6329 +2016-04-19 16:07:22,3595.0,31.763, +2016-04-19 16:15:00,,,28.6839 +2016-04-19 16:22:17,3595.0,31.7071, +2016-04-19 16:30:00,,,28.6864 +2016-04-19 16:37:13,3595.0,31.7071, +2016-04-19 16:45:00,,,28.6839 +2016-04-19 16:52:08,3595.0,31.7658, +2016-04-19 17:00:00,,,28.6813 +2016-04-19 17:07:04,3595.0,31.8189, +2016-04-19 17:15:00,,,28.6839 +2016-04-19 17:21:59,3595.0,31.7714, +2016-04-19 17:30:00,,,28.6813 +2016-04-19 17:36:54,3595.0,31.6514, +2016-04-19 17:45:00,,,28.6813 +2016-04-19 17:51:49,3594.0,31.7686, +2016-04-19 18:00:00,,,28.6839 +2016-04-19 18:06:44,3593.0,31.7156, +2016-04-19 18:15:00,,,28.6839 +2016-04-19 18:21:39,3593.0,31.657, +2016-04-19 18:30:00,,,28.6864 +2016-04-19 18:36:42,3592.0,31.7714, +2016-04-19 18:45:00,,,28.6813 +2016-04-19 18:51:37,3590.0,31.7156, +2016-04-19 19:00:00,,,28.6813 +2016-04-19 19:06:32,3588.0,31.8274, +2016-04-19 19:15:00,,,28.6813 +2016-04-19 19:21:26,3588.0,31.6598, +2016-04-19 19:30:00,,,28.6864 +2016-04-19 19:36:21,3586.0,31.657, +2016-04-19 19:45:00,,,28.6839 +2016-04-19 19:51:16,3585.0,31.7714, +2016-04-19 20:00:00,,,28.6813 +2016-04-19 20:06:11,3583.0,31.7714, +2016-04-19 20:15:00,,,28.6839 +2016-04-19 20:21:06,3581.0,31.7156, +2016-04-19 20:30:00,,,28.7349 +2016-04-19 20:36:01,3580.0,31.7714, +2016-04-19 20:45:00,,,28.6813 +2016-04-19 20:50:56,3578.0,31.7714, +2016-04-19 21:00:00,,,28.7349 +2016-04-19 21:05:51,3577.0,31.8246, +2016-04-19 21:15:00,,,28.6839 +2016-04-19 21:20:46,3575.0,31.7714, +2016-04-19 21:30:00,,,28.6813 +2016-04-19 21:35:41,3574.0,31.8274, +2016-04-19 21:45:00,,,28.6839 +2016-04-19 21:50:35,3573.0,31.6598, +2016-04-19 22:00:00,,,28.7349 +2016-04-19 22:05:30,3571.0,31.7099, +2016-04-19 22:15:00,,,28.6839 +2016-04-19 22:20:25,3570.0,31.7658, +2016-04-19 22:30:00,,,28.6813 +2016-04-19 22:35:20,3568.0,31.6542, +2016-04-19 22:45:00,,,28.6839 +2016-04-19 22:50:15,3567.0,31.7658, +2016-04-19 23:00:00,,,28.7374 +2016-04-19 23:05:09,3566.0,31.7071, +2016-04-19 23:15:00,,,28.7349 +2016-04-19 23:20:04,3565.0,31.6542, +2016-04-19 23:30:00,,,28.6839 +2016-04-19 23:34:59,3564.0,31.8217, +2016-04-19 23:45:00,,,28.6839 +2016-04-19 23:49:54,3563.0,31.7099, +2016-04-20 00:00:00,,,28.7349 +2016-04-20 00:04:49,3561.0,31.7658, +2016-04-20 00:15:00,,,28.6839 +2016-04-20 00:19:44,3559.0,31.6542, +2016-04-20 00:30:00,,,28.7349 +2016-04-20 00:34:39,3559.0,31.5431, +2016-04-20 00:45:00,,,28.7323 +2016-04-20 00:49:33,3557.0,31.6542, +2016-04-20 01:00:00,,,28.7349 +2016-04-20 01:04:28,3557.0,31.7658, +2016-04-20 01:15:00,,,28.7323 +2016-04-20 01:19:23,3556.0,31.8133, +2016-04-20 01:30:00,,,28.7349 +2016-04-20 01:34:18,3554.0,31.6458, +2016-04-20 01:45:00,,,28.6813 +2016-04-20 01:49:12,3552.0,31.4765, +2016-04-20 02:00:00,,,28.7349 +2016-04-20 02:04:07,3551.0,31.5818, +2016-04-20 02:15:00,,,28.7374 +2016-04-20 02:19:01,3550.0,31.6374, +2016-04-20 02:30:00,,,28.7323 +2016-04-20 02:33:56,3549.0,31.5789, +2016-04-20 02:45:00,,,28.7349 +2016-04-20 02:48:50,3548.0,31.6374, +2016-04-20 03:00:00,,,28.7374 +2016-04-20 03:03:44,3547.0,31.6374, +2016-04-20 03:15:00,,,28.7349 +2016-04-20 03:18:39,3546.0,31.5263, +2016-04-20 03:30:00,,,28.7374 +2016-04-20 03:33:33,3545.0,31.5789, +2016-04-20 03:45:00,,,28.6839 +2016-04-20 03:48:28,3545.0,31.5818, +2016-04-20 04:00:00,,,28.7349 +2016-04-20 04:03:22,3545.0,31.8048, +2016-04-20 04:15:00,,,28.7374 +2016-04-20 04:18:17,3544.0,31.6317, +2016-04-20 04:30:00,,,28.7349 +2016-04-20 04:33:11,3544.0,31.5733, +2016-04-20 04:45:00,,,28.7374 +2016-04-20 04:48:05,3544.0,31.6289, +2016-04-20 05:00:00,,,28.7349 +2016-04-20 05:03:00,3544.0,31.6289, +2016-04-20 05:15:00,,,28.7349 +2016-04-20 05:17:54,3544.0,31.5733, +2016-04-20 05:30:00,,,28.6813 +2016-04-20 05:32:49,3544.0,31.6289, +2016-04-20 05:45:00,,,28.6839 +2016-04-20 05:47:43,3544.0,31.6846, +2016-04-20 06:00:00,,,28.6839 +2016-04-20 06:02:38,3544.0,31.7963, +2016-04-20 06:15:00,,,28.7323 +2016-04-20 06:17:32,3545.0,31.5733, +2016-04-20 06:30:00,,,28.7349 +2016-04-20 06:32:27,3545.0,31.6762, +2016-04-20 06:45:00,,,28.7374 +2016-04-20 06:47:21,3545.0,31.6205, +2016-04-20 07:00:00,,,28.6864 +2016-04-20 07:02:16,3545.0,31.6233, +2016-04-20 07:15:00,,,28.6839 +2016-04-20 07:17:10,3546.0,31.679, +2016-04-20 07:30:00,,,28.7374 +2016-04-20 07:32:05,3548.0,31.6233, +2016-04-20 07:45:00,,,28.7349 +2016-04-20 07:46:59,3550.0,31.6121, +2016-04-20 08:00:00,,,28.7323 +2016-04-20 08:01:54,3552.0,31.5565, +2016-04-20 08:15:00,,,28.6864 +2016-04-20 08:16:48,3556.0,31.6121, +2016-04-20 08:30:00,,,28.6839 +2016-04-20 08:31:43,3559.0,31.5011, +2016-04-20 08:45:00,,,28.6839 +2016-04-20 08:46:38,3563.0,31.6121, +2016-04-20 09:00:00,,,28.6839 +2016-04-20 09:01:32,3566.0,31.4983, +2016-04-20 09:15:00,,,28.6839 +2016-04-20 09:16:27,3568.0,31.7235, +2016-04-20 09:30:00,,,28.6839 +2016-04-20 09:31:22,3571.0,31.6121, +2016-04-20 09:45:00,,,28.6813 +2016-04-20 09:46:17,3573.0,31.7263, +2016-04-20 10:00:00,,,28.6839 +2016-04-20 10:01:11,3574.0,31.6678, +2016-04-20 10:15:00,,,28.7323 +2016-04-20 10:16:06,3577.0,31.6121, +2016-04-20 10:30:00,,,28.6813 +2016-04-20 10:31:01,3579.0,31.7235, +2016-04-20 10:45:00,,,28.6864 +2016-04-20 10:45:56,3582.0,31.6121, +2016-04-20 11:00:00,,,28.7349 +2016-04-20 11:00:51,3584.0,31.5565, +2016-04-20 11:15:00,,,28.6813 +2016-04-20 11:15:46,3586.0,31.6678, +2016-04-20 11:30:00,,,28.6864 +2016-04-20 11:30:42,3587.0,31.7207, +2016-04-20 11:45:00,,,28.6813 +2016-04-20 11:45:37,3588.0,31.7235, +2016-04-20 12:00:00,,,28.6329 +2016-04-20 12:00:32,3589.0,31.6734, +2016-04-20 12:15:00,,,28.6839 +2016-04-20 12:15:27,3590.0,31.732, +2016-04-20 12:30:00,,,28.6839 +2016-04-20 12:30:22,3592.0,31.732, +2016-04-20 12:45:00,,,28.7323 +2016-04-20 12:45:17,3593.0,31.6734, +2016-04-20 13:00:00,,,28.7323 +2016-04-20 13:00:12,3593.0,31.7376, +2016-04-20 13:15:00,,,28.7349 +2016-04-20 13:15:08,3594.0,31.6818, +2016-04-20 13:30:00,,,28.6839 +2016-04-20 13:30:03,3595.0,31.6289, +2016-04-20 13:44:58,3595.0,31.7376, +2016-04-20 13:45:00,,,28.6839 +2016-04-20 13:59:54,3596.0,31.7376, +2016-04-20 14:00:00,,,28.6813 +2016-04-20 14:14:49,3597.0,31.6818, +2016-04-20 14:15:00,,,28.6839 +2016-04-20 14:29:44,3597.0,31.7461, +2016-04-20 14:30:00,,,28.6813 +2016-04-20 14:44:39,3596.0,31.7461, +2016-04-20 14:45:00,,,28.6839 +2016-04-20 14:59:34,3596.0,31.7461, +2016-04-20 15:00:00,,,28.6813 +2016-04-20 15:14:29,3596.0,31.6903, +2016-04-20 15:15:00,,,28.6813 +2016-04-20 15:29:25,3596.0,31.7461, +2016-04-20 15:30:00,,,28.5314 +2016-04-20 15:44:20,3596.0,31.6458, +2016-04-20 15:45:00,,,28.5314 +2016-04-20 15:59:15,3597.0,31.7015, +2016-04-20 16:00:00,,,28.5314 +2016-04-20 16:14:10,3596.0,31.6987, +2016-04-20 16:15:00,,,28.5796 +2016-04-20 16:29:05,3596.0,31.763, +2016-04-20 16:30:00,,,28.6813 +2016-04-20 16:44:01,3596.0,31.7071, +2016-04-20 16:45:00,,,28.5289 +2016-04-20 16:58:56,3596.0,31.6514, +2016-04-20 17:00:00,,,28.5314 +2016-04-20 17:13:51,3595.0,31.7099, +2016-04-20 17:15:00,,,28.5289 +2016-04-20 17:28:46,3595.0,31.763, +2016-04-20 17:30:00,,,28.5238 +2016-04-20 17:43:41,3595.0,31.6514, +2016-04-20 17:45:00,,,28.5289 +2016-04-20 17:58:37,3594.0,31.763, +2016-04-20 18:00:00,,,28.5289 +2016-04-20 18:13:32,3593.0,31.7099, +2016-04-20 18:15:00,,,28.5339 +2016-04-20 18:28:27,3593.0,31.7658, +2016-04-20 18:30:00,,,28.5314 +2016-04-20 18:43:22,3592.0,31.7658, +2016-04-20 18:45:00,,,28.5314 +2016-04-20 18:58:17,3590.0,31.5986, +2016-04-20 19:00:00,,,28.5796 +2016-04-20 19:13:12,3588.0,31.7071, +2016-04-20 19:15:00,,,28.5289 +2016-04-20 19:28:07,3587.0,31.6514, +2016-04-20 19:30:00,,,28.5339 +2016-04-20 19:43:02,3586.0,31.5487, +2016-04-20 19:45:00,,,28.5314 +2016-04-20 19:57:57,3585.0,31.5487, +2016-04-20 20:00:00,,,28.5821 +2016-04-20 20:12:52,3583.0,31.607, +2016-04-20 20:15:00,,,28.5314 +2016-04-20 20:27:47,3581.0,31.5487, +2016-04-20 20:30:00,,,28.5339 +2016-04-20 20:42:42,3578.0,31.4932, +2016-04-20 20:45:00,,,28.5796 +2016-04-20 20:57:37,3577.0,31.5403, +2016-04-20 21:00:00,,,28.5339 +2016-04-20 21:12:32,3575.0,31.4848, +2016-04-20 21:15:00,,,28.5821 +2016-04-20 21:27:27,3573.0,31.4351, +2016-04-20 21:30:00,,,28.6329 +2016-04-20 21:42:21,3572.0,31.4848, +2016-04-20 21:45:00,,,28.5314 +2016-04-20 21:57:16,3570.0,31.5403, +2016-04-20 22:00:00,,,28.5796 +2016-04-20 22:12:10,3568.0,31.4323, +2016-04-20 22:15:00,,,28.5796 +2016-04-20 22:27:05,3566.0,31.5431, +2016-04-20 22:30:00,,,28.5796 +2016-04-20 22:42:00,3565.0,31.5986, +2016-04-20 22:45:00,,,28.5821 +2016-04-20 22:56:54,3564.0,31.4323, +2016-04-20 23:00:00,,,28.5314 +2016-04-20 23:11:48,3562.0,31.5986, +2016-04-20 23:15:00,,,28.5796 +2016-04-20 23:26:43,3560.0,31.6542, +2016-04-20 23:30:00,,,28.5314 +2016-04-20 23:41:38,3559.0,31.4323, +2016-04-20 23:45:00,,,28.5821 +2016-04-20 23:56:32,3558.0,31.4323, +2016-04-21 00:00:00,,,28.5821 +2016-04-21 00:11:27,3557.0,31.4295, +2016-04-21 00:15:00,,,28.5314 +2016-04-21 00:26:21,3556.0,31.4295, +2016-04-21 00:30:00,,,28.5339 +2016-04-21 00:41:16,3555.0,31.5375, +2016-04-21 00:45:00,,,28.5339 +2016-04-21 00:56:10,3553.0,31.5347, +2016-04-21 01:00:00,,,28.6355 +2016-04-21 01:11:05,3552.0,31.4765, +2016-04-21 01:15:00,,,28.5821 +2016-04-21 01:25:59,3551.0,31.5347, +2016-04-21 01:30:00,,,28.5847 +2016-04-21 01:40:54,3550.0,31.4681, +2016-04-21 01:45:00,,,28.6304 +2016-04-21 01:55:48,3549.0,31.5263, +2016-04-21 02:00:00,,,28.5821 +2016-04-21 02:10:43,3548.0,31.5235, +2016-04-21 02:15:00,,,28.5847 +2016-04-21 02:25:38,3547.0,31.4156, +2016-04-21 02:30:00,,,28.5821 +2016-04-21 02:40:32,3546.0,31.5789, +2016-04-21 02:45:00,,,28.5796 +2016-04-21 02:55:27,3545.0,31.4156, +2016-04-21 03:00:00,,,28.6329 +2016-04-21 03:10:21,3545.0,31.4156, +2016-04-21 03:15:00,,,28.5821 +2016-04-21 03:25:15,3544.0,31.4156, +2016-04-21 03:30:00,,,28.6355 +2016-04-21 03:40:10,3543.0,31.5263, +2016-04-21 03:45:00,,,28.5821 +2016-04-21 03:55:04,3543.0,31.5818, +2016-04-21 04:00:00,,,28.5314 +2016-04-21 04:09:58,3542.0,31.5179, +2016-04-21 04:15:00,,,28.5821 +2016-04-21 04:24:52,3541.0,31.4625, +2016-04-21 04:30:00,,,28.5339 +2016-04-21 04:39:46,3539.0,31.4072, +2016-04-21 04:45:00,,,28.5847 +2016-04-21 04:54:41,3539.0,31.4625, +2016-04-21 05:00:00,,,28.6355 +2016-04-21 05:09:35,3537.0,31.5179, +2016-04-21 05:15:00,,,28.5821 +2016-04-21 05:24:29,3537.0,31.5179, +2016-04-21 05:30:00,,,28.6329 +2016-04-21 05:39:23,3537.0,31.5179, +2016-04-21 05:45:00,,,28.5314 +2016-04-21 05:54:17,3536.0,31.5179, +2016-04-21 06:00:00,,,28.5796 +2016-04-21 06:09:11,3535.0,31.5095, +2016-04-21 06:15:00,,,28.5821 +2016-04-21 06:24:05,3534.0,31.5123, +2016-04-21 06:30:00,,,28.5821 +2016-04-21 06:39:07,3535.0,31.5123, +2016-04-21 06:45:00,,,28.6329 +2016-04-21 06:54:01,3536.0,31.4569, +2016-04-21 07:00:00,,,28.6355 +2016-04-21 07:08:55,3536.0,31.5039, +2016-04-21 07:15:00,,,28.6355 +2016-04-21 07:23:49,3537.0,31.5011, +2016-04-21 07:30:00,,,28.5821 +2016-04-21 07:38:43,3539.0,31.3905, +2016-04-21 07:45:00,,,28.5339 +2016-04-21 07:53:37,3543.0,31.4457, +2016-04-21 08:00:00,,,28.5821 +2016-04-21 08:08:32,3545.0,31.5011, +2016-04-21 08:15:00,,,28.5796 +2016-04-21 08:23:26,3549.0,31.5011, +2016-04-21 08:30:00,,,28.5796 +2016-04-21 08:38:28,3553.0,31.3354, +2016-04-21 08:45:00,,,28.5289 +2016-04-21 08:53:22,3557.0,31.3905, +2016-04-21 09:00:00,,,28.5847 +2016-04-21 09:08:17,3562.0,31.3905, +2016-04-21 09:15:00,,,28.5314 +2016-04-21 09:23:12,3566.0,31.5011, +2016-04-21 09:30:00,,,28.5289 +2016-04-21 09:38:07,3572.0,31.5565, +2016-04-21 09:45:00,,,28.5289 +2016-04-21 09:53:02,3577.0,31.5565, +2016-04-21 10:00:00,,,28.5289 +2016-04-21 10:07:57,3581.0,31.5565, +2016-04-21 10:15:00,,,28.5796 +2016-04-21 10:22:52,3585.0,31.5011, +2016-04-21 10:30:00,,,28.5314 +2016-04-21 10:37:48,3588.0,31.5565, +2016-04-21 10:45:00,,,28.5289 +2016-04-21 10:52:43,3592.0,31.5565, +2016-04-21 11:00:00,,,28.5314 +2016-04-21 11:07:38,3594.0,31.5011, +2016-04-21 11:15:00,,,28.4782 +2016-04-21 11:22:34,3595.0,31.6121, +2016-04-21 11:30:00,,,28.5314 +2016-04-21 11:37:29,3596.0,31.5565, +2016-04-21 11:45:00,,,28.5289 +2016-04-21 11:52:25,3598.0,31.5565, +2016-04-21 12:00:00,,,28.5289 +2016-04-21 12:07:20,3598.0,31.5011, +2016-04-21 12:15:00,,,28.4807 +2016-04-21 12:22:16,3598.0,31.6177, +2016-04-21 12:30:00,,,28.4706 +2016-04-21 12:37:11,3598.0,31.5067, +2016-04-21 12:45:00,,,28.5289 +2016-04-21 12:52:07,3598.0,31.5649, +2016-04-21 13:00:00,,,28.5289 +2016-04-21 13:07:02,3598.0,31.5705, +2016-04-21 13:15:00,,,28.5289 +2016-04-21 13:21:57,3598.0,31.5179, +2016-04-21 13:30:00,,,28.5314 +2016-04-21 13:36:53,3599.0,31.5151, +2016-04-21 13:45:00,,,28.5213 +2016-04-21 13:51:48,3599.0,31.5705, +2016-04-21 14:00:00,,,28.4706 +2016-04-21 14:06:44,3599.0,31.4625, +2016-04-21 14:15:00,,,28.5213 +2016-04-21 14:21:40,3599.0,31.5789, +2016-04-21 14:30:00,,,28.5213 +2016-04-21 14:36:35,3599.0,31.5235, +2016-04-21 14:45:00,,,28.5314 +2016-04-21 14:51:31,3599.0,31.5235, +2016-04-21 15:00:00,,,28.5314 +2016-04-21 15:06:27,3599.0,31.5789, +2016-04-21 15:15:00,,,28.5213 +2016-04-21 15:21:22,3599.0,31.5319, +2016-04-21 15:30:00,,,28.5213 +2016-04-21 15:36:18,3599.0,31.5347, +2016-04-21 15:45:00,,,28.5213 +2016-04-21 15:51:13,3599.0,31.5403, +2016-04-21 16:00:00,,,28.5213 +2016-04-21 16:06:09,3599.0,31.5958, +2016-04-21 16:15:00,,,28.5213 +2016-04-21 16:21:04,3599.0,31.4295, +2016-04-21 16:30:00,,,28.5745 +2016-04-21 16:36:00,3599.0,31.6014, +2016-04-21 16:45:00,,,28.5213 +2016-04-21 16:50:55,3599.0,31.6014, +2016-04-21 17:00:00,,,28.5213 +2016-04-21 17:05:51,3599.0,31.6598, +2016-04-21 17:15:00,,,28.5238 +2016-04-21 17:20:46,3599.0,31.5487, +2016-04-21 17:30:00,,,28.5238 +2016-04-21 17:35:42,3599.0,31.6042, +2016-04-21 17:45:00,,,28.5238 +2016-04-21 17:50:37,3599.0,31.6598, +2016-04-21 18:00:00,,,28.5213 +2016-04-21 18:05:32,3599.0,31.5459, +2016-04-21 18:15:00,,,28.5213 +2016-04-21 18:20:28,3599.0,31.5459, +2016-04-21 18:30:00,,,28.5213 +2016-04-21 18:35:23,3599.0,31.6042, +2016-04-21 18:45:00,,,28.5213 +2016-04-21 18:50:18,3598.0,31.6126, +2016-04-21 19:00:00,,,28.572 +2016-04-21 19:05:14,3598.0,31.5571, +2016-04-21 19:15:00,,,28.5213 +2016-04-21 19:20:09,3598.0,31.6126, +2016-04-21 19:30:00,,,28.5238 +2016-04-21 19:35:04,3597.0,31.6683, +2016-04-21 19:45:00,,,28.5745 +2016-04-21 19:49:59,3595.0,31.4463, +2016-04-21 20:00:00,,,28.5238 +2016-04-21 20:04:54,3593.0,31.6683, +2016-04-21 20:15:00,,,28.5238 +2016-04-21 20:19:49,3591.0,31.4546, +2016-04-21 20:30:00,,,28.572 +2016-04-21 20:34:44,3588.0,31.391, +2016-04-21 20:45:00,,,28.5238 +2016-04-21 20:49:39,3587.0,31.4435, +2016-04-21 21:00:00,,,28.5796 +2016-04-21 21:04:34,3585.0,31.4463, +2016-04-21 21:15:00,,,28.5238 +2016-04-21 21:19:29,3583.0,31.51, +2016-04-21 21:30:00,,,28.5745 +2016-04-21 21:34:24,3581.0,31.3359, +2016-04-21 21:45:00,,,28.5821 +2016-04-21 21:49:19,3579.0,31.391, +2016-04-21 22:00:00,,,28.5314 +2016-04-21 22:04:14,3577.0,31.4463, +2016-04-21 22:15:00,,,28.5314 +2016-04-21 22:19:09,3576.0,31.391, +2016-04-21 22:30:00,,,28.6329 +2016-04-21 22:34:04,3574.0,31.3883, +2016-04-21 22:45:00,,,28.6329 +2016-04-21 22:48:59,3573.0,31.391, +2016-04-21 23:00:00,,,28.5289 +2016-04-21 23:03:53,3572.0,31.4932, +2016-04-21 23:15:00,,,28.5314 +2016-04-21 23:18:48,3571.0,31.4463, +2016-04-21 23:30:00,,,28.5821 +2016-04-21 23:33:43,3569.0,31.3827, +2016-04-21 23:45:00,,,28.5289 +2016-04-21 23:48:37,3568.0,31.5487, +2016-04-22 00:00:00,,,28.5339 +2016-04-22 00:03:32,3566.0,31.496, +2016-04-22 00:15:00,,,28.5847 +2016-04-22 00:18:27,3566.0,31.4379, +2016-04-22 00:30:00,,,28.5821 +2016-04-22 00:33:21,3564.0,31.3799, +2016-04-22 00:45:00,,,28.5314 +2016-04-22 00:48:16,3563.0,31.3827, +2016-04-22 01:00:00,,,28.5821 +2016-04-22 01:03:11,3562.0,31.3827, +2016-04-22 01:15:00,,,28.5339 +2016-04-22 01:18:05,3561.0,31.2726, +2016-04-22 01:30:00,,,28.5796 +2016-04-22 01:33:00,3559.0,31.4379, +2016-04-22 01:45:00,,,28.5821 +2016-04-22 01:47:54,3559.0,31.5487, +2016-04-22 02:00:00,,,28.5821 +2016-04-22 02:02:49,3558.0,31.4323, +2016-04-22 02:15:00,,,28.6355 +2016-04-22 02:17:43,3556.0,31.5431, +2016-04-22 02:30:00,,,28.5796 +2016-04-22 02:32:37,3556.0,31.4848, +2016-04-22 02:45:00,,,28.6329 +2016-04-22 02:47:32,3555.0,31.5431, +2016-04-22 03:00:00,,,28.5847 +2016-04-22 03:02:26,3554.0,31.482, +2016-04-22 03:15:00,,,28.5289 +2016-04-22 03:17:21,3552.0,31.4323, +2016-04-22 03:30:00,,,28.5847 +2016-04-22 03:32:15,3552.0,31.4295, +2016-04-22 03:45:00,,,28.6304 +2016-04-22 03:47:10,3551.0,31.4323, +2016-04-22 04:00:00,,,28.6355 +2016-04-22 04:02:04,3550.0,31.3771, +2016-04-22 04:15:00,,,28.5847 +2016-04-22 04:16:59,3549.0,31.267, +2016-04-22 04:30:00,,,28.6304 +2016-04-22 04:31:53,3549.0,31.3688, +2016-04-22 04:45:00,,,28.5847 +2016-04-22 04:46:48,3548.0,31.3137, +2016-04-22 05:00:00,,,28.5796 +2016-04-22 05:01:42,3546.0,31.3688, +2016-04-22 05:15:00,,,28.5821 +2016-04-22 05:16:37,3545.0,31.3109, +2016-04-22 05:30:00,,,28.5821 +2016-04-22 05:31:31,3545.0,31.4156, +2016-04-22 05:45:00,,,28.5339 +2016-04-22 05:46:26,3545.0,31.3576, +2016-04-22 06:00:00,,,28.5796 +2016-04-22 06:01:20,3545.0,31.4128, +2016-04-22 06:15:00,,,28.6355 +2016-04-22 06:16:14,3545.0,31.3576, +2016-04-22 06:30:00,,,28.6329 +2016-04-22 06:31:09,3544.0,31.3053, +2016-04-22 06:45:00,,,28.5821 +2016-04-22 06:46:03,3544.0,31.4128, +2016-04-22 07:00:00,,,28.6304 +2016-04-22 07:00:58,3545.0,31.2504, +2016-04-22 07:15:00,,,28.4807 +2016-04-22 07:15:52,3545.0,31.3026, +2016-04-22 07:30:00,,,28.5821 +2016-04-22 07:30:47,3547.0,31.3521, +2016-04-22 07:45:00,,,28.5796 +2016-04-22 07:45:41,3549.0,31.4072, +2016-04-22 08:00:00,,,28.5796 +2016-04-22 08:00:36,3551.0,31.297, +2016-04-22 08:15:00,,,28.6329 +2016-04-22 08:15:30,3553.0,31.1872, +2016-04-22 08:30:00,,,28.4327 +2016-04-22 08:30:25,3556.0,31.297, +2016-04-22 08:45:00,,,28.4302 +2016-04-22 08:45:19,3559.0,31.3521, +2016-04-22 09:00:00,,,28.4302 +2016-04-22 09:00:14,3563.0,31.4072, +2016-04-22 09:15:00,,,28.3797 +2016-04-22 09:15:09,3566.0,31.4072, +2016-04-22 09:30:00,,,28.3772 +2016-04-22 09:30:04,3570.0,31.242, +2016-04-22 09:44:59,3574.0,31.5179, +2016-04-22 09:45:00,,,28.4277 +2016-04-22 09:59:54,3577.0,31.3521, +2016-04-22 10:00:00,,,28.3823 +2016-04-22 10:14:49,3581.0,31.3521, +2016-04-22 10:15:00,,,28.3772 +2016-04-22 10:29:44,3584.0,31.4044, +2016-04-22 10:30:00,,,28.3797 +2016-04-22 10:44:40,3586.0,31.4044, +2016-04-22 10:45:00,,,28.3797 +2016-04-22 10:59:35,3588.0,31.3493, +2016-04-22 11:00:00,,,28.3772 +2016-04-22 11:14:30,3591.0,31.4044, +2016-04-22 11:15:00,,,28.3797 +2016-04-22 11:29:25,3592.0,31.297, +2016-04-22 11:30:00,,,28.3772 +2016-04-22 11:44:21,3593.0,31.4597, +2016-04-22 11:45:00,,,28.3772 +2016-04-22 11:59:16,3593.0,31.4597, +2016-04-22 12:00:00,,,28.3772 +2016-04-22 12:14:11,3594.0,31.4597, +2016-04-22 12:15:00,,,28.3772 +2016-04-22 12:29:07,3594.0,31.4044, +2016-04-22 12:30:00,,,28.4302 +2016-04-22 12:44:02,3595.0,31.4681, +2016-04-22 12:45:00,,,28.3797 +2016-04-22 12:58:57,3595.0,31.3576, +2016-04-22 13:00:00,,,28.3797 +2016-04-22 13:13:53,3596.0,31.3576, +2016-04-22 13:15:00,,,28.4277 +2016-04-22 13:28:48,3597.0,31.4709, +2016-04-22 13:30:00,,,28.3772 +2016-04-22 13:43:43,3597.0,31.5235, +2016-04-22 13:45:00,,,28.3772 +2016-04-22 13:58:38,3598.0,31.4681, +2016-04-22 14:00:00,,,28.3797 +2016-04-22 14:13:34,3598.0,31.4765, +2016-04-22 14:15:00,,,28.3269 +2016-04-22 14:28:29,3598.0,31.4239, +2016-04-22 14:30:00,,,28.3772 +2016-04-22 14:43:24,3598.0,31.366, +2016-04-22 14:45:00,,,28.3797 +2016-04-22 14:58:20,3598.0,31.4876, +2016-04-22 15:00:00,,,28.3772 +2016-04-22 15:13:15,3598.0,31.4876, +2016-04-22 15:15:00,,,28.3772 +2016-04-22 15:28:10,3598.0,31.4267, +2016-04-22 15:30:00,,,28.3823 +2016-04-22 15:43:06,3598.0,31.4295, +2016-04-22 15:45:00,,,28.3797 +2016-04-22 15:58:01,3598.0,31.5431, +2016-04-22 16:00:00,,,28.3772 +2016-04-22 16:12:56,3598.0,31.4323, +2016-04-22 16:15:00,,,28.3772 +2016-04-22 16:27:51,3598.0,31.5431, +2016-04-22 16:30:00,,,28.3772 +2016-04-22 16:42:47,3598.0,31.4932, +2016-04-22 16:45:00,,,28.3772 +2016-04-22 16:57:42,3598.0,31.4904, +2016-04-22 17:00:00,,,28.3772 +2016-04-22 17:12:37,3598.0,31.4379, +2016-04-22 17:15:00,,,28.3772 +2016-04-22 17:27:32,3597.0,31.4932, +2016-04-22 17:30:00,,,28.3772 +2016-04-22 17:42:27,3596.0,31.4932, +2016-04-22 17:45:00,,,28.3772 +2016-04-22 17:57:22,3595.0,31.3827, +2016-04-22 18:00:00,,,28.4302 +2016-04-22 18:12:18,3595.0,31.4351, +2016-04-22 18:15:00,,,28.3797 +2016-04-22 18:27:13,3595.0,31.5487, +2016-04-22 18:30:00,,,28.3823 +2016-04-22 18:42:08,3594.0,31.4932, +2016-04-22 18:45:00,,,28.3772 +2016-04-22 18:57:03,3593.0,31.4463, +2016-04-22 19:00:00,,,28.4302 +2016-04-22 19:11:57,3591.0,31.4463, +2016-04-22 19:15:00,,,28.3797 +2016-04-22 19:26:52,3590.0,31.4463, +2016-04-22 19:30:00,,,28.3797 +2016-04-22 19:41:47,3588.0,31.5571, +2016-04-22 19:45:00,,,28.4782 +2016-04-22 19:56:42,3587.0,31.5571, +2016-04-22 20:00:00,,,28.3797 +2016-04-22 20:11:37,3586.0,31.5016, +2016-04-22 20:15:00,,,28.3294 +2016-04-22 20:26:32,3585.0,31.5571, +2016-04-22 20:30:00,,,28.3772 +2016-04-22 20:41:27,3583.0,31.391, +2016-04-22 20:45:00,,,28.4302 +2016-04-22 20:56:22,3582.0,31.4463, +2016-04-22 21:00:00,,,28.3797 +2016-04-22 21:11:16,3580.0,31.6126, +2016-04-22 21:15:00,,,28.3772 +2016-04-22 21:26:11,3578.0,31.5016, +2016-04-22 21:30:00,,,28.3797 +2016-04-22 21:41:06,3577.0,31.391, +2016-04-22 21:45:00,,,28.4302 +2016-04-22 21:56:01,3576.0,31.4379, +2016-04-22 22:00:00,,,28.4782 +2016-04-22 22:10:55,3574.0,31.3359, +2016-04-22 22:15:00,,,28.3823 +2016-04-22 22:25:50,3574.0,31.4379, +2016-04-22 22:30:00,,,28.4302 +2016-04-22 22:40:45,3572.0,31.4379, +2016-04-22 22:45:00,,,28.3797 +2016-04-22 22:55:40,3571.0,31.3276, +2016-04-22 23:00:00,,,28.3797 +2016-04-22 23:10:34,3570.0,31.4379, +2016-04-22 23:15:00,,,28.4782 +2016-04-22 23:25:29,3569.0,31.4379, +2016-04-22 23:30:00,,,28.4782 +2016-04-22 23:40:24,3567.0,31.5487, +2016-04-22 23:45:00,,,28.4782 +2016-04-22 23:55:18,3566.0,31.4932, +2016-04-23 00:00:00,,,28.4327 +2016-04-23 00:15:00,,, +2016-04-23 00:30:00,,, +2016-04-23 00:45:00,,, +2016-04-23 01:00:00,,, +2016-04-23 01:09:52,3559.0,31.4379, +2016-04-23 01:15:00,,,28.4782 +2016-04-23 01:24:46,3558.0,31.2177, +2016-04-23 01:30:00,,,28.3797 +2016-04-23 01:39:41,3557.0,31.3743, +2016-04-23 01:45:00,,,28.4782 +2016-04-23 01:54:35,3556.0,31.322, +2016-04-23 02:00:00,,,28.4807 +2016-04-23 02:09:30,3555.0,31.0999, +2016-04-23 02:15:00,,,28.3772 +2016-04-23 02:24:25,3553.0,31.3771, +2016-04-23 02:30:00,,,28.4782 +2016-04-23 02:39:19,3552.0,31.2642, +2016-04-23 02:45:00,,,28.3797 +2016-04-23 02:54:14,3552.0,31.2121, +2016-04-23 03:00:00,,,28.3823 +2016-04-23 03:09:08,3551.0,31.1573, +2016-04-23 03:15:00,,,28.4782 +2016-04-23 03:24:02,3550.0,31.267, +2016-04-23 03:30:00,,,28.3823 +2016-04-23 03:38:56,3550.0,31.2121, +2016-04-23 03:45:00,,,28.4277 +2016-04-23 03:53:51,3550.0,31.3771, +2016-04-23 04:00:00,,,28.4833 +2016-04-23 04:08:45,3550.0,31.3688, +2016-04-23 04:15:00,,,28.4782 +2016-04-23 04:23:40,3549.0,31.3109, +2016-04-23 04:30:00,,,28.3797 +2016-04-23 04:38:34,3549.0,31.3137, +2016-04-23 04:45:00,,,28.4909 +2016-04-23 04:53:29,3549.0,31.0916, +2016-04-23 05:00:00,,,28.4277 +2016-04-23 05:08:23,3548.0,31.0861, +2016-04-23 05:15:00,,,28.3823 +2016-04-23 05:23:18,3548.0,31.149, +2016-04-23 05:30:00,,,28.4277 +2016-04-23 05:38:12,3547.0,31.1955, +2016-04-23 05:45:00,,,28.4327 +2016-04-23 05:53:07,3547.0,31.1955, +2016-04-23 06:00:00,,,28.4302 +2016-04-23 06:08:01,3546.0,31.3026, +2016-04-23 06:15:00,,,28.4327 +2016-04-23 06:22:56,3546.0,31.1407, +2016-04-23 06:30:00,,,28.4302 +2016-04-23 06:37:50,3546.0,31.3026, +2016-04-23 06:45:00,,,28.4302 +2016-04-23 06:52:45,3545.0,31.1927, +2016-04-23 07:00:00,,,28.3848 +2016-04-23 07:07:39,3546.0,31.1955, +2016-04-23 07:15:00,,,28.4302 +2016-04-23 07:22:34,3547.0,31.3053, +2016-04-23 07:30:00,,,28.4302 +2016-04-23 07:37:28,3548.0,31.1955, +2016-04-23 07:45:00,,,28.3797 +2016-04-23 07:52:23,3549.0,31.1872, +2016-04-23 08:00:00,,,28.4807 +2016-04-23 08:07:17,3550.0,31.2998, +2016-04-23 08:15:00,,,28.3823 +2016-04-23 08:22:12,3551.0,31.297, +2016-04-23 08:30:00,,,28.3772 +2016-04-23 08:37:06,3553.0,31.2476, +2016-04-23 08:45:00,,,28.4782 +2016-04-23 08:52:01,3554.0,31.1872, +2016-04-23 09:00:00,,,28.3797 +2016-04-23 09:06:55,3556.0,31.0778, +2016-04-23 09:15:00,,,28.4302 +2016-04-23 09:21:57,3557.0,31.1872, +2016-04-23 09:30:00,,,28.3797 +2016-04-23 09:36:52,3559.0,31.1872, +2016-04-23 09:45:00,,,28.4277 +2016-04-23 09:51:47,3562.0,31.242, +2016-04-23 10:00:00,,,28.4833 +2016-04-23 10:06:41,3564.0,31.297, +2016-04-23 10:15:00,,,28.4302 +2016-04-23 10:21:36,3566.0,31.297, +2016-04-23 10:30:00,,,28.4807 +2016-04-23 10:36:31,3567.0,31.297, +2016-04-23 10:45:00,,,28.4302 +2016-04-23 10:51:26,3568.0,31.297, +2016-04-23 11:00:00,,,28.3772 +2016-04-23 11:06:21,3569.0,31.297, +2016-04-23 11:15:00,,,28.4807 +2016-04-23 11:21:23,3571.0,31.1872, +2016-04-23 11:30:00,,,28.4302 +2016-04-23 11:36:18,3571.0,31.297, +2016-04-23 11:45:00,,,28.3772 +2016-04-23 11:51:13,3571.0,31.2942, +2016-04-23 12:00:00,,,28.3823 +2016-04-23 12:06:08,3572.0,31.297, +2016-04-23 12:15:00,,,28.3797 +2016-04-23 12:21:02,3573.0,31.297, +2016-04-23 12:30:00,,,28.3797 +2016-04-23 12:35:57,3573.0,31.2942, +2016-04-23 12:45:00,,,28.3823 +2016-04-23 12:50:52,3574.0,31.297, +2016-04-23 13:00:00,,,28.3772 +2016-04-23 13:05:47,3574.0,31.3521, +2016-04-23 13:15:00,,,28.3823 +2016-04-23 13:20:42,3575.0,31.3493, +2016-04-23 13:30:00,,,28.4807 +2016-04-23 13:35:37,3575.0,31.297, +2016-04-23 13:45:00,,,28.3797 +2016-04-23 13:50:32,3577.0,31.1872, +2016-04-23 14:00:00,,,28.4277 +2016-04-23 14:05:26,3577.0,31.297, +2016-04-23 14:15:00,,,28.4302 +2016-04-23 14:20:21,3578.0,31.1872, +2016-04-23 14:30:00,,,28.3797 +2016-04-23 14:35:16,3579.0,31.242, +2016-04-23 14:45:00,,,28.3772 +2016-04-23 14:50:11,3578.0,31.2942, +2016-04-23 15:00:00,,,28.4302 +2016-04-23 15:05:06,3579.0,31.297, +2016-04-23 15:15:00,,,28.4277 +2016-04-23 15:20:01,3578.0,31.242, +2016-04-23 15:30:00,,,28.3797 +2016-04-23 15:34:56,3578.0,31.297, +2016-04-23 15:45:00,,,28.3772 +2016-04-23 15:49:51,3578.0,31.3026, +2016-04-23 16:00:00,,,28.4302 +2016-04-23 16:04:46,3578.0,31.242, +2016-04-23 16:15:00,,,28.3797 +2016-04-23 16:19:41,3578.0,31.1927, +2016-04-23 16:30:00,,,28.4807 +2016-04-23 16:34:35,3577.0,31.3026, +2016-04-23 16:45:00,,,28.3772 +2016-04-23 16:49:30,3577.0,31.3053, +2016-04-23 17:00:00,,,28.3772 +2016-04-23 17:04:25,3577.0,31.3053, +2016-04-23 17:15:00,,,28.4277 +2016-04-23 17:19:20,3576.0,31.3026, +2016-04-23 17:30:00,,,28.4277 +2016-04-23 17:34:14,3575.0,31.2476, +2016-04-23 17:45:00,,,28.4327 +2016-04-23 17:49:09,3575.0,31.2504, +2016-04-23 18:00:00,,,28.3797 +2016-04-23 18:04:04,3574.0,31.3053, +2016-04-23 18:15:00,,,28.4302 +2016-04-23 18:18:59,3574.0,31.3576, +2016-04-23 18:30:00,,,28.4302 +2016-04-23 18:33:54,3573.0,31.3026, +2016-04-23 18:45:00,,,28.4302 +2016-04-23 18:48:48,3572.0,31.3604, +2016-04-23 19:00:00,,,28.3797 +2016-04-23 19:03:43,3570.0,31.3026, +2016-04-23 19:15:00,,,28.4302 +2016-04-23 19:18:38,3568.0,31.3053, +2016-04-23 19:30:00,,,28.4782 +2016-04-23 19:33:32,3566.0,31.2476, +2016-04-23 19:45:00,,,28.4277 +2016-04-23 19:48:27,3565.0,31.3026, +2016-04-23 20:00:00,,,28.4302 +2016-04-23 20:03:22,3563.0,31.1927, +2016-04-23 20:15:00,,,28.3823 +2016-04-23 20:18:16,3561.0,31.2504, +2016-04-23 20:30:00,,,28.4277 +2016-04-23 20:33:11,3559.0,31.3026, +2016-04-23 20:45:00,,,28.4807 +2016-04-23 20:48:05,3557.0,31.1324, +2016-04-23 21:00:00,,,28.4302 +2016-04-23 21:03:00,3555.0,31.2942, +2016-04-23 21:15:00,,,28.3797 +2016-04-23 21:17:54,3553.0,31.242, +2016-04-23 21:30:00,,,28.2816 +2016-04-23 21:32:48,3552.0,31.1324, +2016-04-23 21:45:00,,,28.2791 +2016-04-23 21:47:42,3550.0,31.1324, +2016-04-23 22:00:00,,,28.2766 +2016-04-23 22:02:37,3549.0,31.1324, +2016-04-23 22:15:00,,,28.2791 +2016-04-23 22:17:31,3548.0,31.1872, +2016-04-23 22:30:00,,,28.2791 +2016-04-23 22:32:25,3546.0,31.297, +2016-04-23 22:45:00,,,28.2791 +2016-04-23 22:47:19,3545.0,31.0778, +2016-04-23 23:00:00,,,28.2791 +2016-04-23 23:02:13,3545.0,31.1872, +2016-04-23 23:15:00,,,28.2791 +2016-04-23 23:17:08,3543.0,31.1872, +2016-04-23 23:30:00,,,28.2791 +2016-04-23 23:32:02,3542.0,31.1324, +2016-04-23 23:45:00,,,28.3319 +2016-04-23 23:46:56,3540.0,31.1844, +2016-04-24 00:00:00,,,28.3294 +2016-04-24 00:01:51,3539.0,31.1789, +2016-04-24 00:15:00,,,28.2816 +2016-04-24 00:16:45,3537.0,31.1817, +2016-04-24 00:30:00,,,28.2791 +2016-04-24 00:31:39,3537.0,31.1789, +2016-04-24 00:45:00,,,28.3269 +2016-04-24 00:46:33,3536.0,31.2914, +2016-04-24 01:00:00,,,28.3294 +2016-04-24 01:01:30,3536.0,31.1159, +2016-04-24 01:15:00,,,28.3294 +2016-04-24 01:16:25,3535.0,31.2282, +2016-04-24 01:30:00,,,28.2816 +2016-04-24 01:31:19,3534.0,31.2282, +2016-04-24 01:45:00,,,28.2791 +2016-04-24 01:46:13,3533.0,31.1706, +2016-04-24 02:00:00,,,28.3319 +2016-04-24 02:01:08,3533.0,31.1734, +2016-04-24 02:15:00,,,28.3319 +2016-04-24 02:16:02,3532.0,31.1706, +2016-04-24 02:30:00,,,28.2791 +2016-04-24 02:30:56,3532.0,31.2803, +2016-04-24 02:45:00,,,28.2791 +2016-04-24 02:45:50,3531.0,31.1706, +2016-04-24 03:00:00,,,28.3294 +2016-04-24 03:00:44,3531.0,31.2748, +2016-04-24 03:15:00,,,28.3269 +2016-04-24 03:15:38,3531.0,31.2199, +2016-04-24 03:30:00,,,28.2816 +2016-04-24 03:30:32,3530.0,31.272, +2016-04-24 03:45:00,,,28.2791 +2016-04-24 03:45:27,3530.0,31.1651, +2016-04-24 04:00:00,,,28.3319 +2016-04-24 04:00:21,3529.0,31.327, +2016-04-24 04:15:00,,,28.2791 +2016-04-24 04:15:15,3528.0,31.2748, +2016-04-24 04:30:00,,,28.3319 +2016-04-24 04:30:09,3527.0,31.1651, +2016-04-24 04:45:00,,,28.2716 +2016-04-24 04:45:03,3526.0,31.272, +2016-04-24 04:59:57,3526.0,31.154, +2016-04-24 05:00:00,,,28.3319 +2016-04-24 05:14:51,3524.0,31.2088, +2016-04-24 05:15:00,,,28.2791 +2016-04-24 05:29:46,3524.0,31.2088, +2016-04-24 05:30:00,,,28.2791 +2016-04-24 05:44:40,3523.0,31.154, +2016-04-24 05:45:00,,,28.2716 +2016-04-24 05:59:34,3523.0,31.3187, +2016-04-24 06:00:00,,,28.2741 +2016-04-24 06:14:28,3523.0,31.2581, +2016-04-24 06:15:00,,,28.3244 +2016-04-24 06:29:23,3523.0,31.2005, +2016-04-24 06:30:00,,,28.2816 +2016-04-24 06:44:17,3525.0,31.1457, +2016-04-24 06:45:00,,,28.3218 +2016-04-24 06:59:11,3526.0,31.1374, +2016-04-24 07:00:00,,,28.2791 +2016-04-24 07:14:05,3528.0,31.1922, +2016-04-24 07:15:00,,,28.2716 +2016-04-24 07:29:00,3530.0,31.0827, +2016-04-24 07:30:00,,,28.2716 +2016-04-24 07:43:54,3531.0,31.247, +2016-04-24 07:45:00,,,28.2816 +2016-04-24 07:58:48,3534.0,31.0827, +2016-04-24 08:00:00,,,28.3244 +2016-04-24 08:13:43,3535.0,31.1374, +2016-04-24 08:15:00,,,28.3244 +2016-04-24 08:28:37,3537.0,31.1374, +2016-04-24 08:30:00,,,28.2741 +2016-04-24 08:43:31,3538.0,31.247, +2016-04-24 08:45:00,,,28.3244 +2016-04-24 08:58:26,3539.0,31.247, +2016-04-24 09:00:00,,,28.3244 +2016-04-24 09:13:20,3541.0,31.302, +2016-04-24 09:15:00,,,28.3218 +2016-04-24 09:28:14,3544.0,31.1374, +2016-04-24 09:30:00,,,28.3218 +2016-04-24 09:43:09,3546.0,31.1374, +2016-04-24 09:45:00,,,28.2691 +2016-04-24 09:58:04,3549.0,31.1374, +2016-04-24 10:00:00,,,28.2691 +2016-04-24 10:12:58,3551.0,30.9737, +2016-04-24 10:15:00,,,28.3143 +2016-04-24 10:27:53,3553.0,31.0309, +2016-04-24 10:30:00,,,28.3269 +2016-04-24 10:42:47,3556.0,31.1374, +2016-04-24 10:45:00,,,28.2641 +2016-04-24 10:57:42,3557.0,31.302, +2016-04-24 11:00:00,,,28.2716 +2016-04-24 11:12:37,3559.0,31.1374, +2016-04-24 11:15:00,,,28.2641 +2016-04-24 11:27:31,3559.0,31.247, +2016-04-24 11:30:00,,,28.2139 +2016-04-24 11:42:26,3560.0,31.2443, +2016-04-24 11:45:00,,,28.2716 +2016-04-24 11:57:21,3561.0,31.1402, +2016-04-24 12:00:00,,,28.2641 +2016-04-24 12:12:15,3562.0,31.1374, +2016-04-24 12:15:00,,,28.2641 +2016-04-24 12:27:10,3564.0,31.1922, +2016-04-24 12:30:00,,,28.2666 +2016-04-24 12:42:05,3565.0,31.2498, +2016-04-24 12:45:00,,,28.2641 +2016-04-24 12:56:59,3566.0,31.302, +2016-04-24 13:00:00,,,28.3143 +2016-04-24 13:11:54,3567.0,31.0827, +2016-04-24 13:15:00,,,28.2641 +2016-04-24 13:26:49,3570.0,31.1374, +2016-04-24 13:30:00,,,28.2641 +2016-04-24 13:41:44,3572.0,31.1374, +2016-04-24 13:45:00,,,28.2666 +2016-04-24 13:56:39,3574.0,31.247, +2016-04-24 14:00:00,,,28.2641 +2016-04-24 14:11:34,3577.0,31.1374, +2016-04-24 14:15:00,,,28.2641 +2016-04-24 14:26:29,3577.0,30.9737, +2016-04-24 14:30:00,,,28.2139 +2016-04-24 14:41:24,3577.0,31.0282, +2016-04-24 14:45:00,,,28.2666 +2016-04-24 14:56:19,3577.0,31.0827, +2016-04-24 15:00:00,,,28.2666 +2016-04-24 15:11:13,3577.0,31.0282, +2016-04-24 15:15:00,,,28.2641 +2016-04-24 15:26:08,3575.0,31.0282, +2016-04-24 15:30:00,,,28.2164 +2016-04-24 15:41:03,3573.0,31.0365, +2016-04-24 15:45:00,,,28.2666 +2016-04-24 15:55:58,3571.0,31.091, +2016-04-24 16:00:00,,,28.2666 +2016-04-24 16:10:53,3569.0,31.0365, +2016-04-24 16:15:00,,,28.2139 +2016-04-24 16:25:47,3568.0,31.0365, +2016-04-24 16:30:00,,,28.2164 +2016-04-24 16:40:49,3566.0,31.091, +2016-04-24 16:45:00,,,28.2641 +2016-04-24 16:55:44,3566.0,31.0447, +2016-04-24 17:00:00,,,28.2641 +2016-04-24 17:10:39,3566.0,31.0965, +2016-04-24 17:15:00,,,28.2666 +2016-04-24 17:25:33,3565.0,31.0447, +2016-04-24 17:30:00,,,28.2641 +2016-04-24 17:40:28,3565.0,31.0447, +2016-04-24 17:45:00,,,28.2641 +2016-04-24 17:55:23,3564.0,30.8816, +2016-04-24 18:00:00,,,28.2641 +2016-04-24 18:10:18,3564.0,31.042, +2016-04-24 18:15:00,,,28.2641 +2016-04-24 18:25:13,3562.0,31.0447, +2016-04-24 18:30:00,,,28.2666 +2016-04-24 18:40:07,3560.0,31.0447, +2016-04-24 18:45:00,,,28.2139 +2016-04-24 18:55:02,3559.0,31.0993, +2016-04-24 19:00:00,,,28.2641 +2016-04-24 19:09:57,3557.0,30.993, +2016-04-24 19:15:00,,,28.2641 +2016-04-24 19:24:52,3555.0,30.8788, +2016-04-24 19:30:00,,,28.3168 +2016-04-24 19:39:46,3553.0,30.8816, +2016-04-24 19:45:00,,,28.2641 +2016-04-24 19:54:41,3551.0,31.0447, +2016-04-24 20:00:00,,,28.3168 +2016-04-24 20:09:35,3549.0,30.8816, +2016-04-24 20:15:00,,,28.3143 +2016-04-24 20:24:30,3547.0,30.982, +2016-04-24 20:30:00,,,28.3143 +2016-04-24 20:39:24,3545.0,31.0365, +2016-04-24 20:45:00,,,28.2641 +2016-04-24 20:54:19,3543.0,30.982, +2016-04-24 21:00:00,,,28.2565 +2016-04-24 21:09:13,3541.0,31.0365, +2016-04-24 21:15:00,,,28.2641 +2016-04-24 21:24:07,3539.0,30.982, +2016-04-24 21:30:00,,,28.2666 +2016-04-24 21:39:01,3537.0,30.982, +2016-04-24 21:45:00,,,28.2666 +2016-04-24 21:53:56,3536.0,30.9276, +2016-04-24 22:00:00,,,28.3068 +2016-04-24 22:08:50,3535.0,30.9194, +2016-04-24 22:15:00,,,28.2641 +2016-04-24 22:23:44,3532.0,31.0309, +2016-04-24 22:30:00,,,28.2641 +2016-04-24 22:38:38,3531.0,30.9765, +2016-04-24 22:45:00,,,28.3093 +2016-04-24 22:53:33,3530.0,31.0827, +2016-04-24 23:00:00,,,28.2641 +2016-04-24 23:08:27,3529.0,31.0282, +2016-04-24 23:15:00,,,28.2666 +2016-04-24 23:23:21,3528.0,31.0309, +2016-04-24 23:30:00,,,28.3143 +2016-04-24 23:38:16,3527.0,31.0282, +2016-04-24 23:45:00,,,28.3168 +2016-04-24 23:53:10,3526.0,30.9194, +2016-04-25 00:00:00,,,28.3168 +2016-04-25 00:08:04,3524.0,31.0827, +2016-04-25 00:15:00,,,28.3093 +2016-04-25 00:22:58,3523.0,31.0282, +2016-04-25 00:30:00,,,28.3068 +2016-04-25 00:37:52,3523.0,30.9737, +2016-04-25 00:45:00,,,28.3143 +2016-04-25 00:52:46,3522.0,31.1374, +2016-04-25 01:00:00,,,28.3093 +2016-04-25 01:07:41,3522.0,31.1374, +2016-04-25 01:15:00,,,28.259 +2016-04-25 01:22:35,3521.0,31.0827, +2016-04-25 01:30:00,,,28.2089 +2016-04-25 01:37:29,3521.0,30.9221, +2016-04-25 01:45:00,,,28.2565 +2016-04-25 01:52:24,3521.0,30.9682, +2016-04-25 02:00:00,,,28.259 +2016-04-25 02:07:18,3520.0,31.0227, +2016-04-25 02:15:00,,,28.2565 +2016-04-25 02:22:12,3520.0,31.0772, +2016-04-25 02:30:00,,,28.259 +2016-04-25 02:37:06,3519.0,31.1319, +2016-04-25 02:45:00,,,28.2565 +2016-04-25 02:52:00,3518.0,31.06900000000001, +2016-04-25 03:00:00,,,28.259 +2016-04-25 03:06:54,3518.0,31.0144, +2016-04-25 03:15:00,,,28.3093 +2016-04-25 03:21:48,3518.0,31.0144, +2016-04-25 03:30:00,,,28.3093 +2016-04-25 03:36:43,3517.0,30.96, +2016-04-25 03:45:00,,,28.259 +2016-04-25 03:51:37,3517.0,31.0144, +2016-04-25 04:00:00,,,28.3093 +2016-04-25 04:06:31,3517.0,31.0062, +2016-04-25 04:15:00,,,28.3068 +2016-04-25 04:21:25,3517.0,31.0607, +2016-04-25 04:30:00,,,28.2565 +2016-04-25 04:36:19,3516.0,31.0062, +2016-04-25 04:45:00,,,28.3068 +2016-04-25 04:51:13,3516.0,31.0062, +2016-04-25 05:00:00,,,28.259 +2016-04-25 05:06:07,3516.0,31.0607, +2016-04-25 05:15:00,,,28.259 +2016-04-25 05:21:01,3516.0,31.1153, +2016-04-25 05:30:00,,,28.259 +2016-04-25 05:35:55,3516.0,31.0034, +2016-04-25 05:45:00,,,28.3068 +2016-04-25 05:50:49,3516.0,31.0062, +2016-04-25 06:00:00,,,28.3093 +2016-04-25 06:05:43,3516.0,31.0062, +2016-04-25 06:15:00,,,28.259 +2016-04-25 06:20:37,3516.0,31.0062, +2016-04-25 06:30:00,,,28.2565 +2016-04-25 06:35:31,3517.0,30.9518, +2016-04-25 06:45:00,,,28.3093 +2016-04-25 06:50:26,3518.0,31.0062, +2016-04-25 07:00:00,,,28.3093 +2016-04-25 07:05:20,3520.0,30.9518, +2016-04-25 07:15:00,,,28.2565 +2016-04-25 07:20:14,3521.0,30.9979, +2016-04-25 07:30:00,,,28.2565 +2016-04-25 07:35:08,3523.0,30.9518, +2016-04-25 07:45:00,,,28.259 +2016-04-25 07:50:02,3527.0,31.0524, +2016-04-25 08:00:00,,,28.3068 +2016-04-25 08:04:57,3529.0,30.9979, +2016-04-25 08:15:00,,,28.3068 +2016-04-25 08:19:51,3531.0,30.8865, +2016-04-25 08:30:00,,,28.2565 +2016-04-25 08:34:45,3535.0,30.9435, +2016-04-25 08:45:00,,,28.3068 +2016-04-25 08:49:39,3538.0,31.0524, +2016-04-25 09:00:00,,,28.3068 +2016-04-25 09:04:34,3543.0,30.881, +2016-04-25 09:15:00,,,28.2565 +2016-04-25 09:19:28,3546.0,30.9952, +2016-04-25 09:30:00,,,28.3068 +2016-04-25 09:34:23,3550.0,31.0442, +2016-04-25 09:45:00,,,28.2064 +2016-04-25 09:49:17,3553.0,30.8865, +2016-04-25 10:00:00,,,28.259 +2016-04-25 10:04:12,3556.0,30.8268, +2016-04-25 10:15:00,,,28.2565 +2016-04-25 10:19:06,3558.0,30.9353, +2016-04-25 10:30:00,,,28.2465 +2016-04-25 10:34:01,3560.0,30.8892, +2016-04-25 10:45:00,,,28.249 +2016-04-25 10:48:55,3563.0,31.0524, +2016-04-25 11:00:00,,,28.249 +2016-04-25 11:03:50,3564.0,30.9952, +2016-04-25 11:15:00,,,28.2992 +2016-04-25 11:18:45,3565.0,30.8892, +2016-04-25 11:30:00,,,28.249 +2016-04-25 11:33:39,3566.0,31.0524, +2016-04-25 11:45:00,,,28.2992 +2016-04-25 11:48:34,3566.0,30.9979, +2016-04-25 12:00:00,,,28.2039 +2016-04-25 12:03:29,3566.0,30.9952, +2016-04-25 12:15:00,,,28.249 +2016-04-25 12:18:23,3567.0,30.9435, +2016-04-25 12:30:00,,,28.2014 +2016-04-25 12:33:18,3567.0,30.9435, +2016-04-25 12:45:00,,,28.249 +2016-04-25 12:48:13,3569.0,30.9979, +2016-04-25 13:00:00,,,28.1488 +2016-04-25 13:03:07,3570.0,31.1125, +2016-04-25 13:15:00,,,28.249 +2016-04-25 13:18:02,3571.0,31.0034, +2016-04-25 13:30:00,,,28.249 +2016-04-25 13:32:57,3572.0,31.1153, +2016-04-25 13:45:00,,,28.249 +2016-04-25 13:47:52,3574.0,31.0034, +2016-04-25 14:00:00,,,28.2415 +2016-04-25 14:02:46,3576.0,30.949, +2016-04-25 14:15:00,,,28.2415 +2016-04-25 14:17:41,3577.0,31.0607, +2016-04-25 14:30:00,,,28.2515 +2016-04-25 14:32:36,3578.0,31.0034, +2016-04-25 14:45:00,,,28.3495 +2016-04-25 14:47:31,3578.0,30.8947, +2016-04-25 15:00:00,,,28.2415 +2016-04-25 15:02:26,3578.0,30.949, +2016-04-25 15:15:00,,,28.2415 +2016-04-25 15:17:21,3578.0,31.1153, +2016-04-25 15:30:00,,,28.1414 +2016-04-25 15:32:16,3578.0,31.0062, +2016-04-25 15:45:00,,,28.249 +2016-04-25 15:47:11,3577.0,31.0062, +2016-04-25 16:00:00,,,28.244 +2016-04-25 16:02:06,3578.0,31.0579, +2016-04-25 16:15:00,,,28.2415 +2016-04-25 16:17:01,3577.0,31.0034, +2016-04-25 16:30:00,,,28.2917 +2016-04-25 16:31:56,3577.0,31.1236, +2016-04-25 16:45:00,,,28.2415 +2016-04-25 16:46:51,3577.0,31.06900000000001, +2016-04-25 17:00:00,,,28.2415 +2016-04-25 17:01:45,3576.0,31.0662, +2016-04-25 17:15:00,,,28.1939 +2016-04-25 17:16:40,3576.0,31.0144, +2016-04-25 17:30:00,,,28.2415 +2016-04-25 17:31:35,3575.0,31.0662, +2016-04-25 17:45:00,,,28.2415 +2016-04-25 17:46:30,3574.0,30.9057, +2016-04-25 18:00:00,,,28.2415 +2016-04-25 18:01:25,3574.0,30.9112, +2016-04-25 18:15:00,,,28.2415 +2016-04-25 18:16:20,3574.0,31.1291, +2016-04-25 18:30:00,,,28.2415 +2016-04-25 18:31:14,3573.0,31.0199, +2016-04-25 18:45:00,,,28.2415 +2016-04-25 18:46:09,3572.0,31.0772, +2016-04-25 19:00:00,,,28.2415 +2016-04-25 19:01:04,3571.0,31.0227, +2016-04-25 19:15:00,,,28.244 +2016-04-25 19:15:58,3570.0,31.0745, +2016-04-25 19:30:00,,,28.244 +2016-04-25 19:30:53,3569.0,31.0772, +2016-04-25 19:45:00,,,28.2415 +2016-04-25 19:45:48,3568.0,31.0227, +2016-04-25 20:00:00,,,28.2917 +2016-04-25 20:00:42,3566.0,31.0227, +2016-04-25 20:15:00,,,28.2415 +2016-04-25 20:15:37,3565.0,30.9139, +2016-04-25 20:30:00,,,28.2415 +2016-04-25 20:30:32,3564.0,31.0772, +2016-04-25 20:45:00,,,28.2415 +2016-04-25 20:45:26,3563.0,30.9112, +2016-04-25 21:00:00,,,28.2415 +2016-04-25 21:00:28,3561.0,30.9139, +2016-04-25 21:15:00,,,28.2917 +2016-04-25 21:15:23,3559.0,30.9112, +2016-04-25 21:30:00,,,28.244 +2016-04-25 21:30:17,3559.0,31.1319, +2016-04-25 21:45:00,,,28.2415 +2016-04-25 21:45:12,3558.0,31.0199, +2016-04-25 22:00:00,,,28.244 +2016-04-25 22:00:06,3557.0,31.0745, +2016-04-25 22:15:00,,,28.2415 +2016-04-25 22:15:01,3556.0,31.0745, +2016-04-25 22:29:55,3555.0,31.0227, +2016-04-25 22:30:00,,,28.244 +2016-04-25 22:44:50,3554.0,30.9139, +2016-04-25 22:45:00,,,28.2892 +2016-04-25 22:59:44,3552.0,30.9084, +2016-04-25 23:00:00,,,28.2967 +2016-04-25 23:14:38,3551.0,30.9139, +2016-04-25 23:15:00,,,28.244 +2016-04-25 23:29:33,3550.0,31.0772, +2016-04-25 23:30:00,,,28.2415 +2016-04-25 23:44:28,3549.0,31.0117, +2016-04-25 23:45:00,,,28.2917 +2016-04-25 23:59:22,3548.0,30.9029, +2016-04-26 00:00:00,,,28.2415 +2016-04-26 00:14:17,3548.0,31.0662, +2016-04-26 00:15:00,,,28.2942 +2016-04-26 00:29:11,3546.0,30.9057, +2016-04-26 00:30:00,,,28.234 +2016-04-26 00:44:06,3545.0,30.9572, +2016-04-26 00:45:00,,,28.2917 +2016-04-26 00:59:00,3545.0,31.0144, +2016-04-26 01:00:00,,,28.2917 +2016-04-26 01:13:55,3545.0,30.9029, +2016-04-26 01:15:00,,,28.244 +2016-04-26 01:28:49,3545.0,31.0144, +2016-04-26 01:30:00,,,28.2365 +2016-04-26 01:43:43,3545.0,31.0144, +2016-04-26 01:45:00,,,28.2917 +2016-04-26 01:58:38,3544.0,31.0144, +2016-04-26 02:00:00,,,28.2365 +2016-04-26 02:13:32,3544.0,30.9057, +2016-04-26 02:15:00,,,28.2365 +2016-04-26 02:28:27,3543.0,31.0144, +2016-04-26 02:30:00,,,28.2917 +2016-04-26 02:43:21,3543.0,30.8432, +2016-04-26 02:45:00,,,28.2415 +2016-04-26 02:58:15,3542.0,30.9518, +2016-04-26 03:00:00,,,28.2365 +2016-04-26 03:13:10,3542.0,31.0607, +2016-04-26 03:15:00,,,28.2867 +2016-04-26 03:28:04,3542.0,31.0607, +2016-04-26 03:30:00,,,28.2917 +2016-04-26 03:42:59,3541.0,30.8947, +2016-04-26 03:45:00,,,28.234 +2016-04-26 03:57:53,3540.0,31.0607, +2016-04-26 04:00:00,,,28.2415 +2016-04-26 04:12:48,3540.0,31.0062, +2016-04-26 04:15:00,,,28.1864 +2016-04-26 04:27:42,3539.0,30.949, +2016-04-26 04:30:00,,,28.2867 +2016-04-26 04:42:37,3537.0,31.0062, +2016-04-26 04:45:00,,,28.1864 +2016-04-26 04:57:31,3537.0,31.0607, +2016-04-26 05:00:00,,,28.2415 +2016-04-26 05:12:26,3536.0,31.0034, +2016-04-26 05:15:00,,,28.2415 +2016-04-26 05:27:20,3536.0,31.0607, +2016-04-26 05:30:00,,,28.2365 +2016-04-26 05:42:14,3536.0,30.9518, +2016-04-26 05:45:00,,,28.2917 +2016-04-26 05:57:08,3535.0,30.949, +2016-04-26 06:00:00,,,28.2867 +2016-04-26 06:12:03,3534.0,31.0607, +2016-04-26 06:15:00,,,28.2365 +2016-04-26 06:26:57,3534.0,30.949, +2016-04-26 06:30:00,,,28.2365 +2016-04-26 06:41:51,3533.0,31.0062, +2016-04-26 06:45:00,,,28.2917 +2016-04-26 06:56:45,3533.0,31.0062, +2016-04-26 07:00:00,,,28.2465 +2016-04-26 07:11:40,3533.0,31.0034, +2016-04-26 07:15:00,,,28.2365 +2016-04-26 07:26:34,3533.0,31.1153, +2016-04-26 07:30:00,,,28.2917 +2016-04-26 07:41:28,3533.0,30.8974, +2016-04-26 07:45:00,,,28.2365 +2016-04-26 07:56:23,3535.0,30.9518, +2016-04-26 08:00:00,,,28.2365 +2016-04-26 08:11:17,3536.0,31.0034, +2016-04-26 08:15:00,,,28.2365 +2016-04-26 08:26:12,3537.0,30.8947, +2016-04-26 08:30:00,,,28.1864 +2016-04-26 08:41:06,3539.0,30.9518, +2016-04-26 08:45:00,,,28.1864 +2016-04-26 08:56:01,3542.0,30.8974, +2016-04-26 09:00:00,,,28.2867 +2016-04-26 09:10:55,3544.0,31.0034, +2016-04-26 09:15:00,,,28.2365 +2016-04-26 09:25:50,3546.0,30.8865, +2016-04-26 09:30:00,,,28.2365 +2016-04-26 09:40:44,3549.0,30.9435, +2016-04-26 09:45:00,,,28.2365 +2016-04-26 09:55:39,3551.0,30.9435, +2016-04-26 10:00:00,,,28.2867 +2016-04-26 10:10:34,3553.0,30.9435, +2016-04-26 10:15:00,,,28.234 +2016-04-26 10:25:29,3555.0,30.9979, +2016-04-26 10:30:00,,,28.2365 +2016-04-26 10:40:24,3557.0,30.8323, +2016-04-26 10:45:00,,,28.2315 +2016-04-26 10:55:18,3559.0,30.8865, +2016-04-26 11:00:00,,,28.2365 +2016-04-26 11:10:13,3559.0,30.8323, +2016-04-26 11:15:00,,,28.2817 +2016-04-26 11:25:08,3561.0,30.8892, +2016-04-26 11:30:00,,,28.1864 +2016-04-26 11:40:03,3563.0,31.0034, +2016-04-26 11:45:00,,,28.234 +2016-04-26 11:54:58,3564.0,30.835, +2016-04-26 12:00:00,,,28.1364 +2016-04-26 12:09:53,3566.0,30.835, +2016-04-26 12:15:00,,,28.2365 +2016-04-26 12:24:47,3566.0,31.0062, +2016-04-26 12:30:00,,,28.2365 +2016-04-26 12:39:42,3567.0,31.0579, +2016-04-26 12:45:00,,,28.234 +2016-04-26 12:54:37,3569.0,30.9518, +2016-04-26 13:00:00,,,28.1864 +2016-04-26 13:09:31,3570.0,31.0034, +2016-04-26 13:15:00,,,28.1364 +2016-04-26 13:24:26,3571.0,31.0034, +2016-04-26 13:30:00,,,28.2842 +2016-04-26 13:39:21,3572.0,31.0034, +2016-04-26 13:45:00,,,28.2365 +2016-04-26 13:54:16,3572.0,31.0579, +2016-04-26 14:00:00,,,28.2365 +2016-04-26 14:09:11,3572.0,31.0579, +2016-04-26 14:15:00,,,28.1364 +2016-04-26 14:24:06,3571.0,31.0579, +2016-04-26 14:30:00,,,28.1864 +2016-04-26 14:39:01,3571.0,31.0034, +2016-04-26 14:45:00,,,28.234 +2016-04-26 14:53:55,3570.0,30.949, +2016-04-26 15:00:00,,,28.2365 +2016-04-26 15:08:50,3570.0,31.0607, +2016-04-26 15:15:00,,,28.2365 +2016-04-26 15:23:45,3568.0,31.0034, +2016-04-26 15:30:00,,,28.2365 +2016-04-26 15:38:39,3567.0,31.0034, +2016-04-26 15:45:00,,,28.234 +2016-04-26 15:53:34,3566.0,31.0062, +2016-04-26 16:00:00,,,28.2365 +2016-04-26 16:08:29,3565.0,31.1153, +2016-04-26 16:15:00,,,28.1864 +2016-04-26 16:23:24,3564.0,30.949, +2016-04-26 16:30:00,,,28.1864 +2016-04-26 16:38:19,3562.0,30.9518, +2016-04-26 16:45:00,,,28.2867 +2016-04-26 16:53:13,3560.0,30.8432, +2016-04-26 17:00:00,,,28.2867 +2016-04-26 17:08:08,3559.0,31.0607, +2016-04-26 17:15:00,,,28.1839 +2016-04-26 17:23:14,3556.0,31.0062, +2016-04-26 17:30:00,,,28.2867 +2016-04-26 17:38:46,3552.0,30.8405, +2016-04-26 17:45:00,,,28.2365 +2016-04-26 17:53:40,3551.0,31.0034, +2016-04-26 18:00:00,,,28.2365 +2016-04-26 18:08:35,3549.0,30.8432, +2016-04-26 18:15:00,,,28.2867 +2016-04-26 18:23:29,3549.0,31.0607, +2016-04-26 18:30:00,,,28.2365 +2016-04-26 18:38:24,3547.0,31.0034, +2016-04-26 18:45:00,,,28.2365 +2016-04-26 18:53:18,3546.0,30.9518, +2016-04-26 19:00:00,,,28.234 +2016-04-26 19:08:13,3545.0,31.0607, +2016-04-26 19:15:00,,,28.2867 +2016-04-26 19:23:07,3545.0,31.1153, +2016-04-26 19:30:00,,,28.1364 +2016-04-26 19:38:02,3545.0,31.1153, +2016-04-26 19:45:00,,,28.2365 +2016-04-26 19:52:56,3544.0,31.1673, +2016-04-26 20:00:00,,,28.2365 +2016-04-26 20:07:51,3543.0,31.1153, +2016-04-26 20:15:00,,,28.234 +2016-04-26 20:22:45,3542.0,31.1673, +2016-04-26 20:30:00,,,28.2365 +2016-04-26 20:37:40,3541.0,31.0607, +2016-04-26 20:45:00,,,28.1364 +2016-04-26 20:52:34,3539.0,31.2221, +2016-04-26 21:00:00,,,28.2867 +2016-04-26 21:07:28,3538.0,31.17, +2016-04-26 21:15:00,,,28.2842 +2016-04-26 21:22:23,3537.0,31.2249, +2016-04-26 21:30:00,,,28.2365 +2016-04-26 21:37:17,3537.0,31.0579, +2016-04-26 21:45:00,,,28.2867 +2016-04-26 21:52:12,3536.0,31.1153, +2016-04-26 22:00:00,,,28.2892 +2016-04-26 22:07:06,3536.0,31.1153, +2016-04-26 22:15:00,,,28.2365 +2016-04-26 22:22:00,3536.0,31.1153, +2016-04-26 22:30:00,,,28.2365 +2016-04-26 22:36:55,3536.0,31.1153, +2016-04-26 22:45:00,,,28.2365 +2016-04-26 22:51:49,3536.0,31.1125, +2016-04-26 23:00:00,,,28.2842 +2016-04-26 23:06:44,3537.0,31.0607, +2016-04-26 23:15:00,,,28.234 +2016-04-26 23:21:38,3537.0,31.0607, +2016-04-26 23:30:00,,,28.2365 +2016-04-26 23:36:32,3537.0,31.2249, +2016-04-26 23:45:00,,,28.2365 +2016-04-26 23:51:27,3537.0,31.107, +2016-04-27 00:00:00,,,28.2867 +2016-04-27 00:06:21,3537.0,31.0524, +2016-04-27 00:15:00,,,28.2842 +2016-04-27 00:21:15,3537.0,31.2166, +2016-04-27 00:30:00,,,28.1864 +2016-04-27 00:36:10,3537.0,31.1617, +2016-04-27 00:45:00,,,28.2365 +2016-04-27 00:51:04,3537.0,31.2166, +2016-04-27 01:00:00,,,28.1839 +2016-04-27 01:05:58,3537.0,31.1617, +2016-04-27 01:15:00,,,28.2365 +2016-04-27 01:20:52,3537.0,31.0524, +2016-04-27 01:30:00,,,28.234 +2016-04-27 01:35:47,3537.0,31.1617, +2016-04-27 01:45:00,,,28.1864 +2016-04-27 01:50:41,3537.0,30.9897, +2016-04-27 02:00:00,,,28.2365 +2016-04-27 02:05:35,3536.0,31.107, +2016-04-27 02:15:00,,,28.2365 +2016-04-27 02:20:29,3536.0,31.1015, +2016-04-27 02:30:00,,,28.2315 +2016-04-27 02:35:23,3537.0,31.0987, +2016-04-27 02:45:00,,,28.2867 +2016-04-27 02:50:17,3536.0,31.0987, +2016-04-27 03:00:00,,,28.2365 +2016-04-27 03:05:22,3536.0,31.1534, +2016-04-27 03:15:00,,,28.2867 +2016-04-27 03:20:55,3536.0,31.1534, +2016-04-27 03:30:00,,,28.2867 +2016-04-27 03:35:49,3536.0,31.0987, +2016-04-27 03:45:00,,,28.1864 +2016-04-27 03:50:43,3537.0,31.1015, +2016-04-27 04:00:00,,,28.234 +2016-04-27 04:05:38,3537.0,31.0442, +2016-04-27 04:15:00,,,28.2867 +2016-04-27 04:20:32,3537.0,31.0469, +2016-04-27 04:30:00,,,28.2365 +2016-04-27 04:35:26,3537.0,31.0877, +2016-04-27 04:45:00,,,28.2365 +2016-04-27 04:50:21,3537.0,31.0386, +2016-04-27 05:00:00,,,28.2365 +2016-04-27 05:05:15,3538.0,31.0905, +2016-04-27 05:15:00,,,28.2867 +2016-04-27 05:20:10,3538.0,31.1999, +2016-04-27 05:30:00,,,28.2365 +2016-04-27 05:35:04,3538.0,31.0932, +2016-04-27 05:45:00,,,28.1864 +2016-04-27 05:49:59,3538.0,31.0932, +2016-04-27 06:00:00,,,28.2842 +2016-04-27 06:04:53,3538.0,31.0331, +2016-04-27 06:15:00,,,28.234 +2016-04-27 06:19:47,3538.0,31.0905, +2016-04-27 06:30:00,,,28.2365 +2016-04-27 06:34:41,3539.0,31.0386, +2016-04-27 06:45:00,,,28.234 +2016-04-27 06:49:36,3539.0,31.0905, +2016-04-27 07:00:00,,,28.1864 +2016-04-27 07:04:30,3540.0,31.0359, +2016-04-27 07:15:00,,,28.234 +2016-04-27 07:19:25,3540.0,31.0359, +2016-04-27 07:30:00,,,28.234 +2016-04-27 07:34:19,3541.0,31.0905, +2016-04-27 07:45:00,,,28.2867 +2016-04-27 07:49:14,3542.0,30.9814, +2016-04-27 08:00:00,,,28.2365 +2016-04-27 08:04:08,3543.0,31.1999, +2016-04-27 08:15:00,,,28.2365 +2016-04-27 08:19:10,3544.0,31.0359, +2016-04-27 08:30:00,,,28.2365 +2016-04-27 08:34:04,3545.0,31.0331, +2016-04-27 08:45:00,,,28.1864 +2016-04-27 08:48:59,3546.0,31.0905, +2016-04-27 09:00:00,,,28.2365 +2016-04-27 09:03:53,3549.0,31.0331, +2016-04-27 09:15:00,,,28.2842 +2016-04-27 09:18:48,3550.0,31.0331, +2016-04-27 09:30:00,,,28.234 +2016-04-27 09:33:43,3551.0,31.0331, +2016-04-27 09:45:00,,,28.1864 +2016-04-27 09:48:37,3552.0,31.2027, +2016-04-27 10:00:00,,,28.2315 +2016-04-27 10:03:31,3552.0,31.0877, +2016-04-27 10:15:00,,,28.2265 +2016-04-27 10:18:26,3553.0,31.0932, +2016-04-27 10:30:00,,,28.1864 +2016-04-27 10:33:21,3553.0,31.1424, +2016-04-27 10:45:00,,,28.1889 +2016-04-27 10:48:15,3554.0,31.1999, +2016-04-27 11:00:00,,,28.229 +2016-04-27 11:03:10,3554.0,31.0386, +2016-04-27 11:15:00,,,28.1864 +2016-04-27 11:18:05,3554.0,31.0877, +2016-04-27 11:30:00,,,28.2365 +2016-04-27 11:32:59,3555.0,31.0331, +2016-04-27 11:45:00,,,28.1789 +2016-04-27 11:48:01,3554.0,31.0877, +2016-04-27 12:00:00,,,28.1364 +2016-04-27 12:02:56,3554.0,31.1999, +2016-04-27 12:15:00,,,28.2791 +2016-04-27 12:17:50,3555.0,30.9814, +2016-04-27 12:30:00,,,28.1789 +2016-04-27 12:32:45,3555.0,31.0386, +2016-04-27 12:45:00,,,28.1864 +2016-04-27 12:47:40,3556.0,31.0359, +2016-04-27 13:00:00,,,28.1764 +2016-04-27 13:02:35,3556.0,31.0877, +2016-04-27 13:15:00,,,28.1789 +2016-04-27 13:17:29,3557.0,31.0905, +2016-04-27 13:30:00,,,28.229 +2016-04-27 13:32:24,3557.0,30.9842, +2016-04-27 13:45:00,,,28.229 +2016-04-27 13:47:18,3557.0,31.0359, +2016-04-27 14:00:00,,,28.2265 +2016-04-27 14:02:13,3558.0,31.0359, +2016-04-27 14:15:00,,,28.2265 +2016-04-27 14:17:08,3557.0,31.0877, +2016-04-27 14:30:00,,,28.2791 +2016-04-27 14:32:03,3558.0,31.0905, +2016-04-27 14:45:00,,,28.2791 +2016-04-27 14:46:57,3558.0,31.0386, +2016-04-27 15:00:00,,,28.2791 +2016-04-27 15:01:52,3558.0,31.0331, +2016-04-27 15:15:00,,,28.2791 +2016-04-27 15:16:47,3558.0,31.0331, +2016-04-27 15:30:00,,,28.1789 +2016-04-27 15:31:42,3558.0,31.0877, +2016-04-27 15:45:00,,,28.1789 +2016-04-27 15:46:36,3557.0,31.1424, +2016-04-27 16:00:00,,,28.2265 +2016-04-27 16:01:31,3557.0,31.0877, +2016-04-27 16:15:00,,,28.2265 +2016-04-27 16:16:26,3557.0,31.0331, +2016-04-27 16:30:00,,,28.2239 +2016-04-27 16:31:20,3558.0,30.9814, +2016-04-27 16:45:00,,,28.1789 +2016-04-27 16:46:15,3558.0,31.0414, +2016-04-27 17:00:00,,,28.229 +2016-04-27 17:01:10,3557.0,31.0331, +2016-04-27 17:15:00,,,28.2791 +2016-04-27 17:16:04,3556.0,31.0469, +2016-04-27 17:30:00,,,28.1764 +2016-04-27 17:30:59,3555.0,31.2082, +2016-04-27 17:45:00,,,28.2265 +2016-04-27 17:45:54,3554.0,31.0469, +2016-04-27 18:00:00,,,28.2265 +2016-04-27 18:00:48,3553.0,30.9353, +2016-04-27 18:15:00,,,28.1764 +2016-04-27 18:15:43,3552.0,30.9869, +2016-04-27 18:30:00,,,28.1764 +2016-04-27 18:30:38,3552.0,30.9869, +2016-04-27 18:45:00,,,28.229 +2016-04-27 18:45:32,3551.0,31.0414, +2016-04-27 19:00:00,,,28.229 +2016-04-27 19:00:27,3551.0,30.9353, +2016-04-27 19:15:00,,,28.1789 +2016-04-27 19:15:22,3550.0,31.1015, +2016-04-27 19:30:00,,,28.229 +2016-04-27 19:30:16,3549.0,30.9924, +2016-04-27 19:45:00,,,28.229 +2016-04-27 19:45:10,3547.0,31.1015, +2016-04-27 20:00:00,,,28.1764 +2016-04-27 20:00:05,3545.0,31.0987, +2016-04-27 20:14:59,3544.0,31.0469, +2016-04-27 20:15:00,,,28.229 +2016-04-27 20:29:53,3543.0,31.3182, +2016-04-27 20:30:00,,,28.2265 +2016-04-27 20:44:48,3541.0,31.2631, +2016-04-27 20:45:00,,,28.229 +2016-04-27 20:59:42,3539.0,31.2082, +2016-04-27 21:00:00,,,28.2265 +2016-04-27 21:14:37,3537.0,31.2659, +2016-04-27 21:15:00,,,28.1764 +2016-04-27 21:29:31,3537.0,31.3182, +2016-04-27 21:30:00,,,28.229 +2016-04-27 21:44:25,3536.0,31.211, +2016-04-27 21:45:00,,,28.229 +2016-04-27 21:59:20,3535.0,31.3098, +2016-04-27 22:00:00,,,28.1264 +2016-04-27 22:14:14,3534.0,31.1999, +2016-04-27 22:15:00,,,28.4302 +2016-04-27 22:29:08,3533.0,31.1999, +2016-04-27 22:30:00,,,28.4732 +2016-04-27 22:44:03,3532.0,31.3098, +2016-04-27 22:45:00,,,28.3722 +2016-04-27 22:58:57,3532.0,31.2576, +2016-04-27 23:00:00,,,28.4302 +2016-04-27 23:13:52,3531.0,31.1999, +2016-04-27 23:15:00,,,28.3798 +2016-04-27 23:28:46,3530.0,31.2548, +2016-04-27 23:30:00,,,28.4302 +2016-04-27 23:43:40,3530.0,31.3126, +2016-04-27 23:45:00,,,28.3722 +2016-04-27 23:58:35,3529.0,31.2548, +2016-04-28 00:00:00,,,28.3294 +2016-04-28 00:13:29,3528.0,31.1999, +2016-04-28 00:15:00,,,28.3219 +2016-04-28 00:28:23,3528.0,31.2548, +2016-04-28 00:30:00,,,28.3722 +2016-04-28 00:43:17,3528.0,31.2548, +2016-04-28 00:45:00,,,28.4302 +2016-04-28 00:58:12,3527.0,31.1452, +2016-04-28 01:00:00,,,28.3194 +2016-04-28 01:13:06,3528.0,31.1999, +2016-04-28 01:15:00,,,28.3219 +2016-04-28 01:28:00,3527.0,31.2027, +2016-04-28 01:30:00,,,28.3722 +2016-04-28 01:42:54,3527.0,31.2027, +2016-04-28 01:45:00,,,28.3798 +2016-04-28 01:57:49,3527.0,31.2548, +2016-04-28 02:00:00,,,28.3219 +2016-04-28 02:12:43,3526.0,31.2576, +2016-04-28 02:15:00,,,28.4227 +2016-04-28 02:27:37,3526.0,31.2548, +2016-04-28 02:30:00,,,28.3294 +2016-04-28 02:42:31,3526.0,31.3126, +2016-04-28 02:45:00,,,28.4227 +2016-04-28 02:57:25,3525.0,31.1999, +2016-04-28 03:00:00,,,28.3798 +2016-04-28 03:12:19,3524.0,31.2576, +2016-04-28 03:15:00,,,28.4227 +2016-04-28 03:27:14,3524.0,31.2493, +2016-04-28 03:30:00,,,28.3219 +2016-04-28 03:42:08,3523.0,31.2493, +2016-04-28 03:45:00,,,28.4227 +2016-04-28 03:57:02,3523.0,31.1916, +2016-04-28 04:00:00,,,28.3219 +2016-04-28 04:11:57,3523.0,31.2493, +2016-04-28 04:15:00,,,28.4227 +2016-04-28 04:26:51,3522.0,31.2493, +2016-04-28 04:30:00,,,28.3722 +2016-04-28 04:41:45,3522.0,31.2493, +2016-04-28 04:45:00,,,28.3219 +2016-04-28 04:56:40,3522.0,31.3043, +2016-04-28 05:00:00,,,28.2716 +2016-04-28 05:11:34,3522.0,31.2959, +2016-04-28 05:15:00,,,28.3722 +2016-04-28 05:26:28,3521.0,31.1313, +2016-04-28 05:30:00,,,28.4227 +2016-04-28 05:41:22,3521.0,31.2959, +2016-04-28 05:45:00,,,28.3722 +2016-04-28 05:56:17,3522.0,31.5169, +2016-04-28 06:00:00,,,28.4201 +2016-04-28 06:11:11,3522.0,31.241, +2016-04-28 06:15:00,,,28.3722 +2016-04-28 06:26:05,3523.0,31.2959, +2016-04-28 06:30:00,,,28.4227 +2016-04-28 06:41:00,3524.0,31.2959, +2016-04-28 06:45:00,,,28.3219 +2016-04-28 06:55:54,3525.0,31.1778, +2016-04-28 07:00:00,,,28.3219 +2016-04-28 07:10:48,3527.0,31.175, +2016-04-28 07:15:00,,,28.3747 +2016-04-28 07:25:43,3529.0,31.2299, +2016-04-28 07:30:00,,,28.3722 +2016-04-28 07:40:37,3530.0,31.395, +2016-04-28 07:45:00,,,28.4227 +2016-04-28 07:55:31,3531.0,31.3399, +2016-04-28 08:00:00,,,28.3219 +2016-04-28 08:10:26,3534.0,31.2848, +2016-04-28 08:15:00,,,28.4201 +2016-04-28 08:25:20,3536.0,31.175, +2016-04-28 08:30:00,,,28.3219 +2016-04-28 08:40:14,3538.0,31.3399, +2016-04-28 08:45:00,,,28.3722 +2016-04-28 08:55:09,3542.0,31.3399, +2016-04-28 09:00:00,,,28.3143 +2016-04-28 09:10:03,3545.0,31.2848, +2016-04-28 09:15:00,,,28.3697 +2016-04-28 09:24:58,3548.0,31.2848, +2016-04-28 09:30:00,,,28.3219 +2016-04-28 09:39:53,3550.0,31.2848, +2016-04-28 09:45:00,,,28.3219 +2016-04-28 09:54:47,3554.0,31.395, +2016-04-28 10:00:00,,,28.3722 +2016-04-28 10:09:42,3556.0,31.2848, +2016-04-28 10:15:00,,,28.3194 +2016-04-28 10:24:37,3558.0,31.395, +2016-04-28 10:30:00,,,28.3622 +2016-04-28 10:39:32,3559.0,31.2299, +2016-04-28 10:45:00,,,28.3622 +2016-04-28 10:54:26,3560.0,31.395, +2016-04-28 11:00:00,,,28.4656 +2016-04-28 11:09:21,3561.0,31.2848, +2016-04-28 11:15:00,,,28.3143 +2016-04-28 11:24:16,3561.0,31.2848, +2016-04-28 11:30:00,,,28.3118 +2016-04-28 11:39:10,3563.0,31.2848, +2016-04-28 11:45:00,,,28.2641 +2016-04-28 11:54:05,3563.0,31.2382, +2016-04-28 12:00:00,,,28.3143 +2016-04-28 12:09:00,3563.0,31.2932, +2016-04-28 12:15:00,,,28.3143 +2016-04-28 12:23:55,3563.0,31.4062, +2016-04-28 12:30:00,,,28.3118 +2016-04-28 12:38:49,3564.0,31.4587, +2016-04-28 12:45:00,,,28.3143 +2016-04-28 12:53:44,3564.0,31.2382, +2016-04-28 13:00:00,,,28.4126 +2016-04-28 13:08:39,3566.0,31.241, +2016-04-28 13:15:00,,,28.2641 +2016-04-28 13:23:34,3569.0,31.2932, +2016-04-28 13:30:00,,,28.3143 +2016-04-28 13:38:29,3571.0,31.1916, +2016-04-28 13:45:00,,,28.3143 +2016-04-28 13:53:24,3573.0,31.4698, +2016-04-28 14:00:00,,,28.3622 +2016-04-28 14:08:19,3573.0,31.1916, +2016-04-28 14:15:00,,,28.4151 +2016-04-28 14:23:14,3573.0,31.1916, +2016-04-28 14:30:00,,,28.3647 +2016-04-28 14:38:09,3573.0,31.1916, +2016-04-28 14:45:00,,,28.3143 +2016-04-28 14:53:04,3573.0,31.2027, +2016-04-28 15:00:00,,,28.2641 +2016-04-28 15:07:59,3573.0,31.3098, +2016-04-28 15:15:00,,,28.3647 +2016-04-28 15:23:01,3573.0,31.3621, +2016-04-28 15:30:00,,,28.3622 +2016-04-28 15:37:56,3573.0,31.3649, +2016-04-28 15:45:00,,,28.2616 +2016-04-28 15:52:50,3573.0,31.3621, +2016-04-28 16:00:00,,,28.3143 +2016-04-28 16:07:45,3571.0,31.4173, +2016-04-28 16:15:00,,,28.4126 +2016-04-28 16:22:40,3569.0,31.4201, +2016-04-28 16:30:00,,,28.3647 +2016-04-28 16:37:35,3568.0,31.4201, +2016-04-28 16:45:00,,,28.3143 +2016-04-28 16:52:30,3566.0,31.3621, +2016-04-28 17:00:00,,,28.2641 +2016-04-28 17:07:24,3566.0,31.307, +2016-04-28 17:15:00,,,28.3143 +2016-04-28 17:22:19,3565.0,31.2521, +2016-04-28 17:30:00,,,28.3143 +2016-04-28 17:37:14,3565.0,31.4754, +2016-04-28 17:45:00,,,28.3143 +2016-04-28 17:52:09,3564.0,31.4201, +2016-04-28 18:00:00,,,28.3143 +2016-04-28 18:07:03,3563.0,31.3621, +2016-04-28 18:15:00,,,28.3647 +2016-04-28 18:21:58,3562.0,31.3733, +2016-04-28 18:30:00,,,28.3143 +2016-04-28 18:36:53,3561.0,31.3182, +2016-04-28 18:45:00,,,28.3143 +2016-04-28 18:51:48,3560.0,31.4285, +2016-04-28 19:00:00,,,28.2641 +2016-04-28 19:06:42,3559.0,31.3733, +2016-04-28 19:15:00,,,28.3118 +2016-04-28 19:21:36,3558.0,31.4285, +2016-04-28 19:30:00,,,28.3143 +2016-04-28 19:36:38,3557.0,31.3761, +2016-04-28 19:45:00,,,28.2616 +2016-04-28 19:51:33,3556.0,31.3705, +2016-04-28 20:00:00,,,28.4151 +2016-04-28 20:06:27,3555.0,31.2631, +2016-04-28 20:15:00,,,28.3143 +2016-04-28 20:21:22,3552.0,31.4257, +2016-04-28 20:30:00,,,28.3622 +2016-04-28 20:36:16,3551.0,31.5392, +2016-04-28 20:45:00,,,28.4126 +2016-04-28 20:51:11,3549.0,31.2659, +2016-04-28 21:00:00,,,28.4126 +2016-04-28 21:06:05,3547.0,31.3182, +2016-04-28 21:15:00,,,28.3143 +2016-04-28 21:21:00,3545.0,31.3182, +2016-04-28 21:30:00,,,28.3143 +2016-04-28 21:35:54,3544.0,31.3182, +2016-04-28 21:45:00,,,28.3143 +2016-04-28 21:50:49,3542.0,31.4313, +2016-04-28 22:00:00,,,28.3143 +2016-04-28 22:05:43,3540.0,31.3209, +2016-04-28 22:15:00,,,28.3143 +2016-04-28 22:20:38,3539.0,31.3209, +2016-04-28 22:30:00,,,28.4151 +2016-04-28 22:35:32,3537.0,31.3209, +2016-04-28 22:45:00,,,28.4151 +2016-04-28 22:50:33,3536.0,31.4201, +2016-04-28 23:00:00,,,28.4656 +2016-04-28 23:05:28,3535.0,31.3761, +2016-04-28 23:15:00,,,28.3647 +2016-04-28 23:20:22,3534.0,31.4201, +2016-04-28 23:30:00,,,28.3143 +2016-04-28 23:35:16,3531.0,31.4782, +2016-04-28 23:45:00,,,28.3647 +2016-04-28 23:50:11,3531.0,31.3098, +2016-04-29 00:00:00,,,28.3647 +2016-04-29 00:05:05,3530.0,31.4782, +2016-04-29 00:15:00,,,28.3647 +2016-04-29 00:20:00,3530.0,31.4201, +2016-04-29 00:30:00,,,28.4151 +2016-04-29 00:34:54,3529.0,31.3677, +2016-04-29 00:45:00,,,28.4656 +2016-04-29 00:49:48,3528.0,31.4173, +2016-04-29 01:00:00,,,28.3143 +2016-04-29 01:04:42,3527.0,31.4173, +2016-04-29 01:15:00,,,28.3143 +2016-04-29 01:19:36,3526.0,31.3649, +2016-04-29 01:30:00,,,28.4151 +2016-04-29 01:34:31,3525.0,31.3621, +2016-04-29 01:45:00,,,28.3143 +2016-04-29 01:49:25,3524.0,31.3649, +2016-04-29 02:00:00,,,28.4656 +2016-04-29 02:04:19,3523.0,31.4726, +2016-04-29 02:15:00,,,28.3672 +2016-04-29 02:19:14,3523.0,31.4782, +2016-04-29 02:30:00,,,28.5162 +2016-04-29 02:34:08,3523.0,31.4229, +2016-04-29 02:45:00,,,28.5137 +2016-04-29 02:49:03,3523.0,31.4229, +2016-04-29 03:00:00,,,28.4656 +2016-04-29 03:03:57,3522.0,31.4201, +2016-04-29 03:15:00,,,28.5162 +2016-04-29 03:18:51,3522.0,31.4201, +2016-04-29 03:30:00,,,28.4151 +2016-04-29 03:33:46,3522.0,31.4118, +2016-04-29 03:45:00,,,28.4656 +2016-04-29 03:48:40,3521.0,31.4145, +2016-04-29 04:00:00,,,28.4656 +2016-04-29 04:03:34,3521.0,31.4698, +2016-04-29 04:15:00,,,28.5162 +2016-04-29 04:18:29,3521.0,31.3594, +2016-04-29 04:30:00,,,28.3143 +2016-04-29 04:33:23,3521.0,31.3566, +2016-04-29 04:45:00,,,28.4656 +2016-04-29 04:48:17,3521.0,31.4698, +2016-04-29 05:00:00,,,28.4656 +2016-04-29 05:03:11,3521.0,31.3043, +2016-04-29 05:15:00,,,28.3143 +2016-04-29 05:18:06,3521.0,31.4062, +2016-04-29 05:30:00,,,28.4151 +2016-04-29 05:33:00,3520.0,31.351, +2016-04-29 05:45:00,,,28.3143 +2016-04-29 05:48:01,3520.0,31.5169, +2016-04-29 06:00:00,,,28.3647 +2016-04-29 06:02:56,3520.0,31.351, +2016-04-29 06:15:00,,,28.4656 +2016-04-29 06:17:50,3521.0,31.4062, +2016-04-29 06:30:00,,,28.3118 +2016-04-29 06:32:44,3521.0,31.395, +2016-04-29 06:45:00,,,28.4151 +2016-04-29 06:47:38,3522.0,31.395, +2016-04-29 07:00:00,,,28.4656 +2016-04-29 07:02:40,3524.0,31.395, +2016-04-29 07:15:00,,,28.4656 +2016-04-29 07:17:34,3526.0,31.3978, +2016-04-29 07:30:00,,,28.3143 +2016-04-29 07:32:28,3529.0,31.395, +2016-04-29 07:45:00,,,28.3143 +2016-04-29 07:47:23,3531.0,31.395, +2016-04-29 08:00:00,,,28.3143 +2016-04-29 08:02:17,3535.0,31.4503, +2016-04-29 08:15:00,,,28.3647 +2016-04-29 08:17:12,3539.0,31.395, +2016-04-29 08:30:00,,,28.2616 +2016-04-29 08:32:06,3544.0,31.2848, +2016-04-29 08:45:00,,,28.3143 +2016-04-29 08:47:01,3547.0,31.395, +2016-04-29 09:00:00,,,28.4151 +2016-04-29 09:01:56,3552.0,31.2848, +2016-04-29 09:15:00,,,28.3647 +2016-04-29 09:16:51,3556.0,31.2848, +2016-04-29 09:30:00,,,28.2641 +2016-04-29 09:31:46,3559.0,31.2848, +2016-04-29 09:45:00,,,28.2616 +2016-04-29 09:46:40,3563.0,31.2848, +2016-04-29 10:00:00,,,28.3143 +2016-04-29 10:01:35,3566.0,31.4503, +2016-04-29 10:15:00,,,28.3118 +2016-04-29 10:16:30,3571.0,31.3399, +2016-04-29 10:30:00,,,28.2641 +2016-04-29 10:31:25,3574.0,31.2848, +2016-04-29 10:45:00,,,28.3647 +2016-04-29 10:46:20,3575.0,31.395, +2016-04-29 11:00:00,,,28.2641 +2016-04-29 11:01:15,3577.0,31.2848, +2016-04-29 11:15:00,,,28.4151 +2016-04-29 11:16:10,3577.0,31.395, +2016-04-29 11:30:00,,,28.2641 +2016-04-29 11:31:05,3577.0,31.4034, +2016-04-29 11:45:00,,,28.2641 +2016-04-29 11:46:00,3577.0,31.4587, +2016-04-29 12:00:00,,,28.2616 +2016-04-29 12:00:55,3577.0,31.2932, +2016-04-29 12:15:00,,,28.3143 +2016-04-29 12:15:57,3577.0,31.1833, +2016-04-29 12:30:00,,,28.2616 +2016-04-29 12:30:52,3577.0,31.4034, +2016-04-29 12:45:00,,,28.3143 +2016-04-29 12:45:47,3577.0,31.2465, +2016-04-29 13:00:00,,,28.3143 +2016-04-29 13:00:42,3577.0,31.2465, +2016-04-29 13:15:00,,,28.3143 +2016-04-29 13:15:38,3578.0,31.1916, +2016-04-29 13:30:00,,,28.3143 +2016-04-29 13:30:33,3578.0,31.1916, +2016-04-29 13:45:00,,,28.3118 +2016-04-29 13:45:28,3578.0,31.2465, +2016-04-29 14:00:00,,,28.3118 +2016-04-29 14:00:23,3579.0,31.2521, +2016-04-29 14:15:00,,,28.2641 +2016-04-29 14:15:18,3580.0,31.1424, +2016-04-29 14:30:00,,,28.3118 +2016-04-29 14:30:13,3581.0,31.1972, +2016-04-29 14:45:00,,,28.3143 +2016-04-29 14:45:09,3582.0,31.1972, +2016-04-29 15:00:00,,,28.4126 +2016-04-29 15:00:04,3583.0,31.1972, +2016-04-29 15:14:59,3585.0,31.2027, +2016-04-29 15:15:00,,,28.3118 +2016-04-29 15:29:55,3586.0,31.3098, +2016-04-29 15:30:00,,,28.2616 +2016-04-29 15:44:50,3587.0,31.1999, +2016-04-29 15:45:00,,,28.2641 +2016-04-29 15:59:45,3587.0,31.2521, +2016-04-29 16:00:00,,,28.2616 +2016-04-29 16:14:40,3587.0,31.2521, +2016-04-29 16:15:00,,,28.2641 +2016-04-29 16:29:36,3588.0,31.2548, +2016-04-29 16:30:00,,,28.3647 +2016-04-29 16:44:31,3587.0,31.3154, +2016-04-29 16:45:00,,,28.3118 +2016-04-29 16:59:26,3587.0,31.2631, +2016-04-29 17:00:00,,,28.2641 +2016-04-29 17:14:21,3587.0,31.3209, +2016-04-29 17:15:00,,,28.2641 +2016-04-29 17:29:17,3587.0,31.2055, +2016-04-29 17:30:00,,,28.3118 +2016-04-29 17:44:12,3587.0,31.3237, +2016-04-29 17:45:00,,,28.3143 +2016-04-29 17:59:07,3587.0,31.3265, +2016-04-29 18:00:00,,,28.3118 +2016-04-29 18:14:02,3586.0,31.2687, +2016-04-29 18:15:00,,,28.3118 +2016-04-29 18:28:57,3586.0,31.3816, +2016-04-29 18:30:00,,,28.2641 +2016-04-29 18:43:53,3585.0,31.277, +2016-04-29 18:45:00,,,28.3118 +2016-04-29 18:58:48,3585.0,31.3348, +2016-04-29 19:00:00,,,28.2616 +2016-04-29 19:13:43,3584.0,31.2798, +2016-04-29 19:15:00,,,28.3143 +2016-04-29 19:28:38,3582.0,31.277, +2016-04-29 19:30:00,,,28.3118 +2016-04-29 19:43:40,3581.0,31.3348, +2016-04-29 19:45:00,,,28.3118 +2016-04-29 19:58:35,3580.0,31.2221, +2016-04-29 20:00:00,,,28.3143 +2016-04-29 20:13:30,3578.0,31.2798, +2016-04-29 20:15:00,,,28.2641 +2016-04-29 20:28:25,3576.0,31.4424, +2016-04-29 20:30:00,,,28.3622 +2016-04-29 20:43:20,3574.0,31.2798, +2016-04-29 20:45:00,,,28.3143 +2016-04-29 20:58:15,3573.0,31.2798, +2016-04-29 21:00:00,,,28.3143 +2016-04-29 21:13:10,3572.0,31.3348, +2016-04-29 21:15:00,,,28.3143 +2016-04-29 21:28:05,3570.0,31.3348, +2016-04-29 21:30:00,,,28.3143 +2016-04-29 21:43:00,3569.0,31.3321, +2016-04-29 21:45:00,,,28.4126 +2016-04-29 21:57:55,3567.0,31.2249, +2016-04-29 22:00:00,,,28.3143 +2016-04-29 22:12:50,3566.0,31.2221, +2016-04-29 22:15:00,,,28.2641 +2016-04-29 22:27:59,3566.0,31.277, +2016-04-29 22:30:00,,,28.3143 +2016-04-29 22:42:54,3564.0,31.2221, +2016-04-29 22:45:00,,,28.3143 +2016-04-29 22:57:49,3564.0,31.1153, +2016-04-29 23:00:00,,,28.3118 +2016-04-29 23:12:44,3564.0,31.39, +2016-04-29 23:15:00,,,28.3143 +2016-04-29 23:27:39,3563.0,31.277, +2016-04-29 23:30:00,,,28.3647 +2016-04-29 23:42:34,3562.0,31.277, +2016-04-29 23:45:00,,,28.3622 +2016-04-29 23:57:28,3561.0,31.2249, +2016-04-30 00:00:00,,,28.3118 +2016-04-30 00:12:23,3560.0,31.277, +2016-04-30 00:15:00,,,28.3647 +2016-04-30 00:27:18,3559.0,31.277, +2016-04-30 00:30:00,,,28.3143 +2016-04-30 00:42:13,3559.0,31.2221, +2016-04-30 00:45:00,,,28.3118 +2016-04-30 00:57:08,3559.0,31.277, +2016-04-30 01:00:00,,,28.3118 +2016-04-30 01:12:03,3558.0,31.2249, +2016-04-30 01:15:00,,,28.3647 +2016-04-30 01:26:57,3557.0,31.3321, +2016-04-30 01:30:00,,,28.3647 +2016-04-30 01:41:52,3557.0,31.17, +2016-04-30 01:45:00,,,28.3118 +2016-04-30 01:56:47,3556.0,31.2798, +2016-04-30 02:00:00,,,28.4126 +2016-04-30 02:11:42,3556.0,31.17, +2016-04-30 02:15:00,,,28.3143 +2016-04-30 02:26:36,3556.0,31.277, +2016-04-30 02:30:00,,,28.3118 +2016-04-30 02:41:31,3555.0,31.2249, +2016-04-30 02:45:00,,,28.3143 +2016-04-30 02:56:26,3554.0,31.1125, +2016-04-30 03:00:00,,,28.3118 +2016-04-30 03:11:20,3554.0,31.2221, +2016-04-30 03:15:00,,,28.3143 +2016-04-30 03:26:15,3553.0,31.277, +2016-04-30 03:30:00,,,28.3647 +2016-04-30 03:41:10,3552.0,31.1153, +2016-04-30 03:45:00,,,28.3143 +2016-04-30 03:56:05,3552.0,31.277, +2016-04-30 04:00:00,,,28.3118 +2016-04-30 04:11:00,3551.0,31.2249, +2016-04-30 04:15:00,,,28.3168 +2016-04-30 04:25:55,3550.0,31.2798, +2016-04-30 04:30:00,,,28.4126 +2016-04-30 04:40:49,3550.0,31.2221, +2016-04-30 04:45:00,,,28.3143 +2016-04-30 04:55:44,3550.0,31.3348, +2016-04-30 05:00:00,,,28.3143 +2016-04-30 05:10:39,3550.0,31.2221, +2016-04-30 05:15:00,,,28.3647 +2016-04-30 05:25:34,3550.0,31.2249, +2016-04-30 05:30:00,,,28.2641 +2016-04-30 05:40:28,3550.0,31.1125, +2016-04-30 05:45:00,,,28.3143 +2016-04-30 05:55:23,3550.0,31.1673, +2016-04-30 06:00:00,,,28.3622 +2016-04-30 06:10:18,3551.0,31.2249, +2016-04-30 06:15:00,,,28.3143 +2016-04-30 06:25:12,3551.0,31.1153, +2016-04-30 06:30:00,,,28.3143 +2016-04-30 06:40:07,3552.0,31.2798, +2016-04-30 06:45:00,,,28.4151 +2016-04-30 06:55:02,3553.0,31.2249, +2016-04-30 07:00:00,,,28.3143 +2016-04-30 07:09:56,3553.0,31.3348, +2016-04-30 07:15:00,,,28.3622 +2016-04-30 07:24:51,3555.0,31.2798, +2016-04-30 07:30:00,,,28.2641 +2016-04-30 07:39:46,3556.0,31.2221, +2016-04-30 07:45:00,,,28.4151 +2016-04-30 07:54:40,3557.0,31.2221, +2016-04-30 08:00:00,,,28.3143 +2016-04-30 08:09:35,3558.0,31.2221, +2016-04-30 08:15:00,,,28.3143 +2016-04-30 08:24:30,3559.0,31.2249, +2016-04-30 08:30:00,,,28.3143 +2016-04-30 08:39:25,3562.0,31.3321, +2016-04-30 08:45:00,,,28.3647 +2016-04-30 08:54:20,3564.0,31.1153, +2016-04-30 09:00:00,,,28.3143 +2016-04-30 09:09:15,3567.0,31.3348, +2016-04-30 09:15:00,,,28.2616 +2016-04-30 09:24:10,3570.0,31.3321, +2016-04-30 09:30:00,,,28.3118 +2016-04-30 09:39:05,3573.0,31.277, +2016-04-30 09:45:00,,,28.3143 +2016-04-30 09:54:00,3576.0,31.3321, +2016-04-30 10:00:00,,,28.3118 +2016-04-30 10:08:55,3579.0,31.277, +2016-04-30 10:15:00,,,28.2641 +2016-04-30 10:23:50,3583.0,31.3321, +2016-04-30 10:30:00,,,28.2616 +2016-04-30 10:38:53,3586.0,31.277, +2016-04-30 10:45:00,,,28.2616 +2016-04-30 10:53:48,3588.0,31.277, +2016-04-30 11:00:00,,,28.3118 +2016-04-30 11:08:44,3592.0,31.2221, +2016-04-30 11:15:00,,,28.3118 +2016-04-30 11:23:39,3594.0,31.2249, +2016-04-30 11:30:00,,,28.2616 +2016-04-30 11:38:35,3595.0,31.277, +2016-04-30 11:45:00,,,28.2641 +2016-04-30 11:53:30,3596.0,31.4424, +2016-04-30 12:00:00,,,28.3118 +2016-04-30 12:08:26,3597.0,31.2853, +2016-04-30 12:15:00,,,28.3143 +2016-04-30 12:23:21,3598.0,31.3404, +2016-04-30 12:30:00,,,28.3118 +2016-04-30 12:38:17,3598.0,31.2881, +2016-04-30 12:45:00,,,28.2616 +2016-04-30 12:53:12,3598.0,31.3487, +2016-04-30 13:00:00,,,28.3143 +2016-04-30 13:08:08,3598.0,31.346, +2016-04-30 13:15:00,,,28.3143 +2016-04-30 13:23:03,3599.0,31.346, +2016-04-30 13:30:00,,,28.2641 +2016-04-30 13:37:59,3599.0,31.3571, +2016-04-30 13:45:00,,,28.3118 +2016-04-30 13:52:54,3599.0,31.3571, +2016-04-30 14:00:00,,,28.2641 +2016-04-30 14:07:50,3599.0,31.3543, +2016-04-30 14:15:00,,,28.3622 +2016-04-30 14:22:46,3599.0,31.302, +2016-04-30 14:30:00,,,28.3143 +2016-04-30 14:37:41,3599.0,31.3571, +2016-04-30 14:45:00,,,28.3143 +2016-04-30 14:52:36,3599.0,31.3103, +2016-04-30 15:00:00,,,28.3118 +2016-04-30 15:07:32,3598.0,31.3076, +2016-04-30 15:15:00,,,28.3118 +2016-04-30 15:22:27,3598.0,31.3076, +2016-04-30 15:30:00,,,28.3143 +2016-04-30 15:37:23,3598.0,31.3103, +2016-04-30 15:45:00,,,28.3622 +2016-04-30 15:52:18,3598.0,31.3159, +2016-04-30 16:00:00,,,28.3143 +2016-04-30 16:07:13,3597.0,31.371, +2016-04-30 16:15:00,,,28.3118 +2016-04-30 16:22:09,3595.0,31.371, +2016-04-30 16:30:00,,,28.2616 +2016-04-30 16:37:04,3595.0,31.3849, +2016-04-30 16:45:00,,,28.2616 +2016-04-30 16:51:59,3594.0,31.3821, +2016-04-30 17:00:00,,,28.3143 +2016-04-30 17:06:55,3593.0,31.272, +2016-04-30 17:15:00,,,28.3219 +2016-04-30 17:21:50,3593.0,31.4374, +2016-04-30 17:30:00,,,28.3219 +2016-04-30 17:36:45,3592.0,31.3821, +2016-04-30 17:45:00,,,28.3118 +2016-04-30 17:51:41,3592.0,31.4374, +2016-04-30 18:00:00,,,28.2691 +2016-04-30 18:06:36,3591.0,31.3821, +2016-04-30 18:15:00,,,28.3219 +2016-04-30 18:21:31,3591.0,31.327, +2016-04-30 18:30:00,,,28.3697 +2016-04-30 18:36:27,3589.0,31.327, +2016-04-30 18:45:00,,,28.3194 +2016-04-30 18:51:22,3588.0,31.3326, +2016-04-30 19:00:00,,,28.3194 +2016-04-30 19:06:17,3588.0,31.3905, +2016-04-30 19:15:00,,,28.2716 +2016-04-30 19:21:12,3586.0,31.5011, +2016-04-30 19:30:00,,,28.3118 +2016-04-30 19:36:07,3585.0,31.3905, +2016-04-30 19:45:00,,,28.3219 +2016-04-30 19:51:02,3583.0,31.3877, +2016-04-30 20:00:00,,,28.3697 +2016-04-30 20:05:57,3581.0,31.2803, +2016-04-30 20:15:00,,,28.2691 +2016-04-30 20:20:52,3579.0,31.3905, +2016-04-30 20:30:00,,,28.4227 +2016-04-30 20:35:47,3577.0,31.3905, +2016-04-30 20:45:00,,,28.3219 +2016-04-30 20:50:42,3576.0,31.5011, +2016-04-30 21:00:00,,,28.3219 +2016-04-30 21:05:37,3574.0,31.3354, +2016-04-30 21:15:00,,,28.4227 +2016-04-30 21:20:32,3573.0,31.3905, +2016-04-30 21:30:00,,,28.3798 +2016-04-30 21:35:27,3571.0,31.3354, +2016-04-30 21:45:00,,,28.3269 +2016-04-30 21:50:22,3570.0,31.2803, +2016-04-30 22:00:00,,,28.3294 +2016-04-30 22:05:17,3567.0,31.3354, +2016-04-30 22:15:00,,,28.3294 +2016-04-30 22:20:11,3567.0,31.3877, +2016-04-30 22:30:00,,,28.4302 +2016-04-30 22:35:06,3566.0,31.3905, +2016-04-30 22:45:00,,,28.3294 +2016-04-30 22:50:01,3565.0,31.2803, +2016-04-30 23:00:00,,,28.3798 +2016-04-30 23:04:56,3564.0,31.3877, +2016-04-30 23:15:00,,,28.4302 +2016-04-30 23:19:51,3562.0,31.3354, +2016-04-30 23:30:00,,,28.3773 +2016-04-30 23:34:45,3562.0,31.3905, +2016-04-30 23:45:00,,,28.3294 +2016-04-30 23:49:40,3561.0,31.2803, +2016-05-01 00:00:00,,,28.3798 +2016-05-01 00:04:35,3560.0,31.3354, +2016-05-01 00:15:00,,,28.337 +2016-05-01 00:19:30,3559.0,31.2282, +2016-05-01 00:30:00,,,28.4302 +2016-05-01 00:34:25,3559.0,31.2254, +2016-05-01 00:45:00,,,28.337 +2016-05-01 00:49:20,3559.0,31.1706, +2016-05-01 01:00:00,,,28.3294 +2016-05-01 01:04:17,3559.0,31.3354, +2016-05-01 01:15:00,,,28.3294 +2016-05-01 01:19:12,3559.0,31.3326, +2016-05-01 01:30:00,,,28.4353 +2016-05-01 01:34:06,3559.0,31.2226, +2016-05-01 01:45:00,,,28.337 +2016-05-01 01:49:01,3558.0,31.3877, +2016-05-01 02:00:00,,,28.337 +2016-05-01 02:03:56,3557.0,31.3821, +2016-05-01 02:15:00,,,28.3873 +2016-05-01 02:18:51,3557.0,31.327, +2016-05-01 02:30:00,,,28.3823 +2016-05-01 02:33:45,3556.0,31.2748, +2016-05-01 02:45:00,,,28.4378 +2016-05-01 02:48:40,3556.0,31.1595, +2016-05-01 03:00:00,,,28.3848 +2016-05-01 03:03:35,3556.0,31.3794, +2016-05-01 03:15:00,,,28.3873 +2016-05-01 03:18:29,3555.0,31.1076, +2016-05-01 03:30:00,,,28.3873 +2016-05-01 03:33:31,3554.0,31.272, +2016-05-01 03:45:00,,,28.4353 +2016-05-01 03:48:26,3553.0,31.2171, +2016-05-01 04:00:00,,,28.337 +2016-05-01 04:03:21,3553.0,31.1651, +2016-05-01 04:15:00,,,28.2867 +2016-05-01 04:18:15,3552.0,31.2776, +2016-05-01 04:30:00,,,28.337 +2016-05-01 04:33:10,3552.0,31.272, +2016-05-01 04:45:00,,,28.337 +2016-05-01 04:48:04,3552.0,31.3821, +2016-05-01 05:00:00,,,28.3873 +2016-05-01 05:02:59,3552.0,31.3821, +2016-05-01 05:15:00,,,28.3319 +2016-05-01 05:17:53,3551.0,31.272, +2016-05-01 05:30:00,,,28.2892 +2016-05-01 05:32:48,3551.0,31.3187, +2016-05-01 05:45:00,,,28.337 +2016-05-01 05:47:42,3551.0,31.2637, +2016-05-01 06:00:00,,,28.337 +2016-05-01 06:02:37,3552.0,31.2637, +2016-05-01 06:15:00,,,28.3848 +2016-05-01 06:17:32,3551.0,31.3187, +2016-05-01 06:30:00,,,28.4884 +2016-05-01 06:32:26,3551.0,31.154, +2016-05-01 06:45:00,,,28.3848 +2016-05-01 06:47:21,3551.0,31.3187, +2016-05-01 07:00:00,,,28.2842 +2016-05-01 07:02:15,3552.0,31.2637, +2016-05-01 07:15:00,,,28.337 +2016-05-01 07:17:10,3552.0,31.3159, +2016-05-01 07:30:00,,,28.4378 +2016-05-01 07:32:04,3553.0,31.2005, +2016-05-01 07:45:00,,,28.3873 +2016-05-01 07:46:59,3555.0,31.2554, +2016-05-01 08:00:00,,,28.3873 +2016-05-01 08:01:54,3556.0,31.2005, +2016-05-01 08:15:00,,,28.3873 +2016-05-01 08:16:49,3556.0,31.3654, +2016-05-01 08:30:00,,,28.3344 +2016-05-01 08:31:44,3558.0,31.2554, +2016-05-01 08:45:00,,,28.337 +2016-05-01 08:46:39,3560.0,31.1457, +2016-05-01 09:00:00,,,28.337 +2016-05-01 09:01:34,3564.0,31.3103, +2016-05-01 09:15:00,,,28.3344 +2016-05-01 09:16:29,3567.0,31.2526, +2016-05-01 09:30:00,,,28.3344 +2016-05-01 09:31:24,3571.0,31.3103, +2016-05-01 09:45:00,,,28.337 +2016-05-01 09:46:19,3573.0,31.3627, +2016-05-01 10:00:00,,,28.3823 +2016-05-01 10:01:14,3576.0,31.3654, +2016-05-01 10:15:00,,,28.337 +2016-05-01 10:16:09,3578.0,31.3654, +2016-05-01 10:30:00,,,28.337 +2016-05-01 10:31:04,3581.0,31.3103, +2016-05-01 10:45:00,,,28.3344 +2016-05-01 10:45:59,3583.0,31.1457, +2016-05-01 11:00:00,,,28.3344 +2016-05-01 11:00:55,3585.0,31.2637, +2016-05-01 11:15:00,,,28.337 +2016-05-01 11:15:50,3587.0,31.3738, +2016-05-01 11:30:00,,,28.2842 +2016-05-01 11:30:46,3588.0,31.3159, +2016-05-01 11:45:00,,,28.337 +2016-05-01 11:45:41,3590.0,31.3738, +2016-05-01 12:00:00,,,28.3848 +2016-05-01 12:00:36,3591.0,31.2609, +2016-05-01 12:15:00,,,28.3344 +2016-05-01 12:15:32,3592.0,31.272, +2016-05-01 12:30:00,,,28.337 +2016-05-01 12:30:27,3593.0,31.1623, +2016-05-01 12:45:00,,,28.3873 +2016-05-01 12:45:23,3594.0,31.2171, +2016-05-01 13:00:00,,,28.2867 +2016-05-01 13:00:18,3595.0,31.1623, +2016-05-01 13:15:00,,,28.3344 +2016-05-01 13:15:14,3597.0,31.1623, +2016-05-01 13:30:00,,,28.337 +2016-05-01 13:30:09,3598.0,31.1623, +2016-05-01 13:45:00,,,28.2867 +2016-05-01 13:45:05,3598.0,31.2748, +2016-05-01 14:00:00,3598.0,31.1678,28.3344 +2016-05-01 14:14:56,3598.0,31.2226, +2016-05-01 14:15:00,,,28.3344 +2016-05-01 14:29:52,3598.0,31.2803, +2016-05-01 14:30:00,,,28.3344 +2016-05-01 14:44:47,3599.0,31.1678, +2016-05-01 14:45:00,,,28.3344 +2016-05-01 14:59:43,3599.0,31.2776, +2016-05-01 15:00:00,,,28.3344 +2016-05-01 15:14:39,3598.0,31.2859, +2016-05-01 15:15:00,,,28.337 +2016-05-01 15:29:34,3599.0,31.1789, +2016-05-01 15:30:00,,,28.3344 +2016-05-01 15:44:30,3599.0,31.2942, +2016-05-01 15:45:00,,,28.337 +2016-05-01 15:59:26,3599.0,31.2942, +2016-05-01 16:00:00,,,28.3344 +2016-05-01 16:14:21,3599.0,31.2393, +2016-05-01 16:15:00,,,28.2867 +2016-05-01 16:29:24,3599.0,31.242, +2016-05-01 16:30:00,,,28.3344 +2016-05-01 16:44:20,3599.0,31.1844, +2016-05-01 16:45:00,,,28.3344 +2016-05-01 16:59:15,3599.0,31.3026, +2016-05-01 17:00:00,,,28.3344 +2016-05-01 17:14:10,3599.0,31.1927, +2016-05-01 17:15:00,,,28.3344 +2016-05-01 17:29:06,3599.0,31.3053, +2016-05-01 17:30:00,,,28.234 +2016-05-01 17:44:01,3599.0,31.1927, +2016-05-01 17:45:00,,,28.337 +2016-05-01 17:58:57,3599.0,31.2504, +2016-05-01 18:00:00,,,28.234 +2016-05-01 18:13:52,3599.0,31.1955, +2016-05-01 18:15:00,,,28.1339 +2016-05-01 18:28:48,3598.0,31.3026, +2016-05-01 18:30:00,,,28.2365 +2016-05-01 18:43:44,3598.0,31.3053, +2016-05-01 18:45:00,,,28.1814 +2016-05-01 18:58:39,3598.0,31.2559, +2016-05-01 19:00:00,,,28.1364 +2016-05-01 19:13:35,3598.0,31.3137, +2016-05-01 19:15:00,,,28.234 +2016-05-01 19:28:30,3597.0,31.3109, +2016-05-01 19:30:00,,,28.2365 +2016-05-01 19:43:25,3595.0,31.2038, +2016-05-01 19:45:00,,,28.2365 +2016-05-01 19:58:21,3594.0,31.201, +2016-05-01 20:00:00,,,28.1364 +2016-05-01 20:13:16,3593.0,31.3164, +2016-05-01 20:15:00,,,28.1914 +2016-05-01 20:28:11,3591.0,31.3192, +2016-05-01 20:30:00,,,28.1364 +2016-05-01 20:43:06,3588.0,31.1573, +2016-05-01 20:45:00,,,28.1839 +2016-05-01 20:58:02,3587.0,31.2093, +2016-05-01 21:00:00,,,28.2365 +2016-05-01 21:12:57,3586.0,31.2615, +2016-05-01 21:15:00,,,28.1364 +2016-05-01 21:27:52,3585.0,31.2121, +2016-05-01 21:30:00,,,28.2867 +2016-05-01 21:42:48,3584.0,31.2642, +2016-05-01 21:45:00,,,28.1914 +2016-05-01 21:57:43,3582.0,31.2093, +2016-05-01 22:00:00,,,28.234 +2016-05-01 22:12:38,3581.0,31.3743, +2016-05-01 22:15:00,,,28.1914 +2016-05-01 22:27:33,3579.0,31.2121, +2016-05-01 22:30:00,,,28.2917 +2016-05-01 22:42:28,3578.0,31.1573, +2016-05-01 22:45:00,,,28.2415 +2016-05-01 22:57:23,3577.0,31.3192, +2016-05-01 23:00:00,,,28.2415 +2016-05-01 23:12:18,3576.0,31.1573, +2016-05-01 23:15:00,,,28.2415 +2016-05-01 23:27:13,3574.0,31.3192, +2016-05-01 23:30:00,,,28.1914 +2016-05-01 23:42:08,3574.0,31.3771, +2016-05-01 23:45:00,,,28.2415 +2016-05-01 23:57:03,3573.0,31.2093, +2016-05-02 00:00:00,,,28.2892 +2016-05-02 00:11:58,3572.0,31.366, +2016-05-02 00:15:00,,,28.2415 +2016-05-02 00:26:52,3571.0,31.3109, +2016-05-02 00:30:00,,,28.2415 +2016-05-02 00:41:47,3570.0,31.201, +2016-05-02 00:45:00,,,28.2515 +2016-05-02 00:56:42,3569.0,31.1463, +2016-05-02 01:00:00,,,28.2515 +2016-05-02 01:11:37,3568.0,31.3109, +2016-05-02 01:15:00,,,28.249 +2016-05-02 01:26:31,3567.0,31.0944, +2016-05-02 01:30:00,,,28.2415 +2016-05-02 01:41:26,3566.0,31.3137, +2016-05-02 01:45:00,,,28.249 +2016-05-02 01:56:21,3565.0,31.1463, +2016-05-02 02:00:00,,,28.1989 +2016-05-02 02:11:15,3564.0,31.0944, +2016-05-02 02:15:00,,,28.249 +2016-05-02 02:26:10,3564.0,31.1463, +2016-05-02 02:30:00,,,28.249 +2016-05-02 02:41:05,3563.0,31.3137, +2016-05-02 02:45:00,,,28.249 +2016-05-02 02:56:00,3561.0,31.3109, +2016-05-02 03:00:00,,,28.2565 +2016-05-02 03:10:55,3560.0,31.3026, +2016-05-02 03:15:00,,,28.2515 +2016-05-02 03:25:49,3559.0,31.1407, +2016-05-02 03:30:00,,,28.2992 +2016-05-02 03:40:44,3559.0,31.2504, +2016-05-02 03:45:00,,,28.2992 +2016-05-02 03:55:39,3559.0,31.138, +2016-05-02 04:00:00,,,28.2515 +2016-05-02 04:10:33,3558.0,31.3026, +2016-05-02 04:15:00,,,28.259 +2016-05-02 04:25:28,3557.0,31.3053, +2016-05-02 04:30:00,,,28.259 +2016-05-02 04:40:22,3556.0,31.0315, +2016-05-02 04:45:00,,,28.3068 +2016-05-02 04:55:17,3556.0,31.1955, +2016-05-02 05:00:00,,,28.2089 +2016-05-02 05:10:12,3554.0,31.0315, +2016-05-02 05:15:00,,,28.3093 +2016-05-02 05:25:06,3554.0,31.1955, +2016-05-02 05:30:00,,,28.3017 +2016-05-02 05:40:01,3552.0,31.2504, +2016-05-02 05:45:00,,,28.3068 +2016-05-02 05:54:55,3552.0,31.0833, +2016-05-02 06:00:00,,,28.2064 +2016-05-02 06:09:50,3552.0,31.0778, +2016-05-02 06:15:00,,,28.3068 +2016-05-02 06:24:44,3552.0,31.2504, +2016-05-02 06:30:00,,,28.2565 +2016-05-02 06:39:39,3552.0,31.1324, +2016-05-02 06:45:00,,,28.3093 +2016-05-02 06:54:34,3552.0,31.242, +2016-05-02 07:00:00,,,28.254 +2016-05-02 07:09:28,3552.0,31.0778, +2016-05-02 07:15:00,,,28.2565 +2016-05-02 07:24:23,3554.0,31.0778, +2016-05-02 07:30:00,,,28.2565 +2016-05-02 07:39:18,3555.0,31.1844, +2016-05-02 07:45:00,,,28.2565 +2016-05-02 07:54:12,3557.0,31.1872, +2016-05-02 08:00:00,,,28.2565 +2016-05-02 08:09:07,3559.0,31.1872, +2016-05-02 08:15:00,,,28.2565 +2016-05-02 08:24:02,3562.0,31.297, +2016-05-02 08:30:00,,,28.259 +2016-05-02 08:38:57,3566.0,31.1324, +2016-05-02 08:45:00,,,28.2565 +2016-05-02 08:53:52,3571.0,31.075, +2016-05-02 09:00:00,,,28.2565 +2016-05-02 09:08:55,3574.0,31.1844, +2016-05-02 09:15:00,,,28.2064 +2016-05-02 09:23:50,3578.0,31.2914, +2016-05-02 09:30:00,,,28.2565 +2016-05-02 09:38:45,3581.0,31.1872, +2016-05-02 09:45:00,,,28.2064 +2016-05-02 09:53:40,3585.0,31.3521, +2016-05-02 10:00:00,,,28.1563 +2016-05-02 10:08:36,3588.0,31.2942, +2016-05-02 10:15:00,,,28.2565 +2016-05-02 10:23:31,3591.0,31.1872, +2016-05-02 10:30:00,,,28.2565 +2016-05-02 10:38:27,3593.0,31.2942, +2016-05-02 10:45:00,,,28.2565 +2016-05-02 10:53:22,3595.0,31.2942, +2016-05-02 11:00:00,,,28.2565 +2016-05-02 11:08:18,3596.0,31.297, +2016-05-02 11:15:00,,,28.2565 +2016-05-02 11:23:13,3597.0,31.2393, +2016-05-02 11:30:00,,,28.2565 +2016-05-02 11:38:09,3598.0,31.2942, +2016-05-02 11:45:00,,,28.2565 +2016-05-02 11:53:05,3598.0,31.1955, +2016-05-02 12:00:00,,,28.2565 +2016-05-02 12:08:00,3598.0,31.3026, +2016-05-02 12:15:00,,,28.2565 +2016-05-02 12:22:56,3598.0,31.3026, +2016-05-02 12:30:00,,,28.2565 +2016-05-02 12:37:51,3598.0,31.2476, +2016-05-02 12:45:00,,,28.2565 +2016-05-02 12:52:47,3599.0,31.2476, +2016-05-02 13:00:00,,,28.2565 +2016-05-02 13:07:43,3599.0,31.3026, +2016-05-02 13:15:00,,,28.1563 +2016-05-02 13:22:38,3599.0,31.3109, +2016-05-02 13:30:00,,,28.2064 +2016-05-02 13:37:34,3599.0,31.3137, +2016-05-02 13:45:00,,,28.1563 +2016-05-02 13:52:30,3599.0,31.2038, +2016-05-02 14:00:00,,,28.2064 +2016-05-02 14:07:25,3599.0,31.2615, +2016-05-02 14:15:00,,,28.2565 +2016-05-02 14:22:20,3599.0,31.3192, +2016-05-02 14:30:00,,,28.2565 +2016-05-02 14:37:24,3599.0,31.2642, +2016-05-02 14:45:00,,,28.2565 +2016-05-02 14:52:19,3599.0,31.322, +2016-05-02 15:00:00,,,28.2565 +2016-05-02 15:07:15,3599.0,31.1546, +2016-05-02 15:15:00,,,28.2064 +2016-05-02 15:22:11,3599.0,31.1082, +2016-05-02 15:30:00,,,28.2565 +2016-05-02 15:37:07,3599.0,31.1054, +2016-05-02 15:45:00,,,28.2064 +2016-05-02 15:52:03,3599.0,31.1082, +2016-05-02 16:00:00,,,28.2565 +2016-05-02 16:06:58,3599.0,31.2177, +2016-05-02 16:15:00,,,28.2064 +2016-05-02 16:21:54,3599.0,31.1629, +2016-05-02 16:30:00,,,28.2064 +2016-05-02 16:36:50,3599.0,31.1137, +2016-05-02 16:45:00,,,28.2565 +2016-05-02 16:51:46,3599.0,31.1712, +2016-05-02 17:00:00,,,28.2064 +2016-05-02 17:06:41,3599.0,31.1712, +2016-05-02 17:15:00,,,28.2064 +2016-05-02 17:21:37,3599.0,31.1795, +2016-05-02 17:30:00,,,28.2565 +2016-05-02 17:36:32,3599.0,31.1767, +2016-05-02 17:45:00,,,28.2565 +2016-05-02 17:51:28,3599.0,31.1767, +2016-05-02 18:00:00,,,28.2064 +2016-05-02 18:06:24,3599.0,31.122, +2016-05-02 18:15:00,,,28.259 +2016-05-02 18:21:19,3599.0,31.2343, +2016-05-02 18:30:00,,,28.1538 +2016-05-02 18:36:15,3599.0,31.1795, +2016-05-02 18:45:00,,,28.2565 +2016-05-02 18:51:11,3599.0,31.2343, +2016-05-02 19:00:00,,,28.2064 +2016-05-02 19:06:06,3599.0,31.1878, +2016-05-02 19:15:00,,,28.2064 +2016-05-02 19:21:02,3599.0,31.1878, +2016-05-02 19:30:00,,,28.2064 +2016-05-02 19:35:57,3598.0,31.1878, +2016-05-02 19:45:00,,,28.2114 +2016-05-02 19:50:53,3598.0,31.1878, +2016-05-02 20:00:00,,,28.2164 +2016-05-02 20:05:48,3598.0,31.1878, +2016-05-02 20:15:00,,,28.2565 +2016-05-02 20:20:43,3597.0,31.1303, +2016-05-02 20:30:00,,,28.2164 +2016-05-02 20:35:39,3595.0,31.2426, +2016-05-02 20:45:00,,,28.2565 +2016-05-02 20:50:34,3594.0,31.1961, +2016-05-02 21:00:00,,,28.2641 +2016-05-02 21:05:29,3593.0,31.1385, +2016-05-02 21:15:00,,,28.2641 +2016-05-02 21:20:25,3592.0,31.2426, +2016-05-02 21:30:00,,,28.2641 +2016-05-02 21:35:20,3590.0,31.1933, +2016-05-02 21:45:00,,,28.2641 +2016-05-02 21:50:15,3588.0,31.2509, +2016-05-02 22:00:00,,,28.2641 +2016-05-02 22:05:10,3587.0,31.1413, +2016-05-02 22:15:00,,,28.2164 +2016-05-02 22:20:05,3586.0,31.1413, +2016-05-02 22:30:00,,,28.2641 +2016-05-02 22:35:00,3585.0,31.0839, +2016-05-02 22:45:00,,,28.2139 +2016-05-02 22:49:56,3585.0,31.1413, +2016-05-02 23:00:00,,,28.2641 +2016-05-02 23:04:51,3583.0,31.1961, +2016-05-02 23:15:00,,,28.2641 +2016-05-02 23:19:46,3582.0,31.1878, +2016-05-02 23:30:00,,,28.2139 +2016-05-02 23:34:41,3581.0,31.1878, +2016-05-02 23:45:00,,,28.2666 +2016-05-02 23:49:36,3580.0,31.2426, +2016-05-03 00:00:00,,, +2016-05-03 00:15:00,,, +2016-05-03 00:30:00,,, +2016-05-03 00:45:00,,, +2016-05-03 01:00:00,,,28.2641 +2016-05-03 01:04:11,3576.0,31.133000000000006, +2016-05-03 01:15:00,,,28.2641 +2016-05-03 01:19:06,3575.0,31.0238, +2016-05-03 01:30:00,,,28.2641 +2016-05-03 01:34:00,3574.0,31.1878, +2016-05-03 01:45:00,,,28.2641 +2016-05-03 01:48:55,3574.0,31.0811, +2016-05-03 02:00:00,,,28.3143 +2016-05-03 02:03:50,3574.0,31.1247, +2016-05-03 02:15:00,,,28.2641 +2016-05-03 02:18:45,3573.0,31.1795, +2016-05-03 02:30:00,,,28.2641 +2016-05-03 02:33:40,3573.0,31.2343, +2016-05-03 02:45:00,,,28.2716 +2016-05-03 02:48:35,3572.0,31.1795, +2016-05-03 03:00:00,,,28.2716 +2016-05-03 03:03:30,3572.0,31.1767, +2016-05-03 03:15:00,,,28.2741 +2016-05-03 03:18:24,3572.0,31.1247, +2016-05-03 03:30:00,,,28.2214 +2016-05-03 03:33:19,3571.0,31.2343, +2016-05-03 03:45:00,,,28.1713 +2016-05-03 03:48:14,3571.0,31.1795, +2016-05-03 04:00:00,,,28.1713 +2016-05-03 04:03:09,3571.0,31.2343, +2016-05-03 04:15:00,,,28.2641 +2016-05-03 04:18:04,3570.0,31.1247, +2016-05-03 04:30:00,,,28.2691 +2016-05-03 04:32:59,3569.0,31.1795, +2016-05-03 04:45:00,,,28.2691 +2016-05-03 04:47:54,3568.0,31.1795, +2016-05-03 05:00:00,,,28.3244 +2016-05-03 05:02:49,3568.0,31.1247, +2016-05-03 05:15:00,,,28.3218 +2016-05-03 05:17:43,3567.0,31.0701, +2016-05-03 05:30:00,,,28.3244 +2016-05-03 05:32:38,3566.0,31.1795, +2016-05-03 05:45:00,,,28.2716 +2016-05-03 05:47:33,3566.0,31.1795, +2016-05-03 06:00:00,,,28.3244 +2016-05-03 06:02:28,3566.0,31.0156, +2016-05-03 06:15:00,,,28.2716 +2016-05-03 06:17:23,3566.0,31.0156, +2016-05-03 06:30:00,,,28.2716 +2016-05-03 06:32:18,3566.0,31.226, +2016-05-03 06:45:00,,,28.2741 +2016-05-03 06:47:13,3566.0,31.0073, +2016-05-03 07:00:00,,,28.2289 +2016-05-03 07:02:07,3567.0,31.226, +2016-05-03 07:15:00,,,28.2716 +2016-05-03 07:17:03,3569.0,31.1164, +2016-05-03 07:30:00,,,28.2766 +2016-05-03 07:31:57,3571.0,31.1712, +2016-05-03 07:45:00,,,28.2766 +2016-05-03 07:46:52,3573.0,31.1164, +2016-05-03 08:00:00,,,28.2264 +2016-05-03 08:01:48,3575.0,31.1164, +2016-05-03 08:15:00,,,28.2716 +2016-05-03 08:16:43,3578.0,31.1712, +2016-05-03 08:30:00,,,28.2289 +2016-05-03 08:31:38,3581.0,31.226, +2016-05-03 08:45:00,,,28.2264 +2016-05-03 08:46:33,3585.0,31.1712, +2016-05-03 09:00:00,,,28.2289 +2016-05-03 09:01:29,3587.0,31.226, +2016-05-03 09:15:00,,,28.2766 +2016-05-03 09:16:24,3589.0,31.1164, +2016-05-03 09:30:00,,,28.2791 +2016-05-03 09:31:27,3592.0,31.1137, +2016-05-03 09:45:00,,,28.2791 +2016-05-03 09:46:22,3593.0,31.1712, +2016-05-03 10:00:00,,,28.2289 +2016-05-03 10:01:18,3595.0,31.0618, +2016-05-03 10:15:00,,,28.2289 +2016-05-03 10:16:13,3597.0,31.226, +2016-05-03 10:30:00,,,28.2766 +2016-05-03 10:31:09,3598.0,31.226, +2016-05-03 10:45:00,,,28.2264 +2016-05-03 10:46:04,3598.0,31.1247, +2016-05-03 11:00:00,,,28.2791 +2016-05-03 11:01:00,3598.0,31.1247, +2016-05-03 11:15:00,,,28.2264 +2016-05-03 11:15:55,3598.0,31.1247, +2016-05-03 11:30:00,,,28.1763 +2016-05-03 11:30:51,3598.0,31.1247, +2016-05-03 11:45:00,,,28.2264 +2016-05-03 11:46:01,3598.0,31.1795, +2016-05-03 12:00:00,,,28.2766 +2016-05-03 12:00:56,3598.0,31.1795, +2016-05-03 12:15:00,,,28.2791 +2016-05-03 12:15:52,3598.0,31.1247, +2016-05-03 12:30:00,,,28.2766 +2016-05-03 12:30:48,3599.0,31.133000000000006, +2016-05-03 12:45:00,,,28.2264 +2016-05-03 12:45:43,3598.0,31.1878, +2016-05-03 13:00:00,,,28.2766 +2016-05-03 13:00:46,3598.0,31.1878, +2016-05-03 13:15:00,,,28.2766 +2016-05-03 13:15:42,3598.0,31.133000000000006, +2016-05-03 13:30:00,,,28.2791 +2016-05-03 13:30:37,3598.0,31.2509, +2016-05-03 13:45:00,,,28.2766 +2016-05-03 13:45:32,3596.0,31.1933, +2016-05-03 14:00:00,,,28.2791 +2016-05-03 14:00:28,3595.0,31.1933, +2016-05-03 14:15:00,,,28.2791 +2016-05-03 14:15:23,3593.0,31.1413, +2016-05-03 14:30:00,,,28.2791 +2016-05-03 14:30:18,3592.0,31.2509, +2016-05-03 14:45:00,,,28.2791 +2016-05-03 14:45:13,3589.0,31.1413, +2016-05-03 15:00:00,,,28.2766 +2016-05-03 15:00:09,3588.0,31.1385, +2016-05-03 15:15:00,,,28.2264 +2016-05-03 15:15:04,3587.0,31.1933, +2016-05-03 15:29:59,3585.0,31.1413, +2016-05-03 15:30:00,,,28.2766 +2016-05-03 15:44:54,3585.0,31.1413, +2016-05-03 15:45:00,,,28.2791 +2016-05-03 15:59:49,3583.0,31.0867, +2016-05-03 16:00:00,,,28.2791 +2016-05-03 16:14:44,3583.0,31.1961, +2016-05-03 16:15:00,,,28.2791 +2016-05-03 16:29:39,3582.0,31.2509, +2016-05-03 16:30:00,,,28.2791 +2016-05-03 16:44:34,3582.0,31.1961, +2016-05-03 16:45:00,,,28.2791 +2016-05-03 16:59:29,3581.0,31.1961, +2016-05-03 17:00:00,,,28.2791 +2016-05-03 17:14:24,3581.0,31.1413, +2016-05-03 17:15:00,,,28.2791 +2016-05-03 17:29:19,3581.0,31.0321, +2016-05-03 17:30:00,,,28.2816 +2016-05-03 17:44:14,3580.0,31.1933, +2016-05-03 17:45:00,,,28.2791 +2016-05-03 17:59:09,3579.0,31.0867, +2016-05-03 18:00:00,,,28.2791 +2016-05-03 18:14:04,3578.0,31.1385, +2016-05-03 18:15:00,,,28.2766 +2016-05-03 18:28:59,3578.0,31.1961, +2016-05-03 18:30:00,,,28.2766 +2016-05-03 18:43:54,3578.0,31.1413, +2016-05-03 18:45:00,,,28.2766 +2016-05-03 18:58:49,3578.0,31.1385, +2016-05-03 19:00:00,,,28.2791 +2016-05-03 19:13:44,3577.0,31.1385, +2016-05-03 19:15:00,,,28.2766 +2016-05-03 19:28:39,3577.0,31.0321, +2016-05-03 19:30:00,,,28.2766 +2016-05-03 19:43:34,3577.0,31.1933, +2016-05-03 19:45:00,,,28.2791 +2016-05-03 19:58:29,3576.0,31.0321, +2016-05-03 20:00:00,,,28.3294 +2016-05-03 20:13:24,3575.0,31.1413, +2016-05-03 20:15:00,,,28.2866 +2016-05-03 20:28:19,3574.0,31.2482, +2016-05-03 20:30:00,,,28.2791 +2016-05-03 20:43:14,3574.0,31.1961, +2016-05-03 20:45:00,,,28.3294 +2016-05-03 20:58:10,3574.0,31.1961, +2016-05-03 21:00:00,,,28.2766 +2016-05-03 21:13:05,3573.0,31.1413, +2016-05-03 21:15:00,,,28.2866 +2016-05-03 21:28:00,3573.0,31.0321, +2016-05-03 21:30:00,,,28.2866 +2016-05-03 21:42:55,3572.0,31.0867, +2016-05-03 21:45:00,,,28.2841 +2016-05-03 21:57:50,3571.0,31.1413, +2016-05-03 22:00:00,,,28.3369 +2016-05-03 22:12:45,3571.0,31.1961, +2016-05-03 22:15:00,,,28.3344 +2016-05-03 22:27:40,3571.0,31.1413, +2016-05-03 22:30:00,,,28.3369 +2016-05-03 22:42:35,3570.0,31.1961, +2016-05-03 22:45:00,,,28.2866 +2016-05-03 22:57:30,3570.0,31.1413, +2016-05-03 23:00:00,,,28.2841 +2016-05-03 23:12:25,3569.0,31.1961, +2016-05-03 23:15:00,,,28.2866 +2016-05-03 23:27:20,3568.0,31.133000000000006, +2016-05-03 23:30:00,,,28.2339 +2016-05-03 23:42:14,3567.0,31.0238, +2016-05-03 23:45:00,,,28.3369 +2016-05-03 23:57:09,3566.0,31.0238, +2016-05-04 00:00:00,,,28.3344 +2016-05-04 00:12:04,3565.0,31.0784, +2016-05-04 00:15:00,,,28.3344 +2016-05-04 00:26:59,3564.0,31.133000000000006, +2016-05-04 00:30:00,,,28.3369 +2016-05-04 00:41:53,3563.0,31.1905, +2016-05-04 00:45:00,,,28.2364 +2016-05-04 00:56:47,3561.0,31.1878, +2016-05-04 01:00:00,,,28.3369 +2016-05-04 01:11:50,3560.0,31.1878, +2016-05-04 01:15:00,,,28.3344 +2016-05-04 01:26:45,3559.0,31.0266, +2016-05-04 01:30:00,,,28.3369 +2016-05-04 01:41:39,3558.0,30.9151, +2016-05-04 01:45:00,,,28.2866 +2016-05-04 01:56:34,3557.0,30.9612, +2016-05-04 02:00:00,,,28.2866 +2016-05-04 02:11:29,3556.0,30.9068, +2016-05-04 02:15:00,,,28.2866 +2016-05-04 02:26:23,3555.0,31.0183, +2016-05-04 02:30:00,,,28.3369 +2016-05-04 02:41:18,3554.0,31.1795, +2016-05-04 02:45:00,,,28.2866 +2016-05-04 02:56:12,3553.0,31.1247, +2016-05-04 03:00:00,,,28.3369 +2016-05-04 03:11:06,3552.0,31.0183, +2016-05-04 03:15:00,,,28.2841 +2016-05-04 03:26:09,3551.0,31.1247, +2016-05-04 03:30:00,,,28.3344 +2016-05-04 03:41:03,3550.0,31.1247, +2016-05-04 03:45:00,,,28.2866 +2016-05-04 03:55:58,3549.0,31.0618, +2016-05-04 04:00:00,,,28.3369 +2016-05-04 04:10:52,3549.0,30.9612, +2016-05-04 04:15:00,,,28.3369 +2016-05-04 04:25:46,3548.0,31.0101, +2016-05-04 04:30:00,,,28.3369 +2016-05-04 04:40:41,3547.0,31.0073, +2016-05-04 04:45:00,,,28.2866 +2016-05-04 04:55:35,3546.0,31.0618, +2016-05-04 05:00:00,,,28.2866 +2016-05-04 05:10:30,3546.0,31.1629, +2016-05-04 05:15:00,,,28.2866 +2016-05-04 05:25:24,3545.0,30.9447, +2016-05-04 05:30:00,,,28.3369 +2016-05-04 05:40:18,3545.0,30.9991, +2016-05-04 05:45:00,,,28.2866 +2016-05-04 05:55:13,3545.0,31.0536, +2016-05-04 06:00:00,,,28.2866 +2016-05-04 06:10:07,3545.0,30.9991, +2016-05-04 06:15:00,,,28.2866 +2016-05-04 06:25:01,3546.0,31.1082, +2016-05-04 06:30:00,,,28.3369 +2016-05-04 06:39:56,3546.0,31.1082, +2016-05-04 06:45:00,,,28.3369 +2016-05-04 06:54:50,3547.0,30.9991, +2016-05-04 07:00:00,,,28.2841 +2016-05-04 07:09:45,3549.0,31.1656, +2016-05-04 07:15:00,,,28.3369 +2016-05-04 07:24:39,3550.0,30.9991, +2016-05-04 07:30:00,,,28.2866 +2016-05-04 07:39:34,3551.0,31.1082, +2016-05-04 07:45:00,,,28.3344 +2016-05-04 07:54:29,3553.0,31.0971, +2016-05-04 08:00:00,,,28.3369 +2016-05-04 08:09:23,3554.0,30.9991, +2016-05-04 08:15:00,,,28.2866 +2016-05-04 08:24:18,3556.0,31.1026, +2016-05-04 08:30:00,,,28.3369 +2016-05-04 08:39:13,3557.0,30.9936, +2016-05-04 08:45:00,,,28.2866 +2016-05-04 08:54:07,3559.0,30.9392, +2016-05-04 09:00:00,,,28.3369 +2016-05-04 09:09:02,3559.0,31.1573, +2016-05-04 09:15:00,,,28.2866 +2016-05-04 09:23:57,3560.0,30.9908, +2016-05-04 09:30:00,,,28.2866 +2016-05-04 09:38:52,3563.0,31.1026, +2016-05-04 09:45:00,,,28.3344 +2016-05-04 09:53:46,3564.0,30.9908, +2016-05-04 10:00:00,,,28.2841 +2016-05-04 10:08:41,3566.0,31.048, +2016-05-04 10:15:00,,,28.2866 +2016-05-04 10:23:36,3568.0,31.1573, +2016-05-04 10:30:00,,,28.3369 +2016-05-04 10:38:31,3570.0,30.9936, +2016-05-04 10:45:00,,,28.3344 +2016-05-04 10:53:26,3571.0,31.2093, +2016-05-04 11:00:00,,,28.2866 +2016-05-04 11:08:21,3573.0,31.1546, +2016-05-04 11:15:00,,,28.2866 +2016-05-04 11:23:16,3574.0,31.1026, +2016-05-04 11:30:00,,,28.2339 +2016-05-04 11:38:11,3575.0,31.0453, +2016-05-04 11:45:00,,,28.2866 +2016-05-04 11:53:06,3577.0,31.1546, +2016-05-04 12:00:00,,,28.2339 +2016-05-04 12:08:01,3577.0,31.0999, +2016-05-04 12:15:00,,,28.2841 +2016-05-04 12:22:56,3578.0,31.0999, +2016-05-04 12:30:00,,,28.3344 +2016-05-04 12:37:51,3580.0,31.1573, +2016-05-04 12:45:00,,,28.2866 +2016-05-04 12:52:47,3581.0,31.1573, +2016-05-04 13:00:00,,,28.2841 +2016-05-04 13:07:42,3582.0,31.1546, +2016-05-04 13:15:00,,,28.2866 +2016-05-04 13:22:37,3583.0,31.1629, +2016-05-04 13:30:00,,,28.2841 +2016-05-04 13:37:32,3585.0,31.1026, +2016-05-04 13:45:00,,,28.2841 +2016-05-04 13:52:28,3585.0,31.1629, +2016-05-04 14:00:00,,,28.2866 +2016-05-04 14:07:23,3586.0,31.1082, +2016-05-04 14:15:00,,,28.2866 +2016-05-04 14:22:18,3587.0,31.2177, +2016-05-04 14:30:00,,,28.2364 +2016-05-04 14:37:14,3588.0,31.1629, +2016-05-04 14:45:00,,,28.2841 +2016-05-04 14:52:09,3588.0,31.2149, +2016-05-04 15:00:00,,,28.2339 +2016-05-04 15:07:04,3588.0,31.1082, +2016-05-04 15:15:00,,,28.2866 +2016-05-04 15:22:07,3589.0,31.1601, +2016-05-04 15:30:00,,,28.2364 +2016-05-04 15:37:02,3589.0,31.1054, +2016-05-04 15:45:00,,,28.3369 +2016-05-04 15:51:57,3590.0,31.1082, +2016-05-04 16:00:00,,,28.2841 +2016-05-04 16:06:53,3591.0,31.1601, +2016-05-04 16:15:00,,,28.2866 +2016-05-04 16:21:48,3591.0,31.1054, +2016-05-04 16:30:00,,,28.2841 +2016-05-04 16:36:44,3591.0,31.1164, +2016-05-04 16:45:00,,,28.2841 +2016-05-04 16:51:39,3590.0,31.1712, +2016-05-04 17:00:00,,,28.2841 +2016-05-04 17:06:35,3590.0,31.0618, +2016-05-04 17:15:00,,,28.2841 +2016-05-04 17:21:30,3589.0,31.1712, +2016-05-04 17:30:00,,,28.2866 +2016-05-04 17:36:26,3588.0,31.1164, +2016-05-04 17:45:00,,,28.2841 +2016-05-04 17:51:21,3588.0,31.1795, +2016-05-04 18:00:00,,,28.2841 +2016-05-04 18:06:16,3588.0,31.1247, +2016-05-04 18:15:00,,,28.2364 +2016-05-04 18:21:11,3587.0,31.1795, +2016-05-04 18:30:00,,,28.2841 +2016-05-04 18:36:07,3586.0,31.1795, +2016-05-04 18:45:00,,,28.2841 +2016-05-04 18:51:02,3585.0,31.1795, +2016-05-04 19:00:00,,,28.3369 +2016-05-04 19:05:57,3584.0,31.1795, +2016-05-04 19:15:00,,,28.2866 +2016-05-04 19:20:52,3583.0,31.2343, +2016-05-04 19:30:00,,,28.2339 +2016-05-04 19:35:47,3582.0,31.1795, +2016-05-04 19:45:00,,,28.2339 +2016-05-04 19:50:42,3581.0,31.1795, +2016-05-04 20:00:00,,,28.2841 +2016-05-04 20:05:37,3579.0,31.0701, +2016-05-04 20:15:00,,,28.2866 +2016-05-04 20:20:33,3578.0,31.1795, +2016-05-04 20:30:00,,,28.2866 +2016-05-04 20:35:28,3577.0,31.2343, +2016-05-04 20:45:00,,,28.2866 +2016-05-04 20:50:23,3575.0,31.1795, +2016-05-04 21:00:00,,,28.2841 +2016-05-04 21:05:18,3574.0,31.1795, +2016-05-04 21:15:00,,,28.3369 +2016-05-04 21:20:20,3572.0,31.1795, +2016-05-04 21:30:00,,,28.2866 +2016-05-04 21:35:14,3571.0,31.1247, +2016-05-04 21:45:00,,,28.3369 +2016-05-04 21:50:09,3570.0,31.2343, +2016-05-04 22:00:00,,,28.2866 +2016-05-04 22:05:04,3568.0,31.1247, +2016-05-04 22:15:00,,,28.3369 +2016-05-04 22:19:59,3568.0,31.0729, +2016-05-04 22:30:00,,,28.2866 +2016-05-04 22:34:54,3566.0,31.1247, +2016-05-04 22:45:00,,,28.3369 +2016-05-04 22:49:49,3566.0,31.1247, +2016-05-04 23:00:00,,,28.2841 +2016-05-04 23:04:44,3565.0,31.0701, +2016-05-04 23:15:00,,,28.3369 +2016-05-04 23:19:39,3564.0,30.9612, +2016-05-04 23:30:00,,,28.2841 +2016-05-04 23:34:34,3562.0,31.1247, +2016-05-04 23:45:00,,,28.2866 +2016-05-04 23:49:29,3561.0,31.1164, +2016-05-05 00:00:00,,,28.3369 +2016-05-05 00:04:24,3560.0,31.0618, +2016-05-05 00:15:00,,,28.2866 +2016-05-05 00:19:18,3559.0,31.226, +2016-05-05 00:30:00,,,28.2866 +2016-05-05 00:34:13,3559.0,30.9529, +2016-05-05 00:45:00,,,28.2364 +2016-05-05 00:49:08,3559.0,31.226, +2016-05-05 01:00:00,,,28.2364 +2016-05-05 01:04:03,3558.0,30.9529, +2016-05-05 01:15:00,,,28.3369 +2016-05-05 01:18:58,3557.0,30.9529, +2016-05-05 01:30:00,,,28.3369 +2016-05-05 01:33:52,3557.0,31.1192, +2016-05-05 01:45:00,,,28.2866 +2016-05-05 01:48:47,3556.0,31.1082, +2016-05-05 02:00:00,,,28.2866 +2016-05-05 02:03:42,3556.0,31.2177, +2016-05-05 02:15:00,,,28.3369 +2016-05-05 02:18:37,3556.0,31.1629, +2016-05-05 02:30:00,,,28.3369 +2016-05-05 02:33:31,3555.0,31.1629, +2016-05-05 02:45:00,,,28.1863 +2016-05-05 02:48:26,3554.0,31.1082, +2016-05-05 03:00:00,,,28.1338 +2016-05-05 03:03:20,3554.0,30.8904, +2016-05-05 03:15:00,,,28.1338 +2016-05-05 03:18:15,3553.0,30.9963, +2016-05-05 03:30:00,,,28.0889 +2016-05-05 03:33:09,3553.0,31.2177, +2016-05-05 03:45:00,,,28.1838 +2016-05-05 03:48:11,3552.0,31.1109, +2016-05-05 04:00:00,,,28.1338 +2016-05-05 04:03:06,3552.0,30.9419, +2016-05-05 04:15:00,,,28.1838 +2016-05-05 04:18:00,3552.0,31.0508, +2016-05-05 04:30:00,,,28.1363 +2016-05-05 04:32:55,3551.0,31.2204, +2016-05-05 04:45:00,,,28.1863 +2016-05-05 04:47:50,3550.0,30.9447, +2016-05-05 05:00:00,,,28.1863 +2016-05-05 05:02:44,3550.0,30.9447, +2016-05-05 05:15:00,,,28.1863 +2016-05-05 05:17:39,3549.0,31.048, +2016-05-05 05:30:00,,,28.1363 +2016-05-05 05:32:34,3549.0,31.1026, +2016-05-05 05:45:00,,,28.1363 +2016-05-05 05:47:29,3549.0,31.1573, +2016-05-05 06:00:00,,,28.1363 +2016-05-05 06:02:23,3548.0,31.1573, +2016-05-05 06:15:00,,,28.1863 +2016-05-05 06:17:18,3548.0,31.1573, +2016-05-05 06:30:00,,,28.1363 +2016-05-05 06:32:12,3549.0,31.1026, +2016-05-05 06:45:00,,,28.1363 +2016-05-05 06:47:07,3549.0,30.9908, +2016-05-05 07:00:00,,,28.1863 +2016-05-05 07:02:01,3549.0,31.1026, +2016-05-05 07:15:00,,,28.1363 +2016-05-05 07:16:56,3550.0,31.1573, +2016-05-05 07:30:00,,,28.1338 +2016-05-05 07:31:51,3552.0,30.9936, +2016-05-05 07:45:00,,,28.0864 +2016-05-05 07:46:46,3554.0,30.7227, +2016-05-05 08:00:00,,,28.1363 +2016-05-05 08:01:41,3556.0,30.8794, +2016-05-05 08:15:00,,,28.1863 +2016-05-05 08:16:35,3557.0,30.7767, +2016-05-05 08:30:00,,,28.1363 +2016-05-05 08:31:30,3559.0,30.7685, +2016-05-05 08:45:00,,,28.1388 +2016-05-05 08:46:25,3562.0,30.9364, +2016-05-05 09:00:00,,,28.1363 +2016-05-05 09:01:20,3565.0,30.7657, +2016-05-05 09:15:00,,,28.0864 +2016-05-05 09:16:15,3568.0,30.8849, +2016-05-05 09:30:00,,,28.0839 +2016-05-05 09:31:11,3571.0,30.9853, +2016-05-05 09:45:00,,,28.1338 +2016-05-05 09:46:06,3574.0,30.9853, +2016-05-05 10:00:00,,,28.1338 +2016-05-05 10:01:01,3577.0,31.0453, +2016-05-05 10:15:00,,,28.1338 +2016-05-05 10:15:57,3581.0,30.9908, +2016-05-05 10:30:00,,,28.1363 +2016-05-05 10:30:52,3583.0,30.9364, +2016-05-05 10:45:00,,,28.1338 +2016-05-05 10:45:48,3585.0,30.9364, +2016-05-05 11:00:00,,,28.1363 +2016-05-05 11:00:43,3587.0,30.9392, +2016-05-05 11:15:00,,,28.1338 +2016-05-05 11:15:39,3588.0,30.9908, +2016-05-05 11:30:00,,,28.1338 +2016-05-05 11:30:34,3589.0,30.9364, +2016-05-05 11:45:00,,,28.0839 +2016-05-05 11:45:29,3591.0,30.9364, +2016-05-05 12:00:00,,,28.1363 +2016-05-05 12:00:25,3592.0,30.9392, +2016-05-05 12:15:00,,,28.1363 +2016-05-05 12:15:20,3592.0,30.9908, +2016-05-05 12:30:00,,,28.1338 +2016-05-05 12:30:16,3593.0,30.9936, +2016-05-05 12:45:00,,,28.1363 +2016-05-05 12:45:11,3593.0,30.9963, +2016-05-05 13:00:00,,,28.1338 +2016-05-05 13:00:07,3594.0,31.0508, +2016-05-05 13:15:00,,,28.0864 +2016-05-05 13:15:02,3595.0,30.9963, +2016-05-05 13:29:58,3595.0,31.0508, +2016-05-05 13:30:00,,,28.1363 +2016-05-05 13:44:53,3596.0,31.1054, +2016-05-05 13:45:00,,,28.1338 +2016-05-05 13:59:49,3597.0,31.0536, +2016-05-05 14:00:00,,,28.0864 +2016-05-05 14:14:44,3598.0,30.9991, +2016-05-05 14:15:00,,,28.1363 +2016-05-05 14:29:40,3598.0,30.9991, +2016-05-05 14:30:00,,,28.1338 +2016-05-05 14:44:36,3598.0,30.9529, +2016-05-05 14:45:00,,,28.0839 +2016-05-05 14:59:31,3598.0,31.0073, +2016-05-05 15:00:00,,,28.1338 +2016-05-05 15:14:27,3598.0,31.1164, +2016-05-05 15:15:00,,,28.1363 +2016-05-05 15:29:23,3598.0,31.0156, +2016-05-05 15:30:00,,,28.0864 +2016-05-05 15:44:19,3598.0,30.9584, +2016-05-05 15:45:00,,,28.1338 +2016-05-05 15:59:14,3598.0,31.0701, +2016-05-05 16:00:00,,,28.0839 +2016-05-05 16:14:10,3598.0,31.0156, +2016-05-05 16:15:00,,,28.1363 +2016-05-05 16:29:06,3599.0,31.0156, +2016-05-05 16:30:00,,,28.1338 +2016-05-05 16:44:02,3599.0,31.0156, +2016-05-05 16:45:00,,,28.0864 +2016-05-05 16:58:57,3599.0,30.9041, +2016-05-05 17:00:00,,,28.0839 +2016-05-05 17:13:53,3599.0,31.0156, +2016-05-05 17:15:00,,,28.1338 +2016-05-05 17:28:49,3599.0,31.0784, +2016-05-05 17:30:00,,,28.0864 +2016-05-05 17:43:45,3599.0,31.0784, +2016-05-05 17:45:00,,,28.0839 +2016-05-05 17:58:40,3599.0,31.0867, +2016-05-05 18:00:00,,,28.1338 +2016-05-05 18:13:36,3598.0,31.0867, +2016-05-05 18:15:00,,,28.1363 +2016-05-05 18:28:32,3598.0,31.0867, +2016-05-05 18:30:00,,,28.1363 +2016-05-05 18:43:27,3598.0,31.0321, +2016-05-05 18:45:00,,,28.0839 +2016-05-05 18:58:23,3598.0,31.0321, +2016-05-05 19:00:00,,,28.1338 +2016-05-05 19:13:18,3598.0,30.9749, +2016-05-05 19:15:00,,,28.1363 +2016-05-05 19:28:14,3598.0,31.0321, +2016-05-05 19:30:00,,,28.0839 +2016-05-05 19:43:09,3598.0,31.0321, +2016-05-05 19:45:00,,,28.1838 +2016-05-05 19:58:05,3597.0,31.0266, +2016-05-05 20:00:00,,,28.1363 +2016-05-05 20:13:00,3596.0,31.0867, +2016-05-05 20:15:00,,,28.0864 +2016-05-05 20:27:55,3595.0,30.9749, +2016-05-05 20:30:00,,,28.1363 +2016-05-05 20:42:51,3594.0,31.0922, +2016-05-05 20:45:00,,,28.1363 +2016-05-05 20:57:46,3593.0,31.0376, +2016-05-05 21:00:00,,,28.0839 +2016-05-05 21:12:41,3592.0,31.1468, +2016-05-05 21:15:00,,,28.1363 +2016-05-05 21:27:37,3591.0,30.9832, +2016-05-05 21:30:00,,,28.1363 +2016-05-05 21:42:32,3588.0,31.0376, +2016-05-05 21:45:00,,,28.0839 +2016-05-05 21:57:27,3588.0,30.9832, +2016-05-05 22:00:00,,,28.1338 +2016-05-05 22:12:22,3587.0,30.9832, +2016-05-05 22:15:00,,,28.1363 +2016-05-05 22:27:17,3586.0,31.0376, +2016-05-05 22:30:00,,,28.1363 +2016-05-05 22:42:12,3586.0,31.0376, +2016-05-05 22:45:00,,,28.1363 +2016-05-05 22:57:08,3585.0,31.0922, +2016-05-05 23:00:00,,,28.1338 +2016-05-05 23:12:03,3584.0,31.0376, +2016-05-05 23:15:00,,,28.1363 +2016-05-05 23:26:58,3582.0,31.0376, +2016-05-05 23:30:00,,,28.1363 +2016-05-05 23:41:53,3582.0,31.0376, +2016-05-05 23:45:00,,,28.1363 +2016-05-05 23:56:48,3581.0,31.0949, +2016-05-06 00:00:00,,,28.1338 +2016-05-06 00:11:43,3581.0,30.9832, +2016-05-06 00:15:00,,,28.1363 +2016-05-06 00:26:38,3580.0,31.0376, +2016-05-06 00:30:00,,,28.1363 +2016-05-06 00:41:33,3579.0,31.1468, +2016-05-06 00:45:00,,,28.1438 +2016-05-06 00:56:28,3578.0,31.0376, +2016-05-06 01:00:00,,,28.1438 +2016-05-06 01:11:23,3578.0,31.0922, +2016-05-06 01:15:00,,,28.1914 +2016-05-06 01:26:18,3577.0,31.0376, +2016-05-06 01:30:00,,,28.1939 +2016-05-06 01:41:13,3577.0,30.9832, +2016-05-06 01:45:00,,,28.1438 +2016-05-06 01:56:08,3576.0,30.9832, +2016-05-06 02:00:00,,,28.1413 +2016-05-06 02:11:03,3576.0,30.9288, +2016-05-06 02:15:00,,,28.1413 +2016-05-06 02:25:58,3576.0,31.0922, +2016-05-06 02:30:00,,,28.1413 +2016-05-06 02:40:53,3575.0,31.0867, +2016-05-06 02:45:00,,,28.1438 +2016-05-06 02:55:48,3575.0,30.9316, +2016-05-06 03:00:00,,,28.1413 +2016-05-06 03:10:43,3574.0,30.9288, +2016-05-06 03:15:00,,,28.1413 +2016-05-06 03:25:38,3574.0,30.9233, +2016-05-06 03:30:00,,,28.1413 +2016-05-06 03:40:33,3573.0,30.9233, +2016-05-06 03:45:00,,,28.0939 +2016-05-06 03:55:28,3573.0,30.9233, +2016-05-06 04:00:00,,,28.1438 +2016-05-06 04:10:23,3572.0,31.0321, +2016-05-06 04:15:00,,,28.1939 +2016-05-06 04:25:18,3572.0,30.9233, +2016-05-06 04:30:00,,,28.1438 +2016-05-06 04:40:13,3571.0,30.8149, +2016-05-06 04:45:00,,,28.1438 +2016-05-06 04:55:08,3571.0,30.8691, +2016-05-06 05:00:00,,,28.2014 +2016-05-06 05:10:03,3570.0,30.9233, +2016-05-06 05:15:00,,,28.1438 +2016-05-06 05:24:58,3569.0,30.9233, +2016-05-06 05:30:00,,,28.1438 +2016-05-06 05:39:53,3570.0,30.9233, +2016-05-06 05:45:00,,,28.1438 +2016-05-06 05:54:47,3568.0,30.8691, +2016-05-06 06:00:00,,,28.1438 +2016-05-06 06:09:42,3568.0,30.9233, +2016-05-06 06:15:00,,,28.1513 +2016-05-06 06:24:37,3569.0,30.8149, +2016-05-06 06:30:00,,,28.1989 +2016-05-06 06:39:32,3569.0,30.8149, +2016-05-06 06:45:00,,,28.1488 +2016-05-06 06:54:26,3570.0,30.9233, +2016-05-06 07:00:00,,,28.1438 +2016-05-06 07:09:21,3570.0,30.9233, +2016-05-06 07:15:00,,,28.2014 +2016-05-06 07:24:16,3571.0,30.7609, +2016-05-06 07:30:00,,,28.1513 +2016-05-06 07:39:11,3572.0,30.9206, +2016-05-06 07:45:00,,,28.1513 +2016-05-06 07:54:06,3574.0,30.8691, +2016-05-06 08:00:00,,,28.1014 +2016-05-06 08:09:01,3576.0,30.8149, +2016-05-06 08:15:00,,,28.2014 +2016-05-06 08:23:56,3578.0,30.9233, +2016-05-06 08:30:00,,,28.1014 +2016-05-06 08:38:52,3581.0,30.9233, +2016-05-06 08:45:00,,,28.1014 +2016-05-06 08:53:47,3584.0,30.8149, +2016-05-06 09:00:00,,,28.1513 +2016-05-06 09:08:42,3586.0,30.9206, +2016-05-06 09:15:00,,,28.1014 +2016-05-06 09:23:37,3588.0,30.9206, +2016-05-06 09:30:00,,,28.1513 +2016-05-06 09:38:40,3590.0,30.8149, +2016-05-06 09:45:00,,,28.1513 +2016-05-06 09:53:36,3593.0,30.8691, +2016-05-06 10:00:00,,,28.1014 +2016-05-06 10:08:31,3595.0,30.9233, +2016-05-06 10:15:00,,,28.0939 +2016-05-06 10:23:27,3597.0,30.9233, +2016-05-06 10:30:00,,,28.1513 +2016-05-06 10:38:22,3598.0,30.9206, +2016-05-06 10:45:00,,,28.1488 +2016-05-06 10:53:18,3598.0,30.9233, +2016-05-06 11:00:00,,,28.1513 +2016-05-06 11:08:13,3599.0,30.9233, +2016-05-06 11:15:00,,,28.0964 +2016-05-06 11:23:09,3599.0,30.9233, +2016-05-06 11:30:00,,,28.1014 +2016-05-06 11:38:05,3599.0,30.9288, +2016-05-06 11:45:00,,,28.1014 +2016-05-06 11:53:00,3599.0,30.9288, +2016-05-06 12:00:00,,,28.1014 +2016-05-06 12:07:56,3599.0,30.9288, +2016-05-06 12:15:00,,,28.0989 +2016-05-06 12:22:52,3599.0,30.9288, +2016-05-06 12:30:00,,,28.1513 +2016-05-06 12:37:47,3599.0,30.9832, +2016-05-06 12:45:00,,,28.1014 +2016-05-06 12:52:43,3599.0,30.937, +2016-05-06 13:00:00,,,28.1488 +2016-05-06 13:07:39,3599.0,30.937, +2016-05-06 13:15:00,,,28.0964 +2016-05-06 13:22:35,3599.0,30.8313, +2016-05-06 13:30:00,,,28.0989 +2016-05-06 13:37:31,3599.0,30.9453, +2016-05-06 13:45:00,,,27.9521 +2016-05-06 13:52:27,3599.0,30.9997, +2016-05-06 14:00:00,,,27.9521 +2016-05-06 14:07:23,3599.0,30.9453, +2016-05-06 14:15:00,,,27.9496 +2016-05-06 14:22:19,3599.0,30.9453, +2016-05-06 14:30:00,,,27.9496 +2016-05-06 14:37:15,3599.0,30.891, +2016-05-06 14:45:00,,,27.9471 +2016-05-06 14:52:11,3599.0,30.9453, +2016-05-06 15:00:00,,,27.9521 +2016-05-06 15:07:07,3599.0,30.9535, +2016-05-06 15:15:00,,,28.0018 +2016-05-06 15:22:03,3599.0,30.8992, +2016-05-06 15:30:00,,,27.9993 +2016-05-06 15:36:59,3599.0,30.9535, +2016-05-06 15:45:00,,,27.9496 +2016-05-06 15:51:55,3599.0,30.9535, +2016-05-06 16:00:00,,,27.9496 +2016-05-06 16:06:51,3599.0,30.9535, +2016-05-06 16:15:00,,,27.9993 +2016-05-06 16:21:47,3599.0,30.9535, +2016-05-06 16:30:00,,,27.9471 +2016-05-06 16:36:43,3599.0,30.959, +2016-05-06 16:45:00,,,28.0018 +2016-05-06 16:51:39,3599.0,30.9618, +2016-05-06 17:00:00,,,27.9496 +2016-05-06 17:06:34,3599.0,30.9618, +2016-05-06 17:15:00,,,27.9496 +2016-05-06 17:21:30,3599.0,30.9673, +2016-05-06 17:30:00,,,27.9496 +2016-05-06 17:36:26,3599.0,30.9673, +2016-05-06 17:45:00,,,27.9496 +2016-05-06 17:51:22,3599.0,30.913, +2016-05-06 18:00:00,,,27.9521 +2016-05-06 18:06:18,3599.0,30.8046, +2016-05-06 18:15:00,,,27.9521 +2016-05-06 18:21:14,3599.0,30.7533, +2016-05-06 18:30:00,,,27.9496 +2016-05-06 18:36:10,3599.0,30.8046, +2016-05-06 18:45:00,,,27.9993 +2016-05-06 18:51:05,3599.0,30.8073, +2016-05-06 19:00:00,,,27.9496 +2016-05-06 19:06:01,3599.0,30.8046, +2016-05-06 19:15:00,,,27.9496 +2016-05-06 19:20:57,3599.0,30.8156, +2016-05-06 19:30:00,,,28.0018 +2016-05-06 19:35:53,3599.0,30.8156, +2016-05-06 19:45:00,,,27.9521 +2016-05-06 19:50:48,3599.0,30.7615, +2016-05-06 20:00:00,,,27.9496 +2016-05-06 20:05:44,3599.0,30.8156, +2016-05-06 20:15:00,,,27.9521 +2016-05-06 20:20:39,3599.0,30.8156, +2016-05-06 20:30:00,,,27.957 +2016-05-06 20:35:35,3599.0,30.8156, +2016-05-06 20:45:00,,,28.0067 +2016-05-06 20:50:30,3599.0,30.7615, +2016-05-06 21:00:00,,,28.0067 +2016-05-06 21:05:26,3599.0,30.8697, +2016-05-06 21:15:00,,,27.957 +2016-05-06 21:20:21,3599.0,30.8156, +2016-05-06 21:30:00,,,28.0067 +2016-05-06 21:35:17,3598.0,30.7615, +2016-05-06 21:45:00,,,27.9595 +2016-05-06 21:50:12,3598.0,30.8156, +2016-05-06 22:00:00,,,28.0067 +2016-05-06 22:05:08,3598.0,30.8156, +2016-05-06 22:15:00,,,28.0042 +2016-05-06 22:20:03,3598.0,30.8156, +2016-05-06 22:30:00,,,28.0067 +2016-05-06 22:34:58,3597.0,30.8752, +2016-05-06 22:45:00,,,27.957 +2016-05-06 22:49:53,3596.0,30.8128, +2016-05-06 23:00:00,,,27.9546 +2016-05-06 23:04:49,3595.0,30.8238, +2016-05-06 23:15:00,,,28.0092 +2016-05-06 23:19:44,3595.0,30.8156, +2016-05-06 23:30:00,,,27.957 +2016-05-06 23:34:39,3594.0,30.8697, +2016-05-06 23:45:00,,,27.9546 +2016-05-06 23:49:34,3593.0,30.8156, +2016-05-07 00:00:00,,,28.0092 +2016-05-07 00:04:30,3592.0,30.8156, +2016-05-07 00:15:00,,,27.9595 +2016-05-07 00:19:25,3592.0,30.8697, +2016-05-07 00:30:00,,,27.9595 +2016-05-07 00:34:20,3591.0,30.8265, +2016-05-07 00:45:00,,,27.9595 +2016-05-07 00:49:15,3590.0,30.867, +2016-05-07 01:00:00,,,28.0092 +2016-05-07 01:04:11,3588.0,30.8697, +2016-05-07 01:15:00,,,28.059 +2016-05-07 01:19:06,3588.0,30.8156, +2016-05-07 01:30:00,,,28.0067 +2016-05-07 01:34:01,3588.0,30.7076, +2016-05-07 01:45:00,,,28.0067 +2016-05-07 01:48:56,3587.0,30.8697, +2016-05-07 02:00:00,,,28.0067 +2016-05-07 02:03:51,3587.0,30.8697, +2016-05-07 02:15:00,,,28.0092 +2016-05-07 02:18:47,3586.0,30.8697, +2016-05-07 02:30:00,,,27.957 +2016-05-07 02:33:42,3586.0,30.8697, +2016-05-07 02:45:00,,,27.957 +2016-05-07 02:48:37,3585.0,30.8697, +2016-05-07 03:00:00,,,27.9645 +2016-05-07 03:03:32,3584.0,30.8697, +2016-05-07 03:15:00,,,28.0142 +2016-05-07 03:18:27,3584.0,30.8697, +2016-05-07 03:30:00,,,27.9645 +2016-05-07 03:33:22,3583.0,30.8156, +2016-05-07 03:45:00,,,28.0142 +2016-05-07 03:48:17,3582.0,30.8156, +2016-05-07 04:00:00,,,28.0142 +2016-05-07 04:03:13,3581.0,30.867, +2016-05-07 04:15:00,,,27.9645 +2016-05-07 04:18:08,3582.0,30.8697, +2016-05-07 04:30:00,,,28.0142 +2016-05-07 04:33:10,3580.0,30.8697, +2016-05-07 04:45:00,,,28.0142 +2016-05-07 04:48:05,3581.0,30.8156, +2016-05-07 05:00:00,,,28.064 +2016-05-07 05:03:00,3581.0,30.8697, +2016-05-07 05:15:00,,,28.0615 +2016-05-07 05:17:55,3578.0,30.8128, +2016-05-07 05:30:00,,,28.0167 +2016-05-07 05:32:50,3580.0,30.8156, +2016-05-07 05:45:00,,,28.1238 +2016-05-07 05:47:45,3580.0,30.6537, +2016-05-07 06:00:00,,,28.0142 +2016-05-07 06:02:40,3577.0,30.8697, +2016-05-07 06:15:00,,,28.0142 +2016-05-07 06:17:35,3578.0,30.8697, +2016-05-07 06:30:00,,,27.9719 +2016-05-07 06:32:30,3578.0,30.8697, +2016-05-07 06:45:00,,,28.0241 +2016-05-07 06:47:25,3578.0,30.8156, +2016-05-07 07:00:00,,,28.0142 +2016-05-07 07:02:20,3576.0,30.8697, +2016-05-07 07:15:00,,,28.0216 +2016-05-07 07:17:15,3576.0,30.8073, +2016-05-07 07:30:00,,,27.9744 +2016-05-07 07:32:10,3576.0,30.8615, +2016-05-07 07:45:00,,,27.9719 +2016-05-07 07:47:05,3578.0,30.8073, +2016-05-07 08:00:00,,,28.0216 +2016-05-07 08:02:00,3582.0,30.7506, +2016-05-07 08:15:00,,,28.0216 +2016-05-07 08:16:55,3584.0,30.8101, +2016-05-07 08:30:00,,,28.0241 +2016-05-07 08:31:51,3584.0,30.8073, +2016-05-07 08:45:00,,,27.9719 +2016-05-07 08:46:46,3587.0,30.9184, +2016-05-07 09:00:00,,,28.0216 +2016-05-07 09:01:41,3581.0,31.0955, +2016-05-07 09:15:00,,,27.9719 +2016-05-07 09:16:37,3578.0,30.867, +2016-05-07 09:30:00,,,27.9719 +2016-05-07 09:31:32,3581.0,30.9783, +2016-05-07 09:45:00,,,28.0241 +2016-05-07 09:46:28,3588.0,30.9157, +2016-05-07 10:00:00,,,28.0216 +2016-05-07 10:01:23,3573.0,31.0355, +2016-05-07 10:15:00,,,28.0216 +2016-05-07 10:16:19,3588.0,30.867, +2016-05-07 10:30:00,,,27.9719 +2016-05-07 10:31:14,3592.0,31.153, +2016-05-07 10:45:00,,,27.9744 +2016-05-07 10:46:10,3586.0,30.8642, +2016-05-07 11:00:00,,,28.0216 +2016-05-07 11:01:06,3589.0,30.867, +2016-05-07 11:15:00,,,27.9719 +2016-05-07 11:16:02,3577.0,31.1038, +2016-05-07 11:30:00,,,28.0216 +2016-05-07 11:30:58,3582.0,31.0983, +2016-05-07 11:45:00,,,27.9719 +2016-05-07 11:45:53,3585.0,31.0983, +2016-05-07 12:00:00,,,27.8233 +2016-05-07 12:00:49,3597.0,30.8724, +2016-05-07 12:15:00,,,27.774 +2016-05-07 12:15:45,3598.0,30.9294, +2016-05-07 12:30:00,,,27.8233 +2016-05-07 12:30:41,3598.0,30.8752, +2016-05-07 12:45:00,,,27.8728 +2016-05-07 12:45:37,3595.0,31.041, +2016-05-07 13:00:00,,,27.8233 +2016-05-07 13:00:33,3577.0,31.2271, +2016-05-07 13:15:00,,,27.8233 +2016-05-07 13:15:29,3577.0,30.8971, +2016-05-07 13:30:00,,,27.774 +2016-05-07 13:30:25,3596.0,30.9948, +2016-05-07 13:45:00,,,27.774 +2016-05-07 13:45:21,3588.0,31.1066, +2016-05-07 14:00:00,,,27.7764 +2016-05-07 14:00:17,3591.0,31.0603, +2016-05-07 14:15:00,,,27.8233 +2016-05-07 14:15:13,3588.0,31.1204, +2016-05-07 14:30:00,,,27.8233 +2016-05-07 14:30:09,3560.0,31.5806, +2016-05-07 14:45:00,,,27.774 +2016-05-07 14:45:04,3542.0,31.9213, +2016-05-07 15:00:00,,,27.8209 +2016-05-07 15:00:01,3554.0,31.7533, +2016-05-07 15:14:57,3553.0,31.6975, +2016-05-07 15:15:00,,,27.8209 +2016-05-07 15:29:53,3549.0,31.8233, +2016-05-07 15:30:00,,,27.8728 +2016-05-07 15:44:49,3536.0,32.2379, +2016-05-07 15:45:00,,,27.8703 +2016-05-07 15:59:45,3531.0,32.0031, +2016-05-07 16:00:00,,,27.774 +2016-05-07 16:14:41,3523.0,32.2407, +2016-05-07 16:15:00,,,27.8233 +2016-05-07 16:29:37,3525.0,32.1669, +2016-05-07 16:30:00,,,27.8233 +2016-05-07 16:44:33,3528.0,32.068000000000005, +2016-05-07 16:45:00,,,27.7715 +2016-05-07 16:59:29,3538.0,31.9412, +2016-05-07 17:00:00,,,27.8233 +2016-05-07 17:14:26,3530.0,32.0145, +2016-05-07 17:15:00,,,27.7715 +2016-05-07 17:29:21,3525.0,32.1331, +2016-05-07 17:30:00,,,27.8233 +2016-05-07 17:44:17,3517.0,32.366, +2016-05-07 17:45:00,,,27.8233 +2016-05-07 17:59:13,3514.0,32.3747, +2016-05-07 18:00:00,,,27.8307 +2016-05-07 18:14:09,3508.0,32.4976, +2016-05-07 18:15:00,,,27.8307 +2016-05-07 18:29:05,3506.0,32.3234, +2016-05-07 18:30:00,,,27.8802 +2016-05-07 18:44:01,3533.0,-9.2931, +2016-05-07 18:45:00,,,27.8802 +2016-05-07 18:58:57,3516.0,32.2012, +2016-05-07 19:00:00,,,27.8307 +2016-05-07 19:13:52,3514.0,32.1445, +2016-05-07 19:15:00,,,27.8802 +2016-05-07 19:28:48,3499.0,32.449, +2016-05-07 19:30:00,,,27.8802 +2016-05-07 19:43:44,3498.0,32.449, +2016-05-07 19:45:00,,,27.8307 +2016-05-07 19:58:40,3502.0,32.2723, +2016-05-07 20:00:00,,,27.8802 +2016-05-07 20:13:35,3479.0,32.6961, +2016-05-07 20:15:00,,,27.8802 +2016-05-07 20:28:31,3488.0,32.389, +2016-05-07 20:30:00,,,27.9297 +2016-05-07 20:43:26,3469.0,32.8146, +2016-05-07 20:45:00,,,27.8307 +2016-05-07 20:58:22,3464.0,32.8117, +2016-05-07 21:00:00,,,27.8802 +2016-05-07 21:13:17,3461.0,32.9306, +2016-05-07 21:15:00,,,27.8381 +2016-05-07 21:28:13,3455.0,32.9335, +2016-05-07 21:30:00,,,27.9372 +2016-05-07 21:43:08,3449.0,33.0559, +2016-05-07 21:45:00,,,27.9372 +2016-05-07 21:58:04,3450.0,32.9365, +2016-05-07 22:00:00,,,27.8876 +2016-05-07 22:12:59,3450.0,32.9306, +2016-05-07 22:15:00,,,27.8876 +2016-05-07 22:27:55,3437.0,33.1788, +2016-05-07 22:30:00,,,27.8876 +2016-05-07 22:42:50,3420.0,33.0559, +2016-05-07 22:45:00,,,27.9372 +2016-05-07 22:57:45,3412.0,33.2552, +2016-05-07 23:00:00,,,27.9372 +2016-05-07 23:12:40,3392.0,33.8639, +2016-05-07 23:15:00,,,27.8851 +2016-05-07 23:27:36,3381.0,34.0535, +2016-05-07 23:30:00,,,27.8876 +2016-05-07 23:42:31,3364.0,34.3753, +2016-05-07 23:45:00,,,27.8876 +2016-05-07 23:57:26,3030.0,-8.1326, +2016-05-08 00:00:00,,,-4.0625 +2016-05-08 00:12:22,3030.0,-6.5776, +2016-05-08 00:15:00,,,24.5436 +2016-05-08 00:27:17,3051.0,-11.7669, +2016-05-08 00:30:00,,, +2016-05-08 00:42:13,3051.0,-11.7005, +2016-05-08 00:45:00,,, +2016-05-08 00:57:08,3051.0,-11.6675, +2016-05-08 01:00:00,,, +2016-05-08 01:12:06,3050.0,-11.6356, +2016-05-08 01:15:00,,, +2016-05-08 01:27:02,3050.0,-11.6685, +2016-05-08 01:30:00,,, +2016-05-08 01:41:57,3050.0,-11.6356, +2016-05-08 01:45:00,,, +2016-05-08 01:56:52,3048.0,-11.6356, +2016-05-08 02:00:00,,, +2016-05-08 02:11:47,3047.0,-11.6356, +2016-05-08 02:15:00,,, +2016-05-08 02:26:42,3045.0,-11.6356, +2016-05-08 02:30:00,,, +2016-05-08 02:41:37,3043.0,-11.6356, +2016-05-08 02:45:00,,, +2016-05-08 02:56:33,3043.0,-11.6366, +2016-05-08 03:00:00,,, +2016-05-08 03:11:28,3043.0,-11.6366, +2016-05-08 03:15:00,,, +2016-05-08 03:26:23,3040.0,-11.6366, +2016-05-08 03:30:00,,, +2016-05-08 03:41:18,3040.0,-11.6366, +2016-05-08 03:45:00,,, +2016-05-08 03:56:13,3038.0,-11.6366, +2016-05-08 04:00:00,,, +2016-05-08 04:11:08,3037.0,-11.6366, +2016-05-08 04:15:00,,, +2016-05-08 04:26:03,3036.0,-11.6366, +2016-05-08 04:30:00,,, +2016-05-08 04:40:58,3036.0,-11.6366, +2016-05-08 04:45:00,,, +2016-05-08 04:55:53,3035.0,-11.6366, +2016-05-08 05:00:00,,, +2016-05-08 05:10:48,3034.0,-11.6366, +2016-05-08 05:15:00,,, +2016-05-08 05:25:44,3031.0,-11.6706, +2016-05-08 05:30:00,,, +2016-05-08 05:40:39,3031.0,-11.6695, +2016-05-08 05:45:00,,, +2016-05-08 05:55:34,3031.0,-11.7036, +2016-05-08 06:00:00,,, +2016-05-08 06:10:29,3030.0,-11.6695, +2016-05-08 06:15:00,,, +2016-05-08 06:25:24,3030.0,-11.7036, +2016-05-08 06:30:00,,, +2016-05-08 06:40:19,3030.0,-11.7036, +2016-05-08 06:45:00,,, +2016-05-08 06:55:14,3030.0,-11.6695, +2016-05-08 07:00:00,,, +2016-05-08 07:10:09,3032.0,-11.7036, +2016-05-08 07:15:00,,, +2016-05-08 07:25:04,3034.0,-11.7026, +2016-05-08 07:30:00,,, +2016-05-08 07:39:59,3035.0,-11.7026, +2016-05-08 07:45:00,,, +2016-05-08 07:54:54,3036.0,-11.6695, +2016-05-08 08:00:00,,, +2016-05-08 08:09:50,3038.0,-11.6695, +2016-05-08 08:15:00,,, +2016-05-08 08:24:45,3041.0,-11.6706, +2016-05-08 08:30:00,,, +2016-05-08 08:39:40,3043.0,-11.6366, +2016-05-08 08:45:00,,, +2016-05-08 08:54:36,3045.0,-11.6366, +2016-05-08 09:00:00,,, +2016-05-08 09:09:31,3048.0,-11.6038, +2016-05-08 09:15:00,,, +2016-05-08 09:24:27,3051.0,-11.571, +2016-05-08 09:30:00,,, +2016-05-08 09:39:22,3053.0,-11.571, +2016-05-08 09:45:00,,, +2016-05-08 09:54:17,3058.0,-11.5384, +2016-05-08 10:00:00,,, +2016-05-08 10:09:13,3060.0,-11.5059, +2016-05-08 10:15:00,,, +2016-05-08 10:24:09,3064.0,-11.5059, +2016-05-08 10:30:00,,, +2016-05-08 10:39:05,3065.0,-11.5384, +2016-05-08 10:45:00,,, +2016-05-08 10:54:00,3070.0,-11.1851, +2016-05-08 11:00:00,,, +2016-05-08 11:09:03,3072.0,-11.1851, +2016-05-08 11:15:00,,, +2016-05-08 11:23:59,3072.0,-11.1841, +2016-05-08 11:30:00,,, +2016-05-08 11:38:55,3075.0,-11.1841, +2016-05-08 11:45:00,,, +2016-05-08 11:53:51,3077.0,-11.1851, +2016-05-08 12:00:00,,, +2016-05-08 12:08:47,3079.0,-11.1851, +2016-05-08 12:15:00,,, +2016-05-08 12:23:43,3080.0,-11.1851, +2016-05-08 12:30:00,,, +2016-05-08 12:38:38,3080.0,-11.1851, +2016-05-08 12:45:00,,, +2016-05-08 12:53:34,3080.0,-11.1526, +2016-05-08 13:00:00,,, +2016-05-08 13:08:30,3082.0,-11.1526, +2016-05-08 13:15:00,,, +2016-05-08 13:23:26,3083.0,-11.1526, +2016-05-08 13:30:00,,, +2016-05-08 13:38:22,3085.0,-11.1526, +2016-05-08 13:45:00,,, +2016-05-08 13:53:18,3085.0,-11.1526, +2016-05-08 14:00:00,,, +2016-05-08 14:08:14,3086.0,-11.1526, +2016-05-08 14:15:00,,, +2016-05-08 14:23:11,3086.0,-11.1526, +2016-05-08 14:30:00,,, +2016-05-08 14:38:07,3086.0,-11.1516, +2016-05-08 14:45:00,,, +2016-05-08 14:53:03,3086.0,-11.1526, +2016-05-08 15:00:00,,, +2016-05-08 15:07:59,3087.0,-11.1526, +2016-05-08 15:15:00,,, +2016-05-08 15:22:55,3087.0,-11.1526, +2016-05-08 15:30:00,,, +2016-05-08 15:37:52,3087.0,-11.1526, +2016-05-08 15:45:00,,, +2016-05-08 15:52:48,3087.0,-11.1516, +2016-05-08 16:00:00,,, +2016-05-08 16:07:44,3087.0,-11.1526, +2016-05-08 16:15:00,,, +2016-05-08 16:22:40,3087.0,-11.1526, +2016-05-08 16:30:00,,,-8.1694 +2016-05-08 16:37:36,3087.0,-11.1841, +2016-05-08 16:45:00,,,-4.835 +2016-05-08 16:52:32,3087.0,-11.1831, +2016-05-08 17:00:00,,,-4.8135 +2016-05-08 17:07:28,3087.0,-11.1831, +2016-05-08 17:15:00,,,-4.7917 +2016-05-08 17:22:24,3086.0,-11.1831, +2016-05-08 17:30:00,,,-4.7702 +2016-05-08 17:37:20,3086.0,-11.1841, +2016-05-08 17:45:00,,,-4.962 +2016-05-08 17:52:16,3085.0,-11.1831, +2016-05-08 18:00:00,,,-4.7913 +2016-05-08 18:07:12,3083.0,-11.1831, +2016-05-08 18:15:00,,,-4.9401 +2016-05-08 18:22:08,3082.0,-11.1831, +2016-05-08 18:30:00,,,-4.8968 +2016-05-08 18:37:04,3081.0,-11.2156, +2016-05-08 18:45:00,,,-4.7475 +2016-05-08 18:52:00,3080.0,-11.2156, +2016-05-08 19:00:00,,,-4.7261 +2016-05-08 19:06:56,3079.0,-11.2156, +2016-05-08 19:15:00,,,-4.7694 +2016-05-08 19:21:52,3077.0,-11.2156, +2016-05-08 19:30:00,,,-4.7274 +2016-05-08 19:36:48,3075.0,-11.2473, +2016-05-08 19:45:00,,,-4.7055 +2016-05-08 19:51:44,3072.0,-11.2147, +2016-05-08 20:00:00,,, +2016-05-08 20:06:40,3072.0,-11.2473, +2016-05-08 20:15:00,,, +2016-05-08 20:21:50,3070.0,-11.2473, +2016-05-08 20:30:00,,, +2016-05-08 20:36:45,3067.0,-11.28, +2016-05-08 20:45:00,,, +2016-05-08 20:51:41,3065.0,-11.28, +2016-05-08 21:00:00,,, +2016-05-08 21:06:37,3064.0,-11.28, +2016-05-08 21:15:00,,, +2016-05-08 21:21:32,3061.0,-11.3119, +2016-05-08 21:30:00,,, +2016-05-08 21:36:28,3058.0,-11.3119, +2016-05-08 21:45:00,,, +2016-05-08 21:51:24,3058.0,-11.3119, +2016-05-08 22:00:00,,, +2016-05-08 22:06:19,3055.0,-11.3448, +2016-05-08 22:15:00,,, +2016-05-08 22:21:15,3053.0,-11.3448, +2016-05-08 22:30:00,,, +2016-05-08 22:36:10,3051.0,-11.3438, +2016-05-08 22:45:00,,, +2016-05-08 22:51:06,3051.0,-11.3438, +2016-05-08 23:00:00,,, +2016-05-08 23:06:01,3050.0,-11.3448, +2016-05-08 23:15:00,,, +2016-05-08 23:20:56,3048.0,-11.3768, +2016-05-08 23:30:00,,, +2016-05-08 23:35:52,3047.0,-11.3768, +2016-05-08 23:45:00,,, +2016-05-08 23:50:47,3046.0,-11.3768, +2016-05-09 00:00:00,,, +2016-05-09 00:05:43,3045.0,-11.3768, +2016-05-09 00:15:00,,, +2016-05-09 00:20:38,3044.0,-11.3768, +2016-05-09 00:30:00,,, +2016-05-09 00:35:34,3043.0,-11.3758, +2016-05-09 00:45:00,,, +2016-05-09 00:50:29,3043.0,-11.3758, +2016-05-09 01:00:00,,, +2016-05-09 01:05:32,3043.0,-11.3758, +2016-05-09 01:15:00,,, +2016-05-09 01:20:27,3043.0,-11.3768, +2016-05-09 01:30:00,,, +2016-05-09 01:35:30,3042.0,-11.3758, +2016-05-09 01:45:00,,, +2016-05-09 01:50:25,3041.0,-11.3768, +2016-05-09 02:00:00,,, +2016-05-09 02:05:21,3039.0,-11.3758, +2016-05-09 02:15:00,,, +2016-05-09 02:20:16,3038.0,-11.4089, +2016-05-09 02:30:00,,, +2016-05-09 02:35:12,3037.0,-11.4089, +2016-05-09 02:45:00,,, +2016-05-09 02:50:07,3036.0,-11.4089, +2016-05-09 03:00:00,,, +2016-05-09 03:05:02,3036.0,-11.4089, +2016-05-09 03:15:00,,, +2016-05-09 03:19:58,3035.0,-11.4089, +2016-05-09 03:30:00,,, +2016-05-09 03:34:53,3033.0,-11.4089, +2016-05-09 03:45:00,,, +2016-05-09 03:49:49,3031.0,-11.4079, +2016-05-09 04:00:00,,, +2016-05-09 04:04:44,3030.0,-11.4412, +2016-05-09 04:15:00,,, +2016-05-09 04:19:39,3030.0,-11.4089, +2016-05-09 04:30:00,,, +2016-05-09 04:34:34,3029.0,-11.4422, +2016-05-09 04:45:00,,, +2016-05-09 04:49:30,3029.0,-11.4089, +2016-05-09 05:00:00,,, +2016-05-09 05:04:25,3026.0,-11.4412, +2016-05-09 05:15:00,,, +2016-05-09 05:19:20,3026.0,-11.4089, +2016-05-09 05:30:00,,, +2016-05-09 05:34:16,3025.0,-11.4079, +2016-05-09 05:45:00,,, +2016-05-09 05:49:11,3023.0,-11.4412, +2016-05-09 06:00:00,,, +2016-05-09 06:04:06,3023.0,-11.4412, +2016-05-09 06:15:00,,, +2016-05-09 06:19:01,3023.0,-11.4412, +2016-05-09 06:30:00,,, +2016-05-09 06:33:57,3022.0,-11.4412, +2016-05-09 06:45:00,,, +2016-05-09 06:48:52,3023.0,-11.4412, +2016-05-09 07:00:00,,, +2016-05-09 07:03:47,3023.0,-11.4412, +2016-05-09 07:15:00,,, +2016-05-09 07:18:42,3023.0,-11.4412, +2016-05-09 07:30:00,,, +2016-05-09 07:33:37,3025.0,-11.4089, +2016-05-09 07:45:00,,, +2016-05-09 07:48:32,3028.0,-11.4089, +2016-05-09 08:00:00,,, +2016-05-09 08:03:28,3029.0,-11.3758, +2016-05-09 08:15:00,,, +2016-05-09 08:18:23,3031.0,-11.3768, +2016-05-09 08:30:00,,, +2016-05-09 08:33:18,3034.0,-11.3768, +2016-05-09 08:45:00,,, +2016-05-09 08:48:14,3035.0,-11.3448, +2016-05-09 09:00:00,,, +2016-05-09 09:03:09,3038.0,-11.3119, +2016-05-09 09:15:00,,, +2016-05-09 09:18:05,3041.0,-11.28, +2016-05-09 09:30:00,,, +2016-05-09 09:33:00,3043.0,-11.28, +2016-05-09 09:45:00,,,-5.1088 +2016-05-09 09:47:56,3045.0,-11.28, +2016-05-09 10:00:00,,,-5.0448 +2016-05-09 10:02:51,3050.0,-11.2156, +2016-05-09 10:15:00,,,8.4257 +2016-05-09 10:17:47,3051.0,-11.1831, +2016-05-09 10:30:00,,,-3.8327 +2016-05-09 10:32:42,3054.0,-11.1841, +2016-05-09 10:45:00,,,55.005 +2016-05-09 10:47:38,3058.0,-11.2156, +2016-05-09 11:00:00,,,23.7992 +2016-05-09 11:02:34,3061.0,-11.1526, +2016-05-09 11:15:00,,,-3.5335 +2016-05-09 11:17:30,3064.0,-11.1526, +2016-05-09 11:30:00,,,-4.7107 +2016-05-09 11:32:26,3065.0,-11.1526, +2016-05-09 11:45:00,,,23.9232 +2016-05-09 11:47:22,3066.0,-11.1526, +2016-05-09 12:00:00,,,25.6107 +2016-05-09 12:02:18,3068.0,-11.1526, +2016-05-09 12:15:00,,,26.7861 +2016-05-09 12:17:14,3070.0,-11.1526, +2016-05-09 12:30:00,,,-4.4504 +2016-05-09 12:32:10,3071.0,-11.1526, +2016-05-09 12:45:00,,,26.2608 +2016-05-09 12:47:06,3072.0,-11.1526, +2016-05-09 13:00:00,,,-5.2364 +2016-05-09 13:02:02,3072.0,-11.1526, +2016-05-09 13:15:00,,,-0.2046 +2016-05-09 13:16:58,3073.0,-11.1526, +2016-05-09 13:30:00,,,1.5813 +2016-05-09 13:31:54,3074.0,-11.1526, +2016-05-09 13:45:00,,,55.3896 +2016-05-09 13:46:50,3075.0,-11.1841, +2016-05-09 14:00:00,,,55.7789 +2016-05-09 14:01:46,3076.0,-11.1841, +2016-05-09 14:15:00,,,55.6503 +2016-05-09 14:16:42,3077.0,-11.1841, +2016-05-09 14:30:00,,,55.7789 +2016-05-09 14:31:38,3078.0,-11.1841, +2016-05-09 14:45:00,,,56.0378 +2016-05-09 14:46:34,3079.0,-11.1841, +2016-05-09 15:00:00,,,55.6503 +2016-05-09 15:01:30,3079.0,-11.1516, +2016-05-09 15:15:00,,,55.6503 +2016-05-09 15:16:26,3079.0,-11.1526, +2016-05-09 15:30:00,,,55.6503 +2016-05-09 15:31:22,3080.0,-11.1841, +2016-05-09 15:45:00,,, +2016-05-09 15:46:19,3080.0,-11.2156, +2016-05-09 16:00:00,,,56.173 +2016-05-09 16:01:15,3080.0,-11.1841, +2016-05-09 16:15:00,,,56.173 +2016-05-09 16:16:11,3080.0,-11.1841, +2016-05-09 16:30:00,,,56.173 +2016-05-09 16:31:07,3080.0,-11.1841, +2016-05-09 16:45:00,,, +2016-05-09 16:46:03,3079.0,-11.2156, +2016-05-09 17:00:00,,,49.4429 +2016-05-09 17:00:59,3078.0,-11.2156, +2016-05-09 17:15:00,,,56.3038 +2016-05-09 17:15:55,3078.0,-11.28, +2016-05-09 17:30:00,,,56.3038 +2016-05-09 17:30:51,3077.0,-11.2156, +2016-05-09 17:45:00,,,56.4401 +2016-05-09 17:45:47,3076.0,-11.2156, +2016-05-09 18:00:00,,,56.0527 +2016-05-09 18:00:44,3074.0,-11.2156, +2016-05-09 18:15:00,,,56.0428 +2016-05-09 18:15:40,3072.0,-11.2156, +2016-05-09 18:30:00,,,55.6602 +2016-05-09 18:30:36,3072.0,-11.2147, +2016-05-09 18:45:00,,,56.0478 +2016-05-09 18:45:32,3071.0,-11.2473, +2016-05-09 19:00:00,,,56.7044 +2016-05-09 19:00:28,3070.0,-11.2473, +2016-05-09 19:15:00,,,56.7044 +2016-05-09 19:15:24,3067.0,-11.2473, +2016-05-09 19:30:00,,,56.3188 +2016-05-09 19:30:20,3065.0,-11.28, +2016-05-09 19:45:00,,,56.183 +2016-05-09 19:45:16,3064.0,-11.28, +2016-05-09 20:00:00,,, +2016-05-09 20:00:11,3061.0,-11.3119, +2016-05-09 20:15:00,,,-7.3898 +2016-05-09 20:15:07,3059.0,-11.2473, +2016-05-09 20:30:00,,,55.5271 +2016-05-09 20:30:03,3058.0,-11.3119, +2016-05-09 20:44:59,3054.0,-11.3438, +2016-05-09 20:45:00,,, +2016-05-09 20:59:55,3052.0,-11.3119, +2016-05-09 21:00:00,,,55.5222 +2016-05-09 21:14:51,3051.0,-11.28, +2016-05-09 21:15:00,,,-3.99 +2016-05-09 21:29:47,3050.0,-11.28, +2016-05-09 21:30:00,,,6.082999999999998 +2016-05-09 21:44:42,3048.0,-11.28, +2016-05-09 21:45:00,,,-4.4631 +2016-05-09 21:59:38,3044.0,-11.3768, +2016-05-09 22:00:00,,,55.5271 +2016-05-09 22:14:34,3043.0,-11.3758, +2016-05-09 22:15:00,,,55.923 +2016-05-09 22:29:29,3042.0,-11.3758, +2016-05-09 22:30:00,,,56.587 +2016-05-09 22:44:25,3039.0,-11.3758, +2016-05-09 22:45:00,,,56.0627 +2016-05-09 22:59:21,3039.0,-11.4079, +2016-05-09 23:00:00,,,54.6763 +2016-05-09 23:14:16,3043.0,-11.3428, +2016-05-09 23:15:00,,,70.125 +2016-05-09 23:29:12,3036.0,-11.4079, +2016-05-09 23:30:00,,,56.4601 +2016-05-09 23:44:07,3044.0,-11.3758, +2016-05-09 23:45:00,,,24.2075 +2016-05-09 23:59:03,3042.0,-11.5069, +2016-05-10 00:00:00,,,22.5775 +2016-05-10 00:13:58,3032.0,-11.3758, +2016-05-10 00:15:00,,,30.5977 +2016-05-10 00:28:53,3030.0,-11.3758, +2016-05-10 00:30:00,,,-0.3133 +2016-05-10 00:43:56,3029.0,-11.3758, +2016-05-10 00:45:00,,,-4.1844 +2016-05-10 00:58:51,3029.0,-11.3758, +2016-05-10 01:00:00,,,-4.6351 +2016-05-10 01:13:47,3027.0,-11.4089, +2016-05-10 01:15:00,,,-4.6372 +2016-05-10 01:28:42,3026.0,-11.3758, +2016-05-10 01:30:00,,,-4.6582 +2016-05-10 01:43:37,3024.0,-11.4079, +2016-05-10 01:45:00,,,-4.467 +2016-05-10 01:58:33,3023.0,-11.4089, +2016-05-10 02:00:00,,, +2016-05-10 02:13:28,3022.0,-11.4079, +2016-05-10 02:15:00,,,-4.34 +2016-05-10 02:28:23,3020.0,-11.4089, +2016-05-10 02:30:00,,, +2016-05-10 02:43:19,3020.0,-11.4089, +2016-05-10 02:45:00,,, +2016-05-10 02:58:14,3019.0,-11.4079, +2016-05-10 03:00:00,,, +2016-05-10 03:13:09,3016.0,-11.4079, +2016-05-10 03:15:00,,, +2016-05-10 03:28:04,3015.0,-11.4079, +2016-05-10 03:30:00,,, +2016-05-10 03:43:00,3014.0,-11.4079, +2016-05-10 03:45:00,,, +2016-05-10 03:57:55,3014.0,-11.4412, +2016-05-10 04:00:00,,, +2016-05-10 04:12:50,3012.0,-11.4412, +2016-05-10 04:15:00,,, +2016-05-10 04:27:46,3011.0,-11.4079, +2016-05-10 04:30:00,,, +2016-05-10 04:42:41,3010.0,-11.4412, +2016-05-10 04:45:00,,, +2016-05-10 04:57:36,3009.0,-11.4412, +2016-05-10 05:00:00,,, +2016-05-10 05:12:31,3008.0,-11.4412, +2016-05-10 05:15:00,,, +2016-05-10 05:27:27,3007.0,-11.4402, +2016-05-10 05:30:00,,, +2016-05-10 05:42:22,3006.0,-11.4402, +2016-05-10 05:45:00,,, +2016-05-10 05:57:17,3005.0,-11.4402, +2016-05-10 06:00:00,,, +2016-05-10 06:12:12,3004.0,-11.4402, +2016-05-10 06:15:00,,, +2016-05-10 06:27:08,3003.0,-11.4402, +2016-05-10 06:30:00,,, +2016-05-10 06:42:03,3005.0,-11.5059, +2016-05-10 06:45:00,,, +2016-05-10 06:56:58,3005.0,-11.4079, +2016-05-10 07:00:00,,, +2016-05-10 07:11:54,3004.0,-11.4412, +2016-05-10 07:15:00,,, +2016-05-10 07:26:49,3005.0,-11.4412, +2016-05-10 07:30:00,,, +2016-05-10 07:41:44,3007.0,-11.4412, +2016-05-10 07:45:00,,, +2016-05-10 07:56:39,3008.0,-11.4735, +2016-05-10 08:00:00,,, +2016-05-10 08:11:35,3009.0,-11.4089, +2016-05-10 08:15:00,,, +2016-05-10 08:26:30,3010.0,-11.4089, +2016-05-10 08:30:00,,, +2016-05-10 08:41:25,3012.0,-11.3758, +2016-05-10 08:45:00,,, +2016-05-10 08:56:21,3015.0,-11.4079, +2016-05-10 09:00:00,,,-8.6262 +2016-05-10 09:11:16,3016.0,-11.3438, +2016-05-10 09:15:00,,, +2016-05-10 09:26:11,3019.0,-11.3099, +2016-05-10 09:30:00,,, +2016-05-10 09:41:07,3021.0,-11.3119, +2016-05-10 09:45:00,,, +2016-05-10 09:56:02,3022.0,-11.28, +2016-05-10 10:00:00,,, +2016-05-10 10:10:58,3025.0,-11.2147, +2016-05-10 10:15:00,,, +2016-05-10 10:25:53,3029.0,-11.2463, +2016-05-10 10:30:00,,, +2016-05-10 10:40:49,3032.0,-11.1831, +2016-05-10 10:45:00,,, +2016-05-10 10:55:45,3036.0,-11.2166, +2016-05-10 11:00:00,,, +2016-05-10 11:10:40,3037.0,-11.1831, +2016-05-10 11:15:00,,,-4.6623 +2016-05-10 11:25:36,3038.0,-11.2156, +2016-05-10 11:30:00,,, +2016-05-10 11:40:32,3040.0,-11.2156, +2016-05-10 11:45:00,,,-4.6623 +2016-05-10 11:55:28,3043.0,-11.2156, +2016-05-10 12:00:00,,,-4.7055 +2016-05-10 12:10:24,3043.0,-11.2156, +2016-05-10 12:15:00,,,-4.7055 +2016-05-10 12:25:20,3045.0,-11.2156, +2016-05-10 12:30:00,,,-4.6841 +2016-05-10 12:40:15,3047.0,-11.1831, +2016-05-10 12:45:00,,,-4.7055 +2016-05-10 12:55:11,3048.0,-11.1831, +2016-05-10 13:00:00,,,-4.7055 +2016-05-10 13:10:07,3050.0,-11.1841, +2016-05-10 13:15:00,,,-4.7055 +2016-05-10 13:25:03,3051.0,-11.1841, +2016-05-10 13:30:00,,,-4.7475 +2016-05-10 13:39:59,3052.0,-11.1516, +2016-05-10 13:45:00,,,-4.8543 +2016-05-10 13:54:55,3053.0,-11.1526, +2016-05-10 14:00:00,,,-4.6413 +2016-05-10 14:09:51,3054.0,-11.1841, +2016-05-10 14:15:00,,,-4.6623 +2016-05-10 14:24:47,3054.0,-11.1841, +2016-05-10 14:30:00,,,-4.8753 +2016-05-10 14:39:43,3055.0,-11.1841, +2016-05-10 14:45:00,,,-4.9392 +2016-05-10 14:54:40,3056.0,-11.1841, +2016-05-10 15:00:00,,,-4.9397 +2016-05-10 15:09:36,3057.0,-11.1526, +2016-05-10 15:15:00,,,-5.0041 +2016-05-10 15:24:32,3058.0,-11.1841, +2016-05-10 15:30:00,,,-4.9182 +2016-05-10 15:39:28,3058.0,-11.1841, +2016-05-10 15:45:00,,,-4.9603 +2016-05-10 15:54:24,3058.0,-11.1851, +2016-05-10 16:00:00,,,-4.8963 +2016-05-10 16:09:20,3058.0,-11.1841, +2016-05-10 16:15:00,,,-4.9178 +2016-05-10 16:24:16,3058.0,-11.1841, +2016-05-10 16:30:00,,,-4.7891 +2016-05-10 16:39:12,3057.0,-11.1841, +2016-05-10 16:45:00,,,-5.1102 +2016-05-10 16:54:08,3057.0,-11.1841, +2016-05-10 17:00:00,,,-4.874 +2016-05-10 17:09:04,3054.0,-11.1831, +2016-05-10 17:15:00,,,-4.8101 +2016-05-10 17:24:00,3054.0,-11.1841, +2016-05-10 17:30:00,,,-4.6191 +2016-05-10 17:38:56,3053.0,-11.2156, +2016-05-10 17:45:00,,,-4.832 +2016-05-10 17:53:52,3052.0,-11.2156, +2016-05-10 18:00:00,,,-4.832 +2016-05-10 18:08:48,3051.0,-11.2156, +2016-05-10 18:15:00,,,-4.832 +2016-05-10 18:23:44,3050.0,-11.2156, +2016-05-10 18:30:00,,,-4.8316 +2016-05-10 18:38:41,3050.0,-11.2156, +2016-05-10 18:45:00,,,-4.7673 +2016-05-10 18:53:36,3047.0,-11.2483, +2016-05-10 19:00:00,,,-4.5969 +2016-05-10 19:08:32,3045.0,-11.2473, +2016-05-10 19:15:00,,,-4.5977 +2016-05-10 19:23:28,3043.0,-11.28, +2016-05-10 19:30:00,,,-4.5981 +2016-05-10 19:38:24,3042.0,-11.28, +2016-05-10 19:45:00,,,-4.5763 +2016-05-10 19:53:20,3039.0,-11.279000000000002, +2016-05-10 20:00:00,,,-4.5981 +2016-05-10 20:08:16,3037.0,-11.279000000000002, +2016-05-10 20:15:00,,,-4.5985 +2016-05-10 20:23:12,3036.0,-11.3119, +2016-05-10 20:30:00,,,-4.5771 +2016-05-10 20:38:08,3034.0,-11.3119, +2016-05-10 20:45:00,,,-4.5767 +2016-05-10 20:53:04,3030.0,-11.3119, +2016-05-10 21:00:00,,,-4.5763 +2016-05-10 21:07:59,3029.0,-11.3438, +2016-05-10 21:15:00,,,-4.5763 +2016-05-10 21:22:55,3027.0,-11.3438, +2016-05-10 21:30:00,,,-4.5981 +2016-05-10 21:37:51,3025.0,-11.3438, +2016-05-10 21:45:00,,,-4.5981 +2016-05-10 21:52:47,3023.0,-11.3758, +2016-05-10 22:00:00,,,-4.5767 +2016-05-10 22:07:43,3022.0,-11.3758, +2016-05-10 22:15:00,,,-4.5557 +2016-05-10 22:22:38,3020.0,-11.3758, +2016-05-10 22:30:00,,,-4.5767 +2016-05-10 22:37:34,3018.0,-11.3758, +2016-05-10 22:45:00,,,-4.5985 +2016-05-10 22:52:30,3015.0,-11.4089, +2016-05-10 23:00:00,,, +2016-05-10 23:07:26,3015.0,-11.3758, +2016-05-10 23:15:00,,,-4.5343 +2016-05-10 23:22:21,3014.0,-11.4089, +2016-05-10 23:30:00,,,-4.5561 +2016-05-10 23:37:17,3012.0,-11.4079, +2016-05-10 23:45:00,,,-4.5561 +2016-05-10 23:52:13,3011.0,-11.4079, +2016-05-11 00:00:00,,, +2016-05-11 00:07:08,3010.0,-11.4079, +2016-05-11 00:15:00,,,-4.5561 +2016-05-11 00:22:04,3009.0,-11.4079, +2016-05-11 00:30:00,,,-4.5561 +2016-05-11 00:36:59,3008.0,-11.4412, +2016-05-11 00:45:00,,,-11.6284 +2016-05-11 00:51:55,3007.0,-11.4412, +2016-05-11 01:00:00,,, +2016-05-11 01:06:51,3007.0,-11.4412, +2016-05-11 01:15:00,,,-11.4771 +2016-05-11 01:21:46,3006.0,-11.4412, +2016-05-11 01:30:00,,, +2016-05-11 01:36:42,3004.0,-11.4412, +2016-05-11 01:45:00,,, +2016-05-11 01:51:37,3002.0,-11.4402, +2016-05-11 02:00:00,,, +2016-05-11 02:06:33,3001.0,-11.4402, +2016-05-11 02:15:00,,, +2016-05-11 02:21:28,3000.0,-11.4412, +2016-05-11 02:30:00,,, +2016-05-11 02:36:24,2999.0,-11.4735, +2016-05-11 02:45:00,,, +2016-05-11 02:51:19,2997.0,-11.4735, +2016-05-11 03:00:00,,, +2016-05-11 03:06:15,2995.0,-11.4735, +2016-05-11 03:15:00,,, +2016-05-11 03:21:10,2994.0,-11.4402, +2016-05-11 03:30:00,,, +2016-05-11 03:36:06,2993.0,-11.5069, +2016-05-11 03:45:00,,, +2016-05-11 03:51:01,2992.0,-11.5049, +2016-05-11 04:00:00,,, +2016-05-11 04:05:56,2991.0,-11.5741, +2016-05-11 04:15:00,,, +2016-05-11 04:20:52,2989.0,-11.5049, +2016-05-11 04:30:00,,, +2016-05-11 04:35:47,2987.0,-11.5069, +2016-05-11 04:45:00,,, +2016-05-11 04:50:42,2987.0,-11.5049, +2016-05-11 05:00:00,,, +2016-05-11 05:05:37,2986.0,-11.5049, +2016-05-11 05:15:00,,, +2016-05-11 05:20:32,2985.0,-11.5049, +2016-05-11 05:30:00,,, +2016-05-11 05:35:28,2984.0,-11.5049, +2016-05-11 05:45:00,,, +2016-05-11 05:50:23,2983.0,-11.5049, +2016-05-11 06:00:00,,, +2016-05-11 06:05:18,2982.0,-11.5384, +2016-05-11 06:15:00,,, +2016-05-11 06:20:13,2981.0,-11.5049, +2016-05-11 06:30:00,,, +2016-05-11 06:35:08,2980.0,-11.5049, +2016-05-11 06:45:00,,, +2016-05-11 06:50:03,2980.0,-11.5384, +2016-05-11 07:00:00,,, +2016-05-11 07:04:59,2981.0,-11.5049, +2016-05-11 07:15:00,,,-4.4686 +2016-05-11 07:19:54,2982.0,-11.5384, +2016-05-11 07:30:00,,,-4.5113 +2016-05-11 07:34:49,2983.0,-11.5049, +2016-05-11 07:45:00,,,-4.5109 +2016-05-11 07:49:44,2985.0,-11.5049, +2016-05-11 08:00:00,,,-4.659 +2016-05-11 08:04:39,2986.0,-11.5059, +2016-05-11 08:15:00,,,-4.5739 +2016-05-11 08:19:34,2988.0,-11.4725, +2016-05-11 08:30:00,,,-4.9147 +2016-05-11 08:34:30,2992.0,-11.4735, +2016-05-11 08:45:00,,,-4.6804 +2016-05-11 08:49:25,2993.0,-11.4402, +2016-05-11 09:00:00,,,64.3117 +2016-05-11 09:04:13,3171.0,-10.751, +2016-05-11 09:15:00,,,64.2946 +2016-05-11 09:19:09,3170.0,-10.751, +2016-05-11 09:30:00,,,63.9632 +2016-05-11 09:34:05,3171.0,-10.751, +2016-05-11 09:45:00,,,63.9632 +2016-05-11 09:49:01,3171.0,-10.7198, +2016-05-11 10:00:00,,,63.9575 +2016-05-11 10:03:57,3171.0,-10.7207, +2016-05-11 10:15:00,,,63.793 +2016-05-11 10:18:53,3174.0,-10.6895, +2016-05-11 10:30:00,,,63.7987 +2016-05-11 10:33:49,3175.0,-10.6895, +2016-05-11 10:45:00,,,63.6293 +2016-05-11 10:48:45,3177.0,-10.6904, +2016-05-11 11:00:00,,,63.6293 +2016-05-11 11:03:41,3178.0,-10.6593, +2016-05-11 11:15:00,,,63.2987 +2016-05-11 11:18:37,3180.0,-10.6593, +2016-05-11 11:30:00,,,63.4608 +2016-05-11 11:33:33,3181.0,-10.6593, +2016-05-11 11:45:00,,,62.9656 +2016-05-11 11:48:29,3183.0,-10.6593, +2016-05-11 12:00:00,,,63.1373 +2016-05-11 12:03:25,3184.0,-10.6593, +2016-05-11 12:15:00,,,63.1373 +2016-05-11 12:18:21,3185.0,-10.6593, +2016-05-11 12:30:00,,,62.1742 +2016-05-11 12:33:18,3185.0,-10.6602, +2016-05-11 12:45:00,,,61.6972 +2016-05-11 12:48:14,3186.0,-10.6602, +2016-05-11 13:00:00,,,61.6972 +2016-05-11 13:03:10,3188.0,-10.6292, +2016-05-11 13:15:00,,,61.8573 +2016-05-11 13:18:06,3188.0,-10.6292, +2016-05-11 13:30:00,,,61.6972 +2016-05-11 13:33:03,3189.0,-10.6292, +2016-05-11 13:45:00,,,61.5433 +2016-05-11 13:47:59,3189.0,-10.6292, +2016-05-11 14:00:00,,,61.6972 +2016-05-11 14:02:55,3190.0,-10.6292, +2016-05-11 14:15:00,,,61.8573 +2016-05-11 14:17:52,3191.0,-10.6292, +2016-05-11 14:30:00,,,62.1742 +2016-05-11 14:32:48,3191.0,-10.6292, +2016-05-11 14:45:00,,,62.1742 +2016-05-11 14:47:44,3191.0,-10.6292, +2016-05-11 15:00:00,,,62.1742 +2016-05-11 15:02:41,3191.0,-10.6292, +2016-05-11 15:15:00,,,62.342 +2016-05-11 15:17:37,3192.0,-10.6292, +2016-05-11 15:30:00,,,62.331 +2016-05-11 15:32:33,3191.0,-10.6292, +2016-05-11 15:45:00,,,62.331 +2016-05-11 15:47:30,3192.0,-10.6292, +2016-05-11 16:00:00,,,62.331 +2016-05-11 16:02:26,3192.0,-10.6292, +2016-05-11 16:15:00,,,62.1742 +2016-05-11 16:17:22,3191.0,-10.6292, +2016-05-11 16:30:00,,,61.6972 +2016-05-11 16:32:18,3191.0,-10.6602, +2016-05-11 16:45:00,,,61.8573 +2016-05-11 16:47:14,3190.0,-10.6602, +2016-05-11 17:00:00,,,62.6523 +2016-05-11 17:02:11,3190.0,-10.6602, +2016-05-11 17:15:00,,,62.0126 +2016-05-11 17:17:07,3189.0,-10.6593, +2016-05-11 17:30:00,,,62.4885 +2016-05-11 17:32:03,3189.0,-10.6602, +2016-05-11 17:45:00,,,62.331 +2016-05-11 17:46:59,3188.0,-10.6602, +2016-05-11 18:00:00,,,62.331 +2016-05-11 18:01:55,3187.0,-10.6904, +2016-05-11 18:15:00,,,62.1852 +2016-05-11 18:16:51,3185.0,-10.6904, +2016-05-11 18:30:00,,,62.342 +2016-05-11 18:31:47,3184.0,-10.6904, +2016-05-11 18:45:00,,,62.342 +2016-05-11 18:46:44,3184.0,-10.6904, +2016-05-11 19:00:00,,,62.5052 +2016-05-11 19:01:40,3184.0,-10.6904, +2016-05-11 19:15:00,,,62.3476 +2016-05-11 19:16:36,3183.0,-10.7217, +2016-05-11 19:30:00,,,62.342 +2016-05-11 19:31:32,3182.0,-10.7217, +2016-05-11 19:45:00,,,62.342 +2016-05-11 19:46:28,3181.0,-10.7217, +2016-05-11 20:00:00,,,62.342 +2016-05-11 20:01:24,3180.0,-10.7207, +2016-05-11 20:15:00,,,62.0126 +2016-05-11 20:16:19,3178.0,-10.7207, +2016-05-11 20:30:00,,,62.1852 +2016-05-11 20:31:15,3177.0,-10.7207, +2016-05-11 20:45:00,,,62.3476 +2016-05-11 20:46:11,3177.0,-10.751, +2016-05-11 21:00:00,,,61.8737 +2016-05-11 21:01:07,3175.0,-10.751, +2016-05-11 21:15:00,,,62.1852 +2016-05-11 21:16:03,3174.0,-10.751, +2016-05-11 21:30:00,,,62.5052 +2016-05-11 21:30:58,3174.0,-10.751, +2016-05-11 21:45:00,,,62.342 +2016-05-11 21:45:54,3173.0,-10.751, +2016-05-11 22:00:00,,,62.5052 +2016-05-11 22:00:50,3172.0,-10.7824, +2016-05-11 22:15:00,,,62.669 +2016-05-11 22:15:46,3171.0,-10.7824, +2016-05-11 22:30:00,,,62.6635 +2016-05-11 22:30:41,3171.0,-10.7824, +2016-05-11 22:45:00,,,62.5052 +2016-05-11 22:45:37,3170.0,-10.7824, +2016-05-11 23:00:00,,,62.5052 +2016-05-11 23:00:33,3169.0,-10.8139, +2016-05-11 23:15:00,,,62.342 +2016-05-11 23:15:28,3168.0,-10.8129, +2016-05-11 23:30:00,,,62.4996 +2016-05-11 23:30:24,3167.0,-10.8139, +2016-05-11 23:45:00,,,62.0291 +2016-05-11 23:45:20,3166.0,-10.8129, +2016-05-12 00:00:00,,,62.1963 +2016-05-12 00:00:15,3165.0,-10.7815, +2016-05-12 00:15:00,,,62.342 +2016-05-12 00:15:11,3164.0,-10.8129, +2016-05-12 00:30:00,,,62.1852 +2016-05-12 00:30:07,3164.0,-10.8129, +2016-05-12 00:45:00,,,61.401 +2016-05-12 00:45:02,3163.0,-10.8129, +2016-05-12 00:59:58,3163.0,-10.7824, +2016-05-12 01:00:00,,,61.7136 +2016-05-12 01:14:53,3163.0,-10.8129, +2016-05-12 01:15:00,,,62.4996 +2016-05-12 01:29:49,3162.0,-10.8129, +2016-05-12 01:30:00,,,62.6635 +2016-05-12 01:44:44,3162.0,-10.8129, +2016-05-12 01:45:00,,,62.8281 +2016-05-12 01:59:40,3162.0,-10.8129, +2016-05-12 02:00:00,,,62.9879 +2016-05-12 02:14:35,3162.0,-10.8444, +2016-05-12 02:15:00,,,63.3155 +2016-05-12 02:29:31,3162.0,-10.8444, +2016-05-12 02:30:00,,,63.6463 +2016-05-12 02:44:26,3162.0,-10.8435, +2016-05-12 02:45:00,,,64.1455 +2016-05-12 02:59:22,3162.0,-10.8435, +2016-05-12 03:00:00,,,64.6522 +2016-05-12 03:14:17,3161.0,-10.8435, +2016-05-12 03:15:00,,,65.1606 +2016-05-12 03:29:13,3160.0,-10.8435, +2016-05-12 03:30:00,,,65.1664 +2016-05-12 03:44:08,3160.0,-10.8435, +2016-05-12 03:45:00,,,65.3549 +2016-05-12 03:59:03,3160.0,-10.8435, +2016-05-12 04:00:00,,,65.8621 +2016-05-12 04:13:59,3160.0,-10.8435, +2016-05-12 04:15:00,,,66.0426 +2016-05-12 04:28:54,3160.0,-10.8751, +2016-05-12 04:30:00,,,66.7562 +2016-05-12 04:43:50,3160.0,-10.8751, +2016-05-12 04:45:00,,,66.7739 +2016-05-12 04:58:45,3159.0,-10.9048, +2016-05-12 05:00:00,,,66.5897 +2016-05-12 05:13:41,3159.0,-10.9048, +2016-05-12 05:15:00,,,66.9532 +2016-05-12 05:28:36,3157.0,-10.9048, +2016-05-12 05:30:00,,,67.4906 +2016-05-12 05:43:31,3157.0,-10.9048, +2016-05-12 05:45:00,,,67.8756 +2016-05-12 05:58:27,3157.0,-10.9048, +2016-05-12 06:00:00,,,68.4397 +2016-05-12 06:13:22,3157.0,-10.9366, +2016-05-12 06:15:00,,,68.6276 +2016-05-12 06:28:18,3156.0,-10.9366, +2016-05-12 06:30:00,,,68.6337 +2016-05-12 06:43:14,3157.0,-10.9048, +2016-05-12 06:45:00,,,69.5952 +2016-05-12 06:58:09,3157.0,-10.9048, +2016-05-12 07:00:00,,,70.1873 +2016-05-12 07:13:05,3157.0,-10.9366, +2016-05-12 07:15:00,,,70.391 +2016-05-12 07:28:01,3158.0,-10.9048, +2016-05-12 07:30:00,,,71.8174 +2016-05-12 07:42:56,3160.0,-10.9366, +2016-05-12 07:45:00,,,71.8174 +2016-05-12 07:57:52,3160.0,-10.9058, +2016-05-12 08:00:00,,,72.4472 +2016-05-12 08:12:47,3162.0,-10.9058, +2016-05-12 08:15:00,,,73.0881 +2016-05-12 08:27:43,3162.0,-10.9058, +2016-05-12 08:30:00,,,72.6639 +2016-05-12 08:42:38,3163.0,-10.8741, +2016-05-12 08:45:00,,,73.0881 +2016-05-12 08:57:34,3166.0,-10.8435, +2016-05-12 09:00:00,,,73.9712 +2016-05-12 09:12:30,3168.0,-10.8435, +2016-05-12 09:15:00,,,74.6326 +2016-05-12 09:27:25,3170.0,-10.812, +2016-05-12 09:30:00,,,75.0868 +2016-05-12 09:42:21,3171.0,-10.812, +2016-05-12 09:45:00,,,76.0121 +2016-05-12 09:57:17,3174.0,-10.7815, +2016-05-12 10:00:00,,,77.4371 +2016-05-12 10:12:13,3174.0,-10.7198, +2016-05-12 10:15:00,,,76.9607 +2016-05-12 10:27:09,3176.0,-10.7198, +2016-05-12 10:30:00,,,75.7753 +2016-05-12 10:42:05,3177.0,-10.7198, +2016-05-12 10:45:00,,,75.7753 +2016-05-12 10:57:01,3179.0,-10.7198, +2016-05-12 11:00:00,,,76.0054 +2016-05-12 11:11:56,3180.0,-10.7198, +2016-05-12 11:15:00,,,75.5466 +2016-05-12 11:26:53,3181.0,-10.7198, +2016-05-12 11:30:00,,,75.0868 +2016-05-12 11:41:49,3182.0,-10.7198, +2016-05-12 11:45:00,,,74.8623 +2016-05-12 11:56:45,3183.0,-10.7198, +2016-05-12 12:00:00,,,75.0868 +2016-05-12 12:11:41,3184.0,-10.7198, +2016-05-12 12:15:00,,,74.8823 +2016-05-12 12:26:37,3184.0,-10.7198, +2016-05-12 12:30:00,,,75.7753 +2016-05-12 12:41:33,3185.0,-10.7198, +2016-05-12 12:45:00,,,76.9539 +2016-05-12 12:56:29,3185.0,-10.7198, +2016-05-12 13:00:00,,,73.3085 +2016-05-12 13:11:26,3185.0,-10.7198, +2016-05-12 13:15:00,,,73.3281 +2016-05-12 13:26:22,3186.0,-10.7198, +2016-05-12 13:30:00,,,73.3085 +2016-05-12 13:41:18,3188.0,-10.7198, +2016-05-12 13:45:00,,,74.4306 +2016-05-12 13:56:14,3188.0,-10.7198, +2016-05-12 14:00:00,,,75.1068 +2016-05-12 14:11:10,3189.0,-10.7198, +2016-05-12 14:15:00,,,76.9539 +2016-05-12 14:26:07,3188.0,-10.7198, +2016-05-12 14:30:00,,,74.1969 +2016-05-12 14:41:03,3189.0,-10.7198, +2016-05-12 14:45:00,,,76.2572 +2016-05-12 14:55:59,3189.0,-10.7198, +2016-05-12 15:00:00,,,77.2119 +2016-05-12 15:10:55,3190.0,-10.7198, +2016-05-12 15:15:00,,,23.9976 +2016-05-12 15:25:51,3190.0,-10.7198, +2016-05-12 15:30:00,,,24.0364 +2016-05-12 15:40:48,3190.0,-10.751, +2016-05-12 15:45:00,,,24.1681 +2016-05-12 15:55:44,3191.0,-10.7198, +2016-05-12 16:00:00,,,24.257 +2016-05-12 16:10:40,3191.0,-10.751, +2016-05-12 16:15:00,,,24.3505 +2016-05-12 16:25:37,3191.0,-10.751, +2016-05-12 16:30:00,,,24.3505 +2016-05-12 16:40:33,3190.0,-10.751, +2016-05-12 16:45:00,,,24.3505 +2016-05-12 16:55:29,3191.0,-10.751, +2016-05-12 17:00:00,,,24.3962 +2016-05-12 17:10:26,3191.0,-10.751, +2016-05-12 17:15:00,,,24.4356 +2016-05-12 17:25:22,3191.0,-10.751, +2016-05-12 17:30:00,,,24.4464 +2016-05-12 17:40:19,3191.0,-10.752, +2016-05-12 17:45:00,,,24.4902 +2016-05-12 17:55:15,3191.0,-10.752, +2016-05-12 18:00:00,,,24.4421 +2016-05-12 18:10:11,3190.0,-10.7501, +2016-05-12 18:15:00,,,24.6241 +2016-05-12 18:25:07,3190.0,-10.751, +2016-05-12 18:30:00,,,24.7123 +2016-05-12 18:40:04,3189.0,-10.751, +2016-05-12 18:45:00,,,24.5801 +2016-05-12 18:55:00,3189.0,-10.751, +2016-05-12 19:00:00,,,24.7587 +2016-05-12 19:09:56,3189.0,-10.751, +2016-05-12 19:15:00,,,24.8983 +2016-05-12 19:24:52,3188.0,-10.7815, +2016-05-12 19:30:00,,,24.8961 +2016-05-12 19:39:55,3186.0,-10.7815, +2016-05-12 19:45:00,,,24.8051 +2016-05-12 19:54:51,3184.0,-10.8129, +2016-05-12 20:00:00,,,24.6241 +2016-05-12 20:09:47,3184.0,-10.8129, +2016-05-12 20:15:00,,,24.8029 +2016-05-12 20:24:43,3184.0,-10.8129, +2016-05-12 20:30:00,,,24.8961 +2016-05-12 20:39:39,3183.0,-10.8129, +2016-05-12 20:45:00,,,24.8961 +2016-05-12 20:54:35,3181.0,-10.8444, +2016-05-12 21:00:00,,,24.4421 +2016-05-12 21:09:31,3178.0,-10.8435, +2016-05-12 21:15:00,,,23.7343 +2016-05-12 21:24:27,3179.0,-10.8435, +2016-05-12 21:30:00,,,24.3112 +2016-05-12 21:39:23,3178.0,-10.8435, +2016-05-12 21:45:00,,,24.2656 +2016-05-12 21:54:18,3177.0,-10.812, +2016-05-12 22:00:00,,,24.4421 +2016-05-12 22:09:14,3177.0,-10.8435, +2016-05-12 22:15:00,,,24.5779 +2016-05-12 22:24:10,3176.0,-10.8435, +2016-05-12 22:30:00,,,24.5779 +2016-05-12 22:39:06,3176.0,-10.8435, +2016-05-12 22:45:00,,,24.7188 +2016-05-12 22:54:02,3175.0,-10.8435, +2016-05-12 23:00:00,,,24.4902 +2016-05-12 23:08:57,3174.0,-10.8751, +2016-05-12 23:15:00,,,24.4443 +2016-05-12 23:23:53,3174.0,-10.8435, +2016-05-12 23:30:00,,,24.2721 +2016-05-12 23:38:49,3174.0,-10.8751, +2016-05-12 23:45:00,,,24.3984 +2016-05-12 23:53:44,3172.0,-10.8741, +2016-05-13 00:00:00,,,24.3591 +2016-05-13 00:15:00,,, +2016-05-13 00:30:00,,, +2016-05-13 00:45:00,,, +2016-05-13 01:00:00,,, +2016-05-13 01:08:22,3170.0,-10.9058, +2016-05-13 01:15:00,,,24.4508 +2016-05-13 01:23:18,3169.0,-10.9048, +2016-05-13 01:30:00,,,24.4946 +2016-05-13 01:38:14,3168.0,-10.9058, +2016-05-13 01:45:00,,,24.4508 +2016-05-13 01:53:09,3167.0,-10.9048, +2016-05-13 02:00:00,,,24.4049 +2016-05-13 02:08:05,3168.0,-10.9048, +2016-05-13 02:15:00,,,24.8561 +2016-05-13 02:23:00,3167.0,-10.9048, +2016-05-13 02:30:00,,,24.8583 +2016-05-13 02:37:55,3167.0,-10.9048, +2016-05-13 02:45:00,,,24.9027 +2016-05-13 02:52:59,3166.0,-10.9048, +2016-05-13 03:00:00,,,24.8583 +2016-05-13 03:07:54,3166.0,-10.9048, +2016-05-13 03:15:00,,,24.7652 +2016-05-13 03:22:50,3165.0,-10.9048, +2016-05-13 03:30:00,,,24.8561 +2016-05-13 03:37:45,3164.0,-10.9048, +2016-05-13 03:45:00,,,24.8095 +2016-05-13 03:52:41,3163.0,-10.9048, +2016-05-13 04:00:00,,,24.7652 +2016-05-13 04:07:36,3163.0,-10.9357, +2016-05-13 04:15:00,,,24.8095 +2016-05-13 04:22:31,3163.0,-10.9357, +2016-05-13 04:30:00,,,25.1326 +2016-05-13 04:37:27,3162.0,-10.9366, +2016-05-13 04:45:00,,,24.994 +2016-05-13 04:52:22,3161.0,-10.9357, +2016-05-13 05:00:00,,,25.2224 +2016-05-13 05:07:17,3161.0,-10.9357, +2016-05-13 05:15:00,,,24.9027 +2016-05-13 05:22:13,3160.0,-10.9357, +2016-05-13 05:30:00,,,25.1303 +2016-05-13 05:37:08,3160.0,-10.9357, +2016-05-13 05:45:00,,,25.2201 +2016-05-13 05:52:04,3160.0,-10.9357, +2016-05-13 06:00:00,,,25.1774 +2016-05-13 06:06:59,3160.0,-10.9357, +2016-05-13 06:15:00,,,25.3644 +2016-05-13 06:21:54,3160.0,-10.9357, +2016-05-13 06:30:00,,,25.2719 +2016-05-13 06:36:50,3160.0,-10.9357, +2016-05-13 06:45:00,,,25.2719 +2016-05-13 06:51:45,3160.0,-10.9357, +2016-05-13 07:00:00,,,25.0878 +2016-05-13 07:06:41,3158.0,-10.9357, +2016-05-13 07:15:00,,,24.9049 +2016-05-13 07:21:36,3158.0,-10.9357, +2016-05-13 07:30:00,,,25.1348 +2016-05-13 07:36:31,3159.0,-10.9357, +2016-05-13 07:45:00,,,25.1348 +2016-05-13 07:51:27,3159.0,-10.9357, +2016-05-13 08:00:00,,,25.0878 +2016-05-13 08:06:22,3159.0,-10.9357, +2016-05-13 08:15:00,,,25.0878 +2016-05-13 08:21:18,3160.0,-10.9357, +2016-05-13 08:30:00,,,24.9516 +2016-05-13 08:36:13,3160.0,-10.9357, +2016-05-13 08:45:00,,,25.0878 +2016-05-13 08:51:09,3160.0,-10.9039, +2016-05-13 09:00:00,,,25.1348 +2016-05-13 09:06:04,3161.0,-10.9048, +2016-05-13 09:15:00,,,25.0408 +2016-05-13 09:21:00,3162.0,-10.9048, +2016-05-13 09:30:00,,,24.9516 +2016-05-13 09:35:55,3162.0,-10.9048, +2016-05-13 09:45:00,,,24.9962 +2016-05-13 09:50:51,3163.0,-10.8732, +2016-05-13 10:00:00,,,24.9049 +2016-05-13 10:05:46,3164.0,-10.8732, +2016-05-13 10:15:00,,,24.9049 +2016-05-13 10:20:42,3166.0,-10.8416, +2016-05-13 10:30:00,,,24.9049 +2016-05-13 10:35:38,3167.0,-10.8425, +2016-05-13 10:45:00,,,24.9494 +2016-05-13 10:50:33,3167.0,-10.8425, +2016-05-13 11:00:00,,,24.8583 +2016-05-13 11:05:29,3169.0,-10.811, +2016-05-13 11:15:00,,,24.9494 +2016-05-13 11:20:25,3170.0,-10.811, +2016-05-13 11:30:00,,,24.9962 +2016-05-13 11:35:20,3171.0,-10.812, +2016-05-13 11:45:00,,,24.9049 +2016-05-13 11:50:16,3172.0,-10.7805, +2016-05-13 12:00:00,,,24.7696 +2016-05-13 12:05:12,3173.0,-10.812, +2016-05-13 12:15:00,,,24.7232 +2016-05-13 12:20:08,3174.0,-10.812, +2016-05-13 12:30:00,,,24.4989 +2016-05-13 12:35:04,3174.0,-10.812, +2016-05-13 12:45:00,,,24.453000000000007 +2016-05-13 12:49:59,3175.0,-10.812, +2016-05-13 13:00:00,,,24.5428 +2016-05-13 13:04:55,3176.0,-10.812, +2016-05-13 13:15:00,,,24.721 +2016-05-13 13:19:51,3177.0,-10.7805, +2016-05-13 13:30:00,,,24.7232 +2016-05-13 13:34:46,3178.0,-10.7805, +2016-05-13 13:45:00,,,24.7674 +2016-05-13 13:49:42,3179.0,-10.7815, +2016-05-13 14:00:00,,,24.7232 +2016-05-13 14:04:38,3180.0,-10.7491, +2016-05-13 14:15:00,,,24.721 +2016-05-13 14:19:34,3181.0,-10.7501, +2016-05-13 14:30:00,,,24.5867 +2016-05-13 14:34:30,3181.0,-10.7491, +2016-05-13 14:45:00,,,24.591 +2016-05-13 14:49:26,3183.0,-10.7501, +2016-05-13 15:00:00,,,24.721 +2016-05-13 15:04:22,3183.0,-10.7501, +2016-05-13 15:15:00,,,24.5889 +2016-05-13 15:19:18,3183.0,-10.7501, +2016-05-13 15:30:00,,,24.4071 +2016-05-13 15:34:14,3183.0,-10.7491, +2016-05-13 15:45:00,,,24.6769 +2016-05-13 15:49:10,3184.0,-10.7501, +2016-05-13 16:00:00,,,24.5867 +2016-05-13 16:04:07,3184.0,-10.7501, +2016-05-13 16:15:00,,,24.6328 +2016-05-13 16:19:03,3184.0,-10.7501, +2016-05-13 16:30:00,,,24.5428 +2016-05-13 16:33:59,3184.0,-10.7501, +2016-05-13 16:45:00,,,24.4071 +2016-05-13 16:48:55,3184.0,-10.7815, +2016-05-13 17:00:00,,,24.2764 +2016-05-13 17:03:51,3183.0,-10.7805, +2016-05-13 17:15:00,,,24.3634 +2016-05-13 17:18:48,3183.0,-10.8454, +2016-05-13 17:30:00,,,24.1853 +2016-05-13 17:33:44,3182.0,-10.7815, +2016-05-13 17:45:00,,,24.0642 +2016-05-13 17:48:40,3182.0,-10.9039, +2016-05-13 18:00:00,,,24.142 +2016-05-13 18:03:36,3181.0,-10.8129, +2016-05-13 18:15:00,,,24.0083 +2016-05-13 18:18:32,3181.0,-10.812, +2016-05-13 18:30:00,,,23.8324 +2016-05-13 18:33:29,3179.0,-10.812, +2016-05-13 18:45:00,,,23.8752 +2016-05-13 18:48:25,3178.0,-10.812, +2016-05-13 19:00:00,,,23.5283 +2016-05-13 19:03:21,3177.0,-10.8435, +2016-05-13 19:15:00,,,23.6555 +2016-05-13 19:18:17,3177.0,-10.8425, +2016-05-13 19:30:00,,,77.2324 +2016-05-13 19:33:13,3176.0,-10.8435, +2016-05-13 19:45:00,,,74.9022 +2016-05-13 19:48:09,3174.0,-10.8425, +2016-05-13 20:00:00,,,74.00399999999998 +2016-05-13 20:03:04,3174.0,-10.8425, +2016-05-13 20:15:00,,,72.9077 +2016-05-13 20:18:00,3172.0,-10.8741, +2016-05-13 20:30:00,,,71.0215 +2016-05-13 20:32:56,3171.0,-10.8741, +2016-05-13 20:45:00,,,71.4394 +2016-05-13 20:47:52,3170.0,-10.8732, +2016-05-13 21:00:00,,,70.416 +2016-05-13 21:02:48,3168.0,-10.8732, +2016-05-13 21:15:00,,,69.4329 +2016-05-13 21:17:43,3167.0,-10.8732, +2016-05-13 21:30:00,,,69.0434 +2016-05-13 21:32:39,3166.0,-10.9048, +2016-05-13 21:45:00,,,67.7217 +2016-05-13 21:47:34,3164.0,-10.9048, +2016-05-13 22:00:00,,,67.7157 +2016-05-13 22:02:30,3163.0,-10.9048, +2016-05-13 22:15:00,,,66.6193 +2016-05-13 22:17:25,3162.0,-10.9048, +2016-05-13 22:30:00,,,67.1632 +2016-05-13 22:32:21,3161.0,-10.9048, +2016-05-13 22:45:00,,,68.2769 +2016-05-13 22:47:17,3160.0,-10.9048, +2016-05-13 23:00:00,,,67.5325 +2016-05-13 23:02:12,3160.0,-10.9048, +2016-05-13 23:15:00,,,67.9058 +2016-05-13 23:17:08,3160.0,-10.9048, +2016-05-13 23:30:00,,,67.5325 +2016-05-13 23:32:03,3159.0,-10.9048, +2016-05-13 23:45:00,,,67.9058 +2016-05-13 23:46:59,3159.0,-10.9048, +2016-05-14 00:00:00,,,67.9058 +2016-05-14 00:01:54,3158.0,-10.9048, +2016-05-14 00:15:00,,,67.9058 +2016-05-14 00:16:50,3158.0,-10.9048, +2016-05-14 00:30:00,,,68.6642 +2016-05-14 00:31:46,3158.0,-10.9048, +2016-05-14 00:45:00,,,69.2407 +2016-05-14 00:46:41,3159.0,-10.9048, +2016-05-14 01:00:00,,,68.8472 +2016-05-14 01:01:37,3157.0,-10.9048, +2016-05-14 01:15:00,,,69.2407 +2016-05-14 01:16:32,3157.0,-10.9048, +2016-05-14 01:30:00,,,70.02199999999999 +2016-05-14 01:31:28,3156.0,-10.9048, +2016-05-14 01:45:00,,,70.2184 +2016-05-14 01:46:23,3156.0,-10.9039, +2016-05-14 02:00:00,,,70.4222 +2016-05-14 02:01:19,3156.0,-10.9357, +2016-05-14 02:15:00,,,70.6209 +2016-05-14 02:16:14,3155.0,-10.9357, +2016-05-14 02:30:00,,,71.2362 +2016-05-14 02:31:09,3153.0,-10.9357, +2016-05-14 02:45:00,,,70.8207 +2016-05-14 02:46:05,3152.0,-10.9357, +2016-05-14 03:00:00,,,71.2299 +2016-05-14 03:01:00,3151.0,-10.9675, +2016-05-14 03:15:00,,,71.2299 +2016-05-14 03:15:55,3150.0,-10.9665, +2016-05-14 03:30:00,,,71.6501 +2016-05-14 03:30:50,3150.0,-10.9665, +2016-05-14 03:45:00,,,71.4394 +2016-05-14 03:45:46,3148.0,-10.9665, +2016-05-14 04:00:00,,,71.0278 +2016-05-14 04:00:41,3146.0,-10.9665, +2016-05-14 04:15:00,,,71.8493 +2016-05-14 04:15:36,3146.0,-10.9985, +2016-05-14 04:30:00,,,72.2703 +2016-05-14 04:30:31,3145.0,-10.9665, +2016-05-14 04:45:00,,,71.6438 +2016-05-14 04:45:26,3144.0,-10.9975, +2016-05-14 05:00:00,,,71.8493 +2016-05-14 05:00:22,3143.0,-10.9985, +2016-05-14 05:15:00,,,70.6271 +2016-05-14 05:15:17,3143.0,-10.9975, +2016-05-14 05:30:00,,,70.416 +2016-05-14 05:30:12,3142.0,-10.9975, +2016-05-14 05:45:00,,,70.02199999999999 +2016-05-14 05:45:07,3141.0,-11.0295, +2016-05-14 06:00:00,,,69.4329 +2016-05-14 06:00:02,3141.0,-11.0295, +2016-05-14 06:14:57,3140.0,-11.0286, +2016-05-14 06:15:00,,,69.439 +2016-05-14 06:29:52,3139.0,-11.0295, +2016-05-14 06:30:00,,,69.6261 +2016-05-14 06:44:47,3139.0,-11.0286, +2016-05-14 06:45:00,,,69.6261 +2016-05-14 06:59:42,3138.0,-11.0286, +2016-05-14 07:00:00,,,69.2407 +2016-05-14 07:14:37,3138.0,-11.0286, +2016-05-14 07:15:00,,,69.4329 +2016-05-14 07:29:39,3138.0,-11.0286, +2016-05-14 07:30:00,,,69.4329 +2016-05-14 07:44:34,3138.0,-11.0286, +2016-05-14 07:45:00,,,69.2407 +2016-05-14 07:59:29,3138.0,-11.0286, +2016-05-14 08:00:00,,,69.4329 +2016-05-14 08:14:24,3138.0,-11.0286, +2016-05-14 08:15:00,,,68.0909 +2016-05-14 08:29:19,3138.0,-11.0295, +2016-05-14 08:30:00,,,68.8533 +2016-05-14 08:44:14,3138.0,-11.0295, +2016-05-14 08:45:00,,,67.5385 +2016-05-14 08:59:09,3138.0,-11.0295, +2016-05-14 09:00:00,,,66.8036 +2016-05-14 09:14:04,3138.0,-10.9975, +2016-05-14 09:15:00,,,68.283 +2016-05-14 09:28:59,3138.0,-10.9975, +2016-05-14 09:30:00,,,68.47 +2016-05-14 09:43:54,3139.0,-10.9975, +2016-05-14 09:45:00,,,68.0909 +2016-05-14 09:58:49,3140.0,-10.9656, +2016-05-14 10:00:00,,,67.7217 +2016-05-14 10:13:44,3141.0,-10.9665, +2016-05-14 10:15:00,,,67.9058 +2016-05-14 10:28:39,3141.0,-10.9665, +2016-05-14 10:30:00,,,66.9889 +2016-05-14 10:43:34,3142.0,-10.9665, +2016-05-14 10:45:00,,,66.9829 +2016-05-14 10:58:29,3142.0,-10.9665, +2016-05-14 11:00:00,,,67.1692 +2016-05-14 11:13:24,3143.0,-10.9665, +2016-05-14 11:15:00,,,67.7217 +2016-05-14 11:28:20,3143.0,-10.9347, +2016-05-14 11:30:00,,,67.1692 +2016-05-14 11:43:15,3143.0,-10.9665, +2016-05-14 11:45:00,,,66.8036 +2016-05-14 11:58:10,3143.0,-10.9347, +2016-05-14 12:00:00,,,66.7977 +2016-05-14 12:13:05,3144.0,-10.9347, +2016-05-14 12:15:00,,,67.1692 +2016-05-14 12:28:00,3143.0,-10.9347, +2016-05-14 12:30:00,,,65.9088 +2016-05-14 12:43:03,3143.0,-10.9347, +2016-05-14 12:45:00,,,66.0836 +2016-05-14 12:57:58,3144.0,-10.9347, +2016-05-14 13:00:00,,,66.2652 +2016-05-14 13:12:53,3145.0,-10.9347, +2016-05-14 13:15:00,,,66.0836 +2016-05-14 13:27:48,3145.0,-10.9347, +2016-05-14 13:30:00,,,66.2652 +2016-05-14 13:42:43,3145.0,-10.9347, +2016-05-14 13:45:00,,,65.9088 +2016-05-14 13:57:38,3145.0,-10.9347, +2016-05-14 14:00:00,,,65.7291 +2016-05-14 14:12:34,3145.0,-10.9347, +2016-05-14 14:15:00,,,65.5619 +2016-05-14 14:27:29,3145.0,-10.9347, +2016-05-14 14:30:00,,,65.0364 +2016-05-14 14:42:24,3145.0,-10.9347, +2016-05-14 14:45:00,,,65.2069 +2016-05-14 14:57:19,3145.0,-10.9347, +2016-05-14 15:00:00,,,65.0364 +2016-05-14 15:12:22,3146.0,-10.9347, +2016-05-14 15:15:00,,,65.2069 +2016-05-14 15:27:17,3146.0,-10.9347, +2016-05-14 15:30:00,,,65.5503 +2016-05-14 15:42:12,3146.0,-10.9347, +2016-05-14 15:45:00,,,65.2069 +2016-05-14 15:57:07,3146.0,-10.9347, +2016-05-14 16:00:00,,,64.8668 +2016-05-14 16:12:03,3146.0,-10.9347, +2016-05-14 16:15:00,,,64.8668 +2016-05-14 16:26:58,3146.0,-10.9347, +2016-05-14 16:30:00,,,65.2069 +2016-05-14 16:41:53,3146.0,-10.9347, +2016-05-14 16:45:00,,,64.8668 +2016-05-14 16:56:48,3146.0,-10.9347, +2016-05-14 17:00:00,,,64.5245 +2016-05-14 17:11:44,3145.0,-10.9347, +2016-05-14 17:15:00,,,64.02 +2016-05-14 17:26:39,3145.0,-10.9347, +2016-05-14 17:30:00,,,63.6858 +2016-05-14 17:41:35,3145.0,-10.9347, +2016-05-14 17:45:00,,,64.1854 +2016-05-14 17:56:30,3144.0,-10.9347, +2016-05-14 18:00:00,,,63.6858 +2016-05-14 18:11:25,3143.0,-10.9665, +2016-05-14 18:15:00,,,63.6858 +2016-05-14 18:26:21,3143.0,-10.9665, +2016-05-14 18:30:00,,,63.5228 +2016-05-14 18:41:16,3143.0,-10.9665, +2016-05-14 18:45:00,,,63.0327 +2016-05-14 18:56:11,3143.0,-10.9656, +2016-05-14 19:00:00,,,63.0271 +2016-05-14 19:11:06,3142.0,-10.9665, +2016-05-14 19:15:00,,,62.7135 +2016-05-14 19:26:02,3141.0,-10.9656, +2016-05-14 19:30:00,,,62.708 +2016-05-14 19:40:57,3139.0,-10.9656, +2016-05-14 19:45:00,,,62.708 +2016-05-14 19:55:52,3138.0,-10.9975, +2016-05-14 20:00:00,,,62.2294 +2016-05-14 20:10:47,3138.0,-10.9965, +2016-05-14 20:15:00,,,62.3919 +2016-05-14 20:25:42,3137.0,-10.9965, +2016-05-14 20:30:00,,,62.2294 +2016-05-14 20:40:37,3137.0,-10.9965, +2016-05-14 20:45:00,,,62.708 +2016-05-14 20:55:32,3136.0,-11.0286, +2016-05-14 21:00:00,,,62.3919 +2016-05-14 21:10:27,3135.0,-11.0286, +2016-05-14 21:15:00,,,61.9122 +2016-05-14 21:25:22,3134.0,-11.0286, +2016-05-14 21:30:00,,,61.7574 +2016-05-14 21:40:17,3133.0,-11.0286, +2016-05-14 21:45:00,,,61.7574 +2016-05-14 21:55:12,3132.0,-11.0286, +2016-05-14 22:00:00,,,61.7574 +2016-05-14 22:10:07,3132.0,-11.0286, +2016-05-14 22:15:00,,,61.7574 +2016-05-14 22:25:02,3131.0,-11.0286, +2016-05-14 22:30:00,,,61.7574 +2016-05-14 22:39:57,3130.0,-11.0286, +2016-05-14 22:45:00,,,61.7574 +2016-05-14 22:54:52,3130.0,-11.0597, +2016-05-14 23:00:00,,,61.6034 +2016-05-14 23:09:47,3129.0,-11.0597, +2016-05-14 23:15:00,,,61.292 +2016-05-14 23:24:42,3128.0,-11.0597, +2016-05-14 23:30:00,,,61.292 +2016-05-14 23:39:37,3128.0,-11.0597, +2016-05-14 23:45:00,,,61.2757 +2016-05-14 23:54:32,3127.0,-11.0597, +2016-05-15 00:00:00,,,61.2974 +2016-05-15 00:09:27,3127.0,-11.0597, +2016-05-15 00:15:00,,,61.5925 +2016-05-15 00:24:22,3127.0,-11.0597, +2016-05-15 00:30:00,,,61.2974 +2016-05-15 00:39:17,3126.0,-11.0597, +2016-05-15 00:45:00,,,61.2811 +2016-05-15 00:54:12,3125.0,-11.0597, +2016-05-15 01:00:00,,,61.4337 +2016-05-15 01:09:10,3124.0,-11.0597, +2016-05-15 01:15:00,,,60.9726 +2016-05-15 01:24:05,3124.0,-11.0597, +2016-05-15 01:30:00,,,60.9726 +2016-05-15 01:39:00,3124.0,-11.0597, +2016-05-15 01:45:00,,,61.292 +2016-05-15 01:53:54,3124.0,-11.0597, +2016-05-15 02:00:00,,,61.2811 +2016-05-15 02:08:49,3123.0,-11.0597, +2016-05-15 02:15:00,,,60.9726 +2016-05-15 02:23:44,3123.0,-11.0597, +2016-05-15 02:30:00,,,60.9889 +2016-05-15 02:38:39,3123.0,-11.0597, +2016-05-15 02:45:00,,,60.9726 +2016-05-15 02:53:33,3123.0,-11.0597, +2016-05-15 03:00:00,,,60.8167 +2016-05-15 03:08:28,3123.0,-11.0587, +2016-05-15 03:15:00,,,60.2162 +2016-05-15 03:23:23,3122.0,-11.0587, +2016-05-15 03:30:00,,,60.3639 +2016-05-15 03:38:17,3122.0,-11.0587, +2016-05-15 03:45:00,,,60.3693 +2016-05-15 03:53:12,3122.0,-11.0587, +2016-05-15 04:00:00,,,60.2108 +2016-05-15 04:08:07,3122.0,-11.0587, +2016-05-15 04:15:00,,,59.9172 +2016-05-15 04:23:02,3121.0,-11.0597, +2016-05-15 04:30:00,,,59.7714 +2016-05-15 04:37:57,3121.0,-11.0587, +2016-05-15 04:45:00,,,59.6209 +2016-05-15 04:52:51,3121.0,-11.0587, +2016-05-15 05:00:00,,,59.6209 +2016-05-15 05:07:46,3121.0,-11.0587, +2016-05-15 05:15:00,,,59.6209 +2016-05-15 05:22:41,3121.0,-11.0587, +2016-05-15 05:30:00,,,59.6209 +2016-05-15 05:37:36,3121.0,-11.0597, +2016-05-15 05:45:00,,,59.7555 +2016-05-15 05:52:31,3121.0,-11.0276, +2016-05-15 06:00:00,,,59.6156 +2016-05-15 06:07:25,3121.0,-11.0597, +2016-05-15 06:15:00,,,59.7714 +2016-05-15 06:22:20,3121.0,-11.0597, +2016-05-15 06:30:00,,,59.7555 +2016-05-15 06:37:15,3121.0,-11.0597, +2016-05-15 06:45:00,,,59.7555 +2016-05-15 06:52:10,3121.0,-11.0597, +2016-05-15 07:00:00,,,59.7555 +2016-05-15 07:07:05,3121.0,-11.0597, +2016-05-15 07:15:00,,,59.6051 +2016-05-15 07:22:00,3121.0,-11.0597, +2016-05-15 07:30:00,,,59.6104 +2016-05-15 07:36:55,3121.0,-11.0597, +2016-05-15 07:45:00,,,59.6051 +2016-05-15 07:51:50,3121.0,-11.0597, +2016-05-15 08:00:00,,,59.3167 +2016-05-15 08:06:44,3121.0,-11.0276, +2016-05-15 08:15:00,,,59.1735 +2016-05-15 08:21:39,3121.0,-11.0276, +2016-05-15 08:30:00,,,58.8837 +2016-05-15 08:36:34,3121.0,-11.0276, +2016-05-15 08:45:00,,,59.1578 +2016-05-15 08:51:29,3121.0,-11.0276, +2016-05-15 09:00:00,,,59.0257 +2016-05-15 09:06:24,3121.0,-11.0276, +2016-05-15 09:15:00,,,58.7267 +2016-05-15 09:21:19,3121.0,-10.9646, +2016-05-15 09:30:00,,,58.7267 +2016-05-15 09:36:14,3122.0,-10.9646, +2016-05-15 09:45:00,,,58.8837 +2016-05-15 09:51:09,3122.0,-11.0276, +2016-05-15 10:00:00,,,58.58600000000001 +2016-05-15 10:06:03,3122.0,-10.9965, +2016-05-15 10:15:00,,,58.7267 +2016-05-15 10:20:58,3123.0,-10.9656, +2016-05-15 10:30:00,,,58.58600000000001 +2016-05-15 10:35:53,3123.0,-10.9347, +2016-05-15 10:45:00,,,58.5808 +2016-05-15 10:50:55,3124.0,-10.9337, +2016-05-15 11:00:00,,,58.5808 +2016-05-15 11:05:50,3125.0,-10.9347, +2016-05-15 11:15:00,,,58.5808 +2016-05-15 11:20:46,3127.0,-10.9347, +2016-05-15 11:30:00,,,58.1623 +2016-05-15 11:35:41,3127.0,-10.9347, +2016-05-15 11:45:00,,,58.1571 +2016-05-15 11:50:36,3128.0,-10.9337, +2016-05-15 12:00:00,,,58.29600000000001 +2016-05-15 12:05:31,3128.0,-10.9347, +2016-05-15 12:15:00,,,58.1623 +2016-05-15 12:20:26,3128.0,-10.9347, +2016-05-15 12:30:00,,,57.7389 +2016-05-15 12:35:21,3128.0,-10.9646, +2016-05-15 12:45:00,,,57.87600000000001 +2016-05-15 12:50:16,3128.0,-10.9337, +2016-05-15 13:00:00,,,57.87600000000001 +2016-05-15 13:05:11,3128.0,-10.9347, +2016-05-15 13:15:00,,,57.7389 +2016-05-15 13:20:06,3128.0,-10.9656, +2016-05-15 13:30:00,,,57.4664 +2016-05-15 13:35:01,3128.0,-10.9347, +2016-05-15 13:45:00,,,57.87600000000001 +2016-05-15 13:49:56,3128.0,-10.9347, +2016-05-15 14:00:00,,,58.0137 +2016-05-15 14:04:51,3128.0,-10.9656, +2016-05-15 14:15:00,,,57.744 +2016-05-15 14:19:46,3128.0,-10.9347, +2016-05-15 14:30:00,,,57.4613 +2016-05-15 14:34:42,3128.0,-10.9337, +2016-05-15 14:45:00,,,57.4664 +2016-05-15 14:49:37,3129.0,-10.9646, +2016-05-15 15:00:00,,,57.4613 +2016-05-15 15:04:32,3128.0,-10.9656, +2016-05-15 15:15:00,,,57.4613 +2016-05-15 15:19:27,3128.0,-10.9665, +2016-05-15 15:30:00,,,57.18600000000001 +2016-05-15 15:34:22,3128.0,-10.9347, +2016-05-15 15:45:00,,,57.0568 +2016-05-15 15:49:17,3128.0,-10.9656, +2016-05-15 16:00:00,,,57.3259 +2016-05-15 16:04:12,3128.0,-10.9347, +2016-05-15 16:15:00,,,56.9029 +2016-05-15 16:19:07,3128.0,-10.9347, +2016-05-15 16:30:00,,,56.7849 +2016-05-15 16:34:02,3128.0,-10.9347, +2016-05-15 16:45:00,,,56.7648 +2016-05-15 16:48:57,3127.0,-10.9347, +2016-05-15 17:00:00,,,56.6423 +2016-05-15 17:03:52,3127.0,-10.9347, +2016-05-15 17:15:00,,,56.5153 +2016-05-15 17:18:47,3127.0,-10.9347, +2016-05-15 17:30:00,,,56.6322 +2016-05-15 17:33:42,3127.0,-10.9965, +2016-05-15 17:45:00,,,56.5002 +2016-05-15 17:48:37,3127.0,-10.9965, +2016-05-15 18:00:00,,,56.7648 +2016-05-15 18:03:32,3127.0,-10.9665, +2016-05-15 18:15:00,,,56.1025 +2016-05-15 18:18:27,3127.0,-10.9665, +2016-05-15 18:30:00,,,55.7145 +2016-05-15 18:33:22,3127.0,-10.9656, +2016-05-15 18:45:00,,,55.9677 +2016-05-15 18:48:17,3125.0,-11.0276, +2016-05-15 19:00:00,,,32.4541 +2016-05-15 19:03:12,3125.0,-10.9347, +2016-05-15 19:15:00,,,32.39 +2016-05-15 19:18:07,3123.0,-10.9357, +2016-05-15 19:30:00,,,0.4184 +2016-05-15 19:33:02,3123.0,-10.9347, +2016-05-15 19:45:00,,,-0.2062 +2016-05-15 19:47:57,3122.0,-10.9357, +2016-05-15 20:00:00,,,9.0834 +2016-05-15 20:02:52,3122.0,-10.9665, +2016-05-15 20:15:00,,,0.2239 +2016-05-15 20:17:47,3121.0,-10.9347, +2016-05-15 20:30:00,,,-1.1253 +2016-05-15 20:32:42,3121.0,-10.9665, +2016-05-15 20:45:00,,,2.6954 +2016-05-15 20:47:37,3120.0,-10.9665, +2016-05-15 21:00:00,,,-0.1846 +2016-05-15 21:02:32,3119.0,-10.9665, +2016-05-15 21:15:00,,,-0.3562 +2016-05-15 21:17:27,3119.0,-10.9665, +2016-05-15 21:30:00,,,-0.4849 +2016-05-15 21:32:22,3118.0,-10.9665, +2016-05-15 21:45:00,,,-0.5062 +2016-05-15 21:47:17,3118.0,-10.9665, +2016-05-15 22:00:00,,,-0.5276 +2016-05-15 22:02:11,3117.0,-10.9975, +2016-05-15 22:15:00,,,-0.6561 +2016-05-15 22:17:06,3117.0,-10.9665, +2016-05-15 22:30:00,,,-2.4215 +2016-05-15 22:32:01,3116.0,-10.9656, +2016-05-15 22:45:00,,,-1.5721 +2016-05-15 22:46:55,3116.0,-10.9975, +2016-05-15 23:00:00,,,-1.0622 +2016-05-15 23:01:50,3115.0,-10.9975, +2016-05-15 23:15:00,,,-1.3818 +2016-05-15 23:16:44,3115.0,-11.0597, +2016-05-15 23:30:00,,,-4.6113 +2016-05-15 23:31:47,3115.0,-11.0597, +2016-05-15 23:45:00,,,-1.7654 +2016-05-15 23:46:41,3114.0,-11.0295, +2016-05-16 00:00:00,,,-1.041 +2016-05-16 00:01:36,3114.0,-11.0276, +2016-05-16 00:15:00,,,-0.9982 +2016-05-16 00:16:31,3114.0,-11.0597, +2016-05-16 00:30:00,,,-0.9767 +2016-05-16 00:31:25,3113.0,-11.0286, +2016-05-16 00:45:00,,,-4.6339 +2016-05-16 00:46:20,3113.0,-11.0597, +2016-05-16 01:00:00,,,-4.6347 +2016-05-16 01:01:14,3112.0,-11.0286, +2016-05-16 01:15:00,,,-4.6134 +2016-05-16 01:16:09,3111.0,-11.0286, +2016-05-16 01:30:00,,,-4.5924 +2016-05-16 01:31:04,3111.0,-11.0286, +2016-05-16 01:45:00,,,-4.5625 +2016-05-16 01:45:58,3110.0,-11.0286, +2016-05-16 02:00:00,,,-4.5497 +2016-05-16 02:00:53,3110.0,-11.0286, +2016-05-16 02:15:00,,,-4.5283 +2016-05-16 02:15:48,3110.0,-11.0286, +2016-05-16 02:30:00,,,-4.5287 +2016-05-16 02:30:42,3109.0,-11.0286, +2016-05-16 02:45:00,,,-4.3153 +2016-05-16 02:45:37,3109.0,-11.0286, +2016-05-16 03:00:00,,,-4.2951 +2016-05-16 03:00:32,3109.0,-11.0286, +2016-05-16 03:15:00,,,-4.5295 +2016-05-16 03:15:26,3109.0,-11.0286, +2016-05-16 03:30:00,,,-4.5291 +2016-05-16 03:30:21,3109.0,-11.0919, +2016-05-16 03:45:00,,,-4.3808 +2016-05-16 03:45:16,3109.0,-11.0286, +2016-05-16 04:00:00,,,-4.3808 +2016-05-16 04:00:10,3109.0,-11.0286, +2016-05-16 04:15:00,,,-4.4452 +2016-05-16 04:15:05,3109.0,-11.0607, +2016-05-16 04:30:00,3108.0,-11.0607,-4.3812 +2016-05-16 04:44:54,3108.0,-11.0597, +2016-05-16 04:45:00,,,-4.3595 +2016-05-16 04:59:49,3109.0,-10.9965, +2016-05-16 05:00:00,,,-4.3595 +2016-05-16 05:14:43,3109.0,-11.0286, +2016-05-16 05:15:00,,,-4.4022 +2016-05-16 05:29:38,3109.0,-11.0597, +2016-05-16 05:30:00,,,-4.4025 +2016-05-16 05:44:32,3109.0,-11.0286, +2016-05-16 05:45:00,,,-4.4022 +2016-05-16 05:59:27,3109.0,-11.0286, +2016-05-16 06:00:00,,,-4.4658 +2016-05-16 06:14:22,3109.0,-11.0597, +2016-05-16 06:15:00,,,-4.5726 +2016-05-16 06:29:17,3110.0,-11.0597, +2016-05-16 06:30:00,,,-4.4674 +2016-05-16 06:44:11,3110.0,-11.0286, +2016-05-16 06:45:00,,,-5.0892 +2016-05-16 06:59:06,3111.0,-11.0597, +2016-05-16 07:00:00,,,-4.8076 +2016-05-16 07:14:01,3112.0,-11.0597, +2016-05-16 07:15:00,,,-4.8513 +2016-05-16 07:28:56,3113.0,-11.0597, +2016-05-16 07:30:00,,,-4.8076 +2016-05-16 07:43:50,3114.0,-11.0276, +2016-05-16 07:45:00,,,-4.959 +2016-05-16 07:58:45,3114.0,-11.0286, +2016-05-16 08:00:00,,,-4.8286 +2016-05-16 08:13:40,3114.0,-10.9975, +2016-05-16 08:15:00,,,-5.4987 +2016-05-16 08:28:34,3114.0,-11.0286, +2016-05-16 08:30:00,,,-4.7203 +2016-05-16 08:43:29,3115.0,-10.9665, +2016-05-16 08:45:00,,,-1.8097 +2016-05-16 08:58:24,3115.0,-10.9656, +2016-05-16 09:00:00,,,-4.7845 +2016-05-16 09:13:18,3116.0,-10.9665, +2016-05-16 09:15:00,,,-4.9134 +2016-05-16 09:28:13,3116.0,-10.9665, +2016-05-16 09:30:00,,,-4.7639 +2016-05-16 09:43:08,3117.0,-10.9665, +2016-05-16 09:45:00,,,-1.8526 +2016-05-16 09:58:03,3118.0,-10.9665, +2016-05-16 10:00:00,,,-2.2352 +2016-05-16 10:12:58,3119.0,-10.9665, +2016-05-16 10:15:00,,,-1.7673 +2016-05-16 10:27:52,3120.0,-10.9665, +2016-05-16 10:30:00,,,-1.7459 +2016-05-16 10:42:47,3121.0,-10.9357, +2016-05-16 10:45:00,,,-1.9162 +2016-05-16 10:57:42,3121.0,-10.9357, +2016-05-16 11:00:00,,,-1.9162 +2016-05-16 11:12:37,3122.0,-10.9347, +2016-05-16 11:15:00,,,-1.7032 +2016-05-16 11:27:32,3122.0,-10.9347, +2016-05-16 11:30:00,,,-1.7244 +2016-05-16 11:42:27,3123.0,-10.9347, +2016-05-16 11:45:00,,,-1.7246 +2016-05-16 11:57:22,3123.0,-10.9357, +2016-05-16 12:00:00,,,-1.703 +2016-05-16 12:12:17,3123.0,-10.9039, +2016-05-16 12:15:00,,,-1.7032 +2016-05-16 12:27:12,3124.0,-10.9039, +2016-05-16 12:30:00,,,-1.5112 +2016-05-16 12:42:07,3125.0,-10.9039, +2016-05-16 12:45:00,,,-2.0646 +2016-05-16 12:57:02,3126.0,-10.9357, +2016-05-16 13:00:00,,,-2.5108 +2016-05-16 13:11:57,3127.0,-10.9039, +2016-05-16 13:15:00,,,-1.6818 +2016-05-16 13:26:52,3127.0,-10.9048, +2016-05-16 13:30:00,,,-1.703 +2016-05-16 13:41:48,3128.0,-10.7501, +2016-05-16 13:45:00,,,-1.6603 +2016-05-16 13:56:43,3128.0,-10.9048, +2016-05-16 14:00:00,,,-1.7452 +2016-05-16 14:11:38,3130.0,-10.8732, +2016-05-16 14:15:00,,,4.1062 +2016-05-16 14:26:33,3131.0,-10.7198, +2016-05-16 14:30:00,,,3.2153 +2016-05-16 14:41:28,3132.0,-10.8732, +2016-05-16 14:45:00,,,5.2922 +2016-05-16 14:56:23,3133.0,-10.8732, +2016-05-16 15:00:00,,,6.27 +2016-05-16 15:11:18,3134.0,-10.8416, +2016-05-16 15:15:00,,,25.4878 +2016-05-16 15:26:13,3134.0,-10.8416, +2016-05-16 15:30:00,,,5.5876 +2016-05-16 15:41:08,3135.0,-10.8732, +2016-05-16 15:45:00,,,7.812 +2016-05-16 15:56:03,3135.0,-10.8732, +2016-05-16 16:00:00,,,6.3079 +2016-05-16 16:10:58,3135.0,-11.1851, +2016-05-16 16:15:00,,,-0.5920000000000001 +2016-05-16 16:25:54,3135.0,-11.1851, +2016-05-16 16:30:00,,,4.2818 +2016-05-16 16:40:49,3135.0,-10.8416, +2016-05-16 16:45:00,,,-1.7442 +2016-05-16 16:55:44,3134.0,-11.1851, +2016-05-16 17:00:00,,,-1.1265 +2016-05-16 17:10:39,3134.0,-11.2166, +2016-05-16 17:15:00,,,-1.4891 +2016-05-16 17:25:34,3133.0,-11.1851, +2016-05-16 17:30:00,,,-1.3613 +2016-05-16 17:40:29,3133.0,-11.1851, +2016-05-16 17:45:00,,,-1.4039 +2016-05-16 17:55:25,3132.0,-11.28, +2016-05-16 18:00:00,,,-1.702 +2016-05-16 18:10:20,3132.0,-10.9048, +2016-05-16 18:15:00,,,-1.5105 +2016-05-16 18:25:15,3131.0,-10.9048, +2016-05-16 18:30:00,,,-1.5316 +2016-05-16 18:40:10,3131.0,-11.3778, +2016-05-16 18:45:00,,,-1.5318 +2016-05-16 18:55:05,3131.0,-10.9048, +2016-05-16 19:00:00,,,-1.5743 +2016-05-16 19:10:00,3131.0,-10.9048, +2016-05-16 19:15:00,,,-5.1088 +2016-05-16 19:24:55,3130.0,-10.9039, +2016-05-16 19:30:00,,,-4.916 +2016-05-16 19:39:50,3129.0,-11.2156, +2016-05-16 19:45:00,,,-4.8727 +2016-05-16 19:54:44,3128.0,-11.281, +2016-05-16 20:00:00,,,-4.8299 +2016-05-16 20:09:39,3128.0,-11.281, +2016-05-16 20:15:00,,,-4.8089 +2016-05-16 20:24:34,3128.0,-10.9357, +2016-05-16 20:30:00,,,-4.8089 +2016-05-16 20:39:29,3127.0,-11.3778, +2016-05-16 20:45:00,,,-4.7664 +2016-05-16 20:54:24,3127.0,-11.281, +2016-05-16 21:00:00,,,-4.5525 +2016-05-16 21:09:19,3126.0,-11.281, +2016-05-16 21:15:00,,,-4.5521 +2016-05-16 21:24:14,3124.0,-10.9357, +2016-05-16 21:30:00,,,-4.5315 +2016-05-16 21:39:09,3123.0,-11.3129, +2016-05-16 21:45:00,,,-4.5311 +2016-05-16 21:54:04,3123.0,-11.3129, +2016-05-16 22:00:00,,,-4.5315 +2016-05-16 22:08:58,3123.0,-11.3129, +2016-05-16 22:15:00,,,-4.5751 +2016-05-16 22:23:53,3122.0,-10.9357, +2016-05-16 22:30:00,,,-4.5751 +2016-05-16 22:38:48,3122.0,-11.3129, +2016-05-16 22:45:00,,,-4.5533 +2016-05-16 22:53:43,3122.0,-11.3778, +2016-05-16 23:00:00,,,-4.5533 +2016-05-16 23:08:38,3121.0,-10.9665, +2016-05-16 23:15:00,,,-4.5751 +2016-05-16 23:23:33,3121.0,-10.9665, +2016-05-16 23:30:00,,,-4.5751 +2016-05-16 23:38:28,3120.0,-11.3778, +2016-05-16 23:45:00,,,-4.5965 +2016-05-16 23:53:23,3119.0,-11.3778, +2016-05-17 00:00:00,,,-4.5969 +2016-05-17 00:08:18,3118.0,-10.8741, +2016-05-17 00:15:00,,,-4.6397 +2016-05-17 00:23:12,3118.0,-11.3448, +2016-05-17 00:30:00,,,-4.5323 +2016-05-17 00:38:07,3117.0,-11.3458, +2016-05-17 00:45:00,,, +2016-05-17 00:53:02,3116.0,-11.3778, +2016-05-17 01:00:00,,,-4.5327 +2016-05-17 01:07:57,3116.0,-11.3778, +2016-05-17 01:15:00,,, +2016-05-17 01:22:51,3115.0,-11.3778, +2016-05-17 01:30:00,,, +2016-05-17 01:37:46,3115.0,-11.3458, +2016-05-17 01:45:00,,, +2016-05-17 01:52:41,3115.0,-11.3778, +2016-05-17 02:00:00,,, +2016-05-17 02:07:36,3115.0,-11.3458, +2016-05-17 02:15:00,,, +2016-05-17 02:22:31,3114.0,-11.41, +2016-05-17 02:30:00,,, +2016-05-17 02:37:26,3114.0,-11.3448, +2016-05-17 02:45:00,,, +2016-05-17 02:52:21,3114.0,-11.3778, +2016-05-17 03:00:00,,, +2016-05-17 03:07:16,3113.0,-11.3778, +2016-05-17 03:15:00,,, +2016-05-17 03:22:11,3113.0,-11.3778, +2016-05-17 03:30:00,,, +2016-05-17 03:37:05,3113.0,-11.3778, +2016-05-17 03:45:00,,, +2016-05-17 03:52:00,3112.0,-11.3448, +2016-05-17 04:00:00,,, +2016-05-17 04:06:55,3113.0,-11.3448, +2016-05-17 04:15:00,,, +2016-05-17 04:21:50,3113.0,-10.9665, +2016-05-17 04:30:00,,, +2016-05-17 04:36:45,3112.0,-11.3778, +2016-05-17 04:45:00,,, +2016-05-17 04:51:40,3112.0,-11.3119, +2016-05-17 05:00:00,,, +2016-05-17 05:06:42,3112.0,-11.3778, +2016-05-17 05:15:00,,, +2016-05-17 05:21:37,3111.0,-10.9665, +2016-05-17 05:30:00,,, +2016-05-17 05:36:31,3112.0,-11.3458, +2016-05-17 05:45:00,,, +2016-05-17 05:51:26,3112.0,-11.3129, +2016-05-17 06:00:00,,, +2016-05-17 06:06:21,3112.0,-11.3448, +2016-05-17 06:15:00,,, +2016-05-17 06:21:16,3113.0,-10.9665, +2016-05-17 06:30:00,,, +2016-05-17 06:36:11,3114.0,-11.3778, +2016-05-17 06:45:00,,, +2016-05-17 06:51:06,3113.0,-11.3448, +2016-05-17 07:00:00,,, +2016-05-17 07:06:01,3114.0,-11.3129, +2016-05-17 07:15:00,,, +2016-05-17 07:20:56,3114.0,-11.3129, +2016-05-17 07:30:00,,, +2016-05-17 07:35:51,3114.0,-11.3458, +2016-05-17 07:45:00,,, +2016-05-17 07:50:46,3114.0,-11.3129, +2016-05-17 08:00:00,,, +2016-05-17 08:05:41,3115.0,-11.3129, +2016-05-17 08:15:00,,,-4.6623 +2016-05-17 08:20:36,3115.0,-11.3778, +2016-05-17 08:30:00,,, +2016-05-17 08:35:30,3116.0,-10.9357, +2016-05-17 08:45:00,,, +2016-05-17 08:50:26,3117.0,-11.3448, +2016-05-17 09:00:00,,, +2016-05-17 09:05:21,3118.0,-11.41, +2016-05-17 09:15:00,,,-4.6854 +2016-05-17 09:20:15,3118.0,-10.9357, +2016-05-17 09:30:00,,,-4.7064 +2016-05-17 09:35:10,3120.0,-11.28, +2016-05-17 09:45:00,,,-4.7068 +2016-05-17 09:50:05,3120.0,-11.3119, +2016-05-17 10:00:00,,,-4.7286 +2016-05-17 10:05:00,3121.0,-11.3129, +2016-05-17 10:15:00,,,-4.7496 +2016-05-17 10:19:56,3122.0,-11.3129, +2016-05-17 10:30:00,,,-4.7286 +2016-05-17 10:34:51,3122.0,-11.28, +2016-05-17 10:45:00,,,-4.7286 +2016-05-17 10:49:46,3122.0,-11.3778, +2016-05-17 11:00:00,,,-4.7068 +2016-05-17 11:04:41,3123.0,-10.9039, +2016-05-17 11:15:00,,,-4.7286 +2016-05-17 11:19:36,3123.0,-11.281, +2016-05-17 11:30:00,,,-4.7286 +2016-05-17 11:34:31,3123.0,-11.281, +2016-05-17 11:45:00,,,-4.8779 +2016-05-17 11:49:26,3124.0,-11.2483, +2016-05-17 12:00:00,,,-4.7286 +2016-05-17 12:04:21,3124.0,-11.281, +2016-05-17 12:15:00,,,-4.7715 +2016-05-17 12:19:16,3125.0,-10.9048, +2016-05-17 12:30:00,,,-4.7723 +2016-05-17 12:34:11,3126.0,-10.9048, +2016-05-17 12:45:00,,,-4.7934 +2016-05-17 12:49:06,3127.0,-10.9039, +2016-05-17 13:00:00,,,-5.0497 +2016-05-17 13:04:01,3127.0,-11.3129, +2016-05-17 13:15:00,,,-4.9423 +2016-05-17 13:18:56,3127.0,-11.3768, +2016-05-17 13:30:00,,,-5.0488 +2016-05-17 13:33:51,3128.0,-11.2483, +2016-05-17 13:45:00,,,-4.7278 +2016-05-17 13:48:46,3128.0,-10.9048, +2016-05-17 14:00:00,,,-4.9414 +2016-05-17 14:03:41,3128.0,-11.281, +2016-05-17 14:15:00,,,-4.9419 +2016-05-17 14:18:36,3128.0,-10.9048, +2016-05-17 14:30:00,,,-4.9419 +2016-05-17 14:33:31,3128.0,-11.2483, +2016-05-17 14:45:00,,,-4.9419 +2016-05-17 14:48:34,3128.0,-10.9048, +2016-05-17 15:00:00,,,-4.9633 +2016-05-17 15:03:29,3128.0,-10.9048, +2016-05-17 15:15:00,,,-5.0063 +2016-05-17 15:18:31,3129.0,-11.2166, +2016-05-17 15:30:00,,,-5.0488 +2016-05-17 15:33:27,3130.0,-10.8732, +2016-05-17 15:45:00,,,-5.0919 +2016-05-17 15:48:22,3130.0,-10.8732, +2016-05-17 16:00:00,,,-5.3504 +2016-05-17 16:03:17,3130.0,-11.2156, +2016-05-17 16:15:00,,,-5.1138 +2016-05-17 16:18:12,3131.0,-11.2176, +2016-05-17 16:30:00,,,-2.0226 +2016-05-17 16:33:08,3131.0,-10.8732, +2016-05-17 16:45:00,,,-1.9162 +2016-05-17 16:48:03,3132.0,-10.8425, +2016-05-17 17:00:00,,,-1.8736 +2016-05-17 17:02:58,3132.0,-10.8425, +2016-05-17 17:15:00,,,-1.8522 +2016-05-17 17:17:53,3133.0,-10.8425, +2016-05-17 17:30:00,,,-1.7456 +2016-05-17 17:32:49,3134.0,-10.8425, +2016-05-17 17:45:00,,,2.7018 +2016-05-17 17:47:44,3134.0,-10.8425, +2016-05-17 18:00:00,,,-1.5963 +2016-05-17 18:02:46,3134.0,-11.281, +2016-05-17 18:15:00,,,-1.7029 +2016-05-17 18:17:41,3134.0,-10.8425, +2016-05-17 18:30:00,,,-1.7455 +2016-05-17 18:32:37,3134.0,-10.8425, +2016-05-17 18:45:00,,,-1.7456 +2016-05-17 18:47:32,3134.0,-10.8741, +2016-05-17 19:00:00,,,-1.7029 +2016-05-17 19:02:27,3134.0,-10.8425, +2016-05-17 19:15:00,,,-5.2416 +2016-05-17 19:17:29,3134.0,-10.8741, +2016-05-17 19:30:00,,,-1.916 +2016-05-17 19:32:25,3134.0,-10.8732, +2016-05-17 19:45:00,,,-1.8309 +2016-05-17 19:47:20,3134.0,-10.8732, +2016-05-17 20:00:00,,,-1.8095 +2016-05-17 20:02:15,3133.0,-10.8732, +2016-05-17 20:15:00,,,-5.0923 +2016-05-17 20:17:11,3132.0,-10.9048, +2016-05-17 20:30:00,,,-5.1147 +2016-05-17 20:32:06,3132.0,-11.2166, +2016-05-17 20:45:00,,,-5.1582 +2016-05-17 20:47:01,3131.0,-11.2166, +2016-05-17 21:00:00,,,-5.0937 +2016-05-17 21:01:57,3131.0,-10.9048, +2016-05-17 21:15:00,,,-5.3523 +2016-05-17 21:16:52,3130.0,-11.2166, +2016-05-17 21:30:00,,,-5.1156 +2016-05-17 21:31:48,3129.0,-10.9048, +2016-05-17 21:45:00,,,-5.0941 +2016-05-17 21:46:43,3129.0,-10.9048, +2016-05-17 22:00:00,,,-5.0515 +2016-05-17 22:01:38,3128.0,-10.9048, +2016-05-17 22:15:00,,,-5.073 +2016-05-17 22:16:33,3128.0,-10.9366, +2016-05-17 22:30:00,,,-5.0085 +2016-05-17 22:31:28,3127.0,-10.9357, +2016-05-17 22:45:00,,,-5.009 +2016-05-17 22:46:23,3127.0,-11.3129, +2016-05-17 23:00:00,,,-4.9655 +2016-05-17 23:01:18,3126.0,-11.281, +2016-05-17 23:15:00,,,-5.1161 +2016-05-17 23:16:13,3124.0,-10.9357, +2016-05-17 23:30:00,,,-4.8161 +2016-05-17 23:31:08,3124.0,-10.9357, +2016-05-17 23:45:00,,,-4.7951 +2016-05-17 23:46:04,3123.0,-10.9039, +2016-05-18 00:00:00,,,-4.838 +2016-05-18 00:00:59,3123.0,-10.9357, +2016-05-18 00:15:00,,,-4.8165 +2016-05-18 00:15:54,3123.0,-11.1851, +2016-05-18 00:30:00,,,-5.0524 +2016-05-18 00:30:49,3122.0,-11.281, +2016-05-18 00:45:00,,,-4.8165 +2016-05-18 00:45:44,3122.0,-10.9357, +2016-05-18 01:00:00,,,-4.8165 +2016-05-18 01:00:39,3122.0,-10.9357, +2016-05-18 01:15:00,,,-4.838 +2016-05-18 01:15:34,3122.0,-10.9357, +2016-05-18 01:30:00,,,-4.7951 +2016-05-18 01:30:29,3121.0,-11.281, +2016-05-18 01:45:00,,,-4.817 +2016-05-18 01:45:24,3121.0,-11.3438, +2016-05-18 02:00:00,,,-4.8165 +2016-05-18 02:00:19,3121.0,-10.9357, +2016-05-18 02:15:00,,,-4.817 +2016-05-18 02:15:14,3121.0,-10.9675, +2016-05-18 02:30:00,,,-4.817 +2016-05-18 02:30:16,3120.0,-10.9675, +2016-05-18 02:45:00,,,-4.817 +2016-05-18 02:45:11,3119.0,-10.9675, +2016-05-18 03:00:00,,,-4.8165 +2016-05-18 03:00:06,3119.0,-11.3129, +2016-05-18 03:15:00,,,-4.817 +2016-05-18 03:15:01,3118.0,-10.9675, +2016-05-18 03:29:56,3118.0,-10.9675, +2016-05-18 03:30:00,,,-4.817 +2016-05-18 03:44:50,3118.0,-11.3129, +2016-05-18 03:45:00,,,-4.8165 +2016-05-18 03:59:45,3117.0,-11.3129, +2016-05-18 04:00:00,,,-4.8384 +2016-05-18 04:14:40,3117.0,-10.9665, +2016-05-18 04:15:00,,,-4.8388 +2016-05-18 04:29:35,3116.0,-10.9665, +2016-05-18 04:30:00,,,-4.8388 +2016-05-18 04:44:30,3116.0,-10.9665, +2016-05-18 04:45:00,,,-4.8165 +2016-05-18 04:59:25,3116.0,-11.3129, +2016-05-18 05:00:00,,,-4.7316 +2016-05-18 05:14:20,3116.0,-10.9665, +2016-05-18 05:15:00,,,-4.8384 +2016-05-18 05:29:22,3115.0,-11.3129, +2016-05-18 05:30:00,,,-4.8603 +2016-05-18 05:44:17,3115.0,-10.9665, +2016-05-18 05:45:00,,,-4.8603 +2016-05-18 05:59:12,3115.0,-10.9665, +2016-05-18 06:00:00,,,-4.8603 +2016-05-18 06:14:07,3115.0,-10.9665, +2016-05-18 06:15:00,,,-4.8603 +2016-05-18 06:29:02,3115.0,-11.3129, +2016-05-18 06:30:00,,,-4.817 +2016-05-18 06:43:57,3116.0,-10.9347, +2016-05-18 06:45:00,,,-4.8165 +2016-05-18 06:58:52,3116.0,-10.9357, +2016-05-18 07:00:00,,,-4.8165 +2016-05-18 07:13:47,3116.0,-10.9357, +2016-05-18 07:15:00,,,-4.8599 +2016-05-18 07:28:42,3117.0,-10.9357, +2016-05-18 07:30:00,,,-4.8384 +2016-05-18 07:43:37,3118.0,-10.9357, +2016-05-18 07:45:00,,,-4.8599 +2016-05-18 07:58:32,3120.0,-10.9039, +2016-05-18 08:00:00,,,-5.0744 +2016-05-18 08:13:27,3121.0,-11.281, +2016-05-18 08:15:00,,,-4.8809 +2016-05-18 08:28:29,3122.0,-10.9048, +2016-05-18 08:30:00,,,-5.0959 +2016-05-18 08:43:24,3123.0,-10.8732, +2016-05-18 08:45:00,,,-5.0735 +2016-05-18 08:58:20,3124.0,-10.8732, +2016-05-18 09:00:00,,,-5.0735 +2016-05-18 09:13:15,3126.0,-10.8416, +2016-05-18 09:15:00,,,-5.1591 +2016-05-18 09:28:10,3128.0,-10.8425, +2016-05-18 09:30:00,,,-5.0085 +2016-05-18 09:43:06,3129.0,-11.2483, +2016-05-18 09:45:00,,,-5.0305 +2016-05-18 09:58:01,3131.0,-11.1851, +2016-05-18 10:00:00,,,-5.1161 +2016-05-18 10:12:56,3132.0,-10.812, +2016-05-18 10:15:00,,,-5.1807 +2016-05-18 10:27:52,3135.0,-10.812, +2016-05-18 10:30:00,,,-5.4387 +2016-05-18 10:42:47,3136.0,-11.3448, +2016-05-18 10:45:00,,,-2.0867 +2016-05-18 10:57:42,3137.0,-10.812, +2016-05-18 11:00:00,,,-1.9802 +2016-05-18 11:12:37,3138.0,-10.8129, +2016-05-18 11:15:00,,,-1.8948 +2016-05-18 11:27:33,3138.0,-10.8129, +2016-05-18 11:30:00,,,-1.8309 +2016-05-18 11:42:28,3140.0,-10.7815, +2016-05-18 11:45:00,,,-1.7029 +2016-05-18 11:57:24,3141.0,-10.7815, +2016-05-18 12:00:00,,,20.9207 +2016-05-18 12:12:19,3142.0,-11.0899, +2016-05-18 12:15:00,,,23.0836 +2016-05-18 12:27:15,3143.0,-10.751, +2016-05-18 12:30:00,,,5.4557 +2016-05-18 12:42:10,3143.0,-10.751, +2016-05-18 12:45:00,,,24.4509 +2016-05-18 12:57:06,3144.0,-11.0899, +2016-05-18 13:00:00,,,6.9221 +2016-05-18 13:12:01,3146.0,-10.751, +2016-05-18 13:15:00,,,25.6608 +2016-05-18 13:26:57,3146.0,-11.0587, +2016-05-18 13:30:00,,,26.7814 +2016-05-18 13:41:53,3147.0,-10.751, +2016-05-18 13:45:00,,,27.4603 +2016-05-18 13:56:48,3147.0,-11.0899, +2016-05-18 14:00:00,,,27.9077 +2016-05-18 14:11:44,3148.0,-10.751, +2016-05-18 14:15:00,,,28.5648 +2016-05-18 14:26:40,3149.0,-10.751, +2016-05-18 14:30:00,,,28.9765 +2016-05-18 14:41:35,3149.0,-10.7198, +2016-05-18 14:45:00,,,29.3423 +2016-05-18 14:56:31,3149.0,-10.751, +2016-05-18 15:00:00,,,29.552 +2016-05-18 15:11:26,3149.0,-10.751, +2016-05-18 15:15:00,,,29.7659 +2016-05-18 15:26:22,3150.0,-10.751, +2016-05-18 15:30:00,,,29.9816 +2016-05-18 15:41:18,3149.0,-10.751, +2016-05-18 15:45:00,,,30.2529 +2016-05-18 15:56:13,3149.0,-10.7501, +2016-05-18 16:00:00,,,30.3611 +2016-05-18 16:11:09,3148.0,-11.2483, +2016-05-18 16:15:00,,,26.4552 +2016-05-18 16:26:04,3147.0,-10.7815, +2016-05-18 16:30:00,,,30.5842 +2016-05-18 16:41:00,3147.0,-10.751, +2016-05-18 16:45:00,,,30.6937 +2016-05-18 16:55:55,3146.0,-10.751, +2016-05-18 17:00:00,,,30.5869 +2016-05-18 17:10:51,3145.0,-10.7815, +2016-05-18 17:15:00,,,30.9195 +2016-05-18 17:25:47,3145.0,-10.751, +2016-05-18 17:30:00,,,30.9749 +2016-05-18 17:40:42,3144.0,-10.7815, +2016-05-18 17:45:00,,,9.7681 +2016-05-18 17:55:38,3144.0,-10.7815, +2016-05-18 18:00:00,,,10.6283 +2016-05-18 18:10:33,3143.0,-10.7815, +2016-05-18 18:15:00,,,30.8036 +2016-05-18 18:25:29,3143.0,-10.8129, +2016-05-18 18:30:00,,,31.0276 +2016-05-18 18:40:24,3143.0,-11.1222, +2016-05-18 18:45:00,,,9.8182 +2016-05-18 18:55:20,3143.0,-10.7815, +2016-05-18 19:00:00,,,10.1655 +2016-05-18 19:10:15,3143.0,-10.7815, +2016-05-18 19:15:00,,,9.923 +2016-05-18 19:25:11,3143.0,-10.7815, +2016-05-18 19:30:00,,,8.8431 +2016-05-18 19:40:06,3142.0,-10.8129, +2016-05-18 19:45:00,,,9.5487 +2016-05-18 19:55:02,3141.0,-10.8129, +2016-05-18 20:00:00,,,8.7903 +2016-05-18 20:09:57,3140.0,-10.8129, +2016-05-18 20:15:00,,,0.3963 +2016-05-18 20:24:52,3139.0,-10.8129, +2016-05-18 20:30:00,,,0.1162 +2016-05-18 20:39:48,3138.0,-10.812, +2016-05-18 20:45:00,,,-0.1202 +2016-05-18 20:54:43,3138.0,-10.812, +2016-05-18 21:00:00,,,-0.206 +2016-05-18 21:09:39,3138.0,-10.812, +2016-05-18 21:15:00,,,-0.3132 +2016-05-18 21:24:34,3137.0,-10.8435, +2016-05-18 21:30:00,,,-0.4418 +2016-05-18 21:39:30,3136.0,-10.812, +2016-05-18 21:45:00,,,-0.5274 +2016-05-18 21:54:25,3136.0,-10.8435, +2016-05-18 22:00:00,,,-0.5488 +2016-05-18 22:09:20,3136.0,-10.8435, +2016-05-18 22:15:00,,,-0.5915 +2016-05-18 22:24:16,3136.0,-10.8435, +2016-05-18 22:30:00,,,-0.6557 +2016-05-18 22:39:11,3135.0,-11.2493, +2016-05-18 22:45:00,,,-0.6984 +2016-05-18 22:54:07,3135.0,-10.8435, +2016-05-18 23:00:00,,,-0.7625 +2016-05-18 23:09:02,3133.0,-10.8435, +2016-05-18 23:15:00,,,-4.4765 +2016-05-18 23:23:58,3133.0,-10.8435, +2016-05-18 23:30:00,,,-4.3932 +2016-05-18 23:38:53,3132.0,-10.8425, +2016-05-18 23:45:00,,,-4.4149 +2016-05-18 23:53:49,3132.0,-10.8751, +2016-05-19 00:00:00,,,-4.6282 +2016-05-19 00:08:44,3131.0,-10.8751, +2016-05-19 00:15:00,,,-4.4579 +2016-05-19 00:23:39,3131.0,-10.8435, +2016-05-19 00:30:00,,,-4.4808 +2016-05-19 00:38:35,3130.0,-10.8741, +2016-05-19 00:45:00,,,-4.5662 +2016-05-19 00:53:30,3130.0,-10.8741, +2016-05-19 01:00:00,,,-4.5239 +2016-05-19 01:08:26,3129.0,-10.8741, +2016-05-19 01:15:00,,,-4.6327 +2016-05-19 01:23:21,3128.0,-10.8741, +2016-05-19 01:30:00,,,-4.5034 +2016-05-19 01:38:16,3128.0,-11.2483, +2016-05-19 01:45:00,,,-4.5682 +2016-05-19 01:53:12,3127.0,-10.9048, +2016-05-19 02:00:00,,,-4.505 +2016-05-19 02:08:07,3127.0,-10.9048, +2016-05-19 02:15:00,,,-4.5477 +2016-05-19 02:23:02,3127.0,-11.2166, +2016-05-19 02:30:00,,,-4.5485 +2016-05-19 02:37:57,3126.0,-10.9048, +2016-05-19 02:45:00,,,-4.5493 +2016-05-19 02:52:53,3125.0,-11.2166, +2016-05-19 03:00:00,,,-4.4002 +2016-05-19 03:07:48,3124.0,-10.9048, +2016-05-19 03:15:00,,,-4.592 +2016-05-19 03:22:43,3124.0,-10.9048, +2016-05-19 03:30:00,,,-4.4219 +2016-05-19 03:37:38,3123.0,-10.9048, +2016-05-19 03:45:00,,,-4.465 +2016-05-19 03:52:33,3123.0,-10.9048, +2016-05-19 04:00:00,,,-4.4872 +2016-05-19 04:07:29,3123.0,-10.9048, +2016-05-19 04:15:00,,,-4.68 +2016-05-19 04:22:24,3123.0,-11.2166, +2016-05-19 04:30:00,,,-4.5311 +2016-05-19 04:37:19,3122.0,-10.9048, +2016-05-19 04:45:00,,,-4.5525 +2016-05-19 04:52:14,3122.0,-10.9048, +2016-05-19 05:00:00,,,-4.5315 +2016-05-19 05:07:09,3122.0,-10.9048, +2016-05-19 05:15:00,,,-4.5743 +2016-05-19 05:22:04,3122.0,-10.9048, +2016-05-19 05:30:00,,,-4.5747 +2016-05-19 05:36:59,3121.0,-10.9048, +2016-05-19 05:45:00,,,-4.5537 +2016-05-19 05:51:54,3122.0,-10.9048, +2016-05-19 06:00:00,,,-4.5327 +2016-05-19 06:06:49,3121.0,-10.9048, +2016-05-19 06:15:00,,,-4.5541 +2016-05-19 06:21:44,3121.0,-10.9366, +2016-05-19 06:30:00,,,-4.6183 +2016-05-19 06:36:39,3122.0,-10.9048, +2016-05-19 06:45:00,,,-4.79 +2016-05-19 06:51:35,3122.0,-10.9048, +2016-05-19 07:00:00,,,-4.79 +2016-05-19 07:06:30,3122.0,-10.9048, +2016-05-19 07:15:00,,,-4.8329 +2016-05-19 07:21:25,3122.0,-10.9048, +2016-05-19 07:30:00,,,-4.6623 +2016-05-19 07:36:21,3122.0,-10.9048, +2016-05-19 07:45:00,,,-4.9191 +2016-05-19 07:51:16,3122.0,-10.9048, +2016-05-19 08:00:00,,,-4.8775 +2016-05-19 08:06:11,3123.0,-10.9058, +2016-05-19 08:15:00,,,-4.962 +2016-05-19 08:21:06,3124.0,-10.8741, +2016-05-19 08:30:00,,,-4.9616 +2016-05-19 08:36:01,3126.0,-10.8435, +2016-05-19 08:45:00,,,-5.048 +2016-05-19 08:50:57,3127.0,-10.8435, +2016-05-19 09:00:00,,,-1.8728 +2016-05-19 09:05:52,3128.0,-10.812, +2016-05-19 09:15:00,,,-1.7452 +2016-05-19 09:20:47,3129.0,-10.812, +2016-05-19 09:30:00,,,-1.6812 +2016-05-19 09:35:43,3131.0,-10.7805, +2016-05-19 09:45:00,,,-1.6385 +2016-05-19 09:50:38,3133.0,-10.7815, +2016-05-19 10:00:00,,,-1.5961 +2016-05-19 10:05:34,3135.0,-11.0899, +2016-05-19 10:15:00,,,-1.5105 +2016-05-19 10:20:29,3136.0,-10.751, +2016-05-19 10:30:00,,,-1.5745 +2016-05-19 10:35:25,3138.0,-10.751, +2016-05-19 10:45:00,,,22.9612 +2016-05-19 10:50:21,3139.0,-10.7198, +2016-05-19 11:00:00,,,25.2575 +2016-05-19 11:05:16,3142.0,-11.0276, +2016-05-19 11:15:00,,,26.6012 +2016-05-19 11:20:12,3143.0,-10.7198, +2016-05-19 11:30:00,,,27.5213 +2016-05-19 11:35:08,3143.0,-10.7198, +2016-05-19 11:45:00,,,28.2167 +2016-05-19 11:50:03,3145.0,-10.7198, +2016-05-19 12:00:00,,,28.6792 +2016-05-19 12:04:59,3147.0,-10.7207, +2016-05-19 12:15:00,,,29.0435 +2016-05-19 12:19:55,3148.0,-10.6895, +2016-05-19 12:30:00,,,29.2536 +2016-05-19 12:34:51,3150.0,-10.6904, +2016-05-19 12:45:00,,,29.623 +2016-05-19 12:49:47,3151.0,-10.6904, +2016-05-19 13:00:00,,,29.8375 +2016-05-19 13:04:42,3152.0,-10.6904, +2016-05-19 13:15:00,,,29.6732 +2016-05-19 13:19:38,3154.0,-10.6904, +2016-05-19 13:30:00,,,30.1074 +2016-05-19 13:34:34,3155.0,-10.6904, +2016-05-19 13:45:00,,,30.5431 +2016-05-19 13:49:30,3156.0,-10.6593, +2016-05-19 14:00:00,,,30.71 +2016-05-19 14:04:26,3156.0,-10.6904, +2016-05-19 14:15:00,,,30.7677 +2016-05-19 14:19:22,3156.0,-11.0899, +2016-05-19 14:30:00,,,30.8228 +2016-05-19 14:34:18,3156.0,-10.6904, +2016-05-19 14:45:00,,,30.936 +2016-05-19 14:49:14,3156.0,-10.6904, +2016-05-19 15:00:00,,,30.3719 +2016-05-19 15:04:10,3156.0,-11.0286, +2016-05-19 15:15:00,,,31.0469 +2016-05-19 15:19:06,3156.0,-10.6904, +2016-05-19 15:30:00,,,31.0469 +2016-05-19 15:34:01,3156.0,-10.6904, +2016-05-19 15:45:00,,,31.161 +2016-05-19 15:49:05,3156.0,-10.6904, +2016-05-19 16:00:00,,,31.2169 +2016-05-19 16:04:01,3156.0,-10.6904, +2016-05-19 16:15:00,,,31.2728 +2016-05-19 16:18:56,3156.0,-11.0597, +2016-05-19 16:30:00,,,31.3317 +2016-05-19 16:33:52,3155.0,-10.6904, +2016-05-19 16:45:00,,,31.3907 +2016-05-19 16:48:48,3156.0,-10.6904, +2016-05-19 17:00:00,,,31.3317 +2016-05-19 17:03:44,3156.0,-11.0286, +2016-05-19 17:15:00,,,28.4861 +2016-05-19 17:18:40,3155.0,-11.0899, +2016-05-19 17:30:00,,,31.3907 +2016-05-19 17:33:36,3155.0,-10.6904, +2016-05-19 17:45:00,,,31.447 +2016-05-19 17:48:32,3155.0,-10.7217, +2016-05-19 18:00:00,,,30.595 +2016-05-19 18:03:27,3154.0,-11.1536, +2016-05-19 18:15:00,,,18.5652 +2016-05-19 18:18:23,3152.0,-11.0899, +2016-05-19 18:30:00,,,31.447 +2016-05-19 18:33:19,3152.0,-10.7207, +2016-05-19 18:45:00,,,31.5062 +2016-05-19 18:48:15,3152.0,-10.7207, +2016-05-19 19:00:00,,,31.6195 +2016-05-19 19:03:11,3151.0,-11.0276, +2016-05-19 19:15:00,,,31.5628 +2016-05-19 19:18:06,3150.0,-10.7207, +2016-05-19 19:30:00,,,31.5062 +2016-05-19 19:33:02,3149.0,-10.751, +2016-05-19 19:45:00,,,-4.1554 +2016-05-19 19:47:58,3150.0,-10.752, +2016-05-19 20:00:00,,,30.5977 +2016-05-19 20:02:54,3148.0,-10.751, +2016-05-19 20:15:00,,,30.4805 +2016-05-19 20:17:50,3147.0,-10.751, +2016-05-19 20:30:00,,,31.3879 +2016-05-19 20:32:45,3146.0,-10.7824, +2016-05-19 20:45:00,,,6.1344 +2016-05-19 20:47:41,3144.0,-11.0597, +2016-05-19 21:00:00,,,31.2728 +2016-05-19 21:02:37,3143.0,-10.7824, +2016-05-19 21:15:00,,,31.447 +2016-05-19 21:17:33,3143.0,-10.7824, +2016-05-19 21:30:00,,,31.5034 +2016-05-19 21:32:29,3142.0,-10.7824, +2016-05-19 21:45:00,,,8.1569 +2016-05-19 21:47:24,3140.0,-10.8129, +2016-05-19 22:00:00,,,0.6993 +2016-05-19 22:02:20,3138.0,-11.0909, +2016-05-19 22:15:00,,,0.2886 +2016-05-19 22:17:16,3138.0,-10.8129, +2016-05-19 22:30:00,,,6.7606 +2016-05-19 22:32:11,3138.0,-10.8129, +2016-05-19 22:45:00,,,30.7595 +2016-05-19 22:47:07,3137.0,-10.8129, +2016-05-19 23:00:00,,,0.2886 +2016-05-19 23:02:03,3137.0,-10.8129, +2016-05-19 23:15:00,,,-0.0558 +2016-05-19 23:16:58,3136.0,-10.8129, +2016-05-19 23:30:00,,,-0.0343 +2016-05-19 23:31:54,3136.0,-10.8129, +2016-05-19 23:45:00,,,-0.2704 +2016-05-19 23:46:50,3136.0,-10.8129, +2016-05-20 00:00:00,,,8.8198 +2016-05-20 00:01:45,3135.0,-10.8129, +2016-05-20 00:15:00,,,0.0302 +2016-05-20 00:16:41,3135.0,-11.0597, +2016-05-20 00:30:00,,,-0.2275 +2016-05-20 00:31:37,3135.0,-10.8129, +2016-05-20 00:45:00,,,-0.3347 +2016-05-20 00:46:32,3134.0,-10.8129, +2016-05-20 01:00:00,,,-0.4419 +2016-05-20 01:01:28,3134.0,-10.8129, +2016-05-20 01:15:00,,,-0.4204 +2016-05-20 01:16:23,3134.0,-10.8129, +2016-05-20 01:30:00,,,5.7477 +2016-05-20 01:31:19,3133.0,-10.8435, +2016-05-20 01:45:00,,,-0.1846 +2016-05-20 01:46:15,3132.0,-10.8435, +2016-05-20 02:00:00,,,8.1017 +2016-05-20 02:01:10,3132.0,-10.8435, +2016-05-20 02:15:00,,,2.3385 +2016-05-20 02:16:06,3131.0,-10.8435, +2016-05-20 02:30:00,,,-0.1631 +2016-05-20 02:31:01,3131.0,-10.812, +2016-05-20 02:45:00,,,-0.4418 +2016-05-20 02:45:57,3130.0,-10.8435, +2016-05-20 03:00:00,,,6.5902 +2016-05-20 03:00:52,3129.0,-10.8435, +2016-05-20 03:15:00,,,-0.206 +2016-05-20 03:15:48,3128.0,-10.8435, +2016-05-20 03:30:00,,,-0.4633 +2016-05-20 03:30:43,3128.0,-10.8435, +2016-05-20 03:45:00,,,5.1573 +2016-05-20 03:45:39,3128.0,-10.8435, +2016-05-20 04:00:00,,,-4.4137 +2016-05-20 04:00:34,3127.0,-10.8425, +2016-05-20 04:15:00,,,-4.5026 +2016-05-20 04:15:29,3127.0,-10.8435, +2016-05-20 04:30:00,,,-1.0834 +2016-05-20 04:30:25,3127.0,-10.8435, +2016-05-20 04:45:00,,,-1.0194 +2016-05-20 04:45:20,3127.0,-10.8435, +2016-05-20 05:00:00,,,-4.546 +2016-05-20 05:00:15,3125.0,-10.8435, +2016-05-20 05:15:00,,,-4.6335 +2016-05-20 05:15:10,3125.0,-10.8435, +2016-05-20 05:30:00,,,-4.8907 +2016-05-20 05:30:05,3124.0,-10.8751, +2016-05-20 05:45:00,,,-4.8697 +2016-05-20 05:45:01,3124.0,-11.1536, +2016-05-20 05:59:56,3124.0,-10.8741, +2016-05-20 06:00:00,,,-4.934 +2016-05-20 06:14:51,3125.0,-10.8741, +2016-05-20 06:15:00,,,-4.847 +2016-05-20 06:29:47,3124.0,-10.8435, +2016-05-20 06:30:00,,,-1.5314 +2016-05-20 06:44:42,3124.0,-10.8435, +2016-05-20 06:45:00,,,-4.6549 +2016-05-20 06:59:37,3124.0,-11.1851, +2016-05-20 07:00:00,,,-4.6343 +2016-05-20 07:14:33,3125.0,-10.8435, +2016-05-20 07:15:00,,,-4.9992 +2016-05-20 07:29:28,3125.0,-10.8435, +2016-05-20 07:30:00,,,-1.5953 +2016-05-20 07:44:24,3127.0,-10.812, +2016-05-20 07:45:00,,,3.2105 +2016-05-20 07:59:19,3127.0,-10.812, +2016-05-20 08:00:00,,,-1.1684 +2016-05-20 08:14:15,3127.0,-10.8129, +2016-05-20 08:15:00,,,-1.2965 +2016-05-20 08:29:10,3128.0,-10.8129, +2016-05-20 08:30:00,,,-1.318 +2016-05-20 08:44:06,3128.0,-10.7815, +2016-05-20 08:45:00,,,-1.2967 +2016-05-20 08:59:01,3130.0,-10.7815, +2016-05-20 09:00:00,,,6.1811 +2016-05-20 09:14:04,3132.0,-10.7501, +2016-05-20 09:15:00,,,26.7315 +2016-05-20 09:28:59,3134.0,-10.7501, +2016-05-20 09:30:00,,,28.6665 +2016-05-20 09:43:55,3135.0,-10.7198, +2016-05-20 09:45:00,,,22.8401 +2016-05-20 09:58:51,3137.0,-10.7198, +2016-05-20 10:00:00,,,30.0431 +2016-05-20 10:13:46,3138.0,-10.7198, +2016-05-20 10:15:00,,,30.3719 +2016-05-20 10:28:42,3141.0,-10.6895, +2016-05-20 10:30:00,,,30.6498 +2016-05-20 10:43:38,3143.0,-10.6282, +2016-05-20 10:45:00,,,29.8775 +2016-05-20 10:58:34,3144.0,-10.6593, +2016-05-20 11:00:00,,,30.71 +2016-05-20 11:13:29,3146.0,-10.6904, +2016-05-20 11:15:00,,,31.0524 +2016-05-20 11:28:25,3148.0,-10.6904, +2016-05-20 11:30:00,,,31.108 +2016-05-20 11:43:21,3149.0,-10.6904, +2016-05-20 11:45:00,,,31.2224 +2016-05-20 11:58:17,3150.0,-10.6593, +2016-05-20 12:00:00,,,30.5977 +2016-05-20 12:13:13,3151.0,-10.6904, +2016-05-20 12:15:00,,,30.7677 +2016-05-20 12:28:08,3152.0,-10.6904, +2016-05-20 12:30:00,,,29.7739 +2016-05-20 12:43:04,3152.0,-10.6593, +2016-05-20 12:45:00,,,31.3907 +2016-05-20 12:58:00,3152.0,-10.6593, +2016-05-20 13:00:00,,,31.3962 +2016-05-20 13:12:56,3152.0,-10.6904, +2016-05-20 13:15:00,,,31.2811 +2016-05-20 13:27:52,3153.0,-10.6904, +2016-05-20 13:30:00,,,29.8828 +2016-05-20 13:42:48,3154.0,-10.6593, +2016-05-20 13:45:00,,,26.9939 +2016-05-20 13:57:44,3154.0,-10.6904, +2016-05-20 14:00:00,,,31.1665 +2016-05-20 14:12:40,3155.0,-10.7198, +2016-05-20 14:15:00,,, +2016-05-20 14:27:36,3154.0,-10.7198, +2016-05-20 14:30:00,,,54.3022 +2016-05-20 14:42:32,3153.0,-10.751, +2016-05-20 14:45:00,,,54.3166 +2016-05-20 14:57:27,3152.0,-10.751, +2016-05-20 15:00:00,,,54.4399 +2016-05-20 15:12:30,3152.0,-10.7198, +2016-05-20 15:15:00,,,54.1939 +2016-05-20 15:27:26,3151.0,-10.751, +2016-05-20 15:30:00,,,54.3166 +2016-05-20 15:42:22,3151.0,-10.751, +2016-05-20 15:45:00,,,54.0667 +2016-05-20 15:57:18,3150.0,-10.751, +2016-05-20 16:00:00,,,54.3166 +2016-05-20 16:12:13,3150.0,-10.751, +2016-05-20 16:15:00,,,54.18899999999999 +2016-05-20 16:27:09,3150.0,-10.751, +2016-05-20 16:30:00,,,53.9449 +2016-05-20 16:42:05,3149.0,-10.751, +2016-05-20 16:45:00,,,53.9449 +2016-05-20 16:57:00,3149.0,-10.751, +2016-05-20 17:00:00,,,54.0667 +2016-05-20 17:11:56,3149.0,-10.751, +2016-05-20 17:15:00,,,54.0667 +2016-05-20 17:26:52,3148.0,-10.7824, +2016-05-20 17:30:00,,,54.18899999999999 +2016-05-20 17:41:48,3148.0,-10.751, +2016-05-20 17:45:00,,,53.9449 +2016-05-20 17:56:44,3147.0,-10.7815, +2016-05-20 18:00:00,,,53.5822 +2016-05-20 18:11:39,3146.0,-10.7815, +2016-05-20 18:15:00,,,53.7027 +2016-05-20 18:26:35,3146.0,-10.7815, +2016-05-20 18:30:00,,,53.9449 +2016-05-20 18:41:31,3145.0,-10.7815, +2016-05-20 18:45:00,,,53.8236 +2016-05-20 18:56:27,3145.0,-10.8129, +2016-05-20 19:00:00,,,53.7027 +2016-05-20 19:11:22,3145.0,-10.8129, +2016-05-20 19:15:00,,,54.3166 +2016-05-20 19:26:18,3143.0,-10.751, +2016-05-20 19:30:00,,,27.1356 +2016-05-20 19:41:14,3143.0,-10.751, +2016-05-20 19:45:00,,,27.7299 +2016-05-20 19:56:09,3142.0,-10.751, +2016-05-20 20:00:00,,,31.1135 +2016-05-20 20:11:05,3142.0,-10.7815, +2016-05-20 20:15:00,,,18.918 +2016-05-20 20:26:01,3140.0,-10.8435, +2016-05-20 20:30:00,,, +2016-05-20 20:40:57,3138.0,-10.7824, +2016-05-20 20:45:00,,,-0.4422 +2016-05-20 20:55:52,3138.0,-10.7824, +2016-05-20 21:00:00,,,9.1577 +2016-05-20 21:10:48,3138.0,-10.7824, +2016-05-20 21:15:00,,,31.34 +2016-05-20 21:25:44,3137.0,-10.8129, +2016-05-20 21:30:00,,,31.5712 +2016-05-20 21:40:40,3137.0,-10.7815, +2016-05-20 21:45:00,,,31.4582 +2016-05-20 21:55:35,3136.0,-10.7824, +2016-05-20 22:00:00,,,31.6903 +2016-05-20 22:10:31,3136.0,-10.7815, +2016-05-20 22:15:00,,,31.6931 +2016-05-20 22:25:26,3135.0,-10.8129, +2016-05-20 22:30:00,,,31.8099 +2016-05-20 22:40:22,3135.0,-10.8129, +2016-05-20 22:45:00,,,31.8099 +2016-05-20 22:55:18,3135.0,-10.8435, +2016-05-20 23:00:00,,,31.9329 +2016-05-20 23:10:13,3134.0,-10.8129, +2016-05-20 23:15:00,,,31.8099 +2016-05-20 23:25:09,3133.0,-10.8129, +2016-05-20 23:30:00,,,31.7529 +2016-05-20 23:40:04,3132.0,-10.8129, +2016-05-20 23:45:00,,,31.6959 +2016-05-20 23:55:00,3132.0,-10.8129, +2016-05-21 00:00:00,,,31.8127 +2016-05-21 00:09:56,3131.0,-10.8129, +2016-05-21 00:15:00,,,31.6959 +2016-05-21 00:24:51,3131.0,-10.8129, +2016-05-21 00:30:00,,,31.8127 +2016-05-21 00:39:47,3130.0,-10.8129, +2016-05-21 00:45:00,,,31.8127 +2016-05-21 00:54:42,3130.0,-10.8129, +2016-05-21 01:00:00,,,31.8127 +2016-05-21 01:09:38,3129.0,-10.8129, +2016-05-21 01:15:00,,,31.8127 +2016-05-21 01:24:33,3129.0,-10.812, +2016-05-21 01:30:00,,,31.8127 +2016-05-21 01:39:28,3128.0,-10.8129, +2016-05-21 01:45:00,,,31.8127 +2016-05-21 01:54:24,3128.0,-10.8129, +2016-05-21 02:00:00,,,31.8728 +2016-05-21 02:09:19,3128.0,-10.812, +2016-05-21 02:15:00,,,10.147 +2016-05-21 02:24:15,3128.0,-10.812, +2016-05-21 02:30:00,,,10.1976 +2016-05-21 02:39:10,3128.0,-10.8444, +2016-05-21 02:45:00,,,31.4665 +2016-05-21 02:54:06,3128.0,-10.8435, +2016-05-21 03:00:00,,,31.6391 +2016-05-21 03:09:01,3127.0,-10.812, +2016-05-21 03:15:00,,,31.6959 +2016-05-21 03:23:57,3127.0,-10.812, +2016-05-21 03:30:00,,,29.4626 +2016-05-21 03:38:52,3127.0,-10.8435, +2016-05-21 03:45:00,,,10.7723 +2016-05-21 03:53:48,3127.0,-10.8435, +2016-05-21 04:00:00,,,0.7211 +2016-05-21 04:08:43,3127.0,-10.8129, +2016-05-21 04:15:00,,,0.1809 +2016-05-21 04:23:39,3127.0,-10.8435, +2016-05-21 04:30:00,,,9.0278 +2016-05-21 04:38:34,3127.0,-10.8129, +2016-05-21 04:45:00,,,31.1721 +2016-05-21 04:53:29,3127.0,-10.812, +2016-05-21 05:00:00,,,31.5202 +2016-05-21 05:08:25,3127.0,-10.812, +2016-05-21 05:15:00,,,31.6391 +2016-05-21 05:23:20,3126.0,-10.8435, +2016-05-21 05:30:00,,,31.6391 +2016-05-21 05:38:15,3127.0,-10.8435, +2016-05-21 05:45:00,,,31.6391 +2016-05-21 05:53:11,3127.0,-10.8435, +2016-05-21 06:00:00,,,31.6987 +2016-05-21 06:08:06,3126.0,-10.8435, +2016-05-21 06:15:00,,,31.7585 +2016-05-21 06:23:01,3126.0,-10.8435, +2016-05-21 06:30:00,,,31.6987 +2016-05-21 06:37:57,3126.0,-10.812, +2016-05-21 06:45:00,,,31.7585 +2016-05-21 06:52:52,3126.0,-10.8129, +2016-05-21 07:00:00,,,31.8184 +2016-05-21 07:07:47,3127.0,-10.8129, +2016-05-21 07:15:00,,,31.8756 +2016-05-21 07:22:43,3127.0,-10.8129, +2016-05-21 07:30:00,,,31.7613 +2016-05-21 07:37:38,3128.0,-10.8129, +2016-05-21 07:45:00,,,31.8756 +2016-05-21 07:52:33,3128.0,-10.7815, +2016-05-21 08:00:00,,,31.9329 +2016-05-21 08:07:29,3128.0,-10.8129, +2016-05-21 08:15:00,,,31.8784 +2016-05-21 08:22:24,3130.0,-10.7501, +2016-05-21 08:30:00,,,31.8756 +2016-05-21 08:37:20,3130.0,-10.7501, +2016-05-21 08:45:00,,,31.9329 +2016-05-21 08:52:15,3132.0,-10.7501, +2016-05-21 09:00:00,,,31.8784 +2016-05-21 09:07:11,3134.0,-10.751, +2016-05-21 09:15:00,,,31.9932 +2016-05-21 09:22:06,3135.0,-10.7198, +2016-05-21 09:30:00,,,31.8784 +2016-05-21 09:37:02,3136.0,-10.7198, +2016-05-21 09:45:00,,,31.9932 +2016-05-21 09:51:57,3138.0,-10.6895, +2016-05-21 10:00:00,,,31.9357 +2016-05-21 10:06:53,3138.0,-10.6895, +2016-05-21 10:15:00,,,31.8184 +2016-05-21 10:21:48,3141.0,-10.6904, +2016-05-21 10:30:00,,,31.5286 +2016-05-21 10:36:44,3143.0,-10.6904, +2016-05-21 10:45:00,,,54.3311 +2016-05-21 10:51:40,3144.0,-10.7198, +2016-05-21 11:00:00,,,54.2083 +2016-05-21 11:06:36,3146.0,-10.6885, +2016-05-21 11:15:00,,,54.4544 +2016-05-21 11:21:32,3147.0,-10.6895, +2016-05-21 11:30:00,,,54.583 +2016-05-21 11:36:27,3149.0,-10.6895, +2016-05-21 11:45:00,,,54.3359 +2016-05-21 11:51:23,3150.0,-10.6904, +2016-05-21 12:00:00,,,54.4592 +2016-05-21 12:06:19,3151.0,-10.6895, +2016-05-21 12:15:00,,,54.583 +2016-05-21 12:21:15,3152.0,-10.6904, +2016-05-21 12:30:00,,,54.3359 +2016-05-21 12:36:10,3152.0,-10.6904, +2016-05-21 12:45:00,,,54.5782 +2016-05-21 12:51:06,3155.0,-10.6904, +2016-05-21 13:00:00,,,54.7122 +2016-05-21 13:06:02,3155.0,-10.6593, +2016-05-21 13:15:00,,,54.5879 +2016-05-21 13:20:59,3156.0,-10.6593, +2016-05-21 13:30:00,,,54.5879 +2016-05-21 13:35:55,3156.0,-10.6593, +2016-05-21 13:45:00,,,54.8369 +2016-05-21 13:50:51,3158.0,-10.6593, +2016-05-21 14:00:00,,,55.606 +2016-05-21 14:05:47,3160.0,-10.6292, +2016-05-21 14:15:00,,,54.4592 +2016-05-21 14:20:43,3160.0,-10.6282, +2016-05-21 14:30:00,,,54.9622 +2016-05-21 14:35:39,3161.0,-10.6292, +2016-05-21 14:45:00,,,54.8418 +2016-05-21 14:50:35,3161.0,-10.6292, +2016-05-21 15:00:00,,, +2016-05-21 15:05:31,3161.0,-10.6904, +2016-05-21 15:15:00,,,54.4544 +2016-05-21 15:20:27,3161.0,-10.6282, +2016-05-21 15:30:00,,,54.0859 +2016-05-21 15:35:23,3161.0,-10.6602, +2016-05-21 15:45:00,,,54.0859 +2016-05-21 15:50:19,3161.0,-10.6602, +2016-05-21 16:00:00,,,54.7122 +2016-05-21 16:05:15,3161.0,-10.6602, +2016-05-21 16:15:00,,,54.5879 +2016-05-21 16:20:11,3161.0,-10.6602, +2016-05-21 16:30:00,,,54.3359 +2016-05-21 16:35:07,3160.0,-10.6292, +2016-05-21 16:45:00,,,-3.3299 +2016-05-21 16:50:03,3160.0,-10.6593, +2016-05-21 17:00:00,,,-4.0506 +2016-05-21 17:04:59,3160.0,-10.6292, +2016-05-21 17:15:00,,,54.2083 +2016-05-21 17:19:55,3160.0,-10.6593, +2016-05-21 17:30:00,,,54.0859 +2016-05-21 17:34:51,3159.0,-10.6593, +2016-05-21 17:45:00,,,54.3359 +2016-05-21 17:49:47,3159.0,-10.6904, +2016-05-21 18:00:00,,,54.3311 +2016-05-21 18:04:43,3158.0,-10.6904, +2016-05-21 18:15:00,,,29.2205 +2016-05-21 18:19:39,3158.0,-10.6292, +2016-05-21 18:30:00,,,54.4641 +2016-05-21 18:34:35,3156.0,-10.6914, +2016-05-21 18:45:00,,,27.8189 +2016-05-21 18:49:31,3156.0,-10.6292, +2016-05-21 19:00:00,,,53.8427 +2016-05-21 19:04:27,3155.0,-10.7217, +2016-05-21 19:15:00,,,54.3407 +2016-05-21 19:19:23,3154.0,-10.6904, +2016-05-21 19:30:00,,,31.8671 +2016-05-21 19:34:19,3152.0,-10.6914, +2016-05-21 19:45:00,,, +2016-05-21 19:49:15,3152.0,-10.7207, +2016-05-21 20:00:00,,,31.4609 +2016-05-21 20:04:11,3152.0,-10.6914, +2016-05-21 20:15:00,,,31.9216 +2016-05-21 20:19:07,3151.0,-10.6904, +2016-05-21 20:30:00,,,31.8728 +2016-05-21 20:34:02,3150.0,-10.6904, +2016-05-21 20:45:00,,,31.8756 +2016-05-21 20:48:58,3149.0,-10.6904, +2016-05-21 21:00:00,,,31.9329 +2016-05-21 21:03:54,3148.0,-10.6904, +2016-05-21 21:15:00,,,31.9272 +2016-05-21 21:18:50,3146.0,-10.7217, +2016-05-21 21:30:00,,,31.8212 +2016-05-21 21:33:45,3144.0,-10.7217, +2016-05-21 21:45:00,,,31.8784 +2016-05-21 21:48:41,3143.0,-10.7217, +2016-05-21 22:00:00,,,31.8784 +2016-05-21 22:03:37,3143.0,-10.7207, +2016-05-21 22:15:00,,,31.9386 +2016-05-21 22:18:33,3142.0,-10.7217, +2016-05-21 22:30:00,,,0.2673 +2016-05-21 22:33:29,3138.0,-10.7207, +2016-05-21 22:45:00,,,0.1163 +2016-05-21 22:48:24,3138.0,-11.0899, +2016-05-21 23:00:00,,,7.4266 +2016-05-21 23:03:20,3138.0,-10.7207, +2016-05-21 23:15:00,,,4.6462 +2016-05-21 23:18:16,3137.0,-10.7207, +2016-05-21 23:30:00,,,-0.3133 +2016-05-21 23:33:11,3136.0,-11.1536, +2016-05-21 23:45:00,,,24.9911 +2016-05-21 23:48:07,3136.0,-10.751, +2016-05-22 00:00:00,,,-0.6347 +2016-05-22 00:03:03,3136.0,-11.0899, +2016-05-22 00:15:00,,,-0.2919 +2016-05-22 00:17:59,3135.0,-10.751, +2016-05-22 00:30:00,,,-0.3776 +2016-05-22 00:32:54,3135.0,-10.752, +2016-05-22 00:45:00,,,7.7726 +2016-05-22 00:47:50,3135.0,-10.751, +2016-05-22 01:00:00,,,-0.1631 +2016-05-22 01:02:49,3135.0,-10.751, +2016-05-22 01:15:00,,,-0.4204 +2016-05-22 01:17:44,3134.0,-10.751, +2016-05-22 01:30:00,,,-0.5916 +2016-05-22 01:32:40,3133.0,-10.751, +2016-05-22 01:45:00,,,-0.613 +2016-05-22 01:47:35,3133.0,-10.751, +2016-05-22 02:00:00,,,-0.677 +2016-05-22 02:02:31,3133.0,-10.751, +2016-05-22 02:15:00,,,-0.6984 +2016-05-22 02:17:26,3132.0,-10.751, +2016-05-22 02:30:00,,,-4.5879 +2016-05-22 02:32:22,3132.0,-10.751, +2016-05-22 02:45:00,,,-4.6976 +2016-05-22 02:47:18,3131.0,-10.751, +2016-05-22 03:00:00,,,-4.6775 +2016-05-22 03:02:13,3131.0,-10.751, +2016-05-22 03:15:00,,,-4.6356 +2016-05-22 03:17:09,3130.0,-10.751, +2016-05-22 03:30:00,,,-4.7425 +2016-05-22 03:32:05,3130.0,-11.0899, +2016-05-22 03:45:00,,,-4.6796 +2016-05-22 03:47:00,3129.0,-11.0909, +2016-05-22 04:00:00,,,-4.8513 +2016-05-22 04:01:56,3128.0,-11.1222, +2016-05-22 04:15:00,,,-4.5735 +2016-05-22 04:16:52,3128.0,-11.0889, +2016-05-22 04:30:00,,,-4.9379 +2016-05-22 04:31:47,3128.0,-11.1212, +2016-05-22 04:45:00,,,-4.5735 +2016-05-22 04:46:43,3127.0,-11.0899, +2016-05-22 05:00:00,,,-4.5952 +2016-05-22 05:01:38,3127.0,-11.0899, +2016-05-22 05:15:00,,,-4.6166 +2016-05-22 05:16:34,3126.0,-11.0899, +2016-05-22 05:30:00,,,-4.6384 +2016-05-22 05:31:29,3125.0,-11.0899, +2016-05-22 05:45:00,,,-4.638 +2016-05-22 05:46:25,3126.0,-11.2176, +2016-05-22 06:00:00,,,-4.9169 +2016-05-22 06:01:20,3126.0,-11.0899, +2016-05-22 06:15:00,,,-4.874 +2016-05-22 06:16:16,3125.0,-11.0899, +2016-05-22 06:30:00,,,-4.8745 +2016-05-22 06:31:11,3125.0,-11.0899, +2016-05-22 06:45:00,,,-4.9384 +2016-05-22 06:46:07,3125.0,-11.0899, +2016-05-22 07:00:00,,,-4.703 +2016-05-22 07:01:02,3125.0,-11.0899, +2016-05-22 07:15:00,,,-4.9174 +2016-05-22 07:15:58,3126.0,-11.0909, +2016-05-22 07:30:00,,,-4.9817 +2016-05-22 07:30:53,3127.0,-11.0909, +2016-05-22 07:45:00,,,-4.8093 +2016-05-22 07:45:49,3127.0,-11.0597, +2016-05-22 08:00:00,,,-4.7677 +2016-05-22 08:00:44,3128.0,-11.0597, +2016-05-22 08:15:00,,,-4.6816 +2016-05-22 08:15:40,3129.0,-11.0276, +2016-05-22 08:30:00,,,-4.703 +2016-05-22 08:30:36,3130.0,-11.0276, +2016-05-22 08:45:00,,,-4.7026 +2016-05-22 08:45:32,3132.0,-10.9965, +2016-05-22 09:00:00,,,-4.8959 +2016-05-22 09:00:28,3134.0,-10.9636, +2016-05-22 09:15:00,,,-5.0242 +2016-05-22 09:15:24,3135.0,-10.6282, +2016-05-22 09:30:00,,,-5.0444 +2016-05-22 09:30:19,3136.0,-10.6282, +2016-05-22 09:45:00,,,-5.2384 +2016-05-22 09:45:15,3138.0,-10.5982, +2016-05-22 10:00:00,,,-5.1939 +2016-05-22 10:00:11,3141.0,-10.5982, +2016-05-22 10:15:00,,,-1.8506 +2016-05-22 10:15:07,3143.0,-10.5682, +2016-05-22 10:30:00,,,-1.7653 +2016-05-22 10:30:03,3145.0,-10.9, +2016-05-22 10:44:59,3147.0,-10.5682, +2016-05-22 10:45:00,,,-1.6372 +2016-05-22 10:59:55,3150.0,-10.8416, +2016-05-22 11:00:00,,,-1.6586 +2016-05-22 11:14:52,3151.0,-10.8406, +2016-05-22 11:15:00,,,-1.6586 +2016-05-22 11:29:48,3153.0,-10.8416, +2016-05-22 11:30:00,,,-1.6159 +2016-05-22 11:44:44,3156.0,-10.81, +2016-05-22 11:45:00,,,-1.6159 +2016-05-22 11:59:40,3158.0,-10.81, +2016-05-22 12:00:00,,,-1.5947 +2016-05-22 12:14:36,3160.0,-10.811, +2016-05-22 12:15:00,,,-1.5947 +2016-05-22 12:29:33,3162.0,-10.811, +2016-05-22 12:30:00,,,-1.5734 +2016-05-22 12:44:29,3164.0,-10.7805, +2016-05-22 12:45:00,,,3.7504 +2016-05-22 12:59:25,3167.0,-10.7805, +2016-05-22 13:00:00,,,5.1779 +2016-05-22 13:14:21,3168.0,-10.7491, +2016-05-22 13:15:00,,,-0.9972 +2016-05-22 13:29:25,3171.0,-10.7491, +2016-05-22 13:30:00,,,-0.5893 +2016-05-22 13:44:22,3174.0,-10.449000000000002, +2016-05-22 13:45:00,,,25.7661 +2016-05-22 13:59:18,3174.0,-10.449000000000002, +2016-05-22 14:00:00,,,28.0867 +2016-05-22 14:14:14,3176.0,-10.449000000000002, +2016-05-22 14:15:00,,,29.1886 +2016-05-22 14:29:11,3176.0,-10.449000000000002, +2016-05-22 14:30:00,,,29.734 +2016-05-22 14:44:07,3177.0,-10.4499, +2016-05-22 14:45:00,,,30.1692 +2016-05-22 14:59:04,3178.0,-10.449000000000002, +2016-05-22 15:00:00,,,30.445 +2016-05-22 15:14:00,3179.0,-10.811, +2016-05-22 15:15:00,,,30.614 +2016-05-22 15:28:57,3180.0,-10.4499, +2016-05-22 15:30:00,,,30.7841 +2016-05-22 15:43:53,3181.0,-10.8416, +2016-05-22 15:45:00,,,30.9026 +2016-05-22 15:58:50,3181.0,-10.7491, +2016-05-22 16:00:00,,,30.9579 +2016-05-22 16:13:47,3181.0,-10.7501, +2016-05-22 16:15:00,,,31.0717 +2016-05-22 16:28:43,3181.0,-10.7805, +2016-05-22 16:30:00,,,31.1329 +2016-05-22 16:43:40,3181.0,-10.812, +2016-05-22 16:45:00,,,31.1329 +2016-05-22 16:58:36,3181.0,-10.4194, +2016-05-22 17:00:00,,,31.2473 +2016-05-22 17:13:33,3181.0,-10.812, +2016-05-22 17:15:00,,,31.2501 +2016-05-22 17:28:29,3181.0,-10.7501, +2016-05-22 17:30:00,,,31.2529 +2016-05-22 17:43:25,3181.0,-10.7501, +2016-05-22 17:45:00,,,31.2501 +2016-05-22 17:58:22,3179.0,-10.7805, +2016-05-22 18:00:00,,,31.3089 +2016-05-22 18:13:18,3178.0,-10.7805, +2016-05-22 18:15:00,,,31.3089 +2016-05-22 18:28:15,3177.0,-10.7805, +2016-05-22 18:30:00,,,31.3678 +2016-05-22 18:43:11,3177.0,-10.7805, +2016-05-22 18:45:00,,,31.3678 +2016-05-22 18:58:08,3176.0,-10.812, +2016-05-22 19:00:00,,,31.3678 +2016-05-22 19:13:04,3174.0,-10.812, +2016-05-22 19:15:00,,,31.2556 +2016-05-22 19:28:01,3174.0,-10.8425, +2016-05-22 19:30:00,,,31.3706 +2016-05-22 19:42:57,3172.0,-10.8416, +2016-05-22 19:45:00,,,31.3734 +2016-05-22 19:57:53,3170.0,-10.8425, +2016-05-22 20:00:00,,,31.3706 +2016-05-22 20:12:49,3169.0,-10.8425, +2016-05-22 20:15:00,,,9.2209 +2016-05-22 20:27:46,3167.0,-10.8425, +2016-05-22 20:30:00,,,0.181 +2016-05-22 20:42:42,3165.0,-10.8732, +2016-05-22 20:45:00,,,-0.0773 +2016-05-22 20:57:38,3163.0,-10.8732, +2016-05-22 21:00:00,,,-0.2276 +2016-05-22 21:12:34,3162.0,-10.8732, +2016-05-22 21:15:00,,,-0.3134 +2016-05-22 21:27:31,3160.0,-10.9048, +2016-05-22 21:30:00,,,-0.4633 +2016-05-22 21:42:27,3159.0,-10.9039, +2016-05-22 21:45:00,,,-0.5062 +2016-05-22 21:57:23,3156.0,-10.9039, +2016-05-22 22:00:00,,,-0.5918 +2016-05-22 22:12:19,3156.0,-10.9357, +2016-05-22 22:15:00,,,3.5258 +2016-05-22 22:27:15,3154.0,-10.9039, +2016-05-22 22:30:00,,,-0.4204 +2016-05-22 22:42:11,3154.0,-10.6001, +2016-05-22 22:45:00,,,-0.3777 +2016-05-22 22:57:07,3152.0,-10.9665, +2016-05-22 23:00:00,,,-0.6132 +2016-05-22 23:12:03,3151.0,-10.632, +2016-05-22 23:15:00,,,-0.7629 +2016-05-22 23:26:58,3150.0,-10.9347, +2016-05-22 23:30:00,,,-0.8057 +2016-05-22 23:41:54,3150.0,-10.9665, +2016-05-22 23:45:00,,,-4.8029 +2016-05-22 23:56:50,3148.0,-10.9656, +2016-05-23 00:00:00,,,-4.9336 +2016-05-23 00:15:00,,, +2016-05-23 00:30:00,,, +2016-05-23 00:45:00,,, +2016-05-23 01:00:00,,, +2016-05-23 01:11:29,3138.0,-10.9665, +2016-05-23 01:15:00,,,-4.467 +2016-05-23 01:26:25,3138.0,-10.9665, +2016-05-23 01:30:00,,,-4.5315 +2016-05-23 01:41:21,3137.0,-10.9985, +2016-05-23 01:45:00,,,-4.8955 +2016-05-23 01:56:17,3136.0,-10.9975, +2016-05-23 02:00:00,,,-4.9165 +2016-05-23 02:11:13,3136.0,-10.9975, +2016-05-23 02:15:00,,,-4.5747 +2016-05-23 02:26:08,3135.0,-10.9965, +2016-05-23 02:30:00,,,-4.5965 +2016-05-23 02:41:04,3134.0,-11.0286, +2016-05-23 02:45:00,,,-4.7883 +2016-05-23 02:56:00,3134.0,-11.0286, +2016-05-23 03:00:00,,,-4.5747 +2016-05-23 03:10:55,3132.0,-10.9694, +2016-05-23 03:15:00,,,-4.6829 +2016-05-23 03:25:50,3131.0,-11.0286, +2016-05-23 03:30:00,,,-4.6623 +2016-05-23 03:40:46,3131.0,-11.0305, +2016-05-23 03:45:00,,,-4.6397 +2016-05-23 03:55:53,3130.0,-11.0286, +2016-05-23 04:00:00,,,-4.6405 +2016-05-23 04:11:27,3130.0,-11.0276, +2016-05-23 04:15:00,,,-4.5965 +2016-05-23 04:26:22,3130.0,-11.0276, +2016-05-23 04:30:00,,,-4.5537 +2016-05-23 04:41:18,3130.0,-10.6904, +2016-05-23 04:45:00,,,-4.9384 +2016-05-23 04:56:13,3130.0,-11.0597, +2016-05-23 05:00:00,,,-5.1107 +2016-05-23 05:11:09,3129.0,-11.1536, +2016-05-23 05:15:00,,,-4.9603 +2016-05-23 05:26:04,3128.0,-11.0587, +2016-05-23 05:30:00,,,-4.8749 +2016-05-23 05:41:00,3128.0,-11.0286, +2016-05-23 05:45:00,,,-4.8757 +2016-05-23 05:55:56,3128.0,-11.0276, +2016-05-23 06:00:00,,,-4.8976 +2016-05-23 06:10:51,3128.0,-11.0286, +2016-05-23 06:15:00,,,-4.7265 +2016-05-23 06:25:47,3128.0,-11.0286, +2016-05-23 06:30:00,,,-4.7055 +2016-05-23 06:40:42,3128.0,-11.0276, +2016-05-23 06:45:00,,,-4.7274 +2016-05-23 06:55:38,3128.0,-11.0286, +2016-05-23 07:00:00,,,-4.7488 +2016-05-23 07:10:34,3128.0,-11.0286, +2016-05-23 07:15:00,,,-4.7274 +2016-05-23 07:25:29,3128.0,-11.0286, +2016-05-23 07:30:00,,,-4.7274 +2016-05-23 07:40:25,3128.0,-10.9965, +2016-05-23 07:45:00,,,-4.7702 +2016-05-23 07:55:20,3128.0,-10.9965, +2016-05-23 08:00:00,,,-4.7278 +2016-05-23 08:10:16,3128.0,-11.0276, +2016-05-23 08:15:00,,,-4.7917 +2016-05-23 08:25:12,3129.0,-11.0286, +2016-05-23 08:30:00,,,-5.0278 +2016-05-23 08:40:07,3129.0,-10.9646, +2016-05-23 08:45:00,,,-5.0059 +2016-05-23 08:55:03,3130.0,-10.9965, +2016-05-23 09:00:00,,,-4.9195 +2016-05-23 09:09:58,3130.0,-10.9975, +2016-05-23 09:15:00,,,-4.9195 +2016-05-23 09:24:54,3131.0,-10.9646, +2016-05-23 09:30:00,,,-4.9406 +2016-05-23 09:39:50,3132.0,-10.9656, +2016-05-23 09:45:00,,,-5.005 +2016-05-23 09:54:45,3132.0,-10.9646, +2016-05-23 10:00:00,,,-4.962 +2016-05-23 10:09:41,3132.0,-11.0305, +2016-05-23 10:15:00,,,-4.7261 +2016-05-23 10:24:37,3133.0,-10.9646, +2016-05-23 10:30:00,,,-4.6598 +2016-05-23 10:39:33,3135.0,-10.9347, +2016-05-23 10:45:00,,,-4.6841 +2016-05-23 10:54:28,3136.0,-10.9347, +2016-05-23 11:00:00,,,-5.0054 +2016-05-23 11:09:24,3136.0,-10.9029, +2016-05-23 11:15:00,,,-4.92 +2016-05-23 11:24:20,3136.0,-10.902, +2016-05-23 11:30:00,,,-4.8976 +2016-05-23 11:39:16,3137.0,-10.9347, +2016-05-23 11:45:00,,,-4.962 +2016-05-23 11:54:12,3138.0,-10.9029, +2016-05-23 12:00:00,,,-4.9195 +2016-05-23 12:09:08,3138.0,-10.9337, +2016-05-23 12:15:00,,,-4.9844 +2016-05-23 12:24:03,3138.0,-10.9675, +2016-05-23 12:30:00,,,-5.1129 +2016-05-23 12:38:59,3139.0,-11.0577, +2016-05-23 12:45:00,,,-5.5463 +2016-05-23 12:53:55,3141.0,-10.9029, +2016-05-23 13:00:00,,,-4.9187 +2016-05-23 13:08:51,3141.0,-10.9347, +2016-05-23 13:15:00,,,-5.1770000000000005 +2016-05-23 13:23:46,3141.0,-10.9029, +2016-05-23 13:30:00,,,-4.9191 +2016-05-23 13:38:42,3142.0,-10.9029, +2016-05-23 13:45:00,,,-5.0265 +2016-05-23 13:53:38,3142.0,-11.0325, +2016-05-23 14:00:00,,,-4.9401 +2016-05-23 14:08:34,3143.0,-10.9347, +2016-05-23 14:15:00,,,-5.134 +2016-05-23 14:23:30,3143.0,-10.9048, +2016-05-23 14:30:00,,,-5.069 +2016-05-23 14:38:25,3143.0,-10.9048, +2016-05-23 14:45:00,,,-5.0914 +2016-05-23 14:53:21,3144.0,-10.8406, +2016-05-23 15:00:00,,,-5.3931 +2016-05-23 15:08:17,3145.0,-10.9366, +2016-05-23 15:15:00,,,-5.3499 +2016-05-23 15:23:13,3145.0,-10.8454, +2016-05-23 15:30:00,,,-5.091 +2016-05-23 15:38:09,3145.0,-10.8406, +2016-05-23 15:45:00,,,-5.1147 +2016-05-23 15:53:05,3146.0,-10.9357, +2016-05-23 16:00:00,,,-5.3499 +2016-05-23 16:08:07,3146.0,-10.9039, +2016-05-23 16:15:00,,,-2.0226 +2016-05-23 16:23:03,3145.0,-10.9039, +2016-05-23 16:30:00,,,-1.916 +2016-05-23 16:37:59,3146.0,-10.9039, +2016-05-23 16:45:00,,,-2.3833 +2016-05-23 16:52:55,3146.0,-10.9029, +2016-05-23 17:00:00,,,-1.8521 +2016-05-23 17:07:51,3146.0,-10.9656, +2016-05-23 17:15:00,,,-4.811 +2016-05-23 17:22:47,3146.0,-10.9328, +2016-05-23 17:30:00,,,4.642 +2016-05-23 17:37:43,3146.0,-10.9347, +2016-05-23 17:45:00,,,-6.3712 +2016-05-23 17:52:39,3148.0,-10.8722, +2016-05-23 18:00:00,,,-2.0224 +2016-05-23 18:07:35,3147.0,-10.4787, +2016-05-23 18:15:00,,,-4.482 +2016-05-23 18:22:31,3152.0,-10.6602, +2016-05-23 18:30:00,,,57.4379 +2016-05-23 18:37:27,3150.0,-10.6904, +2016-05-23 18:45:00,,,57.7047 +2016-05-23 18:52:23,3150.0,-10.6593, +2016-05-23 19:00:00,,,56.4839 +2016-05-23 19:07:19,3148.0,-10.6904, +2016-05-23 19:15:00,,,56.3528 +2016-05-23 19:22:14,3147.0,-10.6904, +2016-05-23 19:30:00,,,56.3528 +2016-05-23 19:37:10,3146.0,-10.6904, +2016-05-23 19:45:00,,,55.9673 +2016-05-23 19:52:06,3145.0,-10.7207, +2016-05-23 20:00:00,,,55.176 +2016-05-23 20:07:02,3144.0,-10.7198, +2016-05-23 20:15:00,,,55.0647 +2016-05-23 20:21:58,3143.0,-10.751, +2016-05-23 20:30:00,,,29.673 +2016-05-23 20:37:01,3142.0,-10.6904, +2016-05-23 20:45:00,,,-3.3454 +2016-05-23 20:51:57,3140.0,-10.9646, +2016-05-23 21:00:00,,,17.6128 +2016-05-23 21:06:52,3137.0,-11.0276, +2016-05-23 21:15:00,,,9.2703 +2016-05-23 21:21:48,3136.0,-10.9646, +2016-05-23 21:30:00,,,-3.069 +2016-05-23 21:36:44,3136.0,-10.9347, +2016-05-23 21:45:00,,,6.09 +2016-05-23 21:51:40,3135.0,-10.9656, +2016-05-23 22:00:00,,,18.6657 +2016-05-23 22:06:36,3135.0,-11.0286, +2016-05-23 22:15:00,,,-3.0706 +2016-05-23 22:21:31,3135.0,-11.0237, +2016-05-23 22:30:00,,,-4.563 +2016-05-23 22:36:27,3136.0,-10.9646, +2016-05-23 22:45:00,,, +2016-05-23 22:51:23,3143.0,-10.4203, +2016-05-23 23:00:00,,,62.3178 +2016-05-23 23:06:18,3141.0,-10.751, +2016-05-23 23:15:00,,,24.9379 +2016-05-23 23:21:14,3155.0,-10.6311, +2016-05-23 23:30:00,,,25.5297 +2016-05-23 23:36:09,3155.0,-10.6612, +2016-05-23 23:45:00,,,24.6654 +2016-05-23 23:51:05,3148.0,-10.6914, +2016-05-24 00:00:00,,,25.1188 +2016-05-24 00:06:00,3149.0,-10.6914, +2016-05-24 00:15:00,,,22.4914 +2016-05-24 00:20:56,3139.0,-10.8139, +2016-05-24 00:30:00,,,25.2108 +2016-05-24 00:35:51,3147.0,-10.6914, +2016-05-24 00:45:00,,,23.8188 +2016-05-24 00:50:47,3143.0,-10.7824, +2016-05-24 01:00:00,,,25.491 +2016-05-24 01:05:42,3148.0,-10.5673, +2016-05-24 01:15:00,,,25.3054 +2016-05-24 01:20:38,3146.0,-10.7226, +2016-05-24 01:30:00,,,24.8445 +2016-05-24 01:35:33,3144.0,-10.7529, +2016-05-24 01:45:00,,,24.4371 +2016-05-24 01:50:29,3144.0,-10.752, +2016-05-24 02:00:00,,,25.1121 +2016-05-24 02:05:24,3144.0,-10.752, +2016-05-24 02:15:00,,,25.4366 +2016-05-24 02:20:19,3145.0,-10.7207, +2016-05-24 02:30:00,,,25.2469 +2016-05-24 02:35:15,3144.0,-10.752, +2016-05-24 02:45:00,,,25.016 +2016-05-24 02:50:10,3143.0,-10.751, +2016-05-24 03:00:00,,,25.9929 +2016-05-24 03:05:06,3145.0,-10.7217, +2016-05-24 03:15:00,,,25.3823 +2016-05-24 03:20:01,3143.0,-10.751, +2016-05-24 03:30:00,,,25.4275 +2016-05-24 03:34:56,3143.0,-10.751, +2016-05-24 03:45:00,,,24.4176 +2016-05-24 03:49:59,3140.0,-10.7815, +2016-05-24 04:00:00,,,24.4198 +2016-05-24 04:04:55,3139.0,-10.7815, +2016-05-24 04:15:00,,,25.2852 +2016-05-24 04:19:50,3143.0,-10.751, +2016-05-24 04:30:00,,,24.6413 +2016-05-24 04:34:46,3140.0,-10.8129, +2016-05-24 04:45:00,,,25.0965 +2016-05-24 04:49:41,3141.0,-10.7824, +2016-05-24 05:00:00,,,26.0786 +2016-05-24 05:04:37,3143.0,-10.7207, +2016-05-24 05:15:00,,,26.4664 +2016-05-24 05:19:32,3145.0,-10.6895, +2016-05-24 05:30:00,,,26.2648 +2016-05-24 05:34:27,3144.0,-10.8444, +2016-05-24 05:45:00,,,25.1862 +2016-05-24 05:49:23,3140.0,-10.7815, +2016-05-24 06:00:00,,,26.0786 +2016-05-24 06:04:18,3143.0,-10.751, +2016-05-24 06:15:00,,,26.41 +2016-05-24 06:19:13,3143.0,-10.7198, +2016-05-24 06:30:00,,,26.3116 +2016-05-24 06:34:09,3142.0,-10.751, +2016-05-24 06:45:00,,,25.9768 +2016-05-24 06:49:04,3141.0,-10.7815, +2016-05-24 07:00:00,,,26.3116 +2016-05-24 07:03:59,3142.0,-10.7501, +2016-05-24 07:15:00,,,26.2158 +2016-05-24 07:18:54,3141.0,-10.7815, +2016-05-24 07:30:00,,,26.6457 +2016-05-24 07:33:49,3143.0,-10.751, +2016-05-24 07:45:00,,,26.3701 +2016-05-24 07:48:45,3143.0,-10.751, +2016-05-24 08:00:00,,,25.7856 +2016-05-24 08:03:40,3138.0,-10.8435, +2016-05-24 08:15:00,,,25.8799 +2016-05-24 08:18:35,3138.0,-10.812, +2016-05-24 08:30:00,,,25.6939 +2016-05-24 08:33:37,3138.0,-10.812, +2016-05-24 08:45:00,,,26.3092 +2016-05-24 08:48:33,3139.0,-10.8129, +2016-05-24 09:00:00,,,24.5929 +2016-05-24 09:03:28,3135.0,-10.8425, +2016-05-24 09:15:00,,,24.8203 +2016-05-24 09:18:23,3135.0,-10.8425, +2016-05-24 09:30:00,,,26.1158 +2016-05-24 09:33:19,3138.0,-10.812, +2016-05-24 09:45:00,,,26.0694 +2016-05-24 09:48:14,3138.0,-10.812, +2016-05-24 10:00:00,,,27.0008 +2016-05-24 10:03:09,3143.0,-10.7207, +2016-05-24 10:15:00,,,26.9528 +2016-05-24 10:18:04,3142.0,-10.751, +2016-05-24 10:30:00,,,26.905 +2016-05-24 10:33:00,3143.0,-10.6895, +2016-05-24 10:45:00,,,26.9505 +2016-05-24 10:47:55,3140.0,-10.7501, +2016-05-24 11:00:00,,,26.9481 +2016-05-24 11:02:50,3140.0,-10.7501, +2016-05-24 11:15:00,,,26.8525 +2016-05-24 11:17:45,3139.0,-10.7805, +2016-05-24 11:30:00,,,27.0032 +2016-05-24 11:32:41,3143.0,-10.7198, +2016-05-24 11:45:00,,,27.1474 +2016-05-24 11:47:36,3142.0,-10.7198, +2016-05-24 12:00:00,,,26.6552 +2016-05-24 12:02:31,3138.0,-10.8454, +2016-05-24 12:15:00,,,25.7902 +2016-05-24 12:17:26,3136.0,-10.8416, +2016-05-24 12:30:00,,,27.1933 +2016-05-24 12:32:22,3140.0,-10.7188, +2016-05-24 12:45:00,,,26.8001 +2016-05-24 12:47:17,3138.0,-10.81, +2016-05-24 13:00:00,,,26.7977 +2016-05-24 13:02:12,3138.0,-10.8129, +2016-05-24 13:15:00,,,27.1933 +2016-05-24 13:17:08,3139.0,-10.7501, +2016-05-24 13:30:00,,,26.5064 +2016-05-24 13:32:03,3136.0,-10.811, +2016-05-24 13:45:00,,,26.9481 +2016-05-24 13:46:58,3138.0,-10.7805, +2016-05-24 14:00:00,,,26.504 +2016-05-24 14:01:53,3136.0,-10.8425, +2016-05-24 14:15:00,,,27.0944 +2016-05-24 14:16:48,3138.0,-10.7501, +2016-05-24 14:30:00,,,26.0253 +2016-05-24 14:31:44,3135.0,-10.8425, +2016-05-24 14:45:00,,,26.5512 +2016-05-24 14:46:39,3136.0,-10.812, +2016-05-24 15:00:00,,,26.8477 +2016-05-24 15:01:34,3137.0,-10.812, +2016-05-24 15:15:00,,,26.8477 +2016-05-24 15:16:29,3137.0,-10.7491, +2016-05-24 15:30:00,,,26.3116 +2016-05-24 15:31:25,3135.0,-10.8425, +2016-05-24 15:45:00,,,24.2261 +2016-05-24 15:46:20,3129.0,-10.9039, +2016-05-24 16:00:00,,,24.6788 +2016-05-24 16:01:15,3130.0,-10.8722, +2016-05-24 16:15:00,,,24.0467 +2016-05-24 16:16:10,3129.0,-10.9039, +2016-05-24 16:30:00,,,24.2261 +2016-05-24 16:31:05,3129.0,-10.9039, +2016-05-24 16:45:00,,,23.9155 +2016-05-24 16:46:00,3128.0,-10.9039, +2016-05-24 17:00:00,,,75.4867 +2016-05-24 17:00:55,3127.0,-10.9039, +2016-05-24 17:15:00,,,71.5791 +2016-05-24 17:15:50,3127.0,-10.9039, +2016-05-24 17:30:00,,,24.765 +2016-05-24 17:30:46,3131.0,-10.8732, +2016-05-24 17:45:00,,,70.5599 +2016-05-24 17:45:41,3125.0,-10.9029, +2016-05-24 18:00:00,,,23.9155 +2016-05-24 18:00:36,3128.0,-10.9039, +2016-05-24 18:15:00,,,73.0697 +2016-05-24 18:15:31,3127.0,-10.9039, +2016-05-24 18:30:00,,,72.8383 +2016-05-24 18:30:27,3127.0,-10.9039, +2016-05-24 18:45:00,,,74.5827 +2016-05-24 18:45:22,3127.0,-10.9039, +2016-05-24 19:00:00,,,73.27 +2016-05-24 19:00:17,3127.0,-10.9039, +2016-05-24 19:15:00,,,24.9025 +2016-05-24 19:15:13,3131.0,-10.8732, +2016-05-24 19:30:00,,,74.7851 +2016-05-24 19:30:08,3127.0,-10.8722, +2016-05-24 19:45:00,,,71.5918 +2016-05-24 19:45:03,3127.0,-10.9039, +2016-05-24 19:59:58,3128.0,-10.8732, +2016-05-24 20:00:00,,,76.8952 +2016-05-24 20:14:53,3127.0,-10.9048, +2016-05-24 20:15:00,,,73.27 +2016-05-24 20:29:49,3127.0,-10.9048, +2016-05-24 20:30:00,,,74.1355 +2016-05-24 20:44:44,3123.0,-10.9039, +2016-05-24 20:45:00,,,66.2128 +2016-05-24 20:59:39,3123.0,-10.9039, +2016-05-24 21:00:00,,,66.9282 +2016-05-24 21:14:34,3127.0,-10.9048, +2016-05-24 21:15:00,,,75.9572 +2016-05-24 21:29:30,3123.0,-10.9039, +2016-05-24 21:30:00,,,68.7984 +2016-05-24 21:44:25,3123.0,-10.9039, +2016-05-24 21:45:00,,,67.848 +2016-05-24 21:59:20,3123.0,-10.9039, +2016-05-24 22:00:00,,,67.1079 +2016-05-24 22:14:15,3127.0,-10.9048, +2016-05-24 22:15:00,,,75.9572 +2016-05-24 22:29:11,3123.0,-10.9039, +2016-05-24 22:30:00,,,67.2945 +2016-05-24 22:44:06,3123.0,-10.9029, +2016-05-24 22:45:00,,,69.5686 +2016-05-24 22:59:01,3123.0,-10.9357, +2016-05-24 23:00:00,,,68.5978 +2016-05-24 23:13:56,3123.0,-10.9039, +2016-05-24 23:15:00,,,67.848 +2016-05-24 23:28:51,3123.0,-10.9357, +2016-05-24 23:30:00,,,68.0506 +2016-05-24 23:43:46,3124.0,-10.9039, +2016-05-24 23:45:00,,,74.1619 +2016-05-24 23:58:41,3122.0,-10.9357, +2016-05-25 00:00:00,,,66.2128 +2016-05-25 00:13:43,3122.0,-10.9357, +2016-05-25 00:15:00,,,66.0318 +2016-05-25 00:28:38,3122.0,-10.9357, +2016-05-25 00:30:00,,,65.8517 +2016-05-25 00:43:34,3123.0,-10.9039, +2016-05-25 00:45:00,,,72.8318 +2016-05-25 00:58:29,3122.0,-10.9357, +2016-05-25 01:00:00,,,64.8303 +2016-05-25 01:13:24,3121.0,-10.9347, +2016-05-25 01:15:00,,,64.4889 +2016-05-25 01:28:19,3121.0,-10.9347, +2016-05-25 01:30:00,,,65.3343 +2016-05-25 01:43:14,3120.0,-10.9347, +2016-05-25 01:45:00,,,63.3113 +2016-05-25 01:58:09,3120.0,-10.9347, +2016-05-25 02:00:00,,,63.4731 +2016-05-25 02:13:04,3121.0,-10.9347, +2016-05-25 02:15:00,,,64.1394 +2016-05-25 02:27:59,3121.0,-10.9347, +2016-05-25 02:30:00,,,66.2128 +2016-05-25 02:42:54,3121.0,-10.9347, +2016-05-25 02:45:00,,,65.5001 +2016-05-25 02:57:49,3121.0,-10.9347, +2016-05-25 03:00:00,,,66.3888 +2016-05-25 03:12:44,3121.0,-10.9347, +2016-05-25 03:15:00,,,66.2128 +2016-05-25 03:27:39,3121.0,-10.9347, +2016-05-25 03:30:00,,,66.2128 +2016-05-25 03:42:34,3121.0,-10.9347, +2016-05-25 03:45:00,,,66.0259 +2016-05-25 03:57:29,3121.0,-10.9665, +2016-05-25 04:00:00,,,67.848 +2016-05-25 04:12:24,3121.0,-10.9347, +2016-05-25 04:15:00,,,68.0325 +2016-05-25 04:27:19,3121.0,-10.9347, +2016-05-25 04:30:00,,,68.0385 +2016-05-25 04:42:14,3122.0,-10.9357, +2016-05-25 04:45:00,,,70.3619 +2016-05-25 04:57:09,3121.0,-10.8091, +2016-05-25 05:00:00,,,69.7622 +2016-05-25 05:12:04,3121.0,-10.9337, +2016-05-25 05:15:00,,,69.9569 +2016-05-25 05:26:59,3122.0,-10.9347, +2016-05-25 05:30:00,,,70.5599 +2016-05-25 05:41:54,3121.0,-10.9347, +2016-05-25 05:45:00,,,69.7684 +2016-05-25 05:56:49,3121.0,-10.9347, +2016-05-25 06:00:00,,,68.994 +2016-05-25 06:11:44,3121.0,-10.9665, +2016-05-25 06:15:00,,,69.9569 +2016-05-25 06:26:38,3121.0,-10.9665, +2016-05-25 06:30:00,,,69.9631 +2016-05-25 06:41:33,3122.0,-10.9665, +2016-05-25 06:45:00,,,71.3628 +2016-05-25 06:56:28,3122.0,-10.9347, +2016-05-25 07:00:00,,,71.1604 +2016-05-25 07:11:23,3122.0,-10.9347, +2016-05-25 07:15:00,,,72.2033 +2016-05-25 07:26:18,3122.0,-10.9347, +2016-05-25 07:30:00,,,72.2033 +2016-05-25 07:41:13,3121.0,-10.9347, +2016-05-25 07:45:00,,,72.2033 +2016-05-25 07:56:08,3121.0,-10.9347, +2016-05-25 08:00:00,,,71.7838 +2016-05-25 08:11:03,3121.0,-10.9347, +2016-05-25 08:15:00,,,71.1667 +2016-05-25 08:25:58,3121.0,-10.9347, +2016-05-25 08:30:00,,,70.3619 +2016-05-25 08:40:53,3121.0,-10.9665, +2016-05-25 08:45:00,,,71.5791 +2016-05-25 08:55:48,3122.0,-10.9347, +2016-05-25 09:00:00,,,76.1878 +2016-05-25 09:10:43,3121.0,-10.9347, +2016-05-25 09:15:00,,,70.7589 +2016-05-25 09:25:38,3121.0,-10.9347, +2016-05-25 09:30:00,,,72.2033 +2016-05-25 09:40:33,3122.0,-10.9347, +2016-05-25 09:45:00,,,71.5791 +2016-05-25 09:55:28,3122.0,-10.9039, +2016-05-25 10:00:00,,,73.27 +2016-05-25 10:10:23,3122.0,-10.9347, +2016-05-25 10:15:00,,,73.2635 +2016-05-25 10:25:18,3123.0,-10.9357, +2016-05-25 10:30:00,,,23.8256 +2016-05-25 10:40:13,3123.0,-10.9347, +2016-05-25 10:45:00,,,23.736 +2016-05-25 10:55:08,3123.0,-10.9357, +2016-05-25 11:00:00,,,23.8684 +2016-05-25 11:10:03,3124.0,-10.9039, +2016-05-25 11:15:00,,,23.9585 +2016-05-25 11:24:58,3125.0,-10.9039, +2016-05-25 11:30:00,,,24.2197 +2016-05-25 11:39:53,3124.0,-10.9039, +2016-05-25 11:45:00,,,23.8642 +2016-05-25 11:54:49,3127.0,-10.9039, +2016-05-25 12:00:00,,,24.1785 +2016-05-25 12:09:44,3127.0,-10.9039, +2016-05-25 12:15:00,,,24.2631 +2016-05-25 12:24:39,3127.0,-10.9039, +2016-05-25 12:30:00,,,24.2674 +2016-05-25 12:39:34,3127.0,-10.9039, +2016-05-25 12:45:00,,,24.224 +2016-05-25 12:54:29,3127.0,-10.9039, +2016-05-25 13:00:00,,,24.0015 +2016-05-25 13:09:24,3128.0,-10.9048, +2016-05-25 13:15:00,,,24.0856 +2016-05-25 13:24:20,3128.0,-10.9048, +2016-05-25 13:30:00,,,24.2631 +2016-05-25 13:39:15,3129.0,-10.8732, +2016-05-25 13:45:00,,,24.2652 +2016-05-25 13:54:10,3130.0,-10.9048, +2016-05-25 14:00:00,,,24.3152 +2016-05-25 14:09:05,3131.0,-10.8732, +2016-05-25 14:15:00,,,24.4002 +2016-05-25 14:24:01,3132.0,-10.8732, +2016-05-25 14:30:00,,,24.4877 +2016-05-25 14:38:56,3133.0,-10.8416, +2016-05-25 14:45:00,,,24.4899 +2016-05-25 14:53:51,3134.0,-10.8732, +2016-05-25 15:00:00,,,24.4418 +2016-05-25 15:08:46,3135.0,-10.8416, +2016-05-25 15:15:00,,,24.7142 +2016-05-25 15:23:42,3136.0,-10.8416, +2016-05-25 15:30:00,,,24.7606 +2016-05-25 15:38:37,3136.0,-10.8732, +2016-05-25 15:45:00,,,24.5337 +2016-05-25 15:53:32,3136.0,-10.8416, +2016-05-25 16:00:00,,,24.7142 +2016-05-25 16:08:27,3136.0,-10.8416, +2016-05-25 16:15:00,,,24.4921 +2016-05-25 16:23:23,3136.0,-10.8732, +2016-05-25 16:30:00,,,24.4024 +2016-05-25 16:38:18,3136.0,-10.8732, +2016-05-25 16:45:00,,,24.4877 +2016-05-25 16:53:13,3135.0,-10.8722, +2016-05-25 17:00:00,,,24.0856 +2016-05-25 17:08:08,3135.0,-10.8416, +2016-05-25 17:15:00,,,24.2197 +2016-05-25 17:23:03,3134.0,-10.8732, +2016-05-25 17:30:00,,,23.8663 +2016-05-25 17:37:58,3132.0,-10.9048, +2016-05-25 17:45:00,,,74.1224 +2016-05-25 17:52:53,3132.0,-10.8732, +2016-05-25 18:00:00,,,74.7984 +2016-05-25 18:07:49,3132.0,-10.8732, +2016-05-25 18:15:00,,,74.5695 +2016-05-25 18:22:44,3131.0,-10.8722, +2016-05-25 18:30:00,,,72.6017 +2016-05-25 18:37:39,3132.0,-10.9039, +2016-05-25 18:45:00,,,74.342 +2016-05-25 18:52:34,3132.0,-10.8732, +2016-05-25 19:00:00,,,75.48 +2016-05-25 19:07:29,3130.0,-10.9039, +2016-05-25 19:15:00,,,73.2505 +2016-05-25 19:22:24,3130.0,-10.8722, +2016-05-25 19:30:00,,,72.3923 +2016-05-25 19:37:19,3129.0,-10.9039, +2016-05-25 19:45:00,,,71.977 +2016-05-25 19:52:14,3129.0,-10.9039, +2016-05-25 20:00:00,,,71.56 +2016-05-25 20:07:10,3128.0,-10.9048, +2016-05-25 20:15:00,,,72.3923 +2016-05-25 20:22:05,3128.0,-10.9039, +2016-05-25 20:30:00,,,73.0373 +2016-05-25 20:37:00,3128.0,-10.9039, +2016-05-25 20:45:00,,,72.1776 +2016-05-25 20:51:55,3128.0,-10.9039, +2016-05-25 21:00:00,,,72.8512 +2016-05-25 21:06:50,3128.0,-10.8722, +2016-05-25 21:15:00,,,73.2505 +2016-05-25 21:21:45,3128.0,-10.9039, +2016-05-25 21:30:00,,,73.4714 +2016-05-25 21:36:40,3127.0,-10.9039, +2016-05-25 21:45:00,,,73.0373 +2016-05-25 21:51:36,3127.0,-10.9039, +2016-05-25 22:00:00,,,23.3005 +2016-05-25 22:06:31,3127.0,-10.9357, +2016-05-25 22:15:00,,,71.1478 +2016-05-25 22:21:26,3125.0,-10.9039, +2016-05-25 22:30:00,,,71.1478 +2016-05-25 22:36:21,3124.0,-10.9357, +2016-05-25 22:45:00,,,71.56 +2016-05-25 22:51:16,3124.0,-10.9029, +2016-05-25 23:00:00,,,68.0204 +2016-05-25 23:06:12,3123.0,-10.9347, +2016-05-25 23:15:00,,,69.9382 +2016-05-25 23:21:07,3123.0,-10.9347, +2016-05-25 23:30:00,,,70.7464 +2016-05-25 23:36:02,3123.0,-10.9357, +2016-05-25 23:45:00,,,70.5411 +2016-05-25 23:50:57,3123.0,-10.9029, +2016-05-26 00:00:00,,,69.5501 +2016-05-26 00:05:52,3123.0,-10.9029, +2016-05-26 00:15:00,,,67.1019 +2016-05-26 00:20:47,3122.0,-10.9665, +2016-05-26 00:30:00,,,67.2766 +2016-05-26 00:35:42,3122.0,-10.9029, +2016-05-26 00:45:00,,,66.377 +2016-05-26 00:50:37,3121.0,-10.9347, +2016-05-26 01:00:00,,,66.1893 +2016-05-26 01:05:32,3121.0,-10.9347, +2016-05-26 01:15:00,,,67.6465 +2016-05-26 01:20:27,3121.0,-10.9347, +2016-05-26 01:30:00,,,67.2706 +2016-05-26 01:35:22,3121.0,-10.9347, +2016-05-26 01:45:00,,,64.8016 +2016-05-26 01:50:17,3120.0,-10.9347, +2016-05-26 02:00:00,,,66.0142 +2016-05-26 02:05:12,3121.0,-10.9347, +2016-05-26 02:15:00,,,66.1952 +2016-05-26 02:20:07,3121.0,-10.9029, +2016-05-26 02:30:00,,,64.128 +2016-05-26 02:35:02,3120.0,-10.9347, +2016-05-26 02:45:00,,,63.7876 +2016-05-26 02:49:57,3118.0,-10.9675, +2016-05-26 03:00:00,,,63.4562 +2016-05-26 03:04:52,3118.0,-10.9347, +2016-05-26 03:15:00,,,63.4562 +2016-05-26 03:19:48,3118.0,-10.9347, +2016-05-26 03:30:00,,,62.8138 +2016-05-26 03:34:43,3118.0,-10.9347, +2016-05-26 03:45:00,,,63.7876 +2016-05-26 03:49:38,3118.0,-10.9347, +2016-05-26 04:00:00,,,62.6496 +2016-05-26 04:04:33,3117.0,-10.9347, +2016-05-26 04:15:00,,,62.6496 +2016-05-26 04:19:28,3117.0,-10.9347, +2016-05-26 04:30:00,,,62.1724 +2016-05-26 04:34:23,3117.0,-10.9347, +2016-05-26 04:45:00,,,60.4712 +2016-05-26 04:49:18,3115.0,-10.9347, +2016-05-26 05:00:00,,,61.2324 +2016-05-26 05:04:13,3115.0,-10.9347, +2016-05-26 05:15:00,,,62.3289 +2016-05-26 05:19:08,3116.0,-10.9347, +2016-05-26 05:30:00,,,61.6964 +2016-05-26 05:34:03,3115.0,-10.9347, +2016-05-26 05:45:00,,,61.081 +2016-05-26 05:48:58,3115.0,-10.9665, +2016-05-26 06:00:00,,,61.081 +2016-05-26 06:03:53,3115.0,-10.9347, +2016-05-26 06:15:00,,,61.2324 +2016-05-26 06:18:48,3115.0,-10.9347, +2016-05-26 06:30:00,,,60.6253 +2016-05-26 06:33:43,3114.0,-10.9347, +2016-05-26 06:45:00,,,60.4819 +2016-05-26 06:48:38,3114.0,-10.9347, +2016-05-26 07:00:00,,,62.9677 +2016-05-26 07:03:33,3115.0,-10.9347, +2016-05-26 07:15:00,,,62.6496 +2016-05-26 07:18:28,3115.0,-10.9347, +2016-05-26 07:30:00,,,62.4916 +2016-05-26 07:33:23,3116.0,-10.9347, +2016-05-26 07:45:00,,,63.1335 +2016-05-26 07:48:18,3116.0,-10.9039, +2016-05-26 08:00:00,,,64.1166 +2016-05-26 08:03:13,3118.0,-10.9039, +2016-05-26 08:15:00,,,63.1279 +2016-05-26 08:18:09,3118.0,-10.9039, +2016-05-26 08:30:00,,,62.644 +2016-05-26 08:33:04,3119.0,-10.9039, +2016-05-26 08:45:00,,,64.4603 +2016-05-26 08:47:59,3121.0,-10.8722, +2016-05-26 09:00:00,,,63.2944 +2016-05-26 09:02:54,3122.0,-10.8722, +2016-05-26 09:15:00,,,65.84 +2016-05-26 09:17:50,3124.0,-10.8416, +2016-05-26 09:30:00,,,63.6243 +2016-05-26 09:32:45,3123.0,-10.8416, +2016-05-26 09:45:00,,,63.7876 +2016-05-26 09:47:41,3124.0,-10.8416, +2016-05-26 10:00:00,,,64.9706 +2016-05-26 10:02:36,3127.0,-10.811, +2016-05-26 10:15:00,,,63.3001 +2016-05-26 10:17:31,3127.0,-10.81, +2016-05-26 10:30:00,,,63.4562 +2016-05-26 10:32:27,3128.0,-10.81, +2016-05-26 10:45:00,,,63.4618 +2016-05-26 10:47:22,3130.0,-10.811, +2016-05-26 11:00:00,,, +2016-05-26 11:02:18,3131.0,-10.8416, +2016-05-26 11:15:00,,,63.7876 +2016-05-26 11:17:13,3133.0,-10.7805, +2016-05-26 11:30:00,,,64.1223 +2016-05-26 11:32:09,3134.0,-10.7805, +2016-05-26 11:45:00,,,60.9302 +2016-05-26 11:47:04,3135.0,-10.7805, +2016-05-26 12:00:00,,,62.6496 +2016-05-26 12:02:00,3136.0,-10.7491, +2016-05-26 12:15:00,,,62.3289 +2016-05-26 12:16:56,3138.0,-10.7501, +2016-05-26 12:30:00,,,57.1835 +2016-05-26 12:31:51,3135.0,-10.7491, +2016-05-26 12:45:00,,,57.7303 +2016-05-26 12:46:47,3136.0,-10.7501, +2016-05-26 13:00:00,,,56.3728 +2016-05-26 13:01:42,3136.0,-10.7188, +2016-05-26 13:15:00,,,56.2471 +2016-05-26 13:16:38,3136.0,-10.7188, +2016-05-26 13:30:00,,,57.0495 +2016-05-26 13:31:33,3137.0,-10.7188, +2016-05-26 13:45:00,,,55.8482 +2016-05-26 13:46:29,3137.0,-10.7188, +2016-05-26 14:00:00,,,55.2005 +2016-05-26 14:01:25,3137.0,-10.7188, +2016-05-26 14:15:00,,,54.8191 +2016-05-26 14:16:20,3137.0,-10.7501, +2016-05-26 14:30:00,,,55.4689 +2016-05-26 14:31:16,3138.0,-10.812, +2016-05-26 14:45:00,,,56.7832 +2016-05-26 14:46:11,3142.0,-10.7188, +2016-05-26 15:00:00,,,56.6458 +2016-05-26 15:01:07,3143.0,-10.7188, +2016-05-26 15:15:00,,,26.9002 +2016-05-26 15:16:02,3176.0,-10.181, +2016-05-26 15:30:00,,,26.9457 +2016-05-26 15:30:58,3166.0,-10.5682, +2016-05-26 15:45:00,,,27.186 +2016-05-26 15:46:05,3166.0,-10.5682, +2016-05-26 16:00:00,,,26.0138 +2016-05-26 16:01:12,3160.0,-10.6885, +2016-05-26 16:15:00,,,26.7905 +2016-05-26 16:16:27,3163.0,-10.6282, +2016-05-26 16:30:00,,,26.5465 +2016-05-26 16:31:22,3162.0,-10.6895, +2016-05-26 16:45:00,,,26.5512 +2016-05-26 16:46:29,3161.0,-10.6593, +2016-05-26 17:00:00,,,26.7929 +2016-05-26 17:02:42,3162.0,-10.6282, +2016-05-26 17:15:00,,,27.0848 +2016-05-26 17:17:38,3162.0,-10.6282, +2016-05-26 17:30:00,,,27.1354 +2016-05-26 17:32:33,3162.0,-10.6292, +2016-05-26 17:45:00,,,25.6894 +2016-05-26 17:47:29,3156.0,-10.7198, +2016-05-26 18:00:00,,,26.067 +2016-05-26 18:02:24,3156.0,-10.6885, +2016-05-26 18:15:00,,,25.6414 +2016-05-26 18:17:20,3155.0,-10.7188, +2016-05-26 18:30:00,,,25.5025 +2016-05-26 18:32:15,3152.0,-10.7188, +2016-05-26 18:45:00,,,25.22 +2016-05-26 18:47:11,3152.0,-10.7501, +2016-05-26 19:00:00,,,25.2672 +2016-05-26 19:02:06,3151.0,-10.7501, +2016-05-26 19:15:00,,,25.3123 +2016-05-26 19:17:02,3150.0,-10.7501, +2016-05-26 19:30:00,,,25.5479 +2016-05-26 19:31:57,3150.0,-10.7188, +2016-05-26 19:45:00,,,25.265 +2016-05-26 19:46:53,3149.0,-10.7501, +2016-05-26 20:00:00,,,25.5912 +2016-05-26 20:01:48,3149.0,-10.7188, +2016-05-26 20:15:00,,,24.9893 +2016-05-26 20:16:44,3146.0,-10.7501, +2016-05-26 20:30:00,,,27.092 +2016-05-26 20:31:39,3152.0,-10.5982, +2016-05-26 20:45:00,,,27.1884 +2016-05-26 20:46:35,3152.0,-10.5673, +2016-05-26 21:00:00,,,27.1884 +2016-05-26 21:01:30,3154.0,-10.5374, +2016-05-26 21:15:00,,,27.0464 +2016-05-26 21:16:26,3153.0,-10.5066, +2016-05-26 21:30:00,,,26.8859 +2016-05-26 21:31:21,3146.0,-10.7179, +2016-05-26 21:45:00,,,26.4499 +2016-05-26 21:46:17,3143.0,-10.7179, +2016-05-26 22:00:00,,,27.186 +2016-05-26 22:01:12,3146.0,-10.6574, +2016-05-26 22:15:00,,,25.1279 +2016-05-26 22:16:08,3138.0,-10.811, +2016-05-26 22:30:00,,,25.6825 +2016-05-26 22:31:03,3138.0,-10.811, +2016-05-26 22:45:00,,,26.3537 +2016-05-26 22:45:58,3141.0,-10.7491, +2016-05-26 23:00:00,,,25.6894 +2016-05-26 23:00:54,3138.0,-10.7805, +2016-05-26 23:15:00,,,25.1279 +2016-05-26 23:15:49,3136.0,-10.811, +2016-05-26 23:30:00,,,23.6042 +2016-05-26 23:30:44,3131.0,-10.8416, +2016-05-26 23:45:00,,,23.6042 +2016-05-26 23:45:47,3130.0,-10.8416, +2016-05-27 00:00:00,,,24.4877 +2016-05-27 00:00:42,3132.0,-10.811, +2016-05-27 00:15:00,,,24.8071 +2016-05-27 00:15:37,3134.0,-10.811, +2016-05-27 00:30:00,,,24.1309 +2016-05-27 00:30:33,3130.0,-10.8416, +2016-05-27 00:45:00,,,23.8663 +2016-05-27 00:45:28,3129.0,-10.8416, +2016-05-27 01:00:00,,,23.7807 +2016-05-27 01:00:30,3129.0,-10.8416, +2016-05-27 01:15:00,,,27.1836 +2016-05-27 01:15:26,3139.0,-10.6885, +2016-05-27 01:30:00,,,27.1836 +2016-05-27 01:30:21,3138.0,-10.7198, +2016-05-27 01:45:00,,,27.0368 +2016-05-27 01:45:16,3138.0,-10.7188, +2016-05-27 02:00:00,,,26.5441 +2016-05-27 02:00:11,3136.0,-10.7491, +2016-05-27 02:15:00,,,24.582 +2016-05-27 02:15:06,3129.0,-10.8406, +2016-05-27 02:30:00,,,24.4921 +2016-05-27 02:30:01,3130.0,-10.8406, +2016-05-27 02:44:56,3131.0,-10.8416, +2016-05-27 02:45:00,,,25.4525 +2016-05-27 02:59:51,3135.0,-10.7482, +2016-05-27 03:00:00,,,26.5961 +2016-05-27 03:14:47,3131.0,-10.81, +2016-05-27 03:15:00,,,25.9168 +2016-05-27 03:29:42,3128.0,-10.8406, +2016-05-27 03:30:00,,,25.1324 +2016-05-27 03:44:37,3133.0,-10.7805, +2016-05-27 03:45:00,,,26.8286 +2016-05-27 03:59:32,3132.0,-10.81, +2016-05-27 04:00:00,,,26.1599 +2016-05-27 04:14:27,3134.0,-10.7491, +2016-05-27 04:15:00,,,26.9361 +2016-05-27 04:29:23,3128.0,-10.8406, +2016-05-27 04:30:00,,,25.4593 +2016-05-27 04:44:18,3132.0,-10.7796, +2016-05-27 04:45:00,,,26.5937 +2016-05-27 04:59:13,3133.0,-10.812, +2016-05-27 05:00:00,,,26.8382 +2016-05-27 05:14:08,3134.0,-10.8416, +2016-05-27 05:15:00,,,26.9888 +2016-05-27 05:29:04,3132.0,-10.811, +2016-05-27 05:30:00,,,26.6386 +2016-05-27 05:43:59,3129.0,-10.8406, +2016-05-27 05:45:00,,,25.3101 +2016-05-27 05:58:54,3128.0,-10.8406, +2016-05-27 06:00:00,,,25.362 +2016-05-27 06:13:49,3127.0,-10.8406, +2016-05-27 06:15:00,,,24.7164 +2016-05-27 06:28:45,3117.0,-10.9328, +2016-05-27 06:30:00,,,62.3344 +2016-05-27 06:43:40,3118.0,-10.9029, +2016-05-27 06:45:00,,,61.8617 +2016-05-27 06:58:35,3118.0,-10.9029, +2016-05-27 07:00:00,,,61.3955 +2016-05-27 07:13:30,3118.0,-10.8722, +2016-05-27 07:15:00,,,60.4712 +2016-05-27 07:28:26,3119.0,-10.8406, +2016-05-27 07:30:00,,,60.6253 +2016-05-27 07:43:21,3121.0,-10.8722, +2016-05-27 07:45:00,,,62.6496 +2016-05-27 07:58:16,3123.0,-10.8406, +2016-05-27 08:00:00,,,65.3111 +2016-05-27 08:13:11,3123.0,-10.8722, +2016-05-27 08:15:00,,,63.6243 +2016-05-27 08:28:07,3127.0,-10.8091, +2016-05-27 08:30:00,,,69.9445 +2016-05-27 08:43:02,3128.0,-10.81, +2016-05-27 08:45:00,,,72.6017 +2016-05-27 08:57:57,3131.0,-10.8416, +2016-05-27 09:00:00,,,23.2943 +2016-05-27 09:12:53,3130.0,-10.81, +2016-05-27 09:15:00,,,23.2585 +2016-05-27 09:27:48,3134.0,-10.7805, +2016-05-27 09:30:00,,,24.2197 +2016-05-27 09:42:44,3135.0,-10.7805, +2016-05-27 09:45:00,,,24.4921 +2016-05-27 09:57:39,3140.0,-10.6885, +2016-05-27 10:00:00,,,26.3537 +2016-05-27 10:12:35,3136.0,-10.7805, +2016-05-27 10:15:00,,,24.5359 +2016-05-27 10:27:30,3139.0,-10.7501, +2016-05-27 10:30:00,,,25.6825 +2016-05-27 10:42:25,3138.0,-10.7491, +2016-05-27 10:45:00,,,24.8093 +2016-05-27 10:57:21,3138.0,-10.7491, +2016-05-27 11:00:00,,,24.9893 +2016-05-27 11:12:16,3143.0,-10.6885, +2016-05-27 11:15:00,,,26.4476 +2016-05-27 11:27:12,3144.0,-10.6876, +2016-05-27 11:30:00,,,26.3584 +2016-05-27 11:42:08,3145.0,-10.6885, +2016-05-27 11:45:00,,,26.2135 +2016-05-27 11:57:03,3144.0,-10.6876, +2016-05-27 12:00:00,,,25.9237 +2016-05-27 12:11:59,3150.0,-10.5973, +2016-05-27 12:15:00,,,26.9912 +2016-05-27 12:26:54,3150.0,-10.5973, +2016-05-27 12:30:00,,,27.1426 +2016-05-27 12:41:50,3151.0,-10.5664, +2016-05-27 12:45:00,,,27.1836 +2016-05-27 12:56:45,3152.0,-10.5673, +2016-05-27 13:00:00,,,27.2852 +2016-05-27 13:11:41,3145.0,-10.7179, +2016-05-27 13:15:00,,,24.8558 +2016-05-27 13:26:36,3143.0,-10.7491, +2016-05-27 13:30:00,,,23.6105 +2016-05-27 13:41:32,3141.0,-10.7491, +2016-05-27 13:45:00,,,69.5501 +2016-05-27 13:56:27,3142.0,-10.7179, +2016-05-27 14:00:00,,,70.1339 +2016-05-27 14:11:23,3145.0,-10.6876, +2016-05-27 14:15:00,,,77.35600000000002 +2016-05-27 14:26:19,3145.0,-10.6876, +2016-05-27 14:30:00,,,23.6042 +2016-05-27 14:41:14,3148.0,-10.6574, +2016-05-27 14:45:00,,,24.3109 +2016-05-27 14:56:10,3148.0,-10.6885, +2016-05-27 15:00:00,,,23.7465 +2016-05-27 15:11:06,3149.0,-10.6885, +2016-05-27 15:15:00,,,23.9155 +2016-05-27 15:26:01,3148.0,-10.6885, +2016-05-27 15:30:00,,,23.5701 +2016-05-27 15:40:57,3146.0,-10.7198, +2016-05-27 15:45:00,,,72.184 +2016-05-27 15:55:53,3148.0,-10.6885, +2016-05-27 16:00:00,,,23.4772 +2016-05-27 16:10:48,3149.0,-10.6885, +2016-05-27 16:15:00,,,23.6997 +2016-05-27 16:25:44,3150.0,-10.6885, +2016-05-27 16:30:00,,,23.7465 +2016-05-27 16:40:39,3151.0,-10.6574, +2016-05-27 16:45:00,,,24.3152 +2016-05-27 16:55:35,3150.0,-10.6574, +2016-05-27 17:00:00,,,24.0962 +2016-05-27 17:10:31,3152.0,-10.6273, +2016-05-27 17:15:00,,,24.7252 +2016-05-27 17:25:26,3152.0,-10.6885, +2016-05-27 17:30:00,,,24.4067 +2016-05-27 17:40:22,3151.0,-10.6574, +2016-05-27 17:45:00,,,24.6369 +2016-05-27 17:55:17,3152.0,-10.6273, +2016-05-27 18:00:00,,,25.507 +2016-05-27 18:10:13,3150.0,-10.6885, +2016-05-27 18:15:00,,,24.4176 +2016-05-27 18:25:08,3149.0,-10.6885, +2016-05-27 18:30:00,,,24.3674 +2016-05-27 18:40:04,3150.0,-10.6264, +2016-05-27 18:45:00,,,24.9069 +2016-05-27 18:54:59,3150.0,-10.6264, +2016-05-27 19:00:00,,,25.2739 +2016-05-27 19:09:55,3150.0,-10.6264, +2016-05-27 19:15:00,,,25.2312 +2016-05-27 19:24:50,3150.0,-10.6264, +2016-05-27 19:30:00,,,25.371 +2016-05-27 19:39:46,3150.0,-10.6264, +2016-05-27 19:45:00,,,25.4661 +2016-05-27 19:54:41,3147.0,-10.6574, +2016-05-27 20:00:00,,,25.1324 +2016-05-27 20:09:37,3143.0,-10.6876, +2016-05-27 20:15:00,,,23.879 +2016-05-27 20:24:33,3141.0,-10.7188, +2016-05-27 20:30:00,,,23.357 +2016-05-27 20:39:28,3140.0,-10.6876, +2016-05-27 20:45:00,,,23.3991 +2016-05-27 20:54:24,3138.0,-10.7179, +2016-05-27 21:00:00,,,23.1831 +2016-05-27 21:09:19,3136.0,-10.7179, +2016-05-27 21:15:00,,,70.9591 +2016-05-27 21:24:15,3135.0,-10.7491, +2016-05-27 21:30:00,,,68.9879 +2016-05-27 21:39:10,3133.0,-10.7491, +2016-05-27 21:45:00,,,67.8541 +2016-05-27 21:54:06,3131.0,-10.7491, +2016-05-27 22:00:00,,,65.8517 +2016-05-27 22:09:02,3130.0,-10.7482, +2016-05-27 22:15:00,,,64.9936 +2016-05-27 22:23:57,3129.0,-10.7491, +2016-05-27 22:30:00,,,64.6448 +2016-05-27 22:38:53,3128.0,-10.7482, +2016-05-27 22:45:00,,,63.3113 +2016-05-27 22:53:48,3127.0,-10.7796, +2016-05-27 23:00:00,,,61.7129 +2016-05-27 23:08:44,3127.0,-10.7482, +2016-05-27 23:15:00,,,61.8727 +2016-05-27 23:23:39,3127.0,-10.7796, +2016-05-27 23:30:00,,,63.3113 +2016-05-27 23:38:35,3124.0,-10.7786, +2016-05-27 23:45:00,,,60.3392 +2016-05-27 23:53:30,3123.0,-10.7796, +2016-05-28 00:00:00,,,60.3392 +2016-05-28 00:08:26,3122.0,-10.81, +2016-05-28 00:15:00,,,58.7317 +2016-05-28 00:23:21,3122.0,-10.81, +2016-05-28 00:30:00,,,58.0251 +2016-05-28 00:38:17,3121.0,-10.81, +2016-05-28 00:45:00,,,56.6559 +2016-05-28 00:53:12,3120.0,-10.81, +2016-05-28 01:00:00,,,56.1268 +2016-05-28 01:08:08,3119.0,-10.81, +2016-05-28 01:15:00,,,55.6014 +2016-05-28 01:23:03,3118.0,-10.81, +2016-05-28 01:30:00,,,55.3467 +2016-05-28 01:37:58,3117.0,-10.81, +2016-05-28 01:45:00,,,54.7091 +2016-05-28 01:52:54,3117.0,-10.7491, +2016-05-28 02:00:00,,,31.4207 +2016-05-28 02:07:49,3115.0,-10.7491, +2016-05-28 02:15:00,,,31.6497 +2016-05-28 02:22:44,3115.0,-10.7805, +2016-05-28 02:30:00,,,31.6553 +2016-05-28 02:37:39,3114.0,-10.812, +2016-05-28 02:45:00,,,31.542 +2016-05-28 02:52:34,3114.0,-10.7796, +2016-05-28 03:00:00,,,31.6581 +2016-05-28 03:07:30,3114.0,-10.811, +2016-05-28 03:15:00,,,31.6609 +2016-05-28 03:22:25,3115.0,-10.7805, +2016-05-28 03:30:00,,,31.6042 +2016-05-28 03:37:20,3114.0,-10.7805, +2016-05-28 03:45:00,,,31.4855 +2016-05-28 03:52:15,3113.0,-10.811, +2016-05-28 04:00:00,,,31.6042 +2016-05-28 04:07:10,3114.0,-10.7805, +2016-05-28 04:15:00,,,31.6609 +2016-05-28 04:22:05,3114.0,-10.812, +2016-05-28 04:30:00,,,31.6609 +2016-05-28 04:37:01,3114.0,-10.7805, +2016-05-28 04:45:00,,,31.6609 +2016-05-28 04:51:56,3114.0,-10.7805, +2016-05-28 05:00:00,,,31.6609 +2016-05-28 05:06:51,3114.0,-10.7805, +2016-05-28 05:15:00,,,31.6042 +2016-05-28 05:21:46,3114.0,-10.7805, +2016-05-28 05:30:00,,,31.6609 +2016-05-28 05:36:41,3114.0,-10.7805, +2016-05-28 05:45:00,,,31.7178 +2016-05-28 05:51:37,3114.0,-10.812, +2016-05-28 06:00:00,,,31.7747 +2016-05-28 06:06:32,3114.0,-10.7805, +2016-05-28 06:15:00,,,31.7178 +2016-05-28 06:21:27,3115.0,-10.7491, +2016-05-28 06:30:00,,,31.7234 +2016-05-28 06:36:22,3115.0,-10.7805, +2016-05-28 06:45:00,,,31.7178 +2016-05-28 06:51:18,3115.0,-10.7805, +2016-05-28 07:00:00,,,31.4911 +2016-05-28 07:06:13,3115.0,-10.7805, +2016-05-28 07:15:00,,,31.542 +2016-05-28 07:21:09,3116.0,-10.7491, +2016-05-28 07:30:00,,,31.7206 +2016-05-28 07:36:04,3116.0,-10.7491, +2016-05-28 07:45:00,,,31.7747 +2016-05-28 07:50:59,3116.0,-10.7491, +2016-05-28 08:00:00,,,31.6553 +2016-05-28 08:05:55,3117.0,-10.7491, +2016-05-28 08:15:00,,,7.9954 +2016-05-28 08:20:50,3118.0,-10.7491, +2016-05-28 08:30:00,,,31.7663 +2016-05-28 08:35:46,3119.0,-10.7501, +2016-05-28 08:45:00,,,31.7776 +2016-05-28 08:50:42,3120.0,-10.7501, +2016-05-28 09:00:00,,,31.5448 +2016-05-28 09:05:37,3121.0,-10.7188, +2016-05-28 09:15:00,,,31.0266 +2016-05-28 09:20:33,3121.0,-10.7188, +2016-05-28 09:30:00,,,31.7776 +2016-05-28 09:35:28,3122.0,-10.7188, +2016-05-28 09:45:00,,,31.2551 +2016-05-28 09:50:24,3123.0,-10.7198, +2016-05-28 10:00:00,,,-0.1828 +2016-05-28 10:05:19,3125.0,-10.6885, +2016-05-28 10:15:00,,,31.6441 +2016-05-28 10:20:15,3126.0,-10.7198, +2016-05-28 10:30:00,,,31.7719 +2016-05-28 10:35:11,3128.0,-10.6885, +2016-05-28 10:45:00,,,31.5986 +2016-05-28 10:50:06,3129.0,-10.6885, +2016-05-28 11:00:00,,,31.7776 +2016-05-28 11:05:02,3130.0,-10.6885, +2016-05-28 11:15:00,,,31.7178 +2016-05-28 11:19:58,3130.0,-10.6584, +2016-05-28 11:30:00,,,31.3701 +2016-05-28 11:34:53,3132.0,-10.6584, +2016-05-28 11:45:00,,,31.0239 +2016-05-28 11:49:49,3133.0,-10.6282, +2016-05-28 12:00:00,,,31.7776 +2016-05-28 12:04:45,3134.0,-10.6282, +2016-05-28 12:15:00,,,29.1493 +2016-05-28 12:19:40,3134.0,-10.6584, +2016-05-28 12:30:00,,,31.6637 +2016-05-28 12:34:36,3135.0,-10.6282, +2016-05-28 12:45:00,,,31.7206 +2016-05-28 12:49:32,3135.0,-10.6282, +2016-05-28 13:00:00,,,31.7804 +2016-05-28 13:04:27,3136.0,-10.5973, +2016-05-28 13:15:00,,,31.6637 +2016-05-28 13:19:23,3137.0,-10.5982, +2016-05-28 13:30:00,,,31.4291 +2016-05-28 13:34:19,3138.0,-10.5982, +2016-05-28 13:45:00,,,31.8975 +2016-05-28 13:49:14,3138.0,-10.5982, +2016-05-28 14:00:00,,,31.7804 +2016-05-28 14:04:10,3138.0,-10.5982, +2016-05-28 14:15:00,,,31.7206 +2016-05-28 14:19:05,3138.0,-10.5982, +2016-05-28 14:30:00,,,31.7206 +2016-05-28 14:34:01,3138.0,-10.5982, +2016-05-28 14:45:00,,,31.7234 +2016-05-28 14:48:57,3138.0,-10.5982, +2016-05-28 15:00:00,,,26.408 +2016-05-28 15:03:52,3138.0,-10.5982, +2016-05-28 15:15:00,,,31.7804 +2016-05-28 15:18:48,3139.0,-10.5982, +2016-05-28 15:30:00,,,28.8374 +2016-05-28 15:33:43,3139.0,-10.5982, +2016-05-28 15:45:00,,,26.502 +2016-05-28 15:48:39,3139.0,-10.5982, +2016-05-28 16:00:00,,,25.2909 +2016-05-28 16:03:35,3140.0,-10.5982, +2016-05-28 16:15:00,,,25.2392 +2016-05-28 16:18:30,3140.0,-10.5982, +2016-05-28 16:30:00,,,27.4188 +2016-05-28 16:33:26,3141.0,-10.5982, +2016-05-28 16:45:00,,,31.4375 +2016-05-28 16:48:22,3139.0,-10.5682, +2016-05-28 17:00:00,,,26.121 +2016-05-28 17:03:18,3139.0,-10.5682, +2016-05-28 17:15:00,,,26.691 +2016-05-28 17:18:13,3138.0,-10.5682, +2016-05-28 17:30:00,,,27.4188 +2016-05-28 17:33:09,3138.0,-10.5682, +2016-05-28 17:45:00,,,25.1046 +2016-05-28 17:48:05,3138.0,-10.5973, +2016-05-28 18:00:00,,,26.4973 +2016-05-28 18:03:00,3138.0,-10.5973, +2016-05-28 18:15:00,,,27.5188 +2016-05-28 18:17:56,3136.0,-10.6282, +2016-05-28 18:30:00,,,24.2133 +2016-05-28 18:32:52,3136.0,-10.5673, +2016-05-28 18:45:00,,,23.2641 +2016-05-28 18:47:47,3135.0,-11.1536, +2016-05-28 19:00:00,,,24.4329 +2016-05-28 19:02:43,3135.0,-10.5982, +2016-05-28 19:15:00,,,6.6579 +2016-05-28 19:17:39,3135.0,-10.6282, +2016-05-28 19:30:00,,,22.4931 +2016-05-28 19:32:34,3134.0,-10.5982, +2016-05-28 19:45:00,,,7.619 +2016-05-28 19:47:30,3132.0,-10.5982, +2016-05-28 20:00:00,,,21.597 +2016-05-28 20:02:26,3132.0,-10.6292, +2016-05-28 20:15:00,,,0.5036 +2016-05-28 20:17:21,3131.0,-11.1212, +2016-05-28 20:30:00,,,-4.9515 +2016-05-28 20:32:17,3130.0,-10.5973, +2016-05-28 20:45:00,,,-5.4281 +2016-05-28 20:47:12,3129.0,-10.5973, +2016-05-28 21:00:00,,,-4.1132 +2016-05-28 21:02:08,3128.0,-10.6282, +2016-05-28 21:15:00,,,-3.5572 +2016-05-28 21:17:03,3127.0,-11.0889, +2016-05-28 21:30:00,,,-5.0408 +2016-05-28 21:31:59,3127.0,-11.0256, +2016-05-28 21:45:00,,,17.0977 +2016-05-28 21:46:54,3124.0,-11.0577, +2016-05-28 22:00:00,,,-4.7832 +2016-05-28 22:01:50,3124.0,-10.6282, +2016-05-28 22:15:00,,,-5.1743 +2016-05-28 22:16:46,3123.0,-11.0577, +2016-05-28 22:30:00,,,-5.1752 +2016-05-28 22:31:41,3122.0,-11.0577, +2016-05-28 22:45:00,,,-5.1752 +2016-05-28 22:46:37,3123.0,-11.0577, +2016-05-28 23:00:00,,,-5.0883 +2016-05-28 23:01:32,3122.0,-11.0577, +2016-05-28 23:15:00,,,-5.0668 +2016-05-28 23:16:28,3122.0,-11.0577, +2016-05-28 23:30:00,,,-5.1097 +2016-05-28 23:31:23,3122.0,-11.0266, +2016-05-28 23:45:00,,,-5.0448 +2016-05-28 23:46:19,3121.0,-11.0577, +2016-05-29 00:00:00,,,-5.1962 +2016-05-29 00:01:14,3121.0,-11.0577, +2016-05-29 00:15:00,,,-5.2604 +2016-05-29 00:16:10,3121.0,-11.0577, +2016-05-29 00:30:00,,,-5.2604 +2016-05-29 00:31:06,3119.0,-11.0577, +2016-05-29 00:45:00,,,-5.1532 +2016-05-29 00:46:01,3118.0,-11.0256, +2016-05-29 01:00:00,,,-5.1308 +2016-05-29 01:01:00,3118.0,-11.0266, +2016-05-29 01:15:00,,,-5.0892 +2016-05-29 01:15:56,3118.0,-11.0577, +2016-05-29 01:30:00,,,-5.1317 +2016-05-29 01:30:51,3118.0,-11.0577, +2016-05-29 01:45:00,,,-5.1532 +2016-05-29 01:45:47,3117.0,-11.0256, +2016-05-29 02:00:00,,,-5.1962 +2016-05-29 02:00:42,3117.0,-11.0256, +2016-05-29 02:15:00,,,-5.1111 +2016-05-29 02:15:38,3117.0,-11.0266, +2016-05-29 02:30:00,,,-5.0247 +2016-05-29 02:30:33,3117.0,-11.0266, +2016-05-29 02:45:00,,,-5.1107 +2016-05-29 02:45:29,3116.0,-11.0266, +2016-05-29 03:00:00,,,-5.1532 +2016-05-29 03:00:24,3116.0,-10.9956, +2016-05-29 03:15:00,,,-5.0037 +2016-05-29 03:15:20,3115.0,-11.0256, +2016-05-29 03:30:00,,,-5.2402 +2016-05-29 03:30:15,3115.0,-11.0266, +2016-05-29 03:45:00,,,-5.0883 +2016-05-29 03:45:11,3115.0,-10.9956, +2016-05-29 04:00:00,,,-5.1747 +2016-05-29 04:00:06,3115.0,-11.0266, +2016-05-29 04:15:00,,,-5.2608 +2016-05-29 04:15:01,3115.0,-11.0256, +2016-05-29 04:29:57,3115.0,-11.0256, +2016-05-29 04:30:00,,,-5.0457 +2016-05-29 04:44:52,3114.0,-11.0577, +2016-05-29 04:45:00,,,-5.1747 +2016-05-29 04:59:47,3114.0,-11.0276, +2016-05-29 05:00:00,,,-5.0896 +2016-05-29 05:14:43,3114.0,-11.0276, +2016-05-29 05:15:00,,,-4.8101 +2016-05-29 05:29:38,3114.0,-11.0276, +2016-05-29 05:30:00,,,-4.8101 +2016-05-29 05:44:33,3114.0,-11.0276, +2016-05-29 05:45:00,,,-5.1312 +2016-05-29 05:59:29,3114.0,-11.0256, +2016-05-29 06:00:00,,,-4.9379 +2016-05-29 06:14:24,3113.0,-11.0266, +2016-05-29 06:15:00,,,-4.9392 +2016-05-29 06:29:19,3113.0,-11.0266, +2016-05-29 06:30:00,,,-4.9616 +2016-05-29 06:44:15,3113.0,-11.0266, +2016-05-29 06:45:00,,,-4.8757 +2016-05-29 06:59:10,3112.0,-10.9956, +2016-05-29 07:00:00,,,-4.9187 +2016-05-29 07:14:05,3113.0,-10.9956, +2016-05-29 07:15:00,,,-5.1766 +2016-05-29 07:29:00,3112.0,-10.9956, +2016-05-29 07:30:00,,,-5.0045 +2016-05-29 07:43:55,3112.0,-10.9956, +2016-05-29 07:45:00,,,-4.9831 +2016-05-29 07:58:58,3113.0,-10.9956, +2016-05-29 08:00:00,,,-4.9616 +2016-05-29 08:13:53,3112.0,-10.9636, +2016-05-29 08:15:00,,,-4.8757 +2016-05-29 08:28:49,3113.0,-11.0276, +2016-05-29 08:30:00,,,-4.8757 +2016-05-29 08:43:44,3113.0,-10.9646, +2016-05-29 08:45:00,,,-4.9191 +2016-05-29 08:58:39,3113.0,-10.9965, +2016-05-29 09:00:00,,,-4.9191 +2016-05-29 09:13:42,3114.0,-10.9646, +2016-05-29 09:15:00,,,-4.7904 +2016-05-29 09:28:37,3114.0,-10.9646, +2016-05-29 09:30:00,,,-4.9401 +2016-05-29 09:43:33,3114.0,-10.9646, +2016-05-29 09:45:00,,,-4.7904 +2016-05-29 09:58:28,3114.0,-10.9656, +2016-05-29 10:00:00,,,-4.8766 +2016-05-29 10:13:24,3115.0,-10.9646, +2016-05-29 10:15:00,,,-4.9401 +2016-05-29 10:28:19,3116.0,-10.9656, +2016-05-29 10:30:00,,,-4.9191 +2016-05-29 10:43:15,3116.0,-10.9337, +2016-05-29 10:45:00,,,-4.8123 +2016-05-29 10:58:10,3117.0,-10.9337, +2016-05-29 11:00:00,,,-4.7904 +2016-05-29 11:13:06,3120.0,-10.9337, +2016-05-29 11:15:00,,,-4.9406 +2016-05-29 11:28:01,3121.0,-10.9337, +2016-05-29 11:30:00,,,-5.0265 +2016-05-29 11:42:57,3121.0,-10.9029, +2016-05-29 11:45:00,,,-4.877 +2016-05-29 11:57:52,3122.0,-10.9029, +2016-05-29 12:00:00,,,-4.9195 +2016-05-29 12:12:47,3123.0,-10.9039, +2016-05-29 12:15:00,,,-5.0045 +2016-05-29 12:27:43,3124.0,-10.8722, +2016-05-29 12:30:00,,,-5.0265 +2016-05-29 12:42:38,3127.0,-10.9405, +2016-05-29 12:45:00,,,-5.0076 +2016-05-29 12:57:34,3127.0,-10.8406, +2016-05-29 13:00:00,,,-4.9195 +2016-05-29 13:12:29,3128.0,-10.8732, +2016-05-29 13:15:00,,,-4.941 +2016-05-29 13:27:25,3130.0,-10.8416, +2016-05-29 13:30:00,,,-4.8131 +2016-05-29 13:42:21,3131.0,-10.81, +2016-05-29 13:45:00,,,-4.8131 +2016-05-29 13:57:16,3132.0,-10.8416, +2016-05-29 14:00:00,,,-4.9625 +2016-05-29 14:12:12,3133.0,-10.81, +2016-05-29 14:15:00,,,-4.8127 +2016-05-29 14:27:08,3134.0,-10.811, +2016-05-29 14:30:00,,,-4.8127 +2016-05-29 14:42:03,3135.0,-10.7796, +2016-05-29 14:45:00,,,-4.835 +2016-05-29 14:57:06,3135.0,-10.7805, +2016-05-29 15:00:00,,,-4.8341 +2016-05-29 15:12:02,3136.0,-10.7491, +2016-05-29 15:15:00,,,-4.8569 +2016-05-29 15:26:57,3136.0,-10.7805, +2016-05-29 15:30:00,,,-4.8569 +2016-05-29 15:42:01,3138.0,-10.7805, +2016-05-29 15:45:00,,,-4.9419 +2016-05-29 15:56:56,3138.0,-10.7482, +2016-05-29 16:00:00,,,-5.0278 +2016-05-29 16:11:52,3138.0,-10.7491, +2016-05-29 16:15:00,,,-5.0488 +2016-05-29 16:26:48,3138.0,-10.7491, +2016-05-29 16:30:00,,,-5.1569 +2016-05-29 16:41:44,3140.0,-10.7491, +2016-05-29 16:45:00,,,-4.8783 +2016-05-29 16:56:40,3140.0,-10.7491, +2016-05-29 17:00:00,,,-5.0928 +2016-05-29 17:11:35,3140.0,-10.7491, +2016-05-29 17:15:00,,,-4.8569 +2016-05-29 17:26:31,3139.0,-10.7491, +2016-05-29 17:30:00,,,-5.1143 +2016-05-29 17:41:27,3139.0,-10.7796, +2016-05-29 17:45:00,,,-5.0923 +2016-05-29 17:56:23,3138.0,-10.7805, +2016-05-29 18:00:00,,,-5.1358 +2016-05-29 18:11:18,3138.0,-10.7491, +2016-05-29 18:15:00,,,-4.8569 +2016-05-29 18:26:14,3138.0,-10.7491, +2016-05-29 18:30:00,,,-5.0488 +2016-05-29 18:41:10,3137.0,-10.7805, +2016-05-29 18:45:00,,,-4.9853 +2016-05-29 18:56:06,3136.0,-10.7796, +2016-05-29 19:00:00,,,-4.8569 +2016-05-29 19:11:01,3136.0,-10.7796, +2016-05-29 19:15:00,,,-4.8354 +2016-05-29 19:25:57,3135.0,-10.7796, +2016-05-29 19:30:00,,,-4.8144 +2016-05-29 19:40:53,3135.0,-10.7796, +2016-05-29 19:45:00,,,-4.9221 +2016-05-29 19:55:49,3134.0,-10.7796, +2016-05-29 20:00:00,,,-4.9436 +2016-05-29 20:10:44,3132.0,-10.7796, +2016-05-29 20:15:00,,, +2016-05-29 20:25:40,3131.0,-10.811, +2016-05-29 20:30:00,,,-4.8792 +2016-05-29 20:40:35,3130.0,-10.811, +2016-05-29 20:45:00,,, +2016-05-29 20:55:31,3129.0,-10.81, +2016-05-29 21:00:00,,, +2016-05-29 21:10:27,3128.0,-10.81, +2016-05-29 21:15:00,,, +2016-05-29 21:25:22,3127.0,-10.81, +2016-05-29 21:30:00,,,-4.9226 +2016-05-29 21:40:18,3124.0,-10.81, +2016-05-29 21:45:00,,, +2016-05-29 21:55:13,3124.0,-10.8416, +2016-05-29 22:00:00,,, +2016-05-29 22:10:09,3123.0,-10.8416, +2016-05-29 22:15:00,,, +2016-05-29 22:25:04,3122.0,-10.8416, +2016-05-29 22:30:00,,, +2016-05-29 22:40:00,3122.0,-10.8416, +2016-05-29 22:45:00,,, +2016-05-29 22:54:55,3121.0,-10.8416, +2016-05-29 23:00:00,,, +2016-05-29 23:09:51,3121.0,-10.8416, +2016-05-29 23:15:00,,, +2016-05-29 23:24:46,3120.0,-10.8416, +2016-05-29 23:30:00,,, +2016-05-29 23:39:42,3119.0,-10.8416, +2016-05-29 23:45:00,,, +2016-05-29 23:54:37,3118.0,-10.8406, +2016-05-30 00:00:00,,, +2016-05-30 00:09:33,3118.0,-10.8416, +2016-05-30 00:15:00,,, +2016-05-30 00:24:29,3117.0,-10.8406, +2016-05-30 00:30:00,,, +2016-05-30 00:39:24,3117.0,-10.8732, +2016-05-30 00:45:00,,, +2016-05-30 00:54:20,3116.0,-10.8416, +2016-05-30 01:00:00,,, +2016-05-30 01:09:15,3115.0,-10.8406, +2016-05-30 01:15:00,,, +2016-05-30 01:24:11,3115.0,-10.8416, +2016-05-30 01:30:00,,, +2016-05-30 01:39:06,3115.0,-10.8416, +2016-05-30 01:45:00,,, +2016-05-30 01:54:02,3115.0,-10.8722, +2016-05-30 02:00:00,,, +2016-05-30 02:08:57,3115.0,-10.8722, +2016-05-30 02:15:00,,, +2016-05-30 02:23:53,3114.0,-10.8406, +2016-05-30 02:30:00,,, +2016-05-30 02:38:49,3114.0,-10.8406, +2016-05-30 02:45:00,,, +2016-05-30 02:53:44,3114.0,-10.8722, +2016-05-30 03:00:00,,, +2016-05-30 03:08:39,3114.0,-10.8722, +2016-05-30 03:15:00,,, +2016-05-30 03:23:35,3114.0,-10.8722, +2016-05-30 03:30:00,,, +2016-05-30 03:38:30,3114.0,-10.8722, +2016-05-30 03:45:00,,, +2016-05-30 03:53:26,3114.0,-10.8722, +2016-05-30 04:00:00,,, +2016-05-30 04:08:21,3114.0,-10.8406, +2016-05-30 04:15:00,,, +2016-05-30 04:23:17,3114.0,-10.8732, +2016-05-30 04:30:00,,, +2016-05-30 04:38:12,3114.0,-10.8722, +2016-05-30 04:45:00,,, +2016-05-30 04:53:07,3113.0,-10.8722, +2016-05-30 05:00:00,,, +2016-05-30 05:08:03,3113.0,-10.8406, +2016-05-30 05:15:00,,, +2016-05-30 05:22:58,3113.0,-10.8416, +2016-05-30 05:30:00,,, +2016-05-30 05:37:54,3114.0,-10.8406, +2016-05-30 05:45:00,,, +2016-05-30 05:52:49,3114.0,-10.8722, +2016-05-30 06:00:00,,, +2016-05-30 06:07:45,3114.0,-10.8406, +2016-05-30 06:15:00,,, +2016-05-30 06:22:41,3114.0,-10.8416, +2016-05-30 06:30:00,,, +2016-05-30 06:37:36,3114.0,-10.8732, +2016-05-30 06:45:00,,, +2016-05-30 06:52:32,3114.0,-10.8416, +2016-05-30 07:00:00,,, +2016-05-30 07:07:27,3115.0,-10.8416, +2016-05-30 07:15:00,,, +2016-05-30 07:22:23,3115.0,-10.8416, +2016-05-30 07:30:00,,, +2016-05-30 07:37:19,3115.0,-10.8416, +2016-05-30 07:45:00,,, +2016-05-30 07:52:14,3116.0,-10.8416, +2016-05-30 08:00:00,,, +2016-05-30 08:07:10,3117.0,-10.811, +2016-05-30 08:15:00,,, +2016-05-30 08:22:06,3117.0,-10.811, +2016-05-30 08:30:00,,, +2016-05-30 08:37:01,3118.0,-10.811, +2016-05-30 08:45:00,,, +2016-05-30 08:51:57,3120.0,-10.811, +2016-05-30 09:00:00,,, +2016-05-30 09:06:53,3121.0,-10.812, +2016-05-30 09:15:00,,, +2016-05-30 09:21:48,3122.0,-10.812, +2016-05-30 09:30:00,,, +2016-05-30 09:36:44,3123.0,-10.7805, +2016-05-30 09:45:00,,, +2016-05-30 09:51:40,3123.0,-10.7805, +2016-05-30 10:00:00,,, +2016-05-30 10:06:35,3124.0,-10.7805, +2016-05-30 10:15:00,,, +2016-05-30 10:21:31,3126.0,-10.7805, +2016-05-30 10:30:00,,, +2016-05-30 10:36:26,3127.0,-10.7491, +2016-05-30 10:45:00,,, +2016-05-30 10:51:22,3127.0,-10.7501, +2016-05-30 11:00:00,,, +2016-05-30 11:06:18,3128.0,-10.7501, +2016-05-30 11:15:00,,, +2016-05-30 11:21:14,3129.0,-10.7501, +2016-05-30 11:30:00,,, +2016-05-30 11:36:09,3130.0,-10.7501, +2016-05-30 11:45:00,,, +2016-05-30 11:51:05,3131.0,-10.7188, +2016-05-30 12:00:00,,, +2016-05-30 12:06:01,3133.0,-10.7188, +2016-05-30 12:15:00,,, +2016-05-30 12:20:57,3134.0,-10.7188, +2016-05-30 12:30:00,,, +2016-05-30 12:35:53,3135.0,-10.7188, +2016-05-30 12:45:00,,, +2016-05-30 12:50:48,3136.0,-10.7198, +2016-05-30 13:00:00,,, +2016-05-30 13:05:44,3136.0,-10.7198, +2016-05-30 13:15:00,,, +2016-05-30 13:20:40,3136.0,-10.7198, +2016-05-30 13:30:00,,, +2016-05-30 13:35:43,3137.0,-10.7188, +2016-05-30 13:45:00,,, +2016-05-30 13:50:39,3136.0,-10.7188, +2016-05-30 14:00:00,,, +2016-05-30 14:05:35,3136.0,-10.7188, +2016-05-30 14:15:00,,, +2016-05-30 14:20:31,3135.0,-10.7188, +2016-05-30 14:30:00,,, +2016-05-30 14:35:27,3135.0,-10.7188, +2016-05-30 14:45:00,,, +2016-05-30 14:50:23,3133.0,-10.7188, +2016-05-30 15:00:00,,, +2016-05-30 15:05:19,3132.0,-10.7188, +2016-05-30 15:15:00,,, +2016-05-30 15:20:14,3130.0,-10.7198, +2016-05-30 15:30:00,,, +2016-05-30 15:35:10,3130.0,-10.7188, +2016-05-30 15:45:00,,, +2016-05-30 15:50:06,3131.0,-10.7501, +2016-05-30 16:00:00,,, +2016-05-30 16:05:02,3131.0,-10.7501, +2016-05-30 16:15:00,,, +2016-05-30 16:19:58,3131.0,-10.7501, +2016-05-30 16:30:00,,, +2016-05-30 16:34:54,3131.0,-10.7188, +2016-05-30 16:45:00,,, +2016-05-30 16:49:50,3131.0,-10.7188, +2016-05-30 17:00:00,,, +2016-05-30 17:04:45,3132.0,-10.7188, +2016-05-30 17:15:00,,, +2016-05-30 17:19:41,3132.0,-10.7188, +2016-05-30 17:30:00,,, +2016-05-30 17:34:37,3132.0,-10.7188, +2016-05-30 17:45:00,,, +2016-05-30 17:49:33,3132.0,-10.7188, +2016-05-30 18:00:00,,, +2016-05-30 18:04:29,3132.0,-10.7501, +2016-05-30 18:15:00,,, +2016-05-30 18:19:25,3132.0,-10.7501, +2016-05-30 18:30:00,,, +2016-05-30 18:34:21,3132.0,-10.7188, +2016-05-30 18:45:00,,, +2016-05-30 18:49:17,3131.0,-10.7501, +2016-05-30 19:00:00,,, +2016-05-30 19:04:13,3130.0,-10.7501, +2016-05-30 19:15:00,,, +2016-05-30 19:19:09,3130.0,-10.7491, +2016-05-30 19:30:00,,, +2016-05-30 19:34:05,3130.0,-10.7491, +2016-05-30 19:45:00,,, +2016-05-30 19:49:01,3129.0,-10.7491, +2016-05-30 20:00:00,,, +2016-05-30 20:03:57,3128.0,-10.7491, +2016-05-30 20:15:00,,, +2016-05-30 20:18:53,3127.0,-10.7491, +2016-05-30 20:30:00,,, +2016-05-30 20:33:49,3127.0,-10.7805, +2016-05-30 20:45:00,,, +2016-05-30 20:48:44,3126.0,-10.7805, +2016-05-30 21:00:00,,, +2016-05-30 21:03:40,3124.0,-10.7805, +2016-05-30 21:15:00,,, +2016-05-30 21:18:36,3123.0,-10.7805, +2016-05-30 21:30:00,,, +2016-05-30 21:33:32,3123.0,-10.811, +2016-05-30 21:45:00,,, +2016-05-30 21:48:27,3122.0,-10.811, +2016-05-30 22:00:00,,, +2016-05-30 22:03:23,3122.0,-10.81, +2016-05-30 22:15:00,,, +2016-05-30 22:18:19,3121.0,-10.81, +2016-05-30 22:30:00,,, +2016-05-30 22:33:15,3121.0,-10.81, +2016-05-30 22:45:00,,, +2016-05-30 22:48:10,3120.0,-10.8416, +2016-05-30 23:00:00,,, +2016-05-30 23:03:06,3119.0,-10.8416, +2016-05-30 23:15:00,,, +2016-05-30 23:18:02,3117.0,-10.8416, +2016-05-30 23:30:00,,, +2016-05-30 23:32:58,3116.0,-10.8416, +2016-05-30 23:45:00,,, +2016-05-30 23:47:53,3116.0,-10.8416, +2016-05-31 00:00:00,,, +2016-05-31 00:02:49,3115.0,-10.8416, +2016-05-31 00:15:00,,, +2016-05-31 00:17:45,3115.0,-10.8722, +2016-05-31 00:30:00,,, +2016-05-31 00:32:41,3114.0,-10.8406, +2016-05-31 00:45:00,,, +2016-05-31 00:47:36,3114.0,-10.8396, +2016-05-31 01:00:00,,, +2016-05-31 01:02:32,3113.0,-10.8732, +2016-05-31 01:15:00,,, +2016-05-31 01:17:28,3112.0,-10.8712, +2016-05-31 01:30:00,,, +2016-05-31 01:32:23,3110.0,-10.8722, +2016-05-31 01:45:00,,, +2016-05-31 01:47:19,3110.0,-10.9058, +2016-05-31 02:00:00,,, +2016-05-31 02:02:14,3110.0,-10.8349, +2016-05-31 02:15:00,,, +2016-05-31 02:17:10,3109.0,-10.9386, +2016-05-31 02:30:00,,, +2016-05-31 02:32:06,3109.0,-10.7757, +2016-05-31 02:45:00,,, +2016-05-31 02:47:02,3109.0,-10.9694, +2016-05-31 03:00:00,,, +2016-05-31 03:01:57,3108.0,-11.0325, +2016-05-31 03:15:00,,, +2016-05-31 03:16:53,3108.0,-10.9029, +2016-05-31 03:30:00,,, +2016-05-31 03:31:48,3107.0,-10.9328, +2016-05-31 03:45:00,,, +2016-05-31 03:46:44,3107.0,-10.9039, +2016-05-31 04:00:00,,, +2016-05-31 04:01:39,3107.0,-10.9357, +2016-05-31 04:15:00,,, +2016-05-31 04:16:35,3107.0,-10.9347, +2016-05-31 04:30:00,,, +2016-05-31 04:31:30,3106.0,-10.9039, +2016-05-31 04:45:00,,, +2016-05-31 04:46:26,3106.0,-10.9029, +2016-05-31 05:00:00,,, +2016-05-31 05:01:21,3106.0,-10.9029, +2016-05-31 05:15:00,,, +2016-05-31 05:16:17,3106.0,-10.9347, +2016-05-31 05:30:00,,, +2016-05-31 05:31:12,3106.0,-10.9029, +2016-05-31 05:45:00,,, +2016-05-31 05:46:08,3106.0,-10.9337, +2016-05-31 06:00:00,,, +2016-05-31 06:01:03,3105.0,-10.9039, +2016-05-31 06:15:00,,, +2016-05-31 06:15:59,3106.0,-10.9029, +2016-05-31 06:30:00,,, +2016-05-31 06:30:54,3106.0,-10.9039, +2016-05-31 06:45:00,,, +2016-05-31 06:45:50,3106.0,-10.9039, +2016-05-31 07:00:00,,, +2016-05-31 07:00:46,3106.0,-10.9039, +2016-05-31 07:15:00,,, +2016-05-31 07:15:41,3107.0,-10.7453, +2016-05-31 07:30:00,,, +2016-05-31 07:30:36,3107.0,-10.7815, +2016-05-31 07:45:00,,, +2016-05-31 07:45:32,3107.0,-10.7188, +2016-05-31 08:00:00,,, +2016-05-31 08:00:27,3109.0,-10.7179, +2016-05-31 08:15:00,,, +2016-05-31 08:15:23,3109.0,-10.8139, +2016-05-31 08:30:00,,, +2016-05-31 08:30:19,3110.0,-10.8072, +2016-05-31 08:45:00,,, +2016-05-31 08:45:14,3112.0,-10.8406, +2016-05-31 09:00:00,,, +2016-05-31 09:00:10,3114.0,-10.8732, +2016-05-31 09:15:00,,, +2016-05-31 09:15:06,3115.0,-10.8416, +2016-05-31 09:30:00,,, +2016-05-31 09:30:01,3116.0,-10.81, +2016-05-31 09:44:57,3117.0,-10.81, +2016-05-31 09:45:00,,, +2016-05-31 09:59:53,3120.0,-10.811, +2016-05-31 10:00:00,,, +2016-05-31 10:14:49,3121.0,-10.811, +2016-05-31 10:15:00,,, +2016-05-31 10:29:44,3122.0,-10.812, +2016-05-31 10:30:00,,, +2016-05-31 10:44:40,3123.0,-10.7805, +2016-05-31 10:45:00,,, +2016-05-31 10:59:36,3124.0,-10.7805, +2016-05-31 11:00:00,,, +2016-05-31 11:14:31,3125.0,-10.7805, +2016-05-31 11:15:00,,, +2016-05-31 11:29:27,3127.0,-10.7805, +2016-05-31 11:30:00,,, +2016-05-31 11:44:23,3128.0,-10.7805, +2016-05-31 11:45:00,,, +2016-05-31 11:59:19,3128.0,-10.7501, +2016-05-31 12:00:00,,, +2016-05-31 12:14:14,3130.0,-10.7491, +2016-05-31 12:15:00,,, +2016-05-31 12:29:10,3131.0,-10.7501, +2016-05-31 12:30:00,,, +2016-05-31 12:44:06,3132.0,-10.7501, +2016-05-31 12:45:00,,, +2016-05-31 12:59:02,3134.0,-10.7501, +2016-05-31 13:00:00,,, +2016-05-31 13:13:57,3134.0,-10.7501, +2016-05-31 13:15:00,,, +2016-05-31 13:28:53,3135.0,-10.7501, +2016-05-31 13:30:00,,, +2016-05-31 13:43:49,3136.0,-10.7501, +2016-05-31 13:45:00,,, +2016-05-31 13:58:45,3136.0,-10.7501, +2016-05-31 14:00:00,,, +2016-05-31 14:13:41,3136.0,-10.7188, +2016-05-31 14:15:00,,, +2016-05-31 14:28:37,3137.0,-10.7198, +2016-05-31 14:30:00,,, +2016-05-31 14:43:40,3138.0,-10.7188, +2016-05-31 14:45:00,,, +2016-05-31 14:58:36,3138.0,-10.7188, +2016-05-31 15:00:00,,, +2016-05-31 15:13:32,3138.0,-10.7188, +2016-05-31 15:15:00,,, +2016-05-31 15:28:28,3138.0,-10.7188, +2016-05-31 15:30:00,,,-4.8792 +2016-05-31 15:43:24,3138.0,-10.7198, +2016-05-31 15:45:00,,,-4.8788 +2016-05-31 15:58:20,3138.0,-10.7188, +2016-05-31 16:00:00,,,-4.8573 +2016-05-31 16:13:16,3139.0,-10.7188, +2016-05-31 16:15:00,,,-4.8573 +2016-05-31 16:28:12,3139.0,-10.7198, +2016-05-31 16:30:00,,,-4.8792 +2016-05-31 16:43:08,3140.0,-10.7198, +2016-05-31 16:45:00,,, +2016-05-31 16:58:04,3139.0,-10.7188, +2016-05-31 17:00:00,,,-4.8792 +2016-05-31 17:13:00,3139.0,-10.7198, +2016-05-31 17:15:00,,, +2016-05-31 17:27:56,3138.0,-10.7188, +2016-05-31 17:30:00,,, +2016-05-31 17:42:52,3138.0,-10.7188, +2016-05-31 17:45:00,,, +2016-05-31 17:57:48,3138.0,-10.7188, +2016-05-31 18:00:00,,,-5.287999999999999 +2016-05-31 18:12:44,3137.0,-10.7188, +2016-05-31 18:15:00,,,-5.3523 +2016-05-31 18:27:40,3136.0,-10.7188, +2016-05-31 18:30:00,,, +2016-05-31 18:42:36,3135.0,-10.7188, +2016-05-31 18:45:00,,, +2016-05-31 18:57:32,3134.0,-10.7491, +2016-05-31 19:00:00,,,-5.2439 +2016-05-31 19:12:28,3132.0,-10.7491, +2016-05-31 19:15:00,,, +2016-05-31 19:27:24,3130.0,-10.7805, +2016-05-31 19:30:00,,,-5.2444 +2016-05-31 19:42:19,3128.0,-10.7491, +2016-05-31 19:45:00,,, +2016-05-31 19:57:15,3127.0,-10.811, +2016-05-31 20:00:00,,,-5.1802 +2016-05-31 20:12:11,3124.0,-10.811, +2016-05-31 20:15:00,,,-5.1802 +2016-05-31 20:27:07,3123.0,-10.811, +2016-05-31 20:30:00,,,-5.1802 +2016-05-31 20:42:03,3122.0,-10.81, +2016-05-31 20:45:00,,,-4.987 +2016-05-31 20:56:58,3121.0,-10.8368, +2016-05-31 21:00:00,,, +2016-05-31 21:12:01,3120.0,-10.8435, +2016-05-31 21:15:00,,,-5.0905 +2016-05-31 21:26:56,3118.0,-10.7434, +2016-05-31 21:30:00,,,-5.1367 +2016-05-31 21:41:52,3117.0,-10.8416, +2016-05-31 21:45:00,,, +2016-05-31 21:56:48,3116.0,-10.9039, +2016-05-31 22:00:00,,,-5.1811 +2016-05-31 22:11:43,3115.0,-10.8081, +2016-05-31 22:15:00,,,-5.0502 +2016-05-31 22:26:39,3115.0,-10.8732, +2016-05-31 22:30:00,,, +2016-05-31 22:41:34,3115.0,-10.8396, +2016-05-31 22:45:00,,, +2016-05-31 22:56:30,3114.0,-10.8377, +2016-05-31 23:00:00,,, +2016-05-31 23:11:25,3113.0,-10.8416, +2016-05-31 23:15:00,,, +2016-05-31 23:26:21,3113.0,-10.8712, +2016-05-31 23:30:00,,, +2016-05-31 23:41:16,3113.0,-10.9039, +2016-05-31 23:45:00,,, +2016-05-31 23:56:12,3111.0,-10.9029, +2016-06-01 00:00:00,,, +2016-06-01 00:11:07,3110.0,-10.9029, +2016-06-01 00:15:00,,,-4.9682 +2016-06-01 00:26:03,3110.0,-10.9029, +2016-06-01 00:30:00,,,-4.9226 +2016-06-01 00:40:58,3109.0,-10.9347, +2016-06-01 00:45:00,,,-4.9226 +2016-06-01 00:55:54,3109.0,-10.9337, +2016-06-01 01:00:00,,,-4.8998 +2016-06-01 01:10:49,3109.0,-10.9029, +2016-06-01 01:15:00,,, +2016-06-01 01:25:45,3109.0,-10.9347, +2016-06-01 01:30:00,,,-4.923 +2016-06-01 01:40:40,3109.0,-10.9029, +2016-06-01 01:45:00,,, +2016-06-01 01:55:36,3108.0,-10.9029, +2016-06-01 02:00:00,,, +2016-06-01 02:10:31,3108.0,-10.9029, +2016-06-01 02:15:00,,, +2016-06-01 02:25:27,3107.0,-10.9347, +2016-06-01 02:30:00,,, +2016-06-01 02:40:23,3107.0,-10.9029, +2016-06-01 02:45:00,,, +2016-06-01 02:55:18,3107.0,-10.9337, +2016-06-01 03:00:00,,, +2016-06-01 03:10:14,3106.0,-10.9039, +2016-06-01 03:15:00,,, +2016-06-01 03:25:09,3106.0,-10.9029, +2016-06-01 03:30:00,,, +2016-06-01 03:40:05,3107.0,-10.9347, +2016-06-01 03:45:00,,, +2016-06-01 03:55:00,3107.0,-10.9347, +2016-06-01 04:00:00,,, +2016-06-01 04:09:55,3107.0,-10.9347, +2016-06-01 04:15:00,,, +2016-06-01 04:24:51,3106.0,-10.9337, +2016-06-01 04:30:00,,, +2016-06-01 04:39:46,3107.0,-10.9337, +2016-06-01 04:45:00,,, +2016-06-01 04:54:42,3107.0,-10.9337, +2016-06-01 05:00:00,,, +2016-06-01 05:09:37,3107.0,-10.9337, +2016-06-01 05:15:00,,, +2016-06-01 05:24:33,3107.0,-10.9337, +2016-06-01 05:30:00,,, +2016-06-01 05:39:28,3107.0,-10.9337, +2016-06-01 05:45:00,,, +2016-06-01 05:54:24,3107.0,-10.9337, +2016-06-01 06:00:00,,, +2016-06-01 06:09:19,3107.0,-10.9337, +2016-06-01 06:15:00,,, +2016-06-01 06:24:14,3107.0,-10.9337, +2016-06-01 06:30:00,,, +2016-06-01 06:39:10,3107.0,-10.9347, +2016-06-01 06:45:00,,, +2016-06-01 06:54:05,3107.0,-10.9337, +2016-06-01 07:00:00,,, +2016-06-01 07:09:08,3107.0,-10.9347, +2016-06-01 07:15:00,,, +2016-06-01 07:24:03,3108.0,-10.9347, +2016-06-01 07:30:00,,, +2016-06-01 07:38:59,3108.0,-10.9347, +2016-06-01 07:45:00,,, +2016-06-01 07:53:54,3109.0,-10.9347, +2016-06-01 08:00:00,,, +2016-06-01 08:08:49,3109.0,-10.9347, +2016-06-01 08:15:00,,, +2016-06-01 08:23:45,3109.0,-10.9347, +2016-06-01 08:30:00,,, +2016-06-01 08:38:40,3109.0,-10.9029, +2016-06-01 08:45:00,,, +2016-06-01 08:53:36,3109.0,-10.9029, +2016-06-01 09:00:00,,, +2016-06-01 09:08:31,3109.0,-10.9029, +2016-06-01 09:15:00,,, +2016-06-01 09:23:27,3109.0,-10.9029, +2016-06-01 09:30:00,,, +2016-06-01 09:38:22,3109.0,-10.9029, +2016-06-01 09:45:00,,, +2016-06-01 09:53:18,3109.0,-10.9029, +2016-06-01 10:00:00,,, +2016-06-01 10:08:13,3110.0,-10.9029, +2016-06-01 10:15:00,,, +2016-06-01 10:23:09,3110.0,-10.9029, +2016-06-01 10:30:00,,, +2016-06-01 10:38:05,3110.0,-10.9029, +2016-06-01 10:45:00,,, +2016-06-01 10:53:00,3110.0,-10.8712, +2016-06-01 11:00:00,,, +2016-06-01 11:07:56,3110.0,-10.8722, +2016-06-01 11:15:00,,, +2016-06-01 11:22:51,3111.0,-10.8712, +2016-06-01 11:30:00,,, +2016-06-01 11:37:47,3112.0,-10.8722, +2016-06-01 11:45:00,,, +2016-06-01 11:52:42,3113.0,-10.8722, +2016-06-01 12:00:00,,, +2016-06-01 12:07:38,3113.0,-10.8722, +2016-06-01 12:15:00,,, +2016-06-01 12:22:33,3113.0,-10.9039, +2016-06-01 12:30:00,,, +2016-06-01 12:37:29,3113.0,-10.8406, +2016-06-01 12:45:00,,, +2016-06-01 12:52:25,3114.0,-10.8406, +2016-06-01 13:00:00,,, +2016-06-01 13:07:20,3114.0,-10.8406, +2016-06-01 13:15:00,,, +2016-06-01 13:22:16,3114.0,-10.8406, +2016-06-01 13:30:00,,, +2016-06-01 13:37:11,3115.0,-10.8406, +2016-06-01 13:45:00,,, +2016-06-01 13:52:07,3115.0,-10.8722, +2016-06-01 14:00:00,,, +2016-06-01 14:07:02,3115.0,-10.8416, +2016-06-01 14:15:00,,, +2016-06-01 14:21:58,3116.0,-10.8406, +2016-06-01 14:30:00,,, +2016-06-01 14:36:54,3116.0,-10.8416, +2016-06-01 14:45:00,,, +2016-06-01 14:51:49,3116.0,-10.8406, +2016-06-01 15:00:00,,, +2016-06-01 15:06:45,3117.0,-10.8406, +2016-06-01 15:15:00,,, +2016-06-01 15:21:40,3117.0,-10.8416, +2016-06-01 15:30:00,,, +2016-06-01 15:36:36,3118.0,-10.8416, +2016-06-01 15:45:00,,, +2016-06-01 15:51:32,3118.0,-10.8416, +2016-06-01 16:00:00,,, +2016-06-01 16:06:27,3118.0,-10.8416, +2016-06-01 16:15:00,,, +2016-06-01 16:21:23,3119.0,-10.8416, +2016-06-01 16:30:00,,, +2016-06-01 16:36:19,3120.0,-10.81, +2016-06-01 16:45:00,,, +2016-06-01 16:51:15,3120.0,-10.8416, +2016-06-01 17:00:00,,,-4.9449 +2016-06-01 17:06:10,3120.0,-10.8416, +2016-06-01 17:15:00,,,-4.923 +2016-06-01 17:21:06,3120.0,-10.81, +2016-06-01 17:30:00,,,-4.9234 +2016-06-01 17:36:02,3121.0,-10.8091, +2016-06-01 17:45:00,,,-4.923 +2016-06-01 17:50:58,3121.0,-10.8091, +2016-06-01 18:00:00,,,-4.9011 +2016-06-01 18:05:53,3121.0,-10.8091, +2016-06-01 18:15:00,,,-4.902 +2016-06-01 18:20:49,3121.0,-10.811, +2016-06-01 18:30:00,,, +2016-06-01 18:35:45,3121.0,-10.7786, +2016-06-01 18:45:00,,, +2016-06-01 18:50:40,3121.0,-10.81, +2016-06-01 19:00:00,,,-4.9015 +2016-06-01 19:05:36,3121.0,-10.8416, +2016-06-01 19:15:00,,, +2016-06-01 19:20:32,3120.0,-10.81, +2016-06-01 19:30:00,,, +2016-06-01 19:35:27,3120.0,-10.8406, +2016-06-01 19:45:00,,, +2016-06-01 19:50:23,3119.0,-10.8091, +2016-06-01 20:00:00,,, +2016-06-01 20:05:19,3118.0,-10.81, +2016-06-01 20:15:00,,, +2016-06-01 20:20:14,3118.0,-10.8091, +2016-06-01 20:30:00,,, +2016-06-01 20:35:10,3117.0,-10.8416, +2016-06-01 20:45:00,,, +2016-06-01 20:50:06,3116.0,-10.8406, +2016-06-01 21:00:00,,, +2016-06-01 21:05:01,3116.0,-10.8406, +2016-06-01 21:15:00,,, +2016-06-01 21:19:57,3115.0,-10.8406, +2016-06-01 21:30:00,,, +2016-06-01 21:34:53,3115.0,-10.8406, +2016-06-01 21:45:00,,, +2016-06-01 21:49:48,3114.0,-10.8406, +2016-06-01 22:00:00,,, +2016-06-01 22:04:44,3114.0,-10.8722, +2016-06-01 22:15:00,,, +2016-06-01 22:19:40,3114.0,-10.8722, +2016-06-01 22:30:00,,, +2016-06-01 22:34:35,3113.0,-10.8722, +2016-06-01 22:45:00,,, +2016-06-01 22:49:31,3113.0,-10.8406, +2016-06-01 23:00:00,,, +2016-06-01 23:04:27,3111.0,-10.8712, +2016-06-01 23:15:00,,, +2016-06-01 23:19:22,3110.0,-10.8712, +2016-06-01 23:30:00,,, +2016-06-01 23:34:18,3110.0,-10.9029, +2016-06-01 23:45:00,,, +2016-06-01 23:49:13,3110.0,-10.8712, +2016-06-02 00:00:00,,, +2016-06-02 00:15:00,,, +2016-06-02 00:30:00,,, +2016-06-02 00:45:00,,, +2016-06-02 01:00:00,,, +2016-06-02 01:03:51,3108.0,-10.9029, +2016-06-02 01:15:00,,, +2016-06-02 01:18:47,3108.0,-10.9029, +2016-06-02 01:30:00,,, +2016-06-02 01:33:42,3108.0,-10.9029, +2016-06-02 01:45:00,,, +2016-06-02 01:48:38,3107.0,-10.9029, +2016-06-02 02:00:00,,, +2016-06-02 02:03:33,3107.0,-10.9029, +2016-06-02 02:15:00,,, +2016-06-02 02:18:29,3107.0,-10.9029, +2016-06-02 02:30:00,,, +2016-06-02 02:33:25,3107.0,-10.9029, +2016-06-02 02:45:00,,, +2016-06-02 02:48:20,3107.0,-10.9337, +2016-06-02 03:00:00,,, +2016-06-02 03:03:16,3106.0,-10.9029, +2016-06-02 03:15:00,,, +2016-06-02 03:18:11,3106.0,-10.9337, +2016-06-02 03:30:00,,, +2016-06-02 03:33:07,3106.0,-10.9029, +2016-06-02 03:45:00,,, +2016-06-02 03:48:02,3106.0,-10.9337, +2016-06-02 04:00:00,,, +2016-06-02 04:02:57,3106.0,-10.9347, +2016-06-02 04:15:00,,, +2016-06-02 04:17:53,3106.0,-10.9029, +2016-06-02 04:30:00,,, +2016-06-02 04:32:48,3106.0,-10.9337, +2016-06-02 04:45:00,,, +2016-06-02 04:47:44,3106.0,-10.9337, +2016-06-02 05:00:00,,, +2016-06-02 05:02:39,3106.0,-10.9337, +2016-06-02 05:15:00,,, +2016-06-02 05:17:35,3106.0,-10.9337, +2016-06-02 05:30:00,,, +2016-06-02 05:32:31,3106.0,-10.9337, +2016-06-02 05:45:00,,, +2016-06-02 05:47:26,3106.0,-10.9337, +2016-06-02 06:00:00,,, +2016-06-02 06:02:22,3106.0,-10.9337, +2016-06-02 06:15:00,,, +2016-06-02 06:17:17,3105.0,-10.902, +2016-06-02 06:30:00,,, +2016-06-02 06:32:13,3106.0,-10.9029, +2016-06-02 06:45:00,,, +2016-06-02 06:47:08,3106.0,-10.9337, +2016-06-02 07:00:00,,, +2016-06-02 07:02:04,3107.0,-10.9029, +2016-06-02 07:15:00,,, +2016-06-02 07:16:59,3107.0,-10.9029, +2016-06-02 07:30:00,,, +2016-06-02 07:32:02,3107.0,-10.9029, +2016-06-02 07:45:00,,, +2016-06-02 07:46:57,3109.0,-10.9029, +2016-06-02 08:00:00,,, +2016-06-02 08:01:53,3107.0,-10.8081, +2016-06-02 08:15:00,,, +2016-06-02 08:16:48,3109.0,-10.8722, +2016-06-02 08:30:00,,, +2016-06-02 08:31:44,3109.0,-10.8377, +2016-06-02 08:45:00,,, +2016-06-02 08:46:39,3109.0,-11.0325, +2016-06-02 09:00:00,,, +2016-06-02 09:01:35,3109.0,-10.9087, +2016-06-02 09:15:00,,, +2016-06-02 09:16:30,3113.0,-10.8406, +2016-06-02 09:30:00,,, +2016-06-02 09:31:26,3114.0,-10.8712, +2016-06-02 09:45:00,,, +2016-06-02 09:46:21,3114.0,-10.8712, +2016-06-02 10:00:00,,, +2016-06-02 10:01:17,3114.0,-10.8712, +2016-06-02 10:15:00,,, +2016-06-02 10:16:13,3114.0,-10.8712, +2016-06-02 10:30:00,,, +2016-06-02 10:31:08,3114.0,-10.8712, +2016-06-02 10:45:00,,, +2016-06-02 10:46:04,3115.0,-10.8712, +2016-06-02 11:00:00,,, +2016-06-02 11:00:59,3114.0,-10.8722, +2016-06-02 11:15:00,,,-4.8577 +2016-06-02 11:15:55,3115.0,-10.8712, +2016-06-02 11:30:00,,,74.4192 +2016-06-02 11:30:50,3130.0,-10.3006, +2016-06-02 11:45:00,,,26.8525 +2016-06-02 11:45:46,3132.0,-10.4194, +2016-06-02 12:00:00,,,27.4968 +2016-06-02 12:00:42,3134.0,-10.4194, +2016-06-02 12:15:00,,,27.0488 +2016-06-02 12:15:37,3132.0,-10.4796, +2016-06-02 12:30:00,,,27.1474 +2016-06-02 12:30:33,3133.0,-10.4796, +2016-06-02 12:45:00,,,27.3993 +2016-06-02 12:45:28,3135.0,-10.449000000000002, +2016-06-02 13:00:00,,,27.3993 +2016-06-02 13:00:24,3136.0,-10.4796, +2016-06-02 13:15:00,,,27.4992 +2016-06-02 13:15:19,3136.0,-10.4796, +2016-06-02 13:30:00,,,27.5995 +2016-06-02 13:30:15,3138.0,-10.449000000000002, +2016-06-02 13:45:00,,,27.4017 +2016-06-02 13:45:11,3138.0,-10.449000000000002, +2016-06-02 14:00:00,,,27.7001 +2016-06-02 14:00:06,3139.0,-10.4796, +2016-06-02 14:15:00,,,27.3993 +2016-06-02 14:15:02,3140.0,-10.4796, +2016-06-02 14:29:58,3139.0,-10.4787, +2016-06-02 14:30:00,,,27.0056 +2016-06-02 14:44:53,3141.0,-10.4787, +2016-06-02 14:45:00,,,27.008000000000006 +2016-06-02 14:59:49,3142.0,-10.4787, +2016-06-02 15:00:00,,,26.9074 +2016-06-02 15:14:45,3142.0,-10.4481, +2016-06-02 15:15:00,,,26.9576 +2016-06-02 15:29:41,3143.0,-10.4787, +2016-06-02 15:30:00,,,26.862 +2016-06-02 15:44:37,3143.0,-10.4796, +2016-06-02 15:45:00,,,26.9576 +2016-06-02 15:59:32,3143.0,-10.4787, +2016-06-02 16:00:00,,,27.008000000000006 +2016-06-02 16:14:28,3143.0,-10.4787, +2016-06-02 16:15:00,,,27.008000000000006 +2016-06-02 16:29:24,3143.0,-10.4787, +2016-06-02 16:30:00,,,26.9576 +2016-06-02 16:44:20,3143.0,-10.4796, +2016-06-02 16:45:00,,,26.96 +2016-06-02 16:59:16,3143.0,-10.4787, +2016-06-02 17:00:00,,,27.0056 +2016-06-02 17:14:11,3144.0,-10.4481, +2016-06-02 17:15:00,,,27.1547 +2016-06-02 17:29:07,3144.0,-10.4787, +2016-06-02 17:30:00,,,27.056 +2016-06-02 17:44:03,3143.0,-10.4787, +2016-06-02 17:45:00,,,27.0056 +2016-06-02 17:58:59,3143.0,-10.4787, +2016-06-02 18:00:00,,,27.056 +2016-06-02 18:13:55,3143.0,-10.4787, +2016-06-02 18:15:00,,,27.1041 +2016-06-02 18:28:50,3141.0,-10.4787, +2016-06-02 18:30:00,,,26.9576 +2016-06-02 18:43:46,3140.0,-10.4778, +2016-06-02 18:45:00,,,26.9576 +2016-06-02 18:58:42,3138.0,-10.4778, +2016-06-02 19:00:00,,,26.8096 +2016-06-02 19:13:38,3138.0,-10.5085, +2016-06-02 19:15:00,,,26.7691 +2016-06-02 19:28:33,3137.0,-10.4778, +2016-06-02 19:30:00,,,26.812 +2016-06-02 19:43:29,3136.0,-10.5085, +2016-06-02 19:45:00,,,26.7667 +2016-06-02 19:58:25,3136.0,-10.5085, +2016-06-02 20:00:00,,,27.0104 +2016-06-02 20:13:21,3135.0,-10.5085, +2016-06-02 20:15:00,,,26.96 +2016-06-02 20:28:16,3134.0,-10.5076, +2016-06-02 20:30:00,,,26.9672 +2016-06-02 20:43:12,3132.0,-10.5383, +2016-06-02 20:45:00,,,26.96 +2016-06-02 20:58:08,3131.0,-10.5383, +2016-06-02 21:00:00,,,26.8644 +2016-06-02 21:13:04,3130.0,-10.5692, +2016-06-02 21:15:00,,,26.9122 +2016-06-02 21:27:59,3128.0,-10.5682, +2016-06-02 21:30:00,,,26.9122 +2016-06-02 21:42:55,3128.0,-10.5682, +2016-06-02 21:45:00,,,26.8692 +2016-06-02 21:57:51,3127.0,-10.5682, +2016-06-02 22:00:00,,,26.9672 +2016-06-02 22:12:46,3126.0,-10.5682, +2016-06-02 22:15:00,,,26.7739 +2016-06-02 22:27:42,3125.0,-10.5682, +2016-06-02 22:30:00,,,26.8692 +2016-06-02 22:42:38,3124.0,-10.5682, +2016-06-02 22:45:00,,,26.8692 +2016-06-02 22:57:33,3123.0,-10.5682, +2016-06-02 23:00:00,,,26.8716 +2016-06-02 23:12:29,3123.0,-10.5682, +2016-06-02 23:15:00,,,26.7739 +2016-06-02 23:27:24,3123.0,-10.5982, +2016-06-02 23:30:00,,,26.8215 +2016-06-02 23:42:20,3122.0,-10.5982, +2016-06-02 23:45:00,,,26.8191 +2016-06-02 23:57:16,3122.0,-10.5982, +2016-06-03 00:00:00,,,26.7739 +2016-06-03 00:12:11,3122.0,-10.5982, +2016-06-03 00:15:00,,,26.7715 +2016-06-03 00:27:07,3121.0,-10.5982, +2016-06-03 00:30:00,,,26.7739 +2016-06-03 00:42:03,3121.0,-10.5982, +2016-06-03 00:45:00,,,26.8191 +2016-06-03 00:56:58,3121.0,-10.5982, +2016-06-03 01:00:00,,,26.6765 +2016-06-03 01:11:54,3121.0,-10.5982, +2016-06-03 01:15:00,,,26.7691 +2016-06-03 01:26:49,3120.0,-10.5982, +2016-06-03 01:30:00,,,26.6765 +2016-06-03 01:41:45,3120.0,-10.5982, +2016-06-03 01:45:00,,,26.6268 +2016-06-03 01:56:40,3120.0,-10.5982, +2016-06-03 02:00:00,,,26.724 +2016-06-03 02:11:36,3120.0,-10.5982, +2016-06-03 02:15:00,,,26.8215 +2016-06-03 02:26:31,3119.0,-10.5982, +2016-06-03 02:30:00,,,26.6315 +2016-06-03 02:41:26,3119.0,-10.5982, +2016-06-03 02:45:00,,,26.5795 +2016-06-03 02:56:22,3119.0,-10.5982, +2016-06-03 03:00:00,,,26.5842 +2016-06-03 03:11:17,3119.0,-10.5982, +2016-06-03 03:15:00,,,26.6315 +2016-06-03 03:26:13,3119.0,-10.5982, +2016-06-03 03:30:00,,,26.6292 +2016-06-03 03:41:08,3119.0,-10.5982, +2016-06-03 03:45:00,,,26.5819 +2016-06-03 03:56:04,3119.0,-10.5982, +2016-06-03 04:00:00,,,26.6268 +2016-06-03 04:10:59,3119.0,-10.5982, +2016-06-03 04:15:00,,,26.6315 +2016-06-03 04:25:55,3119.0,-10.5982, +2016-06-03 04:30:00,,,26.4852 +2016-06-03 04:40:50,3119.0,-10.5982, +2016-06-03 04:45:00,,,26.5819 +2016-06-03 04:55:46,3120.0,-10.5982, +2016-06-03 05:00:00,,,26.5323 +2016-06-03 05:10:41,3120.0,-10.5982, +2016-06-03 05:15:00,,,26.6789 +2016-06-03 05:25:37,3120.0,-10.5982, +2016-06-03 05:30:00,,,26.6315 +2016-06-03 05:40:32,3120.0,-10.5982, +2016-06-03 05:45:00,,,26.5795 +2016-06-03 05:55:28,3120.0,-10.5982, +2016-06-03 06:00:00,,,26.6315 +2016-06-03 06:10:23,3120.0,-10.5982, +2016-06-03 06:15:00,,,26.5819 +2016-06-03 06:25:19,3121.0,-10.5982, +2016-06-03 06:30:00,,,26.7763 +2016-06-03 06:40:15,3121.0,-10.5982, +2016-06-03 06:45:00,,,26.7263 +2016-06-03 06:55:10,3122.0,-10.5982, +2016-06-03 07:00:00,,,26.8239 +2016-06-03 07:10:05,3121.0,-10.5982, +2016-06-03 07:15:00,,,26.3396 +2016-06-03 07:25:01,3122.0,-10.5982, +2016-06-03 07:30:00,,,26.1948 +2016-06-03 07:39:56,3122.0,-10.5982, +2016-06-03 07:45:00,,,26.2438 +2016-06-03 07:54:52,3123.0,-10.5982, +2016-06-03 08:00:00,,,26.1948 +2016-06-03 08:09:47,3123.0,-10.5673, +2016-06-03 08:15:00,,,26.0995 +2016-06-03 08:24:43,3125.0,-10.5982, +2016-06-03 08:30:00,,,26.2415 +2016-06-03 08:39:38,3127.0,-10.5682, +2016-06-03 08:45:00,,,26.2438 +2016-06-03 08:54:34,3128.0,-10.5682, +2016-06-03 09:00:00,,,26.1506 +2016-06-03 09:09:30,3128.0,-10.5682, +2016-06-03 09:15:00,,,26.2484 +2016-06-03 09:24:25,3130.0,-10.5682, +2016-06-03 09:30:00,,,26.1995 +2016-06-03 09:39:21,3131.0,-10.5383, +2016-06-03 09:45:00,,,26.2952 +2016-06-03 09:54:17,3133.0,-10.5383, +2016-06-03 10:00:00,,,26.2018 +2016-06-03 10:09:12,3135.0,-10.5076, +2016-06-03 10:15:00,,,26.2461 +2016-06-03 10:24:08,3136.0,-10.5085, +2016-06-03 10:30:00,,,26.342 +2016-06-03 10:39:04,3136.0,-10.5085, +2016-06-03 10:45:00,,,26.2952 +2016-06-03 10:54:00,3138.0,-10.5085, +2016-06-03 11:00:00,,,26.2484 +2016-06-03 11:08:56,3138.0,-10.4778, +2016-06-03 11:15:00,,,26.342 +2016-06-03 11:23:51,3139.0,-10.4778, +2016-06-03 11:30:00,,,26.2952 +2016-06-03 11:38:47,3141.0,-10.4778, +2016-06-03 11:45:00,,,26.3912 +2016-06-03 11:53:43,3142.0,-10.4481, +2016-06-03 12:00:00,,,26.4381 +2016-06-03 12:08:39,3143.0,-10.4787, +2016-06-03 12:15:00,,,26.3022 +2016-06-03 12:23:35,3143.0,-10.4787, +2016-06-03 12:30:00,,,26.3045 +2016-06-03 12:38:31,3145.0,-10.4787, +2016-06-03 12:45:00,,,26.2998 +2016-06-03 12:53:27,3145.0,-10.4481, +2016-06-03 13:00:00,,,26.2998 +2016-06-03 13:08:23,3146.0,-10.4481, +2016-06-03 13:15:00,,,26.2998 +2016-06-03 13:23:19,3146.0,-10.4175, +2016-06-03 13:30:00,,,26.349 +2016-06-03 13:38:15,3148.0,-10.4185, +2016-06-03 13:45:00,,,26.3959 +2016-06-03 13:53:11,3148.0,-10.4185, +2016-06-03 14:00:00,,,26.2088 +2016-06-03 14:08:07,3149.0,-10.4185, +2016-06-03 14:15:00,,,26.2554 +2016-06-03 14:23:03,3150.0,-10.4185, +2016-06-03 14:30:00,,,26.2554 +2016-06-03 14:37:59,3150.0,-10.4194, +2016-06-03 14:45:00,,,26.2554 +2016-06-03 14:52:55,3151.0,-10.4185, +2016-06-03 15:00:00,,,26.5842 +2016-06-03 15:07:51,3152.0,-10.4194, +2016-06-03 15:15:00,,,26.641 +2016-06-03 15:22:47,3152.0,-10.3889, +2016-06-03 15:30:00,,,26.596 +2016-06-03 15:37:43,3152.0,-10.4185, +2016-06-03 15:45:00,,,26.067 +2016-06-03 15:52:39,3152.0,-10.3889, +2016-06-03 16:00:00,,,26.6528 +2016-06-03 16:07:36,3152.0,-10.3889, +2016-06-03 16:15:00,,,26.596 +2016-06-03 16:22:32,3152.0,-10.3889, +2016-06-03 16:30:00,,,26.5017 +2016-06-03 16:37:35,3152.0,-10.3889, +2016-06-03 16:45:00,,,26.5559 +2016-06-03 16:52:31,3151.0,-10.4194, +2016-06-03 17:00:00,,,26.0739 +2016-06-03 17:07:27,3151.0,-10.4185, +2016-06-03 17:15:00,,,26.1645 +2016-06-03 17:22:23,3150.0,-10.4185, +2016-06-03 17:30:00,,,26.0739 +2016-06-03 17:37:19,3150.0,-10.4185, +2016-06-03 17:45:00,,,26.5559 +2016-06-03 17:52:15,3150.0,-10.3889, +2016-06-03 18:00:00,,,26.4546 +2016-06-03 18:07:11,3150.0,-10.3889, +2016-06-03 18:15:00,,,26.4146 +2016-06-03 18:22:08,3150.0,-10.388, +2016-06-03 18:30:00,,,26.4616 +2016-06-03 18:37:04,3149.0,-10.388, +2016-06-03 18:45:00,,,26.5087 +2016-06-03 18:52:00,3148.0,-10.388, +2016-06-03 19:00:00,,,26.4123 +2016-06-03 19:06:56,3146.0,-10.4175, +2016-06-03 19:15:00,,,26.4616 +2016-06-03 19:21:52,3145.0,-10.4175, +2016-06-03 19:30:00,,,26.4616 +2016-06-03 19:36:48,3145.0,-10.4175, +2016-06-03 19:45:00,,,26.4123 +2016-06-03 19:51:51,3143.0,-10.4175, +2016-06-03 20:00:00,,,26.4616 +2016-06-03 20:06:46,3143.0,-10.4175, +2016-06-03 20:15:00,,,25.8406 +2016-06-03 20:21:42,3140.0,-10.4472, +2016-06-03 20:30:00,,,25.8406 +2016-06-03 20:36:38,3138.0,-10.4472, +2016-06-03 20:45:00,,,25.8867 +2016-06-03 20:51:34,3138.0,-10.4778, +2016-06-03 21:00:00,,,25.7465 +2016-06-03 21:06:30,3136.0,-10.4778, +2016-06-03 21:15:00,,,25.8406 +2016-06-03 21:21:26,3135.0,-10.4778, +2016-06-03 21:30:00,,,25.836 +2016-06-03 21:36:22,3134.0,-10.4769, +2016-06-03 21:45:00,,,25.6984 +2016-06-03 21:51:18,3132.0,-10.5085, +2016-06-03 22:00:00,,,25.7465 +2016-06-03 22:06:14,3131.0,-10.4769, +2016-06-03 22:15:00,,,25.8406 +2016-06-03 22:21:10,3130.0,-10.5076, +2016-06-03 22:30:00,,,25.7465 +2016-06-03 22:36:05,3129.0,-10.5076, +2016-06-03 22:45:00,,,25.7465 +2016-06-03 22:51:01,3128.0,-10.5076, +2016-06-03 23:00:00,,,25.7947 +2016-06-03 23:05:57,3128.0,-10.5066, +2016-06-03 23:15:00,,,25.7465 +2016-06-03 23:20:52,3127.0,-10.5066, +2016-06-03 23:30:00,,,25.8406 +2016-06-03 23:35:48,3126.0,-10.5066, +2016-06-03 23:45:00,,,25.7007 +2016-06-03 23:50:44,3124.0,-10.5374, +2016-06-04 00:00:00,,,25.7947 +2016-06-04 00:05:39,3123.0,-10.5374, +2016-06-04 00:15:00,,,25.7007 +2016-06-04 00:20:35,3123.0,-10.5374, +2016-06-04 00:30:00,,,25.7007 +2016-06-04 00:35:30,3122.0,-10.5682, +2016-06-04 00:45:00,,,25.607 +2016-06-04 00:50:26,3122.0,-10.5673, +2016-06-04 01:00:00,,,25.7465 +2016-06-04 01:05:22,3122.0,-10.5682, +2016-06-04 01:15:00,,,25.8406 +2016-06-04 01:20:17,3121.0,-10.5682, +2016-06-04 01:30:00,,,26.0786 +2016-06-04 01:35:13,3122.0,-10.5682, +2016-06-04 01:45:00,,,26.0786 +2016-06-04 01:50:08,3121.0,-10.5673, +2016-06-04 02:00:00,,,26.0786 +2016-06-04 02:05:03,3121.0,-10.5673, +2016-06-04 02:15:00,,,25.7465 +2016-06-04 02:19:59,3119.0,-10.5673, +2016-06-04 02:30:00,,,25.8406 +2016-06-04 02:34:54,3119.0,-10.5673, +2016-06-04 02:45:00,,,25.8406 +2016-06-04 02:49:50,3118.0,-10.5673, +2016-06-04 03:00:00,,,25.8406 +2016-06-04 03:04:46,3118.0,-10.5982, +2016-06-04 03:15:00,,,25.797 +2016-06-04 03:19:41,3117.0,-10.5982, +2016-06-04 03:30:00,,,25.8429 +2016-06-04 03:34:37,3117.0,-10.5982, +2016-06-04 03:45:00,,,25.8867 +2016-06-04 03:49:32,3116.0,-10.5982, +2016-06-04 04:00:00,,,26.1343 +2016-06-04 04:04:28,3116.0,-10.5673, +2016-06-04 04:15:00,,,26.0345 +2016-06-04 04:19:23,3116.0,-10.5973, +2016-06-04 04:30:00,,,26.1738 +2016-06-04 04:34:19,3116.0,-10.5982, +2016-06-04 04:45:00,,,26.2204 +2016-06-04 04:49:14,3115.0,-10.5982, +2016-06-04 05:00:00,,,26.2764 +2016-06-04 05:04:09,3115.0,-10.5982, +2016-06-04 05:15:00,,,26.132 +2016-06-04 05:19:05,3115.0,-10.5973, +2016-06-04 05:30:00,,,25.9813 +2016-06-04 05:34:00,3115.0,-10.5973, +2016-06-04 05:45:00,,,26.4146 +2016-06-04 05:48:55,3115.0,-10.5982, +2016-06-04 06:00:00,,,26.1273 +2016-06-04 06:03:51,3114.0,-10.5973, +2016-06-04 06:15:00,,,26.3185 +2016-06-04 06:18:46,3115.0,-10.5973, +2016-06-04 06:30:00,,,26.2718 +2016-06-04 06:33:41,3115.0,-10.5973, +2016-06-04 06:45:00,,,26.3677 +2016-06-04 06:48:37,3115.0,-10.5982, +2016-06-04 07:00:00,,,26.1273 +2016-06-04 07:03:32,3115.0,-10.5982, +2016-06-04 07:15:00,,,26.2718 +2016-06-04 07:18:28,3116.0,-10.5982, +2016-06-04 07:30:00,,,26.3677 +2016-06-04 07:33:23,3116.0,-10.5673, +2016-06-04 07:45:00,,,26.4146 +2016-06-04 07:48:18,3118.0,-10.5673, +2016-06-04 08:00:00,,,26.4146 +2016-06-04 08:03:14,3118.0,-10.5673, +2016-06-04 08:15:00,,,26.5111 +2016-06-04 08:18:09,3120.0,-10.5673, +2016-06-04 08:30:00,,,26.5606 +2016-06-04 08:33:05,3121.0,-10.5682, +2016-06-04 08:45:00,,,26.6576 +2016-06-04 08:48:00,3122.0,-10.5374, +2016-06-04 09:00:00,,,26.8024 +2016-06-04 09:02:56,3123.0,-10.5066, +2016-06-04 09:15:00,,,26.6576 +2016-06-04 09:17:51,3125.0,-10.5066, +2016-06-04 09:30:00,,,26.7073 +2016-06-04 09:32:47,3127.0,-10.5076, +2016-06-04 09:45:00,,,26.6079 +2016-06-04 09:47:43,3129.0,-10.5076, +2016-06-04 10:00:00,,,26.5158 +2016-06-04 10:02:38,3131.0,-10.5076, +2016-06-04 10:15:00,,,26.5229 +2016-06-04 10:17:34,3133.0,-10.4778, +2016-06-04 10:30:00,,,26.5701 +2016-06-04 10:32:30,3136.0,-10.4778, +2016-06-04 10:45:00,,,26.6599 +2016-06-04 10:47:25,3137.0,-10.4778, +2016-06-04 11:00:00,,,26.6599 +2016-06-04 11:02:21,3138.0,-10.4472, +2016-06-04 11:15:00,,,26.6623 +2016-06-04 11:17:17,3140.0,-10.4472, +2016-06-04 11:30:00,,,26.6599 +2016-06-04 11:32:13,3143.0,-10.4481, +2016-06-04 11:45:00,,,26.5677 +2016-06-04 11:47:08,3143.0,-10.4175, +2016-06-04 12:00:00,,,26.5748 +2016-06-04 12:02:04,3145.0,-10.4175, +2016-06-04 12:15:00,,,26.615 +2016-06-04 12:17:00,3146.0,-10.4175, +2016-06-04 12:30:00,,,26.2788 +2016-06-04 12:31:56,3148.0,-10.4175, +2016-06-04 12:45:00,,,26.5748 +2016-06-04 12:46:53,3149.0,-10.388, +2016-06-04 13:00:00,,,26.4781 +2016-06-04 13:01:49,3150.0,-10.388, +2016-06-04 13:15:00,,,26.6718 +2016-06-04 13:16:45,3150.0,-10.388, +2016-06-04 13:30:00,,,26.622 +2016-06-04 13:31:41,3150.0,-10.388, +2016-06-04 13:45:00,,,26.6623 +2016-06-04 13:46:37,3151.0,-10.3889, +2016-06-04 14:00:00,,,26.4781 +2016-06-04 14:01:34,3151.0,-10.3889, +2016-06-04 14:15:00,,,26.4334 +2016-06-04 14:16:30,3151.0,-10.3585, +2016-06-04 14:30:00,,,26.4734 +2016-06-04 14:31:26,3151.0,-10.3585, +2016-06-04 14:45:00,,,26.4734 +2016-06-04 14:46:22,3151.0,-10.3585, +2016-06-04 15:00:00,,,26.2858 +2016-06-04 15:01:18,3151.0,-10.3889, +2016-06-04 15:15:00,,,26.3841 +2016-06-04 15:16:14,3152.0,-10.3585, +2016-06-04 15:30:00,,,26.4334 +2016-06-04 15:31:11,3152.0,-10.3585, +2016-06-04 15:45:00,,,26.4264 +2016-06-04 15:46:07,3152.0,-10.3585, +2016-06-04 16:00:00,,,26.2391 +2016-06-04 16:01:03,3152.0,-10.3585, +2016-06-04 16:15:00,,,26.4334 +2016-06-04 16:15:59,3152.0,-10.3585, +2016-06-04 16:30:00,,,26.4334 +2016-06-04 16:30:55,3152.0,-10.3585, +2016-06-04 16:45:00,,,26.4334 +2016-06-04 16:45:51,3152.0,-10.3585, +2016-06-04 17:00:00,,,26.3841 +2016-06-04 17:00:47,3152.0,-10.3585, +2016-06-04 17:15:00,,,26.4805 +2016-06-04 17:15:43,3152.0,-10.3585, +2016-06-04 17:30:00,,,27.0656 +2016-06-04 17:30:39,3152.0,-10.329, +2016-06-04 17:45:00,,,27.0656 +2016-06-04 17:45:36,3152.0,-10.329, +2016-06-04 18:00:00,,,27.068 +2016-06-04 18:00:32,3152.0,-10.329, +2016-06-04 18:15:00,,,27.0656 +2016-06-04 18:15:28,3152.0,-10.3281, +2016-06-04 18:30:00,,,26.9696 +2016-06-04 18:30:24,3151.0,-10.3585, +2016-06-04 18:45:00,,,26.9194 +2016-06-04 18:45:20,3150.0,-10.3585, +2016-06-04 19:00:00,,,26.9672 +2016-06-04 19:00:16,3150.0,-10.3585, +2016-06-04 19:15:00,,,27.0176 +2016-06-04 19:15:12,3149.0,-10.3585, +2016-06-04 19:30:00,,,26.9218 +2016-06-04 19:30:08,3148.0,-10.3585, +2016-06-04 19:45:00,,,27.0152 +2016-06-04 19:45:05,3147.0,-10.3585, +2016-06-04 20:00:00,,,26.917 +2016-06-04 20:00:01,3145.0,-10.3576, +2016-06-04 20:14:57,3144.0,-10.3576, +2016-06-04 20:15:00,,,26.917 +2016-06-04 20:29:53,3143.0,-10.3871, +2016-06-04 20:30:00,,,26.8191 +2016-06-04 20:44:49,3142.0,-10.3871, +2016-06-04 20:45:00,,,26.8692 +2016-06-04 20:59:45,3139.0,-10.3871, +2016-06-04 21:00:00,,,26.7715 +2016-06-04 21:14:41,3138.0,-10.3871, +2016-06-04 21:15:00,,,26.8692 +2016-06-04 21:29:37,3138.0,-10.4175, +2016-06-04 21:30:00,,,26.6741 +2016-06-04 21:44:33,3136.0,-10.4175, +2016-06-04 21:45:00,,,26.7715 +2016-06-04 21:59:29,3135.0,-10.4175, +2016-06-04 22:00:00,,,26.8191 +2016-06-04 22:14:24,3135.0,-10.4166, +2016-06-04 22:15:00,,,26.724 +2016-06-04 22:29:20,3133.0,-10.4166, +2016-06-04 22:30:00,,,26.6741 +2016-06-04 22:44:16,3132.0,-10.4166, +2016-06-04 22:45:00,,,26.8215 +2016-06-04 22:59:12,3131.0,-10.4166, +2016-06-04 23:00:00,,,26.7715 +2016-06-04 23:14:08,3130.0,-10.4166, +2016-06-04 23:15:00,,,26.724 +2016-06-04 23:29:04,3129.0,-10.4166, +2016-06-04 23:30:00,,,26.8215 +2016-06-04 23:44:00,3128.0,-10.4472, +2016-06-04 23:45:00,,,26.8215 +2016-06-04 23:58:56,3128.0,-10.4462, +2016-06-05 00:00:00,,,26.8191 +2016-06-05 00:13:52,3127.0,-10.4769, +2016-06-05 00:15:00,,,26.7715 +2016-06-05 00:28:48,3127.0,-10.4769, +2016-06-05 00:30:00,,,26.724 +2016-06-05 00:43:43,3127.0,-10.4462, +2016-06-05 00:45:00,,,26.7715 +2016-06-05 00:58:39,3126.0,-10.4778, +2016-06-05 01:00:00,,,26.7786 +2016-06-05 01:13:39,3124.0,-10.4769, +2016-06-05 01:15:00,,,26.724 +2016-06-05 01:28:35,3124.0,-10.4769, +2016-06-05 01:30:00,,,26.724 +2016-06-05 01:43:31,3123.0,-10.4769, +2016-06-05 01:45:00,,,26.8191 +2016-06-05 01:58:27,3123.0,-10.4769, +2016-06-05 02:00:00,,,26.6765 +2016-06-05 02:13:22,3123.0,-10.4769, +2016-06-05 02:15:00,,,26.9218 +2016-06-05 02:28:18,3123.0,-10.4472, +2016-06-05 02:30:00,,,27.0272 +2016-06-05 02:43:14,3123.0,-10.4769, +2016-06-05 02:45:00,,,27.0272 +2016-06-05 02:58:10,3122.0,-10.4778, +2016-06-05 03:00:00,,,27.0296 +2016-06-05 03:13:05,3122.0,-10.4769, +2016-06-05 03:15:00,,,26.874 +2016-06-05 03:28:01,3122.0,-10.4759, +2016-06-05 03:30:00,,,26.8811 +2016-06-05 03:42:57,3121.0,-10.4769, +2016-06-05 03:45:00,,,26.8811 +2016-06-05 03:57:53,3121.0,-10.4759, +2016-06-05 04:00:00,,,26.8811 +2016-06-05 04:12:49,3121.0,-10.4759, +2016-06-05 04:15:00,,,27.0272 +2016-06-05 04:27:45,3120.0,-10.4759, +2016-06-05 04:30:00,,,26.9792 +2016-06-05 04:42:40,3120.0,-10.4759, +2016-06-05 04:45:00,,,26.9768 +2016-06-05 04:57:36,3119.0,-10.4759, +2016-06-05 05:00:00,,,26.9289 +2016-06-05 05:12:32,3119.0,-10.4759, +2016-06-05 05:15:00,,,26.9313 +2016-06-05 05:27:27,3118.0,-10.4759, +2016-06-05 05:30:00,,,26.831 +2016-06-05 05:42:23,3118.0,-10.4759, +2016-06-05 05:45:00,,,26.9289 +2016-06-05 05:57:18,3118.0,-10.4759, +2016-06-05 06:00:00,,,26.8811 +2016-06-05 06:12:14,3119.0,-10.4759, +2016-06-05 06:15:00,,,26.9289 +2016-06-05 06:27:10,3118.0,-10.4759, +2016-06-05 06:30:00,,,26.9768 +2016-06-05 06:42:05,3119.0,-10.4759, +2016-06-05 06:45:00,,,27.0272 +2016-06-05 06:57:01,3120.0,-10.4759, +2016-06-05 07:00:00,,,27.0776 +2016-06-05 07:11:57,3121.0,-10.4759, +2016-06-05 07:15:00,,,27.0776 +2016-06-05 07:26:52,3121.0,-10.4769, +2016-06-05 07:30:00,,,27.174 +2016-06-05 07:41:48,3122.0,-10.4462, +2016-06-05 07:45:00,,,27.0776 +2016-06-05 07:56:44,3123.0,-10.4472, +2016-06-05 08:00:00,,,27.2271 +2016-06-05 08:11:40,3123.0,-10.4166, +2016-06-05 08:15:00,,,27.2755 +2016-06-05 08:26:36,3124.0,-10.4166, +2016-06-05 08:30:00,,,27.2271 +2016-06-05 08:41:31,3127.0,-10.4166, +2016-06-05 08:45:00,,,27.375 +2016-06-05 08:56:27,3128.0,-10.4166, +2016-06-05 09:00:00,,,27.375 +2016-06-05 09:11:23,3130.0,-10.4166, +2016-06-05 09:15:00,,,27.375 +2016-06-05 09:26:19,3131.0,-10.3871, +2016-06-05 09:30:00,,,27.2296 +2016-06-05 09:41:15,3134.0,-10.3871, +2016-06-05 09:45:00,,,27.278 +2016-06-05 09:56:10,3136.0,-10.3871, +2016-06-05 10:00:00,,,27.278 +2016-06-05 10:11:06,3138.0,-10.3576, +2016-06-05 10:15:00,,,27.2296 +2016-06-05 10:26:02,3139.0,-10.3576, +2016-06-05 10:30:00,,,27.3265 +2016-06-05 10:40:58,3143.0,-10.3576, +2016-06-05 10:45:00,,,27.4797 +2016-06-05 10:55:54,3144.0,-10.3281, +2016-06-05 11:00:00,,,27.4797 +2016-06-05 11:10:50,3145.0,-10.3272, +2016-06-05 11:15:00,,,27.5237 +2016-06-05 11:25:46,3148.0,-10.3281, +2016-06-05 11:30:00,,,27.4334 +2016-06-05 11:40:42,3150.0,-10.2988, +2016-06-05 11:45:00,,,27.4822 +2016-06-05 11:55:38,3150.0,-10.2988, +2016-06-05 12:00:00,,,27.4822 +2016-06-05 12:10:34,3152.0,-10.2988, +2016-06-05 12:15:00,,,27.5824 +2016-06-05 12:25:30,3152.0,-10.2686, +2016-06-05 12:30:00,,,27.58 +2016-06-05 12:40:26,3155.0,-10.2988, +2016-06-05 12:45:00,,,27.6339 +2016-06-05 12:55:22,3155.0,-10.2686, +2016-06-05 13:00:00,,,27.6314 +2016-06-05 13:10:18,3156.0,-10.2686, +2016-06-05 13:15:00,,,27.6339 +2016-06-05 13:25:14,3157.0,-10.2695, +2016-06-05 13:30:00,,,27.6363 +2016-06-05 13:40:10,3159.0,-10.2393, +2016-06-05 13:45:00,,,27.7347 +2016-06-05 13:55:14,3160.0,-10.2393, +2016-06-05 14:00:00,,,27.683000000000003 +2016-06-05 14:10:10,3160.0,-10.2393, +2016-06-05 14:15:00,,,27.7815 +2016-06-05 14:25:06,3161.0,-10.2393, +2016-06-05 14:30:00,,,27.784 +2016-06-05 14:40:02,3162.0,-10.2402, +2016-06-05 14:45:00,,,27.8358 +2016-06-05 14:54:58,3162.0,-10.2393, +2016-06-05 15:00:00,,,27.6363 +2016-06-05 15:09:55,3163.0,-10.2101, +2016-06-05 15:15:00,,,27.6388 +2016-06-05 15:24:51,3163.0,-10.2101, +2016-06-05 15:30:00,,,27.6855 +2016-06-05 15:39:47,3163.0,-10.2402, +2016-06-05 15:45:00,,,27.6879 +2016-06-05 15:54:43,3163.0,-10.2101, +2016-06-05 16:00:00,,,27.6363 +2016-06-05 16:09:40,3163.0,-10.2101, +2016-06-05 16:15:00,,,27.5873 +2016-06-05 16:24:36,3163.0,-10.2101, +2016-06-05 16:30:00,,,27.6363 +2016-06-05 16:39:32,3163.0,-10.2101, +2016-06-05 16:45:00,,,27.6363 +2016-06-05 16:54:28,3163.0,-10.2402, +2016-06-05 17:00:00,,,27.6879 +2016-06-05 17:09:24,3162.0,-10.1801, +2016-06-05 17:15:00,,,27.6879 +2016-06-05 17:24:21,3162.0,-10.2101, +2016-06-05 17:30:00,,,27.5359 +2016-06-05 17:39:17,3161.0,-10.2092, +2016-06-05 17:45:00,,,27.5898 +2016-06-05 17:54:13,3160.0,-10.2402, +2016-06-05 18:00:00,,,27.4968 +2016-06-05 18:09:09,3160.0,-10.1801, +2016-06-05 18:15:00,,,27.5457 +2016-06-05 18:24:05,3160.0,-10.2092, +2016-06-05 18:30:00,,,27.4968 +2016-06-05 18:39:02,3158.0,-10.2092, +2016-06-05 18:45:00,,,27.4456 +2016-06-05 18:53:58,3157.0,-10.2092, +2016-06-05 19:00:00,,,27.4968 +2016-06-05 19:08:54,3156.0,-10.2393, +2016-06-05 19:15:00,,,27.4481 +2016-06-05 19:23:51,3155.0,-10.2393, +2016-06-05 19:30:00,,,27.2974 +2016-06-05 19:38:47,3153.0,-10.2393, +2016-06-05 19:45:00,,,27.3945 +2016-06-05 19:53:43,3152.0,-10.2393, +2016-06-05 20:00:00,,,27.4968 +2016-06-05 20:08:39,3151.0,-10.2384, +2016-06-05 20:15:00,,,27.4968 +2016-06-05 20:23:36,3150.0,-10.2384, +2016-06-05 20:30:00,,,27.5482 +2016-06-05 20:38:32,3149.0,-10.2384, +2016-06-05 20:45:00,,,27.4968 +2016-06-05 20:53:35,3147.0,-10.2686, +2016-06-05 21:00:00,,,27.5482 +2016-06-05 21:08:31,3145.0,-10.2686, +2016-06-05 21:15:00,,,27.5457 +2016-06-05 21:23:28,3144.0,-10.2686, +2016-06-05 21:30:00,,,27.5457 +2016-06-05 21:38:24,3143.0,-10.2988, +2016-06-05 21:45:00,,,27.5042 +2016-06-05 21:53:27,3142.0,-10.2677, +2016-06-05 22:00:00,,,27.5457 +2016-06-05 22:08:23,3140.0,-10.2979, +2016-06-05 22:15:00,,,27.4993 +2016-06-05 22:23:19,3138.0,-10.2979, +2016-06-05 22:30:00,,,27.5457 +2016-06-05 22:38:15,3138.0,-10.2979, +2016-06-05 22:45:00,,,27.4481 +2016-06-05 22:53:11,3136.0,-10.2979, +2016-06-05 23:00:00,,,27.4456 +2016-06-05 23:08:07,3136.0,-10.2969, +2016-06-05 23:15:00,,,27.4042 +2016-06-05 23:23:03,3135.0,-10.2969, +2016-06-05 23:30:00,,,27.4529 +2016-06-05 23:37:59,3134.0,-10.3272, +2016-06-05 23:45:00,,,27.4554 +2016-06-05 23:52:55,3133.0,-10.3272, +2016-06-06 00:00:00,,,27.4554 +2016-06-06 00:07:51,3132.0,-10.3272, +2016-06-06 00:15:00,,,27.4529 +2016-06-06 00:22:46,3131.0,-10.3567, +2016-06-06 00:30:00,,,27.4554 +2016-06-06 00:37:41,3130.0,-10.3567, +2016-06-06 00:45:00,,,27.4529 +2016-06-06 00:52:45,3130.0,-10.3263, +2016-06-06 01:00:00,,,27.4529 +2016-06-06 01:07:41,3128.0,-10.3567, +2016-06-06 01:15:00,,,27.4042 +2016-06-06 01:22:36,3128.0,-10.3567, +2016-06-06 01:30:00,,,27.4529 +2016-06-06 01:37:32,3128.0,-10.3567, +2016-06-06 01:45:00,,,27.4529 +2016-06-06 01:52:28,3127.0,-10.3567, +2016-06-06 02:00:00,,,27.4505 +2016-06-06 02:07:24,3127.0,-10.3567, +2016-06-06 02:15:00,,,27.4018 +2016-06-06 02:22:19,3125.0,-10.3567, +2016-06-06 02:30:00,,,27.4529 +2016-06-06 02:37:15,3125.0,-10.3557, +2016-06-06 02:45:00,,,27.4042 +2016-06-06 02:52:10,3124.0,-10.3861, +2016-06-06 03:00:00,,,27.4042 +2016-06-06 03:07:06,3123.0,-10.3861, +2016-06-06 03:15:00,,,27.4018 +2016-06-06 03:22:01,3123.0,-10.3861, +2016-06-06 03:30:00,,,27.4042 +2016-06-06 03:36:57,3123.0,-10.3861, +2016-06-06 03:45:00,,,27.4554 +2016-06-06 03:51:53,3122.0,-10.3861, +2016-06-06 04:00:00,,,27.4018 +2016-06-06 04:06:48,3122.0,-10.3861, +2016-06-06 04:15:00,,,27.4042 +2016-06-06 04:21:44,3122.0,-10.3861, +2016-06-06 04:30:00,,,27.4018 +2016-06-06 04:36:39,3121.0,-10.3861, +2016-06-06 04:45:00,,,27.4018 +2016-06-06 04:51:35,3121.0,-10.3861, +2016-06-06 05:00:00,,,27.4042 +2016-06-06 05:06:31,3120.0,-10.3861, +2016-06-06 05:15:00,,,27.4042 +2016-06-06 05:21:27,3120.0,-10.3861, +2016-06-06 05:30:00,,,27.3532 +2016-06-06 05:36:22,3119.0,-10.3852, +2016-06-06 05:45:00,,,27.4529 +2016-06-06 05:51:18,3119.0,-10.4166, +2016-06-06 06:00:00,,,27.2538 +2016-06-06 06:06:13,3118.0,-10.4157, +2016-06-06 06:15:00,,,27.3605 +2016-06-06 06:21:09,3118.0,-10.4166, +2016-06-06 06:30:00,,,27.4042 +2016-06-06 06:36:04,3119.0,-10.3861, +2016-06-06 06:45:00,,,27.4115 +2016-06-06 06:51:00,3119.0,-10.3861, +2016-06-06 07:00:00,,,27.4529 +2016-06-06 07:05:55,3119.0,-10.3861, +2016-06-06 07:15:00,,,27.4505 +2016-06-06 07:20:51,3120.0,-10.3861, +2016-06-06 07:30:00,,,27.3022 +2016-06-06 07:35:47,3120.0,-10.3861, +2016-06-06 07:45:00,,,27.3532 +2016-06-06 07:50:42,3121.0,-10.3861, +2016-06-06 08:00:00,,,27.4529 +2016-06-06 08:05:38,3122.0,-10.3861, +2016-06-06 08:15:00,,,27.4554 +2016-06-06 08:20:33,3123.0,-10.3861, +2016-06-06 08:30:00,,,27.5091 +2016-06-06 08:35:29,3123.0,-10.3861, +2016-06-06 08:45:00,,,27.5115 +2016-06-06 08:50:24,3125.0,-10.3557, +2016-06-06 09:00:00,,,27.5531 +2016-06-06 09:05:20,3127.0,-10.3567, +2016-06-06 09:15:00,,,27.5604 +2016-06-06 09:20:16,3128.0,-10.3567, +2016-06-06 09:30:00,,,27.5604 +2016-06-06 09:35:12,3130.0,-10.3567, +2016-06-06 09:45:00,,,27.5164 +2016-06-06 09:50:07,3132.0,-10.3576, +2016-06-06 10:00:00,,,27.5653 +2016-06-06 10:05:03,3135.0,-10.3272, +2016-06-06 10:15:00,,,27.5653 +2016-06-06 10:19:59,3136.0,-10.2979, +2016-06-06 10:30:00,,,27.6168 +2016-06-06 10:34:55,3138.0,-10.2979, +2016-06-06 10:45:00,,,27.6658 +2016-06-06 10:49:58,3138.0,-10.2677, +2016-06-06 11:00:00,,,27.6658 +2016-06-06 11:04:54,3141.0,-10.2677, +2016-06-06 11:15:00,,,27.6634 +2016-06-06 11:19:50,3143.0,-10.2677, +2016-06-06 11:30:00,,,27.715 +2016-06-06 11:34:45,3143.0,-10.2686, +2016-06-06 11:45:00,,,27.7175 +2016-06-06 11:49:41,3145.0,-10.2384, +2016-06-06 12:00:00,,,27.6168 +2016-06-06 12:04:37,3146.0,-10.2384, +2016-06-06 12:15:00,,,27.6168 +2016-06-06 12:19:33,3148.0,-10.2384, +2016-06-06 12:30:00,,,27.6192 +2016-06-06 12:34:29,3149.0,-10.2384, +2016-06-06 12:45:00,,,27.6168 +2016-06-06 12:49:25,3150.0,-10.2384, +2016-06-06 13:00:00,,,27.6168 +2016-06-06 13:04:22,3150.0,-10.2384, +2016-06-06 13:15:00,,,27.6168 +2016-06-06 13:19:18,3151.0,-10.2384, +2016-06-06 13:30:00,,,27.821 +2016-06-06 13:34:14,3152.0,-10.2092, +2016-06-06 13:45:00,,,27.821 +2016-06-06 13:49:10,3152.0,-10.1792, +2016-06-06 14:00:00,,,27.821 +2016-06-06 14:04:13,3153.0,-10.1792, +2016-06-06 14:15:00,,,27.8705 +2016-06-06 14:19:09,3154.0,-10.1792, +2016-06-06 14:30:00,,,27.821 +2016-06-06 14:34:05,3155.0,-10.1792, +2016-06-06 14:45:00,,,27.821 +2016-06-06 14:49:01,3155.0,-10.1801, +2016-06-06 15:00:00,,,27.8729 +2016-06-06 15:03:57,3156.0,-10.1792, +2016-06-06 15:15:00,,,27.8729 +2016-06-06 15:18:53,3156.0,-10.1792, +2016-06-06 15:30:00,,,27.8729 +2016-06-06 15:33:49,3156.0,-10.1792, +2016-06-06 15:45:00,,,27.7224 +2016-06-06 15:48:45,3156.0,-10.1792, +2016-06-06 16:00:00,,,27.7224 +2016-06-06 16:03:41,3156.0,-10.1792, +2016-06-06 16:15:00,,,27.7224 +2016-06-06 16:18:38,3156.0,-10.1792, +2016-06-06 16:30:00,,,27.6732 +2016-06-06 16:33:34,3156.0,-10.1792, +2016-06-06 16:45:00,,,27.6732 +2016-06-06 16:48:30,3155.0,-10.1792, +2016-06-06 17:00:00,,,27.6732 +2016-06-06 17:03:26,3155.0,-10.1792, +2016-06-06 17:15:00,,,27.6241 +2016-06-06 17:18:22,3154.0,-10.1792, +2016-06-06 17:30:00,,,27.6708 +2016-06-06 17:33:18,3153.0,-10.1792, +2016-06-06 17:45:00,,,27.6732 +2016-06-06 17:48:14,3152.0,-10.1792, +2016-06-06 18:00:00,,,27.6732 +2016-06-06 18:03:10,3152.0,-10.1792, +2016-06-06 18:15:00,,,27.6732 +2016-06-06 18:18:06,3152.0,-10.1792, +2016-06-06 18:30:00,,,27.6217 +2016-06-06 18:33:02,3150.0,-10.2092, +2016-06-06 18:45:00,,,27.6217 +2016-06-06 18:47:58,3150.0,-10.2083, +2016-06-06 19:00:00,,,27.5727 +2016-06-06 19:02:54,3149.0,-10.2083, +2016-06-06 19:15:00,,,27.6217 +2016-06-06 19:17:50,3147.0,-10.2083, +2016-06-06 19:30:00,,,27.5727 +2016-06-06 19:32:46,3146.0,-10.2384, +2016-06-06 19:45:00,,,27.5237 +2016-06-06 19:47:42,3145.0,-10.2384, +2016-06-06 20:00:00,,,27.5727 +2016-06-06 20:02:38,3143.0,-10.2384, +2016-06-06 20:15:00,,,27.5213 +2016-06-06 20:17:34,3142.0,-10.2677, +2016-06-06 20:30:00,,,27.5237 +2016-06-06 20:32:30,3140.0,-10.2677, +2016-06-06 20:45:00,,,27.5237 +2016-06-06 20:47:26,3138.0,-10.2677, +2016-06-06 21:00:00,,,27.5213 +2016-06-06 21:02:21,3138.0,-10.2677, +2016-06-06 21:15:00,,,27.4213 +2016-06-06 21:17:17,3136.0,-10.2677, +2016-06-06 21:30:00,,,27.4213 +2016-06-06 21:32:13,3135.0,-10.2667, +2016-06-06 21:45:00,,,27.4213 +2016-06-06 21:47:09,3134.0,-10.2969, +2016-06-06 22:00:00,,,27.4213 +2016-06-06 22:02:04,3132.0,-10.2969, +2016-06-06 22:15:00,,,27.3726 +2016-06-06 22:17:00,3131.0,-10.296, +2016-06-06 22:30:00,,,27.4213 +2016-06-06 22:31:56,3130.0,-10.296, +2016-06-06 22:45:00,,,27.4213 +2016-06-06 22:46:51,3128.0,-10.3263, +2016-06-06 23:00:00,,,27.3726 +2016-06-06 23:01:47,3128.0,-10.3263, +2016-06-06 23:15:00,,,27.4262 +2016-06-06 23:16:42,3127.0,-10.3263, +2016-06-06 23:30:00,,,27.3216 +2016-06-06 23:31:38,3126.0,-10.3263, +2016-06-06 23:45:00,,,27.3313 +2016-06-06 23:46:34,3124.0,-10.3263, +2016-06-07 00:00:00,,,27.3241 +2016-06-07 00:01:29,3123.0,-10.3557, +2016-06-07 00:15:00,,,27.4213 +2016-06-07 00:16:25,3123.0,-10.3557, +2016-06-07 00:30:00,,,27.4286 +2016-06-07 00:31:21,3123.0,-10.3557, +2016-06-07 00:45:00,,,27.4213 +2016-06-07 00:46:16,3122.0,-10.3557, +2016-06-07 01:00:00,,,27.4286 +2016-06-07 01:01:12,3122.0,-10.3557, +2016-06-07 01:15:00,,,27.4286 +2016-06-07 01:16:07,3121.0,-10.3861, +2016-06-07 01:30:00,,,27.4213 +2016-06-07 01:31:03,3121.0,-10.3861, +2016-06-07 01:45:00,,,27.4286 +2016-06-07 01:45:59,3120.0,-10.3852, +2016-06-07 02:00:00,,,27.3799 +2016-06-07 02:00:54,3118.0,-10.3852, +2016-06-07 02:15:00,,,27.3799 +2016-06-07 02:15:50,3118.0,-10.3852, +2016-06-07 02:30:00,,,26.9816 +2016-06-07 02:30:46,3116.0,-10.4148, +2016-06-07 02:45:00,,,27.3241 +2016-06-07 02:45:41,3116.0,-10.4166, +2016-06-07 03:00:00,,,27.3313 +2016-06-07 03:00:37,3115.0,-10.3843, +2016-06-07 03:15:00,,,27.3313 +2016-06-07 03:15:32,3115.0,-10.4148, +2016-06-07 03:30:00,,,27.3289 +2016-06-07 03:30:28,3114.0,-10.4157, +2016-06-07 03:45:00,,,27.3799 +2016-06-07 03:45:23,3114.0,-10.4139, +2016-06-07 04:00:00,,,27.3289 +2016-06-07 04:00:19,3113.0,-10.4148, +2016-06-07 04:15:00,,,27.3313 +2016-06-07 04:15:14,3112.0,-10.4148, +2016-06-07 04:30:00,,,27.2829 +2016-06-07 04:30:10,3110.0,-10.4148, +2016-06-07 04:45:00,,,27.3799 +2016-06-07 04:45:05,3110.0,-10.4741, +2016-06-07 05:00:00,,,27.2829 +2016-06-07 05:00:01,3109.0,-10.4157, +2016-06-07 05:14:56,3109.0,-10.4157, +2016-06-07 05:15:00,,,27.3313 +2016-06-07 05:29:51,3109.0,-10.4778, +2016-06-07 05:30:00,,,27.2853 +2016-06-07 05:44:47,3109.0,-10.5916, +2016-06-07 05:45:00,,,27.2707 +2016-06-07 05:59:42,3109.0,-10.4148, +2016-06-07 06:00:00,,,27.6781 +2016-06-07 06:14:38,3107.0,-10.5057, +2016-06-07 06:15:00,,,26.7834 +2016-06-07 06:29:33,3108.0,-10.4778, +2016-06-07 06:30:00,,,27.3241 +2016-06-07 06:44:29,3109.0,-10.4139, +2016-06-07 06:45:00,,,27.4773 +2016-06-07 06:59:25,3109.0,-10.4139, +2016-06-07 07:00:00,,,27.536 +2016-06-07 07:14:20,3109.0,-10.4148, +2016-06-07 07:15:00,,,27.5384 +2016-06-07 07:29:16,3110.0,-10.4148, +2016-06-07 07:30:00,,,27.629 +2016-06-07 07:44:12,3112.0,-10.4157, +2016-06-07 07:45:00,,,27.4286 +2016-06-07 07:59:08,3113.0,-10.3502, +2016-06-07 08:00:00,,,27.3848 +2016-06-07 08:14:15,3114.0,-10.4148, +2016-06-07 08:15:00,,,27.431 +2016-06-07 08:29:21,3115.0,-10.4453, +2016-06-07 08:30:00,,,26.984 +2016-06-07 08:44:23,3115.0,-10.4759, +2016-06-07 08:45:00,,,26.641 +2016-06-07 08:59:19,3116.0,-10.4759, +2016-06-07 09:00:00,,,26.4922 +2016-06-07 09:14:15,3119.0,-10.4759, +2016-06-07 09:15:00,,,26.5464 +2016-06-07 09:29:11,3121.0,-10.4453, +2016-06-07 09:30:00,,,26.5417 +2016-06-07 09:44:07,3122.0,-10.4453, +2016-06-07 09:45:00,,,26.4052 +2016-06-07 09:59:02,3124.0,-10.4157, +2016-06-07 10:00:00,,,26.4969 +2016-06-07 10:14:09,3127.0,-10.4157, +2016-06-07 10:15:00,,,26.4451 +2016-06-07 10:29:16,3131.0,-10.3567, +2016-06-07 10:30:00,,,27.2417 +2016-06-07 10:44:18,3134.0,-10.3567, +2016-06-07 10:45:00,,,27.2901 +2016-06-07 10:59:14,3136.0,-10.3263, +2016-06-07 11:00:00,,,27.2829 +2016-06-07 11:14:10,3136.0,-10.3567, +2016-06-07 11:15:00,,,26.8955 +2016-06-07 11:29:06,3138.0,-10.2969, +2016-06-07 11:30:00,,,27.0921 +2016-06-07 11:44:03,3140.0,-10.2969, +2016-06-07 11:45:00,,,26.9936 +2016-06-07 11:58:58,3142.0,-10.2969, +2016-06-07 12:00:00,,,26.984 +2016-06-07 12:14:05,3143.0,-10.3263, +2016-06-07 12:15:00,,,26.5464 +2016-06-07 12:29:13,3143.0,-10.3567, +2016-06-07 12:30:00,,,26.1133 +2016-06-07 12:44:15,3144.0,-10.3263, +2016-06-07 12:45:00,,,26.3044 +2016-06-07 12:59:11,3146.0,-10.2969, +2016-06-07 13:00:00,,,26.4545 +2016-06-07 13:14:07,3148.0,-10.2677, +2016-06-07 13:15:00,,,26.8406 +2016-06-07 13:29:03,3147.0,-10.2969, +2016-06-07 13:30:00,,,26.4029 +2016-06-07 13:43:59,3147.0,-10.2969, +2016-06-07 13:45:00,,,26.3044 +2016-06-07 13:58:55,3148.0,-10.2979, +2016-06-07 14:00:00,,,26.3068 +2016-06-07 14:14:02,3149.0,-10.2979, +2016-06-07 14:15:00,,,26.1644 +2016-06-07 14:29:10,3150.0,-10.2979, +2016-06-07 14:30:00,,,26.2157 +2016-06-07 14:44:24,3150.0,-10.2677, +2016-06-07 14:45:00,,,26.4052 +2016-06-07 14:59:20,3150.0,-10.2677, +2016-06-07 15:00:00,,,26.5016 +2016-06-07 15:14:16,3150.0,-10.2979, +2016-06-07 15:15:00,,,26.3091 +2016-06-07 15:29:13,3150.0,-10.2677, +2016-06-07 15:30:00,,,26.1644 +2016-06-07 15:44:09,3150.0,-10.2677, +2016-06-07 15:45:00,,,26.3091 +2016-06-07 15:59:05,3150.0,-10.2677, +2016-06-07 16:00:00,,,26.26 +2016-06-07 16:14:02,3150.0,-10.2677, +2016-06-07 16:15:00,,,26.2133 +2016-06-07 16:29:09,3150.0,-10.2979, +2016-06-07 16:30:00,,,26.211 +2016-06-07 16:44:16,3150.0,-10.2677, +2016-06-07 16:45:00,,,26.3091 +2016-06-07 16:59:18,3150.0,-10.2677, +2016-06-07 17:00:00,,,26.4052 +2016-06-07 17:14:15,3150.0,-10.2979, +2016-06-07 17:15:00,,,26.0738 +2016-06-07 17:29:11,3149.0,-10.2979, +2016-06-07 17:30:00,,,26.211 +2016-06-07 17:44:07,3151.0,-10.1783, +2016-06-07 17:45:00,,,27.2926 +2016-06-07 17:59:04,3150.0,-10.2083, +2016-06-07 18:00:00,,,27.2417 +2016-06-07 18:14:00,3150.0,-10.1783, +2016-06-07 18:15:00,,,27.3897 +2016-06-07 18:29:07,3150.0,-10.1783, +2016-06-07 18:30:00,,,27.3897 +2016-06-07 18:44:14,3144.0,-10.2969, +2016-06-07 18:45:00,,,26.211 +2016-06-07 18:59:16,3147.0,-10.1783, +2016-06-07 19:00:00,,,27.4993 +2016-06-07 19:14:12,3142.0,-10.296, +2016-06-07 19:15:00,,,26.1644 +2016-06-07 19:29:09,3147.0,-10.2092, +2016-06-07 19:30:00,,,27.997 +2016-06-07 19:44:05,3139.0,-10.296, +2016-06-07 19:45:00,,,26.3138 +2016-06-07 19:59:01,3138.0,-10.3263, +2016-06-07 20:00:00,,,26.1644 +2016-06-07 20:13:57,3136.0,-10.3567, +2016-06-07 20:15:00,,,26.1226 +2016-06-07 20:29:04,3136.0,-10.3263, +2016-06-07 20:30:00,,,26.3138 +2016-06-07 20:44:11,3134.0,-10.3557, +2016-06-07 20:45:00,,,26.0274 +2016-06-07 20:59:13,3132.0,-10.3557, +2016-06-07 21:00:00,,,26.0205 +2016-06-07 21:14:10,3131.0,-10.3557, +2016-06-07 21:15:00,,,26.0645 +2016-06-07 21:29:06,3129.0,-10.3557, +2016-06-07 21:30:00,,,25.9788 +2016-06-07 21:44:02,3128.0,-10.3852, +2016-06-07 21:45:00,,,26.1156 +2016-06-07 21:58:58,3127.0,-10.3861, +2016-06-07 22:00:00,,,25.928 +2016-06-07 22:13:54,3127.0,-10.3861, +2016-06-07 22:15:00,,,26.0228 +2016-06-07 22:29:00,3125.0,-10.4157, +2016-06-07 22:30:00,,,25.9719 +2016-06-07 22:44:07,3129.0,-10.2677, +2016-06-07 22:45:00,,,27.5923 +2016-06-07 22:59:09,3123.0,-10.4157, +2016-06-07 23:00:00,,,25.8313 +2016-06-07 23:14:05,3122.0,-10.4148, +2016-06-07 23:15:00,,,25.8382 +2016-06-07 23:29:02,3122.0,-10.3852, +2016-06-07 23:30:00,,,26.218000000000004 +2016-06-07 23:43:58,3122.0,-10.4148, +2016-06-07 23:45:00,,,26.0297 +2016-06-07 23:58:54,3121.0,-10.4148, +2016-06-08 00:00:00,,,25.9326 +2016-06-08 00:13:49,3120.0,-10.4453, +2016-06-08 00:15:00,,,25.8382 +2016-06-08 00:28:56,3121.0,-10.3852, +2016-06-08 00:30:00,,,26.6528 +2016-06-08 00:44:03,3119.0,-10.4148, +2016-06-08 00:45:00,,,26.2203 +2016-06-08 00:59:05,3116.0,-10.4759, +2016-06-08 01:00:00,,,25.7899 +2016-06-08 01:14:01,3113.0,-10.5664, +2016-06-08 01:15:00,,,24.6339 +2016-06-08 01:28:57,3106.0,-10.6565, +2016-06-08 01:30:00,,,64.0267 +2016-06-08 01:43:53,3109.0,-10.5654, +2016-06-08 01:45:00,,,71.408 +2016-06-08 01:58:49,3109.0,-10.5664, +2016-06-08 02:00:00,,,24.0087 +2016-06-08 02:13:44,3109.0,-10.5654, +2016-06-08 02:15:00,,,73.0805 +2016-06-08 02:28:51,3107.0,-10.5963, +2016-06-08 02:30:00,,,73.2991 +2016-06-08 02:43:58,3107.0,-10.5963, +2016-06-08 02:45:00,,,71.8142 +2016-06-08 02:59:00,3106.0,-10.5954, +2016-06-08 03:00:00,,,72.4387 +2016-06-08 03:13:56,3107.0,-10.5654, +2016-06-08 03:15:00,,,74.6112 +2016-06-08 03:28:51,3108.0,-10.5664, +2016-06-08 03:30:00,,,24.6339 +2016-06-08 03:43:47,3107.0,-10.5664, +2016-06-08 03:45:00,,,24.7244 +2016-06-08 03:58:43,3107.0,-10.5355, +2016-06-08 04:00:00,,,24.9551 +2016-06-08 04:13:39,3106.0,-10.5963, +2016-06-08 04:15:00,,,24.4101 +2016-06-08 04:28:46,3105.0,-10.5954, +2016-06-08 04:30:00,,,24.0972 +2016-06-08 04:43:53,3107.0,-10.5355, +2016-06-08 04:45:00,,,25.2351 +2016-06-08 04:58:54,3109.0,-10.4759, +2016-06-08 05:00:00,,,26.5016 +2016-06-08 05:13:50,3103.0,-10.6264, +2016-06-08 05:15:00,,,23.8755 +2016-06-08 05:28:46,3102.0,-10.6264, +2016-06-08 05:30:00,,,73.7269 +2016-06-08 05:43:42,3102.0,-10.6264, +2016-06-08 05:45:00,,,23.8369 +2016-06-08 05:58:38,3101.0,-10.5954, +2016-06-08 06:00:00,,,73.9493 +2016-06-08 06:13:33,3102.0,-10.5954, +2016-06-08 06:15:00,,,73.9493 +2016-06-08 06:28:40,3102.0,-10.5954, +2016-06-08 06:30:00,,,74.4047 +2016-06-08 06:43:46,3103.0,-10.5963, +2016-06-08 06:45:00,,,24.3206 +2016-06-08 06:58:48,3101.0,-10.6264, +2016-06-08 07:00:00,,,72.4387 +2016-06-08 07:13:44,3104.0,-10.5954, +2016-06-08 07:15:00,,,74.6112 +2016-06-08 07:28:40,3104.0,-10.5954, +2016-06-08 07:30:00,,,23.9248 +2016-06-08 07:45:00,,, +2016-06-08 08:00:00,,, +2016-06-08 08:15:00,,, +2016-06-08 08:22:40,3104.0,-10.5057, +2016-06-08 08:30:00,,,24.2358 +2016-06-08 08:45:00,,, +2016-06-08 09:00:00,,, +2016-06-08 09:15:00,,,24.2793 +2016-06-08 09:16:40,3107.0,-10.4453, +2016-06-08 09:30:00,,, +2016-06-08 09:45:00,,, +2016-06-08 10:00:00,,, +2016-06-08 10:10:41,3114.0,-10.3861, +2016-06-08 10:15:00,,,24.5437 +2016-06-08 10:30:00,,, +2016-06-08 10:45:00,,, +2016-06-08 11:00:00,,,24.8595 +2016-06-08 11:04:53,3120.0,-10.3263, +2016-06-08 11:15:00,,, +2016-06-08 11:30:00,,, +2016-06-08 11:45:00,,, +2016-06-08 11:59:05,3125.0,-10.2677, +2016-06-08 12:00:00,,,25.143 +2016-06-08 12:15:00,,, +2016-06-08 12:30:00,,, +2016-06-08 12:45:00,,, +2016-06-08 12:53:12,3129.0,-10.2677, +2016-06-08 13:00:00,,,24.9172 +2016-06-08 13:15:00,,, +2016-06-08 13:30:00,,, +2016-06-08 13:45:00,,,25.1474 +2016-06-08 13:47:14,3132.0,-10.2384, +2016-06-08 14:00:00,,, +2016-06-08 14:15:00,,, +2016-06-08 14:30:00,,, +2016-06-08 14:41:15,3134.0,-10.2384, +2016-06-08 14:45:00,,,24.875 +2016-06-08 15:00:00,,, +2016-06-08 15:15:00,,, +2016-06-08 15:30:00,,,24.7774 +2016-06-08 15:35:17,3135.0,-10.2384, +2016-06-08 15:45:00,,, +2016-06-08 16:00:00,,, +2016-06-08 16:15:00,,, +2016-06-08 16:29:19,3132.0,-10.2384, +2016-06-08 16:30:00,,,24.9128 +2016-06-08 16:45:00,,, +2016-06-08 17:00:00,,, +2016-06-08 17:15:00,,, +2016-06-08 17:23:20,3128.0,-10.2686, +2016-06-08 17:30:00,,,24.915 +2016-06-08 17:45:00,,, +2016-06-08 18:00:00,,, +2016-06-08 18:15:00,,,24.9195 +2016-06-08 18:17:33,3123.0,-10.2979, +2016-06-08 18:30:00,,, +2016-06-08 18:45:00,,, +2016-06-08 19:00:00,,, +2016-06-08 19:11:44,3117.0,-10.3272, +2016-06-08 19:15:00,,,24.8661 +2016-06-08 19:30:00,,, +2016-06-08 19:45:00,,, +2016-06-08 20:00:00,,,24.9195 +2016-06-08 20:05:51,3112.0,-10.3567, +2016-06-08 20:15:00,,, +2016-06-08 20:30:00,,, +2016-06-08 20:45:00,,, +2016-06-08 20:59:51,3107.0,-10.3871, +2016-06-08 21:00:00,,,24.9596 +2016-06-08 21:15:00,,, +2016-06-08 21:30:00,,, +2016-06-08 21:45:00,,, +2016-06-08 21:53:52,3101.0,-10.4166, +2016-06-08 22:00:00,,,24.8284 +2016-06-08 22:15:00,,, +2016-06-08 22:30:00,,, +2016-06-08 22:45:00,,,24.7353 +2016-06-08 22:47:51,3099.0,-10.4157, +2016-06-08 23:00:00,,, +2016-06-08 23:15:00,,, +2016-06-08 23:30:00,,, +2016-06-08 23:41:51,3095.0,-10.4453, +2016-06-08 23:45:00,,,24.7375 +2016-06-09 00:00:00,,, +2016-06-09 00:15:00,,, +2016-06-09 00:30:00,,,25.8082 +2016-06-09 00:35:50,3096.0,-10.3861, +2016-06-09 00:45:00,,, +2016-06-09 01:00:00,,, +2016-06-09 01:15:00,,, +2016-06-09 01:30:00,,,26.3442 +2016-06-09 01:30:01,3094.0,-10.3567, +2016-06-09 01:45:00,,, +2016-06-09 02:00:00,,, +2016-06-09 02:15:00,,, +2016-06-09 02:24:12,3087.0,-10.5057, +2016-06-09 02:30:00,,,24.603 +2016-06-09 02:45:00,,, +2016-06-09 03:00:00,,, +2016-06-09 03:15:00,,,24.4669 +2016-06-09 03:18:20,3086.0,-10.5355, +2016-06-09 03:30:00,,, +2016-06-09 03:45:00,,, +2016-06-09 04:00:00,,, +2016-06-09 04:12:19,3086.0,-10.5673, +2016-06-09 04:15:00,,,24.603 +2016-06-09 04:30:00,,, +2016-06-09 04:45:00,,, +2016-06-09 05:00:00,,,24.647 +2016-06-09 05:06:29,3085.0,-10.5664, +2016-06-09 05:15:00,,, +2016-06-09 05:30:00,,, +2016-06-09 05:45:00,,, +2016-06-09 06:00:00,,,24.6933 +2016-06-09 06:00:39,3084.0,-10.5664, +2016-06-09 06:15:00,,, +2016-06-09 06:30:00,,, +2016-06-09 06:45:00,,, +2016-06-09 06:54:44,3085.0,-10.5664, +2016-06-09 07:00:00,,,24.5568 +2016-06-09 07:15:00,,, +2016-06-09 07:30:00,,, +2016-06-09 07:45:00,,,24.875 +2016-06-09 07:48:44,3087.0,-10.5057, +2016-06-09 08:00:00,,, +2016-06-09 08:15:00,,, +2016-06-09 08:30:00,,, +2016-06-09 08:42:43,3087.0,-10.5057, +2016-06-09 08:45:00,,,25.1497 +2016-06-09 09:00:00,,, +2016-06-09 09:15:00,,, +2016-06-09 09:30:00,,,24.9195 +2016-06-09 09:36:43,3089.0,-10.5057, +2016-06-09 09:45:00,,, +2016-06-09 10:00:00,,, +2016-06-09 10:15:00,,, +2016-06-09 10:30:00,,,24.8728 +2016-06-09 10:30:42,3091.0,-10.5057, +2016-06-09 10:45:00,,, +2016-06-09 11:00:00,,, +2016-06-09 11:15:00,,, +2016-06-09 11:24:41,3095.0,-10.4759, +2016-06-09 11:30:00,,,25.1003 +2016-06-09 11:45:00,,, +2016-06-09 12:00:00,,, +2016-06-09 12:15:00,,,25.1026 +2016-06-09 12:18:52,3100.0,-10.4157, +2016-06-09 12:30:00,,, +2016-06-09 12:45:00,,, +2016-06-09 13:00:00,,, +2016-06-09 13:13:03,3106.0,-10.3861, +2016-06-09 13:15:00,,,25.5202 +2016-06-09 13:30:00,,, +2016-06-09 13:45:00,,, +2016-06-09 14:00:00,,,26.039 +2016-06-09 14:07:09,3109.0,-10.3272, +2016-06-09 14:15:00,,, +2016-06-09 14:30:00,,, +2016-06-09 14:45:00,,, +2016-06-09 15:00:00,,,24.9172 +2016-06-09 15:01:10,3109.0,-10.3871, +2016-06-09 15:15:00,,, +2016-06-09 15:30:00,,, +2016-06-09 15:45:00,,, +2016-06-09 15:55:11,3113.0,-10.3871, +2016-06-09 16:00:00,,,24.964 +2016-06-09 16:15:00,,, +2016-06-09 16:30:00,,, +2016-06-09 16:45:00,,,26.5158 +2016-06-09 16:49:12,3117.0,-10.2686, +2016-06-09 17:00:00,,, +2016-06-09 17:15:00,,, +2016-06-09 17:30:00,,, +2016-06-09 17:43:12,3115.0,-10.2979, +2016-06-09 17:45:00,,,26.0436 +2016-06-09 18:00:00,,, +2016-06-09 18:15:00,,, +2016-06-09 18:30:00,,,25.4702 +2016-06-09 18:37:13,3113.0,-10.3567, +2016-06-09 18:45:00,,, +2016-06-09 19:00:00,,, +2016-06-09 19:15:00,,, +2016-06-09 19:30:00,,,27.0512 +2016-06-09 19:31:24,3114.0,-10.2677, +2016-06-09 19:45:00,,, +2016-06-09 20:00:00,,, +2016-06-09 20:15:00,,, +2016-06-09 20:25:36,3106.0,-10.3861, +2016-06-09 20:30:00,,,25.1407 +2016-06-09 20:45:00,,, +2016-06-09 21:00:00,,, +2016-06-09 21:15:00,,,25.3298 +2016-06-09 21:19:42,3104.0,-10.4166, +2016-06-09 21:30:00,,, +2016-06-09 21:45:00,,, +2016-06-09 22:00:00,,, +2016-06-09 22:13:42,3102.0,-10.3861, +2016-06-09 22:15:00,,,25.9395 +2016-06-09 22:30:00,,, +2016-06-09 22:45:00,,, +2016-06-09 23:00:00,,, +2016-06-09 23:07:42,3099.0,-10.3861, +2016-06-09 23:15:00,,,25.9419 +2016-06-09 23:30:00,,, +2016-06-09 23:45:00,,, +2016-06-10 00:00:00,,,25.7027 +2016-06-10 00:01:42,3096.0,-10.4166, +2016-06-10 00:15:00,,, +2016-06-10 00:30:00,,, +2016-06-10 00:45:00,,, +2016-06-10 00:55:42,3094.0,-10.4462, +2016-06-10 01:00:00,,,25.7991 +2016-06-10 01:15:00,,, +2016-06-10 01:30:00,,, +2016-06-10 01:45:00,,,25.7991 +2016-06-10 01:49:42,3093.0,-10.4759, +2016-06-10 02:00:00,,, +2016-06-10 02:15:00,,, +2016-06-10 02:30:00,,, +2016-06-10 02:43:52,3090.0,-10.4759, +2016-06-10 02:45:00,,,25.7509 +2016-06-10 03:00:00,,, +2016-06-10 03:15:00,,, +2016-06-10 03:30:00,,, +2016-06-10 03:38:03,3085.0,-10.5973, +2016-06-10 03:45:00,,,24.9128 +2016-06-10 04:00:00,,, +2016-06-10 04:15:00,,, +2016-06-10 04:30:00,,,24.0993 +2016-06-10 04:32:08,3080.0,-10.6264, +2016-06-10 04:45:00,,, +2016-06-10 05:00:00,,, +2016-06-10 05:15:00,,, +2016-06-10 05:26:08,3081.0,-10.6273, +2016-06-10 05:30:00,,,24.9551 +2016-06-10 05:45:00,,, +2016-06-10 06:00:00,,, +2016-06-10 06:15:00,,,24.2771 +2016-06-10 06:20:07,3078.0,-10.6574, +2016-06-10 06:30:00,,, +2016-06-10 06:45:00,,, +2016-06-10 07:00:00,,, +2016-06-10 07:14:07,3078.0,-10.6264, +2016-06-10 07:15:00,,,24.5481 +2016-06-10 07:30:00,,, +2016-06-10 07:45:00,,, +2016-06-10 08:00:00,,, +2016-06-10 08:08:06,3080.0,-10.5963, +2016-06-10 08:15:00,,,24.9975 +2016-06-10 08:30:00,,, +2016-06-10 08:45:00,,, +2016-06-10 09:00:00,,,24.904 +2016-06-10 09:02:05,3080.0,-10.5963, +2016-06-10 09:15:00,,, +2016-06-10 09:30:00,,, +2016-06-10 09:45:00,,, +2016-06-10 09:56:15,3083.0,-10.5664, +2016-06-10 10:00:00,,,24.9106 +2016-06-10 10:15:00,,, +2016-06-10 10:30:00,,, +2016-06-10 10:45:00,,,24.9084 +2016-06-10 10:50:25,3088.0,-10.5365, +2016-06-10 11:00:00,,, +2016-06-10 11:15:00,,, +2016-06-10 11:30:00,,, +2016-06-10 11:44:31,3094.0,-10.4462, +2016-06-10 11:45:00,,,25.4634 +2016-06-10 12:00:00,,, +2016-06-10 12:15:00,,, +2016-06-10 12:30:00,,, +2016-06-10 12:38:31,3103.0,-10.4166, +2016-06-10 12:45:00,,,25.8427 +2016-06-10 13:00:00,,, +2016-06-10 13:15:00,,, +2016-06-10 13:30:00,,,25.4657 +2016-06-10 13:32:32,3110.0,-10.4166, +2016-06-10 13:45:00,,, +2016-06-10 14:00:00,,, +2016-06-10 14:15:00,,, +2016-06-10 14:26:33,3108.0,-10.3567, +2016-06-10 14:30:00,,,24.8728 +2016-06-10 14:45:00,,, +2016-06-10 15:00:00,,, +2016-06-10 15:15:00,,,24.8217 +2016-06-10 15:20:34,3114.0,-10.3871, +2016-06-10 15:30:00,,, +2016-06-10 15:45:00,,, +2016-06-10 16:00:00,,, +2016-06-10 16:14:35,3116.0,-10.3871, +2016-06-10 16:15:00,,,24.8261 +2016-06-10 16:30:00,,, +2016-06-10 16:45:00,,, +2016-06-10 17:00:00,,, +2016-06-10 17:08:47,3116.0,-10.3567, +2016-06-10 17:15:00,,,25.0533 +2016-06-10 17:30:00,,, +2016-06-10 17:45:00,,, +2016-06-10 18:00:00,,,25.1452 +2016-06-10 18:02:59,3115.0,-10.3567, +2016-06-10 18:15:00,,, +2016-06-10 18:30:00,,, +2016-06-10 18:45:00,,, +2016-06-10 18:57:06,3115.0,-10.2979, +2016-06-10 19:00:00,,,25.9881 +2016-06-10 19:15:00,,, +2016-06-10 19:30:00,,, +2016-06-10 19:45:00,,,25.0064 +2016-06-10 19:51:07,3110.0,-10.3861, +2016-06-10 20:00:00,,, +2016-06-10 20:15:00,,, +2016-06-10 20:30:00,,, +2016-06-10 20:45:00,,,25.0981 +2016-06-10 20:45:08,3108.0,-10.4166, +2016-06-10 21:00:00,,, +2016-06-10 21:15:00,,, +2016-06-10 21:30:00,,, +2016-06-10 21:39:09,3105.0,-10.4166, +2016-06-10 21:45:00,,,25.3773 +2016-06-10 22:00:00,,, +2016-06-10 22:15:00,,, +2016-06-10 22:30:00,,,25.1474 +2016-06-10 22:33:09,3101.0,-10.4462, +2016-06-10 22:45:00,,, +2016-06-10 23:00:00,,, +2016-06-10 23:15:00,,, +2016-06-10 23:27:09,3099.0,-10.4462, +2016-06-10 23:30:00,,,25.3231 +2016-06-10 23:45:00,,, +2016-06-11 00:00:00,,, +2016-06-11 00:15:00,,,25.3231 +2016-06-11 00:21:20,3096.0,-10.4769, +2016-06-11 00:30:00,,, +2016-06-11 00:45:00,,, +2016-06-11 01:00:00,,, +2016-06-11 01:15:00,,,25.7945 +2016-06-11 01:15:31,3095.0,-10.4462, +2016-06-11 01:30:00,,, +2016-06-11 01:45:00,,, +2016-06-11 02:00:00,,, +2016-06-11 02:09:37,3094.0,-10.4769, +2016-06-11 02:15:00,,,25.7005 +2016-06-11 02:30:00,,, +2016-06-11 02:45:00,,, +2016-06-11 03:00:00,,,25.2396 +2016-06-11 03:03:37,3090.0,-10.5057, +2016-06-11 03:15:00,,, +2016-06-11 03:30:00,,, +2016-06-11 03:45:00,,, +2016-06-11 03:57:37,3087.0,-10.5673, +2016-06-11 04:00:00,,,24.8706 +2016-06-11 04:15:00,,, +2016-06-11 04:30:00,,, +2016-06-11 04:45:00,,,25.2779 +2016-06-11 04:51:37,3087.0,-10.5664, +2016-06-11 05:00:00,,, +2016-06-11 05:15:00,,, +2016-06-11 05:30:00,,, +2016-06-11 05:45:00,,,25.5111 +2016-06-11 05:45:37,3086.0,-10.5365, +2016-06-11 06:00:00,,, +2016-06-11 06:15:00,,, +2016-06-11 06:30:00,,, +2016-06-11 06:39:36,3082.0,-10.5963, +2016-06-11 06:45:00,,,24.7708 +2016-06-11 07:00:00,,, +2016-06-11 07:15:00,,, +2016-06-11 07:30:00,,,24.8639 +2016-06-11 07:33:46,3083.0,-10.5664, +2016-06-11 07:45:00,,, +2016-06-11 08:00:00,,, +2016-06-11 08:15:00,,, +2016-06-11 08:27:57,3085.0,-10.5973, +2016-06-11 08:30:00,,,24.3664 +2016-06-11 08:45:00,,, +2016-06-11 09:00:00,,, +2016-06-11 09:15:00,,,24.7752 +2016-06-11 09:22:02,3087.0,-10.5664, +2016-06-11 09:30:00,,, +2016-06-11 09:45:00,,, +2016-06-11 10:00:00,,, +2016-06-11 10:15:00,,,25.2306 +2016-06-11 10:16:02,3094.0,-10.5066, +2016-06-11 10:30:00,,, +2016-06-11 10:45:00,,, +2016-06-11 11:00:00,,, +2016-06-11 11:10:02,3097.0,-10.5066, +2016-06-11 11:15:00,,,25.0467 +2016-06-11 11:30:00,,, +2016-06-11 11:45:00,,, +2016-06-11 12:00:00,,,25.1879 +2016-06-11 12:04:02,3101.0,-10.4769, +2016-06-11 12:15:00,,, +2016-06-11 12:30:00,,, +2016-06-11 12:45:00,,, +2016-06-11 12:58:02,3102.0,-10.4462, +2016-06-11 13:00:00,,,25.1385 +2016-06-11 13:15:00,,, +2016-06-11 13:30:00,,, +2016-06-11 13:45:00,,,25.0981 +2016-06-11 13:52:03,3106.0,-10.4166, +2016-06-11 14:00:00,,, +2016-06-11 14:15:00,,, +2016-06-11 14:30:00,,, +2016-06-11 14:45:00,,,25.0042 +2016-06-11 14:46:14,3107.0,-10.4166, +2016-06-11 15:00:00,,, +2016-06-11 15:15:00,,, +2016-06-11 15:30:00,,, +2016-06-11 15:40:25,3109.0,-10.3871, +2016-06-11 15:45:00,,,25.4679 +2016-06-11 16:00:00,,, +2016-06-11 16:15:00,,, +2016-06-11 16:30:00,,,23.9248 +2016-06-11 16:34:31,3106.0,-10.4759, +2016-06-11 16:45:00,,, +2016-06-11 17:00:00,,, +2016-06-11 17:15:00,,, +2016-06-11 17:28:33,3107.0,-10.4462, +2016-06-11 17:30:00,,,24.0993 +2016-06-11 17:45:00,,, +2016-06-11 18:00:00,,, +2016-06-11 18:15:00,,, +2016-06-11 18:22:33,3109.0,-10.3861, +2016-06-11 18:30:00,,,24.964 +2016-06-11 18:45:00,,, +2016-06-11 19:00:00,,, +2016-06-11 19:15:00,,,24.5986 +2016-06-11 19:16:34,3107.0,-10.4157, +2016-06-11 19:30:00,,, +2016-06-11 19:45:00,,, +2016-06-11 20:00:00,,, +2016-06-11 20:10:35,3106.0,-10.4166, +2016-06-11 20:15:00,,,24.9618 +2016-06-11 20:30:00,,, +2016-06-11 20:45:00,,, +2016-06-11 21:00:00,,,24.964 +2016-06-11 21:04:35,3102.0,-10.4759, +2016-06-11 21:15:00,,, +2016-06-11 21:30:00,,, +2016-06-11 21:45:00,,, +2016-06-11 21:58:35,3099.0,-10.5066, +2016-06-11 22:00:00,,,24.773000000000003 +2016-06-11 22:15:00,,, +2016-06-11 22:30:00,,, +2016-06-11 22:45:00,,, +2016-06-11 22:52:46,3094.0,-10.5057, +2016-06-11 23:00:00,,,24.6448 +2016-06-11 23:15:00,,, +2016-06-11 23:30:00,,, +2016-06-11 23:45:00,,,24.8683 +2016-06-11 23:46:57,3093.0,-10.5057, +2016-06-12 00:00:00,,, +2016-06-12 00:15:00,,, +2016-06-12 00:30:00,,, +2016-06-12 00:45:00,,, +2016-06-12 01:00:00,,, +2016-06-12 01:15:00,,, +2016-06-12 01:30:00,,,24.7266 +2016-06-12 01:35:02,3090.0,-10.5664, +2016-06-12 01:45:00,,, +2016-06-12 02:00:00,,, +2016-06-12 02:15:00,,, +2016-06-12 02:29:02,3087.0,-10.5973, +2016-06-12 02:30:00,,,24.8151 +2016-06-12 02:45:00,,, +2016-06-12 03:00:00,,, +2016-06-12 03:15:00,,, +2016-06-12 03:23:02,3087.0,-10.5973, +2016-06-12 03:30:00,,,24.6339 +2016-06-12 03:45:00,,, +2016-06-12 04:00:00,,, +2016-06-12 04:15:00,,,24.6383 +2016-06-12 04:17:01,3085.0,-10.5973, +2016-06-12 04:30:00,,, +2016-06-12 04:45:00,,, +2016-06-12 05:00:00,,, +2016-06-12 05:11:00,3083.0,-10.5963, +2016-06-12 05:15:00,,,24.7708 +2016-06-12 05:30:00,,, +2016-06-12 05:45:00,,, +2016-06-12 06:00:00,,,24.6383 +2016-06-12 06:05:10,3082.0,-10.5963, +2016-06-12 06:15:00,,, +2016-06-12 06:30:00,,, +2016-06-12 06:45:00,,, +2016-06-12 06:59:20,3082.0,-10.5973, +2016-06-12 07:00:00,,,24.7287 +2016-06-12 07:15:00,,, +2016-06-12 07:30:00,,, +2016-06-12 07:45:00,,, +2016-06-12 07:53:25,3084.0,-10.5664, +2016-06-12 08:00:00,,,24.7266 +2016-06-12 08:15:00,,, +2016-06-12 08:30:00,,, +2016-06-12 08:45:00,,,24.7287 +2016-06-12 08:47:25,3087.0,-10.5673, +2016-06-12 09:00:00,,, +2016-06-12 09:15:00,,, +2016-06-12 09:30:00,,, +2016-06-12 09:41:24,3093.0,-10.5057, +2016-06-12 09:45:00,,,25.0467 +2016-06-12 10:00:00,,, +2016-06-12 10:15:00,,, +2016-06-12 10:30:00,,,24.9084 +2016-06-12 10:35:24,3096.0,-10.5066, +2016-06-12 10:45:00,,, +2016-06-12 11:00:00,,, +2016-06-12 11:15:00,,, +2016-06-12 11:29:25,3103.0,-10.4462, +2016-06-12 11:30:00,,,25.0064 +2016-06-12 11:45:00,,, +2016-06-12 12:00:00,,, +2016-06-12 12:15:00,,, +2016-06-12 12:23:18,3109.0,-10.3871, +2016-06-12 12:30:00,,,25.3298 +2016-06-12 12:45:00,,, +2016-06-12 13:00:00,,, +2016-06-12 13:15:00,,,24.9128 +2016-06-12 13:17:23,3111.0,-10.3871, +2016-06-12 13:30:00,,, +2016-06-12 13:45:00,,, +2016-06-12 14:00:00,,, +2016-06-12 14:11:23,3113.0,-10.3861, +2016-06-12 14:15:00,,,25.0981 +2016-06-12 14:30:00,,, +2016-06-12 14:45:00,,, +2016-06-12 15:00:00,,,24.9062 +2016-06-12 15:05:24,3109.0,-10.3861, +2016-06-12 15:15:00,,, +2016-06-12 15:30:00,,, +2016-06-12 15:45:00,,, +2016-06-12 15:59:25,3107.0,-10.4166, +2016-06-12 16:00:00,,,24.9551 +2016-06-12 16:15:00,,, +2016-06-12 16:30:00,,, +2016-06-12 16:45:00,,, +2016-06-12 16:53:26,3105.0,-10.4166, +2016-06-12 17:00:00,,,24.8151 +2016-06-12 17:15:00,,, +2016-06-12 17:30:00,,, +2016-06-12 17:45:00,,,24.9084 +2016-06-12 17:47:27,3103.0,-10.4166, +2016-06-12 18:00:00,,, +2016-06-12 18:15:00,,, +2016-06-12 18:30:00,,, +2016-06-12 18:41:39,3100.0,-10.4462, +2016-06-12 18:45:00,,,24.8617 +2016-06-12 19:00:00,,, +2016-06-12 19:15:00,,, +2016-06-12 19:30:00,,,24.6802 +2016-06-12 19:35:50,3099.0,-10.4759, +2016-06-12 19:45:00,,, +2016-06-12 20:00:00,,, +2016-06-12 20:15:00,,, +2016-06-12 20:29:56,3094.0,-10.5066, +2016-06-12 20:30:00,,,24.7708 +2016-06-12 20:45:00,,, +2016-06-12 21:00:00,,, +2016-06-12 21:15:00,,, +2016-06-12 21:23:56,3094.0,-10.5066, +2016-06-12 21:30:00,,,25.0444 +2016-06-12 21:45:00,,, +2016-06-12 22:00:00,,, +2016-06-12 22:15:00,,,24.9529 +2016-06-12 22:17:55,3092.0,-10.5057, +2016-06-12 22:30:00,,, +2016-06-12 22:45:00,,, +2016-06-12 23:00:00,,, +2016-06-12 23:11:55,3090.0,-10.5365, +2016-06-12 23:15:00,,,24.9529 +2016-06-12 23:30:00,,, +2016-06-12 23:45:00,,, +2016-06-13 00:00:00,,,24.9084 +2016-06-13 00:05:55,3087.0,-10.5673, +2016-06-13 00:15:00,,, +2016-06-13 00:30:00,,, +2016-06-13 00:45:00,,, +2016-06-13 00:59:55,3086.0,-10.5673, +2016-06-13 01:00:00,,,24.6802 +2016-06-13 01:15:00,,, +2016-06-13 01:30:00,,, +2016-06-13 01:45:00,,, +2016-06-13 01:54:05,3085.0,-10.5664, +2016-06-13 02:00:00,,,24.6339 +2016-06-13 02:15:00,,, +2016-06-13 02:30:00,,, +2016-06-13 02:45:00,,,24.4538 +2016-06-13 02:48:15,3083.0,-10.5973, +2016-06-13 03:00:00,,, +2016-06-13 03:15:00,,, +2016-06-13 03:30:00,,, +2016-06-13 03:42:21,3082.0,-10.5973, +2016-06-13 03:45:00,,,24.6339 +2016-06-13 04:00:00,,, +2016-06-13 04:15:00,,, +2016-06-13 04:30:00,,,24.8595 +2016-06-13 04:36:20,3083.0,-10.5973, +2016-06-13 04:45:00,,, +2016-06-13 05:00:00,,, +2016-06-13 05:15:00,,, +2016-06-13 05:30:00,,,24.5899 +2016-06-13 05:30:20,3082.0,-10.5973, +2016-06-13 05:45:00,,, +2016-06-13 06:00:00,,, +2016-06-13 06:15:00,,, +2016-06-13 06:24:20,3082.0,-10.5973, +2016-06-13 06:30:00,,,24.7244 +2016-06-13 06:45:00,,, +2016-06-13 07:00:00,,, +2016-06-13 07:15:00,,,24.9084 +2016-06-13 07:18:19,3084.0,-10.5664, +2016-06-13 07:30:00,,, +2016-06-13 07:45:00,,, +2016-06-13 08:00:00,,, +2016-06-13 08:12:19,3086.0,-10.5664, +2016-06-13 08:15:00,,,24.8617 +2016-06-13 08:30:00,,, +2016-06-13 08:45:00,,, +2016-06-13 09:00:00,,,24.9998 +2016-06-13 09:06:29,3087.0,-10.5365, +2016-06-13 09:15:00,,, +2016-06-13 09:30:00,,, +2016-06-13 09:45:00,,, +2016-06-13 10:00:00,,,24.8151 +2016-06-13 10:00:40,3090.0,-10.5057, +2016-06-13 10:15:00,,, +2016-06-13 10:30:00,,, +2016-06-13 10:45:00,,, +2016-06-13 10:54:47,3094.0,-10.5066, +2016-06-13 11:00:00,,,24.9529 +2016-06-13 11:15:00,,, +2016-06-13 11:30:00,,, +2016-06-13 11:45:00,,,24.9529 +2016-06-13 11:48:47,3095.0,-10.4759, +2016-06-13 12:00:00,,, +2016-06-13 12:15:00,,, +2016-06-13 12:30:00,,, +2016-06-13 12:42:48,3098.0,-10.4759, +2016-06-13 12:45:00,,,24.9975 +2016-06-13 13:00:00,,, +2016-06-13 13:15:00,,, +2016-06-13 13:30:00,,,25.0444 +2016-06-13 13:36:48,3100.0,-10.4769, +2016-06-13 13:45:00,,, +2016-06-13 14:00:00,,, +2016-06-13 14:15:00,,, +2016-06-13 14:30:00,,,24.8639 +2016-06-13 14:30:48,3101.0,-10.4166, +2016-06-13 14:45:00,,, +2016-06-13 15:00:00,,, +2016-06-13 15:15:00,,, +2016-06-13 15:24:49,3106.0,-10.4166, +2016-06-13 15:30:00,,,25.0959 +2016-06-13 15:45:00,,, +2016-06-13 16:00:00,,, +2016-06-13 16:15:00,,,25.0914 +2016-06-13 16:19:01,3104.0,-10.5066, +2016-06-13 16:30:00,,, +2016-06-13 16:45:00,,, +2016-06-13 17:00:00,,, +2016-06-13 17:13:12,3095.0,-10.5066, +2016-06-13 17:15:00,,,25.3118 +2016-06-13 17:30:00,,, +2016-06-13 17:45:00,,, +2016-06-13 18:00:00,,,25.6776 +2016-06-13 18:07:18,3092.0,-10.5066, +2016-06-13 18:15:00,,, +2016-06-13 18:30:00,,, +2016-06-13 18:45:00,,, +2016-06-13 19:00:00,,,25.6274 +2016-06-13 19:01:18,3090.0,-10.5066, +2016-06-13 19:15:00,,, +2016-06-13 19:30:00,,, +2016-06-13 19:45:00,,, +2016-06-13 19:55:18,3091.0,-10.5066, +2016-06-13 20:00:00,,,25.7234 +2016-06-13 20:15:00,,, +2016-06-13 20:30:00,,, +2016-06-13 20:45:00,,,25.7188 +2016-06-13 20:49:18,3090.0,-10.5057, +2016-06-13 21:00:00,,, +2016-06-13 21:15:00,,, +2016-06-13 21:30:00,,, +2016-06-13 21:43:19,3089.0,-10.5057, +2016-06-13 21:45:00,,,25.7166 +2016-06-13 22:00:00,,, +2016-06-13 22:15:00,,, +2016-06-13 22:30:00,,,25.8083 +2016-06-13 22:37:19,3087.0,-10.5365, +2016-06-13 22:45:00,,, +2016-06-13 23:00:00,,, +2016-06-13 23:15:00,,, +2016-06-13 23:30:00,,,25.8083 +2016-06-13 23:31:30,3087.0,-10.5673, +2016-06-13 23:45:00,,, +2016-06-14 00:00:00,,, +2016-06-14 00:15:00,,, +2016-06-14 00:25:41,3085.0,-10.5673, +2016-06-14 00:30:00,,,25.9974 +2016-06-14 00:45:00,,, +2016-06-14 01:00:00,,, +2016-06-14 01:15:00,,,25.9004 +2016-06-14 01:19:46,3082.0,-10.5664, +2016-06-14 01:30:00,,, +2016-06-14 01:45:00,,, +2016-06-14 02:00:00,,, +2016-06-14 02:13:46,3081.0,-10.5973, +2016-06-14 02:15:00,,,25.852 +2016-06-14 02:30:00,,, +2016-06-14 02:45:00,,, +2016-06-14 03:00:00,,, +2016-06-14 03:07:46,3081.0,-10.5973, +2016-06-14 03:15:00,,,25.8981 +2016-06-14 03:30:00,,, +2016-06-14 03:45:00,,, +2016-06-14 04:00:00,,,25.7601 +2016-06-14 04:01:46,3080.0,-10.5973, +2016-06-14 04:15:00,,, +2016-06-14 04:30:00,,, +2016-06-14 04:45:00,,, +2016-06-14 04:55:46,3081.0,-10.5973, +2016-06-14 05:00:00,,,25.852 +2016-06-14 05:15:00,,, +2016-06-14 05:30:00,,, +2016-06-14 05:45:00,,,25.7578 +2016-06-14 05:49:46,3082.0,-10.5973, +2016-06-14 06:00:00,,, +2016-06-14 06:15:00,,, +2016-06-14 06:30:00,,, +2016-06-14 06:43:57,3082.0,-10.5664, +2016-06-14 06:45:00,,,25.9465 +2016-06-14 07:00:00,,, +2016-06-14 07:15:00,,, +2016-06-14 07:30:00,,, +2016-06-14 07:38:07,3084.0,-10.5664, +2016-06-14 07:45:00,,,25.9951 +2016-06-14 08:00:00,,, +2016-06-14 08:15:00,,, +2016-06-14 08:30:00,,,26.0924 +2016-06-14 08:32:13,3086.0,-10.5664, +2016-06-14 08:45:00,,, +2016-06-14 09:00:00,,, +2016-06-14 09:15:00,,, +2016-06-14 09:26:13,3086.0,-10.5673, +2016-06-14 09:30:00,,,25.7578 +2016-06-14 09:45:00,,, +2016-06-14 10:00:00,,, +2016-06-14 10:15:00,,,26.0414 +2016-06-14 10:20:13,3087.0,-10.5365, +2016-06-14 10:30:00,,, +2016-06-14 10:45:00,,, +2016-06-14 11:00:00,,, +2016-06-14 11:14:13,3090.0,-10.5066, +2016-06-14 11:15:00,,,26.0437 +2016-06-14 11:30:00,,, +2016-06-14 11:45:00,,, +2016-06-14 12:00:00,,, +2016-06-14 12:08:14,3094.0,-10.4759, +2016-06-14 12:15:00,,,26.3279 +2016-06-14 12:30:00,,, +2016-06-14 12:45:00,,, +2016-06-14 13:00:00,,,26.3794 +2016-06-14 13:02:14,3095.0,-10.4472, +2016-06-14 13:15:00,,, +2016-06-14 13:30:00,,, +2016-06-14 13:45:00,,, +2016-06-14 13:56:25,3096.0,-10.4166, +2016-06-14 14:00:00,,,26.6149 +2016-06-14 14:15:00,,, +2016-06-14 14:30:00,,, +2016-06-14 14:45:00,,,26.6623 +2016-06-14 14:50:36,3100.0,-10.4166, +2016-06-14 15:00:00,,, +2016-06-14 15:15:00,,, +2016-06-14 15:30:00,,, +2016-06-14 15:44:42,3100.0,-10.4166, +2016-06-14 15:45:00,,,26.8072 +2016-06-14 16:00:00,,, +2016-06-14 16:15:00,,, +2016-06-14 16:30:00,,, +2016-06-14 16:38:43,3101.0,-10.4166, +2016-06-14 16:45:00,,,26.8549 +2016-06-14 17:00:00,,, +2016-06-14 17:15:00,,, +2016-06-14 17:30:00,,,26.7572 +2016-06-14 17:32:43,3100.0,-10.4166, +2016-06-14 17:45:00,,, +2016-06-14 18:00:00,,, +2016-06-14 18:15:00,,, +2016-06-14 18:26:43,3100.0,-10.4166, +2016-06-14 18:30:00,,,26.7596 +2016-06-14 18:45:00,,, +2016-06-14 19:00:00,,, +2016-06-14 19:15:00,,,26.7097 +2016-06-14 19:20:44,3100.0,-10.4166, +2016-06-14 19:30:00,,, +2016-06-14 19:45:00,,, +2016-06-14 20:00:00,,, +2016-06-14 20:14:44,3099.0,-10.4166, +2016-06-14 20:15:00,,,26.905 +2016-06-14 20:30:00,,, +2016-06-14 20:45:00,,, +2016-06-14 21:00:00,,, +2016-06-14 21:08:54,3096.0,-10.4148, +2016-06-14 21:15:00,,,27.1475 +2016-06-14 21:30:00,,, +2016-06-14 21:45:00,,, +2016-06-14 22:00:00,,,26.9002 +2016-06-14 22:03:05,3094.0,-10.4472, +2016-06-14 22:15:00,,, +2016-06-14 22:30:00,,, +2016-06-14 22:45:00,,, +2016-06-14 22:57:10,3091.0,-10.632, +2016-06-14 23:00:00,,,27.008000000000006 +2016-06-14 23:15:00,,, +2016-06-14 23:30:00,,, +2016-06-14 23:45:00,,,26.8525 +2016-06-14 23:51:10,3088.0,-10.4759, +2016-06-15 00:00:00,,, +2016-06-15 00:15:00,,, +2016-06-15 00:30:00,,, +2016-06-15 00:45:00,,,27.2949 +2016-06-15 00:45:09,3087.0,-10.5066, +2016-06-15 01:00:00,,, +2016-06-15 01:15:00,,, +2016-06-15 01:30:00,,, +2016-06-15 01:39:08,3087.0,-10.4472, +2016-06-15 01:45:00,,,27.6462 +2016-06-15 02:00:00,,, +2016-06-15 02:15:00,,, +2016-06-15 02:30:00,,,27.1475 +2016-06-15 02:33:07,3085.0,-10.5057, +2016-06-15 02:45:00,,, +2016-06-15 03:00:00,,, +2016-06-15 03:15:00,,, +2016-06-15 03:27:07,3082.0,-10.5365, +2016-06-15 03:30:00,,,26.9505 +2016-06-15 03:45:00,,, +2016-06-15 04:00:00,,, +2016-06-15 04:15:00,,,27.0512 +2016-06-15 04:21:17,3082.0,-10.5673, +2016-06-15 04:30:00,,, +2016-06-15 04:45:00,,, +2016-06-15 05:00:00,,, +2016-06-15 05:15:00,,,26.9026 +2016-06-15 05:15:27,3081.0,-10.5673, +2016-06-15 05:30:00,,, +2016-06-15 05:45:00,,, +2016-06-15 06:00:00,,, +2016-06-15 06:09:33,3082.0,-10.5365, +2016-06-15 06:15:00,,,27.0512 +2016-06-15 06:30:00,,, +2016-06-15 06:45:00,,, +2016-06-15 07:00:00,,,27.0488 +2016-06-15 07:03:33,3084.0,-10.5673, +2016-06-15 07:15:00,,, +2016-06-15 07:30:00,,, +2016-06-15 07:45:00,,, +2016-06-15 07:57:32,3087.0,-10.5048, +2016-06-15 08:00:00,,,26.9505 +2016-06-15 08:15:00,,, +2016-06-15 08:30:00,,, +2016-06-15 08:45:00,,,27.1982 +2016-06-15 08:51:31,3090.0,-10.4759, +2016-06-15 09:00:00,,, +2016-06-15 09:15:00,,, +2016-06-15 09:30:00,,, +2016-06-15 09:45:00,,,27.3945 +2016-06-15 09:45:31,3093.0,-10.4769, +2016-06-15 10:00:00,,, +2016-06-15 10:15:00,,, +2016-06-15 10:30:00,,, +2016-06-15 10:39:30,3093.0,-10.2979, +2016-06-15 10:45:00,,,27.1957 +2016-06-15 11:00:00,,, +2016-06-15 11:15:00,,, +2016-06-15 11:30:00,,,27.2974 +2016-06-15 11:33:41,3095.0,-10.3861, +2016-06-15 11:45:00,,, +2016-06-15 12:00:00,,, +2016-06-15 12:15:00,,, +2016-06-15 12:27:52,3101.0,-10.3272, +2016-06-15 12:30:00,,,27.3507 +2016-06-15 12:45:00,,, +2016-06-15 13:00:00,,, +2016-06-15 13:15:00,,,27.4505 +2016-06-15 13:21:59,3107.0,-10.2969, +2016-06-15 13:30:00,,, +2016-06-15 13:45:00,,, +2016-06-15 14:00:00,,, +2016-06-15 14:15:00,,,27.3046 +2016-06-15 14:16:00,3112.0,-10.4166, +2016-06-15 14:30:00,,, +2016-06-15 14:45:00,,, +2016-06-15 15:00:00,,, +2016-06-15 15:10:01,3106.0,-10.3567, +2016-06-15 15:15:00,,,27.0512 +2016-06-15 15:30:00,,, +2016-06-15 15:45:00,,, +2016-06-15 16:00:00,,,27.3046 +2016-06-15 16:04:01,3100.0,-10.3576, +2016-06-15 16:15:00,,, +2016-06-15 16:30:00,,, +2016-06-15 16:45:00,,, +2016-06-15 16:58:02,3099.0,-10.3871, +2016-06-15 17:00:00,,,27.2538 +2016-06-15 17:15:00,,, +2016-06-15 17:30:00,,, +2016-06-15 17:45:00,,,27.3022 +2016-06-15 17:52:02,3096.0,-10.3567, +2016-06-15 18:00:00,,, +2016-06-15 18:15:00,,, +2016-06-15 18:30:00,,, +2016-06-15 18:45:00,,,27.1017 +2016-06-15 18:46:13,3095.0,-10.3852, +2016-06-15 19:00:00,,, +2016-06-15 19:15:00,,, +2016-06-15 19:30:00,,, +2016-06-15 19:40:24,3094.0,-10.3861, +2016-06-15 19:45:00,,,27.2489 +2016-06-15 20:00:00,,, +2016-06-15 20:15:00,,, +2016-06-15 20:30:00,,,27.0536 +2016-06-15 20:34:30,3092.0,-10.4157, +2016-06-15 20:45:00,,, +2016-06-15 21:00:00,,, +2016-06-15 21:15:00,,, +2016-06-15 21:28:30,3087.0,-10.4462, +2016-06-15 21:30:00,,,27.0536 +2016-06-15 21:45:00,,, +2016-06-15 22:00:00,,, +2016-06-15 22:15:00,,,26.8955 +2016-06-15 22:22:29,3085.0,-10.5066, +2016-06-15 22:30:00,,, +2016-06-15 22:45:00,,, +2016-06-15 23:00:00,,, +2016-06-15 23:15:00,,,26.7525 +2016-06-15 23:16:28,3080.0,-10.4732, +2016-06-15 23:30:00,,, +2016-06-15 23:45:00,,, +2016-06-16 00:00:00,,, +2016-06-16 00:10:27,3079.0,-10.412, +2016-06-16 00:15:00,,,26.7644 +2016-06-16 00:30:00,,, +2016-06-16 00:45:00,,, +2016-06-16 01:00:00,,,28.4757 +2016-06-16 01:04:26,3084.0,-10.4157, +2016-06-16 01:15:00,,, +2016-06-16 01:30:00,,, +2016-06-16 01:45:00,,, +2016-06-16 01:58:36,3074.0,-10.5963, +2016-06-16 02:00:00,,,26.6647 +2016-06-16 02:15:00,,, +2016-06-16 02:30:00,,, +2016-06-16 02:45:00,,, +2016-06-16 02:52:46,3072.0,-10.5973, +2016-06-16 03:00:00,,,26.5582 +2016-06-16 03:15:00,,, +2016-06-16 03:30:00,,, +2016-06-16 03:45:00,,,26.5158 +2016-06-16 03:46:51,3071.0,-10.6264, +2016-06-16 04:00:00,,, +2016-06-16 04:15:00,,, +2016-06-16 04:30:00,,, +2016-06-16 04:40:49,3069.0,-10.6282, +2016-06-16 04:45:00,,,26.7121 +2016-06-16 05:00:00,,, +2016-06-16 05:15:00,,, +2016-06-16 05:30:00,,,26.9505 +2016-06-16 05:34:48,3069.0,-10.5963, +2016-06-16 05:45:00,,, +2016-06-16 06:00:00,,, +2016-06-16 06:15:00,,, +2016-06-16 06:28:46,3071.0,-10.5664, +2016-06-16 06:30:00,,,26.8072 +2016-06-16 06:45:00,,, +2016-06-16 07:00:00,,, +2016-06-16 07:15:00,,, +2016-06-16 07:22:46,3072.0,-10.5664, +2016-06-16 07:30:00,,,26.667 +2016-06-16 07:45:00,,, +2016-06-16 08:00:00,,, +2016-06-16 08:15:00,,,26.7168 +2016-06-16 08:16:45,3078.0,-10.5365, +2016-06-16 08:30:00,,, +2016-06-16 08:45:00,,, +2016-06-16 09:00:00,,, +2016-06-16 09:10:54,3083.0,-10.5057, +2016-06-16 09:15:00,,,27.1089 +2016-06-16 09:30:00,,, +2016-06-16 09:45:00,,, +2016-06-16 10:00:00,,,27.2586 +2016-06-16 10:05:05,3088.0,-10.4148, +2016-06-16 10:15:00,,, +2016-06-16 10:30:00,,, +2016-06-16 10:45:00,,, +2016-06-16 10:59:10,3094.0,-10.4166, +2016-06-16 11:00:00,,,26.9098 +2016-06-16 11:15:00,,, +2016-06-16 11:30:00,,, +2016-06-16 11:45:00,,, +2016-06-16 11:53:11,3099.0,-10.2375, +2016-06-16 12:00:00,,,27.1041 +2016-06-16 12:15:00,,, +2016-06-16 12:30:00,,, +2016-06-16 12:45:00,,,26.9098 +2016-06-16 12:47:11,3101.0,-10.3861, +2016-06-16 13:00:00,,, +2016-06-16 13:15:00,,, +2016-06-16 13:30:00,,, +2016-06-16 13:41:11,3104.0,-10.4175, +2016-06-16 13:45:00,,,26.8096 +2016-06-16 14:00:00,,, +2016-06-16 14:15:00,,, +2016-06-16 14:30:00,,,27.0464 +2016-06-16 14:35:11,3106.0,-10.3852, +2016-06-16 14:45:00,,, +2016-06-16 15:00:00,,, +2016-06-16 15:15:00,,, +2016-06-16 15:29:11,3107.0,-10.2667, +2016-06-16 15:30:00,,,26.9696 +2016-06-16 15:45:00,,, +2016-06-16 16:00:00,,, +2016-06-16 16:15:00,,, +2016-06-16 16:23:22,3106.0,-10.4796, +2016-06-16 16:30:00,,,26.6884 +2016-06-16 16:45:00,,, +2016-06-16 17:00:00,,, +2016-06-16 17:15:00,,,27.0608 +2016-06-16 17:17:33,3104.0,-10.3567, +2016-06-16 17:30:00,,, +2016-06-16 17:45:00,,, +2016-06-16 18:00:00,,, +2016-06-16 18:11:39,3100.0,-10.4166, +2016-06-16 18:15:00,,,26.7667 +2016-06-16 18:30:00,,, +2016-06-16 18:45:00,,, +2016-06-16 19:00:00,,,27.2102 +2016-06-16 19:05:40,3100.0,-10.3567, +2016-06-16 19:15:00,,, +2016-06-16 19:30:00,,, +2016-06-16 19:45:00,,, +2016-06-16 19:59:40,3097.0,-10.3861, +2016-06-16 20:00:00,,,27.0104 +2016-06-16 20:15:00,,, +2016-06-16 20:30:00,,, +2016-06-16 20:45:00,,, +2016-06-16 20:53:40,3095.0,-10.3861, +2016-06-16 21:00:00,,,26.7667 +2016-06-16 21:15:00,,, +2016-06-16 21:30:00,,, +2016-06-16 21:45:00,,,26.9122 +2016-06-16 21:47:40,3094.0,-10.4166, +2016-06-16 22:00:00,,, +2016-06-16 22:15:00,,, +2016-06-16 22:30:00,,, +2016-06-16 22:41:39,3092.0,-10.4166, +2016-06-16 22:45:00,,,26.8143 +2016-06-16 23:00:00,,, +2016-06-16 23:15:00,,, +2016-06-16 23:30:00,,,26.7667 +2016-06-16 23:35:50,3090.0,-10.4462, +2016-06-16 23:45:00,,, +2016-06-17 00:00:00,,, +2016-06-17 00:15:00,,, +2016-06-17 00:30:00,3088.0,-10.4157,26.8143 +2016-06-17 00:45:00,,, +2016-06-17 01:00:00,,, +2016-06-17 01:15:00,,, +2016-06-17 01:24:06,3087.0,-10.4759, +2016-06-17 01:30:00,,,26.7168 +2016-06-17 01:45:00,,, +2016-06-17 02:00:00,,, +2016-06-17 02:15:00,,,26.6694 +2016-06-17 02:18:05,3087.0,-10.4759, +2016-06-17 02:30:00,,, +2016-06-17 02:45:00,,, +2016-06-17 03:00:00,,, +2016-06-17 03:12:05,3086.0,-10.4759, +2016-06-17 03:15:00,,,26.7667 +2016-06-17 03:30:00,,, +2016-06-17 03:45:00,,, +2016-06-17 04:00:00,,,26.9122 +2016-06-17 04:06:04,3086.0,-10.4759, +2016-06-17 04:15:00,,, +2016-06-17 04:30:00,,, +2016-06-17 04:45:00,,, +2016-06-17 05:00:00,,,26.6647 +2016-06-17 05:00:03,3082.0,-10.4759, +2016-06-17 05:15:00,,, +2016-06-17 05:30:00,,, +2016-06-17 05:45:00,,, +2016-06-17 05:54:03,3082.0,-10.5066, +2016-06-17 06:00:00,,,26.9601 +2016-06-17 06:15:00,,, +2016-06-17 06:30:00,,, +2016-06-17 06:45:00,,,26.7121 +2016-06-17 06:48:13,3081.0,-10.475, +2016-06-17 07:00:00,,, +2016-06-17 07:15:00,,, +2016-06-17 07:30:00,,, +2016-06-17 07:42:24,3081.0,-10.4759, +2016-06-17 07:45:00,,,26.862 +2016-06-17 08:00:00,,, +2016-06-17 08:15:00,,, +2016-06-17 08:30:00,,,26.7691 +2016-06-17 08:36:30,3082.0,-10.4759, +2016-06-17 08:45:00,,, +2016-06-17 09:00:00,,, +2016-06-17 09:15:00,,, +2016-06-17 09:30:00,,,26.8167 +2016-06-17 09:30:30,3084.0,-10.4759, +2016-06-17 09:45:00,,, +2016-06-17 10:00:00,,, +2016-06-17 10:15:00,,, +2016-06-17 10:24:30,3087.0,-10.4759, +2016-06-17 10:30:00,,,26.6718 +2016-06-17 10:45:00,,, +2016-06-17 11:00:00,,, +2016-06-17 11:15:00,,,26.7192 +2016-06-17 11:18:30,3087.0,-10.4759, +2016-06-17 11:30:00,,, +2016-06-17 11:45:00,,, +2016-06-17 12:00:00,,, +2016-06-17 12:12:30,3088.0,-10.3861, +2016-06-17 12:15:00,,,26.7168 +2016-06-17 12:30:00,,, +2016-06-17 12:45:00,,, +2016-06-17 13:00:00,,,26.7287 +2016-06-17 13:06:31,3094.0,-10.4426, +2016-06-17 13:15:00,,, +2016-06-17 13:30:00,,, +2016-06-17 13:45:00,,, +2016-06-17 14:00:00,,,26.7168 +2016-06-17 14:00:42,3094.0,-10.4769, +2016-06-17 14:15:00,,, +2016-06-17 14:30:00,,, +2016-06-17 14:45:00,,, +2016-06-17 14:54:53,3091.0,-10.4166, +2016-06-17 15:00:00,,,26.8692 +2016-06-17 15:15:00,,, +2016-06-17 15:30:00,,, +2016-06-17 15:45:00,,,26.8692 +2016-06-17 15:49:00,3091.0,-10.4157, +2016-06-17 16:00:00,,, +2016-06-17 16:15:00,,, +2016-06-17 16:30:00,,, +2016-06-17 16:43:00,3089.0,-10.4462, +2016-06-17 16:45:00,,,26.7739 +2016-06-17 17:00:00,,, +2016-06-17 17:15:00,,, +2016-06-17 17:30:00,,,26.8143 +2016-06-17 17:36:59,3087.0,-10.4157, +2016-06-17 17:45:00,,, +2016-06-17 18:00:00,,, +2016-06-17 18:15:00,,, +2016-06-17 18:30:00,,,26.8644 +2016-06-17 18:30:59,3087.0,-10.4759, +2016-06-17 18:45:00,,, +2016-06-17 19:00:00,,, +2016-06-17 19:15:00,,, +2016-06-17 19:24:59,3087.0,-10.475, +2016-06-17 19:30:00,,,26.7644 +2016-06-17 19:45:00,,, +2016-06-17 20:00:00,,, +2016-06-17 20:15:00,,,26.7192 +2016-06-17 20:18:59,3082.0,-10.5057, +2016-06-17 20:30:00,,, +2016-06-17 20:45:00,,, +2016-06-17 21:00:00,,, +2016-06-17 21:13:10,3080.0,-10.5365, +2016-06-17 21:15:00,,,26.5748 +2016-06-17 21:30:00,,, +2016-06-17 21:45:00,,, +2016-06-17 22:00:00,,,26.8167 +2016-06-17 22:07:20,3079.0,-10.5057, +2016-06-17 22:15:00,,, +2016-06-17 22:30:00,,, +2016-06-17 22:45:00,,, +2016-06-17 23:00:00,,,26.7691 +2016-06-17 23:01:26,3076.0,-10.5365, +2016-06-17 23:15:00,,, +2016-06-17 23:30:00,,, +2016-06-17 23:45:00,,, +2016-06-17 23:55:25,3076.0,-10.5057, +2016-06-18 00:00:00,,,27.2562 +2016-06-18 00:15:00,,, +2016-06-18 00:30:00,,, +2016-06-18 00:45:00,,,27.0608 +2016-06-18 00:49:25,3072.0,-10.5664, +2016-06-18 01:00:00,,, +2016-06-18 01:15:00,,, +2016-06-18 01:30:00,,, +2016-06-18 01:43:24,3072.0,-10.5664, +2016-06-18 01:45:00,,,26.8143 +2016-06-18 02:00:00,,, +2016-06-18 02:15:00,,, +2016-06-18 02:30:00,,,26.8143 +2016-06-18 02:37:23,3071.0,-10.5963, +2016-06-18 02:45:00,,, +2016-06-18 03:00:00,,, +2016-06-18 03:15:00,,, +2016-06-18 03:30:00,,,26.862 +2016-06-18 03:31:22,3070.0,-10.5963, +2016-06-18 03:45:00,,, +2016-06-18 04:00:00,,, +2016-06-18 04:15:00,,, +2016-06-18 04:25:32,3067.0,-10.6264, +2016-06-18 04:30:00,,,26.862 +2016-06-18 04:45:00,,, +2016-06-18 05:00:00,,, +2016-06-18 05:15:00,,,26.7667 +2016-06-18 05:19:41,3066.0,-10.6264, +2016-06-18 05:30:00,,, +2016-06-18 05:45:00,,, +2016-06-18 06:00:00,,, +2016-06-18 06:13:46,3066.0,-10.5954, +2016-06-18 06:15:00,,,26.8167 +2016-06-18 06:30:00,,, +2016-06-18 06:45:00,,, +2016-06-18 07:00:00,,, +2016-06-18 07:07:45,3070.0,-10.5664, +2016-06-18 07:15:00,,,27.1089 +2016-06-18 07:30:00,,, +2016-06-18 07:45:00,,, +2016-06-18 08:00:00,,,27.1113 +2016-06-18 08:01:45,3072.0,-10.5355, +2016-06-18 08:15:00,,, +2016-06-18 08:30:00,,, +2016-06-18 08:45:00,,, +2016-06-18 08:55:44,3078.0,-10.5057, +2016-06-18 09:00:00,,,26.9625 +2016-06-18 09:15:00,,, +2016-06-18 09:30:00,,, +2016-06-18 09:45:00,,,27.1523 +2016-06-18 09:49:44,3083.0,-10.4759, +2016-06-18 10:00:00,,, +2016-06-18 10:15:00,,, +2016-06-18 10:30:00,,, +2016-06-18 10:43:44,3089.0,-10.4157, +2016-06-18 10:45:00,,,27.2538 +2016-06-18 11:00:00,,, +2016-06-18 11:15:00,,, +2016-06-18 11:30:00,,, +2016-06-18 11:37:56,3094.0,-10.3861, +2016-06-18 11:45:00,,,27.2127 +2016-06-18 12:00:00,,, +2016-06-18 12:15:00,,, +2016-06-18 12:30:00,,,27.2151 +2016-06-18 12:32:07,3100.0,-10.3567, +2016-06-18 12:45:00,,, +2016-06-18 13:00:00,,, +2016-06-18 13:15:00,,, +2016-06-18 13:26:14,3105.0,-10.2969, +2016-06-18 13:30:00,,,27.3095 +2016-06-18 13:45:00,,, +2016-06-18 14:00:00,,, +2016-06-18 14:15:00,,,27.261 +2016-06-18 14:20:15,3108.0,-10.3272, +2016-06-18 14:30:00,,, +2016-06-18 14:45:00,,, +2016-06-18 15:00:00,,, +2016-06-18 15:14:16,3107.0,-10.3309, +2016-06-18 15:15:00,,,27.2949 +2016-06-18 15:30:00,,, +2016-06-18 15:45:00,,, +2016-06-18 16:00:00,,, +2016-06-18 16:08:17,3107.0,-10.2667, +2016-06-18 16:15:00,,,27.3095 +2016-06-18 16:30:00,,, +2016-06-18 16:45:00,,, +2016-06-18 17:00:00,,,27.3095 +2016-06-18 17:02:18,3108.0,-10.2969, +2016-06-18 17:15:00,,, +2016-06-18 17:30:00,,, +2016-06-18 17:45:00,,, +2016-06-18 17:56:19,3106.0,-10.2969, +2016-06-18 18:00:00,,,27.3095 +2016-06-18 18:15:00,,, +2016-06-18 18:30:00,,, +2016-06-18 18:45:00,,,27.4091 +2016-06-18 18:50:31,3104.0,-10.2667, +2016-06-18 19:00:00,,, +2016-06-18 19:15:00,,, +2016-06-18 19:30:00,,, +2016-06-18 19:44:43,3103.0,-10.296, +2016-06-18 19:45:00,,,27.4067 +2016-06-18 20:00:00,,, +2016-06-18 20:15:00,,, +2016-06-18 20:30:00,,, +2016-06-18 20:38:50,3100.0,-10.3567, +2016-06-18 20:45:00,,,27.358 +2016-06-18 21:00:00,,, +2016-06-18 21:15:00,,, +2016-06-18 21:30:00,,,27.261 +2016-06-18 21:32:51,3095.0,-10.3557, +2016-06-18 21:45:00,,, +2016-06-18 22:00:00,,, +2016-06-18 22:15:00,,, +2016-06-18 22:26:52,3094.0,-10.3861, +2016-06-18 22:30:00,,,27.656 +2016-06-18 22:45:00,,, +2016-06-18 23:00:00,,, +2016-06-18 23:15:00,,,27.2078 +2016-06-18 23:20:53,3090.0,-10.3861, +2016-06-18 23:30:00,,, +2016-06-18 23:45:00,,, +2016-06-19 00:00:00,,, +2016-06-19 00:14:53,3087.0,-10.4157, +2016-06-19 00:15:00,,,27.1089 +2016-06-19 00:30:00,,, +2016-06-19 00:45:00,,, +2016-06-19 01:00:00,,, +2016-06-19 01:08:53,3084.0,-10.4453, +2016-06-19 01:15:00,,,27.1162 +2016-06-19 01:30:00,,, +2016-06-19 01:45:00,,, +2016-06-19 02:00:00,,,26.9625 +2016-06-19 02:03:04,3080.0,-10.4759, +2016-06-19 02:15:00,,, +2016-06-19 02:30:00,,, +2016-06-19 02:45:00,,, +2016-06-19 02:57:15,3084.0,-10.296, +2016-06-19 03:00:00,,,28.2792 +2016-06-19 03:15:00,,, +2016-06-19 03:30:00,,, +2016-06-19 03:45:00,,,26.9194 +2016-06-19 03:51:21,3078.0,-10.5057, +2016-06-19 04:00:00,,, +2016-06-19 04:15:00,,, +2016-06-19 04:30:00,,, +2016-06-19 04:45:00,,,27.0176 +2016-06-19 04:45:22,3077.0,-10.5057, +2016-06-19 05:00:00,,, +2016-06-19 05:15:00,,, +2016-06-19 05:30:00,,, +2016-06-19 05:39:22,3076.0,-10.475, +2016-06-19 05:45:00,,,27.1186 +2016-06-19 06:00:00,,, +2016-06-19 06:15:00,,, +2016-06-19 06:30:00,,,27.068 +2016-06-19 06:33:22,3076.0,-10.475, +2016-06-19 06:45:00,,, +2016-06-19 07:00:00,,, +2016-06-19 07:15:00,,, +2016-06-19 07:27:23,3079.0,-10.4453, +2016-06-19 07:30:00,,,27.3168 +2016-06-19 07:45:00,,, +2016-06-19 08:00:00,,, +2016-06-19 08:15:00,,,27.1668 +2016-06-19 08:21:23,3080.0,-10.4453, +2016-06-19 08:30:00,,, +2016-06-19 08:45:00,,, +2016-06-19 09:00:00,,, +2016-06-19 09:15:00,,,27.2659 +2016-06-19 09:15:24,3083.0,-10.4148, +2016-06-19 09:30:00,,, +2016-06-19 09:45:00,,, +2016-06-19 10:00:00,,, +2016-06-19 10:09:35,3087.0,-10.3861, +2016-06-19 10:15:00,,,27.2151 +2016-06-19 10:30:00,,, +2016-06-19 10:45:00,,, +2016-06-19 11:00:00,,,26.972 +2016-06-19 11:03:46,3089.0,-10.4157, +2016-06-19 11:15:00,,, +2016-06-19 11:30:00,,, +2016-06-19 11:45:00,,, +2016-06-19 11:57:53,3090.0,-10.4157, +2016-06-19 12:00:00,,,27.4188 +2016-06-19 12:15:00,,, +2016-06-19 12:30:00,,, +2016-06-19 12:45:00,,,27.3192 +2016-06-19 12:51:53,3087.0,-10.3861, +2016-06-19 13:00:00,,, +2016-06-19 13:15:00,,, +2016-06-19 13:30:00,,, +2016-06-19 13:45:00,,,27.2707 +2016-06-19 13:45:53,3088.0,-10.3557, +2016-06-19 14:00:00,,, +2016-06-19 14:15:00,,, +2016-06-19 14:30:00,,, +2016-06-19 14:39:54,3093.0,-10.3557, +2016-06-19 14:45:00,,,27.2199 +2016-06-19 15:00:00,,, +2016-06-19 15:15:00,,, +2016-06-19 15:30:00,,,27.2199 +2016-06-19 15:33:55,3095.0,-10.3567, +2016-06-19 15:45:00,,, +2016-06-19 16:00:00,,, +2016-06-19 16:15:00,,, +2016-06-19 16:27:56,3099.0,-10.3263, +2016-06-19 16:30:00,,,27.2804 +2016-06-19 16:45:00,,, +2016-06-19 17:00:00,,, +2016-06-19 17:15:00,,,27.2248 +2016-06-19 17:22:08,3097.0,-10.3567, +2016-06-19 17:30:00,,, +2016-06-19 17:45:00,,, +2016-06-19 18:00:00,,, +2016-06-19 18:15:00,,,27.0753 +2016-06-19 18:16:20,3095.0,-10.3557, +2016-06-19 18:30:00,,, +2016-06-19 18:45:00,,, +2016-06-19 19:00:00,,, +2016-06-19 19:10:27,3094.0,-10.3852, +2016-06-19 19:15:00,,,27.1258 +2016-06-19 19:30:00,,, +2016-06-19 19:45:00,,, +2016-06-19 20:00:00,,,27.2248 +2016-06-19 20:04:27,3091.0,-10.3852, +2016-06-19 20:15:00,,, +2016-06-19 20:30:00,,, +2016-06-19 20:45:00,,, +2016-06-19 20:58:27,3087.0,-10.4148, +2016-06-19 21:00:00,,,27.0777 +2016-06-19 21:15:00,,, +2016-06-19 21:30:00,,, +2016-06-19 21:45:00,,,27.1258 +2016-06-19 21:52:27,3081.0,-10.475, +2016-06-19 22:00:00,,, +2016-06-19 22:15:00,,, +2016-06-19 22:30:00,,, +2016-06-19 22:45:00,,,27.0704 +2016-06-19 22:46:27,3076.0,-10.5057, +2016-06-19 23:00:00,,, +2016-06-19 23:15:00,,, +2016-06-19 23:30:00,,, +2016-06-19 23:40:26,3072.0,-10.5954, +2016-06-19 23:45:00,,,26.7739 +2016-06-20 00:00:00,,, +2016-06-20 00:15:00,,, +2016-06-20 00:30:00,,,25.5339 +2016-06-20 00:34:37,3065.0,-10.6245, +2016-06-20 00:45:00,,, +2016-06-20 01:00:00,,, +2016-06-20 01:15:00,,, +2016-06-20 01:28:47,3064.0,-10.6565, +2016-06-20 01:30:00,,,26.0043 +2016-06-20 01:45:00,,, +2016-06-20 02:00:00,,, +2016-06-20 02:15:00,,, +2016-06-20 02:22:53,3064.0,-10.5954, +2016-06-20 02:30:00,,,26.9744 +2016-06-20 02:45:00,,, +2016-06-20 03:00:00,,, +2016-06-20 03:15:00,,,26.6789 +2016-06-20 03:16:52,3062.0,-10.6254, +2016-06-20 03:30:00,,, +2016-06-20 03:45:00,,, +2016-06-20 04:00:00,,, +2016-06-20 04:10:52,3058.0,-10.6867, +2016-06-20 04:15:00,,,26.0066 +2016-06-20 04:30:00,,, +2016-06-20 04:45:00,,, +2016-06-20 05:00:00,,,27.121 +2016-06-20 05:04:51,3061.0,-10.6264, +2016-06-20 05:15:00,,, +2016-06-20 05:30:00,,, +2016-06-20 05:45:00,,, +2016-06-20 05:58:50,3060.0,-10.6254, +2016-06-20 06:00:00,,,26.7763 +2016-06-20 06:15:00,,, +2016-06-20 06:30:00,,, +2016-06-20 06:45:00,,, +2016-06-20 06:52:49,3064.0,-10.1475, +2016-06-20 07:00:00,,,28.0318 +2016-06-20 07:15:00,,, +2016-06-20 07:30:00,,, +2016-06-20 07:45:00,,,26.2951 +2016-06-20 07:46:59,3064.0,-10.5954, +2016-06-20 08:00:00,,, +2016-06-20 08:15:00,,, +2016-06-20 08:30:00,,, +2016-06-20 08:41:10,3071.0,-10.5963, +2016-06-20 08:45:00,,,26.724 +2016-06-20 09:00:00,,, +2016-06-20 09:15:00,,, +2016-06-20 09:30:00,,,27.2732 +2016-06-20 09:35:16,3080.0,-10.4759, +2016-06-20 09:45:00,,, +2016-06-20 10:00:00,,, +2016-06-20 10:15:00,,, +2016-06-20 10:29:17,3087.0,-10.4148, +2016-06-20 10:30:00,,,27.2732 +2016-06-20 10:45:00,,, +2016-06-20 11:00:00,,, +2016-06-20 11:15:00,,, +2016-06-20 11:23:18,3094.0,-10.4472, +2016-06-20 11:30:00,,,26.3396 +2016-06-20 11:45:00,,, +2016-06-20 12:00:00,,, +2016-06-20 12:15:00,,,27.1789 +2016-06-20 12:17:19,3101.0,-10.3567, +2016-06-20 12:30:00,,, +2016-06-20 12:45:00,,, +2016-06-20 13:00:00,,, +2016-06-20 13:11:21,3106.0,-10.3861, +2016-06-20 13:15:00,,,26.2928 +2016-06-20 13:30:00,,, +2016-06-20 13:45:00,,, +2016-06-20 14:00:00,,,26.2928 +2016-06-20 14:05:22,3110.0,-10.3567, +2016-06-20 14:15:00,,, +2016-06-20 14:30:00,,, +2016-06-20 14:45:00,,, +2016-06-20 14:59:35,3115.0,-10.296, +2016-06-20 15:00:00,,,26.3888 +2016-06-20 15:15:00,,, +2016-06-20 15:30:00,,, +2016-06-20 15:45:00,,, +2016-06-20 15:53:48,3121.0,-10.2083, +2016-06-20 16:00:00,,,27.2732 +2016-06-20 16:15:00,,, +2016-06-20 16:30:00,,, +2016-06-20 16:45:00,,,26.1994 +2016-06-20 16:47:56,3118.0,-10.2969, +2016-06-20 17:00:00,,, +2016-06-20 17:15:00,,, +2016-06-20 17:30:00,,, +2016-06-20 17:41:58,3119.0,-10.1783, +2016-06-20 17:45:00,,,27.3241 +2016-06-20 18:00:00,,, +2016-06-20 18:15:00,,, +2016-06-20 18:30:00,,,26.1994 +2016-06-20 18:36:00,3112.0,-10.3263, +2016-06-20 18:45:00,,, +2016-06-20 19:00:00,,, +2016-06-20 19:15:00,,, +2016-06-20 19:30:00,,,27.1258 +2016-06-20 19:30:01,3110.0,-10.2375, +2016-06-20 19:45:00,,, +2016-06-20 20:00:00,,, +2016-06-20 20:15:00,,, +2016-06-20 20:24:03,3104.0,-10.3861, +2016-06-20 20:30:00,,,26.104 +2016-06-20 20:45:00,,, +2016-06-20 21:00:00,,, +2016-06-20 21:15:00,,,26.5842 +2016-06-20 21:18:03,3101.0,-10.3852, +2016-06-20 21:30:00,,, +2016-06-20 21:45:00,,, +2016-06-20 22:00:00,,, +2016-06-20 22:12:15,3099.0,-10.296, +2016-06-20 22:15:00,,,27.3241 +2016-06-20 22:30:00,,, +2016-06-20 22:45:00,,, +2016-06-20 23:00:00,,,26.7335 +2016-06-20 23:06:26,3093.0,-10.3861, +2016-06-20 23:15:00,,, +2016-06-20 23:30:00,,, +2016-06-20 23:45:00,,, +2016-06-21 00:00:00,,,27.0248 +2016-06-21 00:00:32,3087.0,-10.3852, +2016-06-21 00:15:00,,, +2016-06-21 00:30:00,,, +2016-06-21 00:45:00,,, +2016-06-21 00:54:32,3082.0,-10.4157, +2016-06-21 01:00:00,,,26.9289 +2016-06-21 01:15:00,,, +2016-06-21 01:30:00,,, +2016-06-21 01:45:00,,,27.2175 +2016-06-21 01:48:32,3081.0,-10.4453, +2016-06-21 02:00:00,,, +2016-06-21 02:15:00,,, +2016-06-21 02:30:00,,, +2016-06-21 02:42:31,3076.0,-10.5048, +2016-06-21 02:45:00,,,26.3888 +2016-06-21 03:00:00,,, +2016-06-21 03:15:00,,, +2016-06-21 03:30:00,,,26.3911 +2016-06-21 03:36:30,3075.0,-10.5057, +2016-06-21 03:45:00,,, +2016-06-21 04:00:00,,, +2016-06-21 04:15:00,,, +2016-06-21 04:30:00,,,26.0136 +2016-06-21 04:30:30,3073.0,-10.5664, +2016-06-21 04:45:00,,, +2016-06-21 05:00:00,,, +2016-06-21 05:15:00,,, +2016-06-21 05:24:41,3075.0,-10.5057, +2016-06-21 05:30:00,,,26.5346 +2016-06-21 05:45:00,,, +2016-06-21 06:00:00,,, +2016-06-21 06:15:00,,,26.4428 +2016-06-21 06:18:51,3075.0,-10.5057, +2016-06-21 06:30:00,,, +2016-06-21 06:45:00,,, +2016-06-21 07:00:00,,, +2016-06-21 07:12:57,3077.0,-10.475, +2016-06-21 07:15:00,,,26.3982 +2016-06-21 07:30:00,,, +2016-06-21 07:45:00,,, +2016-06-21 08:00:00,,,26.9864 +2016-06-21 08:06:56,3080.0,-10.4148, +2016-06-21 08:15:00,,, +2016-06-21 08:30:00,,, +2016-06-21 08:45:00,,, +2016-06-21 09:00:00,,,27.4286 +2016-06-21 09:00:56,3083.0,-10.3557, +2016-06-21 09:15:00,,, +2016-06-21 09:30:00,,, +2016-06-21 09:45:00,,, +2016-06-21 09:54:56,3087.0,-10.4157, +2016-06-21 10:00:00,,,26.7882 +2016-06-21 10:15:00,,, +2016-06-21 10:30:00,,, +2016-06-21 10:45:00,,,26.7335 +2016-06-21 10:48:57,3091.0,-10.4157, +2016-06-21 11:00:00,,, +2016-06-21 11:15:00,,, +2016-06-21 11:30:00,,, +2016-06-21 11:42:58,3094.0,-10.3548, +2016-06-21 11:45:00,,,26.4475 +2016-06-21 12:00:00,,, +2016-06-21 12:15:00,,, +2016-06-21 12:30:00,,,27.3313 +2016-06-21 12:37:10,3100.0,-10.2375, +2016-06-21 12:45:00,,, +2016-06-21 13:00:00,,, +2016-06-21 13:15:00,,, +2016-06-21 13:30:00,,,27.1354 +2016-06-21 13:31:22,3106.0,-10.2384, +2016-06-21 13:45:00,,, +2016-06-21 14:00:00,,, +2016-06-21 14:15:00,,, +2016-06-21 14:25:29,3110.0,-10.1792, +2016-06-21 14:30:00,,,27.3362 +2016-06-21 14:45:00,,, +2016-06-21 15:00:00,,, +2016-06-21 15:15:00,,,27.2393 +2016-06-21 15:19:31,3115.0,-10.1493, +2016-06-21 15:30:00,,, +2016-06-21 15:45:00,,, +2016-06-21 16:00:00,,, +2016-06-21 16:13:33,3118.0,-10.0616, +2016-06-21 16:15:00,,,27.4384 +2016-06-21 16:30:00,,, +2016-06-21 16:45:00,,, +2016-06-21 17:00:00,,, +2016-06-21 17:07:35,3117.0,-10.1493, +2016-06-21 17:15:00,,,27.0897 +2016-06-21 17:30:00,,, +2016-06-21 17:45:00,,, +2016-06-21 18:00:00,,,27.2393 +2016-06-21 18:01:37,3117.0,-10.1194, +2016-06-21 18:15:00,,, +2016-06-21 18:30:00,,, +2016-06-21 18:45:00,,, +2016-06-21 18:55:39,3114.0,-10.1783, +2016-06-21 19:00:00,,,26.8501 +2016-06-21 19:15:00,,, +2016-06-21 19:30:00,,, +2016-06-21 19:45:00,,,26.843000000000004 +2016-06-21 19:49:51,3113.0,-10.1783, +2016-06-21 20:00:00,,, +2016-06-21 20:15:00,,, +2016-06-21 20:30:00,,, +2016-06-21 20:44:04,3109.0,-10.2083, +2016-06-21 20:45:00,,,26.9003 +2016-06-21 21:00:00,,, +2016-06-21 21:15:00,,, +2016-06-21 21:30:00,,, +2016-06-21 21:38:11,3106.0,-10.1484, +2016-06-21 21:45:00,,,27.2465 +2016-06-21 22:00:00,,, +2016-06-21 22:15:00,,, +2016-06-21 22:30:00,,,27.2465 +2016-06-21 22:32:11,3101.0,-10.1783, +2016-06-21 22:45:00,,, +2016-06-21 23:00:00,,, +2016-06-21 23:15:00,,, +2016-06-21 23:26:12,3100.0,-10.1493, +2016-06-21 23:30:00,,,27.2974 +2016-06-21 23:45:00,,, +2016-06-22 00:00:00,,, +2016-06-22 00:15:00,,, +2016-06-22 00:30:00,,, +2016-06-22 00:45:00,,, +2016-06-22 01:00:00,,, +2016-06-22 01:14:14,3094.0,-10.2375, +2016-06-22 01:15:00,,,27.1982 +2016-06-22 01:30:00,,, +2016-06-22 01:45:00,,, +2016-06-22 02:00:00,,, +2016-06-22 02:08:14,3094.0,-10.2375, +2016-06-22 02:15:00,,,27.3459 +2016-06-22 02:30:00,,, +2016-06-22 02:45:00,,, +2016-06-22 03:00:00,,,27.2465 +2016-06-22 03:02:25,3091.0,-10.2375, +2016-06-22 03:15:00,,, +2016-06-22 03:30:00,,, +2016-06-22 03:45:00,,, +2016-06-22 03:56:36,3088.0,-10.2366, +2016-06-22 04:00:00,,,27.1958 +2016-06-22 04:15:00,,, +2016-06-22 04:30:00,,, +2016-06-22 04:45:00,,,26.8501 +2016-06-22 04:50:43,3087.0,-10.3254, +2016-06-22 05:00:00,,, +2016-06-22 05:15:00,,, +2016-06-22 05:30:00,,, +2016-06-22 05:44:43,3090.0,-9.9736, +2016-06-22 05:45:00,,,27.4481 +2016-06-22 06:00:00,,, +2016-06-22 06:15:00,,, +2016-06-22 06:30:00,,, +2016-06-22 06:38:44,3088.0,-10.3254, +2016-06-22 06:45:00,,,26.6504 +2016-06-22 07:00:00,,, +2016-06-22 07:15:00,,, +2016-06-22 07:30:00,,,27.1475 +2016-06-22 07:32:44,3093.0,-10.2375, +2016-06-22 07:45:00,,, +2016-06-22 08:00:00,,, +2016-06-22 08:15:00,,, +2016-06-22 08:26:45,3094.0,-10.2375, +2016-06-22 08:30:00,,,27.1041 +2016-06-22 08:45:00,,, +2016-06-22 09:00:00,,, +2016-06-22 09:15:00,,,27.0488 +2016-06-22 09:20:46,3099.0,-10.1783, +2016-06-22 09:30:00,,, +2016-06-22 09:45:00,,, +2016-06-22 10:00:00,,, +2016-06-22 10:14:58,3104.0,-10.1783, +2016-06-22 10:15:00,,,27.056 +2016-06-22 10:30:00,,, +2016-06-22 10:45:00,,, +2016-06-22 11:00:00,,, +2016-06-22 11:09:11,3110.0,-10.1212, +2016-06-22 11:15:00,,,27.3047 +2016-06-22 11:30:00,,, +2016-06-22 11:45:00,,, +2016-06-22 12:00:00,,,27.2514 +2016-06-22 12:03:19,3115.0,-10.0616, +2016-06-22 12:15:00,,, +2016-06-22 12:30:00,,, +2016-06-22 12:45:00,,, +2016-06-22 12:57:21,3122.0,-10.004, +2016-06-22 13:00:00,,,27.3047 +2016-06-22 13:15:00,,, +2016-06-22 13:30:00,,, +2016-06-22 13:45:00,,,27.2079 +2016-06-22 13:51:23,3128.0,-9.9745, +2016-06-22 14:00:00,,, +2016-06-22 14:15:00,,, +2016-06-22 14:30:00,,, +2016-06-22 14:45:00,,,27.2079 +2016-06-22 14:45:26,3132.0,-9.9458, +2016-06-22 15:00:00,,, +2016-06-22 15:15:00,,, +2016-06-22 15:30:00,,, +2016-06-22 15:39:29,3137.0,-9.9467, +2016-06-22 15:45:00,,,26.7763 +2016-06-22 16:00:00,,, +2016-06-22 16:15:00,,, +2016-06-22 16:30:00,,,27.0633 +2016-06-22 16:33:32,3138.0,-9.9467, +2016-06-22 16:45:00,,, +2016-06-22 17:00:00,,, +2016-06-22 17:15:00,,, +2016-06-22 17:27:46,3138.0,-9.9467, +2016-06-22 17:30:00,,,27.0633 +2016-06-22 17:45:00,,, +2016-06-22 18:00:00,,, +2016-06-22 18:15:00,,,27.3557 +2016-06-22 18:21:59,3137.0,-9.8594, +2016-06-22 18:30:00,,, +2016-06-22 18:45:00,,, +2016-06-22 19:00:00,,, +2016-06-22 19:15:00,,,27.1114 +2016-06-22 19:16:07,3132.0,-9.9467, +2016-06-22 19:30:00,,, +2016-06-22 19:45:00,,, +2016-06-22 20:00:00,,, +2016-06-22 20:10:10,3127.0,-9.9745, +2016-06-22 20:15:00,,,27.1114 +2016-06-22 20:30:00,,, +2016-06-22 20:45:00,,, +2016-06-22 21:00:00,,,27.0152 +2016-06-22 21:04:12,3121.0,-10.0328, +2016-06-22 21:15:00,,, +2016-06-22 21:30:00,,, +2016-06-22 21:45:00,,, +2016-06-22 21:58:14,3116.0,-10.0616, +2016-06-22 22:00:00,,,27.1138 +2016-06-22 22:15:00,,, +2016-06-22 22:30:00,,, +2016-06-22 22:45:00,,,27.1186 +2016-06-22 22:52:15,3112.0,-10.0328, +2016-06-22 23:00:00,,, +2016-06-22 23:15:00,,, +2016-06-22 23:30:00,,, +2016-06-22 23:45:00,,,27.0705 +2016-06-22 23:46:16,3108.0,-10.0625, +2016-06-23 00:00:00,,, +2016-06-23 00:15:00,,, +2016-06-23 00:30:00,,, +2016-06-23 00:40:29,3106.0,-10.0914, +2016-06-23 00:45:00,,,26.9793 +2016-06-23 01:00:00,,, +2016-06-23 01:15:00,,, +2016-06-23 01:30:00,,,26.9793 +2016-06-23 01:34:40,3103.0,-10.1203, +2016-06-23 01:45:00,,, +2016-06-23 02:00:00,,, +2016-06-23 02:15:00,,, +2016-06-23 02:28:48,3101.0,-10.0896, +2016-06-23 02:30:00,,,27.1234 +2016-06-23 02:45:00,,, +2016-06-23 03:00:00,,, +2016-06-23 03:15:00,,, +2016-06-23 03:22:49,3099.0,-10.1203, +2016-06-23 03:30:00,,,27.1813 +2016-06-23 03:45:00,,, +2016-06-23 04:00:00,,, +2016-06-23 04:15:00,,,27.121 +2016-06-23 04:16:51,3096.0,-10.1493, +2016-06-23 04:30:00,,, +2016-06-23 04:45:00,,, +2016-06-23 05:00:00,,, +2016-06-23 05:10:52,3094.0,-10.1493, +2016-06-23 05:15:00,,,27.1307 +2016-06-23 05:30:00,,, +2016-06-23 05:45:00,,, +2016-06-23 06:00:00,,,27.1307 +2016-06-23 06:04:54,3095.0,-10.1194, +2016-06-23 06:15:00,,, +2016-06-23 06:30:00,,, +2016-06-23 06:45:00,,, +2016-06-23 06:58:55,3099.0,-10.1203, +2016-06-23 07:00:00,,,27.1307 +2016-06-23 07:15:00,,, +2016-06-23 07:30:00,,, +2016-06-23 07:45:00,,, +2016-06-23 07:53:08,3104.0,-10.0328, +2016-06-23 08:00:00,,,27.1331 +2016-06-23 08:15:00,,, +2016-06-23 08:30:00,,, +2016-06-23 08:45:00,,,27.1331 +2016-06-23 08:47:21,3110.0,-10.0032, +2016-06-23 09:00:00,,, +2016-06-23 09:15:00,,, +2016-06-23 09:30:00,,, +2016-06-23 09:41:28,3121.0,-9.9467, +2016-06-23 09:45:00,,,27.1813 +2016-06-23 10:00:00,,, +2016-06-23 10:15:00,,, +2016-06-23 10:30:00,,,27.0392 +2016-06-23 10:35:31,3131.0,-9.8594, +2016-06-23 10:45:00,,, +2016-06-23 11:00:00,,, +2016-06-23 11:15:00,,, +2016-06-23 11:29:34,3141.0,-9.8603, +2016-06-23 11:30:00,,,26.9888 +2016-06-23 11:45:00,,, +2016-06-23 12:00:00,,, +2016-06-23 12:15:00,,, +2016-06-23 12:23:38,3150.0,-9.8035, +2016-06-23 12:30:00,,,26.8931 +2016-06-23 12:45:00,,, +2016-06-23 13:00:00,,, +2016-06-23 13:15:00,,,26.8931 +2016-06-23 13:17:42,3157.0,-9.746, +2016-06-23 13:30:00,,, +2016-06-23 13:45:00,,, +2016-06-23 14:00:00,,, +2016-06-23 14:11:47,3163.0,-9.717, +2016-06-23 14:15:00,,,26.8454 +2016-06-23 14:30:00,,, +2016-06-23 14:45:00,,, +2016-06-23 15:00:00,,,26.8931 +2016-06-23 15:06:02,3167.0,-9.6888, +2016-06-23 15:15:00,,, +2016-06-23 15:30:00,,, +2016-06-23 15:45:00,,, +2016-06-23 16:00:00,,,26.8931 +2016-06-23 16:00:18,3170.0,-9.6897, +2016-06-23 16:15:00,,, +2016-06-23 16:30:00,,, +2016-06-23 16:45:00,,, +2016-06-23 16:54:28,3170.0,-9.6607, +2016-06-23 17:00:00,,,26.8931 +2016-06-23 17:15:00,,, +2016-06-23 17:30:00,,, +2016-06-23 17:45:00,,,26.8454 +2016-06-23 17:48:33,3166.0,-9.6888, +2016-06-23 18:00:00,,, +2016-06-23 18:15:00,,, +2016-06-23 18:30:00,,, +2016-06-23 18:42:37,3163.0,-9.6607, +2016-06-23 18:45:00,,,26.7572 +2016-06-23 19:00:00,,, +2016-06-23 19:15:00,,, +2016-06-23 19:30:00,,,26.7596 +2016-06-23 19:36:42,3160.0,-9.7178, +2016-06-23 19:45:00,,, +2016-06-23 20:00:00,,, +2016-06-23 20:15:00,,, +2016-06-23 20:30:00,,,26.8525 +2016-06-23 20:30:46,3154.0,-9.746, +2016-06-23 20:45:00,,, +2016-06-23 21:00:00,,, +2016-06-23 21:15:00,,, +2016-06-23 21:24:50,3149.0,-9.7743, +2016-06-23 21:30:00,,,26.812 +2016-06-23 21:45:00,,, +2016-06-23 22:00:00,,, +2016-06-23 22:15:00,,,26.8597 +2016-06-23 22:18:53,3145.0,-9.7743, +2016-06-23 22:30:00,,, +2016-06-23 22:45:00,,, +2016-06-23 23:00:00,,, +2016-06-23 23:13:08,3142.0,-9.8035, +2016-06-23 23:15:00,,,26.8597 +2016-06-23 23:30:00,,, +2016-06-23 23:45:00,,, +2016-06-24 00:00:00,,,26.8191 +2016-06-24 00:07:22,3137.0,-9.8318, +2016-06-24 00:15:00,,, +2016-06-24 00:30:00,,, +2016-06-24 00:45:00,,, +2016-06-24 01:00:00,,,26.8191 +2016-06-24 01:01:31,3132.0,-9.8611, +2016-06-24 01:15:00,,, +2016-06-24 01:30:00,,, +2016-06-24 01:45:00,,, +2016-06-24 01:55:34,3128.0,-9.8603, +2016-06-24 02:00:00,,,26.8669 +2016-06-24 02:15:00,,, +2016-06-24 02:30:00,,, +2016-06-24 02:45:00,,,26.8669 +2016-06-24 02:49:37,3124.0,-9.8594, +2016-06-24 03:00:00,,, +2016-06-24 03:15:00,,, +2016-06-24 03:30:00,,, +2016-06-24 03:43:39,3123.0,-9.9181, +2016-06-24 03:45:00,,,26.8669 +2016-06-24 04:00:00,,, +2016-06-24 04:15:00,,, +2016-06-24 04:30:00,,, +2016-06-24 04:37:41,3119.0,-9.9173, +2016-06-24 04:45:00,,,26.8191 +2016-06-24 05:00:00,,, +2016-06-24 05:15:00,,, +2016-06-24 05:30:00,,,26.8191 +2016-06-24 05:31:42,3115.0,-9.9458, +2016-06-24 05:45:00,,, +2016-06-24 06:00:00,,, +2016-06-24 06:15:00,,, +2016-06-24 06:25:54,3111.0,-9.9458, +2016-06-24 06:30:00,,,26.8191 +2016-06-24 06:45:00,,, +2016-06-24 07:00:00,,, +2016-06-24 07:15:00,,,26.8239 +2016-06-24 07:20:07,3111.0,-9.9467, +2016-06-24 07:30:00,,, +2016-06-24 07:45:00,,, +2016-06-24 08:00:00,,, +2016-06-24 08:14:15,3115.0,-9.8887, +2016-06-24 08:15:00,,,26.8239 +2016-06-24 08:30:00,,, +2016-06-24 08:45:00,,, +2016-06-24 09:00:00,,, +2016-06-24 09:08:18,3123.0,-9.8603, +2016-06-24 09:15:00,,,26.8335 +2016-06-24 09:30:00,,, +2016-06-24 09:45:00,,, +2016-06-24 10:00:00,,,26.7382 +2016-06-24 10:02:21,3131.0,-9.8026, +2016-06-24 10:15:00,,, +2016-06-24 10:30:00,,, +2016-06-24 10:45:00,,, +2016-06-24 10:56:24,3142.0,-9.746, +2016-06-24 11:00:00,,,26.7858 +2016-06-24 11:15:00,,, +2016-06-24 11:30:00,,, +2016-06-24 11:45:00,,,26.7858 +2016-06-24 11:50:28,3150.0,-9.6607, +2016-06-24 12:00:00,,, +2016-06-24 12:15:00,,, +2016-06-24 12:30:00,,, +2016-06-24 12:44:31,3156.0,-9.7187, +2016-06-24 12:45:00,,,26.596 +2016-06-24 13:00:00,,, +2016-06-24 13:15:00,,, +2016-06-24 13:30:00,,, +2016-06-24 13:38:46,3163.0,-9.6616, +2016-06-24 13:45:00,,,26.6008 +2016-06-24 14:00:00,,, +2016-06-24 14:15:00,,, +2016-06-24 14:30:00,,,26.6008 +2016-06-24 14:33:02,3168.0,-9.6327, +2016-06-24 14:45:00,,, +2016-06-24 15:00:00,,, +2016-06-24 15:15:00,,, +2016-06-24 15:27:12,3171.0,-9.6327, +2016-06-24 15:30:00,,,26.6031 +2016-06-24 15:45:00,,, +2016-06-24 16:00:00,,, +2016-06-24 16:15:00,,,26.4616 +2016-06-24 16:21:17,3171.0,-9.6047, +2016-06-24 16:30:00,,, +2016-06-24 16:45:00,,, +2016-06-24 17:00:00,,, +2016-06-24 17:15:00,,,26.6055 +2016-06-24 17:15:22,3174.0,-9.24, +2016-06-24 17:30:00,,, +2016-06-24 17:45:00,,, +2016-06-24 18:00:00,,, +2016-06-24 18:09:25,3152.0,-9.7187, +2016-06-24 18:15:00,,,26.4616 +2016-06-24 18:30:00,,, +2016-06-24 18:45:00,,, +2016-06-24 19:00:00,,,26.4592 +2016-06-24 19:03:28,3132.0,-9.8035, +2016-06-24 19:15:00,,, +2016-06-24 19:30:00,,, +2016-06-24 19:45:00,,, +2016-06-24 19:57:40,3121.0,-9.8026, +2016-06-24 20:00:00,,,26.4075 +2016-06-24 20:15:00,,, +2016-06-24 20:30:00,,, +2016-06-24 20:45:00,,,26.3137 +2016-06-24 20:51:53,3115.0,-9.8594, +2016-06-24 21:00:00,,, +2016-06-24 21:15:00,,, +2016-06-24 21:30:00,,, +2016-06-24 21:45:00,,,26.3114 +2016-06-24 21:46:01,3110.0,-9.9173, +2016-06-24 22:00:00,,, +2016-06-24 22:15:00,,, +2016-06-24 22:30:00,,, +2016-06-24 22:40:02,3108.0,-9.9467, +2016-06-24 22:45:00,,,26.4146 +2016-06-24 23:00:00,,, +2016-06-24 23:15:00,,, +2016-06-24 23:30:00,,,26.3676 +2016-06-24 23:34:04,3104.0,-9.9458, +2016-06-24 23:45:00,,, +2016-06-25 00:00:00,,, +2016-06-25 00:15:00,,, +2016-06-25 00:28:05,3101.0,-9.9458, +2016-06-25 00:30:00,,,26.5134 +2016-06-25 00:45:00,,, +2016-06-25 01:00:00,,, +2016-06-25 01:15:00,,,26.4686 +2016-06-25 01:22:07,3098.0,-9.9745, +2016-06-25 01:30:00,,, +2016-06-25 01:45:00,,, +2016-06-25 02:00:00,,, +2016-06-25 02:15:00,,,26.471 +2016-06-25 02:16:08,3095.0,-9.9745, +2016-06-25 02:30:00,,, +2016-06-25 02:45:00,,, +2016-06-25 03:00:00,,, +2016-06-25 03:10:20,3094.0,-9.9736, +2016-06-25 03:15:00,,,26.471 +2016-06-25 03:30:00,,, +2016-06-25 03:45:00,,, +2016-06-25 04:00:00,,,26.5252 +2016-06-25 04:04:32,3094.0,-9.9736, +2016-06-25 04:15:00,,, +2016-06-25 04:30:00,,, +2016-06-25 04:45:00,,, +2016-06-25 04:58:39,3094.0,-9.9736, +2016-06-25 05:00:00,,,26.5252 +2016-06-25 05:15:00,,, +2016-06-25 05:30:00,,, +2016-06-25 05:45:00,,, +2016-06-25 05:52:40,3093.0,-10.0032, +2016-06-25 06:00:00,,,26.4287 +2016-06-25 06:15:00,,, +2016-06-25 06:30:00,,, +2016-06-25 06:45:00,,,26.4781 +2016-06-25 06:46:42,3094.0,-9.9736, +2016-06-25 07:00:00,,, +2016-06-25 07:15:00,,, +2016-06-25 07:30:00,,, +2016-06-25 07:40:43,3099.0,-9.945, +2016-06-25 07:45:00,,,26.4287 +2016-06-25 08:00:00,,, +2016-06-25 08:15:00,,, +2016-06-25 08:30:00,,,26.4781 +2016-06-25 08:34:45,3104.0,-9.9458, +2016-06-25 08:45:00,,, +2016-06-25 09:00:00,,, +2016-06-25 09:15:00,,, +2016-06-25 09:28:46,3106.0,-9.9736, +2016-06-25 09:30:00,,,26.2343 +2016-06-25 09:45:00,,, +2016-06-25 10:00:00,,, +2016-06-25 10:15:00,,, +2016-06-25 10:22:59,3109.0,-9.9745, +2016-06-25 10:30:00,,,26.2366 +2016-06-25 10:45:00,,, +2016-06-25 11:00:00,,, +2016-06-25 11:15:00,,,26.3325 +2016-06-25 11:17:12,3113.0,-9.9467, +2016-06-25 11:30:00,,, +2016-06-25 11:45:00,,, +2016-06-25 12:00:00,,, +2016-06-25 12:11:20,3115.0,-9.9173, +2016-06-25 12:15:00,,,26.4287 +2016-06-25 12:30:00,,, +2016-06-25 12:45:00,,, +2016-06-25 13:00:00,,,26.3348 +2016-06-25 13:05:22,3118.0,-9.9173, +2016-06-25 13:15:00,,, +2016-06-25 13:30:00,,, +2016-06-25 13:45:00,,, +2016-06-25 13:59:24,3118.0,-9.9173, +2016-06-25 14:00:00,,,26.288 +2016-06-25 14:15:00,,, +2016-06-25 14:30:00,,, +2016-06-25 14:45:00,,, +2016-06-25 14:53:25,3117.0,-9.8594, +2016-06-25 15:00:00,,,26.431 +2016-06-25 15:15:00,,, +2016-06-25 15:30:00,,, +2016-06-25 15:45:00,,,26.3371 +2016-06-25 15:47:28,3117.0,-9.8594, +2016-06-25 16:00:00,,, +2016-06-25 16:15:00,,, +2016-06-25 16:30:00,,, +2016-06-25 16:41:29,3119.0,-9.8594, +2016-06-25 16:45:00,,,26.384 +2016-06-25 17:00:00,,, +2016-06-25 17:15:00,,, +2016-06-25 17:30:00,,,26.4357 +2016-06-25 17:35:32,3121.0,-9.831, +2016-06-25 17:45:00,,, +2016-06-25 18:00:00,,, +2016-06-25 18:15:00,,, +2016-06-25 18:29:34,3121.0,-9.8594, +2016-06-25 18:30:00,,,26.3371 +2016-06-25 18:45:00,,, +2016-06-25 19:00:00,,, +2016-06-25 19:15:00,,, +2016-06-25 19:23:36,3118.0,-9.8887, +2016-06-25 19:30:00,,,26.3371 +2016-06-25 19:45:00,,, +2016-06-25 20:00:00,,, +2016-06-25 20:15:00,,,26.2413 +2016-06-25 20:17:49,3114.0,-9.9467, +2016-06-25 20:30:00,,, +2016-06-25 20:45:00,,, +2016-06-25 21:00:00,,, +2016-06-25 21:12:01,3109.0,-9.9754, +2016-06-25 21:15:00,,,26.3371 +2016-06-25 21:30:00,,, +2016-06-25 21:45:00,,, +2016-06-25 22:00:00,,,26.2413 +2016-06-25 22:06:09,3096.0,-10.0328, +2016-06-25 22:15:00,,, +2016-06-25 22:30:00,,, +2016-06-25 22:45:00,,, +2016-06-25 23:00:00,,,26.1434 +2016-06-25 23:00:10,3087.0,-10.0914, +2016-06-25 23:15:00,,, +2016-06-25 23:30:00,,, +2016-06-25 23:45:00,,, +2016-06-25 23:54:11,3079.0,-10.1194, +2016-06-26 00:00:00,,,26.2413 +2016-06-26 00:15:00,,, +2016-06-26 00:30:00,,, +2016-06-26 00:45:00,,,26.0018 +2016-06-26 00:48:12,3073.0,-10.1783, +2016-06-26 01:00:00,,, +2016-06-26 01:15:00,,, +2016-06-26 01:30:00,,, +2016-06-26 01:42:12,3072.0,-10.1783, +2016-06-26 01:45:00,,,26.141 +2016-06-26 02:00:00,,, +2016-06-26 02:15:00,,, +2016-06-26 02:30:00,,,26.141 +2016-06-26 02:36:12,3070.0,-10.2375, +2016-06-26 02:45:00,,, +2016-06-26 03:00:00,,, +2016-06-26 03:15:00,,, +2016-06-26 03:30:00,,,26.1876 +2016-06-26 03:30:23,3067.0,-10.2375, +2016-06-26 03:45:00,,, +2016-06-26 04:00:00,,, +2016-06-26 04:15:00,,, +2016-06-26 04:24:34,3065.0,-10.2658, +2016-06-26 04:30:00,,,26.0946 +2016-06-26 04:45:00,,, +2016-06-26 05:00:00,,, +2016-06-26 05:15:00,,,26.141 +2016-06-26 05:18:40,3064.0,-10.2658, +2016-06-26 05:30:00,,, +2016-06-26 05:45:00,,, +2016-06-26 06:00:00,,, +2016-06-26 06:12:40,3064.0,-10.2658, +2016-06-26 06:15:00,,,26.0946 +2016-06-26 06:30:00,,, +2016-06-26 06:45:00,,, +2016-06-26 07:00:00,,,26.0087 +2016-06-26 07:06:40,3065.0,-10.2366, +2016-06-26 07:15:00,,, +2016-06-26 07:30:00,,, +2016-06-26 07:45:00,,, +2016-06-26 08:00:00,,,26.6268 +2016-06-26 08:00:40,3072.0,-10.0896, +2016-06-26 08:15:00,,, +2016-06-26 08:30:00,,, +2016-06-26 08:45:00,,, +2016-06-26 08:54:40,3072.0,-10.2074, +2016-06-26 09:00:00,,,26.0969 +2016-06-26 09:15:00,,, +2016-06-26 09:30:00,,, +2016-06-26 09:45:00,,,26.1923 +2016-06-26 09:48:40,3078.0,-10.1484, +2016-06-26 10:00:00,,, +2016-06-26 10:15:00,,, +2016-06-26 10:30:00,,, +2016-06-26 10:42:52,3082.0,-10.1194, +2016-06-26 10:45:00,,,26.288 +2016-06-26 11:00:00,,, +2016-06-26 11:15:00,,, +2016-06-26 11:30:00,,,26.2413 +2016-06-26 11:37:04,3089.0,-10.1203, +2016-06-26 11:45:00,,, +2016-06-26 12:00:00,,, +2016-06-26 12:15:00,,, +2016-06-26 12:30:00,,,26.2413 +2016-06-26 12:31:11,3095.0,-10.0616, +2016-06-26 12:45:00,,, +2016-06-26 13:00:00,,, +2016-06-26 13:15:00,,, +2016-06-26 13:25:12,3100.0,-10.0616, +2016-06-26 13:30:00,,,26.2413 +2016-06-26 13:45:00,,, +2016-06-26 14:00:00,,, +2016-06-26 14:15:00,,,26.0969 +2016-06-26 14:19:14,3103.0,-10.0616, +2016-06-26 14:30:00,,, +2016-06-26 14:45:00,,, +2016-06-26 15:00:00,,, +2016-06-26 15:13:15,3106.0,-10.0328, +2016-06-26 15:15:00,,,26.1015 +2016-06-26 15:30:00,,, +2016-06-26 15:45:00,,, +2016-06-26 16:00:00,,,26.1015 +2016-06-26 16:07:28,3106.0,-10.0319, +2016-06-26 16:15:00,,, +2016-06-26 16:30:00,,, +2016-06-26 16:45:00,,, +2016-06-26 17:00:00,,,26.0528 +2016-06-26 17:01:41,3104.0,-10.0319, +2016-06-26 17:15:00,,, +2016-06-26 17:30:00,,, +2016-06-26 17:45:00,,, +2016-06-26 17:55:48,3103.0,-10.0319, +2016-06-26 18:00:00,,,26.1015 +2016-06-26 18:15:00,,, +2016-06-26 18:30:00,,, +2016-06-26 18:45:00,,,26.0528 +2016-06-26 18:49:50,3100.0,-10.0616, +2016-06-26 19:00:00,,, +2016-06-26 19:15:00,,, +2016-06-26 19:30:00,,, +2016-06-26 19:43:52,3096.0,-10.0896, +2016-06-26 19:45:00,,,25.9117 +2016-06-26 20:00:00,,, +2016-06-26 20:15:00,,, +2016-06-26 20:30:00,,, +2016-06-26 20:37:53,3092.0,-10.1484, +2016-06-26 20:45:00,,,25.8172 +2016-06-26 21:00:00,,, +2016-06-26 21:15:00,,, +2016-06-26 21:30:00,,,25.8149 +2016-06-26 21:31:54,3086.0,-10.1783, +2016-06-26 21:45:00,,, +2016-06-26 22:00:00,,, +2016-06-26 22:15:00,,, +2016-06-26 22:25:55,3080.0,-10.2375, +2016-06-26 22:30:00,,,25.7208 +2016-06-26 22:45:00,,, +2016-06-26 23:00:00,,, +2016-06-26 23:15:00,,,25.529 +2016-06-26 23:20:07,3075.0,-10.2366, +2016-06-26 23:30:00,,, +2016-06-26 23:45:00,,, +2016-06-27 00:00:00,,, +2016-06-27 00:14:18,3072.0,-10.2658, +2016-06-27 00:15:00,,,25.6225 +2016-06-27 00:30:00,,, +2016-06-27 00:45:00,,, +2016-06-27 01:00:00,,, +2016-06-27 01:08:25,3071.0,-10.296, +2016-06-27 01:15:00,,,25.529 +2016-06-27 01:30:00,,, +2016-06-27 01:45:00,,, +2016-06-27 02:00:00,,,25.6225 +2016-06-27 02:02:26,3068.0,-10.296, +2016-06-27 02:15:00,,, +2016-06-27 02:30:00,,, +2016-06-27 02:45:00,,, +2016-06-27 02:56:26,3065.0,-10.3557, +2016-06-27 03:00:00,,,25.529 +2016-06-27 03:15:00,,, +2016-06-27 03:30:00,,, +2016-06-27 03:45:00,,,25.529 +2016-06-27 03:50:26,3064.0,-10.3557, +2016-06-27 04:00:00,,, +2016-06-27 04:15:00,,, +2016-06-27 04:30:00,,, +2016-06-27 04:44:25,3062.0,-10.3548, +2016-06-27 04:45:00,,,25.5768 +2016-06-27 05:00:00,,, +2016-06-27 05:15:00,,, +2016-06-27 05:30:00,,, +2016-06-27 05:38:24,3060.0,-10.3852, +2016-06-27 05:45:00,,,25.5746 +2016-06-27 06:00:00,,, +2016-06-27 06:15:00,,, +2016-06-27 06:30:00,,,25.5768 +2016-06-27 06:32:35,3059.0,-10.3548, +2016-06-27 06:45:00,,, +2016-06-27 07:00:00,,, +2016-06-27 07:15:00,,, +2016-06-27 07:26:46,3061.0,-10.3557, +2016-06-27 07:30:00,,,25.6225 +2016-06-27 07:45:00,,, +2016-06-27 08:00:00,,, +2016-06-27 08:15:00,,,25.5746 +2016-06-27 08:20:52,3065.0,-10.3557, +2016-06-27 08:30:00,,, +2016-06-27 08:45:00,,, +2016-06-27 09:00:00,,, +2016-06-27 09:14:52,3071.0,-10.296, +2016-06-27 09:15:00,,,25.5335 +2016-06-27 09:30:00,,, +2016-06-27 09:45:00,,, +2016-06-27 10:00:00,,, +2016-06-27 10:08:53,3076.0,-10.2677, +2016-06-27 10:15:00,,,25.5814 +2016-06-27 10:30:00,,, +2016-06-27 10:45:00,,, +2016-06-27 11:00:00,,,25.4404 +2016-06-27 11:02:53,3081.0,-10.2375, +2016-06-27 11:15:00,,, +2016-06-27 11:30:00,,, +2016-06-27 11:45:00,,, +2016-06-27 11:56:55,3082.0,-10.3263, +2016-06-27 12:00:00,,,24.025 +2016-06-27 12:15:00,,, +2016-06-27 12:30:00,,, +2016-06-27 12:45:00,,,25.8518 +2016-06-27 12:50:56,3094.0,-10.1493, +2016-06-27 13:00:00,,, +2016-06-27 13:15:00,,, +2016-06-27 13:30:00,,, +2016-06-27 13:45:00,,,25.7621 +2016-06-27 13:45:10,3099.0,-10.1194, +2016-06-27 14:00:00,,, +2016-06-27 14:15:00,,, +2016-06-27 14:30:00,,, +2016-06-27 14:39:23,3100.0,-10.1203, +2016-06-27 14:45:00,,,25.7621 +2016-06-27 15:00:00,,, +2016-06-27 15:15:00,,, +2016-06-27 15:30:00,,,25.714 +2016-06-27 15:33:31,3100.0,-10.1194, +2016-06-27 15:45:00,,, +2016-06-27 16:00:00,,, +2016-06-27 16:15:00,,, +2016-06-27 16:27:33,3099.0,-10.1203, +2016-06-27 16:30:00,,,25.3928 +2016-06-27 16:45:00,,, +2016-06-27 17:00:00,,, +2016-06-27 17:15:00,,,25.529 +2016-06-27 17:21:35,3100.0,-10.1194, +2016-06-27 17:30:00,,, +2016-06-27 17:45:00,,, +2016-06-27 18:00:00,,, +2016-06-27 18:15:00,,,25.3928 +2016-06-27 18:15:37,3099.0,-10.1493, +2016-06-27 18:30:00,,, +2016-06-27 18:45:00,,, +2016-06-27 19:00:00,,, +2016-06-27 19:09:39,3096.0,-10.1493, +2016-06-27 19:15:00,,,25.3928 +2016-06-27 19:30:00,,, +2016-06-27 19:45:00,,, +2016-06-27 20:00:00,,,24.2045 +2016-06-27 20:03:40,3090.0,-10.2677, +2016-06-27 20:15:00,,, +2016-06-27 20:30:00,,, +2016-06-27 20:45:00,,, +2016-06-27 20:57:53,3087.0,-10.2357, +2016-06-27 21:00:00,,,24.7458 +2016-06-27 21:15:00,,, +2016-06-27 21:30:00,,, +2016-06-27 21:45:00,,,24.383000000000006 +2016-06-27 21:52:05,3084.0,-10.296, +2016-06-27 22:00:00,,, +2016-06-27 22:15:00,,, +2016-06-27 22:30:00,,, +2016-06-27 22:45:00,,,24.2785 +2016-06-27 22:46:12,3080.0,-10.4713, +2016-06-27 23:00:00,,, +2016-06-27 23:15:00,,, +2016-06-27 23:30:00,,, +2016-06-27 23:40:14,3079.0,-10.3263, +2016-06-27 23:45:00,,,24.5562 +2016-06-28 00:00:00,,, +2016-06-28 00:15:00,,, +2016-06-28 00:30:00,,,24.5627 +2016-06-28 00:34:15,3075.0,-10.3254, +2016-06-28 00:45:00,,, +2016-06-28 01:00:00,,, +2016-06-28 01:15:00,,, +2016-06-28 01:28:16,3072.0,-10.3557, +2016-06-28 01:30:00,,,24.5562 +2016-06-28 01:45:00,,, +2016-06-28 02:00:00,,, +2016-06-28 02:15:00,,,24.0596 +2016-06-28 02:22:17,3071.0,-10.3843, +2016-06-28 02:30:00,,, +2016-06-28 02:45:00,,, +2016-06-28 03:00:00,,, +2016-06-28 03:15:00,,,23.9712 +2016-06-28 03:16:18,3068.0,-10.4148, +2016-06-28 03:30:00,,, +2016-06-28 03:45:00,,, +2016-06-28 04:00:00,,, +2016-06-28 04:10:30,3067.0,-10.475, +2016-06-28 04:15:00,,,24.2372 +2016-06-28 04:30:00,,, +2016-06-28 04:45:00,,, +2016-06-28 05:00:00,,,24.285 +2016-06-28 05:04:41,3065.0,-10.4148, +2016-06-28 05:15:00,,, +2016-06-28 05:30:00,,, +2016-06-28 05:45:00,,, +2016-06-28 05:58:48,3062.0,-10.4741, +2016-06-28 06:00:00,,,24.1028 +2016-06-28 06:15:00,,, +2016-06-28 06:30:00,,, +2016-06-28 06:45:00,,, +2016-06-28 06:52:48,3063.0,-10.4444, +2016-06-28 07:00:00,,,24.2872 +2016-06-28 07:15:00,,, +2016-06-28 07:30:00,,, +2016-06-28 07:45:00,,,22.8409 +2016-06-28 07:46:48,3058.0,-10.5355, +2016-06-28 08:00:00,,, +2016-06-28 08:15:00,,, +2016-06-28 08:30:00,,, +2016-06-28 08:40:49,3064.0,-10.4453, +2016-06-28 08:45:00,,,24.3307 +2016-06-28 09:00:00,,, +2016-06-28 09:15:00,,, +2016-06-28 09:30:00,,,24.5101 +2016-06-28 09:34:50,3065.0,-10.3852, +2016-06-28 09:45:00,,, +2016-06-28 10:00:00,,, +2016-06-28 10:15:00,,, +2016-06-28 10:28:50,3070.0,-10.3861, +2016-06-28 10:30:00,,,24.6465 +2016-06-28 10:45:00,,, +2016-06-28 11:00:00,,, +2016-06-28 11:15:00,,, +2016-06-28 11:23:03,3074.0,-10.3263, +2016-06-28 11:30:00,,,24.6972 +2016-06-28 11:45:00,,, +2016-06-28 12:00:00,,, +2016-06-28 12:15:00,,,24.8789 +2016-06-28 12:17:15,3080.0,-10.2667, +2016-06-28 12:30:00,,, +2016-06-28 12:45:00,,, +2016-06-28 13:00:00,,, +2016-06-28 13:11:23,3080.0,-10.3557, +2016-06-28 13:15:00,,,23.4911 +2016-06-28 13:30:00,,, +2016-06-28 13:45:00,,, +2016-06-28 14:00:00,,,23.6267 +2016-06-28 14:05:25,3085.0,-10.2375, +2016-06-28 14:15:00,,, +2016-06-28 14:30:00,,, +2016-06-28 14:45:00,,, +2016-06-28 14:59:27,3092.0,-10.2083, +2016-06-28 15:00:00,,,25.0552 +2016-06-28 15:15:00,,, +2016-06-28 15:30:00,,, +2016-06-28 15:45:00,,, +2016-06-28 15:53:29,3091.0,-10.296, +2016-06-28 16:00:00,,,23.6183 +2016-06-28 16:15:00,,, +2016-06-28 16:30:00,,, +2016-06-28 16:45:00,,,23.7077 +2016-06-28 16:47:31,3092.0,-10.296, +2016-06-28 17:00:00,,, +2016-06-28 17:15:00,,, +2016-06-28 17:30:00,,, +2016-06-28 17:41:33,3090.0,-10.1783, +2016-06-28 17:45:00,,,25.1493 +2016-06-28 18:00:00,,, +2016-06-28 18:15:00,,, +2016-06-28 18:30:00,,,23.8423 +2016-06-28 18:35:46,3087.0,-10.1774, +2016-06-28 18:45:00,,, +2016-06-28 19:00:00,,, +2016-06-28 19:15:00,,, +2016-06-28 19:29:58,3087.0,-10.2375, +2016-06-28 19:30:00,,,25.0149 +2016-06-28 19:45:00,,, +2016-06-28 20:00:00,,, +2016-06-28 20:15:00,,, +2016-06-28 20:24:05,3082.0,-10.2667, +2016-06-28 20:30:00,,,24.8767 +2016-06-28 20:45:00,,, +2016-06-28 21:00:00,,, +2016-06-28 21:15:00,,,24.8301 +2016-06-28 21:18:07,3078.0,-10.296, +2016-06-28 21:30:00,,, +2016-06-28 21:45:00,,, +2016-06-28 22:00:00,,, +2016-06-28 22:12:08,3072.0,-10.3254, +2016-06-28 22:15:00,,,24.9636 +2016-06-28 22:30:00,,, +2016-06-28 22:45:00,,, +2016-06-28 23:00:00,,,24.8723 +2016-06-28 23:06:08,3067.0,-10.3557, +2016-06-28 23:15:00,,, +2016-06-28 23:30:00,,, +2016-06-28 23:45:00,,, +2016-06-29 00:00:00,,,24.9636 +2016-06-29 00:00:08,3065.0,-10.3557, +2016-06-29 00:15:00,,, +2016-06-29 00:30:00,,, +2016-06-29 00:45:00,,, +2016-06-29 00:54:08,3061.0,-10.475, +2016-06-29 01:00:00,,,23.6183 +2016-06-29 01:15:00,,, +2016-06-29 01:30:00,,, +2016-06-29 01:45:00,,,23.3602 +2016-06-29 01:48:19,3058.0,-10.5355, +2016-06-29 02:00:00,,, +2016-06-29 02:15:00,,, +2016-06-29 02:30:00,,, +2016-06-29 02:42:29,3057.0,-10.5654, +2016-06-29 02:45:00,,,23.0566 +2016-06-29 03:00:00,,, +2016-06-29 03:15:00,,, +2016-06-29 03:30:00,,,23.1004 +2016-06-29 03:36:35,3054.0,-10.5654, +2016-06-29 03:45:00,,, +2016-06-29 04:00:00,,, +2016-06-29 04:15:00,,, +2016-06-29 04:30:00,,,23.1422 +2016-06-29 04:30:34,3053.0,-10.5654, +2016-06-29 04:45:00,,, +2016-06-29 05:00:00,,, +2016-06-29 05:15:00,,, +2016-06-29 05:24:34,3053.0,-10.5654, +2016-06-29 05:30:00,,,23.0984 +2016-06-29 05:45:00,,, +2016-06-29 06:00:00,,, +2016-06-29 06:15:00,,,24.737 +2016-06-29 06:18:33,3055.0,-10.4148, +2016-06-29 06:30:00,,, +2016-06-29 06:45:00,,, +2016-06-29 07:00:00,,, +2016-06-29 07:12:32,3061.0,-10.4148, +2016-06-29 07:15:00,,,24.5144 +2016-06-29 07:30:00,,, +2016-06-29 07:45:00,,, +2016-06-29 08:00:00,,,24.5123 +2016-06-29 08:06:32,3065.0,-10.4157, +2016-06-29 08:15:00,,, +2016-06-29 08:30:00,,, +2016-06-29 08:45:00,,, +2016-06-29 09:00:00,,,24.4684 +2016-06-29 09:00:44,3068.0,-10.3852, +2016-06-29 09:15:00,,, +2016-06-29 09:30:00,,, +2016-06-29 09:45:00,,, +2016-06-29 09:54:55,3071.0,-10.3861, +2016-06-29 10:00:00,,,24.4684 +2016-06-29 10:15:00,,, +2016-06-29 10:30:00,,, +2016-06-29 10:45:00,,,24.5584 +2016-06-29 10:49:02,3075.0,-10.3567, +2016-06-29 11:00:00,,, +2016-06-29 11:15:00,,, +2016-06-29 11:30:00,,, +2016-06-29 11:43:03,3080.0,-10.296, +2016-06-29 11:45:00,,,24.6046 +2016-06-29 12:00:00,,, +2016-06-29 12:15:00,,, +2016-06-29 12:30:00,,,24.5606 +2016-06-29 12:37:05,3088.0,-10.2677, +2016-06-29 12:45:00,,, +2016-06-29 13:00:00,,, +2016-06-29 13:15:00,,, +2016-06-29 13:30:00,,,24.6928 +2016-06-29 13:31:06,3093.0,-10.2083, +2016-06-29 13:45:00,,, +2016-06-29 14:00:00,,, +2016-06-29 14:15:00,,, +2016-06-29 14:25:08,3094.0,-10.2074, +2016-06-29 14:30:00,,,24.5144 +2016-06-29 14:45:00,,, +2016-06-29 15:00:00,,, +2016-06-29 15:15:00,,,24.4246 +2016-06-29 15:19:10,3096.0,-10.2384, +2016-06-29 15:30:00,,, +2016-06-29 15:45:00,,, +2016-06-29 16:00:00,,, +2016-06-29 16:13:23,3095.0,-10.2375, +2016-06-29 16:15:00,,,24.2936 +2016-06-29 16:30:00,,, +2016-06-29 16:45:00,,, +2016-06-29 17:00:00,,, +2016-06-29 17:07:36,3094.0,-10.2375, +2016-06-29 17:15:00,,,24.2501 +2016-06-29 17:30:00,,, +2016-06-29 17:45:00,,, +2016-06-29 18:00:00,,,24.2501 +2016-06-29 18:01:44,3093.0,-10.2375, +2016-06-29 18:15:00,,, +2016-06-29 18:30:00,,, +2016-06-29 18:45:00,,, +2016-06-29 18:55:45,3090.0,-10.2667, +2016-06-29 19:00:00,,,24.2936 +2016-06-29 19:15:00,,, +2016-06-29 19:30:00,,, +2016-06-29 19:45:00,,,24.2067 +2016-06-29 19:49:47,3087.0,-10.2979, +2016-06-29 20:00:00,,, +2016-06-29 20:15:00,,, +2016-06-29 20:30:00,,, +2016-06-29 20:43:48,3081.0,-10.3621, +2016-06-29 20:45:00,,,23.9797 +2016-06-29 21:00:00,,, +2016-06-29 21:15:00,,, +2016-06-29 21:30:00,,, +2016-06-29 21:37:49,3076.0,-10.3834, +2016-06-29 21:45:00,,,24.025 +2016-06-29 22:00:00,,, +2016-06-29 22:15:00,,, +2016-06-29 22:30:00,,,23.9367 +2016-06-29 22:31:50,3071.0,-10.3852, +2016-06-29 22:45:00,,, +2016-06-29 23:00:00,,, +2016-06-29 23:15:00,,, +2016-06-29 23:26:02,3065.0,-10.3861, +2016-06-29 23:30:00,,,23.9367 +2016-06-29 23:45:00,,, +2016-06-30 00:00:00,,, +2016-06-30 00:15:00,,,23.9388 +2016-06-30 00:20:13,3064.0,-10.3843, +2016-06-30 00:30:00,,, +2016-06-30 00:45:00,,, +2016-06-30 01:00:00,,, +2016-06-30 01:14:20,3062.0,-10.4148, +2016-06-30 01:15:00,,,23.8487 +2016-06-30 01:30:00,,, +2016-06-30 01:45:00,,, +2016-06-30 02:00:00,,, +2016-06-30 02:08:20,3062.0,-10.4148, +2016-06-30 02:15:00,,,23.8508 +2016-06-30 02:30:00,,, +2016-06-30 02:45:00,,, +2016-06-30 03:00:00,,,23.9346 +2016-06-30 03:02:20,3060.0,-10.4148, +2016-06-30 03:15:00,,, +2016-06-30 03:30:00,,, +2016-06-30 03:45:00,,, +2016-06-30 03:56:20,3059.0,-10.4444, +2016-06-30 04:00:00,,,23.9346 +2016-06-30 04:15:00,,, +2016-06-30 04:30:00,,, +2016-06-30 04:45:00,,,23.8895 +2016-06-30 04:50:20,3058.0,-10.475, +2016-06-30 05:00:00,,, +2016-06-30 05:15:00,,, +2016-06-30 05:30:00,,, +2016-06-30 05:44:20,3058.0,-10.475, +2016-06-30 05:45:00,,,23.8466 +2016-06-30 06:00:00,,, +2016-06-30 06:15:00,,, +2016-06-30 06:30:00,,, +2016-06-30 06:38:31,3058.0,-10.475, +2016-06-30 06:45:00,,,23.8466 +2016-06-30 07:00:00,,, +2016-06-30 07:15:00,,, +2016-06-30 07:30:00,,,23.8058 +2016-06-30 07:32:43,3061.0,-10.4139, +2016-06-30 07:45:00,,, +2016-06-30 08:00:00,,, +2016-06-30 08:15:00,,, +2016-06-30 08:26:49,3062.0,-10.4148, +2016-06-30 08:30:00,,,23.8487 +2016-06-30 08:45:00,,, +2016-06-30 09:00:00,,, +2016-06-30 09:15:00,,,23.8508 +2016-06-30 09:20:50,3065.0,-10.3843, +2016-06-30 09:30:00,,, +2016-06-30 09:45:00,,, +2016-06-30 10:00:00,,, +2016-06-30 10:14:51,3067.0,-10.4148, +2016-06-30 10:15:00,,,23.808000000000003 +2016-06-30 10:30:00,,, +2016-06-30 10:45:00,,, +2016-06-30 11:00:00,,, +2016-06-30 11:08:51,3071.0,-10.5664, +2016-06-30 11:15:00,,,23.9367 +2016-06-30 11:30:00,,, +2016-06-30 11:45:00,,, +2016-06-30 12:00:00,,,23.808000000000003 +2016-06-30 12:02:52,3077.0,-10.3263, +2016-06-30 12:15:00,,, +2016-06-30 12:30:00,,, +2016-06-30 12:45:00,,, +2016-06-30 12:56:53,3081.0,-10.296, +2016-06-30 13:00:00,,,24.0228 +2016-06-30 13:15:00,,, +2016-06-30 13:30:00,,, +2016-06-30 13:45:00,,,23.8101 +2016-06-30 13:51:06,3087.0,-10.2667, +2016-06-30 14:00:00,,, +2016-06-30 14:15:00,,, +2016-06-30 14:30:00,,, +2016-06-30 14:45:00,,,23.8101 +2016-06-30 14:45:18,3090.0,-10.2375, +2016-06-30 15:00:00,,, +2016-06-30 15:15:00,,, +2016-06-30 15:30:00,,, +2016-06-30 15:39:26,3092.0,-10.2083, +2016-06-30 15:45:00,,,23.8101 +2016-06-30 16:00:00,,, +2016-06-30 16:15:00,,, +2016-06-30 16:30:00,,,23.808000000000003 +2016-06-30 16:33:28,3093.0,-10.2375, +2016-06-30 16:45:00,,, +2016-06-30 17:00:00,,, +2016-06-30 17:15:00,,, +2016-06-30 17:27:29,3092.0,-10.2375, +2016-06-30 17:30:00,,,23.898000000000003 +2016-06-30 17:45:00,,, +2016-06-30 18:00:00,,, +2016-06-30 18:15:00,,,23.7652 +2016-06-30 18:21:31,3089.0,-10.2677, +2016-06-30 18:30:00,,, +2016-06-30 18:45:00,,, +2016-06-30 19:00:00,,, +2016-06-30 19:15:00,,,23.6777 +2016-06-30 19:15:32,3087.0,-10.2667, +2016-06-30 19:30:00,,, +2016-06-30 19:45:00,,, +2016-06-30 20:00:00,,, +2016-06-30 20:09:33,3082.0,-10.296, +2016-06-30 20:15:00,,,23.633000000000006 +2016-06-30 20:30:00,,, +2016-06-30 20:45:00,,, +2016-06-30 21:00:00,,,23.546 +2016-06-30 21:03:45,3079.0,-10.3263, +2016-06-30 21:15:00,,, +2016-06-30 21:30:00,,, +2016-06-30 21:45:00,,, +2016-06-30 21:57:57,3075.0,-10.3557, +2016-06-30 22:00:00,,,23.4592 +2016-06-30 22:15:00,,, +2016-06-30 22:30:00,,, +2016-06-30 22:45:00,,,23.4149 +2016-06-30 22:52:03,3072.0,-10.3861, +2016-06-30 23:00:00,,, +2016-06-30 23:15:00,,, +2016-06-30 23:30:00,,, +2016-06-30 23:45:00,,,23.3706 +2016-06-30 23:46:03,3068.0,-10.3861, +2016-07-01 00:00:00,,, +2016-07-01 00:15:00,,, +2016-07-01 00:30:00,,, +2016-07-01 00:40:04,3066.0,-10.4148, +2016-07-01 00:45:00,,,23.2844 +2016-07-01 01:00:00,,, +2016-07-01 01:15:00,,, +2016-07-01 01:30:00,,,23.2844 +2016-07-01 01:34:04,3065.0,-10.4148, +2016-07-01 01:45:00,,, +2016-07-01 02:00:00,,, +2016-07-01 02:15:00,,, +2016-07-01 02:28:04,3064.0,-10.4444, +2016-07-01 02:30:00,,,23.2005 +2016-07-01 02:45:00,,, +2016-07-01 03:00:00,,, +2016-07-01 03:15:00,,,23.2005 +2016-07-01 03:22:03,3062.0,-10.4444, +2016-07-01 03:30:00,,, +2016-07-01 03:45:00,,, +2016-07-01 04:00:00,,, +2016-07-01 04:15:00,,,23.1566 +2016-07-01 04:16:14,3059.0,-10.475, +2016-07-01 04:30:00,,, +2016-07-01 04:45:00,,, +2016-07-01 05:00:00,,, +2016-07-01 05:10:26,3058.0,-10.475, +2016-07-01 05:15:00,,,23.1545 +2016-07-01 05:30:00,,, +2016-07-01 05:45:00,,, +2016-07-01 06:00:00,,,23.1545 +2016-07-01 06:04:32,3058.0,-10.4444, +2016-07-01 06:15:00,,, +2016-07-01 06:30:00,,, +2016-07-01 06:45:00,,, +2016-07-01 06:58:32,3061.0,-10.4148, +2016-07-01 07:00:00,,,23.1566 +2016-07-01 07:15:00,,, +2016-07-01 07:30:00,,, +2016-07-01 07:45:00,,, +2016-07-01 07:52:33,3065.0,-10.3852, +2016-07-01 08:00:00,,,23.2005 +2016-07-01 08:15:00,,, +2016-07-01 08:30:00,,, +2016-07-01 08:45:00,,,23.2844 +2016-07-01 08:46:34,3070.0,-10.3557, +2016-07-01 09:00:00,,, +2016-07-01 09:15:00,,, +2016-07-01 09:30:00,,, +2016-07-01 09:40:36,3076.0,-10.296, +2016-07-01 09:45:00,,,23.2844 +2016-07-01 10:00:00,,, +2016-07-01 10:15:00,,, +2016-07-01 10:30:00,,,23.3285 +2016-07-01 10:34:37,3084.0,-10.2969, +2016-07-01 10:45:00,,, +2016-07-01 11:00:00,,, +2016-07-01 11:15:00,,, +2016-07-01 11:28:51,3087.0,-10.2677, +2016-07-01 11:30:00,,,23.4592 +2016-07-01 11:45:00,,, +2016-07-01 12:00:00,,, +2016-07-01 12:15:00,,, +2016-07-01 12:23:04,3092.0,-10.2083, +2016-07-01 12:30:00,,,23.4592 +2016-07-01 12:45:00,,, +2016-07-01 13:00:00,,, +2016-07-01 13:15:00,,,23.4592 +2016-07-01 13:17:12,3095.0,-10.1792, +2016-07-01 13:30:00,,, +2016-07-01 13:45:00,,, +2016-07-01 14:00:00,,, +2016-07-01 14:11:15,3100.0,-10.1792, +2016-07-01 14:15:00,,,23.4592 +2016-07-01 14:30:00,,, +2016-07-01 14:45:00,,, +2016-07-01 15:00:00,,,23.3327 +2016-07-01 15:05:18,3101.0,-10.1203, +2016-07-01 15:15:00,,, +2016-07-01 15:30:00,,, +2016-07-01 15:45:00,,, +2016-07-01 15:59:21,3106.0,-10.1203, +2016-07-01 16:00:00,,,23.3327 +2016-07-01 16:15:00,,, +2016-07-01 16:30:00,,, +2016-07-01 16:45:00,,, +2016-07-01 16:53:24,3106.0,-10.1203, +2016-07-01 17:00:00,,,90.4855 +2016-07-01 17:15:00,,, +2016-07-01 17:30:00,,, +2016-07-01 17:45:00,,,23.1607 +2016-07-01 17:47:27,3103.0,-10.0905, +2016-07-01 18:00:00,,, +2016-07-01 18:15:00,,, +2016-07-01 18:30:00,,, +2016-07-01 18:41:30,3100.0,-10.1493, +2016-07-01 18:45:00,,,23.1168 +2016-07-01 19:00:00,,, +2016-07-01 19:15:00,,, +2016-07-01 19:30:00,,,22.9877 +2016-07-01 19:35:43,3095.0,-10.1792, +2016-07-01 19:45:00,,, +2016-07-01 20:00:00,,, +2016-07-01 20:15:00,,, +2016-07-01 20:29:57,3092.0,-10.2083, +2016-07-01 20:30:00,,,22.8592 +2016-07-01 20:45:00,,, +2016-07-01 21:00:00,,, +2016-07-01 21:15:00,,, +2016-07-01 21:24:05,3087.0,-10.2677, +2016-07-01 21:30:00,,,22.8179 +2016-07-01 21:45:00,,, +2016-07-01 22:00:00,,, +2016-07-01 22:15:00,,,22.8179 +2016-07-01 22:18:07,3081.0,-10.2677, +2016-07-01 22:30:00,,, +2016-07-01 22:45:00,,, +2016-07-01 23:00:00,,, +2016-07-01 23:12:08,3078.0,-10.2658, +2016-07-01 23:15:00,,,22.7313 +2016-07-01 23:30:00,,, +2016-07-01 23:45:00,,, +2016-07-02 00:00:00,,, +2016-07-02 00:15:00,,, +2016-07-02 00:30:00,,, +2016-07-02 00:45:00,,, +2016-07-02 01:00:00,,,22.6962 +2016-07-02 01:00:12,3072.0,-10.296, +2016-07-02 01:15:00,,, +2016-07-02 01:30:00,,, +2016-07-02 01:45:00,,, +2016-07-02 01:54:14,3071.0,-10.3557, +2016-07-02 02:00:00,,,22.653 +2016-07-02 02:15:00,,, +2016-07-02 02:30:00,,, +2016-07-02 02:45:00,,,22.653 +2016-07-02 02:48:26,3068.0,-10.3557, +2016-07-02 03:00:00,,, +2016-07-02 03:15:00,,, +2016-07-02 03:30:00,,, +2016-07-02 03:42:39,3066.0,-10.3557, +2016-07-02 03:45:00,,,22.612 +2016-07-02 04:00:00,,, +2016-07-02 04:15:00,,, +2016-07-02 04:30:00,,,22.56900000000001 +2016-07-02 04:36:46,3067.0,-10.3557, +2016-07-02 04:45:00,,, +2016-07-02 05:00:00,,, +2016-07-02 05:15:00,,, +2016-07-02 05:30:00,,,22.56900000000001 +2016-07-02 05:30:47,3067.0,-10.3557, +2016-07-02 05:45:00,,, +2016-07-02 06:00:00,,, +2016-07-02 06:15:00,,, +2016-07-02 06:24:49,3068.0,-10.3254, +2016-07-02 06:30:00,,,22.5261 +2016-07-02 06:45:00,,, +2016-07-02 07:00:00,,, +2016-07-02 07:15:00,,,22.4832 +2016-07-02 07:18:51,3071.0,-10.3263, +2016-07-02 07:30:00,,, +2016-07-02 07:45:00,,, +2016-07-02 08:00:00,,, +2016-07-02 08:12:53,3072.0,-10.3861, +2016-07-02 08:15:00,,,22.4832 +2016-07-02 08:30:00,,, +2016-07-02 08:45:00,,, +2016-07-02 09:00:00,,,22.4076 +2016-07-02 09:06:54,3071.0,-10.3861, +2016-07-02 09:15:00,,, +2016-07-02 09:30:00,,, +2016-07-02 09:45:00,,, +2016-07-02 10:00:00,,,22.2758 +2016-07-02 10:01:07,3065.0,-10.4453, +2016-07-02 10:15:00,,, +2016-07-02 10:30:00,,, +2016-07-02 10:45:00,,, +2016-07-02 10:55:19,3059.0,-10.5057, +2016-07-02 11:00:00,,,22.1988 +2016-07-02 11:15:00,,, +2016-07-02 11:30:00,,, +2016-07-02 11:45:00,,,22.1544 +2016-07-02 11:49:26,3052.0,-10.5048, +2016-07-02 12:00:00,,, +2016-07-02 12:15:00,,, +2016-07-02 12:30:00,,, +2016-07-02 12:43:27,3050.0,-10.5048, +2016-07-02 12:45:00,,,79.2416 +2016-07-02 13:00:00,,, +2016-07-02 13:15:00,,, +2016-07-02 13:30:00,,,77.8061 +2016-07-02 13:37:27,3048.0,-10.5355, +2016-07-02 13:45:00,,, +2016-07-02 14:00:00,,, +2016-07-02 14:15:00,,, +2016-07-02 14:30:00,,,22.0317 +2016-07-02 14:31:27,3046.0,-10.5654, +2016-07-02 14:45:00,,, +2016-07-02 15:00:00,,, +2016-07-02 15:15:00,,, +2016-07-02 15:25:27,3045.0,-10.5664, +2016-07-02 15:30:00,,,22.0336 +2016-07-02 15:45:00,,, +2016-07-02 16:00:00,,, +2016-07-02 16:15:00,,,22.0738 +2016-07-02 16:19:27,3047.0,-10.5355, +2016-07-02 16:30:00,,, +2016-07-02 16:45:00,,, +2016-07-02 17:00:00,,, +2016-07-02 17:13:37,3049.0,-10.5664, +2016-07-02 17:15:00,,,22.0719 +2016-07-02 17:30:00,,, +2016-07-02 17:45:00,,, +2016-07-02 18:00:00,,, +2016-07-02 18:07:48,3051.0,-10.5963, +2016-07-02 18:15:00,,,22.0719 +2016-07-02 18:30:00,,, +2016-07-02 18:45:00,,, +2016-07-02 19:00:00,,,21.9915 +2016-07-02 19:01:54,3048.0,-10.6574, +2016-07-02 19:15:00,,, +2016-07-02 19:30:00,,, +2016-07-02 19:45:00,,, +2016-07-02 19:55:53,3043.0,-10.6565, +2016-07-02 20:00:00,,,21.9495 +2016-07-02 20:15:00,,, +2016-07-02 20:30:00,,, +2016-07-02 20:45:00,,,21.9094 +2016-07-02 20:49:53,3039.0,-10.6876, +2016-07-02 21:00:00,,, +2016-07-02 21:15:00,,, +2016-07-02 21:30:00,,, +2016-07-02 21:43:52,3036.0,-10.6867, +2016-07-02 21:45:00,,,21.9075 +2016-07-02 22:00:00,,, +2016-07-02 22:15:00,,, +2016-07-02 22:30:00,,, +2016-07-02 22:37:51,3034.0,-10.7179, +2016-07-02 22:45:00,,,75.8981 +2016-07-02 23:00:00,,, +2016-07-02 23:15:00,,, +2016-07-02 23:30:00,,,76.5941 +2016-07-02 23:31:50,3032.0,-10.7472, +2016-07-02 23:45:00,,, +2016-07-03 00:00:00,,, +2016-07-03 00:15:00,,, +2016-07-03 00:26:00,3029.0,-10.7786, +2016-07-03 00:30:00,,,76.3426 +2016-07-03 00:45:00,,, +2016-07-03 01:00:00,,, +2016-07-03 01:15:00,,,75.8779 +2016-07-03 01:20:10,3029.0,-10.8091, +2016-07-03 01:30:00,,, +2016-07-03 01:45:00,,, +2016-07-03 02:00:00,,, +2016-07-03 02:14:15,3026.0,-10.8406, +2016-07-03 02:15:00,,,75.65100000000002 +2016-07-03 02:30:00,,, +2016-07-03 02:45:00,,, +2016-07-03 03:00:00,,, +2016-07-03 03:08:14,3024.0,-10.8396, +2016-07-03 03:15:00,,,75.65100000000002 +2016-07-03 03:30:00,,, +2016-07-03 03:45:00,,, +2016-07-03 04:00:00,,,74.9653 +2016-07-03 04:02:13,3023.0,-10.8712, +2016-07-03 04:15:00,,, +2016-07-03 04:30:00,,, +2016-07-03 04:45:00,,, +2016-07-03 04:56:11,3022.0,-10.9029, +2016-07-03 05:00:00,,,74.7439 +2016-07-03 05:15:00,,, +2016-07-03 05:30:00,,, +2016-07-03 05:45:00,,,74.5171 +2016-07-03 05:50:10,3022.0,-10.9029, +2016-07-03 06:00:00,,, +2016-07-03 06:15:00,,, +2016-07-03 06:30:00,,, +2016-07-03 06:44:08,3022.0,-10.8396, +2016-07-03 06:45:00,,,74.0611 +2016-07-03 07:00:00,,, +2016-07-03 07:15:00,,, +2016-07-03 07:30:00,,, +2016-07-03 07:38:18,3024.0,-10.8406, +2016-07-03 07:45:00,,,74.0611 +2016-07-03 08:00:00,,, +2016-07-03 08:15:00,,, +2016-07-03 08:30:00,,,74.0611 +2016-07-03 08:32:29,3030.0,-10.81, +2016-07-03 08:45:00,,, +2016-07-03 09:00:00,,, +2016-07-03 09:15:00,,, +2016-07-03 09:26:35,3037.0,-10.7482, +2016-07-03 09:30:00,,,74.0611 +2016-07-03 09:45:00,,, +2016-07-03 10:00:00,,, +2016-07-03 10:15:00,,,73.8384 +2016-07-03 10:20:35,3043.0,-10.7179, +2016-07-03 10:30:00,,, +2016-07-03 10:45:00,,, +2016-07-03 11:00:00,,, +2016-07-03 11:14:35,3051.0,-10.6876, +2016-07-03 11:15:00,,,74.0611 +2016-07-03 11:30:00,,, +2016-07-03 11:45:00,,, +2016-07-03 12:00:00,,, +2016-07-03 12:08:36,3056.0,-10.6574, +2016-07-03 12:15:00,,,74.0611 +2016-07-03 12:30:00,,, +2016-07-03 12:45:00,,, +2016-07-03 13:00:00,,,73.4099 +2016-07-03 13:02:38,3061.0,-10.6264, +2016-07-03 13:15:00,,, +2016-07-03 13:30:00,,, +2016-07-03 13:45:00,,, +2016-07-03 13:56:39,3063.0,-10.5954, +2016-07-03 14:00:00,,,73.1909 +2016-07-03 14:15:00,,, +2016-07-03 14:30:00,,, +2016-07-03 14:45:00,,,72.5547 +2016-07-03 14:50:51,3064.0,-10.5973, +2016-07-03 15:00:00,,, +2016-07-03 15:15:00,,, +2016-07-03 15:30:00,,, +2016-07-03 15:45:00,,,71.7251 +2016-07-03 15:45:03,3065.0,-10.5664, +2016-07-03 16:00:00,,, +2016-07-03 16:15:00,,, +2016-07-03 16:30:00,,, +2016-07-03 16:39:10,3065.0,-10.5654, +2016-07-03 16:45:00,,,70.4995 +2016-07-03 17:00:00,,, +2016-07-03 17:15:00,,, +2016-07-03 17:30:00,,,69.5168 +2016-07-03 17:33:12,3065.0,-10.5664, +2016-07-03 17:45:00,,, +2016-07-03 18:00:00,,, +2016-07-03 18:15:00,,, +2016-07-03 18:27:13,3064.0,-10.5954, +2016-07-03 18:30:00,,,68.5602 +2016-07-03 18:45:00,,, +2016-07-03 19:00:00,,, +2016-07-03 19:15:00,,,67.6224 +2016-07-03 19:21:15,3059.0,-10.5963, +2016-07-03 19:30:00,,, +2016-07-03 19:45:00,,, +2016-07-03 20:00:00,,, +2016-07-03 20:15:00,,,66.5263 +2016-07-03 20:15:16,3054.0,-10.6264, +2016-07-03 20:30:00,,, +2016-07-03 20:45:00,,, +2016-07-03 21:00:00,,, +2016-07-03 21:09:16,3050.0,-10.6876, +2016-07-03 21:15:00,,,65.1231 +2016-07-03 21:30:00,,, +2016-07-03 21:45:00,,, +2016-07-03 22:00:00,,,64.2767 +2016-07-03 22:03:27,3043.0,-10.6867, +2016-07-03 22:15:00,,, +2016-07-03 22:30:00,,, +2016-07-03 22:45:00,,, +2016-07-03 22:57:38,3037.0,-10.7169, +2016-07-03 23:00:00,,,63.2897 +2016-07-03 23:15:00,,, +2016-07-03 23:30:00,,, +2016-07-03 23:45:00,,,62.3248 +2016-07-03 23:51:44,3034.0,-10.7472, +2016-07-04 00:00:00,,, +2016-07-04 00:15:00,,, +2016-07-04 00:30:00,,, +2016-07-04 00:45:00,,,61.7018 +2016-07-04 00:45:44,3030.0,-10.8091, +2016-07-04 01:00:00,,, +2016-07-04 01:15:00,,, +2016-07-04 01:30:00,,, +2016-07-04 01:39:44,3027.0,-10.8406, +2016-07-04 01:45:00,,,61.5437 +2016-07-04 02:00:00,,, +2016-07-04 02:15:00,,, +2016-07-04 02:30:00,,,60.9348 +2016-07-04 02:33:43,3025.0,-10.8406, +2016-07-04 02:45:00,,, +2016-07-04 03:00:00,,, +2016-07-04 03:15:00,,, +2016-07-04 03:27:42,3023.0,-10.8396, +2016-07-04 03:30:00,,,60.3312 +2016-07-04 03:45:00,,, +2016-07-04 04:00:00,,, +2016-07-04 04:15:00,,,59.8882 +2016-07-04 04:21:41,3022.0,-10.9029, +2016-07-04 04:30:00,,, +2016-07-04 04:45:00,,, +2016-07-04 05:00:00,,, +2016-07-04 05:15:00,,,59.8723 +2016-07-04 05:15:51,3021.0,-10.8712, +2016-07-04 05:30:00,,, +2016-07-04 05:45:00,,, +2016-07-04 06:00:00,,, +2016-07-04 06:10:01,3022.0,-10.8396, +2016-07-04 06:15:00,,,60.1633 +2016-07-04 06:30:00,,, +2016-07-04 06:45:00,,, +2016-07-04 07:00:00,,,60.1633 +2016-07-04 07:04:06,3023.0,-10.8406, +2016-07-04 07:15:00,,, +2016-07-04 07:30:00,,, +2016-07-04 07:45:00,,, +2016-07-04 07:58:06,3029.0,-10.81, +2016-07-04 08:00:00,,,60.1633 +2016-07-04 08:15:00,,, +2016-07-04 08:30:00,,, +2016-07-04 08:45:00,,,60.4677 +2016-07-04 08:52:06,3034.0,-10.7482, +2016-07-04 09:00:00,,, +2016-07-04 09:15:00,,, +2016-07-04 09:30:00,,, +2016-07-04 09:45:00,,,60.4677 +2016-07-04 09:46:06,3039.0,-10.7179, +2016-07-04 10:00:00,,, +2016-07-04 10:15:00,,, +2016-07-04 10:30:00,,, +2016-07-04 10:40:06,3048.0,-10.6574, +2016-07-04 10:45:00,,,60.9185 +2016-07-04 11:00:00,,, +2016-07-04 11:15:00,,, +2016-07-04 11:30:00,,,60.9239 +2016-07-04 11:34:07,3055.0,-10.6904, +2016-07-04 11:45:00,,, +2016-07-04 12:00:00,,, +2016-07-04 12:15:00,,, +2016-07-04 12:28:20,3058.0,-10.5954, +2016-07-04 12:30:00,,,60.6155 +2016-07-04 12:45:00,,, +2016-07-04 13:00:00,,, +2016-07-04 13:15:00,,, +2016-07-04 13:22:32,3059.0,-10.5973, +2016-07-04 13:30:00,,,60.3045 +2016-07-04 13:45:00,,, +2016-07-04 14:00:00,,, +2016-07-04 14:15:00,,,59.8563 +2016-07-04 14:16:39,3062.0,-10.5664, +2016-07-04 14:30:00,,, +2016-07-04 14:45:00,,, +2016-07-04 15:00:00,,, +2016-07-04 15:10:41,3063.0,-10.5057, +2016-07-04 15:15:00,,,58.418 +2016-07-04 15:30:00,,, +2016-07-04 15:45:00,,, +2016-07-04 16:00:00,,,57.7215 +2016-07-04 16:04:43,3065.0,-10.5057, +2016-07-04 16:15:00,,, +2016-07-04 16:30:00,,, +2016-07-04 16:45:00,,, +2016-07-04 16:58:45,3065.0,-10.5365, +2016-07-04 17:00:00,,,57.0344 +2016-07-04 17:15:00,,, +2016-07-04 17:30:00,,, +2016-07-04 17:45:00,,, +2016-07-04 17:52:46,3065.0,-10.5365, +2016-07-04 18:00:00,,,59.1294 +2016-07-04 18:15:00,,, +2016-07-04 18:30:00,,, +2016-07-04 18:45:00,,,62.4588 +2016-07-04 18:46:48,3065.0,-10.475, +2016-07-04 19:00:00,,, +2016-07-04 19:15:00,,, +2016-07-04 19:30:00,,, +2016-07-04 19:41:00,3059.0,-10.5954, +2016-07-04 19:45:00,,,57.58600000000001 +2016-07-04 20:00:00,,, +2016-07-04 20:15:00,,, +2016-07-04 20:30:00,,,60.0068 +2016-07-04 20:35:12,3058.0,-10.5963, +2016-07-04 20:45:00,,, +2016-07-04 21:00:00,,, +2016-07-04 21:15:00,,, +2016-07-04 21:29:19,3050.0,-10.7169, +2016-07-04 21:30:00,,,55.8494 +2016-07-04 21:45:00,,, +2016-07-04 22:00:00,,, +2016-07-04 22:15:00,,, +2016-07-04 22:23:19,3047.0,-10.6867, +2016-07-04 22:30:00,,,58.1366 +2016-07-04 22:45:00,,, +2016-07-04 23:00:00,,, +2016-07-04 23:15:00,,,72.2957 +2016-07-04 23:17:20,3051.0,-10.5654, +2016-07-04 23:30:00,,, +2016-07-04 23:45:00,,, +2016-07-05 00:00:00,,, +2016-07-05 00:11:20,3050.0,-10.5954, +2016-07-05 00:15:00,,,71.8653 +2016-07-05 00:30:00,,, +2016-07-05 00:45:00,,, +2016-07-05 01:00:00,,,73.1324 +2016-07-05 01:05:21,3043.0,-10.6264, +2016-07-05 01:15:00,,, +2016-07-05 01:30:00,,, +2016-07-05 01:45:00,,, +2016-07-05 01:59:22,3047.0,-10.6565, +2016-07-05 02:00:00,,,71.6678 +2016-07-05 02:15:00,,, +2016-07-05 02:30:00,,, +2016-07-05 02:45:00,,, +2016-07-05 02:53:33,3044.0,-10.6565, +2016-07-05 03:00:00,,,71.8717 +2016-07-05 03:15:00,,, +2016-07-05 03:30:00,,, +2016-07-05 03:45:00,,,70.8511 +2016-07-05 03:47:45,3043.0,-10.6867, +2016-07-05 04:00:00,,, +2016-07-05 04:15:00,,, +2016-07-05 04:30:00,,, +2016-07-05 04:41:51,3042.0,-10.7179, +2016-07-05 04:45:00,,,72.2893 +2016-07-05 05:00:00,,, +2016-07-05 05:15:00,,, +2016-07-05 05:30:00,,,72.0767 +2016-07-05 05:35:51,3039.0,-10.7179, +2016-07-05 05:45:00,,, +2016-07-05 06:00:00,,, +2016-07-05 06:15:00,,, +2016-07-05 06:29:51,3039.0,-10.6876, +2016-07-05 06:30:00,,,72.4967 +2016-07-05 06:45:00,,, +2016-07-05 07:00:00,,, +2016-07-05 07:15:00,,, +2016-07-05 07:23:51,3043.0,-10.6264, +2016-07-05 07:30:00,,,72.7117 +2016-07-05 07:45:00,,, +2016-07-05 08:00:00,,, +2016-07-05 08:15:00,,,72.0831 +2016-07-05 08:17:52,3047.0,-10.6264, +2016-07-05 08:30:00,,, +2016-07-05 08:45:00,,, +2016-07-05 09:00:00,,, +2016-07-05 09:11:52,3051.0,-10.5963, +2016-07-05 09:15:00,,,69.4613 +2016-07-05 09:30:00,,, +2016-07-05 09:45:00,,, +2016-07-05 10:00:00,,,68.1349 +2016-07-05 10:06:05,3058.0,-10.5664, +2016-07-05 10:15:00,,, +2016-07-05 10:30:00,,, +2016-07-05 10:45:00,,, +2016-07-05 11:00:00,,,70.2534 +2016-07-05 11:00:17,3065.0,-10.5057, +2016-07-05 11:15:00,,, +2016-07-05 11:30:00,,, +2016-07-05 11:45:00,,, +2016-07-05 11:54:24,3071.0,-10.4759, +2016-07-05 12:00:00,,,70.8511 +2016-07-05 12:15:00,,, +2016-07-05 12:30:00,,, +2016-07-05 12:45:00,,,71.2572 +2016-07-05 12:48:26,3076.0,-10.4157, +2016-07-05 13:00:00,,, +2016-07-05 13:15:00,,, +2016-07-05 13:30:00,,, +2016-07-05 13:42:28,3080.0,-10.3861, +2016-07-05 13:45:00,,,70.6528 +2016-07-05 14:00:00,,, +2016-07-05 14:15:00,,, +2016-07-05 14:30:00,,,71.6678 +2016-07-05 14:36:30,3081.0,-10.3557, +2016-07-05 14:45:00,,, +2016-07-05 15:00:00,,, +2016-07-05 15:15:00,,, +2016-07-05 15:30:00,,,70.4494 +2016-07-05 15:30:32,3082.0,-10.3567, +2016-07-05 15:45:00,,, +2016-07-05 16:00:00,,, +2016-07-05 16:15:00,,, +2016-07-05 16:24:34,3082.0,-10.3861, +2016-07-05 16:30:00,,,70.2534 +2016-07-05 16:45:00,,, +2016-07-05 17:00:00,,, +2016-07-05 17:15:00,,,68.8859 +2016-07-05 17:18:47,3080.0,-10.3567, +2016-07-05 17:30:00,,, +2016-07-05 17:45:00,,, +2016-07-05 18:00:00,,, +2016-07-05 18:12:59,3078.0,-10.3567, +2016-07-05 18:15:00,,,70.0522 +2016-07-05 18:30:00,,, +2016-07-05 18:45:00,,, +2016-07-05 19:00:00,,,66.8622 +2016-07-05 19:07:07,3072.0,-10.4166, +2016-07-05 19:15:00,,, +2016-07-05 19:30:00,,, +2016-07-05 19:45:00,,, +2016-07-05 20:00:00,,,66.8681 +2016-07-05 20:01:09,3067.0,-10.4462, +2016-07-05 20:15:00,,, +2016-07-05 20:30:00,,, +2016-07-05 20:45:00,,, +2016-07-05 20:55:10,3063.0,-10.4759, +2016-07-05 21:00:00,,,66.8681 +2016-07-05 21:15:00,,, +2016-07-05 21:30:00,,, +2016-07-05 21:45:00,,,66.6849 +2016-07-05 21:49:11,3058.0,-10.5057, +2016-07-05 22:00:00,,, +2016-07-05 22:15:00,,, +2016-07-05 22:30:00,,, +2016-07-05 22:43:11,3051.0,-10.5355, +2016-07-05 22:45:00,,,66.1526 +2016-07-05 23:00:00,,, +2016-07-05 23:15:00,,, +2016-07-05 23:30:00,,,65.9788 +2016-07-05 23:37:12,3047.0,-10.5963, +2016-07-05 23:45:00,,, +2016-07-06 00:00:00,,, +2016-07-06 00:15:00,,, +2016-07-06 00:30:00,,,63.9313 +2016-07-06 00:31:23,3040.0,-10.6867, +2016-07-06 00:45:00,,, +2016-07-06 01:00:00,,, +2016-07-06 01:15:00,,, +2016-07-06 01:25:34,3030.0,-10.7786, +2016-07-06 01:30:00,,,-16.6124 +2016-07-06 01:45:00,,, +2016-07-06 02:00:00,,, +2016-07-06 02:15:00,,,55.3406 +2016-07-06 02:19:39,3029.0,-10.7472, +2016-07-06 02:30:00,,, +2016-07-06 02:45:00,,, +2016-07-06 03:00:00,,, +2016-07-06 03:13:39,3026.0,-10.7179, +2016-07-06 03:15:00,,,28.0267 +2016-07-06 03:30:00,,, +2016-07-06 03:45:00,,, +2016-07-06 04:00:00,,, +2016-07-06 04:07:38,3023.0,-10.7482, +2016-07-06 04:15:00,,,-1.8323 +2016-07-06 04:30:00,,, +2016-07-06 04:45:00,,, +2016-07-06 05:00:00,,,-4.9839 +2016-07-06 05:01:38,3022.0,-10.7472, +2016-07-06 05:15:00,,, +2016-07-06 05:30:00,,, +2016-07-06 05:45:00,,, +2016-07-06 05:55:38,3021.0,-10.7786, +2016-07-06 06:00:00,,,-5.0045 +2016-07-06 06:15:00,,, +2016-07-06 06:30:00,,, +2016-07-06 06:45:00,,,-2.4286 +2016-07-06 06:49:48,3021.0,-10.7482, +2016-07-06 07:00:00,,, +2016-07-06 07:15:00,,, +2016-07-06 07:30:00,,, +2016-07-06 07:43:59,3022.0,-10.7482, +2016-07-06 07:45:00,,,-2.4286 +2016-07-06 08:00:00,,, +2016-07-06 08:15:00,,, +2016-07-06 08:30:00,,, +2016-07-06 08:38:05,3023.0,-10.7491, +2016-07-06 08:45:00,,,-2.4074 +2016-07-06 09:00:00,,, +2016-07-06 09:15:00,,, +2016-07-06 09:30:00,,,25.4353 +2016-07-06 09:32:05,3027.0,-10.7188, +2016-07-06 09:45:00,,, +2016-07-06 10:00:00,,, +2016-07-06 10:15:00,,, +2016-07-06 10:26:16,3030.0,-10.7179, +2016-07-06 10:30:00,,,26.6199 +2016-07-06 10:45:00,,, +2016-07-06 11:00:00,,, +2016-07-06 11:15:00,,,27.2513 +2016-07-06 11:20:27,3033.0,-10.6574, +2016-07-06 11:30:00,,, +2016-07-06 11:40:48,3037.0,-10.6574, +2016-07-06 11:45:00,,,27.9844 +2016-07-06 11:54:11,3042.0,-10.6885, +2016-07-06 12:00:00,,,29.2452 +2016-07-06 12:04:14,3043.0,-10.7188, +2016-07-06 12:14:17,3046.0,-10.7188, +2016-07-06 12:15:00,,,29.3546 +2016-07-06 12:29:52,3046.0,-10.6885, +2016-07-06 12:30:00,,,29.2478 +2016-07-06 12:45:00,,,29.3546 +2016-07-06 12:49:22,3047.0,-10.6885, +2016-07-06 13:00:00,,,55.3456 +2016-07-06 13:02:25,3050.0,-10.7188, +2016-07-06 13:15:00,,,55.472 +2016-07-06 13:15:48,3051.0,-10.7188, +2016-07-06 13:26:19,3051.0,-10.7188, +2016-07-06 13:30:00,,,55.3456 +2016-07-06 13:36:22,3053.0,-10.7491, +2016-07-06 13:45:00,,,55.472 +2016-07-06 13:48:17,3053.0,-10.7188, +2016-07-06 14:00:00,,,55.6039 +2016-07-06 14:00:44,3054.0,-10.7188, +2016-07-06 14:10:54,3054.0,-10.7491, +2016-07-06 14:15:00,,,55.472 +2016-07-06 14:22:40,3055.0,-10.7491, +2016-07-06 14:30:00,,,55.2196 +2016-07-06 14:33:31,3056.0,-10.7491, +2016-07-06 14:45:00,,,55.3456 +2016-07-06 14:48:05,3055.0,-10.7188, +2016-07-06 15:00:00,,,27.7395 +2016-07-06 15:02:29,3056.0,-10.6885, +2016-07-06 15:15:00,,,55.3456 +2016-07-06 15:15:53,3055.0,-10.6876, +2016-07-06 15:28:28,3056.0,-10.7188, +2016-07-06 15:30:00,,,55.2196 +2016-07-06 15:45:00,,,27.5872 +2016-07-06 15:45:53,3057.0,-10.6885, +2016-07-06 16:00:00,,, +2016-07-06 16:11:51,3057.0,-10.6264, +2016-07-06 16:15:00,,,27.4846 +2016-07-06 16:24:26,3057.0,-10.6574, +2016-07-06 16:30:00,,,27.1861 +2016-07-06 16:45:00,,,27.1378 +2016-07-06 16:49:01,3058.0,-10.6885, +2016-07-06 16:59:04,3054.0,-10.7188, +2016-07-06 17:00:00,,,54.9595 +2016-07-06 17:09:06,3057.0,-10.6885, +2016-07-06 17:15:00,,,29.5301 +2016-07-06 17:19:09,3058.0,-10.6885, +2016-07-06 17:29:12,3057.0,-10.7188, +2016-07-06 17:30:00,,,29.8021 +2016-07-06 17:39:15,3057.0,-10.7188, +2016-07-06 17:45:00,,,28.0018 +2016-07-06 17:49:17,3057.0,-10.7188, +2016-07-06 17:59:20,3057.0,-10.7188, +2016-07-06 18:00:00,,,29.6909 +2016-07-06 18:09:23,3056.0,-10.7188, +2016-07-06 18:15:00,,,29.749 +2016-07-06 18:19:26,3055.0,-10.7188, +2016-07-06 18:29:28,3055.0,-10.7188, +2016-07-06 18:30:00,,,30.3595 +2016-07-06 18:39:31,3055.0,-10.7188, +2016-07-06 18:45:00,,,30.5851 +2016-07-06 18:49:34,3054.0,-10.7501, +2016-07-06 18:59:36,3054.0,-10.7491, +2016-07-06 19:00:00,,,30.5851 +2016-07-06 19:09:39,3054.0,-10.7501, +2016-07-06 19:15:00,,,30.5879 +2016-07-06 19:19:42,3053.0,-10.7491, +2016-07-06 19:29:45,3052.0,-10.7491, +2016-07-06 19:30:00,,,30.5879 +2016-07-06 19:39:47,3052.0,-10.7805, +2016-07-06 19:45:00,,,30.7 +2016-07-06 19:49:50,3051.0,-10.7805, +2016-07-06 19:59:53,3051.0,-10.7805, +2016-07-06 20:00:00,,,30.7027 +2016-07-06 20:09:55,3050.0,-10.7805, +2016-07-06 20:15:00,,,30.7054 +2016-07-06 20:19:58,3050.0,-10.812, +2016-07-06 20:30:00,,,30.7603 +2016-07-06 20:30:01,3050.0,-10.811, +2016-07-06 20:40:03,3049.0,-10.811, +2016-07-06 20:45:00,,,30.7549 +2016-07-06 20:50:06,3048.0,-10.811, +2016-07-06 21:00:00,,,30.7082 +2016-07-06 21:00:08,3046.0,-10.8722, +2016-07-06 21:10:11,3045.0,-10.8416, +2016-07-06 21:15:00,,,30.7631 +2016-07-06 21:20:14,3043.0,-10.8416, +2016-07-06 21:30:00,,,58.2848 +2016-07-06 21:30:16,3045.0,-10.9337, +2016-07-06 21:40:19,3045.0,-10.9646, +2016-07-06 21:45:00,,,59.4352 +2016-07-06 21:50:22,3044.0,-10.9337, +2016-07-06 22:00:00,,,60.4623 +2016-07-06 22:00:24,3043.0,-10.9337, +2016-07-06 22:10:27,3043.0,-10.9328, +2016-07-06 22:15:00,,,60.9023 +2016-07-06 22:20:29,3044.0,-10.9347, +2016-07-06 22:30:00,,,19.0471 +2016-07-06 22:30:32,3043.0,-10.9646, +2016-07-06 22:40:34,3041.0,-10.9646, +2016-07-06 22:45:00,,,60.3098 +2016-07-06 22:50:37,3040.0,-10.9646, +2016-07-06 23:00:00,,,86.0274 +2016-07-06 23:00:39,3051.0,-10.7491, +2016-07-06 23:10:42,3039.0,-10.9646, +2016-07-06 23:15:00,,,61.6744 +2016-07-06 23:20:44,3038.0,-10.9646, +2016-07-06 23:30:00,,,60.9131 +2016-07-06 23:30:47,3037.0,-10.9956, +2016-07-06 23:40:49,3037.0,-10.9646, +2016-07-06 23:45:00,,,62.6268 +2016-07-06 23:50:52,3037.0,-11.0276, +2016-07-07 00:00:00,,,63.9199 +2016-07-07 00:00:54,3037.0,-10.9956, +2016-07-07 00:10:57,3036.0,-11.0276, +2016-07-07 00:15:00,,,61.0629 +2016-07-07 00:20:59,3035.0,-11.0276, +2016-07-07 00:30:00,,,61.37 +2016-07-07 00:31:02,3035.0,-11.0276, +2016-07-07 00:41:04,3034.0,-11.0276, +2016-07-07 00:45:00,,,61.37 +2016-07-07 00:51:07,3033.0,-11.0587, +2016-07-07 01:00:00,,,60.9131 +2016-07-07 01:01:09,3032.0,-11.0587, +2016-07-07 01:11:12,3031.0,-11.0577, +2016-07-07 01:15:00,,,61.37 +2016-07-07 01:21:14,3030.0,-11.0587, +2016-07-07 01:30:00,,,61.3646 +2016-07-07 01:31:17,3030.0,-11.0899, +2016-07-07 01:41:19,3030.0,-11.0899, +2016-07-07 01:45:00,,,61.0629 +2016-07-07 01:51:21,3029.0,-11.0899, +2016-07-07 02:00:00,,,60.7586 +2016-07-07 02:01:24,3028.0,-11.0899, +2016-07-07 02:11:26,3027.0,-11.0899, +2016-07-07 02:15:00,,,64.4306 +2016-07-07 02:21:29,3027.0,-11.0899, +2016-07-07 02:30:00,,,61.8386 +2016-07-07 02:31:31,3026.0,-11.1212, +2016-07-07 02:41:33,3024.0,-11.0889, +2016-07-07 02:45:00,,,61.6744 +2016-07-07 02:51:36,3023.0,-11.1212, +2016-07-07 03:00:00,,,62.3027 +2016-07-07 03:01:38,3023.0,-11.0889, +2016-07-07 03:11:41,3023.0,-11.1212, +2016-07-07 03:15:00,,,61.2188 +2016-07-07 03:21:43,3023.0,-11.1212, +2016-07-07 03:30:00,,,61.0629 +2016-07-07 03:31:45,3022.0,-11.1212, +2016-07-07 03:41:48,3022.0,-11.1536, +2016-07-07 03:45:00,,,60.9131 +2016-07-07 03:51:50,3022.0,-11.1536, +2016-07-07 04:00:00,,,60.7586 +2016-07-07 04:01:52,3022.0,-11.1536, +2016-07-07 04:11:55,3021.0,-11.1536, +2016-07-07 04:15:00,,,60.9131 +2016-07-07 04:21:57,3021.0,-11.1536, +2016-07-07 04:30:00,,,61.37 +2016-07-07 04:31:59,3020.0,-11.1536, +2016-07-07 04:42:02,3020.0,-11.1536, +2016-07-07 04:45:00,,,60.9131 +2016-07-07 04:52:04,3020.0,-11.1536, +2016-07-07 05:00:00,,,61.6744 +2016-07-07 05:02:06,3020.0,-11.1536, +2016-07-07 05:12:09,3020.0,-11.1536, +2016-07-07 05:15:00,,,61.6799 +2016-07-07 05:22:11,3020.0,-11.1526, +2016-07-07 05:30:00,,,61.8332 +2016-07-07 05:32:13,3020.0,-11.1526, +2016-07-07 05:42:16,3020.0,-11.1526, +2016-07-07 05:45:00,,,61.8386 +2016-07-07 05:52:18,3020.0,-11.1526, +2016-07-07 06:00:00,,,61.37 +2016-07-07 06:02:21,3020.0,-11.1526, +2016-07-07 06:12:23,3019.0,-11.1526, +2016-07-07 06:15:00,,,60.9131 +2016-07-07 06:22:25,3020.0,-11.1536, +2016-07-07 06:30:00,,,61.37 +2016-07-07 06:32:28,3019.0,-11.1526, +2016-07-07 06:42:30,3019.0,-11.1526, +2016-07-07 06:45:00,,,61.37 +2016-07-07 06:52:32,3020.0,-11.1536, +2016-07-07 07:00:00,,,61.8386 +2016-07-07 07:02:35,3020.0,-11.1536, +2016-07-07 07:12:37,3020.0,-11.1212, +2016-07-07 07:15:00,,,61.37 +2016-07-07 07:22:39,3021.0,-11.1212, +2016-07-07 07:30:00,,,60.9131 +2016-07-07 07:32:42,3021.0,-11.1212, +2016-07-07 07:42:44,3022.0,-11.0889, +2016-07-07 07:45:00,,,61.37 +2016-07-07 07:52:46,3022.0,-11.0899, +2016-07-07 08:00:00,,,61.37 +2016-07-07 08:02:49,3023.0,-11.0899, +2016-07-07 08:12:51,3023.0,-11.0889, +2016-07-07 08:15:00,,,61.37 +2016-07-07 08:22:54,3024.0,-11.0899, +2016-07-07 08:30:00,,,61.6744 +2016-07-07 08:32:56,3025.0,-11.0577, +2016-07-07 08:42:59,3026.0,-11.0899, +2016-07-07 08:45:00,,,61.6799 +2016-07-07 08:53:01,3028.0,-11.0899, +2016-07-07 09:00:00,,,61.8386 +2016-07-07 09:03:04,3029.0,-11.0577, +2016-07-07 09:13:06,3030.0,-11.0577, +2016-07-07 09:15:00,,,62.4644 +2016-07-07 09:23:08,3030.0,-11.0577, +2016-07-07 09:30:00,,,61.9926 +2016-07-07 09:33:11,3031.0,-11.0587, +2016-07-07 09:43:14,3033.0,-11.0266, +2016-07-07 09:45:00,,,62.1473 +2016-07-07 09:53:16,3034.0,-11.0266, +2016-07-07 10:00:00,,,61.8386 +2016-07-07 10:03:19,3035.0,-11.0276, +2016-07-07 10:13:21,3036.0,-11.0276, +2016-07-07 10:15:00,,,61.9926 +2016-07-07 10:23:24,3037.0,-11.0276, +2016-07-07 10:30:00,,,62.3082 +2016-07-07 10:33:27,3038.0,-10.9956, +2016-07-07 10:43:29,3039.0,-10.9956, +2016-07-07 10:45:00,,,62.9427 +2016-07-07 10:53:32,3040.0,-11.0276, +2016-07-07 11:00:00,,,63.2673 +2016-07-07 11:03:34,3043.0,-10.9646, +2016-07-07 11:13:37,3043.0,-10.9646, +2016-07-07 11:15:00,,,62.3082 +2016-07-07 11:23:40,3043.0,-10.9328, +2016-07-07 11:30:00,,,63.113 +2016-07-07 11:33:42,3043.0,-10.9328, +2016-07-07 11:43:45,3046.0,-10.9337, +2016-07-07 11:45:00,,,63.9256 +2016-07-07 11:53:48,3047.0,-10.9337, +2016-07-07 12:00:00,,,63.5949 +2016-07-07 12:03:50,3049.0,-10.9337, +2016-07-07 12:13:53,3050.0,-10.9347, +2016-07-07 12:15:00,,,64.4134 +2016-07-07 12:23:55,3050.0,-10.9337, +2016-07-07 12:30:00,,,62.7788 +2016-07-07 12:33:56,3051.0,-10.8712, +2016-07-07 12:43:59,3051.0,-10.9029, +2016-07-07 12:45:00,,,63.5949 +2016-07-07 12:54:01,3052.0,-10.8712, +2016-07-07 13:00:00,,,64.2538 +2016-07-07 13:04:04,3054.0,-10.9029, +2016-07-07 13:14:07,3056.0,-10.8712, +2016-07-07 13:15:00,,,64.4248 +2016-07-07 13:24:10,3057.0,-10.8712, +2016-07-07 13:30:00,,,64.4306 +2016-07-07 13:34:13,3058.0,-10.8712, +2016-07-07 13:44:15,3058.0,-10.8406, +2016-07-07 13:45:00,,,64.5967 +2016-07-07 13:54:18,3058.0,-10.8091, +2016-07-07 14:00:00,,,65.2752 +2016-07-07 14:04:21,3059.0,-10.8091, +2016-07-07 14:14:24,3059.0,-10.8406, +2016-07-07 14:15:00,,,64.0893 +2016-07-07 14:24:27,3061.0,-10.8406, +2016-07-07 14:30:00,,,63.757 +2016-07-07 14:34:30,3062.0,-10.8091, +2016-07-07 14:44:32,3063.0,-10.81, +2016-07-07 14:45:00,,,64.9314 +2016-07-07 14:54:35,3064.0,-10.81, +2016-07-07 15:00:00,,,63.1018 +2016-07-07 15:04:38,3064.0,-10.7786, +2016-07-07 15:14:41,3065.0,-10.7786, +2016-07-07 15:15:00,,,64.9314 +2016-07-07 15:24:43,3065.0,-10.7786, +2016-07-07 15:30:00,,,62.9371 +2016-07-07 15:34:46,3065.0,-10.7472, +2016-07-07 15:44:49,3065.0,-10.81, +2016-07-07 15:45:00,,,63.757 +2016-07-07 15:54:52,3066.0,-10.7786, +2016-07-07 16:00:00,,,64.5967 +2016-07-07 16:04:55,3066.0,-10.81, +2016-07-07 16:14:58,3067.0,-10.7786, +2016-07-07 16:15:00,,,64.9372 +2016-07-07 16:25:01,3067.0,-10.7786, +2016-07-07 16:30:00,,,65.2752 +2016-07-07 16:35:04,3066.0,-10.7472, +2016-07-07 16:45:00,,,65.1057 +2016-07-07 16:45:06,3067.0,-10.81, +2016-07-07 16:55:09,3067.0,-10.81, +2016-07-07 17:00:00,,,65.2752 +2016-07-07 17:05:12,3067.0,-10.7786, +2016-07-07 17:15:00,,,64.4248 +2016-07-07 17:15:15,3066.0,-10.81, +2016-07-07 17:25:18,3065.0,-10.7472, +2016-07-07 17:30:00,,,62.7788 +2016-07-07 17:35:20,3068.0,-10.7491, +2016-07-07 17:45:00,,,64.5967 +2016-07-07 17:45:23,3065.0,-10.81, +2016-07-07 17:55:26,3065.0,-10.81, +2016-07-07 18:00:00,,,64.7636 +2016-07-07 18:05:29,3065.0,-10.7786, +2016-07-07 18:15:00,,,63.7627 +2016-07-07 18:15:31,3065.0,-10.8091, +2016-07-07 18:25:34,3065.0,-10.81, +2016-07-07 18:30:00,,,64.4191 +2016-07-07 18:35:37,3065.0,-10.81, +2016-07-07 18:45:00,,,63.1074 +2016-07-07 18:45:40,3063.0,-10.81, +2016-07-07 18:55:42,3064.0,-10.8091, +2016-07-07 19:00:00,,,65.9671 +2016-07-07 19:05:45,3061.0,-10.81, +2016-07-07 19:15:00,,,62.6212 +2016-07-07 19:15:48,3060.0,-10.81, +2016-07-07 19:25:50,3058.0,-10.8091, +2016-07-07 19:30:00,,,62.4588 +2016-07-07 19:35:53,3058.0,-10.8091, +2016-07-07 19:45:00,,,62.3027 +2016-07-07 19:45:56,3058.0,-10.8406, +2016-07-07 19:55:58,3057.0,-10.8091, +2016-07-07 20:00:00,,,62.3027 +2016-07-07 20:06:01,3055.0,-10.8406, +2016-07-07 20:15:00,,,61.8277 +2016-07-07 20:16:03,3053.0,-10.8406, +2016-07-07 20:26:06,3052.0,-10.8406, +2016-07-07 20:30:00,,,61.3646 +2016-07-07 20:36:09,3051.0,-10.8396, +2016-07-07 20:45:00,,,61.3646 +2016-07-07 20:46:11,3050.0,-10.8396, +2016-07-07 20:56:14,3049.0,-10.8712, +2016-07-07 21:00:00,,,61.2134 +2016-07-07 21:06:16,3047.0,-10.8712, +2016-07-07 21:15:00,,,60.9077 +2016-07-07 21:16:19,3045.0,-10.8712, +2016-07-07 21:26:21,3043.0,-10.902, +2016-07-07 21:30:00,,,60.7532 +2016-07-07 21:36:24,3043.0,-10.902, +2016-07-07 21:45:00,,,60.6047 +2016-07-07 21:46:26,3042.0,-10.902, +2016-07-07 21:56:29,3040.0,-10.902, +2016-07-07 22:00:00,,,60.6047 +2016-07-07 22:06:32,3039.0,-10.901, +2016-07-07 22:15:00,,,60.3045 +2016-07-07 22:16:34,3038.0,-10.901, +2016-07-07 22:26:37,3037.0,-10.901, +2016-07-07 22:30:00,,,60.1526 +2016-07-07 22:36:39,3036.0,-10.9328, +2016-07-07 22:45:00,,,59.8616 +2016-07-07 22:46:41,3036.0,-10.9328, +2016-07-07 22:56:44,3035.0,-10.9328, +2016-07-07 23:00:00,,,60.0122 +2016-07-07 23:06:46,3034.0,-10.9328, +2016-07-07 23:15:00,,,59.4246 +2016-07-07 23:16:49,3033.0,-10.9328, +2016-07-07 23:26:51,3033.0,-10.9328, +2016-07-07 23:30:00,,,59.7171 +2016-07-07 23:36:54,3031.0,-10.9318, +2016-07-07 23:45:00,,,59.7171 +2016-07-07 23:46:56,3030.0,-10.9318, +2016-07-07 23:56:58,3030.0,-10.9318, +2016-07-08 00:00:00,,,59.5732 +2016-07-08 00:07:01,3030.0,-10.9318, +2016-07-08 00:15:00,,,59.4299 +2016-07-08 00:17:03,3030.0,-10.9636, +2016-07-08 00:27:06,3029.0,-10.9636, +2016-07-08 00:30:00,,,59.4246 +2016-07-08 00:37:08,3029.0,-10.9636, +2016-07-08 00:45:00,,,59.1347 +2016-07-08 00:47:11,3029.0,-10.9636, +2016-07-08 00:57:13,3029.0,-10.9636, +2016-07-08 01:00:00,,,59.1347 +2016-07-08 01:07:15,3028.0,-10.9636, +2016-07-08 01:15:00,,,58.707 +2016-07-08 01:17:25,3028.0,-10.9636, +2016-07-08 01:27:28,3027.0,-10.9636, +2016-07-08 01:30:00,,,58.8472 +2016-07-08 01:37:30,3026.0,-10.9636, +2016-07-08 01:45:00,,,58.707 +2016-07-08 01:47:33,3026.0,-10.9627, +2016-07-08 01:57:35,3026.0,-10.9636, +2016-07-08 02:00:00,,,58.8472 +2016-07-08 02:07:38,3026.0,-10.9946, +2016-07-08 02:15:00,,,58.5674 +2016-07-08 02:17:40,3025.0,-10.9946, +2016-07-08 02:27:42,3025.0,-10.9946, +2016-07-08 02:30:00,,,58.5674 +2016-07-08 02:37:45,3024.0,-10.9946, +2016-07-08 02:45:00,,,58.5674 +2016-07-08 02:47:47,3024.0,-10.9946, +2016-07-08 02:57:50,3023.0,-10.9946, +2016-07-08 03:00:00,,,58.707 +2016-07-08 03:07:52,3023.0,-11.0266, +2016-07-08 03:15:00,,,58.4232 +2016-07-08 03:17:55,3023.0,-10.9946, +2016-07-08 03:27:57,3023.0,-11.0266, +2016-07-08 03:30:00,,,58.2848 +2016-07-08 03:37:59,3023.0,-11.0256, +2016-07-08 03:45:00,,,58.2848 +2016-07-08 03:48:02,3022.0,-11.0256, +2016-07-08 03:58:04,3022.0,-11.0266, +2016-07-08 04:00:00,,,58.147 +2016-07-08 04:08:07,3022.0,-11.0266, +2016-07-08 04:15:00,,,58.0046 +2016-07-08 04:18:09,3022.0,-11.0256, +2016-07-08 04:28:12,3022.0,-11.0256, +2016-07-08 04:30:00,,,58.147 +2016-07-08 04:38:14,3022.0,-11.0256, +2016-07-08 04:45:00,,,58.0046 +2016-07-08 04:48:17,3022.0,-11.0256, +2016-07-08 04:58:19,3022.0,-11.0256, +2016-07-08 05:00:00,,,58.147 +2016-07-08 05:08:22,3022.0,-11.0256, +2016-07-08 05:15:00,,,57.7267 +2016-07-08 05:18:24,3022.0,-11.0256, +2016-07-08 05:28:27,3021.0,-11.0256, +2016-07-08 05:30:00,,,57.9994 +2016-07-08 05:38:29,3021.0,-11.0256, +2016-07-08 05:45:00,,,57.4511 +2016-07-08 05:48:32,3021.0,-11.0256, +2016-07-08 05:58:34,3022.0,-11.0256, +2016-07-08 06:00:00,,,57.4562 +2016-07-08 06:08:37,3022.0,-11.0266, +2016-07-08 06:15:00,,,57.4511 +2016-07-08 06:18:39,3022.0,-11.0256, +2016-07-08 06:28:42,3022.0,-11.0266, +2016-07-08 06:30:00,,,57.7215 +2016-07-08 06:38:44,3022.0,-10.9946, +2016-07-08 06:45:00,,,57.3167 +2016-07-08 06:48:47,3022.0,-10.9946, +2016-07-08 06:58:49,3022.0,-10.9946, +2016-07-08 07:00:00,,,57.4511 +2016-07-08 07:08:52,3023.0,-10.9946, +2016-07-08 07:15:00,,,57.3116 +2016-07-08 07:18:54,3023.0,-10.9946, +2016-07-08 07:28:57,3023.0,-10.9636, +2016-07-08 07:30:00,,,57.1829 +2016-07-08 07:38:59,3024.0,-10.9636, +2016-07-08 07:45:00,,,57.3167 +2016-07-08 07:49:02,3024.0,-10.9636, +2016-07-08 07:59:04,3024.0,-10.9318, +2016-07-08 08:00:00,,,57.3167 +2016-07-08 08:09:07,3026.0,-10.9318, +2016-07-08 08:15:00,,,57.7267 +2016-07-08 08:19:09,3026.0,-10.9318, +2016-07-08 08:29:12,3028.0,-10.9328, +2016-07-08 08:30:00,,,57.7267 +2016-07-08 08:39:14,3029.0,-10.901, +2016-07-08 08:45:00,,,57.7267 +2016-07-08 08:49:17,3029.0,-10.9328, +2016-07-08 08:59:19,3030.0,-10.901, +2016-07-08 09:00:00,,,57.7267 +2016-07-08 09:09:22,3031.0,-10.8722, +2016-07-08 09:15:00,,,57.3218 +2016-07-08 09:19:25,3033.0,-10.9048, +2016-07-08 09:29:28,3034.0,-10.8712, +2016-07-08 09:30:00,,,57.5963 +2016-07-08 09:39:30,3036.0,-10.902, +2016-07-08 09:45:00,,,57.4511 +2016-07-08 09:49:33,3037.0,-10.8712, +2016-07-08 09:59:36,3038.0,-10.8712, +2016-07-08 10:00:00,,,57.4511 +2016-07-08 10:09:38,3040.0,-10.8406, +2016-07-08 10:15:00,,,57.8628 +2016-07-08 10:19:41,3042.0,-10.8406, +2016-07-08 10:29:44,3043.0,-10.8406, +2016-07-08 10:30:00,,,58.2848 +2016-07-08 10:39:47,3043.0,-10.8406, +2016-07-08 10:45:00,,,58.0046 +2016-07-08 10:49:49,3046.0,-10.8091, +2016-07-08 10:59:52,3048.0,-10.8091, +2016-07-08 11:00:00,,,58.1418 +2016-07-08 11:09:55,3049.0,-10.8091, +2016-07-08 11:15:00,,,58.0046 +2016-07-08 11:19:57,3050.0,-10.81, +2016-07-08 11:30:00,3051.0,-10.81,58.147 +2016-07-08 11:40:03,3051.0,-10.81, +2016-07-08 11:45:00,,,58.147 +2016-07-08 11:50:05,3051.0,-10.7786, +2016-07-08 12:00:00,,,58.2848 +2016-07-08 12:00:08,3053.0,-10.7786, +2016-07-08 12:10:11,3053.0,-10.7786, +2016-07-08 12:15:00,,,58.0046 +2016-07-08 12:20:14,3054.0,-10.7786, +2016-07-08 12:30:00,,,58.0046 +2016-07-08 12:30:16,3054.0,-10.7786, +2016-07-08 12:40:19,3054.0,-10.7472, +2016-07-08 12:45:00,,,58.147 +2016-07-08 12:50:22,3055.0,-10.7472, +2016-07-08 13:00:00,,,57.9994 +2016-07-08 13:00:24,3055.0,-10.7472, +2016-07-08 13:10:27,3055.0,-10.7472, +2016-07-08 13:15:00,,,57.9994 +2016-07-08 13:20:30,3055.0,-10.7786, +2016-07-08 13:30:00,,,57.7267 +2016-07-08 13:30:33,3055.0,-10.7786, +2016-07-08 13:40:43,3055.0,-10.7472, +2016-07-08 13:45:00,,,57.8679 +2016-07-08 13:50:46,3054.0,-10.7472, +2016-07-08 14:00:00,,,57.5912 +2016-07-08 14:00:48,3054.0,-10.7472, +2016-07-08 14:10:51,3054.0,-10.7472, +2016-07-08 14:15:00,,,57.7267 +2016-07-08 14:20:54,3053.0,-10.7472, +2016-07-08 14:30:00,,,57.3167 +2016-07-08 14:30:56,3053.0,-10.7472, +2016-07-08 14:40:59,3053.0,-10.7472, +2016-07-08 14:45:00,,,57.4511 +2016-07-08 14:51:02,3054.0,-10.716, +2016-07-08 15:00:00,,,57.3167 +2016-07-08 15:01:05,3054.0,-10.7482, +2016-07-08 15:11:08,3054.0,-10.716, +2016-07-08 15:15:00,,,57.5912 +2016-07-08 15:21:11,3054.0,-10.7169, +2016-07-08 15:30:00,,,57.4511 +2016-07-08 15:31:13,3054.0,-10.7472, +2016-07-08 15:41:16,3054.0,-10.7472, +2016-07-08 15:45:00,,,57.4511 +2016-07-08 15:51:20,3054.0,-10.716, +2016-07-08 16:00:00,,,57.3167 +2016-07-08 16:01:23,3054.0,-10.716, +2016-07-08 16:11:25,3054.0,-10.7169, +2016-07-08 16:15:00,,,57.3167 +2016-07-08 16:21:28,3054.0,-10.716, +2016-07-08 16:30:00,,,57.3167 +2016-07-08 16:31:31,3054.0,-10.716, +2016-07-08 16:41:34,3054.0,-10.7472, +2016-07-08 16:45:00,,,57.0445 +2016-07-08 16:51:36,3054.0,-10.716, +2016-07-08 17:00:00,,,57.1778 +2016-07-08 17:01:39,3054.0,-10.7169, +2016-07-08 17:11:42,3053.0,-10.716, +2016-07-08 17:15:00,,,57.0445 +2016-07-08 17:21:45,3053.0,-10.7472, +2016-07-08 17:30:00,,,56.7746 +2016-07-08 17:31:48,3053.0,-10.7472, +2016-07-08 17:41:51,3052.0,-10.7786, +2016-07-08 17:45:00,,,57.0395 +2016-07-08 17:51:53,3051.0,-10.7786, +2016-07-08 18:00:00,,,56.9068 +2016-07-08 18:01:56,3051.0,-10.7786, +2016-07-08 18:11:59,3051.0,-10.7472, +2016-07-08 18:15:00,,,56.7746 +2016-07-08 18:22:02,3050.0,-10.7776, +2016-07-08 18:30:00,,,56.643 +2016-07-08 18:32:05,3049.0,-10.7463, +2016-07-08 18:42:08,3047.0,-10.7776, +2016-07-08 18:45:00,,,56.5068 +2016-07-08 18:52:10,3046.0,-10.7776, +2016-07-08 19:00:00,,,56.6379 +2016-07-08 19:02:13,3044.0,-10.7776, +2016-07-08 19:12:16,3043.0,-10.8091, +2016-07-08 19:15:00,,,56.5068 +2016-07-08 19:22:19,3043.0,-10.8091, +2016-07-08 19:30:00,,,56.2463 +2016-07-08 19:32:21,3043.0,-10.8081, +2016-07-08 19:42:24,3042.0,-10.8081, +2016-07-08 19:45:00,,,56.2463 +2016-07-08 19:52:27,3040.0,-10.8081, +2016-07-08 20:00:00,,,56.2463 +2016-07-08 20:02:30,3039.0,-10.8396, +2016-07-08 20:12:33,3038.0,-10.8396, +2016-07-08 20:15:00,,,56.1118 +2016-07-08 20:22:35,3037.0,-10.8396, +2016-07-08 20:30:00,,,55.8494 +2016-07-08 20:32:38,3036.0,-10.8396, +2016-07-08 20:42:40,3036.0,-10.8396, +2016-07-08 20:45:00,,,55.7214 +2016-07-08 20:52:43,3035.0,-10.8387, +2016-07-08 21:00:00,,,55.5891 +2016-07-08 21:02:45,3034.0,-10.8387, +2016-07-08 21:12:48,3033.0,-10.8387, +2016-07-08 21:15:00,,,55.7214 +2016-07-08 21:22:51,3031.0,-10.8703, +2016-07-08 21:30:00,,,55.4621 +2016-07-08 21:32:53,3030.0,-10.8693, +2016-07-08 21:42:56,3030.0,-10.901, +2016-07-08 21:45:00,,,55.0795 +2016-07-08 21:52:59,3029.0,-10.901, +2016-07-08 22:00:00,,,54.9546 +2016-07-08 22:03:02,3029.0,-10.901, +2016-07-08 22:13:04,3028.0,-10.901, +2016-07-08 22:15:00,,,55.0795 +2016-07-08 22:23:07,3026.0,-10.9328, +2016-07-08 22:30:00,,,27.6485 +2016-07-08 22:33:10,3026.0,-10.8703, +2016-07-08 22:43:12,3025.0,-10.902, +2016-07-08 22:45:00,,,28.0615 +2016-07-08 22:53:15,3024.0,-10.902, +2016-07-08 23:00:00,,,30.3703 +2016-07-08 23:03:17,3023.0,-10.901, +2016-07-08 23:13:20,3022.0,-10.901, +2016-07-08 23:15:00,,,30.3162 +2016-07-08 23:23:22,3022.0,-10.901, +2016-07-08 23:30:00,,,30.6507 +2016-07-08 23:33:25,3020.0,-10.9328, +2016-07-08 23:43:28,3019.0,-10.9328, +2016-07-08 23:45:00,,,30.6534 +2016-07-08 23:53:30,3017.0,-10.9318, +2016-07-09 00:00:00,,,30.7658 +2016-07-09 00:03:33,3015.0,-10.9318, +2016-07-09 00:13:35,3015.0,-10.9318, +2016-07-09 00:15:00,,,30.7685 +2016-07-09 00:23:38,3014.0,-10.9318, +2016-07-09 00:30:00,,,30.774 +2016-07-09 00:33:40,3014.0,-10.9318, +2016-07-09 00:43:43,3012.0,-10.9636, +2016-07-09 00:45:00,,,30.7713 +2016-07-09 00:53:45,3012.0,-10.9636, +2016-07-09 01:00:00,,,30.7685 +2016-07-09 01:03:48,3010.0,-10.9636, +2016-07-09 01:13:50,3010.0,-10.9318, +2016-07-09 01:15:00,,,30.829 +2016-07-09 01:23:53,3009.0,-10.9636, +2016-07-09 01:30:00,,,30.8208 +2016-07-09 01:33:55,3009.0,-10.9, +2016-07-09 01:43:58,3007.0,-10.9946, +2016-07-09 01:45:00,,,8.0469 +2016-07-09 01:54:00,3007.0,-10.9946, +2016-07-09 02:00:00,,,30.3162 +2016-07-09 02:04:03,3007.0,-10.9946, +2016-07-09 02:14:05,3007.0,-10.9936, +2016-07-09 02:15:00,,,30.4843 +2016-07-09 02:24:08,3005.0,-11.0256, +2016-07-09 02:30:00,,,30.4272 +2016-07-09 02:34:10,3005.0,-10.9936, +2016-07-09 02:44:13,3005.0,-11.0256, +2016-07-09 02:45:00,,,30.4897 +2016-07-09 02:54:15,3005.0,-11.0256, +2016-07-09 03:00:00,,,30.4843 +2016-07-09 03:04:18,3003.0,-11.0948, +2016-07-09 03:14:20,3002.0,-10.9946, +2016-07-09 03:15:00,,,30.7109 +2016-07-09 03:24:23,3002.0,-11.0256, +2016-07-09 03:30:00,,,30.7713 +2016-07-09 03:34:25,3002.0,-11.0256, +2016-07-09 03:44:28,3002.0,-11.0256, +2016-07-09 03:45:00,,,30.7658 +2016-07-09 03:54:30,3002.0,-11.0256, +2016-07-09 04:00:00,,,29.9297 +2016-07-09 04:04:33,3001.0,-11.0256, +2016-07-09 04:14:35,3001.0,-11.0889, +2016-07-09 04:15:00,,,55.4621 +2016-07-09 04:24:38,3009.0,-10.9318, +2016-07-09 04:30:00,,,75.5838 +2016-07-09 04:34:40,3009.0,-10.9636, +2016-07-09 04:44:43,3009.0,-10.9636, +2016-07-09 04:45:00,,,74.8987 +2016-07-09 04:54:45,3009.0,-10.9636, +2016-07-09 05:00:00,,,75.8105 +2016-07-09 05:04:48,3009.0,-10.9318, +2016-07-09 05:14:50,3009.0,-10.9318, +2016-07-09 05:15:00,,,76.0453 +2016-07-09 05:24:52,3009.0,-10.9318, +2016-07-09 05:30:00,,,75.8105 +2016-07-09 05:34:55,3009.0,-10.9318, +2016-07-09 05:44:57,3009.0,-10.9308, +2016-07-09 05:45:00,,,75.8172 +2016-07-09 05:55:00,3009.0,-10.9627, +2016-07-09 06:00:00,,,75.8105 +2016-07-09 06:05:02,3009.0,-10.9636, +2016-07-09 06:15:00,,,76.0453 +2016-07-09 06:15:05,3009.0,-10.9627, +2016-07-09 06:25:07,3009.0,-10.9627, +2016-07-09 06:30:00,,,76.5056 +2016-07-09 06:35:10,3009.0,-10.9627, +2016-07-09 06:45:00,,,75.5771 +2016-07-09 06:45:12,3010.0,-10.9308, +2016-07-09 06:55:15,3010.0,-10.9308, +2016-07-09 07:00:00,,,75.8105 +2016-07-09 07:05:17,3009.0,-10.9627, +2016-07-09 07:15:00,,,75.8105 +2016-07-09 07:15:20,3010.0,-10.9318, +2016-07-09 07:25:22,3011.0,-10.9318, +2016-07-09 07:30:00,,,75.8105 +2016-07-09 07:35:25,3011.0,-10.9636, +2016-07-09 07:45:00,,,75.3519 +2016-07-09 07:45:27,3012.0,-10.9318, +2016-07-09 07:55:30,3012.0,-10.9318, +2016-07-09 08:00:00,,,74.9054 +2016-07-09 08:05:33,3013.0,-10.9318, +2016-07-09 08:15:00,,,74.6841 +2016-07-09 08:15:35,3013.0,-10.9318, +2016-07-09 08:25:38,3014.0,-10.9318, +2016-07-09 08:30:00,,,75.8105 +2016-07-09 08:35:40,3014.0,-10.9, +2016-07-09 08:45:00,,,76.0453 +2016-07-09 08:45:43,3017.0,-10.9328, +2016-07-09 08:55:45,3018.0,-10.901, +2016-07-09 09:00:00,,,75.5838 +2016-07-09 09:05:48,3019.0,-10.901, +2016-07-09 09:15:00,,,74.45100000000002 +2016-07-09 09:15:50,3020.0,-10.901, +2016-07-09 09:25:53,3021.0,-10.901, +2016-07-09 09:30:00,,,74.9054 +2016-07-09 09:35:55,3022.0,-10.8693, +2016-07-09 09:45:00,,,75.3585 +2016-07-09 09:45:58,3022.0,-10.8693, +2016-07-09 09:56:00,3024.0,-10.8703, +2016-07-09 10:00:00,,,75.5838 +2016-07-09 10:06:03,3024.0,-10.8693, +2016-07-09 10:15:00,,,74.0151 +2016-07-09 10:16:05,3026.0,-10.8387, +2016-07-09 10:26:08,3029.0,-10.8396, +2016-07-09 10:30:00,,,74.23899999999998 +2016-07-09 10:36:11,3029.0,-10.8387, +2016-07-09 10:45:00,,,74.0151 +2016-07-09 10:46:13,3030.0,-10.8396, +2016-07-09 10:56:16,3030.0,-10.8396, +2016-07-09 11:00:00,,,74.0151 +2016-07-09 11:06:19,3030.0,-10.8396, +2016-07-09 11:15:00,,,74.4576 +2016-07-09 11:16:21,3032.0,-10.8396, +2016-07-09 11:26:24,3033.0,-10.8081, +2016-07-09 11:30:00,,,74.4576 +2016-07-09 11:36:27,3034.0,-10.8081, +2016-07-09 11:45:00,,,74.45100000000002 +2016-07-09 11:46:29,3034.0,-10.8091, +2016-07-09 11:56:32,3035.0,-10.7776, +2016-07-09 12:00:00,,,73.79899999999998 +2016-07-09 12:06:34,3036.0,-10.8091, +2016-07-09 12:15:00,,,74.6841 +2016-07-09 12:16:37,3036.0,-10.8091, +2016-07-09 12:26:40,3037.0,-10.7776, +2016-07-09 12:30:00,,,74.6775 +2016-07-09 12:36:42,3037.0,-10.7776, +2016-07-09 12:45:00,,,74.6841 +2016-07-09 12:46:45,3038.0,-10.7776, +2016-07-09 12:56:48,3038.0,-10.7776, +2016-07-09 13:00:00,,,74.45100000000002 +2016-07-09 13:06:51,3039.0,-10.7463, +2016-07-09 13:15:00,,,75.3519 +2016-07-09 13:16:53,3039.0,-10.7463, +2016-07-09 13:26:56,3039.0,-10.7463, +2016-07-09 13:30:00,,,74.6841 +2016-07-09 13:36:59,3040.0,-10.715, +2016-07-09 13:45:00,,,74.4576 +2016-07-09 13:47:02,3040.0,-10.7463, +2016-07-09 13:57:04,3041.0,-10.7472, +2016-07-09 14:00:00,,,73.79899999999998 +2016-07-09 14:07:07,3043.0,-10.716, +2016-07-09 14:15:00,,,74.0151 +2016-07-09 14:17:10,3043.0,-10.716, +2016-07-09 14:27:13,3043.0,-10.716, +2016-07-09 14:30:00,,,73.3642 +2016-07-09 14:37:16,3043.0,-10.716, +2016-07-09 14:45:00,,,73.7925 +2016-07-09 14:47:18,3043.0,-10.716, +2016-07-09 14:57:21,3043.0,-10.7472, +2016-07-09 15:00:00,,,73.79899999999998 +2016-07-09 15:07:24,3043.0,-10.716, +2016-07-09 15:15:00,,,73.79899999999998 +2016-07-09 15:17:27,3044.0,-10.6848, +2016-07-09 15:27:30,3044.0,-10.716, +2016-07-09 15:30:00,,,73.3642 +2016-07-09 15:37:32,3044.0,-10.6848, +2016-07-09 15:45:00,,,73.79899999999998 +2016-07-09 15:47:35,3045.0,-10.6848, +2016-07-09 15:57:38,3045.0,-10.6848, +2016-07-09 16:00:00,,,74.0151 +2016-07-09 16:07:41,3046.0,-10.6848, +2016-07-09 16:15:00,,,73.79899999999998 +2016-07-09 16:17:43,3046.0,-10.716, +2016-07-09 16:27:46,3045.0,-10.716, +2016-07-09 16:30:00,,,73.3642 +2016-07-09 16:37:49,3045.0,-10.716, +2016-07-09 16:45:00,,,71.8844 +2016-07-09 16:47:52,3044.0,-10.716, +2016-07-09 16:57:54,3044.0,-10.716, +2016-07-09 17:00:00,,,72.5095 +2016-07-09 17:07:57,3044.0,-10.716, +2016-07-09 17:15:00,,,72.0895 +2016-07-09 17:18:00,3044.0,-10.716, +2016-07-09 17:28:03,3044.0,-10.716, +2016-07-09 17:30:00,,,72.2957 +2016-07-09 17:38:06,3044.0,-10.716, +2016-07-09 17:45:00,,,72.3021 +2016-07-09 17:48:08,3043.0,-10.716, +2016-07-09 17:58:11,3043.0,-10.716, +2016-07-09 18:00:00,,,72.0895 +2016-07-09 18:08:14,3043.0,-10.715, +2016-07-09 18:15:00,,,71.0693 +2016-07-09 18:18:17,3043.0,-10.715, +2016-07-09 18:28:19,3043.0,-10.7463, +2016-07-09 18:30:00,,,71.4714 +2016-07-09 18:38:22,3041.0,-10.7463, +2016-07-09 18:45:00,,,70.8637 +2016-07-09 18:48:25,3040.0,-10.7463, +2016-07-09 18:58:28,3039.0,-10.7463, +2016-07-09 19:00:00,,,70.2659 +2016-07-09 19:08:30,3038.0,-10.7463, +2016-07-09 19:15:00,,,69.4798 +2016-07-09 19:18:32,3037.0,-10.7776, +2016-07-09 19:28:35,3037.0,-10.7767, +2016-07-09 19:30:00,,,69.289 +2016-07-09 19:38:38,3036.0,-10.7767, +2016-07-09 19:45:00,,,68.8982 +2016-07-09 19:48:40,3035.0,-10.7767, +2016-07-09 19:58:43,3034.0,-10.8081, +2016-07-09 20:00:00,,,68.3318 +2016-07-09 20:08:46,3032.0,-10.8081, +2016-07-09 20:15:00,,,67.9511 +2016-07-09 20:18:48,3030.0,-10.8072, +2016-07-09 20:28:51,3029.0,-10.8072, +2016-07-09 20:30:00,,,67.7683 +2016-07-09 20:38:54,3029.0,-10.8072, +2016-07-09 20:45:00,,,67.5864 +2016-07-09 20:48:56,3027.0,-10.8072, +2016-07-09 20:58:59,3026.0,-10.8072, +2016-07-09 21:00:00,,,67.7683 +2016-07-09 21:09:02,3025.0,-10.8377, +2016-07-09 21:15:00,,,67.2194 +2016-07-09 21:19:04,3023.0,-10.8377, +2016-07-09 21:29:07,3023.0,-10.8377, +2016-07-09 21:30:00,,,67.0403 +2016-07-09 21:39:10,3022.0,-10.8377, +2016-07-09 21:45:00,,,66.8562 +2016-07-09 21:49:12,3022.0,-10.8377, +2016-07-09 21:59:15,3021.0,-10.8377, +2016-07-09 22:00:00,,,66.8622 +2016-07-09 22:09:18,3019.0,-10.8684, +2016-07-09 22:15:00,,,66.679 +2016-07-09 22:19:20,3018.0,-10.8693, +2016-07-09 22:29:23,3016.0,-10.8684, +2016-07-09 22:30:00,,,67.2194 +2016-07-09 22:39:26,3015.0,-10.8684, +2016-07-09 22:45:00,,,66.679 +2016-07-09 22:49:28,3015.0,-10.9, +2016-07-09 22:59:31,3014.0,-10.9, +2016-07-09 23:00:00,,,66.8562 +2016-07-09 23:09:34,3014.0,-10.9, +2016-07-09 23:15:00,,,66.4967 +2016-07-09 23:19:36,3014.0,-10.9, +2016-07-09 23:29:39,3012.0,-10.9, +2016-07-09 23:30:00,,,65.806 +2016-07-09 23:39:42,3012.0,-10.9, +2016-07-09 23:45:00,,,66.1584 +2016-07-09 23:49:44,3011.0,-10.9, +2016-07-09 23:59:47,3010.0,-10.9, +2016-07-10 00:00:00,,,65.9847 +2016-07-10 00:09:49,3010.0,-10.8991, +2016-07-10 00:15:00,,,65.6165 +2016-07-10 00:19:52,3009.0,-10.8991, +2016-07-10 00:29:55,3008.0,-10.8991, +2016-07-10 00:30:00,,,65.1 +2016-07-10 00:39:57,3008.0,-10.9308, +2016-07-10 00:45:00,,,64.7694 +2016-07-10 00:50:00,3008.0,-10.9308, +2016-07-10 01:00:00,,,65.2868 +2016-07-10 01:00:02,3007.0,-10.9299, +2016-07-10 01:10:05,3007.0,-10.9299, +2016-07-10 01:15:00,,,64.9314 +2016-07-10 01:20:08,3006.0,-10.9617, +2016-07-10 01:30:00,,,64.9429 +2016-07-10 01:30:10,3006.0,-10.9617, +2016-07-10 01:40:13,3005.0,-10.9617, +2016-07-10 01:45:00,,,65.2752 +2016-07-10 01:50:15,3005.0,-10.9617, +2016-07-10 02:00:00,,,65.2868 +2016-07-10 02:00:18,3004.0,-10.9617, +2016-07-10 02:10:21,3002.0,-10.9617, +2016-07-10 02:15:00,,,64.271 +2016-07-10 02:20:23,3002.0,-10.9617, +2016-07-10 02:30:00,,,65.634 +2016-07-10 02:30:26,3002.0,-10.9617, +2016-07-10 02:40:28,3001.0,-10.9617, +2016-07-10 02:45:00,,,65.1115 +2016-07-10 02:50:31,3001.0,-10.9617, +2016-07-10 03:00:00,,,64.7751 +2016-07-10 03:00:33,3001.0,-10.9617, +2016-07-10 03:10:36,3000.0,-10.9617, +2016-07-10 03:15:00,,,64.4363 +2016-07-10 03:20:39,3000.0,-10.9926, +2016-07-10 03:30:00,,,63.2785 +2016-07-10 03:30:41,2999.0,-10.9926, +2016-07-10 03:40:44,2999.0,-10.9926, +2016-07-10 03:45:00,,,63.937 +2016-07-10 03:50:46,2999.0,-10.9926, +2016-07-10 04:00:00,,,62.9539 +2016-07-10 04:00:49,2997.0,-11.0247, +2016-07-10 04:10:53,2997.0,-10.9926, +2016-07-10 04:15:00,,,63.2785 +2016-07-10 04:20:56,2997.0,-11.0247, +2016-07-10 04:30:00,,,63.6062 +2016-07-10 04:30:59,2997.0,-11.0247, +2016-07-10 04:41:01,2996.0,-11.0247, +2016-07-10 04:45:00,,,63.1186 +2016-07-10 04:51:04,2995.0,-11.0247, +2016-07-10 05:00:00,,,62.6379 +2016-07-10 05:01:07,2994.0,-11.0247, +2016-07-10 05:11:09,2994.0,-11.0247, +2016-07-10 05:15:00,,,62.9539 +2016-07-10 05:21:12,2994.0,-11.0247, +2016-07-10 05:30:00,,,62.0036 +2016-07-10 05:31:14,2993.0,-11.0247, +2016-07-10 05:41:17,2993.0,-11.0247, +2016-07-10 05:45:00,,,62.3138 +2016-07-10 05:51:20,2993.0,-11.0237, +2016-07-10 06:00:00,,,61.8496 +2016-07-10 06:01:22,2993.0,-11.0247, +2016-07-10 06:11:25,2993.0,-11.0247, +2016-07-10 06:15:00,,,62.1583 +2016-07-10 06:21:27,2993.0,-11.0247, +2016-07-10 06:30:00,,,61.8441 +2016-07-10 06:31:30,2993.0,-10.9926, +2016-07-10 06:41:32,2993.0,-10.9926, +2016-07-10 06:45:00,,,62.1583 +2016-07-10 06:51:35,2993.0,-10.9926, +2016-07-10 07:00:00,,,62.3138 +2016-07-10 07:01:38,2993.0,-10.9607, +2016-07-10 07:11:40,2993.0,-10.9607, +2016-07-10 07:15:00,,,61.8441 +2016-07-10 07:21:43,2994.0,-10.9617, +2016-07-10 07:30:00,,,62.0036 +2016-07-10 07:31:46,2994.0,-10.9299, +2016-07-10 07:41:48,2995.0,-10.9617, +2016-07-10 07:45:00,,,62.1583 +2016-07-10 07:51:51,2996.0,-10.9617, +2016-07-10 08:00:00,,,62.481 +2016-07-10 08:01:54,2998.0,-10.9299, +2016-07-10 08:11:56,2998.0,-10.9299, +2016-07-10 08:15:00,,,61.5328 +2016-07-10 08:21:59,3000.0,-10.9299, +2016-07-10 08:30:00,,,62.3138 +2016-07-10 08:32:02,3001.0,-10.9308, +2016-07-10 08:42:05,3002.0,-10.9308, +2016-07-10 08:45:00,,,61.8441 +2016-07-10 08:52:07,3004.0,-10.9, +2016-07-10 09:00:00,,,62.7955 +2016-07-10 09:02:10,3006.0,-10.9, +2016-07-10 09:12:13,3007.0,-10.9, +2016-07-10 09:15:00,,,62.9539 +2016-07-10 09:22:16,3008.0,-10.9, +2016-07-10 09:30:00,,,62.3193 +2016-07-10 09:32:18,3009.0,-10.9, +2016-07-10 09:42:21,3011.0,-10.8693, +2016-07-10 09:45:00,,,62.3138 +2016-07-10 09:52:24,3013.0,-10.8377, +2016-07-10 10:00:00,,,62.9707 +2016-07-10 10:02:27,3014.0,-10.8377, +2016-07-10 10:12:30,3015.0,-10.8081, +2016-07-10 10:15:00,,,62.3138 +2016-07-10 10:22:32,3016.0,-10.8081, +2016-07-10 10:30:00,,,62.9539 +2016-07-10 10:32:35,3019.0,-10.8081, +2016-07-10 10:42:38,3021.0,-10.7767, +2016-07-10 10:45:00,,,62.649 +2016-07-10 10:52:41,3023.0,-10.7767, +2016-07-10 11:00:00,,,62.4755 +2016-07-10 11:02:44,3024.0,-10.7463, +2016-07-10 11:12:47,3026.0,-10.7463, +2016-07-10 11:15:00,,,63.2785 +2016-07-10 11:22:50,3029.0,-10.7463, +2016-07-10 11:30:00,,,61.8496 +2016-07-10 11:32:53,3029.0,-10.7463, +2016-07-10 11:42:56,3030.0,-10.715, +2016-07-10 11:45:00,,,63.95399999999999 +2016-07-10 11:52:59,3032.0,-10.6848, +2016-07-10 12:00:00,,,63.1354 +2016-07-10 12:03:02,3034.0,-10.6848, +2016-07-10 12:13:05,3036.0,-10.6848, +2016-07-10 12:15:00,,,62.9707 +2016-07-10 12:23:08,3037.0,-10.6857, +2016-07-10 12:30:00,,,63.1354 +2016-07-10 12:33:11,3038.0,-10.6546, +2016-07-10 12:43:14,3039.0,-10.6848, +2016-07-10 12:45:00,,,62.8123 +2016-07-10 12:53:17,3042.0,-10.6546, +2016-07-10 13:00:00,,,62.9707 +2016-07-10 13:03:20,3043.0,-10.6546, +2016-07-10 13:13:23,3046.0,-10.6245, +2016-07-10 13:15:00,,,63.2954 +2016-07-10 13:23:26,3047.0,-10.6245, +2016-07-10 13:30:00,,,63.1186 +2016-07-10 13:33:29,3048.0,-10.6245, +2016-07-10 13:43:32,3047.0,-10.6245, +2016-07-10 13:45:00,,,62.0036 +2016-07-10 13:53:35,3048.0,-10.5935, +2016-07-10 14:00:00,,,63.1354 +2016-07-10 14:03:38,3048.0,-10.5935, +2016-07-10 14:13:41,3048.0,-10.5945, +2016-07-10 14:15:00,,,63.7853 +2016-07-10 14:23:44,3048.0,-10.5945, +2016-07-10 14:30:00,,,63.1354 +2016-07-10 14:33:48,3049.0,-10.5626, +2016-07-10 14:43:51,3050.0,-10.5636, +2016-07-10 14:45:00,,,63.456 +2016-07-10 14:53:54,3050.0,-10.5636, +2016-07-10 15:00:00,,,62.4921 +2016-07-10 15:03:57,3050.0,-10.5636, +2016-07-10 15:14:00,3050.0,-10.5636, +2016-07-10 15:15:00,,,63.6062 +2016-07-10 15:24:03,3050.0,-10.5636, +2016-07-10 15:30:00,,,62.8123 +2016-07-10 15:34:07,3051.0,-10.5636, +2016-07-10 15:44:10,3051.0,-10.5327, +2016-07-10 15:45:00,,,63.6231 +2016-07-10 15:54:13,3051.0,-10.5636, +2016-07-10 16:00:00,,,63.2954 +2016-07-10 16:04:16,3051.0,-10.5636, +2016-07-10 16:14:19,3051.0,-10.5636, +2016-07-10 16:15:00,,,62.8123 +2016-07-10 16:24:22,3052.0,-10.5327, +2016-07-10 16:30:00,,,62.8123 +2016-07-10 16:34:25,3051.0,-10.5327, +2016-07-10 16:44:29,3052.0,-10.5327, +2016-07-10 16:45:00,,,63.9483 +2016-07-10 16:54:32,3051.0,-10.5636, +2016-07-10 17:00:00,,,62.8123 +2016-07-10 17:04:35,3051.0,-10.5636, +2016-07-10 17:14:38,3051.0,-10.5636, +2016-07-10 17:15:00,,,62.3304 +2016-07-10 17:24:41,3051.0,-10.5636, +2016-07-10 17:30:00,,,61.8606 +2016-07-10 17:34:44,3050.0,-10.5636, +2016-07-10 17:44:47,3050.0,-10.5636, +2016-07-10 17:45:00,,,62.4866 +2016-07-10 17:54:51,3048.0,-10.5626, +2016-07-10 18:00:00,,,62.8123 +2016-07-10 18:04:54,3048.0,-10.5636, +2016-07-10 18:14:57,3047.0,-10.5626, +2016-07-10 18:15:00,,,62.4921 +2016-07-10 18:25:00,3045.0,-10.5626, +2016-07-10 18:30:00,,,62.3304 +2016-07-10 18:35:03,3044.0,-10.5626, +2016-07-10 18:45:00,,,62.8123 +2016-07-10 18:45:06,3043.0,-10.5626, +2016-07-10 18:55:09,3043.0,-10.5935, +2016-07-10 19:00:00,,,62.6546 +2016-07-10 19:05:12,3042.0,-10.5935, +2016-07-10 19:15:00,,,61.5492 +2016-07-10 19:15:15,3040.0,-10.5935, +2016-07-10 19:25:18,3039.0,-10.5926, +2016-07-10 19:30:00,,,61.7073 +2016-07-10 19:35:21,3037.0,-10.5926, +2016-07-10 19:45:00,,,61.09 +2016-07-10 19:45:25,3037.0,-10.6235, +2016-07-10 19:55:28,3036.0,-10.6235, +2016-07-10 20:00:00,,,61.09 +2016-07-10 20:05:31,3035.0,-10.6226, +2016-07-10 20:15:00,,,61.09 +2016-07-10 20:15:34,3033.0,-10.6226, +2016-07-10 20:25:37,3031.0,-10.6226, +2016-07-10 20:30:00,,,61.1063 +2016-07-10 20:35:40,3030.0,-10.6226, +2016-07-10 20:45:00,,,60.951 +2016-07-10 20:45:43,3029.0,-10.6226, +2016-07-10 20:55:46,3029.0,-10.6536, +2016-07-10 21:00:00,,,60.7856 +2016-07-10 21:05:49,3026.0,-10.6536, +2016-07-10 21:15:00,,,61.1063 +2016-07-10 21:15:51,3030.0,-10.6226, +2016-07-10 21:25:54,3029.0,-10.6536, +2016-07-10 21:30:00,,,60.8018 +2016-07-10 21:35:57,3028.0,-10.6838, +2016-07-10 21:45:00,,,59.9042 +2016-07-10 21:46:00,3025.0,-10.6838, +2016-07-10 21:56:03,3024.0,-10.6838, +2016-07-10 22:00:00,,,60.2007 +2016-07-10 22:06:06,3023.0,-10.6838, +2016-07-10 22:15:00,,,59.9095 +2016-07-10 22:16:09,3022.0,-10.6838, +2016-07-10 22:26:11,3022.0,-10.6838, +2016-07-10 22:30:00,,,59.7596 +2016-07-10 22:36:14,3021.0,-10.6838, +2016-07-10 22:45:00,,,59.7596 +2016-07-10 22:46:16,3020.0,-10.715, +2016-07-10 22:56:19,3018.0,-10.7141, +2016-07-10 23:00:00,,,59.7596 +2016-07-10 23:06:22,3017.0,-10.7141, +2016-07-10 23:15:00,,,59.4669 +2016-07-10 23:16:25,3015.0,-10.7141, +2016-07-10 23:26:27,3015.0,-10.7141, +2016-07-10 23:30:00,,,59.4669 +2016-07-10 23:36:30,3014.0,-10.7141, +2016-07-10 23:45:00,,,60.3473 +2016-07-10 23:46:33,3014.0,-10.7141, +2016-07-10 23:56:36,3013.0,-10.7453, +2016-07-11 00:00:00,,,59.7596 +2016-07-11 00:06:39,3012.0,-10.7444, +2016-07-11 00:15:00,,,60.2007 +2016-07-11 00:16:41,3011.0,-10.7453, +2016-07-11 00:26:44,3010.0,-10.7453, +2016-07-11 00:30:00,,,59.7596 +2016-07-11 00:36:47,3009.0,-10.7444, +2016-07-11 00:45:00,,,59.182 +2016-07-11 00:46:50,3009.0,-10.7757, +2016-07-11 00:56:53,3008.0,-10.7444, +2016-07-11 01:00:00,,,59.4669 +2016-07-11 01:06:56,3008.0,-10.7444, +2016-07-11 01:15:00,,,59.182 +2016-07-11 01:16:58,3007.0,-10.7757, +2016-07-11 01:27:01,3007.0,-10.7748, +2016-07-11 01:30:00,,,59.0352 +2016-07-11 01:37:04,3007.0,-10.7757, +2016-07-11 01:45:00,,,59.9042 +2016-07-11 01:47:07,3006.0,-10.7748, +2016-07-11 01:57:09,3006.0,-10.7757, +2016-07-11 02:00:00,,,60.2007 +2016-07-11 02:07:12,3005.0,-10.7748, +2016-07-11 02:15:00,,,59.7596 +2016-07-11 02:17:15,3004.0,-10.8062, +2016-07-11 02:27:17,3002.0,-10.8062, +2016-07-11 02:30:00,,,59.6155 +2016-07-11 02:37:20,3000.0,-10.8062, +2016-07-11 02:45:00,,,59.6155 +2016-07-11 02:47:23,3000.0,-10.8062, +2016-07-11 02:57:26,3000.0,-10.8062, +2016-07-11 03:00:00,,,59.6155 +2016-07-11 03:07:29,2999.0,-10.8062, +2016-07-11 03:15:00,,,59.6155 +2016-07-11 03:17:31,2998.0,-10.8053, +2016-07-11 03:27:34,2997.0,-10.8053, +2016-07-11 03:30:00,,,59.4669 +2016-07-11 03:37:37,2996.0,-10.8368, +2016-07-11 03:45:00,,,59.6155 +2016-07-11 03:47:40,2996.0,-10.8368, +2016-07-11 03:57:42,2995.0,-10.8368, +2016-07-11 04:00:00,,,59.7596 +2016-07-11 04:07:45,2994.0,-10.8368, +2016-07-11 04:15:00,,,59.7596 +2016-07-11 04:17:47,2994.0,-10.8368, +2016-07-11 04:27:50,2994.0,-10.8368, +2016-07-11 04:30:00,,,59.4669 +2016-07-11 04:37:53,2993.0,-10.8368, +2016-07-11 04:45:00,,,59.0352 +2016-07-11 04:47:55,2993.0,-10.8368, +2016-07-11 04:57:58,2992.0,-10.8684, +2016-07-11 05:00:00,,,59.182 +2016-07-11 05:08:01,2992.0,-10.8368, +2016-07-11 05:15:00,,,59.3241 +2016-07-11 05:18:03,2992.0,-10.8368, +2016-07-11 05:28:06,2992.0,-10.8368, +2016-07-11 05:30:00,,,59.9202 +2016-07-11 05:38:09,2992.0,-10.8684, +2016-07-11 05:45:00,,,59.3347 +2016-07-11 05:48:11,2991.0,-10.8368, +2016-07-11 05:58:14,2991.0,-10.8368, +2016-07-11 06:00:00,,,59.7755 +2016-07-11 06:08:17,2989.0,-10.8684, +2016-07-11 06:15:00,,,59.1925 +2016-07-11 06:18:19,2989.0,-10.8684, +2016-07-11 06:28:29,2988.0,-10.8684, +2016-07-11 06:30:00,,,59.1925 +2016-07-11 06:38:32,2988.0,-10.8684, +2016-07-11 06:45:00,,,59.0457 +2016-07-11 06:48:34,2987.0,-10.8684, +2016-07-11 06:58:37,2987.0,-10.8368, +2016-07-11 07:00:00,,,58.6247 +2016-07-11 07:08:39,2987.0,-10.8368, +2016-07-11 07:15:00,,,59.6314 +2016-07-11 07:18:42,2988.0,-10.8368, +2016-07-11 07:28:46,2988.0,-10.8368, +2016-07-11 07:30:00,,,59.7755 +2016-07-11 07:38:50,2988.0,-10.8368, +2016-07-11 07:45:00,,,59.9202 +2016-07-11 07:48:52,2988.0,-10.8368, +2016-07-11 07:58:55,2988.0,-10.8368, +2016-07-11 08:00:00,,,60.2168 +2016-07-11 08:08:58,2988.0,-10.8368, +2016-07-11 08:15:00,,,60.3634 +2016-07-11 08:19:01,2989.0,-10.8368, +2016-07-11 08:29:03,2988.0,-10.8368, +2016-07-11 08:30:00,,,59.7755 +2016-07-11 08:39:06,2990.0,-10.8368, +2016-07-11 08:45:00,,,59.7755 +2016-07-11 08:49:09,2989.0,-10.8368, +2016-07-11 08:59:11,2990.0,-10.8368, +2016-07-11 09:00:00,,,59.9202 +2016-07-11 09:09:14,2990.0,-10.8053, +2016-07-11 09:15:00,,,59.6261 +2016-07-11 09:19:17,2991.0,-10.8053, +2016-07-11 09:29:20,2992.0,-10.8062, +2016-07-11 09:30:00,,,59.9202 +2016-07-11 09:39:22,2992.0,-10.8053, +2016-07-11 09:45:00,,,59.4933 +2016-07-11 09:49:25,2992.0,-10.8062, +2016-07-11 09:59:28,2993.0,-10.8062, +2016-07-11 10:00:00,,,59.7861 +2016-07-11 10:09:30,2993.0,-10.7748, +2016-07-11 10:15:00,,,60.3795 +2016-07-11 10:19:33,2994.0,-10.7748, +2016-07-11 10:29:36,2994.0,-10.7748, +2016-07-11 10:30:00,,,60.6801 +2016-07-11 10:39:39,2995.0,-10.7444, +2016-07-11 10:45:00,,,60.2328 +2016-07-11 10:49:42,2996.0,-10.7444, +2016-07-11 10:59:44,2997.0,-10.7444, +2016-07-11 11:00:00,,,60.2328 +2016-07-11 11:09:47,2998.0,-10.7453, +2016-07-11 11:15:00,,,60.5322 +2016-07-11 11:19:49,3000.0,-10.7453, +2016-07-11 11:30:00,3001.0,-10.7453,60.8288 +2016-07-11 11:40:03,3001.0,-10.7453, +2016-07-11 11:45:00,,,60.6748 +2016-07-11 11:50:06,3002.0,-10.7141, +2016-07-11 12:00:00,,,61.2896 +2016-07-11 12:00:09,3002.0,-10.7453, +2016-07-11 12:10:12,3002.0,-10.7453, +2016-07-11 12:15:00,,,60.5268 +2016-07-11 12:20:15,3004.0,-10.7453, +2016-07-11 12:30:00,,,61.1389 +2016-07-11 12:30:17,3005.0,-10.7141, +2016-07-11 12:40:20,3005.0,-10.7141, +2016-07-11 12:45:00,,,60.8288 +2016-07-11 12:50:23,3005.0,-10.7141, +2016-07-11 13:00:00,,,60.5322 +2016-07-11 13:00:26,3005.0,-10.7141, +2016-07-11 13:10:29,3005.0,-10.7141, +2016-07-11 13:15:00,,,60.5268 +2016-07-11 13:20:32,3006.0,-10.7141, +2016-07-11 13:30:00,,,60.6963 +2016-07-11 13:30:35,3005.0,-10.7453, +2016-07-11 13:40:38,3005.0,-10.7453, +2016-07-11 13:45:00,,,60.3956 +2016-07-11 13:50:41,3005.0,-10.7453, +2016-07-11 14:00:00,,,60.2328 +2016-07-11 14:00:44,3003.0,-10.7141, +2016-07-11 14:10:47,3003.0,-10.7141, +2016-07-11 14:15:00,,,60.3795 +2016-07-11 14:20:50,3002.0,-10.7141, +2016-07-11 14:30:00,,,60.8288 +2016-07-11 14:30:53,3002.0,-10.7141, +2016-07-11 14:40:56,3002.0,-10.7141, +2016-07-11 14:45:00,,,60.5429 +2016-07-11 14:50:59,3002.0,-10.7141, +2016-07-11 15:00:00,,,60.3956 +2016-07-11 15:01:02,3002.0,-10.7453, +2016-07-11 15:11:05,3002.0,-10.7141, +2016-07-11 15:15:00,,,60.9943 +2016-07-11 15:21:08,3001.0,-10.7453, +2016-07-11 15:30:00,,,60.8288 +2016-07-11 15:31:11,3001.0,-10.7453, +2016-07-11 15:41:14,3001.0,-10.7141, +2016-07-11 15:45:00,,,60.9997 +2016-07-11 15:51:17,3000.0,-10.7141, +2016-07-11 16:00:00,,,60.0975 +2016-07-11 16:01:20,2998.0,-10.7444, +2016-07-11 16:11:23,2998.0,-10.7444, +2016-07-11 16:15:00,,,60.2435 +2016-07-11 16:21:26,2997.0,-10.7444, +2016-07-11 16:30:00,,,59.2188 +2016-07-11 16:31:29,2996.0,-10.7444, +2016-07-11 16:41:31,2996.0,-10.7444, +2016-07-11 16:45:00,,,59.6526 +2016-07-11 16:51:34,2996.0,-10.7444, +2016-07-11 17:00:00,,,59.9521 +2016-07-11 17:01:37,2996.0,-10.7131, +2016-07-11 17:11:40,2996.0,-10.7444, +2016-07-11 17:15:00,,,59.9468 +2016-07-11 17:21:42,2996.0,-10.7434, +2016-07-11 17:30:00,,,60.2489 +2016-07-11 17:31:46,2995.0,-10.7434, +2016-07-11 17:41:49,2994.0,-10.7434, +2016-07-11 17:45:00,,,60.0975 +2016-07-11 17:51:52,2994.0,-10.7748, +2016-07-11 18:00:00,,,60.0975 +2016-07-11 18:01:55,2993.0,-10.7748, +2016-07-11 18:11:58,2992.0,-10.8062, +2016-07-11 18:15:00,,,59.6579 +2016-07-11 18:22:01,2992.0,-10.8062, +2016-07-11 18:30:00,,,60.5429 +2016-07-11 18:32:04,2991.0,-10.8062, +2016-07-11 18:42:07,2990.0,-10.8062, +2016-07-11 18:45:00,,,60.2435 +2016-07-11 18:52:10,2988.0,-10.8053, +2016-07-11 19:00:00,,,59.802 +2016-07-11 19:02:13,2987.0,-10.8053, +2016-07-11 19:12:15,2986.0,-10.8053, +2016-07-11 19:15:00,,,59.802 +2016-07-11 19:22:18,2985.0,-10.8368, +2016-07-11 19:30:00,,,59.6579 +2016-07-11 19:32:21,2983.0,-10.8368, +2016-07-11 19:42:24,2982.0,-10.8358, +2016-07-11 19:45:00,,,59.9468 +2016-07-11 19:52:27,2980.0,-10.8358, +2016-07-11 20:00:00,,,59.0772 +2016-07-11 20:02:30,2980.0,-10.8674, +2016-07-11 20:12:33,2979.0,-10.8664, +2016-07-11 20:15:00,,,58.9361 +2016-07-11 20:22:35,2978.0,-10.8664, +2016-07-11 20:30:00,,,58.5063 +2016-07-11 20:32:38,2975.0,-10.8981, +2016-07-11 20:42:41,2974.0,-10.8981, +2016-07-11 20:45:00,,,59.2188 +2016-07-11 20:52:44,2973.0,-10.8981, +2016-07-11 21:00:00,,,58.2297 +2016-07-11 21:02:46,2971.0,-10.9289, +2016-07-11 21:12:49,2969.0,-10.9289, +2016-07-11 21:15:00,,,57.2642 +2016-07-11 21:22:52,2967.0,-10.9289, +2016-07-11 21:30:00,,,58.0871 +2016-07-11 21:32:54,2967.0,-10.9289, +2016-07-11 21:42:57,2965.0,-10.9289, +2016-07-11 21:45:00,,,57.5328 +2016-07-11 21:53:00,2963.0,-10.9598, +2016-07-11 22:00:00,,,57.6679 +2016-07-11 22:03:03,2963.0,-10.9598, +2016-07-11 22:13:05,2960.0,-10.9598, +2016-07-11 22:15:00,,,57.5328 +2016-07-11 22:23:08,2958.0,-10.9598, +2016-07-11 22:30:00,,,57.5328 +2016-07-11 22:33:11,2958.0,-10.9598, +2016-07-11 22:43:14,2956.0,-10.9598, +2016-07-11 22:45:00,,,57.5328 +2016-07-11 22:53:16,2954.0,-11.0227, +2016-07-11 23:00:00,,,57.2591 +2016-07-11 23:03:19,2953.0,-10.9907, +2016-07-11 23:13:22,2952.0,-11.0217, +2016-07-11 23:15:00,,,56.3263 +2016-07-11 23:23:25,2951.0,-11.0217, +2016-07-11 23:30:00,,,55.6681 +2016-07-11 23:33:27,2949.0,-11.0217, +2016-07-11 23:43:30,2949.0,-11.0217, +2016-07-11 23:45:00,,,56.1916 +2016-07-11 23:53:33,2947.0,-11.0538, +2016-07-12 00:00:00,,,55.8007 +2016-07-12 00:15:00,,, +2016-07-12 00:30:00,,, +2016-07-12 00:45:00,,, +2016-07-12 01:00:00,,,56.1916 +2016-07-12 01:03:51,2941.0,-11.0528, +2016-07-12 01:13:53,2941.0,-11.0528, +2016-07-12 01:15:00,,,56.3212 +2016-07-12 01:23:56,2940.0,-11.085, +2016-07-12 01:30:00,,,55.541 +2016-07-12 01:33:58,2939.0,-11.085, +2016-07-12 01:44:00,2938.0,-11.0538, +2016-07-12 01:45:00,,,30.457 +2016-07-12 01:54:03,2938.0,-11.085, +2016-07-12 02:00:00,,,55.541 +2016-07-12 02:04:06,2937.0,-11.085, +2016-07-12 02:14:08,2936.0,-11.084, +2016-07-12 02:15:00,,,55.4095 +2016-07-12 02:24:11,2936.0,-11.0538, +2016-07-12 02:30:00,,,55.4095 +2016-07-12 02:34:13,2935.0,-11.1163, +2016-07-12 02:44:16,2934.0,-11.0538, +2016-07-12 02:45:00,,,30.5659 +2016-07-12 02:54:18,2934.0,-11.1163, +2016-07-12 03:00:00,,,55.4095 +2016-07-12 03:04:21,2934.0,-11.1163, +2016-07-12 03:14:24,2933.0,-11.0528, +2016-07-12 03:15:00,,,30.2918 +2016-07-12 03:24:26,2932.0,-11.085, +2016-07-12 03:30:00,,,30.3485 +2016-07-12 03:34:29,2932.0,-11.085, +2016-07-12 03:44:31,2931.0,-11.085, +2016-07-12 03:45:00,,,30.6915 +2016-07-12 03:54:34,2931.0,-11.085, +2016-07-12 04:00:00,,,27.5407 +2016-07-12 04:04:37,2931.0,-11.085, +2016-07-12 04:14:39,2930.0,-11.085, +2016-07-12 04:15:00,,,30.6915 +2016-07-12 04:24:42,2930.0,-11.1173, +2016-07-12 04:30:00,,,30.6942 +2016-07-12 04:34:44,2928.0,-11.1163, +2016-07-12 04:44:47,2927.0,-11.1173, +2016-07-12 04:45:00,,,28.2565 +2016-07-12 04:54:49,2927.0,-11.1163, +2016-07-12 05:00:00,,,30.6942 +2016-07-12 05:04:52,2926.0,-11.1487, +2016-07-12 05:14:54,2926.0,-11.1487, +2016-07-12 05:15:00,,,30.697 +2016-07-12 05:24:57,2925.0,-11.1163, +2016-07-12 05:30:00,,,30.7518 +2016-07-12 05:34:59,2924.0,-11.1487, +2016-07-12 05:45:00,,,30.6942 +2016-07-12 05:45:02,2924.0,-11.1487, +2016-07-12 05:55:04,2924.0,-11.1487, +2016-07-12 06:00:00,,,30.6997 +2016-07-12 06:05:07,2924.0,-11.1487, +2016-07-12 06:15:00,,,30.7546 +2016-07-12 06:15:09,2923.0,-11.1487, +2016-07-12 06:25:12,2923.0,-11.1487, +2016-07-12 06:30:00,,,30.7546 +2016-07-12 06:35:14,2922.0,-11.1487, +2016-07-12 06:45:00,,,30.8095 +2016-07-12 06:45:17,2922.0,-11.1487, +2016-07-12 06:55:19,2921.0,-11.1487, +2016-07-12 07:00:00,,,29.8603 +2016-07-12 07:05:22,2921.0,-11.1487, +2016-07-12 07:15:00,,,30.2485 +2016-07-12 07:15:24,2921.0,-11.1487, +2016-07-12 07:25:27,2920.0,-11.1487, +2016-07-12 07:30:00,,,30.3566 +2016-07-12 07:35:29,2919.0,-11.1487, +2016-07-12 07:45:00,,,30.3025 +2016-07-12 07:45:32,2919.0,-11.1163, +2016-07-12 07:55:34,2919.0,-11.1163, +2016-07-12 08:00:00,,,30.5821 +2016-07-12 08:05:37,2920.0,-11.084, +2016-07-12 08:15:00,,,30.5767 +2016-07-12 08:15:39,2920.0,-11.1163, +2016-07-12 08:25:42,2920.0,-11.1467, +2016-07-12 08:30:00,,,55.4243 +2016-07-12 08:35:44,2921.0,-11.1477, +2016-07-12 08:45:00,,,55.6879 +2016-07-12 08:45:47,2923.0,-11.1477, +2016-07-12 08:55:50,2923.0,-11.1163, +2016-07-12 09:00:00,,,56.4715 +2016-07-12 09:05:52,2924.0,-11.1163, +2016-07-12 09:15:00,,,55.6879 +2016-07-12 09:16:02,2924.0,-11.1487, +2016-07-12 09:26:05,2926.0,-11.1163, +2016-07-12 09:30:00,,,55.8007 +2016-07-12 09:36:07,2927.0,-11.084, +2016-07-12 09:45:00,,,56.4565 +2016-07-12 09:46:10,2928.0,-11.085, +2016-07-12 09:56:13,2930.0,-11.0538, +2016-07-12 10:00:00,,,29.9056 +2016-07-12 10:06:15,2931.0,-11.085, +2016-07-12 10:15:00,,,55.8155 +2016-07-12 10:16:18,2931.0,-11.0528, +2016-07-12 10:26:21,2934.0,-11.085, +2016-07-12 10:30:00,,,55.8155 +2016-07-12 10:36:23,2936.0,-11.085, +2016-07-12 10:45:00,,,55.9437 +2016-07-12 10:46:27,2937.0,-11.085, +2016-07-12 10:56:31,2937.0,-11.085, +2016-07-12 11:00:00,,,55.9437 +2016-07-12 11:06:34,2938.0,-11.085, +2016-07-12 11:15:00,,,56.2065 +2016-07-12 11:16:36,2939.0,-11.0528, +2016-07-12 11:26:39,2939.0,-11.0538, +2016-07-12 11:30:00,,,56.3363 +2016-07-12 11:36:42,2940.0,-11.0538, +2016-07-12 11:45:00,,,56.8705 +2016-07-12 11:46:44,2941.0,-11.0538, +2016-07-12 11:56:47,2941.0,-11.0538, +2016-07-12 12:00:00,,,56.2065 +2016-07-12 12:06:50,2941.0,-11.0217, +2016-07-12 12:15:00,,,57.2744 +2016-07-12 12:16:52,2943.0,-11.0217, +2016-07-12 12:26:55,2943.0,-11.0217, +2016-07-12 12:30:00,,,56.7336 +2016-07-12 12:36:58,2944.0,-11.0217, +2016-07-12 12:45:00,,,56.8705 +2016-07-12 12:47:01,2945.0,-10.9907, +2016-07-12 12:57:03,2945.0,-11.0217, +2016-07-12 13:00:00,,,56.0774 +2016-07-12 13:07:06,2945.0,-11.0227, +2016-07-12 13:15:00,,,57.0079 +2016-07-12 13:17:09,2946.0,-10.9907, +2016-07-12 13:27:12,2946.0,-10.9907, +2016-07-12 13:30:00,,,56.4665 +2016-07-12 13:37:15,2946.0,-10.9907, +2016-07-12 13:45:00,,,56.6023 +2016-07-12 13:47:18,2946.0,-10.9897, +2016-07-12 13:57:20,2946.0,-10.9907, +2016-07-12 14:00:00,,,56.0724 +2016-07-12 14:07:23,2946.0,-10.9598, +2016-07-12 14:15:00,,,56.3363 +2016-07-12 14:17:26,2946.0,-10.9588, +2016-07-12 14:27:29,2947.0,-10.9598, +2016-07-12 14:30:00,,,56.4715 +2016-07-12 14:37:32,2948.0,-10.9588, +2016-07-12 14:45:00,,,56.2065 +2016-07-12 14:47:35,2949.0,-10.9588, +2016-07-12 14:57:37,2949.0,-10.9598, +2016-07-12 15:00:00,,,57.0029 +2016-07-12 15:07:40,2949.0,-10.9598, +2016-07-12 15:15:00,,,56.8654 +2016-07-12 15:17:43,2949.0,-10.9598, +2016-07-12 15:27:46,2949.0,-10.9598, +2016-07-12 15:30:00,,,56.0774 +2016-07-12 15:37:49,2949.0,-10.9598, +2016-07-12 15:45:00,,,55.6879 +2016-07-12 15:47:52,2949.0,-10.9588, +2016-07-12 15:57:55,2948.0,-10.9588, +2016-07-12 16:00:00,,,55.8155 +2016-07-12 16:07:58,2947.0,-10.9588, +2016-07-12 16:15:00,,,55.8007 +2016-07-12 16:18:01,2947.0,-10.9588, +2016-07-12 16:28:04,2946.0,-10.9907, +2016-07-12 16:30:00,,,55.1676 +2016-07-12 16:38:06,2946.0,-10.9279, +2016-07-12 16:45:00,,,55.2982 +2016-07-12 16:48:09,2945.0,-10.9588, +2016-07-12 16:58:12,2945.0,-10.9279, +2016-07-12 17:00:00,,,27.4845 +2016-07-12 17:08:15,2944.0,-10.9279, +2016-07-12 17:15:00,,,27.6362 +2016-07-12 17:18:18,2943.0,-10.9279, +2016-07-12 17:28:21,2942.0,-10.9897, +2016-07-12 17:30:00,,,55.4243 +2016-07-12 17:38:24,2941.0,-11.0217, +2016-07-12 17:45:00,,,29.4696 +2016-07-12 17:48:27,2940.0,-10.9598, +2016-07-12 17:58:30,2939.0,-10.9598, +2016-07-12 18:00:00,,,28.1488 +2016-07-12 18:08:33,2938.0,-10.9588, +2016-07-12 18:15:00,,,55.683 +2016-07-12 18:18:36,2937.0,-11.0217, +2016-07-12 18:28:38,2935.0,-11.0528, +2016-07-12 18:30:00,,,55.4243 +2016-07-12 18:38:41,2934.0,-11.0528, +2016-07-12 18:45:00,,,55.683 +2016-07-12 18:48:44,2932.0,-11.0528, +2016-07-12 18:58:47,2931.0,-11.0528, +2016-07-12 19:00:00,,,55.5509 +2016-07-12 19:08:50,2929.0,-11.0217, +2016-07-12 19:15:00,,,55.683 +2016-07-12 19:18:53,2927.0,-11.0519, +2016-07-12 19:28:56,2926.0,-11.0519, +2016-07-12 19:30:00,,,55.9437 +2016-07-12 19:38:58,2924.0,-11.084, +2016-07-12 19:45:00,,,55.4243 +2016-07-12 19:49:01,2923.0,-11.084, +2016-07-12 19:59:03,2921.0,-11.084, +2016-07-12 20:00:00,,,55.683 +2016-07-12 20:09:06,2920.0,-11.084, +2016-07-12 20:15:00,,,56.6023 +2016-07-12 20:19:09,2918.0,-11.084, +2016-07-12 20:29:11,2918.0,-11.0831, +2016-07-12 20:30:00,,,56.7336 +2016-07-12 20:39:14,2915.0,-11.1153, +2016-07-12 20:45:00,,,56.0774 +2016-07-12 20:49:17,2913.0,-11.1143, +2016-07-12 20:59:19,2912.0,-11.1467, +2016-07-12 21:00:00,,,56.2065 +2016-07-12 21:09:22,2911.0,-11.1467, +2016-07-12 21:15:00,,,56.2065 +2016-07-12 21:19:25,2910.0,-11.1467, +2016-07-12 21:29:27,2908.0,-11.1467, +2016-07-12 21:30:00,,,56.3363 +2016-07-12 21:39:30,2907.0,-11.1467, +2016-07-12 21:45:00,,,56.8654 +2016-07-12 21:49:33,2905.0,-11.1457, +2016-07-12 21:59:35,2904.0,-11.1782, +2016-07-12 22:00:00,,,57.1409 +2016-07-12 22:09:38,2903.0,-11.1782, +2016-07-12 22:15:00,,,55.6879 +2016-07-12 22:19:41,2901.0,-11.2107, +2016-07-12 22:29:43,2898.0,-11.2097, +2016-07-12 22:30:00,,,55.4243 +2016-07-12 22:39:46,2898.0,-11.1782, +2016-07-12 22:45:00,,,30.5767 +2016-07-12 22:49:48,2897.0,-11.1782, +2016-07-12 22:59:51,2896.0,-11.1782, +2016-07-12 23:00:00,,,30.023000000000003 +2016-07-12 23:09:54,2894.0,-11.2107, +2016-07-12 23:15:00,,,30.7546 +2016-07-12 23:19:56,2892.0,-11.2107, +2016-07-12 23:29:59,2890.0,-11.2097, +2016-07-12 23:30:00,,,30.7546 +2016-07-12 23:40:01,2890.0,-11.2097, +2016-07-12 23:45:00,,,30.5849 +2016-07-12 23:50:04,2888.0,-11.2423, +2016-07-13 00:00:00,,,30.2512 +2016-07-13 00:00:07,2886.0,-11.2097, +2016-07-13 00:10:09,2883.0,-11.2423, +2016-07-13 00:15:00,,,30.7546 +2016-07-13 00:20:12,2883.0,-11.2751, +2016-07-13 00:30:00,,,30.7024 +2016-07-13 00:30:15,2882.0,-11.2741, +2016-07-13 00:40:17,2881.0,-11.3378, +2016-07-13 00:45:00,,,55.8155 +2016-07-13 00:50:20,2880.0,-11.3059, +2016-07-13 01:00:00,,,30.593000000000004 +2016-07-13 01:00:22,2877.0,-11.3059, +2016-07-13 01:10:25,2875.0,-11.3378, +2016-07-13 01:15:00,,,-4.1119 +2016-07-13 01:20:27,2874.0,-11.3388, +2016-07-13 01:30:00,,,-4.5589 +2016-07-13 01:30:30,2873.0,-11.3708, +2016-07-13 01:40:32,2870.0,-11.3708, +2016-07-13 01:45:00,,,-4.6664 +2016-07-13 01:50:35,2869.0,-11.3708, +2016-07-13 02:00:00,,,2.2482 +2016-07-13 02:00:37,2869.0,-11.3698, +2016-07-13 02:10:40,2868.0,-11.3708, +2016-07-13 02:15:00,,,-4.1484 +2016-07-13 02:20:43,2866.0,-11.4029, +2016-07-13 02:30:00,,,-4.3851 +2016-07-13 02:30:45,2866.0,-11.3708, +2016-07-13 02:40:47,2864.0,-11.4039, +2016-07-13 02:45:00,,,-4.6442 +2016-07-13 02:50:50,2863.0,-11.4029, +2016-07-13 03:00:00,,,-4.6883 +2016-07-13 03:00:52,2862.0,-11.4029, +2016-07-13 03:10:55,2862.0,-11.4351, +2016-07-13 03:15:00,,,6.9868 +2016-07-13 03:20:57,2861.0,-11.4019, +2016-07-13 03:30:00,,,-4.3210000000000015 +2016-07-13 03:31:00,2860.0,-11.4351, +2016-07-13 03:41:02,2859.0,-11.4351, +2016-07-13 03:45:00,,,-4.6219 +2016-07-13 03:51:05,2857.0,-11.4351, +2016-07-13 04:00:00,,,-4.7955 +2016-07-13 04:01:07,2857.0,-11.4351, +2016-07-13 04:11:10,2855.0,-11.4341, +2016-07-13 04:15:00,,,1.6703 +2016-07-13 04:21:13,2854.0,-11.4341, +2016-07-13 04:30:00,,,-4.7085 +2016-07-13 04:31:15,2854.0,-11.4351, +2016-07-13 04:41:18,2854.0,-11.4341, +2016-07-13 04:45:00,,,-4.774 +2016-07-13 04:51:20,2854.0,-11.4674, +2016-07-13 05:00:00,,,-4.7951 +2016-07-13 05:01:22,2853.0,-11.4674, +2016-07-13 05:11:24,2852.0,-11.4674, +2016-07-13 05:15:00,,,-4.7946 +2016-07-13 05:21:27,2851.0,-11.4674, +2016-07-13 05:30:00,,,-4.7942 +2016-07-13 05:31:29,2850.0,-11.4674, +2016-07-13 05:41:32,2849.0,-11.4674, +2016-07-13 05:45:00,,,-4.7942 +2016-07-13 05:51:34,2848.0,-11.4674, +2016-07-13 06:00:00,,,-4.8157 +2016-07-13 06:01:36,2847.0,-11.4674, +2016-07-13 06:11:39,2847.0,-11.4674, +2016-07-13 06:15:00,,,-4.7942 +2016-07-13 06:21:41,2847.0,-11.4674, +2016-07-13 06:30:00,,,-4.7715 +2016-07-13 06:31:44,2847.0,-11.4674, +2016-07-13 06:41:46,2847.0,-11.4341, +2016-07-13 06:45:00,,,-4.7719 +2016-07-13 06:51:49,2847.0,-11.4341, +2016-07-13 07:00:00,,,-4.7282 +2016-07-13 07:01:51,2847.0,-11.4341, +2016-07-13 07:11:54,2847.0,-11.4341, +2016-07-13 07:15:00,,,-4.7496 +2016-07-13 07:21:56,2847.0,-11.4351, +2016-07-13 07:30:00,,,-4.7278 +2016-07-13 07:31:59,2847.0,-11.4341, +2016-07-13 07:42:02,2847.0,-11.4351, +2016-07-13 07:45:00,,,-4.7711 +2016-07-13 07:52:04,2847.0,-11.4341, +2016-07-13 08:00:00,,,-4.7925 +2016-07-13 08:02:07,2847.0,-11.4341, +2016-07-13 08:12:09,2848.0,-11.4351, +2016-07-13 08:15:00,,,-4.8144 +2016-07-13 08:22:12,2849.0,-11.4341, +2016-07-13 08:30:00,,,-5.0278 +2016-07-13 08:32:14,2850.0,-11.5008, +2016-07-13 08:42:17,2850.0,-11.5333, +2016-07-13 08:45:00,,,-4.9638 +2016-07-13 08:52:20,2848.0,-11.5333, +2016-07-13 09:00:00,,,-4.9638 +2016-07-13 09:02:22,2847.0,-11.5333, +2016-07-13 09:12:25,2847.0,-11.5333, +2016-07-13 09:15:00,,,-4.814 +2016-07-13 09:22:27,2845.0,-11.5333, +2016-07-13 09:30:00,,,-4.7715 +2016-07-13 09:32:30,2843.0,-11.5333, +2016-07-13 09:42:32,2842.0,-11.4998, +2016-07-13 09:45:00,,,-4.9414 +2016-07-13 09:52:35,2840.0,-11.5008, +2016-07-13 10:00:00,,,-4.7265 +2016-07-13 10:02:37,2840.0,-11.5333, +2016-07-13 10:12:40,2840.0,-11.4998, +2016-07-13 10:15:00,,,-4.7047 +2016-07-13 10:22:42,2839.0,-11.4674, +2016-07-13 10:30:00,,,-4.7047 +2016-07-13 10:32:44,2839.0,-11.4998, +2016-07-13 10:42:47,2839.0,-11.5008, +2016-07-13 10:45:00,,,-4.6829 +2016-07-13 10:52:49,2839.0,-11.5008, +2016-07-13 11:00:00,,,-4.6401 +2016-07-13 11:02:52,2846.0,-11.4341, +2016-07-13 11:12:54,2927.0,-11.1801, +2016-07-13 11:15:00,,,55.4243 +2016-07-13 11:22:57,2931.0,-11.1801, +2016-07-13 11:30:00,,,55.8205 +2016-07-13 11:32:59,2933.0,-11.1811, +2016-07-13 11:43:02,2934.0,-11.1811, +2016-07-13 11:45:00,,,55.6929 +2016-07-13 11:53:04,2934.0,-11.1487, +2016-07-13 12:00:00,,,55.4243 +2016-07-13 12:03:07,2934.0,-11.1487, +2016-07-13 12:13:09,2934.0,-11.086, +2016-07-13 12:15:00,,,28.9116 +2016-07-13 12:23:12,2934.0,-11.085, +2016-07-13 12:30:00,,,29.4539 +2016-07-13 12:33:14,2935.0,-11.1173, +2016-07-13 12:43:17,2935.0,-11.1173, +2016-07-13 12:45:00,,,29.6723 +2016-07-13 12:53:20,2935.0,-11.085, +2016-07-13 13:00:00,,,29.895 +2016-07-13 13:03:22,2936.0,-11.086, +2016-07-13 13:13:25,2936.0,-11.086, +2016-07-13 13:15:00,,,29.9003 +2016-07-13 13:23:28,2937.0,-11.1173, +2016-07-13 13:30:00,,,30.015 +2016-07-13 13:33:30,2937.0,-11.1173, +2016-07-13 13:43:33,2937.0,-11.1173, +2016-07-13 13:45:00,,,30.015 +2016-07-13 13:53:35,2937.0,-11.086, +2016-07-13 14:00:00,,,29.6353 +2016-07-13 14:03:39,2937.0,-11.086, +2016-07-13 14:13:43,2937.0,-11.086, +2016-07-13 14:15:00,,,29.3623 +2016-07-13 14:23:45,2937.0,-11.1487, +2016-07-13 14:30:00,,,55.5509 +2016-07-13 14:33:48,2937.0,-11.1487, +2016-07-13 14:43:50,2937.0,-11.086, +2016-07-13 14:45:00,,,29.855 +2016-07-13 14:53:53,2936.0,-11.085, +2016-07-13 15:00:00,,,27.7419 +2016-07-13 15:03:56,2935.0,-11.085, +2016-07-13 15:13:58,2935.0,-11.1173, +2016-07-13 15:15:00,,,30.2405 +2016-07-13 15:24:01,2934.0,-11.1497, +2016-07-13 15:30:00,,,29.9082 +2016-07-13 15:34:04,2934.0,-11.1497, +2016-07-13 15:44:06,2934.0,-11.1497, +2016-07-13 15:45:00,,,30.1866 +2016-07-13 15:54:09,2933.0,-11.1497, +2016-07-13 16:00:00,,,30.1893 +2016-07-13 16:04:12,2932.0,-11.1487, +2016-07-13 16:14:14,2931.0,-11.1487, +2016-07-13 16:15:00,,,30.3566 +2016-07-13 16:24:16,2930.0,-11.1487, +2016-07-13 16:30:00,,,30.3593 +2016-07-13 16:34:27,2930.0,-11.1487, +2016-07-13 16:44:29,2928.0,-11.1811, +2016-07-13 16:45:00,,,29.9696 +2016-07-13 16:54:32,2927.0,-11.1811, +2016-07-13 17:00:00,,,30.3593 +2016-07-13 17:04:34,2926.0,-11.1487, +2016-07-13 17:14:37,2925.0,-11.1801, +2016-07-13 17:15:00,,,13.5243 +2016-07-13 17:24:39,2924.0,-11.1811, +2016-07-13 17:30:00,,,30.3647 +2016-07-13 17:34:42,2924.0,-11.1811, +2016-07-13 17:44:44,2922.0,-11.1801, +2016-07-13 17:45:00,,,0.2901 +2016-07-13 17:54:47,2922.0,-11.1801, +2016-07-13 18:00:00,,,0.2249 +2016-07-13 18:04:49,2921.0,-11.1801, +2016-07-13 18:14:52,2920.0,-11.1801, +2016-07-13 18:15:00,,,8.4504 +2016-07-13 18:24:54,2920.0,-11.1801, +2016-07-13 18:30:00,,,30.2351 +2016-07-13 18:34:57,2918.0,-11.1801, +2016-07-13 18:44:59,2918.0,-11.2117, +2016-07-13 18:45:00,,,30.3458 +2016-07-13 18:55:02,2918.0,-11.2117, +2016-07-13 19:00:00,,,-0.1639 +2016-07-13 19:05:05,2918.0,-11.2117, +2016-07-13 19:15:00,,,10.3316 +2016-07-13 19:15:07,2916.0,-11.2117, +2016-07-13 19:25:10,2915.0,-11.2443, +2016-07-13 19:30:00,,,-0.293 +2016-07-13 19:35:12,2913.0,-11.2443, +2016-07-13 19:45:00,,,-0.8935 +2016-07-13 19:45:15,2913.0,-11.2443, +2016-07-13 19:55:17,2912.0,-11.276, +2016-07-13 20:00:00,,,-1.0646 +2016-07-13 20:05:20,2911.0,-11.276, +2016-07-13 20:15:00,,,-1.5346 +2016-07-13 20:15:22,2910.0,-11.276, +2016-07-13 20:25:25,2909.0,-11.276, +2016-07-13 20:30:00,,,-1.4918 +2016-07-13 20:35:27,2908.0,-11.276, +2016-07-13 20:45:00,,,-1.8332 +2016-07-13 20:45:30,2906.0,-11.3089, +2016-07-13 20:55:32,2905.0,-11.3079, +2016-07-13 21:00:00,,,-1.7473 +2016-07-13 21:05:35,2904.0,-11.3079, +2016-07-13 21:15:00,,,2.5596 +2016-07-13 21:15:37,2903.0,-11.3408, +2016-07-13 21:25:40,2902.0,-11.3398, +2016-07-13 21:30:00,,,-4.874 +2016-07-13 21:35:42,2900.0,-11.3718, +2016-07-13 21:45:00,,,-5.2852 +2016-07-13 21:45:45,2898.0,-11.3718, +2016-07-13 21:55:47,2897.0,-11.4049, +2016-07-13 22:00:00,,,-4.9629 +2016-07-13 22:05:50,2896.0,-11.4049, +2016-07-13 22:15:00,,,-4.8123 +2016-07-13 22:15:52,2894.0,-11.4049, +2016-07-13 22:25:55,2892.0,-11.4039, +2016-07-13 22:30:00,,,-4.7904 +2016-07-13 22:35:57,2890.0,-11.4049, +2016-07-13 22:45:00,,,-5.1985 +2016-07-13 22:45:59,2889.0,-11.4371, +2016-07-13 22:56:02,2886.0,-11.4361, +2016-07-13 23:00:00,,,8.6022 +2016-07-13 23:06:04,2875.0,-11.5018, +2016-07-13 23:15:00,,,-3.8162 +2016-07-13 23:16:06,2872.0,-11.5018, +2016-07-13 23:26:08,2869.0,-11.5018, +2016-07-13 23:30:00,,,-4.249 +2016-07-13 23:36:10,2869.0,-11.5008, +2016-07-13 23:45:00,,,-4.7261 +2016-07-13 23:46:13,2862.0,-11.5343, +2016-07-13 23:56:15,2857.0,-11.5333, +2016-07-14 00:00:00,,,-4.7925 +2016-07-14 00:06:17,2856.0,-11.5333, +2016-07-14 00:15:00,,,-4.9436 +2016-07-14 00:16:20,2854.0,-11.567, +2016-07-14 00:26:22,2847.0,-11.5649, +2016-07-14 00:30:00,,,-5.0506 +2016-07-14 00:36:24,2847.0,-11.5986, +2016-07-14 00:45:00,,,-4.8792 +2016-07-14 00:46:27,2847.0,-11.5659, +2016-07-14 00:56:29,2846.0,-11.5659, +2016-07-14 01:00:00,,, +2016-07-14 01:06:31,2846.0,-11.5659, +2016-07-14 01:15:00,,,-4.8788 +2016-07-14 01:16:34,2844.0,-11.6325, +2016-07-14 01:26:36,2843.0,-11.6325, +2016-07-14 01:30:00,,,-4.8792 +2016-07-14 01:36:39,2842.0,-11.6325, +2016-07-14 01:45:00,,,-4.8135 +2016-07-14 01:46:41,2840.0,-11.6325, +2016-07-14 01:56:44,2840.0,-11.6325, +2016-07-14 02:00:00,,,-4.9427 +2016-07-14 02:06:46,2840.0,-11.6325, +2016-07-14 02:15:00,,, +2016-07-14 02:16:48,2839.0,-11.6325, +2016-07-14 02:26:51,2839.0,-11.6325, +2016-07-14 02:30:00,,, +2016-07-14 02:36:53,2837.0,-11.6325, +2016-07-14 02:45:00,,, +2016-07-14 02:46:55,2836.0,-11.6664, +2016-07-14 02:57:09,2836.0,-11.6664, +2016-07-14 03:00:00,,, +2016-07-14 03:07:49,2833.0,-11.6654, +2016-07-14 03:15:00,,, +2016-07-14 03:17:51,2833.0,-11.6654, +2016-07-14 03:27:53,2833.0,-11.6995, +2016-07-14 03:30:00,,, +2016-07-14 03:37:55,2833.0,-11.6995, +2016-07-14 03:45:00,,,-4.9853 +2016-07-14 03:47:58,2831.0,-11.6984, +2016-07-14 03:58:00,2830.0,-11.6984, +2016-07-14 04:00:00,,,-4.9853 +2016-07-14 04:08:02,2829.0,-11.6984, +2016-07-14 04:15:00,,,-4.9213 +2016-07-14 04:18:04,2828.0,-11.6984, +2016-07-14 04:28:07,2827.0,-11.6995, +2016-07-14 04:30:00,,, +2016-07-14 04:38:09,2826.0,-11.6984, +2016-07-14 04:45:00,,, +2016-07-14 04:48:11,2825.0,-11.7326, +2016-07-14 04:58:13,2825.0,-11.7326, +2016-07-14 05:00:00,,, +2016-07-14 05:08:16,2825.0,-11.7326, +2016-07-14 05:15:00,,,-4.9432 +2016-07-14 05:18:18,2824.0,-11.7659, +2016-07-14 05:28:20,2823.0,-11.7326, +2016-07-14 05:30:00,,, +2016-07-14 05:38:22,2822.0,-11.7659, +2016-07-14 05:45:00,,, +2016-07-14 05:48:32,2820.0,-11.7659, +2016-07-14 05:58:34,2819.0,-11.7669, +2016-07-14 06:00:00,,, +2016-07-14 06:08:36,2818.0,-11.7669, +2016-07-14 06:15:00,,, +2016-07-14 06:18:38,2818.0,-11.7659, +2016-07-14 06:28:40,2818.0,-11.7659, +2016-07-14 06:30:00,,, +2016-07-14 06:38:43,2818.0,-11.7659, +2016-07-14 06:45:00,,, +2016-07-14 06:48:45,2818.0,-11.7659, +2016-07-14 06:58:47,2816.0,-11.7648, +2016-07-14 07:00:00,,, +2016-07-14 07:08:49,2815.0,-11.8003, +2016-07-14 07:15:00,,, +2016-07-14 07:18:52,2814.0,-11.7648, +2016-07-14 07:28:54,2814.0,-11.7992, +2016-07-14 07:30:00,,, +2016-07-14 07:38:56,2813.0,-11.7316, +2016-07-14 07:45:00,,, +2016-07-14 07:48:59,2811.0,-11.7992, +2016-07-14 07:59:01,2811.0,-11.9084, +2016-07-14 08:00:00,,, +2016-07-14 08:09:03,2811.0,-11.7659, +2016-07-14 08:15:00,,, +2016-07-14 08:19:05,2811.0,-11.7982, +2016-07-14 08:29:07,2810.0,-11.7326, +2016-07-14 08:30:00,,, +2016-07-14 08:39:09,2809.0,-11.8611, +2016-07-14 08:45:00,,, +2016-07-14 08:49:22,2809.0,-11.8337, +2016-07-14 09:00:00,,,-4.9427 +2016-07-14 09:00:02,2809.0,-11.7992, +2016-07-14 09:10:04,2808.0,-11.7992, +2016-07-14 09:15:00,,, +2016-07-14 09:20:06,2808.0,-11.7982, +2016-07-14 09:30:00,,,-5.0502 +2016-07-14 09:30:09,2807.0,-11.7982, +2016-07-14 09:40:11,2807.0,-11.7982, +2016-07-14 09:45:00,,,-5.0291 +2016-07-14 09:50:13,2809.0,-11.7659, +2016-07-14 10:00:00,,,7.8662 +2016-07-14 10:00:15,2808.0,-11.7982, +2016-07-14 10:10:18,2809.0,-11.7648, +2016-07-14 10:15:00,,, +2016-07-14 10:20:20,2809.0,-11.7648, +2016-07-14 10:30:00,,, +2016-07-14 10:30:22,2810.0,-11.5608, +2016-07-14 10:40:24,2811.0,-11.8003, +2016-07-14 10:45:00,,,-4.8552 +2016-07-14 10:50:26,2811.0,-11.7659, +2016-07-14 11:00:00,,,-4.9427 +2016-07-14 11:00:29,2812.0,-11.7659, +2016-07-14 11:10:31,2812.0,-11.7648, +2016-07-14 11:15:00,,,-5.0502 +2016-07-14 11:20:33,2813.0,-11.7305, +2016-07-14 11:30:00,,,-5.0721 +2016-07-14 11:30:35,2814.0,-11.7648, +2016-07-14 11:40:38,2814.0,-11.7659, +2016-07-14 11:45:00,,,-5.0502 +2016-07-14 11:50:40,2814.0,-11.7305, +2016-07-14 12:00:00,,,-4.9436 +2016-07-14 12:00:42,2815.0,-11.7316, +2016-07-14 12:10:44,2815.0,-11.6964, +2016-07-14 12:15:00,,, +2016-07-14 12:20:47,2815.0,-11.7648, +2016-07-14 12:30:00,,,-5.0085 +2016-07-14 12:30:49,2815.0,-11.6974, +2016-07-14 12:40:52,2817.0,-11.6284, +2016-07-14 12:45:00,,,-5.0506 +2016-07-14 12:50:54,2818.0,-11.6984, +2016-07-14 13:00:00,,,-5.0076 +2016-07-14 13:00:56,2818.0,-11.6984, +2016-07-14 13:10:59,2818.0,-11.6984, +2016-07-14 13:15:00,,,-5.0305 +2016-07-14 13:21:01,2818.0,-11.6964, +2016-07-14 13:30:00,,,-5.5232 +2016-07-14 13:31:03,2819.0,-11.6984, +2016-07-14 13:41:06,2821.0,-11.6984, +2016-07-14 13:45:00,,,-5.0291 +2016-07-14 13:51:08,2820.0,-11.6644, +2016-07-14 14:00:00,,,-5.0085 +2016-07-14 14:01:11,2819.0,-11.6974, +2016-07-14 14:11:13,2820.0,-11.6304, +2016-07-14 14:15:00,,,-5.0941 +2016-07-14 14:21:15,2821.0,-11.6644, +2016-07-14 14:30:00,,,-5.0937 +2016-07-14 14:31:18,2820.0,-11.6294, +2016-07-14 14:41:20,2820.0,-11.6654, +2016-07-14 14:45:00,,,-5.0937 +2016-07-14 14:51:23,2822.0,-11.6675, +2016-07-14 15:00:00,,,-5.0072 +2016-07-14 15:01:25,2822.0,-11.6356, +2016-07-14 15:11:28,2822.0,-11.6995, +2016-07-14 15:15:00,,,-5.0296 +2016-07-14 15:21:30,2822.0,-11.6315, +2016-07-14 15:30:00,,,-5.1573 +2016-07-14 15:31:33,2822.0,-11.5956, +2016-07-14 15:41:35,2820.0,-11.6633, +2016-07-14 15:45:00,,,-5.3508 +2016-07-14 15:51:37,2819.0,-11.6623, +2016-07-14 16:00:00,,,-4.9217 +2016-07-14 16:01:40,2818.0,-11.6644, +2016-07-14 16:11:42,2818.0,-11.4674, +2016-07-14 16:15:00,,,-5.0721 +2016-07-14 16:21:45,2818.0,-11.6644, +2016-07-14 16:30:00,,,-5.0502 +2016-07-14 16:31:47,2818.0,-11.6654, +2016-07-14 16:41:50,2817.0,-11.5598, +2016-07-14 16:45:00,,, +2016-07-14 16:51:52,2816.0,-11.6294, +2016-07-14 17:00:00,,, +2016-07-14 17:01:55,2815.0,-11.6995, +2016-07-14 17:11:57,2814.0,-11.567, +2016-07-14 17:15:00,,,-5.0305 +2016-07-14 17:22:00,2814.0,-11.6644, +2016-07-14 17:30:00,,, +2016-07-14 17:32:04,2813.0,-11.6644, +2016-07-14 17:42:07,2812.0,-11.6964, +2016-07-14 17:45:00,,,-5.0506 +2016-07-14 17:52:10,2812.0,-11.6984, +2016-07-14 18:00:00,,,-5.2444 +2016-07-14 18:02:12,2811.0,-11.7305, +2016-07-14 18:12:15,2811.0,-11.6964, +2016-07-14 18:15:00,,, +2016-07-14 18:22:17,2809.0,-11.7305, +2016-07-14 18:30:00,,,-5.0081 +2016-07-14 18:32:20,2808.0,-11.6964, +2016-07-14 18:42:22,2806.0,-11.7316, +2016-07-14 18:45:00,,, +2016-07-14 18:52:25,2805.0,-11.7305, +2016-07-14 19:00:00,,, +2016-07-14 19:02:28,2804.0,-11.7305, +2016-07-14 19:12:30,2801.0,-11.7648, +2016-07-14 19:15:00,,, +2016-07-14 19:22:32,2799.0,-11.7648, +2016-07-14 19:30:00,,, +2016-07-14 19:32:35,2798.0,-11.7982, +2016-07-14 19:42:37,2796.0,-11.7982, +2016-07-14 19:45:00,,, +2016-07-14 19:52:40,2795.0,-11.7982, +2016-07-14 20:00:00,,, +2016-07-14 20:02:42,2792.0,-11.7982, +2016-07-14 20:12:45,2790.0,-11.7971, +2016-07-14 20:15:00,,, +2016-07-14 20:22:47,2789.0,-11.8317, +2016-07-14 20:30:00,,, +2016-07-14 20:32:50,2787.0,-11.8663, +2016-07-14 20:42:52,2786.0,-11.8663, +2016-07-14 20:45:00,,, +2016-07-14 20:52:55,2784.0,-11.8653, +2016-07-14 21:00:00,,, +2016-07-14 21:02:57,2782.0,-11.8653, +2016-07-14 21:13:00,2781.0,-11.9, +2016-07-14 21:15:00,,, +2016-07-14 21:23:02,2777.0,-11.899, +2016-07-14 21:30:00,,, +2016-07-14 21:33:05,2775.0,-11.899, +2016-07-14 21:43:07,2773.0,-11.9338, +2016-07-14 21:45:00,,, +2016-07-14 21:53:09,2771.0,-11.9338, +2016-07-14 22:00:00,,, +2016-07-14 22:03:12,2769.0,-11.9338, +2016-07-14 22:13:14,2768.0,-11.9328, +2016-07-14 22:15:00,,, +2016-07-14 22:23:16,2767.0,-11.9328, +2016-07-14 22:30:00,,, +2016-07-14 22:33:19,2765.0,-11.9328, +2016-07-14 22:43:21,2762.0,-11.9678, +2016-07-14 22:45:00,,, +2016-07-14 22:53:24,2762.0,-11.9678, +2016-07-14 23:00:00,,, +2016-07-14 23:03:26,2760.0,-11.9667, +2016-07-14 23:13:29,2759.0,-11.9667, +2016-07-14 23:15:00,,, +2016-07-14 23:23:31,2758.0,-12.0019, +2016-07-14 23:30:00,,, +2016-07-14 23:33:33,2757.0,-12.0019, +2016-07-14 23:43:36,2756.0,-12.0008, +2016-07-14 23:45:00,,, +2016-07-14 23:53:38,2755.0,-11.9667, +2016-07-15 00:00:00,,, +2016-07-15 00:03:40,2755.0,-12.0008, +2016-07-15 00:13:43,2754.0,-12.0008, +2016-07-15 00:15:00,,, +2016-07-15 00:23:45,2753.0,-12.0008, +2016-07-15 00:30:00,,, +2016-07-15 00:33:47,2753.0,-12.0008, +2016-07-15 00:43:50,2751.0,-12.0008, +2016-07-15 00:45:00,,, +2016-07-15 00:53:52,2749.0,-12.0361, +2016-07-15 01:00:00,,, +2016-07-15 01:03:55,2749.0,-12.0361, +2016-07-15 01:13:57,2748.0,-12.035, +2016-07-15 01:15:00,,, +2016-07-15 01:24:00,2747.0,-12.035, +2016-07-15 01:30:00,,, +2016-07-15 01:34:02,2745.0,-12.0704, +2016-07-15 01:44:04,2744.0,-12.0704, +2016-07-15 01:45:00,,, +2016-07-15 01:54:07,2743.0,-12.035, +2016-07-15 02:00:00,,, +2016-07-15 02:04:09,2742.0,-12.0704, +2016-07-15 02:14:11,2742.0,-12.0704, +2016-07-15 02:15:00,,, +2016-07-15 02:24:14,2741.0,-12.0704, +2016-07-15 02:30:00,,, +2016-07-15 02:34:15,2740.0,-12.0704, +2016-07-15 02:44:18,2738.0,-12.0704, +2016-07-15 02:45:00,,, +2016-07-15 02:54:20,2738.0,-12.0704, +2016-07-15 03:00:00,,, +2016-07-15 03:04:23,2738.0,-12.0704, +2016-07-15 03:14:25,2737.0,-12.0693, +2016-07-15 03:15:00,,, +2016-07-15 03:24:27,2734.0,-12.1048, +2016-07-15 03:30:00,,, +2016-07-15 03:34:30,2734.0,-12.1048, +2016-07-15 03:44:32,2733.0,-12.1048, +2016-07-15 03:45:00,,, +2016-07-15 03:54:34,2731.0,-12.1394, +2016-07-15 04:00:00,,, +2016-07-15 04:04:37,2730.0,-12.1394, +2016-07-15 04:14:39,2730.0,-12.1394, +2016-07-15 04:15:00,,, +2016-07-15 04:24:41,2728.0,-12.1384, +2016-07-15 04:30:00,,, +2016-07-15 04:34:44,2727.0,-12.1394, +2016-07-15 04:44:46,2726.0,-12.1384, +2016-07-15 04:45:00,,, +2016-07-15 04:54:48,2725.0,-12.1741, +2016-07-15 05:00:00,,, +2016-07-15 05:04:51,2724.0,-12.1741, +2016-07-15 05:14:53,2724.0,-12.1741, +2016-07-15 05:15:00,,, +2016-07-15 05:24:55,2721.0,-12.1741, +2016-07-15 05:30:00,,, +2016-07-15 05:34:58,2721.0,-12.1741, +2016-07-15 05:45:00,2720.0,-12.1741, +2016-07-15 05:55:02,2719.0,-12.1741, +2016-07-15 06:00:00,,, +2016-07-15 06:05:04,2718.0,-12.1731, +2016-07-15 06:15:00,,, +2016-07-15 06:15:06,2716.0,-12.1731, +2016-07-15 06:25:16,2716.0,-12.2101, +2016-07-15 06:30:00,,, +2016-07-15 06:35:18,2715.0,-12.209, +2016-07-15 06:45:00,,, +2016-07-15 06:45:21,2714.0,-12.209, +2016-07-15 06:55:23,2713.0,-12.209, +2016-07-15 07:00:00,,, +2016-07-15 07:05:25,2713.0,-12.209, +2016-07-15 07:15:00,,, +2016-07-15 07:15:27,2712.0,-12.209, +2016-07-15 07:25:30,2712.0,-12.209, +2016-07-15 07:30:00,,, +2016-07-15 07:35:32,2711.0,-12.209, +2016-07-15 07:45:00,,, +2016-07-15 07:45:34,2710.0,-12.1731, +2016-07-15 07:55:36,2710.0,-12.209, +2016-07-15 08:00:00,,, +2016-07-15 08:05:39,2710.0,-12.1731, +2016-07-15 08:15:00,,, +2016-07-15 08:15:41,2710.0,-12.1731, +2016-07-15 08:25:43,2709.0,-12.1731, +2016-07-15 08:30:00,,, +2016-07-15 08:35:45,2709.0,-12.1731, +2016-07-15 08:45:00,,, +2016-07-15 08:45:55,2709.0,-12.1731, +2016-07-15 08:55:58,2709.0,-12.1731, +2016-07-15 09:00:00,,, +2016-07-15 09:06:00,2709.0,-12.1731, +2016-07-15 09:15:00,,, +2016-07-15 09:16:02,2709.0,-12.1731, +2016-07-15 09:26:05,2709.0,-12.1731, +2016-07-15 09:30:00,,, +2016-07-15 09:36:07,2709.0,-12.1731, +2016-07-15 09:45:00,,, +2016-07-15 09:46:09,2709.0,-12.1731, +2016-07-15 09:56:12,2709.0,-12.1731, +2016-07-15 10:00:00,,, +2016-07-15 10:06:14,2709.0,-12.1731, +2016-07-15 10:15:00,,, +2016-07-15 10:16:16,2709.0,-12.1731, +2016-07-15 10:26:19,2708.0,-12.1731, +2016-07-15 10:30:00,,, +2016-07-15 10:36:21,2708.0,-12.1731, +2016-07-15 10:45:00,,, +2016-07-15 10:46:23,2709.0,-12.1731, +2016-07-15 10:56:26,2709.0,-12.1384, +2016-07-15 11:00:00,,, +2016-07-15 11:06:28,2709.0,-12.1384, +2016-07-15 11:15:00,,, +2016-07-15 11:16:31,2710.0,-12.1384, +2016-07-15 11:26:33,2710.0,-12.1384, +2016-07-15 11:30:00,,, +2016-07-15 11:36:35,2710.0,-12.1384, +2016-07-15 11:45:00,,, +2016-07-15 11:46:37,2712.0,-12.1384, +2016-07-15 11:56:40,2712.0,-12.1384, +2016-07-15 12:00:00,,, +2016-07-15 12:06:42,2713.0,-12.1384, +2016-07-15 12:15:00,,, +2016-07-15 12:16:44,2713.0,-12.1384, +2016-07-15 12:26:46,2713.0,-12.1384, +2016-07-15 12:30:00,,, +2016-07-15 12:36:56,2714.0,-12.1384, +2016-07-15 12:45:00,,, +2016-07-15 12:46:58,2714.0,-12.1384, +2016-07-15 12:57:01,2714.0,-12.1384, +2016-07-15 13:00:00,,, +2016-07-15 13:07:03,2713.0,-12.1384, +2016-07-15 13:15:00,,, +2016-07-15 13:17:05,2713.0,-12.1384, +2016-07-15 13:27:08,2713.0,-12.1384, +2016-07-15 13:30:00,,, +2016-07-15 13:37:10,2712.0,-12.1384, +2016-07-15 13:45:00,,, +2016-07-15 13:47:12,2712.0,-12.1384, +2016-07-15 13:57:15,2712.0,-12.1384, +2016-07-15 14:00:00,,, +2016-07-15 14:07:17,2712.0,-12.1384, +2016-07-15 14:15:00,,, +2016-07-15 14:17:19,2712.0,-12.1384, +2016-07-15 14:27:22,2711.0,-12.1384, +2016-07-15 14:30:00,,, +2016-07-15 14:37:24,2710.0,-12.1384, +2016-07-15 14:45:00,,, +2016-07-15 14:47:34,2709.0,-12.1373, +2016-07-15 14:57:36,2706.0,-12.1384, +2016-07-15 15:00:00,,, +2016-07-15 15:07:39,2706.0,-12.1373, +2016-07-15 15:15:00,,, +2016-07-15 15:17:41,2705.0,-12.1373, +2016-07-15 15:27:44,2704.0,-12.1373, +2016-07-15 15:30:00,,, +2016-07-15 15:37:46,2702.0,-12.1384, +2016-07-15 15:45:00,,, +2016-07-15 15:47:49,2702.0,-12.1373, +2016-07-15 15:57:51,2702.0,-12.1384, +2016-07-15 16:00:00,,, +2016-07-15 16:07:53,2701.0,-12.1027, +2016-07-15 16:15:00,,, +2016-07-15 16:17:56,2701.0,-12.1384, +2016-07-15 16:27:58,2701.0,-12.1373, +2016-07-15 16:30:00,,, +2016-07-15 16:38:01,2701.0,-12.1373, +2016-07-15 16:45:00,,, +2016-07-15 16:48:03,2700.0,-12.1373, +2016-07-15 16:58:05,2700.0,-12.1373, +2016-07-15 17:00:00,,, +2016-07-15 17:08:08,2700.0,-12.1373, +2016-07-15 17:15:00,,, +2016-07-15 17:18:10,2700.0,-12.1373, +2016-07-15 17:28:13,2700.0,-12.1373, +2016-07-15 17:30:00,,, +2016-07-15 17:38:15,2699.0,-12.1373, +2016-07-15 17:45:00,,, +2016-07-15 17:48:17,2698.0,-12.1373, +2016-07-15 17:58:20,2697.0,-12.1373, +2016-07-15 18:00:00,,, +2016-07-15 18:08:22,2696.0,-12.1373, +2016-07-15 18:15:00,,, +2016-07-15 18:18:25,2695.0,-12.1731, +2016-07-15 18:28:27,2695.0,-12.1731, +2016-07-15 18:30:00,,, +2016-07-15 18:38:29,2694.0,-12.1373, +2016-07-15 18:45:00,,, +2016-07-15 18:48:32,2693.0,-12.1373, +2016-07-15 18:58:34,2692.0,-12.1373, +2016-07-15 19:00:00,,, +2016-07-15 19:08:37,2691.0,-12.172, +2016-07-15 19:15:00,,, +2016-07-15 19:18:39,2688.0,-12.172, +2016-07-15 19:28:41,2687.0,-12.2079, +2016-07-15 19:30:00,,, +2016-07-15 19:38:44,2685.0,-12.2068, +2016-07-15 19:45:00,,, +2016-07-15 19:48:46,2684.0,-12.2068, +2016-07-15 19:58:49,2682.0,-12.278, +2016-07-15 20:00:00,,, +2016-07-15 20:08:51,2680.0,-12.278, +2016-07-15 20:15:00,,, +2016-07-15 20:18:53,2678.0,-12.278, +2016-07-15 20:28:56,2676.0,-12.278, +2016-07-15 20:30:00,,, +2016-07-15 20:38:58,2673.0,-12.3144, +2016-07-15 20:45:00,,, +2016-07-15 20:49:02,2672.0,-12.3133, +2016-07-15 20:59:05,2670.0,-12.3509, +2016-07-15 21:00:00,,, +2016-07-15 21:09:07,2666.0,-12.3122, +2016-07-15 21:15:00,,, +2016-07-15 21:19:10,2664.0,-12.3842, +2016-07-15 21:29:12,2661.0,-12.3853, +2016-07-15 21:30:00,,, +2016-07-15 21:39:15,2658.0,-12.3842, +2016-07-15 21:45:00,,, +2016-07-15 21:49:17,2657.0,-12.421, +2016-07-15 21:59:19,2654.0,-12.4199, +2016-07-15 22:00:00,,, +2016-07-15 22:09:22,2650.0,-12.4199, +2016-07-15 22:15:00,,, +2016-07-15 22:19:24,2649.0,-12.4569, +2016-07-15 22:29:26,2646.0,-12.4558, +2016-07-15 22:30:00,,, +2016-07-15 22:39:29,2644.0,-12.4558, +2016-07-15 22:45:00,,, +2016-07-15 22:49:31,2642.0,-12.4929, +2016-07-15 22:59:33,2640.0,-12.4929, +2016-07-15 23:00:00,,, +2016-07-15 23:09:35,2637.0,-12.5301, +2016-07-15 23:15:00,,, +2016-07-15 23:19:38,2635.0,-12.529000000000002, +2016-07-15 23:29:40,2631.0,-12.5301, +2016-07-15 23:30:00,,, +2016-07-15 23:39:42,2629.0,-12.529000000000002, +2016-07-15 23:45:00,,, +2016-07-15 23:49:44,2629.0,-12.529000000000002, +2016-07-15 23:59:47,2626.0,-12.5653, +2016-07-16 00:00:00,,, +2016-07-16 00:09:49,2623.0,-12.5664, +2016-07-16 00:15:00,,, +2016-07-16 00:19:51,2622.0,-12.5664, +2016-07-16 00:29:53,2620.0,-12.5653, +2016-07-16 00:30:00,,, +2016-07-16 00:39:55,2617.0,-12.6018, +2016-07-16 00:45:00,,, +2016-07-16 00:49:58,2615.0,-12.6018, +2016-07-16 01:00:00,2614.0,-12.6018, +2016-07-16 01:10:02,2612.0,-12.6018, +2016-07-16 01:15:00,,, +2016-07-16 01:20:04,2610.0,-12.6018, +2016-07-16 01:30:00,,, +2016-07-16 01:30:06,2608.0,-12.6384, +2016-07-16 01:40:09,2607.0,-12.6384, +2016-07-16 01:45:00,,, +2016-07-16 01:50:11,2605.0,-12.6763, +2016-07-16 02:00:00,,, +2016-07-16 02:00:13,2603.0,-12.6763, +2016-07-16 02:10:15,2601.0,-12.6752, +2016-07-16 02:15:00,,, +2016-07-16 02:20:17,2600.0,-12.6763, +2016-07-16 02:30:00,,, +2016-07-16 02:30:20,2600.0,-12.6763, +2016-07-16 02:40:22,2598.0,-12.6752, +2016-07-16 02:45:00,,, +2016-07-16 02:50:24,2596.0,-12.6752, +2016-07-16 03:00:00,,, +2016-07-16 03:00:26,2593.0,-12.7122, +2016-07-16 03:10:28,2593.0,-12.7122, +2016-07-16 03:15:00,,, +2016-07-16 03:20:30,2591.0,-12.7122, +2016-07-16 03:30:00,,, +2016-07-16 03:30:32,2590.0,-12.7122, +2016-07-16 03:40:34,2588.0,-12.7122, +2016-07-16 03:45:00,,, +2016-07-16 03:50:36,2587.0,-12.7493, +2016-07-16 04:00:00,,, +2016-07-16 04:00:39,2586.0,-12.7493, +2016-07-16 04:10:41,2584.0,-12.7493, +2016-07-16 04:15:00,,,-5.874 +2016-07-16 04:20:43,2582.0,-12.7866, +2016-07-16 04:30:00,,,0.8539 +2016-07-16 04:30:45,2580.0,-12.8253, +2016-07-16 04:40:47,2580.0,-12.7493, +2016-07-16 04:45:00,,, +2016-07-16 04:50:49,2579.0,-12.7493, +2016-07-16 05:00:00,,, +2016-07-16 05:00:51,2577.0,-12.7878, +2016-07-16 05:10:54,2576.0,-12.7493, +2016-07-16 05:15:00,,, +2016-07-16 05:20:56,2574.0,-12.7866, +2016-07-16 05:30:00,,, +2016-07-16 05:30:58,2573.0,-12.7866, +2016-07-16 05:41:00,2571.0,-12.7866, +2016-07-16 05:45:00,,, +2016-07-16 05:51:02,2570.0,-12.7866, +2016-07-16 06:00:00,,, +2016-07-16 06:01:04,2569.0,-12.7866, +2016-07-16 06:11:06,2567.0,-12.8253, +2016-07-16 06:15:00,,, +2016-07-16 06:21:08,2566.0,-12.7866, +2016-07-16 06:30:00,,, +2016-07-16 06:31:10,2565.0,-12.7866, +2016-07-16 06:41:12,2564.0,-12.7866, +2016-07-16 06:45:00,,, +2016-07-16 06:51:14,2564.0,-12.7866, +2016-07-16 07:00:00,,, +2016-07-16 07:01:16,2564.0,-12.7866, +2016-07-16 07:11:18,2562.0,-12.7866, +2016-07-16 07:15:00,,, +2016-07-16 07:21:20,2562.0,-12.7866, +2016-07-16 07:30:00,,, +2016-07-16 07:31:22,2562.0,-12.7482, +2016-07-16 07:41:25,2561.0,-12.7482, +2016-07-16 07:45:00,,, +2016-07-16 07:51:27,2561.0,-12.7482, +2016-07-16 08:00:00,,, +2016-07-16 08:01:36,2562.0,-12.7866, +2016-07-16 08:11:38,2562.0,-12.7493, +2016-07-16 08:15:00,,, +2016-07-16 08:21:40,2562.0,-12.7482, +2016-07-16 08:30:00,,, +2016-07-16 08:31:43,2564.0,-12.7493, +2016-07-16 08:41:45,2564.0,-12.7482, +2016-07-16 08:45:00,,, +2016-07-16 08:51:47,2564.0,-12.7493, +2016-07-16 09:00:00,,, +2016-07-16 09:01:49,2565.0,-12.7493, +2016-07-16 09:11:52,2565.0,-12.7493, +2016-07-16 09:15:00,,, +2016-07-16 09:21:54,2566.0,-12.7111, +2016-07-16 09:30:00,,, +2016-07-16 09:31:56,2567.0,-12.7111, +2016-07-16 09:41:59,2569.0,-12.7111, +2016-07-16 09:45:00,,, +2016-07-16 09:52:01,2571.0,-12.7122, +2016-07-16 10:00:00,,, +2016-07-16 10:02:03,2572.0,-12.6741, +2016-07-16 10:12:05,2573.0,-12.6741, +2016-07-16 10:15:00,,, +2016-07-16 10:22:08,2574.0,-12.6741, +2016-07-16 10:30:00,,, +2016-07-16 10:32:10,2576.0,-12.6741, +2016-07-16 10:42:19,2578.0,-12.6752, +2016-07-16 10:45:00,,, +2016-07-16 10:52:22,2579.0,-12.6752, +2016-07-16 11:00:00,,, +2016-07-16 11:02:24,2580.0,-12.6384, +2016-07-16 11:12:27,2580.0,-12.6373, +2016-07-16 11:15:00,,, +2016-07-16 11:22:29,2580.0,-12.6362, +2016-07-16 11:30:00,,, +2016-07-16 11:32:32,2580.0,-12.6373, +2016-07-16 11:42:34,2580.0,-12.6373, +2016-07-16 11:45:00,,, +2016-07-16 11:52:37,2580.0,-12.6007, +2016-07-16 12:00:00,,, +2016-07-16 12:02:39,2581.0,-12.5631, +2016-07-16 12:12:42,2581.0,-12.5631, +2016-07-16 12:15:00,,, +2016-07-16 12:22:44,2582.0,-12.5631, +2016-07-16 12:30:00,,, +2016-07-16 12:32:47,2582.0,-12.5631, +2016-07-16 12:42:49,2582.0,-12.5642, +2016-07-16 12:45:00,,, +2016-07-16 12:52:52,2581.0,-12.5642, +2016-07-16 13:00:00,,, +2016-07-16 13:02:55,2581.0,-12.5642, +2016-07-16 13:12:57,2580.0,-12.6007, +2016-07-16 13:15:00,,, +2016-07-16 13:23:00,2579.0,-12.5642, +2016-07-16 13:30:00,,, +2016-07-16 13:33:03,2578.0,-12.5631, +2016-07-16 13:43:05,2577.0,-12.5631, +2016-07-16 13:45:00,,, +2016-07-16 13:53:08,2576.0,-12.5631, +2016-07-16 14:00:00,,, +2016-07-16 14:03:10,2575.0,-12.5257, +2016-07-16 14:13:13,2573.0,-12.5631, +2016-07-16 14:15:00,,, +2016-07-16 14:23:15,2573.0,-12.5631, +2016-07-16 14:30:00,,, +2016-07-16 14:33:18,2571.0,-12.5631, +2016-07-16 14:43:21,2569.0,-12.5631, +2016-07-16 14:45:00,,, +2016-07-16 14:53:23,2566.0,-12.5631, +2016-07-16 15:00:00,,, +2016-07-16 15:03:25,2564.0,-12.5631, +2016-07-16 15:13:28,2562.0,-12.5631, +2016-07-16 15:15:00,,, +2016-07-16 15:23:30,2560.0,-12.562, +2016-07-16 15:30:00,,, +2016-07-16 15:33:33,2558.0,-12.5984, +2016-07-16 15:43:36,2557.0,-12.5609, +2016-07-16 15:45:00,,, +2016-07-16 15:53:38,2554.0,-12.5609, +2016-07-16 16:00:00,,, +2016-07-16 16:03:41,2552.0,-12.5984, +2016-07-16 16:13:44,2549.0,-12.4437, +2016-07-16 16:15:00,,, +2016-07-16 16:23:46,2546.0,-12.5213, +2016-07-16 16:30:00,,, +2016-07-16 16:33:48,2543.0,-12.634, +2016-07-16 16:43:51,2541.0,-12.673, +2016-07-16 16:45:00,,, +2016-07-16 16:54:05,2537.0,-12.6351, +2016-07-16 17:00:00,,, +2016-07-16 17:04:46,2533.0,-12.6719, +2016-07-16 17:14:48,2530.0,-12.6719, +2016-07-16 17:15:00,,, +2016-07-16 17:24:51,2526.0,-12.7099, +2016-07-16 17:30:00,,, +2016-07-16 17:34:54,2522.0,-12.7088, +2016-07-16 17:44:56,2517.0,-12.7077, +2016-07-16 17:45:00,,, +2016-07-16 17:54:59,2513.0,-12.7459, +2016-07-16 18:00:00,,, +2016-07-16 18:05:02,2508.0,-12.7459, +2016-07-16 18:15:00,,, +2016-07-16 18:15:04,2504.0,-12.7448, +2016-07-16 18:25:07,2499.0,-12.7832, +2016-07-16 18:30:00,,, +2016-07-16 18:35:10,2495.0,-12.7821, +2016-07-16 18:45:00,,, +2016-07-16 18:45:12,2490.0,-12.8207, +2016-07-16 18:55:15,2485.0,-12.8584, +2016-07-16 19:00:00,,, +2016-07-16 19:05:18,2480.0,-12.8962, +2016-07-16 19:15:00,,, +2016-07-16 19:15:20,2475.0,-12.8962, +2016-07-16 19:25:23,2468.0,-12.9343, +2016-07-16 19:30:00,,, +2016-07-16 19:35:26,2461.0,-13.012, +2016-07-16 19:45:00,,,-5.9207 +2016-07-16 19:45:28,2454.0,-13.0109, +2016-07-16 19:55:31,2447.0,-13.0109, +2016-07-16 20:00:00,,, +2016-07-16 20:05:33,2440.0,-13.0495, +2016-07-16 20:15:00,,, +2016-07-16 20:15:36,2433.0,-13.0883, +2016-07-16 20:25:39,2426.0,-13.1285, +2016-07-16 20:30:00,,, +2016-07-16 20:35:41,2419.0,-13.1273, +2016-07-16 20:45:00,,, +2016-07-16 20:45:44,2411.0,-13.1666, +2016-07-16 20:55:46,2404.0,-13.206, +2016-07-16 21:00:00,,, +2016-07-16 21:05:49,2397.0,-13.1619, +2016-07-16 21:15:00,,, +2016-07-16 21:15:52,2389.0,-13.2457, +2016-07-16 21:25:54,2380.0,-13.2855, +2016-07-16 21:30:00,,, +2016-07-16 21:35:57,2371.0,-13.3257, +2016-07-16 21:45:00,,, +2016-07-16 21:45:59,2362.0,-13.366, +2016-07-16 21:56:02,2353.0,-13.4066, +2016-07-16 22:00:00,,, +2016-07-16 22:06:04,2345.0,-13.4474, +2016-07-16 22:15:00,,, +2016-07-16 22:16:07,2334.0,-13.4885, +2016-07-16 22:26:09,2326.0,-13.5726, +2016-07-16 22:30:00,,, +2016-07-16 22:36:12,2317.0,-13.5714, +2016-07-16 22:45:00,,, +2016-07-16 22:46:15,2305.0,-13.6132, +2016-07-16 23:00:00,,, +2016-07-16 23:15:00,,, +2016-07-16 23:30:00,,, +2016-07-16 23:45:00,,, +2016-07-17 00:00:00,,, +2016-07-17 00:15:00,,, +2016-07-17 00:30:00,,, +2016-07-17 00:45:00,,, +2016-07-17 01:00:00,,, +2016-07-17 01:15:00,,, +2016-07-17 01:30:00,,, +2016-07-17 01:45:00,,, +2016-07-17 02:00:00,,, +2016-07-17 02:15:00,,, +2016-07-17 02:30:00,,, +2016-07-17 02:45:00,,, +2016-07-17 03:00:00,,, +2016-07-17 03:15:00,,, +2016-07-17 03:30:00,,, +2016-07-17 03:45:00,,, +2016-07-17 04:00:00,,, +2016-07-17 04:15:00,,, +2016-07-17 04:30:00,,, +2016-07-17 04:45:00,,, +2016-07-17 05:00:00,,, +2016-07-17 05:15:00,,, +2016-07-17 05:30:00,,, +2016-07-17 05:45:00,,, +2016-07-17 06:00:00,,, +2016-07-17 06:15:00,,, +2016-07-17 06:30:00,,, +2016-07-17 06:45:00,,, +2016-07-17 07:00:00,,, +2016-07-17 07:15:00,,, +2016-07-17 07:30:00,,, +2016-07-17 07:45:00,,, +2016-07-17 08:00:00,,, +2016-07-17 08:15:00,,, +2016-07-17 08:30:00,,, +2016-07-17 08:45:00,,, +2016-07-17 09:00:00,,, +2016-07-17 09:15:00,,, +2016-07-17 09:30:00,,, +2016-07-17 09:45:00,,, +2016-07-17 10:00:00,,, +2016-07-17 10:15:00,,, +2016-07-17 10:30:00,,, +2016-07-17 10:45:00,,, +2016-07-17 11:00:00,,, +2016-07-17 11:15:00,,, +2016-07-17 11:30:00,,, +2016-07-17 11:45:00,,, +2016-07-17 12:00:00,,, +2016-07-17 12:15:00,,, +2016-07-17 12:30:00,,, +2016-07-17 12:45:00,,, +2016-07-17 13:00:00,,, +2016-07-17 13:15:00,,, +2016-07-17 13:30:00,,, +2016-07-17 13:45:00,,, +2016-07-17 14:00:00,,, +2016-07-17 14:15:00,,, +2016-07-17 14:30:00,,, +2016-07-17 14:45:00,,, +2016-07-17 15:00:00,,, +2016-07-17 15:15:00,,, +2016-07-17 15:30:00,,, +2016-07-17 15:45:00,,, +2016-07-17 16:00:00,,, +2016-07-17 16:15:00,,, +2016-07-17 16:30:00,,, +2016-07-17 16:45:00,,, +2016-07-17 17:00:00,,, +2016-07-17 17:15:00,,, +2016-07-17 17:30:00,,, +2016-07-17 17:45:00,,, +2016-07-17 18:00:00,,, +2016-07-17 18:15:00,,, +2016-07-17 18:30:00,,, +2016-07-17 18:45:00,,, +2016-07-17 19:00:00,,, +2016-07-17 19:15:00,,, +2016-07-17 19:30:00,,, +2016-07-17 19:45:00,,, +2016-07-17 20:00:00,,, +2016-07-17 20:15:00,,, +2016-07-17 20:30:00,,, +2016-07-17 20:45:00,,, +2016-07-17 21:00:00,,, +2016-07-17 21:15:00,,, +2016-07-17 21:30:00,,, +2016-07-17 21:45:00,,, +2016-07-17 22:00:00,,, +2016-07-17 22:15:00,,, +2016-07-17 22:30:00,,, +2016-07-17 22:45:00,,, +2016-07-17 23:00:00,,, +2016-07-17 23:15:00,,, +2016-07-17 23:30:00,,, +2016-07-17 23:45:00,,, +2016-07-18 00:00:00,,, +2016-07-18 00:15:00,,, +2016-07-18 00:30:00,,, +2016-07-18 00:45:00,,, +2016-07-18 01:00:00,,, +2016-07-18 01:15:00,,, +2016-07-18 01:30:00,,, +2016-07-18 01:45:00,,, +2016-07-18 02:00:00,,, +2016-07-18 02:15:00,,, +2016-07-18 02:30:00,,, +2016-07-18 02:45:00,,, +2016-07-18 03:00:00,,, +2016-07-18 03:15:00,,, +2016-07-18 03:30:00,,, +2016-07-18 03:45:00,,, +2016-07-18 04:00:00,,, +2016-07-18 04:15:00,,, +2016-07-18 04:30:00,,, +2016-07-18 04:45:00,,, +2016-07-18 05:00:00,,, +2016-07-18 05:15:00,,, +2016-07-18 05:30:00,,, +2016-07-18 05:45:00,,, +2016-07-18 06:00:00,,, +2016-07-18 06:15:00,,, +2016-07-18 06:30:00,,, +2016-07-18 06:45:00,,, +2016-07-18 07:00:00,,, +2016-07-18 07:15:00,,, +2016-07-18 07:30:00,,, +2016-07-18 07:45:00,,, +2016-07-18 08:00:00,,, +2016-07-18 08:15:00,,, +2016-07-18 08:30:00,,, +2016-07-18 08:45:00,,, +2016-07-18 09:00:00,,, +2016-07-18 09:15:00,,, +2016-07-18 09:30:00,,, +2016-07-18 09:45:00,,, +2016-07-18 10:00:00,,, +2016-07-18 10:15:00,,, +2016-07-18 10:30:00,,, +2016-07-18 10:45:00,,, +2016-07-18 11:00:00,,, +2016-07-18 11:15:00,,, +2016-07-18 11:30:00,,, +2016-07-18 11:45:00,,, +2016-07-18 12:00:00,,, +2016-07-18 12:15:00,,, +2016-07-18 12:30:00,,, +2016-07-18 12:45:00,,, +2016-07-18 13:00:00,,, +2016-07-18 13:15:00,,, +2016-07-18 13:30:00,,, +2016-07-18 13:45:00,,, +2016-07-18 14:00:00,,, +2016-07-18 14:15:00,,, +2016-07-18 14:30:00,,, +2016-07-18 14:45:00,,, +2016-07-18 15:00:00,,, +2016-07-18 15:15:00,,, +2016-07-18 15:30:00,,, +2016-07-18 15:45:00,,, +2016-07-18 16:00:00,,, +2016-07-18 16:15:00,,, +2016-07-18 16:30:00,,, +2016-07-18 16:45:00,,, +2016-07-18 17:00:00,,, +2016-07-18 17:15:00,,, +2016-07-18 17:30:00,,, +2016-07-18 17:45:00,,, +2016-07-18 18:00:00,,, +2016-07-18 18:15:00,,, +2016-07-18 18:30:00,,, +2016-07-18 18:45:00,,, +2016-07-18 19:00:00,,, +2016-07-18 19:15:00,,, +2016-07-18 19:30:00,,, +2016-07-18 19:45:00,,, +2016-07-18 20:00:00,,, +2016-07-18 20:15:00,,, +2016-07-18 20:30:00,,, +2016-07-18 20:45:00,,, +2016-07-18 21:00:00,,, +2016-07-18 21:15:00,,, +2016-07-18 21:30:00,,, +2016-07-18 21:45:00,,, +2016-07-18 22:00:00,,, +2016-07-18 22:15:00,,, +2016-07-18 22:30:00,,, +2016-07-18 22:45:00,,, +2016-07-18 23:00:00,,, +2016-07-18 23:15:00,,, +2016-07-18 23:30:00,,, +2016-07-18 23:45:00,,, +2016-07-19 00:00:00,,, +2016-07-19 00:15:00,,, +2016-07-19 00:30:00,,, +2016-07-19 00:45:00,,, +2016-07-19 01:00:00,,, +2016-07-19 01:15:00,,, +2016-07-19 01:30:00,,, +2016-07-19 01:45:00,,, +2016-07-19 02:00:00,,, +2016-07-19 02:15:00,,, +2016-07-19 02:30:00,,, +2016-07-19 02:45:00,,, +2016-07-19 03:00:00,,, +2016-07-19 03:15:00,,, +2016-07-19 03:30:00,,, +2016-07-19 03:45:00,,, +2016-07-19 04:00:00,,, +2016-07-19 04:15:00,,, +2016-07-19 04:30:00,,, +2016-07-19 04:45:00,,, +2016-07-19 05:00:00,,, +2016-07-19 05:15:00,,, +2016-07-19 05:30:00,,, +2016-07-19 05:45:00,,, +2016-07-19 06:00:00,,, +2016-07-19 06:15:00,,, +2016-07-19 06:30:00,,, +2016-07-19 06:45:00,,, +2016-07-19 07:00:00,,, +2016-07-19 07:15:00,,, +2016-07-19 07:30:00,,, +2016-07-19 07:45:00,,, +2016-07-19 08:00:00,,, +2016-07-19 08:15:00,,, +2016-07-19 08:30:00,,, +2016-07-19 08:45:00,,, +2016-07-19 09:00:00,,, +2016-07-19 09:15:00,,, +2016-07-19 09:30:00,,, +2016-07-19 09:45:00,,, +2016-07-19 10:00:00,,, +2016-07-19 10:15:00,,, +2016-07-19 10:30:00,,, +2016-07-19 10:45:00,,, +2016-07-19 11:00:00,,, +2016-07-19 11:15:00,,, +2016-07-19 11:30:00,,, +2016-07-19 11:45:00,,, +2016-07-19 12:00:00,,, +2016-07-19 12:15:00,,, +2016-07-19 12:30:00,,, +2016-07-19 12:45:00,,, +2016-07-19 13:00:00,,, +2016-07-19 13:15:00,,, +2016-07-19 13:30:00,,, +2016-07-19 13:45:00,,, +2016-07-19 14:00:00,,, +2016-07-19 14:15:00,,, +2016-07-19 14:30:00,,, +2016-07-19 14:45:00,,, +2016-07-19 15:00:00,,, +2016-07-19 15:15:00,,, +2016-07-19 15:30:00,,, +2016-07-19 15:45:00,,, +2016-07-19 16:00:00,,, +2016-07-19 16:15:00,,, +2016-07-19 16:30:00,,, +2016-07-19 16:45:00,,, +2016-07-19 17:00:00,,, +2016-07-19 17:15:00,,, +2016-07-19 17:30:00,,, +2016-07-19 17:45:00,,, +2016-07-19 18:00:00,,, +2016-07-19 18:15:00,,, +2016-07-19 18:30:00,,, +2016-07-19 18:45:00,,, +2016-07-19 19:00:00,,, +2016-07-19 19:15:00,,, +2016-07-19 19:30:00,,, +2016-07-19 19:45:00,,, +2016-07-19 20:00:00,,, +2016-07-19 20:15:00,,, +2016-07-19 20:30:00,,, +2016-07-19 20:45:00,,, +2016-07-19 21:00:00,,, +2016-07-19 21:15:00,,, +2016-07-19 21:30:00,,, +2016-07-19 21:45:00,,, +2016-07-19 22:00:00,,, +2016-07-19 22:15:00,,, +2016-07-19 22:30:00,,, +2016-07-19 22:45:00,,, +2016-07-19 23:00:00,,, +2016-07-19 23:15:00,,, +2016-07-19 23:30:00,,, +2016-07-19 23:45:00,,, +2016-07-20 00:00:00,,, +2016-07-20 00:15:00,,, +2016-07-20 00:30:00,,, +2016-07-20 00:45:00,,, +2016-07-20 01:00:00,,, +2016-07-20 01:15:00,,, +2016-07-20 01:30:00,,, +2016-07-20 01:45:00,,, +2016-07-20 02:00:00,,, +2016-07-20 02:15:00,,, +2016-07-20 02:30:00,,, +2016-07-20 02:45:00,,, +2016-07-20 03:00:00,,, +2016-07-20 03:15:00,,, +2016-07-20 03:30:00,,, +2016-07-20 03:45:00,,, +2016-07-20 04:00:00,,, +2016-07-20 04:15:00,,, +2016-07-20 04:30:00,,, +2016-07-20 04:45:00,,, +2016-07-20 05:00:00,,, +2016-07-20 05:15:00,,, +2016-07-20 05:30:00,,, +2016-07-20 05:45:00,,, +2016-07-20 06:00:00,,, +2016-07-20 06:15:00,,, +2016-07-20 06:30:00,,, +2016-07-20 06:45:00,,, +2016-07-20 07:00:00,,, +2016-07-20 07:15:00,,, +2016-07-20 07:30:00,,, +2016-07-20 07:45:00,,, +2016-07-20 08:00:00,,, +2016-07-20 08:15:00,,, +2016-07-20 08:30:00,,, +2016-07-20 08:45:00,,, +2016-07-20 09:00:00,,, +2016-07-20 09:15:00,,, +2016-07-20 09:30:00,,, +2016-07-20 09:45:00,,, +2016-07-20 10:00:00,,, +2016-07-20 10:15:00,,, +2016-07-20 10:30:00,,, +2016-07-20 10:45:00,,, +2016-07-20 11:00:00,,, +2016-07-20 11:15:00,,, +2016-07-20 11:30:00,,, +2016-07-20 11:45:00,,, +2016-07-20 12:00:00,,, +2016-07-20 12:15:00,,, +2016-07-20 12:30:00,,, +2016-07-20 12:45:00,,, +2016-07-20 13:00:00,,, +2016-07-20 13:15:00,,, +2016-07-20 13:30:00,,, +2016-07-20 13:45:00,,, +2016-07-20 14:00:00,,, +2016-07-20 14:15:00,,, +2016-07-20 14:30:00,,, +2016-07-20 14:45:00,,, +2016-07-20 15:00:00,,, +2016-07-20 15:15:00,,, +2016-07-20 15:30:00,,, +2016-07-20 15:45:00,,, +2016-07-20 16:00:00,,, +2016-07-20 16:15:00,,, +2016-07-20 16:30:00,,, +2016-07-20 16:45:00,,, +2016-07-20 17:00:00,,, +2016-07-20 17:15:00,,, +2016-07-20 17:30:00,,, +2016-07-20 17:45:00,,, +2016-07-20 18:00:00,,, +2016-07-20 18:15:00,,, +2016-07-20 18:30:00,,, +2016-07-20 18:45:00,,, +2016-07-20 19:00:00,,, +2016-07-20 19:15:00,,, +2016-07-20 19:30:00,,, +2016-07-20 19:45:00,,, +2016-07-20 20:00:00,,, +2016-07-20 20:15:00,,, +2016-07-20 20:30:00,,, +2016-07-20 20:45:00,,, +2016-07-20 21:00:00,,, +2016-07-20 21:15:00,,, +2016-07-20 21:30:00,,, +2016-07-20 21:45:00,,, +2016-07-20 22:00:00,,, +2016-07-20 22:15:00,,, +2016-07-20 22:30:00,,, +2016-07-20 22:45:00,,, +2016-07-20 23:00:00,,, +2016-07-20 23:15:00,,, +2016-07-20 23:30:00,,, +2016-07-20 23:45:00,,, +2016-07-21 00:00:00,,, +2016-07-21 00:15:00,,, +2016-07-21 00:30:00,,, +2016-07-21 00:45:00,,, +2016-07-21 01:00:00,,, +2016-07-21 01:15:00,,, +2016-07-21 01:30:00,,, +2016-07-21 01:45:00,,, +2016-07-21 02:00:00,,, +2016-07-21 02:15:00,,, +2016-07-21 02:30:00,,, +2016-07-21 02:45:00,,, +2016-07-21 03:00:00,,, +2016-07-21 03:15:00,,, +2016-07-21 03:30:00,,, +2016-07-21 03:45:00,,, +2016-07-21 04:00:00,,, +2016-07-21 04:15:00,,, +2016-07-21 04:30:00,,, +2016-07-21 04:45:00,,, +2016-07-21 05:00:00,,, +2016-07-21 05:15:00,,, +2016-07-21 05:30:00,,, +2016-07-21 05:45:00,,, +2016-07-21 06:00:00,,, +2016-07-21 06:15:00,,, +2016-07-21 06:30:00,,, +2016-07-21 06:45:00,,, +2016-07-21 07:00:00,,, +2016-07-21 07:15:00,,, +2016-07-21 07:30:00,,, +2016-07-21 07:45:00,,, +2016-07-21 08:00:00,,, +2016-07-21 08:15:00,,, +2016-07-21 08:30:00,,, +2016-07-21 08:45:00,,, +2016-07-21 09:00:00,,, +2016-07-21 09:15:00,,, +2016-07-21 09:30:00,,, +2016-07-21 09:45:00,,, +2016-07-21 10:00:00,,, +2016-07-21 10:15:00,,, +2016-07-21 10:30:00,,, +2016-07-21 10:45:00,,, +2016-07-21 11:00:00,,, +2016-07-21 11:15:00,,, +2016-07-21 11:30:00,,, +2016-07-21 11:45:00,,, +2016-07-21 12:00:00,,, +2016-07-21 12:15:00,,, +2016-07-21 12:30:00,,, +2016-07-21 12:45:00,,, +2016-07-21 13:00:00,,, +2016-07-21 13:15:00,,, +2016-07-21 13:30:00,,, +2016-07-21 13:45:00,,, +2016-07-21 14:00:00,,, +2016-07-21 14:15:00,,, +2016-07-21 14:30:00,,, +2016-07-21 14:45:00,,, +2016-07-21 15:00:00,,, +2016-07-21 15:15:00,,,65.4378 +2016-07-21 15:18:26,3171.0,-8.7205, +2016-07-21 15:28:29,3170.0,-7.1864, +2016-07-21 15:30:00,,,65.2505 +2016-07-21 15:38:32,3168.0,-8.1925, +2016-07-21 15:45:00,,,61.6696 +2016-07-21 15:48:46,3174.0,-8.3784, +2016-07-21 15:59:27,3179.0,-8.5638, +2016-07-21 16:00:00,,,66.6564 +2016-07-21 16:09:30,3179.0,-8.8342, +2016-07-21 16:15:00,,,69.2344 +2016-07-21 16:19:33,3182.0,-8.8886, +2016-07-21 16:29:37,3599.0,18.2752, +2016-07-21 16:30:00,,,21.0865 +2016-07-21 16:39:40,3599.0,18.3564, +2016-07-21 16:45:00,,,21.0884 +2016-07-21 16:49:42,3599.0,18.3856, +2016-07-21 16:59:45,3599.0,18.428, +2016-07-21 17:00:00,,,21.0865 +2016-07-21 17:09:48,3599.0,18.4296, +2016-07-21 17:15:00,,,21.0884 +2016-07-21 17:19:51,3599.0,18.428, +2016-07-21 17:29:54,3599.0,18.4296, +2016-07-21 17:30:00,,,21.0884 +2016-07-21 17:39:57,3599.0,18.428, +2016-07-21 17:45:00,,,21.0884 +2016-07-21 17:50:01,3599.0,18.4672, +2016-07-21 18:00:00,,,21.0884 +2016-07-21 18:00:03,3599.0,18.4655, +2016-07-21 18:10:07,3599.0,18.4672, +2016-07-21 18:15:00,,,21.0902 +2016-07-21 18:20:10,3599.0,18.5014, +2016-07-21 18:30:00,,,21.1348 +2016-07-21 18:30:13,3599.0,18.4655, +2016-07-21 18:40:16,3599.0,18.5014, +2016-07-21 18:45:00,,,21.133000000000006 +2016-07-21 18:50:19,3599.0,18.5014, +2016-07-21 19:00:00,,,21.133000000000006 +2016-07-21 19:00:21,3599.0,18.5014, +2016-07-21 19:10:24,3599.0,18.5031, +2016-07-21 19:15:00,,,21.1273 +2016-07-21 19:20:27,3599.0,18.539, +2016-07-21 19:30:00,,,21.0921 +2016-07-21 19:30:30,3599.0,18.5031, +2016-07-21 19:40:33,3599.0,18.5374, +2016-07-21 19:45:00,,,21.1273 +2016-07-21 19:50:43,3599.0,18.5374, +2016-07-21 20:00:00,,,21.094 +2016-07-21 20:00:46,3599.0,18.5374, +2016-07-21 20:10:49,3599.0,18.508, +2016-07-21 20:15:00,,,21.0959 +2016-07-21 20:20:52,3599.0,18.5423, +2016-07-21 20:30:00,,,21.1348 +2016-07-21 20:30:54,3599.0,18.544, +2016-07-21 20:40:57,3599.0,18.544, +2016-07-21 20:45:00,,,21.1348 +2016-07-21 20:51:00,3599.0,18.5783, +2016-07-21 21:00:00,,,21.133000000000006 +2016-07-21 21:01:03,3599.0,18.58, +2016-07-21 21:11:06,3599.0,18.58, +2016-07-21 21:15:00,,,21.1348 +2016-07-21 21:21:09,3599.0,18.5783, +2016-07-21 21:30:00,,,21.0959 +2016-07-21 21:31:12,3599.0,18.58, +2016-07-21 21:41:15,3599.0,18.58, +2016-07-21 21:45:00,,,21.133000000000006 +2016-07-21 21:51:17,3599.0,18.58, +2016-07-21 22:00:00,,,21.094 +2016-07-21 22:01:20,3599.0,18.58, +2016-07-21 22:11:23,3599.0,18.5783, +2016-07-21 22:15:00,,,21.0959 +2016-07-21 22:21:26,3599.0,18.58, +2016-07-21 22:30:00,,,21.1348 +2016-07-21 22:31:29,3599.0,18.544, +2016-07-21 22:41:31,3599.0,18.5849, +2016-07-21 22:45:00,,,21.1348 +2016-07-21 22:51:34,3599.0,18.5833, +2016-07-21 23:00:00,,,21.133000000000006 +2016-07-21 23:01:37,3599.0,18.58, +2016-07-21 23:11:40,3599.0,18.5833, +2016-07-21 23:15:00,,,21.0996 +2016-07-21 23:21:43,3599.0,18.58, +2016-07-21 23:30:00,,,20.9774 +2016-07-21 23:31:45,3599.0,18.616, +2016-07-21 23:41:48,3599.0,18.58, +2016-07-21 23:45:00,,,21.0162 +2016-07-21 23:51:51,3599.0,18.5783, +2016-07-22 00:00:00,,, +2016-07-22 00:15:00,,, +2016-07-22 00:30:00,,, +2016-07-22 00:45:00,,, +2016-07-22 01:00:00,,,20.9849 +2016-07-22 01:02:11,3599.0,18.58, +2016-07-22 01:12:13,3599.0,18.616, +2016-07-22 01:15:00,,,21.0218 +2016-07-22 01:22:16,3599.0,18.5783, +2016-07-22 01:30:00,,,20.9849 +2016-07-22 01:32:19,3599.0,18.58, +2016-07-22 01:42:22,3599.0,18.58, +2016-07-22 01:45:00,,,20.983 +2016-07-22 01:52:25,3599.0,18.616, +2016-07-22 02:00:00,,,20.9849 +2016-07-22 02:02:27,3599.0,18.5783, +2016-07-22 02:12:30,3599.0,18.616, +2016-07-22 02:15:00,,,20.983 +2016-07-22 02:22:33,3599.0,18.616, +2016-07-22 02:30:00,,,20.9849 +2016-07-22 02:32:36,3599.0,18.5783, +2016-07-22 02:42:38,3599.0,18.58, +2016-07-22 02:45:00,,,21.0218 +2016-07-22 02:52:41,3599.0,18.5783, +2016-07-22 03:00:00,,,20.9849 +2016-07-22 03:02:44,3599.0,18.5783, +2016-07-22 03:12:46,3599.0,18.616, +2016-07-22 03:15:00,,,20.9849 +2016-07-22 03:22:49,3599.0,18.616, +2016-07-22 03:30:00,,,20.983 +2016-07-22 03:32:52,3599.0,18.5783, +2016-07-22 03:42:54,3599.0,18.616, +2016-07-22 03:45:00,,,21.0237 +2016-07-22 03:52:57,3599.0,18.6094, +2016-07-22 04:00:00,,,21.0237 +2016-07-22 04:03:00,3599.0,18.6143, +2016-07-22 04:13:03,3599.0,18.6094, +2016-07-22 04:15:00,,,20.983 +2016-07-22 04:23:05,3599.0,18.6094, +2016-07-22 04:30:00,,,21.0237 +2016-07-22 04:33:08,3599.0,18.5733, +2016-07-22 04:43:11,3599.0,18.611, +2016-07-22 04:45:00,,,21.0237 +2016-07-22 04:53:13,3599.0,18.5733, +2016-07-22 05:00:00,,,20.983 +2016-07-22 05:03:16,3599.0,18.6094, +2016-07-22 05:13:19,3599.0,18.5733, +2016-07-22 05:15:00,,,21.0237 +2016-07-22 05:23:22,3599.0,18.575, +2016-07-22 05:30:00,,,20.9849 +2016-07-22 05:33:24,3599.0,18.5733, +2016-07-22 05:43:27,3599.0,18.6094, +2016-07-22 05:45:00,,,20.983 +2016-07-22 05:53:29,3599.0,18.6094, +2016-07-22 06:00:00,,,21.0237 +2016-07-22 06:03:32,3599.0,18.6094, +2016-07-22 06:13:34,3599.0,18.5733, +2016-07-22 06:15:00,,,20.9849 +2016-07-22 06:23:44,3599.0,18.575, +2016-07-22 06:30:00,,,20.9849 +2016-07-22 06:33:47,3599.0,18.611, +2016-07-22 06:43:50,3599.0,18.575, +2016-07-22 06:45:00,,,20.9849 +2016-07-22 06:53:52,3599.0,18.6094, +2016-07-22 07:00:00,,,20.9849 +2016-07-22 07:03:55,3599.0,18.575, +2016-07-22 07:13:58,3599.0,18.5733, +2016-07-22 07:15:00,,,21.0237 +2016-07-22 07:24:01,3599.0,18.5733, +2016-07-22 07:30:00,,,21.0237 +2016-07-22 07:34:03,3599.0,18.5733, +2016-07-22 07:44:06,3599.0,18.611, +2016-07-22 07:45:00,,,20.983 +2016-07-22 07:54:09,3599.0,18.5733, +2016-07-22 08:00:00,,,20.983 +2016-07-22 08:04:11,3599.0,18.611, +2016-07-22 08:14:14,3599.0,18.57, +2016-07-22 08:15:00,,,21.0237 +2016-07-22 08:24:17,3599.0,18.5684, +2016-07-22 08:30:00,,,20.983 +2016-07-22 08:34:19,3599.0,18.6061, +2016-07-22 08:44:22,3599.0,18.6061, +2016-07-22 08:45:00,,,21.0237 +2016-07-22 08:54:25,3599.0,18.57, +2016-07-22 09:00:00,,,21.0237 +2016-07-22 09:04:28,3599.0,18.5684, +2016-07-22 09:14:31,3599.0,18.6405, +2016-07-22 09:15:00,,,21.0237 +2016-07-22 09:24:33,3599.0,18.57, +2016-07-22 09:30:00,,,21.0237 +2016-07-22 09:34:36,3599.0,18.5341, +2016-07-22 09:44:39,3599.0,18.6044, +2016-07-22 09:45:00,,,20.983 +2016-07-22 09:54:42,3599.0,18.4622, +2016-07-22 10:00:00,,,20.9849 +2016-07-22 10:04:44,3599.0,18.5341, +2016-07-22 10:14:47,3599.0,18.4622, +2016-07-22 10:15:00,,,21.0237 +2016-07-22 10:24:50,3599.0,18.4606, +2016-07-22 10:30:00,,,20.9849 +2016-07-22 10:34:53,3599.0,18.4606, +2016-07-22 10:44:56,3599.0,18.4247, +2016-07-22 10:45:00,,,20.9849 +2016-07-22 10:54:59,3599.0,18.3223, +2016-07-22 11:00:00,,,21.0237 +2016-07-22 11:05:02,3599.0,18.3531, +2016-07-22 11:15:00,,,21.0218 +2016-07-22 11:15:04,3599.0,18.3938, +2016-07-22 11:25:07,3599.0,18.3597, +2016-07-22 11:30:00,,,20.9849 +2016-07-22 11:35:10,3599.0,18.2493, +2016-07-22 11:45:00,,,21.0237 +2016-07-22 11:45:13,3599.0,18.2866, +2016-07-22 11:55:16,3599.0,18.2882, +2016-07-22 12:00:00,,,20.983 +2016-07-22 12:05:19,3599.0,18.2169, +2016-07-22 12:15:00,,,20.9849 +2016-07-22 12:15:22,3599.0,18.2509, +2016-07-22 12:25:25,3599.0,18.2526, +2016-07-22 12:30:00,,,21.0237 +2016-07-22 12:35:28,3599.0,18.2866, +2016-07-22 12:45:00,,,20.9849 +2016-07-22 12:45:31,3599.0,18.1442, +2016-07-22 12:55:34,3599.0,18.1813, +2016-07-22 13:00:00,,,21.0218 +2016-07-22 13:05:37,3599.0,18.1442, +2016-07-22 13:15:00,,,20.9849 +2016-07-22 13:15:40,3599.0,18.0394, +2016-07-22 13:25:44,3599.0,18.0378, +2016-07-22 13:30:00,,,21.0218 +2016-07-22 13:35:47,3599.0,18.0426, +2016-07-22 13:45:00,,,21.0237 +2016-07-22 13:45:50,3599.0,18.0426, +2016-07-22 13:55:53,3599.0,18.0426, +2016-07-22 14:00:00,,,20.9849 +2016-07-22 14:05:56,3599.0,18.0426, +2016-07-22 14:15:00,,,20.9849 +2016-07-22 14:15:59,3599.0,17.9044, +2016-07-22 14:26:02,3599.0,17.9365, +2016-07-22 14:30:00,,,20.9055 +2016-07-22 14:36:05,3599.0,17.9044, +2016-07-22 14:45:00,,,20.9074 +2016-07-22 14:46:08,3599.0,17.906, +2016-07-22 14:56:11,3599.0,17.9397, +2016-07-22 15:00:00,,,20.8668 +2016-07-22 15:06:14,3599.0,17.9044, +2016-07-22 15:15:00,,,20.8668 +2016-07-22 15:16:17,3599.0,17.906, +2016-07-22 15:26:20,3599.0,17.9044, +2016-07-22 15:30:00,,,20.9074 +2016-07-22 15:36:23,3599.0,17.9397, +2016-07-22 15:45:00,,,20.9074 +2016-07-22 15:46:26,3599.0,17.9044, +2016-07-22 15:56:29,3599.0,17.9044, +2016-07-22 16:00:00,,,20.8687 +2016-07-22 16:06:32,3599.0,17.8692, +2016-07-22 16:15:00,,,20.8687 +2016-07-22 16:16:35,3599.0,17.9044, +2016-07-22 16:26:38,3599.0,17.9397, +2016-07-22 16:30:00,,,20.9055 +2016-07-22 16:36:41,3599.0,17.9461, +2016-07-22 16:45:00,,,20.9074 +2016-07-22 16:46:44,3599.0,17.9092, +2016-07-22 16:56:47,3599.0,17.9799, +2016-07-22 17:00:00,,,20.9074 +2016-07-22 17:06:50,3599.0,17.9108, +2016-07-22 17:15:00,,,20.8687 +2016-07-22 17:16:53,3599.0,17.9108, +2016-07-22 17:26:55,3599.0,17.9815, +2016-07-22 17:30:00,,,20.9074 +2016-07-22 17:36:58,3599.0,17.9445, +2016-07-22 17:45:00,,,20.9442 +2016-07-22 17:47:01,3599.0,18.0152, +2016-07-22 17:57:04,3599.0,18.0506, +2016-07-22 18:00:00,,,20.9074 +2016-07-22 18:07:07,3599.0,18.0861, +2016-07-22 18:15:00,,,20.8687 +2016-07-22 18:17:09,3599.0,18.0506, +2016-07-22 18:27:12,3599.0,18.0506, +2016-07-22 18:30:00,,,20.9074 +2016-07-22 18:37:15,3599.0,18.0152, +2016-07-22 18:45:00,,,20.9074 +2016-07-22 18:47:18,3599.0,18.0506, +2016-07-22 18:57:20,3599.0,18.0522, +2016-07-22 19:00:00,,,20.9055 +2016-07-22 19:07:30,3599.0,17.9799, +2016-07-22 19:15:00,,,20.8687 +2016-07-22 19:17:33,3599.0,18.0861, +2016-07-22 19:27:36,3599.0,18.0506, +2016-07-22 19:30:00,,,20.9461 +2016-07-22 19:37:38,3599.0,17.9799, +2016-07-22 19:45:00,,,20.9074 +2016-07-22 19:47:41,3599.0,18.0506, +2016-07-22 19:57:44,3599.0,18.0506, +2016-07-22 20:00:00,,,20.9055 +2016-07-22 20:07:47,3599.0,18.0506, +2016-07-22 20:15:00,,,20.9074 +2016-07-22 20:17:49,3599.0,18.0168, +2016-07-22 20:27:52,3599.0,18.0152, +2016-07-22 20:30:00,,,20.9461 +2016-07-22 20:37:55,3599.0,18.0152, +2016-07-22 20:45:00,,,20.8687 +2016-07-22 20:47:58,3599.0,18.0458, +2016-07-22 20:58:00,3599.0,18.0152, +2016-07-22 21:00:00,,,20.8743 +2016-07-22 21:08:03,3599.0,18.0104, +2016-07-22 21:15:00,,,20.9517 +2016-07-22 21:18:06,3599.0,18.0104, +2016-07-22 21:28:08,3599.0,17.9751, +2016-07-22 21:30:00,,,20.9074 +2016-07-22 21:38:11,3599.0,18.0458, +2016-07-22 21:45:00,,,20.9517 +2016-07-22 21:48:14,3599.0,18.0104, +2016-07-22 21:58:16,3599.0,17.9767, +2016-07-22 22:00:00,,,20.9517 +2016-07-22 22:08:19,3599.0,18.0458, +2016-07-22 22:15:00,,,20.9129 +2016-07-22 22:18:22,3599.0,18.0474, +2016-07-22 22:28:25,3599.0,18.0458, +2016-07-22 22:30:00,,,20.9129 +2016-07-22 22:38:27,3599.0,18.0458, +2016-07-22 22:45:00,,,20.9498 +2016-07-22 22:48:30,3599.0,18.0458, +2016-07-22 22:58:33,3599.0,18.0829, +2016-07-22 23:00:00,,,20.9129 +2016-07-22 23:08:35,3599.0,18.0458, +2016-07-22 23:15:00,,,20.9129 +2016-07-22 23:18:38,3599.0,18.0458, +2016-07-22 23:28:41,3599.0,18.1167, +2016-07-22 23:30:00,,,20.9129 +2016-07-22 23:38:43,3599.0,18.1539, +2016-07-22 23:45:00,,,20.8743 +2016-07-22 23:48:46,3599.0,18.0829, +2016-07-22 23:58:49,3599.0,18.1167, +2016-07-23 00:00:00,,,20.9517 +2016-07-23 00:08:51,3599.0,18.1539, +2016-07-23 00:15:00,,,20.9129 +2016-07-23 00:18:54,3599.0,18.1523, +2016-07-23 00:28:56,3599.0,18.1539, +2016-07-23 00:30:00,,,20.9498 +2016-07-23 00:38:59,3599.0,18.0813, +2016-07-23 00:45:00,,,20.9129 +2016-07-23 00:49:02,3599.0,18.1523, +2016-07-23 00:59:04,3599.0,18.1119, +2016-07-23 01:00:00,,,20.9517 +2016-07-23 01:09:07,3599.0,18.1474, +2016-07-23 01:15:00,,,20.9129 +2016-07-23 01:19:10,3599.0,18.1506, +2016-07-23 01:29:12,3599.0,18.1474, +2016-07-23 01:30:00,,,20.9185 +2016-07-23 01:39:15,3599.0,18.183, +2016-07-23 01:45:00,,,20.9129 +2016-07-23 01:49:17,3599.0,18.1135, +2016-07-23 01:59:20,3599.0,18.183, +2016-07-23 02:00:00,,,20.9129 +2016-07-23 02:09:22,3599.0,18.149, +2016-07-23 02:15:00,,,20.9129 +2016-07-23 02:19:25,3599.0,18.149, +2016-07-23 02:29:27,3599.0,18.2153, +2016-07-23 02:30:00,,,20.9129 +2016-07-23 02:39:30,3599.0,18.1846, +2016-07-23 02:45:00,,,20.9517 +2016-07-23 02:49:33,3599.0,18.1797, +2016-07-23 02:59:35,3599.0,18.1442, +2016-07-23 03:00:00,,,20.9129 +2016-07-23 03:09:38,3599.0,18.1797, +2016-07-23 03:15:00,,,20.878 +2016-07-23 03:19:40,3599.0,18.1442, +2016-07-23 03:29:43,3599.0,18.1797, +2016-07-23 03:30:00,,,20.9185 +2016-07-23 03:39:46,3599.0,18.1781, +2016-07-23 03:45:00,,,20.9498 +2016-07-23 03:49:48,3599.0,18.1781, +2016-07-23 03:59:51,3599.0,18.1442, +2016-07-23 04:00:00,,,20.9554 +2016-07-23 04:09:53,3599.0,18.1797, +2016-07-23 04:15:00,,,20.9185 +2016-07-23 04:19:56,3599.0,18.1442, +2016-07-23 04:29:58,3599.0,18.1442, +2016-07-23 04:30:00,,,20.9129 +2016-07-23 04:40:01,3599.0,18.1797, +2016-07-23 04:45:00,,,20.8798 +2016-07-23 04:50:03,3599.0,18.2153, +2016-07-23 05:00:00,,,20.9498 +2016-07-23 05:00:13,3599.0,18.2153, +2016-07-23 05:10:16,3599.0,18.1442, +2016-07-23 05:15:00,,,20.9517 +2016-07-23 05:20:18,3599.0,18.1797, +2016-07-23 05:30:00,,,20.9573 +2016-07-23 05:30:21,3599.0,18.1813, +2016-07-23 05:40:23,3599.0,18.1442, +2016-07-23 05:45:00,,,20.8817 +2016-07-23 05:50:26,3599.0,18.1749, +2016-07-23 06:00:00,,,20.8798 +2016-07-23 06:00:29,3599.0,18.1393, +2016-07-23 06:10:31,3599.0,18.1749, +2016-07-23 06:15:00,,,20.8798 +2016-07-23 06:20:34,3599.0,18.1749, +2016-07-23 06:30:00,,,20.9185 +2016-07-23 06:30:36,3599.0,18.1749, +2016-07-23 06:40:39,3599.0,18.1749, +2016-07-23 06:45:00,,,20.9185 +2016-07-23 06:50:41,3599.0,18.1765, +2016-07-23 07:00:00,,,20.9573 +2016-07-23 07:00:44,3599.0,18.1749, +2016-07-23 07:10:47,3599.0,18.1749, +2016-07-23 07:15:00,,,20.9204 +2016-07-23 07:20:49,3599.0,18.1749, +2016-07-23 07:30:00,,,20.8817 +2016-07-23 07:30:52,3599.0,18.1038, +2016-07-23 07:40:54,3599.0,18.1055, +2016-07-23 07:45:00,,,20.9129 +2016-07-23 07:50:57,3599.0,18.0684, +2016-07-23 08:00:00,,,20.8798 +2016-07-23 08:01:00,3599.0,18.1393, +2016-07-23 08:11:02,3599.0,18.1038, +2016-07-23 08:15:00,,,20.9554 +2016-07-23 08:21:05,3599.0,18.07, +2016-07-23 08:30:00,,,20.8045 +2016-07-23 08:31:07,3599.0,18.0668, +2016-07-23 08:41:10,3599.0,18.0684, +2016-07-23 08:45:00,,,20.7641 +2016-07-23 08:51:13,3599.0,18.1055, +2016-07-23 09:00:00,,,20.8393 +2016-07-23 09:01:15,3599.0,18.0282, +2016-07-23 09:11:18,3599.0,17.9928, +2016-07-23 09:15:00,,,20.8393 +2016-07-23 09:21:20,3599.0,17.9222, +2016-07-23 09:30:00,,,20.8026 +2016-07-23 09:31:23,3599.0,17.9928, +2016-07-23 09:41:25,3599.0,17.9575, +2016-07-23 09:45:00,,,20.8026 +2016-07-23 09:51:28,3599.0,17.9928, +2016-07-23 10:00:00,,,20.8026 +2016-07-23 10:01:31,3599.0,17.9575, +2016-07-23 10:11:33,3599.0,17.9559, +2016-07-23 10:15:00,,,20.8356 +2016-07-23 10:21:36,3599.0,17.9575, +2016-07-23 10:30:00,,,20.8026 +2016-07-23 10:31:39,3599.0,17.9944, +2016-07-23 10:41:42,3599.0,17.9928, +2016-07-23 10:45:00,,,20.7971 +2016-07-23 10:51:44,3599.0,17.9591, +2016-07-23 11:00:00,,,20.8356 +2016-07-23 11:01:47,3599.0,18.0282, +2016-07-23 11:11:50,3599.0,17.9591, +2016-07-23 11:15:00,,,20.8338 +2016-07-23 11:21:53,3599.0,17.8917, +2016-07-23 11:30:00,,,20.7971 +2016-07-23 11:31:56,3599.0,17.8869, +2016-07-23 11:41:58,3599.0,17.8565, +2016-07-23 11:45:00,,,20.6816 +2016-07-23 11:52:01,3599.0,17.8917, +2016-07-23 12:00:00,,,20.6798 +2016-07-23 12:02:04,3599.0,17.7862, +2016-07-23 12:12:07,3599.0,17.7862, +2016-07-23 12:15:00,,,20.6816 +2016-07-23 12:22:09,3599.0,17.7862, +2016-07-23 12:30:00,,,20.6872 +2016-07-23 12:32:12,3599.0,17.7862, +2016-07-23 12:42:15,3599.0,17.7862, +2016-07-23 12:45:00,,,20.6488 +2016-07-23 12:52:18,3599.0,17.7877, +2016-07-23 13:00:00,,,20.6816 +2016-07-23 13:02:21,3599.0,17.715999999999994, +2016-07-23 13:12:23,3599.0,17.680999999999994, +2016-07-23 13:15:00,,,20.6816 +2016-07-23 13:22:26,3599.0,17.680999999999994, +2016-07-23 13:30:00,,,20.6816 +2016-07-23 13:32:29,3599.0,17.646, +2016-07-23 13:42:32,3599.0,17.715999999999994, +2016-07-23 13:45:00,,,20.6853 +2016-07-23 13:52:34,3599.0,17.680999999999994, +2016-07-23 14:00:00,,,20.6798 +2016-07-23 14:02:37,3599.0,17.646, +2016-07-23 14:12:40,3599.0,17.680999999999994, +2016-07-23 14:15:00,,,20.7201 +2016-07-23 14:22:43,3599.0,17.611, +2016-07-23 14:30:00,,,20.6816 +2016-07-23 14:32:46,3599.0,17.5761, +2016-07-23 14:42:49,3599.0,17.5808, +2016-07-23 14:45:00,,,20.6816 +2016-07-23 14:52:51,3599.0,17.6507, +2016-07-23 15:00:00,,,20.6872 +2016-07-23 15:02:54,3599.0,17.5808, +2016-07-23 15:12:57,3599.0,17.5111, +2016-07-23 15:15:00,,,20.6798 +2016-07-23 15:23:00,3599.0,17.5111, +2016-07-23 15:30:00,,,20.6816 +2016-07-23 15:33:03,3599.0,17.5111, +2016-07-23 15:43:06,3599.0,17.5111, +2016-07-23 15:45:00,,,20.6816 +2016-07-23 15:53:09,3599.0,17.4763, +2016-07-23 16:00:00,,,20.6816 +2016-07-23 16:03:12,3599.0,17.4763, +2016-07-23 16:13:15,3599.0,17.5111, +2016-07-23 16:15:00,,,20.6816 +2016-07-23 16:23:18,3599.0,17.4415, +2016-07-23 16:30:00,,,20.6816 +2016-07-23 16:33:21,3599.0,17.4778, +2016-07-23 16:43:24,3599.0,17.4083, +2016-07-23 16:45:00,,,20.6798 +2016-07-23 16:53:27,3599.0,17.4067, +2016-07-23 17:00:00,,,20.6798 +2016-07-23 17:03:30,3599.0,17.372, +2016-07-23 17:13:33,3599.0,17.4114, +2016-07-23 17:15:00,,,20.6816 +2016-07-23 17:23:35,3599.0,17.3767, +2016-07-23 17:30:00,,,20.5667 +2016-07-23 17:33:38,3599.0,17.3767, +2016-07-23 17:43:41,3599.0,17.4114, +2016-07-23 17:45:00,,,20.5667 +2016-07-23 17:53:44,3599.0,17.4114, +2016-07-23 18:00:00,,,20.5667 +2016-07-23 18:03:47,3599.0,17.4129, +2016-07-23 18:13:50,3599.0,17.4114, +2016-07-23 18:15:00,,,20.5667 +2016-07-23 18:23:53,3599.0,17.3798, +2016-07-23 18:30:00,,,20.5722 +2016-07-23 18:33:56,3599.0,17.416, +2016-07-23 18:43:59,3599.0,17.3813, +2016-07-23 18:45:00,,,20.5667 +2016-07-23 18:54:02,3599.0,17.416, +2016-07-23 19:00:00,,,20.5667 +2016-07-23 19:04:05,3599.0,17.4145, +2016-07-23 19:14:15,3599.0,17.4145, +2016-07-23 19:15:00,,,20.5704 +2016-07-23 19:24:18,3599.0,17.416, +2016-07-23 19:30:00,,,20.5649 +2016-07-23 19:34:21,3599.0,17.4145, +2016-07-23 19:44:24,3599.0,17.3798, +2016-07-23 19:45:00,,,20.5722 +2016-07-23 19:54:27,3599.0,17.4145, +2016-07-23 20:00:00,,,20.5667 +2016-07-23 20:04:30,3599.0,17.416, +2016-07-23 20:14:33,3599.0,17.4145, +2016-07-23 20:15:00,,,20.6105 +2016-07-23 20:24:36,3599.0,17.3813, +2016-07-23 20:30:00,,,20.5704 +2016-07-23 20:34:39,3599.0,17.5189, +2016-07-23 20:44:42,3599.0,17.5189, +2016-07-23 20:45:00,,,20.605 +2016-07-23 20:54:44,3599.0,17.5189, +2016-07-23 21:00:00,,,20.5704 +2016-07-23 21:04:47,3599.0,17.5189, +2016-07-23 21:14:50,3599.0,17.5204, +2016-07-23 21:15:00,,,20.5722 +2016-07-23 21:24:53,3599.0,17.5568, +2016-07-23 21:30:00,,,20.534 +2016-07-23 21:34:56,3599.0,17.484, +2016-07-23 21:44:59,3599.0,17.5204, +2016-07-23 21:45:00,,,20.5722 +2016-07-23 21:55:02,3599.0,17.5204, +2016-07-23 22:00:00,,,20.5722 +2016-07-23 22:05:04,3599.0,17.5204, +2016-07-23 22:15:00,,,20.5722 +2016-07-23 22:15:07,3599.0,17.5189, +2016-07-23 22:25:10,3599.0,17.5204, +2016-07-23 22:30:00,,,20.5722 +2016-07-23 22:35:13,3599.0,17.5189, +2016-07-23 22:45:00,,,20.5722 +2016-07-23 22:45:16,3599.0,17.5204, +2016-07-23 22:55:19,3599.0,17.5537, +2016-07-23 23:00:00,,,20.5704 +2016-07-23 23:05:21,3599.0,17.5553, +2016-07-23 23:15:00,,,20.5722 +2016-07-23 23:15:24,3599.0,17.5204, +2016-07-23 23:25:27,3599.0,17.5204, +2016-07-23 23:30:00,,,20.5722 +2016-07-23 23:35:30,3599.0,17.5189, +2016-07-23 23:45:00,,,20.5722 +2016-07-23 23:45:33,3599.0,17.5189, +2016-07-23 23:55:35,3599.0,17.5553, +2016-07-24 00:00:00,,,20.5704 +2016-07-24 00:05:38,3599.0,17.5189, +2016-07-24 00:15:00,,,20.5722 +2016-07-24 00:15:41,3599.0,17.5553, +2016-07-24 00:25:44,3599.0,17.5553, +2016-07-24 00:30:00,,,20.5722 +2016-07-24 00:35:47,3599.0,17.5189, +2016-07-24 00:45:00,,,20.5722 +2016-07-24 00:45:49,3599.0,17.5189, +2016-07-24 00:55:52,3599.0,17.5204, +2016-07-24 01:00:00,,,20.6105 +2016-07-24 01:05:55,3599.0,17.5189, +2016-07-24 01:15:00,,,20.5722 +2016-07-24 01:15:57,3599.0,17.5204, +2016-07-24 01:26:00,3599.0,17.5553, +2016-07-24 01:30:00,,,20.5758 +2016-07-24 01:36:03,3599.0,17.5189, +2016-07-24 01:45:00,,,20.6105 +2016-07-24 01:46:06,3599.0,17.6251, +2016-07-24 01:56:08,3599.0,17.6601, +2016-07-24 02:00:00,,,20.5722 +2016-07-24 02:06:11,3599.0,17.5886, +2016-07-24 02:15:00,,,20.5722 +2016-07-24 02:16:13,3599.0,17.6601, +2016-07-24 02:26:16,3599.0,17.6236, +2016-07-24 02:30:00,,,20.6105 +2016-07-24 02:36:19,3599.0,17.6601, +2016-07-24 02:45:00,,,20.5722 +2016-07-24 02:46:22,3599.0,17.5886, +2016-07-24 02:56:24,3599.0,17.6904, +2016-07-24 03:00:00,,,20.5722 +2016-07-24 03:06:27,3599.0,17.6554, +2016-07-24 03:15:00,,,20.5758 +2016-07-24 03:16:30,3599.0,17.657, +2016-07-24 03:26:32,3599.0,17.5855, +2016-07-24 03:30:00,,,20.5704 +2016-07-24 03:36:35,3599.0,17.6554, +2016-07-24 03:45:00,,,20.5758 +2016-07-24 03:46:37,3599.0,17.6554, +2016-07-24 03:56:40,3599.0,17.6554, +2016-07-24 04:00:00,,,20.6178 +2016-07-24 04:06:43,3599.0,17.6554, +2016-07-24 04:15:00,,,20.6086 +2016-07-24 04:16:45,3599.0,17.6554, +2016-07-24 04:26:48,3599.0,17.6554, +2016-07-24 04:30:00,,,20.5722 +2016-07-24 04:36:51,3599.0,17.657, +2016-07-24 04:45:00,,,20.5758 +2016-07-24 04:46:53,3599.0,17.5855, +2016-07-24 04:56:56,3599.0,17.6554, +2016-07-24 05:00:00,,,20.5722 +2016-07-24 05:06:59,3599.0,17.6189, +2016-07-24 05:15:00,,,20.5758 +2016-07-24 05:17:02,3599.0,17.5855, +2016-07-24 05:27:04,3599.0,17.6554, +2016-07-24 05:30:00,,,20.5758 +2016-07-24 05:37:07,3599.0,17.5824, +2016-07-24 05:45:00,,,20.6105 +2016-07-24 05:47:10,3599.0,17.6507, +2016-07-24 05:57:12,3599.0,17.6173, +2016-07-24 06:00:00,,,20.6141 +2016-07-24 06:07:15,3599.0,17.6507, +2016-07-24 06:15:00,,,20.5758 +2016-07-24 06:17:18,3599.0,17.6507, +2016-07-24 06:27:20,3599.0,17.6507, +2016-07-24 06:30:00,,,20.5758 +2016-07-24 06:37:23,3599.0,17.6507, +2016-07-24 06:45:00,,,20.5704 +2016-07-24 06:47:26,3599.0,17.6507, +2016-07-24 06:57:29,3599.0,17.6157, +2016-07-24 07:00:00,,,20.5758 +2016-07-24 07:07:31,3599.0,17.6507, +2016-07-24 07:15:00,,,20.5758 +2016-07-24 07:17:34,3599.0,17.6507, +2016-07-24 07:27:36,3599.0,17.6157, +2016-07-24 07:30:00,,,20.5758 +2016-07-24 07:37:39,3599.0,17.6507, +2016-07-24 07:45:00,,,20.5758 +2016-07-24 07:47:42,3599.0,17.6157, +2016-07-24 07:57:44,3599.0,17.6157, +2016-07-24 08:00:00,,,20.6141 +2016-07-24 08:07:47,3599.0,17.6507, +2016-07-24 08:15:00,,,20.6141 +2016-07-24 08:17:50,3599.0,17.6507, +2016-07-24 08:27:52,3599.0,17.6157, +2016-07-24 08:30:00,,,20.5777 +2016-07-24 08:37:55,3599.0,17.5459, +2016-07-24 08:45:00,,,20.5758 +2016-07-24 08:47:58,3599.0,17.5459, +2016-07-24 08:58:00,3599.0,17.5111, +2016-07-24 09:00:00,,,20.6141 +2016-07-24 09:08:03,3599.0,17.5459, +2016-07-24 09:15:00,,,20.5758 +2016-07-24 09:18:06,3599.0,17.5459, +2016-07-24 09:28:09,3599.0,17.5459, +2016-07-24 09:30:00,,,20.4994 +2016-07-24 09:38:11,3599.0,17.5459, +2016-07-24 09:45:00,,,20.4631 +2016-07-24 09:48:14,3599.0,17.5459, +2016-07-24 09:58:17,3599.0,17.4415, +2016-07-24 10:00:00,,,20.4994 +2016-07-24 10:08:20,3599.0,17.4067, +2016-07-24 10:15:00,,,20.4613 +2016-07-24 10:18:22,3599.0,17.4083, +2016-07-24 10:28:25,3599.0,17.4067, +2016-07-24 10:30:00,,,20.4613 +2016-07-24 10:38:28,3599.0,17.4067, +2016-07-24 10:45:00,,,20.4613 +2016-07-24 10:48:31,3599.0,17.4067, +2016-07-24 10:58:34,3599.0,17.4067, +2016-07-24 11:00:00,,,20.4631 +2016-07-24 11:08:37,3599.0,17.4067, +2016-07-24 11:15:00,,,20.4613 +2016-07-24 11:18:40,3599.0,17.3374, +2016-07-24 11:28:43,3599.0,17.3028, +2016-07-24 11:30:00,,,20.4631 +2016-07-24 11:38:46,3599.0,17.3012, +2016-07-24 11:45:00,,,20.4613 +2016-07-24 11:48:49,3599.0,17.3028, +2016-07-24 11:58:52,3599.0,17.3028, +2016-07-24 12:00:00,,,20.4613 +2016-07-24 12:08:55,3599.0,17.2682, +2016-07-24 12:15:00,,,20.4613 +2016-07-24 12:18:58,3599.0,17.3389, +2016-07-24 12:29:03,3599.0,17.2682, +2016-07-24 12:30:00,,,20.4613 +2016-07-24 12:39:06,3599.0,17.372, +2016-07-24 12:45:00,,,20.3472 +2016-07-24 12:49:09,3599.0,17.2037, +2016-07-24 12:59:12,3599.0,17.2336, +2016-07-24 13:00:00,,,20.387 +2016-07-24 13:09:15,3599.0,17.2382, +2016-07-24 13:15:00,,,20.3472 +2016-07-24 13:19:18,3599.0,17.2022, +2016-07-24 13:29:21,3599.0,17.2382, +2016-07-24 13:30:00,,,20.3852 +2016-07-24 13:39:24,3599.0,17.2413, +2016-07-24 13:45:00,,,20.349 +2016-07-24 13:49:27,3599.0,17.2413, +2016-07-24 13:59:30,3599.0,17.1393, +2016-07-24 14:00:00,,,20.3472 +2016-07-24 14:09:33,3599.0,17.1034, +2016-07-24 14:15:00,,,20.3472 +2016-07-24 14:19:36,3599.0,17.1723, +2016-07-24 14:29:39,3599.0,17.069000000000006, +2016-07-24 14:30:00,,,20.3472 +2016-07-24 14:39:42,3599.0,17.1378, +2016-07-24 14:45:00,,,20.3093 +2016-07-24 14:49:45,3599.0,17.1378, +2016-07-24 14:59:48,3599.0,17.1393, +2016-07-24 15:00:00,,,20.3852 +2016-07-24 15:09:51,3599.0,17.1393, +2016-07-24 15:15:00,,,20.3472 +2016-07-24 15:19:54,3599.0,17.1378, +2016-07-24 15:29:57,3599.0,17.1034, +2016-07-24 15:30:00,,,20.3472 +2016-07-24 15:40:00,3599.0,17.1378, +2016-07-24 15:45:00,,,20.3472 +2016-07-24 15:50:03,3599.0,17.1034, +2016-07-24 16:00:00,,,20.2732 +2016-07-24 16:00:06,3599.0,17.1034, +2016-07-24 16:10:09,3599.0,17.1424, +2016-07-24 16:15:00,,,20.2714 +2016-07-24 16:20:12,3599.0,17.1378, +2016-07-24 16:30:00,,,20.2732 +2016-07-24 16:30:15,3599.0,17.1424, +2016-07-24 16:40:18,3599.0,17.0392, +2016-07-24 16:45:00,,,20.2714 +2016-07-24 16:50:21,3599.0,17.0736, +2016-07-24 17:00:00,,,20.2335 +2016-07-24 17:00:24,3599.0,17.0392, +2016-07-24 17:10:27,3599.0,17.0049, +2016-07-24 17:15:00,,,20.2714 +2016-07-24 17:20:30,3599.0,17.0049, +2016-07-24 17:30:00,,,20.1958 +2016-07-24 17:30:33,3599.0,17.0407, +2016-07-24 17:40:36,3599.0,17.0392, +2016-07-24 17:45:00,,,20.2335 +2016-07-24 17:50:39,3599.0,17.0407, +2016-07-24 18:00:00,,,20.2714 +2016-07-24 18:00:42,3599.0,17.0049, +2016-07-24 18:10:45,3599.0,17.0392, +2016-07-24 18:15:00,,,20.1958 +2016-07-24 18:20:48,3599.0,17.0392, +2016-07-24 18:30:00,,,20.2714 +2016-07-24 18:30:51,3599.0,17.0392, +2016-07-24 18:40:54,3599.0,17.0407, +2016-07-24 18:45:00,,,20.2714 +2016-07-24 18:50:57,3599.0,17.0407, +2016-07-24 19:00:00,,,20.2732 +2016-07-24 19:01:00,3599.0,17.0392, +2016-07-24 19:11:03,3599.0,17.0392, +2016-07-24 19:15:00,,,20.2714 +2016-07-24 19:21:06,3599.0,17.0392, +2016-07-24 19:30:00,,,20.2714 +2016-07-24 19:31:09,3599.0,17.0049, +2016-07-24 19:41:12,3599.0,17.0392, +2016-07-24 19:45:00,,,20.2714 +2016-07-24 19:51:15,3599.0,17.0407, +2016-07-24 20:00:00,,,20.2714 +2016-07-24 20:01:18,3599.0,17.0392, +2016-07-24 20:11:21,3599.0,17.0392, +2016-07-24 20:15:00,,,20.1958 +2016-07-24 20:21:24,3599.0,17.0453, +2016-07-24 20:30:00,,,20.2335 +2016-07-24 20:31:27,3599.0,17.0049, +2016-07-24 20:41:30,3599.0,17.0453, +2016-07-24 20:45:00,,,20.2353 +2016-07-24 20:51:33,3599.0,17.0392, +2016-07-24 21:00:00,,,20.2714 +2016-07-24 21:01:36,3599.0,17.1439, +2016-07-24 21:11:39,3599.0,17.1814, +2016-07-24 21:15:00,,,20.2335 +2016-07-24 21:21:42,3599.0,17.1485, +2016-07-24 21:30:00,,,20.2335 +2016-07-24 21:31:44,3599.0,17.1814, +2016-07-24 21:41:46,3599.0,17.1814, +2016-07-24 21:45:00,,,20.2335 +2016-07-24 21:51:49,3599.0,17.1814, +2016-07-24 22:00:00,,,20.2714 +2016-07-24 22:01:52,3599.0,17.147000000000002, +2016-07-24 22:11:55,3599.0,17.1485, +2016-07-24 22:15:00,,,20.2714 +2016-07-24 22:21:58,3599.0,17.1814, +2016-07-24 22:30:00,,,20.2714 +2016-07-24 22:32:01,3599.0,17.147000000000002, +2016-07-24 22:42:04,3599.0,17.1485, +2016-07-24 22:45:00,,,20.2714 +2016-07-24 22:52:06,3599.0,17.1125, +2016-07-24 23:00:00,,,20.2732 +2016-07-24 23:02:09,3599.0,17.1424, +2016-07-24 23:12:12,3599.0,17.1485, +2016-07-24 23:15:00,,,20.2335 +2016-07-24 23:22:15,3599.0,17.183, +2016-07-24 23:30:00,,,20.1958 +2016-07-24 23:32:18,3599.0,17.1814, +2016-07-24 23:42:21,3599.0,17.1769, +2016-07-24 23:45:00,,,20.2714 +2016-07-24 23:52:24,3599.0,17.1485, +2016-07-25 00:00:00,,,20.2335 +2016-07-25 00:02:26,3599.0,17.183, +2016-07-25 00:12:29,3599.0,17.1485, +2016-07-25 00:15:00,,,20.2335 +2016-07-25 00:22:32,3599.0,17.1485, +2016-07-25 00:30:00,,,20.2335 +2016-07-25 00:32:35,3599.0,17.1769, +2016-07-25 00:42:38,3599.0,17.183, +2016-07-25 00:45:00,,,20.2714 +2016-07-25 00:52:40,3599.0,17.1784, +2016-07-25 01:00:00,,,20.2335 +2016-07-25 01:02:50,3599.0,17.1784, +2016-07-25 01:12:53,3599.0,17.1784, +2016-07-25 01:15:00,,,20.2335 +2016-07-25 01:22:56,3599.0,17.1769, +2016-07-25 01:30:00,,,20.2335 +2016-07-25 01:32:59,3599.0,17.1769, +2016-07-25 01:43:02,3599.0,17.1424, +2016-07-25 01:45:00,,,20.2714 +2016-07-25 01:53:04,3599.0,17.1769, +2016-07-25 02:00:00,,,20.2732 +2016-07-25 02:03:07,3599.0,17.1439, +2016-07-25 02:13:10,3599.0,17.1769, +2016-07-25 02:15:00,,,20.2714 +2016-07-25 02:23:13,3599.0,17.1784, +2016-07-25 02:30:00,,,20.2714 +2016-07-25 02:33:16,3599.0,17.1424, +2016-07-25 02:43:18,3599.0,17.1095, +2016-07-25 02:45:00,,,20.2714 +2016-07-25 02:53:21,3599.0,17.1424, +2016-07-25 03:00:00,,,20.2714 +2016-07-25 03:03:24,3599.0,17.1784, +2016-07-25 03:13:27,3599.0,17.1424, +2016-07-25 03:15:00,,,20.2714 +2016-07-25 03:23:30,3599.0,17.1424, +2016-07-25 03:30:00,,,20.2335 +2016-07-25 03:33:33,3599.0,17.1424, +2016-07-25 03:43:35,3599.0,17.1439, +2016-07-25 03:45:00,,,20.2714 +2016-07-25 03:53:38,3599.0,17.2459, +2016-07-25 04:00:00,,,20.2353 +2016-07-25 04:03:41,3599.0,17.2805, +2016-07-25 04:13:44,3599.0,17.2474, +2016-07-25 04:15:00,,,20.2732 +2016-07-25 04:23:47,3599.0,17.2805, +2016-07-25 04:30:00,,,20.2335 +2016-07-25 04:33:50,3599.0,17.2459, +2016-07-25 04:43:52,3599.0,17.2805, +2016-07-25 04:45:00,,,20.2714 +2016-07-25 04:53:55,3599.0,17.2805, +2016-07-25 05:00:00,,,20.2714 +2016-07-25 05:03:58,3599.0,17.2805, +2016-07-25 05:14:01,3599.0,17.3151, +2016-07-25 05:15:00,,,20.2714 +2016-07-25 05:24:04,3599.0,17.2805, +2016-07-25 05:30:00,,,20.2714 +2016-07-25 05:34:07,3599.0,17.2805, +2016-07-25 05:44:10,3599.0,17.3151, +2016-07-25 05:45:00,,,20.2732 +2016-07-25 05:54:13,3599.0,17.282, +2016-07-25 06:00:00,,,20.2714 +2016-07-25 06:04:16,3599.0,17.282, +2016-07-25 06:14:19,3599.0,17.2805, +2016-07-25 06:15:00,,,20.2714 +2016-07-25 06:24:21,3599.0,17.2459, +2016-07-25 06:30:00,,,20.2714 +2016-07-25 06:34:24,3599.0,17.2805, +2016-07-25 06:44:26,3599.0,17.3166, +2016-07-25 06:45:00,,,20.2335 +2016-07-25 06:54:36,3599.0,17.3105, +2016-07-25 07:00:00,,,20.2732 +2016-07-25 07:04:39,3599.0,17.3166, +2016-07-25 07:14:42,3599.0,17.2805, +2016-07-25 07:15:00,,,20.2714 +2016-07-25 07:24:45,3599.0,17.2413, +2016-07-25 07:30:00,,,20.2335 +2016-07-25 07:34:47,3599.0,17.1378, +2016-07-25 07:44:50,3599.0,17.1738, +2016-07-25 07:45:00,,,20.2714 +2016-07-25 07:54:53,3599.0,17.1723, +2016-07-25 08:00:00,,,20.2335 +2016-07-25 08:04:56,3599.0,17.1378, +2016-07-25 08:14:59,3599.0,17.1378, +2016-07-25 08:15:00,,,20.2714 +2016-07-25 08:25:02,3599.0,17.1723, +2016-07-25 08:30:00,,,20.2714 +2016-07-25 08:35:05,3599.0,17.1723, +2016-07-25 08:45:00,,,20.2732 +2016-07-25 08:45:08,3599.0,17.2083, +2016-07-25 08:55:10,3599.0,17.1723, +2016-07-25 09:00:00,,,20.2714 +2016-07-25 09:05:13,3599.0,17.0347, +2016-07-25 09:15:00,,,20.2732 +2016-07-25 09:15:16,3599.0,17.069000000000006, +2016-07-25 09:25:19,3599.0,17.069000000000006, +2016-07-25 09:30:00,,,20.2732 +2016-07-25 09:35:22,3599.0,17.1049, +2016-07-25 09:45:00,,,20.2714 +2016-07-25 09:45:25,3599.0,17.069000000000006, +2016-07-25 09:55:28,3599.0,17.0347, +2016-07-25 10:00:00,,,20.2714 +2016-07-25 10:05:31,3599.0,17.0347, +2016-07-25 10:15:00,,,20.2714 +2016-07-25 10:15:34,3599.0,17.0362, +2016-07-25 10:25:37,3599.0,17.069000000000006, +2016-07-25 10:30:00,,,20.2714 +2016-07-25 10:35:40,3599.0,17.0392, +2016-07-25 10:45:00,,,20.158 +2016-07-25 10:45:43,3599.0,16.9334, +2016-07-25 10:55:45,3599.0,16.9379, +2016-07-25 11:00:00,,,20.1203 +2016-07-25 11:05:48,3599.0,16.9364, +2016-07-25 11:15:00,,,20.158 +2016-07-25 11:15:51,3599.0,17.0049, +2016-07-25 11:25:54,3599.0,17.0064, +2016-07-25 11:30:00,,,20.158 +2016-07-25 11:35:57,3599.0,16.9364, +2016-07-25 11:45:00,,,20.1203 +2016-07-25 11:46:00,3599.0,16.868, +2016-07-25 11:56:03,3599.0,16.868, +2016-07-25 12:00:00,,,20.1203 +2016-07-25 12:06:06,3599.0,16.868, +2016-07-25 12:15:00,,,20.1203 +2016-07-25 12:16:09,3599.0,16.7331, +2016-07-25 12:26:12,3599.0,16.7657, +2016-07-25 12:30:00,,,20.158 +2016-07-25 12:36:15,3599.0,16.7998, +2016-07-25 12:45:00,,,20.158 +2016-07-25 12:46:18,3599.0,16.7657, +2016-07-25 12:56:21,3599.0,16.7657, +2016-07-25 13:00:00,,,20.0076 +2016-07-25 13:06:24,3599.0,16.7672, +2016-07-25 13:15:00,,,20.0076 +2016-07-25 13:16:27,3599.0,16.7717, +2016-07-25 13:26:30,3599.0,16.6637, +2016-07-25 13:30:00,,,20.0076 +2016-07-25 13:36:33,3599.0,16.6681, +2016-07-25 13:45:00,,,20.0094 +2016-07-25 13:46:36,3599.0,16.6342, +2016-07-25 13:56:39,3599.0,16.5664, +2016-07-25 14:00:00,,,20.0076 +2016-07-25 14:06:42,3599.0,16.5679, +2016-07-25 14:15:00,,,20.0076 +2016-07-25 14:16:45,3599.0,16.5679, +2016-07-25 14:26:49,3599.0,16.468, +2016-07-25 14:30:00,,,20.0094 +2016-07-25 14:36:52,3599.0,16.4695, +2016-07-25 14:45:00,,,20.0094 +2016-07-25 14:46:55,3599.0,16.4709, +2016-07-25 14:56:58,3599.0,16.4343, +2016-07-25 15:00:00,,,19.8952 +2016-07-25 15:07:01,3599.0,16.4695, +2016-07-25 15:15:00,,,19.938 +2016-07-25 15:17:04,3599.0,16.3684, +2016-07-25 15:27:07,3599.0,16.402, +2016-07-25 15:30:00,,,19.9326 +2016-07-25 15:37:10,3599.0,16.4035, +2016-07-25 15:45:00,,,19.9326 +2016-07-25 15:47:15,3599.0,16.3684, +2016-07-25 15:57:19,3599.0,16.3669, +2016-07-25 16:00:00,,,19.9326 +2016-07-25 16:07:22,3599.0,16.3684, +2016-07-25 16:15:00,,,19.8952 +2016-07-25 16:17:25,3599.0,16.3669, +2016-07-25 16:27:28,3599.0,16.3727, +2016-07-25 16:30:00,,,19.9006 +2016-07-25 16:37:31,3599.0,16.3727, +2016-07-25 16:45:00,,,19.8632 +2016-07-25 16:47:34,3599.0,16.3391, +2016-07-25 16:57:37,3599.0,16.4064, +2016-07-25 17:00:00,,,19.8952 +2016-07-25 17:07:41,3599.0,16.3727, +2016-07-25 17:15:00,,,19.9326 +2016-07-25 17:17:44,3599.0,16.4064, +2016-07-25 17:27:47,3599.0,16.3771, +2016-07-25 17:30:00,,,19.938 +2016-07-25 17:37:50,3599.0,16.4108, +2016-07-25 17:45:00,,,19.8952 +2016-07-25 17:47:53,3599.0,16.3771, +2016-07-25 17:57:56,3599.0,16.3771, +2016-07-25 18:00:00,,,19.8952 +2016-07-25 18:07:59,3599.0,16.3756, +2016-07-25 18:15:00,,,19.9397 +2016-07-25 18:18:02,3599.0,16.4108, +2016-07-25 18:28:05,3599.0,16.3771, +2016-07-25 18:30:00,,,19.938 +2016-07-25 18:38:08,3599.0,16.4093, +2016-07-25 18:45:00,,,19.9006 +2016-07-25 18:48:11,3599.0,16.3771, +2016-07-25 18:58:14,3599.0,16.4093, +2016-07-25 19:00:00,,,19.938 +2016-07-25 19:08:17,3599.0,16.3771, +2016-07-25 19:15:00,,,19.9006 +2016-07-25 19:18:20,3599.0,16.4108, +2016-07-25 19:28:23,3599.0,16.4445, +2016-07-25 19:30:00,,,19.9006 +2016-07-25 19:38:26,3599.0,16.3756, +2016-07-25 19:45:00,,,19.9772 +2016-07-25 19:48:29,3599.0,16.4108, +2016-07-25 19:58:32,3599.0,16.4152, +2016-07-25 20:00:00,,,19.9006 +2016-07-25 20:08:35,3599.0,16.3771, +2016-07-25 20:15:00,,,19.938 +2016-07-25 20:18:38,3599.0,16.3478, +2016-07-25 20:28:41,3599.0,16.4137, +2016-07-25 20:30:00,,,19.9006 +2016-07-25 20:38:44,3599.0,16.4152, +2016-07-25 20:45:00,,,19.9006 +2016-07-25 20:48:47,3599.0,16.3478, +2016-07-25 20:58:50,3599.0,16.3478, +2016-07-25 21:00:00,,,19.938 +2016-07-25 21:08:53,3599.0,16.4152, +2016-07-25 21:15:00,,,19.9006 +2016-07-25 21:18:56,3599.0,16.3815, +2016-07-25 21:28:59,3599.0,16.4152, +2016-07-25 21:30:00,,,19.9006 +2016-07-25 21:39:02,3599.0,16.4152, +2016-07-25 21:45:00,,,19.9023 +2016-07-25 21:49:05,3599.0,16.3815, +2016-07-25 21:59:07,3599.0,16.4152, +2016-07-25 22:00:00,,,19.9023 +2016-07-25 22:09:10,3599.0,16.4137, +2016-07-25 22:15:00,,,19.9754 +2016-07-25 22:19:13,3599.0,16.4137, +2016-07-25 22:29:16,3599.0,16.3464, +2016-07-25 22:30:00,,,19.938 +2016-07-25 22:39:19,3599.0,16.4137, +2016-07-25 22:45:00,,,19.938 +2016-07-25 22:49:22,3599.0,16.38, +2016-07-25 22:59:25,3599.0,16.3815, +2016-07-25 23:00:00,,,19.9076 +2016-07-25 23:09:28,3599.0,16.4152, +2016-07-25 23:15:00,,,19.9059 +2016-07-25 23:19:31,3599.0,16.4152, +2016-07-25 23:29:33,3599.0,16.4152, +2016-07-25 23:30:00,,,19.9023 +2016-07-25 23:39:36,3599.0,16.38, +2016-07-25 23:45:00,,,19.9433 +2016-07-25 23:49:39,3599.0,16.4152, +2016-07-25 23:59:42,3599.0,16.4152, +2016-07-26 00:00:00,,,19.9059 +2016-07-26 00:09:45,3599.0,16.3478, +2016-07-26 00:15:00,,,19.9807 +2016-07-26 00:19:48,3599.0,16.3815, +2016-07-26 00:29:50,3599.0,16.4489, +2016-07-26 00:30:00,,,19.9433 +2016-07-26 00:39:53,3599.0,16.3815, +2016-07-26 00:45:00,,,19.9451 +2016-07-26 00:49:55,3599.0,16.4137, +2016-07-26 00:59:58,3599.0,16.3478, +2016-07-26 01:00:00,,,19.9451 +2016-07-26 01:10:01,3599.0,16.3815, +2016-07-26 01:15:00,,,19.9433 +2016-07-26 01:20:03,3599.0,16.4152, +2016-07-26 01:30:00,,,19.9451 +2016-07-26 01:30:06,3599.0,16.3478, +2016-07-26 01:40:09,3599.0,16.5503, +2016-07-26 01:45:00,,,19.9433 +2016-07-26 01:50:11,3599.0,16.4826, +2016-07-26 02:00:00,,,19.9451 +2016-07-26 02:00:14,3599.0,16.5488, +2016-07-26 02:10:17,3599.0,16.4474, +2016-07-26 02:15:00,,,19.9433 +2016-07-26 02:20:20,3599.0,16.5164, +2016-07-26 02:30:00,,,19.9433 +2016-07-26 02:30:22,3599.0,16.5164, +2016-07-26 02:40:25,3599.0,16.4826, +2016-07-26 02:45:00,,,19.9059 +2016-07-26 02:50:28,3599.0,16.4474, +2016-07-26 03:00:00,,,19.9112 +2016-07-26 03:00:31,3599.0,16.5164, +2016-07-26 03:10:34,3599.0,16.4782, +2016-07-26 03:15:00,,,19.9486 +2016-07-26 03:20:36,3599.0,16.512, +2016-07-26 03:30:00,,,19.9879 +2016-07-26 03:30:39,3599.0,16.4812, +2016-07-26 03:40:42,3599.0,16.512, +2016-07-26 03:45:00,,,19.9112 +2016-07-26 03:50:44,3599.0,16.512, +2016-07-26 04:00:00,,,19.9861 +2016-07-26 04:00:47,3599.0,16.512, +2016-07-26 04:10:50,3599.0,16.4445, +2016-07-26 04:15:00,,,19.9486 +2016-07-26 04:20:53,3599.0,16.5106, +2016-07-26 04:30:00,,,19.9504 +2016-07-26 04:30:55,3599.0,16.512, +2016-07-26 04:40:58,3599.0,16.5459, +2016-07-26 04:45:00,,,19.9861 +2016-07-26 04:51:00,3599.0,16.4768, +2016-07-26 05:00:00,,,19.9486 +2016-07-26 05:01:03,3599.0,16.5444, +2016-07-26 05:11:06,3599.0,16.512, +2016-07-26 05:15:00,,,19.9112 +2016-07-26 05:21:08,3599.0,16.512, +2016-07-26 05:30:00,,,19.9504 +2016-07-26 05:31:11,3599.0,16.512, +2016-07-26 05:41:14,3599.0,16.4782, +2016-07-26 05:45:00,,,19.9504 +2016-07-26 05:51:16,3599.0,16.512, +2016-07-26 06:00:00,,,19.9486 +2016-07-26 06:01:19,3599.0,16.512, +2016-07-26 06:11:22,3599.0,16.512, +2016-07-26 06:15:00,,,19.9486 +2016-07-26 06:21:24,3599.0,16.4782, +2016-07-26 06:30:00,,,19.9486 +2016-07-26 06:31:34,3599.0,16.4782, +2016-07-26 06:41:37,3599.0,16.5106, +2016-07-26 06:45:00,,,19.9486 +2016-07-26 06:51:40,3599.0,16.4782, +2016-07-26 07:00:00,,,19.9504 +2016-07-26 07:01:42,3599.0,16.512, +2016-07-26 07:11:45,3599.0,16.5076, +2016-07-26 07:15:00,,,19.913 +2016-07-26 07:21:48,3599.0,16.4739, +2016-07-26 07:30:00,,,19.9504 +2016-07-26 07:31:50,3599.0,16.5076, +2016-07-26 07:41:53,3599.0,16.5414, +2016-07-26 07:45:00,,,19.9861 +2016-07-26 07:51:56,3599.0,16.4739, +2016-07-26 08:00:00,,,19.9112 +2016-07-26 08:01:59,3599.0,16.5414, +2016-07-26 08:12:01,3599.0,16.5076, +2016-07-26 08:15:00,,,19.9486 +2016-07-26 08:22:04,3599.0,16.4401, +2016-07-26 08:30:00,,,19.9861 +2016-07-26 08:32:07,3599.0,16.4739, +2016-07-26 08:42:10,3599.0,16.54, +2016-07-26 08:45:00,,,19.9861 +2016-07-26 08:52:12,3599.0,16.4343, +2016-07-26 09:00:00,,,19.8365 +2016-07-26 09:02:15,3599.0,16.3347, +2016-07-26 09:12:18,3599.0,16.402, +2016-07-26 09:15:00,,,19.9486 +2016-07-26 09:22:20,3599.0,16.4049, +2016-07-26 09:30:00,,,19.7992 +2016-07-26 09:32:23,3599.0,16.402, +2016-07-26 09:42:26,3599.0,16.3669, +2016-07-26 09:45:00,,,19.8382 +2016-07-26 09:52:28,3599.0,16.4357, +2016-07-26 10:00:00,,,19.8738 +2016-07-26 10:02:31,3599.0,16.402, +2016-07-26 10:12:33,3599.0,16.402, +2016-07-26 10:15:00,,,19.8365 +2016-07-26 10:22:36,3599.0,16.4343, +2016-07-26 10:30:00,,,19.8365 +2016-07-26 10:32:39,3599.0,16.3684, +2016-07-26 10:42:42,3599.0,16.4357, +2016-07-26 10:45:00,,,19.8365 +2016-07-26 10:52:45,3599.0,16.402, +2016-07-26 11:00:00,,,19.8365 +2016-07-26 11:02:47,3599.0,16.3333, +2016-07-26 11:12:50,3599.0,16.402, +2016-07-26 11:15:00,,,19.8365 +2016-07-26 11:22:53,3599.0,16.402, +2016-07-26 11:30:00,,,19.8382 +2016-07-26 11:32:56,3599.0,16.402, +2016-07-26 11:42:58,3599.0,16.2676, +2016-07-26 11:45:00,,,19.8365 +2016-07-26 11:53:01,3599.0,16.3011, +2016-07-26 12:00:00,,,19.7992 +2016-07-26 12:03:04,3599.0,16.3011, +2016-07-26 12:13:07,3599.0,16.3011, +2016-07-26 12:15:00,,,19.8382 +2016-07-26 12:23:10,3599.0,16.2676, +2016-07-26 12:30:00,,,19.801 +2016-07-26 12:33:13,3599.0,16.3011, +2016-07-26 12:43:15,3599.0,16.2676, +2016-07-26 12:45:00,,,19.7248 +2016-07-26 12:53:18,3599.0,16.1671, +2016-07-26 13:00:00,,,19.7248 +2016-07-26 13:03:21,3599.0,16.1671, +2016-07-26 13:13:24,3599.0,16.1656, +2016-07-26 13:15:00,,,19.7248 +2016-07-26 13:23:27,3599.0,16.2005, +2016-07-26 13:30:00,,,19.7248 +2016-07-26 13:33:30,3599.0,16.2005, +2016-07-26 13:43:33,3599.0,16.1671, +2016-07-26 13:45:00,,,19.7248 +2016-07-26 13:53:36,3599.0,16.0669, +2016-07-26 14:00:00,,,19.7248 +2016-07-26 14:03:39,3599.0,16.0655, +2016-07-26 14:13:42,3599.0,16.1045, +2016-07-26 14:15:00,,,19.7248 +2016-07-26 14:23:45,3599.0,16.0712, +2016-07-26 14:30:00,,,19.7248 +2016-07-26 14:33:48,3599.0,16.0712, +2016-07-26 14:43:50,3599.0,16.0712, +2016-07-26 14:45:00,,,19.6876 +2016-07-26 14:53:53,3599.0,16.0712, +2016-07-26 15:00:00,,,19.7248 +2016-07-26 15:03:56,3599.0,16.137999999999998, +2016-07-26 15:13:59,3599.0,16.1045, +2016-07-26 15:15:00,,,19.6135 +2016-07-26 15:24:02,3599.0,16.0697, +2016-07-26 15:30:00,,,19.6135 +2016-07-26 15:34:05,3599.0,16.137999999999998, +2016-07-26 15:44:08,3599.0,16.137999999999998, +2016-07-26 15:45:00,,,19.5765 +2016-07-26 15:54:11,3599.0,16.0712, +2016-07-26 16:00:00,,,19.6153 +2016-07-26 16:04:14,3599.0,16.0712, +2016-07-26 16:14:17,3599.0,16.0712, +2016-07-26 16:15:00,,,19.6135 +2016-07-26 16:24:20,3599.0,16.1045, +2016-07-26 16:30:00,,,19.6135 +2016-07-26 16:34:23,3599.0,16.0421, +2016-07-26 16:44:26,3599.0,16.0088, +2016-07-26 16:45:00,,,19.6135 +2016-07-26 16:54:29,3599.0,16.0045, +2016-07-26 17:00:00,,,19.6135 +2016-07-26 17:04:32,3599.0,16.0074, +2016-07-26 17:14:35,3599.0,16.0088, +2016-07-26 17:15:00,,,19.6135 +2016-07-26 17:24:38,3599.0,16.0421, +2016-07-26 17:30:00,,,19.5765 +2016-07-26 17:34:41,3599.0,16.0421, +2016-07-26 17:44:44,3599.0,16.0088, +2016-07-26 17:45:00,,,19.6135 +2016-07-26 17:54:47,3599.0,16.0074, +2016-07-26 18:00:00,,,19.6135 +2016-07-26 18:04:50,3599.0,16.0074, +2016-07-26 18:14:53,3599.0,16.0074, +2016-07-26 18:15:00,,,19.6135 +2016-07-26 18:24:56,3599.0,16.0074, +2016-07-26 18:30:00,,,19.6135 +2016-07-26 18:34:59,3599.0,16.0074, +2016-07-26 18:45:00,,,19.6135 +2016-07-26 18:45:02,3599.0,16.0088, +2016-07-26 18:55:05,3599.0,16.0088, +2016-07-26 19:00:00,,,19.6135 +2016-07-26 19:05:10,3599.0,16.0088, +2016-07-26 19:15:00,,,19.6135 +2016-07-26 19:15:13,3599.0,16.0088, +2016-07-26 19:25:16,3599.0,16.0421, +2016-07-26 19:30:00,,,19.6135 +2016-07-26 19:35:19,3599.0,15.9741, +2016-07-26 19:45:00,,,19.6153 +2016-07-26 19:45:22,3599.0,16.0088, +2016-07-26 19:55:24,3599.0,16.0088, +2016-07-26 20:00:00,,,19.6153 +2016-07-26 20:05:27,3599.0,16.0088, +2016-07-26 20:15:00,,,19.6135 +2016-07-26 20:15:30,3599.0,16.0088, +2016-07-26 20:25:33,3599.0,16.0088, +2016-07-26 20:30:00,,,19.6153 +2016-07-26 20:35:36,3599.0,16.0088, +2016-07-26 20:45:00,,,19.6153 +2016-07-26 20:45:39,3599.0,16.0421, +2016-07-26 20:55:41,3599.0,16.0074, +2016-07-26 21:00:00,,,19.6135 +2016-07-26 21:05:44,3599.0,16.0088, +2016-07-26 21:15:00,,,19.6135 +2016-07-26 21:15:47,3599.0,16.0088, +2016-07-26 21:25:50,3599.0,16.0421, +2016-07-26 21:30:00,,,19.5765 +2016-07-26 21:35:53,3599.0,16.1074, +2016-07-26 21:45:00,,,19.6153 +2016-07-26 21:45:56,3599.0,16.074, +2016-07-26 21:55:58,3599.0,16.1408, +2016-07-26 22:00:00,,,19.6135 +2016-07-26 22:06:01,3599.0,16.074, +2016-07-26 22:15:00,,,19.6506 +2016-07-26 22:16:04,3599.0,16.1088, +2016-07-26 22:26:07,3599.0,16.0755, +2016-07-26 22:30:00,,,19.6153 +2016-07-26 22:36:10,3599.0,16.0755, +2016-07-26 22:45:00,,,19.6135 +2016-07-26 22:46:12,3599.0,16.1074, +2016-07-26 22:56:15,3599.0,16.0755, +2016-07-26 23:00:00,,,19.6135 +2016-07-26 23:06:18,3599.0,16.1074, +2016-07-26 23:15:00,,,19.6135 +2016-07-26 23:16:21,3599.0,16.0755, +2016-07-26 23:26:24,3599.0,16.0755, +2016-07-26 23:30:00,,,19.6153 +2016-07-26 23:36:26,3599.0,16.0755, +2016-07-26 23:45:00,,,19.6135 +2016-07-26 23:46:29,3599.0,16.074, +2016-07-26 23:56:32,3599.0,16.0755, +2016-07-27 00:00:00,,,19.5783 +2016-07-27 00:06:35,3599.0,16.1423, +2016-07-27 00:15:00,,,19.5765 +2016-07-27 00:16:37,3599.0,16.137999999999998, +2016-07-27 00:26:40,3599.0,16.1088, +2016-07-27 00:30:00,,,19.6205 +2016-07-27 00:36:43,3599.0,16.1771, +2016-07-27 00:45:00,,,19.6118 +2016-07-27 00:46:46,3599.0,16.0712, +2016-07-27 00:56:48,3599.0,16.1045, +2016-07-27 01:00:00,,,19.6135 +2016-07-27 01:06:51,3599.0,16.1365, +2016-07-27 01:15:00,,,19.6135 +2016-07-27 01:16:53,3599.0,16.0712, +2016-07-27 01:27:03,3599.0,16.105999999999998, +2016-07-27 01:30:00,,,19.6153 +2016-07-27 01:37:06,3599.0,16.1365, +2016-07-27 01:45:00,,,19.5835 +2016-07-27 01:47:09,3599.0,16.1045, +2016-07-27 01:57:12,3599.0,16.0712, +2016-07-27 02:00:00,,,19.6187 +2016-07-27 02:07:14,3599.0,16.1045, +2016-07-27 02:15:00,,,19.6506 +2016-07-27 02:17:17,3599.0,16.1045, +2016-07-27 02:27:20,3599.0,16.1017, +2016-07-27 02:30:00,,,19.617 +2016-07-27 02:37:22,3599.0,16.0669, +2016-07-27 02:45:00,,,19.6523 +2016-07-27 02:47:25,3599.0,16.0988, +2016-07-27 02:57:28,3599.0,16.1351, +2016-07-27 03:00:00,,,19.617 +2016-07-27 03:07:31,3599.0,16.0988, +2016-07-27 03:15:00,,,19.6205 +2016-07-27 03:17:33,3599.0,16.0655, +2016-07-27 03:27:36,3599.0,16.0683, +2016-07-27 03:30:00,,,19.6205 +2016-07-27 03:37:38,3599.0,16.1003, +2016-07-27 03:45:00,,,19.617 +2016-07-27 03:47:41,3599.0,16.1017, +2016-07-27 03:57:44,3599.0,16.0669, +2016-07-27 04:00:00,,,19.617 +2016-07-27 04:07:46,3599.0,16.1003, +2016-07-27 04:15:00,,,19.6135 +2016-07-27 04:17:48,3599.0,16.1003, +2016-07-27 04:27:51,3599.0,16.1336, +2016-07-27 04:30:00,,,19.6135 +2016-07-27 04:37:54,3599.0,16.1351, +2016-07-27 04:45:00,,,19.6558 +2016-07-27 04:47:56,3599.0,16.1336, +2016-07-27 04:57:59,3599.0,16.0988, +2016-07-27 05:00:00,,,19.6205 +2016-07-27 05:08:02,3599.0,16.1336, +2016-07-27 05:15:00,,,19.6205 +2016-07-27 05:18:04,3599.0,16.1293, +2016-07-27 05:28:07,3599.0,16.1351, +2016-07-27 05:30:00,,,19.6205 +2016-07-27 05:38:10,3599.0,16.1003, +2016-07-27 05:45:00,,,19.6135 +2016-07-27 05:48:13,3599.0,16.1293, +2016-07-27 05:58:15,3599.0,16.0626, +2016-07-27 06:00:00,,,19.6205 +2016-07-27 06:08:18,3599.0,16.17, +2016-07-27 06:15:00,,,19.6153 +2016-07-27 06:18:21,3599.0,16.096, +2016-07-27 06:28:23,3599.0,16.17, +2016-07-27 06:30:00,,,19.6523 +2016-07-27 06:38:26,3598.0,16.0974, +2016-07-27 06:45:00,,,19.6187 +2016-07-27 06:48:29,3599.0,16.0597, +2016-07-27 06:58:31,3599.0,16.0974, +2016-07-27 07:00:00,,,19.6187 +2016-07-27 07:08:34,3599.0,16.0917, +2016-07-27 07:15:00,,,19.6558 +2016-07-27 07:18:37,3598.0,-6.6287, +2016-07-27 07:28:39,3599.0,16.1265, +2016-07-27 07:30:00,,,19.6153 +2016-07-27 07:38:42,3599.0,16.125, +2016-07-27 07:45:00,,,19.6135 +2016-07-27 07:48:44,3598.0,-13.1385, +2016-07-27 07:58:47,3599.0,16.0917, +2016-07-27 08:00:00,,,19.6135 +2016-07-27 08:08:50,3599.0,16.0583, +2016-07-27 08:15:00,,,19.6135 +2016-07-27 08:18:52,3599.0,16.0583, +2016-07-27 08:28:55,3599.0,16.125, +2016-07-27 08:30:00,,,19.6576 +2016-07-27 08:38:58,3599.0,16.0583, +2016-07-27 08:45:00,,,19.6135 +2016-07-27 08:49:00,3599.0,-8.3606, +2016-07-27 08:59:03,3597.0,15.9528, +2016-07-27 09:00:00,,,19.6187 +2016-07-27 09:09:06,3599.0,16.0583, +2016-07-27 09:15:00,,,19.6135 +2016-07-27 09:19:08,3599.0,16.0583, +2016-07-27 09:29:11,3599.0,15.9055, +2016-07-27 09:30:00,,,19.6576 +2016-07-27 09:39:13,3599.0,16.0917, +2016-07-27 09:45:00,,,19.6153 +2016-07-27 09:49:16,3599.0,16.0583, +2016-07-27 09:59:19,3599.0,16.125, +2016-07-27 10:00:00,,,19.6135 +2016-07-27 10:09:33,3599.0,16.125, +2016-07-27 10:15:00,,,19.6153 +2016-07-27 10:20:20,3599.0,16.125, +2016-07-27 10:30:00,,,19.6135 +2016-07-27 10:30:23,3599.0,16.054000000000002, +2016-07-27 10:40:25,3599.0,16.125, +2016-07-27 10:45:00,,,19.6135 +2016-07-27 10:50:28,3599.0,16.0874, +2016-07-27 11:00:00,,,19.6135 +2016-07-27 11:00:31,3599.0,10.6535, +2016-07-27 11:10:34,3599.0,16.1207, +2016-07-27 11:15:00,,,19.6135 +2016-07-27 11:20:37,3599.0,16.1236, +2016-07-27 11:30:00,,,19.5044 +2016-07-27 11:30:39,3599.0,16.0555, +2016-07-27 11:40:42,3599.0,16.1222, +2016-07-27 11:45:00,,,19.5765 +2016-07-27 11:50:45,3599.0,16.1222, +2016-07-27 12:00:00,,,19.5009 +2016-07-27 12:00:48,3599.0,15.986, +2016-07-27 12:10:51,3599.0,16.0207, +2016-07-27 12:15:00,,,19.5027 +2016-07-27 12:20:53,3599.0,16.054000000000002, +2016-07-27 12:30:00,,,19.5027 +2016-07-27 12:30:56,3599.0,15.9875, +2016-07-27 12:40:59,3599.0,15.9875, +2016-07-27 12:45:00,,,19.5027 +2016-07-27 12:51:02,3599.0,16.0207, +2016-07-27 13:00:00,,,19.5044 +2016-07-27 13:01:05,3599.0,15.9585, +2016-07-27 13:11:08,3599.0,15.8879, +2016-07-27 13:15:00,,,19.5027 +2016-07-27 13:21:11,3599.0,15.8921, +2016-07-27 13:30:00,,,19.5044 +2016-07-27 13:31:14,3599.0,15.9253, +2016-07-27 13:41:17,3599.0,15.9253, +2016-07-27 13:45:00,,,19.5027 +2016-07-27 13:51:20,3599.0,15.8921, +2016-07-27 14:00:00,,,19.5027 +2016-07-27 14:01:23,3599.0,15.7928, +2016-07-27 14:11:26,3599.0,15.7928, +2016-07-27 14:15:00,,,19.5027 +2016-07-27 14:21:29,3599.0,15.7928, +2016-07-27 14:30:00,,,19.429 +2016-07-27 14:31:32,3599.0,15.8258, +2016-07-27 14:41:35,3599.0,15.7942, +2016-07-27 14:45:00,,,19.3555 +2016-07-27 14:51:38,3599.0,15.7928, +2016-07-27 15:00:00,,,19.3922 +2016-07-27 15:01:41,3599.0,15.7928, +2016-07-27 15:11:44,3599.0,15.8273, +2016-07-27 15:15:00,,,19.3922 +2016-07-27 15:21:47,3599.0,15.7928, +2016-07-27 15:30:00,,,19.394 +2016-07-27 15:31:50,3599.0,15.8258, +2016-07-27 15:41:53,3599.0,15.7928, +2016-07-27 15:45:00,,,19.429 +2016-07-27 15:51:56,3599.0,15.7928, +2016-07-27 16:00:00,,,19.3555 +2016-07-27 16:01:59,3599.0,15.6937, +2016-07-27 16:12:02,3599.0,15.6937, +2016-07-27 16:15:00,,,19.429 +2016-07-27 16:22:05,3599.0,15.6979, +2016-07-27 16:30:00,,,19.3922 +2016-07-27 16:32:08,3599.0,15.665, +2016-07-27 16:42:11,3599.0,15.6979, +2016-07-27 16:45:00,,,19.4307 +2016-07-27 16:52:14,3599.0,15.6993, +2016-07-27 17:00:00,,,19.429 +2016-07-27 17:02:17,3599.0,15.7639, +2016-07-27 17:12:20,3599.0,15.6664, +2016-07-27 17:15:00,,,19.3189 +2016-07-27 17:22:23,3599.0,15.6979, +2016-07-27 17:30:00,,,19.2822 +2016-07-27 17:32:26,3599.0,15.7309, +2016-07-27 17:42:29,3599.0,15.5992, +2016-07-27 17:45:00,,,19.2822 +2016-07-27 17:52:32,3599.0,15.6334, +2016-07-27 18:00:00,,,19.3189 +2016-07-27 18:02:35,3599.0,15.6362, +2016-07-27 18:12:37,3599.0,15.6019, +2016-07-27 18:15:00,,,19.2822 +2016-07-27 18:22:40,3599.0,15.6348, +2016-07-27 18:30:00,,,19.284 +2016-07-27 18:32:43,3599.0,-10.969, +2016-07-27 18:42:46,3599.0,15.6005, +2016-07-27 18:45:00,,,19.2822 +2016-07-27 18:52:49,3599.0,15.5704, +2016-07-27 19:00:00,,,19.3189 +2016-07-27 19:02:52,3599.0,15.6348, +2016-07-27 19:12:55,3599.0,15.5704, +2016-07-27 19:15:00,,,19.3189 +2016-07-27 19:22:58,3599.0,15.6033, +2016-07-27 19:30:00,,,19.3189 +2016-07-27 19:33:01,3599.0,15.7337, +2016-07-27 19:43:11,3599.0,15.7007, +2016-07-27 19:45:00,,,19.3189 +2016-07-27 19:53:14,3599.0,15.7021, +2016-07-27 20:00:00,,,19.3189 +2016-07-27 20:03:17,3599.0,15.7007, +2016-07-27 20:13:20,3599.0,15.7007, +2016-07-27 20:15:00,,,19.284 +2016-07-27 20:23:23,3599.0,15.7035, +2016-07-27 20:30:00,,,19.3206 +2016-07-27 20:33:26,3599.0,15.7021, +2016-07-27 20:43:28,3599.0,15.7007, +2016-07-27 20:45:00,,,19.2822 +2016-07-27 20:53:31,3599.0,15.7007, +2016-07-27 21:00:00,,,19.3189 +2016-07-27 21:03:34,3599.0,15.7007, +2016-07-27 21:13:37,3599.0,15.6678, +2016-07-27 21:15:00,,,19.3189 +2016-07-27 21:23:40,3599.0,15.7667, +2016-07-27 21:30:00,,,19.2822 +2016-07-27 21:33:43,3599.0,15.7007, +2016-07-27 21:43:46,3599.0,15.7021, +2016-07-27 21:45:00,,,19.3189 +2016-07-27 21:53:48,3599.0,15.7351, +2016-07-27 22:00:00,,,19.2474 +2016-07-27 22:03:51,3599.0,15.7007, +2016-07-27 22:13:54,3599.0,15.6691, +2016-07-27 22:15:00,,,19.3189 +2016-07-27 22:23:57,3599.0,15.7007, +2016-07-27 22:30:00,,,19.2822 +2016-07-27 22:33:59,3599.0,15.7337, +2016-07-27 22:44:02,3599.0,15.7007, +2016-07-27 22:45:00,,,19.2822 +2016-07-27 22:54:05,3599.0,15.7021, +2016-07-27 23:00:00,,,19.2822 +2016-07-27 23:04:08,3599.0,15.7021, +2016-07-27 23:14:11,3599.0,15.6678, +2016-07-27 23:15:00,,,19.3189 +2016-07-27 23:24:14,3599.0,15.8012, +2016-07-27 23:30:00,,,19.3189 +2016-07-27 23:34:16,3599.0,15.7998, +2016-07-27 23:44:19,3599.0,15.7998, +2016-07-27 23:45:00,,,19.3206 +2016-07-27 23:54:22,3599.0,15.7998, +2016-07-28 00:00:00,,,19.284 +2016-07-28 00:04:25,3599.0,15.8026, +2016-07-28 00:14:28,3599.0,15.8012, +2016-07-28 00:15:00,,,19.284 +2016-07-28 00:24:30,3599.0,15.8329, +2016-07-28 00:30:00,,,19.3206 +2016-07-28 00:34:33,3599.0,15.7681, +2016-07-28 00:44:36,3599.0,15.8357, +2016-07-28 00:45:00,,,19.284 +2016-07-28 00:54:39,3599.0,15.7998, +2016-07-28 01:00:00,,,19.2822 +2016-07-28 01:04:41,3599.0,15.8012, +2016-07-28 01:14:44,3599.0,15.8012, +2016-07-28 01:15:00,,,19.284 +2016-07-28 01:24:47,3599.0,15.797, +2016-07-28 01:30:00,,,19.2822 +2016-07-28 01:34:50,3599.0,15.797, +2016-07-28 01:44:53,3599.0,15.8315, +2016-07-28 01:45:00,,,19.284 +2016-07-28 01:54:55,3598.0,15.797, +2016-07-28 02:00:00,,,19.3206 +2016-07-28 02:04:58,3598.0,15.7984, +2016-07-28 02:15:00,,,19.3189 +2016-07-28 02:15:01,3598.0,15.7984, +2016-07-28 02:25:03,3598.0,15.797, +2016-07-28 02:30:00,,,19.3206 +2016-07-28 02:35:06,3598.0,15.8301, +2016-07-28 02:45:00,,,19.3189 +2016-07-28 02:45:08,3598.0,15.7928, +2016-07-28 02:55:10,3598.0,15.7984, +2016-07-28 03:00:00,,,19.3206 +2016-07-28 03:05:21,3598.0,15.7928, +2016-07-28 03:15:00,,,19.3189 +2016-07-28 03:15:23,3598.0,15.7928, +2016-07-28 03:25:26,3598.0,15.7942, +2016-07-28 03:30:00,,,19.284 +2016-07-28 03:35:28,3597.0,15.7928, +2016-07-28 03:45:00,,,19.3206 +2016-07-28 03:45:31,3597.0,15.7597, +2016-07-28 03:55:34,3596.0,15.8258, +2016-07-28 04:00:00,,,19.2822 +2016-07-28 04:05:36,3596.0,15.7928, +2016-07-28 04:15:00,,,19.284 +2016-07-28 04:15:39,3596.0,15.7928, +2016-07-28 04:25:41,3596.0,15.7928, +2016-07-28 04:30:00,,,19.284 +2016-07-28 04:35:44,3595.0,15.7928, +2016-07-28 04:45:00,,,19.3206 +2016-07-28 04:45:46,3595.0,15.7942, +2016-07-28 04:55:49,3595.0,15.7928, +2016-07-28 05:00:00,,,19.3189 +2016-07-28 05:05:51,3594.0,15.8258, +2016-07-28 05:15:00,,,19.3206 +2016-07-28 05:15:53,3594.0,15.7942, +2016-07-28 05:26:04,3594.0,15.8258, +2016-07-28 05:30:00,,,19.3206 +2016-07-28 05:36:06,3593.0,15.8216, +2016-07-28 05:45:00,,,19.2822 +2016-07-28 05:46:09,3593.0,15.7886, +2016-07-28 05:56:11,3593.0,15.7886, +2016-07-28 06:00:00,,,19.3189 +2016-07-28 06:06:14,3593.0,15.79, +2016-07-28 06:15:00,,,19.3189 +2016-07-28 06:16:16,3593.0,15.7886, +2016-07-28 06:26:19,3592.0,15.79, +2016-07-28 06:30:00,,,19.3189 +2016-07-28 06:36:22,3592.0,15.7886, +2016-07-28 06:45:00,,,19.3206 +2016-07-28 06:46:24,3592.0,15.7886, +2016-07-28 06:56:27,3592.0,15.7886, +2016-07-28 07:00:00,,,19.3189 +2016-07-28 07:06:29,3592.0,15.8216, +2016-07-28 07:15:00,,,19.3206 +2016-07-28 07:16:32,3593.0,15.7886, +2016-07-28 07:26:34,3593.0,15.8216, +2016-07-28 07:30:00,,,19.284 +2016-07-28 07:36:37,3593.0,15.79, +2016-07-28 07:45:00,,,19.3206 +2016-07-28 07:46:39,3594.0,15.79, +2016-07-28 07:56:42,3595.0,15.8216, +2016-07-28 08:00:00,,,19.3189 +2016-07-28 08:06:44,3595.0,15.7857, +2016-07-28 08:15:00,,,19.2822 +2016-07-28 08:16:47,3595.0,15.8174, +2016-07-28 08:26:49,3596.0,15.8174, +2016-07-28 08:30:00,,,19.284 +2016-07-28 08:36:52,3597.0,15.8188, +2016-07-28 08:45:00,,,19.2822 +2016-07-28 08:46:55,3598.0,15.7857, +2016-07-28 08:56:57,3598.0,15.8174, +2016-07-28 09:00:00,,,19.3189 +2016-07-28 09:07:00,3598.0,15.7857, +2016-07-28 09:15:00,,,19.3189 +2016-07-28 09:17:02,3598.0,15.8174, +2016-07-28 09:27:05,3598.0,15.7857, +2016-07-28 09:30:00,,,19.3189 +2016-07-28 09:37:07,3598.0,15.7843, +2016-07-28 09:45:00,,,19.3189 +2016-07-28 09:47:10,3598.0,15.7513, +2016-07-28 09:57:12,3599.0,15.8174, +2016-07-28 10:00:00,,,19.3189 +2016-07-28 10:07:15,3599.0,15.6881, +2016-07-28 10:15:00,,,19.3206 +2016-07-28 10:17:18,3599.0,15.7183, +2016-07-28 10:27:20,3599.0,15.7843, +2016-07-28 10:30:00,,,19.2822 +2016-07-28 10:37:23,3599.0,15.6868, +2016-07-28 10:45:00,,,19.3189 +2016-07-28 10:47:25,3599.0,15.6854, +2016-07-28 10:57:28,3599.0,15.7211, +2016-07-28 11:00:00,,,19.3573 +2016-07-28 11:07:31,3599.0,15.7197, +2016-07-28 11:15:00,,,19.3189 +2016-07-28 11:17:34,3599.0,15.6868, +2016-07-28 11:27:36,3599.0,15.684, +2016-07-28 11:30:00,,,19.2822 +2016-07-28 11:37:39,3599.0,15.6868, +2016-07-28 11:45:00,,,19.3189 +2016-07-28 11:47:42,3599.0,15.7183, +2016-07-28 11:57:45,3599.0,15.6854, +2016-07-28 12:00:00,,,19.3189 +2016-07-28 12:07:48,3599.0,15.6195, +2016-07-28 12:15:00,,,19.2822 +2016-07-28 12:17:51,3599.0,15.6154, +2016-07-28 12:27:53,3599.0,15.6524, +2016-07-28 12:30:00,,,19.2822 +2016-07-28 12:37:56,3599.0,15.6195, +2016-07-28 12:45:00,,,19.2091 +2016-07-28 12:47:59,3599.0,15.6209, +2016-07-28 12:58:02,3599.0,15.5881, +2016-07-28 13:00:00,,,19.2091 +2016-07-28 13:08:05,3599.0,15.6195, +2016-07-28 13:15:00,,,19.2108 +2016-07-28 13:18:08,3599.0,15.4555, +2016-07-28 13:28:11,3599.0,15.521, +2016-07-28 13:30:00,,,19.1743 +2016-07-28 13:38:14,3599.0,15.521, +2016-07-28 13:45:00,,,19.1743 +2016-07-28 13:48:17,3599.0,15.491, +2016-07-28 13:58:20,3599.0,15.4883, +2016-07-28 14:00:00,,,19.2457 +2016-07-28 14:08:22,3599.0,15.521, +2016-07-28 14:15:00,,,19.2091 +2016-07-28 14:18:25,3599.0,15.4883, +2016-07-28 14:28:28,3599.0,15.521, +2016-07-28 14:30:00,,,19.1726 +2016-07-28 14:38:31,3599.0,15.4938, +2016-07-28 14:45:00,,,19.2091 +2016-07-28 14:48:34,3599.0,15.5252, +2016-07-28 14:58:37,3599.0,15.4924, +2016-07-28 15:00:00,,,19.2091 +2016-07-28 15:08:40,3599.0,15.558, +2016-07-28 15:15:00,,,19.0998 +2016-07-28 15:18:43,3599.0,15.3929, +2016-07-28 15:28:46,3599.0,15.3943, +2016-07-28 15:30:00,,,19.0652 +2016-07-28 15:38:49,3599.0,15.3943, +2016-07-28 15:45:00,,,19.0635 +2016-07-28 15:48:52,3599.0,15.3943, +2016-07-28 15:58:55,3599.0,15.3943, +2016-07-28 16:00:00,,,19.0635 +2016-07-28 16:08:58,3599.0,15.4597, +2016-07-28 16:15:00,,,19.0998 +2016-07-28 16:19:01,3599.0,15.4283, +2016-07-28 16:29:04,3599.0,15.3943, +2016-07-28 16:30:00,,,19.0635 +2016-07-28 16:39:07,3599.0,15.4269, +2016-07-28 16:45:00,,,19.0652 +2016-07-28 16:49:10,3599.0,15.4269, +2016-07-28 16:59:13,3599.0,15.3943, +2016-07-28 17:00:00,,,19.0635 +2016-07-28 17:09:16,3599.0,15.4269, +2016-07-28 17:15:00,,,19.1015 +2016-07-28 17:19:19,3599.0,15.4269, +2016-07-28 17:29:22,3599.0,15.3943, +2016-07-28 17:30:00,,,19.1015 +2016-07-28 17:39:24,3599.0,15.4269, +2016-07-28 17:45:00,,,19.0652 +2016-07-28 17:49:27,3599.0,15.3943, +2016-07-28 17:59:30,3599.0,15.1435, +2016-07-28 18:00:00,,,19.0998 +2016-07-28 18:09:33,3599.0,15.3943, +2016-07-28 18:15:00,,,19.0635 +2016-07-28 18:19:36,3599.0,15.3943, +2016-07-28 18:29:39,3599.0,15.4311, +2016-07-28 18:30:00,,,19.1379 +2016-07-28 18:39:42,3599.0,15.4311, +2016-07-28 18:45:00,,,19.0652 +2016-07-28 18:49:45,3599.0,15.3984, +2016-07-28 18:59:48,3599.0,15.4638, +2016-07-28 19:00:00,,,19.0652 +2016-07-28 19:09:51,3599.0,15.4297, +2016-07-28 19:15:00,,,19.0618 +2016-07-28 19:19:54,3599.0,15.3984, +2016-07-28 19:29:57,3599.0,15.3984, +2016-07-28 19:30:00,,,19.0618 +2016-07-28 19:40:00,3599.0,15.5307, +2016-07-28 19:45:00,,,19.0635 +2016-07-28 19:50:02,3599.0,15.4965, +2016-07-28 20:00:00,,,19.1032 +2016-07-28 20:00:05,3599.0,15.5293, +2016-07-28 20:10:08,3599.0,15.4979, +2016-07-28 20:15:00,,,19.0635 +2016-07-28 20:20:11,3599.0,15.5307, +2016-07-28 20:30:00,,,19.0998 +2016-07-28 20:30:14,3599.0,15.5293, +2016-07-28 20:40:17,3599.0,15.5621, +2016-07-28 20:45:00,,,19.0652 +2016-07-28 20:50:19,3599.0,15.4965, +2016-07-28 21:00:00,,,19.0635 +2016-07-28 21:00:22,3599.0,15.5293, +2016-07-28 21:10:25,3599.0,15.5293, +2016-07-28 21:15:00,,,19.0635 +2016-07-28 21:20:28,3599.0,15.5293, +2016-07-28 21:30:00,,,19.0998 +2016-07-28 21:30:30,3599.0,15.5293, +2016-07-28 21:40:33,3599.0,15.4965, +2016-07-28 21:45:00,,,19.0635 +2016-07-28 21:50:36,3599.0,15.5307, +2016-07-28 22:00:00,,,19.1379 +2016-07-28 22:00:39,3599.0,15.5293, +2016-07-28 22:10:42,3599.0,15.5293, +2016-07-28 22:15:00,,,19.0998 +2016-07-28 22:20:45,3599.0,15.5293, +2016-07-28 22:30:00,,,19.1015 +2016-07-28 22:30:47,3599.0,15.4965, +2016-07-28 22:40:50,3599.0,15.4979, +2016-07-28 22:45:00,,,19.1015 +2016-07-28 22:50:53,3598.0,15.5293, +2016-07-28 23:00:00,,,19.0635 +2016-07-28 23:00:56,3598.0,15.5635, +2016-07-28 23:10:58,3598.0,15.5293, +2016-07-28 23:15:00,,,19.0998 +2016-07-28 23:21:01,3598.0,15.5293, +2016-07-28 23:30:00,,,19.1015 +2016-07-28 23:31:04,3588.0,15.4269, +2016-07-28 23:41:07,3598.0,15.4924, +2016-07-28 23:45:00,,,19.1379 +2016-07-28 23:51:09,3598.0,15.5293, +2016-07-29 00:00:00,,,19.0998 +2016-07-29 00:01:12,3597.0,15.4938, +2016-07-29 00:11:15,3597.0,15.5252, +2016-07-29 00:15:00,,,19.0635 +2016-07-29 00:21:18,3597.0,15.5252, +2016-07-29 00:30:00,,,19.0998 +2016-07-29 00:31:20,3597.0,15.5252, +2016-07-29 00:41:23,3596.0,15.5252, +2016-07-29 00:45:00,,,19.1015 +2016-07-29 00:51:26,3596.0,15.5252, +2016-07-29 01:00:00,,,19.0998 +2016-07-29 01:01:28,3595.0,15.5252, +2016-07-29 01:11:31,3595.0,15.5252, +2016-07-29 01:15:00,,,19.0635 +2016-07-29 01:21:33,3595.0,15.4924, +2016-07-29 01:30:00,,,19.0652 +2016-07-29 01:31:36,3595.0,15.5252, +2016-07-29 01:41:39,3595.0,15.5252, +2016-07-29 01:45:00,,,19.0998 +2016-07-29 01:51:42,3594.0,15.5252, +2016-07-29 02:00:00,,,19.0652 +2016-07-29 02:01:44,3594.0,15.4924, +2016-07-29 02:11:47,3594.0,15.5252, +2016-07-29 02:15:00,,,19.0998 +2016-07-29 02:21:50,3593.0,15.5252, +2016-07-29 02:30:00,,,19.0635 +2016-07-29 02:31:52,3593.0,15.5252, +2016-07-29 02:41:55,3592.0,15.5252, +2016-07-29 02:45:00,,,19.0635 +2016-07-29 02:51:58,3592.0,15.5252, +2016-07-29 03:00:00,,,19.1362 +2016-07-29 03:02:00,3592.0,15.5238, +2016-07-29 03:12:03,3591.0,15.5266, +2016-07-29 03:15:00,,,19.0635 +2016-07-29 03:22:06,3591.0,15.558, +2016-07-29 03:30:00,,,19.0652 +2016-07-29 03:32:08,3590.0,15.5238, +2016-07-29 03:42:11,3590.0,15.5252, +2016-07-29 03:45:00,,,19.0635 +2016-07-29 03:52:14,3590.0,15.5252, +2016-07-29 04:00:00,,,19.0652 +2016-07-29 04:02:16,3589.0,15.4924, +2016-07-29 04:12:19,3589.0,15.521, +2016-07-29 04:15:00,,,19.0635 +2016-07-29 04:22:21,3588.0,15.4896, +2016-07-29 04:30:00,,,19.1015 +2016-07-29 04:32:24,3588.0,15.4938, +2016-07-29 04:42:27,3588.0,15.5252, +2016-07-29 04:45:00,,,19.0652 +2016-07-29 04:52:29,3588.0,15.521, +2016-07-29 05:00:00,,,19.0652 +2016-07-29 05:02:32,3588.0,15.5224, +2016-07-29 05:12:35,3587.0,15.5224, +2016-07-29 05:15:00,,,19.1015 +2016-07-29 05:22:37,3587.0,15.5224, +2016-07-29 05:30:00,,,19.0998 +2016-07-29 05:32:40,3587.0,15.5224, +2016-07-29 05:42:43,3587.0,15.521, +2016-07-29 05:45:00,,,19.1015 +2016-07-29 05:52:45,3587.0,15.521, +2016-07-29 06:00:00,,,19.0635 +2016-07-29 06:02:48,3587.0,15.5224, +2016-07-29 06:12:51,3586.0,15.5224, +2016-07-29 06:15:00,,,19.1015 +2016-07-29 06:22:53,3586.0,15.5183, +2016-07-29 06:30:00,,,19.0998 +2016-07-29 06:32:56,3587.0,15.4855, +2016-07-29 06:42:59,3586.0,15.5183, +2016-07-29 06:45:00,,,19.0998 +2016-07-29 06:53:02,3587.0,15.5183, +2016-07-29 07:00:00,,,19.0635 +2016-07-29 07:03:04,3587.0,15.4841, +2016-07-29 07:13:07,3587.0,15.5183, +2016-07-29 07:15:00,,,19.0998 +2016-07-29 07:23:10,3587.0,15.5511, +2016-07-29 07:30:00,,,19.1362 +2016-07-29 07:33:13,3587.0,15.5183, +2016-07-29 07:43:15,3587.0,15.5183, +2016-07-29 07:45:00,,,19.1015 +2016-07-29 07:53:18,3588.0,15.5183, +2016-07-29 08:00:00,,,19.0998 +2016-07-29 08:03:21,3588.0,15.5183, +2016-07-29 08:13:23,3588.0,15.5183, +2016-07-29 08:15:00,,,19.1015 +2016-07-29 08:23:26,3589.0,15.5497, +2016-07-29 08:30:00,,,19.0652 +2016-07-29 08:33:29,3590.0,15.5183, +2016-07-29 08:43:31,3591.0,15.5183, +2016-07-29 08:45:00,,,19.0998 +2016-07-29 08:53:34,3591.0,15.5183, +2016-07-29 09:00:00,,,19.0998 +2016-07-29 09:03:37,3591.0,15.5183, +2016-07-29 09:13:40,3592.0,15.5197, +2016-07-29 09:15:00,,,19.0652 +2016-07-29 09:23:43,3592.0,15.5183, +2016-07-29 09:30:00,,,19.1015 +2016-07-29 09:33:45,3592.0,15.5183, +2016-07-29 09:43:48,3592.0,15.5183, +2016-07-29 09:45:00,,,19.0998 +2016-07-29 09:53:51,3593.0,15.5183, +2016-07-29 10:00:00,,,19.0635 +2016-07-29 10:03:54,3593.0,15.5183, +2016-07-29 10:13:57,3592.0,15.5183, +2016-07-29 10:15:00,,,18.9926 +2016-07-29 10:23:59,3594.0,15.5183, +2016-07-29 10:30:00,,,18.9547 +2016-07-29 10:34:02,3595.0,15.5169, +2016-07-29 10:44:04,3595.0,15.5183, +2016-07-29 10:45:00,,,18.9909 +2016-07-29 10:54:07,3596.0,15.5183, +2016-07-29 11:00:00,,,18.9547 +2016-07-29 11:04:10,3597.0,15.5511, +2016-07-29 11:14:12,3598.0,15.5183, +2016-07-29 11:15:00,,,18.9547 +2016-07-29 11:24:15,3598.0,15.5183, +2016-07-29 11:30:00,,,18.9926 +2016-07-29 11:34:18,3598.0,15.5183, +2016-07-29 11:44:21,3598.0,15.5511, +2016-07-29 11:45:00,,,18.9564 +2016-07-29 11:54:24,3599.0,15.5183, +2016-07-29 12:00:00,,,18.9547 +2016-07-29 12:04:26,3598.0,15.5183, +2016-07-29 12:14:29,3599.0,15.4201, +2016-07-29 12:15:00,,,18.9547 +2016-07-29 12:24:32,3599.0,15.3874, +2016-07-29 12:30:00,,,18.9909 +2016-07-29 12:34:35,3599.0,15.4201, +2016-07-29 12:44:38,3599.0,15.4201, +2016-07-29 12:45:00,,,18.9858 +2016-07-29 12:54:41,3599.0,15.4201, +2016-07-29 13:00:00,,,18.9547 +2016-07-29 13:04:44,3599.0,15.3222, +2016-07-29 13:14:47,3599.0,15.2896, +2016-07-29 13:15:00,,,18.9496 +2016-07-29 13:24:50,3599.0,15.3222, +2016-07-29 13:30:00,,,18.9858 +2016-07-29 13:34:52,3599.0,15.3222, +2016-07-29 13:44:55,3599.0,15.3208, +2016-07-29 13:45:00,,,18.8824 +2016-07-29 13:54:58,3599.0,15.3222, +2016-07-29 14:00:00,,,18.8773 +2016-07-29 14:05:01,3599.0,15.1921, +2016-07-29 14:15:00,,,18.8824 +2016-07-29 14:15:04,3599.0,15.2571, +2016-07-29 14:25:07,3599.0,15.2246, +2016-07-29 14:30:00,,,18.8807 +2016-07-29 14:35:10,3599.0,15.2246, +2016-07-29 14:45:00,,,18.9151 +2016-07-29 14:45:13,3599.0,15.2246, +2016-07-29 14:55:16,3599.0,15.2557, +2016-07-29 15:00:00,,,18.9202 +2016-07-29 15:05:19,3599.0,15.1259, +2016-07-29 15:15:00,,,18.879 +2016-07-29 15:15:22,3599.0,15.1596, +2016-07-29 15:25:25,3599.0,15.1637, +2016-07-29 15:30:00,,,18.879 +2016-07-29 15:35:28,3599.0,15.1272, +2016-07-29 15:45:00,,,18.8773 +2016-07-29 15:45:31,3599.0,15.1312, +2016-07-29 15:55:34,3599.0,15.1637, +2016-07-29 16:00:00,,,18.879 +2016-07-29 16:05:37,3599.0,15.1596, +2016-07-29 16:15:00,,,18.8841 +2016-07-29 16:15:40,3599.0,15.1299, +2016-07-29 16:25:43,3599.0,15.1623, +2016-07-29 16:30:00,,,18.8773 +2016-07-29 16:35:46,3599.0,15.0975, +2016-07-29 16:45:00,,,18.9151 +2016-07-29 16:45:49,3599.0,15.0989, +2016-07-29 16:55:52,3599.0,15.0989, +2016-07-29 17:00:00,,,18.8824 +2016-07-29 17:05:55,3599.0,15.1623, +2016-07-29 17:15:00,,,18.9151 +2016-07-29 17:15:58,3599.0,15.1637, +2016-07-29 17:26:01,3599.0,15.0975, +2016-07-29 17:30:00,,,18.879 +2016-07-29 17:36:04,3599.0,15.1015, +2016-07-29 17:45:00,,,18.8773 +2016-07-29 17:46:07,3599.0,15.1015, +2016-07-29 17:56:10,3599.0,15.1339, +2016-07-29 18:00:00,,,18.9135 +2016-07-29 18:06:13,3599.0,15.1326, +2016-07-29 18:15:00,,,18.879 +2016-07-29 18:16:16,3599.0,15.1339, +2016-07-29 18:26:19,3599.0,-10.203, +2016-07-29 18:30:00,,,18.8773 +2016-07-29 18:36:22,3599.0,15.1339, +2016-07-29 18:45:00,,,18.8773 +2016-07-29 18:46:25,3599.0,15.1015, +2016-07-29 18:56:27,3599.0,15.1015, +2016-07-29 19:00:00,,,18.8824 +2016-07-29 19:06:30,3599.0,15.1339, +2016-07-29 19:15:00,,,18.8773 +2016-07-29 19:16:33,3599.0,15.1015, +2016-07-29 19:26:36,3599.0,15.1664, +2016-07-29 19:30:00,,,18.8773 +2016-07-29 19:36:39,3599.0,15.1664, +2016-07-29 19:45:00,,,18.8773 +2016-07-29 19:46:42,3599.0,15.1339, +2016-07-29 19:56:45,3599.0,15.1664, +2016-07-29 20:00:00,,,18.879 +2016-07-29 20:06:48,3599.0,15.1339, +2016-07-29 20:15:00,,,18.8773 +2016-07-29 20:16:50,3599.0,15.1029, +2016-07-29 20:26:53,3599.0,15.1664, +2016-07-29 20:30:00,,,18.8773 +2016-07-29 20:36:56,3599.0,15.1664, +2016-07-29 20:45:00,,,18.879 +2016-07-29 20:46:59,3599.0,15.1339, +2016-07-29 20:57:02,3599.0,15.1664, +2016-07-29 21:00:00,,,18.879 +2016-07-29 21:07:04,3599.0,15.1015, +2016-07-29 21:15:00,,,18.8773 +2016-07-29 21:17:07,3599.0,15.1339, +2016-07-29 21:27:10,3599.0,15.1339, +2016-07-29 21:30:00,,,18.8773 +2016-07-29 21:37:13,3599.0,15.1664, +2016-07-29 21:45:00,,,18.879 +2016-07-29 21:47:15,3598.0,15.1339, +2016-07-29 21:57:18,3598.0,15.1029, +2016-07-29 22:00:00,,,18.8773 +2016-07-29 22:07:21,3598.0,15.1664, +2016-07-29 22:15:00,,,18.8773 +2016-07-29 22:17:24,3598.0,15.1015, +2016-07-29 22:27:26,3598.0,15.1015, +2016-07-29 22:30:00,,,18.9151 +2016-07-29 22:37:29,3598.0,15.1339, +2016-07-29 22:45:00,,,18.879 +2016-07-29 22:47:31,3598.0,15.1664, +2016-07-29 22:57:34,3597.0,15.1339, +2016-07-29 23:00:00,,,18.8773 +2016-07-29 23:07:37,3597.0,15.1339, +2016-07-29 23:15:00,,,18.879 +2016-07-29 23:17:39,3596.0,15.1339, +2016-07-29 23:27:42,3596.0,15.2313, +2016-07-29 23:30:00,,,18.879 +2016-07-29 23:37:45,3595.0,15.2313, +2016-07-29 23:45:00,,,18.879 +2016-07-29 23:47:47,3595.0,15.2313, +2016-07-29 23:57:50,3595.0,15.2638, +2016-07-30 00:00:00,,,18.8773 +2016-07-30 00:07:52,3594.0,15.2638, +2016-07-30 00:15:00,,,18.8773 +2016-07-30 00:17:55,3593.0,15.2638, +2016-07-30 00:27:57,3593.0,15.1975, +2016-07-30 00:30:00,,,18.9185 +2016-07-30 00:38:00,3593.0,15.2313, +2016-07-30 00:45:00,,,18.8824 +2016-07-30 00:48:02,3592.0,15.1988, +2016-07-30 00:58:05,3592.0,15.2313, +2016-07-30 01:00:00,,,18.879 +2016-07-30 01:08:07,3592.0,15.2638, +2016-07-30 01:15:00,,,18.8773 +2016-07-30 01:18:10,3592.0,15.2638, +2016-07-30 01:28:12,3592.0,15.2313, +2016-07-30 01:30:00,,,18.8773 +2016-07-30 01:38:15,3592.0,15.2638, +2016-07-30 01:45:00,,,18.9151 +2016-07-30 01:48:17,3592.0,15.2638, +2016-07-30 01:58:20,3592.0,15.2652, +2016-07-30 02:00:00,,,18.9202 +2016-07-30 02:08:23,3591.0,15.2313, +2016-07-30 02:15:00,,,18.8841 +2016-07-30 02:18:25,3591.0,15.2313, +2016-07-30 02:28:28,3591.0,15.2638, +2016-07-30 02:30:00,,,18.8824 +2016-07-30 02:38:31,3590.0,15.2286, +2016-07-30 02:45:00,,,18.8841 +2016-07-30 02:48:33,3590.0,15.2923, +2016-07-30 02:58:36,3589.0,15.2611, +2016-07-30 03:00:00,,,18.8773 +2016-07-30 03:08:39,3589.0,15.1948, +2016-07-30 03:15:00,,,18.879 +2016-07-30 03:18:41,3589.0,15.2273, +2016-07-30 03:28:44,3588.0,15.1948, +2016-07-30 03:30:00,,,18.9135 +2016-07-30 03:38:46,3588.0,15.2611, +2016-07-30 03:45:00,,,18.8773 +2016-07-30 03:48:49,3588.0,15.2273, +2016-07-30 03:58:51,3588.0,15.2273, +2016-07-30 04:00:00,,,18.8824 +2016-07-30 04:08:53,3588.0,15.1948, +2016-07-30 04:15:00,,,18.9202 +2016-07-30 04:18:56,3586.0,15.2246, +2016-07-30 04:28:59,3586.0,15.2598, +2016-07-30 04:30:00,,,18.8773 +2016-07-30 04:39:01,3586.0,15.2571, +2016-07-30 04:45:00,,,18.8841 +2016-07-30 04:49:04,3586.0,15.2571, +2016-07-30 04:59:06,3586.0,15.2571, +2016-07-30 05:00:00,,,18.879 +2016-07-30 05:09:09,3585.0,15.2557, +2016-07-30 05:15:00,,,18.8841 +2016-07-30 05:19:11,3585.0,15.2246, +2016-07-30 05:29:14,3585.0,15.2246, +2016-07-30 05:30:00,,,18.8824 +2016-07-30 05:39:16,3585.0,15.2259, +2016-07-30 05:45:00,,,18.879 +2016-07-30 05:49:19,3584.0,15.2571, +2016-07-30 05:59:22,3584.0,15.2571, +2016-07-30 06:00:00,,,18.8773 +2016-07-30 06:09:24,3584.0,15.2571, +2016-07-30 06:15:00,,,18.8841 +2016-07-30 06:19:27,3583.0,15.2232, +2016-07-30 06:29:29,3584.0,15.2246, +2016-07-30 06:30:00,,,18.8824 +2016-07-30 06:39:32,3582.0,15.2246, +2016-07-30 06:45:00,,,18.8841 +2016-07-30 06:49:34,3582.0,15.2571, +2016-07-30 06:59:37,3585.0,15.2584, +2016-07-30 07:00:00,,,18.879 +2016-07-30 07:09:40,3584.0,15.2571, +2016-07-30 07:15:00,,,18.8824 +2016-07-30 07:19:42,3584.0,15.2571, +2016-07-30 07:29:45,3585.0,15.2557, +2016-07-30 07:30:00,,,18.8824 +2016-07-30 07:39:47,3585.0,15.2571, +2016-07-30 07:45:00,,,18.9185 +2016-07-30 07:49:50,3585.0,15.2205, +2016-07-30 07:59:52,3586.0,15.2191, +2016-07-30 08:00:00,,,18.879 +2016-07-30 08:09:55,3586.0,15.2191, +2016-07-30 08:15:00,,,18.8824 +2016-07-30 08:19:57,3586.0,15.253, +2016-07-30 08:30:00,3587.0,15.2896,18.8841 +2016-07-30 08:40:03,3587.0,15.1867, +2016-07-30 08:45:00,,,18.8773 +2016-07-30 08:50:05,3588.0,15.188, +2016-07-30 09:00:00,,,18.8841 +2016-07-30 09:00:08,3588.0,15.253, +2016-07-30 09:10:11,3588.0,15.253, +2016-07-30 09:15:00,,,18.8773 +2016-07-30 09:20:15,3589.0,15.2205, +2016-07-30 09:30:00,,,18.8052 +2016-07-30 09:30:18,3588.0,15.253, +2016-07-30 09:40:21,3591.0,15.2191, +2016-07-30 09:45:00,,,18.7709 +2016-07-30 09:50:23,3591.0,15.2205, +2016-07-30 10:00:00,,,18.7743 +2016-07-30 10:00:26,3590.0,15.2205, +2016-07-30 10:10:29,3593.0,15.1542, +2016-07-30 10:15:00,,,18.7743 +2016-07-30 10:20:32,3593.0,15.1232, +2016-07-30 10:30:00,,,18.8052 +2016-07-30 10:30:34,3595.0,15.0895, +2016-07-30 10:40:37,3595.0,15.1218, +2016-07-30 10:45:00,,,18.7709 +2016-07-30 10:50:40,3596.0,15.1556, +2016-07-30 11:00:00,,,18.7693 +2016-07-30 11:00:43,3597.0,15.1218, +2016-07-30 11:10:45,3598.0,15.1218, +2016-07-30 11:15:00,,,18.8052 +2016-07-30 11:20:48,3596.0,15.1232, +2016-07-30 11:30:00,,,18.7709 +2016-07-30 11:30:51,3598.0,15.1556, +2016-07-30 11:40:54,3598.0,15.1556, +2016-07-30 11:45:00,,,18.8052 +2016-07-30 11:50:56,3598.0,15.1542, +2016-07-30 12:00:00,,,18.7759 +2016-07-30 12:00:59,3598.0,15.1218, +2016-07-30 12:11:02,3598.0,15.1556, +2016-07-30 12:15:00,,,18.7693 +2016-07-30 12:21:05,3599.0,15.1218, +2016-07-30 12:30:00,,,18.7693 +2016-07-30 12:31:08,3599.0,15.0261, +2016-07-30 12:41:11,3599.0,15.0261, +2016-07-30 12:45:00,,,18.7693 +2016-07-30 12:51:13,3599.0,15.0571, +2016-07-30 13:00:00,,,18.6632 +2016-07-30 13:01:16,3599.0,15.0301, +2016-07-30 13:11:19,3599.0,15.0585, +2016-07-30 13:15:00,,,18.6616 +2016-07-30 13:21:22,3599.0,15.0261, +2016-07-30 13:30:00,,,18.6632 +2016-07-30 13:31:25,3599.0,14.9979, +2016-07-30 13:41:28,3599.0,15.0301, +2016-07-30 13:45:00,,,18.6258 +2016-07-30 13:51:30,3599.0,15.0625, +2016-07-30 14:00:00,,,18.6632 +2016-07-30 14:01:33,3599.0,14.932, +2016-07-30 14:11:36,3599.0,14.8972, +2016-07-30 14:15:00,,,18.6616 +2016-07-30 14:21:39,3599.0,14.9656, +2016-07-30 14:30:00,,,18.6632 +2016-07-30 14:31:42,3599.0,14.9334, +2016-07-30 14:41:45,3599.0,14.9656, +2016-07-30 14:45:00,,,18.6616 +2016-07-30 14:51:48,3599.0,14.9643, +2016-07-30 15:00:00,,,18.6632 +2016-07-30 15:01:51,3599.0,14.932, +2016-07-30 15:11:54,3599.0,14.9656, +2016-07-30 15:15:00,,,18.6616 +2016-07-30 15:21:56,3599.0,14.8369, +2016-07-30 15:30:00,,,18.6632 +2016-07-30 15:31:59,3599.0,14.8369, +2016-07-30 15:42:02,3599.0,14.8369, +2016-07-30 15:45:00,,,18.6632 +2016-07-30 15:52:05,3599.0,14.869000000000002, +2016-07-30 16:00:00,,,18.5543 +2016-07-30 16:02:08,3599.0,14.8355, +2016-07-30 16:12:11,3599.0,14.8355, +2016-07-30 16:15:00,,,18.5543 +2016-07-30 16:22:14,3599.0,14.8355, +2016-07-30 16:30:00,,,18.5543 +2016-07-30 16:32:17,3599.0,14.8677, +2016-07-30 16:42:19,3599.0,14.8342, +2016-07-30 16:45:00,,,18.5543 +2016-07-30 16:52:22,3599.0,14.869000000000002, +2016-07-30 17:00:00,,,18.5543 +2016-07-30 17:02:25,3599.0,14.869000000000002, +2016-07-30 17:12:28,3599.0,14.8369, +2016-07-30 17:15:00,,,18.5543 +2016-07-30 17:22:31,3599.0,14.8355, +2016-07-30 17:30:00,,,18.59 +2016-07-30 17:32:34,3599.0,14.8355, +2016-07-30 17:42:37,3599.0,14.8677, +2016-07-30 17:45:00,,,18.5559 +2016-07-30 17:52:40,3599.0,14.8369, +2016-07-30 18:00:00,,,18.5559 +2016-07-30 18:02:43,3599.0,14.8369, +2016-07-30 18:12:46,3599.0,14.8716, +2016-07-30 18:15:00,,,18.5543 +2016-07-30 18:22:48,3599.0,14.869000000000002, +2016-07-30 18:30:00,,,18.5559 +2016-07-30 18:32:51,3599.0,14.94, +2016-07-30 18:42:54,3599.0,14.8395, +2016-07-30 18:45:00,,,18.5543 +2016-07-30 18:52:57,3599.0,14.8716, +2016-07-30 19:00:00,,,18.5543 +2016-07-30 19:03:00,3599.0,14.8395, +2016-07-30 19:13:03,3599.0,14.8395, +2016-07-30 19:15:00,,,18.5559 +2016-07-30 19:23:06,3598.0,-11.2629, +2016-07-30 19:30:00,,,18.5559 +2016-07-30 19:33:09,3599.0,14.8395, +2016-07-30 19:43:11,3599.0,14.8395, +2016-07-30 19:45:00,,,18.5543 +2016-07-30 19:53:14,3599.0,14.8716, +2016-07-30 20:00:00,,,18.5543 +2016-07-30 20:03:17,3599.0,14.8716, +2016-07-30 20:13:20,3599.0,14.8395, +2016-07-30 20:15:00,,,18.5543 +2016-07-30 20:23:23,3599.0,14.8716, +2016-07-30 20:30:00,,,18.5559 +2016-07-30 20:33:26,3599.0,14.8395, +2016-07-30 20:43:29,3599.0,14.8395, +2016-07-30 20:45:00,,,18.5559 +2016-07-30 20:53:32,3599.0,14.8408, +2016-07-30 21:00:00,,,18.5186 +2016-07-30 21:03:35,3598.0,14.8395, +2016-07-30 21:13:37,3598.0,14.8716, +2016-07-30 21:15:00,,,18.5543 +2016-07-30 21:23:40,3598.0,14.9038, +2016-07-30 21:30:00,,,18.5559 +2016-07-30 21:33:43,3598.0,14.8395, +2016-07-30 21:43:46,3598.0,14.8716, +2016-07-30 21:45:00,,,18.5543 +2016-07-30 21:53:49,3597.0,14.873, +2016-07-30 22:00:00,,,18.5543 +2016-07-30 22:03:52,3597.0,14.8395, +2016-07-30 22:13:54,3596.0,14.8716, +2016-07-30 22:15:00,,,18.5559 +2016-07-30 22:23:57,3595.0,14.8395, +2016-07-30 22:30:00,,,18.5543 +2016-07-30 22:34:00,3594.0,14.8395, +2016-07-30 22:44:02,3595.0,14.9051, +2016-07-30 22:45:00,,,18.5559 +2016-07-30 22:54:05,3593.0,14.8716, +2016-07-30 23:00:00,,,18.5559 +2016-07-30 23:04:08,3593.0,14.8369, +2016-07-30 23:14:11,3592.0,14.8395, +2016-07-30 23:15:00,,,18.5543 +2016-07-30 23:24:13,3591.0,14.9012, +2016-07-30 23:30:00,,,18.5543 +2016-07-30 23:34:16,3592.0,14.8716, +2016-07-30 23:44:19,3592.0,14.9078, +2016-07-30 23:45:00,,,18.5543 +2016-07-30 23:54:21,3590.0,14.8395, +2016-07-31 00:00:00,,,18.5543 +2016-07-31 00:04:24,3588.0,14.8369, +2016-07-31 00:14:27,3588.0,14.8369, +2016-07-31 00:15:00,,,18.5543 +2016-07-31 00:24:29,3589.0,14.1468, +2016-07-31 00:30:00,,,18.5559 +2016-07-31 00:34:32,3586.0,14.8369, +2016-07-31 00:44:35,3587.0,14.8369, +2016-07-31 00:45:00,,,18.5543 +2016-07-31 00:54:37,3586.0,14.8369, +2016-07-31 01:00:00,,,18.59 +2016-07-31 01:04:40,3587.0,14.8369, +2016-07-31 01:14:43,3585.0,14.8369, +2016-07-31 01:15:00,,,18.5559 +2016-07-31 01:24:45,3585.0,14.869000000000002, +2016-07-31 01:30:00,,,18.5559 +2016-07-31 01:34:48,3585.0,14.869000000000002, +2016-07-31 01:44:51,3584.0,14.869000000000002, +2016-07-31 01:45:00,,,18.5917 +2016-07-31 01:54:53,3584.0,14.8677, +2016-07-31 02:00:00,,,18.5543 +2016-07-31 02:04:56,3583.0,14.8355, +2016-07-31 02:14:59,3581.0,14.8369, +2016-07-31 02:15:00,,,18.5559 +2016-07-31 02:25:01,3582.0,14.869000000000002, +2016-07-31 02:30:00,,,18.5559 +2016-07-31 02:35:04,3581.0,14.8369, +2016-07-31 02:45:00,,,18.5559 +2016-07-31 02:45:07,3581.0,14.8382, +2016-07-31 02:55:09,3577.0,14.869000000000002, +2016-07-31 03:00:00,,,18.5559 +2016-07-31 03:05:12,3578.0,14.8369, +2016-07-31 03:15:00,,,18.5559 +2016-07-31 03:15:15,3580.0,14.8637, +2016-07-31 03:25:16,3580.0,14.8329, +2016-07-31 03:30:00,,,18.5543 +2016-07-31 03:35:19,3580.0,14.8637, +2016-07-31 03:45:00,,,18.5559 +2016-07-31 03:45:21,3580.0,14.865, +2016-07-31 03:55:24,3579.0,14.8637, +2016-07-31 04:00:00,,,18.5917 +2016-07-31 04:05:26,3580.0,14.8329, +2016-07-31 04:15:00,,,18.5559 +2016-07-31 04:15:29,3579.0,14.8959, +2016-07-31 04:25:31,3580.0,14.8316, +2016-07-31 04:30:00,,,18.5559 +2016-07-31 04:35:34,3580.0,14.8316, +2016-07-31 04:45:00,,,18.5559 +2016-07-31 04:45:36,3580.0,14.8329, +2016-07-31 04:55:39,3580.0,14.8316, +2016-07-31 05:00:00,,,18.5559 +2016-07-31 05:05:41,3580.0,14.8316, +2016-07-31 05:15:00,,,18.5543 +2016-07-31 05:15:44,3580.0,14.865, +2016-07-31 05:25:46,3581.0,14.8637, +2016-07-31 05:30:00,,,18.5559 +2016-07-31 05:35:49,3581.0,14.9616, +2016-07-31 05:45:00,,,18.59 +2016-07-31 05:45:52,3581.0,14.9603, +2016-07-31 05:55:54,3581.0,14.9294, +2016-07-31 06:00:00,,,18.5559 +2016-07-31 06:05:57,3581.0,14.9576, +2016-07-31 06:15:00,,,18.59 +2016-07-31 06:15:59,3581.0,14.9616, +2016-07-31 06:26:02,3581.0,14.9254, +2016-07-31 06:30:00,,,18.5543 +2016-07-31 06:36:04,3581.0,14.9576, +2016-07-31 06:45:00,,,18.5917 +2016-07-31 06:46:07,3581.0,14.9576, +2016-07-31 06:56:09,3581.0,14.8611, +2016-07-31 07:00:00,,,18.5559 +2016-07-31 07:06:12,3581.0,14.8276, +2016-07-31 07:15:00,,,18.5559 +2016-07-31 07:16:14,3581.0,14.8932, +2016-07-31 07:26:17,3581.0,14.8276, +2016-07-31 07:30:00,,,18.5559 +2016-07-31 07:36:19,3585.0,14.8289, +2016-07-31 07:45:00,,,18.5559 +2016-07-31 07:46:22,3581.0,14.8611, +2016-07-31 07:56:24,3582.0,14.8932, +2016-07-31 08:00:00,,,18.5543 +2016-07-31 08:06:27,3582.0,14.8932, +2016-07-31 08:15:00,,,18.5559 +2016-07-31 08:16:29,3583.0,14.8892, +2016-07-31 08:26:39,3585.0,14.8558, +2016-07-31 08:30:00,,,18.5543 +2016-07-31 08:36:42,3585.0,14.8879, +2016-07-31 08:45:00,,,18.5543 +2016-07-31 08:46:45,3585.0,14.8611, +2016-07-31 08:56:47,3586.0,14.825, +2016-07-31 09:00:00,,,18.5153 +2016-07-31 09:06:50,3587.0,14.8237, +2016-07-31 09:15:00,,,18.5543 +2016-07-31 09:16:53,3588.0,14.8237, +2016-07-31 09:26:55,3588.0,14.8571, +2016-07-31 09:30:00,,,18.5559 +2016-07-31 09:36:58,3589.0,14.8558, +2016-07-31 09:45:00,,,18.551 +2016-07-31 09:47:00,3591.0,14.8237, +2016-07-31 09:57:03,3592.0,14.825, +2016-07-31 10:00:00,,,18.551 +2016-07-31 10:07:05,3593.0,14.8237, +2016-07-31 10:15:00,,,18.551 +2016-07-31 10:17:08,3594.0,14.8571, +2016-07-31 10:27:11,3595.0,14.8237, +2016-07-31 10:30:00,,,18.5493 +2016-07-31 10:37:13,3596.0,14.8237, +2016-07-31 10:45:00,,,18.551 +2016-07-31 10:47:16,3597.0,14.8237, +2016-07-31 10:57:18,3598.0,14.825, +2016-07-31 11:00:00,,,18.5493 +2016-07-31 11:07:21,3598.0,14.8571, +2016-07-31 11:15:00,,,18.551 +2016-07-31 11:17:24,3598.0,14.825, +2016-07-31 11:27:26,3598.0,14.8571, +2016-07-31 11:30:00,,,18.551 +2016-07-31 11:37:29,3599.0,14.7608, +2016-07-31 11:45:00,,,18.4085 +2016-07-31 11:47:32,3592.0,14.6557, +2016-07-31 11:57:35,3599.0,14.7288, +2016-07-31 12:00:00,,,18.4085 +2016-07-31 12:07:38,3599.0,14.7608, +2016-07-31 12:15:00,,,18.4425 +2016-07-31 12:17:40,3599.0,14.7648, +2016-07-31 12:27:44,3599.0,14.7314, +2016-07-31 12:30:00,,,18.4069 +2016-07-31 12:37:48,3599.0,14.7327, +2016-07-31 12:45:00,,,18.4069 +2016-07-31 12:47:51,3599.0,14.6688, +2016-07-31 12:57:54,3599.0,14.7007, +2016-07-31 13:00:00,,,18.4457 +2016-07-31 13:07:57,3599.0,14.6688, +2016-07-31 13:15:00,,,18.4408 +2016-07-31 13:18:00,3599.0,14.6368, +2016-07-31 13:28:03,3599.0,14.6368, +2016-07-31 13:30:00,,,18.4441 +2016-07-31 13:38:06,3599.0,14.6688, +2016-07-31 13:45:00,,,18.478 +2016-07-31 13:48:08,3599.0,14.6727, +2016-07-31 13:58:11,3599.0,14.6688, +2016-07-31 14:00:00,,,18.4425 +2016-07-31 14:08:14,3599.0,14.6675, +2016-07-31 14:15:00,,,18.4441 +2016-07-31 14:18:17,3599.0,14.6075, +2016-07-31 14:28:20,3599.0,14.6088, +2016-07-31 14:30:00,,,18.478 +2016-07-31 14:38:23,3599.0,14.5756, +2016-07-31 14:45:00,,,18.3714 +2016-07-31 14:48:26,3599.0,14.5769, +2016-07-31 14:58:29,3599.0,14.5769, +2016-07-31 15:00:00,,,18.3376 +2016-07-31 15:08:32,3599.0,14.5769, +2016-07-31 15:15:00,,,18.3714 +2016-07-31 15:18:35,3599.0,14.5769, +2016-07-31 15:28:37,3599.0,14.6075, +2016-07-31 15:30:00,,,18.336 +2016-07-31 15:38:40,3599.0,14.5769, +2016-07-31 15:45:00,,,18.3376 +2016-07-31 15:48:43,3599.0,14.5756, +2016-07-31 15:58:46,3599.0,14.5769, +2016-07-31 16:00:00,,,18.336 +2016-07-31 16:08:49,3599.0,14.5438, +2016-07-31 16:15:00,,,18.336 +2016-07-31 16:18:52,3599.0,14.5769, +2016-07-31 16:28:55,3599.0,14.5756, +2016-07-31 16:30:00,,,18.3714 +2016-07-31 16:38:58,3599.0,14.5438, +2016-07-31 16:45:00,,,18.336 +2016-07-31 16:49:01,3599.0,14.5769, +2016-07-31 16:59:04,3599.0,14.5769, +2016-07-31 17:00:00,,,18.3714 +2016-07-31 17:09:07,3599.0,14.5756, +2016-07-31 17:15:00,,,18.336 +2016-07-31 17:19:10,3599.0,14.5769, +2016-07-31 17:29:13,3599.0,14.5756, +2016-07-31 17:30:00,,,18.3714 +2016-07-31 17:39:15,3599.0,14.5795, +2016-07-31 17:45:00,,,18.3311 +2016-07-31 17:49:18,3599.0,14.5756, +2016-07-31 17:59:21,3599.0,14.5756, +2016-07-31 18:00:00,,,18.336 +2016-07-31 18:09:24,3599.0,14.5808, +2016-07-31 18:15:00,,,18.3311 +2016-07-31 18:19:27,3599.0,14.5489, +2016-07-31 18:29:29,3599.0,14.5808, +2016-07-31 18:30:00,,,18.336 +2016-07-31 18:39:32,3598.0,14.5808, +2016-07-31 18:45:00,,,18.336 +2016-07-31 18:49:35,3598.0,14.6075, +2016-07-31 18:59:38,3598.0,14.5451, +2016-07-31 19:00:00,,,18.373 +2016-07-31 19:09:41,3598.0,14.5808, +2016-07-31 19:15:00,,,18.336 +2016-07-31 19:19:43,3597.0,14.5808, +2016-07-31 19:29:46,3595.0,14.5795, +2016-07-31 19:30:00,,,18.3376 +2016-07-31 19:39:49,3593.0,14.5808, +2016-07-31 19:45:00,,,18.3311 +2016-07-31 19:49:52,3593.0,14.5808, +2016-07-31 19:59:54,3593.0,14.5808, +2016-07-31 20:00:00,,,18.3714 +2016-07-31 20:09:57,3590.0,14.6753, +2016-07-31 20:15:00,,,18.3376 +2016-07-31 20:20:00,3590.0,14.6766, +2016-07-31 20:30:00,,,18.373 +2016-07-31 20:30:03,3589.0,14.6433, +2016-07-31 20:40:05,3588.0,14.6753, +2016-07-31 20:45:00,,,18.3327 +2016-07-31 20:50:08,3587.0,14.6727, +2016-07-31 21:00:00,,,18.373 +2016-07-31 21:00:11,3586.0,14.6727, +2016-07-31 21:10:13,3586.0,14.6727, +2016-07-31 21:15:00,,,18.373 +2016-07-31 21:20:16,3585.0,14.6714, +2016-07-31 21:30:00,,,18.3714 +2016-07-31 21:30:19,3585.0,14.7034, +2016-07-31 21:40:20,3583.0,14.6714, +2016-07-31 21:45:00,,,18.373 +2016-07-31 21:50:23,3584.0,14.6727, +2016-07-31 22:00:00,,,18.336 +2016-07-31 22:00:26,3583.0,14.6714, +2016-07-31 22:10:28,3583.0,14.6714, +2016-07-31 22:15:00,,,18.3376 +2016-07-31 22:20:31,3581.0,14.7047, +2016-07-31 22:30:00,,,18.3392 +2016-07-31 22:30:33,3581.0,14.6727, +2016-07-31 22:40:36,3580.0,14.6727, +2016-07-31 22:45:00,,,18.3681 +2016-07-31 22:50:38,3580.0,14.7674, +2016-07-31 23:00:00,,,18.336 +2016-07-31 23:00:41,3579.0,14.8008, +2016-07-31 23:10:43,3578.0,14.7674, +2016-07-31 23:15:00,,,18.3376 +2016-07-31 23:20:46,3578.0,14.7687, +2016-07-31 23:30:00,,,18.3665 +2016-07-31 23:30:48,3576.0,14.8008, +2016-07-31 23:40:51,3575.0,14.8008, +2016-07-31 23:45:00,,,18.336 +2016-07-31 23:50:53,3574.0,14.8008, +2016-08-01 00:00:00,,, +2016-08-01 00:15:00,,, +2016-08-01 00:30:00,,, +2016-08-01 00:45:00,,, +2016-08-01 01:00:00,,,18.373 +2016-08-01 01:01:11,3574.0,14.7327, +2016-08-01 01:11:13,3573.0,14.7968, +2016-08-01 01:15:00,,,18.336 +2016-08-01 01:21:16,3573.0,14.7327, +2016-08-01 01:30:00,,,18.336 +2016-08-01 01:31:18,3572.0,14.7648, +2016-08-01 01:41:20,3572.0,14.7968, +2016-08-01 01:45:00,,,18.373 +2016-08-01 01:51:23,3571.0,14.7608, +2016-08-01 02:00:00,,,18.3376 +2016-08-01 02:01:25,3568.0,14.7608, +2016-08-01 02:11:28,3567.0,14.7916, +2016-08-01 02:15:00,,,18.3714 +2016-08-01 02:21:30,3568.0,14.7929, +2016-08-01 02:30:00,,,18.3376 +2016-08-01 02:31:33,3567.0,14.7301, +2016-08-01 02:41:35,3567.0,14.7608, +2016-08-01 02:45:00,,,18.336 +2016-08-01 02:51:38,3566.0,14.7275, +2016-08-01 03:00:00,,,18.373 +2016-08-01 03:01:40,3566.0,14.7929, +2016-08-01 03:11:42,3565.0,14.7595, +2016-08-01 03:15:00,,,18.373 +2016-08-01 03:21:45,3565.0,14.7929, +2016-08-01 03:30:00,,,18.3714 +2016-08-01 03:31:47,3564.0,14.8879, +2016-08-01 03:41:50,3564.0,14.8892, +2016-08-01 03:45:00,,,18.3665 +2016-08-01 03:51:52,3562.0,14.8531, +2016-08-01 04:00:00,,,18.3714 +2016-08-01 04:01:55,3561.0,14.8518, +2016-08-01 04:11:57,3560.0,14.8853, +2016-08-01 04:15:00,,,18.3714 +2016-08-01 04:21:59,3560.0,14.8531, +2016-08-01 04:30:00,,,18.3714 +2016-08-01 04:32:02,3560.0,14.8531, +2016-08-01 04:42:05,3560.0,14.8853, +2016-08-01 04:45:00,,,18.3681 +2016-08-01 04:52:07,3556.0,14.8853, +2016-08-01 05:00:00,,,18.373 +2016-08-01 05:02:09,3559.0,14.8197, +2016-08-01 05:12:12,3559.0,14.8531, +2016-08-01 05:15:00,,,18.373 +2016-08-01 05:22:14,3559.0,14.8853, +2016-08-01 05:30:00,,,18.3665 +2016-08-01 05:32:17,3559.0,14.8531, +2016-08-01 05:42:19,3559.0,14.8518, +2016-08-01 05:45:00,,,18.336 +2016-08-01 05:52:22,3559.0,14.8813, +2016-08-01 06:00:00,,,18.3681 +2016-08-01 06:02:24,3558.0,14.8813, +2016-08-01 06:12:26,3559.0,14.8813, +2016-08-01 06:15:00,,,18.3714 +2016-08-01 06:22:29,3559.0,14.8478, +2016-08-01 06:30:00,,,18.3327 +2016-08-01 06:32:31,3559.0,14.8492, +2016-08-01 06:42:33,3559.0,14.8505, +2016-08-01 06:45:00,,,18.3747 +2016-08-01 06:52:35,3559.0,14.8773, +2016-08-01 07:00:00,,,18.3327 +2016-08-01 07:02:37,3559.0,14.8786, +2016-08-01 07:12:40,3559.0,14.8452, +2016-08-01 07:15:00,,,18.3665 +2016-08-01 07:22:42,3559.0,14.8131, +2016-08-01 07:30:00,,,18.3311 +2016-08-01 07:32:44,3560.0,14.8465, +2016-08-01 07:42:47,3561.0,14.8452, +2016-08-01 07:45:00,,,18.3311 +2016-08-01 07:52:49,3562.0,14.8773, +2016-08-01 08:00:00,,,18.3311 +2016-08-01 08:02:51,3562.0,14.8452, +2016-08-01 08:12:54,3563.0,14.8452, +2016-08-01 08:15:00,,,18.3665 +2016-08-01 08:22:56,3564.0,14.8452, +2016-08-01 08:30:00,,,18.3681 +2016-08-01 08:32:58,3564.0,14.8131, +2016-08-01 08:43:01,3565.0,14.8773, +2016-08-01 08:45:00,,,18.3327 +2016-08-01 08:53:03,3566.0,14.8452, +2016-08-01 09:00:00,,,18.3327 +2016-08-01 09:03:06,3566.0,14.8412, +2016-08-01 09:13:08,3567.0,14.8412, +2016-08-01 09:15:00,,,18.402 +2016-08-01 09:23:10,3567.0,14.8412, +2016-08-01 09:30:00,,,18.3311 +2016-08-01 09:33:13,3569.0,14.8105, +2016-08-01 09:43:15,3570.0,14.8734, +2016-08-01 09:45:00,,,18.3665 +2016-08-01 09:53:17,3571.0,14.8092, +2016-08-01 10:00:00,,,18.3681 +2016-08-01 10:03:20,3572.0,14.8426, +2016-08-01 10:13:22,3573.0,14.8734, +2016-08-01 10:15:00,,,18.3327 +2016-08-01 10:23:24,3574.0,14.8412, +2016-08-01 10:30:00,,,18.3665 +2016-08-01 10:33:27,3574.0,14.8412, +2016-08-01 10:43:29,3576.0,14.8426, +2016-08-01 10:45:00,,,18.2619 +2016-08-01 10:53:31,3576.0,14.8426, +2016-08-01 11:00:00,,,18.2619 +2016-08-01 11:03:34,3577.0,14.7464, +2016-08-01 11:13:36,3577.0,14.7451, +2016-08-01 11:15:00,,,18.2266 +2016-08-01 11:23:39,3578.0,14.7451, +2016-08-01 11:30:00,,,18.2619 +2016-08-01 11:33:41,3579.0,14.7451, +2016-08-01 11:43:43,3580.0,14.7451, +2016-08-01 11:45:00,,,18.2266 +2016-08-01 11:53:46,3581.0,14.7784, +2016-08-01 12:00:00,,,18.2619 +2016-08-01 12:03:48,3581.0,14.7771, +2016-08-01 12:13:51,3581.0,14.7451, +2016-08-01 12:15:00,,,18.2603 +2016-08-01 12:23:53,3584.0,14.6492, +2016-08-01 12:30:00,,,18.2619 +2016-08-01 12:33:56,3584.0,14.6173, +2016-08-01 12:43:58,3585.0,14.6505, +2016-08-01 12:45:00,,,18.2266 +2016-08-01 12:54:01,3585.0,14.6505, +2016-08-01 13:00:00,,,18.2603 +2016-08-01 13:04:04,3586.0,14.6505, +2016-08-01 13:14:06,3586.0,14.6492, +2016-08-01 13:15:00,,,18.2619 +2016-08-01 13:24:09,3586.0,14.6492, +2016-08-01 13:30:00,,,18.225 +2016-08-01 13:34:11,3587.0,14.6492, +2016-08-01 13:44:14,3586.0,14.6492, +2016-08-01 13:45:00,,,18.225 +2016-08-01 13:54:16,3587.0,14.6811, +2016-08-01 14:00:00,,,18.2636 +2016-08-01 14:04:19,3587.0,14.6492, +2016-08-01 14:14:21,3587.0,14.6492, +2016-08-01 14:15:00,,,18.2603 +2016-08-01 14:24:24,3588.0,14.5536, +2016-08-01 14:30:00,,,18.225 +2016-08-01 14:34:26,3588.0,14.5536, +2016-08-01 14:44:29,3588.0,14.5854, +2016-08-01 14:45:00,,,18.2619 +2016-08-01 14:54:32,3588.0,14.5536, +2016-08-01 15:00:00,,,18.2619 +2016-08-01 15:04:34,3588.0,14.5536, +2016-08-01 15:14:37,3589.0,14.5536, +2016-08-01 15:15:00,,,18.2266 +2016-08-01 15:24:39,3589.0,14.5536, +2016-08-01 15:30:00,,,18.225 +2016-08-01 15:34:42,3589.0,14.5536, +2016-08-01 15:44:45,3589.0,14.5536, +2016-08-01 15:45:00,,,18.225 +2016-08-01 15:54:49,3589.0,14.5536, +2016-08-01 16:00:00,,,18.2603 +2016-08-01 16:04:52,3590.0,14.5536, +2016-08-01 16:14:54,3590.0,14.5536, +2016-08-01 16:15:00,,,18.2619 +2016-08-01 16:24:57,3591.0,14.5536, +2016-08-01 16:30:00,,,18.2636 +2016-08-01 16:35:00,3590.0,14.5536, +2016-08-01 16:45:00,,,18.225 +2016-08-01 16:45:02,3591.0,14.5536, +2016-08-01 16:55:05,3591.0,14.5549, +2016-08-01 17:00:00,,,18.2266 +2016-08-01 17:05:08,3592.0,14.5536, +2016-08-01 17:15:00,,,18.2266 +2016-08-01 17:15:11,3591.0,14.5854, +2016-08-01 17:25:13,3591.0,14.5536, +2016-08-01 17:30:00,,,18.225 +2016-08-01 17:35:16,3592.0,14.5536, +2016-08-01 17:45:00,,,18.2603 +2016-08-01 17:45:19,3591.0,14.5536, +2016-08-01 17:55:21,3591.0,14.5549, +2016-08-01 18:00:00,,,18.2266 +2016-08-01 18:05:24,3591.0,14.5854, +2016-08-01 18:15:00,,,18.225 +2016-08-01 18:15:27,3591.0,14.5536, +2016-08-01 18:25:29,3591.0,14.5536, +2016-08-01 18:30:00,,,18.2603 +2016-08-01 18:35:32,3591.0,14.5536, +2016-08-01 18:45:00,,,18.2603 +2016-08-01 18:45:34,3590.0,14.5536, +2016-08-01 18:55:37,3590.0,14.5854, +2016-08-01 19:00:00,,,18.2266 +2016-08-01 19:05:40,3589.0,14.5536, +2016-08-01 19:15:00,,,18.225 +2016-08-01 19:15:42,3588.0,14.5536, +2016-08-01 19:25:45,3588.0,14.5854, +2016-08-01 19:30:00,,,18.2619 +2016-08-01 19:35:48,3588.0,14.5536, +2016-08-01 19:45:00,,,18.2603 +2016-08-01 19:45:50,3587.0,14.5854, +2016-08-01 19:55:53,3586.0,14.5549, +2016-08-01 20:00:00,,,18.2603 +2016-08-01 20:05:55,3587.0,14.5575, +2016-08-01 20:15:00,,,18.1561 +2016-08-01 20:15:58,3586.0,14.5536, +2016-08-01 20:26:01,3585.0,14.5575, +2016-08-01 20:30:00,,,18.1177 +2016-08-01 20:36:03,3584.0,14.5536, +2016-08-01 20:45:00,,,18.1209 +2016-08-01 20:46:06,3584.0,14.5893, +2016-08-01 20:56:08,3583.0,14.5575, +2016-08-01 21:00:00,,,18.2603 +2016-08-01 21:06:11,3582.0,14.5536, +2016-08-01 21:15:00,,,18.2957 +2016-08-01 21:16:14,3580.0,14.5575, +2016-08-01 21:26:16,3578.0,14.5575, +2016-08-01 21:30:00,,,18.1545 +2016-08-01 21:36:18,3578.0,14.5536, +2016-08-01 21:45:00,,,18.1513 +2016-08-01 21:46:28,3576.0,14.5549, +2016-08-01 21:56:31,3576.0,14.5854, +2016-08-01 22:00:00,,,18.1513 +2016-08-01 22:06:33,3575.0,14.5536, +2016-08-01 22:15:00,,,18.1513 +2016-08-01 22:16:36,3574.0,14.5536, +2016-08-01 22:26:38,3574.0,14.5536, +2016-08-01 22:30:00,,,18.1161 +2016-08-01 22:36:41,3572.0,14.5867, +2016-08-01 22:45:00,,,18.1161 +2016-08-01 22:46:43,3572.0,14.5549, +2016-08-01 22:56:46,3572.0,14.5536, +2016-08-01 23:00:00,,,18.2619 +2016-08-01 23:06:48,3571.0,14.5854, +2016-08-01 23:15:00,,,18.1161 +2016-08-01 23:16:51,3571.0,14.5854, +2016-08-01 23:26:53,3570.0,14.5854, +2016-08-01 23:30:00,,,18.2218 +2016-08-01 23:36:56,3569.0,14.5854, +2016-08-01 23:45:00,,,18.1161 +2016-08-01 23:46:58,3569.0,14.5854, +2016-08-01 23:57:01,3568.0,14.5536, +2016-08-02 00:00:00,,,18.1513 +2016-08-02 00:07:03,3568.0,14.5536, +2016-08-02 00:15:00,,,18.1161 +2016-08-02 00:17:06,3568.0,14.5854, +2016-08-02 00:27:08,3567.0,14.5536, +2016-08-02 00:30:00,,,18.1161 +2016-08-02 00:37:11,3566.0,14.5854, +2016-08-02 00:45:00,,,18.1513 +2016-08-02 00:47:13,3564.0,14.5829, +2016-08-02 00:57:15,3565.0,14.5536, +2016-08-02 01:00:00,,,18.1161 +2016-08-02 01:07:17,3565.0,14.5854, +2016-08-02 01:15:00,,,18.1513 +2016-08-02 01:17:19,3565.0,14.550999999999998, +2016-08-02 01:27:22,3564.0,14.5829, +2016-08-02 01:30:00,,,18.1513 +2016-08-02 01:37:24,3563.0,14.5497, +2016-08-02 01:45:00,,,18.1865 +2016-08-02 01:47:27,3564.0,14.5816, +2016-08-02 01:57:29,3564.0,14.5497, +2016-08-02 02:00:00,,,18.1513 +2016-08-02 02:07:32,3552.0,-9.8501, +2016-08-02 02:15:00,,,18.1865 +2016-08-02 02:17:34,3563.0,14.5497, +2016-08-02 02:27:37,3560.0,14.5497, +2016-08-02 02:30:00,,,18.1513 +2016-08-02 02:37:39,3561.0,14.5497, +2016-08-02 02:45:00,,,18.1513 +2016-08-02 02:47:42,3560.0,14.5777, +2016-08-02 02:57:44,3559.0,14.5471, +2016-08-02 03:00:00,,,18.1865 +2016-08-02 03:07:46,3560.0,14.5458, +2016-08-02 03:15:00,,,18.1161 +2016-08-02 03:17:49,3560.0,14.5777, +2016-08-02 03:27:51,3560.0,14.5458, +2016-08-02 03:30:00,,,18.1161 +2016-08-02 03:37:54,3559.0,14.579, +2016-08-02 03:45:00,,,18.1513 +2016-08-02 03:47:56,3559.0,14.542, +2016-08-02 03:57:59,3559.0,14.5433, +2016-08-02 04:00:00,,,18.1513 +2016-08-02 04:08:01,3559.0,14.542, +2016-08-02 04:15:00,,,18.1513 +2016-08-02 04:18:04,3559.0,14.6375, +2016-08-02 04:28:06,3560.0,14.6375, +2016-08-02 04:30:00,,,18.1865 +2016-08-02 04:38:09,3552.0,14.5673, +2016-08-02 04:45:00,,,18.1161 +2016-08-02 04:48:11,3559.0,14.6388, +2016-08-02 04:58:13,3559.0,14.6375, +2016-08-02 05:00:00,,,18.1112 +2016-08-02 05:08:16,3560.0,14.6375, +2016-08-02 05:15:00,,,18.1529 +2016-08-02 05:18:18,3560.0,14.6388, +2016-08-02 05:28:20,3560.0,14.6388, +2016-08-02 05:30:00,,,18.1464 +2016-08-02 05:38:23,3559.0,14.6694, +2016-08-02 05:45:00,,,18.1464 +2016-08-02 05:48:25,3559.0,14.6707, +2016-08-02 05:58:28,3560.0,14.6388, +2016-08-02 06:00:00,,,18.1112 +2016-08-02 06:08:30,3561.0,14.6375, +2016-08-02 06:15:00,,,18.1464 +2016-08-02 06:18:33,3561.0,14.6375, +2016-08-02 06:28:35,3560.0,14.6375, +2016-08-02 06:30:00,,,18.1112 +2016-08-02 06:38:38,3560.0,14.6375, +2016-08-02 06:45:00,,,18.1464 +2016-08-02 06:48:40,3559.0,14.6694, +2016-08-02 06:58:43,3560.0,14.6375, +2016-08-02 07:00:00,,,18.1096 +2016-08-02 07:08:45,3560.0,14.6388, +2016-08-02 07:15:00,,,18.1464 +2016-08-02 07:18:48,3561.0,14.6375, +2016-08-02 07:28:50,3561.0,14.6388, +2016-08-02 07:30:00,,,18.1816 +2016-08-02 07:38:53,3561.0,14.6694, +2016-08-02 07:45:00,,,18.1112 +2016-08-02 07:48:55,3562.0,14.6401, +2016-08-02 07:58:58,3563.0,14.6375, +2016-08-02 08:00:00,,,18.1464 +2016-08-02 08:09:00,3563.0,14.6694, +2016-08-02 08:15:00,,,18.1464 +2016-08-02 08:19:03,3563.0,14.6375, +2016-08-02 08:29:06,3564.0,14.6349, +2016-08-02 08:30:00,,,18.1096 +2016-08-02 08:39:08,3564.0,14.6694, +2016-08-02 08:45:00,,,18.1464 +2016-08-02 08:49:11,3564.0,14.6349, +2016-08-02 08:59:13,3564.0,14.6349, +2016-08-02 09:00:00,,,18.1464 +2016-08-02 09:09:16,3563.0,14.6349, +2016-08-02 09:15:00,,,18.1816 +2016-08-02 09:19:18,3559.0,14.6668, +2016-08-02 09:29:21,3559.0,14.6668, +2016-08-02 09:30:00,,,18.1112 +2016-08-02 09:39:23,3563.0,14.6668, +2016-08-02 09:45:00,,,18.1112 +2016-08-02 09:49:26,3563.0,14.6668, +2016-08-02 09:59:28,3566.0,14.6668, +2016-08-02 10:00:00,,,18.1816 +2016-08-02 10:09:30,3566.0,14.6336, +2016-08-02 10:15:00,,,18.1816 +2016-08-02 10:19:33,3566.0,14.6349, +2016-08-02 10:29:35,3566.0,14.6655, +2016-08-02 10:30:00,,,18.1816 +2016-08-02 10:39:38,3567.0,14.6349, +2016-08-02 10:45:00,,,18.1416 +2016-08-02 10:49:40,3566.0,14.6629, +2016-08-02 10:59:43,3567.0,14.6336, +2016-08-02 11:00:00,,,18.1416 +2016-08-02 11:09:45,3567.0,14.630999999999998, +2016-08-02 11:15:00,,,18.1464 +2016-08-02 11:19:48,3569.0,14.6668, +2016-08-02 11:29:50,3569.0,14.6629, +2016-08-02 11:30:00,,,18.1112 +2016-08-02 11:39:53,3572.0,14.630999999999998, +2016-08-02 11:45:00,,,18.1752 +2016-08-02 11:49:55,3569.0,14.6297, +2016-08-02 11:59:57,3569.0,14.6629, +2016-08-02 12:00:00,,,18.1064 +2016-08-02 12:10:00,3570.0,14.6616, +2016-08-02 12:15:00,,,18.1752 +2016-08-02 12:20:02,3566.0,14.630999999999998, +2016-08-02 12:30:00,,,18.1768 +2016-08-02 12:30:04,3571.0,14.6629, +2016-08-02 12:40:07,3572.0,14.630999999999998, +2016-08-02 12:45:00,,,18.1416 +2016-08-02 12:50:09,3572.0,14.6629, +2016-08-02 13:00:00,,,18.1064 +2016-08-02 13:00:12,3573.0,14.630999999999998, +2016-08-02 13:10:14,3563.0,-7.6414, +2016-08-02 13:15:00,,,18.1416 +2016-08-02 13:20:17,3574.0,14.630999999999998, +2016-08-02 13:30:00,,,18.1064 +2016-08-02 13:30:20,3586.0,14.5978, +2016-08-02 13:40:22,3579.0,14.6297, +2016-08-02 13:45:00,,,18.1064 +2016-08-02 13:50:25,3581.0,14.6297, +2016-08-02 14:00:00,,,18.1064 +2016-08-02 14:00:27,3581.0,14.6297, +2016-08-02 14:10:30,3581.0,14.630999999999998, +2016-08-02 14:15:00,,,18.1064 +2016-08-02 14:20:33,3582.0,14.630999999999998, +2016-08-02 14:30:00,,,18.1768 +2016-08-02 14:30:35,3582.0,14.5355, +2016-08-02 14:40:38,3582.0,14.5394, +2016-08-02 14:45:00,,,18.1768 +2016-08-02 14:50:41,3571.0,14.4681, +2016-08-02 15:00:00,,,18.1064 +2016-08-02 15:00:43,3584.0,14.5394, +2016-08-02 15:10:46,3584.0,14.5355, +2016-08-02 15:15:00,,,18.1416 +2016-08-02 15:20:48,3586.0,14.5394, +2016-08-02 15:30:00,,,18.1432 +2016-08-02 15:30:51,3581.0,14.5394, +2016-08-02 15:40:53,3587.0,14.5394, +2016-08-02 15:45:00,,,18.1416 +2016-08-02 15:50:56,3584.0,14.5712, +2016-08-02 16:00:00,,,18.1064 +2016-08-02 16:00:59,3585.0,-8.9037, +2016-08-02 16:11:01,3589.0,14.5394, +2016-08-02 16:15:00,,,18.1048 +2016-08-02 16:21:04,3587.0,14.7841, +2016-08-02 16:30:00,,,18.1416 +2016-08-02 16:31:06,3589.0,14.5394, +2016-08-02 16:41:09,3588.0,14.5394, +2016-08-02 16:45:00,,,18.1064 +2016-08-02 16:51:11,3588.0,14.5381, +2016-08-02 17:00:00,,,18.1416 +2016-08-02 17:01:14,3589.0,14.5394, +2016-08-02 17:11:17,3589.0,14.542, +2016-08-02 17:15:00,,,18.1416 +2016-08-02 17:21:19,3589.0,14.542, +2016-08-02 17:30:00,,,18.1064 +2016-08-02 17:31:22,3589.0,14.542, +2016-08-02 17:41:24,3590.0,14.542, +2016-08-02 17:45:00,,,18.1416 +2016-08-02 17:51:27,3587.0,14.5738, +2016-08-02 18:00:00,,,18.1064 +2016-08-02 18:01:30,3588.0,14.5445, +2016-08-02 18:11:32,3588.0,14.542, +2016-08-02 18:15:00,,,18.1768 +2016-08-02 18:21:35,3587.0,14.542, +2016-08-02 18:30:00,,,18.14 +2016-08-02 18:31:38,3588.0,14.5433, +2016-08-02 18:41:40,3588.0,14.542, +2016-08-02 18:45:00,,,18.1064 +2016-08-02 18:51:43,3587.0,14.5433, +2016-08-02 19:00:00,,,18.1064 +2016-08-02 19:01:46,3588.0,14.5738, +2016-08-02 19:11:50,3588.0,14.542, +2016-08-02 19:15:00,,,18.1064 +2016-08-02 19:21:53,3588.0,14.5433, +2016-08-02 19:30:00,,,18.1416 +2016-08-02 19:31:56,3588.0,14.542, +2016-08-02 19:41:58,3587.0,14.5738, +2016-08-02 19:45:00,,,18.1064 +2016-08-02 19:52:01,3587.0,14.5738, +2016-08-02 20:00:00,,,18.1064 +2016-08-02 20:02:04,3587.0,14.542, +2016-08-02 20:12:06,3585.0,14.5738, +2016-08-02 20:15:00,,,18.1064 +2016-08-02 20:22:09,3586.0,14.542, +2016-08-02 20:30:00,,,18.1064 +2016-08-02 20:32:12,3585.0,14.542, +2016-08-02 20:42:14,3586.0,14.542, +2016-08-02 20:45:00,,,18.1064 +2016-08-02 20:52:17,3584.0,14.542, +2016-08-02 21:00:00,,,18.14 +2016-08-02 21:02:20,3584.0,14.5738, +2016-08-02 21:12:23,3584.0,14.5433, +2016-08-02 21:15:00,,,18.1064 +2016-08-02 21:22:25,3583.0,14.542, +2016-08-02 21:30:00,,,18.108 +2016-08-02 21:32:28,3582.0,14.5738, +2016-08-02 21:42:31,3582.0,14.5738, +2016-08-02 21:45:00,,,18.1064 +2016-08-02 21:52:34,3582.0,14.542, +2016-08-02 22:00:00,,,18.1064 +2016-08-02 22:02:36,3582.0,14.542, +2016-08-02 22:12:39,3581.0,14.5738, +2016-08-02 22:15:00,,,18.1064 +2016-08-02 22:22:41,3581.0,14.542, +2016-08-02 22:30:00,,,18.1064 +2016-08-02 22:32:44,3581.0,14.5433, +2016-08-02 22:42:46,3578.0,14.542, +2016-08-02 22:45:00,,,18.1064 +2016-08-02 22:52:49,3578.0,14.542, +2016-08-02 23:00:00,,,18.1064 +2016-08-02 23:02:52,3578.0,14.542, +2016-08-02 23:12:54,3580.0,14.542, +2016-08-02 23:15:00,,,18.1064 +2016-08-02 23:22:57,3577.0,14.542, +2016-08-02 23:30:00,,,18.1064 +2016-08-02 23:33:00,3580.0,14.542, +2016-08-02 23:43:02,3579.0,14.5738, +2016-08-02 23:45:00,,,18.1064 +2016-08-02 23:53:05,3579.0,14.542, +2016-08-03 00:00:00,,,18.1064 +2016-08-03 00:03:07,3579.0,14.5738, +2016-08-03 00:13:10,3579.0,14.542, +2016-08-03 00:15:00,,,18.1064 +2016-08-03 00:23:12,3580.0,14.5751, +2016-08-03 00:30:00,,,18.1064 +2016-08-03 00:33:15,3580.0,14.542, +2016-08-03 00:43:17,3580.0,14.5738, +2016-08-03 00:45:00,,,18.1416 +2016-08-03 00:53:20,3579.0,14.5433, +2016-08-03 01:00:00,,,18.1048 +2016-08-03 01:03:23,3579.0,14.542, +2016-08-03 01:13:25,3579.0,14.5738, +2016-08-03 01:15:00,,,18.1064 +2016-08-03 01:23:28,3579.0,14.5738, +2016-08-03 01:30:00,,,18.1064 +2016-08-03 01:33:30,3578.0,14.5738, +2016-08-03 01:43:33,3579.0,14.5738, +2016-08-03 01:45:00,,,18.1416 +2016-08-03 01:53:35,3578.0,14.542, +2016-08-03 02:00:00,,,18.1416 +2016-08-03 02:03:38,3579.0,14.542, +2016-08-03 02:13:40,3577.0,14.5738, +2016-08-03 02:15:00,,,18.14 +2016-08-03 02:23:43,3578.0,14.5738, +2016-08-03 02:30:00,,,18.1064 +2016-08-03 02:33:45,3579.0,14.542, +2016-08-03 02:43:48,3578.0,14.5433, +2016-08-03 02:45:00,,,18.1064 +2016-08-03 02:53:50,3578.0,14.5433, +2016-08-03 03:00:00,,,18.1064 +2016-08-03 03:03:53,3578.0,14.5738, +2016-08-03 03:13:55,3578.0,14.542, +2016-08-03 03:15:00,,,18.108 +2016-08-03 03:23:58,3578.0,14.542, +2016-08-03 03:30:00,,,18.1416 +2016-08-03 03:34:00,3578.0,14.542, +2016-08-03 03:44:10,3577.0,14.5738, +2016-08-03 03:45:00,,,18.1048 +2016-08-03 03:54:12,3578.0,14.542, +2016-08-03 04:00:00,,,18.1064 +2016-08-03 04:04:15,3578.0,14.542, +2016-08-03 04:14:17,3576.0,14.5738, +2016-08-03 04:15:00,,,18.1416 +2016-08-03 04:24:19,3577.0,14.5433, +2016-08-03 04:30:00,,,18.1064 +2016-08-03 04:34:21,3577.0,14.542, +2016-08-03 04:44:24,3578.0,14.542, +2016-08-03 04:45:00,,,18.1416 +2016-08-03 04:54:26,3578.0,14.5738, +2016-08-03 05:00:00,,,18.14 +2016-08-03 05:04:29,3578.0,14.6375, +2016-08-03 05:14:31,3578.0,14.6375, +2016-08-03 05:15:00,,,18.1064 +2016-08-03 05:24:34,3579.0,14.6694, +2016-08-03 05:30:00,,,18.1416 +2016-08-03 05:34:36,3579.0,14.6388, +2016-08-03 05:44:38,3578.0,14.6388, +2016-08-03 05:45:00,,,18.1064 +2016-08-03 05:54:48,3579.0,14.6388, +2016-08-03 06:00:00,,,18.1064 +2016-08-03 06:04:51,3580.0,14.6375, +2016-08-03 06:14:53,3579.0,14.5738, +2016-08-03 06:15:00,,,18.1064 +2016-08-03 06:24:56,3580.0,14.542, +2016-08-03 06:30:00,,,18.1064 +2016-08-03 06:34:58,3580.0,14.542, +2016-08-03 06:45:00,,,18.1416 +2016-08-03 06:45:01,3580.0,14.542, +2016-08-03 06:55:03,3581.0,14.6375, +2016-08-03 07:00:00,,,18.1064 +2016-08-03 07:05:06,3580.0,14.5738, +2016-08-03 07:15:00,,,18.1416 +2016-08-03 07:15:08,3581.0,14.542, +2016-08-03 07:25:11,3581.0,14.542, +2016-08-03 07:30:00,,,18.1064 +2016-08-03 07:35:14,3581.0,14.542, +2016-08-03 07:45:00,,,18.1064 +2016-08-03 07:45:16,3581.0,14.542, +2016-08-03 07:55:19,3581.0,14.542, +2016-08-03 08:00:00,,,18.1064 +2016-08-03 08:05:21,3581.0,14.5738, +2016-08-03 08:15:00,,,18.1416 +2016-08-03 08:15:24,3582.0,14.542, +2016-08-03 08:25:27,3581.0,14.542, +2016-08-03 08:30:00,,,18.14 +2016-08-03 08:35:29,3582.0,14.542, +2016-08-03 08:45:00,,,18.1064 +2016-08-03 08:45:32,3582.0,14.6388, +2016-08-03 08:55:34,3582.0,14.542, +2016-08-03 09:00:00,,,18.1064 +2016-08-03 09:05:37,3583.0,14.5738, +2016-08-03 09:15:00,,,18.1064 +2016-08-03 09:15:39,3584.0,14.5738, +2016-08-03 09:25:42,3584.0,14.6375, +2016-08-03 09:30:00,,,18.1064 +2016-08-03 09:35:45,3584.0,14.6694, +2016-08-03 09:45:00,,,18.1048 +2016-08-03 09:45:47,3584.0,14.542, +2016-08-03 09:55:50,3585.0,14.5738, +2016-08-03 10:00:00,,,18.1416 +2016-08-03 10:05:53,3583.0,14.6694, +2016-08-03 10:15:00,,,18.0012 +2016-08-03 10:15:55,3584.0,14.5738, +2016-08-03 10:25:58,3586.0,14.5738, +2016-08-03 10:30:00,,,18.0362 +2016-08-03 10:36:01,3587.0,14.5433, +2016-08-03 10:45:00,,,18.0012 +2016-08-03 10:46:04,3588.0,14.5738, +2016-08-03 10:56:06,3588.0,14.542, +2016-08-03 11:00:00,,,17.9964 +2016-08-03 11:06:16,3589.0,14.542, +2016-08-03 11:15:00,,,17.9996 +2016-08-03 11:16:19,3591.0,14.5738, +2016-08-03 11:26:22,3591.0,14.5738, +2016-08-03 11:30:00,,,18.0012 +2016-08-03 11:36:24,3591.0,14.542, +2016-08-03 11:45:00,,,18.0012 +2016-08-03 11:46:27,3592.0,14.6375, +2016-08-03 11:56:30,3592.0,14.542, +2016-08-03 12:00:00,,,18.0713 +2016-08-03 12:06:32,3592.0,14.5738, +2016-08-03 12:15:00,,,18.0028 +2016-08-03 12:16:35,3593.0,14.542, +2016-08-03 12:26:38,3593.0,14.542, +2016-08-03 12:30:00,,,18.0012 +2016-08-03 12:36:41,3594.0,14.542, +2016-08-03 12:45:00,,,18.0012 +2016-08-03 12:46:43,3595.0,14.542, +2016-08-03 12:56:46,3595.0,14.5445, +2016-08-03 13:00:00,,,18.0012 +2016-08-03 13:06:49,3596.0,14.5738, +2016-08-03 13:15:00,,,17.9964 +2016-08-03 13:16:51,3597.0,14.5777, +2016-08-03 13:27:01,3598.0,14.514, +2016-08-03 13:30:00,,,18.0012 +2016-08-03 13:37:04,3598.0,14.5458, +2016-08-03 13:45:00,,,18.0012 +2016-08-03 13:47:06,3598.0,14.5458, +2016-08-03 13:57:09,3598.0,14.5458, +2016-08-03 14:00:00,,,18.0314 +2016-08-03 14:07:12,3598.0,14.5777, +2016-08-03 14:15:00,,,17.9964 +2016-08-03 14:17:14,3599.0,14.5458, +2016-08-03 14:27:17,3599.0,14.5497, +2016-08-03 14:30:00,,,18.0362 +2016-08-03 14:37:20,3599.0,14.5829, +2016-08-03 14:45:00,,,18.0362 +2016-08-03 14:47:23,3598.0,14.550999999999998, +2016-08-03 14:57:25,3599.0,14.5816, +2016-08-03 15:00:00,,,17.9964 +2016-08-03 15:07:28,3599.0,14.5497, +2016-08-03 15:15:00,,,18.0012 +2016-08-03 15:17:31,3598.0,14.5497, +2016-08-03 15:27:34,3599.0,14.5536, +2016-08-03 15:30:00,,,17.9296 +2016-08-03 15:37:36,3599.0,14.5523, +2016-08-03 15:45:00,,,17.9312 +2016-08-03 15:47:39,3599.0,14.5536, +2016-08-03 15:57:42,3599.0,14.5854, +2016-08-03 16:00:00,,,17.9264 +2016-08-03 16:07:45,3599.0,14.5549, +2016-08-03 16:15:00,,,17.9312 +2016-08-03 16:17:47,3598.0,14.5536, +2016-08-03 16:27:50,3599.0,14.5854, +2016-08-03 16:30:00,,,17.9312 +2016-08-03 16:37:53,3598.0,14.5536, +2016-08-03 16:45:00,,,17.9264 +2016-08-03 16:47:56,3598.0,14.5536, +2016-08-03 16:57:58,3598.0,14.5536, +2016-08-03 17:00:00,,,17.9312 +2016-08-03 17:08:01,3598.0,14.5536, +2016-08-03 17:15:00,,,17.9296 +2016-08-03 17:18:04,3598.0,14.5536, +2016-08-03 17:28:07,3598.0,14.5523, +2016-08-03 17:30:00,,,17.963 +2016-08-03 17:38:09,3598.0,14.5854, +2016-08-03 17:45:00,,,17.9312 +2016-08-03 17:48:12,3598.0,14.5536, +2016-08-03 17:58:15,3598.0,14.5536, +2016-08-03 18:00:00,,,17.9312 +2016-08-03 18:08:18,3598.0,14.5536, +2016-08-03 18:15:00,,,17.9312 +2016-08-03 18:18:20,3598.0,14.5575, +2016-08-03 18:28:23,3598.0,14.5893, +2016-08-03 18:30:00,,,17.8963 +2016-08-03 18:38:26,3598.0,14.5893, +2016-08-03 18:45:00,,,17.9264 +2016-08-03 18:48:28,3596.0,14.5575, +2016-08-03 18:58:31,3598.0,14.5575, +2016-08-03 19:00:00,,,17.9312 +2016-08-03 19:08:34,3596.0,14.5575, +2016-08-03 19:15:00,,,17.9662 +2016-08-03 19:18:37,3597.0,14.5575, +2016-08-03 19:28:39,3597.0,14.5893, +2016-08-03 19:30:00,,,17.9296 +2016-08-03 19:38:42,3596.0,14.5906, +2016-08-03 19:45:00,,,17.9312 +2016-08-03 19:48:45,3596.0,14.5575, +2016-08-03 19:58:47,3596.0,14.5906, +2016-08-03 20:00:00,,,17.9662 +2016-08-03 20:08:50,3595.0,14.5575, +2016-08-03 20:15:00,,,17.9312 +2016-08-03 20:18:53,3594.0,14.5575, +2016-08-03 20:28:55,3595.0,14.5575, +2016-08-03 20:30:00,,,17.9312 +2016-08-03 20:38:58,3595.0,14.5588, +2016-08-03 20:45:00,,,17.9662 +2016-08-03 20:49:00,3594.0,14.5575, +2016-08-03 20:59:03,3594.0,14.5893, +2016-08-03 21:00:00,,,17.9312 +2016-08-03 21:09:05,3594.0,14.5893, +2016-08-03 21:15:00,,,17.9312 +2016-08-03 21:19:08,3592.0,14.5575, +2016-08-03 21:29:11,3592.0,14.5893, +2016-08-03 21:30:00,,,17.9662 +2016-08-03 21:39:13,3592.0,14.5575, +2016-08-03 21:45:00,,,17.9312 +2016-08-03 21:49:16,3593.0,14.5575, +2016-08-03 21:59:18,3592.0,14.5893, +2016-08-03 22:00:00,,,17.9312 +2016-08-03 22:09:21,3592.0,14.5893, +2016-08-03 22:15:00,,,17.9312 +2016-08-03 22:19:24,3592.0,14.5575, +2016-08-03 22:29:28,3592.0,14.5575, +2016-08-03 22:30:00,,,17.9312 +2016-08-03 22:39:31,3592.0,14.5575, +2016-08-03 22:45:00,,,17.9312 +2016-08-03 22:49:34,3592.0,14.5906, +2016-08-03 22:59:36,3592.0,14.5893, +2016-08-03 23:00:00,,,17.9296 +2016-08-03 23:09:39,3591.0,14.5893, +2016-08-03 23:15:00,,,17.9312 +2016-08-03 23:19:42,3592.0,14.5575, +2016-08-03 23:29:44,3591.0,14.5614, +2016-08-03 23:30:00,,,17.9312 +2016-08-03 23:39:47,3591.0,14.5893, +2016-08-03 23:45:00,,,17.9312 +2016-08-03 23:49:50,3591.0,14.5893, +2016-08-03 23:59:52,3591.0,14.5575, +2016-08-04 00:00:00,,,17.9312 +2016-08-04 00:09:55,3590.0,14.5614, +2016-08-04 00:15:00,,,17.9312 +2016-08-04 00:19:58,3591.0,14.5575, +2016-08-04 00:30:00,3590.0,14.5575,17.9312 +2016-08-04 00:40:03,3590.0,14.5614, +2016-08-04 00:45:00,,,17.9312 +2016-08-04 00:50:06,3590.0,14.5893, +2016-08-04 01:00:00,,,17.9312 +2016-08-04 01:00:08,3590.0,14.5575, +2016-08-04 01:10:11,3589.0,14.5906, +2016-08-04 01:15:00,,,17.9312 +2016-08-04 01:20:14,3589.0,14.5893, +2016-08-04 01:30:00,,,17.9296 +2016-08-04 01:30:16,3589.0,14.5575, +2016-08-04 01:40:19,3588.0,14.5893, +2016-08-04 01:45:00,,,17.9312 +2016-08-04 01:50:22,3588.0,14.5893, +2016-08-04 02:00:00,,,17.9312 +2016-08-04 02:00:25,3589.0,14.5575, +2016-08-04 02:10:27,3587.0,14.5562, +2016-08-04 02:15:00,,,17.9312 +2016-08-04 02:20:30,3588.0,14.5893, +2016-08-04 02:30:00,,,17.9312 +2016-08-04 02:30:33,3588.0,14.5893, +2016-08-04 02:40:35,3588.0,14.5893, +2016-08-04 02:45:00,,,17.9312 +2016-08-04 02:50:38,3588.0,14.5919, +2016-08-04 03:00:00,,,17.9312 +2016-08-04 03:00:41,3588.0,14.5588, +2016-08-04 03:10:43,3588.0,14.5575, +2016-08-04 03:15:00,,,17.9312 +2016-08-04 03:20:46,3588.0,14.5575, +2016-08-04 03:30:00,,,17.9312 +2016-08-04 03:30:49,3588.0,14.5575, +2016-08-04 03:40:51,3588.0,14.5575, +2016-08-04 03:45:00,,,17.9312 +2016-08-04 03:50:54,3587.0,14.5893, +2016-08-04 04:00:00,,,17.9312 +2016-08-04 04:00:57,3588.0,14.5575, +2016-08-04 04:10:59,3587.0,14.5893, +2016-08-04 04:15:00,,,17.9312 +2016-08-04 04:21:02,3587.0,14.5893, +2016-08-04 04:30:00,,,17.9662 +2016-08-04 04:31:05,3587.0,14.5575, +2016-08-04 04:41:07,3587.0,14.5893, +2016-08-04 04:45:00,,,17.9312 +2016-08-04 04:51:10,3586.0,14.5575, +2016-08-04 05:00:00,,,17.9312 +2016-08-04 05:01:12,3587.0,14.5893, +2016-08-04 05:11:15,3587.0,14.5893, +2016-08-04 05:15:00,,,17.9312 +2016-08-04 05:21:18,3587.0,14.5575, +2016-08-04 05:30:00,,,17.9312 +2016-08-04 05:31:20,3587.0,14.5893, +2016-08-04 05:41:23,3587.0,14.5893, +2016-08-04 05:45:00,,,17.9328 +2016-08-04 05:51:25,3587.0,14.5575, +2016-08-04 06:00:00,,,17.9312 +2016-08-04 06:01:28,3587.0,14.5575, +2016-08-04 06:11:31,3586.0,14.5893, +2016-08-04 06:15:00,,,17.9312 +2016-08-04 06:21:33,3586.0,14.5575, +2016-08-04 06:30:00,,,17.9312 +2016-08-04 06:31:36,3586.0,14.5575, +2016-08-04 06:41:38,3586.0,14.5575, +2016-08-04 06:45:00,,,17.9662 +2016-08-04 06:51:41,3585.0,14.5893, +2016-08-04 07:00:00,,,17.9312 +2016-08-04 07:01:43,3586.0,14.5893, +2016-08-04 07:11:46,3586.0,14.5575, +2016-08-04 07:15:00,,,17.9296 +2016-08-04 07:21:49,3586.0,14.5575, +2016-08-04 07:30:00,,,17.9312 +2016-08-04 07:31:51,3586.0,14.5575, +2016-08-04 07:41:53,3587.0,14.5893, +2016-08-04 07:45:00,,,17.9662 +2016-08-04 07:51:56,3586.0,14.5575, +2016-08-04 08:00:00,,,17.9312 +2016-08-04 08:01:58,3587.0,14.5893, +2016-08-04 08:12:01,3583.0,14.5588, +2016-08-04 08:15:00,,,17.9662 +2016-08-04 08:22:04,3587.0,14.5575, +2016-08-04 08:30:00,,,17.9662 +2016-08-04 08:32:07,3588.0,14.5575, +2016-08-04 08:42:09,3588.0,14.5575, +2016-08-04 08:45:00,,,17.9312 +2016-08-04 08:52:12,3588.0,14.5575, +2016-08-04 09:00:00,,,17.9312 +2016-08-04 09:02:15,3588.0,14.5575, +2016-08-04 09:12:17,3590.0,14.5575, +2016-08-04 09:15:00,,,17.9312 +2016-08-04 09:22:20,3590.0,14.5893, +2016-08-04 09:30:00,,,17.9312 +2016-08-04 09:32:23,3591.0,14.5893, +2016-08-04 09:42:25,3591.0,14.5575, +2016-08-04 09:45:00,,,17.9312 +2016-08-04 09:52:28,3591.0,14.5893, +2016-08-04 10:00:00,,,17.9312 +2016-08-04 10:02:31,3591.0,14.5575, +2016-08-04 10:12:33,3591.0,14.5575, +2016-08-04 10:15:00,,,17.9312 +2016-08-04 10:22:36,3592.0,14.5906, +2016-08-04 10:30:00,,,17.9312 +2016-08-04 10:32:38,3591.0,14.5575, +2016-08-04 10:42:41,3590.0,14.5575, +2016-08-04 10:45:00,,,17.9312 +2016-08-04 10:52:44,3590.0,14.5575, +2016-08-04 11:00:00,,,17.9312 +2016-08-04 11:02:46,3589.0,14.5575, +2016-08-04 11:12:49,3590.0,14.5893, +2016-08-04 11:15:00,,,17.9312 +2016-08-04 11:22:52,3591.0,14.5906, +2016-08-04 11:30:00,,,17.9312 +2016-08-04 11:32:54,3587.0,14.5893, +2016-08-04 11:42:57,3590.0,14.5575, +2016-08-04 11:45:00,,,17.9312 +2016-08-04 11:53:00,3592.0,14.5575, +2016-08-04 12:00:00,,,17.9312 +2016-08-04 12:03:02,3592.0,14.5575, +2016-08-04 12:13:05,3592.0,14.5893, +2016-08-04 12:15:00,,,17.9312 +2016-08-04 12:23:08,3593.0,14.5893, +2016-08-04 12:30:00,,,17.9312 +2016-08-04 12:33:11,3593.0,14.4621, +2016-08-04 12:43:13,3594.0,14.4939, +2016-08-04 12:45:00,,,17.8614 +2016-08-04 12:53:16,3595.0,14.4621, +2016-08-04 13:00:00,,,17.8266 +2016-08-04 13:03:19,3595.0,14.4621, +2016-08-04 13:13:21,3595.0,14.4621, +2016-08-04 13:15:00,,,17.8266 +2016-08-04 13:23:24,3596.0,14.4939, +2016-08-04 13:30:00,,,17.7902 +2016-08-04 13:33:27,3596.0,14.4608, +2016-08-04 13:43:30,3597.0,14.4621, +2016-08-04 13:45:00,,,17.8266 +2016-08-04 13:53:33,3597.0,14.4634, +2016-08-04 14:00:00,,,17.7918 +2016-08-04 14:03:35,3598.0,14.4621, +2016-08-04 14:13:38,3598.0,14.4621, +2016-08-04 14:15:00,,,17.8266 +2016-08-04 14:23:41,3598.0,14.4939, +2016-08-04 14:30:00,,,17.8266 +2016-08-04 14:33:44,3598.0,14.4621, +2016-08-04 14:43:47,3598.0,14.4621, +2016-08-04 14:45:00,,,17.8266 +2016-08-04 14:53:49,3598.0,14.4608, +2016-08-04 15:00:00,,,17.8282 +2016-08-04 15:03:52,3598.0,14.367, +2016-08-04 15:13:55,3598.0,14.367, +2016-08-04 15:15:00,,,17.8266 +2016-08-04 15:23:58,3598.0,14.367, +2016-08-04 15:30:00,,,17.8266 +2016-08-04 15:34:01,3598.0,14.367, +2016-08-04 15:44:03,3598.0,14.367, +2016-08-04 15:45:00,,,17.7918 +2016-08-04 15:54:06,3598.0,14.367, +2016-08-04 16:00:00,,,17.8266 +2016-08-04 16:04:09,3598.0,14.3708, +2016-08-04 16:14:12,3598.0,14.367, +2016-08-04 16:15:00,,,17.8266 +2016-08-04 16:24:14,3598.0,14.3696, +2016-08-04 16:30:00,,,17.825 +2016-08-04 16:34:17,3598.0,14.3696, +2016-08-04 16:44:19,3598.0,14.3696, +2016-08-04 16:45:00,,,17.8266 +2016-08-04 16:54:21,3598.0,14.3696, +2016-08-04 17:00:00,,,17.8266 +2016-08-04 17:04:24,3598.0,14.3696, +2016-08-04 17:14:27,3599.0,14.3696, +2016-08-04 17:15:00,,,17.8282 +2016-08-04 17:24:30,3598.0,14.3696, +2016-08-04 17:30:00,,,17.7918 +2016-08-04 17:34:32,3598.0,14.3696, +2016-08-04 17:44:35,3599.0,14.4012, +2016-08-04 17:45:00,,,17.7918 +2016-08-04 17:54:38,3598.0,14.3696, +2016-08-04 18:00:00,,,17.8266 +2016-08-04 18:04:41,3598.0,14.3734, +2016-08-04 18:14:43,3598.0,14.3696, +2016-08-04 18:15:00,,,17.7902 +2016-08-04 18:24:46,3598.0,14.3696, +2016-08-04 18:30:00,,,17.8266 +2016-08-04 18:34:48,3598.0,14.3708, +2016-08-04 18:44:51,3598.0,14.3734, +2016-08-04 18:45:00,,,17.8266 +2016-08-04 18:54:54,3598.0,14.3734, +2016-08-04 19:00:00,,,17.8266 +2016-08-04 19:04:56,3596.0,14.4368, +2016-08-04 19:14:59,3598.0,14.3734, +2016-08-04 19:15:00,,,17.8266 +2016-08-04 19:25:02,3598.0,14.4051, +2016-08-04 19:30:00,,,17.8266 +2016-08-04 19:35:04,3598.0,14.3734, +2016-08-04 19:45:00,,,17.8266 +2016-08-04 19:45:07,3597.0,14.3734, +2016-08-04 19:55:10,3596.0,14.4064, +2016-08-04 20:00:00,,,17.8266 +2016-08-04 20:05:12,3594.0,14.4368, +2016-08-04 20:15:00,,,17.8266 +2016-08-04 20:15:15,3593.0,14.3734, +2016-08-04 20:25:18,3593.0,14.3734, +2016-08-04 20:30:00,,,17.7918 +2016-08-04 20:35:20,3590.0,14.5003, +2016-08-04 20:45:00,,,17.825 +2016-08-04 20:45:23,3588.0,14.5003, +2016-08-04 20:55:26,3588.0,14.4686, +2016-08-04 21:00:00,,,17.7902 +2016-08-04 21:05:28,3588.0,14.5003, +2016-08-04 21:15:00,,,17.8266 +2016-08-04 21:15:31,3587.0,14.4686, +2016-08-04 21:25:34,3587.0,14.5003, +2016-08-04 21:30:00,,,17.7918 +2016-08-04 21:35:36,3585.0,14.4686, +2016-08-04 21:45:00,,,17.8266 +2016-08-04 21:45:39,3585.0,14.4698, +2016-08-04 21:55:41,3582.0,14.4686, +2016-08-04 22:00:00,,,17.8266 +2016-08-04 22:05:44,3584.0,14.4698, +2016-08-04 22:15:00,,,17.7918 +2016-08-04 22:15:46,3583.0,14.4686, +2016-08-04 22:25:49,3585.0,14.4686, +2016-08-04 22:30:00,,,17.8266 +2016-08-04 22:35:52,3582.0,14.5003, +2016-08-04 22:45:00,,,17.8614 +2016-08-04 22:45:54,3583.0,14.5321, +2016-08-04 22:55:57,3583.0,14.466, +2016-08-04 23:00:00,,,17.7918 +2016-08-04 23:05:59,3582.0,14.4965, +2016-08-04 23:15:00,,,17.8266 +2016-08-04 23:16:02,3580.0,14.466, +2016-08-04 23:26:04,3581.0,14.466, +2016-08-04 23:30:00,,,17.8266 +2016-08-04 23:36:07,3581.0,14.4673, +2016-08-04 23:45:00,,,17.8282 +2016-08-04 23:46:09,3581.0,14.466, +2016-08-04 23:56:12,3581.0,14.466, +2016-08-05 00:00:00,,,17.8266 +2016-08-05 00:06:15,3581.0,14.466, +2016-08-05 00:15:00,,,17.8266 +2016-08-05 00:16:17,3580.0,14.4647, +2016-08-05 00:26:20,3580.0,14.4977, +2016-08-05 00:30:00,,,17.8266 +2016-08-05 00:36:22,3580.0,14.4647, +2016-08-05 00:45:00,,,17.8614 +2016-08-05 00:46:25,3579.0,14.4647, +2016-08-05 00:56:27,3578.0,14.4621, +2016-08-05 01:00:00,,,17.8266 +2016-08-05 01:06:30,3578.0,14.4621, +2016-08-05 01:15:00,,,17.8266 +2016-08-05 01:16:32,3578.0,14.4939, +2016-08-05 01:26:35,3578.0,14.4621, +2016-08-05 01:30:00,,,17.8266 +2016-08-05 01:36:37,3577.0,14.4939, +2016-08-05 01:45:00,,,17.8266 +2016-08-05 01:46:41,3577.0,14.4939, +2016-08-05 01:56:44,3577.0,14.4621, +2016-08-05 02:00:00,,,17.8266 +2016-08-05 02:06:47,3577.0,14.4621, +2016-08-05 02:15:00,,,17.8266 +2016-08-05 02:16:50,3576.0,14.4621, +2016-08-05 02:26:52,3576.0,14.4608, +2016-08-05 02:30:00,,,17.8266 +2016-08-05 02:36:55,3576.0,14.4621, +2016-08-05 02:45:00,,,17.8266 +2016-08-05 02:46:57,3576.0,14.5257, +2016-08-05 02:57:00,3576.0,14.4621, +2016-08-05 03:00:00,,,17.7918 +2016-08-05 03:07:03,3576.0,14.4621, +2016-08-05 03:15:00,,,17.8266 +2016-08-05 03:17:05,3575.0,14.4621, +2016-08-05 03:27:08,3576.0,14.4939, +2016-08-05 03:30:00,,,17.8282 +2016-08-05 03:37:10,3575.0,14.4621, +2016-08-05 03:45:00,,,17.8266 +2016-08-05 03:47:13,3576.0,14.4621, +2016-08-05 03:57:15,3575.0,14.4621, +2016-08-05 04:00:00,,,17.8266 +2016-08-05 04:07:18,3575.0,14.4939, +2016-08-05 04:15:00,,,17.8266 +2016-08-05 04:17:20,3575.0,14.49, +2016-08-05 04:27:23,3576.0,14.49, +2016-08-05 04:30:00,,,17.8266 +2016-08-05 04:37:25,3575.0,14.4583, +2016-08-05 04:45:00,,,17.8266 +2016-08-05 04:47:28,3575.0,14.5218, +2016-08-05 04:57:30,3574.0,14.49, +2016-08-05 05:00:00,,,17.8266 +2016-08-05 05:07:33,3574.0,14.4583, +2016-08-05 05:15:00,,,17.8614 +2016-08-05 05:17:35,3574.0,14.4583, +2016-08-05 05:27:38,3574.0,14.49, +2016-08-05 05:30:00,,,17.8266 +2016-08-05 05:37:40,3574.0,14.49, +2016-08-05 05:45:00,,,17.8266 +2016-08-05 05:47:43,3574.0,14.4583, +2016-08-05 05:57:45,3574.0,14.5218, +2016-08-05 06:00:00,,,17.8266 +2016-08-05 06:07:47,3572.0,14.49, +2016-08-05 06:15:00,,,17.8266 +2016-08-05 06:17:50,3574.0,14.49, +2016-08-05 06:27:52,3573.0,14.4583, +2016-08-05 06:30:00,,,17.8266 +2016-08-05 06:37:55,3573.0,14.457, +2016-08-05 06:45:00,,,17.8266 +2016-08-05 06:47:57,3573.0,14.4583, +2016-08-05 06:58:00,3574.0,14.4583, +2016-08-05 07:00:00,,,17.7918 +2016-08-05 07:08:02,3574.0,14.4583, +2016-08-05 07:15:00,,,17.7918 +2016-08-05 07:18:04,3574.0,14.49, +2016-08-05 07:28:07,3574.0,14.4583, +2016-08-05 07:30:00,,,17.8266 +2016-08-05 07:38:09,3573.0,14.4887, +2016-08-05 07:45:00,,,17.8266 +2016-08-05 07:48:12,3574.0,14.49, +2016-08-05 07:58:14,3574.0,14.49, +2016-08-05 08:00:00,,,17.8266 +2016-08-05 08:08:17,3575.0,14.4583, +2016-08-05 08:15:00,,,17.8266 +2016-08-05 08:18:19,3575.0,14.4544, +2016-08-05 08:28:22,3576.0,14.4544, +2016-08-05 08:30:00,,,17.8266 +2016-08-05 08:38:24,3576.0,14.4544, +2016-08-05 08:45:00,,,17.8266 +2016-08-05 08:48:27,3577.0,14.4544, +2016-08-05 08:58:29,3577.0,14.4861, +2016-08-05 09:00:00,,,17.8266 +2016-08-05 09:08:32,3577.0,14.4544, +2016-08-05 09:15:00,,,17.8266 +2016-08-05 09:18:34,3578.0,14.4544, +2016-08-05 09:28:37,3579.0,14.4544, +2016-08-05 09:30:00,,,17.8266 +2016-08-05 09:38:39,3580.0,14.4544, +2016-08-05 09:45:00,,,17.8266 +2016-08-05 09:48:42,3581.0,14.4544, +2016-08-05 09:58:45,3581.0,14.4544, +2016-08-05 10:00:00,,,17.8266 +2016-08-05 10:08:47,3582.0,14.5179, +2016-08-05 10:15:00,,,17.8266 +2016-08-05 10:18:50,3583.0,14.4861, +2016-08-05 10:28:52,3583.0,14.4544, +2016-08-05 10:30:00,,,17.8266 +2016-08-05 10:38:55,3585.0,14.4861, +2016-08-05 10:45:00,,,17.825 +2016-08-05 10:48:57,3585.0,14.4861, +2016-08-05 10:58:59,3586.0,14.3593, +2016-08-05 11:00:00,,,17.8266 +2016-08-05 11:09:02,3587.0,14.4227, +2016-08-05 11:15:00,,,17.8266 +2016-08-05 11:19:04,3588.0,14.3593, +2016-08-05 11:29:07,3588.0,14.3593, +2016-08-05 11:30:00,,,17.7918 +2016-08-05 11:39:10,3589.0,14.3593, +2016-08-05 11:45:00,,,17.8266 +2016-08-05 11:49:12,3591.0,14.3593, +2016-08-05 11:59:15,3592.0,14.3593, +2016-08-05 12:00:00,,,17.8266 +2016-08-05 12:09:18,3592.0,14.3593, +2016-08-05 12:15:00,,,17.8266 +2016-08-05 12:19:21,3593.0,14.390999999999998, +2016-08-05 12:29:23,3593.0,14.3593, +2016-08-05 12:30:00,,,17.8266 +2016-08-05 12:39:26,3593.0,14.3593, +2016-08-05 12:45:00,,,17.825 +2016-08-05 12:49:29,3595.0,14.2961, +2016-08-05 12:59:31,3595.0,14.2974, +2016-08-05 13:00:00,,,17.825 +2016-08-05 13:09:34,3595.0,14.2646, +2016-08-05 13:15:00,,,17.8266 +2016-08-05 13:19:37,3596.0,14.2961, +2016-08-05 13:29:39,3597.0,14.2961, +2016-08-05 13:30:00,,,17.7223 +2016-08-05 13:39:42,3598.0,14.2684, +2016-08-05 13:45:00,,,17.7223 +2016-08-05 13:49:45,3598.0,14.2987, +2016-08-05 13:59:47,3598.0,14.2987, +2016-08-05 14:00:00,,,17.7223 +2016-08-05 14:09:50,3598.0,14.2987, +2016-08-05 14:15:00,,,17.7223 +2016-08-05 14:19:53,3598.0,14.2987, +2016-08-05 14:29:56,3598.0,14.2987, +2016-08-05 14:30:00,,,17.7223 +2016-08-05 14:39:58,3598.0,14.1725, +2016-08-05 14:45:00,,,17.7223 +2016-08-05 14:50:01,3598.0,14.2053, +2016-08-05 15:00:00,,,17.6876 +2016-08-05 15:00:04,3598.0,14.1738, +2016-08-05 15:10:06,3598.0,14.2053, +2016-08-05 15:15:00,,,17.7223 +2016-08-05 15:20:09,3598.0,14.1738, +2016-08-05 15:30:00,,,17.6876 +2016-08-05 15:30:12,3598.0,14.2053, +2016-08-05 15:40:14,3598.0,14.1738, +2016-08-05 15:45:00,,,17.7223 +2016-08-05 15:50:17,3598.0,14.204, +2016-08-05 16:00:00,,,17.6876 +2016-08-05 16:00:20,3598.0,14.2053, +2016-08-05 16:10:23,3598.0,14.2053, +2016-08-05 16:15:00,,,17.7223 +2016-08-05 16:20:25,3598.0,14.2053, +2016-08-05 16:30:00,,,17.757 +2016-08-05 16:30:28,3599.0,14.2053, +2016-08-05 16:40:31,3599.0,14.204, +2016-08-05 16:45:00,,,17.7223 +2016-08-05 16:50:34,3599.0,14.1776, +2016-08-05 17:00:00,,,17.7223 +2016-08-05 17:00:37,3599.0,14.2053, +2016-08-05 17:10:39,3599.0,14.1776, +2016-08-05 17:15:00,,,17.7223 +2016-08-05 17:20:42,3599.0,14.2078, +2016-08-05 17:30:00,,,17.7223 +2016-08-05 17:30:44,3599.0,14.2091, +2016-08-05 17:40:55,3599.0,14.1776, +2016-08-05 17:45:00,,,17.7223 +2016-08-05 17:50:58,3599.0,14.1776, +2016-08-05 18:00:00,,,17.6184 +2016-08-05 18:01:01,3599.0,14.1763, +2016-08-05 18:11:03,3599.0,14.2091, +2016-08-05 18:15:00,,,17.7223 +2016-08-05 18:21:06,3598.0,14.2091, +2016-08-05 18:30:00,,,17.5839 +2016-08-05 18:31:09,3599.0,14.2091, +2016-08-05 18:41:12,3598.0,14.2091, +2016-08-05 18:45:00,,,17.5839 +2016-08-05 18:51:14,3598.0,14.2091, +2016-08-05 19:00:00,,,17.6184 +2016-08-05 19:01:17,3598.0,14.2091, +2016-08-05 19:11:20,3598.0,14.2078, +2016-08-05 19:15:00,,,17.5839 +2016-08-05 19:21:23,3598.0,14.2091, +2016-08-05 19:30:00,,,17.6184 +2016-08-05 19:31:25,3598.0,14.1763, +2016-08-05 19:41:28,3598.0,14.1776, +2016-08-05 19:45:00,,,17.6184 +2016-08-05 19:51:30,3598.0,14.1776, +2016-08-05 20:00:00,,,17.5839 +2016-08-05 20:01:32,3598.0,14.2078, +2016-08-05 20:11:35,3598.0,14.1776, +2016-08-05 20:15:00,,,17.6184 +2016-08-05 20:21:37,3597.0,14.2393, +2016-08-05 20:30:00,,,17.6184 +2016-08-05 20:31:40,3597.0,14.2091, +2016-08-05 20:41:43,3596.0,14.2091, +2016-08-05 20:45:00,,,17.6184 +2016-08-05 20:51:45,3595.0,14.2091, +2016-08-05 21:00:00,,,17.6184 +2016-08-05 21:01:48,3595.0,14.2091, +2016-08-05 21:11:51,3594.0,14.2078, +2016-08-05 21:15:00,,,17.6184 +2016-08-05 21:21:53,3593.0,14.2091, +2016-08-05 21:30:00,,,17.6184 +2016-08-05 21:31:56,3592.0,14.2078, +2016-08-05 21:41:58,3592.0,14.1776, +2016-08-05 21:45:00,,,17.6184 +2016-08-05 21:52:01,3591.0,14.2091, +2016-08-05 22:00:00,,,17.6184 +2016-08-05 22:02:04,3591.0,14.2091, +2016-08-05 22:12:06,3591.0,14.2129, +2016-08-05 22:15:00,,,17.5839 +2016-08-05 22:22:09,3590.0,14.2078, +2016-08-05 22:30:00,,,17.6184 +2016-08-05 22:32:11,3588.0,14.1776, +2016-08-05 22:42:14,3588.0,14.2091, +2016-08-05 22:45:00,,,17.6184 +2016-08-05 22:52:16,3588.0,14.2091, +2016-08-05 23:00:00,,,17.6169 +2016-08-05 23:02:19,3588.0,14.2091, +2016-08-05 23:12:21,3587.0,14.2091, +2016-08-05 23:15:00,,,17.653 +2016-08-05 23:22:24,3586.0,14.2091, +2016-08-05 23:30:00,,,17.6184 +2016-08-05 23:32:26,3586.0,14.2091, +2016-08-05 23:42:28,3586.0,14.2091, +2016-08-05 23:45:00,,,17.6184 +2016-08-05 23:52:31,3585.0,14.2091, +2016-08-06 00:00:00,,,17.6546 +2016-08-06 00:02:33,3585.0,14.2091, +2016-08-06 00:12:36,3582.0,14.2091, +2016-08-06 00:15:00,,,17.5854 +2016-08-06 00:22:38,3581.0,14.2091, +2016-08-06 00:30:00,,,17.653 +2016-08-06 00:32:41,3581.0,14.2406, +2016-08-06 00:42:43,3581.0,14.2091, +2016-08-06 00:45:00,,,17.6184 +2016-08-06 00:52:46,3581.0,14.2091, +2016-08-06 01:00:00,,,17.5839 +2016-08-06 01:02:48,3581.0,14.2091, +2016-08-06 01:12:51,3581.0,14.2091, +2016-08-06 01:15:00,,,17.653 +2016-08-06 01:22:53,3581.0,14.1776, +2016-08-06 01:30:00,,,17.5839 +2016-08-06 01:32:56,3581.0,14.2078, +2016-08-06 01:42:58,3581.0,14.2091, +2016-08-06 01:45:00,,,17.6514 +2016-08-06 01:53:01,3581.0,14.2091, +2016-08-06 02:00:00,,,17.653 +2016-08-06 02:03:04,3581.0,14.2091, +2016-08-06 02:13:06,3580.0,14.2091, +2016-08-06 02:15:00,,,17.6184 +2016-08-06 02:23:09,3580.0,14.2091, +2016-08-06 02:30:00,,,17.6184 +2016-08-06 02:33:11,3579.0,14.2091, +2016-08-06 02:43:14,3579.0,14.2053, +2016-08-06 02:45:00,,,17.6184 +2016-08-06 02:53:16,3579.0,14.2053, +2016-08-06 03:00:00,,,17.653 +2016-08-06 03:03:19,3579.0,14.2053, +2016-08-06 03:13:21,3578.0,14.204, +2016-08-06 03:15:00,,,17.6184 +2016-08-06 03:23:24,3578.0,14.2053, +2016-08-06 03:30:00,,,17.6184 +2016-08-06 03:33:26,3578.0,14.2053, +2016-08-06 03:43:29,3578.0,14.2053, +2016-08-06 03:45:00,,,17.5839 +2016-08-06 03:53:31,3578.0,14.2053, +2016-08-06 04:00:00,,,17.6184 +2016-08-06 04:03:34,3577.0,14.2053, +2016-08-06 04:13:37,3578.0,14.2053, +2016-08-06 04:15:00,,,17.6184 +2016-08-06 04:23:39,3577.0,14.2053, +2016-08-06 04:30:00,,,17.6184 +2016-08-06 04:33:42,3577.0,14.2053, +2016-08-06 04:43:44,3577.0,14.1738, +2016-08-06 04:45:00,,,17.5839 +2016-08-06 04:53:46,3577.0,14.2053, +2016-08-06 05:00:00,,,17.62 +2016-08-06 05:03:50,3577.0,14.2053, +2016-08-06 05:13:53,3576.0,14.2053, +2016-08-06 05:15:00,,,17.6184 +2016-08-06 05:23:56,3576.0,14.1725, +2016-08-06 05:30:00,,,17.6184 +2016-08-06 05:33:58,3576.0,14.2053, +2016-08-06 05:44:01,3577.0,14.204, +2016-08-06 05:45:00,,,17.6184 +2016-08-06 05:54:03,3577.0,14.2053, +2016-08-06 06:00:00,,,17.653 +2016-08-06 06:04:06,3577.0,14.2053, +2016-08-06 06:14:09,3577.0,14.2053, +2016-08-06 06:15:00,,,17.6184 +2016-08-06 06:24:11,3577.0,14.2053, +2016-08-06 06:30:00,,,17.5839 +2016-08-06 06:34:14,3577.0,14.2053, +2016-08-06 06:44:17,3577.0,14.2015, +2016-08-06 06:45:00,,,17.5839 +2016-08-06 06:54:19,3577.0,14.2015, +2016-08-06 07:00:00,,,17.6184 +2016-08-06 07:04:22,3577.0,14.2015, +2016-08-06 07:14:24,3577.0,14.2015, +2016-08-06 07:15:00,,,17.5839 +2016-08-06 07:24:27,3577.0,14.2015, +2016-08-06 07:30:00,,,17.6184 +2016-08-06 07:34:29,3578.0,14.233, +2016-08-06 07:44:32,3578.0,14.1965, +2016-08-06 07:45:00,,,17.6184 +2016-08-06 07:54:35,3578.0,14.2015, +2016-08-06 08:00:00,,,17.6184 +2016-08-06 08:04:37,3578.0,14.2015, +2016-08-06 08:14:40,3580.0,14.17, +2016-08-06 08:15:00,,,17.653 +2016-08-06 08:24:43,3580.0,14.2015, +2016-08-06 08:30:00,,,17.5839 +2016-08-06 08:34:45,3580.0,14.2002, +2016-08-06 08:44:48,3581.0,14.2015, +2016-08-06 08:45:00,,,17.6184 +2016-08-06 08:54:51,3581.0,14.2015, +2016-08-06 09:00:00,,,17.6184 +2016-08-06 09:04:53,3581.0,14.1977, +2016-08-06 09:14:56,3581.0,14.1965, +2016-08-06 09:15:00,,,17.6184 +2016-08-06 09:24:58,3581.0,14.2015, +2016-08-06 09:30:00,,,17.6184 +2016-08-06 09:35:01,3581.0,14.1965, +2016-08-06 09:45:00,,,17.6184 +2016-08-06 09:45:03,3581.0,14.2015, +2016-08-06 09:55:06,3581.0,14.1977, +2016-08-06 10:00:00,,,17.6184 +2016-08-06 10:05:09,3581.0,14.1977, +2016-08-06 10:15:00,,,17.653 +2016-08-06 10:15:11,3582.0,14.1977, +2016-08-06 10:25:14,3582.0,14.1977, +2016-08-06 10:30:00,,,17.6184 +2016-08-06 10:35:17,3583.0,14.1977, +2016-08-06 10:45:00,,,17.5839 +2016-08-06 10:45:19,3582.0,14.1977, +2016-08-06 10:55:22,3582.0,14.1977, +2016-08-06 11:00:00,,,17.653 +2016-08-06 11:05:24,3581.0,14.1977, +2016-08-06 11:15:00,,,17.653 +2016-08-06 11:15:27,3582.0,14.1965, +2016-08-06 11:25:29,3582.0,14.1965, +2016-08-06 11:30:00,,,17.653 +2016-08-06 11:35:32,3583.0,14.1977, +2016-08-06 11:45:00,,,17.5839 +2016-08-06 11:45:35,3583.0,14.1977, +2016-08-06 11:55:37,3583.0,14.1977, +2016-08-06 12:00:00,,,17.5839 +2016-08-06 12:05:40,3585.0,14.1977, +2016-08-06 12:15:00,,,17.6184 +2016-08-06 12:15:43,3585.0,14.1977, +2016-08-06 12:25:45,3586.0,14.1977, +2016-08-06 12:30:00,,,17.5839 +2016-08-06 12:35:48,3586.0,14.1662, +2016-08-06 12:45:00,,,17.6184 +2016-08-06 12:45:51,3586.0,14.1965, +2016-08-06 12:55:53,3586.0,14.1977, +2016-08-06 13:00:00,,,17.5839 +2016-08-06 13:05:56,3587.0,14.1977, +2016-08-06 13:15:00,,,17.5839 +2016-08-06 13:15:59,3588.0,14.1977, +2016-08-06 13:26:01,3588.0,14.2015, +2016-08-06 13:30:00,,,17.653 +2016-08-06 13:36:04,3589.0,14.1977, +2016-08-06 13:45:00,,,17.6184 +2016-08-06 13:46:06,3589.0,14.1977, +2016-08-06 13:56:09,3591.0,14.165, +2016-08-06 14:00:00,,,17.6184 +2016-08-06 14:06:11,3592.0,14.1977, +2016-08-06 14:15:00,,,17.6184 +2016-08-06 14:16:13,3593.0,14.1071, +2016-08-06 14:26:16,3593.0,14.0757, +2016-08-06 14:30:00,,,17.5839 +2016-08-06 14:36:19,3593.0,14.1071, +2016-08-06 14:45:00,,,17.5494 +2016-08-06 14:46:21,3594.0,14.1071, +2016-08-06 14:56:24,3595.0,14.1071, +2016-08-06 15:00:00,,,17.5149 +2016-08-06 15:06:27,3594.0,14.1071, +2016-08-06 15:15:00,,,17.5494 +2016-08-06 15:16:29,3595.0,14.1071, +2016-08-06 15:26:32,3595.0,14.1059, +2016-08-06 15:30:00,,,17.5149 +2016-08-06 15:36:35,3595.0,14.1059, +2016-08-06 15:45:00,,,17.5494 +2016-08-06 15:46:38,3595.0,14.1059, +2016-08-06 15:56:40,3595.0,14.1071, +2016-08-06 16:00:00,,,17.5494 +2016-08-06 16:06:43,3596.0,14.1071, +2016-08-06 16:15:00,,,17.5149 +2016-08-06 16:16:46,3596.0,14.1071, +2016-08-06 16:26:48,3596.0,14.1071, +2016-08-06 16:30:00,,,17.4805 +2016-08-06 16:36:51,3596.0,14.1386, +2016-08-06 16:45:00,,,17.5494 +2016-08-06 16:46:54,3596.0,14.1071, +2016-08-06 16:56:56,3595.0,14.1071, +2016-08-06 17:00:00,,,17.5494 +2016-08-06 17:06:59,3595.0,14.1071, +2016-08-06 17:15:00,,,17.5149 +2016-08-06 17:17:02,3594.0,14.1071, +2016-08-06 17:27:04,3593.0,14.1109, +2016-08-06 17:30:00,,,17.5149 +2016-08-06 17:37:07,3592.0,14.0795, +2016-08-06 17:45:00,,,17.5494 +2016-08-06 17:47:10,3591.0,14.0795, +2016-08-06 17:57:12,3589.0,14.1411, +2016-08-06 18:00:00,,,17.5494 +2016-08-06 18:07:14,3588.0,14.1109, +2016-08-06 18:15:00,,,17.5149 +2016-08-06 18:17:24,3587.0,14.1109, +2016-08-06 18:27:27,3586.0,14.1109, +2016-08-06 18:30:00,,,17.5149 +2016-08-06 18:37:29,3585.0,14.1097, +2016-08-06 18:45:00,,,17.5494 +2016-08-06 18:47:32,3584.0,14.1097, +2016-08-06 18:57:34,3582.0,14.1109, +2016-08-06 19:00:00,,,17.5494 +2016-08-06 19:07:37,3582.0,14.1097, +2016-08-06 19:15:00,,,17.5494 +2016-08-06 19:17:39,3581.0,14.1109, +2016-08-06 19:27:42,3581.0,14.1109, +2016-08-06 19:30:00,,,17.5494 +2016-08-06 19:37:45,3580.0,14.1109, +2016-08-06 19:45:00,,,17.5149 +2016-08-06 19:47:47,3578.0,14.1109, +2016-08-06 19:57:50,3577.0,14.1071, +2016-08-06 20:00:00,,,17.5133 +2016-08-06 20:07:52,3576.0,14.2015, +2016-08-06 20:15:00,,,17.5494 +2016-08-06 20:17:55,3576.0,14.2015, +2016-08-06 20:27:57,3575.0,14.2015, +2016-08-06 20:30:00,,,17.5494 +2016-08-06 20:38:00,3574.0,14.2015, +2016-08-06 20:45:00,,,17.5149 +2016-08-06 20:48:02,3574.0,14.2015, +2016-08-06 20:58:05,3574.0,14.2015, +2016-08-06 21:00:00,,,17.5494 +2016-08-06 21:08:07,3574.0,14.2015, +2016-08-06 21:15:00,,,17.5133 +2016-08-06 21:18:10,3573.0,14.2015, +2016-08-06 21:28:12,3573.0,14.1688, +2016-08-06 21:30:00,,,17.5494 +2016-08-06 21:38:15,3573.0,14.165, +2016-08-06 21:45:00,,,17.5509 +2016-08-06 21:48:17,3573.0,14.1977, +2016-08-06 21:58:20,3572.0,14.1977, +2016-08-06 22:00:00,,,17.5494 +2016-08-06 22:08:23,3572.0,14.1977, +2016-08-06 22:15:00,,,17.5149 +2016-08-06 22:18:25,3571.0,14.1965, +2016-08-06 22:28:28,3572.0,14.1977, +2016-08-06 22:30:00,,,17.5149 +2016-08-06 22:38:30,3571.0,14.1977, +2016-08-06 22:45:00,,,17.5494 +2016-08-06 22:48:33,3571.0,14.2292, +2016-08-06 22:58:35,3571.0,14.1977, +2016-08-06 23:00:00,,,17.5494 +2016-08-06 23:08:38,3572.0,14.2242, +2016-08-06 23:15:00,,,17.5494 +2016-08-06 23:18:40,3571.0,14.1939, +2016-08-06 23:28:42,3571.0,14.1977, +2016-08-06 23:30:00,,,17.5494 +2016-08-06 23:38:44,3571.0,14.1939, +2016-08-06 23:45:00,,,17.5149 +2016-08-06 23:48:47,3571.0,14.1939, +2016-08-06 23:58:49,3571.0,14.1939, +2016-08-07 00:00:00,,,17.5494 +2016-08-07 00:08:51,3571.0,14.1939, +2016-08-07 00:15:00,,,17.5149 +2016-08-07 00:18:54,3571.0,14.1927, +2016-08-07 00:28:56,3571.0,14.1927, +2016-08-07 00:30:00,,,17.5494 +2016-08-07 00:38:59,3571.0,14.1939, +2016-08-07 00:45:00,,,17.5165 +2016-08-07 00:49:01,3570.0,14.1939, +2016-08-07 00:59:04,3570.0,14.1927, +2016-08-07 01:00:00,,,17.5149 +2016-08-07 01:09:06,3570.0,14.1927, +2016-08-07 01:15:00,,,17.5494 +2016-08-07 01:19:09,3570.0,14.1939, +2016-08-07 01:29:11,3570.0,14.1939, +2016-08-07 01:30:00,,,17.5149 +2016-08-07 01:39:13,3569.0,14.1939, +2016-08-07 01:45:00,,,17.5494 +2016-08-07 01:49:16,3569.0,14.1927, +2016-08-07 01:59:18,3569.0,14.1939, +2016-08-07 02:00:00,,,17.4805 +2016-08-07 02:09:21,3569.0,14.2254, +2016-08-07 02:15:00,,,17.5494 +2016-08-07 02:19:23,3569.0,14.1927, +2016-08-07 02:29:26,3568.0,14.1939, +2016-08-07 02:30:00,,,17.5494 +2016-08-07 02:39:28,3568.0,14.1625, +2016-08-07 02:45:00,,,17.5494 +2016-08-07 02:49:31,3568.0,14.1939, +2016-08-07 02:59:33,3568.0,14.1939, +2016-08-07 03:00:00,,,17.5494 +2016-08-07 03:09:35,3568.0,14.1939, +2016-08-07 03:15:00,,,17.5494 +2016-08-07 03:19:38,3568.0,14.1927, +2016-08-07 03:29:40,3567.0,14.1939, +2016-08-07 03:30:00,,,17.5494 +2016-08-07 03:39:42,3567.0,14.1927, +2016-08-07 03:45:00,,,17.5494 +2016-08-07 03:49:45,3567.0,14.1927, +2016-08-07 03:59:47,3566.0,14.2254, +2016-08-07 04:00:00,,,17.5494 +2016-08-07 04:09:50,3567.0,14.1939, +2016-08-07 04:15:00,,,17.5494 +2016-08-07 04:19:52,3567.0,14.1939, +2016-08-07 04:29:55,3567.0,14.2216, +2016-08-07 04:30:00,,,17.5509 +2016-08-07 04:39:57,3567.0,14.1889, +2016-08-07 04:45:00,,,17.5494 +2016-08-07 04:50:00,3566.0,14.1914, +2016-08-07 05:00:00,,,17.5149 +2016-08-07 05:00:02,3566.0,14.1901, +2016-08-07 05:10:05,3566.0,14.1901, +2016-08-07 05:15:00,,,17.5494 +2016-08-07 05:20:07,3566.0,14.1901, +2016-08-07 05:30:00,,,17.5165 +2016-08-07 05:30:10,3566.0,14.1914, +2016-08-07 05:40:12,3565.0,14.1876, +2016-08-07 05:45:00,,,17.5494 +2016-08-07 05:50:15,3565.0,14.1901, +2016-08-07 06:00:00,,,17.5494 +2016-08-07 06:00:17,3565.0,14.1901, +2016-08-07 06:10:20,3565.0,14.1864, +2016-08-07 06:15:00,,,17.5494 +2016-08-07 06:20:23,3565.0,14.2191, +2016-08-07 06:30:00,,,17.5494 +2016-08-07 06:30:25,3565.0,14.1864, +2016-08-07 06:40:28,3565.0,14.1864, +2016-08-07 06:45:00,,,17.5494 +2016-08-07 06:50:30,3566.0,14.1876, +2016-08-07 07:00:00,,,17.5149 +2016-08-07 07:00:33,3566.0,14.1876, +2016-08-07 07:10:35,3566.0,14.1826, +2016-08-07 07:15:00,,,17.5149 +2016-08-07 07:20:38,3566.0,14.1876, +2016-08-07 07:30:00,,,17.5149 +2016-08-07 07:30:40,3566.0,14.1826, +2016-08-07 07:40:42,3566.0,14.2178, +2016-08-07 07:45:00,,,17.5494 +2016-08-07 07:50:45,3567.0,14.214, +2016-08-07 08:00:00,,,17.5149 +2016-08-07 08:00:47,3568.0,14.1826, +2016-08-07 08:10:50,3569.0,14.1826, +2016-08-07 08:15:00,,,17.5494 +2016-08-07 08:20:54,3569.0,14.1826, +2016-08-07 08:30:00,,,17.5447 +2016-08-07 08:30:57,3570.0,14.1826, +2016-08-07 08:41:00,3571.0,14.1826, +2016-08-07 08:45:00,,,17.5149 +2016-08-07 08:51:02,3572.0,14.1838, +2016-08-07 09:00:00,,,17.5102 +2016-08-07 09:01:05,3572.0,14.1826, +2016-08-07 09:11:07,3573.0,14.1826, +2016-08-07 09:15:00,,,17.5462 +2016-08-07 09:21:10,3574.0,14.1838, +2016-08-07 09:30:00,,,17.4758 +2016-08-07 09:31:13,3574.0,14.1826, +2016-08-07 09:41:15,3575.0,14.1826, +2016-08-07 09:45:00,,,17.5447 +2016-08-07 09:51:18,3576.0,14.1838, +2016-08-07 10:00:00,,,17.5102 +2016-08-07 10:01:20,3577.0,14.1826, +2016-08-07 10:11:23,3578.0,14.1826, +2016-08-07 10:15:00,,,17.5447 +2016-08-07 10:21:26,3581.0,14.1826, +2016-08-07 10:30:00,,,17.5462 +2016-08-07 10:31:28,3582.0,14.214, +2016-08-07 10:41:31,3585.0,14.1838, +2016-08-07 10:45:00,,,17.5431 +2016-08-07 10:51:34,3586.0,14.1838, +2016-08-07 11:00:00,,,17.5447 +2016-08-07 11:01:36,3586.0,14.1826, +2016-08-07 11:11:39,3588.0,14.214, +2016-08-07 11:15:00,,,17.5102 +2016-08-07 11:21:42,3588.0,14.1826, +2016-08-07 11:30:00,,,17.5102 +2016-08-07 11:31:44,3589.0,14.057, +2016-08-07 11:41:47,3591.0,14.0883, +2016-08-07 11:45:00,,,17.5102 +2016-08-07 11:51:50,3592.0,14.0883, +2016-08-07 12:00:00,,,17.5447 +2016-08-07 12:01:52,3593.0,14.0883, +2016-08-07 12:11:55,3594.0,14.0883, +2016-08-07 12:15:00,,,17.4758 +2016-08-07 12:21:57,3594.0,13.9956, +2016-08-07 12:30:00,,,17.5447 +2016-08-07 12:32:00,3595.0,13.9631, +2016-08-07 12:42:03,3596.0,13.9981, +2016-08-07 12:45:00,,,17.5102 +2016-08-07 12:52:05,3597.0,13.9981, +2016-08-07 13:00:00,,,17.5447 +2016-08-07 13:02:08,3598.0,13.9981, +2016-08-07 13:12:11,3598.0,13.9981, +2016-08-07 13:15:00,,,17.5102 +2016-08-07 13:22:14,3598.0,13.9043, +2016-08-07 13:30:00,,,17.5431 +2016-08-07 13:32:16,3598.0,13.8731, +2016-08-07 13:42:19,3599.0,13.8756, +2016-08-07 13:45:00,,,17.5102 +2016-08-07 13:52:22,3599.0,13.908, +2016-08-07 14:00:00,,,17.5447 +2016-08-07 14:02:25,3599.0,13.9068, +2016-08-07 14:12:27,3599.0,13.9393, +2016-08-07 14:15:00,,,17.5102 +2016-08-07 14:22:30,3599.0,13.9068, +2016-08-07 14:30:00,,,17.5071 +2016-08-07 14:32:33,3599.0,13.9105, +2016-08-07 14:42:36,3599.0,13.8768, +2016-08-07 14:45:00,,,17.5102 +2016-08-07 14:52:38,3599.0,13.8805, +2016-08-07 15:00:00,,,17.4414 +2016-08-07 15:02:41,3599.0,13.9118, +2016-08-07 15:12:44,3599.0,13.817, +2016-08-07 15:15:00,,,17.4024 +2016-08-07 15:22:47,3599.0,13.817, +2016-08-07 15:30:00,,,17.4055 +2016-08-07 15:32:50,3599.0,13.8182, +2016-08-07 15:42:52,3599.0,13.817, +2016-08-07 15:45:00,,,17.4024 +2016-08-07 15:52:55,3599.0,13.817, +2016-08-07 16:00:00,,,17.4383 +2016-08-07 16:02:58,3599.0,13.8481, +2016-08-07 16:13:01,3599.0,13.8481, +2016-08-07 16:15:00,,,17.4368 +2016-08-07 16:23:04,3599.0,13.8182, +2016-08-07 16:30:00,,,17.4024 +2016-08-07 16:33:07,3599.0,13.817, +2016-08-07 16:43:09,3599.0,13.8494, +2016-08-07 16:45:00,,,17.4024 +2016-08-07 16:53:12,3599.0,13.8182, +2016-08-07 17:00:00,,,17.4024 +2016-08-07 17:03:15,3599.0,13.817, +2016-08-07 17:13:18,3599.0,13.8207, +2016-08-07 17:15:00,,,17.404 +2016-08-07 17:23:21,3599.0,13.8531, +2016-08-07 17:30:00,,,17.4383 +2016-08-07 17:33:23,3599.0,13.8531, +2016-08-07 17:43:26,3599.0,13.8219, +2016-08-07 17:45:00,,,17.4024 +2016-08-07 17:53:29,3599.0,13.8256, +2016-08-07 18:00:00,,,17.4383 +2016-08-07 18:03:32,3599.0,13.8244, +2016-08-07 18:13:34,3599.0,13.7322, +2016-08-07 18:15:00,,,17.4024 +2016-08-07 18:23:37,3599.0,13.731, +2016-08-07 18:30:00,,,17.4368 +2016-08-07 18:33:40,3599.0,13.7322, +2016-08-07 18:43:43,3599.0,13.7347, +2016-08-07 18:45:00,,,17.4024 +2016-08-07 18:53:46,3599.0,13.7322, +2016-08-07 19:00:00,,,17.4383 +2016-08-07 19:03:49,3599.0,13.7322, +2016-08-07 19:13:52,3599.0,13.7347, +2016-08-07 19:15:00,,,17.4024 +2016-08-07 19:23:55,3599.0,13.7645, +2016-08-07 19:30:00,,,17.4024 +2016-08-07 19:33:58,3599.0,13.7347, +2016-08-07 19:44:01,3599.0,13.7645, +2016-08-07 19:45:00,,,17.4383 +2016-08-07 19:54:03,3599.0,13.7359, +2016-08-07 20:00:00,,,17.4024 +2016-08-07 20:04:06,3599.0,13.8293, +2016-08-07 20:14:09,3599.0,13.828, +2016-08-07 20:15:00,,,17.4368 +2016-08-07 20:24:12,3599.0,13.8605, +2016-08-07 20:30:00,,,17.4414 +2016-08-07 20:34:14,3599.0,13.8605, +2016-08-07 20:44:17,3599.0,13.8268, +2016-08-07 20:45:00,,,17.4024 +2016-08-07 20:54:20,3599.0,13.8592, +2016-08-07 21:00:00,,,17.4055 +2016-08-07 21:04:23,3599.0,13.828, +2016-08-07 21:14:26,3599.0,13.828, +2016-08-07 21:15:00,,,17.4368 +2016-08-07 21:24:28,3598.0,13.8592, +2016-08-07 21:30:00,,,17.4071 +2016-08-07 21:34:31,3598.0,13.828, +2016-08-07 21:44:34,3598.0,13.8305, +2016-08-07 21:45:00,,,17.404 +2016-08-07 21:54:37,3598.0,13.833, +2016-08-07 22:00:00,,,17.4368 +2016-08-07 22:04:39,3598.0,13.833, +2016-08-07 22:14:42,3598.0,13.8317, +2016-08-07 22:15:00,,,17.4414 +2016-08-07 22:24:45,3598.0,13.8317, +2016-08-07 22:30:00,,,17.4414 +2016-08-07 22:34:48,3598.0,13.8629, +2016-08-07 22:44:50,3598.0,13.833, +2016-08-07 22:45:00,,,17.4071 +2016-08-07 22:54:53,3598.0,13.8642, +2016-08-07 23:00:00,,,17.4414 +2016-08-07 23:04:56,3598.0,13.833, +2016-08-07 23:14:59,3597.0,13.8317, +2016-08-07 23:15:00,,,17.4071 +2016-08-07 23:25:01,3597.0,13.8642, +2016-08-07 23:30:00,,,17.4414 +2016-08-07 23:35:04,3597.0,13.833, +2016-08-07 23:45:00,,,17.4055 +2016-08-07 23:45:06,3596.0,13.8317, +2016-08-07 23:55:09,3596.0,13.8629, +2016-08-08 00:00:00,,,17.4071 +2016-08-08 00:05:12,3596.0,13.8642, +2016-08-08 00:15:00,,,17.4414 +2016-08-08 00:15:15,3596.0,13.8317, +2016-08-08 00:25:17,3594.0,13.8642, +2016-08-08 00:30:00,,,17.4399 +2016-08-08 00:35:20,3594.0,13.833, +2016-08-08 00:45:00,,,17.4055 +2016-08-08 00:45:23,3595.0,13.8317, +2016-08-08 00:55:25,3595.0,13.8629, +2016-08-08 01:00:00,,,17.4086 +2016-08-08 01:05:28,3595.0,13.8317, +2016-08-08 01:15:00,,,17.4414 +2016-08-08 01:15:31,3595.0,13.8317, +2016-08-08 01:25:34,3595.0,13.833, +2016-08-08 01:30:00,,,17.4071 +2016-08-08 01:35:37,3595.0,13.8317, +2016-08-08 01:45:00,,,17.4414 +2016-08-08 01:45:39,3595.0,13.8629, +2016-08-08 01:55:42,3595.0,13.8642, +2016-08-08 02:00:00,,,17.4071 +2016-08-08 02:05:45,3595.0,13.833, +2016-08-08 02:15:00,,,17.4414 +2016-08-08 02:15:48,3582.0,13.8293, +2016-08-08 02:25:51,3594.0,13.833, +2016-08-08 02:30:00,,,17.4414 +2016-08-08 02:35:53,3592.0,13.8642, +2016-08-08 02:45:00,,,17.3043 +2016-08-08 02:45:55,3596.0,13.8642, +2016-08-08 02:55:58,3595.0,13.8317, +2016-08-08 03:00:00,,,17.3043 +2016-08-08 03:06:01,3596.0,13.833, +2016-08-08 03:15:00,,,17.4071 +2016-08-08 03:16:04,3595.0,13.833, +2016-08-08 03:26:06,3596.0,13.8317, +2016-08-08 03:30:00,,,17.3043 +2016-08-08 03:36:09,3595.0,13.833, +2016-08-08 03:45:00,,,17.4071 +2016-08-08 03:46:12,3595.0,13.833, +2016-08-08 03:56:14,3595.0,13.8317, +2016-08-08 04:00:00,,,17.3043 +2016-08-08 04:06:17,3595.0,13.8642, +2016-08-08 04:15:00,,,17.4071 +2016-08-08 04:16:20,3595.0,13.8317, +2016-08-08 04:26:23,3595.0,13.833, +2016-08-08 04:30:00,,,17.4071 +2016-08-08 04:36:25,3595.0,13.8617, +2016-08-08 04:45:00,,,17.3043 +2016-08-08 04:46:28,3595.0,13.8317, +2016-08-08 04:56:31,3593.0,13.8317, +2016-08-08 05:00:00,,,17.3089 +2016-08-08 05:06:33,3594.0,13.8317, +2016-08-08 05:15:00,,,17.3089 +2016-08-08 05:16:36,3594.0,13.8317, +2016-08-08 05:26:38,3594.0,13.833, +2016-08-08 05:30:00,,,17.3043 +2016-08-08 05:36:41,3594.0,13.8317, +2016-08-08 05:45:00,,,17.3043 +2016-08-08 05:46:44,3594.0,13.833, +2016-08-08 05:56:47,3594.0,13.8642, +2016-08-08 06:00:00,,,17.3074 +2016-08-08 06:06:49,3594.0,13.8317, +2016-08-08 06:15:00,,,17.3431 +2016-08-08 06:16:52,3594.0,13.833, +2016-08-08 06:26:54,3595.0,13.833, +2016-08-08 06:30:00,,,17.3089 +2016-08-08 06:36:57,3594.0,13.833, +2016-08-08 06:45:00,,,17.3089 +2016-08-08 06:47:00,3594.0,13.8617, +2016-08-08 06:57:02,3594.0,13.8317, +2016-08-08 07:00:00,,,17.3089 +2016-08-08 07:07:05,3594.0,13.8317, +2016-08-08 07:15:00,,,17.3074 +2016-08-08 07:17:07,3594.0,13.833, +2016-08-08 07:27:10,3595.0,13.8629, +2016-08-08 07:30:00,,,17.3089 +2016-08-08 07:37:13,3595.0,13.9266, +2016-08-08 07:45:00,,,17.3089 +2016-08-08 07:47:15,3595.0,13.833, +2016-08-08 07:57:18,3596.0,13.833, +2016-08-08 08:00:00,,,17.3089 +2016-08-08 08:07:20,3596.0,13.8317, +2016-08-08 08:15:00,,,17.2747 +2016-08-08 08:17:23,3597.0,13.8629, +2016-08-08 08:27:26,3596.0,13.8317, +2016-08-08 08:30:00,,,17.3089 +2016-08-08 08:37:28,3598.0,13.833, +2016-08-08 08:45:00,,,17.3089 +2016-08-08 08:47:31,3598.0,13.833, +2016-08-08 08:57:33,3598.0,13.8629, +2016-08-08 09:00:00,,,17.3074 +2016-08-08 09:07:36,3598.0,13.8317, +2016-08-08 09:15:00,,,17.3104 +2016-08-08 09:17:39,3598.0,13.8305, +2016-08-08 09:27:42,3598.0,13.833, +2016-08-08 09:30:00,,,17.3089 +2016-08-08 09:37:44,3599.0,13.833, +2016-08-08 09:45:00,,,17.3089 +2016-08-08 09:47:47,3598.0,13.8305, +2016-08-08 09:57:50,3599.0,13.833, +2016-08-08 10:00:00,,,17.3089 +2016-08-08 10:07:53,3599.0,13.8305, +2016-08-08 10:15:00,,,17.3089 +2016-08-08 10:17:55,3599.0,13.7707, +2016-08-08 10:27:58,3599.0,13.7383, +2016-08-08 10:30:00,,,17.3089 +2016-08-08 10:38:01,3599.0,13.7396, +2016-08-08 10:45:00,,,17.3089 +2016-08-08 10:48:04,3599.0,13.7383, +2016-08-08 10:58:07,3599.0,13.6774, +2016-08-08 11:00:00,,,17.3089 +2016-08-08 11:08:09,3599.0,13.6488, +2016-08-08 11:15:00,,,17.3089 +2016-08-08 11:18:12,3599.0,13.6799, +2016-08-08 11:28:15,3599.0,13.6488, +2016-08-08 11:30:00,,,17.3089 +2016-08-08 11:38:19,3599.0,13.6488, +2016-08-08 11:45:00,,,17.2064 +2016-08-08 11:48:23,3599.0,13.6476, +2016-08-08 11:58:26,3599.0,13.6488, +2016-08-08 12:00:00,,,17.2406 +2016-08-08 12:08:29,3599.0,13.6513, +2016-08-08 12:15:00,,,17.2406 +2016-08-08 12:18:31,3599.0,13.6513, +2016-08-08 12:28:34,3599.0,13.6525, +2016-08-08 12:30:00,,,17.2064 +2016-08-08 12:38:37,3599.0,13.6525, +2016-08-08 12:45:00,,,17.208 +2016-08-08 12:48:40,3599.0,13.6525, +2016-08-08 12:58:43,3599.0,13.5595, +2016-08-08 13:00:00,,,17.2064 +2016-08-08 13:08:46,3599.0,13.5595, +2016-08-08 13:15:00,,,17.2064 +2016-08-08 13:18:49,3599.0,13.5595, +2016-08-08 13:28:52,3599.0,13.5583, +2016-08-08 13:30:00,,,17.2406 +2016-08-08 13:38:55,3599.0,13.5595, +2016-08-08 13:45:00,,,17.2049 +2016-08-08 13:48:58,3599.0,13.5595, +2016-08-08 13:59:01,3599.0,13.4656, +2016-08-08 14:00:00,,,17.2064 +2016-08-08 14:09:04,3599.0,13.4977, +2016-08-08 14:15:00,,,17.2064 +2016-08-08 14:19:07,3599.0,13.5001, +2016-08-08 14:29:10,3599.0,13.5013, +2016-08-08 14:30:00,,,17.2406 +2016-08-08 14:39:13,3599.0,13.5013, +2016-08-08 14:45:00,,,17.2406 +2016-08-08 14:49:16,3599.0,13.4692, +2016-08-08 14:59:19,3599.0,13.5013, +2016-08-08 15:00:00,,,17.2064 +2016-08-08 15:09:22,3599.0,13.468, +2016-08-08 15:15:00,,,17.239 +2016-08-08 15:19:25,3599.0,13.3779, +2016-08-08 15:29:29,3599.0,13.4076, +2016-08-08 15:30:00,,,17.2064 +2016-08-08 15:39:32,3599.0,13.3768, +2016-08-08 15:45:00,,,17.2064 +2016-08-08 15:49:35,3599.0,13.3779, +2016-08-08 15:59:38,3599.0,13.4087, +2016-08-08 16:00:00,,,17.2406 +2016-08-08 16:09:41,3599.0,13.3756, +2016-08-08 16:15:00,,,17.2049 +2016-08-08 16:19:44,3599.0,13.3768, +2016-08-08 16:29:47,3599.0,13.3815, +2016-08-08 16:30:00,,,17.2064 +2016-08-08 16:39:50,3599.0,13.3779, +2016-08-08 16:45:00,,,17.2406 +2016-08-08 16:49:53,3599.0,13.4123, +2016-08-08 16:59:55,3599.0,13.4111, +2016-08-08 17:00:00,,,17.2064 +2016-08-08 17:09:58,3599.0,13.3815, +2016-08-08 17:15:00,,,17.2406 +2016-08-08 17:20:01,3599.0,13.4123, +2016-08-08 17:30:00,,,17.2406 +2016-08-08 17:30:04,3599.0,13.5049, +2016-08-08 17:40:07,3599.0,13.5049, +2016-08-08 17:45:00,,,17.2406 +2016-08-08 17:50:10,3599.0,13.474, +2016-08-08 18:00:00,,,17.2064 +2016-08-08 18:00:12,3599.0,13.4728, +2016-08-08 18:10:15,3599.0,13.5049, +2016-08-08 18:15:00,,,17.2064 +2016-08-08 18:20:18,3599.0,13.474, +2016-08-08 18:30:00,,,17.2064 +2016-08-08 18:30:21,3599.0,13.5049, +2016-08-08 18:40:24,3599.0,13.5049, +2016-08-08 18:45:00,,,17.2064 +2016-08-08 18:50:26,3599.0,13.474, +2016-08-08 19:00:00,,,17.2064 +2016-08-08 19:00:29,3599.0,13.5049, +2016-08-08 19:10:32,3599.0,13.5049, +2016-08-08 19:15:00,,,17.2064 +2016-08-08 19:20:34,3599.0,13.4728, +2016-08-08 19:30:00,,,17.2064 +2016-08-08 19:30:37,3598.0,13.474, +2016-08-08 19:40:40,3599.0,13.5049, +2016-08-08 19:45:00,,,17.2064 +2016-08-08 19:50:42,3598.0,13.5049, +2016-08-08 20:00:00,,,17.2406 +2016-08-08 20:00:45,3598.0,13.474, +2016-08-08 20:10:48,3598.0,13.5037, +2016-08-08 20:15:00,,,17.2064 +2016-08-08 20:20:50,3598.0,13.5037, +2016-08-08 20:30:00,,,17.2064 +2016-08-08 20:30:53,3598.0,13.5049, +2016-08-08 20:40:55,3598.0,13.4432, +2016-08-08 20:45:00,,,17.2421 +2016-08-08 20:50:57,3597.0,13.4704, +2016-08-08 21:00:00,,,17.239 +2016-08-08 21:01:00,3597.0,13.5001, +2016-08-08 21:11:02,3596.0,13.5013, +2016-08-08 21:15:00,,,17.2064 +2016-08-08 21:21:05,3596.0,13.5013, +2016-08-08 21:30:00,,,17.2064 +2016-08-08 21:31:07,3595.0,13.4704, +2016-08-08 21:41:10,3595.0,13.5001, +2016-08-08 21:45:00,,,17.2064 +2016-08-08 21:51:13,3595.0,13.5001, +2016-08-08 22:00:00,,,17.2064 +2016-08-08 22:01:15,3595.0,13.5013, +2016-08-08 22:11:18,3594.0,13.5013, +2016-08-08 22:15:00,,,17.2406 +2016-08-08 22:21:21,3593.0,13.5001, +2016-08-08 22:30:00,,,17.2064 +2016-08-08 22:31:24,3593.0,13.5013, +2016-08-08 22:41:26,3592.0,13.4692, +2016-08-08 22:45:00,,,17.2406 +2016-08-08 22:51:29,3592.0,13.5013, +2016-08-08 23:00:00,,,17.2406 +2016-08-08 23:01:31,3592.0,13.5013, +2016-08-08 23:11:34,3592.0,13.5013, +2016-08-08 23:15:00,,,17.2406 +2016-08-08 23:21:37,3591.0,13.5013, +2016-08-08 23:30:00,,,17.2406 +2016-08-08 23:31:39,3591.0,13.5025, +2016-08-08 23:41:42,3589.0,13.5013, +2016-08-08 23:45:00,,,17.2406 +2016-08-08 23:51:44,3590.0,13.5013, +2016-08-09 00:00:00,,,17.2406 +2016-08-09 00:01:47,3588.0,13.4384, +2016-08-09 00:11:50,3588.0,13.5001, +2016-08-09 00:15:00,,,17.2064 +2016-08-09 00:21:52,3588.0,13.5001, +2016-08-09 00:30:00,,,17.2406 +2016-08-09 00:31:55,3587.0,13.4977, +2016-08-09 00:41:57,3587.0,13.4965, +2016-08-09 00:45:00,,,17.2406 +2016-08-09 00:52:00,3586.0,13.4965, +2016-08-09 01:00:00,,,17.2406 +2016-08-09 01:02:02,3586.0,13.4977, +2016-08-09 01:12:04,3586.0,13.5583, +2016-08-09 01:15:00,,,17.2064 +2016-08-09 01:22:07,3585.0,13.5595, +2016-08-09 01:30:00,,,17.2064 +2016-08-09 01:32:09,3585.0,13.5905, +2016-08-09 01:42:12,3584.0,13.6215, +2016-08-09 01:45:00,,,17.2406 +2016-08-09 01:52:14,3583.0,13.5905, +2016-08-09 02:00:00,,,17.208 +2016-08-09 02:02:17,3582.0,13.5595, +2016-08-09 02:12:19,3580.0,13.5583, +2016-08-09 02:15:00,,,17.2064 +2016-08-09 02:22:22,3581.0,13.5595, +2016-08-09 02:30:00,,,17.2064 +2016-08-09 02:32:25,3579.0,13.5583, +2016-08-09 02:42:27,3579.0,13.5583, +2016-08-09 02:45:00,,,17.2049 +2016-08-09 02:52:29,3578.0,13.5595, +2016-08-09 03:00:00,,,17.2406 +2016-08-09 03:02:32,3578.0,13.5559, +2016-08-09 03:12:34,3577.0,13.5559, +2016-08-09 03:15:00,,,17.2064 +2016-08-09 03:22:37,3577.0,13.5559, +2016-08-09 03:30:00,,,17.2747 +2016-08-09 03:32:39,3577.0,13.5869, +2016-08-09 03:42:41,3577.0,13.5869, +2016-08-09 03:45:00,,,17.2064 +2016-08-09 03:52:44,3576.0,13.5523, +2016-08-09 04:00:00,,,17.2064 +2016-08-09 04:02:46,3575.0,13.5535, +2016-08-09 04:12:49,3574.0,13.5844, +2016-08-09 04:15:00,,,17.2421 +2016-08-09 04:22:51,3575.0,13.5535, +2016-08-09 04:30:00,,,17.2452 +2016-08-09 04:32:54,3574.0,13.5832, +2016-08-09 04:42:56,3574.0,13.5511, +2016-08-09 04:45:00,,,17.2064 +2016-08-09 04:52:59,3573.0,13.5844, +2016-08-09 05:00:00,,,17.2406 +2016-08-09 05:03:01,3574.0,13.5832, +2016-08-09 05:13:03,3573.0,13.5523, +2016-08-09 05:15:00,,,17.2064 +2016-08-09 05:23:06,3572.0,13.5844, +2016-08-09 05:30:00,,,17.2064 +2016-08-09 05:33:08,3572.0,13.5499, +2016-08-09 05:43:10,3572.0,13.5832, +2016-08-09 05:45:00,,,17.2452 +2016-08-09 05:53:12,3571.0,13.5487, +2016-08-09 06:00:00,,,17.2406 +2016-08-09 06:03:14,3571.0,13.5487, +2016-08-09 06:13:17,3571.0,13.5499, +2016-08-09 06:15:00,,,17.211 +2016-08-09 06:23:19,3571.0,13.5796, +2016-08-09 06:30:00,,,17.211 +2016-08-09 06:33:21,3571.0,13.5808, +2016-08-09 06:43:23,3571.0,13.5808, +2016-08-09 06:45:00,,,17.2406 +2016-08-09 06:53:26,3571.0,13.5808, +2016-08-09 07:00:00,,,17.2064 +2016-08-09 07:03:28,3571.0,13.5796, +2016-08-09 07:13:30,3571.0,13.5808, +2016-08-09 07:15:00,,,17.2747 +2016-08-09 07:23:33,3571.0,13.5772, +2016-08-09 07:30:00,,,17.2406 +2016-08-09 07:33:35,3571.0,13.6082, +2016-08-09 07:43:37,3572.0,13.5772, +2016-08-09 07:45:00,,,17.2064 +2016-08-09 07:53:40,3572.0,13.5463, +2016-08-09 08:00:00,,,17.2406 +2016-08-09 08:03:42,3572.0,13.5463, +2016-08-09 08:13:44,3572.0,13.5463, +2016-08-09 08:15:00,,,17.2064 +2016-08-09 08:23:47,3572.0,13.576, +2016-08-09 08:30:00,,,17.2406 +2016-08-09 08:33:49,3573.0,13.5772, +2016-08-09 08:43:52,3573.0,13.6069, +2016-08-09 08:45:00,,,17.2406 +2016-08-09 08:53:54,3574.0,13.5427, +2016-08-09 09:00:00,,,17.2406 +2016-08-09 09:03:56,3574.0,13.6045, +2016-08-09 09:13:59,3574.0,13.5724, +2016-08-09 09:15:00,,,17.2406 +2016-08-09 09:24:01,3574.0,13.5415, +2016-08-09 09:30:00,,,17.2064 +2016-08-09 09:34:04,3575.0,13.5427, +2016-08-09 09:44:06,3576.0,13.5724, +2016-08-09 09:45:00,,,17.2406 +2016-08-09 09:54:08,3577.0,13.5415, +2016-08-09 10:00:00,,,17.2406 +2016-08-09 10:04:11,3578.0,13.5724, +2016-08-09 10:14:13,3580.0,13.4797, +2016-08-09 10:15:00,,,17.2064 +2016-08-09 10:24:16,3581.0,13.4797, +2016-08-09 10:30:00,,,17.2406 +2016-08-09 10:34:18,3583.0,13.4773, +2016-08-09 10:44:21,3584.0,13.4453, +2016-08-09 10:45:00,,,17.1383 +2016-08-09 10:54:23,3585.0,13.4761, +2016-08-09 11:00:00,,,17.1383 +2016-08-09 11:04:26,3586.0,13.4761, +2016-08-09 11:14:28,3587.0,13.4761, +2016-08-09 11:15:00,,,17.1383 +2016-08-09 11:24:31,3588.0,13.4773, +2016-08-09 11:30:00,,,17.1383 +2016-08-09 11:34:33,3589.0,13.3837, +2016-08-09 11:44:36,3591.0,13.353, +2016-08-09 11:45:00,,,17.1383 +2016-08-09 11:54:38,3592.0,13.3837, +2016-08-09 12:00:00,,,17.1043 +2016-08-09 12:04:41,3592.0,13.3837, +2016-08-09 12:14:43,3593.0,13.3837, +2016-08-09 12:15:00,,,17.1383 +2016-08-09 12:24:46,3593.0,13.3837, +2016-08-09 12:30:00,,,17.1383 +2016-08-09 12:34:49,3594.0,13.3837, +2016-08-09 12:44:51,3595.0,13.3837, +2016-08-09 12:45:00,,,17.1399 +2016-08-09 12:54:54,3595.0,13.3837, +2016-08-09 13:00:00,,,17.1383 +2016-08-09 13:04:56,3595.0,13.3849, +2016-08-09 13:14:59,3595.0,13.3837, +2016-08-09 13:15:00,,,17.1368 +2016-08-09 13:25:02,3595.0,13.3542, +2016-08-09 13:30:00,,,17.1383 +2016-08-09 13:35:04,3596.0,13.353, +2016-08-09 13:45:00,,,17.1043 +2016-08-09 13:45:07,3596.0,13.3825, +2016-08-09 13:55:09,3595.0,13.3837, +2016-08-09 14:00:00,,,17.1383 +2016-08-09 14:05:12,3596.0,13.3837, +2016-08-09 14:15:00,,,17.1383 +2016-08-09 14:15:15,3596.0,13.3837, +2016-08-09 14:25:17,3597.0,13.3849, +2016-08-09 14:30:00,,,17.1383 +2016-08-09 14:35:20,3597.0,13.3837, +2016-08-09 14:45:00,,,17.0364 +2016-08-09 14:45:22,3598.0,13.353, +2016-08-09 14:55:26,3598.0,13.353, +2016-08-09 15:00:00,,,17.0349 +2016-08-09 15:05:30,3598.0,13.3223, +2016-08-09 15:15:00,,,17.0364 +2016-08-09 15:15:32,3597.0,13.353, +2016-08-09 15:25:35,3597.0,13.3837, +2016-08-09 15:30:00,,,17.0364 +2016-08-09 15:35:38,3597.0,13.3837, +2016-08-09 15:45:00,,,17.0349 +2016-08-09 15:45:40,3597.0,13.3837, +2016-08-09 15:55:43,3597.0,13.353, +2016-08-09 16:00:00,,,17.0364 +2016-08-09 16:05:45,3596.0,13.3849, +2016-08-09 16:15:00,,,17.0364 +2016-08-09 16:15:48,3597.0,13.353, +2016-08-09 16:25:51,3596.0,13.353, +2016-08-09 16:30:00,,,17.0026 +2016-08-09 16:35:53,3595.0,13.3837, +2016-08-09 16:45:00,,,17.0364 +2016-08-09 16:45:56,3595.0,13.3837, +2016-08-09 16:55:59,3593.0,13.3825, +2016-08-09 17:00:00,,,16.9687 +2016-08-09 17:06:01,3595.0,13.3837, +2016-08-09 17:15:00,,,17.0364 +2016-08-09 17:16:04,3595.0,13.3837, +2016-08-09 17:26:07,3595.0,13.3837, +2016-08-09 17:30:00,,,17.0364 +2016-08-09 17:36:09,3594.0,13.3837, +2016-08-09 17:45:00,,,17.0026 +2016-08-09 17:46:12,3594.0,13.353, +2016-08-09 17:56:14,3593.0,13.3837, +2016-08-09 18:00:00,,,17.0364 +2016-08-09 18:06:17,3593.0,13.3837, +2016-08-09 18:15:00,,,17.0026 +2016-08-09 18:16:19,3592.0,13.3837, +2016-08-09 18:26:22,3591.0,13.3837, +2016-08-09 18:30:00,,,17.0364 +2016-08-09 18:36:24,3591.0,13.3837, +2016-08-09 18:45:00,,,17.0349 +2016-08-09 18:46:27,3590.0,13.3542, +2016-08-09 18:56:29,3589.0,13.3542, +2016-08-09 19:00:00,,,17.0364 +2016-08-09 19:06:32,3588.0,13.3849, +2016-08-09 19:15:00,,,17.0364 +2016-08-09 19:16:35,3587.0,13.3837, +2016-08-09 19:26:37,3587.0,13.4145, +2016-08-09 19:30:00,,,17.0364 +2016-08-09 19:36:40,3586.0,13.3837, +2016-08-09 19:45:00,,,17.0364 +2016-08-09 19:46:42,3586.0,13.3837, +2016-08-09 19:56:45,3585.0,13.3837, +2016-08-09 20:00:00,,,17.0026 +2016-08-09 20:06:48,3585.0,13.3837, +2016-08-09 20:15:00,,,17.0364 +2016-08-09 20:16:50,3584.0,13.353, +2016-08-09 20:26:53,3583.0,13.3837, +2016-08-09 20:30:00,,,17.0364 +2016-08-09 20:36:55,3583.0,13.3837, +2016-08-09 20:45:00,,,17.0364 +2016-08-09 20:46:58,3582.0,13.3837, +2016-08-09 20:57:00,3582.0,13.3837, +2016-08-09 21:00:00,,,17.0364 +2016-08-09 21:07:03,3581.0,13.3837, +2016-08-09 21:15:00,,,17.0364 +2016-08-09 21:17:05,3581.0,13.3849, +2016-08-09 21:27:08,3577.0,13.3837, +2016-08-09 21:30:00,,,17.0364 +2016-08-09 21:37:10,3578.0,13.3837, +2016-08-09 21:45:00,,,17.0364 +2016-08-09 21:47:13,3578.0,13.3837, +2016-08-09 21:57:15,3578.0,13.3837, +2016-08-09 22:00:00,,,17.0364 +2016-08-09 22:07:18,3577.0,13.3837, +2016-08-09 22:15:00,,,17.0364 +2016-08-09 22:17:20,3577.0,13.3837, +2016-08-09 22:27:22,3577.0,13.3837, +2016-08-09 22:30:00,,,17.0364 +2016-08-09 22:37:25,3576.0,13.3837, +2016-08-09 22:45:00,,,17.0349 +2016-08-09 22:47:27,3574.0,13.3837, +2016-08-09 22:57:30,3575.0,13.3837, +2016-08-09 23:00:00,,,17.0364 +2016-08-09 23:07:32,3574.0,13.3837, +2016-08-09 23:15:00,,,17.0349 +2016-08-09 23:17:35,3573.0,13.3837, +2016-08-09 23:27:37,3574.0,13.3837, +2016-08-09 23:30:00,,,17.0704 +2016-08-09 23:37:39,3573.0,13.3849, +2016-08-09 23:45:00,,,17.038 +2016-08-09 23:47:42,3572.0,13.3837, +2016-08-09 23:57:44,3572.0,13.3802, +2016-08-10 00:00:00,,,17.0364 +2016-08-10 00:07:46,3571.0,13.3825, +2016-08-10 00:15:00,,,17.0364 +2016-08-10 00:17:48,3571.0,13.3802, +2016-08-10 00:27:50,3571.0,13.3506, +2016-08-10 00:30:00,,,17.0364 +2016-08-10 00:37:53,3570.0,13.3802, +2016-08-10 00:45:00,,,17.0364 +2016-08-10 00:47:55,3574.0,13.3494, +2016-08-10 00:57:58,3576.0,13.4109, +2016-08-10 01:00:00,,,17.0364 +2016-08-10 01:08:00,3570.0,13.3825, +2016-08-10 01:15:00,,,17.0364 +2016-08-10 01:18:03,3569.0,13.3778, +2016-08-10 01:28:05,3568.0,13.3778, +2016-08-10 01:30:00,,,17.0026 +2016-08-10 01:38:07,3568.0,13.3778, +2016-08-10 01:45:00,,,17.0364 +2016-08-10 01:48:10,3566.0,13.3778, +2016-08-10 01:58:12,3564.0,13.3778, +2016-08-10 02:00:00,,,17.0364 +2016-08-10 02:08:15,3562.0,13.3778, +2016-08-10 02:15:00,,,17.0364 +2016-08-10 02:18:17,3560.0,13.3778, +2016-08-10 02:28:19,3559.0,13.3742, +2016-08-10 02:30:00,,,16.998 +2016-08-10 02:38:22,3561.0,13.3742, +2016-08-10 02:45:00,,,17.0364 +2016-08-10 02:48:24,3561.0,13.3742, +2016-08-10 02:58:26,3559.0,13.3742, +2016-08-10 03:00:00,,,17.0319 +2016-08-10 03:08:29,3559.0,13.3742, +2016-08-10 03:15:00,,,17.0364 +2016-08-10 03:18:31,3559.0,13.3742, +2016-08-10 03:28:33,3559.0,13.405, +2016-08-10 03:30:00,,,17.0319 +2016-08-10 03:38:36,3559.0,13.3742, +2016-08-10 03:45:00,,,17.0364 +2016-08-10 03:48:38,3559.0,13.405, +2016-08-10 03:58:40,3558.0,13.3742, +2016-08-10 04:00:00,,,17.0364 +2016-08-10 04:08:42,3557.0,13.3742, +2016-08-10 04:15:00,,,17.0304 +2016-08-10 04:18:45,3557.0,13.3742, +2016-08-10 04:28:47,3557.0,13.3742, +2016-08-10 04:30:00,,,17.0319 +2016-08-10 04:38:49,3557.0,13.3742, +2016-08-10 04:45:00,,,17.0319 +2016-08-10 04:48:51,3557.0,13.3742, +2016-08-10 04:58:53,3556.0,13.3742, +2016-08-10 05:00:00,,,17.0304 +2016-08-10 05:08:56,3556.0,13.3754, +2016-08-10 05:15:00,,,17.0319 +2016-08-10 05:18:58,3556.0,13.3694, +2016-08-10 05:29:00,3555.0,13.3706, +2016-08-10 05:30:00,,,17.0319 +2016-08-10 05:39:03,3555.0,13.3706, +2016-08-10 05:45:00,,,17.0658 +2016-08-10 05:49:05,3555.0,13.3694, +2016-08-10 05:59:07,3553.0,13.3706, +2016-08-10 06:00:00,,,17.0319 +2016-08-10 06:09:09,3553.0,13.3706, +2016-08-10 06:15:00,,,17.0334 +2016-08-10 06:19:12,3553.0,13.3671, +2016-08-10 06:29:14,3554.0,13.3671, +2016-08-10 06:30:00,,,17.0319 +2016-08-10 06:39:16,3552.0,13.3659, +2016-08-10 06:45:00,,,17.0319 +2016-08-10 06:49:18,3553.0,13.3671, +2016-08-10 06:59:21,3553.0,13.3671, +2016-08-10 07:00:00,,,17.0319 +2016-08-10 07:09:23,3554.0,13.3635, +2016-08-10 07:15:00,,,17.0274 +2016-08-10 07:19:25,3554.0,13.3671, +2016-08-10 07:29:27,3554.0,13.3635, +2016-08-10 07:30:00,,,17.0319 +2016-08-10 07:39:29,3555.0,13.3635, +2016-08-10 07:45:00,,,17.0319 +2016-08-10 07:49:32,3555.0,13.3635, +2016-08-10 07:59:34,3556.0,13.3635, +2016-08-10 08:00:00,,,17.0334 +2016-08-10 08:09:36,3556.0,13.3635, +2016-08-10 08:15:00,,,17.0319 +2016-08-10 08:19:38,3557.0,13.3647, +2016-08-10 08:29:41,3557.0,13.3635, +2016-08-10 08:30:00,,,16.9935 +2016-08-10 08:39:43,3558.0,13.3623, +2016-08-10 08:45:00,,,17.0289 +2016-08-10 08:49:45,3559.0,13.3635, +2016-08-10 08:59:47,3559.0,13.3635, +2016-08-10 09:00:00,,,17.0289 +2016-08-10 09:09:49,3560.0,13.3635, +2016-08-10 09:15:00,,,17.0274 +2016-08-10 09:19:51,3561.0,13.3635, +2016-08-10 09:29:53,3561.0,13.3942, +2016-08-10 09:30:00,,,17.0274 +2016-08-10 09:39:55,3562.0,13.3635, +2016-08-10 09:45:00,,,17.0258 +2016-08-10 09:49:58,3562.0,13.3647, +2016-08-10 10:00:00,3563.0,13.3635,17.0289 +2016-08-10 10:10:02,3563.0,13.3635, +2016-08-10 10:15:00,,,17.0628 +2016-08-10 10:20:04,3563.0,13.3635, +2016-08-10 10:30:00,,,17.0228 +2016-08-10 10:30:07,3564.0,13.3635, +2016-08-10 10:40:09,3564.0,13.3635, +2016-08-10 10:45:00,,,17.0628 +2016-08-10 10:50:11,3564.0,13.3635, +2016-08-10 11:00:00,,,17.0289 +2016-08-10 11:00:14,3564.0,13.3635, +2016-08-10 11:10:16,3564.0,13.3635, +2016-08-10 11:15:00,,,17.0243 +2016-08-10 11:20:26,3562.0,13.3635, +2016-08-10 11:30:00,,,17.0274 +2016-08-10 11:30:28,3564.0,13.3635, +2016-08-10 11:40:30,3564.0,13.3942, +2016-08-10 11:45:00,,,17.0243 +2016-08-10 11:50:33,3564.0,13.3635, +2016-08-10 12:00:00,,,17.0243 +2016-08-10 12:00:35,3565.0,13.3635, +2016-08-10 12:10:37,3565.0,13.3588, +2016-08-10 12:15:00,,,17.0243 +2016-08-10 12:20:40,3566.0,13.3611, +2016-08-10 12:30:00,,,17.0228 +2016-08-10 12:30:42,3566.0,13.3588, +2016-08-10 12:40:44,3567.0,13.3599, +2016-08-10 12:45:00,,,17.0228 +2016-08-10 12:50:47,3568.0,13.3599, +2016-08-10 13:00:00,,,16.9214 +2016-08-10 13:00:49,3569.0,13.3599, +2016-08-10 13:10:51,3570.0,13.3304, +2016-08-10 13:15:00,,,16.9229 +2016-08-10 13:20:54,3571.0,13.3599, +2016-08-10 13:30:00,,,16.9229 +2016-08-10 13:30:56,3572.0,13.3281, +2016-08-10 13:40:58,3572.0,13.3599, +2016-08-10 13:45:00,,,16.9567 +2016-08-10 13:51:01,3574.0,13.3599, +2016-08-10 14:00:00,,,16.9214 +2016-08-10 14:01:03,3576.0,13.3599, +2016-08-10 14:11:06,3577.0,13.268, +2016-08-10 14:15:00,,,16.9214 +2016-08-10 14:21:08,3579.0,13.2986, +2016-08-10 14:30:00,,,16.9229 +2016-08-10 14:31:11,3581.0,13.2385, +2016-08-10 14:41:13,3581.0,13.2668, +2016-08-10 14:45:00,,,16.9214 +2016-08-10 14:51:16,3582.0,13.268, +2016-08-10 15:00:00,,,16.9214 +2016-08-10 15:01:18,3582.0,13.2986, +2016-08-10 15:11:21,3583.0,13.2385, +2016-08-10 15:15:00,,,16.9214 +2016-08-10 15:21:24,3583.0,13.268, +2016-08-10 15:30:00,,,16.9214 +2016-08-10 15:31:26,3583.0,13.268, +2016-08-10 15:41:29,3583.0,13.2668, +2016-08-10 15:45:00,,,16.9214 +2016-08-10 15:51:31,3583.0,13.268, +2016-08-10 16:00:00,,,16.9199 +2016-08-10 16:01:34,3583.0,13.268, +2016-08-10 16:11:36,3582.0,13.2668, +2016-08-10 16:15:00,,,16.8876 +2016-08-10 16:21:39,3582.0,13.268, +2016-08-10 16:30:00,,,16.8876 +2016-08-10 16:31:41,3582.0,13.2668, +2016-08-10 16:41:44,3582.0,13.2668, +2016-08-10 16:45:00,,,16.9214 +2016-08-10 16:51:47,3581.0,13.268, +2016-08-10 17:00:00,,,16.9214 +2016-08-10 17:01:49,3581.0,13.268, +2016-08-10 17:11:51,3581.0,13.2668, +2016-08-10 17:15:00,,,16.9214 +2016-08-10 17:21:54,3581.0,13.2373, +2016-08-10 17:30:00,,,16.9214 +2016-08-10 17:31:56,3581.0,13.268, +2016-08-10 17:41:59,3580.0,13.2668, +2016-08-10 17:45:00,,,16.9214 +2016-08-10 17:52:01,3581.0,13.268, +2016-08-10 18:00:00,,,16.9214 +2016-08-10 18:02:04,3580.0,13.268, +2016-08-10 18:12:06,3580.0,13.268, +2016-08-10 18:15:00,,,16.9214 +2016-08-10 18:22:09,3579.0,13.2373, +2016-08-10 18:30:00,,,16.9214 +2016-08-10 18:32:11,3579.0,13.2691, +2016-08-10 18:42:14,3578.0,13.268, +2016-08-10 18:45:00,,,16.9214 +2016-08-10 18:52:16,3578.0,13.268, +2016-08-10 19:00:00,,,16.9229 +2016-08-10 19:02:19,3577.0,13.2373, +2016-08-10 19:12:21,3577.0,13.268, +2016-08-10 19:15:00,,,16.9214 +2016-08-10 19:22:24,3576.0,13.268, +2016-08-10 19:30:00,,,16.9199 +2016-08-10 19:32:26,3576.0,13.2691, +2016-08-10 19:42:29,3576.0,13.268, +2016-08-10 19:45:00,,,16.9214 +2016-08-10 19:52:31,3574.0,13.2691, +2016-08-10 20:00:00,,,16.9199 +2016-08-10 20:02:33,3574.0,13.2373, +2016-08-10 20:12:36,3574.0,13.2691, +2016-08-10 20:15:00,,,16.9536 +2016-08-10 20:22:38,3573.0,13.268, +2016-08-10 20:30:00,,,16.9229 +2016-08-10 20:32:41,3572.0,13.268, +2016-08-10 20:42:43,3571.0,13.2656, +2016-08-10 20:45:00,,,16.9214 +2016-08-10 20:52:46,3570.0,13.2644, +2016-08-10 21:00:00,,,16.9229 +2016-08-10 21:02:48,3570.0,13.2644, +2016-08-10 21:12:51,3568.0,13.2656, +2016-08-10 21:15:00,,,16.9199 +2016-08-10 21:22:53,3568.0,13.2656, +2016-08-10 21:30:00,,,16.9229 +2016-08-10 21:32:56,3566.0,13.2656, +2016-08-10 21:42:58,3566.0,13.2656, +2016-08-10 21:45:00,,,16.8876 +2016-08-10 21:53:00,3565.0,13.2656, +2016-08-10 22:00:00,,,16.9214 +2016-08-10 22:03:02,3565.0,13.2962, +2016-08-10 22:13:05,3564.0,13.2644, +2016-08-10 22:15:00,,,16.9214 +2016-08-10 22:23:07,3563.0,13.2644, +2016-08-10 22:30:00,,,16.8831 +2016-08-10 22:33:09,3562.0,13.2644, +2016-08-10 22:43:18,3561.0,13.2644, +2016-08-10 22:45:00,,,16.9199 +2016-08-10 22:53:21,3560.0,13.2621, +2016-08-10 23:00:00,,,16.9214 +2016-08-10 23:03:23,3559.0,13.2656, +2016-08-10 23:13:25,3559.0,13.2621, +2016-08-10 23:15:00,,,16.9506 +2016-08-10 23:23:27,3558.0,13.2927, +2016-08-10 23:30:00,,,16.9214 +2016-08-10 23:33:30,3557.0,13.2915, +2016-08-10 23:43:32,3557.0,13.2609, +2016-08-10 23:45:00,,,16.9214 +2016-08-10 23:53:34,3556.0,13.2315, +2016-08-11 00:00:00,,,16.9551 +2016-08-11 00:15:00,,, +2016-08-11 00:30:00,,, +2016-08-11 00:45:00,,, +2016-08-11 01:00:00,,,16.9521 +2016-08-11 01:03:50,3551.0,13.3504, +2016-08-11 01:13:53,3550.0,13.2573, +2016-08-11 01:15:00,,,16.9184 +2016-08-11 01:23:55,3550.0,13.2268, +2016-08-11 01:30:00,,,16.9169 +2016-08-11 01:33:57,3549.0,13.2573, +2016-08-11 01:43:59,3549.0,13.2573, +2016-08-11 01:45:00,,,16.9184 +2016-08-11 01:54:02,3548.0,13.2573, +2016-08-11 02:00:00,,,16.9506 +2016-08-11 02:04:04,3548.0,13.2585, +2016-08-11 02:14:06,3547.0,13.2585, +2016-08-11 02:15:00,,,16.9521 +2016-08-11 02:24:09,3547.0,13.2585, +2016-08-11 02:30:00,,,16.9521 +2016-08-11 02:34:11,3546.0,13.2573, +2016-08-11 02:44:13,3545.0,13.2585, +2016-08-11 02:45:00,,,16.9184 +2016-08-11 02:54:16,3545.0,13.2573, +2016-08-11 03:00:00,,,16.8846 +2016-08-11 03:04:18,3545.0,13.2573, +2016-08-11 03:14:20,3545.0,13.3493, +2016-08-11 03:15:00,,,16.9184 +2016-08-11 03:24:22,3544.0,13.255, +2016-08-11 03:30:00,,,16.9184 +2016-08-11 03:34:25,3544.0,13.2562, +2016-08-11 03:44:27,3543.0,13.255, +2016-08-11 03:45:00,,,16.9123 +2016-08-11 03:54:29,3543.0,13.255, +2016-08-11 04:00:00,,,16.9184 +2016-08-11 04:04:31,3543.0,13.3481, +2016-08-11 04:14:34,3542.0,13.3469, +2016-08-11 04:15:00,,,16.9169 +2016-08-11 04:24:36,3542.0,13.3445, +2016-08-11 04:30:00,,,16.9184 +2016-08-11 04:34:38,3542.0,13.3433, +2016-08-11 04:44:40,3541.0,13.3433, +2016-08-11 04:45:00,,,16.9123 +2016-08-11 04:54:43,3541.0,13.3421, +2016-08-11 05:00:00,,,16.9138 +2016-08-11 05:04:45,3540.0,13.2514, +2016-08-11 05:14:47,3540.0,13.3421, +2016-08-11 05:15:00,,,16.9138 +2016-08-11 05:24:49,3540.0,13.2479, +2016-08-11 05:30:00,,,16.9138 +2016-08-11 05:34:51,3540.0,13.2479, +2016-08-11 05:44:53,3539.0,13.2479, +2016-08-11 05:45:00,,,16.9123 +2016-08-11 05:54:56,3539.0,13.2479, +2016-08-11 06:00:00,,,16.8786 +2016-08-11 06:04:58,3539.0,13.3398, +2016-08-11 06:15:00,3539.0,13.3398,16.9461 +2016-08-11 06:25:02,3538.0,13.3704, +2016-08-11 06:30:00,,,16.9123 +2016-08-11 06:35:04,3538.0,13.3398, +2016-08-11 06:45:00,,,16.9138 +2016-08-11 06:45:07,3538.0,13.3398, +2016-08-11 06:55:09,3538.0,13.3398, +2016-08-11 07:00:00,,,16.9138 +2016-08-11 07:05:11,3539.0,13.3398, +2016-08-11 07:15:00,,,16.9461 +2016-08-11 07:15:13,3539.0,13.3398, +2016-08-11 07:25:15,3540.0,13.3398, +2016-08-11 07:30:00,,,16.9123 +2016-08-11 07:35:18,3540.0,13.3398, +2016-08-11 07:45:00,,,16.9123 +2016-08-11 07:45:20,3541.0,13.3398, +2016-08-11 07:55:22,3542.0,13.3398, +2016-08-11 08:00:00,,,16.9093 +2016-08-11 08:05:25,3543.0,13.3398, +2016-08-11 08:15:00,,,16.9476 +2016-08-11 08:15:27,3544.0,13.2761, +2016-08-11 08:25:29,3545.0,13.2444, +2016-08-11 08:30:00,,,16.9078 +2016-08-11 08:35:32,3545.0,13.2444, +2016-08-11 08:45:00,,,16.9431 +2016-08-11 08:45:34,3547.0,13.2456, +2016-08-11 08:55:36,3548.0,13.2444, +2016-08-11 09:00:00,,,16.9416 +2016-08-11 09:05:39,3550.0,13.2444, +2016-08-11 09:15:00,,,16.9078 +2016-08-11 09:15:41,3550.0,13.2456, +2016-08-11 09:25:43,3553.0,13.2444, +2016-08-11 09:30:00,,,16.9093 +2016-08-11 09:35:46,3554.0,13.2408, +2016-08-11 09:45:00,,,16.9078 +2016-08-11 09:45:48,3556.0,13.2444, +2016-08-11 09:55:51,3557.0,13.2444, +2016-08-11 10:00:00,,,16.9078 +2016-08-11 10:05:53,3559.0,13.2408, +2016-08-11 10:15:00,,,16.9078 +2016-08-11 10:15:56,3560.0,13.2408, +2016-08-11 10:25:58,3563.0,13.2408, +2016-08-11 10:30:00,,,16.9078 +2016-08-11 10:36:00,3564.0,13.2408, +2016-08-11 10:45:00,,,16.9093 +2016-08-11 10:46:03,3565.0,13.2408, +2016-08-11 10:56:05,3566.0,13.2444, +2016-08-11 11:00:00,,,16.9078 +2016-08-11 11:06:08,3568.0,13.2714, +2016-08-11 11:15:00,,,16.9033 +2016-08-11 11:16:10,3569.0,13.2408, +2016-08-11 11:26:13,3570.0,13.2103, +2016-08-11 11:30:00,,,16.9048 +2016-08-11 11:36:15,3572.0,13.2103, +2016-08-11 11:45:00,,,16.9033 +2016-08-11 11:46:18,3572.0,13.2408, +2016-08-11 11:56:20,3573.0,13.1505, +2016-08-11 12:00:00,,,16.9033 +2016-08-11 12:06:23,3574.0,13.1528, +2016-08-11 12:15:00,,,16.9033 +2016-08-11 12:16:25,3574.0,13.1493, +2016-08-11 12:26:28,3575.0,13.1493, +2016-08-11 12:30:00,,,16.9048 +2016-08-11 12:36:30,3576.0,13.1528, +2016-08-11 12:45:00,,,16.9033 +2016-08-11 12:46:33,3577.0,13.1493, +2016-08-11 12:56:35,3577.0,13.1528, +2016-08-11 13:00:00,,,16.8696 +2016-08-11 13:06:38,3577.0,13.1528, +2016-08-11 13:15:00,,,16.9033 +2016-08-11 13:16:40,3578.0,13.1493, +2016-08-11 13:26:43,3578.0,13.1528, +2016-08-11 13:30:00,,,16.9048 +2016-08-11 13:36:46,3579.0,13.1528, +2016-08-11 13:45:00,,,16.8711 +2016-08-11 13:46:48,3580.0,13.1528, +2016-08-11 13:56:51,3581.0,13.1235, +2016-08-11 14:00:00,,,16.9033 +2016-08-11 14:06:53,3581.0,13.154000000000002, +2016-08-11 14:15:00,,,16.9048 +2016-08-11 14:16:56,3581.0,13.1528, +2016-08-11 14:26:58,3581.0,13.1528, +2016-08-11 14:30:00,,,16.9048 +2016-08-11 14:37:01,3582.0,13.1516, +2016-08-11 14:45:00,,,16.9033 +2016-08-11 14:47:04,3583.0,13.154000000000002, +2016-08-11 14:57:06,3583.0,13.1528, +2016-08-11 15:00:00,,,16.8038 +2016-08-11 15:07:09,3583.0,13.1528, +2016-08-11 15:15:00,,,16.8038 +2016-08-11 15:17:11,3583.0,13.1528, +2016-08-11 15:27:14,3584.0,13.1563, +2016-08-11 15:30:00,,,16.8038 +2016-08-11 15:37:16,3584.0,13.1528, +2016-08-11 15:45:00,,,16.8023 +2016-08-11 15:47:19,3585.0,13.154000000000002, +2016-08-11 15:57:22,3585.0,13.1528, +2016-08-11 16:00:00,,,16.8023 +2016-08-11 16:07:24,3585.0,13.1563, +2016-08-11 16:15:00,,,16.8053 +2016-08-11 16:17:26,3585.0,13.1563, +2016-08-11 16:27:29,3585.0,13.1563, +2016-08-11 16:30:00,,,16.8023 +2016-08-11 16:37:32,3585.0,13.1563, +2016-08-11 16:45:00,,,16.8038 +2016-08-11 16:47:34,3585.0,13.1258, +2016-08-11 16:57:37,3585.0,13.1563, +2016-08-11 17:00:00,,,16.8038 +2016-08-11 17:07:39,3585.0,13.1563, +2016-08-11 17:15:00,,,16.7687 +2016-08-11 17:17:42,3585.0,13.1563, +2016-08-11 17:27:44,3584.0,13.1563, +2016-08-11 17:30:00,,,16.8023 +2016-08-11 17:37:47,3584.0,13.1563, +2016-08-11 17:45:00,,,16.8023 +2016-08-11 17:47:49,3583.0,13.1258, +2016-08-11 17:57:52,3582.0,13.1563, +2016-08-11 18:00:00,,,16.8023 +2016-08-11 18:07:54,3581.0,13.1563, +2016-08-11 18:15:00,,,16.8023 +2016-08-11 18:17:57,3581.0,13.1563, +2016-08-11 18:28:00,3581.0,13.1551, +2016-08-11 18:30:00,,,16.7687 +2016-08-11 18:38:02,3580.0,13.1563, +2016-08-11 18:45:00,,,16.8053 +2016-08-11 18:48:05,3579.0,13.1563, +2016-08-11 18:58:07,3578.0,13.1563, +2016-08-11 19:00:00,,,16.8023 +2016-08-11 19:08:10,3577.0,13.1563, +2016-08-11 19:15:00,,,16.8038 +2016-08-11 19:18:12,3577.0,13.1563, +2016-08-11 19:28:15,3576.0,13.1563, +2016-08-11 19:30:00,,,16.8038 +2016-08-11 19:38:17,3575.0,13.1563, +2016-08-11 19:45:00,,,16.7702 +2016-08-11 19:48:20,3574.0,13.1563, +2016-08-11 19:58:22,3574.0,13.1563, +2016-08-11 20:00:00,,,16.8023 +2016-08-11 20:08:24,3573.0,13.1563, +2016-08-11 20:15:00,,,16.8023 +2016-08-11 20:18:27,3572.0,13.1563, +2016-08-11 20:28:29,3572.0,13.1563, +2016-08-11 20:30:00,,,16.8023 +2016-08-11 20:38:32,3571.0,13.1563, +2016-08-11 20:45:00,,,16.8023 +2016-08-11 20:48:34,3571.0,13.1868, +2016-08-11 20:58:37,3570.0,13.1563, +2016-08-11 21:00:00,,,16.8023 +2016-08-11 21:08:39,3570.0,13.1563, +2016-08-11 21:15:00,,,16.7687 +2016-08-11 21:18:41,3570.0,13.1563, +2016-08-11 21:28:44,3569.0,13.1563, +2016-08-11 21:30:00,,,16.8023 +2016-08-11 21:38:46,3569.0,13.1868, +2016-08-11 21:45:00,,,16.7978 +2016-08-11 21:48:48,3569.0,13.1563, +2016-08-11 21:58:50,3569.0,13.1868, +2016-08-11 22:00:00,,,16.7993 +2016-08-11 22:08:53,3568.0,13.1551, +2016-08-11 22:15:00,,,16.8023 +2016-08-11 22:18:55,3568.0,13.1868, +2016-08-11 22:28:57,3568.0,13.1563, +2016-08-11 22:30:00,,,16.7978 +2016-08-11 22:39:00,3568.0,13.1868, +2016-08-11 22:45:00,,,16.7993 +2016-08-11 22:49:02,3567.0,13.1563, +2016-08-11 22:59:04,3568.0,13.1563, +2016-08-11 23:00:00,,,16.8329 +2016-08-11 23:09:06,3567.0,13.1563, +2016-08-11 23:15:00,,,16.8023 +2016-08-11 23:19:09,3568.0,13.127, +2016-08-11 23:29:11,3567.0,13.1563, +2016-08-11 23:30:00,,,16.7993 +2016-08-11 23:39:13,3567.0,13.1563, +2016-08-11 23:45:00,,,16.7993 +2016-08-11 23:49:16,3567.0,13.1563, +2016-08-11 23:59:18,3567.0,13.1563, +2016-08-12 00:00:00,,,16.8008 +2016-08-12 00:09:20,3567.0,13.1563, +2016-08-12 00:15:00,,,16.7993 +2016-08-12 00:19:22,3566.0,13.1563, +2016-08-12 00:29:25,3567.0,13.1563, +2016-08-12 00:30:00,,,16.7993 +2016-08-12 00:39:27,3567.0,13.1575, +2016-08-12 00:45:00,,,16.7993 +2016-08-12 00:49:29,3567.0,13.1563, +2016-08-12 00:59:31,3567.0,13.1563, +2016-08-12 01:00:00,,,16.8329 +2016-08-12 01:09:34,3567.0,13.1563, +2016-08-12 01:15:00,,,16.7993 +2016-08-12 01:19:36,3567.0,13.1563, +2016-08-12 01:29:38,3567.0,13.1563, +2016-08-12 01:30:00,,,16.7993 +2016-08-12 01:39:40,3567.0,13.1563, +2016-08-12 01:45:00,,,16.7993 +2016-08-12 01:49:43,3567.0,13.1258, +2016-08-12 01:59:45,3568.0,13.1563, +2016-08-12 02:00:00,,,16.7993 +2016-08-12 02:09:47,3568.0,13.1563, +2016-08-12 02:15:00,,,16.7993 +2016-08-12 02:19:50,3568.0,13.1563, +2016-08-12 02:29:53,3567.0,13.1563, +2016-08-12 02:30:00,,,16.7993 +2016-08-12 02:39:55,3567.0,13.1563, +2016-08-12 02:45:00,,,16.7993 +2016-08-12 02:49:58,3568.0,13.1575, +2016-08-12 03:00:00,3568.0,13.1258,16.7993 +2016-08-12 03:10:03,3568.0,13.1563, +2016-08-12 03:15:00,,,16.7993 +2016-08-12 03:20:05,3568.0,13.1563, +2016-08-12 03:30:00,,,16.7993 +2016-08-12 03:30:08,3568.0,13.1563, +2016-08-12 03:40:10,3568.0,13.1563, +2016-08-12 03:45:00,,,16.7993 +2016-08-12 03:50:13,3568.0,13.1563, +2016-08-12 04:00:00,,,16.7978 +2016-08-12 04:00:15,3568.0,13.1563, +2016-08-12 04:10:18,3568.0,13.1563, +2016-08-12 04:15:00,,,16.7993 +2016-08-12 04:20:20,3568.0,13.1563, +2016-08-12 04:30:00,,,16.7948 +2016-08-12 04:30:23,3567.0,13.1563, +2016-08-12 04:40:25,3567.0,13.1563, +2016-08-12 04:45:00,,,16.8285 +2016-08-12 04:50:28,3567.0,13.1563, +2016-08-12 05:00:00,,,16.7613 +2016-08-12 05:00:30,3566.0,13.1563, +2016-08-12 05:10:32,3567.0,13.1563, +2016-08-12 05:15:00,,,16.7948 +2016-08-12 05:20:35,3566.0,13.1563, +2016-08-12 05:30:00,,,16.8285 +2016-08-12 05:30:37,3566.0,13.1563, +2016-08-12 05:40:40,3566.0,13.1563, +2016-08-12 05:45:00,,,16.7963 +2016-08-12 05:50:42,3566.0,13.1563, +2016-08-12 06:00:00,,,16.7948 +2016-08-12 06:00:45,3566.0,13.1551, +2016-08-12 06:10:47,3566.0,13.1563, +2016-08-12 06:15:00,,,16.7993 +2016-08-12 06:20:50,3565.0,13.1868, +2016-08-12 06:30:00,,,16.7948 +2016-08-12 06:30:52,3566.0,13.1258, +2016-08-12 06:40:54,3566.0,13.1563, +2016-08-12 06:45:00,,,16.7948 +2016-08-12 06:50:57,3565.0,13.1258, +2016-08-12 07:00:00,,,16.7948 +2016-08-12 07:00:59,3565.0,13.1563, +2016-08-12 07:11:01,3565.0,13.2479, +2016-08-12 07:15:00,,,16.7948 +2016-08-12 07:21:04,3565.0,13.2479, +2016-08-12 07:30:00,,,16.7948 +2016-08-12 07:31:06,3565.0,13.2479, +2016-08-12 07:41:08,3565.0,13.2479, +2016-08-12 07:45:00,,,16.7948 +2016-08-12 07:51:11,3566.0,13.2479, +2016-08-12 08:00:00,,,16.7948 +2016-08-12 08:01:13,3541.0,13.2173, +2016-08-12 08:11:16,3566.0,13.2479, +2016-08-12 08:15:00,,,16.7948 +2016-08-12 08:21:18,3566.0,13.2479, +2016-08-12 08:30:00,,,16.7948 +2016-08-12 08:31:21,3566.0,13.2479, +2016-08-12 08:41:23,3566.0,13.2479, +2016-08-12 08:45:00,,,16.7948 +2016-08-12 08:51:26,3567.0,13.2479, +2016-08-12 09:00:00,,,16.7948 +2016-08-12 09:01:28,3566.0,13.2479, +2016-08-12 09:11:30,3567.0,13.1563, +2016-08-12 09:15:00,,,16.7948 +2016-08-12 09:21:33,3566.0,13.1223, +2016-08-12 09:30:00,,,16.7948 +2016-08-12 09:31:35,3568.0,13.2479, +2016-08-12 09:41:38,3570.0,13.1563, +2016-08-12 09:45:00,,,16.7948 +2016-08-12 09:51:40,3570.0,13.1528, +2016-08-12 10:00:00,,,16.7948 +2016-08-12 10:01:42,3571.0,13.1563, +2016-08-12 10:11:45,3572.0,13.1563, +2016-08-12 10:15:00,,,16.7948 +2016-08-12 10:21:47,3573.0,13.1528, +2016-08-12 10:30:00,,,16.7948 +2016-08-12 10:31:50,3574.0,13.154000000000002, +2016-08-12 10:41:52,3574.0,13.1563, +2016-08-12 10:45:00,,,16.8285 +2016-08-12 10:51:55,3575.0,13.1563, +2016-08-12 11:00:00,,,16.7948 +2016-08-12 11:01:57,3576.0,13.1563, +2016-08-12 11:12:00,3577.0,13.1563, +2016-08-12 11:15:00,,,16.7613 +2016-08-12 11:22:02,3577.0,13.1563, +2016-08-12 11:30:00,,,16.7948 +2016-08-12 11:32:05,3578.0,13.1563, +2016-08-12 11:42:07,3579.0,13.1258, +2016-08-12 11:45:00,,,16.7948 +2016-08-12 11:52:09,3580.0,13.2479, +2016-08-12 12:00:00,,,16.7613 +2016-08-12 12:02:12,3581.0,13.2479, +2016-08-12 12:12:14,3581.0,13.2479, +2016-08-12 12:15:00,,,16.7948 +2016-08-12 12:22:17,3582.0,13.2479, +2016-08-12 12:30:00,,,16.7948 +2016-08-12 12:32:20,3583.0,13.2479, +2016-08-12 12:42:22,3584.0,13.2479, +2016-08-12 12:45:00,,,16.7948 +2016-08-12 12:52:25,3584.0,13.2467, +2016-08-12 13:00:00,,,16.824 +2016-08-12 13:02:27,3585.0,13.2479, +2016-08-12 13:12:30,3585.0,13.2479, +2016-08-12 13:15:00,,,16.7948 +2016-08-12 13:22:32,3585.0,13.2479, +2016-08-12 13:30:00,,,16.7904 +2016-08-12 13:32:35,3585.0,13.2479, +2016-08-12 13:42:37,3586.0,13.2785, +2016-08-12 13:45:00,,,16.7553 +2016-08-12 13:52:40,3586.0,13.2479, +2016-08-12 14:00:00,,,16.7904 +2016-08-12 14:02:42,3587.0,13.2173, +2016-08-12 14:12:45,3587.0,13.2479, +2016-08-12 14:15:00,,,16.7904 +2016-08-12 14:22:47,3588.0,13.2479, +2016-08-12 14:30:00,,,16.7904 +2016-08-12 14:32:50,3588.0,13.2479, +2016-08-12 14:42:52,3588.0,13.2479, +2016-08-12 14:45:00,,,16.7904 +2016-08-12 14:52:55,3590.0,13.2479, +2016-08-12 15:00:00,,,16.7948 +2016-08-12 15:02:57,3591.0,13.2173, +2016-08-12 15:13:00,3592.0,13.2479, +2016-08-12 15:15:00,,,16.7904 +2016-08-12 15:23:03,3592.0,13.2503, +2016-08-12 15:30:00,,,16.7904 +2016-08-12 15:33:05,3593.0,13.1586, +2016-08-12 15:43:08,3593.0,13.2503, +2016-08-12 15:45:00,,,16.7568 +2016-08-12 15:53:10,3593.0,13.2197, +2016-08-12 16:00:00,,,16.7904 +2016-08-12 16:03:13,3593.0,13.1586, +2016-08-12 16:13:16,3593.0,13.2503, +2016-08-12 16:15:00,,,16.7948 +2016-08-12 16:23:19,3593.0,13.255, +2016-08-12 16:30:00,,,16.7904 +2016-08-12 16:33:22,3593.0,13.255, +2016-08-12 16:43:24,3593.0,13.255, +2016-08-12 16:45:00,,,16.7904 +2016-08-12 16:53:27,3594.0,13.2256, +2016-08-12 17:00:00,,,16.7568 +2016-08-12 17:03:30,3593.0,13.1621, +2016-08-12 17:13:32,3593.0,13.1352, +2016-08-12 17:15:00,,,16.7568 +2016-08-12 17:23:35,3594.0,13.2573, +2016-08-12 17:30:00,,,16.7889 +2016-08-12 17:33:37,3594.0,13.2573, +2016-08-12 17:43:40,3593.0,13.2573, +2016-08-12 17:45:00,,,16.7904 +2016-08-12 17:53:43,3594.0,13.2573, +2016-08-12 18:00:00,,,16.7904 +2016-08-12 18:03:45,3593.0,13.2573, +2016-08-12 18:13:48,3593.0,13.2573, +2016-08-12 18:15:00,,,16.7904 +2016-08-12 18:23:50,3593.0,13.2573, +2016-08-12 18:30:00,,,16.7904 +2016-08-12 18:33:53,3593.0,13.2573, +2016-08-12 18:43:56,3593.0,13.2268, +2016-08-12 18:45:00,,,16.7904 +2016-08-12 18:53:58,3593.0,13.2573, +2016-08-12 19:00:00,,,16.7568 +2016-08-12 19:04:01,3593.0,13.2573, +2016-08-12 19:14:03,3593.0,13.2573, +2016-08-12 19:15:00,,,16.7904 +2016-08-12 19:24:06,3593.0,13.2573, +2016-08-12 19:30:00,,,16.7904 +2016-08-12 19:34:09,3593.0,13.2585, +2016-08-12 19:44:11,3593.0,13.2891, +2016-08-12 19:45:00,,,16.7568 +2016-08-12 19:54:14,3592.0,13.2573, +2016-08-12 20:00:00,,,16.7904 +2016-08-12 20:04:16,3592.0,13.2573, +2016-08-12 20:14:19,3592.0,13.2573, +2016-08-12 20:15:00,,,16.7904 +2016-08-12 20:24:22,3592.0,13.2573, +2016-08-12 20:30:00,,,16.7904 +2016-08-12 20:34:24,3592.0,13.2573, +2016-08-12 20:44:27,3592.0,13.2268, +2016-08-12 20:45:00,,,16.7948 +2016-08-12 20:54:29,3592.0,13.2621, +2016-08-12 21:00:00,,,16.7904 +2016-08-12 21:04:32,3592.0,13.2621, +2016-08-12 21:14:35,3592.0,13.2609, +2016-08-12 21:15:00,,,16.7904 +2016-08-12 21:24:37,3592.0,13.2609, +2016-08-12 21:30:00,,,16.7904 +2016-08-12 21:34:40,3592.0,13.2609, +2016-08-12 21:44:42,3591.0,13.2621, +2016-08-12 21:45:00,,,16.7904 +2016-08-12 21:54:45,3591.0,13.2609, +2016-08-12 22:00:00,,,16.7904 +2016-08-12 22:04:47,3591.0,13.2644, +2016-08-12 22:14:50,3590.0,13.2621, +2016-08-12 22:15:00,,,16.7904 +2016-08-12 22:24:52,3590.0,13.2621, +2016-08-12 22:30:00,,,16.7904 +2016-08-12 22:34:55,3590.0,13.2303, +2016-08-12 22:44:57,3590.0,13.295, +2016-08-12 22:45:00,,,16.7948 +2016-08-12 22:55:00,3590.0,13.1739, +2016-08-12 23:00:00,,,16.7904 +2016-08-12 23:05:02,3589.0,13.2644, +2016-08-12 23:15:00,,,16.7904 +2016-08-12 23:15:05,3590.0,13.2656, +2016-08-12 23:25:08,3589.0,13.2656, +2016-08-12 23:30:00,,,16.7904 +2016-08-12 23:35:10,3589.0,13.2644, +2016-08-12 23:45:00,,,16.7904 +2016-08-12 23:45:13,3589.0,13.2656, +2016-08-12 23:55:15,3588.0,13.235, +2016-08-13 00:00:00,,,16.7904 +2016-08-13 00:05:18,3588.0,13.2691, +2016-08-13 00:15:00,,,16.7948 +2016-08-13 00:15:20,3588.0,13.2656, +2016-08-13 00:25:23,3588.0,13.2656, +2016-08-13 00:30:00,,,16.7613 +2016-08-13 00:35:26,3588.0,13.2668, +2016-08-13 00:45:00,,,16.7948 +2016-08-13 00:45:28,3588.0,13.2668, +2016-08-13 00:55:30,3588.0,13.2986, +2016-08-13 01:00:00,,,16.7948 +2016-08-13 01:05:33,3588.0,13.268, +2016-08-13 01:15:00,,,16.7948 +2016-08-13 01:15:35,3588.0,13.2668, +2016-08-13 01:25:37,3588.0,13.268, +2016-08-13 01:30:00,,,16.7948 +2016-08-13 01:35:39,3588.0,13.2691, +2016-08-13 01:45:00,,,16.7948 +2016-08-13 01:45:42,3588.0,13.268, +2016-08-13 01:55:44,3588.0,13.2668, +2016-08-13 02:00:00,,,16.8285 +2016-08-13 02:05:47,3587.0,13.2373, +2016-08-13 02:15:00,,,16.7934 +2016-08-13 02:15:50,3588.0,13.2668, +2016-08-13 02:25:52,3587.0,13.2668, +2016-08-13 02:30:00,,,16.7948 +2016-08-13 02:35:54,3587.0,13.268, +2016-08-13 02:45:00,,,16.7948 +2016-08-13 02:45:57,3587.0,13.268, +2016-08-13 02:56:00,3587.0,13.268, +2016-08-13 03:00:00,,,16.7948 +2016-08-13 03:06:02,3587.0,13.2715, +2016-08-13 03:15:00,,,16.7948 +2016-08-13 03:16:05,3587.0,13.268, +2016-08-13 03:26:07,3586.0,13.2668, +2016-08-13 03:30:00,,,16.7948 +2016-08-13 03:36:09,3586.0,13.268, +2016-08-13 03:45:00,,,16.7613 +2016-08-13 03:46:12,3586.0,13.2715, +2016-08-13 03:56:14,3586.0,13.2715, +2016-08-13 04:00:00,,,16.7948 +2016-08-13 04:06:17,3586.0,13.2715, +2016-08-13 04:15:00,,,16.7948 +2016-08-13 04:16:19,3585.0,13.2715, +2016-08-13 04:26:22,3585.0,13.2715, +2016-08-13 04:30:00,,,16.7948 +2016-08-13 04:36:24,3585.0,13.2715, +2016-08-13 04:45:00,,,16.7948 +2016-08-13 04:46:26,3585.0,13.3021, +2016-08-13 04:56:29,3585.0,13.2409, +2016-08-13 05:00:00,,,16.8285 +2016-08-13 05:06:31,3585.0,13.2703, +2016-08-13 05:15:00,,,16.7993 +2016-08-13 05:16:34,3584.0,13.2715, +2016-08-13 05:26:36,3584.0,13.2715, +2016-08-13 05:30:00,,,16.7948 +2016-08-13 05:36:39,3584.0,13.2715, +2016-08-13 05:45:00,,,16.7948 +2016-08-13 05:46:41,3584.0,13.2715, +2016-08-13 05:56:44,3583.0,13.2715, +2016-08-13 06:00:00,,,16.7934 +2016-08-13 06:06:46,3583.0,13.2715, +2016-08-13 06:15:00,,,16.7948 +2016-08-13 06:16:49,3583.0,13.2703, +2016-08-13 06:26:51,3582.0,13.2715, +2016-08-13 06:30:00,,,16.7948 +2016-08-13 06:36:54,3582.0,13.2715, +2016-08-13 06:45:00,,,16.7948 +2016-08-13 06:46:56,3582.0,13.2715, +2016-08-13 06:56:59,3582.0,13.2703, +2016-08-13 07:00:00,,,16.7613 +2016-08-13 07:07:01,3582.0,13.2703, +2016-08-13 07:15:00,,,16.7657 +2016-08-13 07:17:03,3582.0,13.2715, +2016-08-13 07:27:06,3582.0,13.2715, +2016-08-13 07:30:00,,,16.7948 +2016-08-13 07:37:08,3582.0,13.2715, +2016-08-13 07:45:00,,,16.7993 +2016-08-13 07:47:11,3583.0,13.2715, +2016-08-13 07:57:13,3583.0,13.2715, +2016-08-13 08:00:00,,,16.7993 +2016-08-13 08:07:16,3583.0,13.2703, +2016-08-13 08:15:00,,,16.7993 +2016-08-13 08:17:18,3584.0,13.2715, +2016-08-13 08:27:21,3585.0,13.2397, +2016-08-13 08:30:00,,,16.7978 +2016-08-13 08:37:23,3586.0,13.3021, +2016-08-13 08:45:00,,,16.7993 +2016-08-13 08:47:26,3586.0,13.2715, +2016-08-13 08:57:29,3587.0,13.2715, +2016-08-13 09:00:00,,,16.7657 +2016-08-13 09:07:31,3588.0,13.2715, +2016-08-13 09:15:00,,,16.7993 +2016-08-13 09:17:34,3588.0,13.2409, +2016-08-13 09:27:36,3590.0,13.2703, +2016-08-13 09:30:00,,,16.7993 +2016-08-13 09:37:39,3592.0,13.2715, +2016-08-13 09:45:00,,,16.7993 +2016-08-13 09:47:42,3593.0,13.2715, +2016-08-13 09:57:45,3595.0,13.1785, +2016-08-13 10:00:00,,,16.8329 +2016-08-13 10:07:47,3595.0,13.1797, +2016-08-13 10:15:00,,,16.7993 +2016-08-13 10:17:49,3597.0,13.1797, +2016-08-13 10:27:52,3598.0,13.1492, +2016-08-13 10:30:00,,,16.7993 +2016-08-13 10:37:54,3598.0,13.1797, +2016-08-13 10:45:00,,,16.7993 +2016-08-13 10:47:57,3599.0,13.1797, +2016-08-13 10:57:59,3599.0,13.1797, +2016-08-13 11:00:00,,,16.7993 +2016-08-13 11:08:02,3599.0,13.1797, +2016-08-13 11:15:00,,,16.7993 +2016-08-13 11:18:05,3599.0,13.1785, +2016-08-13 11:28:07,3599.0,13.1187, +2016-08-13 11:30:00,,,16.7993 +2016-08-13 11:38:10,3599.0,13.1187, +2016-08-13 11:45:00,,,16.7993 +2016-08-13 11:48:13,3599.0,13.0882, +2016-08-13 11:58:16,3599.0,13.0566, +2016-08-13 12:00:00,,,16.7657 +2016-08-13 12:08:18,3599.0,13.1187, +2016-08-13 12:15:00,,,16.6652 +2016-08-13 12:18:21,3599.0,13.087, +2016-08-13 12:28:24,3599.0,13.1187, +2016-08-13 12:30:00,,,16.6652 +2016-08-13 12:38:27,3599.0,13.0917, +2016-08-13 12:45:00,,,16.6652 +2016-08-13 12:48:30,3599.0,13.0003, +2016-08-13 12:58:32,3599.0,13.0003, +2016-08-13 13:00:00,,,16.6652 +2016-08-13 13:08:35,3599.0,13.0038, +2016-08-13 13:15:00,,,16.6987 +2016-08-13 13:18:38,3599.0,13.0027, +2016-08-13 13:28:41,3599.0,13.0038, +2016-08-13 13:30:00,,,16.6987 +2016-08-13 13:38:44,3599.0,13.0027, +2016-08-13 13:45:00,,,16.6987 +2016-08-13 13:48:46,3599.0,13.0331, +2016-08-13 13:58:49,3599.0,13.0331, +2016-08-13 14:00:00,,,16.7002 +2016-08-13 14:08:52,3599.0,12.9769, +2016-08-13 14:15:00,,,16.6637 +2016-08-13 14:18:55,3599.0,13.0061, +2016-08-13 14:28:58,3599.0,13.0061, +2016-08-13 14:30:00,,,16.6696 +2016-08-13 14:39:01,3599.0,13.0061, +2016-08-13 14:45:00,,,16.6682 +2016-08-13 14:49:04,3599.0,13.0073, +2016-08-13 14:59:07,3599.0,12.9757, +2016-08-13 15:00:00,,,16.7016 +2016-08-13 15:09:09,3599.0,13.0061, +2016-08-13 15:15:00,,,16.7016 +2016-08-13 15:19:12,3599.0,13.0061, +2016-08-13 15:29:15,3599.0,13.0073, +2016-08-13 15:30:00,,,16.6972 +2016-08-13 15:39:18,3599.0,12.9757, +2016-08-13 15:45:00,,,16.7016 +2016-08-13 15:49:21,3599.0,13.0061, +2016-08-13 15:59:24,3599.0,12.9769, +2016-08-13 16:00:00,,,16.6696 +2016-08-13 16:09:27,3599.0,13.0061, +2016-08-13 16:15:00,,,16.6682 +2016-08-13 16:19:30,3599.0,12.9769, +2016-08-13 16:29:33,3599.0,13.0096, +2016-08-13 16:30:00,,,16.6682 +2016-08-13 16:39:36,3599.0,13.0096, +2016-08-13 16:45:00,,,16.6682 +2016-08-13 16:49:38,3599.0,13.0096, +2016-08-13 16:59:41,3599.0,13.0131, +2016-08-13 17:00:00,,,16.6347 +2016-08-13 17:09:44,3599.0,13.04, +2016-08-13 17:15:00,,,16.5679 +2016-08-13 17:19:54,3599.0,13.0131, +2016-08-13 17:29:57,3599.0,12.9815, +2016-08-13 17:30:00,,,16.5679 +2016-08-13 17:40:00,3599.0,12.9826, +2016-08-13 17:45:00,,,16.5694 +2016-08-13 17:50:03,3599.0,13.0154, +2016-08-13 18:00:00,,,16.5679 +2016-08-13 18:00:05,3599.0,13.0131, +2016-08-13 18:10:08,3599.0,13.047, +2016-08-13 18:15:00,,,16.6013 +2016-08-13 18:20:11,3599.0,13.0165, +2016-08-13 18:30:00,,,16.6362 +2016-08-13 18:30:14,3599.0,13.0165, +2016-08-13 18:40:17,3599.0,12.9861, +2016-08-13 18:45:00,,,16.6028 +2016-08-13 18:50:19,3599.0,12.9861, +2016-08-13 19:00:00,,,16.6013 +2016-08-13 19:00:22,3599.0,13.0165, +2016-08-13 19:10:25,3599.0,13.0165, +2016-08-13 19:15:00,,,16.6013 +2016-08-13 19:20:28,3599.0,13.047, +2016-08-13 19:30:00,,,16.6347 +2016-08-13 19:30:32,3599.0,13.0165, +2016-08-13 19:40:36,3599.0,13.0165, +2016-08-13 19:45:00,,,16.5679 +2016-08-13 19:50:38,3599.0,12.9861, +2016-08-13 20:00:00,,,16.6013 +2016-08-13 20:00:41,3599.0,13.0165, +2016-08-13 20:10:44,3599.0,13.0165, +2016-08-13 20:15:00,,,16.6347 +2016-08-13 20:20:47,3599.0,13.0165, +2016-08-13 20:30:00,,,16.6013 +2016-08-13 20:30:50,3599.0,12.985, +2016-08-13 20:40:53,3599.0,13.047, +2016-08-13 20:45:00,,,16.6362 +2016-08-13 20:50:55,3599.0,13.0165, +2016-08-13 21:00:00,,,16.5679 +2016-08-13 21:00:58,3599.0,13.0177, +2016-08-13 21:11:01,3599.0,13.0165, +2016-08-13 21:15:00,,,16.6013 +2016-08-13 21:21:04,3599.0,13.047, +2016-08-13 21:30:00,,,16.6013 +2016-08-13 21:31:06,3599.0,13.0165, +2016-08-13 21:41:09,3599.0,13.0165, +2016-08-13 21:45:00,,,16.6028 +2016-08-13 21:51:12,3599.0,13.0165, +2016-08-13 22:00:00,,,16.6347 +2016-08-13 22:01:14,3598.0,13.047, +2016-08-13 22:11:17,3598.0,13.0165, +2016-08-13 22:15:00,,,16.6347 +2016-08-13 22:21:20,3598.0,13.0165, +2016-08-13 22:30:00,,,16.6362 +2016-08-13 22:31:22,3598.0,13.047, +2016-08-13 22:41:25,3598.0,13.047, +2016-08-13 22:45:00,,,16.6362 +2016-08-13 22:51:28,3598.0,13.0165, +2016-08-13 23:00:00,,,16.6362 +2016-08-13 23:01:31,3598.0,13.047, +2016-08-13 23:11:33,3598.0,13.0165, +2016-08-13 23:15:00,,,16.6347 +2016-08-13 23:21:36,3597.0,13.047, +2016-08-13 23:30:00,,,16.6347 +2016-08-13 23:31:38,3597.0,13.047, +2016-08-13 23:41:41,3597.0,13.0165, +2016-08-13 23:45:00,,,16.6362 +2016-08-13 23:51:44,3596.0,13.047, +2016-08-14 00:00:00,,,16.6362 +2016-08-14 00:01:47,3596.0,13.0458, +2016-08-14 00:11:49,3595.0,13.0165, +2016-08-14 00:15:00,,,16.6362 +2016-08-14 00:21:52,3595.0,13.0165, +2016-08-14 00:30:00,,,16.6377 +2016-08-14 00:31:55,3595.0,13.0165, +2016-08-14 00:41:57,3595.0,13.0177, +2016-08-14 00:45:00,,,16.6013 +2016-08-14 00:52:00,3594.0,13.0165, +2016-08-14 01:00:00,,,16.6362 +2016-08-14 01:02:03,3593.0,13.047, +2016-08-14 01:12:05,3593.0,13.047, +2016-08-14 01:15:00,,,16.6013 +2016-08-14 01:22:08,3593.0,13.047, +2016-08-14 01:30:00,,,16.6347 +2016-08-14 01:32:11,3593.0,13.0458, +2016-08-14 01:42:13,3592.0,13.0165, +2016-08-14 01:45:00,,,16.6028 +2016-08-14 01:52:16,3592.0,13.0165, +2016-08-14 02:00:00,,,16.6347 +2016-08-14 02:02:19,3592.0,13.047, +2016-08-14 02:12:21,3591.0,12.9861, +2016-08-14 02:15:00,,,16.6013 +2016-08-14 02:22:24,3592.0,13.0165, +2016-08-14 02:30:00,,,16.6013 +2016-08-14 02:32:26,3591.0,12.9861, +2016-08-14 02:42:36,3591.0,13.047, +2016-08-14 02:45:00,,,16.6028 +2016-08-14 02:52:39,3591.0,13.047, +2016-08-14 03:00:00,,,16.6347 +2016-08-14 03:02:42,3590.0,13.0165, +2016-08-14 03:12:44,3590.0,13.0165, +2016-08-14 03:15:00,,,16.6362 +2016-08-14 03:22:47,3590.0,12.9861, +2016-08-14 03:30:00,,,16.6013 +2016-08-14 03:32:49,3589.0,13.0165, +2016-08-14 03:42:52,3589.0,13.0165, +2016-08-14 03:45:00,,,16.6057 +2016-08-14 03:52:54,3589.0,13.0458, +2016-08-14 04:00:00,,,16.6072 +2016-08-14 04:02:57,3588.0,13.0165, +2016-08-14 04:13:00,3588.0,13.047, +2016-08-14 04:15:00,,,16.6057 +2016-08-14 04:23:02,3588.0,13.0119, +2016-08-14 04:30:00,,,16.6406 +2016-08-14 04:33:04,3588.0,13.0482, +2016-08-14 04:43:07,3588.0,13.047, +2016-08-14 04:45:00,,,16.6392 +2016-08-14 04:53:09,3587.0,13.0131, +2016-08-14 05:00:00,,,16.5724 +2016-08-14 05:03:12,3587.0,13.0435, +2016-08-14 05:13:14,3587.0,13.0131, +2016-08-14 05:15:00,,,16.6406 +2016-08-14 05:23:17,3587.0,13.0131, +2016-08-14 05:30:00,,,16.6406 +2016-08-14 05:33:19,3586.0,13.0435, +2016-08-14 05:43:22,3586.0,13.0435, +2016-08-14 05:45:00,,,16.6072 +2016-08-14 05:53:25,3586.0,13.0131, +2016-08-14 06:00:00,,,16.6392 +2016-08-14 06:03:27,3586.0,13.0131, +2016-08-14 06:13:30,3586.0,13.0131, +2016-08-14 06:15:00,,,16.6406 +2016-08-14 06:23:32,3586.0,13.0435, +2016-08-14 06:30:00,,,16.6057 +2016-08-14 06:33:35,3586.0,13.0108, +2016-08-14 06:43:37,3586.0,13.0096, +2016-08-14 06:45:00,,,16.6392 +2016-08-14 06:53:40,3586.0,13.0412, +2016-08-14 07:00:00,,,16.6057 +2016-08-14 07:03:42,3586.0,13.0412, +2016-08-14 07:13:45,3586.0,13.04, +2016-08-14 07:15:00,,,16.6072 +2016-08-14 07:23:47,3587.0,13.0108, +2016-08-14 07:30:00,,,16.6436 +2016-08-14 07:33:50,3587.0,12.9803, +2016-08-14 07:43:53,3587.0,13.0412, +2016-08-14 07:45:00,,,16.6117 +2016-08-14 07:53:55,3587.0,13.0108, +2016-08-14 08:00:00,,,16.6406 +2016-08-14 08:03:58,3588.0,13.0096, +2016-08-14 08:14:00,3588.0,13.04, +2016-08-14 08:15:00,,,16.6406 +2016-08-14 08:24:03,3588.0,13.0096, +2016-08-14 08:30:00,,,16.6072 +2016-08-14 08:34:06,3588.0,13.0108, +2016-08-14 08:44:08,3588.0,13.0366, +2016-08-14 08:45:00,,,16.6392 +2016-08-14 08:54:11,3588.0,13.0096, +2016-08-14 09:00:00,,,16.6057 +2016-08-14 09:04:13,3589.0,13.0412, +2016-08-14 09:14:16,3590.0,13.0108, +2016-08-14 09:15:00,,,16.6072 +2016-08-14 09:24:19,3590.0,12.9792, +2016-08-14 09:30:00,,,16.6117 +2016-08-14 09:34:21,3591.0,13.0377, +2016-08-14 09:44:24,3592.0,13.0108, +2016-08-14 09:45:00,,,16.6057 +2016-08-14 09:54:26,3592.0,13.0377, +2016-08-14 10:00:00,,,16.6436 +2016-08-14 10:04:29,3592.0,13.0096, +2016-08-14 10:14:31,3593.0,13.0061, +2016-08-14 10:15:00,,,16.6057 +2016-08-14 10:24:34,3594.0,13.0084, +2016-08-14 10:30:00,,,16.6102 +2016-08-14 10:34:37,3594.0,13.0412, +2016-08-14 10:44:39,3595.0,13.0108, +2016-08-14 10:45:00,,,16.6451 +2016-08-14 10:54:42,3595.0,13.0412, +2016-08-14 11:00:00,,,16.6057 +2016-08-14 11:04:44,3595.0,13.0377, +2016-08-14 11:14:47,3595.0,13.0073, +2016-08-14 11:15:00,,,16.6392 +2016-08-14 11:24:49,3596.0,13.005, +2016-08-14 11:30:00,,,16.6392 +2016-08-14 11:34:52,3597.0,13.0061, +2016-08-14 11:44:54,3597.0,12.9792, +2016-08-14 11:45:00,,,16.6117 +2016-08-14 11:54:57,3598.0,13.0377, +2016-08-14 12:00:00,,,16.6102 +2016-08-14 12:05:00,3598.0,13.0354, +2016-08-14 12:15:00,,,16.6102 +2016-08-14 12:15:02,3598.0,13.0412, +2016-08-14 12:25:05,3598.0,13.0061, +2016-08-14 12:30:00,,,16.6436 +2016-08-14 12:35:07,3598.0,13.0108, +2016-08-14 12:45:00,,,16.6406 +2016-08-14 12:45:10,3598.0,12.9196, +2016-08-14 12:55:13,3598.0,12.9488, +2016-08-14 13:00:00,,,16.6117 +2016-08-14 13:05:15,3598.0,12.9196, +2016-08-14 13:15:00,,,16.5116 +2016-08-14 13:15:18,3598.0,12.9173, +2016-08-14 13:25:21,3598.0,12.9161, +2016-08-14 13:30:00,,,16.5449 +2016-08-14 13:35:23,3598.0,12.9184, +2016-08-14 13:45:00,,,16.5057 +2016-08-14 13:45:25,3599.0,12.9184, +2016-08-14 13:55:28,3599.0,12.9184, +2016-08-14 14:00:00,,,16.5434 +2016-08-14 14:05:30,3599.0,12.9184, +2016-08-14 14:15:00,,,16.5101 +2016-08-14 14:15:33,3599.0,12.9173, +2016-08-14 14:25:36,3599.0,12.9184, +2016-08-14 14:30:00,,,16.5057 +2016-08-14 14:35:38,3599.0,12.9488, +2016-08-14 14:45:00,,,16.5101 +2016-08-14 14:45:41,3599.0,12.9184, +2016-08-14 14:55:44,3599.0,12.9196, +2016-08-14 15:00:00,,,16.5434 +2016-08-14 15:05:46,3599.0,12.8275, +2016-08-14 15:15:00,,,16.5116 +2016-08-14 15:15:49,3599.0,12.8578, +2016-08-14 15:25:51,3599.0,12.8286, +2016-08-14 15:30:00,,,16.5101 +2016-08-14 15:35:54,3599.0,12.8275, +2016-08-14 15:45:00,,,16.4768 +2016-08-14 15:45:57,3599.0,12.8309, +2016-08-14 15:55:59,3599.0,12.8286, +2016-08-14 16:00:00,,,16.5101 +2016-08-14 16:06:02,3599.0,12.8309, +2016-08-14 16:15:00,,,16.5116 +2016-08-14 16:16:05,3599.0,12.8309, +2016-08-14 16:26:07,3599.0,12.8612, +2016-08-14 16:30:00,,,16.5116 +2016-08-14 16:36:10,3599.0,12.8309, +2016-08-14 16:45:00,,,16.5101 +2016-08-14 16:46:12,3599.0,12.8309, +2016-08-14 16:56:15,3599.0,12.8612, +2016-08-14 17:00:00,,,16.5101 +2016-08-14 17:06:18,3599.0,12.8309, +2016-08-14 17:15:00,,,16.5101 +2016-08-14 17:16:20,3599.0,12.8309, +2016-08-14 17:26:23,3599.0,12.8612, +2016-08-14 17:30:00,,,16.5116 +2016-08-14 17:36:26,3599.0,12.8635, +2016-08-14 17:45:00,,,16.5101 +2016-08-14 17:46:28,3599.0,12.8309, +2016-08-14 17:56:31,3599.0,12.8612, +2016-08-14 18:00:00,,,16.5101 +2016-08-14 18:06:33,3599.0,12.8343, +2016-08-14 18:15:00,,,16.5101 +2016-08-14 18:16:36,3599.0,12.8343, +2016-08-14 18:26:39,3599.0,12.8343, +2016-08-14 18:30:00,,,16.5116 +2016-08-14 18:36:41,3599.0,12.8647, +2016-08-14 18:45:00,,,16.539 +2016-08-14 18:46:44,3599.0,12.8647, +2016-08-14 18:56:46,3599.0,12.8343, +2016-08-14 19:00:00,,,16.5101 +2016-08-14 19:06:49,3599.0,12.8332, +2016-08-14 19:15:00,,,16.5116 +2016-08-14 19:16:52,3599.0,12.8343, +2016-08-14 19:26:54,3599.0,12.8647, +2016-08-14 19:30:00,,,16.5101 +2016-08-14 19:36:57,3599.0,12.8343, +2016-08-14 19:45:00,,,16.5101 +2016-08-14 19:46:59,3599.0,12.8635, +2016-08-14 19:57:02,3598.0,12.8647, +2016-08-14 20:00:00,,,16.5449 +2016-08-14 20:07:05,3598.0,12.8343, +2016-08-14 20:15:00,,,16.5434 +2016-08-14 20:17:07,3599.0,12.8647, +2016-08-14 20:27:10,3598.0,12.8355, +2016-08-14 20:30:00,,,16.5101 +2016-08-14 20:37:12,3598.0,12.8647, +2016-08-14 20:45:00,,,16.5101 +2016-08-14 20:47:15,3598.0,12.8647, +2016-08-14 20:57:17,3598.0,12.8647, +2016-08-14 21:00:00,,,16.5116 +2016-08-14 21:07:20,3598.0,12.8343, +2016-08-14 21:15:00,,,16.5116 +2016-08-14 21:17:22,3598.0,12.8647, +2016-08-14 21:27:25,3597.0,12.8332, +2016-08-14 21:30:00,,,16.5101 +2016-08-14 21:37:27,3596.0,12.8343, +2016-08-14 21:45:00,,,16.5101 +2016-08-14 21:47:30,3595.0,12.8343, +2016-08-14 21:57:32,3595.0,12.8343, +2016-08-14 22:00:00,,,16.5116 +2016-08-14 22:07:34,3595.0,12.8343, +2016-08-14 22:15:00,,,16.5116 +2016-08-14 22:17:37,3594.0,12.8343, +2016-08-14 22:27:39,3593.0,12.8635, +2016-08-14 22:30:00,,,16.5116 +2016-08-14 22:37:42,3593.0,12.8647, +2016-08-14 22:45:00,,,16.5116 +2016-08-14 22:47:46,3593.0,12.8647, +2016-08-14 22:57:49,3593.0,12.8343, +2016-08-14 23:00:00,,,16.5116 +2016-08-14 23:07:52,3592.0,12.8343, +2016-08-14 23:15:00,,,16.5101 +2016-08-14 23:17:55,3592.0,12.8343, +2016-08-14 23:27:57,3592.0,12.8343, +2016-08-14 23:30:00,,,16.5101 +2016-08-14 23:38:00,3592.0,12.8343, +2016-08-14 23:45:00,,,16.5101 +2016-08-14 23:48:02,3591.0,12.8647, +2016-08-14 23:58:05,3590.0,12.8343, +2016-08-15 00:00:00,,,16.5116 +2016-08-15 00:08:08,3590.0,12.8343, +2016-08-15 00:15:00,,,16.5101 +2016-08-15 00:18:10,3590.0,12.8647, +2016-08-15 00:28:13,3590.0,12.8647, +2016-08-15 00:30:00,,,16.5116 +2016-08-15 00:38:15,3589.0,12.8343, +2016-08-15 00:45:00,,,16.5101 +2016-08-15 00:48:18,3589.0,12.8647, +2016-08-15 00:58:20,3588.0,12.8309, +2016-08-15 01:00:00,,,16.5101 +2016-08-15 01:08:23,3588.0,12.8647, +2016-08-15 01:15:00,,,16.5116 +2016-08-15 01:18:25,3588.0,12.8612, +2016-08-15 01:28:28,3588.0,12.8309, +2016-08-15 01:30:00,,,16.5101 +2016-08-15 01:38:30,3588.0,12.8309, +2016-08-15 01:45:00,,,16.5101 +2016-08-15 01:48:33,3588.0,12.8612, +2016-08-15 01:58:36,3588.0,12.8309, +2016-08-15 02:00:00,,,16.5116 +2016-08-15 02:08:38,3588.0,12.8298, +2016-08-15 02:15:00,,,16.516 +2016-08-15 02:18:41,3587.0,12.8612, +2016-08-15 02:28:44,3587.0,12.8309, +2016-08-15 02:30:00,,,16.5116 +2016-08-15 02:38:46,3587.0,12.8309, +2016-08-15 02:45:00,,,16.5434 +2016-08-15 02:48:49,3587.0,12.8309, +2016-08-15 02:58:51,3586.0,12.9522, +2016-08-15 03:00:00,,,16.5116 +2016-08-15 03:08:54,3586.0,12.9196, +2016-08-15 03:15:00,,,16.5116 +2016-08-15 03:18:56,3585.0,12.9196, +2016-08-15 03:28:59,3585.0,12.9219, +2016-08-15 03:30:00,,,16.5145 +2016-08-15 03:39:01,3585.0,12.8275, +2016-08-15 03:45:00,,,16.516 +2016-08-15 03:49:04,3585.0,12.8275, +2016-08-15 03:59:06,3585.0,12.8589, +2016-08-15 04:00:00,,,16.5101 +2016-08-15 04:09:09,3584.0,12.8578, +2016-08-15 04:15:00,,,16.5145 +2016-08-15 04:19:11,3584.0,12.8286, +2016-08-15 04:29:14,3583.0,12.8589, +2016-08-15 04:30:00,,,16.516 +2016-08-15 04:39:16,3583.0,12.8275, +2016-08-15 04:45:00,,,16.5145 +2016-08-15 04:49:19,3583.0,12.8275, +2016-08-15 04:59:21,3582.0,12.8589, +2016-08-15 05:00:00,,,16.516 +2016-08-15 05:09:24,3582.0,12.9488, +2016-08-15 05:15:00,,,16.5145 +2016-08-15 05:19:26,3582.0,12.8544, +2016-08-15 05:29:29,3581.0,12.8241, +2016-08-15 05:30:00,,,16.5145 +2016-08-15 05:39:31,3581.0,12.8555, +2016-08-15 05:45:00,,,16.516 +2016-08-15 05:49:34,3581.0,12.8544, +2016-08-15 05:59:36,3581.0,12.8544, +2016-08-15 06:00:00,,,16.5493 +2016-08-15 06:09:39,3581.0,12.8544, +2016-08-15 06:15:00,,,16.5116 +2016-08-15 06:19:41,3581.0,12.8555, +2016-08-15 06:29:44,3580.0,12.8555, +2016-08-15 06:30:00,,,16.5434 +2016-08-15 06:39:46,3580.0,12.8555, +2016-08-15 06:45:00,,,16.5493 +2016-08-15 06:49:49,3580.0,12.9465, +2016-08-15 06:59:51,3579.0,12.9161, +2016-08-15 07:00:00,,,16.516 +2016-08-15 07:09:54,3580.0,12.915, +2016-08-15 07:15:00,,,16.5145 +2016-08-15 07:19:56,3580.0,12.9138, +2016-08-15 07:29:58,3580.0,12.915, +2016-08-15 07:30:00,,,16.5479 +2016-08-15 07:40:01,3580.0,12.9161, +2016-08-15 07:45:00,,,16.5479 +2016-08-15 07:50:03,3580.0,12.9453, +2016-08-15 08:00:00,,,16.516 +2016-08-15 08:00:05,3581.0,12.9465, +2016-08-15 08:10:07,3580.0,12.9453, +2016-08-15 08:15:00,,,16.5145 +2016-08-15 08:20:09,3581.0,12.8544, +2016-08-15 08:30:00,,,16.516 +2016-08-15 08:30:12,3581.0,12.8252, +2016-08-15 08:40:14,3581.0,12.8252, +2016-08-15 08:45:00,,,16.516 +2016-08-15 08:50:17,3582.0,12.8252, +2016-08-15 09:00:00,,,16.5145 +2016-08-15 09:00:19,3583.0,12.8241, +2016-08-15 09:10:22,3584.0,12.915, +2016-08-15 09:15:00,,,16.5116 +2016-08-15 09:20:24,3584.0,12.8544, +2016-08-15 09:30:00,,,16.5116 +2016-08-15 09:30:27,3584.0,12.8241, +2016-08-15 09:40:29,3585.0,12.8241, +2016-08-15 09:45:00,,,16.5145 +2016-08-15 09:50:32,3586.0,12.8241, +2016-08-15 10:00:00,,,16.5493 +2016-08-15 10:00:34,3587.0,12.8544, +2016-08-15 10:10:37,3588.0,12.8555, +2016-08-15 10:15:00,,,16.516 +2016-08-15 10:20:39,3588.0,12.8252, +2016-08-15 10:30:00,,,16.5145 +2016-08-15 10:30:42,3589.0,12.8555, +2016-08-15 10:40:45,3591.0,12.8241, +2016-08-15 10:45:00,,,16.5116 +2016-08-15 10:50:47,3593.0,12.8544, +2016-08-15 11:00:00,,,16.5479 +2016-08-15 11:00:50,3593.0,12.8532, +2016-08-15 11:10:52,3593.0,12.8544, +2016-08-15 11:15:00,,,16.516 +2016-08-15 11:20:55,3594.0,12.8252, +2016-08-15 11:30:00,,,16.5434 +2016-08-15 11:30:57,3595.0,12.8241, +2016-08-15 11:41:00,3595.0,12.8544, +2016-08-15 11:45:00,,,16.5116 +2016-08-15 11:51:03,3595.0,12.8241, +2016-08-15 12:00:00,,,16.5116 +2016-08-15 12:01:05,3596.0,12.8241, +2016-08-15 12:11:08,3596.0,12.8241, +2016-08-15 12:15:00,,,16.4783 +2016-08-15 12:21:10,3597.0,12.7345, +2016-08-15 12:30:00,,,16.5145 +2016-08-15 12:31:13,3597.0,12.7345, +2016-08-15 12:41:16,3598.0,12.7636, +2016-08-15 12:45:00,,,16.5116 +2016-08-15 12:51:18,3598.0,12.7636, +2016-08-15 13:00:00,,,16.5101 +2016-08-15 13:01:21,3598.0,12.7323, +2016-08-15 13:11:23,3598.0,12.7334, +2016-08-15 13:15:00,,,16.5116 +2016-08-15 13:21:26,3598.0,12.7345, +2016-08-15 13:30:00,,,16.4436 +2016-08-15 13:31:28,3598.0,12.7345, +2016-08-15 13:41:31,3598.0,12.7345, +2016-08-15 13:45:00,,,16.4162 +2016-08-15 13:51:33,3598.0,12.7938, +2016-08-15 14:00:00,,,16.4104 +2016-08-15 14:01:36,3598.0,12.7334, +2016-08-15 14:11:39,3598.0,12.7345, +2016-08-15 14:15:00,,,16.4104 +2016-08-15 14:21:41,3598.0,12.7345, +2016-08-15 14:30:00,,,16.4104 +2016-08-15 14:31:44,3598.0,12.7334, +2016-08-15 14:41:46,3599.0,12.7636, +2016-08-15 14:45:00,,,16.4104 +2016-08-15 14:51:49,3598.0,12.7334, +2016-08-15 15:00:00,,,16.4119 +2016-08-15 15:01:52,3598.0,12.7334, +2016-08-15 15:11:54,3598.0,12.7334, +2016-08-15 15:15:00,,,16.4436 +2016-08-15 15:21:57,3599.0,12.7334, +2016-08-15 15:30:00,,,16.4148 +2016-08-15 15:32:00,3599.0,12.7334, +2016-08-15 15:42:02,3599.0,12.7334, +2016-08-15 15:45:00,,,16.4451 +2016-08-15 15:52:05,3599.0,12.7625, +2016-08-15 16:00:00,,,16.4119 +2016-08-15 16:02:08,3598.0,12.7323, +2016-08-15 16:12:10,3599.0,12.7334, +2016-08-15 16:15:00,,,16.4104 +2016-08-15 16:22:13,3599.0,12.7636, +2016-08-15 16:30:00,,,16.4104 +2016-08-15 16:32:16,3599.0,12.7636, +2016-08-15 16:42:18,3599.0,12.7636, +2016-08-15 16:45:00,,,16.4104 +2016-08-15 16:52:21,3599.0,12.7334, +2016-08-15 17:00:00,,,16.4119 +2016-08-15 17:02:23,3599.0,12.7345, +2016-08-15 17:12:25,3599.0,12.7334, +2016-08-15 17:15:00,,,16.4119 +2016-08-15 17:22:28,3599.0,12.7345, +2016-08-15 17:30:00,,,16.4119 +2016-08-15 17:32:31,3599.0,12.7334, +2016-08-15 17:42:33,3599.0,12.7647, +2016-08-15 17:45:00,,,16.4451 +2016-08-15 17:52:36,3599.0,12.7334, +2016-08-15 18:00:00,,,16.4104 +2016-08-15 18:02:38,3598.0,12.7323, +2016-08-15 18:12:41,3598.0,12.7334, +2016-08-15 18:15:00,,,16.4119 +2016-08-15 18:22:43,3598.0,12.7938, +2016-08-15 18:30:00,,,16.4451 +2016-08-15 18:32:46,3598.0,12.7636, +2016-08-15 18:42:49,3598.0,12.7938, +2016-08-15 18:45:00,,,16.4436 +2016-08-15 18:52:51,3598.0,12.7636, +2016-08-15 19:00:00,,,16.4104 +2016-08-15 19:02:54,3598.0,12.7334, +2016-08-15 19:12:56,3598.0,12.7334, +2016-08-15 19:15:00,,,16.4119 +2016-08-15 19:22:59,3598.0,12.7334, +2016-08-15 19:30:00,,,16.4104 +2016-08-15 19:33:01,3598.0,12.7334, +2016-08-15 19:43:04,3598.0,12.7334, +2016-08-15 19:45:00,,,16.4104 +2016-08-15 19:53:07,3597.0,12.7334, +2016-08-15 20:00:00,,,16.4119 +2016-08-15 20:03:09,3596.0,12.7323, +2016-08-15 20:13:12,3596.0,12.7345, +2016-08-15 20:15:00,,,16.4119 +2016-08-15 20:23:14,3595.0,12.7636, +2016-08-15 20:30:00,,,16.4119 +2016-08-15 20:33:17,3595.0,12.7334, +2016-08-15 20:43:19,3594.0,12.7636, +2016-08-15 20:45:00,,,16.4104 +2016-08-15 20:53:22,3593.0,12.7636, +2016-08-15 21:00:00,,,16.4104 +2016-08-15 21:03:24,3593.0,12.7334, +2016-08-15 21:13:27,3592.0,12.7636, +2016-08-15 21:15:00,,,16.4451 +2016-08-15 21:23:29,3591.0,12.7345, +2016-08-15 21:30:00,,,16.4451 +2016-08-15 21:33:32,3590.0,12.7334, +2016-08-15 21:43:34,3589.0,12.7636, +2016-08-15 21:45:00,,,16.4436 +2016-08-15 21:53:37,3588.0,12.7345, +2016-08-15 22:00:00,,,16.4119 +2016-08-15 22:03:39,3588.0,12.7636, +2016-08-15 22:13:42,3587.0,12.7334, +2016-08-15 22:15:00,,,16.4104 +2016-08-15 22:23:44,3586.0,12.7647, +2016-08-15 22:30:00,,,16.4104 +2016-08-15 22:33:46,3586.0,12.7625, +2016-08-15 22:43:49,3586.0,12.7636, +2016-08-15 22:45:00,,,16.4119 +2016-08-15 22:53:51,3585.0,12.7647, +2016-08-15 23:00:00,,,16.4119 +2016-08-15 23:03:54,3585.0,12.7636, +2016-08-15 23:13:56,3584.0,12.7647, +2016-08-15 23:15:00,,,16.4119 +2016-08-15 23:23:59,3583.0,12.7323, +2016-08-15 23:30:00,,,16.4119 +2016-08-15 23:34:01,3583.0,12.7636, +2016-08-15 23:44:04,3582.0,12.7636, +2016-08-15 23:45:00,,,16.4119 +2016-08-15 23:54:06,3581.0,12.7334, +2016-08-16 00:00:00,,,16.4104 +2016-08-16 00:04:09,3581.0,12.7636, +2016-08-16 00:14:11,3581.0,12.7636, +2016-08-16 00:15:00,,,16.4119 +2016-08-16 00:24:13,3580.0,12.7636, +2016-08-16 00:30:00,,,16.4119 +2016-08-16 00:34:16,3580.0,12.7647, +2016-08-16 00:44:18,3579.0,12.7334, +2016-08-16 00:45:00,,,16.4436 +2016-08-16 00:54:21,3579.0,12.7345, +2016-08-16 01:00:00,,,16.4104 +2016-08-16 01:04:23,3578.0,12.7636, +2016-08-16 01:14:25,3577.0,12.7345, +2016-08-16 01:15:00,,,16.4451 +2016-08-16 01:24:28,3577.0,12.7334, +2016-08-16 01:30:00,,,16.4119 +2016-08-16 01:34:30,3577.0,12.7636, +2016-08-16 01:44:32,3577.0,12.7625, +2016-08-16 01:45:00,,,16.4451 +2016-08-16 01:54:35,3576.0,12.7334, +2016-08-16 02:00:00,,,16.4451 +2016-08-16 02:04:38,3576.0,12.7334, +2016-08-16 02:14:41,3576.0,12.7602, +2016-08-16 02:15:00,,,16.4451 +2016-08-16 02:24:44,3576.0,12.7311, +2016-08-16 02:30:00,,,16.4119 +2016-08-16 02:34:46,3575.0,12.7938, +2016-08-16 02:44:48,3574.0,12.7613, +2016-08-16 02:45:00,,,16.4119 +2016-08-16 02:54:51,3574.0,12.7311, +2016-08-16 03:00:00,,,16.4436 +2016-08-16 03:04:53,3574.0,12.7602, +2016-08-16 03:14:55,3574.0,12.73, +2016-08-16 03:15:00,,,16.4451 +2016-08-16 03:24:58,3574.0,12.7602, +2016-08-16 03:30:00,,,16.4119 +2016-08-16 03:35:00,3574.0,12.73, +2016-08-16 03:45:00,,,16.4436 +2016-08-16 03:45:02,3574.0,12.7602, +2016-08-16 03:55:05,3573.0,12.7579, +2016-08-16 04:00:00,,,16.4104 +2016-08-16 04:05:07,3572.0,12.7266, +2016-08-16 04:15:00,,,16.4104 +2016-08-16 04:15:09,3572.0,12.7311, +2016-08-16 04:25:12,3572.0,12.7266, +2016-08-16 04:30:00,,,16.4436 +2016-08-16 04:35:14,3572.0,12.7277, +2016-08-16 04:45:00,,,16.4119 +2016-08-16 04:45:17,3571.0,12.7568, +2016-08-16 04:55:19,3571.0,12.787, +2016-08-16 05:00:00,,,16.4451 +2016-08-16 05:05:21,3570.0,12.7277, +2016-08-16 05:15:00,,,16.4104 +2016-08-16 05:15:24,3570.0,12.7545, +2016-08-16 05:25:26,3570.0,12.7579, +2016-08-16 05:30:00,,,16.4451 +2016-08-16 05:35:28,3569.0,12.7545, +2016-08-16 05:45:00,,,16.4436 +2016-08-16 05:45:30,3569.0,12.7545, +2016-08-16 05:55:33,3568.0,12.7534, +2016-08-16 06:00:00,,,16.4104 +2016-08-16 06:05:35,3567.0,12.7534, +2016-08-16 06:15:00,,,16.4119 +2016-08-16 06:15:37,3567.0,12.7545, +2016-08-16 06:25:40,3567.0,12.7545, +2016-08-16 06:30:00,,,16.4104 +2016-08-16 06:35:42,3567.0,12.7243, +2016-08-16 06:45:00,,,16.3125 +2016-08-16 06:45:44,3566.0,12.7545, +2016-08-16 06:55:47,3567.0,12.7847, +2016-08-16 07:00:00,,,16.4104 +2016-08-16 07:05:49,3566.0,12.7243, +2016-08-16 07:15:00,,,16.3441 +2016-08-16 07:15:51,3566.0,12.7232, +2016-08-16 07:25:54,3566.0,12.7243, +2016-08-16 07:30:00,,,16.3125 +2016-08-16 07:35:56,3567.0,12.7545, +2016-08-16 07:45:00,,,16.3456 +2016-08-16 07:45:58,3567.0,12.7545, +2016-08-16 07:56:01,3568.0,12.7545, +2016-08-16 08:00:00,,,16.3125 +2016-08-16 08:06:03,3569.0,12.7545, +2016-08-16 08:15:00,,,16.3125 +2016-08-16 08:16:05,3569.0,12.7232, +2016-08-16 08:26:07,3570.0,12.7232, +2016-08-16 08:30:00,,,16.3456 +2016-08-16 08:36:10,3571.0,12.7545, +2016-08-16 08:45:00,,,16.3441 +2016-08-16 08:46:12,3572.0,12.7847, +2016-08-16 08:56:14,3573.0,12.7545, +2016-08-16 09:00:00,,,16.3441 +2016-08-16 09:06:17,3574.0,12.720999999999998, +2016-08-16 09:15:00,,,16.3456 +2016-08-16 09:16:19,3575.0,12.7802, +2016-08-16 09:26:22,3577.0,12.7198, +2016-08-16 09:30:00,,,16.3125 +2016-08-16 09:36:24,3577.0,12.7198, +2016-08-16 09:45:00,,,16.3397 +2016-08-16 09:46:27,3579.0,12.7198, +2016-08-16 09:56:29,3581.0,12.7511, +2016-08-16 10:00:00,,,16.3412 +2016-08-16 10:06:32,3582.0,12.7511, +2016-08-16 10:15:00,,,16.3067 +2016-08-16 10:16:35,3585.0,12.75, +2016-08-16 10:26:37,3586.0,12.7813, +2016-08-16 10:30:00,,,16.3067 +2016-08-16 10:36:40,3587.0,12.7198, +2016-08-16 10:45:00,,,16.3067 +2016-08-16 10:46:42,3588.0,12.7523, +2016-08-16 10:56:45,3589.0,12.7813, +2016-08-16 11:00:00,,,16.3067 +2016-08-16 11:06:47,3591.0,12.720999999999998, +2016-08-16 11:15:00,,,16.3397 +2016-08-16 11:16:49,3592.0,12.7198, +2016-08-16 11:26:52,3593.0,12.720999999999998, +2016-08-16 11:30:00,,,16.3067 +2016-08-16 11:36:54,3593.0,12.75, +2016-08-16 11:45:00,,,16.3397 +2016-08-16 11:46:56,3595.0,12.720999999999998, +2016-08-16 11:57:07,3595.0,12.720999999999998, +2016-08-16 12:00:00,,,16.3397 +2016-08-16 12:07:10,3595.0,12.6629, +2016-08-16 12:15:00,,,16.3067 +2016-08-16 12:17:12,3596.0,12.6328, +2016-08-16 12:27:15,3597.0,12.6328, +2016-08-16 12:30:00,,,16.3067 +2016-08-16 12:37:18,3597.0,12.6328, +2016-08-16 12:45:00,,,16.3067 +2016-08-16 12:47:20,3598.0,12.6641, +2016-08-16 12:57:23,3598.0,12.634, +2016-08-16 13:00:00,,,16.3081 +2016-08-16 13:07:26,3598.0,12.634, +2016-08-16 13:15:00,,,16.242 +2016-08-16 13:17:29,3598.0,12.6629, +2016-08-16 13:27:31,3598.0,12.6629, +2016-08-16 13:30:00,,,16.2406 +2016-08-16 13:37:34,3599.0,12.6641, +2016-08-16 13:45:00,,,16.2091 +2016-08-16 13:47:37,3599.0,12.634, +2016-08-16 13:57:39,3599.0,12.634, +2016-08-16 14:00:00,,,16.2406 +2016-08-16 14:07:42,3599.0,12.6629, +2016-08-16 14:15:00,,,16.242 +2016-08-16 14:17:45,3599.0,12.5727, +2016-08-16 14:27:47,3599.0,12.6028, +2016-08-16 14:30:00,,,16.242 +2016-08-16 14:37:50,3599.0,12.5727, +2016-08-16 14:45:00,,,16.242 +2016-08-16 14:47:53,3599.0,12.5738, +2016-08-16 14:57:55,3599.0,12.5727, +2016-08-16 15:00:00,,,16.2406 +2016-08-16 15:07:58,3599.0,12.5438, +2016-08-16 15:15:00,,,16.2076 +2016-08-16 15:18:01,3599.0,12.5727, +2016-08-16 15:28:03,3599.0,12.5738, +2016-08-16 15:30:00,,,16.2076 +2016-08-16 15:38:06,3599.0,12.5727, +2016-08-16 15:45:00,,,16.2033 +2016-08-16 15:48:09,3599.0,12.5738, +2016-08-16 15:58:11,3599.0,12.5738, +2016-08-16 16:00:00,,,16.242 +2016-08-16 16:08:14,3599.0,12.5727, +2016-08-16 16:15:00,,,16.2406 +2016-08-16 16:18:17,3599.0,12.5727, +2016-08-16 16:28:20,3599.0,12.5761, +2016-08-16 16:30:00,,,16.2091 +2016-08-16 16:38:23,3599.0,12.5772, +2016-08-16 16:45:00,,,16.2091 +2016-08-16 16:48:25,3599.0,12.5761, +2016-08-16 16:58:28,3599.0,12.5761, +2016-08-16 17:00:00,,,16.2377 +2016-08-16 17:08:31,3599.0,12.5761, +2016-08-16 17:15:00,,,16.2033 +2016-08-16 17:18:34,3599.0,12.5761, +2016-08-16 17:28:37,3599.0,12.5761, +2016-08-16 17:30:00,,,16.1704 +2016-08-16 17:38:39,3599.0,12.5772, +2016-08-16 17:45:00,,,16.2091 +2016-08-16 17:48:42,3599.0,12.5794, +2016-08-16 17:58:45,3599.0,12.5794, +2016-08-16 18:00:00,,,16.2076 +2016-08-16 18:08:48,3599.0,12.5794, +2016-08-16 18:15:00,,,16.2377 +2016-08-16 18:18:50,3599.0,12.5494, +2016-08-16 18:28:53,3599.0,12.5805, +2016-08-16 18:30:00,,,16.2377 +2016-08-16 18:38:56,3599.0,12.5794, +2016-08-16 18:45:00,,,16.2047 +2016-08-16 18:48:58,3599.0,12.5794, +2016-08-16 18:59:01,3599.0,12.5794, +2016-08-16 19:00:00,,,16.2062 +2016-08-16 19:09:04,3599.0,12.5494, +2016-08-16 19:15:00,,,16.2033 +2016-08-16 19:19:07,3599.0,12.5794, +2016-08-16 19:29:09,3599.0,12.6129, +2016-08-16 19:30:00,,,16.2033 +2016-08-16 19:39:12,3599.0,12.5794, +2016-08-16 19:45:00,,,16.2047 +2016-08-16 19:49:15,3599.0,12.5828, +2016-08-16 19:59:18,3599.0,12.5828, +2016-08-16 20:00:00,,,16.2363 +2016-08-16 20:09:20,3598.0,12.5828, +2016-08-16 20:15:00,,,16.2033 +2016-08-16 20:19:22,3598.0,12.5839, +2016-08-16 20:29:25,3598.0,12.5828, +2016-08-16 20:30:00,,,16.2363 +2016-08-16 20:39:28,3598.0,12.5828, +2016-08-16 20:45:00,,,16.2363 +2016-08-16 20:49:30,3598.0,12.5828, +2016-08-16 20:59:33,3598.0,12.5839, +2016-08-16 21:00:00,,,16.2377 +2016-08-16 21:09:36,3596.0,12.5828, +2016-08-16 21:15:00,,,16.2363 +2016-08-16 21:19:39,3595.0,12.6129, +2016-08-16 21:29:41,3595.0,12.5839, +2016-08-16 21:30:00,,,16.2047 +2016-08-16 21:39:44,3594.0,12.614, +2016-08-16 21:45:00,,,16.2377 +2016-08-16 21:49:47,3593.0,12.5828, +2016-08-16 21:59:49,3593.0,12.5817, +2016-08-16 22:00:00,,,16.2047 +2016-08-16 22:09:52,3592.0,12.5828, +2016-08-16 22:15:00,,,16.2363 +2016-08-16 22:19:54,3591.0,12.5839, +2016-08-16 22:29:57,3590.0,12.5828, +2016-08-16 22:30:00,,,16.2363 +2016-08-16 22:40:00,3589.0,12.5839, +2016-08-16 22:45:00,,,16.242 +2016-08-16 22:50:02,3588.0,12.5828, +2016-08-16 23:00:00,,,16.2033 +2016-08-16 23:00:05,3588.0,12.5828, +2016-08-16 23:10:07,3587.0,12.6129, +2016-08-16 23:15:00,,,16.242 +2016-08-16 23:20:10,3586.0,12.5839, +2016-08-16 23:30:00,,,16.2363 +2016-08-16 23:30:12,3585.0,12.5817, +2016-08-16 23:40:15,3585.0,12.5794, +2016-08-16 23:45:00,,,16.2033 +2016-08-16 23:50:18,3584.0,12.5828, +2016-08-17 00:00:00,,, +2016-08-17 00:10:30,3582.0,12.5505, +2016-08-17 00:15:00,,,16.2076 +2016-08-17 00:20:32,3581.0,12.5805, +2016-08-17 00:30:00,,,16.242 +2016-08-17 00:30:35,3581.0,12.5794, +2016-08-17 00:40:37,3580.0,12.5794, +2016-08-17 00:45:00,,,16.242 +2016-08-17 00:50:40,3579.0,12.5805, +2016-08-17 01:00:00,,,16.2091 +2016-08-17 01:00:42,3578.0,12.5805, +2016-08-17 01:10:45,3577.0,12.5505, +2016-08-17 01:15:00,,,16.2406 +2016-08-17 01:20:47,3577.0,12.5772, +2016-08-17 01:30:00,,,16.2377 +2016-08-17 01:30:50,3576.0,12.5772, +2016-08-17 01:40:52,3575.0,12.5761, +2016-08-17 01:45:00,,,16.242 +2016-08-17 01:50:55,3574.0,12.5772, +2016-08-17 02:00:00,,,16.2377 +2016-08-17 02:00:57,3574.0,12.5772, +2016-08-17 02:11:00,3574.0,12.5772, +2016-08-17 02:15:00,,,16.2047 +2016-08-17 02:21:02,3573.0,12.5472, +2016-08-17 02:30:00,,,16.2377 +2016-08-17 02:31:05,3572.0,12.5727, +2016-08-17 02:41:07,3572.0,12.5727, +2016-08-17 02:45:00,,,16.2406 +2016-08-17 02:51:10,3571.0,12.5727, +2016-08-17 03:00:00,,,16.2033 +2016-08-17 03:01:12,3571.0,12.6028, +2016-08-17 03:11:15,3570.0,12.5727, +2016-08-17 03:15:00,,,16.2076 +2016-08-17 03:21:17,3569.0,12.5738, +2016-08-17 03:30:00,,,16.242 +2016-08-17 03:31:20,3569.0,12.5738, +2016-08-17 03:41:22,3568.0,12.5727, +2016-08-17 03:45:00,,,16.242 +2016-08-17 03:51:24,3567.0,12.5727, +2016-08-17 04:00:00,,,16.2406 +2016-08-17 04:01:27,3566.0,12.6028, +2016-08-17 04:11:29,3566.0,12.5727, +2016-08-17 04:15:00,,,16.2377 +2016-08-17 04:21:32,3566.0,12.5438, +2016-08-17 04:30:00,,,16.2377 +2016-08-17 04:31:34,3565.0,12.6039, +2016-08-17 04:41:37,3565.0,12.5738, +2016-08-17 04:45:00,,,16.2047 +2016-08-17 04:51:39,3564.0,12.5738, +2016-08-17 05:00:00,,,16.242 +2016-08-17 05:01:42,3564.0,12.5738, +2016-08-17 05:11:44,3563.0,12.605, +2016-08-17 05:15:00,,,16.2406 +2016-08-17 05:21:48,3563.0,12.5705, +2016-08-17 05:30:00,,,16.242 +2016-08-17 05:31:51,3562.0,12.5738, +2016-08-17 05:41:54,3561.0,12.5738, +2016-08-17 05:45:00,,,16.242 +2016-08-17 05:51:56,3560.0,12.5405, +2016-08-17 06:00:00,,,16.242 +2016-08-17 06:01:58,3560.0,12.5705, +2016-08-17 06:12:01,3560.0,12.6016, +2016-08-17 06:15:00,,,16.242 +2016-08-17 06:22:03,3559.0,12.5705, +2016-08-17 06:30:00,,,16.2363 +2016-08-17 06:32:06,3559.0,12.5671, +2016-08-17 06:42:08,3559.0,12.5682, +2016-08-17 06:45:00,,,16.2377 +2016-08-17 06:52:11,3559.0,12.5671, +2016-08-17 07:00:00,,,16.2363 +2016-08-17 07:02:13,3559.0,12.5671, +2016-08-17 07:12:16,3559.0,12.5671, +2016-08-17 07:15:00,,,16.2363 +2016-08-17 07:22:18,3559.0,12.5671, +2016-08-17 07:30:00,,,16.242 +2016-08-17 07:32:21,3559.0,12.5638, +2016-08-17 07:42:23,3559.0,12.5649, +2016-08-17 07:45:00,,,16.2033 +2016-08-17 07:52:26,3560.0,12.5938, +2016-08-17 08:00:00,,,16.2377 +2016-08-17 08:02:28,3561.0,12.5938, +2016-08-17 08:12:31,3561.0,12.5649, +2016-08-17 08:15:00,,,16.2091 +2016-08-17 08:22:33,3562.0,12.5638, +2016-08-17 08:30:00,,,16.2693 +2016-08-17 08:32:36,3563.0,12.5916, +2016-08-17 08:42:38,3563.0,12.5593, +2016-08-17 08:45:00,,,16.2377 +2016-08-17 08:52:40,3564.0,12.5604, +2016-08-17 09:00:00,,,16.2377 +2016-08-17 09:02:50,3564.0,12.5604, +2016-08-17 09:12:53,3565.0,12.5904, +2016-08-17 09:15:00,,,16.2033 +2016-08-17 09:22:55,3565.0,12.5904, +2016-08-17 09:30:00,,,16.2693 +2016-08-17 09:32:58,3566.0,12.5604, +2016-08-17 09:43:01,3567.0,12.5604, +2016-08-17 09:45:00,,,16.2377 +2016-08-17 09:53:03,3568.0,12.5604, +2016-08-17 10:00:00,,,16.2377 +2016-08-17 10:03:06,3570.0,12.5615, +2016-08-17 10:13:08,3571.0,12.5904, +2016-08-17 10:15:00,,,16.2392 +2016-08-17 10:23:18,3571.0,12.5604, +2016-08-17 10:30:00,,,16.2377 +2016-08-17 10:33:20,3573.0,12.5604, +2016-08-17 10:43:23,3573.0,12.5604, +2016-08-17 10:45:00,,,16.2363 +2016-08-17 10:53:25,3574.0,12.5604, +2016-08-17 11:00:00,,,16.2363 +2016-08-17 11:03:28,3576.0,12.5604, +2016-08-17 11:13:30,3578.0,12.4705, +2016-08-17 11:15:00,,,16.2377 +2016-08-17 11:23:33,3579.0,12.4705, +2016-08-17 11:30:00,,,16.1718 +2016-08-17 11:33:36,3581.0,12.4705, +2016-08-17 11:43:38,3582.0,12.4705, +2016-08-17 11:45:00,,,16.2363 +2016-08-17 11:53:41,3583.0,12.4705, +2016-08-17 12:00:00,,,16.2363 +2016-08-17 12:03:43,3585.0,12.4406, +2016-08-17 12:13:46,3585.0,12.4705, +2016-08-17 12:15:00,,,16.2047 +2016-08-17 12:23:48,3587.0,12.4705, +2016-08-17 12:30:00,,,16.2363 +2016-08-17 12:33:51,3588.0,12.4705, +2016-08-17 12:43:53,3588.0,12.4705, +2016-08-17 12:45:00,,,16.2363 +2016-08-17 12:53:56,3590.0,12.4705, +2016-08-17 13:00:00,,,16.2363 +2016-08-17 13:03:58,3591.0,12.4705, +2016-08-17 13:14:01,3592.0,12.4705, +2016-08-17 13:15:00,,,16.2033 +2016-08-17 13:24:04,3592.0,12.4705, +2016-08-17 13:30:00,,,16.2363 +2016-08-17 13:34:06,3593.0,12.4705, +2016-08-17 13:44:09,3594.0,12.4716, +2016-08-17 13:45:00,,,16.1389 +2016-08-17 13:54:12,3595.0,12.5005, +2016-08-17 14:00:00,,,16.1375 +2016-08-17 14:04:14,3596.0,12.4705, +2016-08-17 14:14:17,3597.0,12.4705, +2016-08-17 14:15:00,,,16.1375 +2016-08-17 14:24:20,3598.0,12.4705, +2016-08-17 14:30:00,,,16.1375 +2016-08-17 14:34:22,3598.0,12.4705, +2016-08-17 14:44:24,3598.0,12.4705, +2016-08-17 14:45:00,,,16.1046 +2016-08-17 14:54:27,3598.0,12.4705, +2016-08-17 15:00:00,,,16.0732 +2016-08-17 15:04:29,3598.0,12.4705, +2016-08-17 15:14:32,3598.0,12.4705, +2016-08-17 15:15:00,,,16.1389 +2016-08-17 15:24:35,3598.0,12.4705, +2016-08-17 15:30:00,,,16.1046 +2016-08-17 15:34:38,3598.0,12.4705, +2016-08-17 15:44:40,3598.0,12.4705, +2016-08-17 15:45:00,,,16.1375 +2016-08-17 15:54:43,3598.0,12.4705, +2016-08-17 16:00:00,,,16.1046 +2016-08-17 16:04:46,3598.0,12.4738, +2016-08-17 16:14:49,3598.0,12.4738, +2016-08-17 16:15:00,,,16.1046 +2016-08-17 16:24:51,3598.0,12.4749, +2016-08-17 16:30:00,,,16.1046 +2016-08-17 16:34:54,3598.0,12.4749, +2016-08-17 16:44:57,3598.0,12.4738, +2016-08-17 16:45:00,,,16.1389 +2016-08-17 16:55:00,3598.0,12.4738, +2016-08-17 17:00:00,,,16.1046 +2016-08-17 17:05:02,3598.0,12.4738, +2016-08-17 17:15:00,,,16.1389 +2016-08-17 17:15:05,3598.0,12.4749, +2016-08-17 17:25:08,3598.0,12.4772, +2016-08-17 17:30:00,,,16.1375 +2016-08-17 17:35:11,3598.0,12.4772, +2016-08-17 17:45:00,,,16.1375 +2016-08-17 17:45:13,3598.0,12.4472, +2016-08-17 17:55:16,3598.0,12.4772, +2016-08-17 18:00:00,,,16.0718 +2016-08-17 18:05:19,3598.0,12.4772, +2016-08-17 18:15:00,,,16.1046 +2016-08-17 18:15:22,3598.0,12.4472, +2016-08-17 18:25:25,3598.0,12.4772, +2016-08-17 18:30:00,,,16.1046 +2016-08-17 18:35:27,3598.0,12.4772, +2016-08-17 18:45:00,,,16.0732 +2016-08-17 18:45:30,3598.0,12.4772, +2016-08-17 18:55:33,3598.0,12.4772, +2016-08-17 19:00:00,,,16.1375 +2016-08-17 19:05:36,3598.0,12.4772, +2016-08-17 19:15:00,,,16.1046 +2016-08-17 19:15:38,3598.0,12.4772, +2016-08-17 19:25:41,3598.0,12.4805, +2016-08-17 19:30:00,,,16.1375 +2016-08-17 19:35:44,3597.0,12.4794, +2016-08-17 19:45:00,,,16.1046 +2016-08-17 19:45:46,3596.0,12.4805, +2016-08-17 19:55:49,3595.0,12.4805, +2016-08-17 20:00:00,,,16.105999999999998 +2016-08-17 20:05:51,3595.0,12.4794, +2016-08-17 20:15:00,,,16.1375 +2016-08-17 20:15:54,3594.0,12.4794, +2016-08-17 20:25:57,3594.0,12.4494, +2016-08-17 20:30:00,,,16.1375 +2016-08-17 20:35:59,3593.0,12.4794, +2016-08-17 20:45:00,,,16.1046 +2016-08-17 20:46:02,3592.0,12.4494, +2016-08-17 20:56:04,3592.0,12.4505, +2016-08-17 21:00:00,,,16.1389 +2016-08-17 21:06:07,3590.0,12.4794, +2016-08-17 21:15:00,,,16.105999999999998 +2016-08-17 21:16:09,3589.0,12.4794, +2016-08-17 21:26:12,3588.0,12.4794, +2016-08-17 21:30:00,,,16.1375 +2016-08-17 21:36:15,3588.0,12.4794, +2016-08-17 21:45:00,,,16.1046 +2016-08-17 21:46:17,3587.0,12.4805, +2016-08-17 21:56:20,3587.0,12.5094, +2016-08-17 22:00:00,,,16.1389 +2016-08-17 22:06:22,3586.0,12.4794, +2016-08-17 22:15:00,,,16.1403 +2016-08-17 22:16:25,3586.0,12.4805, +2016-08-17 22:26:27,3585.0,12.4816, +2016-08-17 22:30:00,,,16.1389 +2016-08-17 22:36:37,3585.0,12.4794, +2016-08-17 22:45:00,,,16.1375 +2016-08-17 22:46:40,3584.0,12.4805, +2016-08-17 22:56:43,3583.0,12.4794, +2016-08-17 23:00:00,,,16.1375 +2016-08-17 23:06:45,3582.0,12.4794, +2016-08-17 23:15:00,,,16.1389 +2016-08-17 23:16:48,3582.0,12.4794, +2016-08-17 23:26:50,3581.0,12.4805, +2016-08-17 23:30:00,,,16.1046 +2016-08-17 23:36:52,3581.0,12.5105, +2016-08-17 23:45:00,,,16.1389 +2016-08-17 23:46:54,3581.0,12.4805, +2016-08-17 23:56:57,3581.0,12.4772, +2016-08-18 00:00:00,,,16.1375 +2016-08-18 00:06:59,3580.0,12.5071, +2016-08-18 00:15:00,,,16.1389 +2016-08-18 00:17:02,3579.0,12.4794, +2016-08-18 00:27:04,3578.0,12.4772, +2016-08-18 00:30:00,,,16.1375 +2016-08-18 00:37:06,3578.0,12.4772, +2016-08-18 00:45:00,,,16.1375 +2016-08-18 00:47:09,3578.0,12.4772, +2016-08-18 00:57:11,3577.0,12.4772, +2016-08-18 01:00:00,,,16.1375 +2016-08-18 01:07:13,3577.0,12.4783, +2016-08-18 01:15:00,,,16.1389 +2016-08-18 01:17:16,3577.0,12.4772, +2016-08-18 01:27:18,3577.0,12.4783, +2016-08-18 01:30:00,,,16.1389 +2016-08-18 01:37:21,3577.0,12.4772, +2016-08-18 01:45:00,,,16.1375 +2016-08-18 01:47:23,3576.0,12.4772, +2016-08-18 01:57:26,3575.0,12.4783, +2016-08-18 02:00:00,,,16.1375 +2016-08-18 02:07:28,3575.0,12.4738, +2016-08-18 02:15:00,,,16.1046 +2016-08-18 02:17:31,3575.0,12.4738, +2016-08-18 02:27:33,3574.0,12.4738, +2016-08-18 02:30:00,,,16.1375 +2016-08-18 02:37:35,3574.0,12.4738, +2016-08-18 02:45:00,,,16.105999999999998 +2016-08-18 02:47:38,3574.0,12.4749, +2016-08-18 02:57:40,3574.0,12.4738, +2016-08-18 03:00:00,,,16.1375 +2016-08-18 03:07:43,3574.0,12.4738, +2016-08-18 03:15:00,,,16.1075 +2016-08-18 03:17:45,3574.0,12.4738, +2016-08-18 03:27:47,3574.0,12.4749, +2016-08-18 03:30:00,,,16.1389 +2016-08-18 03:37:50,3573.0,12.4738, +2016-08-18 03:45:00,,,16.1389 +2016-08-18 03:47:52,3573.0,12.5005, +2016-08-18 03:57:54,3573.0,12.4705, +2016-08-18 04:00:00,,,16.1403 +2016-08-18 04:07:56,3573.0,12.4705, +2016-08-18 04:15:00,,,16.1389 +2016-08-18 04:17:59,3573.0,12.4705, +2016-08-18 04:28:01,3572.0,12.4705, +2016-08-18 04:30:00,,,16.1375 +2016-08-18 04:38:03,3572.0,12.4705, +2016-08-18 04:45:00,,,16.1375 +2016-08-18 04:48:05,3572.0,12.5005, +2016-08-18 04:58:08,3572.0,12.4716, +2016-08-18 05:00:00,,,16.1375 +2016-08-18 05:08:10,3572.0,12.4716, +2016-08-18 05:15:00,,,16.1075 +2016-08-18 05:18:12,3571.0,12.4705, +2016-08-18 05:28:14,3571.0,12.4705, +2016-08-18 05:30:00,,,16.1389 +2016-08-18 05:38:17,3571.0,12.4705, +2016-08-18 05:45:00,,,16.1389 +2016-08-18 05:48:19,3571.0,12.4705, +2016-08-18 05:58:21,3571.0,12.4694, +2016-08-18 06:00:00,,,16.1389 +2016-08-18 06:08:24,3571.0,12.5005, +2016-08-18 06:15:00,,,16.1389 +2016-08-18 06:18:26,3571.0,12.4716, +2016-08-18 06:28:28,3571.0,12.4705, +2016-08-18 06:30:00,,,16.1389 +2016-08-18 06:38:30,3571.0,12.4406, +2016-08-18 06:45:00,,,16.0418 +2016-08-18 06:48:33,3571.0,12.4716, +2016-08-18 06:58:35,3571.0,12.4705, +2016-08-18 07:00:00,,,16.039 +2016-08-18 07:08:38,3571.0,12.4705, +2016-08-18 07:15:00,,,16.0404 +2016-08-18 07:18:40,3571.0,12.4705, +2016-08-18 07:28:42,3571.0,12.5005, +2016-08-18 07:30:00,,,16.0077 +2016-08-18 07:38:45,3571.0,12.5005, +2016-08-18 07:45:00,,,16.0077 +2016-08-18 07:48:47,3571.0,12.5005, +2016-08-18 07:58:49,3572.0,12.5005, +2016-08-18 08:00:00,,,16.039 +2016-08-18 08:08:52,3572.0,12.4705, +2016-08-18 08:15:00,,,16.0062 +2016-08-18 08:18:54,3573.0,12.4705, +2016-08-18 08:28:56,3574.0,12.4705, +2016-08-18 08:30:00,,,16.0077 +2016-08-18 08:38:59,3574.0,12.4705, +2016-08-18 08:45:00,,,16.0062 +2016-08-18 08:49:03,3575.0,12.4705, +2016-08-18 08:59:05,3576.0,12.5016, +2016-08-18 09:00:00,,,16.0404 +2016-08-18 09:09:08,3577.0,12.4705, +2016-08-18 09:15:00,,,16.0404 +2016-08-18 09:19:10,3578.0,12.4705, +2016-08-18 09:29:13,3580.0,12.4705, +2016-08-18 09:30:00,,,16.0404 +2016-08-18 09:39:15,3581.0,12.4705, +2016-08-18 09:45:00,,,16.0062 +2016-08-18 09:49:17,3583.0,12.4683, +2016-08-18 09:59:20,3585.0,12.5005, +2016-08-18 10:00:00,,,16.0361 +2016-08-18 10:09:22,3586.0,12.4705, +2016-08-18 10:15:00,,,16.039 +2016-08-18 10:19:25,3588.0,12.4705, +2016-08-18 10:29:27,3589.0,12.4705, +2016-08-18 10:30:00,,,16.0361 +2016-08-18 10:39:30,3591.0,12.3775, +2016-08-18 10:45:00,,,16.0034 +2016-08-18 10:49:33,3593.0,12.3808, +2016-08-18 10:59:35,3594.0,12.3808, +2016-08-18 11:00:00,,,16.0048 +2016-08-18 11:09:38,3595.0,12.3808, +2016-08-18 11:15:00,,,16.0361 +2016-08-18 11:19:40,3596.0,12.3808, +2016-08-18 11:29:43,3597.0,12.3808, +2016-08-18 11:30:00,,,16.0034 +2016-08-18 11:39:46,3598.0,12.3819, +2016-08-18 11:45:00,,,16.0034 +2016-08-18 11:49:49,3598.0,12.3808, +2016-08-18 11:59:51,3598.0,12.3808, +2016-08-18 12:00:00,,,16.0034 +2016-08-18 12:09:54,3598.0,12.3808, +2016-08-18 12:15:00,,,16.0034 +2016-08-18 12:19:57,3598.0,12.3211, +2016-08-18 12:29:59,3599.0,12.3211, +2016-08-18 12:30:00,,,16.0034 +2016-08-18 12:40:02,3598.0,12.2913, +2016-08-18 12:45:00,,,16.002 +2016-08-18 12:50:05,3599.0,12.2913, +2016-08-18 13:00:00,,,15.9366 +2016-08-18 13:00:07,3599.0,12.2913, +2016-08-18 13:10:09,3599.0,12.2913, +2016-08-18 13:15:00,,,15.938 +2016-08-18 13:20:20,3599.0,12.2913, +2016-08-18 13:30:00,,,15.938 +2016-08-18 13:30:23,3599.0,12.2913, +2016-08-18 13:40:26,3599.0,12.2913, +2016-08-18 13:45:00,,,15.938 +2016-08-18 13:50:28,3599.0,12.2913, +2016-08-18 14:00:00,,,15.938 +2016-08-18 14:00:31,3599.0,12.2913, +2016-08-18 14:10:34,3599.0,12.2913, +2016-08-18 14:15:00,,,15.938 +2016-08-18 14:20:37,3599.0,12.2053, +2016-08-18 14:30:00,,,15.938 +2016-08-18 14:30:40,3599.0,12.2021, +2016-08-18 14:40:42,3599.0,12.2053, +2016-08-18 14:45:00,,,15.938 +2016-08-18 14:50:45,3599.0,12.2351, +2016-08-18 15:00:00,,,15.9366 +2016-08-18 15:00:48,3599.0,12.2053, +2016-08-18 15:10:51,3599.0,12.2351, +2016-08-18 15:15:00,,,15.938 +2016-08-18 15:20:53,3599.0,12.2097, +2016-08-18 15:30:00,,,15.9054 +2016-08-18 15:30:56,3599.0,12.2086, +2016-08-18 15:40:59,3599.0,12.2086, +2016-08-18 15:45:00,,,15.938 +2016-08-18 15:51:02,3599.0,12.2394, +2016-08-18 16:00:00,,,15.9054 +2016-08-18 16:01:05,3599.0,12.2383, +2016-08-18 16:11:08,3599.0,12.2086, +2016-08-18 16:15:00,,,15.938 +2016-08-18 16:21:10,3599.0,12.2119, +2016-08-18 16:30:00,,,15.9054 +2016-08-18 16:31:13,3599.0,12.1524, +2016-08-18 16:41:16,3599.0,12.1217, +2016-08-18 16:45:00,,,15.9011 +2016-08-18 16:51:19,3599.0,12.1217, +2016-08-18 17:00:00,,,15.938 +2016-08-18 17:01:21,3599.0,12.1557, +2016-08-18 17:11:24,3599.0,12.1217, +2016-08-18 17:15:00,,,15.938 +2016-08-18 17:21:27,3599.0,12.1513, +2016-08-18 17:30:00,,,15.9366 +2016-08-18 17:31:30,3599.0,12.1249, +2016-08-18 17:41:32,3599.0,12.1249, +2016-08-18 17:45:00,,,15.9054 +2016-08-18 17:51:34,3599.0,12.1249, +2016-08-18 18:00:00,,,15.9054 +2016-08-18 18:01:37,3599.0,12.1557, +2016-08-18 18:11:40,3599.0,12.1546, +2016-08-18 18:15:00,,,15.938 +2016-08-18 18:21:43,3599.0,12.1546, +2016-08-18 18:30:00,,,15.9338 +2016-08-18 18:31:45,3599.0,12.214, +2016-08-18 18:41:48,3599.0,12.2449, +2016-08-18 18:45:00,,,15.9054 +2016-08-18 18:51:51,3599.0,12.2151, +2016-08-18 19:00:00,,,15.9054 +2016-08-18 19:01:54,3599.0,12.214, +2016-08-18 19:11:57,3599.0,12.2438, +2016-08-18 19:15:00,,,15.9366 +2016-08-18 19:22:00,3599.0,12.2438, +2016-08-18 19:30:00,,,15.938 +2016-08-18 19:32:02,3599.0,12.2438, +2016-08-18 19:42:05,3599.0,12.2438, +2016-08-18 19:45:00,,,15.9338 +2016-08-18 19:52:08,3599.0,12.214, +2016-08-18 20:00:00,,,15.9054 +2016-08-18 20:02:11,3599.0,12.2151, +2016-08-18 20:12:13,3599.0,12.214, +2016-08-18 20:15:00,,,15.9054 +2016-08-18 20:22:16,3599.0,12.1843, +2016-08-18 20:30:00,,,15.938 +2016-08-18 20:32:19,3599.0,12.2438, +2016-08-18 20:42:21,3599.0,12.2151, +2016-08-18 20:45:00,,,15.9054 +2016-08-18 20:52:24,3598.0,12.2449, +2016-08-18 21:00:00,,,15.9054 +2016-08-18 21:02:27,3598.0,12.214, +2016-08-18 21:12:29,3598.0,12.214, +2016-08-18 21:15:00,,,15.9054 +2016-08-18 21:22:32,3598.0,12.214, +2016-08-18 21:30:00,,,15.9054 +2016-08-18 21:32:35,3598.0,12.214, +2016-08-18 21:42:37,3597.0,12.1854, +2016-08-18 21:45:00,,,15.938 +2016-08-18 21:52:40,3596.0,12.2151, +2016-08-18 22:00:00,,,15.938 +2016-08-18 22:02:43,3595.0,12.1854, +2016-08-18 22:12:45,3595.0,12.2438, +2016-08-18 22:15:00,,,15.938 +2016-08-18 22:22:48,3594.0,12.214, +2016-08-18 22:30:00,,,15.938 +2016-08-18 22:32:51,3593.0,12.2438, +2016-08-18 22:42:53,3593.0,12.214, +2016-08-18 22:45:00,,,15.938 +2016-08-18 22:52:56,3592.0,12.214, +2016-08-18 23:00:00,,,15.9394 +2016-08-18 23:02:58,3592.0,12.2438, +2016-08-18 23:13:01,3590.0,12.2449, +2016-08-18 23:15:00,,,15.9054 +2016-08-18 23:23:03,3590.0,12.2151, +2016-08-18 23:30:00,,,15.938 +2016-08-18 23:33:06,3588.0,12.214, +2016-08-18 23:43:08,3588.0,12.2438, +2016-08-18 23:45:00,,,15.9366 +2016-08-18 23:53:11,3588.0,12.2151, +2016-08-19 00:00:00,,,15.938 +2016-08-19 00:03:13,3587.0,12.2438, +2016-08-19 00:13:16,3587.0,12.2151, +2016-08-19 00:15:00,,,15.938 +2016-08-19 00:23:18,3586.0,12.214, +2016-08-19 00:30:00,,,15.9394 +2016-08-19 00:33:21,3586.0,12.2449, +2016-08-19 00:43:23,3585.0,12.214, +2016-08-19 00:45:00,,,15.938 +2016-08-19 00:53:26,3585.0,12.214, +2016-08-19 01:00:00,,,15.938 +2016-08-19 01:03:28,3584.0,12.2438, +2016-08-19 01:13:31,3583.0,12.2151, +2016-08-19 01:15:00,,,15.938 +2016-08-19 01:23:33,3583.0,12.1843, +2016-08-19 01:30:00,,,15.9082 +2016-08-19 01:33:36,3582.0,12.214, +2016-08-19 01:43:38,3581.0,12.2151, +2016-08-19 01:45:00,,,15.9423 +2016-08-19 01:53:41,3581.0,12.2438, +2016-08-19 02:00:00,,,15.938 +2016-08-19 02:03:43,3581.0,12.2449, +2016-08-19 02:13:46,3581.0,12.2151, +2016-08-19 02:15:00,,,15.9749 +2016-08-19 02:23:48,3580.0,12.2151, +2016-08-19 02:30:00,,,15.938 +2016-08-19 02:33:50,3579.0,12.2449, +2016-08-19 02:43:53,3579.0,12.2449, +2016-08-19 02:45:00,,,15.9394 +2016-08-19 02:53:55,3578.0,12.2438, +2016-08-19 03:00:00,,,15.9437 +2016-08-19 03:03:57,3578.0,12.214, +2016-08-19 03:13:59,3577.0,12.2151, +2016-08-19 03:15:00,,,15.911 +2016-08-19 03:24:02,3577.0,12.2438, +2016-08-19 03:30:00,,,15.9423 +2016-08-19 03:34:04,3577.0,12.2449, +2016-08-19 03:44:07,3577.0,12.2151, +2016-08-19 03:45:00,,,15.938 +2016-08-19 03:54:09,3577.0,12.2438, +2016-08-19 04:00:00,,,15.9054 +2016-08-19 04:04:11,3577.0,12.214, +2016-08-19 04:14:14,3576.0,12.2108, +2016-08-19 04:15:00,,,15.9096 +2016-08-19 04:24:16,3576.0,12.2405, +2016-08-19 04:30:00,,,15.9082 +2016-08-19 04:34:18,3576.0,12.2119, +2016-08-19 04:44:21,3576.0,12.2119, +2016-08-19 04:45:00,,,15.9749 +2016-08-19 04:54:23,3575.0,12.2108, +2016-08-19 05:00:00,,,15.9408 +2016-08-19 05:04:26,3575.0,12.2108, +2016-08-19 05:14:28,3575.0,12.2416, +2016-08-19 05:15:00,,,15.9423 +2016-08-19 05:24:30,3575.0,12.2097, +2016-08-19 05:30:00,,,15.938 +2016-08-19 05:34:33,3574.0,12.181, +2016-08-19 05:44:35,3574.0,12.1789, +2016-08-19 05:45:00,,,15.9408 +2016-08-19 05:54:38,3574.0,12.2383, +2016-08-19 06:00:00,,,15.9423 +2016-08-19 06:04:40,3574.0,12.2383, +2016-08-19 06:14:42,3574.0,12.2086, +2016-08-19 06:15:00,,,15.9423 +2016-08-19 06:24:45,3574.0,12.2383, +2016-08-19 06:30:00,,,15.938 +2016-08-19 06:34:47,3574.0,12.2351, +2016-08-19 06:44:49,3574.0,12.2086, +2016-08-19 06:45:00,,,15.9408 +2016-08-19 06:54:52,3573.0,12.2097, +2016-08-19 07:00:00,,,15.9408 +2016-08-19 07:04:54,3574.0,12.2383, +2016-08-19 07:14:57,3574.0,12.2053, +2016-08-19 07:15:00,,,15.9096 +2016-08-19 07:24:59,3574.0,12.2351, +2016-08-19 07:30:00,,,15.9408 +2016-08-19 07:35:01,3574.0,12.2351, +2016-08-19 07:45:00,,,15.9423 +2016-08-19 07:45:04,3574.0,12.2362, +2016-08-19 07:55:06,3574.0,12.2351, +2016-08-19 08:00:00,,,15.9408 +2016-08-19 08:05:08,3575.0,12.2064, +2016-08-19 08:15:00,,,15.9408 +2016-08-19 08:15:11,3576.0,12.2351, +2016-08-19 08:25:13,3577.0,12.2351, +2016-08-19 08:30:00,,,15.9408 +2016-08-19 08:35:15,3577.0,12.2351, +2016-08-19 08:45:00,,,15.9082 +2016-08-19 08:45:18,3578.0,12.1724, +2016-08-19 08:55:20,3579.0,12.2351, +2016-08-19 09:00:00,,,15.9423 +2016-08-19 09:05:22,3581.0,12.2318, +2016-08-19 09:15:00,,,15.9423 +2016-08-19 09:15:25,3581.0,12.2021, +2016-08-19 09:25:27,3583.0,12.2318, +2016-08-19 09:30:00,,,15.9423 +2016-08-19 09:35:29,3585.0,12.1724, +2016-08-19 09:45:00,,,15.9054 +2016-08-19 09:45:32,3586.0,12.2318, +2016-08-19 09:55:34,3588.0,12.2053, +2016-08-19 10:00:00,,,15.9408 +2016-08-19 10:05:36,3589.0,12.1724, +2016-08-19 10:15:00,,,15.938 +2016-08-19 10:15:39,3591.0,12.2021, +2016-08-19 10:25:41,3593.0,12.1427, +2016-08-19 10:30:00,,,15.9423 +2016-08-19 10:35:44,3594.0,12.1131, +2016-08-19 10:45:00,,,15.9082 +2016-08-19 10:45:46,3595.0,12.1163, +2016-08-19 10:55:49,3596.0,12.1427, +2016-08-19 11:00:00,,,15.9082 +2016-08-19 11:05:51,3598.0,12.1427, +2016-08-19 11:15:00,,,15.9423 +2016-08-19 11:15:54,3598.0,12.1459, +2016-08-19 11:25:56,3598.0,12.1459, +2016-08-19 11:30:00,,,15.843 +2016-08-19 11:35:59,3598.0,12.1427, +2016-08-19 11:45:00,,,15.8402 +2016-08-19 11:46:02,3599.0,12.1163, +2016-08-19 11:56:05,3599.0,12.1163, +2016-08-19 12:00:00,,,15.8402 +2016-08-19 12:06:09,3599.0,12.1163, +2016-08-19 12:15:00,,,15.8076 +2016-08-19 12:16:12,3599.0,12.1163, +2016-08-19 12:26:15,3599.0,12.1459, +2016-08-19 12:30:00,,,15.8076 +2016-08-19 12:36:18,3599.0,12.1195, +2016-08-19 12:45:00,,,15.8076 +2016-08-19 12:46:21,3599.0,12.1492, +2016-08-19 12:56:23,3599.0,12.1492, +2016-08-19 13:00:00,,,15.8402 +2016-08-19 13:06:26,3599.0,12.1195, +2016-08-19 13:15:00,,,15.8076 +2016-08-19 13:16:29,3599.0,12.1195, +2016-08-19 13:26:32,3599.0,12.1195, +2016-08-19 13:30:00,,,15.8076 +2016-08-19 13:36:35,3599.0,12.1217, +2016-08-19 13:45:00,,,15.8076 +2016-08-19 13:46:38,3599.0,12.1217, +2016-08-19 13:56:41,3599.0,12.0328, +2016-08-19 14:00:00,,,15.8076 +2016-08-19 14:06:44,3599.0,12.0624, +2016-08-19 14:15:00,,,15.8402 +2016-08-19 14:16:47,3599.0,12.0328, +2016-08-19 14:26:50,3599.0,12.0328, +2016-08-19 14:30:00,,,15.8076 +2016-08-19 14:36:52,3599.0,12.036, +2016-08-19 14:45:00,,,15.7088 +2016-08-19 14:46:55,3599.0,12.0371, +2016-08-19 14:56:58,3599.0,12.036, +2016-08-19 15:00:00,,,15.7102 +2016-08-19 15:07:01,3599.0,12.0656, +2016-08-19 15:15:00,,,15.7102 +2016-08-19 15:17:04,3599.0,12.0371, +2016-08-19 15:27:07,3599.0,12.036, +2016-08-19 15:30:00,,,15.7102 +2016-08-19 15:37:10,3599.0,12.036, +2016-08-19 15:45:00,,,15.7102 +2016-08-19 15:47:13,3599.0,12.036, +2016-08-19 15:57:16,3599.0,12.036, +2016-08-19 16:00:00,,,15.7102 +2016-08-19 16:07:19,3599.0,11.9484, +2016-08-19 16:15:00,,,15.7427 +2016-08-19 16:17:22,3599.0,12.036, +2016-08-19 16:27:25,3599.0,11.9484, +2016-08-19 16:30:00,,,15.7102 +2016-08-19 16:37:28,3599.0,11.9473, +2016-08-19 16:45:00,,,15.7102 +2016-08-19 16:47:31,3599.0,11.9515, +2016-08-19 16:57:34,3599.0,11.98, +2016-08-19 17:00:00,,,15.7102 +2016-08-19 17:07:37,3599.0,11.98, +2016-08-19 17:15:00,,,15.7427 +2016-08-19 17:17:40,3599.0,11.9505, +2016-08-19 17:27:43,3599.0,11.9547, +2016-08-19 17:30:00,,,15.7102 +2016-08-19 17:37:46,3599.0,11.9537, +2016-08-19 17:45:00,,,15.7088 +2016-08-19 17:47:49,3599.0,11.9537, +2016-08-19 17:57:52,3599.0,11.9537, +2016-08-19 18:00:00,,,15.7102 +2016-08-19 18:07:55,3599.0,11.9569, +2016-08-19 18:15:00,,,15.7102 +2016-08-19 18:17:58,3599.0,11.9569, +2016-08-19 18:28:01,3599.0,11.9558, +2016-08-19 18:30:00,,,15.7102 +2016-08-19 18:38:04,3599.0,11.9569, +2016-08-19 18:45:00,,,15.7102 +2016-08-19 18:48:07,3599.0,11.9864, +2016-08-19 18:58:10,3599.0,11.9864, +2016-08-19 19:00:00,,,15.7427 +2016-08-19 19:08:13,3599.0,11.9579, +2016-08-19 19:15:00,,,15.7102 +2016-08-19 19:18:16,3599.0,11.9854, +2016-08-19 19:28:19,3599.0,11.9875, +2016-08-19 19:30:00,,,15.7455 +2016-08-19 19:38:22,3599.0,11.9569, +2016-08-19 19:45:00,,,15.7102 +2016-08-19 19:48:25,3599.0,11.9864, +2016-08-19 19:58:28,3599.0,11.9875, +2016-08-19 20:00:00,,,15.7469 +2016-08-19 20:08:31,3599.0,11.9569, +2016-08-19 20:15:00,,,15.7102 +2016-08-19 20:18:33,3599.0,11.9558, +2016-08-19 20:28:36,3599.0,11.9558, +2016-08-19 20:30:00,,,15.7144 +2016-08-19 20:38:39,3599.0,12.0456, +2016-08-19 20:45:00,,,15.7102 +2016-08-19 20:48:42,3599.0,12.0763, +2016-08-19 20:58:45,3599.0,12.0456, +2016-08-19 21:00:00,,,15.713 +2016-08-19 21:08:47,3599.0,12.0753, +2016-08-19 21:15:00,,,15.713 +2016-08-19 21:18:50,3599.0,12.0467, +2016-08-19 21:28:53,3599.0,12.0785, +2016-08-19 21:30:00,,,15.7144 +2016-08-19 21:38:56,3599.0,12.0488, +2016-08-19 21:45:00,,,15.713 +2016-08-19 21:48:58,3599.0,12.0796, +2016-08-19 21:59:01,3599.0,12.0488, +2016-08-19 22:00:00,,,15.713 +2016-08-19 22:09:04,3599.0,12.0785, +2016-08-19 22:15:00,,,15.7793 +2016-08-19 22:19:07,3599.0,12.0796, +2016-08-19 22:29:10,3599.0,12.0488, +2016-08-19 22:30:00,,,15.7144 +2016-08-19 22:39:13,3599.0,12.0785, +2016-08-19 22:45:00,,,15.713 +2016-08-19 22:49:16,3599.0,12.0192, +2016-08-19 22:59:19,3599.0,12.0785, +2016-08-19 23:00:00,,,15.7779 +2016-08-19 23:09:21,3599.0,12.0488, +2016-08-19 23:15:00,,,15.713 +2016-08-19 23:19:24,3599.0,12.0488, +2016-08-19 23:29:27,3599.0,12.0499, +2016-08-19 23:30:00,,,15.7793 +2016-08-19 23:39:29,3599.0,12.0796, +2016-08-19 23:45:00,,,15.7144 +2016-08-19 23:49:32,3599.0,12.0478, +2016-08-19 23:59:35,3599.0,12.0478, +2016-08-20 00:00:00,,,15.713 +2016-08-20 00:09:38,3599.0,12.0488, +2016-08-20 00:15:00,,,15.7158 +2016-08-20 00:19:40,3599.0,12.0488, +2016-08-20 00:29:43,3599.0,12.0796, +2016-08-20 00:30:00,,,15.7469 +2016-08-20 00:39:46,3599.0,12.0774, +2016-08-20 00:45:00,,,15.6806 +2016-08-20 00:49:49,3599.0,12.0817, +2016-08-20 00:59:51,3599.0,12.0478, +2016-08-20 01:00:00,,,15.7469 +2016-08-20 01:09:54,3599.0,12.0488, +2016-08-20 01:15:00,,,15.713 +2016-08-20 01:19:57,3599.0,12.0499, +2016-08-20 01:30:00,3599.0,12.0488,15.713 +2016-08-20 01:40:02,3599.0,12.0488, +2016-08-20 01:45:00,,,15.7144 +2016-08-20 01:50:05,3599.0,12.0488, +2016-08-20 02:00:00,,,15.713 +2016-08-20 02:00:08,3599.0,12.0774, +2016-08-20 02:10:10,3599.0,12.0488, +2016-08-20 02:15:00,,,15.7144 +2016-08-20 02:20:13,3599.0,12.0478, +2016-08-20 02:30:00,,,15.713 +2016-08-20 02:30:16,3599.0,12.0488, +2016-08-20 02:40:18,3599.0,12.0478, +2016-08-20 02:45:00,,,15.6482 +2016-08-20 02:50:21,3599.0,12.0499, +2016-08-20 03:00:00,,,15.713 +2016-08-20 03:00:24,3599.0,12.0785, +2016-08-20 03:10:26,3598.0,12.0478, +2016-08-20 03:15:00,,,15.7455 +2016-08-20 03:20:29,3598.0,12.0499, +2016-08-20 03:30:00,,,15.7158 +2016-08-20 03:30:32,3598.0,12.0488, +2016-08-20 03:40:35,3598.0,12.0488, +2016-08-20 03:45:00,,,15.7144 +2016-08-20 03:50:37,3598.0,12.0796, +2016-08-20 04:00:00,,,15.713 +2016-08-20 04:00:40,3598.0,12.0796, +2016-08-20 04:10:43,3598.0,12.0488, +2016-08-20 04:15:00,,,15.7455 +2016-08-20 04:20:45,3598.0,12.0488, +2016-08-20 04:30:00,,,15.7469 +2016-08-20 04:30:48,3598.0,12.0796, +2016-08-20 04:40:51,3598.0,12.0478, +2016-08-20 04:45:00,,,15.7158 +2016-08-20 04:50:53,3598.0,12.0488, +2016-08-20 05:00:00,,,15.713 +2016-08-20 05:00:56,3597.0,12.0785, +2016-08-20 05:10:58,3598.0,12.0478, +2016-08-20 05:15:00,,,15.7807 +2016-08-20 05:21:01,3597.0,12.0488, +2016-08-20 05:30:00,,,15.713 +2016-08-20 05:31:04,3597.0,12.0499, +2016-08-20 05:41:06,3597.0,12.0785, +2016-08-20 05:45:00,,,15.713 +2016-08-20 05:51:09,3596.0,12.0488, +2016-08-20 06:00:00,,,15.713 +2016-08-20 06:01:11,3595.0,12.0785, +2016-08-20 06:11:13,3595.0,12.0796, +2016-08-20 06:15:00,,,15.713 +2016-08-20 06:21:16,3595.0,12.0742, +2016-08-20 06:30:00,,,15.713 +2016-08-20 06:31:18,3595.0,12.0499, +2016-08-20 06:41:21,3595.0,12.0488, +2016-08-20 06:45:00,,,15.7469 +2016-08-20 06:51:23,3595.0,12.0488, +2016-08-20 07:00:00,,,15.7469 +2016-08-20 07:01:26,3595.0,12.0467, +2016-08-20 07:11:29,3595.0,12.0774, +2016-08-20 07:15:00,,,15.7483 +2016-08-20 07:21:31,3595.0,12.0456, +2016-08-20 07:30:00,,,15.7469 +2016-08-20 07:31:34,3595.0,12.0488, +2016-08-20 07:41:36,3595.0,12.0446, +2016-08-20 07:45:00,,,15.7469 +2016-08-20 07:51:39,3595.0,12.0753, +2016-08-20 08:00:00,,,15.7455 +2016-08-20 08:01:42,3596.0,12.0456, +2016-08-20 08:11:44,3595.0,12.0753, +2016-08-20 08:15:00,,,15.7144 +2016-08-20 08:21:47,3596.0,12.0456, +2016-08-20 08:30:00,,,15.7469 +2016-08-20 08:31:50,3597.0,12.0785, +2016-08-20 08:41:52,3597.0,12.0467, +2016-08-20 08:45:00,,,15.7469 +2016-08-20 08:51:55,3598.0,12.0446, +2016-08-20 09:00:00,,,15.713 +2016-08-20 09:01:57,3598.0,12.0467, +2016-08-20 09:12:00,3598.0,12.0467, +2016-08-20 09:15:00,,,15.7469 +2016-08-20 09:22:03,3598.0,12.0753, +2016-08-20 09:30:00,,,15.7455 +2016-08-20 09:32:05,3598.0,12.0753, +2016-08-20 09:42:08,3598.0,12.0488, +2016-08-20 09:45:00,,,15.7455 +2016-08-20 09:52:10,3599.0,12.0456, +2016-08-20 10:00:00,,,15.6496 +2016-08-20 10:02:13,3599.0,12.0456, +2016-08-20 10:12:16,3599.0,12.0742, +2016-08-20 10:15:00,,,15.6806 +2016-08-20 10:22:18,3599.0,12.0753, +2016-08-20 10:30:00,,,15.6806 +2016-08-20 10:32:21,3599.0,12.0456, +2016-08-20 10:42:24,3599.0,12.0499, +2016-08-20 10:45:00,,,15.6482 +2016-08-20 10:52:26,3599.0,12.0796, +2016-08-20 11:00:00,,,15.6482 +2016-08-20 11:02:29,3599.0,12.0785, +2016-08-20 11:12:32,3599.0,12.0785, +2016-08-20 11:15:00,,,15.6482 +2016-08-20 11:22:34,3599.0,12.0774, +2016-08-20 11:30:00,,,15.6482 +2016-08-20 11:32:37,3599.0,12.0478, +2016-08-20 11:42:40,3599.0,11.9611, +2016-08-20 11:45:00,,,15.6482 +2016-08-20 11:52:43,3599.0,12.0478, +2016-08-20 12:00:00,,,15.6482 +2016-08-20 12:02:45,3599.0,12.0521, +2016-08-20 12:12:48,3599.0,12.0499, +2016-08-20 12:15:00,,,15.6496 +2016-08-20 12:22:51,3599.0,12.0521, +2016-08-20 12:30:00,,,15.6806 +2016-08-20 12:32:54,3599.0,12.0828, +2016-08-20 12:42:57,3599.0,12.0521, +2016-08-20 12:45:00,,,15.651 +2016-08-20 12:52:59,3599.0,11.9928, +2016-08-20 13:00:00,,,15.6482 +2016-08-20 13:03:02,3599.0,11.9632, +2016-08-20 13:13:05,3599.0,11.9632, +2016-08-20 13:15:00,,,15.6482 +2016-08-20 13:23:08,3599.0,11.9928, +2016-08-20 13:30:00,,,15.6159 +2016-08-20 13:33:10,3599.0,11.9664, +2016-08-20 13:43:13,3599.0,11.9654, +2016-08-20 13:45:00,,,15.6496 +2016-08-20 13:53:16,3599.0,11.9654, +2016-08-20 14:00:00,,,15.682 +2016-08-20 14:03:19,3599.0,11.9654, +2016-08-20 14:13:22,3599.0,11.9664, +2016-08-20 14:15:00,,,15.6496 +2016-08-20 14:23:25,3599.0,11.996, +2016-08-20 14:30:00,,,15.6482 +2016-08-20 14:33:28,3599.0,11.9664, +2016-08-20 14:43:31,3599.0,11.995, +2016-08-20 14:45:00,,,15.6482 +2016-08-20 14:53:34,3599.0,11.9664, +2016-08-20 15:00:00,,,15.6482 +2016-08-20 15:03:37,3599.0,11.996, +2016-08-20 15:13:40,3599.0,11.9664, +2016-08-20 15:15:00,,,15.6482 +2016-08-20 15:23:43,3599.0,11.9654, +2016-08-20 15:30:00,,,15.6159 +2016-08-20 15:33:55,3599.0,11.9664, +2016-08-20 15:43:57,3599.0,11.9654, +2016-08-20 15:45:00,,,15.6524 +2016-08-20 15:54:00,3599.0,11.9664, +2016-08-20 16:00:00,,,15.6482 +2016-08-20 16:04:03,3599.0,11.9654, +2016-08-20 16:14:06,3599.0,11.9664, +2016-08-20 16:15:00,,,15.6496 +2016-08-20 16:24:09,3599.0,11.9654, +2016-08-20 16:30:00,,,15.6482 +2016-08-20 16:34:12,3599.0,11.9664, +2016-08-20 16:44:15,3599.0,11.995, +2016-08-20 16:45:00,,,15.6482 +2016-08-20 16:54:17,3599.0,11.9696, +2016-08-20 17:00:00,,,15.6482 +2016-08-20 17:04:20,3599.0,11.9696, +2016-08-20 17:14:23,3599.0,11.9696, +2016-08-20 17:15:00,,,15.6524 +2016-08-20 17:24:26,3599.0,11.9992, +2016-08-20 17:30:00,,,15.6848 +2016-08-20 17:34:29,3599.0,11.9992, +2016-08-20 17:44:31,3599.0,11.9686, +2016-08-20 17:45:00,,,15.682 +2016-08-20 17:54:34,3599.0,11.9686, +2016-08-20 18:00:00,,,15.6524 +2016-08-20 18:04:37,3599.0,11.9686, +2016-08-20 18:14:39,3599.0,11.9696, +2016-08-20 18:15:00,,,15.6524 +2016-08-20 18:24:50,3599.0,11.9686, +2016-08-20 18:30:00,,,15.6524 +2016-08-20 18:34:52,3599.0,11.9696, +2016-08-20 18:44:55,3599.0,11.9696, +2016-08-20 18:45:00,,,15.6538 +2016-08-20 18:54:58,3599.0,11.9728, +2016-08-20 19:00:00,,,15.6524 +2016-08-20 19:05:01,3599.0,11.9686, +2016-08-20 19:15:00,,,15.6524 +2016-08-20 19:15:03,3599.0,11.9686, +2016-08-20 19:25:06,3599.0,11.9718, +2016-08-20 19:30:00,,,15.6524 +2016-08-20 19:35:09,3599.0,11.9696, +2016-08-20 19:45:00,,,15.6524 +2016-08-20 19:45:12,3599.0,12.0024, +2016-08-20 19:55:15,3599.0,11.9728, +2016-08-20 20:00:00,,,15.6538 +2016-08-20 20:05:17,3599.0,11.9696, +2016-08-20 20:15:00,,,15.6538 +2016-08-20 20:15:20,3599.0,11.9728, +2016-08-20 20:25:23,3599.0,11.9728, +2016-08-20 20:30:00,,,15.6862 +2016-08-20 20:35:25,3598.0,11.9728, +2016-08-20 20:45:00,,,15.6524 +2016-08-20 20:45:28,3598.0,11.9728, +2016-08-20 20:55:31,3598.0,11.9728, +2016-08-20 21:00:00,,,15.6524 +2016-08-20 21:05:34,3598.0,12.0024, +2016-08-20 21:15:00,,,15.6538 +2016-08-20 21:15:36,3598.0,11.9728, +2016-08-20 21:25:39,3598.0,11.9686, +2016-08-20 21:30:00,,,15.6538 +2016-08-20 21:35:42,3598.0,11.9992, +2016-08-20 21:45:00,,,15.6538 +2016-08-20 21:45:45,3598.0,12.0617, +2016-08-20 21:55:47,3598.0,12.0617, +2016-08-20 22:00:00,,,15.6524 +2016-08-20 22:05:50,3597.0,12.0882, +2016-08-20 22:15:00,,,15.658 +2016-08-20 22:15:53,3597.0,12.0574, +2016-08-20 22:25:56,3597.0,12.0882, +2016-08-20 22:30:00,,,15.6566 +2016-08-20 22:35:58,3596.0,12.0574, +2016-08-20 22:45:00,,,15.6566 +2016-08-20 22:46:01,3595.0,12.0574, +2016-08-20 22:56:04,3595.0,12.0585, +2016-08-20 23:00:00,,,15.658 +2016-08-20 23:06:07,3595.0,12.0585, +2016-08-20 23:15:00,,,15.658 +2016-08-20 23:16:09,3595.0,12.0585, +2016-08-20 23:26:12,3595.0,12.0882, +2016-08-20 23:30:00,,,15.6566 +2016-08-20 23:36:15,3595.0,12.0574, +2016-08-20 23:45:00,,,15.6566 +2016-08-20 23:46:18,3594.0,12.0871, +2016-08-20 23:56:20,3593.0,12.0585, +2016-08-21 00:00:00,,,15.658 +2016-08-21 00:15:00,,, +2016-08-21 00:30:00,,, +2016-08-21 00:45:00,,, +2016-08-21 01:00:00,,,15.6904 +2016-08-21 01:06:38,3591.0,12.0553, +2016-08-21 01:15:00,,,15.658 +2016-08-21 01:16:41,3591.0,12.0553, +2016-08-21 01:26:44,3590.0,12.0542, +2016-08-21 01:30:00,,,15.6566 +2016-08-21 01:36:46,3590.0,12.0553, +2016-08-21 01:45:00,,,15.6566 +2016-08-21 01:46:49,3590.0,12.0553, +2016-08-21 01:56:52,3589.0,12.0542, +2016-08-21 02:00:00,,,15.658 +2016-08-21 02:06:55,3588.0,12.0553, +2016-08-21 02:15:00,,,15.658 +2016-08-21 02:16:57,3588.0,12.0542, +2016-08-21 02:27:00,3588.0,12.0553, +2016-08-21 02:30:00,,,15.658 +2016-08-21 02:37:03,3588.0,12.0553, +2016-08-21 02:45:00,,,15.6566 +2016-08-21 02:47:06,3588.0,12.0849, +2016-08-21 02:57:08,3587.0,12.0553, +2016-08-21 03:00:00,,,15.6904 +2016-08-21 03:07:11,3587.0,12.0553, +2016-08-21 03:15:00,,,15.6566 +2016-08-21 03:17:14,3587.0,12.0849, +2016-08-21 03:27:17,3586.0,12.0542, +2016-08-21 03:30:00,,,15.6566 +2016-08-21 03:37:19,3586.0,12.0542, +2016-08-21 03:45:00,,,15.6904 +2016-08-21 03:47:22,3586.0,12.0553, +2016-08-21 03:57:25,3586.0,12.0553, +2016-08-21 04:00:00,,,15.6608 +2016-08-21 04:07:27,3585.0,12.0849, +2016-08-21 04:15:00,,,15.6566 +2016-08-21 04:17:30,3585.0,12.0849, +2016-08-21 04:27:33,3585.0,12.0849, +2016-08-21 04:30:00,,,15.658 +2016-08-21 04:37:35,3585.0,12.0553, +2016-08-21 04:45:00,,,15.6566 +2016-08-21 04:47:38,3585.0,12.0849, +2016-08-21 04:57:41,3584.0,12.0839, +2016-08-21 05:00:00,,,15.658 +2016-08-21 05:07:43,3584.0,12.0521, +2016-08-21 05:15:00,,,15.6904 +2016-08-21 05:17:46,3584.0,12.0521, +2016-08-21 05:27:48,3583.0,12.0817, +2016-08-21 05:30:00,,,15.6608 +2016-08-21 05:37:51,3583.0,12.0521, +2016-08-21 05:45:00,,,15.6622 +2016-08-21 05:47:54,3583.0,12.0806, +2016-08-21 05:57:56,3582.0,12.0817, +2016-08-21 06:00:00,,,15.6946 +2016-08-21 06:07:59,3582.0,12.0785, +2016-08-21 06:15:00,,,15.6608 +2016-08-21 06:18:01,3582.0,12.0488, +2016-08-21 06:28:04,3581.0,12.0488, +2016-08-21 06:30:00,,,15.6622 +2016-08-21 06:38:07,3582.0,12.0488, +2016-08-21 06:45:00,,,15.658 +2016-08-21 06:48:09,3582.0,12.0488, +2016-08-21 06:58:12,3581.0,12.0478, +2016-08-21 07:00:00,,,15.6622 +2016-08-21 07:08:14,3582.0,12.0796, +2016-08-21 07:15:00,,,15.658 +2016-08-21 07:18:17,3582.0,12.0499, +2016-08-21 07:28:19,3582.0,12.0753, +2016-08-21 07:30:00,,,15.6946 +2016-08-21 07:38:22,3582.0,12.0753, +2016-08-21 07:45:00,,,15.6608 +2016-08-21 07:48:25,3583.0,12.0456, +2016-08-21 07:58:27,3583.0,12.0753, +2016-08-21 08:00:00,,,15.658 +2016-08-21 08:08:30,3584.0,12.0467, +2016-08-21 08:15:00,,,15.6622 +2016-08-21 08:18:32,3585.0,12.0763, +2016-08-21 08:28:35,3585.0,12.0456, +2016-08-21 08:30:00,,,15.6622 +2016-08-21 08:38:37,3585.0,12.0753, +2016-08-21 08:45:00,,,15.6608 +2016-08-21 08:48:40,3586.0,12.0467, +2016-08-21 08:58:43,3587.0,12.0753, +2016-08-21 09:00:00,,,15.6566 +2016-08-21 09:08:45,3588.0,12.0456, +2016-08-21 09:15:00,,,15.6566 +2016-08-21 09:18:48,3588.0,12.0446, +2016-08-21 09:28:50,3588.0,12.0456, +2016-08-21 09:30:00,,,15.5933 +2016-08-21 09:38:52,3589.0,12.0456, +2016-08-21 09:45:00,,,15.5638 +2016-08-21 09:48:55,3590.0,12.0456, +2016-08-21 09:58:57,3591.0,12.0456, +2016-08-21 10:00:00,,,15.5652 +2016-08-21 10:09:00,3592.0,11.9569, +2016-08-21 10:15:00,,,15.561 +2016-08-21 10:19:03,3593.0,11.9569, +2016-08-21 10:29:06,3594.0,11.9569, +2016-08-21 10:30:00,,,15.5638 +2016-08-21 10:39:09,3595.0,11.9569, +2016-08-21 10:45:00,,,15.5596 +2016-08-21 10:49:11,3596.0,11.9569, +2016-08-21 10:59:14,3597.0,11.9558, +2016-08-21 11:00:00,,,15.5638 +2016-08-21 11:09:17,3598.0,11.9569, +2016-08-21 11:15:00,,,15.5638 +2016-08-21 11:19:20,3598.0,11.9854, +2016-08-21 11:29:22,3598.0,11.9569, +2016-08-21 11:30:00,,,15.561 +2016-08-21 11:39:25,3598.0,11.9569, +2016-08-21 11:45:00,,,15.561 +2016-08-21 11:49:27,3598.0,11.9579, +2016-08-21 11:59:30,3598.0,11.9864, +2016-08-21 12:00:00,,,15.5596 +2016-08-21 12:09:33,3598.0,11.9569, +2016-08-21 12:15:00,,,15.561 +2016-08-21 12:19:36,3598.0,11.9864, +2016-08-21 12:29:38,3599.0,11.9569, +2016-08-21 12:30:00,,,15.5919 +2016-08-21 12:39:41,3599.0,11.9558, +2016-08-21 12:45:00,,,15.5596 +2016-08-21 12:49:44,3599.0,11.9558, +2016-08-21 12:59:46,3599.0,11.9569, +2016-08-21 13:00:00,,,15.5596 +2016-08-21 13:09:49,3599.0,11.9569, +2016-08-21 13:15:00,,,15.561 +2016-08-21 13:19:52,3599.0,11.9854, +2016-08-21 13:29:54,3599.0,11.9569, +2016-08-21 13:30:00,,,15.5933 +2016-08-21 13:39:57,3599.0,11.8683, +2016-08-21 13:45:00,,,15.561 +2016-08-21 13:50:00,3599.0,11.8694, +2016-08-21 14:00:00,,,15.5596 +2016-08-21 14:00:03,3599.0,11.8683, +2016-08-21 14:10:05,3599.0,11.8672, +2016-08-21 14:15:00,,,15.561 +2016-08-21 14:20:08,3599.0,11.8683, +2016-08-21 14:30:00,,,15.5919 +2016-08-21 14:30:11,3599.0,11.8999, +2016-08-21 14:40:14,3599.0,11.8967, +2016-08-21 14:45:00,,,15.561 +2016-08-21 14:50:16,3599.0,11.8409, +2016-08-21 15:00:00,,,15.5596 +2016-08-21 15:00:19,3599.0,11.901, +2016-08-21 15:10:22,3599.0,11.8715, +2016-08-21 15:15:00,,,15.5596 +2016-08-21 15:20:24,3599.0,11.901, +2016-08-21 15:30:00,,,15.5596 +2016-08-21 15:30:26,3599.0,11.8704, +2016-08-21 15:40:37,3599.0,11.8715, +2016-08-21 15:45:00,,,15.5596 +2016-08-21 15:50:40,3599.0,11.8704, +2016-08-21 16:00:00,,,15.561 +2016-08-21 16:00:42,3599.0,11.8704, +2016-08-21 16:10:45,3599.0,11.8715, +2016-08-21 16:15:00,,,15.561 +2016-08-21 16:20:48,3599.0,11.8715, +2016-08-21 16:30:00,,,15.5596 +2016-08-21 16:30:50,3599.0,11.8715, +2016-08-21 16:40:53,3599.0,11.8715, +2016-08-21 16:45:00,,,15.561 +2016-08-21 16:50:56,3599.0,11.8746, +2016-08-21 17:00:00,,,15.5596 +2016-08-21 17:00:59,3599.0,11.8704, +2016-08-21 17:11:01,3599.0,11.8704, +2016-08-21 17:15:00,,,15.5596 +2016-08-21 17:21:04,3599.0,11.8736, +2016-08-21 17:30:00,,,15.5596 +2016-08-21 17:31:07,3599.0,11.8704, +2016-08-21 17:41:09,3599.0,11.8746, +2016-08-21 17:45:00,,,15.5933 +2016-08-21 17:51:12,3599.0,11.8715, +2016-08-21 18:00:00,,,15.5596 +2016-08-21 18:01:15,3598.0,11.9042, +2016-08-21 18:11:17,3599.0,11.8746, +2016-08-21 18:15:00,,,15.5596 +2016-08-21 18:21:20,3599.0,11.8746, +2016-08-21 18:30:00,,,15.5596 +2016-08-21 18:31:23,3599.0,11.8746, +2016-08-21 18:41:27,3599.0,11.8746, +2016-08-21 18:45:00,,,15.5933 +2016-08-21 18:51:30,3599.0,11.8746, +2016-08-21 19:00:00,,,15.561 +2016-08-21 19:01:33,3599.0,11.9031, +2016-08-21 19:11:36,3598.0,11.8746, +2016-08-21 19:15:00,,,15.561 +2016-08-21 19:21:39,3599.0,11.8736, +2016-08-21 19:30:00,,,15.561 +2016-08-21 19:31:42,3598.0,11.8746, +2016-08-21 19:41:44,3598.0,11.8746, +2016-08-21 19:45:00,,,15.5596 +2016-08-21 19:51:47,3598.0,11.8736, +2016-08-21 20:00:00,,,15.5933 +2016-08-21 20:01:50,3598.0,11.8746, +2016-08-21 20:11:53,3598.0,11.8746, +2016-08-21 20:15:00,,,15.5596 +2016-08-21 20:21:55,3598.0,11.9042, +2016-08-21 20:30:00,,,15.5596 +2016-08-21 20:31:58,3598.0,11.9031, +2016-08-21 20:42:00,3598.0,11.8746, +2016-08-21 20:45:00,,,15.5596 +2016-08-21 20:52:03,3598.0,11.8746, +2016-08-21 21:00:00,,,15.561 +2016-08-21 21:02:06,3597.0,11.8746, +2016-08-21 21:12:08,3597.0,11.8746, +2016-08-21 21:15:00,,,15.5596 +2016-08-21 21:22:11,3597.0,11.8746, +2016-08-21 21:30:00,,,15.5596 +2016-08-21 21:32:13,3596.0,11.9042, +2016-08-21 21:42:16,3596.0,11.8746, +2016-08-21 21:45:00,,,15.5596 +2016-08-21 21:52:19,3595.0,11.8746, +2016-08-21 22:00:00,,,15.561 +2016-08-21 22:02:21,3595.0,11.8736, +2016-08-21 22:12:24,3595.0,11.8746, +2016-08-21 22:15:00,,,15.561 +2016-08-21 22:22:26,3595.0,11.8746, +2016-08-21 22:30:00,,,15.5919 +2016-08-21 22:32:29,3594.0,11.901, +2016-08-21 22:42:32,3593.0,11.902, +2016-08-21 22:45:00,,,15.5919 +2016-08-21 22:52:34,3593.0,11.901, +2016-08-21 23:00:00,,,15.561 +2016-08-21 23:02:44,3592.0,11.8715, +2016-08-21 23:12:46,3592.0,11.8715, +2016-08-21 23:15:00,,,15.561 +2016-08-21 23:22:49,3592.0,11.8715, +2016-08-21 23:30:00,,,15.5933 +2016-08-21 23:32:52,3592.0,11.8725, +2016-08-21 23:42:54,3591.0,11.8999, +2016-08-21 23:45:00,,,15.5596 +2016-08-21 23:52:57,3590.0,11.8715, +2016-08-22 00:00:00,,,15.561 +2016-08-22 00:02:59,3590.0,11.8715, +2016-08-22 00:13:02,3589.0,11.8704, +2016-08-22 00:15:00,,,15.561 +2016-08-22 00:23:05,3588.0,11.901, +2016-08-22 00:30:00,,,15.561 +2016-08-22 00:33:07,3588.0,11.8683, +2016-08-22 00:43:10,3588.0,11.8683, +2016-08-22 00:45:00,,,15.5638 +2016-08-22 00:53:12,3588.0,11.8978, +2016-08-22 01:00:00,,,15.561 +2016-08-22 01:03:15,3588.0,11.8978, +2016-08-22 01:13:17,3588.0,11.8683, +2016-08-22 01:15:00,,,15.561 +2016-08-22 01:23:20,3587.0,11.8694, +2016-08-22 01:30:00,,,15.5596 +2016-08-22 01:33:22,3586.0,11.8672, +2016-08-22 01:43:25,3586.0,11.8694, +2016-08-22 01:45:00,,,15.5652 +2016-08-22 01:53:28,3586.0,11.8967, +2016-08-22 02:00:00,,,15.5638 +2016-08-22 02:03:30,3586.0,11.8683, +2016-08-22 02:13:33,3586.0,11.8967, +2016-08-22 02:15:00,,,15.561 +2016-08-22 02:23:36,3586.0,11.8683, +2016-08-22 02:30:00,,,15.5596 +2016-08-22 02:33:38,3586.0,11.8672, +2016-08-22 02:43:41,3585.0,11.8672, +2016-08-22 02:45:00,,,15.5596 +2016-08-22 02:53:43,3586.0,11.8694, +2016-08-22 03:00:00,,,15.5638 +2016-08-22 03:03:46,3586.0,11.8978, +2016-08-22 03:13:49,3585.0,11.8683, +2016-08-22 03:15:00,,,15.5596 +2016-08-22 03:23:51,3585.0,11.8672, +2016-08-22 03:30:00,,,15.5596 +2016-08-22 03:33:54,3586.0,11.8683, +2016-08-22 03:43:56,3585.0,11.8683, +2016-08-22 03:45:00,,,15.5933 +2016-08-22 03:53:58,3586.0,11.8683, +2016-08-22 04:00:00,,,15.5933 +2016-08-22 04:04:00,3585.0,11.8978, +2016-08-22 04:14:03,3585.0,11.8683, +2016-08-22 04:15:00,,,15.5919 +2016-08-22 04:24:05,3585.0,11.8683, +2016-08-22 04:30:00,,,15.5596 +2016-08-22 04:34:08,3585.0,11.8683, +2016-08-22 04:44:10,3585.0,11.8989, +2016-08-22 04:45:00,,,15.561 +2016-08-22 04:54:13,3585.0,11.8989, +2016-08-22 05:00:00,,,15.5919 +2016-08-22 05:04:15,3584.0,11.8694, +2016-08-22 05:14:18,3584.0,11.8978, +2016-08-22 05:15:00,,,15.5933 +2016-08-22 05:24:20,3584.0,11.8683, +2016-08-22 05:30:00,,,15.561 +2016-08-22 05:34:23,3584.0,11.8683, +2016-08-22 05:44:25,3584.0,11.8672, +2016-08-22 05:45:00,,,15.561 +2016-08-22 05:54:28,3584.0,11.8399, +2016-08-22 06:00:00,,,15.5919 +2016-08-22 06:04:30,3583.0,11.8683, +2016-08-22 06:14:33,3583.0,11.8683, +2016-08-22 06:15:00,,,15.5596 +2016-08-22 06:24:36,3583.0,11.8672, +2016-08-22 06:30:00,,,15.5933 +2016-08-22 06:34:38,3583.0,11.9273, +2016-08-22 06:44:41,3583.0,11.8672, +2016-08-22 06:45:00,,,15.5596 +2016-08-22 06:54:43,3583.0,11.8989, +2016-08-22 07:00:00,,,15.561 +2016-08-22 07:04:46,3583.0,11.8651, +2016-08-22 07:14:48,3584.0,11.8946, +2016-08-22 07:15:00,,,15.5596 +2016-08-22 07:24:51,3585.0,11.8683, +2016-08-22 07:30:00,,,15.5933 +2016-08-22 07:34:53,3585.0,11.8651, +2016-08-22 07:44:56,3584.0,11.8662, +2016-08-22 07:45:00,,,15.5596 +2016-08-22 07:54:58,3585.0,11.8651, +2016-08-22 08:00:00,,,15.561 +2016-08-22 08:05:01,3586.0,11.8946, +2016-08-22 08:15:00,,,15.561 +2016-08-22 08:15:03,3586.0,11.8651, +2016-08-22 08:25:06,3586.0,11.8662, +2016-08-22 08:30:00,,,15.561 +2016-08-22 08:35:09,3587.0,11.8651, +2016-08-22 08:45:00,,,15.561 +2016-08-22 08:45:11,3587.0,11.8662, +2016-08-22 08:55:14,3588.0,11.8651, +2016-08-22 09:00:00,,,15.5596 +2016-08-22 09:05:16,3588.0,11.8662, +2016-08-22 09:15:00,,,15.5596 +2016-08-22 09:15:19,3589.0,11.8651, +2016-08-22 09:25:21,3590.0,11.8946, +2016-08-22 09:30:00,,,15.5933 +2016-08-22 09:35:24,3592.0,11.8651, +2016-08-22 09:45:00,,,15.5596 +2016-08-22 09:45:27,3593.0,11.8651, +2016-08-22 09:55:30,3594.0,11.8662, +2016-08-22 10:00:00,,,15.5596 +2016-08-22 10:05:32,3595.0,11.8651, +2016-08-22 10:15:00,,,15.5596 +2016-08-22 10:15:35,3597.0,11.8946, +2016-08-22 10:25:38,3598.0,11.8946, +2016-08-22 10:30:00,,,15.561 +2016-08-22 10:35:40,3598.0,11.8946, +2016-08-22 10:45:00,,,15.5596 +2016-08-22 10:45:43,3598.0,11.8662, +2016-08-22 10:55:46,3598.0,11.8651, +2016-08-22 11:00:00,,,15.5933 +2016-08-22 11:05:48,3599.0,11.8651, +2016-08-22 11:15:00,,,15.5596 +2016-08-22 11:15:51,3599.0,11.8651, +2016-08-22 11:25:54,3599.0,11.8651, +2016-08-22 11:30:00,,,15.5288 +2016-08-22 11:35:57,3599.0,11.8651, +2016-08-22 11:45:00,,,15.5596 +2016-08-22 11:45:59,3599.0,11.8651, +2016-08-22 11:56:02,3599.0,11.8651, +2016-08-22 12:00:00,,,15.5596 +2016-08-22 12:06:05,3599.0,11.8651, +2016-08-22 12:15:00,,,15.5596 +2016-08-22 12:16:08,3599.0,11.8683, +2016-08-22 12:26:11,3599.0,11.8651, +2016-08-22 12:30:00,,,15.5596 +2016-08-22 12:36:13,3599.0,11.8672, +2016-08-22 12:45:00,,,15.463 +2016-08-22 12:46:16,3599.0,11.8683, +2016-08-22 13:00:00,,,15.4644 +2016-08-22 13:06:28,3599.0,11.7789, +2016-08-22 13:15:00,,,15.4308 +2016-08-22 13:16:30,3599.0,11.8094, +2016-08-22 13:26:33,3599.0,11.8094, +2016-08-22 13:30:00,,,15.4322 +2016-08-22 13:36:36,3599.0,11.7789, +2016-08-22 13:45:00,,,15.4308 +2016-08-22 13:46:38,3599.0,11.8094, +2016-08-22 13:56:41,3599.0,11.781, +2016-08-22 14:00:00,,,15.463 +2016-08-22 14:06:44,3599.0,11.8094, +2016-08-22 14:15:00,,,15.463 +2016-08-22 14:16:46,3599.0,11.8094, +2016-08-22 14:26:49,3599.0,11.8094, +2016-08-22 14:30:00,,,15.4644 +2016-08-22 14:36:52,3599.0,11.8094, +2016-08-22 14:45:00,,,15.463 +2016-08-22 14:46:55,3599.0,11.8094, +2016-08-22 14:56:58,3599.0,11.7789, +2016-08-22 15:00:00,,,15.4308 +2016-08-22 15:07:00,3599.0,11.8104, +2016-08-22 15:15:00,,,15.4602 +2016-08-22 15:17:03,3599.0,11.8094, +2016-08-22 15:27:06,3599.0,11.7789, +2016-08-22 15:30:00,,,15.463 +2016-08-22 15:37:09,3599.0,11.8094, +2016-08-22 15:45:00,,,15.4589 +2016-08-22 15:47:11,3599.0,11.78, +2016-08-22 15:57:14,3599.0,11.8083, +2016-08-22 16:00:00,,,15.463 +2016-08-22 16:07:17,3599.0,11.7789, +2016-08-22 16:15:00,,,15.4589 +2016-08-22 16:17:20,3599.0,11.7821, +2016-08-22 16:27:22,3599.0,11.8125, +2016-08-22 16:30:00,,,15.4322 +2016-08-22 16:37:25,3599.0,11.7547, +2016-08-22 16:45:00,,,15.463 +2016-08-22 16:47:28,3599.0,11.7841, +2016-08-22 16:57:31,3599.0,11.8115, +2016-08-22 17:00:00,,,15.4589 +2016-08-22 17:07:33,3599.0,11.8115, +2016-08-22 17:15:00,,,15.4589 +2016-08-22 17:17:36,3599.0,11.7862, +2016-08-22 17:27:39,3599.0,11.8157, +2016-08-22 17:30:00,,,15.463 +2016-08-22 17:37:42,3599.0,11.8157, +2016-08-22 17:45:00,,,15.4589 +2016-08-22 17:47:45,3599.0,11.8146, +2016-08-22 17:57:47,3599.0,11.7568, +2016-08-22 18:00:00,,,15.4267 +2016-08-22 18:07:50,3599.0,11.7862, +2016-08-22 18:15:00,,,15.4322 +2016-08-22 18:17:53,3599.0,11.8157, +2016-08-22 18:27:56,3599.0,11.8157, +2016-08-22 18:30:00,,,15.4644 +2016-08-22 18:37:58,3599.0,11.7894, +2016-08-22 18:45:00,,,15.463 +2016-08-22 18:48:01,3599.0,11.8178, +2016-08-22 18:58:04,3599.0,11.7883, +2016-08-22 19:00:00,,,15.463 +2016-08-22 19:08:07,3599.0,11.7883, +2016-08-22 19:15:00,,,15.4589 +2016-08-22 19:18:09,3599.0,11.8178, +2016-08-22 19:28:12,3599.0,11.8178, +2016-08-22 19:30:00,,,15.4644 +2016-08-22 19:38:15,3599.0,11.8178, +2016-08-22 19:45:00,,,15.4644 +2016-08-22 19:48:18,3599.0,11.8188, +2016-08-22 19:58:20,3599.0,11.8188, +2016-08-22 20:00:00,,,15.463 +2016-08-22 20:08:23,3599.0,11.7894, +2016-08-22 20:15:00,,,15.463 +2016-08-22 20:18:26,3599.0,11.7894, +2016-08-22 20:28:29,3599.0,11.8178, +2016-08-22 20:30:00,,,15.4644 +2016-08-22 20:38:31,3599.0,11.8188, +2016-08-22 20:45:00,,,15.4308 +2016-08-22 20:48:34,3599.0,11.8188, +2016-08-22 20:58:37,3599.0,11.8188, +2016-08-22 21:00:00,,,15.4308 +2016-08-22 21:08:39,3599.0,11.8178, +2016-08-22 21:15:00,,,15.4644 +2016-08-22 21:18:42,3599.0,11.7894, +2016-08-22 21:28:45,3599.0,11.8188, +2016-08-22 21:30:00,,,15.463 +2016-08-22 21:38:47,3599.0,11.8178, +2016-08-22 21:45:00,,,15.463 +2016-08-22 21:48:50,3599.0,11.8188, +2016-08-22 21:58:54,3599.0,11.8188, +2016-08-22 22:00:00,,,15.4644 +2016-08-22 22:08:58,3599.0,11.8188, +2016-08-22 22:15:00,,,15.463 +2016-08-22 22:19:00,3599.0,11.7894, +2016-08-22 22:29:03,3599.0,11.8188, +2016-08-22 22:30:00,,,15.463 +2016-08-22 22:39:06,3598.0,11.7589, +2016-08-22 22:45:00,,,15.463 +2016-08-22 22:49:09,3598.0,11.8188, +2016-08-22 22:59:12,3599.0,11.8178, +2016-08-22 23:00:00,,,15.463 +2016-08-22 23:09:14,3598.0,11.7894, +2016-08-22 23:15:00,,,15.4644 +2016-08-22 23:19:17,3598.0,11.8188, +2016-08-22 23:29:20,3598.0,11.8178, +2016-08-22 23:30:00,,,15.463 +2016-08-22 23:39:23,3598.0,11.8178, +2016-08-22 23:45:00,,,15.4644 +2016-08-22 23:49:25,3598.0,11.8188, +2016-08-22 23:59:28,3598.0,11.8178, +2016-08-23 00:00:00,,,15.463 +2016-08-23 00:09:31,3598.0,11.8178, +2016-08-23 00:15:00,,,15.4644 +2016-08-23 00:19:34,3598.0,11.8188, +2016-08-23 00:29:36,3598.0,11.8188, +2016-08-23 00:30:00,,,15.4644 +2016-08-23 00:39:39,3598.0,11.8178, +2016-08-23 00:45:00,,,15.4644 +2016-08-23 00:49:42,3598.0,11.8188, +2016-08-23 00:59:44,3598.0,11.7894, +2016-08-23 01:00:00,,,15.463 +2016-08-23 01:09:47,3598.0,11.76, +2016-08-23 01:15:00,,,15.463 +2016-08-23 01:19:50,3598.0,11.7883, +2016-08-23 01:29:52,3597.0,11.7894, +2016-08-23 01:30:00,,,15.4685 +2016-08-23 01:39:55,3597.0,11.8157, +2016-08-23 01:45:00,,,15.4644 +2016-08-23 01:49:58,3597.0,11.8157, +2016-08-23 02:00:00,3597.0,11.8157,15.4644 +2016-08-23 02:10:03,3596.0,11.8178, +2016-08-23 02:15:00,,,15.4644 +2016-08-23 02:20:06,3596.0,11.8188, +2016-08-23 02:30:00,,,15.4685 +2016-08-23 02:30:08,3596.0,11.8188, +2016-08-23 02:40:11,3595.0,11.7852, +2016-08-23 02:45:00,,,15.4671 +2016-08-23 02:50:13,3595.0,11.8157, +2016-08-23 03:00:00,,,15.4644 +2016-08-23 03:00:16,3595.0,11.8157, +2016-08-23 03:10:19,3595.0,11.8157, +2016-08-23 03:15:00,,,15.4671 +2016-08-23 03:20:21,3595.0,11.8746, +2016-08-23 03:30:00,,,15.4644 +2016-08-23 03:30:24,3595.0,11.8746, +2016-08-23 03:40:26,3595.0,11.8746, +2016-08-23 03:45:00,,,15.4322 +2016-08-23 03:50:29,3595.0,11.9042, +2016-08-23 04:00:00,,,15.4965 +2016-08-23 04:00:32,3595.0,11.8746, +2016-08-23 04:10:34,3594.0,11.8746, +2016-08-23 04:15:00,,,15.463 +2016-08-23 04:20:37,3594.0,11.8157, +2016-08-23 04:30:00,,,15.4685 +2016-08-23 04:30:40,3594.0,11.7862, +2016-08-23 04:40:42,3593.0,11.8157, +2016-08-23 04:45:00,,,15.4671 +2016-08-23 04:50:45,3593.0,11.8157, +2016-08-23 05:00:00,,,15.4644 +2016-08-23 05:00:47,3592.0,11.7568, +2016-08-23 05:10:50,3592.0,11.8157, +2016-08-23 05:15:00,,,15.463 +2016-08-23 05:20:53,3592.0,11.8157, +2016-08-23 05:30:00,,,15.4671 +2016-08-23 05:30:55,3592.0,11.7841, +2016-08-23 05:40:58,3592.0,11.7821, +2016-08-23 05:45:00,,,15.4685 +2016-08-23 05:51:01,3592.0,11.8125, +2016-08-23 06:00:00,,,15.4644 +2016-08-23 06:01:03,3592.0,11.7831, +2016-08-23 06:11:06,3592.0,11.8157, +2016-08-23 06:15:00,,,15.4671 +2016-08-23 06:21:08,3592.0,11.8136, +2016-08-23 06:30:00,,,15.4671 +2016-08-23 06:31:11,3592.0,11.7831, +2016-08-23 06:41:13,3592.0,11.8125, +2016-08-23 06:45:00,,,15.4644 +2016-08-23 06:51:16,3592.0,11.8115, +2016-08-23 07:00:00,,,15.4685 +2016-08-23 07:01:18,3592.0,11.8136, +2016-08-23 07:11:20,3592.0,11.8715, +2016-08-23 07:15:00,,,15.4685 +2016-08-23 07:21:23,3592.0,11.8725, +2016-08-23 07:30:00,,,15.4671 +2016-08-23 07:31:25,3593.0,11.8725, +2016-08-23 07:41:28,3593.0,11.8715, +2016-08-23 07:45:00,,,15.4349 +2016-08-23 07:51:30,3594.0,11.8725, +2016-08-23 08:00:00,,,15.4685 +2016-08-23 08:01:33,3595.0,11.8715, +2016-08-23 08:11:36,3595.0,11.8715, +2016-08-23 08:15:00,,,15.4671 +2016-08-23 08:21:38,3595.0,11.8683, +2016-08-23 08:30:00,,,15.4685 +2016-08-23 08:31:41,3596.0,11.8672, +2016-08-23 08:41:44,3596.0,11.8978, +2016-08-23 08:45:00,,,15.4685 +2016-08-23 08:51:47,3597.0,11.8704, +2016-08-23 09:00:00,,,15.3707 +2016-08-23 09:01:49,3598.0,11.8694, +2016-08-23 09:11:52,3598.0,11.8967, +2016-08-23 09:15:00,,,15.3721 +2016-08-23 09:21:55,3598.0,11.901, +2016-08-23 09:30:00,,,15.3707 +2016-08-23 09:31:57,3598.0,11.8683, +2016-08-23 09:42:00,3598.0,11.8704, +2016-08-23 09:45:00,,,15.3707 +2016-08-23 09:52:03,3598.0,11.8672, +2016-08-23 10:00:00,,,15.3707 +2016-08-23 10:02:06,3599.0,11.7841, +2016-08-23 10:12:08,3599.0,11.8115, +2016-08-23 10:15:00,,,15.3721 +2016-08-23 10:22:11,3599.0,11.8094, +2016-08-23 10:30:00,,,15.4001 +2016-08-23 10:32:14,3599.0,11.7821, +2016-08-23 10:42:17,3599.0,11.7841, +2016-08-23 10:45:00,,,15.3666 +2016-08-23 10:52:20,3599.0,11.7841, +2016-08-23 11:00:00,,,15.3707 +2016-08-23 11:02:22,3599.0,11.7821, +2016-08-23 11:12:25,3599.0,11.8125, +2016-08-23 11:15:00,,,15.3666 +2016-08-23 11:22:28,3599.0,11.7831, +2016-08-23 11:30:00,,,15.3707 +2016-08-23 11:32:31,3599.0,11.7831, +2016-08-23 11:42:34,3599.0,11.8125, +2016-08-23 11:45:00,,,15.3987 +2016-08-23 11:52:37,3599.0,11.7831, +2016-08-23 12:00:00,,,15.3707 +2016-08-23 12:02:40,3599.0,11.8125, +2016-08-23 12:12:42,3599.0,11.8125, +2016-08-23 12:15:00,,,15.3721 +2016-08-23 12:22:45,3599.0,11.8157, +2016-08-23 12:30:00,,,15.3721 +2016-08-23 12:32:48,3599.0,11.8157, +2016-08-23 12:42:51,3599.0,11.7862, +2016-08-23 12:45:00,,,15.368 +2016-08-23 12:52:54,3599.0,11.8157, +2016-08-23 13:00:00,,,15.3707 +2016-08-23 13:02:57,3599.0,11.8146, +2016-08-23 13:13:00,3599.0,11.8157, +2016-08-23 13:15:00,,,15.3721 +2016-08-23 13:23:03,3599.0,11.7883, +2016-08-23 13:30:00,,,15.368 +2016-08-23 13:33:06,3599.0,11.8188, +2016-08-23 13:43:09,3599.0,11.7012, +2016-08-23 13:45:00,,,15.3707 +2016-08-23 13:53:12,3599.0,11.7306, +2016-08-23 14:00:00,,,15.3666 +2016-08-23 14:03:15,3599.0,11.8188, +2016-08-23 14:13:18,3599.0,11.8188, +2016-08-23 14:15:00,,,15.3387 +2016-08-23 14:23:21,3599.0,11.7295, +2016-08-23 14:30:00,,,15.3707 +2016-08-23 14:33:24,3599.0,11.7306, +2016-08-23 14:43:27,3599.0,11.7295, +2016-08-23 14:45:00,,,15.3707 +2016-08-23 14:53:29,3599.0,11.7012, +2016-08-23 15:00:00,,,15.34 +2016-08-23 15:03:32,3599.0,11.7001, +2016-08-23 15:13:35,3599.0,11.7295, +2016-08-23 15:15:00,,,15.3387 +2016-08-23 15:23:38,3599.0,11.7306, +2016-08-23 15:30:00,,,15.3707 +2016-08-23 15:33:41,3599.0,11.7306, +2016-08-23 15:43:44,3599.0,11.7306, +2016-08-23 15:45:00,,,15.3666 +2016-08-23 15:53:47,3599.0,11.7306, +2016-08-23 16:00:00,,,15.276 +2016-08-23 16:03:50,3599.0,11.7306, +2016-08-23 16:13:52,3599.0,11.7295, +2016-08-23 16:15:00,,,15.2719 +2016-08-23 16:23:55,3599.0,11.7033, +2016-08-23 16:30:00,,,15.308 +2016-08-23 16:33:58,3599.0,11.7295, +2016-08-23 16:44:01,3599.0,11.7337, +2016-08-23 16:45:00,,,15.2746 +2016-08-23 16:54:04,3599.0,11.7337, +2016-08-23 17:00:00,,,15.308 +2016-08-23 17:04:07,3599.0,11.7326, +2016-08-23 17:14:10,3599.0,11.7043, +2016-08-23 17:15:00,,,15.2746 +2016-08-23 17:24:13,3599.0,11.7368, +2016-08-23 17:30:00,,,15.3066 +2016-08-23 17:34:16,3599.0,11.7358, +2016-08-23 17:44:19,3599.0,11.7368, +2016-08-23 17:45:00,,,15.2746 +2016-08-23 17:54:21,3599.0,11.7368, +2016-08-23 18:00:00,,,15.2427 +2016-08-23 18:04:24,3599.0,11.7368, +2016-08-23 18:14:27,3599.0,11.7389, +2016-08-23 18:15:00,,,15.3066 +2016-08-23 18:24:30,3599.0,11.7368, +2016-08-23 18:30:00,,,15.3066 +2016-08-23 18:34:33,3599.0,11.7389, +2016-08-23 18:44:35,3599.0,11.7389, +2016-08-23 18:45:00,,,15.2427 +2016-08-23 18:54:38,3599.0,11.7389, +2016-08-23 19:00:00,,,15.3066 +2016-08-23 19:04:41,3599.0,11.7389, +2016-08-23 19:14:44,3599.0,11.7389, +2016-08-23 19:15:00,,,15.244000000000002 +2016-08-23 19:24:47,3599.0,11.7389, +2016-08-23 19:30:00,,,15.2746 +2016-08-23 19:34:49,3599.0,11.7095, +2016-08-23 19:44:52,3599.0,11.7389, +2016-08-23 19:45:00,,,15.2427 +2016-08-23 19:54:55,3599.0,11.7095, +2016-08-23 20:00:00,,,15.276 +2016-08-23 20:04:58,3599.0,11.7095, +2016-08-23 20:15:00,,,15.2427 +2016-08-23 20:15:01,3599.0,11.7389, +2016-08-23 20:25:04,3599.0,11.7389, +2016-08-23 20:30:00,,,15.276 +2016-08-23 20:35:06,3599.0,11.7389, +2016-08-23 20:45:00,,,15.276 +2016-08-23 20:45:09,3599.0,11.7431, +2016-08-23 20:55:12,3599.0,11.7389, +2016-08-23 21:00:00,,,15.2746 +2016-08-23 21:05:14,3599.0,11.7095, +2016-08-23 21:15:00,,,15.2468 +2016-08-23 21:15:17,3599.0,11.7137, +2016-08-23 21:25:20,3599.0,11.7389, +2016-08-23 21:30:00,,,15.276 +2016-08-23 21:35:22,3599.0,11.742, +2016-08-23 21:45:00,,,15.2746 +2016-08-23 21:45:25,3599.0,11.7389, +2016-08-23 21:55:28,3599.0,11.742, +2016-08-23 22:00:00,,,15.3066 +2016-08-23 22:05:30,3599.0,11.742, +2016-08-23 22:15:00,,,15.2746 +2016-08-23 22:15:33,3599.0,11.742, +2016-08-23 22:25:35,3599.0,11.742, +2016-08-23 22:30:00,,,15.3094 +2016-08-23 22:35:38,3599.0,11.742, +2016-08-23 22:45:00,,,15.2774 +2016-08-23 22:45:41,3599.0,11.7126, +2016-08-23 22:55:43,3599.0,11.742, +2016-08-23 23:00:00,,,15.2746 +2016-08-23 23:05:46,3599.0,11.7389, +2016-08-23 23:15:00,,,15.2427 +2016-08-23 23:15:49,3599.0,11.742, +2016-08-23 23:25:51,3599.0,11.7126, +2016-08-23 23:30:00,,,15.3107 +2016-08-23 23:35:54,3599.0,11.7431, +2016-08-23 23:45:00,,,15.3121 +2016-08-23 23:45:57,3599.0,11.7715, +2016-08-23 23:55:59,3599.0,11.7095, +2016-08-24 00:00:00,,,15.2801 +2016-08-24 00:06:02,3599.0,11.742, +2016-08-24 00:15:00,,,15.3121 +2016-08-24 00:16:04,3599.0,11.7126, +2016-08-24 00:26:07,3599.0,11.742, +2016-08-24 00:30:00,,,15.2787 +2016-08-24 00:36:10,3599.0,11.742, +2016-08-24 00:45:00,,,15.3121 +2016-08-24 00:46:12,3599.0,11.742, +2016-08-24 00:56:15,3599.0,11.7379, +2016-08-24 01:00:00,,,15.2468 +2016-08-24 01:06:17,3599.0,11.7389, +2016-08-24 01:15:00,,,15.2787 +2016-08-24 01:16:22,3599.0,11.7389, +2016-08-24 01:26:25,3599.0,11.7085, +2016-08-24 01:30:00,,,15.2787 +2016-08-24 01:36:28,3599.0,11.7389, +2016-08-24 01:45:00,,,15.2801 +2016-08-24 01:46:30,3599.0,11.7389, +2016-08-24 01:56:33,3599.0,11.7389, +2016-08-24 02:00:00,,,15.2481 +2016-08-24 02:06:35,3599.0,11.7389, +2016-08-24 02:15:00,,,15.3107 +2016-08-24 02:16:38,3598.0,11.7389, +2016-08-24 02:26:41,3598.0,11.7095, +2016-08-24 02:30:00,,,15.2801 +2016-08-24 02:36:44,3599.0,11.7389, +2016-08-24 02:45:00,,,15.3107 +2016-08-24 02:46:46,3599.0,11.7389, +2016-08-24 02:56:49,3598.0,11.7389, +2016-08-24 03:00:00,,,15.2801 +2016-08-24 03:06:52,3599.0,11.7389, +2016-08-24 03:15:00,,,15.3107 +2016-08-24 03:16:55,3599.0,11.7095, +2016-08-24 03:26:57,3599.0,11.7389, +2016-08-24 03:30:00,,,15.3094 +2016-08-24 03:37:00,3599.0,11.7085, +2016-08-24 03:45:00,,,15.3121 +2016-08-24 03:47:03,3598.0,11.7095, +2016-08-24 03:57:06,3598.0,11.7095, +2016-08-24 04:00:00,,,15.2787 +2016-08-24 04:07:09,3598.0,11.7095, +2016-08-24 04:15:00,,,15.2787 +2016-08-24 04:17:11,3599.0,11.7095, +2016-08-24 04:27:14,3598.0,11.7095, +2016-08-24 04:30:00,,,15.2787 +2016-08-24 04:37:17,3598.0,11.7389, +2016-08-24 04:45:00,,,15.3121 +2016-08-24 04:47:19,3598.0,11.7389, +2016-08-24 04:57:22,3598.0,11.7095, +2016-08-24 05:00:00,,,15.2454 +2016-08-24 05:07:25,3598.0,11.7389, +2016-08-24 05:15:00,,,15.2801 +2016-08-24 05:17:27,3598.0,11.7389, +2016-08-24 05:27:30,3598.0,11.74, +2016-08-24 05:30:00,,,15.2801 +2016-08-24 05:37:33,3598.0,11.7389, +2016-08-24 05:45:00,,,15.2774 +2016-08-24 05:47:35,3598.0,11.7389, +2016-08-24 05:57:38,3598.0,11.7389, +2016-08-24 06:00:00,,,15.2801 +2016-08-24 06:07:41,3598.0,11.7389, +2016-08-24 06:15:00,,,15.2787 +2016-08-24 06:17:43,3598.0,11.7389, +2016-08-24 06:27:46,3598.0,11.7389, +2016-08-24 06:30:00,,,15.2774 +2016-08-24 06:37:49,3598.0,11.7389, +2016-08-24 06:45:00,,,15.2787 +2016-08-24 06:47:52,3598.0,11.7389, +2016-08-24 06:57:54,3598.0,11.7389, +2016-08-24 07:00:00,,,15.2774 +2016-08-24 07:07:57,3598.0,11.7389, +2016-08-24 07:15:00,,,15.2801 +2016-08-24 07:18:00,3598.0,11.7389, +2016-08-24 07:28:02,3598.0,11.7074, +2016-08-24 07:30:00,,,15.2774 +2016-08-24 07:38:05,3598.0,11.7389, +2016-08-24 07:45:00,,,15.3107 +2016-08-24 07:48:08,3598.0,11.7074, +2016-08-24 07:58:10,3598.0,11.7389, +2016-08-24 08:00:00,,,15.2801 +2016-08-24 08:08:13,3598.0,11.7683, +2016-08-24 08:15:00,,,15.2787 +2016-08-24 08:18:16,3598.0,11.7389, +2016-08-24 08:28:18,3599.0,11.7368, +2016-08-24 08:30:00,,,15.2774 +2016-08-24 08:38:21,3599.0,11.7074, +2016-08-24 08:45:00,,,15.2787 +2016-08-24 08:48:24,3599.0,11.7389, +2016-08-24 08:58:26,3599.0,11.7368, +2016-08-24 09:00:00,,,15.3107 +2016-08-24 09:08:29,3599.0,11.7389, +2016-08-24 09:15:00,,,15.2468 +2016-08-24 09:18:32,3599.0,11.7389, +2016-08-24 09:28:35,3599.0,11.7368, +2016-08-24 09:30:00,,,15.2774 +2016-08-24 09:38:37,3599.0,11.7095, +2016-08-24 09:45:00,,,15.2468 +2016-08-24 09:48:40,3599.0,11.7389, +2016-08-24 09:58:43,3599.0,11.7095, +2016-08-24 10:00:00,,,15.3107 +2016-08-24 10:08:46,3599.0,11.7095, +2016-08-24 10:15:00,,,15.2801 +2016-08-24 10:18:48,3599.0,11.7389, +2016-08-24 10:28:51,3599.0,11.7389, +2016-08-24 10:30:00,,,15.2787 +2016-08-24 10:38:54,3599.0,11.7389, +2016-08-24 10:45:00,,,15.2801 +2016-08-24 10:48:56,3599.0,11.7095, +2016-08-24 10:58:59,3599.0,11.7389, +2016-08-24 11:00:00,,,15.2481 +2016-08-24 11:09:02,3599.0,11.7095, +2016-08-24 11:15:00,,,15.3121 +2016-08-24 11:19:05,3599.0,11.7389, +2016-08-24 11:29:08,3599.0,11.6508, +2016-08-24 11:30:00,,,15.2468 +2016-08-24 11:39:11,3599.0,11.6508, +2016-08-24 11:45:00,,,15.2801 +2016-08-24 11:49:14,3599.0,11.6508, +2016-08-24 11:59:17,3599.0,11.6214, +2016-08-24 12:00:00,,,15.3121 +2016-08-24 12:09:20,3599.0,11.6508, +2016-08-24 12:15:00,,,15.2787 +2016-08-24 12:19:23,3599.0,11.6508, +2016-08-24 12:29:26,3599.0,11.6539, +2016-08-24 12:30:00,,,15.2787 +2016-08-24 12:39:29,3599.0,11.6539, +2016-08-24 12:45:00,,,15.2801 +2016-08-24 12:49:32,3599.0,11.6539, +2016-08-24 12:59:35,3599.0,11.6549, +2016-08-24 13:00:00,,,15.2774 +2016-08-24 13:09:38,3599.0,11.6245, +2016-08-24 13:15:00,,,15.3094 +2016-08-24 13:19:41,3599.0,11.6539, +2016-08-24 13:29:44,3599.0,11.6245, +2016-08-24 13:30:00,,,15.3107 +2016-08-24 13:39:47,3599.0,11.6245, +2016-08-24 13:45:00,,,15.2787 +2016-08-24 13:49:50,3599.0,11.656, +2016-08-24 13:59:53,3599.0,11.6276, +2016-08-24 14:00:00,,,15.3094 +2016-08-24 14:09:56,3599.0,11.658, +2016-08-24 14:15:00,,,15.3094 +2016-08-24 14:20:00,3599.0,11.657, +2016-08-24 14:30:00,,,15.3094 +2016-08-24 14:30:03,3599.0,11.6266, +2016-08-24 14:40:06,3599.0,11.6308, +2016-08-24 14:45:00,,,15.2787 +2016-08-24 14:50:09,3599.0,11.6308, +2016-08-24 15:00:00,,,15.2468 +2016-08-24 15:00:12,3599.0,11.6308, +2016-08-24 15:10:16,3599.0,11.6601, +2016-08-24 15:15:00,,,15.2468 +2016-08-24 15:20:19,3599.0,11.5428, +2016-08-24 15:30:00,,,15.3107 +2016-08-24 15:30:22,3599.0,11.5721, +2016-08-24 15:40:25,3599.0,11.5721, +2016-08-24 15:45:00,,,15.2787 +2016-08-24 15:50:29,3599.0,11.5731, +2016-08-24 16:00:00,,,15.3121 +2016-08-24 16:00:32,3599.0,11.5742, +2016-08-24 16:10:35,3599.0,11.5459, +2016-08-24 16:15:00,,,15.3121 +2016-08-24 16:20:38,3599.0,11.5752, +2016-08-24 16:30:00,,,15.2787 +2016-08-24 16:30:42,3599.0,11.5742, +2016-08-24 16:40:45,3599.0,11.5742, +2016-08-24 16:45:00,,,15.3107 +2016-08-24 16:50:48,3599.0,11.5742, +2016-08-24 17:00:00,,,15.2787 +2016-08-24 17:00:51,3599.0,11.5752, +2016-08-24 17:10:55,3599.0,11.548, +2016-08-24 17:15:00,,,15.3107 +2016-08-24 17:20:58,3599.0,11.5762, +2016-08-24 17:30:00,,,15.2787 +2016-08-24 17:31:01,3599.0,11.548, +2016-08-24 17:41:04,3599.0,11.548, +2016-08-24 17:45:00,,,15.2787 +2016-08-24 17:51:08,3599.0,11.548, +2016-08-24 18:00:00,,,15.3121 +2016-08-24 18:01:11,3599.0,11.5803, +2016-08-24 18:11:14,3599.0,11.550999999999998, +2016-08-24 18:15:00,,,15.2468 +2016-08-24 18:21:17,3599.0,11.5803, +2016-08-24 18:30:00,,,15.2814 +2016-08-24 18:31:20,3599.0,11.550999999999998, +2016-08-24 18:41:24,3599.0,11.5803, +2016-08-24 18:45:00,,,15.2468 +2016-08-24 18:51:27,3599.0,11.5803, +2016-08-24 19:00:00,,,15.1843 +2016-08-24 19:01:30,3599.0,11.5803, +2016-08-24 19:11:33,3599.0,11.5803, +2016-08-24 19:15:00,,,15.3094 +2016-08-24 19:21:36,3599.0,11.5803, +2016-08-24 19:30:00,,,15.187 +2016-08-24 19:31:39,3599.0,11.550999999999998, +2016-08-24 19:41:42,3599.0,11.5541, +2016-08-24 19:45:00,,,15.1524 +2016-08-24 19:51:45,3599.0,11.5834, +2016-08-24 20:00:00,,,15.1883 +2016-08-24 20:01:48,3599.0,11.5541, +2016-08-24 20:11:51,3599.0,11.5552, +2016-08-24 20:15:00,,,15.1856 +2016-08-24 20:21:54,3599.0,11.5541, +2016-08-24 20:30:00,,,15.2175 +2016-08-24 20:31:57,3599.0,11.5541, +2016-08-24 20:42:00,3599.0,11.5541, +2016-08-24 20:45:00,,,15.1829 +2016-08-24 20:52:03,3599.0,11.5541, +2016-08-24 21:00:00,,,15.1856 +2016-08-24 21:02:06,3599.0,11.5541, +2016-08-24 21:12:09,3599.0,11.5552, +2016-08-24 21:15:00,,,15.1537 +2016-08-24 21:22:12,3599.0,11.5541, +2016-08-24 21:30:00,,,15.1883 +2016-08-24 21:32:15,3599.0,11.5541, +2016-08-24 21:42:18,3599.0,11.5541, +2016-08-24 21:45:00,,,15.187 +2016-08-24 21:52:20,3599.0,11.5552, +2016-08-24 22:00:00,,,15.1856 +2016-08-24 22:02:23,3599.0,11.5541, +2016-08-24 22:12:26,3599.0,11.5541, +2016-08-24 22:15:00,,,15.187 +2016-08-24 22:22:29,3599.0,11.5541, +2016-08-24 22:30:00,,,15.191 +2016-08-24 22:32:32,3599.0,11.5541, +2016-08-24 22:42:35,3599.0,11.5541, +2016-08-24 22:45:00,,,15.187 +2016-08-24 22:52:38,3599.0,11.5834, +2016-08-24 23:00:00,,,15.1564 +2016-08-24 23:02:41,3599.0,11.5834, +2016-08-24 23:12:43,3599.0,11.5552, +2016-08-24 23:15:00,,,15.191 +2016-08-24 23:22:46,3599.0,11.6715, +2016-08-24 23:30:00,,,15.191 +2016-08-24 23:32:49,3599.0,11.6715, +2016-08-24 23:42:52,3599.0,11.6715, +2016-08-24 23:45:00,,,15.191 +2016-08-24 23:52:54,3599.0,11.6715, +2016-08-25 00:00:00,,,15.191 +2016-08-25 00:02:57,3599.0,11.6421, +2016-08-25 00:13:00,3599.0,11.6421, +2016-08-25 00:15:00,,,15.191 +2016-08-25 00:23:02,3599.0,11.6726, +2016-08-25 00:30:00,,,15.191 +2016-08-25 00:33:05,3599.0,11.6715, +2016-08-25 00:43:08,3599.0,11.6715, +2016-08-25 00:45:00,,,15.191 +2016-08-25 00:53:11,3599.0,11.6715, +2016-08-25 01:00:00,,,15.191 +2016-08-25 01:03:13,3599.0,11.6421, +2016-08-25 01:13:16,3599.0,11.6715, +2016-08-25 01:15:00,,,15.1591 +2016-08-25 01:23:19,3599.0,11.6715, +2016-08-25 01:30:00,,,15.191 +2016-08-25 01:33:22,3599.0,11.6715, +2016-08-25 01:43:24,3599.0,11.6715, +2016-08-25 01:45:00,,,15.1897 +2016-08-25 01:53:27,3599.0,11.6421, +2016-08-25 02:00:00,,,15.1951 +2016-08-25 02:03:30,3599.0,11.6432, +2016-08-25 02:13:33,3599.0,11.6726, +2016-08-25 02:15:00,,,15.1937 +2016-08-25 02:23:35,3599.0,11.6421, +2016-08-25 02:30:00,,,15.1951 +2016-08-25 02:33:38,3599.0,11.6432, +2016-08-25 02:43:41,3599.0,11.6715, +2016-08-25 02:45:00,,,15.1951 +2016-08-25 02:53:44,3599.0,11.6715, +2016-08-25 03:00:00,,,15.227 +2016-08-25 03:03:46,3599.0,11.639, +2016-08-25 03:13:49,3599.0,11.6684, +2016-08-25 03:15:00,,,15.1937 +2016-08-25 03:23:52,3599.0,11.6684, +2016-08-25 03:30:00,,,15.1951 +2016-08-25 03:33:55,3599.0,11.6684, +2016-08-25 03:43:58,3599.0,11.639, +2016-08-25 03:45:00,,,15.2256 +2016-08-25 03:54:00,3599.0,11.6694, +2016-08-25 04:00:00,,,15.1951 +2016-08-25 04:04:03,3599.0,11.6684, +2016-08-25 04:14:06,3599.0,11.6684, +2016-08-25 04:15:00,,,15.1937 +2016-08-25 04:24:09,3599.0,11.6684, +2016-08-25 04:30:00,,,15.1951 +2016-08-25 04:34:13,3599.0,11.639, +2016-08-25 04:44:17,3599.0,11.6684, +2016-08-25 04:45:00,,,15.227 +2016-08-25 04:54:19,3599.0,11.639, +2016-08-25 05:00:00,,,15.1951 +2016-08-25 05:04:22,3599.0,11.6684, +2016-08-25 05:14:25,3599.0,11.6684, +2016-08-25 05:15:00,,,15.1951 +2016-08-25 05:24:28,3599.0,11.6684, +2016-08-25 05:30:00,,,15.2256 +2016-08-25 05:34:30,3599.0,11.6684, +2016-08-25 05:44:33,3599.0,11.639, +2016-08-25 05:45:00,,,15.2284 +2016-08-25 05:54:36,3599.0,11.6684, +2016-08-25 06:00:00,,,15.1951 +2016-08-25 06:04:39,3599.0,11.6684, +2016-08-25 06:14:41,3599.0,11.6684, +2016-08-25 06:15:00,,,15.1632 +2016-08-25 06:24:44,3599.0,11.6653, +2016-08-25 06:30:00,,,15.1937 +2016-08-25 06:34:46,3599.0,11.548, +2016-08-25 06:44:49,3599.0,11.5773, +2016-08-25 06:45:00,,,15.1951 +2016-08-25 06:54:52,3599.0,11.5783, +2016-08-25 07:00:00,,,15.1951 +2016-08-25 07:04:55,3599.0,11.5773, +2016-08-25 07:14:57,3599.0,11.6328, +2016-08-25 07:15:00,,,15.227 +2016-08-25 07:25:00,3599.0,11.6632, +2016-08-25 07:30:00,,,15.1951 +2016-08-25 07:35:03,3599.0,11.5742, +2016-08-25 07:45:00,,,15.227 +2016-08-25 07:45:05,3599.0,11.6622, +2016-08-25 07:55:08,3599.0,11.5742, +2016-08-25 08:00:00,,,15.1964 +2016-08-25 08:05:11,3599.0,11.5742, +2016-08-25 08:15:00,,,15.1951 +2016-08-25 08:15:13,3599.0,11.5742, +2016-08-25 08:25:16,3599.0,11.5449, +2016-08-25 08:30:00,,,15.1951 +2016-08-25 08:35:19,3599.0,11.5742, +2016-08-25 08:45:00,,,15.1964 +2016-08-25 08:45:22,3599.0,11.6622, +2016-08-25 08:55:24,3599.0,11.6328, +2016-08-25 09:00:00,,,15.1951 +2016-08-25 09:05:27,3599.0,11.6328, +2016-08-25 09:15:00,,,15.1951 +2016-08-25 09:15:30,3599.0,11.6328, +2016-08-25 09:25:33,3599.0,11.6328, +2016-08-25 09:30:00,,,15.1951 +2016-08-25 09:35:35,3599.0,11.6622, +2016-08-25 09:45:00,,,15.1951 +2016-08-25 09:45:38,3599.0,11.5752, +2016-08-25 09:55:41,3599.0,11.5752, +2016-08-25 10:00:00,,,15.1951 +2016-08-25 10:05:44,3599.0,11.5752, +2016-08-25 10:15:00,,,15.227 +2016-08-25 10:15:47,3599.0,11.5449, +2016-08-25 10:25:50,3599.0,11.5742, +2016-08-25 10:30:00,,,15.227 +2016-08-25 10:35:53,3599.0,11.5742, +2016-08-25 10:45:00,,,15.227 +2016-08-25 10:45:56,3599.0,11.5742, +2016-08-25 10:55:59,3599.0,11.5449, +2016-08-25 11:00:00,,,15.1951 +2016-08-25 11:06:02,3599.0,11.5459, +2016-08-25 11:15:00,,,15.1937 +2016-08-25 11:16:05,3599.0,11.5742, +2016-08-25 11:26:08,3599.0,11.5742, +2016-08-25 11:30:00,,,15.1951 +2016-08-25 11:36:11,3599.0,11.5742, +2016-08-25 11:45:00,,,15.1951 +2016-08-25 11:46:14,3599.0,11.5752, +2016-08-25 11:56:17,3599.0,11.5742, +2016-08-25 12:00:00,,,15.1618 +2016-08-25 12:06:20,3599.0,11.5459, +2016-08-25 12:15:00,,,15.0981 +2016-08-25 12:16:24,3599.0,11.548, +2016-08-25 12:26:27,3599.0,11.4561, +2016-08-25 12:30:00,,,15.1313 +2016-08-25 12:36:30,3599.0,11.4612, +2016-08-25 12:45:00,,,15.1313 +2016-08-25 12:46:33,3599.0,11.4894, +2016-08-25 12:56:37,3599.0,11.4894, +2016-08-25 13:00:00,,,15.0995 +2016-08-25 13:06:40,3599.0,11.4602, +2016-08-25 13:15:00,,,15.0995 +2016-08-25 13:16:43,3599.0,11.4925, +2016-08-25 13:26:46,3599.0,11.4633, +2016-08-25 13:30:00,,,15.0995 +2016-08-25 13:36:49,3599.0,11.4633, +2016-08-25 13:45:00,,,15.1313 +2016-08-25 13:46:52,3599.0,11.3757, +2016-08-25 13:56:55,3599.0,11.4048, +2016-08-25 14:00:00,,,15.0981 +2016-08-25 14:06:59,3599.0,11.3757, +2016-08-25 14:15:00,,,15.0995 +2016-08-25 14:17:02,3599.0,11.3757, +2016-08-25 14:27:05,3599.0,11.4048, +2016-08-25 14:30:00,,,15.13 +2016-08-25 14:37:09,3599.0,11.4048, +2016-08-25 14:45:00,,,15.0995 +2016-08-25 14:47:12,3599.0,11.4079, +2016-08-25 14:57:16,3599.0,11.3787, +2016-08-25 15:00:00,,,15.1313 +2016-08-25 15:07:19,3599.0,11.3787, +2016-08-25 15:15:00,,,15.1313 +2016-08-25 15:17:23,3599.0,11.3787, +2016-08-25 15:27:26,3599.0,11.4079, +2016-08-25 15:30:00,,,15.0995 +2016-08-25 15:37:30,3599.0,11.3787, +2016-08-25 15:45:00,,,15.0981 +2016-08-25 15:47:33,3599.0,11.4079, +2016-08-25 15:57:36,3599.0,11.4069, +2016-08-25 16:00:00,,,15.0995 +2016-08-25 16:07:40,3599.0,11.3817, +2016-08-25 16:15:00,,,15.0042 +2016-08-25 16:17:43,3599.0,11.4119, +2016-08-25 16:27:47,3599.0,11.4109, +2016-08-25 16:30:00,,,15.0042 +2016-08-25 16:37:50,3599.0,11.3817, +2016-08-25 16:45:00,,,15.0042 +2016-08-25 16:47:54,3599.0,11.3838, +2016-08-25 16:57:57,3599.0,11.3838, +2016-08-25 17:00:00,,,15.0042 +2016-08-25 17:08:01,3599.0,11.3848, +2016-08-25 17:15:00,,,15.0042 +2016-08-25 17:18:04,3599.0,11.3848, +2016-08-25 17:28:08,3599.0,11.3848, +2016-08-25 17:30:00,,,15.0029 +2016-08-25 17:38:11,3599.0,11.3858, +2016-08-25 17:45:00,,,15.0042 +2016-08-25 17:48:15,3599.0,11.414, +2016-08-25 17:58:18,3599.0,11.3848, +2016-08-25 18:00:00,,,15.0042 +2016-08-25 18:08:21,3599.0,11.3878, +2016-08-25 18:15:00,,,15.0029 +2016-08-25 18:18:25,3599.0,11.3838, +2016-08-25 18:28:28,3599.0,11.3878, +2016-08-25 18:30:00,,,15.0042 +2016-08-25 18:38:31,3599.0,11.416, +2016-08-25 18:45:00,,,15.0042 +2016-08-25 18:48:35,3599.0,11.3878, +2016-08-25 18:58:38,3599.0,11.3868, +2016-08-25 19:00:00,,,15.0042 +2016-08-25 19:08:41,3599.0,11.3878, +2016-08-25 19:15:00,,,15.0055 +2016-08-25 19:18:45,3599.0,11.3868, +2016-08-25 19:28:48,3599.0,11.416, +2016-08-25 19:30:00,,,15.0042 +2016-08-25 19:38:51,3599.0,11.3868, +2016-08-25 19:45:00,,,15.0042 +2016-08-25 19:48:54,3599.0,11.416, +2016-08-25 19:58:58,3599.0,11.416, +2016-08-25 20:00:00,,,15.0029 +2016-08-25 20:09:01,3599.0,11.3878, +2016-08-25 20:15:00,,,15.0042 +2016-08-25 20:19:04,3599.0,11.3868, +2016-08-25 20:29:07,3599.0,11.416, +2016-08-25 20:30:00,,,15.0042 +2016-08-25 20:39:11,3599.0,11.3868, +2016-08-25 20:45:00,,,15.0029 +2016-08-25 20:49:14,3599.0,11.3878, +2016-08-25 20:59:17,3599.0,11.417, +2016-08-25 21:00:00,,,15.0042 +2016-08-25 21:09:20,3599.0,11.3868, +2016-08-25 21:15:00,,,15.0042 +2016-08-25 21:19:23,3599.0,11.3898, +2016-08-25 21:29:26,3599.0,11.3868, +2016-08-25 21:30:00,,,15.0042 +2016-08-25 21:39:30,3599.0,11.4191, +2016-08-25 21:45:00,,,15.0069 +2016-08-25 21:49:33,3599.0,11.3898, +2016-08-25 21:59:36,3599.0,11.3898, +2016-08-25 22:00:00,,,15.0082 +2016-08-25 22:09:39,3599.0,11.3898, +2016-08-25 22:15:00,,,15.0413 +2016-08-25 22:19:42,3599.0,11.4191, +2016-08-25 22:29:45,3599.0,11.3898, +2016-08-25 22:30:00,,,15.0082 +2016-08-25 22:39:48,3599.0,11.3898, +2016-08-25 22:45:00,,,15.0082 +2016-08-25 22:49:51,3599.0,11.3898, +2016-08-25 22:59:54,3599.0,11.4191, +2016-08-25 23:00:00,,,15.0082 +2016-08-25 23:09:57,3599.0,11.3909, +2016-08-25 23:15:00,,,15.0399 +2016-08-25 23:20:00,3599.0,11.3868, +2016-08-25 23:30:00,,,15.0082 +2016-08-25 23:30:03,3599.0,11.4191, +2016-08-25 23:40:06,3599.0,11.3898, +2016-08-25 23:45:00,,,15.0082 +2016-08-25 23:50:09,3599.0,11.4191, +2016-08-26 00:00:00,,,15.0082 +2016-08-26 00:00:12,3599.0,11.4201, +2016-08-26 00:10:15,3599.0,11.4191, +2016-08-26 00:15:00,,,15.0082 +2016-08-26 00:20:18,3599.0,11.3898, +2016-08-26 00:30:00,,,15.0082 +2016-08-26 00:30:21,3599.0,11.3909, +2016-08-26 00:40:24,3599.0,11.4493, +2016-08-26 00:45:00,,,15.0082 +2016-08-26 00:50:27,3599.0,11.3878, +2016-08-26 01:00:00,,,15.0082 +2016-08-26 01:00:30,3599.0,11.4462, +2016-08-26 01:10:33,3599.0,11.3878, +2016-08-26 01:15:00,,,15.0122 +2016-08-26 01:20:36,3599.0,11.3878, +2016-08-26 01:30:00,,,15.0122 +2016-08-26 01:30:39,3599.0,11.3878, +2016-08-26 01:40:41,3599.0,11.3868, +2016-08-26 01:45:00,,,15.0122 +2016-08-26 01:50:44,3599.0,11.4462, +2016-08-26 02:00:00,,,15.0399 +2016-08-26 02:00:47,3599.0,11.3878, +2016-08-26 02:10:50,3599.0,11.4442, +2016-08-26 02:15:00,,,15.044 +2016-08-26 02:20:53,3599.0,11.3868, +2016-08-26 02:30:00,,,15.044 +2016-08-26 02:30:56,3599.0,11.4462, +2016-08-26 02:40:59,3599.0,11.3868, +2016-08-26 02:45:00,,,15.0122 +2016-08-26 02:51:02,3599.0,11.3878, +2016-08-26 03:00:00,,,15.0122 +2016-08-26 03:01:04,3599.0,11.3868, +2016-08-26 03:11:07,3599.0,11.3868, +2016-08-26 03:15:00,,,15.0135 +2016-08-26 03:21:10,3599.0,11.416, +2016-08-26 03:30:00,,,15.0122 +2016-08-26 03:31:13,3599.0,11.416, +2016-08-26 03:41:16,3599.0,11.3868, +2016-08-26 03:45:00,,,15.0109 +2016-08-26 03:51:19,3599.0,11.3868, +2016-08-26 04:00:00,,,15.0122 +2016-08-26 04:01:21,3599.0,11.3868, +2016-08-26 04:11:24,3599.0,11.3878, +2016-08-26 04:15:00,,,15.0122 +2016-08-26 04:21:27,3599.0,11.3868, +2016-08-26 04:30:00,,,15.0149 +2016-08-26 04:31:30,3599.0,11.4452, +2016-08-26 04:41:32,3599.0,11.416, +2016-08-26 04:45:00,,,15.044 +2016-08-26 04:51:35,3599.0,11.3838, +2016-08-26 05:00:00,,,15.0109 +2016-08-26 05:01:38,3599.0,11.3838, +2016-08-26 05:11:41,3599.0,11.3848, +2016-08-26 05:15:00,,,15.0149 +2016-08-26 05:21:43,3599.0,11.3838, +2016-08-26 05:30:00,,,15.0149 +2016-08-26 05:31:46,3599.0,11.413, +2016-08-26 05:41:49,3599.0,11.3848, +2016-08-26 05:45:00,,,15.0149 +2016-08-26 05:51:52,3599.0,11.413, +2016-08-26 06:00:00,,,15.0466 +2016-08-26 06:01:54,3599.0,11.414, +2016-08-26 06:11:57,3599.0,11.3858, +2016-08-26 06:15:00,,,15.0149 +2016-08-26 06:22:00,3599.0,11.413, +2016-08-26 06:30:00,,,15.0466 +2016-08-26 06:32:02,3599.0,11.414, +2016-08-26 06:42:05,3599.0,11.3858, +2016-08-26 06:45:00,,,15.0175 +2016-08-26 06:52:08,3599.0,11.414, +2016-08-26 07:00:00,,,15.0466 +2016-08-26 07:02:11,3599.0,11.3848, +2016-08-26 07:12:14,3599.0,11.414, +2016-08-26 07:15:00,,,15.0149 +2016-08-26 07:22:16,3599.0,11.3848, +2016-08-26 07:30:00,,,15.0149 +2016-08-26 07:32:19,3599.0,11.3817, +2016-08-26 07:42:22,3599.0,11.3817, +2016-08-26 07:45:00,,,15.0162 +2016-08-26 07:52:24,3599.0,11.3828, +2016-08-26 08:00:00,,,15.0162 +2016-08-26 08:02:26,3599.0,11.4109, +2016-08-26 08:12:29,3599.0,11.4109, +2016-08-26 08:15:00,,,15.0162 +2016-08-26 08:22:32,3599.0,11.4109, +2016-08-26 08:30:00,,,15.0149 +2016-08-26 08:32:34,3599.0,11.3817, +2016-08-26 08:42:37,3599.0,11.3817, +2016-08-26 08:45:00,,,15.0149 +2016-08-26 08:52:40,3599.0,11.4371, +2016-08-26 09:00:00,,,15.0466 +2016-08-26 09:02:43,3599.0,11.4109, +2016-08-26 09:12:46,3599.0,11.4079, +2016-08-26 09:15:00,,,15.0466 +2016-08-26 09:22:49,3599.0,11.4401, +2016-08-26 09:30:00,,,15.0149 +2016-08-26 09:32:52,3599.0,11.3787, +2016-08-26 09:42:55,3599.0,11.4079, +2016-08-26 09:45:00,,,15.0149 +2016-08-26 09:52:58,3599.0,11.3787, +2016-08-26 10:00:00,,,15.0162 +2016-08-26 10:03:01,3599.0,11.3787, +2016-08-26 10:13:04,3599.0,11.3787, +2016-08-26 10:15:00,,,15.0175 +2016-08-26 10:23:07,3599.0,11.3787, +2016-08-26 10:30:00,,,15.0466 +2016-08-26 10:33:10,3599.0,11.4391, +2016-08-26 10:43:13,3599.0,11.3787, +2016-08-26 10:45:00,,,15.0149 +2016-08-26 10:53:16,3599.0,11.4109, +2016-08-26 11:00:00,,,15.048 +2016-08-26 11:03:19,3599.0,11.3828, +2016-08-26 11:13:22,3599.0,11.3817, +2016-08-26 11:15:00,,,15.0149 +2016-08-26 11:23:26,3599.0,11.3817, +2016-08-26 11:30:00,,,15.048 +2016-08-26 11:33:29,3599.0,11.3817, +2016-08-26 11:43:32,3599.0,11.4109, +2016-08-26 11:45:00,,,15.0162 +2016-08-26 11:53:35,3599.0,11.3838, +2016-08-26 12:00:00,,,15.0798 +2016-08-26 12:03:39,3599.0,11.3848, +2016-08-26 12:13:42,3599.0,11.3264, +2016-08-26 12:15:00,,,15.0162 +2016-08-26 12:23:46,3599.0,11.3264, +2016-08-26 12:30:00,,,15.0149 +2016-08-26 12:33:49,3599.0,11.3264, +2016-08-26 12:43:52,3599.0,11.3264, +2016-08-26 12:45:00,,,15.0162 +2016-08-26 12:53:56,3599.0,11.3254, +2016-08-26 13:00:00,,,15.0466 +2016-08-26 13:03:59,3599.0,11.3264, +2016-08-26 13:14:03,3599.0,11.2963, +2016-08-26 13:15:00,,,15.0149 +2016-08-26 13:24:06,3599.0,11.3264, +2016-08-26 13:30:00,,,14.9832 +2016-08-26 13:34:09,3599.0,11.3285, +2016-08-26 13:44:13,3599.0,11.2121, +2016-08-26 13:45:00,,,15.0162 +2016-08-26 13:54:16,3599.0,11.2411, +2016-08-26 14:00:00,,,14.9198 +2016-08-26 14:04:20,3599.0,11.3285, +2016-08-26 14:14:23,3599.0,11.3003, +2016-08-26 14:15:00,,,14.9198 +2016-08-26 14:24:27,3599.0,11.2421, +2016-08-26 14:30:00,,,14.9198 +2016-08-26 14:34:30,3599.0,11.2411, +2016-08-26 14:44:34,3599.0,11.2441, +2016-08-26 14:45:00,,,14.9198 +2016-08-26 14:54:37,3599.0,11.2441, +2016-08-26 15:00:00,,,14.9198 +2016-08-26 15:04:41,3599.0,11.2441, +2016-08-26 15:14:45,3599.0,11.2451, +2016-08-26 15:15:00,,,14.9198 +2016-08-26 15:24:48,3599.0,11.2481, +2016-08-26 15:30:00,,,14.9211 +2016-08-26 15:34:52,3599.0,11.2471, +2016-08-26 15:44:55,3599.0,11.2481, +2016-08-26 15:45:00,,,14.9211 +2016-08-26 15:54:59,3599.0,11.2481, +2016-08-26 16:00:00,,,14.9198 +2016-08-26 16:05:03,3599.0,11.2471, +2016-08-26 16:15:00,,,14.9198 +2016-08-26 16:15:06,3599.0,11.2471, +2016-08-26 16:25:10,3599.0,11.2501, +2016-08-26 16:30:00,,,14.9198 +2016-08-26 16:35:14,3599.0,11.222, +2016-08-26 16:45:00,,,14.9198 +2016-08-26 16:45:17,3599.0,11.2501, +2016-08-26 16:55:20,3599.0,11.2531, +2016-08-26 17:00:00,,,14.9198 +2016-08-26 17:05:24,3599.0,11.2531, +2016-08-26 17:15:00,,,14.9198 +2016-08-26 17:15:27,3599.0,11.2531, +2016-08-26 17:25:31,3599.0,11.2531, +2016-08-26 17:30:00,,,14.9198 +2016-08-26 17:35:34,3599.0,11.224, +2016-08-26 17:45:00,,,14.9198 +2016-08-26 17:45:38,3599.0,11.2531, +2016-08-26 17:55:41,3599.0,11.224, +2016-08-26 18:00:00,,,14.9198 +2016-08-26 18:05:45,3599.0,11.2531, +2016-08-26 18:15:00,,,14.9198 +2016-08-26 18:15:48,3599.0,11.2531, +2016-08-26 18:25:52,3599.0,11.2561, +2016-08-26 18:30:00,,,14.9198 +2016-08-26 18:35:55,3599.0,11.227, +2016-08-26 18:45:00,,,14.8882 +2016-08-26 18:45:58,3599.0,11.2571, +2016-08-26 18:56:02,3599.0,11.2561, +2016-08-26 19:00:00,,,14.9198 +2016-08-26 19:06:05,3599.0,11.2561, +2016-08-26 19:15:00,,,14.9198 +2016-08-26 19:16:09,3599.0,11.2561, +2016-08-26 19:26:12,3599.0,11.2561, +2016-08-26 19:30:00,,,14.9198 +2016-08-26 19:36:16,3599.0,11.2561, +2016-08-26 19:45:00,,,14.8882 +2016-08-26 19:46:19,3599.0,11.2561, +2016-08-26 19:56:22,3599.0,11.2591, +2016-08-26 20:00:00,,,14.9198 +2016-08-26 20:06:26,3599.0,11.2551, +2016-08-26 20:15:00,,,14.9198 +2016-08-26 20:16:29,3599.0,11.2581, +2016-08-26 20:26:32,3599.0,11.2591, +2016-08-26 20:30:00,,,14.8566 +2016-08-26 20:36:35,3599.0,11.2591, +2016-08-26 20:45:00,,,14.8237 +2016-08-26 20:46:38,3599.0,11.2581, +2016-08-26 20:56:42,3599.0,11.2591, +2016-08-26 21:00:00,,,14.9211 +2016-08-26 21:06:45,3599.0,11.2601, +2016-08-26 21:15:00,,,14.8566 +2016-08-26 21:16:48,3599.0,11.2591, +2016-08-26 21:26:51,3599.0,11.2591, +2016-08-26 21:30:00,,,14.825 +2016-08-26 21:36:55,3599.0,11.2591, +2016-08-26 21:45:00,,,14.8566 +2016-08-26 21:46:58,3599.0,11.2591, +2016-08-26 22:00:00,,,14.8579 +2016-08-26 22:07:11,3599.0,11.2581, +2016-08-26 22:15:00,,,14.8592 +2016-08-26 22:17:15,3599.0,11.2591, +2016-08-26 22:27:18,3599.0,11.2621, +2016-08-26 22:30:00,,,14.8592 +2016-08-26 22:37:21,3599.0,11.2591, +2016-08-26 22:45:00,,,14.8566 +2016-08-26 22:47:24,3599.0,11.233, +2016-08-26 22:57:27,3599.0,11.2601, +2016-08-26 23:00:00,,,14.8566 +2016-08-26 23:07:31,3599.0,11.2591, +2016-08-26 23:15:00,,,14.8869 +2016-08-26 23:17:34,3599.0,11.2621, +2016-08-26 23:27:37,3599.0,11.2621, +2016-08-26 23:30:00,,,14.825 +2016-08-26 23:37:40,3599.0,11.233, +2016-08-26 23:45:00,,,14.8592 +2016-08-26 23:47:43,3599.0,11.2621, +2016-08-26 23:57:46,3599.0,11.2621, +2016-08-27 00:00:00,,,14.8606 +2016-08-27 00:07:49,3599.0,11.2621, +2016-08-27 00:15:00,,,14.8619 +2016-08-27 00:17:52,3599.0,11.2621, +2016-08-27 00:27:55,3599.0,11.2591, +2016-08-27 00:30:00,,,14.8606 +2016-08-27 00:37:58,3599.0,11.2581, +2016-08-27 00:45:00,,,14.8606 +2016-08-27 00:48:01,3599.0,11.2591, +2016-08-27 00:58:04,3599.0,11.2591, +2016-08-27 01:00:00,,,14.8606 +2016-08-27 01:08:07,3599.0,11.2621, +2016-08-27 01:15:00,,,14.8606 +2016-08-27 01:18:10,3599.0,11.2591, +2016-08-27 01:28:13,3599.0,11.2581, +2016-08-27 01:30:00,,,14.8606 +2016-08-27 01:38:16,3599.0,11.23, +2016-08-27 01:45:00,,,14.8922 +2016-08-27 01:48:19,3599.0,11.2591, +2016-08-27 01:58:22,3599.0,11.2591, +2016-08-27 02:00:00,,,14.8619 +2016-08-27 02:08:24,3599.0,11.2591, +2016-08-27 02:15:00,,,14.8961 +2016-08-27 02:18:27,3599.0,11.2591, +2016-08-27 02:28:30,3599.0,11.2591, +2016-08-27 02:30:00,,,14.829 +2016-08-27 02:38:33,3599.0,11.2591, +2016-08-27 02:45:00,,,14.8961 +2016-08-27 02:48:36,3599.0,11.2591, +2016-08-27 02:58:39,3599.0,11.2591, +2016-08-27 03:00:00,,,14.8645 +2016-08-27 03:08:42,3599.0,11.2591, +2016-08-27 03:15:00,,,14.8658 +2016-08-27 03:18:45,3599.0,11.227, +2016-08-27 03:28:48,3599.0,11.2561, +2016-08-27 03:30:00,,,14.8645 +2016-08-27 03:38:51,3599.0,11.2561, +2016-08-27 03:45:00,,,14.8658 +2016-08-27 03:48:54,3599.0,11.2561, +2016-08-27 03:58:56,3599.0,11.2561, +2016-08-27 04:00:00,,,14.8329 +2016-08-27 04:08:59,3599.0,11.2561, +2016-08-27 04:15:00,,,14.8658 +2016-08-27 04:19:02,3599.0,11.2561, +2016-08-27 04:29:05,3599.0,11.2561, +2016-08-27 04:30:00,,,14.8658 +2016-08-27 04:39:08,3599.0,11.2853, +2016-08-27 04:45:00,,,14.8645 +2016-08-27 04:49:11,3599.0,11.229, +2016-08-27 04:59:14,3599.0,11.227, +2016-08-27 05:00:00,,,14.8658 +2016-08-27 05:09:16,3599.0,11.227, +2016-08-27 05:15:00,,,14.8343 +2016-08-27 05:19:19,3599.0,11.2581, +2016-08-27 05:29:22,3599.0,11.2561, +2016-08-27 05:30:00,,,14.8645 +2016-08-27 05:39:25,3599.0,11.3144, +2016-08-27 05:45:00,,,14.8658 +2016-08-27 05:49:28,3599.0,11.3154, +2016-08-27 05:59:30,3599.0,11.3426, +2016-08-27 06:00:00,,,14.8645 +2016-08-27 06:09:33,3599.0,11.3426, +2016-08-27 06:15:00,,,14.8658 +2016-08-27 06:19:36,3599.0,11.3446, +2016-08-27 06:29:39,3599.0,11.3114, +2016-08-27 06:30:00,,,14.8658 +2016-08-27 06:39:42,3599.0,11.3406, +2016-08-27 06:45:00,,,14.8369 +2016-08-27 06:49:45,3599.0,11.3406, +2016-08-27 06:59:47,3599.0,11.3698, +2016-08-27 07:00:00,,,14.8698 +2016-08-27 07:09:50,3599.0,11.3406, +2016-08-27 07:15:00,,,14.8685 +2016-08-27 07:19:53,3599.0,11.3406, +2016-08-27 07:29:56,3599.0,11.3406, +2016-08-27 07:30:00,,,14.8698 +2016-08-27 07:39:59,3599.0,11.3406, +2016-08-27 07:45:00,,,14.8685 +2016-08-27 07:50:01,3599.0,11.3406, +2016-08-27 08:00:00,,,14.8685 +2016-08-27 08:00:04,3599.0,11.3406, +2016-08-27 08:10:07,3599.0,11.3406, +2016-08-27 08:15:00,,,14.8382 +2016-08-27 08:20:10,3599.0,11.3416, +2016-08-27 08:30:00,,,14.8698 +2016-08-27 08:30:12,3599.0,11.3406, +2016-08-27 08:40:15,3599.0,11.3406, +2016-08-27 08:45:00,,,14.8685 +2016-08-27 08:50:18,3599.0,11.3406, +2016-08-27 09:00:00,,,14.8685 +2016-08-27 09:00:21,3599.0,11.3385, +2016-08-27 09:10:23,3599.0,11.3385, +2016-08-27 09:15:00,,,14.8685 +2016-08-27 09:20:26,3599.0,11.3667, +2016-08-27 09:30:00,,,14.8382 +2016-08-27 09:30:29,3599.0,11.3385, +2016-08-27 09:40:32,3599.0,11.3385, +2016-08-27 09:45:00,,,14.8698 +2016-08-27 09:50:35,3599.0,11.2491, +2016-08-27 10:00:00,,,14.8698 +2016-08-27 10:00:38,3599.0,11.2501, +2016-08-27 10:10:41,3599.0,11.2501, +2016-08-27 10:15:00,,,14.8685 +2016-08-27 10:20:44,3599.0,11.2792, +2016-08-27 10:30:00,,,14.8369 +2016-08-27 10:30:47,3599.0,11.2511, +2016-08-27 10:40:50,3599.0,11.2511, +2016-08-27 10:45:00,,,14.8685 +2016-08-27 10:50:53,3599.0,11.2501, +2016-08-27 11:00:00,,,14.8672 +2016-08-27 11:00:56,3599.0,11.2501, +2016-08-27 11:10:58,3599.0,11.220999999999998, +2016-08-27 11:15:00,,,14.8369 +2016-08-27 11:21:01,3599.0,11.222, +2016-08-27 11:30:00,,,14.8698 +2016-08-27 11:31:04,3599.0,11.2511, +2016-08-27 11:41:07,3599.0,11.220999999999998, +2016-08-27 11:45:00,,,14.8698 +2016-08-27 11:51:10,3599.0,11.2501, +2016-08-27 12:00:00,,,14.8685 +2016-08-27 12:01:13,3599.0,11.2491, +2016-08-27 12:11:16,3599.0,11.2511, +2016-08-27 12:15:00,,,14.8685 +2016-08-27 12:21:19,3599.0,11.2501, +2016-08-27 12:30:00,,,14.8685 +2016-08-27 12:31:22,3599.0,11.2511, +2016-08-27 12:41:26,3599.0,11.1659, +2016-08-27 12:45:00,,,14.8698 +2016-08-27 12:51:29,3599.0,11.1629, +2016-08-27 13:00:00,,,14.8698 +2016-08-27 13:01:32,3599.0,11.1649, +2016-08-27 13:11:35,3599.0,11.1659, +2016-08-27 13:15:00,,,14.8698 +2016-08-27 13:21:39,3599.0,11.1659, +2016-08-27 13:30:00,,,14.7423 +2016-08-27 13:31:42,3599.0,11.1659, +2016-08-27 13:41:45,3599.0,11.1659, +2016-08-27 13:45:00,,,14.7751 +2016-08-27 13:51:48,3599.0,11.1659, +2016-08-27 14:00:00,,,14.7751 +2016-08-27 14:01:51,3599.0,11.1659, +2016-08-27 14:11:54,3599.0,11.1659, +2016-08-27 14:15:00,,,14.7436 +2016-08-27 14:21:58,3599.0,11.1659, +2016-08-27 14:30:00,,,14.7436 +2016-08-27 14:32:01,3599.0,11.1659, +2016-08-27 14:42:04,3599.0,11.1659, +2016-08-27 14:45:00,,,14.7423 +2016-08-27 14:52:08,3599.0,11.0818, +2016-08-27 15:00:00,,,14.7423 +2016-08-27 15:02:11,3599.0,11.0789, +2016-08-27 15:12:14,3599.0,11.0828, +2016-08-27 15:15:00,,,14.7436 +2016-08-27 15:22:17,3599.0,11.0538, +2016-08-27 15:30:00,,,14.7436 +2016-08-27 15:32:21,3599.0,11.0818, +2016-08-27 15:42:24,3599.0,11.0818, +2016-08-27 15:45:00,,,14.7423 +2016-08-27 15:52:27,3599.0,11.0818, +2016-08-27 16:00:00,,,14.7423 +2016-08-27 16:02:31,3599.0,11.0818, +2016-08-27 16:12:34,3599.0,11.0828, +2016-08-27 16:15:00,,,14.7423 +2016-08-27 16:22:37,3599.0,11.0848, +2016-08-27 16:30:00,,,14.7436 +2016-08-27 16:32:41,3599.0,11.0848, +2016-08-27 16:42:44,3599.0,11.0848, +2016-08-27 16:45:00,,,14.7423 +2016-08-27 16:52:47,3599.0,11.0558, +2016-08-27 17:00:00,,,14.7423 +2016-08-27 17:02:51,3599.0,11.0868, +2016-08-27 17:12:54,3599.0,11.0587, +2016-08-27 17:15:00,,,14.7423 +2016-08-27 17:22:57,3599.0,11.0877, +2016-08-27 17:30:00,,,14.7436 +2016-08-27 17:33:01,3599.0,11.0877, +2016-08-27 17:43:04,3599.0,11.0578, +2016-08-27 17:45:00,,,14.7423 +2016-08-27 17:53:07,3599.0,11.0877, +2016-08-27 18:00:00,,,14.7423 +2016-08-27 18:03:11,3599.0,11.0877, +2016-08-27 18:13:14,3599.0,11.0877, +2016-08-27 18:15:00,,,14.7423 +2016-08-27 18:23:17,3599.0,11.0868, +2016-08-27 18:30:00,,,14.7738 +2016-08-27 18:33:21,3599.0,11.0877, +2016-08-27 18:43:24,3599.0,11.0587, +2016-08-27 18:45:00,,,14.7423 +2016-08-27 18:53:27,3599.0,11.0868, +2016-08-27 19:00:00,,,14.7423 +2016-08-27 19:03:30,3599.0,11.0897, +2016-08-27 19:13:34,3599.0,11.1778, +2016-08-27 19:15:00,,,14.7423 +2016-08-27 19:23:37,3599.0,11.1478, +2016-08-27 19:30:00,,,14.7738 +2016-08-27 19:33:40,3599.0,11.1768, +2016-08-27 19:43:43,3599.0,11.1768, +2016-08-27 19:45:00,,,14.7463 +2016-08-27 19:53:46,3599.0,11.1778, +2016-08-27 20:00:00,,,14.7738 +2016-08-27 20:03:50,3599.0,11.1778, +2016-08-27 20:13:53,3599.0,11.1768, +2016-08-27 20:15:00,,,14.7423 +2016-08-27 20:23:55,3599.0,11.1778, +2016-08-27 20:30:00,,,14.7765 +2016-08-27 20:33:58,3599.0,11.1768, +2016-08-27 20:44:01,3599.0,11.1778, +2016-08-27 20:45:00,,,14.745 +2016-08-27 20:54:05,3599.0,11.1478, +2016-08-27 21:00:00,,,14.7778 +2016-08-27 21:04:08,3599.0,11.1778, +2016-08-27 21:14:11,3599.0,11.1778, +2016-08-27 21:15:00,,,14.7423 +2016-08-27 21:24:14,3599.0,11.1778, +2016-08-27 21:30:00,,,14.7765 +2016-08-27 21:34:16,3599.0,11.1778, +2016-08-27 21:44:19,3599.0,11.1778, +2016-08-27 21:45:00,,,14.7778 +2016-08-27 21:54:22,3599.0,11.2049, +2016-08-27 22:00:00,,,14.7463 +2016-08-27 22:04:25,3599.0,11.1778, +2016-08-27 22:14:28,3599.0,11.1768, +2016-08-27 22:15:00,,,14.7476 +2016-08-27 22:24:31,3599.0,11.1778, +2016-08-27 22:30:00,,,14.7463 +2016-08-27 22:34:34,3599.0,11.1778, +2016-08-27 22:44:37,3599.0,11.1778, +2016-08-27 22:45:00,,,14.7778 +2016-08-27 22:54:40,3599.0,11.1768, +2016-08-27 23:00:00,,,14.7463 +2016-08-27 23:04:43,3599.0,11.1778, +2016-08-27 23:14:46,3599.0,11.1768, +2016-08-27 23:15:00,,,14.7476 +2016-08-27 23:24:49,3599.0,11.1768, +2016-08-27 23:30:00,,,14.7476 +2016-08-27 23:34:52,3599.0,11.1778, +2016-08-27 23:44:55,3599.0,11.1778, +2016-08-27 23:45:00,,,14.7463 +2016-08-27 23:54:58,3599.0,11.1778, +2016-08-28 00:00:00,,,14.7778 +2016-08-28 00:05:01,3599.0,11.1778, +2016-08-28 00:15:00,,,14.745 +2016-08-28 00:15:04,3599.0,11.2069, +2016-08-28 00:25:07,3599.0,11.1778, +2016-08-28 00:30:00,,,14.7476 +2016-08-28 00:35:09,3599.0,11.1778, +2016-08-28 00:45:00,,,14.745 +2016-08-28 00:45:12,3599.0,11.1778, +2016-08-28 00:55:15,3599.0,11.1778, +2016-08-28 01:00:00,,,14.7791 +2016-08-28 01:05:18,3599.0,11.1778, +2016-08-28 01:15:00,,,14.7463 +2016-08-28 01:15:21,3599.0,11.1778, +2016-08-28 01:25:24,3599.0,11.1778, +2016-08-28 01:30:00,,,14.7791 +2016-08-28 01:35:27,3599.0,11.1778, +2016-08-28 01:45:00,,,14.7476 +2016-08-28 01:45:30,3599.0,11.2059, +2016-08-28 01:55:33,3599.0,11.1488, +2016-08-28 02:00:00,,,14.7778 +2016-08-28 02:05:36,3599.0,11.2039, +2016-08-28 02:15:00,,,14.7463 +2016-08-28 02:15:39,3599.0,11.1778, +2016-08-28 02:25:42,3599.0,11.1729, +2016-08-28 02:30:00,,,14.7476 +2016-08-28 02:35:44,3599.0,11.1748, +2016-08-28 02:45:00,,,14.8093 +2016-08-28 02:45:47,3599.0,11.1748, +2016-08-28 02:55:50,3599.0,11.1739, +2016-08-28 03:00:00,,,14.7476 +2016-08-28 03:05:53,3599.0,11.1739, +2016-08-28 03:15:00,,,14.745 +2016-08-28 03:15:56,3599.0,11.1748, +2016-08-28 03:25:59,3599.0,11.1739, +2016-08-28 03:30:00,,,14.7778 +2016-08-28 03:36:02,3599.0,11.1739, +2016-08-28 03:45:00,,,14.7778 +2016-08-28 03:46:05,3599.0,11.1748, +2016-08-28 03:56:07,3599.0,11.1748, +2016-08-28 04:00:00,,,14.7778 +2016-08-28 04:06:10,3599.0,11.1748, +2016-08-28 04:15:00,,,14.7765 +2016-08-28 04:16:13,3599.0,11.1739, +2016-08-28 04:26:16,3599.0,11.1748, +2016-08-28 04:30:00,,,14.7476 +2016-08-28 04:36:19,3599.0,11.1748, +2016-08-28 04:45:00,,,14.7476 +2016-08-28 04:46:21,3599.0,11.1458, +2016-08-28 04:56:24,3599.0,11.1748, +2016-08-28 05:00:00,,,14.7463 +2016-08-28 05:06:27,3599.0,11.2029, +2016-08-28 05:15:00,,,14.7476 +2016-08-28 05:16:30,3599.0,11.1748, +2016-08-28 05:26:32,3599.0,11.1748, +2016-08-28 05:30:00,,,14.7463 +2016-08-28 05:36:34,3599.0,11.1719, +2016-08-28 05:45:00,,,14.7817 +2016-08-28 05:46:37,3599.0,11.1719, +2016-08-28 05:56:40,3599.0,11.1729, +2016-08-28 06:00:00,,,14.7765 +2016-08-28 06:06:43,3599.0,11.1719, +2016-08-28 06:15:00,,,14.7463 +2016-08-28 06:16:45,3599.0,11.1719, +2016-08-28 06:26:48,3599.0,11.1709, +2016-08-28 06:30:00,,,14.7515 +2016-08-28 06:36:51,3599.0,11.1438, +2016-08-28 06:45:00,,,14.745 +2016-08-28 06:46:54,3599.0,11.1709, +2016-08-28 06:56:56,3599.0,11.1709, +2016-08-28 07:00:00,,,14.7161 +2016-08-28 07:06:59,3599.0,11.2009, +2016-08-28 07:15:00,,,14.7502 +2016-08-28 07:17:02,3599.0,11.1719, +2016-08-28 07:27:05,3599.0,11.1689, +2016-08-28 07:30:00,,,14.7843 +2016-08-28 07:37:07,3599.0,11.1689, +2016-08-28 07:45:00,,,14.7515 +2016-08-28 07:47:10,3599.0,11.1679, +2016-08-28 07:57:13,3599.0,11.1679, +2016-08-28 08:00:00,,,14.7804 +2016-08-28 08:07:16,3599.0,11.1689, +2016-08-28 08:15:00,,,14.7804 +2016-08-28 08:17:19,3599.0,11.1689, +2016-08-28 08:27:21,3599.0,11.1699, +2016-08-28 08:30:00,,,14.783 +2016-08-28 08:37:24,3599.0,11.1679, +2016-08-28 08:45:00,,,14.7502 +2016-08-28 08:47:27,3599.0,11.1689, +2016-08-28 08:57:30,3599.0,11.1689, +2016-08-28 09:00:00,,,14.7515 +2016-08-28 09:07:33,3599.0,11.0519, +2016-08-28 09:15:00,,,14.7515 +2016-08-28 09:17:36,3599.0,11.1699, +2016-08-28 09:27:38,3599.0,11.0808, +2016-08-28 09:30:00,,,14.7804 +2016-08-28 09:37:41,3599.0,11.0818, +2016-08-28 09:45:00,,,14.7528 +2016-08-28 09:47:44,3599.0,11.0818, +2016-08-28 09:57:47,3599.0,11.1108, +2016-08-28 10:00:00,,,14.7502 +2016-08-28 10:07:50,3599.0,11.0528, +2016-08-28 10:15:00,,,14.7817 +2016-08-28 10:17:53,3599.0,11.0818, +2016-08-28 10:27:56,3599.0,11.0808, +2016-08-28 10:30:00,,,14.7528 +2016-08-28 10:37:59,3599.0,11.0818, +2016-08-28 10:45:00,,,14.7817 +2016-08-28 10:48:02,3599.0,11.1108, +2016-08-28 10:58:05,3599.0,11.0808, +2016-08-28 11:00:00,,,14.7502 +2016-08-28 11:08:08,3599.0,11.0818, +2016-08-28 11:15:00,,,14.7515 +2016-08-28 11:18:11,3599.0,11.0818, +2016-08-28 11:28:14,3599.0,11.0818, +2016-08-28 11:30:00,,,14.7515 +2016-08-28 11:38:17,3599.0,11.0808, +2016-08-28 11:45:00,,,14.7502 +2016-08-28 11:48:21,3599.0,11.0818, +2016-08-28 11:58:24,3599.0,11.0818, +2016-08-28 12:00:00,,,14.7515 +2016-08-28 12:08:27,3599.0,11.0528, +2016-08-28 12:15:00,,,14.7515 +2016-08-28 12:18:30,3599.0,11.0848, +2016-08-28 12:28:33,3599.0,11.0838, +2016-08-28 12:30:00,,,14.7502 +2016-08-28 12:38:37,3599.0,11.0858, +2016-08-28 12:45:00,,,14.7502 +2016-08-28 12:48:40,3599.0,11.0848, +2016-08-28 12:58:43,3599.0,11.0848, +2016-08-28 13:00:00,,,14.7817 +2016-08-28 13:08:47,3599.0,11.0868, +2016-08-28 13:15:00,,,14.7515 +2016-08-28 13:18:50,3599.0,11.0848, +2016-08-28 13:28:53,3599.0,11.0868, +2016-08-28 13:30:00,,,14.6572 +2016-08-28 13:38:57,3599.0,11.0587, +2016-08-28 13:45:00,,,14.6559 +2016-08-28 13:49:00,3599.0,11.0877, +2016-08-28 13:59:03,3599.0,11.0868, +2016-08-28 14:00:00,,,14.6572 +2016-08-28 14:09:06,3599.0,11.0877, +2016-08-28 14:15:00,,,14.6546 +2016-08-28 14:19:10,3599.0,11.0877, +2016-08-28 14:29:12,3599.0,11.0868, +2016-08-28 14:30:00,,,14.6886 +2016-08-28 14:39:15,3599.0,11.0877, +2016-08-28 14:45:00,,,14.6559 +2016-08-28 14:49:18,3599.0,11.0877, +2016-08-28 14:59:22,3599.0,11.0868, +2016-08-28 15:00:00,,,14.6886 +2016-08-28 15:09:25,3599.0,11.0907, +2016-08-28 15:15:00,,,14.6546 +2016-08-28 15:19:28,3599.0,11.0907, +2016-08-28 15:29:31,3599.0,11.0897, +2016-08-28 15:30:00,,,14.6873 +2016-08-28 15:39:34,3599.0,11.0907, +2016-08-28 15:45:00,,,14.6559 +2016-08-28 15:49:38,3599.0,11.0038, +2016-08-28 15:59:41,3599.0,11.0038, +2016-08-28 16:00:00,,,14.686 +2016-08-28 16:09:44,3599.0,11.0038, +2016-08-28 16:15:00,,,14.6585 +2016-08-28 16:19:47,3599.0,11.0038, +2016-08-28 16:29:50,3599.0,11.0327, +2016-08-28 16:30:00,,,14.686 +2016-08-28 16:39:54,3599.0,11.0057, +2016-08-28 16:45:00,,,14.6572 +2016-08-28 16:49:57,3599.0,11.0057, +2016-08-28 17:00:00,3599.0,11.0057,14.6546 +2016-08-28 17:10:03,3599.0,11.0057, +2016-08-28 17:15:00,,,14.6873 +2016-08-28 17:20:07,3599.0,11.0057, +2016-08-28 17:30:00,,,14.686 +2016-08-28 17:30:10,3599.0,11.0057, +2016-08-28 17:40:13,3599.0,10.9797, +2016-08-28 17:45:00,,,14.6572 +2016-08-28 17:50:16,3599.0,10.9797, +2016-08-28 18:00:00,,,14.6572 +2016-08-28 18:00:19,3599.0,11.0087, +2016-08-28 18:10:23,3599.0,11.0376, +2016-08-28 18:15:00,,,14.6873 +2016-08-28 18:20:26,3599.0,11.0666, +2016-08-28 18:30:00,,,14.6598 +2016-08-28 18:30:29,3599.0,11.0956, +2016-08-28 18:40:32,3599.0,11.0956, +2016-08-28 18:45:00,,,14.6546 +2016-08-28 18:50:35,3599.0,11.0966, +2016-08-28 19:00:00,,,14.6598 +2016-08-28 19:00:38,3599.0,11.0956, +2016-08-28 19:10:41,3599.0,11.0956, +2016-08-28 19:15:00,,,14.6886 +2016-08-28 19:20:44,3599.0,11.0956, +2016-08-28 19:30:00,,,14.6598 +2016-08-28 19:30:47,3599.0,11.0956, +2016-08-28 19:40:50,3599.0,11.0956, +2016-08-28 19:45:00,,,14.6624 +2016-08-28 19:50:53,3599.0,11.0986, +2016-08-28 20:00:00,,,14.6572 +2016-08-28 20:00:56,3599.0,11.0696, +2016-08-28 20:10:58,3599.0,11.0956, +2016-08-28 20:15:00,,,14.6912 +2016-08-28 20:21:01,3599.0,11.0956, +2016-08-28 20:30:00,,,14.6912 +2016-08-28 20:31:04,3599.0,11.0956, +2016-08-28 20:41:07,3599.0,11.0676, +2016-08-28 20:45:00,,,14.6912 +2016-08-28 20:51:10,3599.0,11.0966, +2016-08-28 21:00:00,,,14.6598 +2016-08-28 21:01:13,3599.0,11.0956, +2016-08-28 21:11:15,3599.0,11.0666, +2016-08-28 21:15:00,,,14.6598 +2016-08-28 21:21:18,3599.0,11.0956, +2016-08-28 21:30:00,,,14.6598 +2016-08-28 21:31:21,3599.0,11.0956, +2016-08-28 21:41:23,3599.0,11.0946, +2016-08-28 21:45:00,,,14.6925 +2016-08-28 21:51:26,3599.0,11.0966, +2016-08-28 22:00:00,,,14.6598 +2016-08-28 22:01:29,3599.0,11.0956, +2016-08-28 22:11:32,3599.0,11.0666, +2016-08-28 22:15:00,,,14.6585 +2016-08-28 22:21:34,3599.0,11.0966, +2016-08-28 22:30:00,,,14.6912 +2016-08-28 22:31:37,3599.0,11.0956, +2016-08-28 22:41:40,3599.0,11.1247, +2016-08-28 22:45:00,,,14.6598 +2016-08-28 22:51:43,3599.0,11.0956, +2016-08-28 23:00:00,,,14.6611 +2016-08-28 23:01:45,3599.0,11.1247, +2016-08-28 23:11:48,3599.0,11.0956, +2016-08-28 23:15:00,,,14.6912 +2016-08-28 23:21:50,3599.0,11.1257, +2016-08-28 23:30:00,,,14.6912 +2016-08-28 23:31:53,3599.0,11.0956, +2016-08-28 23:41:56,3599.0,11.0956, +2016-08-28 23:45:00,,,14.6899 +2016-08-28 23:51:58,3599.0,11.0956, +2016-08-29 00:00:00,,,14.6598 +2016-08-29 00:02:01,3599.0,11.1247, +2016-08-29 00:12:04,3599.0,11.0647, +2016-08-29 00:15:00,,,14.6912 +2016-08-29 00:22:07,3599.0,11.0656, +2016-08-29 00:30:00,,,14.6598 +2016-08-29 00:32:10,3599.0,11.0656, +2016-08-29 00:42:13,3599.0,11.0937, +2016-08-29 00:45:00,,,14.6912 +2016-08-29 00:52:15,3599.0,11.0647, +2016-08-29 01:00:00,,,14.6598 +2016-08-29 01:02:18,3599.0,11.1217, +2016-08-29 01:12:21,3599.0,11.0927, +2016-08-29 01:15:00,,,14.6598 +2016-08-29 01:22:24,3599.0,11.0637, +2016-08-29 01:30:00,,,14.6611 +2016-08-29 01:32:27,3599.0,11.0927, +2016-08-29 01:42:29,3599.0,11.0946, +2016-08-29 01:45:00,,,14.6899 +2016-08-29 01:52:32,3599.0,11.0907, +2016-08-29 02:00:00,,,14.6912 +2016-08-29 02:02:35,3599.0,11.1197, +2016-08-29 02:12:37,3599.0,11.0607, +2016-08-29 02:15:00,,,14.6912 +2016-08-29 02:22:40,3599.0,11.0627, +2016-08-29 02:30:00,,,14.6637 +2016-08-29 02:32:43,3599.0,11.0907, +2016-08-29 02:42:45,3599.0,11.0907, +2016-08-29 02:45:00,,,14.6637 +2016-08-29 02:52:48,3599.0,11.0897, +2016-08-29 03:00:00,,,14.6637 +2016-08-29 03:02:50,3599.0,11.0907, +2016-08-29 03:12:53,3599.0,11.0907, +2016-08-29 03:15:00,,,14.6624 +2016-08-29 03:22:56,3599.0,11.0907, +2016-08-29 03:30:00,,,14.6598 +2016-08-29 03:32:58,3599.0,11.0907, +2016-08-29 03:43:01,3599.0,11.0907, +2016-08-29 03:45:00,,,14.6912 +2016-08-29 03:53:03,3599.0,11.0877, +2016-08-29 04:00:00,,,14.6637 +2016-08-29 04:03:06,3599.0,11.0868, +2016-08-29 04:13:08,3599.0,11.0868, +2016-08-29 04:15:00,,,14.6637 +2016-08-29 04:23:11,3599.0,11.0877, +2016-08-29 04:30:00,,,14.6951 +2016-08-29 04:33:13,3599.0,11.0877, +2016-08-29 04:43:16,3599.0,11.0868, +2016-08-29 04:45:00,,,14.665 +2016-08-29 04:53:19,3599.0,11.0877, +2016-08-29 05:00:00,,,14.6637 +2016-08-29 05:03:21,3599.0,11.0877, +2016-08-29 05:13:24,3599.0,11.0877, +2016-08-29 05:15:00,,,14.6951 +2016-08-29 05:23:26,3599.0,11.0887, +2016-08-29 05:30:00,,,14.6637 +2016-08-29 05:33:36,3599.0,11.0848, +2016-08-29 05:43:39,3599.0,11.0848, +2016-08-29 05:45:00,,,14.6977 +2016-08-29 05:53:41,3599.0,11.0848, +2016-08-29 06:00:00,,,14.6951 +2016-08-29 06:03:44,3599.0,11.0848, +2016-08-29 06:13:47,3599.0,11.0848, +2016-08-29 06:15:00,,,14.6951 +2016-08-29 06:23:49,3599.0,11.0848, +2016-08-29 06:30:00,,,14.6964 +2016-08-29 06:33:52,3599.0,11.0848, +2016-08-29 06:43:54,3599.0,11.0818, +2016-08-29 06:45:00,,,14.6663 +2016-08-29 06:53:57,3599.0,11.0818, +2016-08-29 07:00:00,,,14.6964 +2016-08-29 07:03:59,3599.0,11.0818, +2016-08-29 07:14:02,3599.0,11.0818, +2016-08-29 07:15:00,,,14.6663 +2016-08-29 07:24:05,3599.0,11.1108, +2016-08-29 07:30:00,,,14.6964 +2016-08-29 07:34:07,3599.0,11.0818, +2016-08-29 07:44:10,3599.0,11.0818, +2016-08-29 07:45:00,,,14.6951 +2016-08-29 07:54:12,3599.0,11.1108, +2016-08-29 08:00:00,,,14.6964 +2016-08-29 08:04:15,3599.0,11.0789, +2016-08-29 08:14:17,3599.0,11.0789, +2016-08-29 08:15:00,,,14.6951 +2016-08-29 08:24:20,3599.0,11.0789, +2016-08-29 08:30:00,,,14.6951 +2016-08-29 08:34:22,3599.0,11.0789, +2016-08-29 08:44:25,3599.0,11.0789, +2016-08-29 08:45:00,,,14.6964 +2016-08-29 08:54:27,3599.0,11.1079, +2016-08-29 09:00:00,,,14.6624 +2016-08-29 09:04:30,3599.0,11.0789, +2016-08-29 09:14:32,3599.0,11.0789, +2016-08-29 09:15:00,,,14.6637 +2016-08-29 09:24:35,3599.0,11.0789, +2016-08-29 09:30:00,,,14.6637 +2016-08-29 09:34:38,3599.0,11.0789, +2016-08-29 09:44:41,3599.0,11.0798, +2016-08-29 09:45:00,,,14.6951 +2016-08-29 09:54:43,3599.0,11.0789, +2016-08-29 10:00:00,,,14.6624 +2016-08-29 10:04:46,3599.0,11.0789, +2016-08-29 10:14:48,3599.0,11.0789, +2016-08-29 10:15:00,,,14.6637 +2016-08-29 10:24:51,3599.0,11.0789, +2016-08-29 10:30:00,,,14.6637 +2016-08-29 10:34:54,3599.0,11.0789, +2016-08-29 10:44:57,3599.0,11.0789, +2016-08-29 10:45:00,,,14.6637 +2016-08-29 10:54:59,3599.0,11.0769, +2016-08-29 11:00:00,,,14.6637 +2016-08-29 11:05:02,3599.0,11.0759, +2016-08-29 11:15:00,,,14.6977 +2016-08-29 11:15:05,3599.0,11.0759, +2016-08-29 11:25:08,3599.0,11.0759, +2016-08-29 11:30:00,,,14.6951 +2016-08-29 11:35:10,3599.0,11.1039, +2016-08-29 11:45:00,,,14.6637 +2016-08-29 11:45:13,3599.0,11.0759, +2016-08-29 11:55:16,3599.0,11.0759, +2016-08-29 12:00:00,,,14.6637 +2016-08-29 12:05:18,3599.0,11.1049, +2016-08-29 12:15:00,,,14.6951 +2016-08-29 12:15:21,3599.0,11.0749, +2016-08-29 12:25:24,3599.0,11.0759, +2016-08-29 12:30:00,,,14.6676 +2016-08-29 12:35:27,3599.0,11.0769, +2016-08-29 12:45:00,,,14.6585 +2016-08-29 12:45:29,3599.0,11.0759, +2016-08-29 12:55:32,3599.0,11.1049, +2016-08-29 13:00:00,,,14.6663 +2016-08-29 13:05:35,3599.0,11.0769, +2016-08-29 13:15:00,,,14.6624 +2016-08-29 13:15:37,3599.0,11.0759, +2016-08-29 13:25:40,3599.0,11.046, +2016-08-29 13:30:00,,,14.665 +2016-08-29 13:35:43,3599.0,11.0479, +2016-08-29 13:45:00,,,14.6637 +2016-08-29 13:45:46,3599.0,11.0759, +2016-08-29 13:55:48,3599.0,11.0729, +2016-08-29 14:00:00,,,14.6611 +2016-08-29 14:05:51,3599.0,11.1039, +2016-08-29 14:15:00,,,14.5957 +2016-08-29 14:15:54,3599.0,11.0769, +2016-08-29 14:25:56,3599.0,11.0759, +2016-08-29 14:30:00,,,14.5683 +2016-08-29 14:35:59,3599.0,11.0739, +2016-08-29 14:45:00,,,14.5657 +2016-08-29 14:46:02,3599.0,11.0739, +2016-08-29 14:56:05,3599.0,11.0739, +2016-08-29 15:00:00,,,14.6284 +2016-08-29 15:06:07,3599.0,11.1029, +2016-08-29 15:15:00,,,14.5657 +2016-08-29 15:16:10,3599.0,11.0739, +2016-08-29 15:26:13,3599.0,11.0729, +2016-08-29 15:30:00,,,14.5657 +2016-08-29 15:36:16,3599.0,11.0739, +2016-08-29 15:45:00,,,14.5957 +2016-08-29 15:46:19,3599.0,11.0739, +2016-08-29 15:56:22,3599.0,11.045, +2016-08-29 16:00:00,,,14.5983 +2016-08-29 16:06:24,3599.0,11.0739, +2016-08-29 16:15:00,,,14.5644 +2016-08-29 16:16:27,3599.0,11.0739, +2016-08-29 16:26:30,3599.0,11.044, +2016-08-29 16:30:00,,,14.597 +2016-08-29 16:36:33,3599.0,11.0739, +2016-08-29 16:45:00,,,14.567 +2016-08-29 16:46:36,3599.0,11.0729, +2016-08-29 16:56:38,3599.0,11.0749, +2016-08-29 17:00:00,,,14.567 +2016-08-29 17:06:41,3599.0,11.0729, +2016-08-29 17:15:00,,,14.5644 +2016-08-29 17:16:43,3599.0,11.0479, +2016-08-29 17:26:54,3599.0,11.0749, +2016-08-29 17:30:00,,,14.5657 +2016-08-29 17:36:57,3599.0,11.0739, +2016-08-29 17:45:00,,,14.5657 +2016-08-29 17:46:59,3599.0,11.1029, +2016-08-29 17:57:02,3599.0,11.044, +2016-08-29 18:00:00,,,14.6297 +2016-08-29 18:07:05,3599.0,11.045, +2016-08-29 18:15:00,,,14.6271 +2016-08-29 18:17:08,3599.0,11.1029, +2016-08-29 18:27:10,3599.0,11.1319, +2016-08-29 18:30:00,,,14.597 +2016-08-29 18:37:13,3599.0,11.1029, +2016-08-29 18:45:00,,,14.597 +2016-08-29 18:47:16,3599.0,11.0739, +2016-08-29 18:57:19,3599.0,11.0729, +2016-08-29 19:00:00,,,14.567 +2016-08-29 19:07:21,3599.0,11.0739, +2016-08-29 19:15:00,,,14.5996 +2016-08-29 19:17:24,3599.0,11.0739, +2016-08-29 19:27:27,3599.0,11.0739, +2016-08-29 19:30:00,,,14.597 +2016-08-29 19:37:30,3599.0,11.0739, +2016-08-29 19:45:00,,,14.597 +2016-08-29 19:47:32,3599.0,11.0739, +2016-08-29 19:57:35,3599.0,11.0739, +2016-08-29 20:00:00,,,14.5996 +2016-08-29 20:07:38,3599.0,11.0729, +2016-08-29 20:15:00,,,14.5983 +2016-08-29 20:17:41,3599.0,11.0729, +2016-08-29 20:27:43,3599.0,11.0729, +2016-08-29 20:30:00,,,14.5957 +2016-08-29 20:37:46,3599.0,11.0739, +2016-08-29 20:45:00,,,14.597 +2016-08-29 20:47:49,3599.0,11.0729, +2016-08-29 20:57:51,3599.0,11.0739, +2016-08-29 21:00:00,,,14.597 +2016-08-29 21:07:54,3599.0,11.0739, +2016-08-29 21:15:00,,,14.597 +2016-08-29 21:17:56,3599.0,11.0729, +2016-08-29 21:27:59,3599.0,11.0739, +2016-08-29 21:30:00,,,14.5983 +2016-08-29 21:38:02,3599.0,11.0729, +2016-08-29 21:45:00,,,14.597 +2016-08-29 21:48:04,3599.0,11.0739, +2016-08-29 21:58:07,3599.0,11.071, +2016-08-29 22:00:00,,,14.597 +2016-08-29 22:08:09,3599.0,11.0729, +2016-08-29 22:15:00,,,14.5996 +2016-08-29 22:18:12,3599.0,11.1289, +2016-08-29 22:28:14,3599.0,11.071, +2016-08-29 22:30:00,,,14.597 +2016-08-29 22:38:17,3599.0,11.07, +2016-08-29 22:45:00,,,14.597 +2016-08-29 22:48:19,3599.0,11.07, +2016-08-29 22:58:22,3599.0,11.071, +2016-08-29 23:00:00,,,14.597 +2016-08-29 23:08:24,3599.0,11.071, +2016-08-29 23:15:00,,,14.597 +2016-08-29 23:18:27,3599.0,11.0999, +2016-08-29 23:28:30,3599.0,11.068, +2016-08-29 23:30:00,,,14.5683 +2016-08-29 23:38:32,3599.0,11.068, +2016-08-29 23:45:00,,,14.597 +2016-08-29 23:48:34,3599.0,11.067, +2016-08-29 23:58:37,3599.0,11.095999999999998, +2016-08-30 00:00:00,,,14.5996 +2016-08-30 00:08:39,3599.0,11.068, +2016-08-30 00:15:00,,,14.597 +2016-08-30 00:18:42,3599.0,11.068, +2016-08-30 00:28:44,3599.0,11.067, +2016-08-30 00:30:00,,,14.5996 +2016-08-30 00:38:46,3598.0,11.097, +2016-08-30 00:45:00,,,14.5996 +2016-08-30 00:48:49,3598.0,11.097, +2016-08-30 00:58:51,3598.0,11.0391, +2016-08-30 01:00:00,,,14.597 +2016-08-30 01:08:54,3598.0,11.068, +2016-08-30 01:15:00,,,14.5657 +2016-08-30 01:18:56,3598.0,11.068, +2016-08-30 01:28:58,3598.0,11.0661, +2016-08-30 01:30:00,,,14.597 +2016-08-30 01:39:01,3598.0,11.094, +2016-08-30 01:45:00,,,14.5996 +2016-08-30 01:49:03,3597.0,11.0641, +2016-08-30 01:59:05,3596.0,11.0651, +2016-08-30 02:00:00,,,14.597 +2016-08-30 02:09:08,3596.0,11.094, +2016-08-30 02:15:00,,,14.597 +2016-08-30 02:19:10,3595.0,11.0651, +2016-08-30 02:29:13,3595.0,11.093, +2016-08-30 02:30:00,,,14.5983 +2016-08-30 02:39:15,3594.0,11.123, +2016-08-30 02:45:00,,,14.5983 +2016-08-30 02:49:17,3594.0,11.0651, +2016-08-30 02:59:20,3593.0,11.0641, +2016-08-30 03:00:00,,,14.597 +2016-08-30 03:09:22,3593.0,11.0621, +2016-08-30 03:15:00,,,14.5957 +2016-08-30 03:19:24,3592.0,11.0621, +2016-08-30 03:29:27,3591.0,11.0621, +2016-08-30 03:30:00,,,14.5983 +2016-08-30 03:39:29,3591.0,11.0911, +2016-08-30 03:45:00,,,14.597 +2016-08-30 03:49:31,3589.0,11.0621, +2016-08-30 03:59:34,3588.0,11.0881, +2016-08-30 04:00:00,,,14.5983 +2016-08-30 04:09:36,3588.0,11.0592, +2016-08-30 04:15:00,,,14.5657 +2016-08-30 04:19:38,3588.0,11.0592, +2016-08-30 04:29:41,3587.0,11.0592, +2016-08-30 04:30:00,,,14.5957 +2016-08-30 04:39:43,3587.0,11.1171, +2016-08-30 04:45:00,,,14.597 +2016-08-30 04:49:45,3586.0,11.0592, +2016-08-30 04:59:47,3586.0,11.0592, +2016-08-30 05:00:00,,,14.597 +2016-08-30 05:09:50,3585.0,11.0592, +2016-08-30 05:15:00,,,14.5983 +2016-08-30 05:19:52,3585.0,11.0881, +2016-08-30 05:29:54,3585.0,11.0562, +2016-08-30 05:30:00,,,14.5957 +2016-08-30 05:39:57,3584.0,11.0572, +2016-08-30 05:45:00,,,14.5983 +2016-08-30 05:49:59,3584.0,11.0562, +2016-08-30 06:00:00,,,14.5931 +2016-08-30 06:00:01,3583.0,11.0572, +2016-08-30 06:10:03,3583.0,11.0562, +2016-08-30 06:15:00,,,14.5944 +2016-08-30 06:20:06,3583.0,11.0572, +2016-08-30 06:30:00,,,14.6559 +2016-08-30 06:30:08,3582.0,11.0572, +2016-08-30 06:40:11,3582.0,11.0562, +2016-08-30 06:45:00,,,14.5631 +2016-08-30 06:50:13,3581.0,11.0822, +2016-08-30 07:00:00,,,14.5631 +2016-08-30 07:00:15,3582.0,11.0822, +2016-08-30 07:10:18,3581.0,11.0533, +2016-08-30 07:15:00,,,14.6572 +2016-08-30 07:20:20,3582.0,11.0533, +2016-08-30 07:30:00,,,14.5631 +2016-08-30 07:30:22,3582.0,11.0503, +2016-08-30 07:40:25,3582.0,11.0503, +2016-08-30 07:45:00,,,14.5918 +2016-08-30 07:50:27,3583.0,11.0503, +2016-08-30 08:00:00,,,14.6899 +2016-08-30 08:00:29,3583.0,11.0792, +2016-08-30 08:10:32,3584.0,11.0792, +2016-08-30 08:15:00,,,14.6899 +2016-08-30 08:20:34,3584.0,11.0792, +2016-08-30 08:30:00,,,14.5944 +2016-08-30 08:30:36,3585.0,11.0503, +2016-08-30 08:40:39,3586.0,11.0503, +2016-08-30 08:45:00,,,14.5944 +2016-08-30 08:50:41,3587.0,11.0792, +2016-08-30 09:00:00,,,14.5957 +2016-08-30 09:00:44,3588.0,11.0503, +2016-08-30 09:10:46,3588.0,11.0503, +2016-08-30 09:15:00,,,14.5893 +2016-08-30 09:20:48,3589.0,11.0513, +2016-08-30 09:30:00,,,14.5918 +2016-08-30 09:30:51,3591.0,11.0483, +2016-08-30 09:40:53,3592.0,11.0474, +2016-08-30 09:45:00,,,14.5592 +2016-08-30 09:50:56,3593.0,11.0483, +2016-08-30 10:00:00,,,14.5906 +2016-08-30 10:00:59,3595.0,11.0483, +2016-08-30 10:11:01,3595.0,11.0483, +2016-08-30 10:15:00,,,14.588 +2016-08-30 10:21:04,3596.0,11.0483, +2016-08-30 10:30:00,,,14.5579 +2016-08-30 10:31:06,3598.0,11.0483, +2016-08-30 10:41:09,3598.0,11.0483, +2016-08-30 10:45:00,,,14.5918 +2016-08-30 10:51:11,3598.0,11.0773, +2016-08-30 11:00:00,,,14.5906 +2016-08-30 11:01:14,3598.0,11.0483, +2016-08-30 11:11:16,3599.0,11.0483, +2016-08-30 11:15:00,,,14.5906 +2016-08-30 11:21:19,3599.0,11.0474, +2016-08-30 11:30:00,,,14.5592 +2016-08-30 11:31:22,3599.0,11.0483, +2016-08-30 11:41:26,3599.0,11.0474, +2016-08-30 11:45:00,,,14.5592 +2016-08-30 11:51:30,3599.0,11.0483, +2016-08-30 12:00:00,,,14.5906 +2016-08-30 12:01:33,3599.0,11.0474, +2016-08-30 12:11:35,3599.0,11.0483, +2016-08-30 12:15:00,,,14.5893 +2016-08-30 12:21:38,3599.0,11.0773, +2016-08-30 12:30:00,,,14.588 +2016-08-30 12:31:40,3599.0,11.0483, +2016-08-30 12:41:43,3599.0,11.0474, +2016-08-30 12:45:00,,,14.5906 +2016-08-30 12:51:46,3599.0,11.0483, +2016-08-30 13:00:00,,,14.5906 +2016-08-30 13:01:48,3599.0,11.0483, +2016-08-30 13:11:51,3599.0,11.0474, +2016-08-30 13:15:00,,,14.5906 +2016-08-30 13:21:54,3599.0,11.0474, +2016-08-30 13:30:00,,,14.5906 +2016-08-30 13:31:56,3599.0,11.0483, +2016-08-30 13:41:59,3599.0,11.0483, +2016-08-30 13:45:00,,,14.5906 +2016-08-30 13:52:02,3599.0,11.0483, +2016-08-30 14:00:00,,,14.5906 +2016-08-30 14:02:05,3599.0,11.0483, +2016-08-30 14:12:07,3599.0,11.0483, +2016-08-30 14:15:00,,,14.5893 +2016-08-30 14:22:10,3599.0,11.0483, +2016-08-30 14:30:00,,,14.5893 +2016-08-30 14:32:13,3599.0,11.0483, +2016-08-30 14:42:15,3599.0,11.0483, +2016-08-30 14:45:00,,,14.5554 +2016-08-30 14:52:18,3599.0,11.0474, +2016-08-30 15:00:00,,,14.5867 +2016-08-30 15:02:21,3599.0,11.0185, +2016-08-30 15:12:24,3599.0,11.0483, +2016-08-30 15:15:00,,,14.5841 +2016-08-30 15:22:26,3599.0,10.9349, +2016-08-30 15:30:00,,,14.4343 +2016-08-30 15:32:29,3599.0,10.9319, +2016-08-30 15:42:32,3599.0,10.9598, +2016-08-30 15:45:00,,,14.4603 +2016-08-30 15:52:35,3599.0,10.9617, +2016-08-30 16:00:00,,,14.5241 +2016-08-30 16:02:38,3599.0,10.9627, +2016-08-30 16:12:41,3599.0,10.9637, +2016-08-30 16:15:00,,,14.4603 +2016-08-30 16:22:43,3599.0,10.9925, +2016-08-30 16:30:00,,,14.5228 +2016-08-30 16:32:46,3599.0,10.9637, +2016-08-30 16:42:49,3599.0,10.9925, +2016-08-30 16:45:00,,,14.4603 +2016-08-30 16:52:52,3599.0,10.9925, +2016-08-30 17:00:00,,,14.4915 +2016-08-30 17:02:55,3599.0,11.0214, +2016-08-30 17:12:58,3599.0,10.9925, +2016-08-30 17:15:00,,,14.4915 +2016-08-30 17:23:01,3599.0,10.9916, +2016-08-30 17:30:00,,,14.5254 +2016-08-30 17:33:03,3599.0,10.9637, +2016-08-30 17:43:06,3599.0,10.9627, +2016-08-30 17:45:00,,,14.4616 +2016-08-30 17:53:09,3599.0,10.9637, +2016-08-30 18:00:00,,,14.5228 +2016-08-30 18:03:12,3599.0,10.9627, +2016-08-30 18:13:15,3599.0,10.9637, +2016-08-30 18:15:00,,,14.4915 +2016-08-30 18:23:18,3599.0,11.0493, +2016-08-30 18:30:00,,,14.4603 +2016-08-30 18:33:20,3599.0,10.9637, +2016-08-30 18:43:23,3599.0,11.0214, +2016-08-30 18:45:00,,,14.4903 +2016-08-30 18:53:26,3599.0,11.0503, +2016-08-30 19:00:00,,,14.4915 +2016-08-30 19:03:29,3599.0,11.0503, +2016-08-30 19:13:32,3599.0,11.0533, +2016-08-30 19:15:00,,,14.4629 +2016-08-30 19:23:34,3599.0,11.0533, +2016-08-30 19:30:00,,,14.4629 +2016-08-30 19:33:37,3599.0,11.0533, +2016-08-30 19:43:40,3599.0,11.0533, +2016-08-30 19:45:00,,,14.4915 +2016-08-30 19:53:43,3599.0,11.0822, +2016-08-30 20:00:00,,,14.5241 +2016-08-30 20:03:45,3599.0,11.0533, +2016-08-30 20:13:48,3599.0,11.0503, +2016-08-30 20:15:00,,,14.4915 +2016-08-30 20:23:51,3599.0,11.0533, +2016-08-30 20:30:00,,,14.4928 +2016-08-30 20:33:53,3599.0,11.0533, +2016-08-30 20:43:56,3599.0,11.0822, +2016-08-30 20:45:00,,,14.4616 +2016-08-30 20:53:58,3599.0,11.0822, +2016-08-30 21:00:00,,,14.5241 +2016-08-30 21:04:00,3599.0,11.0503, +2016-08-30 21:14:03,3599.0,11.0533, +2016-08-30 21:15:00,,,14.4928 +2016-08-30 21:24:05,3599.0,11.0822, +2016-08-30 21:30:00,,,14.5241 +2016-08-30 21:34:08,3599.0,11.0533, +2016-08-30 21:44:10,3599.0,11.0503, +2016-08-30 21:45:00,,,14.4928 +2016-08-30 21:54:13,3599.0,11.0493, +2016-08-30 22:00:00,,,14.4928 +2016-08-30 22:04:16,3599.0,11.0792, +2016-08-30 22:14:18,3599.0,11.0523, +2016-08-30 22:15:00,,,14.4603 +2016-08-30 22:24:21,3599.0,11.0503, +2016-08-30 22:30:00,,,14.4603 +2016-08-30 22:34:23,3599.0,11.0503, +2016-08-30 22:44:26,3599.0,11.0503, +2016-08-30 22:45:00,,,14.4928 +2016-08-30 22:54:28,3599.0,11.0503, +2016-08-30 23:00:00,,,14.4941 +2016-08-30 23:04:31,3599.0,11.0792, +2016-08-30 23:14:33,3599.0,11.0503, +2016-08-30 23:15:00,,,14.5254 +2016-08-30 23:24:36,3599.0,11.0503, +2016-08-30 23:30:00,,,14.4915 +2016-08-30 23:34:38,3599.0,11.0513, +2016-08-30 23:44:41,3599.0,11.0513, +2016-08-30 23:45:00,,,14.4928 +2016-08-30 23:54:44,3598.0,11.0503, +2016-08-31 00:00:00,,,14.4603 +2016-08-31 00:15:00,,, +2016-08-31 00:30:00,,, +2016-08-31 00:45:00,,, +2016-08-31 01:00:00,,,14.4941 +2016-08-31 01:05:02,3598.0,11.0503, +2016-08-31 01:15:00,,,14.4915 +2016-08-31 01:15:04,3598.0,11.0792, +2016-08-31 01:25:07,3598.0,11.0483, +2016-08-31 01:30:00,,,14.4915 +2016-08-31 01:35:09,3598.0,11.0483, +2016-08-31 01:45:00,,,14.4616 +2016-08-31 01:45:12,3598.0,11.0483, +2016-08-31 01:55:14,3598.0,11.0483, +2016-08-31 02:00:00,,,14.489 +2016-08-31 02:05:17,3598.0,11.0474, +2016-08-31 02:15:00,,,14.4565 +2016-08-31 02:15:19,3598.0,11.0763, +2016-08-31 02:25:22,3597.0,11.0483, +2016-08-31 02:30:00,,,14.4877 +2016-08-31 02:35:25,3597.0,11.0483, +2016-08-31 02:45:00,,,14.4928 +2016-08-31 02:45:27,3597.0,11.0773, +2016-08-31 02:55:30,3596.0,11.0773, +2016-08-31 03:00:00,,,14.5189 +2016-08-31 03:05:32,3595.0,11.0773, +2016-08-31 03:15:00,,,14.5215 +2016-08-31 03:15:35,3595.0,11.0773, +2016-08-31 03:25:37,3595.0,11.0483, +2016-08-31 03:30:00,,,14.5241 +2016-08-31 03:35:40,3594.0,11.0483, +2016-08-31 03:45:00,,,14.5202 +2016-08-31 03:45:42,3594.0,11.0483, +2016-08-31 03:55:45,3593.0,11.0483, +2016-08-31 04:00:00,,,14.4928 +2016-08-31 04:05:47,3593.0,11.0773, +2016-08-31 04:15:00,,,14.5189 +2016-08-31 04:15:50,3592.0,11.0483, +2016-08-31 04:25:52,3592.0,11.0454, +2016-08-31 04:30:00,,,14.4578 +2016-08-31 04:35:55,3592.0,11.0454, +2016-08-31 04:45:00,,,14.489 +2016-08-31 04:45:57,3592.0,11.0454, +2016-08-31 04:56:00,3591.0,11.0454, +2016-08-31 05:00:00,,,14.5202 +2016-08-31 05:06:02,3591.0,11.0454, +2016-08-31 05:15:00,,,14.489 +2016-08-31 05:16:05,3591.0,11.0743, +2016-08-31 05:26:07,3591.0,11.0713, +2016-08-31 05:30:00,,,14.489 +2016-08-31 05:36:10,3591.0,11.0464, +2016-08-31 05:45:00,,,14.4903 +2016-08-31 05:46:12,3590.0,11.0415, +2016-08-31 05:56:14,3590.0,11.0425, +2016-08-31 06:00:00,,,14.4591 +2016-08-31 06:06:16,3590.0,11.0713, +2016-08-31 06:15:00,,,14.489 +2016-08-31 06:16:18,3589.0,11.0425, +2016-08-31 06:26:21,3589.0,11.0713, +2016-08-31 06:30:00,,,14.5189 +2016-08-31 06:36:23,3589.0,11.0425, +2016-08-31 06:45:00,,,14.4877 +2016-08-31 06:46:25,3590.0,11.0713, +2016-08-31 06:56:28,3589.0,11.0425, +2016-08-31 07:00:00,,,14.4877 +2016-08-31 07:06:30,3589.0,11.0425, +2016-08-31 07:15:00,,,14.4903 +2016-08-31 07:16:33,3589.0,11.0425, +2016-08-31 07:26:35,3589.0,11.0713, +2016-08-31 07:30:00,,,14.489 +2016-08-31 07:36:37,3590.0,11.0425, +2016-08-31 07:45:00,,,14.5202 +2016-08-31 07:46:40,3590.0,11.0425, +2016-08-31 07:56:42,3590.0,11.0395, +2016-08-31 08:00:00,,,14.5189 +2016-08-31 08:06:45,3592.0,11.0395, +2016-08-31 08:15:00,,,14.4578 +2016-08-31 08:16:47,3592.0,11.0395, +2016-08-31 08:26:49,3592.0,11.0684, +2016-08-31 08:30:00,,,14.5202 +2016-08-31 08:36:52,3593.0,11.0395, +2016-08-31 08:45:00,,,14.5189 +2016-08-31 08:46:54,3594.0,11.0684, +2016-08-31 08:56:57,3595.0,11.0395, +2016-08-31 09:00:00,,,14.4864 +2016-08-31 09:06:59,3596.0,11.0385, +2016-08-31 09:15:00,,,14.5215 +2016-08-31 09:17:02,3597.0,11.0395, +2016-08-31 09:27:04,3598.0,11.0684, +2016-08-31 09:30:00,,,14.4838 +2016-08-31 09:37:07,3598.0,11.0395, +2016-08-31 09:45:00,,,14.4864 +2016-08-31 09:47:09,3598.0,11.0395, +2016-08-31 09:57:12,3598.0,11.0684, +2016-08-31 10:00:00,,,14.4851 +2016-08-31 10:07:14,3599.0,11.0395, +2016-08-31 10:15:00,,,14.4552 +2016-08-31 10:17:17,3599.0,11.0395, +2016-08-31 10:27:19,3599.0,11.0395, +2016-08-31 10:30:00,,,14.4526 +2016-08-31 10:37:22,3599.0,10.953, +2016-08-31 10:45:00,,,14.515 +2016-08-31 10:47:24,3599.0,10.9808, +2016-08-31 10:57:27,3599.0,10.9808, +2016-08-31 11:00:00,,,14.4838 +2016-08-31 11:07:29,3599.0,10.9808, +2016-08-31 11:15:00,,,14.4539 +2016-08-31 11:17:32,3599.0,10.9808, +2016-08-31 11:27:35,3599.0,10.9808, +2016-08-31 11:30:00,,,14.4552 +2016-08-31 11:37:37,3599.0,10.9818, +2016-08-31 11:45:00,,,14.4877 +2016-08-31 11:47:40,3599.0,10.953, +2016-08-31 11:57:43,3599.0,10.9808, +2016-08-31 12:00:00,,,14.4552 +2016-08-31 12:07:46,3599.0,10.9818, +2016-08-31 12:15:00,,,14.4526 +2016-08-31 12:17:49,3599.0,10.9818, +2016-08-31 12:27:52,3599.0,10.9808, +2016-08-31 12:30:00,,,14.4864 +2016-08-31 12:37:54,3599.0,10.952, +2016-08-31 12:45:00,,,14.4825 +2016-08-31 12:47:57,3599.0,10.9242, +2016-08-31 12:58:00,3599.0,10.8954, +2016-08-31 13:00:00,,,14.4501 +2016-08-31 13:08:03,3599.0,10.8954, +2016-08-31 13:15:00,,,14.4851 +2016-08-31 13:18:05,3599.0,10.8954, +2016-08-31 13:28:08,3599.0,10.8944, +2016-08-31 13:30:00,,,14.4526 +2016-08-31 13:38:11,3599.0,10.8983, +2016-08-31 13:45:00,,,14.48 +2016-08-31 13:48:14,3599.0,10.8686, +2016-08-31 13:58:17,3599.0,10.8983, +2016-08-31 14:00:00,,,14.3891 +2016-08-31 14:08:19,3599.0,10.8408, +2016-08-31 14:15:00,,,14.3865 +2016-08-31 14:18:22,3599.0,10.8686, +2016-08-31 14:28:25,3599.0,10.8686, +2016-08-31 14:30:00,,,14.3891 +2016-08-31 14:38:28,3599.0,10.8686, +2016-08-31 14:45:00,,,14.3891 +2016-08-31 14:48:31,3599.0,10.8973, +2016-08-31 14:58:34,3599.0,10.8973, +2016-08-31 15:00:00,,,14.4176 +2016-08-31 15:08:39,3599.0,10.8973, +2016-08-31 15:15:00,,,14.3891 +2016-08-31 15:18:42,3599.0,10.8695, +2016-08-31 15:28:45,3599.0,10.8695, +2016-08-31 15:30:00,,,14.3865 +2016-08-31 15:38:48,3599.0,10.9002, +2016-08-31 15:45:00,,,14.3878 +2016-08-31 15:48:51,3599.0,10.9012, +2016-08-31 15:58:54,3599.0,10.8715, +2016-08-31 16:00:00,,,14.3567 +2016-08-31 16:08:57,3599.0,10.8724, +2016-08-31 16:15:00,,,14.4176 +2016-08-31 16:19:00,3599.0,10.8724, +2016-08-31 16:29:03,3599.0,10.8753, +2016-08-31 16:30:00,,,14.3865 +2016-08-31 16:39:06,3599.0,10.8753, +2016-08-31 16:45:00,,,14.3878 +2016-08-31 16:49:09,3599.0,10.8734, +2016-08-31 16:59:12,3599.0,10.9041, +2016-08-31 17:00:00,,,14.3865 +2016-08-31 17:09:15,3599.0,10.8753, +2016-08-31 17:15:00,,,14.3865 +2016-08-31 17:19:18,3599.0,10.8753, +2016-08-31 17:29:21,3599.0,10.9031, +2016-08-31 17:30:00,,,14.3878 +2016-08-31 17:39:24,3599.0,10.8753, +2016-08-31 17:45:00,,,14.3865 +2016-08-31 17:49:27,3599.0,10.9041, +2016-08-31 17:59:30,3599.0,10.9041, +2016-08-31 18:00:00,,,14.3865 +2016-08-31 18:09:33,3599.0,10.9031, +2016-08-31 18:15:00,,,14.3865 +2016-08-31 18:19:36,3599.0,10.8744, +2016-08-31 18:29:39,3599.0,10.9061, +2016-08-31 18:30:00,,,14.3567 +2016-08-31 18:39:42,3599.0,10.8773, +2016-08-31 18:45:00,,,14.3554 +2016-08-31 18:49:45,3599.0,10.907, +2016-08-31 18:59:48,3599.0,10.8485, +2016-08-31 19:00:00,,,14.4189 +2016-08-31 19:09:51,3599.0,10.8773, +2016-08-31 19:15:00,,,14.3554 +2016-08-31 19:19:53,3599.0,10.9051, +2016-08-31 19:29:56,3599.0,10.8773, +2016-08-31 19:30:00,,,14.3891 +2016-08-31 19:39:59,3599.0,10.9061, +2016-08-31 19:45:00,,,14.4202 +2016-08-31 19:50:02,3599.0,10.8763, +2016-08-31 20:00:00,,,14.3878 +2016-08-31 20:00:05,3599.0,10.9051, +2016-08-31 20:10:08,3599.0,10.8773, +2016-08-31 20:15:00,,,14.3567 +2016-08-31 20:20:11,3599.0,10.9061, +2016-08-31 20:30:00,,,14.3878 +2016-08-31 20:30:13,3599.0,10.8773, +2016-08-31 20:40:16,3599.0,10.8773, +2016-08-31 20:45:00,,,14.3878 +2016-08-31 20:50:19,3599.0,10.907, +2016-08-31 21:00:00,,,14.3865 +2016-08-31 21:00:22,3599.0,10.8773, +2016-08-31 21:10:25,3599.0,10.8773, +2016-08-31 21:15:00,,,14.3891 +2016-08-31 21:20:27,3599.0,10.8763, +2016-08-31 21:30:00,,,14.3567 +2016-08-31 21:30:30,3599.0,10.8495, +2016-08-31 21:40:33,3599.0,10.9061, +2016-08-31 21:45:00,,,14.3865 +2016-08-31 21:50:36,3599.0,10.8782, +2016-08-31 22:00:00,,,14.3852 +2016-08-31 22:00:38,3599.0,10.9061, +2016-08-31 22:10:41,3599.0,10.9051, +2016-08-31 22:15:00,,,14.3903 +2016-08-31 22:20:44,3599.0,10.9061, +2016-08-31 22:30:00,,,14.3865 +2016-08-31 22:30:46,3599.0,10.907, +2016-08-31 22:40:49,3599.0,10.9051, +2016-08-31 22:45:00,,,14.3865 +2016-08-31 22:50:52,3599.0,10.9061, +2016-08-31 23:00:00,,,14.3852 +2016-08-31 23:00:54,3599.0,10.9061, +2016-08-31 23:10:57,3599.0,10.9051, +2016-08-31 23:15:00,,,14.3891 +2016-08-31 23:20:59,3599.0,10.8773, +2016-08-31 23:30:00,,,14.3865 +2016-08-31 23:31:02,3599.0,10.9061, +2016-08-31 23:41:04,3599.0,10.9061, +2016-08-31 23:45:00,,,14.3878 +2016-08-31 23:51:07,3599.0,10.8773, +2016-09-01 00:00:00,,, diff --git a/sphinx-doc/ressources/data/config.csv b/sphinxdoc/ressources/data/config.csv similarity index 100% rename from sphinx-doc/ressources/data/config.csv rename to sphinxdoc/ressources/data/config.csv diff --git a/sphinx-doc/ressources/data/config_ci.csv b/sphinxdoc/ressources/data/config_ci.csv similarity index 100% rename from sphinx-doc/ressources/data/config_ci.csv rename to sphinxdoc/ressources/data/config_ci.csv diff --git a/sphinx-doc/ressources/data/data.csv b/sphinxdoc/ressources/data/data.csv similarity index 100% rename from sphinx-doc/ressources/data/data.csv rename to sphinxdoc/ressources/data/data.csv diff --git a/sphinxdoc/ressources/data/hydro_config.csv b/sphinxdoc/ressources/data/hydro_config.csv new file mode 100644 index 0000000000000000000000000000000000000000..c97df2be1da86607ce0a1e0ddff58ab945d63180 --- /dev/null +++ b/sphinxdoc/ressources/data/hydro_config.csv @@ -0,0 +1,21 @@ +varname ; test +#-----------------------;------------------------------------------- +# Data Preparation +sac254_raw ; flagManual(mdata='maint', method='closed') +level_raw ; flagRange(min=0) +water_temp_raw ; flagRange(min=-1) +sac254_raw ; flagRange(min=0, max=60) +level_raw ; linear(freq='15min') +water_temp_raw ; linear(freq='15min') +sac254_raw ; linear(freq='15min') +# Drift Correcture +sac254_raw ; correctDrift(target='sac254_corr', maintenance_field='maint', model='exponential') +# Multivariate Flagging Procedure +level_z ; transform(field=['level_raw'], func=zScore(x), freq='20D') +water_z ; transform(field=['water_temp_raw'], func=zScore(x), freq='20D') +sac_z ; transform(field=['sac254_raw'], func=zScore(x), freq='20D') +kNN_scores ; assignKNNScore(field=['level_z', 'water_z', 'sac_z'], freq='20D') +kNN_scores ; flagByStray(freq='20D') +level_raw ; transferFlags(field=['kNN_scores'], label='STRAY') +sac254_corr ; transferFlags(field=['kNN_scores'], label='STRAY') +water_temp_raw ; transferFlags(field=['kNN_scores'], label='STRAY') \ No newline at end of file diff --git a/sphinx-doc/ressources/data/hydro_data.csv b/sphinxdoc/ressources/data/hydro_data.csv similarity index 100% rename from sphinx-doc/ressources/data/hydro_data.csv rename to sphinxdoc/ressources/data/hydro_data.csv diff --git a/sphinx-doc/ressources/data/hydro_maint.csv b/sphinxdoc/ressources/data/hydro_maint.csv similarity index 100% rename from sphinx-doc/ressources/data/hydro_maint.csv rename to sphinxdoc/ressources/data/hydro_maint.csv diff --git a/sphinx-doc/ressources/data/incidentsLKG.csv b/sphinxdoc/ressources/data/incidentsLKG.csv similarity index 100% rename from sphinx-doc/ressources/data/incidentsLKG.csv rename to sphinxdoc/ressources/data/incidentsLKG.csv diff --git a/sphinxdoc/ressources/data/myconfig.csv b/sphinxdoc/ressources/data/myconfig.csv new file mode 100644 index 0000000000000000000000000000000000000000..ea8d6c09063b95789adb7d2244ad7ff939222f00 --- /dev/null +++ b/sphinxdoc/ressources/data/myconfig.csv @@ -0,0 +1,5 @@ +varname;test +#------;-------------------------- +SM2 ;flagRange(min=10, max=60) +SM2 ;flagMAD(window="30d", z=3.5) +SM2 ;plot() \ No newline at end of file diff --git a/sphinxdoc/ressources/data/myconfig2.csv b/sphinxdoc/ressources/data/myconfig2.csv new file mode 100644 index 0000000000000000000000000000000000000000..26f29d7d928a97629c5abe38080f88e303bc38c7 --- /dev/null +++ b/sphinxdoc/ressources/data/myconfig2.csv @@ -0,0 +1,5 @@ +varname;test +#------;-------------------------- +SM2 ;flagRange(min=-20, max=60) +SM2 ;flagMAD(window="30d", z=3.5) +SM2 ;plot() \ No newline at end of file diff --git a/sphinxdoc/ressources/data/myconfig3.csv b/sphinxdoc/ressources/data/myconfig3.csv new file mode 100644 index 0000000000000000000000000000000000000000..1f030fe445a337b92dc1cb507ed4af3a138d0fd4 --- /dev/null +++ b/sphinxdoc/ressources/data/myconfig3.csv @@ -0,0 +1,5 @@ +varname;test +#------;-------------------------- +SM2 ;shift(freq="15Min") +SM2 ;flagGeneric(func=(SM2 < 30), label='Value too low') +SM2 ;plot() \ No newline at end of file diff --git a/sphinxdoc/ressources/data/myconfig4.csv b/sphinxdoc/ressources/data/myconfig4.csv new file mode 100644 index 0000000000000000000000000000000000000000..dd7a9a6b17152307389153325d78628771b52f6a --- /dev/null +++ b/sphinxdoc/ressources/data/myconfig4.csv @@ -0,0 +1,8 @@ +varname;test +#------;-------------------------- +SM1;flagRange(min=10, max=60) +SM2;flagRange(min=10, max=60) +SM1;flagMAD(window="15d", z=3.5) +SM2;flagMAD(window="30d", z=3.5) +SM1;plot(store_kwargs={'format':'png','fname':'../ressources/temp/SM1processingResults'}) +SM2;plot(store_kwargs={'format':'png','fname':'../ressources/temp/SM2processingResults'}) \ No newline at end of file diff --git a/sphinx-doc/ressources/images/Representative/DifferentFlags.png b/sphinxdoc/ressources/images/Representative/DifferentFlags.png similarity index 100% rename from sphinx-doc/ressources/images/Representative/DifferentFlags.png rename to sphinxdoc/ressources/images/Representative/DifferentFlags.png diff --git a/sphinx-doc/ressources/images/Representative/MultivarSAC.png b/sphinxdoc/ressources/images/Representative/MultivarSAC.png similarity index 100% rename from sphinx-doc/ressources/images/Representative/MultivarSAC.png rename to sphinxdoc/ressources/images/Representative/MultivarSAC.png diff --git a/sphinx-doc/ressources/images/Representative/ProcessingDrift.png b/sphinxdoc/ressources/images/Representative/ProcessingDrift.png similarity index 100% rename from sphinx-doc/ressources/images/Representative/ProcessingDrift.png rename to sphinxdoc/ressources/images/Representative/ProcessingDrift.png diff --git a/sphinxdoc/ressources/images/Representative/RDMLogo.png b/sphinxdoc/ressources/images/Representative/RDMLogo.png new file mode 100644 index 0000000000000000000000000000000000000000..dd9b06087690d13406b94b303888609f924d20a4 Binary files /dev/null and b/sphinxdoc/ressources/images/Representative/RDMLogo.png differ diff --git a/sphinx-doc/ressources/images/Representative/RDMlogo.jpg b/sphinxdoc/ressources/images/Representative/RDMlogo.jpg similarity index 100% rename from sphinx-doc/ressources/images/Representative/RDMlogo.jpg rename to sphinxdoc/ressources/images/Representative/RDMlogo.jpg diff --git a/sphinx-doc/ressources/images/Representative/RawData.png b/sphinxdoc/ressources/images/Representative/RawData.png similarity index 100% rename from sphinx-doc/ressources/images/Representative/RawData.png rename to sphinxdoc/ressources/images/Representative/RawData.png diff --git a/sphinx-doc/ressources/images/Representative/UFZLogo.jpg b/sphinxdoc/ressources/images/Representative/UFZLogo.jpg similarity index 100% rename from sphinx-doc/ressources/images/Representative/UFZLogo.jpg rename to sphinxdoc/ressources/images/Representative/UFZLogo.jpg diff --git a/sphinxdoc/ressources/images/Representative/UFZLogo.png b/sphinxdoc/ressources/images/Representative/UFZLogo.png new file mode 100644 index 0000000000000000000000000000000000000000..a8de4ada61f60c7356e0bc7a570feaecd69f598f Binary files /dev/null and b/sphinxdoc/ressources/images/Representative/UFZLogo.png differ diff --git a/sphinx-doc/ressources/images/Representative/csvConfig.png b/sphinxdoc/ressources/images/Representative/csvConfig.png similarity index 100% rename from sphinx-doc/ressources/images/Representative/csvConfig.png rename to sphinxdoc/ressources/images/Representative/csvConfig.png diff --git a/sphinx-doc/ressources/images/Representative/legendEXMPL.png b/sphinxdoc/ressources/images/Representative/legendEXMPL.png similarity index 100% rename from sphinx-doc/ressources/images/Representative/legendEXMPL.png rename to sphinxdoc/ressources/images/Representative/legendEXMPL.png diff --git a/sphinx-doc/ressources/images/Representative/pythonLogo.png b/sphinxdoc/ressources/images/Representative/pythonLogo.png similarity index 100% rename from sphinx-doc/ressources/images/Representative/pythonLogo.png rename to sphinxdoc/ressources/images/Representative/pythonLogo.png diff --git a/sphinx-doc/ressources/images/cbook_incidents_scoresUnflagged.png b/sphinxdoc/ressources/images/cbook_incidents_scoresUnflagged.png similarity index 100% rename from sphinx-doc/ressources/images/cbook_incidents_scoresUnflagged.png rename to sphinxdoc/ressources/images/cbook_incidents_scoresUnflagged.png diff --git a/sphinx-doc/ressources/images/cbooks_SoilMoisture.png b/sphinxdoc/ressources/images/cbooks_SoilMoisture.png similarity index 100% rename from sphinx-doc/ressources/images/cbooks_SoilMoisture.png rename to sphinxdoc/ressources/images/cbooks_SoilMoisture.png diff --git a/sphinx-doc/ressources/images/cbooks_incidents1.png b/sphinxdoc/ressources/images/cbooks_incidents1.png similarity index 100% rename from sphinx-doc/ressources/images/cbooks_incidents1.png rename to sphinxdoc/ressources/images/cbooks_incidents1.png diff --git a/sphinx-doc/ressources/images/cbooks_incidents2.png b/sphinxdoc/ressources/images/cbooks_incidents2.png similarity index 100% rename from sphinx-doc/ressources/images/cbooks_incidents2.png rename to sphinxdoc/ressources/images/cbooks_incidents2.png diff --git a/sphinx-doc/ressources/images/cbooks_incidentsOverflagged.png b/sphinxdoc/ressources/images/cbooks_incidentsOverflagged.png similarity index 100% rename from sphinx-doc/ressources/images/cbooks_incidentsOverflagged.png rename to sphinxdoc/ressources/images/cbooks_incidentsOverflagged.png diff --git a/sphinx-doc/ressources/images/cbooks_incidents_correctFlagged.png b/sphinxdoc/ressources/images/cbooks_incidents_correctFlagged.png similarity index 100% rename from sphinx-doc/ressources/images/cbooks_incidents_correctFlagged.png rename to sphinxdoc/ressources/images/cbooks_incidents_correctFlagged.png diff --git a/sphinx-doc/ressources/images/cbooks_incidents_residues.png b/sphinxdoc/ressources/images/cbooks_incidents_residues.png similarity index 100% rename from sphinx-doc/ressources/images/cbooks_incidents_residues.png rename to sphinxdoc/ressources/images/cbooks_incidents_residues.png diff --git a/sphinx-doc/ressources/images/cbooks_incidents_scores.png b/sphinxdoc/ressources/images/cbooks_incidents_scores.png similarity index 100% rename from sphinx-doc/ressources/images/cbooks_incidents_scores.png rename to sphinxdoc/ressources/images/cbooks_incidents_scores.png diff --git a/sphinx-doc/ressources/images/example_plot_1.png b/sphinxdoc/ressources/images/example_plot_1.png similarity index 100% rename from sphinx-doc/ressources/images/example_plot_1.png rename to sphinxdoc/ressources/images/example_plot_1.png diff --git a/sphinx-doc/ressources/images/example_plot_2.png b/sphinxdoc/ressources/images/example_plot_2.png similarity index 100% rename from sphinx-doc/ressources/images/example_plot_2.png rename to sphinxdoc/ressources/images/example_plot_2.png diff --git a/sphinx-doc/ressources/images/example_plot_31.png b/sphinxdoc/ressources/images/example_plot_31.png similarity index 100% rename from sphinx-doc/ressources/images/example_plot_31.png rename to sphinxdoc/ressources/images/example_plot_31.png diff --git a/sphinx-doc/ressources/images/example_plot_32.png b/sphinxdoc/ressources/images/example_plot_32.png similarity index 100% rename from sphinx-doc/ressources/images/example_plot_32.png rename to sphinxdoc/ressources/images/example_plot_32.png diff --git a/sphinx-doc/ressources/images/example_plot_33.png b/sphinxdoc/ressources/images/example_plot_33.png similarity index 100% rename from sphinx-doc/ressources/images/example_plot_33.png rename to sphinxdoc/ressources/images/example_plot_33.png diff --git a/sphinx-doc/ressources/images/example_plot_4.png b/sphinxdoc/ressources/images/example_plot_4.png similarity index 100% rename from sphinx-doc/ressources/images/example_plot_4.png rename to sphinxdoc/ressources/images/example_plot_4.png diff --git a/sphinx-doc/ressources/images/hydro_usecase/BeforeAfter_sac254.png b/sphinxdoc/ressources/images/hydro_usecase/BeforeAfter_sac254.png similarity index 100% rename from sphinx-doc/ressources/images/hydro_usecase/BeforeAfter_sac254.png rename to sphinxdoc/ressources/images/hydro_usecase/BeforeAfter_sac254.png diff --git a/sphinx-doc/ressources/images/hydro_usecase/Before_After_sac254_onePlot.png b/sphinxdoc/ressources/images/hydro_usecase/Before_After_sac254_onePlot.png similarity index 100% rename from sphinx-doc/ressources/images/hydro_usecase/Before_After_sac254_onePlot.png rename to sphinxdoc/ressources/images/hydro_usecase/Before_After_sac254_onePlot.png diff --git a/sphinx-doc/ressources/images/hydro_usecase/Step1_sac254_maintenanceFlags.png b/sphinxdoc/ressources/images/hydro_usecase/Step1_sac254_maintenanceFlags.png similarity index 100% rename from sphinx-doc/ressources/images/hydro_usecase/Step1_sac254_maintenanceFlags.png rename to sphinxdoc/ressources/images/hydro_usecase/Step1_sac254_maintenanceFlags.png diff --git a/sphinx-doc/ressources/images/hydro_usecase/Step2_sac254_driftcorrected_FlagsCleared.png b/sphinxdoc/ressources/images/hydro_usecase/Step2_sac254_driftcorrected_FlagsCleared.png similarity index 100% rename from sphinx-doc/ressources/images/hydro_usecase/Step2_sac254_driftcorrected_FlagsCleared.png rename to sphinxdoc/ressources/images/hydro_usecase/Step2_sac254_driftcorrected_FlagsCleared.png diff --git a/sphinx-doc/ressources/images/hydro_usecase/Step2_sac254_driftcorrected_withFlags.png b/sphinxdoc/ressources/images/hydro_usecase/Step2_sac254_driftcorrected_withFlags.png similarity index 100% rename from sphinx-doc/ressources/images/hydro_usecase/Step2_sac254_driftcorrected_withFlags.png rename to sphinxdoc/ressources/images/hydro_usecase/Step2_sac254_driftcorrected_withFlags.png diff --git a/sphinx-doc/ressources/images/hydro_usecase/Step3_kNNscores.png b/sphinxdoc/ressources/images/hydro_usecase/Step3_kNNscores.png similarity index 100% rename from sphinx-doc/ressources/images/hydro_usecase/Step3_kNNscores.png rename to sphinxdoc/ressources/images/hydro_usecase/Step3_kNNscores.png diff --git a/sphinx-doc/ressources/images/hydro_usecase/Step3_kNNscores_withSTRAY_flags.png b/sphinxdoc/ressources/images/hydro_usecase/Step3_kNNscores_withSTRAY_flags.png similarity index 100% rename from sphinx-doc/ressources/images/hydro_usecase/Step3_kNNscores_withSTRAY_flags.png rename to sphinxdoc/ressources/images/hydro_usecase/Step3_kNNscores_withSTRAY_flags.png diff --git a/sphinx-doc/ressources/images/hydro_usecase/Step4_sac254_cleared.png b/sphinxdoc/ressources/images/hydro_usecase/Step4_sac254_cleared.png similarity index 100% rename from sphinx-doc/ressources/images/hydro_usecase/Step4_sac254_cleared.png rename to sphinxdoc/ressources/images/hydro_usecase/Step4_sac254_cleared.png diff --git a/sphinx-doc/ressources/images/hydro_usecase/Step4_sac254_withSTRAYFalgs.png b/sphinxdoc/ressources/images/hydro_usecase/Step4_sac254_withSTRAYFalgs.png similarity index 100% rename from sphinx-doc/ressources/images/hydro_usecase/Step4_sac254_withSTRAYFalgs.png rename to sphinxdoc/ressources/images/hydro_usecase/Step4_sac254_withSTRAYFalgs.png diff --git a/sphinx-doc/ressources/images/hydro_usecase/level_raw.png b/sphinxdoc/ressources/images/hydro_usecase/level_raw.png similarity index 100% rename from sphinx-doc/ressources/images/hydro_usecase/level_raw.png rename to sphinxdoc/ressources/images/hydro_usecase/level_raw.png diff --git a/sphinx-doc/ressources/images/hydro_usecase/sac254_flagged_noMaintflags.png b/sphinxdoc/ressources/images/hydro_usecase/sac254_flagged_noMaintflags.png similarity index 100% rename from sphinx-doc/ressources/images/hydro_usecase/sac254_flagged_noMaintflags.png rename to sphinxdoc/ressources/images/hydro_usecase/sac254_flagged_noMaintflags.png diff --git a/sphinx-doc/ressources/images/hydro_usecase/sac254_raw.png b/sphinxdoc/ressources/images/hydro_usecase/sac254_raw.png similarity index 100% rename from sphinx-doc/ressources/images/hydro_usecase/sac254_raw.png rename to sphinxdoc/ressources/images/hydro_usecase/sac254_raw.png diff --git a/sphinx-doc/ressources/images/hydro_usecase/water_temp_raw.png b/sphinxdoc/ressources/images/hydro_usecase/water_temp_raw.png similarity index 100% rename from sphinx-doc/ressources/images/hydro_usecase/water_temp_raw.png rename to sphinxdoc/ressources/images/hydro_usecase/water_temp_raw.png diff --git a/sphinx-doc/ressources/images/readme_image.png b/sphinxdoc/ressources/images/readme_image.png similarity index 100% rename from sphinx-doc/ressources/images/readme_image.png rename to sphinxdoc/ressources/images/readme_image.png diff --git a/sphinx-doc/ressources/images/tutorial_api_1.png b/sphinxdoc/ressources/images/tutorial_api_1.png similarity index 100% rename from sphinx-doc/ressources/images/tutorial_api_1.png rename to sphinxdoc/ressources/images/tutorial_api_1.png diff --git a/sphinxdoc/ressources/temp/TutorialCLIHarmData.csv b/sphinxdoc/ressources/temp/TutorialCLIHarmData.csv new file mode 100644 index 0000000000000000000000000000000000000000..09e1c045a5c31631e45cd29564638c989b98463e --- /dev/null +++ b/sphinxdoc/ressources/temp/TutorialCLIHarmData.csv @@ -0,0 +1,29365 @@ +Date,Battery,SM1,SM2 +2016-04-01 00:00:00,,,29.3157 +2016-04-01 00:05:48,3573.0,32.685, +2016-04-01 00:15:00,,,29.3157 +2016-04-01 00:20:42,3572.0,32.7428, +2016-04-01 00:30:00,,,29.3679 +2016-04-01 00:35:37,3572.0,32.6186, +2016-04-01 00:45:00,,,29.3679 +2016-04-01 00:50:32,3572.0,32.736999999999995, +2016-04-01 01:00:00,,,29.3131 +2016-04-01 01:05:26,3572.0,32.736999999999995, +2016-04-01 01:15:00,,,29.3157 +2016-04-01 01:20:21,3571.0,32.6186, +2016-04-01 01:30:00,,,29.3157 +2016-04-01 01:35:16,3571.0,32.736999999999995, +2016-04-01 01:45:00,,,29.4727 +2016-04-01 01:50:11,3571.0,32.736999999999995, +2016-04-01 02:00:00,,,29.5252 +2016-04-01 02:05:05,3571.0,32.6186, +2016-04-01 02:15:00,,,29.5252 +2016-04-01 02:20:00,3571.0,32.911, +2016-04-01 02:30:00,,,29.5226 +2016-04-01 02:34:55,3570.0,32.85, +2016-04-01 02:45:00,,,29.4727 +2016-04-01 02:49:49,3570.0,32.911, +2016-04-01 03:00:00,,,29.5252 +2016-04-01 03:04:44,3570.0,32.9081, +2016-04-01 03:15:00,,,29.5252 +2016-04-01 03:19:39,3569.0,32.8993, +2016-04-01 03:30:00,,,29.4176 +2016-04-01 03:34:33,3569.0,32.9023, +2016-04-01 03:45:00,,,29.5252 +2016-04-01 03:49:28,3568.0,32.7861, +2016-04-01 04:00:00,,,29.5252 +2016-04-01 04:04:23,3568.0,32.9023, +2016-04-01 04:15:00,,,29.4727 +2016-04-01 04:19:17,3568.0,33.013000000000005, +2016-04-01 04:30:00,,,29.5252 +2016-04-01 04:34:12,3568.0,32.9023, +2016-04-01 04:45:00,,,29.5252 +2016-04-01 04:49:07,3567.0,32.8993, +2016-04-01 05:00:00,,,29.5252 +2016-04-01 05:04:01,3567.0,32.9023, +2016-04-01 05:15:00,,,29.4727 +2016-04-01 05:18:56,3566.0,32.9023, +2016-04-01 05:30:00,,,29.5252 +2016-04-01 05:33:50,3567.0,32.7861, +2016-04-01 05:45:00,,,29.5252 +2016-04-01 05:48:45,3566.0,32.8993, +2016-04-01 06:00:00,,,29.4727 +2016-04-01 06:03:39,3566.0,32.8993, +2016-04-01 06:15:00,,,29.5252 +2016-04-01 06:18:34,3566.0,32.8935, +2016-04-01 06:30:00,,,29.4727 +2016-04-01 06:33:28,3565.0,32.7774, +2016-04-01 06:45:00,,,29.4727 +2016-04-01 06:48:22,3565.0,32.8935, +2016-04-01 07:00:00,,,29.5252 +2016-04-01 07:03:17,3565.0,32.8935, +2016-04-01 07:15:00,,,29.4727 +2016-04-01 07:18:11,3565.0,32.8935, +2016-04-01 07:30:00,,,29.5252 +2016-04-01 07:33:06,3565.0,32.8935, +2016-04-01 07:45:00,,,29.5252 +2016-04-01 07:48:00,3565.0,32.8935, +2016-04-01 08:00:00,,,29.47 +2016-04-01 08:02:55,3565.0,32.8935, +2016-04-01 08:15:00,,,29.5252 +2016-04-01 08:17:49,3566.0,32.8935, +2016-04-01 08:30:00,,,29.5252 +2016-04-01 08:32:43,3567.0,32.8964, +2016-04-01 08:45:00,,,29.5252 +2016-04-01 08:47:38,3568.0,32.8935, +2016-04-01 09:00:00,,,29.5252 +2016-04-01 09:02:32,3570.0,32.8354, +2016-04-01 09:15:00,,,29.4727 +2016-04-01 09:17:27,3572.0,32.8935, +2016-04-01 09:30:00,,,29.5252 +2016-04-01 09:32:22,3575.0,32.8935, +2016-04-01 09:45:00,,,29.4203 +2016-04-01 09:47:17,3578.0,32.8354, +2016-04-01 10:00:00,,,29.4176 +2016-04-01 10:02:12,3581.0,32.8935, +2016-04-01 10:15:00,,,29.47 +2016-04-01 10:17:07,3583.0,32.8354, +2016-04-01 10:30:00,,,29.4176 +2016-04-01 10:32:02,3587.0,32.8964, +2016-04-01 10:45:00,,,29.4203 +2016-04-01 10:46:57,3591.0,32.8325, +2016-04-01 11:00:00,,,29.5252 +2016-04-01 11:01:52,3594.0,32.7774, +2016-04-01 11:15:00,,,29.5252 +2016-04-01 11:16:47,3596.0,32.7803, +2016-04-01 11:30:00,,,29.4727 +2016-04-01 11:31:42,3598.0,32.8935, +2016-04-01 11:45:00,,,29.5252 +2016-04-01 11:46:37,3598.0,32.7745, +2016-04-01 12:00:00,,,29.5252 +2016-04-01 12:01:32,3598.0,32.8935, +2016-04-01 12:15:00,,,29.5252 +2016-04-01 12:16:27,3598.0,32.8354, +2016-04-01 12:30:00,,,29.4727 +2016-04-01 12:31:22,3599.0,32.9023, +2016-04-01 12:45:00,,,29.4727 +2016-04-01 12:46:17,3599.0,32.7861, +2016-04-01 13:00:00,,,29.47 +2016-04-01 13:01:12,3599.0,32.7861, +2016-04-01 13:15:00,,,29.4203 +2016-04-01 13:16:08,3599.0,32.7949, +2016-04-01 13:30:00,,,29.4176 +2016-04-01 13:31:03,3599.0,32.9081, +2016-04-01 13:45:00,,,29.4203 +2016-04-01 13:45:58,3599.0,32.7891, +2016-04-01 14:00:00,,,29.47 +2016-04-01 14:00:53,3599.0,32.8036, +2016-04-01 14:15:00,,,29.4203 +2016-04-01 14:15:48,3599.0,32.7428, +2016-04-01 14:30:00,,,29.5252 +2016-04-01 14:30:43,3599.0,32.685, +2016-04-01 14:45:00,,,29.4727 +2016-04-01 14:45:38,3599.0,32.6937, +2016-04-01 15:00:00,,,29.4203 +2016-04-01 15:00:34,3599.0,32.636, +2016-04-01 15:15:00,,,29.4203 +2016-04-01 15:15:29,3599.0,32.636, +2016-04-01 15:30:00,,,29.4203 +2016-04-01 15:30:24,3599.0,32.636, +2016-04-01 15:45:00,,,29.47 +2016-04-01 15:45:19,3599.0,32.636, +2016-04-01 16:00:00,,,29.4176 +2016-04-01 16:00:15,3599.0,32.6389, +2016-04-01 16:15:00,,,29.4203 +2016-04-01 16:15:10,3599.0,32.7515, +2016-04-01 16:30:00,,,29.4203 +2016-04-01 16:30:05,3599.0,32.6937, +2016-04-01 16:45:00,,,29.4727 +2016-04-01 16:45:01,3599.0,32.636, +2016-04-01 16:59:56,3599.0,32.7631, +2016-04-01 17:00:00,,,29.4727 +2016-04-01 17:14:51,3598.0,32.6447, +2016-04-01 17:15:00,,,29.4727 +2016-04-01 17:29:46,3598.0,32.6476, +2016-04-01 17:30:00,,,29.4727 +2016-04-01 17:44:41,3598.0,32.7024, +2016-04-01 17:45:00,,,29.47 +2016-04-01 17:59:36,3598.0,32.7024, +2016-04-01 18:00:00,,,29.4727 +2016-04-01 18:14:31,3597.0,32.5958, +2016-04-01 18:15:00,,,29.4203 +2016-04-01 18:29:26,3596.0,32.6534, +2016-04-01 18:30:00,,,29.4176 +2016-04-01 18:44:21,3595.0,32.6534, +2016-04-01 18:45:00,,,29.4727 +2016-04-01 18:59:16,3593.0,32.7689, +2016-04-01 19:00:00,,,29.5252 +2016-04-01 19:14:11,3591.0,32.7111, +2016-04-01 19:15:00,,,29.47 +2016-04-01 19:29:06,3589.0,32.7689, +2016-04-01 19:30:00,,,29.4727 +2016-04-01 19:44:01,3587.0,32.6563, +2016-04-01 19:45:00,,,29.47 +2016-04-01 19:58:55,3585.0,32.7111, +2016-04-01 20:00:00,,,29.4727 +2016-04-01 20:13:50,3583.0,32.6534, +2016-04-01 20:15:00,,,29.4727 +2016-04-01 20:28:45,3581.0,32.714, +2016-04-01 20:30:00,,,29.4727 +2016-04-01 20:43:39,3578.0,32.7689, +2016-04-01 20:45:00,,,29.5252 +2016-04-01 20:58:34,3577.0,32.7718, +2016-04-01 21:00:00,,,29.4203 +2016-04-01 21:13:28,3574.0,32.8269, +2016-04-01 21:15:00,,,29.4805 +2016-04-01 21:28:23,3573.0,32.7631, +2016-04-01 21:30:00,,,29.5252 +2016-04-01 21:43:17,3572.0,32.7053, +2016-04-01 21:45:00,,,29.5252 +2016-04-01 21:58:12,3570.0,32.7631, +2016-04-01 22:00:00,,,29.533 +2016-04-01 22:13:06,3569.0,32.6447, +2016-04-01 22:15:00,,,29.5304 +2016-04-01 22:28:00,3567.0,32.7631, +2016-04-01 22:30:00,,,29.4805 +2016-04-01 22:42:55,3566.0,32.7053, +2016-04-01 22:45:00,,,29.5304 +2016-04-01 22:57:50,3566.0,32.6937, +2016-04-01 23:00:00,,,29.533 +2016-04-01 23:12:44,3566.0,32.7631, +2016-04-01 23:15:00,,,29.533 +2016-04-01 23:27:38,3564.0,32.7631, +2016-04-01 23:30:00,,,29.533 +2016-04-01 23:42:33,3564.0,32.6937, +2016-04-01 23:45:00,,,29.4805 +2016-04-01 23:57:27,3563.0,32.6966, +2016-04-02 00:00:00,,,29.533 +2016-04-02 00:12:22,3562.0,32.6937, +2016-04-02 00:15:00,,,29.533 +2016-04-02 00:27:16,3561.0,32.636, +2016-04-02 00:30:00,,,29.533 +2016-04-02 00:42:11,3561.0,32.6937, +2016-04-02 00:45:00,,,29.4805 +2016-04-02 00:57:05,3560.0,32.6389, +2016-04-02 01:00:00,,,29.5304 +2016-04-02 01:11:59,3559.0,32.7515, +2016-04-02 01:15:00,,,29.5357 +2016-04-02 01:26:54,3559.0,32.8094, +2016-04-02 01:30:00,,,29.533 +2016-04-02 01:41:49,3559.0,32.6966, +2016-04-02 01:45:00,,,29.533 +2016-04-02 01:56:43,3559.0,32.7515, +2016-04-02 02:00:00,,,29.4805 +2016-04-02 02:11:38,3559.0,32.7515, +2016-04-02 02:15:00,,,29.533 +2016-04-02 02:26:32,3558.0,32.636, +2016-04-02 02:30:00,,,29.533 +2016-04-02 02:41:26,3558.0,32.7515, +2016-04-02 02:45:00,,,29.5857 +2016-04-02 02:56:21,3558.0,32.6389, +2016-04-02 03:00:00,,,29.4281 +2016-04-02 03:11:15,3557.0,32.6879, +2016-04-02 03:15:00,,,29.533 +2016-04-02 03:26:10,3557.0,32.6908, +2016-04-02 03:30:00,,,29.533 +2016-04-02 03:41:04,3557.0,32.685, +2016-04-02 03:45:00,,,29.5304 +2016-04-02 03:55:58,3556.0,32.6908, +2016-04-02 04:00:00,,,29.5357 +2016-04-02 04:10:53,3556.0,32.6215, +2016-04-02 04:15:00,,,29.4255 +2016-04-02 04:25:47,3556.0,32.6215, +2016-04-02 04:30:00,,,29.5357 +2016-04-02 04:40:42,3556.0,32.736999999999995, +2016-04-02 04:45:00,,,29.5357 +2016-04-02 04:55:36,3555.0,32.6763, +2016-04-02 05:00:00,,,29.5409 +2016-04-02 05:10:30,3556.0,32.6186, +2016-04-02 05:15:00,,,29.5435 +2016-04-02 05:25:32,3556.0,32.7341, +2016-04-02 05:30:00,,,29.5409 +2016-04-02 05:40:26,3556.0,32.7283, +2016-04-02 05:45:00,,,29.5909 +2016-04-02 05:55:21,3556.0,32.7254, +2016-04-02 06:00:00,,,29.5409 +2016-04-02 06:10:15,3557.0,32.7254, +2016-04-02 06:15:00,,,29.3758 +2016-04-02 06:25:10,3556.0,32.6705, +2016-04-02 06:30:00,,,29.4359 +2016-04-02 06:40:04,3557.0,32.6676, +2016-04-02 06:45:00,,,29.4281 +2016-04-02 06:54:59,3557.0,32.6013, +2016-04-02 07:00:00,,,29.3862 +2016-04-02 07:09:53,3556.0,32.6618, +2016-04-02 07:15:00,,,29.3836 +2016-04-02 07:24:48,3556.0,32.7196, +2016-04-02 07:30:00,,,29.3287 +2016-04-02 07:39:42,3557.0,32.6618, +2016-04-02 07:45:00,,,29.3235 +2016-04-02 07:54:37,3558.0,32.7196, +2016-04-02 08:00:00,,,29.3313 +2016-04-02 08:09:31,3559.0,32.7166, +2016-04-02 08:15:00,,,29.3732 +2016-04-02 08:24:26,3562.0,32.7196, +2016-04-02 08:30:00,,,29.3313 +2016-04-02 08:39:20,3565.0,32.7196, +2016-04-02 08:45:00,,,29.3287 +2016-04-02 08:54:15,3566.0,32.6618, +2016-04-02 09:00:00,,,29.381 +2016-04-02 09:09:10,3570.0,32.7196, +2016-04-02 09:15:00,,,29.3758 +2016-04-02 09:24:04,3572.0,32.7196, +2016-04-02 09:30:00,,,29.3313 +2016-04-02 09:38:59,3575.0,32.6042, +2016-04-02 09:45:00,,,29.3235 +2016-04-02 09:53:54,3577.0,32.7196, +2016-04-02 10:00:00,,,29.3235 +2016-04-02 10:08:49,3579.0,32.6071, +2016-04-02 10:15:00,,,29.3235 +2016-04-02 10:23:43,3582.0,32.4892, +2016-04-02 10:30:00,,,29.3209 +2016-04-02 10:38:38,3585.0,32.4892, +2016-04-02 10:45:00,,,29.3235 +2016-04-02 10:53:33,3588.0,32.4319, +2016-04-02 11:00:00,,,29.3235 +2016-04-02 11:08:28,3591.0,32.4892, +2016-04-02 11:15:00,,,29.3235 +2016-04-02 11:23:24,3593.0,32.4864, +2016-04-02 11:30:00,,,29.3235 +2016-04-02 11:38:19,3595.0,32.4892, +2016-04-02 11:45:00,,,29.3758 +2016-04-02 11:53:14,3597.0,32.4892, +2016-04-02 12:00:00,,,29.3235 +2016-04-02 12:08:09,3598.0,32.4892, +2016-04-02 12:15:00,,,29.3209 +2016-04-02 12:23:04,3598.0,32.4892, +2016-04-02 12:30:00,,,29.3235 +2016-04-02 12:38:00,3599.0,32.4864, +2016-04-02 12:45:00,,,29.3209 +2016-04-02 12:52:55,3599.0,32.4319, +2016-04-02 13:00:00,,,29.3209 +2016-04-02 13:07:50,3599.0,32.4892, +2016-04-02 13:15:00,,,29.3235 +2016-04-02 13:22:46,3599.0,32.4348, +2016-04-02 13:30:00,,,29.3209 +2016-04-02 13:37:41,3599.0,32.4377, +2016-04-02 13:45:00,,,29.3235 +2016-04-02 13:52:37,3599.0,32.5036, +2016-04-02 14:00:00,,,29.3209 +2016-04-02 14:07:32,3599.0,32.5036, +2016-04-02 14:15:00,,,29.3758 +2016-04-02 14:22:28,3599.0,32.5065, +2016-04-02 14:30:00,,,29.3235 +2016-04-02 14:37:23,3599.0,32.5123, +2016-04-02 14:45:00,,,29.3209 +2016-04-02 14:52:19,3599.0,32.455, +2016-04-02 15:00:00,,,29.3235 +2016-04-02 15:07:14,3599.0,32.521, +2016-04-02 15:15:00,,,29.3235 +2016-04-02 15:22:10,3599.0,32.4636, +2016-04-02 15:30:00,,,29.3209 +2016-04-02 15:37:06,3599.0,32.521, +2016-04-02 15:45:00,,,29.3732 +2016-04-02 15:52:01,3599.0,32.5784, +2016-04-02 16:00:00,,,29.3209 +2016-04-02 16:06:56,3599.0,32.521, +2016-04-02 16:15:00,,,29.3235 +2016-04-02 16:21:52,3599.0,32.4665, +2016-04-02 16:30:00,,,29.3732 +2016-04-02 16:36:47,3599.0,32.415, +2016-04-02 16:45:00,,,29.3209 +2016-04-02 16:51:43,3599.0,32.5296, +2016-04-02 17:00:00,,,29.3235 +2016-04-02 17:06:38,3599.0,32.4809, +2016-04-02 17:15:00,,,29.3235 +2016-04-02 17:21:33,3599.0,32.4809, +2016-04-02 17:30:00,,,29.2714 +2016-04-02 17:36:29,3599.0,32.4809, +2016-04-02 17:45:00,,,29.3732 +2016-04-02 17:51:24,3599.0,32.5412, +2016-04-02 18:00:00,,,29.2688 +2016-04-02 18:06:20,3599.0,32.5469, +2016-04-02 18:15:00,,,29.3732 +2016-04-02 18:21:15,3599.0,32.544000000000004, +2016-04-02 18:30:00,,,29.3209 +2016-04-02 18:36:10,3599.0,32.4867, +2016-04-02 18:45:00,,,29.3235 +2016-04-02 18:51:06,3599.0,32.6015, +2016-04-02 19:00:00,,,29.3235 +2016-04-02 19:06:01,3599.0,32.5469, +2016-04-02 19:15:00,,,29.3235 +2016-04-02 19:20:56,3599.0,32.5498, +2016-04-02 19:30:00,,,29.2714 +2016-04-02 19:35:51,3599.0,32.544000000000004, +2016-04-02 19:45:00,,,29.3209 +2016-04-02 19:50:46,3598.0,32.4895, +2016-04-02 20:00:00,,,29.3235 +2016-04-02 20:05:42,3598.0,32.4867, +2016-04-02 20:15:00,,,29.3758 +2016-04-02 20:20:37,3598.0,32.544000000000004, +2016-04-02 20:30:00,,,29.381 +2016-04-02 20:35:32,3596.0,32.4867, +2016-04-02 20:45:00,,,29.3235 +2016-04-02 20:50:27,3595.0,32.5469, +2016-04-02 21:00:00,,,29.3235 +2016-04-02 21:05:22,3594.0,32.6015, +2016-04-02 21:15:00,,,29.3235 +2016-04-02 21:20:24,3593.0,32.5469, +2016-04-02 21:30:00,,,29.3235 +2016-04-02 21:35:18,3592.0,32.5469, +2016-04-02 21:45:00,,,29.3313 +2016-04-02 21:50:13,3591.0,32.544000000000004, +2016-04-02 22:00:00,,,29.3836 +2016-04-02 22:05:08,3590.0,32.5469, +2016-04-02 22:15:00,,,29.3836 +2016-04-02 22:20:03,3588.0,32.544000000000004, +2016-04-02 22:30:00,,,29.3235 +2016-04-02 22:34:58,3588.0,32.544000000000004, +2016-04-02 22:45:00,,,29.3313 +2016-04-02 22:49:52,3588.0,32.5469, +2016-04-02 23:00:00,,,29.3836 +2016-04-02 23:04:47,3588.0,32.544000000000004, +2016-04-02 23:15:00,,,29.3313 +2016-04-02 23:19:42,3588.0,32.4895, +2016-04-02 23:30:00,,,29.3836 +2016-04-02 23:34:36,3587.0,32.6044, +2016-04-02 23:45:00,,,29.3313 +2016-04-02 23:49:31,3587.0,32.6015, +2016-04-03 00:00:00,,, +2016-04-03 00:15:00,,, +2016-04-03 00:30:00,,, +2016-04-03 00:45:00,,, +2016-04-03 01:00:00,,,29.3287 +2016-04-03 01:04:13,3587.0,32.4895, +2016-04-03 01:15:00,,,29.3313 +2016-04-03 01:19:07,3587.0,32.544000000000004, +2016-04-03 01:30:00,,,29.3313 +2016-04-03 01:34:02,3587.0,32.544000000000004, +2016-04-03 01:45:00,,,29.3836 +2016-04-03 01:48:57,3587.0,32.4867, +2016-04-03 02:00:00,,,29.3391 +2016-04-03 02:03:51,3586.0,32.5469, +2016-04-03 02:15:00,,,29.3313 +2016-04-03 02:18:46,3587.0,32.544000000000004, +2016-04-03 02:30:00,,,29.3391 +2016-04-03 02:33:41,3586.0,32.4294, +2016-04-03 02:45:00,,,29.3365 +2016-04-03 02:48:35,3586.0,32.4895, +2016-04-03 03:00:00,,,29.3391 +2016-04-03 03:03:30,3587.0,32.5469, +2016-04-03 03:15:00,,,29.287 +2016-04-03 03:18:25,3587.0,32.544000000000004, +2016-04-03 03:30:00,,,29.3365 +2016-04-03 03:33:20,3587.0,32.4867, +2016-04-03 03:45:00,,,29.3888 +2016-04-03 03:48:15,3586.0,32.6044, +2016-04-03 04:00:00,,,29.183000000000003 +2016-04-03 04:03:09,3586.0,32.5469, +2016-04-03 04:15:00,,,29.2349 +2016-04-03 04:18:04,3586.0,32.4867, +2016-04-03 04:30:00,,,29.183000000000003 +2016-04-03 04:32:59,3585.0,32.6044, +2016-04-03 04:45:00,,,29.1311 +2016-04-03 04:47:53,3585.0,32.5469, +2016-04-03 05:00:00,,,29.183000000000003 +2016-04-03 05:02:48,3584.0,32.5498, +2016-04-03 05:15:00,,,29.183000000000003 +2016-04-03 05:17:43,3584.0,32.544000000000004, +2016-04-03 05:30:00,,,29.2349 +2016-04-03 05:32:37,3584.0,32.6044, +2016-04-03 05:45:00,,,29.2349 +2016-04-03 05:47:32,3583.0,32.544000000000004, +2016-04-03 06:00:00,,,29.183000000000003 +2016-04-03 06:02:27,3583.0,32.6044, +2016-04-03 06:15:00,,,29.183000000000003 +2016-04-03 06:17:21,3582.0,32.5469, +2016-04-03 06:30:00,,,29.183000000000003 +2016-04-03 06:32:16,3582.0,32.5469, +2016-04-03 06:45:00,,,29.1882 +2016-04-03 06:47:10,3581.0,32.544000000000004, +2016-04-03 07:00:00,,,29.2349 +2016-04-03 07:02:04,3581.0,32.4895, +2016-04-03 07:15:00,,,29.1311 +2016-04-03 07:17:07,3581.0,32.544000000000004, +2016-04-03 07:30:00,,,29.1804 +2016-04-03 07:32:02,3582.0,32.544000000000004, +2016-04-03 07:45:00,,,29.2401 +2016-04-03 07:46:56,3583.0,32.5469, +2016-04-03 08:00:00,,,29.2401 +2016-04-03 08:01:51,3584.0,32.544000000000004, +2016-04-03 08:15:00,,,29.1882 +2016-04-03 08:16:46,3585.0,32.544000000000004, +2016-04-03 08:30:00,,,29.1311 +2016-04-03 08:31:41,3587.0,32.5469, +2016-04-03 08:45:00,,,29.1882 +2016-04-03 08:46:36,3588.0,32.544000000000004, +2016-04-03 09:00:00,,,29.2401 +2016-04-03 09:01:38,3591.0,32.4895, +2016-04-03 09:15:00,,,29.1882 +2016-04-03 09:16:33,3594.0,32.5469, +2016-04-03 09:30:00,,,29.1363 +2016-04-03 09:31:28,3597.0,32.544000000000004, +2016-04-03 09:45:00,,,29.1882 +2016-04-03 09:46:23,3598.0,32.4895, +2016-04-03 10:00:00,,,29.1882 +2016-04-03 10:01:18,3599.0,32.544000000000004, +2016-04-03 10:15:00,,,29.1882 +2016-04-03 10:16:13,3599.0,32.544000000000004, +2016-04-03 10:30:00,,,29.1882 +2016-04-03 10:31:08,3599.0,32.4867, +2016-04-03 10:45:00,,,29.1363 +2016-04-03 10:46:04,3599.0,32.544000000000004, +2016-04-03 11:00:00,,,29.1882 +2016-04-03 11:00:59,3599.0,32.544000000000004, +2016-04-03 11:15:00,,,29.1363 +2016-04-03 11:15:55,3599.0,32.4294, +2016-04-03 11:30:00,,,29.1363 +2016-04-03 11:30:50,3599.0,32.5469, +2016-04-03 11:45:00,,,29.1882 +2016-04-03 11:45:45,3599.0,32.4867, +2016-04-03 12:00:00,,,29.1882 +2016-04-03 12:00:41,3599.0,32.544000000000004, +2016-04-03 12:15:00,,,29.1907 +2016-04-03 12:15:36,3599.0,32.438, +2016-04-03 12:30:00,,,29.1882 +2016-04-03 12:30:32,3599.0,32.438, +2016-04-03 12:45:00,,,29.1363 +2016-04-03 12:45:28,3599.0,32.4953, +2016-04-03 13:00:00,,,29.1882 +2016-04-03 13:00:23,3599.0,32.504, +2016-04-03 13:15:00,,,29.1882 +2016-04-03 13:15:19,3599.0,32.5643, +2016-04-03 13:30:00,,,29.1882 +2016-04-03 13:30:15,3599.0,32.5729, +2016-04-03 13:45:00,,,29.1882 +2016-04-03 13:45:10,3599.0,32.5729, +2016-04-03 14:00:00,,,29.1882 +2016-04-03 14:00:06,3599.0,32.5126, +2016-04-03 14:15:00,,,29.1363 +2016-04-03 14:15:02,3599.0,32.6276, +2016-04-03 14:29:58,3599.0,32.57, +2016-04-03 14:30:00,,,29.1882 +2016-04-03 14:44:54,3599.0,32.5155, +2016-04-03 14:45:00,,,29.1882 +2016-04-03 14:59:49,3599.0,32.5787, +2016-04-03 15:00:00,,,29.2401 +2016-04-03 15:14:45,3599.0,32.5241, +2016-04-03 15:15:00,,,29.1882 +2016-04-03 15:29:41,3599.0,32.645, +2016-04-03 15:30:00,,,29.1363 +2016-04-03 15:44:37,3599.0,32.5386, +2016-04-03 15:45:00,,,29.1363 +2016-04-03 15:59:32,3599.0,32.4812, +2016-04-03 16:00:00,,,29.1882 +2016-04-03 16:14:28,3599.0,32.5961, +2016-04-03 16:15:00,,,29.1882 +2016-04-03 16:29:24,3599.0,32.4812, +2016-04-03 16:30:00,,,29.1856 +2016-04-03 16:44:19,3599.0,32.5961, +2016-04-03 16:45:00,,,29.1882 +2016-04-03 16:59:15,3599.0,32.5961, +2016-04-03 17:00:00,,,29.1363 +2016-04-03 17:14:11,3599.0,32.6537, +2016-04-03 17:15:00,,,29.1882 +2016-04-03 17:29:06,3599.0,32.3754, +2016-04-03 17:30:00,,,29.1882 +2016-04-03 17:44:02,3599.0,32.3754, +2016-04-03 17:45:00,,,29.2401 +2016-04-03 17:58:58,3599.0,32.3841, +2016-04-03 18:00:00,,,29.1882 +2016-04-03 18:13:53,3599.0,32.3812, +2016-04-03 18:15:00,,,29.1882 +2016-04-03 18:28:49,3599.0,32.3956, +2016-04-03 18:30:00,,,29.2401 +2016-04-03 18:43:44,3599.0,32.3927, +2016-04-03 18:45:00,,,29.1882 +2016-04-03 18:58:40,3599.0,32.4499, +2016-04-03 19:00:00,,,29.1363 +2016-04-03 19:13:35,3599.0,32.3927, +2016-04-03 19:15:00,,,29.1363 +2016-04-03 19:28:30,3599.0,32.4499, +2016-04-03 19:30:00,,,29.1882 +2016-04-03 19:43:26,3599.0,32.3927, +2016-04-03 19:45:00,,,29.1363 +2016-04-03 19:58:21,3599.0,32.3927, +2016-04-03 20:00:00,,,29.1882 +2016-04-03 20:13:16,3599.0,32.4013, +2016-04-03 20:15:00,,,29.1882 +2016-04-03 20:28:11,3599.0,32.3927, +2016-04-03 20:30:00,,,29.1882 +2016-04-03 20:43:07,3599.0,32.4585, +2016-04-03 20:45:00,,,29.1882 +2016-04-03 20:58:02,3599.0,32.4585, +2016-04-03 21:00:00,,,29.1882 +2016-04-03 21:12:57,3599.0,32.4013, +2016-04-03 21:15:00,,,29.1882 +2016-04-03 21:27:53,3599.0,32.4013, +2016-04-03 21:30:00,,,29.1882 +2016-04-03 21:42:48,3599.0,32.4013, +2016-04-03 21:45:00,,,29.1882 +2016-04-03 21:57:43,3599.0,32.4013, +2016-04-03 22:00:00,,,29.1882 +2016-04-03 22:12:38,3599.0,32.4013, +2016-04-03 22:15:00,,,29.1882 +2016-04-03 22:27:34,3599.0,32.4585, +2016-04-03 22:30:00,,,29.2401 +2016-04-03 22:42:29,3599.0,32.3984, +2016-04-03 22:45:00,,,29.2479 +2016-04-03 22:57:24,3599.0,32.3984, +2016-04-03 23:00:00,,,29.144 +2016-04-03 23:12:19,3599.0,32.3984, +2016-04-03 23:15:00,,,29.1959 +2016-04-03 23:27:14,3599.0,32.4013, +2016-04-03 23:30:00,,,29.144 +2016-04-03 23:42:09,3599.0,32.4042, +2016-04-03 23:45:00,,,29.1985 +2016-04-03 23:57:04,3599.0,32.5158, +2016-04-04 00:00:00,,,29.1959 +2016-04-04 00:11:59,3599.0,32.4013, +2016-04-04 00:15:00,,,29.1959 +2016-04-04 00:26:54,3599.0,32.4585, +2016-04-04 00:30:00,,,29.2037 +2016-04-04 00:41:49,3599.0,32.4013, +2016-04-04 00:45:00,,,29.1959 +2016-04-04 00:56:44,3599.0,32.4585, +2016-04-04 01:00:00,,,29.2011 +2016-04-04 01:11:39,3599.0,32.4013, +2016-04-04 01:15:00,,,29.2037 +2016-04-04 01:26:34,3599.0,32.4013, +2016-04-04 01:30:00,,,29.2037 +2016-04-04 01:41:29,3599.0,32.4013, +2016-04-04 01:45:00,,,29.2037 +2016-04-04 01:56:24,3599.0,32.3442, +2016-04-04 02:00:00,,,29.2037 +2016-04-04 02:11:19,3599.0,32.5158, +2016-04-04 02:15:00,,,29.2037 +2016-04-04 02:26:14,3599.0,32.4013, +2016-04-04 02:30:00,,,29.2557 +2016-04-04 02:41:09,3599.0,32.4013, +2016-04-04 02:45:00,,,29.2037 +2016-04-04 02:56:04,3599.0,32.4585, +2016-04-04 03:00:00,,,29.2037 +2016-04-04 03:10:58,3598.0,32.4013, +2016-04-04 03:15:00,,,29.2115 +2016-04-04 03:25:53,3598.0,32.4585, +2016-04-04 03:30:00,,,29.2115 +2016-04-04 03:40:48,3598.0,32.4585, +2016-04-04 03:45:00,,,29.2115 +2016-04-04 03:55:43,3598.0,32.4013, +2016-04-04 04:00:00,,,29.2141 +2016-04-04 04:10:38,3598.0,32.3442, +2016-04-04 04:15:00,,,29.2115 +2016-04-04 04:25:33,3598.0,32.4614, +2016-04-04 04:30:00,,,29.2115 +2016-04-04 04:40:28,3598.0,32.4013, +2016-04-04 04:45:00,,,29.2115 +2016-04-04 04:55:22,3598.0,32.4585, +2016-04-04 05:00:00,,,29.2115 +2016-04-04 05:10:17,3598.0,32.4585, +2016-04-04 05:15:00,,,29.2635 +2016-04-04 05:25:12,3598.0,32.4585, +2016-04-04 05:30:00,,,29.2115 +2016-04-04 05:40:07,3598.0,32.5158, +2016-04-04 05:45:00,,,29.2115 +2016-04-04 05:55:02,3598.0,32.4013, +2016-04-04 06:00:00,,,29.2115 +2016-04-04 06:09:57,3598.0,32.3442, +2016-04-04 06:15:00,,,29.2635 +2016-04-04 06:24:52,3598.0,32.4585, +2016-04-04 06:30:00,,,29.2141 +2016-04-04 06:39:47,3598.0,32.4585, +2016-04-04 06:45:00,,,29.2635 +2016-04-04 06:54:42,3598.0,32.4013, +2016-04-04 07:00:00,,,29.2115 +2016-04-04 07:09:37,3598.0,32.4585, +2016-04-04 07:15:00,,,29.2115 +2016-04-04 07:24:32,3598.0,32.4013, +2016-04-04 07:30:00,,,29.2635 +2016-04-04 07:39:27,3598.0,32.4013, +2016-04-04 07:45:00,,,29.2115 +2016-04-04 07:54:22,3598.0,32.4585, +2016-04-04 08:00:00,,,29.2115 +2016-04-04 08:09:17,3599.0,32.4585, +2016-04-04 08:15:00,,,29.2115 +2016-04-04 08:24:12,3599.0,32.3442, +2016-04-04 08:30:00,,,29.2115 +2016-04-04 08:39:07,3599.0,32.4013, +2016-04-04 08:45:00,,,29.2635 +2016-04-04 08:54:02,3599.0,32.4585, +2016-04-04 09:00:00,,,29.2661 +2016-04-04 09:08:57,3599.0,32.4013, +2016-04-04 09:15:00,,,29.2115 +2016-04-04 09:23:52,3599.0,32.4013, +2016-04-04 09:30:00,,,29.2635 +2016-04-04 09:38:47,3599.0,32.4556, +2016-04-04 09:45:00,,,29.2115 +2016-04-04 09:53:43,3598.0,32.4013, +2016-04-04 10:00:00,,,29.1596 +2016-04-04 10:08:38,3599.0,32.3442, +2016-04-04 10:15:00,,,29.2115 +2016-04-04 10:23:33,3599.0,32.3984, +2016-04-04 10:30:00,,,29.2115 +2016-04-04 10:38:29,3599.0,32.4013, +2016-04-04 10:45:00,,,29.2141 +2016-04-04 10:53:24,3599.0,32.4042, +2016-04-04 11:00:00,,,29.2115 +2016-04-04 11:08:20,3599.0,32.4556, +2016-04-04 11:15:00,,,29.2635 +2016-04-04 11:23:15,3599.0,32.4585, +2016-04-04 11:30:00,,,29.2115 +2016-04-04 11:38:11,3599.0,32.4071, +2016-04-04 11:45:00,,,29.2635 +2016-04-04 11:53:07,3599.0,32.4672, +2016-04-04 12:00:00,,,29.1596 +2016-04-04 12:08:03,3599.0,32.4099, +2016-04-04 12:15:00,,,29.2115 +2016-04-04 12:22:58,3599.0,32.4758, +2016-04-04 12:30:00,,,29.2115 +2016-04-04 12:37:54,3599.0,32.4758, +2016-04-04 12:45:00,,,29.2167 +2016-04-04 12:52:50,3599.0,32.4157, +2016-04-04 13:00:00,,,29.2167 +2016-04-04 13:07:46,3599.0,32.4186, +2016-04-04 13:15:00,,,29.2193 +2016-04-04 13:22:42,3599.0,32.3614, +2016-04-04 13:30:00,,,29.2115 +2016-04-04 13:37:38,3599.0,32.3102, +2016-04-04 13:45:00,,,29.2167 +2016-04-04 13:52:34,3599.0,32.4243, +2016-04-04 14:00:00,,,29.2167 +2016-04-04 14:07:30,3599.0,32.4243, +2016-04-04 14:15:00,,,29.2167 +2016-04-04 14:22:26,3599.0,32.4243, +2016-04-04 14:30:00,,,29.2167 +2016-04-04 14:37:29,3599.0,32.433, +2016-04-04 14:45:00,,,29.2167 +2016-04-04 14:52:25,3599.0,32.4902, +2016-04-04 15:00:00,,,29.2193 +2016-04-04 15:07:21,3599.0,32.3188, +2016-04-04 15:15:00,,,29.2167 +2016-04-04 15:22:17,3599.0,32.4416, +2016-04-04 15:30:00,,,29.1647 +2016-04-04 15:37:13,3599.0,32.4445, +2016-04-04 15:45:00,,,29.2167 +2016-04-04 15:52:09,3599.0,32.4416, +2016-04-04 16:00:00,,,29.1673 +2016-04-04 16:07:05,3599.0,32.4387, +2016-04-04 16:15:00,,,29.227 +2016-04-04 16:22:01,3599.0,32.3274, +2016-04-04 16:30:00,,,29.2167 +2016-04-04 16:36:57,3599.0,32.279, +2016-04-04 16:45:00,,,29.1725 +2016-04-04 16:51:53,3599.0,32.2762, +2016-04-04 17:00:00,,,29.2244 +2016-04-04 17:06:49,3599.0,32.2193, +2016-04-04 17:15:00,,,29.2244 +2016-04-04 17:21:45,3599.0,32.336, +2016-04-04 17:30:00,,,29.2244 +2016-04-04 17:36:41,3599.0,32.279, +2016-04-04 17:45:00,,,29.1725 +2016-04-04 17:51:37,3599.0,32.2848, +2016-04-04 18:00:00,,,29.227 +2016-04-04 18:06:33,3599.0,32.3417, +2016-04-04 18:15:00,,,29.1751 +2016-04-04 18:21:29,3599.0,32.3417, +2016-04-04 18:30:00,,,29.2843 +2016-04-04 18:36:25,3599.0,32.2934, +2016-04-04 18:45:00,,,29.2244 +2016-04-04 18:51:21,3599.0,32.2962, +2016-04-04 19:00:00,,,29.2322 +2016-04-04 19:06:17,3599.0,32.2962, +2016-04-04 19:15:00,,,29.2348 +2016-04-04 19:21:12,3599.0,32.2962, +2016-04-04 19:30:00,,,29.2322 +2016-04-04 19:36:08,3599.0,32.2934, +2016-04-04 19:45:00,,,29.2322 +2016-04-04 19:51:04,3599.0,32.2962, +2016-04-04 20:00:00,,,29.2348 +2016-04-04 20:05:59,3599.0,32.2962, +2016-04-04 20:15:00,,,29.2322 +2016-04-04 20:20:55,3599.0,32.2962, +2016-04-04 20:30:00,,,29.1803 +2016-04-04 20:35:51,3599.0,32.2962, +2016-04-04 20:45:00,,,29.2348 +2016-04-04 20:50:46,3599.0,32.2962, +2016-04-04 21:00:00,,,29.2348 +2016-04-04 21:05:42,3599.0,32.3532, +2016-04-04 21:15:00,,,29.2322 +2016-04-04 21:20:37,3599.0,32.4675, +2016-04-04 21:30:00,,,29.2322 +2016-04-04 21:35:33,3599.0,32.3048, +2016-04-04 21:45:00,,,29.2322 +2016-04-04 21:50:28,3599.0,32.3503, +2016-04-04 22:00:00,,,29.2322 +2016-04-04 22:05:24,3599.0,32.3503, +2016-04-04 22:15:00,,,29.2348 +2016-04-04 22:20:19,3599.0,32.3532, +2016-04-04 22:30:00,,,29.2348 +2016-04-04 22:35:15,3599.0,32.2365, +2016-04-04 22:45:00,,,29.2322 +2016-04-04 22:50:10,3599.0,32.2394, +2016-04-04 23:00:00,,,29.2322 +2016-04-04 23:05:06,3599.0,32.2962, +2016-04-04 23:15:00,,,29.2348 +2016-04-04 23:20:01,3599.0,32.2962, +2016-04-04 23:30:00,,,29.2322 +2016-04-04 23:34:57,3599.0,32.2934, +2016-04-04 23:45:00,,,29.2348 +2016-04-04 23:49:52,3599.0,32.2962, +2016-04-05 00:00:00,,,29.2348 +2016-04-05 00:04:47,3599.0,32.3503, +2016-04-05 00:15:00,,,29.2322 +2016-04-05 00:19:43,3599.0,32.2962, +2016-04-05 00:30:00,,,29.2348 +2016-04-05 00:34:38,3598.0,32.2962, +2016-04-05 00:45:00,,,29.2348 +2016-04-05 00:49:37,3598.0,32.2962, +2016-04-05 01:00:00,,,29.2348 +2016-04-05 01:04:32,3598.0,32.3532, +2016-04-05 01:15:00,,,29.2322 +2016-04-05 01:19:28,3598.0,32.2394, +2016-04-05 01:30:00,,,29.2348 +2016-04-05 01:34:23,3598.0,32.2962, +2016-04-05 01:45:00,,,29.2426 +2016-04-05 01:49:18,3597.0,32.2962, +2016-04-05 02:00:00,,,29.24 +2016-04-05 02:04:14,3597.0,32.2365, +2016-04-05 02:15:00,,,29.2426 +2016-04-05 02:19:09,3596.0,32.2962, +2016-04-05 02:30:00,,,29.2921 +2016-04-05 02:34:04,3596.0,32.2394, +2016-04-05 02:45:00,,,29.2426 +2016-04-05 02:48:59,3595.0,32.3532, +2016-04-05 03:00:00,,,29.2426 +2016-04-05 03:03:55,3594.0,32.2394, +2016-04-05 03:15:00,,,29.2478 +2016-04-05 03:18:50,3594.0,32.2962, +2016-04-05 03:30:00,,,29.24 +2016-04-05 03:33:45,3594.0,32.2876, +2016-04-05 03:45:00,,,29.24 +2016-04-05 03:48:40,3594.0,32.3446, +2016-04-05 04:00:00,,,29.2504 +2016-04-05 04:03:35,3593.0,32.3446, +2016-04-05 04:15:00,,,29.2504 +2016-04-05 04:18:30,3593.0,32.2876, +2016-04-05 04:30:00,,,29.2504 +2016-04-05 04:33:25,3593.0,32.2876, +2016-04-05 04:45:00,,,29.2999 +2016-04-05 04:48:20,3593.0,32.2876, +2016-04-05 05:00:00,,,29.2504 +2016-04-05 05:03:15,3593.0,32.3446, +2016-04-05 05:15:00,,,29.2504 +2016-04-05 05:18:10,3592.0,32.3446, +2016-04-05 05:30:00,,,29.2504 +2016-04-05 05:33:05,3592.0,32.336, +2016-04-05 05:45:00,,,29.2504 +2016-04-05 05:48:00,3592.0,32.336, +2016-04-05 06:00:00,,,29.2478 +2016-04-05 06:02:55,3592.0,32.279, +2016-04-05 06:15:00,,,29.3103 +2016-04-05 06:17:50,3592.0,32.2762, +2016-04-05 06:30:00,,,29.3025 +2016-04-05 06:32:45,3592.0,32.336, +2016-04-05 06:45:00,,,29.2478 +2016-04-05 06:47:40,3592.0,32.2222, +2016-04-05 07:00:00,,,29.1465 +2016-04-05 07:02:35,3592.0,32.279, +2016-04-05 07:15:00,,,29.3025 +2016-04-05 07:17:30,3591.0,32.279, +2016-04-05 07:30:00,,,29.1025 +2016-04-05 07:32:25,3591.0,32.336, +2016-04-05 07:45:00,,,29.1025 +2016-04-05 07:47:20,3590.0,32.2762, +2016-04-05 08:00:00,,,29.1465 +2016-04-05 08:02:15,3590.0,32.336, +2016-04-05 08:15:00,,,29.1025 +2016-04-05 08:17:10,3590.0,32.4502, +2016-04-05 08:30:00,,,29.1543 +2016-04-05 08:32:05,3590.0,32.3331, +2016-04-05 08:45:00,,,29.1025 +2016-04-05 08:47:00,3592.0,32.279, +2016-04-05 09:00:00,,,29.0999 +2016-04-05 09:01:55,3592.0,32.336, +2016-04-05 09:15:00,,,29.1025 +2016-04-05 09:16:50,3594.0,32.336, +2016-04-05 09:30:00,,,29.0999 +2016-04-05 09:31:45,3595.0,32.2193, +2016-04-05 09:45:00,,,29.1543 +2016-04-05 09:46:40,3596.0,32.279, +2016-04-05 10:00:00,,,29.1025 +2016-04-05 10:01:35,3598.0,32.279, +2016-04-05 10:15:00,,,29.1025 +2016-04-05 10:16:31,3598.0,32.279, +2016-04-05 10:30:00,,,29.1543 +2016-04-05 10:31:26,3598.0,32.336, +2016-04-05 10:45:00,,,29.1543 +2016-04-05 10:46:21,3598.0,32.3331, +2016-04-05 11:00:00,,,29.0508 +2016-04-05 11:01:17,3598.0,32.279, +2016-04-05 11:15:00,,,29.0999 +2016-04-05 11:16:12,3599.0,32.3902, +2016-04-05 11:30:00,,,29.0999 +2016-04-05 11:31:08,3599.0,32.336, +2016-04-05 11:45:00,,,29.0508 +2016-04-05 11:46:03,3599.0,32.336, +2016-04-05 12:00:00,,,29.0999 +2016-04-05 12:00:59,3599.0,32.336, +2016-04-05 12:15:00,,,29.1025 +2016-04-05 12:15:54,3599.0,32.336, +2016-04-05 12:30:00,,,29.0999 +2016-04-05 12:30:50,3599.0,32.336, +2016-04-05 12:45:00,,,29.1025 +2016-04-05 12:45:46,3599.0,32.3331, +2016-04-05 13:00:00,,,29.0999 +2016-04-05 13:00:42,3599.0,32.336, +2016-04-05 13:15:00,,,29.0999 +2016-04-05 13:15:37,3599.0,32.3446, +2016-04-05 13:30:00,,,29.0999 +2016-04-05 13:30:33,3599.0,32.4017, +2016-04-05 13:45:00,,,29.0999 +2016-04-05 13:45:29,3599.0,32.3446, +2016-04-05 14:00:00,,,29.0482 +2016-04-05 14:00:24,3599.0,32.3503, +2016-04-05 14:15:00,,,29.0999 +2016-04-05 14:15:20,3599.0,32.3532, +2016-04-05 14:30:00,,,29.0999 +2016-04-05 14:30:16,3599.0,32.2934, +2016-04-05 14:45:00,,,29.0999 +2016-04-05 14:45:12,3599.0,32.3532, +2016-04-05 15:00:00,,,29.0999 +2016-04-05 15:00:08,3599.0,32.126, +2016-04-05 15:15:00,,,29.0973 +2016-04-05 15:15:03,3599.0,32.2962, +2016-04-05 15:29:59,3599.0,32.248000000000005, +2016-04-05 15:30:00,,,29.0999 +2016-04-05 15:44:55,3599.0,32.1345, +2016-04-05 15:45:00,,,29.1025 +2016-04-05 15:59:51,3599.0,32.1345, +2016-04-05 16:00:00,,,29.0999 +2016-04-05 16:14:47,3599.0,32.1912, +2016-04-05 16:15:00,,,29.0508 +2016-04-05 16:29:43,3599.0,32.1431, +2016-04-05 16:30:00,,,29.0999 +2016-04-05 16:44:38,3599.0,32.1431, +2016-04-05 16:45:00,,,29.1543 +2016-04-05 16:59:34,3599.0,32.1402, +2016-04-05 17:00:00,,,29.0999 +2016-04-05 17:14:30,3599.0,32.1431, +2016-04-05 17:15:00,,,29.0999 +2016-04-05 17:29:26,3599.0,32.0865, +2016-04-05 17:30:00,,,29.1025 +2016-04-05 17:44:21,3599.0,32.1998, +2016-04-05 17:45:00,,,29.0999 +2016-04-05 17:59:17,3599.0,32.1431, +2016-04-05 18:00:00,,,29.1025 +2016-04-05 18:14:13,3599.0,32.1969, +2016-04-05 18:15:00,,,29.1025 +2016-04-05 18:29:08,3599.0,32.1488, +2016-04-05 18:30:00,,,29.0999 +2016-04-05 18:44:04,3599.0,32.1488, +2016-04-05 18:45:00,,,29.0999 +2016-04-05 18:59:00,3599.0,32.1488, +2016-04-05 19:00:00,,,29.0999 +2016-04-05 19:13:55,3599.0,32.2055, +2016-04-05 19:15:00,,,29.1025 +2016-04-05 19:28:51,3599.0,32.2623, +2016-04-05 19:30:00,,,29.0482 +2016-04-05 19:43:46,3599.0,32.2623, +2016-04-05 19:45:00,,,29.0999 +2016-04-05 19:58:42,3599.0,32.1488, +2016-04-05 20:00:00,,,29.1025 +2016-04-05 20:13:38,3599.0,32.1516, +2016-04-05 20:15:00,,,29.1025 +2016-04-05 20:28:33,3599.0,32.1488, +2016-04-05 20:30:00,,,29.1076 +2016-04-05 20:43:28,3599.0,32.1488, +2016-04-05 20:45:00,,,29.1076 +2016-04-05 20:58:24,3599.0,32.3192, +2016-04-05 21:00:00,,,29.1076 +2016-04-05 21:13:19,3599.0,32.1488, +2016-04-05 21:15:00,,,29.2114 +2016-04-05 21:28:14,3598.0,32.3192, +2016-04-05 21:30:00,,,29.1076 +2016-04-05 21:43:10,3598.0,32.4333, +2016-04-05 21:45:00,,,29.1076 +2016-04-05 21:58:05,3598.0,32.3791, +2016-04-05 22:00:00,,,29.1595 +2016-04-05 22:13:00,3596.0,32.3733, +2016-04-05 22:15:00,,,29.1076 +2016-04-05 22:27:55,3595.0,32.1516, +2016-04-05 22:30:00,,,29.1595 +2016-04-05 22:42:51,3593.0,32.2623, +2016-04-05 22:45:00,,,29.1076 +2016-04-05 22:57:46,3592.0,32.1488, +2016-04-05 23:00:00,,,29.1076 +2016-04-05 23:12:41,3591.0,32.1488, +2016-04-05 23:15:00,,,29.1595 +2016-04-05 23:27:36,3590.0,32.1488, +2016-04-05 23:30:00,,,29.1102 +2016-04-05 23:42:31,3589.0,32.3762, +2016-04-05 23:45:00,,,29.1076 +2016-04-05 23:57:26,3588.0,32.2623, +2016-04-06 00:00:00,,,29.1076 +2016-04-06 00:12:21,3588.0,32.1998, +2016-04-06 00:15:00,,,29.1076 +2016-04-06 00:27:16,3586.0,32.1431, +2016-04-06 00:30:00,,,29.118 +2016-04-06 00:42:11,3586.0,32.1402, +2016-04-06 00:45:00,,,29.1154 +2016-04-06 00:57:06,3585.0,32.0865, +2016-04-06 01:00:00,,,29.1154 +2016-04-06 01:12:01,3585.0,32.2565, +2016-04-06 01:15:00,,,29.1154 +2016-04-06 01:26:57,3585.0,32.1431, +2016-04-06 01:30:00,,,29.1672 +2016-04-06 01:41:52,3583.0,32.1431, +2016-04-06 01:45:00,,,29.1154 +2016-04-06 01:56:47,3583.0,32.0865, +2016-04-06 02:00:00,,,29.0714 +2016-04-06 02:11:42,3583.0,32.1998, +2016-04-06 02:15:00,,,29.118 +2016-04-06 02:26:37,3582.0,32.1431, +2016-04-06 02:30:00,,,29.118 +2016-04-06 02:41:32,3581.0,32.2508, +2016-04-06 02:45:00,,,29.1154 +2016-04-06 02:56:26,3581.0,32.1374, +2016-04-06 03:00:00,,,29.1154 +2016-04-06 03:11:21,3581.0,32.1345, +2016-04-06 03:15:00,,,29.1672 +2016-04-06 03:26:17,3581.0,32.1345, +2016-04-06 03:30:00,,,29.1672 +2016-04-06 03:41:12,3581.0,32.1345, +2016-04-06 03:45:00,,,29.1232 +2016-04-06 03:56:07,3580.0,32.126, +2016-04-06 04:00:00,,,29.1232 +2016-04-06 04:11:02,3579.0,32.078, +2016-04-06 04:15:00,,,29.2269 +2016-04-06 04:25:56,3579.0,32.126, +2016-04-06 04:30:00,,,29.1232 +2016-04-06 04:40:51,3578.0,32.0694, +2016-04-06 04:45:00,,,29.175 +2016-04-06 04:55:46,3577.0,32.126, +2016-04-06 05:00:00,,,29.1257 +2016-04-06 05:10:41,3577.0,32.0723, +2016-04-06 05:15:00,,,29.175 +2016-04-06 05:25:36,3575.0,32.1288, +2016-04-06 05:30:00,,,29.0714 +2016-04-06 05:40:30,3575.0,32.126, +2016-04-06 05:45:00,,,29.2269 +2016-04-06 05:55:25,3574.0,32.126, +2016-04-06 06:00:00,,,29.1776 +2016-04-06 06:10:20,3573.0,32.0609, +2016-04-06 06:15:00,,,29.1232 +2016-04-06 06:25:15,3572.0,32.2308, +2016-04-06 06:30:00,,,29.1776 +2016-04-06 06:40:10,3571.0,32.1174, +2016-04-06 06:45:00,,,29.2295 +2016-04-06 06:55:04,3571.0,32.0609, +2016-04-06 07:00:00,,,29.175 +2016-04-06 07:09:59,3570.0,32.1174, +2016-04-06 07:15:00,,,29.1257 +2016-04-06 07:24:54,3571.0,32.1088, +2016-04-06 07:30:00,,,29.2269 +2016-04-06 07:39:48,3571.0,32.0523, +2016-04-06 07:45:00,,,29.1232 +2016-04-06 07:54:43,3572.0,32.0523, +2016-04-06 08:00:00,,,29.2269 +2016-04-06 08:09:38,3573.0,32.2222, +2016-04-06 08:15:00,,,29.2269 +2016-04-06 08:24:33,3574.0,32.1117, +2016-04-06 08:30:00,,,29.1232 +2016-04-06 08:39:27,3576.0,32.106, +2016-04-06 08:45:00,,,29.074 +2016-04-06 08:54:22,3579.0,32.1088, +2016-04-06 09:00:00,,,29.1232 +2016-04-06 09:09:17,3581.0,32.2193, +2016-04-06 09:15:00,,,29.1257 +2016-04-06 09:24:12,3584.0,32.2193, +2016-04-06 09:30:00,,,29.1232 +2016-04-06 09:39:07,3585.0,32.1655, +2016-04-06 09:45:00,,,29.1232 +2016-04-06 09:54:02,3586.0,32.1003, +2016-04-06 10:00:00,,,29.1232 +2016-04-06 10:08:57,3588.0,32.1655, +2016-04-06 10:15:00,,,29.1232 +2016-04-06 10:23:52,3590.0,32.2222, +2016-04-06 10:30:00,,,29.1232 +2016-04-06 10:38:48,3592.0,32.106, +2016-04-06 10:45:00,,,29.1232 +2016-04-06 10:53:43,3594.0,32.1003, +2016-04-06 11:00:00,,,29.1232 +2016-04-06 11:08:38,3595.0,32.1003, +2016-04-06 11:15:00,,,29.1232 +2016-04-06 11:23:33,3597.0,32.1088, +2016-04-06 11:30:00,,,29.1232 +2016-04-06 11:38:28,3598.0,32.0523, +2016-04-06 11:45:00,,,29.1232 +2016-04-06 11:53:23,3598.0,32.1003, +2016-04-06 12:00:00,,,29.1232 +2016-04-06 12:08:18,3598.0,32.1598, +2016-04-06 12:15:00,,,29.1232 +2016-04-06 12:23:14,3598.0,32.1088, +2016-04-06 12:30:00,,,29.1232 +2016-04-06 12:38:09,3599.0,32.1655, +2016-04-06 12:45:00,,,29.1232 +2016-04-06 12:53:04,3599.0,32.1655, +2016-04-06 13:00:00,,,29.1232 +2016-04-06 13:07:59,3599.0,32.2222, +2016-04-06 13:15:00,,,29.1232 +2016-04-06 13:22:54,3599.0,32.2193, +2016-04-06 13:30:00,,,29.1232 +2016-04-06 13:37:50,3599.0,32.1088, +2016-04-06 13:45:00,,,29.175 +2016-04-06 13:52:45,3599.0,32.1626, +2016-04-06 14:00:00,,,29.1232 +2016-04-06 14:07:40,3599.0,32.106, +2016-04-06 14:15:00,,,29.1232 +2016-04-06 14:22:36,3599.0,32.2222, +2016-04-06 14:30:00,,,29.1232 +2016-04-06 14:37:31,3599.0,32.1088, +2016-04-06 14:45:00,,,29.2269 +2016-04-06 14:52:26,3599.0,32.2308, +2016-04-06 15:00:00,,,29.1232 +2016-04-06 15:07:22,3599.0,32.1174, +2016-04-06 15:15:00,,,29.1776 +2016-04-06 15:22:17,3599.0,32.2308, +2016-04-06 15:30:00,,,29.1232 +2016-04-06 15:37:12,3599.0,32.1174, +2016-04-06 15:45:00,,,29.1232 +2016-04-06 15:52:07,3599.0,32.2308, +2016-04-06 16:00:00,,,29.1232 +2016-04-06 16:07:03,3599.0,32.1174, +2016-04-06 16:15:00,,,29.1232 +2016-04-06 16:21:58,3599.0,32.2394, +2016-04-06 16:30:00,,,29.1257 +2016-04-06 16:36:53,3599.0,32.126, +2016-04-06 16:45:00,,,29.1232 +2016-04-06 16:51:49,3599.0,32.126, +2016-04-06 17:00:00,,,29.1232 +2016-04-06 17:06:44,3599.0,32.1826, +2016-04-06 17:15:00,,,29.1232 +2016-04-06 17:21:40,3599.0,32.0694, +2016-04-06 17:30:00,,,29.1232 +2016-04-06 17:36:35,3599.0,32.2394, +2016-04-06 17:45:00,,,29.1232 +2016-04-06 17:51:30,3599.0,32.1826, +2016-04-06 18:00:00,,,29.1257 +2016-04-06 18:06:26,3599.0,32.126, +2016-04-06 18:15:00,,,29.1232 +2016-04-06 18:21:21,3599.0,32.1826, +2016-04-06 18:30:00,,,29.1232 +2016-04-06 18:36:16,3599.0,32.1826, +2016-04-06 18:45:00,,,29.1257 +2016-04-06 18:51:12,3599.0,32.1826, +2016-04-06 19:00:00,,,29.1232 +2016-04-06 19:06:07,3599.0,32.126, +2016-04-06 19:15:00,,,29.1232 +2016-04-06 19:21:02,3599.0,32.2394, +2016-04-06 19:30:00,,,29.1232 +2016-04-06 19:35:57,3598.0,32.126, +2016-04-06 19:45:00,,,29.1232 +2016-04-06 19:50:53,3598.0,32.1826, +2016-04-06 20:00:00,,,29.1232 +2016-04-06 20:05:48,3597.0,32.126, +2016-04-06 20:15:00,,,29.1232 +2016-04-06 20:20:43,3596.0,32.0694, +2016-04-06 20:30:00,,,29.1206 +2016-04-06 20:35:38,3595.0,32.1231, +2016-04-06 20:45:00,,,29.1232 +2016-04-06 20:50:33,3594.0,32.1826, +2016-04-06 21:00:00,,,29.1232 +2016-04-06 21:05:28,3592.0,32.1826, +2016-04-06 21:15:00,,,29.1232 +2016-04-06 21:20:23,3591.0,32.126, +2016-04-06 21:30:00,,,29.1232 +2016-04-06 21:35:18,3590.0,32.2962, +2016-04-06 21:45:00,,,29.1232 +2016-04-06 21:50:13,3590.0,32.1826, +2016-04-06 22:00:00,,,29.0224 +2016-04-06 22:05:15,3589.0,32.126, +2016-04-06 22:15:00,,,29.0198 +2016-04-06 22:20:10,3589.0,32.126, +2016-04-06 22:30:00,,,28.9682 +2016-04-06 22:35:05,3588.0,32.126, +2016-04-06 22:45:00,,,29.1232 +2016-04-06 22:50:00,3589.0,32.2962, +2016-04-06 23:00:00,,,28.9682 +2016-04-06 23:04:55,3589.0,32.2394, +2016-04-06 23:15:00,,,29.0198 +2016-04-06 23:19:50,3589.0,32.1203, +2016-04-06 23:30:00,,,29.0198 +2016-04-06 23:34:45,3588.0,32.1174, +2016-04-06 23:45:00,,,28.9682 +2016-04-06 23:49:40,3588.0,32.174, +2016-04-07 00:00:00,,,28.9682 +2016-04-07 00:04:36,3588.0,32.174, +2016-04-07 00:15:00,,,29.0198 +2016-04-07 00:19:31,3587.0,32.0637, +2016-04-07 00:30:00,,,28.9682 +2016-04-07 00:34:26,3587.0,32.0609, +2016-04-07 00:45:00,,,29.0198 +2016-04-07 00:49:21,3587.0,32.1174, +2016-04-07 01:00:00,,,28.9168 +2016-04-07 01:04:15,3586.0,32.2308, +2016-04-07 01:15:00,,,28.9682 +2016-04-07 01:19:10,3585.0,32.2222, +2016-04-07 01:30:00,,,29.0275 +2016-04-07 01:34:05,3585.0,32.1655, +2016-04-07 01:45:00,,,29.0275 +2016-04-07 01:49:00,3584.0,32.2222, +2016-04-07 02:00:00,,,28.9759 +2016-04-07 02:03:55,3584.0,32.106, +2016-04-07 02:15:00,,,28.9168 +2016-04-07 02:18:50,3584.0,32.0523, +2016-04-07 02:30:00,,,29.0275 +2016-04-07 02:33:45,3582.0,32.1088, +2016-04-07 02:45:00,,,29.0275 +2016-04-07 02:48:40,3581.0,32.0495, +2016-04-07 03:00:00,,,29.0198 +2016-04-07 03:03:34,3581.0,32.2762, +2016-04-07 03:15:00,,,28.9759 +2016-04-07 03:18:29,3580.0,32.1088, +2016-04-07 03:30:00,,,29.0275 +2016-04-07 03:33:24,3579.0,32.1655, +2016-04-07 03:45:00,,,28.9785 +2016-04-07 03:48:19,3578.0,32.0523, +2016-04-07 04:00:00,,,28.9759 +2016-04-07 04:03:13,3577.0,32.2222, +2016-04-07 04:15:00,,,29.0275 +2016-04-07 04:18:08,3576.0,32.0523, +2016-04-07 04:30:00,,,29.0275 +2016-04-07 04:33:03,3575.0,32.106, +2016-04-07 04:45:00,,,29.0198 +2016-04-07 04:47:58,3574.0,32.0467, +2016-04-07 05:00:00,,,29.0275 +2016-04-07 05:02:52,3573.0,32.0438, +2016-04-07 05:15:00,,,28.9759 +2016-04-07 05:17:47,3571.0,32.0438, +2016-04-07 05:30:00,,,28.9785 +2016-04-07 05:32:42,3571.0,32.1031, +2016-04-07 05:45:00,,,29.0275 +2016-04-07 05:47:36,3569.0,32.1031, +2016-04-07 06:00:00,,,29.0301 +2016-04-07 06:02:31,3567.0,33.7913, +2016-04-07 06:15:00,,,29.0327 +2016-04-07 06:17:25,3566.0,32.1541, +2016-04-07 06:30:00,,,29.0224 +2016-04-07 06:32:20,3565.0,32.0467, +2016-04-07 06:45:00,,,28.9759 +2016-04-07 06:47:14,3563.0,32.0467, +2016-04-07 07:00:00,,,28.9759 +2016-04-07 07:02:09,3563.0,32.0946, +2016-04-07 07:15:00,,,28.9785 +2016-04-07 07:17:04,3561.0,32.0918, +2016-04-07 07:30:00,,,29.0275 +2016-04-07 07:31:58,3561.0,32.0946, +2016-04-07 07:45:00,,,29.0275 +2016-04-07 07:46:53,3560.0,32.0946, +2016-04-07 08:00:00,,,28.9759 +2016-04-07 08:01:47,3559.0,32.0946, +2016-04-07 08:15:00,,,29.0301 +2016-04-07 08:16:42,3561.0,32.0832, +2016-04-07 08:30:00,,,28.9759 +2016-04-07 08:31:37,3561.0,32.1398, +2016-04-07 08:45:00,,,29.0275 +2016-04-07 08:46:31,3564.0,32.0861, +2016-04-07 09:00:00,,,29.0275 +2016-04-07 09:01:26,3568.0,32.0267, +2016-04-07 09:15:00,,,28.9245 +2016-04-07 09:16:21,3572.0,32.0832, +2016-04-07 09:30:00,,,29.0275 +2016-04-07 09:31:16,3575.0,32.0832, +2016-04-07 09:45:00,,,28.9759 +2016-04-07 09:46:11,3577.0,32.0861, +2016-04-07 10:00:00,,,29.0275 +2016-04-07 10:01:06,3581.0,32.0832, +2016-04-07 10:15:00,,,29.0275 +2016-04-07 10:16:01,3582.0,32.0832, +2016-04-07 10:30:00,,,29.0275 +2016-04-07 10:30:56,3585.0,32.1398, +2016-04-07 10:45:00,,,28.9682 +2016-04-07 10:45:51,3586.0,32.0861, +2016-04-07 11:00:00,,,28.9759 +2016-04-07 11:00:46,3587.0,32.1398, +2016-04-07 11:15:00,,,29.0275 +2016-04-07 11:15:41,3588.0,32.0832, +2016-04-07 11:30:00,,,28.9682 +2016-04-07 11:30:37,3588.0,32.1398, +2016-04-07 11:45:00,,,28.9682 +2016-04-07 11:45:32,3588.0,32.1965, +2016-04-07 12:00:00,,,28.9682 +2016-04-07 12:00:27,3588.0,32.1426, +2016-04-07 12:15:00,,,28.9708 +2016-04-07 12:15:23,3588.0,32.0267, +2016-04-07 12:30:00,,,28.9193 +2016-04-07 12:30:18,3590.0,32.1398, +2016-04-07 12:45:00,,,28.9682 +2016-04-07 12:45:13,3592.0,32.1341, +2016-04-07 13:00:00,,,28.9759 +2016-04-07 13:00:08,3593.0,32.0832, +2016-04-07 13:15:00,,,28.9682 +2016-04-07 13:15:04,3594.0,32.0861, +2016-04-07 13:29:59,3595.0,32.0861, +2016-04-07 13:30:00,,,28.9245 +2016-04-07 13:44:54,3595.0,32.0832, +2016-04-07 13:45:00,,,29.0198 +2016-04-07 13:59:50,3596.0,32.1965, +2016-04-07 14:00:00,,,28.9682 +2016-04-07 14:14:45,3597.0,32.1398, +2016-04-07 14:15:00,,,29.0198 +2016-04-07 14:29:40,3598.0,32.0832, +2016-04-07 14:30:00,,,29.0198 +2016-04-07 14:44:35,3598.0,32.0861, +2016-04-07 14:45:00,,,28.9193 +2016-04-07 14:59:31,3598.0,32.1398, +2016-04-07 15:00:00,,,28.9168 +2016-04-07 15:14:26,3598.0,32.0832, +2016-04-07 15:15:00,,,28.9682 +2016-04-07 15:29:21,3598.0,32.0832, +2016-04-07 15:30:00,,,28.9168 +2016-04-07 15:44:16,3598.0,32.0353, +2016-04-07 15:45:00,,,29.0198 +2016-04-07 15:59:12,3598.0,32.1512, +2016-04-07 16:00:00,,,29.0198 +2016-04-07 16:14:07,3598.0,32.205, +2016-04-07 16:15:00,,,28.9168 +2016-04-07 16:29:02,3598.0,32.0946, +2016-04-07 16:30:00,,,28.9682 +2016-04-07 16:43:57,3598.0,32.1512, +2016-04-07 16:45:00,,,28.9168 +2016-04-07 16:59:00,3598.0,32.1003, +2016-04-07 17:00:00,,,28.9682 +2016-04-07 17:13:55,3598.0,32.041, +2016-04-07 17:15:00,,,28.9682 +2016-04-07 17:28:51,3598.0,32.1003, +2016-04-07 17:30:00,,,28.9682 +2016-04-07 17:43:46,3597.0,32.1031, +2016-04-07 17:45:00,,,28.9168 +2016-04-07 17:58:41,3596.0,32.0467, +2016-04-07 18:00:00,,,28.9682 +2016-04-07 18:13:36,3596.0,32.1031, +2016-04-07 18:15:00,,,28.9682 +2016-04-07 18:28:31,3595.0,32.1598, +2016-04-07 18:30:00,,,28.9682 +2016-04-07 18:43:26,3594.0,32.2108, +2016-04-07 18:45:00,,,28.9168 +2016-04-07 18:58:22,3593.0,32.0975, +2016-04-07 19:00:00,,,28.9682 +2016-04-07 19:13:16,3592.0,32.2136, +2016-04-07 19:15:00,,,28.9168 +2016-04-07 19:28:11,3589.0,32.1598, +2016-04-07 19:30:00,,,28.9682 +2016-04-07 19:43:06,3588.0,32.1031, +2016-04-07 19:45:00,,,28.9682 +2016-04-07 19:58:01,3586.0,32.1031, +2016-04-07 20:00:00,,,28.9708 +2016-04-07 20:12:56,3585.0,32.1031, +2016-04-07 20:15:00,,,28.9682 +2016-04-07 20:27:58,3582.0,32.0438, +2016-04-07 20:30:00,,,29.0172 +2016-04-07 20:42:53,3580.0,32.0467, +2016-04-07 20:45:00,,,28.9682 +2016-04-07 20:57:48,3578.0,32.1031, +2016-04-07 21:00:00,,,28.9708 +2016-04-07 21:12:42,3576.0,32.0918, +2016-04-07 21:15:00,,,28.9682 +2016-04-07 21:27:37,3574.0,32.0918, +2016-04-07 21:30:00,,,28.9193 +2016-04-07 21:42:32,3572.0,32.0353, +2016-04-07 21:45:00,,,28.9682 +2016-04-07 21:57:26,3570.0,32.0918, +2016-04-07 22:00:00,,,29.0249 +2016-04-07 22:12:21,3568.0,32.0832, +2016-04-07 22:15:00,,,28.9168 +2016-04-07 22:27:16,3566.0,32.0861, +2016-04-07 22:30:00,,,29.0198 +2016-04-07 22:42:10,3565.0,32.0861, +2016-04-07 22:45:00,,,28.9193 +2016-04-07 22:57:05,3564.0,32.0832, +2016-04-07 23:00:00,,,29.0198 +2016-04-07 23:12:00,3563.0,32.0832, +2016-04-07 23:15:00,,,29.0198 +2016-04-07 23:26:54,3561.0,32.1426, +2016-04-07 23:30:00,,,29.0198 +2016-04-07 23:41:49,3559.0,32.0861, +2016-04-07 23:45:00,,,29.0198 +2016-04-07 23:56:43,3559.0,32.0861, +2016-04-08 00:00:00,,,29.0198 +2016-04-08 00:11:38,3557.0,32.0861, +2016-04-08 00:15:00,,,28.9682 +2016-04-08 00:26:32,3557.0,32.1993, +2016-04-08 00:30:00,,,29.0198 +2016-04-08 00:41:26,3556.0,32.0775, +2016-04-08 00:45:00,,,28.9682 +2016-04-08 00:56:21,3555.0,32.0775, +2016-04-08 01:00:00,,,29.0198 +2016-04-08 01:11:15,3553.0,32.0775, +2016-04-08 01:15:00,,,29.0198 +2016-04-08 01:26:09,3552.0,32.0775, +2016-04-08 01:30:00,,,29.0224 +2016-04-08 01:41:04,3552.0,32.1936, +2016-04-08 01:45:00,,,29.0224 +2016-04-08 01:55:58,3550.0,32.0239, +2016-04-08 02:00:00,,,28.9708 +2016-04-08 02:10:53,3550.0,32.0775, +2016-04-08 02:15:00,,,29.0198 +2016-04-08 02:25:47,3549.0,32.1341, +2016-04-08 02:30:00,,,29.0198 +2016-04-08 02:40:41,3548.0,32.069, +2016-04-08 02:45:00,,,29.0224 +2016-04-08 02:55:35,3548.0,32.0718, +2016-04-08 03:00:00,,,28.9708 +2016-04-08 03:10:29,3547.0,32.069, +2016-04-08 03:15:00,,,28.9682 +2016-04-08 03:25:24,3547.0,32.0604, +2016-04-08 03:30:00,,,29.0224 +2016-04-08 03:40:18,3546.0,32.1765, +2016-04-08 03:45:00,,,29.0224 +2016-04-08 03:55:12,3545.0,32.0604, +2016-04-08 04:00:00,,,28.9708 +2016-04-08 04:10:07,3545.0,32.117, +2016-04-08 04:15:00,,,29.0224 +2016-04-08 04:25:01,3545.0,32.117, +2016-04-08 04:30:00,,,28.9682 +2016-04-08 04:39:56,3545.0,32.0604, +2016-04-08 04:45:00,,,28.868 +2016-04-08 04:54:50,3545.0,32.117, +2016-04-08 05:00:00,,,28.8167 +2016-04-08 05:09:44,3545.0,32.0604, +2016-04-08 05:15:00,,,28.8654 +2016-04-08 05:24:38,3545.0,32.2218, +2016-04-08 05:30:00,,,28.8654 +2016-04-08 05:39:33,3545.0,32.0547, +2016-04-08 05:45:00,,,28.9168 +2016-04-08 05:54:27,3544.0,32.1679, +2016-04-08 06:00:00,,,28.8142 +2016-04-08 06:09:21,3544.0,32.1113, +2016-04-08 06:15:00,,,28.868 +2016-04-08 06:24:16,3543.0,32.1679, +2016-04-08 06:30:00,,,28.8654 +2016-04-08 06:39:10,3542.0,32.0519, +2016-04-08 06:45:00,,,28.868 +2016-04-08 06:54:04,3542.0,32.0547, +2016-04-08 07:00:00,,,28.868 +2016-04-08 07:08:59,3542.0,32.1565, +2016-04-08 07:15:00,,,28.8654 +2016-04-08 07:23:53,3542.0,32.0999, +2016-04-08 07:30:00,,,28.8654 +2016-04-08 07:38:47,3543.0,32.097, +2016-04-08 07:45:00,,,28.8654 +2016-04-08 07:53:42,3545.0,32.1565, +2016-04-08 08:00:00,,,28.8167 +2016-04-08 08:08:36,3546.0,32.0434, +2016-04-08 08:15:00,,,28.8654 +2016-04-08 08:23:31,3550.0,31.9785, +2016-04-08 08:30:00,,,28.8654 +2016-04-08 08:38:26,3554.0,32.2046, +2016-04-08 08:45:00,,,28.8654 +2016-04-08 08:53:20,3557.0,32.0913, +2016-04-08 09:00:00,,,28.868 +2016-04-08 09:08:15,3563.0,32.0348, +2016-04-08 09:15:00,,,28.8142 +2016-04-08 09:23:10,3567.0,31.9699, +2016-04-08 09:30:00,,,28.8167 +2016-04-08 09:38:05,3571.0,32.0263, +2016-04-08 09:45:00,,,28.8142 +2016-04-08 09:53:00,3574.0,32.0263, +2016-04-08 10:00:00,,,28.8142 +2016-04-08 10:07:55,3577.0,31.9728, +2016-04-08 10:15:00,,,28.8142 +2016-04-08 10:22:50,3581.0,32.0263, +2016-04-08 10:30:00,,,28.8142 +2016-04-08 10:37:45,3585.0,32.0828, +2016-04-08 10:45:00,,,28.8142 +2016-04-08 10:52:40,3588.0,32.0263, +2016-04-08 11:00:00,,,28.8142 +2016-04-08 11:07:35,3591.0,32.0263, +2016-04-08 11:15:00,,,28.8142 +2016-04-08 11:22:30,3593.0,32.0263, +2016-04-08 11:30:00,,,28.8142 +2016-04-08 11:37:26,3594.0,31.9785, +2016-04-08 11:45:00,,,28.8065 +2016-04-08 11:52:21,3596.0,32.0348, +2016-04-08 12:00:00,,,28.8091 +2016-04-08 12:07:16,3597.0,32.0348, +2016-04-08 12:15:00,,,28.7554 +2016-04-08 12:22:12,3598.0,32.0434, +2016-04-08 12:30:00,,,28.7554 +2016-04-08 12:37:07,3598.0,31.987, +2016-04-08 12:45:00,,,28.8065 +2016-04-08 12:52:02,3598.0,31.9279, +2016-04-08 13:00:00,,,28.8065 +2016-04-08 13:06:58,3599.0,31.8745, +2016-04-08 13:15:00,,,28.8065 +2016-04-08 13:21:53,3599.0,31.9955, +2016-04-08 13:30:00,,,28.7554 +2016-04-08 13:36:49,3599.0,31.9392, +2016-04-08 13:45:00,,,28.8065 +2016-04-08 13:51:44,3599.0,31.8269, +2016-04-08 14:00:00,,,28.7554 +2016-04-08 14:06:39,3599.0,31.9392, +2016-04-08 14:15:00,,,28.8577 +2016-04-08 14:21:34,3599.0,31.9477, +2016-04-08 14:30:00,,,28.8065 +2016-04-08 14:36:30,3599.0,31.8915, +2016-04-08 14:45:00,,,28.8091 +2016-04-08 14:51:25,3599.0,31.9449, +2016-04-08 15:00:00,,,28.8091 +2016-04-08 15:06:20,3599.0,31.9477, +2016-04-08 15:15:00,,,28.8065 +2016-04-08 15:21:16,3599.0,32.004, +2016-04-08 15:30:00,,,28.8065 +2016-04-08 15:36:11,3599.0,32.0012, +2016-04-08 15:45:00,,,28.8577 +2016-04-08 15:51:07,3599.0,31.9562, +2016-04-08 16:00:00,,,28.7477 +2016-04-08 16:06:02,3599.0,32.0154, +2016-04-08 16:15:00,,,28.7988 +2016-04-08 16:20:57,3599.0,31.9, +2016-04-08 16:30:00,,,28.8014 +2016-04-08 16:35:52,3599.0,31.9619, +2016-04-08 16:45:00,,,28.8065 +2016-04-08 16:50:48,3599.0,31.9647, +2016-04-08 17:00:00,,,28.7988 +2016-04-08 17:05:43,3599.0,32.0211, +2016-04-08 17:15:00,,,28.7988 +2016-04-08 17:20:38,3599.0,32.0211, +2016-04-08 17:30:00,,,28.7988 +2016-04-08 17:35:33,3599.0,32.0182, +2016-04-08 17:45:00,,,28.7963 +2016-04-08 17:50:28,3599.0,31.9619, +2016-04-08 18:00:00,,,28.7988 +2016-04-08 18:05:23,3598.0,31.9647, +2016-04-08 18:15:00,,,28.8065 +2016-04-08 18:20:18,3598.0,31.9085, +2016-04-08 18:30:00,,,28.8065 +2016-04-08 18:35:14,3598.0,32.0267, +2016-04-08 18:45:00,,,28.7477 +2016-04-08 18:50:09,3598.0,31.9704, +2016-04-08 19:00:00,,,28.8577 +2016-04-08 19:05:04,3595.0,32.0296, +2016-04-08 19:15:00,,,28.8065 +2016-04-08 19:19:58,3594.0,32.0296, +2016-04-08 19:30:00,,,28.7988 +2016-04-08 19:34:53,3592.0,31.9704, +2016-04-08 19:45:00,,,28.8065 +2016-04-08 19:49:48,3589.0,32.0267, +2016-04-08 20:00:00,,,28.8065 +2016-04-08 20:04:43,3588.0,32.0296, +2016-04-08 20:15:00,,,28.7988 +2016-04-08 20:19:38,3586.0,31.8608, +2016-04-08 20:30:00,,,28.8065 +2016-04-08 20:34:32,3584.0,32.0861, +2016-04-08 20:45:00,,,28.8577 +2016-04-08 20:49:27,3581.0,32.0296, +2016-04-08 21:00:00,,,28.7988 +2016-04-08 21:04:22,3579.0,31.917, +2016-04-08 21:15:00,,,28.8577 +2016-04-08 21:19:17,3577.0,31.9619, +2016-04-08 21:30:00,,,28.8065 +2016-04-08 21:34:11,3574.0,32.0211, +2016-04-08 21:45:00,,,28.8577 +2016-04-08 21:49:06,3574.0,31.9647, +2016-04-08 22:00:00,,,28.7988 +2016-04-08 22:04:00,3571.0,31.9085, +2016-04-08 22:15:00,,,28.8603 +2016-04-08 22:18:54,3570.0,31.9085, +2016-04-08 22:30:00,,,28.8501 +2016-04-08 22:33:56,3568.0,31.9085, +2016-04-08 22:45:00,,,28.8501 +2016-04-08 22:48:51,3566.0,31.9056, +2016-04-08 23:00:00,,,28.8065 +2016-04-08 23:03:45,3565.0,31.9647, +2016-04-08 23:15:00,,,28.8603 +2016-04-08 23:18:39,3564.0,32.0211, +2016-04-08 23:30:00,,,28.8065 +2016-04-08 23:33:34,3563.0,31.9647, +2016-04-08 23:45:00,,,28.8577 +2016-04-08 23:48:28,3561.0,31.9647, +2016-04-09 00:00:00,,,28.8501 +2016-04-09 00:03:23,3559.0,31.8467, +2016-04-09 00:15:00,,,28.8577 +2016-04-09 00:18:17,3559.0,31.9, +2016-04-09 00:30:00,,,28.8577 +2016-04-09 00:33:12,3558.0,31.9028, +2016-04-09 00:45:00,,,28.8577 +2016-04-09 00:48:06,3557.0,31.8467, +2016-04-09 01:00:00,,,28.8629 +2016-04-09 01:03:00,3556.0,31.9562, +2016-04-09 01:15:00,,,28.8501 +2016-04-09 01:17:55,3555.0,31.8354, +2016-04-09 01:30:00,,,28.8603 +2016-04-09 01:32:49,3554.0,31.8354, +2016-04-09 01:45:00,,,28.8526 +2016-04-09 01:47:44,3553.0,31.8382, +2016-04-09 02:00:00,,,28.8577 +2016-04-09 02:02:38,3552.0,32.004, +2016-04-09 02:15:00,,,28.8603 +2016-04-09 02:17:32,3552.0,32.0069, +2016-04-09 02:30:00,,,28.8603 +2016-04-09 02:32:34,3550.0,31.8915, +2016-04-09 02:45:00,,,28.8629 +2016-04-09 02:47:28,3550.0,31.9477, +2016-04-09 03:00:00,,,28.8065 +2016-04-09 03:02:23,3549.0,32.0633, +2016-04-09 03:15:00,,,28.8577 +2016-04-09 03:17:17,3549.0,31.9392, +2016-04-09 03:30:00,,,28.8603 +2016-04-09 03:32:11,3549.0,31.883000000000006, +2016-04-09 03:45:00,,,28.8603 +2016-04-09 03:47:05,3549.0,31.883000000000006, +2016-04-09 04:00:00,,,28.8603 +2016-04-09 04:02:00,3548.0,31.883000000000006, +2016-04-09 04:15:00,,,28.8603 +2016-04-09 04:16:54,3547.0,31.9955, +2016-04-09 04:30:00,,,28.8577 +2016-04-09 04:31:48,3546.0,31.883000000000006, +2016-04-09 04:45:00,,,28.8065 +2016-04-09 04:46:43,3545.0,31.8858, +2016-04-09 05:00:00,,,28.8577 +2016-04-09 05:01:37,3545.0,31.883000000000006, +2016-04-09 05:15:00,,,28.8603 +2016-04-09 05:16:31,3545.0,31.9955, +2016-04-09 05:30:00,,,28.8577 +2016-04-09 05:31:26,3545.0,31.9307, +2016-04-09 05:45:00,,,28.8577 +2016-04-09 05:46:20,3544.0,31.9307, +2016-04-09 06:00:00,,,28.8091 +2016-04-09 06:01:14,3544.0,31.9307, +2016-04-09 06:15:00,,,28.8065 +2016-04-09 06:16:08,3544.0,31.9222, +2016-04-09 06:30:00,,,28.8091 +2016-04-09 06:31:03,3544.0,31.9222, +2016-04-09 06:45:00,,,28.8577 +2016-04-09 06:45:57,3545.0,31.866, +2016-04-09 07:00:00,,,28.8577 +2016-04-09 07:00:51,3545.0,31.866, +2016-04-09 07:15:00,,,28.8065 +2016-04-09 07:15:46,3545.0,31.9785, +2016-04-09 07:30:00,,,28.8091 +2016-04-09 07:30:40,3546.0,31.9699, +2016-04-09 07:45:00,,,28.8577 +2016-04-09 07:45:34,3549.0,31.9699, +2016-04-09 08:00:00,,,28.8014 +2016-04-09 08:00:36,3550.0,31.9137, +2016-04-09 08:15:00,,,28.8065 +2016-04-09 08:15:31,3555.0,31.8072, +2016-04-09 08:30:00,,,28.8091 +2016-04-09 08:30:26,3559.0,31.8015, +2016-04-09 08:45:00,,,28.8065 +2016-04-09 08:45:20,3563.0,31.8575, +2016-04-09 09:00:00,,,28.7988 +2016-04-09 09:00:15,3567.0,31.8043, +2016-04-09 09:15:00,,,28.7988 +2016-04-09 09:15:10,3571.0,31.8015, +2016-04-09 09:30:00,,,28.8065 +2016-04-09 09:30:05,3575.0,31.8575, +2016-04-09 09:45:00,3579.0,31.9137,28.7988 +2016-04-09 09:59:55,3582.0,31.9137, +2016-04-09 10:00:00,,,28.7988 +2016-04-09 10:14:50,3586.0,31.9137, +2016-04-09 10:15:00,,,28.8501 +2016-04-09 10:29:45,3588.0,31.8015, +2016-04-09 10:30:00,,,28.7988 +2016-04-09 10:44:40,3592.0,31.9137, +2016-04-09 10:45:00,,,28.7988 +2016-04-09 10:59:35,3595.0,31.9699, +2016-04-09 11:00:00,,,28.7988 +2016-04-09 11:14:31,3596.0,31.8015, +2016-04-09 11:15:00,,,28.7988 +2016-04-09 11:29:26,3597.0,31.8015, +2016-04-09 11:30:00,,,28.7963 +2016-04-09 11:44:21,3598.0,31.9699, +2016-04-09 11:45:00,,,28.7988 +2016-04-09 11:59:17,3598.0,31.8632, +2016-04-09 12:00:00,,,28.7988 +2016-04-09 12:14:12,3598.0,31.9222, +2016-04-09 12:15:00,,,28.7988 +2016-04-09 12:29:07,3599.0,31.81, +2016-04-09 12:30:00,,,28.7988 +2016-04-09 12:44:03,3599.0,31.9307, +2016-04-09 12:45:00,,,28.7988 +2016-04-09 12:58:58,3599.0,31.8184, +2016-04-09 13:00:00,,,28.7988 +2016-04-09 13:13:54,3599.0,31.987, +2016-04-09 13:15:00,,,28.8501 +2016-04-09 13:28:49,3599.0,31.883000000000006, +2016-04-09 13:30:00,,,28.7988 +2016-04-09 13:43:44,3599.0,31.9364, +2016-04-09 13:45:00,,,28.7988 +2016-04-09 13:58:40,3599.0,31.9955, +2016-04-09 14:00:00,,,28.7988 +2016-04-09 14:13:35,3599.0,31.9392, +2016-04-09 14:15:00,,,28.74 +2016-04-09 14:28:31,3599.0,31.9955, +2016-04-09 14:30:00,,,28.8501 +2016-04-09 14:43:26,3599.0,32.0012, +2016-04-09 14:45:00,,,28.7988 +2016-04-09 14:58:22,3599.0,31.8915, +2016-04-09 15:00:00,,,28.7988 +2016-04-09 15:13:18,3599.0,32.9202, +2016-04-09 15:15:00,,,28.7477 +2016-04-09 15:28:13,3599.0,31.959, +2016-04-09 15:30:00,,,28.7988 +2016-04-09 15:43:09,3599.0,31.959, +2016-04-09 15:45:00,,,28.7912 +2016-04-09 15:58:04,3599.0,31.959, +2016-04-09 16:00:00,,,28.7912 +2016-04-09 16:13:00,3599.0,31.9534, +2016-04-09 16:15:00,,,28.7988 +2016-04-09 16:27:55,3599.0,31.9647, +2016-04-09 16:30:00,,,28.7988 +2016-04-09 16:42:51,3599.0,31.7963, +2016-04-09 16:45:00,,,28.7988 +2016-04-09 16:57:46,3599.0,31.8524, +2016-04-09 17:00:00,,,28.7988 +2016-04-09 17:12:41,3599.0,31.8495, +2016-04-09 17:15:00,,,28.7937 +2016-04-09 17:27:37,3599.0,31.7963, +2016-04-09 17:30:00,,,28.7937 +2016-04-09 17:42:32,3599.0,31.858, +2016-04-09 17:45:00,,,28.7426 +2016-04-09 17:57:27,3599.0,31.858, +2016-04-09 18:00:00,,,28.7912 +2016-04-09 18:12:22,3598.0,31.7461, +2016-04-09 18:15:00,,,28.7912 +2016-04-09 18:27:18,3598.0,31.8608, +2016-04-09 18:30:00,,,28.7937 +2016-04-09 18:42:13,3598.0,31.858, +2016-04-09 18:45:00,,,28.7937 +2016-04-09 18:57:08,3598.0,31.802, +2016-04-09 19:00:00,,,28.7988 +2016-04-09 19:12:03,3596.0,31.9704, +2016-04-09 19:15:00,,,28.7988 +2016-04-09 19:26:58,3595.0,31.858, +2016-04-09 19:30:00,,,28.7988 +2016-04-09 19:41:53,3593.0,31.8048, +2016-04-09 19:45:00,,,28.7988 +2016-04-09 19:56:48,3591.0,31.802, +2016-04-09 20:00:00,,,28.8014 +2016-04-09 20:11:43,3588.0,31.6374, +2016-04-09 20:15:00,,,28.7988 +2016-04-09 20:26:37,3587.0,31.7461, +2016-04-09 20:30:00,,,28.7988 +2016-04-09 20:41:32,3586.0,31.7461, +2016-04-09 20:45:00,,,28.7988 +2016-04-09 20:56:27,3585.0,31.7489, +2016-04-09 21:00:00,,,28.8501 +2016-04-09 21:11:22,3582.0,31.8608, +2016-04-09 21:15:00,,,28.6482 +2016-04-09 21:26:17,3581.0,31.8048, +2016-04-09 21:30:00,,,28.8501 +2016-04-09 21:41:12,3581.0,31.7461, +2016-04-09 21:45:00,,,28.6967 +2016-04-09 21:56:07,3579.0,31.858, +2016-04-09 22:00:00,,,28.6916 +2016-04-09 22:11:02,3578.0,31.8608, +2016-04-09 22:15:00,,,28.6457 +2016-04-09 22:25:56,3577.0,31.802, +2016-04-09 22:30:00,,,28.6967 +2016-04-09 22:40:51,3576.0,31.802, +2016-04-09 22:45:00,,,28.6457 +2016-04-09 22:55:46,3574.0,31.7376, +2016-04-09 23:00:00,,,28.6457 +2016-04-09 23:10:41,3574.0,31.7404, +2016-04-09 23:15:00,,,28.6482 +2016-04-09 23:25:35,3573.0,31.7404, +2016-04-09 23:30:00,,,28.6992 +2016-04-09 23:40:30,3572.0,31.7963, +2016-04-09 23:45:00,,,28.6992 +2016-04-09 23:55:25,3571.0,31.7935, +2016-04-10 00:00:00,,,28.6967 +2016-04-10 00:10:19,3571.0,31.8524, +2016-04-10 00:15:00,,,28.6967 +2016-04-10 00:25:14,3571.0,31.9647, +2016-04-10 00:30:00,,,28.6457 +2016-04-10 00:40:08,3570.0,31.8524, +2016-04-10 00:45:00,,,28.7043 +2016-04-10 00:55:03,3570.0,31.7963, +2016-04-10 01:00:00,,,28.6967 +2016-04-10 01:10:00,3570.0,31.7404, +2016-04-10 01:15:00,,,28.6457 +2016-04-10 01:24:55,3569.0,31.7404, +2016-04-10 01:30:00,,,28.6457 +2016-04-10 01:39:49,3569.0,31.7963, +2016-04-10 01:45:00,,,28.6482 +2016-04-10 01:54:44,3568.0,31.7963, +2016-04-10 02:00:00,,,28.6457 +2016-04-10 02:09:38,3568.0,31.7907, +2016-04-10 02:15:00,,,28.6967 +2016-04-10 02:24:33,3567.0,31.7879, +2016-04-10 02:30:00,,,28.6457 +2016-04-10 02:39:27,3567.0,31.8439, +2016-04-10 02:45:00,,,28.6533 +2016-04-10 02:54:21,3566.0,31.732, +2016-04-10 03:00:00,,,28.6457 +2016-04-10 03:09:16,3566.0,31.6177, +2016-04-10 03:15:00,,,28.6533 +2016-04-10 03:24:10,3565.0,31.6734, +2016-04-10 03:30:00,,,28.6482 +2016-04-10 03:39:05,3565.0,31.7794, +2016-04-10 03:45:00,,,28.7068 +2016-04-10 03:53:59,3564.0,31.7794, +2016-04-10 04:00:00,,,28.6559 +2016-04-10 04:08:54,3564.0,31.7235, +2016-04-10 04:15:00,,,28.6967 +2016-04-10 04:23:48,3563.0,31.7794, +2016-04-10 04:30:00,,,28.7068 +2016-04-10 04:38:43,3562.0,31.7235, +2016-04-10 04:45:00,,,28.7094 +2016-04-10 04:53:37,3560.0,31.7822, +2016-04-10 05:00:00,,,28.6967 +2016-04-10 05:08:31,3559.0,31.8354, +2016-04-10 05:15:00,,,28.6533 +2016-04-10 05:23:26,3559.0,31.7235, +2016-04-10 05:30:00,,,28.7017 +2016-04-10 05:38:20,3558.0,31.7794, +2016-04-10 05:45:00,,,28.7043 +2016-04-10 05:53:14,3557.0,31.7263, +2016-04-10 06:00:00,,,28.6533 +2016-04-10 06:08:09,3556.0,31.7794, +2016-04-10 06:15:00,,,28.7043 +2016-04-10 06:23:03,3556.0,31.7179, +2016-04-10 06:30:00,,,28.7043 +2016-04-10 06:37:57,3555.0,31.7179, +2016-04-10 06:45:00,,,28.6533 +2016-04-10 06:52:51,3554.0,31.7151, +2016-04-10 07:00:00,,,28.6533 +2016-04-10 07:07:46,3554.0,31.7179, +2016-04-10 07:15:00,,,28.7043 +2016-04-10 07:22:40,3555.0,31.7179, +2016-04-10 07:30:00,,,28.7043 +2016-04-10 07:37:34,3556.0,31.7709, +2016-04-10 07:45:00,,,28.6533 +2016-04-10 07:52:29,3558.0,31.7151, +2016-04-10 08:00:00,,,28.6533 +2016-04-10 08:07:23,3560.0,31.7179, +2016-04-10 08:15:00,,,28.6533 +2016-04-10 08:22:17,3565.0,31.7709, +2016-04-10 08:30:00,,,28.6533 +2016-04-10 08:37:12,3568.0,31.8269, +2016-04-10 08:45:00,,,28.6533 +2016-04-10 08:52:06,3572.0,31.7179, +2016-04-10 09:00:00,,,28.6533 +2016-04-10 09:07:01,3575.0,31.8269, +2016-04-10 09:15:00,,,28.6025 +2016-04-10 09:21:56,3580.0,31.7597, +2016-04-10 09:30:00,,,28.6533 +2016-04-10 09:36:51,3583.0,31.7625, +2016-04-10 09:45:00,,,28.6457 +2016-04-10 09:51:46,3587.0,31.8269, +2016-04-10 10:00:00,,,28.6533 +2016-04-10 10:06:41,3589.0,31.7066, +2016-04-10 10:15:00,,,28.6533 +2016-04-10 10:21:35,3593.0,31.8184, +2016-04-10 10:30:00,,,28.6967 +2016-04-10 10:36:31,3595.0,31.8269, +2016-04-10 10:45:00,,,28.6533 +2016-04-10 10:51:26,3598.0,31.8297, +2016-04-10 11:00:00,,,28.6457 +2016-04-10 11:06:21,3598.0,31.9392, +2016-04-10 11:15:00,,,28.6457 +2016-04-10 11:21:16,3598.0,31.8269, +2016-04-10 11:30:00,,,28.6533 +2016-04-10 11:36:11,3599.0,31.883000000000006, +2016-04-10 11:45:00,,,28.6533 +2016-04-10 11:51:14,3599.0,31.7709, +2016-04-10 12:00:00,,,28.6457 +2016-04-10 12:06:10,3599.0,31.7709, +2016-04-10 12:15:00,,,28.6457 +2016-04-10 12:21:05,3599.0,31.8269, +2016-04-10 12:30:00,,,28.6457 +2016-04-10 12:36:00,3599.0,31.8354, +2016-04-10 12:45:00,,,28.6432 +2016-04-10 12:50:56,3599.0,31.7794, +2016-04-10 13:00:00,,,28.6457 +2016-04-10 13:05:51,3599.0,31.9449, +2016-04-10 13:15:00,,,28.6533 +2016-04-10 13:20:47,3599.0,31.7794, +2016-04-10 13:30:00,,,28.6025 +2016-04-10 13:35:42,3599.0,31.7794, +2016-04-10 13:45:00,,,28.6533 +2016-04-10 13:50:37,3599.0,31.8972, +2016-04-10 14:00:00,,,28.6457 +2016-04-10 14:05:33,3599.0,31.9, +2016-04-10 14:15:00,,,28.6457 +2016-04-10 14:20:28,3599.0,31.7879, +2016-04-10 14:30:00,,,28.6457 +2016-04-10 14:35:24,3599.0,31.7935, +2016-04-10 14:45:00,,,28.6533 +2016-04-10 14:50:19,3599.0,31.8495, +2016-04-10 15:00:00,,,28.6457 +2016-04-10 15:05:14,3599.0,31.8524, +2016-04-10 15:15:00,,,28.6457 +2016-04-10 15:20:10,3599.0,31.8524, +2016-04-10 15:30:00,,,28.6457 +2016-04-10 15:35:05,3599.0,31.7963, +2016-04-10 15:45:00,,,28.6457 +2016-04-10 15:50:01,3599.0,31.9085, +2016-04-10 16:00:00,,,28.6533 +2016-04-10 16:04:56,3599.0,31.9141, +2016-04-10 16:15:00,,,28.6457 +2016-04-10 16:19:51,3599.0,31.858, +2016-04-10 16:30:00,,,28.6457 +2016-04-10 16:34:47,3599.0,31.858, +2016-04-10 16:45:00,,,28.6457 +2016-04-10 16:49:42,3599.0,31.858, +2016-04-10 17:00:00,,,28.5949 +2016-04-10 17:04:37,3599.0,31.9704, +2016-04-10 17:15:00,,,28.5949 +2016-04-10 17:19:32,3598.0,31.802, +2016-04-10 17:30:00,,,28.6559 +2016-04-10 17:34:27,3599.0,31.802, +2016-04-10 17:45:00,,,28.6457 +2016-04-10 17:49:23,3599.0,31.802, +2016-04-10 18:00:00,,,28.6457 +2016-04-10 18:04:18,3598.0,31.9817, +2016-04-10 18:15:00,,,28.6457 +2016-04-10 18:19:13,3598.0,31.8133, +2016-04-10 18:30:00,,,28.7043 +2016-04-10 18:34:07,3598.0,31.9255, +2016-04-10 18:45:00,,,28.6457 +2016-04-10 18:49:02,3597.0,31.9789, +2016-04-10 19:00:00,,,28.6457 +2016-04-10 19:03:57,3595.0,31.8693, +2016-04-10 19:15:00,,,28.6457 +2016-04-10 19:18:52,3594.0,31.8133, +2016-04-10 19:30:00,,,28.6457 +2016-04-10 19:33:47,3592.0,31.8105, +2016-04-10 19:45:00,,,28.7043 +2016-04-10 19:48:42,3590.0,31.8693, +2016-04-10 20:00:00,,,28.6457 +2016-04-10 20:03:36,3588.0,31.8133, +2016-04-10 20:15:00,,,28.6457 +2016-04-10 20:18:31,3586.0,31.8693, +2016-04-10 20:30:00,,,28.6533 +2016-04-10 20:33:26,3585.0,31.8693, +2016-04-10 20:45:00,,,28.7043 +2016-04-10 20:48:20,3582.0,31.8665, +2016-04-10 21:00:00,,,28.7068 +2016-04-10 21:03:15,3581.0,31.8693, +2016-04-10 21:15:00,,,28.6533 +2016-04-10 21:18:10,3578.0,31.7573, +2016-04-10 21:30:00,,,28.6533 +2016-04-10 21:33:04,3576.0,31.8133, +2016-04-10 21:45:00,,,28.6533 +2016-04-10 21:47:59,3574.0,31.7573, +2016-04-10 22:00:00,,,28.7043 +2016-04-10 22:02:53,3573.0,31.9255, +2016-04-10 22:15:00,,,28.7554 +2016-04-10 22:17:48,3571.0,31.802, +2016-04-10 22:30:00,,,28.7043 +2016-04-10 22:32:42,3570.0,31.7461, +2016-04-10 22:45:00,,,28.7043 +2016-04-10 22:47:36,3568.0,31.8048, +2016-04-10 23:00:00,,,28.6559 +2016-04-10 23:02:31,3566.0,31.8048, +2016-04-10 23:15:00,,,28.6559 +2016-04-10 23:17:25,3565.0,31.8048, +2016-04-10 23:30:00,,,28.6559 +2016-04-10 23:32:19,3564.0,31.7489, +2016-04-10 23:45:00,,,28.7043 +2016-04-10 23:47:14,3563.0,31.8048, +2016-04-11 00:00:00,,,28.7554 +2016-04-11 00:02:08,3562.0,31.8608, +2016-04-11 00:15:00,,,28.6533 +2016-04-11 00:17:02,3560.0,31.8608, +2016-04-11 00:30:00,,,28.6533 +2016-04-11 00:31:57,3559.0,31.6931, +2016-04-11 00:45:00,,,28.6533 +2016-04-11 00:46:51,3558.0,31.8495, +2016-04-11 01:00:00,,,28.7068 +2016-04-11 01:01:52,3557.0,31.9676, +2016-04-11 01:15:00,,,28.7043 +2016-04-11 01:16:47,3556.0,31.7404, +2016-04-11 01:30:00,,,28.7043 +2016-04-11 01:31:41,3556.0,31.6846, +2016-04-11 01:45:00,,,28.7145 +2016-04-11 01:46:36,3554.0,31.7935, +2016-04-11 02:00:00,,,28.7145 +2016-04-11 02:01:30,3553.0,31.6818, +2016-04-11 02:15:00,,,28.6533 +2016-04-11 02:16:24,3552.0,31.6846, +2016-04-11 02:30:00,,,28.7119 +2016-04-11 02:31:19,3551.0,31.7963, +2016-04-11 02:45:00,,,28.7043 +2016-04-11 02:46:13,3551.0,31.7376, +2016-04-11 03:00:00,,,28.7145 +2016-04-11 03:01:07,3550.0,31.7879, +2016-04-11 03:15:00,,,28.7119 +2016-04-11 03:16:01,3549.0,31.7851, +2016-04-11 03:30:00,,,28.7145 +2016-04-11 03:30:55,3549.0,31.7348, +2016-04-11 03:45:00,,,28.7119 +2016-04-11 03:45:49,3547.0,31.7879, +2016-04-11 04:00:00,,,28.7119 +2016-04-11 04:00:43,3546.0,31.7235, +2016-04-11 04:15:00,,,28.661 +2016-04-11 04:15:38,3545.0,31.7822, +2016-04-11 04:30:00,,,28.6635 +2016-04-11 04:30:32,3545.0,31.7235, +2016-04-11 04:45:00,,,28.661 +2016-04-11 04:45:26,3545.0,31.7794, +2016-04-11 05:00:00,,,28.7119 +2016-04-11 05:00:21,3544.0,31.6706, +2016-04-11 05:15:00,,,28.7145 +2016-04-11 05:15:15,3543.0,31.7794, +2016-04-11 05:30:00,,,28.7119 +2016-04-11 05:30:09,3543.0,31.8915, +2016-04-11 05:45:00,,,28.7119 +2016-04-11 05:45:03,3542.0,31.6121, +2016-04-11 05:59:58,3542.0,31.7738, +2016-04-11 06:00:00,,,28.7119 +2016-04-11 06:14:52,3541.0,31.7151, +2016-04-11 06:15:00,,,28.7656 +2016-04-11 06:29:46,3541.0,31.7738, +2016-04-11 06:30:00,,,28.661 +2016-04-11 06:44:40,3541.0,31.7738, +2016-04-11 06:45:00,,,28.7119 +2016-04-11 06:59:35,3541.0,31.8269, +2016-04-11 07:00:00,,,28.7068 +2016-04-11 07:14:29,3541.0,31.7179, +2016-04-11 07:15:00,,,28.661 +2016-04-11 07:29:23,3542.0,31.7151, +2016-04-11 07:30:00,,,28.7145 +2016-04-11 07:44:17,3544.0,31.7095, +2016-04-11 07:45:00,,,28.7068 +2016-04-11 07:59:12,3545.0,31.5397, +2016-04-11 08:00:00,,,28.7145 +2016-04-11 08:14:06,3546.0,31.5953, +2016-04-11 08:15:00,,,28.7119 +2016-04-11 08:29:01,3549.0,31.7095, +2016-04-11 08:30:00,,,28.6635 +2016-04-11 08:43:55,3550.0,31.5313, +2016-04-11 08:45:00,,,28.7043 +2016-04-11 08:58:50,3552.0,31.701, +2016-04-11 09:00:00,,,28.7119 +2016-04-11 09:13:44,3554.0,31.5897, +2016-04-11 09:15:00,,,28.6533 +2016-04-11 09:28:39,3556.0,31.6982, +2016-04-11 09:30:00,,,28.7068 +2016-04-11 09:43:33,3558.0,31.5841, +2016-04-11 09:45:00,,,28.7119 +2016-04-11 09:58:28,3559.0,31.5313, +2016-04-11 10:00:00,,,28.7043 +2016-04-11 10:13:23,3562.0,31.4676, +2016-04-11 10:15:00,,,28.661 +2016-04-11 10:28:17,3564.0,31.5229, +2016-04-11 10:30:00,,,28.7043 +2016-04-11 10:43:12,3566.0,31.5229, +2016-04-11 10:45:00,,,28.6533 +2016-04-11 10:58:07,3567.0,31.5229, +2016-04-11 11:00:00,,,28.7068 +2016-04-11 11:13:01,3570.0,31.5784, +2016-04-11 11:15:00,,,28.6533 +2016-04-11 11:27:56,3571.0,31.5229, +2016-04-11 11:30:00,,,28.6559 +2016-04-11 11:42:51,3573.0,31.5812, +2016-04-11 11:45:00,,,28.6533 +2016-04-11 11:57:46,3574.0,31.4676, +2016-04-11 12:00:00,,,28.6533 +2016-04-11 12:12:41,3577.0,31.5784, +2016-04-11 12:15:00,,,28.6533 +2016-04-11 12:27:36,3578.0,31.5229, +2016-04-11 12:30:00,,,28.6533 +2016-04-11 12:42:30,3581.0,31.5229, +2016-04-11 12:45:00,,,28.7043 +2016-04-11 12:57:33,3582.0,31.6425, +2016-04-11 13:00:00,,,28.6533 +2016-04-11 13:12:28,3583.0,31.5869, +2016-04-11 13:15:00,,,28.6533 +2016-04-11 13:27:23,3585.0,31.5313, +2016-04-11 13:30:00,,,28.6533 +2016-04-11 13:42:17,3586.0,31.5869, +2016-04-11 13:45:00,,,28.6533 +2016-04-11 13:57:12,3587.0,31.5869, +2016-04-11 14:00:00,,,28.7043 +2016-04-11 14:12:07,3588.0,31.5841, +2016-04-11 14:15:00,,,28.6533 +2016-04-11 14:27:02,3588.0,31.5869, +2016-04-11 14:30:00,,,28.7043 +2016-04-11 14:41:56,3590.0,31.6481, +2016-04-11 14:45:00,,,28.6533 +2016-04-11 14:56:51,3591.0,31.6509, +2016-04-11 15:00:00,,,28.6457 +2016-04-11 15:11:46,3592.0,31.5953, +2016-04-11 15:15:00,,,28.6533 +2016-04-11 15:26:41,3592.0,31.5953, +2016-04-11 15:30:00,,,28.6533 +2016-04-11 15:41:36,3593.0,31.5953, +2016-04-11 15:45:00,,,28.6457 +2016-04-11 15:56:32,3594.0,31.5953, +2016-04-11 16:00:00,,,28.6482 +2016-04-11 16:11:27,3594.0,31.7151, +2016-04-11 16:15:00,,,28.6432 +2016-04-11 16:26:22,3595.0,31.6037, +2016-04-11 16:30:00,,,28.6967 +2016-04-11 16:41:17,3595.0,31.5481, +2016-04-11 16:45:00,,,28.6457 +2016-04-11 16:56:12,3595.0,31.6621, +2016-04-11 17:00:00,,,28.6457 +2016-04-11 17:11:14,3595.0,31.5481, +2016-04-11 17:15:00,,,28.6457 +2016-04-11 17:26:10,3595.0,31.5481, +2016-04-11 17:30:00,,,28.6457 +2016-04-11 17:41:05,3594.0,31.5481, +2016-04-11 17:45:00,,,28.6967 +2016-04-11 17:56:00,3593.0,31.6037, +2016-04-11 18:00:00,,,28.6482 +2016-04-11 18:10:55,3593.0,31.6593, +2016-04-11 18:15:00,,,28.6457 +2016-04-11 18:25:50,3593.0,31.6593, +2016-04-11 18:30:00,,,28.6457 +2016-04-11 18:40:45,3592.0,31.6121, +2016-04-11 18:45:00,,,28.6967 +2016-04-11 18:55:40,3592.0,31.7235, +2016-04-11 19:00:00,,,28.5923 +2016-04-11 19:10:35,3591.0,31.6678, +2016-04-11 19:15:00,,,28.5949 +2016-04-11 19:25:30,3590.0,31.5565, +2016-04-11 19:30:00,,,28.6457 +2016-04-11 19:40:25,3588.0,31.5565, +2016-04-11 19:45:00,,,28.6992 +2016-04-11 19:55:20,3588.0,31.6093, +2016-04-11 20:00:00,,,28.6457 +2016-04-11 20:10:15,3588.0,31.6678, +2016-04-11 20:15:00,,,28.6482 +2016-04-11 20:25:10,3588.0,31.5537, +2016-04-11 20:30:00,,,28.6457 +2016-04-11 20:40:05,3587.0,31.7235, +2016-04-11 20:45:00,,,28.6432 +2016-04-11 20:55:00,3587.0,31.6121, +2016-04-11 21:00:00,,,28.6457 +2016-04-11 21:09:55,3586.0,31.6678, +2016-04-11 21:15:00,,,28.5949 +2016-04-11 21:24:50,3586.0,31.6678, +2016-04-11 21:30:00,,,28.6457 +2016-04-11 21:39:45,3585.0,31.6678, +2016-04-11 21:45:00,,,28.6457 +2016-04-11 21:54:40,3584.0,31.6121, +2016-04-11 22:00:00,,,28.6457 +2016-04-11 22:09:34,3584.0,31.6121, +2016-04-11 22:15:00,,,28.6457 +2016-04-11 22:24:29,3583.0,31.5565, +2016-04-11 22:30:00,,,28.6967 +2016-04-11 22:39:24,3583.0,31.5011, +2016-04-11 22:45:00,,,28.6457 +2016-04-11 22:54:19,3583.0,31.6093, +2016-04-11 23:00:00,,,28.6482 +2016-04-11 23:09:14,3582.0,31.5565, +2016-04-11 23:15:00,,,28.6482 +2016-04-11 23:24:09,3581.0,31.6121, +2016-04-11 23:30:00,,,28.6967 +2016-04-11 23:39:03,3581.0,31.6121, +2016-04-11 23:45:00,,,28.6457 +2016-04-11 23:53:58,3581.0,31.6121, +2016-04-12 00:00:00,,,28.6992 +2016-04-12 00:08:53,3581.0,31.5565, +2016-04-12 00:15:00,,,28.6967 +2016-04-12 00:23:48,3579.0,31.6121, +2016-04-12 00:30:00,,,28.6457 +2016-04-12 00:38:43,3581.0,31.5565, +2016-04-12 00:45:00,,,28.6457 +2016-04-12 00:53:38,3579.0,31.6121, +2016-04-12 01:00:00,,,28.6457 +2016-04-12 01:08:33,3579.0,31.5565, +2016-04-12 01:15:00,,,28.6482 +2016-04-12 01:23:28,3579.0,31.5565, +2016-04-12 01:30:00,,,28.6967 +2016-04-12 01:38:23,3579.0,31.6121, +2016-04-12 01:45:00,,,28.6457 +2016-04-12 01:53:18,3578.0,31.6121, +2016-04-12 02:00:00,,,28.6457 +2016-04-12 02:08:13,3578.0,31.5565, +2016-04-12 02:15:00,,,28.6457 +2016-04-12 02:23:08,3578.0,31.6121, +2016-04-12 02:30:00,,,28.6457 +2016-04-12 02:38:03,3578.0,31.6121, +2016-04-12 02:45:00,,,28.6967 +2016-04-12 02:52:58,3578.0,31.6121, +2016-04-12 03:00:00,,,28.6457 +2016-04-12 03:07:53,3578.0,31.5565, +2016-04-12 03:15:00,,,28.6482 +2016-04-12 03:22:48,3578.0,31.6706, +2016-04-12 03:30:00,,,28.6457 +2016-04-12 03:37:50,3577.0,31.5565, +2016-04-12 03:45:00,,,28.6967 +2016-04-12 03:52:45,3577.0,31.7235, +2016-04-12 04:00:00,,,28.6457 +2016-04-12 04:07:40,3577.0,31.6121, +2016-04-12 04:15:00,,,28.6967 +2016-04-12 04:22:35,3577.0,31.5565, +2016-04-12 04:30:00,,,28.6533 +2016-04-12 04:37:30,3577.0,31.7235, +2016-04-12 04:45:00,,,28.6967 +2016-04-12 04:52:25,3577.0,31.6121, +2016-04-12 05:00:00,,,28.6457 +2016-04-12 05:07:20,3576.0,31.5565, +2016-04-12 05:15:00,,,28.6457 +2016-04-12 05:22:15,3576.0,31.6678, +2016-04-12 05:30:00,,,28.6457 +2016-04-12 05:37:09,3576.0,31.6706, +2016-04-12 05:45:00,,,28.6457 +2016-04-12 05:52:04,3576.0,31.6678, +2016-04-12 06:00:00,,,28.6533 +2016-04-12 06:06:59,3576.0,31.7794, +2016-04-12 06:15:00,,,28.6457 +2016-04-12 06:21:54,3575.0,31.5565, +2016-04-12 06:30:00,,,28.7043 +2016-04-12 06:36:49,3575.0,31.5565, +2016-04-12 06:45:00,,,28.7043 +2016-04-12 06:51:44,3575.0,31.6121, +2016-04-12 07:00:00,,,28.6457 +2016-04-12 07:06:39,3575.0,31.6121, +2016-04-12 07:15:00,,,28.6967 +2016-04-12 07:21:34,3576.0,31.6093, +2016-04-12 07:30:00,,,28.5949 +2016-04-12 07:36:29,3576.0,31.7794, +2016-04-12 07:45:00,,,28.7043 +2016-04-12 07:51:23,3577.0,31.6678, +2016-04-12 08:00:00,,,28.6967 +2016-04-12 08:06:18,3577.0,31.5565, +2016-04-12 08:15:00,,,28.6457 +2016-04-12 08:21:13,3578.0,31.5565, +2016-04-12 08:30:00,,,28.6457 +2016-04-12 08:36:08,3580.0,31.6678, +2016-04-12 08:45:00,,,28.7043 +2016-04-12 08:51:03,3582.0,31.6121, +2016-04-12 09:00:00,,,28.6508 +2016-04-12 09:05:58,3585.0,31.5011, +2016-04-12 09:15:00,,,28.6941 +2016-04-12 09:20:54,3588.0,31.6678, +2016-04-12 09:30:00,,,28.5949 +2016-04-12 09:35:49,3591.0,31.7235, +2016-04-12 09:45:00,,,28.5999 +2016-04-12 09:50:44,3595.0,31.7235, +2016-04-12 10:00:00,,,28.6457 +2016-04-12 10:05:40,3598.0,31.6678, +2016-04-12 10:15:00,,,28.6457 +2016-04-12 10:20:35,3598.0,31.6121, +2016-04-12 10:30:00,,,28.6533 +2016-04-12 10:35:31,3598.0,31.6649, +2016-04-12 10:45:00,,,28.6508 +2016-04-12 10:50:26,3599.0,31.6121, +2016-04-12 11:00:00,,,28.6533 +2016-04-12 11:05:22,3599.0,31.6177, +2016-04-12 11:15:00,,,28.6533 +2016-04-12 11:20:18,3599.0,31.6762, +2016-04-12 11:30:00,,,28.6533 +2016-04-12 11:35:13,3599.0,31.732, +2016-04-12 11:45:00,,,28.6025 +2016-04-12 11:50:09,3599.0,31.7404, +2016-04-12 12:00:00,,,28.6508 +2016-04-12 12:05:05,3599.0,31.7376, +2016-04-12 12:15:00,,,28.6559 +2016-04-12 12:20:01,3599.0,31.6261, +2016-04-12 12:30:00,,,28.6025 +2016-04-12 12:34:57,3599.0,31.6261, +2016-04-12 12:45:00,,,28.6457 +2016-04-12 12:49:52,3599.0,31.6818, +2016-04-12 13:00:00,,,28.6457 +2016-04-12 13:04:48,3599.0,31.7461, +2016-04-12 13:15:00,,,28.6533 +2016-04-12 13:19:44,3599.0,31.6345, +2016-04-12 13:30:00,,,28.6457 +2016-04-12 13:34:39,3599.0,31.7461, +2016-04-12 13:45:00,,,28.6025 +2016-04-12 13:49:35,3599.0,31.6345, +2016-04-12 14:00:00,,,28.6533 +2016-04-12 14:04:31,3599.0,31.7461, +2016-04-12 14:15:00,,,28.6508 +2016-04-12 14:19:27,3599.0,31.7545, +2016-04-12 14:30:00,,,28.6025 +2016-04-12 14:34:23,3599.0,31.643, +2016-04-12 14:45:00,,,28.6508 +2016-04-12 14:49:19,3599.0,31.763, +2016-04-12 15:00:00,,,28.6533 +2016-04-12 15:04:14,3599.0,31.6514, +2016-04-12 15:15:00,,,28.6025 +2016-04-12 15:19:10,3599.0,31.7602, +2016-04-12 15:30:00,,,28.5999 +2016-04-12 15:34:06,3599.0,31.763, +2016-04-12 15:45:00,,,28.5517 +2016-04-12 15:49:02,3599.0,31.7686, +2016-04-12 16:00:00,,,28.6025 +2016-04-12 16:03:58,3599.0,31.6598, +2016-04-12 16:15:00,,,28.6508 +2016-04-12 16:18:54,3599.0,31.5487, +2016-04-12 16:30:00,,,28.6533 +2016-04-12 16:33:50,3599.0,31.657, +2016-04-12 16:45:00,,,28.6533 +2016-04-12 16:48:45,3599.0,31.8359, +2016-04-12 17:00:00,,,28.6025 +2016-04-12 17:03:41,3599.0,31.6655, +2016-04-12 17:15:00,,,28.5999 +2016-04-12 17:18:37,3599.0,31.7799, +2016-04-12 17:30:00,,,28.6025 +2016-04-12 17:33:32,3599.0,31.6767, +2016-04-12 17:45:00,,,28.6533 +2016-04-12 17:48:28,3599.0,31.7855, +2016-04-12 18:00:00,,,28.6508 +2016-04-12 18:03:24,3599.0,31.7884, +2016-04-12 18:15:00,,,28.6533 +2016-04-12 18:18:19,3599.0,31.7325, +2016-04-12 18:30:00,,,28.6533 +2016-04-12 18:33:15,3599.0,31.7325, +2016-04-12 18:45:00,,,28.6533 +2016-04-12 18:48:10,3599.0,31.7325, +2016-04-12 19:00:00,,,28.6533 +2016-04-12 19:03:05,3599.0,31.7884, +2016-04-12 19:15:00,,,28.6533 +2016-04-12 19:18:01,3599.0,31.7325, +2016-04-12 19:30:00,,,28.661 +2016-04-12 19:32:56,3599.0,31.7968, +2016-04-12 19:45:00,,,28.661 +2016-04-12 19:47:51,3599.0,31.7325, +2016-04-12 20:00:00,,,28.661 +2016-04-12 20:02:46,3598.0,31.7409, +2016-04-12 20:15:00,,,28.661 +2016-04-12 20:17:41,3598.0,31.6851, +2016-04-12 20:30:00,,,28.661 +2016-04-12 20:32:36,3598.0,31.7409, +2016-04-12 20:45:00,,,28.661 +2016-04-12 20:47:31,3597.0,31.7968, +2016-04-12 21:00:00,,,28.661 +2016-04-12 21:02:26,3595.0,31.6851, +2016-04-12 21:15:00,,,28.6101 +2016-04-12 21:17:21,3595.0,31.7409, +2016-04-12 21:30:00,,,28.661 +2016-04-12 21:32:16,3594.0,31.7409, +2016-04-12 21:45:00,,,28.7119 +2016-04-12 21:47:11,3592.0,31.7409, +2016-04-12 22:00:00,,,28.661 +2016-04-12 22:02:06,3592.0,31.6851, +2016-04-12 22:15:00,,,28.7119 +2016-04-12 22:17:01,3592.0,31.7968, +2016-04-12 22:30:00,,,28.661 +2016-04-12 22:31:56,3590.0,31.7968, +2016-04-12 22:45:00,,,28.661 +2016-04-12 22:46:51,3589.0,31.7968, +2016-04-12 23:00:00,,,28.661 +2016-04-12 23:01:45,3588.0,31.7968, +2016-04-12 23:15:00,,,28.661 +2016-04-12 23:16:40,3588.0,31.7968, +2016-04-12 23:30:00,,,28.661 +2016-04-12 23:31:35,3588.0,31.6851, +2016-04-12 23:45:00,,,28.7119 +2016-04-12 23:46:30,3587.0,31.7409, +2016-04-13 00:00:00,,, +2016-04-13 00:15:00,,, +2016-04-13 00:30:00,,, +2016-04-13 00:45:00,,, +2016-04-13 01:00:00,,,28.7119 +2016-04-13 01:01:03,3582.0,31.7884, +2016-04-13 01:15:00,,,28.661 +2016-04-13 01:15:58,3581.0,31.6767, +2016-04-13 01:30:00,,,28.6686 +2016-04-13 01:30:53,3580.0,31.6767, +2016-04-13 01:45:00,,,28.6686 +2016-04-13 01:45:47,3579.0,31.7884, +2016-04-13 02:00:00,,,28.6686 +2016-04-13 02:00:42,3578.0,31.7325, +2016-04-13 02:15:00,,,28.6686 +2016-04-13 02:15:37,3577.0,31.7297, +2016-04-13 02:30:00,,,28.6711 +2016-04-13 02:30:32,3577.0,31.7353, +2016-04-13 02:45:00,,,28.6686 +2016-04-13 02:45:26,3576.0,31.7325, +2016-04-13 03:00:00,,,28.6686 +2016-04-13 03:00:21,3576.0,31.6767, +2016-04-13 03:15:00,,,28.6686 +2016-04-13 03:15:16,3576.0,31.6767, +2016-04-13 03:30:00,,,28.6711 +2016-04-13 03:30:10,3576.0,31.7884, +2016-04-13 03:45:00,,,28.7196 +2016-04-13 03:45:05,3575.0,31.6126, +2016-04-13 04:00:00,3575.0,31.7799,28.6686 +2016-04-13 04:14:54,3574.0,31.7799, +2016-04-13 04:15:00,,,28.6711 +2016-04-13 04:29:49,3574.0,31.7827, +2016-04-13 04:30:00,,,28.6686 +2016-04-13 04:44:43,3574.0,31.6683, +2016-04-13 04:45:00,,,28.7196 +2016-04-13 04:59:38,3574.0,31.6683, +2016-04-13 05:00:00,,,28.6686 +2016-04-13 05:14:33,3574.0,31.7799, +2016-04-13 05:15:00,,,28.6686 +2016-04-13 05:29:27,3574.0,31.7714, +2016-04-13 05:30:00,,,28.6686 +2016-04-13 05:44:22,3573.0,31.6598, +2016-04-13 05:45:00,,,28.7196 +2016-04-13 05:59:16,3572.0,31.7156, +2016-04-13 06:00:00,,,28.6686 +2016-04-13 06:14:11,3572.0,31.6042, +2016-04-13 06:15:00,,,28.6686 +2016-04-13 06:29:06,3572.0,31.657, +2016-04-13 06:30:00,,,28.6686 +2016-04-13 06:44:00,3572.0,31.7714, +2016-04-13 06:45:00,,,28.6711 +2016-04-13 06:58:55,3572.0,31.7686, +2016-04-13 07:00:00,,,28.7221 +2016-04-13 07:13:50,3573.0,31.7128, +2016-04-13 07:15:00,,,28.7196 +2016-04-13 07:28:44,3574.0,31.6598, +2016-04-13 07:30:00,,,28.6686 +2016-04-13 07:43:39,3574.0,31.6598, +2016-04-13 07:45:00,,,28.6686 +2016-04-13 07:58:34,3576.0,31.6598, +2016-04-13 08:00:00,,,28.7196 +2016-04-13 08:13:29,3578.0,31.6598, +2016-04-13 08:15:00,,,28.6686 +2016-04-13 08:28:24,3581.0,31.657, +2016-04-13 08:30:00,,,28.7196 +2016-04-13 08:43:18,3583.0,31.6542, +2016-04-13 08:45:00,,,28.6686 +2016-04-13 08:58:13,3585.0,31.7099, +2016-04-13 09:00:00,,,28.6686 +2016-04-13 09:13:08,3587.0,31.763, +2016-04-13 09:15:00,,,28.6686 +2016-04-13 09:28:03,3589.0,31.763, +2016-04-13 09:30:00,,,28.6686 +2016-04-13 09:42:58,3592.0,31.763, +2016-04-13 09:45:00,,,28.6686 +2016-04-13 09:57:54,3594.0,31.6514, +2016-04-13 10:00:00,,,28.6686 +2016-04-13 10:12:49,3597.0,31.6514, +2016-04-13 10:15:00,,,28.6686 +2016-04-13 10:27:44,3598.0,31.763, +2016-04-13 10:30:00,,,28.6152 +2016-04-13 10:42:40,3598.0,31.7156, +2016-04-13 10:45:00,,,28.6686 +2016-04-13 10:57:35,3599.0,31.8189, +2016-04-13 11:00:00,,,28.6686 +2016-04-13 11:12:31,3599.0,31.657, +2016-04-13 11:15:00,,,28.6686 +2016-04-13 11:27:26,3599.0,31.8274, +2016-04-13 11:30:00,,,28.6686 +2016-04-13 11:42:22,3599.0,31.7714, +2016-04-13 11:45:00,,,28.6686 +2016-04-13 11:57:17,3599.0,31.7156, +2016-04-13 12:00:00,,,28.6686 +2016-04-13 12:12:13,3599.0,31.6014, +2016-04-13 12:15:00,,,28.6686 +2016-04-13 12:27:08,3599.0,31.7686, +2016-04-13 12:30:00,,,28.6686 +2016-04-13 12:42:04,3599.0,31.7686, +2016-04-13 12:45:00,,,28.6737 +2016-04-13 12:56:59,3599.0,31.657, +2016-04-13 13:00:00,,,28.6737 +2016-04-13 13:11:54,3599.0,31.7799, +2016-04-13 13:15:00,,,28.6711 +2016-04-13 13:26:49,3599.0,31.7799, +2016-04-13 13:30:00,,,28.6152 +2016-04-13 13:41:45,3599.0,31.8359, +2016-04-13 13:45:00,,,28.6737 +2016-04-13 13:56:40,3599.0,31.7799, +2016-04-13 14:00:00,,,28.6686 +2016-04-13 14:11:36,3599.0,31.7884, +2016-04-13 14:15:00,,,28.6686 +2016-04-13 14:26:31,3599.0,31.7325, +2016-04-13 14:30:00,,,28.6737 +2016-04-13 14:41:26,3599.0,31.7884, +2016-04-13 14:45:00,,,28.6228 +2016-04-13 14:56:22,3599.0,31.7325, +2016-04-13 15:00:00,,,28.6686 +2016-04-13 15:11:17,3599.0,31.7884, +2016-04-13 15:15:00,,,28.6177 +2016-04-13 15:26:12,3599.0,31.7884, +2016-04-13 15:30:00,,,28.6177 +2016-04-13 15:41:07,3599.0,31.8444, +2016-04-13 15:45:00,,,28.6737 +2016-04-13 15:56:03,3599.0,31.7968, +2016-04-13 16:00:00,,,28.6177 +2016-04-13 16:10:58,3599.0,31.7968, +2016-04-13 16:15:00,,,28.6737 +2016-04-13 16:25:53,3599.0,31.6851, +2016-04-13 16:30:00,,,28.6686 +2016-04-13 16:40:48,3599.0,31.7968, +2016-04-13 16:45:00,,,28.6737 +2016-04-13 16:55:43,3599.0,31.7466, +2016-04-13 17:00:00,,,28.6737 +2016-04-13 17:10:39,3599.0,31.8025, +2016-04-13 17:15:00,,,28.6737 +2016-04-13 17:25:34,3599.0,31.8053, +2016-04-13 17:30:00,,,28.6737 +2016-04-13 17:40:29,3599.0,31.7997, +2016-04-13 17:45:00,,,28.6686 +2016-04-13 17:55:24,3599.0,31.8053, +2016-04-13 18:00:00,,,28.6737 +2016-04-13 18:10:19,3599.0,31.6936, +2016-04-13 18:15:00,,,28.6737 +2016-04-13 18:25:15,3599.0,31.7466, +2016-04-13 18:30:00,,,28.6762 +2016-04-13 18:40:10,3599.0,31.8613, +2016-04-13 18:45:00,,,28.6737 +2016-04-13 18:55:05,3598.0,31.6936, +2016-04-13 19:00:00,,,28.6762 +2016-04-13 19:10:00,3598.0,31.8585, +2016-04-13 19:15:00,,,28.6737 +2016-04-13 19:24:55,3598.0,31.8053, +2016-04-13 19:30:00,,,28.6762 +2016-04-13 19:39:50,3598.0,31.8053, +2016-04-13 19:45:00,,,28.6228 +2016-04-13 19:54:45,3597.0,31.8053, +2016-04-13 20:00:00,,,28.6737 +2016-04-13 20:09:40,3596.0,31.8053, +2016-04-13 20:15:00,,,28.6762 +2016-04-13 20:24:35,3595.0,31.7494, +2016-04-13 20:30:00,,,28.6762 +2016-04-13 20:39:30,3594.0,31.7494, +2016-04-13 20:45:00,,,28.6788 +2016-04-13 20:54:32,3593.0,31.8053, +2016-04-13 21:00:00,,,28.6762 +2016-04-13 21:09:27,3593.0,31.8053, +2016-04-13 21:15:00,,,28.6737 +2016-04-13 21:24:22,3592.0,31.7494, +2016-04-13 21:30:00,,,28.6762 +2016-04-13 21:39:17,3591.0,31.8613, +2016-04-13 21:45:00,,,28.6762 +2016-04-13 21:54:12,3590.0,31.6936, +2016-04-13 22:00:00,,,28.6839 +2016-04-13 22:09:06,3589.0,31.6936, +2016-04-13 22:15:00,,,28.6839 +2016-04-13 22:24:01,3588.0,31.9146, +2016-04-13 22:30:00,,,28.6737 +2016-04-13 22:38:56,3588.0,31.8053, +2016-04-13 22:45:00,,,28.6813 +2016-04-13 22:53:51,3588.0,31.6936, +2016-04-13 23:00:00,,,28.6813 +2016-04-13 23:08:46,3588.0,31.6936, +2016-04-13 23:15:00,,,28.6813 +2016-04-13 23:23:41,3588.0,31.8053, +2016-04-13 23:30:00,,,28.6813 +2016-04-13 23:38:35,3588.0,31.8613, +2016-04-13 23:45:00,,,28.6762 +2016-04-13 23:53:30,3588.0,31.9146, +2016-04-14 00:00:00,,,28.6813 +2016-04-14 00:08:25,3587.0,31.7494, +2016-04-14 00:15:00,,,28.7323 +2016-04-14 00:23:20,3587.0,31.8025, +2016-04-14 00:30:00,,,28.7323 +2016-04-14 00:38:15,3586.0,31.8025, +2016-04-14 00:45:00,,,28.6813 +2016-04-14 00:53:09,3586.0,31.8053, +2016-04-14 01:00:00,,,28.6304 +2016-04-14 01:08:04,3585.0,31.8053, +2016-04-14 01:15:00,,,28.6813 +2016-04-14 01:22:59,3585.0,31.6936, +2016-04-14 01:30:00,,,28.6839 +2016-04-14 01:37:53,3585.0,31.8053, +2016-04-14 01:45:00,,,28.6813 +2016-04-14 01:52:48,3584.0,31.7437, +2016-04-14 02:00:00,,,28.6813 +2016-04-14 02:07:43,3583.0,31.6294, +2016-04-14 02:15:00,,,28.6813 +2016-04-14 02:22:37,3582.0,31.7968, +2016-04-14 02:30:00,,,28.6813 +2016-04-14 02:37:32,3581.0,31.7968, +2016-04-14 02:45:00,,,28.6839 +2016-04-14 02:52:26,3580.0,31.8528, +2016-04-14 03:00:00,,,28.6813 +2016-04-14 03:07:21,3579.0,31.7968, +2016-04-14 03:15:00,,,28.6839 +2016-04-14 03:22:15,3578.0,31.7968, +2016-04-14 03:30:00,,,28.7323 +2016-04-14 03:37:10,3577.0,31.7968, +2016-04-14 03:45:00,,,28.6813 +2016-04-14 03:52:05,3576.0,31.7884, +2016-04-14 04:00:00,,,28.6813 +2016-04-14 04:06:59,3575.0,31.8444, +2016-04-14 04:15:00,,,28.6839 +2016-04-14 04:21:54,3574.0,31.6767, +2016-04-14 04:30:00,,,28.6839 +2016-04-14 04:36:48,3574.0,31.8444, +2016-04-14 04:45:00,,,28.6839 +2016-04-14 04:51:43,3574.0,31.8444, +2016-04-14 05:00:00,,,28.7374 +2016-04-14 05:06:37,3574.0,31.7325, +2016-04-14 05:15:00,,,28.6355 +2016-04-14 05:21:32,3574.0,31.621, +2016-04-14 05:30:00,,,28.6864 +2016-04-14 05:36:26,3574.0,31.6767, +2016-04-14 05:45:00,,,28.6813 +2016-04-14 05:51:21,3574.0,31.7325, +2016-04-14 06:00:00,,,28.6839 +2016-04-14 06:06:15,3574.0,31.6767, +2016-04-14 06:15:00,,,28.6839 +2016-04-14 06:21:10,3574.0,31.6767, +2016-04-14 06:30:00,,,28.6813 +2016-04-14 06:36:05,3574.0,31.7884, +2016-04-14 06:45:00,,,28.6813 +2016-04-14 06:50:59,3574.0,31.7884, +2016-04-14 07:00:00,,,28.6813 +2016-04-14 07:05:54,3574.0,31.6767, +2016-04-14 07:15:00,,,28.6839 +2016-04-14 07:20:48,3575.0,31.7325, +2016-04-14 07:30:00,,,28.6839 +2016-04-14 07:35:43,3575.0,31.6683, +2016-04-14 07:45:00,,,28.6839 +2016-04-14 07:50:37,3576.0,31.7799, +2016-04-14 08:00:00,,,28.7349 +2016-04-14 08:05:32,3576.0,31.7799, +2016-04-14 08:15:00,,,28.6813 +2016-04-14 08:20:26,3576.0,31.7799, +2016-04-14 08:30:00,,,28.6839 +2016-04-14 08:35:21,3576.0,31.7799, +2016-04-14 08:45:00,,,28.7349 +2016-04-14 08:50:16,3577.0,31.7799, +2016-04-14 09:00:00,,,28.6839 +2016-04-14 09:05:10,3577.0,31.7799, +2016-04-14 09:15:00,,,28.7349 +2016-04-14 09:20:05,3577.0,31.8359, +2016-04-14 09:30:00,,,28.6813 +2016-04-14 09:34:59,3578.0,31.6683, +2016-04-14 09:45:00,,,28.6813 +2016-04-14 09:49:54,3579.0,31.6598, +2016-04-14 10:00:00,,,28.6839 +2016-04-14 10:04:49,3579.0,31.6126, +2016-04-14 10:15:00,,,28.6813 +2016-04-14 10:19:43,3580.0,31.6683, +2016-04-14 10:30:00,,,28.6839 +2016-04-14 10:34:38,3581.0,31.8359, +2016-04-14 10:45:00,,,28.7323 +2016-04-14 10:49:33,3581.0,31.7714, +2016-04-14 11:00:00,,,28.6915 +2016-04-14 11:04:27,3581.0,31.7799, +2016-04-14 11:15:00,,,28.6839 +2016-04-14 11:19:22,3581.0,31.6042, +2016-04-14 11:30:00,,,28.6813 +2016-04-14 11:34:17,3581.0,31.7799, +2016-04-14 11:45:00,,,28.6813 +2016-04-14 11:49:12,3582.0,31.7714, +2016-04-14 12:00:00,,,28.6839 +2016-04-14 12:04:06,3582.0,31.6683, +2016-04-14 12:15:00,,,28.6813 +2016-04-14 12:19:01,3583.0,31.7686, +2016-04-14 12:30:00,,,28.6813 +2016-04-14 12:33:56,3585.0,31.7799, +2016-04-14 12:45:00,,,28.7323 +2016-04-14 12:48:50,3586.0,31.7714, +2016-04-14 13:00:00,,,28.6813 +2016-04-14 13:03:52,3586.0,31.7799, +2016-04-14 13:15:00,,,28.6813 +2016-04-14 13:18:47,3588.0,31.724, +2016-04-14 13:30:00,,,28.6839 +2016-04-14 13:33:42,3589.0,31.7799, +2016-04-14 13:45:00,,,28.6839 +2016-04-14 13:48:37,3592.0,31.7799, +2016-04-14 14:00:00,,,28.6329 +2016-04-14 14:03:32,3593.0,31.724, +2016-04-14 14:15:00,,,28.6813 +2016-04-14 14:18:27,3594.0,31.7799, +2016-04-14 14:30:00,,,28.6813 +2016-04-14 14:33:29,3595.0,31.6683, +2016-04-14 14:45:00,,,28.6839 +2016-04-14 14:48:24,3595.0,31.5571, +2016-04-14 15:00:00,,,28.6813 +2016-04-14 15:03:20,3596.0,31.724, +2016-04-14 15:15:00,,,28.6839 +2016-04-14 15:18:15,3597.0,31.724, +2016-04-14 15:30:00,,,28.6813 +2016-04-14 15:33:10,3597.0,31.7297, +2016-04-14 15:45:00,,,28.6813 +2016-04-14 15:48:05,3598.0,31.8444, +2016-04-14 16:00:00,,,28.6839 +2016-04-14 16:03:00,3598.0,31.6767, +2016-04-14 16:15:00,,,28.6813 +2016-04-14 16:17:55,3598.0,31.6739, +2016-04-14 16:30:00,,,28.6813 +2016-04-14 16:32:50,3598.0,31.7297, +2016-04-14 16:45:00,,,28.6813 +2016-04-14 16:47:46,3598.0,31.7884, +2016-04-14 17:00:00,,,28.689 +2016-04-14 17:02:41,3598.0,31.7325, +2016-04-14 17:15:00,,,28.6813 +2016-04-14 17:17:36,3598.0,31.8415, +2016-04-14 17:30:00,,,28.5289 +2016-04-14 17:32:31,3598.0,31.7353, +2016-04-14 17:45:00,,,28.5314 +2016-04-14 17:47:26,3598.0,31.7884, +2016-04-14 18:00:00,,,28.6304 +2016-04-14 18:02:22,3598.0,31.7325, +2016-04-14 18:15:00,,,28.5365 +2016-04-14 18:17:16,3598.0,31.7297, +2016-04-14 18:30:00,,,28.6813 +2016-04-14 18:32:11,3598.0,31.6767, +2016-04-14 18:45:00,,,28.5289 +2016-04-14 18:47:06,3598.0,31.7968, +2016-04-14 19:00:00,,,28.5289 +2016-04-14 19:02:01,3597.0,31.7968, +2016-04-14 19:15:00,,,28.5289 +2016-04-14 19:16:56,3595.0,31.6851, +2016-04-14 19:30:00,,,28.6813 +2016-04-14 19:31:51,3595.0,31.6294, +2016-04-14 19:45:00,,,28.5796 +2016-04-14 19:46:46,3593.0,31.7968, +2016-04-14 20:00:00,,,28.5314 +2016-04-14 20:01:41,3591.0,31.7968, +2016-04-14 20:15:00,,,28.5314 +2016-04-14 20:16:36,3589.0,31.7381, +2016-04-14 20:30:00,,,28.5365 +2016-04-14 20:31:31,3588.0,31.7409, +2016-04-14 20:45:00,,,28.5289 +2016-04-14 20:46:26,3586.0,31.7968, +2016-04-14 21:00:00,,,28.539 +2016-04-14 21:01:20,3584.0,31.7968, +2016-04-14 21:15:00,,,28.5897 +2016-04-14 21:16:15,3582.0,31.7884, +2016-04-14 21:30:00,,,28.539 +2016-04-14 21:31:10,3580.0,31.7968, +2016-04-14 21:45:00,,,28.5897 +2016-04-14 21:46:05,3578.0,31.8557, +2016-04-14 22:00:00,,,28.539 +2016-04-14 22:00:59,3577.0,31.7884, +2016-04-14 22:15:00,,,28.5365 +2016-04-14 22:15:54,3575.0,31.8444, +2016-04-14 22:30:00,,,28.5289 +2016-04-14 22:30:49,3574.0,31.7884, +2016-04-14 22:45:00,,,28.539 +2016-04-14 22:45:43,3573.0,31.7884, +2016-04-14 23:00:00,,,28.5365 +2016-04-14 23:00:38,3572.0,31.7884, +2016-04-14 23:15:00,,,28.5897 +2016-04-14 23:15:32,3571.0,31.7325, +2016-04-14 23:30:00,,,28.638 +2016-04-14 23:30:27,3570.0,31.6767, +2016-04-14 23:45:00,,,28.5872 +2016-04-14 23:45:22,3569.0,31.621, +2016-04-15 00:00:00,,,28.5365 +2016-04-15 00:00:16,3568.0,31.8444, +2016-04-15 00:15:00,,,28.5365 +2016-04-15 00:15:11,3567.0,31.6767, +2016-04-15 00:30:00,,,28.4883 +2016-04-15 00:30:05,3566.0,31.8444, +2016-04-15 00:45:00,3566.0,31.7799,28.539 +2016-04-15 00:59:54,3566.0,31.6711, +2016-04-15 01:00:00,,,28.5872 +2016-04-15 01:14:49,3565.0,31.7799, +2016-04-15 01:15:00,,,28.5897 +2016-04-15 01:29:43,3565.0,31.724, +2016-04-15 01:30:00,,,28.539 +2016-04-15 01:44:38,3564.0,31.6126, +2016-04-15 01:45:00,,,28.5365 +2016-04-15 01:59:32,3564.0,31.7714, +2016-04-15 02:00:00,,,28.5897 +2016-04-15 02:14:27,3564.0,31.7714, +2016-04-15 02:15:00,,,28.5365 +2016-04-15 02:29:21,3564.0,31.7714, +2016-04-15 02:30:00,,,28.5897 +2016-04-15 02:44:16,3564.0,31.6598, +2016-04-15 02:45:00,,,28.539 +2016-04-15 02:59:10,3564.0,31.6598, +2016-04-15 03:00:00,,,28.539 +2016-04-15 03:14:04,3563.0,31.6598, +2016-04-15 03:15:00,,,28.539 +2016-04-15 03:28:59,3563.0,31.6598, +2016-04-15 03:30:00,,,28.5897 +2016-04-15 03:43:53,3564.0,31.7714, +2016-04-15 03:45:00,,,28.638 +2016-04-15 03:58:48,3564.0,31.6598, +2016-04-15 04:00:00,,,28.5365 +2016-04-15 04:13:42,3564.0,31.7184, +2016-04-15 04:15:00,,,28.539 +2016-04-15 04:28:37,3564.0,31.5958, +2016-04-15 04:30:00,,,28.5872 +2016-04-15 04:43:31,3564.0,31.7156, +2016-04-15 04:45:00,,,28.539 +2016-04-15 04:58:26,3565.0,31.7099, +2016-04-15 05:00:00,,,28.5872 +2016-04-15 05:13:20,3566.0,31.8217, +2016-04-15 05:15:00,,,28.5365 +2016-04-15 05:28:15,3566.0,31.7658, +2016-04-15 05:30:00,,,28.5365 +2016-04-15 05:43:09,3566.0,31.6514, +2016-04-15 05:45:00,,,28.539 +2016-04-15 05:58:03,3566.0,31.7099, +2016-04-15 06:00:00,,,28.5872 +2016-04-15 06:13:06,3566.0,31.7658, +2016-04-15 06:15:00,,,28.539 +2016-04-15 06:28:00,3567.0,31.7099, +2016-04-15 06:30:00,,,28.5289 +2016-04-15 06:42:55,3567.0,31.7071, +2016-04-15 06:45:00,,,28.5872 +2016-04-15 06:57:49,3568.0,31.5958, +2016-04-15 07:00:00,,,28.5365 +2016-04-15 07:12:44,3569.0,31.8217, +2016-04-15 07:15:00,,,28.5897 +2016-04-15 07:27:39,3570.0,31.7658, +2016-04-15 07:30:00,,,28.5365 +2016-04-15 07:42:33,3571.0,31.7658, +2016-04-15 07:45:00,,,28.5365 +2016-04-15 07:57:28,3572.0,31.7658, +2016-04-15 08:00:00,,,28.5365 +2016-04-15 08:12:22,3573.0,31.6542, +2016-04-15 08:15:00,,,28.5365 +2016-04-15 08:27:17,3574.0,31.763, +2016-04-15 08:30:00,,,28.5872 +2016-04-15 08:42:11,3576.0,31.7545, +2016-04-15 08:45:00,,,28.5365 +2016-04-15 08:57:06,3577.0,31.8133, +2016-04-15 09:00:00,,,28.539 +2016-04-15 09:12:01,3577.0,31.7545, +2016-04-15 09:15:00,,,28.539 +2016-04-15 09:26:55,3577.0,31.7573, +2016-04-15 09:30:00,,,28.5897 +2016-04-15 09:41:50,3577.0,31.6458, +2016-04-15 09:45:00,,,28.5365 +2016-04-15 09:56:44,3578.0,31.7573, +2016-04-15 10:00:00,,,28.539 +2016-04-15 10:11:39,3578.0,31.7573, +2016-04-15 10:15:00,,,28.539 +2016-04-15 10:26:33,3578.0,31.6987, +2016-04-15 10:30:00,,,28.539 +2016-04-15 10:41:28,3578.0,31.7128, +2016-04-15 10:45:00,,,28.5365 +2016-04-15 10:56:23,3578.0,31.6542, +2016-04-15 11:00:00,,,28.539 +2016-04-15 11:11:17,3578.0,31.6458, +2016-04-15 11:15:00,,,28.6329 +2016-04-15 11:26:12,3579.0,31.7573, +2016-04-15 11:30:00,,,28.5897 +2016-04-15 11:41:07,3580.0,31.6458, +2016-04-15 11:45:00,,,28.5897 +2016-04-15 11:56:01,3581.0,31.7099, +2016-04-15 12:00:00,,,28.5314 +2016-04-15 12:10:56,3581.0,31.763, +2016-04-15 12:15:00,,,28.5289 +2016-04-15 12:25:51,3581.0,31.9255, +2016-04-15 12:30:00,,,28.74 +2016-04-15 12:40:46,3582.0,31.934, +2016-04-15 12:45:00,,,28.6915 +2016-04-15 12:55:41,3583.0,31.8778, +2016-04-15 13:00:00,,,28.6813 +2016-04-15 13:10:35,3584.0,31.7573, +2016-04-15 13:15:00,,,28.6813 +2016-04-15 13:25:30,3584.0,31.8217, +2016-04-15 13:30:00,,,28.6915 +2016-04-15 13:40:25,3586.0,31.9903, +2016-04-15 13:45:00,,,28.7349 +2016-04-15 13:55:20,3587.0,31.875, +2016-04-15 14:00:00,,,28.6813 +2016-04-15 14:10:15,3588.0,31.8722, +2016-04-15 14:15:00,,,28.6839 +2016-04-15 14:25:11,3591.0,31.934, +2016-04-15 14:30:00,,,28.6813 +2016-04-15 14:40:06,3592.0,31.8778, +2016-04-15 14:45:00,,,28.6813 +2016-04-15 14:55:01,3594.0,31.8217, +2016-04-15 15:00:00,,,28.6304 +2016-04-15 15:09:56,3595.0,31.8778, +2016-04-15 15:15:00,,,28.6813 +2016-04-15 15:24:51,3596.0,31.9874, +2016-04-15 15:30:00,,,28.6813 +2016-04-15 15:39:46,3597.0,31.8217, +2016-04-15 15:45:00,,,28.6813 +2016-04-15 15:54:41,3597.0,31.8806, +2016-04-15 16:00:00,,,28.6813 +2016-04-15 16:09:36,3598.0,31.8246, +2016-04-15 16:15:00,,,28.6813 +2016-04-15 16:24:32,3597.0,31.8835, +2016-04-15 16:30:00,,,28.6813 +2016-04-15 16:39:27,3597.0,31.8835, +2016-04-15 16:45:00,,,28.6839 +2016-04-15 16:54:22,3597.0,31.8835, +2016-04-15 17:00:00,,,28.6813 +2016-04-15 17:09:16,3597.0,31.8835, +2016-04-15 17:15:00,,,28.6813 +2016-04-15 17:24:12,3597.0,31.8274, +2016-04-15 17:30:00,,,28.7323 +2016-04-15 17:39:06,3598.0,31.9482, +2016-04-15 17:45:00,,,28.6839 +2016-04-15 17:54:02,3597.0,32.0045, +2016-04-15 18:00:00,,,28.6329 +2016-04-15 18:08:57,3596.0,32.0045, +2016-04-15 18:15:00,,,28.6813 +2016-04-15 18:23:51,3596.0,31.8387, +2016-04-15 18:30:00,,,28.6839 +2016-04-15 18:38:46,3595.0,31.8359, +2016-04-15 18:45:00,,,28.6813 +2016-04-15 18:53:41,3595.0,31.8359, +2016-04-15 19:00:00,,,28.6839 +2016-04-15 19:08:36,3593.0,31.833, +2016-04-15 19:15:00,,,28.6839 +2016-04-15 19:23:31,3592.0,31.8359, +2016-04-15 19:30:00,,,28.6813 +2016-04-15 19:38:26,3591.0,32.0045, +2016-04-15 19:45:00,,,28.6813 +2016-04-15 19:53:21,3589.0,32.013000000000005, +2016-04-15 20:00:00,,,28.6813 +2016-04-15 20:08:16,3588.0,31.8444, +2016-04-15 20:15:00,,,28.6813 +2016-04-15 20:23:11,3587.0,31.9482, +2016-04-15 20:30:00,,,28.7323 +2016-04-15 20:38:06,3585.0,31.9482, +2016-04-15 20:45:00,,,28.6813 +2016-04-15 20:53:01,3583.0,31.8359, +2016-04-15 21:00:00,,,28.6813 +2016-04-15 21:07:55,3581.0,31.9482, +2016-04-15 21:15:00,,,28.7374 +2016-04-15 21:22:50,3580.0,31.8359, +2016-04-15 21:30:00,,,28.6813 +2016-04-15 21:37:45,3578.0,31.8359, +2016-04-15 21:45:00,,,28.6839 +2016-04-15 21:52:39,3577.0,31.8359, +2016-04-15 22:00:00,,,28.6839 +2016-04-15 22:07:41,3574.0,31.892, +2016-04-15 22:15:00,,,28.6813 +2016-04-15 22:22:36,3574.0,31.892, +2016-04-15 22:30:00,,,28.6839 +2016-04-15 22:37:31,3573.0,31.8359, +2016-04-15 22:45:00,,,28.6839 +2016-04-15 22:52:26,3572.0,32.0045, +2016-04-15 23:00:00,,,28.7349 +2016-04-15 23:07:21,3571.0,31.892, +2016-04-15 23:15:00,,,28.6813 +2016-04-15 23:22:15,3571.0,31.8948, +2016-04-15 23:30:00,,,28.7323 +2016-04-15 23:37:10,3570.0,32.0045, +2016-04-15 23:45:00,,,28.6813 +2016-04-15 23:52:05,3569.0,31.8359, +2016-04-16 00:00:00,,,28.7349 +2016-04-16 00:07:00,3568.0,31.8274, +2016-04-16 00:15:00,,,28.6915 +2016-04-16 00:21:54,3568.0,32.0523, +2016-04-16 00:30:00,,,28.6864 +2016-04-16 00:36:49,3567.0,31.9397, +2016-04-16 00:45:00,,,28.638 +2016-04-16 00:51:44,3566.0,31.7156, +2016-04-16 01:00:00,,,28.6813 +2016-04-16 01:06:38,3566.0,31.8835, +2016-04-16 01:15:00,,,28.689 +2016-04-16 01:21:33,3566.0,31.7686, +2016-04-16 01:30:00,,,28.7349 +2016-04-16 01:36:28,3566.0,31.7714, +2016-04-16 01:45:00,,,28.7349 +2016-04-16 01:51:22,3566.0,31.8274, +2016-04-16 02:00:00,,,28.6813 +2016-04-16 02:06:17,3566.0,31.8806, +2016-04-16 02:15:00,,,28.6839 +2016-04-16 02:21:12,3566.0,31.7714, +2016-04-16 02:30:00,,,28.6864 +2016-04-16 02:36:06,3566.0,31.8835, +2016-04-16 02:45:00,,,28.6915 +2016-04-16 02:51:01,3567.0,31.8778, +2016-04-16 03:00:00,,,28.689 +2016-04-16 03:05:55,3567.0,31.9903, +2016-04-16 03:15:00,,,28.689 +2016-04-16 03:20:50,3566.0,31.8217, +2016-04-16 03:30:00,,,28.7425 +2016-04-16 03:35:45,3567.0,31.9903, +2016-04-16 03:45:00,,,28.74 +2016-04-16 03:50:39,3567.0,31.8778, +2016-04-16 04:00:00,,,28.6915 +2016-04-16 04:05:34,3567.0,31.875, +2016-04-16 04:15:00,,,28.6839 +2016-04-16 04:20:29,3568.0,31.8778, +2016-04-16 04:30:00,,,28.7349 +2016-04-16 04:35:24,3569.0,31.934, +2016-04-16 04:45:00,,,28.6813 +2016-04-16 04:50:18,3569.0,31.875, +2016-04-16 05:00:00,,,28.6915 +2016-04-16 05:05:13,3570.0,31.8778, +2016-04-16 05:15:00,,,28.6839 +2016-04-16 05:20:08,3571.0,31.934, +2016-04-16 05:30:00,,,28.7323 +2016-04-16 05:35:03,3571.0,31.875, +2016-04-16 05:45:00,,,28.74 +2016-04-16 05:49:58,3571.0,31.8778, +2016-04-16 06:00:00,,,28.6915 +2016-04-16 06:04:53,3571.0,31.9874, +2016-04-16 06:15:00,,,28.7425 +2016-04-16 06:19:47,3571.0,31.8189, +2016-04-16 06:30:00,,,28.6839 +2016-04-16 06:34:42,3572.0,31.8217, +2016-04-16 06:45:00,,,28.6839 +2016-04-16 06:49:37,3572.0,31.7658, +2016-04-16 07:00:00,,,28.6813 +2016-04-16 07:04:32,3573.0,31.875, +2016-04-16 07:15:00,,,28.6813 +2016-04-16 07:19:26,3574.0,31.8217, +2016-04-16 07:30:00,,,28.6915 +2016-04-16 07:34:21,3574.0,31.8189, +2016-04-16 07:45:00,,,28.689 +2016-04-16 07:49:16,3576.0,31.8693, +2016-04-16 08:00:00,,,28.6864 +2016-04-16 08:04:11,3577.0,31.8778, +2016-04-16 08:15:00,,,28.6813 +2016-04-16 08:19:05,3578.0,31.9255, +2016-04-16 08:30:00,,,28.6915 +2016-04-16 08:34:00,3579.0,31.8665, +2016-04-16 08:45:00,,,28.6304 +2016-04-16 08:48:55,3581.0,31.8133, +2016-04-16 09:00:00,,,28.6839 +2016-04-16 09:03:50,3582.0,31.8665, +2016-04-16 09:15:00,,,28.7323 +2016-04-16 09:18:45,3585.0,31.8133, +2016-04-16 09:30:00,,,28.6839 +2016-04-16 09:33:39,3585.0,31.8105, +2016-04-16 09:45:00,,,28.6915 +2016-04-16 09:48:34,3587.0,31.9817, +2016-04-16 10:00:00,,,28.689 +2016-04-16 10:03:29,3588.0,31.8778, +2016-04-16 10:15:00,,,28.6813 +2016-04-16 10:18:24,3588.0,31.8693, +2016-04-16 10:30:00,,,28.6813 +2016-04-16 10:33:19,3590.0,31.875, +2016-04-16 10:45:00,,,28.6915 +2016-04-16 10:48:14,3591.0,31.9903, +2016-04-16 11:00:00,,,28.6813 +2016-04-16 11:03:09,3592.0,31.875, +2016-04-16 11:15:00,,,28.6915 +2016-04-16 11:18:04,3592.0,31.875, +2016-04-16 11:30:00,,,28.6813 +2016-04-16 11:33:06,3592.0,31.8189, +2016-04-16 11:45:00,,,28.6813 +2016-04-16 11:48:02,3592.0,31.875, +2016-04-16 12:00:00,,,28.6839 +2016-04-16 12:02:57,3592.0,32.1003, +2016-04-16 12:15:00,,,28.6813 +2016-04-16 12:17:52,3592.0,32.1003, +2016-04-16 12:30:00,,,28.6813 +2016-04-16 12:32:47,3593.0,32.1598, +2016-04-16 12:45:00,,,28.6839 +2016-04-16 12:47:42,3593.0,32.0467, +2016-04-16 13:00:00,,,28.6839 +2016-04-16 13:02:37,3593.0,32.0438, +2016-04-16 13:15:00,,,28.6915 +2016-04-16 13:17:32,3593.0,32.1031, +2016-04-16 13:30:00,,,28.6839 +2016-04-16 13:32:27,3593.0,32.0495, +2016-04-16 13:45:00,,,28.6813 +2016-04-16 13:47:22,3593.0,32.1088, +2016-04-16 14:00:00,,,28.6839 +2016-04-16 14:02:16,3592.0,32.1626, +2016-04-16 14:15:00,,,28.7323 +2016-04-16 14:17:11,3592.0,31.9959, +2016-04-16 14:30:00,,,28.7349 +2016-04-16 14:32:06,3592.0,32.1088, +2016-04-16 14:45:00,,,28.6839 +2016-04-16 14:47:01,3591.0,32.0523, +2016-04-16 15:00:00,,,28.6304 +2016-04-16 15:01:56,3590.0,32.0495, +2016-04-16 15:15:00,,,28.7323 +2016-04-16 15:16:51,3591.0,32.0523, +2016-04-16 15:30:00,,,28.6839 +2016-04-16 15:31:45,3591.0,32.0523, +2016-04-16 15:45:00,,,28.6813 +2016-04-16 15:46:40,3592.0,31.9959, +2016-04-16 16:00:00,,,28.6813 +2016-04-16 16:01:35,3593.0,31.9931, +2016-04-16 16:15:00,,,28.6864 +2016-04-16 16:16:30,3594.0,31.9931, +2016-04-16 16:30:00,,,28.6813 +2016-04-16 16:31:25,3595.0,32.1655, +2016-04-16 16:45:00,,,28.6813 +2016-04-16 16:46:20,3597.0,32.0609, +2016-04-16 17:00:00,,,28.6839 +2016-04-16 17:01:16,3597.0,32.1088, +2016-04-16 17:15:00,,,28.6915 +2016-04-16 17:16:11,3598.0,32.0609, +2016-04-16 17:30:00,,,28.689 +2016-04-16 17:31:06,3598.0,32.0045, +2016-04-16 17:45:00,,,28.6813 +2016-04-16 17:46:01,3598.0,32.1174, +2016-04-16 18:00:00,,,28.6813 +2016-04-16 18:00:56,3597.0,32.0045, +2016-04-16 18:15:00,,,28.6813 +2016-04-16 18:15:51,3596.0,32.126, +2016-04-16 18:30:00,,,28.6839 +2016-04-16 18:30:46,3596.0,32.0694, +2016-04-16 18:45:00,,,28.689 +2016-04-16 18:45:41,3595.0,32.0694, +2016-04-16 19:00:00,,,28.6839 +2016-04-16 19:00:36,3595.0,32.1826, +2016-04-16 19:15:00,,,28.6813 +2016-04-16 19:15:32,3594.0,32.126, +2016-04-16 19:30:00,,,28.6839 +2016-04-16 19:30:27,3593.0,32.0694, +2016-04-16 19:45:00,,,28.6839 +2016-04-16 19:45:22,3593.0,32.0694, +2016-04-16 20:00:00,,,28.6813 +2016-04-16 20:00:17,3592.0,32.0694, +2016-04-16 20:15:00,,,28.6813 +2016-04-16 20:15:12,3591.0,32.126, +2016-04-16 20:30:00,,,28.6915 +2016-04-16 20:30:06,3590.0,32.013000000000005, +2016-04-16 20:45:00,,,28.6864 +2016-04-16 20:45:01,3588.0,32.0666, +2016-04-16 20:59:57,3588.0,32.013000000000005, +2016-04-16 21:00:00,,,28.6915 +2016-04-16 21:14:51,3587.0,32.0694, +2016-04-16 21:15:00,,,28.689 +2016-04-16 21:29:46,3586.0,32.0694, +2016-04-16 21:30:00,,,28.6839 +2016-04-16 21:44:41,3584.0,32.0694, +2016-04-16 21:45:00,,,28.7349 +2016-04-16 21:59:36,3584.0,32.0694, +2016-04-16 22:00:00,,,28.6839 +2016-04-16 22:14:31,3582.0,32.0101, +2016-04-16 22:15:00,,,28.6839 +2016-04-16 22:29:26,3581.0,32.0694, +2016-04-16 22:30:00,,,28.6839 +2016-04-16 22:44:21,3581.0,32.0694, +2016-04-16 22:45:00,,,28.689 +2016-04-16 22:59:16,3581.0,32.0694, +2016-04-16 23:00:00,,,28.74 +2016-04-16 23:14:11,3580.0,32.013000000000005, +2016-04-16 23:15:00,,,28.6915 +2016-04-16 23:29:05,3579.0,32.0694, +2016-04-16 23:30:00,,,28.689 +2016-04-16 23:44:00,3578.0,32.0101, +2016-04-16 23:45:00,,,28.6915 +2016-04-16 23:58:55,3578.0,32.0694, +2016-04-17 00:00:00,,,28.689 +2016-04-17 00:13:50,3578.0,31.9567, +2016-04-17 00:15:00,,,28.6915 +2016-04-17 00:28:45,3578.0,32.013000000000005, +2016-04-17 00:30:00,,,28.6915 +2016-04-17 00:43:39,3578.0,32.126, +2016-04-17 00:45:00,,,28.74 +2016-04-17 00:58:34,3577.0,32.126, +2016-04-17 01:00:00,,,28.6915 +2016-04-17 01:13:32,3577.0,32.013000000000005, +2016-04-17 01:15:00,,,28.7425 +2016-04-17 01:28:27,3577.0,32.0694, +2016-04-17 01:30:00,,,28.8423 +2016-04-17 01:43:22,3577.0,32.126, +2016-04-17 01:45:00,,,28.8449 +2016-04-17 01:58:16,3576.0,32.0694, +2016-04-17 02:00:00,,,28.8962 +2016-04-17 02:13:11,3575.0,32.0045, +2016-04-17 02:15:00,,,28.8962 +2016-04-17 02:28:06,3574.0,32.0694, +2016-04-17 02:30:00,,,28.8423 +2016-04-17 02:43:01,3574.0,32.0609, +2016-04-17 02:45:00,,,28.8449 +2016-04-17 02:57:55,3574.0,32.0045, +2016-04-17 03:00:00,,,28.8962 +2016-04-17 03:12:50,3573.0,32.0609, +2016-04-17 03:15:00,,,28.74 +2016-04-17 03:27:45,3572.0,32.0045, +2016-04-17 03:30:00,,,28.689 +2016-04-17 03:42:39,3572.0,32.1174, +2016-04-17 03:45:00,,,28.8423 +2016-04-17 03:57:34,3572.0,32.0045, +2016-04-17 04:00:00,,,28.8423 +2016-04-17 04:12:28,3571.0,32.0609, +2016-04-17 04:15:00,,,28.8423 +2016-04-17 04:27:23,3571.0,32.0045, +2016-04-17 04:30:00,,,28.8423 +2016-04-17 04:42:17,3571.0,32.0552, +2016-04-17 04:45:00,,,28.8423 +2016-04-17 04:57:12,3570.0,32.0609, +2016-04-17 05:00:00,,,28.6915 +2016-04-17 05:12:06,3570.0,32.1655, +2016-04-17 05:15:00,,,28.8423 +2016-04-17 05:27:01,3569.0,31.9931, +2016-04-17 05:30:00,,,28.7425 +2016-04-17 05:41:56,3568.0,32.0523, +2016-04-17 05:45:00,,,28.8962 +2016-04-17 05:56:50,3568.0,31.9959, +2016-04-17 06:00:00,,,28.7425 +2016-04-17 06:11:44,3567.0,31.8274, +2016-04-17 06:15:00,,,28.6915 +2016-04-17 06:26:39,3566.0,31.9959, +2016-04-17 06:30:00,,,28.8423 +2016-04-17 06:41:33,3566.0,31.9959, +2016-04-17 06:45:00,,,28.6915 +2016-04-17 06:56:28,3565.0,31.9959, +2016-04-17 07:00:00,,,28.6915 +2016-04-17 07:11:22,3565.0,32.1088, +2016-04-17 07:15:00,,,28.6915 +2016-04-17 07:26:17,3565.0,31.9931, +2016-04-17 07:30:00,,,28.7425 +2016-04-17 07:41:11,3565.0,31.9959, +2016-04-17 07:45:00,,,28.7425 +2016-04-17 07:56:06,3565.0,32.0523, +2016-04-17 08:00:00,,,28.7425 +2016-04-17 08:11:01,3566.0,31.8835, +2016-04-17 08:15:00,,,28.689 +2016-04-17 08:25:55,3566.0,31.9903, +2016-04-17 08:30:00,,,28.6915 +2016-04-17 08:40:50,3566.0,32.1598, +2016-04-17 08:45:00,,,28.689 +2016-04-17 08:55:45,3566.0,31.9931, +2016-04-17 09:00:00,,,28.689 +2016-04-17 09:10:39,3567.0,31.9903, +2016-04-17 09:15:00,,,28.74 +2016-04-17 09:25:34,3568.0,32.1031, +2016-04-17 09:30:00,,,28.6915 +2016-04-17 09:40:29,3568.0,32.0467, +2016-04-17 09:45:00,,,28.6915 +2016-04-17 09:55:24,3569.0,32.0467, +2016-04-17 10:00:00,,,28.6915 +2016-04-17 10:10:19,3570.0,32.0467, +2016-04-17 10:15:00,,,28.7425 +2016-04-17 10:25:13,3572.0,32.0467, +2016-04-17 10:30:00,,,28.6915 +2016-04-17 10:40:08,3573.0,32.1031, +2016-04-17 10:45:00,,,28.6915 +2016-04-17 10:55:03,3575.0,31.9874, +2016-04-17 11:00:00,,,28.6915 +2016-04-17 11:09:58,3577.0,31.9874, +2016-04-17 11:15:00,,,28.689 +2016-04-17 11:24:53,3579.0,32.0467, +2016-04-17 11:30:00,,,28.689 +2016-04-17 11:39:48,3581.0,31.9874, +2016-04-17 11:45:00,,,28.7425 +2016-04-17 11:54:43,3583.0,31.8189, +2016-04-17 12:00:00,,,28.6915 +2016-04-17 12:09:38,3585.0,31.875, +2016-04-17 12:15:00,,,28.689 +2016-04-17 12:24:33,3586.0,31.9311, +2016-04-17 12:30:00,,,28.6915 +2016-04-17 12:39:28,3587.0,31.8217, +2016-04-17 12:45:00,,,28.6915 +2016-04-17 12:54:23,3588.0,31.8778, +2016-04-17 13:00:00,,,28.689 +2016-04-17 13:09:18,3590.0,31.8189, +2016-04-17 13:15:00,,,28.6915 +2016-04-17 13:24:13,3591.0,31.763, +2016-04-17 13:30:00,,,28.6915 +2016-04-17 13:39:08,3592.0,31.8806, +2016-04-17 13:45:00,,,28.689 +2016-04-17 13:54:03,3593.0,31.8274, +2016-04-17 14:00:00,,,28.6915 +2016-04-17 14:08:58,3593.0,31.8246, +2016-04-17 14:15:00,,,28.689 +2016-04-17 14:23:53,3594.0,31.8274, +2016-04-17 14:30:00,,,28.6915 +2016-04-17 14:38:48,3594.0,31.9397, +2016-04-17 14:45:00,,,28.7425 +2016-04-17 14:53:43,3595.0,31.8835, +2016-04-17 15:00:00,,,28.6915 +2016-04-17 15:08:39,3595.0,31.9397, +2016-04-17 15:15:00,,,28.6915 +2016-04-17 15:23:34,3595.0,31.8835, +2016-04-17 15:30:00,,,28.689 +2016-04-17 15:38:29,3595.0,31.892, +2016-04-17 15:45:00,,,28.74 +2016-04-17 15:53:24,3594.0,31.9482, +2016-04-17 16:00:00,,,28.6915 +2016-04-17 16:08:19,3593.0,32.0045, +2016-04-17 16:15:00,,,28.689 +2016-04-17 16:23:14,3593.0,31.892, +2016-04-17 16:30:00,,,28.6915 +2016-04-17 16:38:09,3593.0,31.7799, +2016-04-17 16:45:00,,,28.6915 +2016-04-17 16:53:04,3592.0,31.8976, +2016-04-17 17:00:00,,,28.689 +2016-04-17 17:08:00,3592.0,31.7884, +2016-04-17 17:15:00,,,28.689 +2016-04-17 17:22:55,3592.0,31.9005, +2016-04-17 17:30:00,,,28.6915 +2016-04-17 17:37:50,3591.0,31.9567, +2016-04-17 17:45:00,,,28.74 +2016-04-17 17:52:45,3589.0,31.9005, +2016-04-17 18:00:00,,,28.689 +2016-04-17 18:07:40,3588.0,31.8415, +2016-04-17 18:15:00,,,28.689 +2016-04-17 18:22:35,3587.0,31.9005, +2016-04-17 18:30:00,,,28.7425 +2016-04-17 18:37:30,3586.0,32.013000000000005, +2016-04-17 18:45:00,,,28.7425 +2016-04-17 18:52:32,3585.0,31.9005, +2016-04-17 19:00:00,,,28.6915 +2016-04-17 19:07:27,3584.0,31.9538, +2016-04-17 19:15:00,,,28.7425 +2016-04-17 19:22:22,3582.0,31.8976, +2016-04-17 19:30:00,,,28.6915 +2016-04-17 19:37:17,3581.0,31.9005, +2016-04-17 19:45:00,,,28.6915 +2016-04-17 19:52:12,3579.0,32.013000000000005, +2016-04-17 20:00:00,,,28.689 +2016-04-17 20:07:06,3577.0,31.9005, +2016-04-17 20:15:00,,,28.6915 +2016-04-17 20:22:01,3576.0,31.9567, +2016-04-17 20:30:00,,,28.6915 +2016-04-17 20:36:56,3574.0,31.8444, +2016-04-17 20:45:00,,,28.689 +2016-04-17 20:51:51,3572.0,31.9567, +2016-04-17 21:00:00,,,28.7425 +2016-04-17 21:06:45,3571.0,31.8444, +2016-04-17 21:15:00,,,28.7425 +2016-04-17 21:21:40,3568.0,31.9005, +2016-04-17 21:30:00,,,28.7425 +2016-04-17 21:36:35,3566.0,31.9005, +2016-04-17 21:45:00,,,28.6915 +2016-04-17 21:51:29,3565.0,31.9595, +2016-04-17 22:00:00,,,28.7425 +2016-04-17 22:06:24,3563.0,31.7799, +2016-04-17 22:15:00,,,28.6915 +2016-04-17 22:21:18,3561.0,31.8359, +2016-04-17 22:30:00,,,28.74 +2016-04-17 22:36:13,3559.0,31.8359, +2016-04-17 22:45:00,,,28.7425 +2016-04-17 22:51:08,3558.0,31.8976, +2016-04-17 23:00:00,,,28.6915 +2016-04-17 23:06:02,3557.0,31.6598, +2016-04-17 23:15:00,,,28.74 +2016-04-17 23:20:57,3556.0,31.7184, +2016-04-17 23:30:00,,,28.7425 +2016-04-17 23:35:51,3555.0,31.8835, +2016-04-17 23:45:00,,,28.74 +2016-04-17 23:50:46,3554.0,31.6598, +2016-04-18 00:00:00,,,28.7425 +2016-04-18 00:05:40,3553.0,31.6626, +2016-04-18 00:15:00,,,28.6915 +2016-04-18 00:20:35,3552.0,31.8274, +2016-04-18 00:30:00,,,28.74 +2016-04-18 00:35:29,3551.0,31.8274, +2016-04-18 00:45:00,,,28.7425 +2016-04-18 00:50:24,3550.0,31.8274, +2016-04-18 01:00:00,,,28.7425 +2016-04-18 01:05:18,3550.0,31.7686, +2016-04-18 01:15:00,,,28.7425 +2016-04-18 01:20:13,3549.0,31.7714, +2016-04-18 01:30:00,,,28.689 +2016-04-18 01:35:08,3548.0,31.8217, +2016-04-18 01:45:00,,,28.7425 +2016-04-18 01:50:02,3547.0,31.8217, +2016-04-18 02:00:00,,,28.7425 +2016-04-18 02:04:57,3546.0,31.8189, +2016-04-18 02:15:00,,,28.6915 +2016-04-18 02:19:51,3545.0,31.7658, +2016-04-18 02:30:00,,,28.6915 +2016-04-18 02:34:46,3545.0,31.7658, +2016-04-18 02:45:00,,,28.6915 +2016-04-18 02:49:40,3545.0,31.7658, +2016-04-18 03:00:00,,,28.6915 +2016-04-18 03:04:34,3544.0,31.8133, +2016-04-18 03:15:00,,,28.7425 +2016-04-18 03:19:29,3543.0,31.8133, +2016-04-18 03:30:00,,,28.7425 +2016-04-18 03:34:23,3542.0,31.7573, +2016-04-18 03:45:00,,,28.74 +2016-04-18 03:49:18,3542.0,31.8105, +2016-04-18 04:00:00,,,28.689 +2016-04-18 04:04:12,3541.0,31.8693, +2016-04-18 04:15:00,,,28.6915 +2016-04-18 04:19:06,3541.0,31.8048, +2016-04-18 04:30:00,,,28.7425 +2016-04-18 04:34:01,3540.0,31.8048, +2016-04-18 04:45:00,,,28.6915 +2016-04-18 04:48:55,3539.0,31.8048, +2016-04-18 05:00:00,,,28.7425 +2016-04-18 05:03:49,3538.0,31.7489, +2016-04-18 05:15:00,,,28.7425 +2016-04-18 05:18:43,3537.0,31.802, +2016-04-18 05:30:00,,,28.74 +2016-04-18 05:33:38,3537.0,31.7489, +2016-04-18 05:45:00,,,28.7425 +2016-04-18 05:48:32,3537.0,31.8608, +2016-04-18 06:00:00,,,28.7425 +2016-04-18 06:03:27,3537.0,31.8048, +2016-04-18 06:15:00,,,28.74 +2016-04-18 06:18:21,3537.0,31.7963, +2016-04-18 06:30:00,,,28.7425 +2016-04-18 06:33:15,3537.0,31.8524, +2016-04-18 06:45:00,,,28.7425 +2016-04-18 06:48:10,3537.0,31.7963, +2016-04-18 07:00:00,,,28.7425 +2016-04-18 07:03:04,3538.0,31.8524, +2016-04-18 07:15:00,,,28.6915 +2016-04-18 07:17:58,3540.0,31.8524, +2016-04-18 07:30:00,,,28.7425 +2016-04-18 07:32:53,3542.0,31.7963, +2016-04-18 07:45:00,,,28.7425 +2016-04-18 07:47:48,3545.0,31.7963, +2016-04-18 08:00:00,,,28.7425 +2016-04-18 08:02:42,3547.0,31.732, +2016-04-18 08:15:00,,,28.6915 +2016-04-18 08:17:37,3551.0,31.7907, +2016-04-18 08:30:00,,,28.7425 +2016-04-18 08:32:31,3554.0,31.732, +2016-04-18 08:45:00,,,28.74 +2016-04-18 08:47:26,3557.0,31.9, +2016-04-18 09:00:00,,,28.7425 +2016-04-18 09:02:21,3560.0,31.7348, +2016-04-18 09:15:00,,,28.689 +2016-04-18 09:17:16,3565.0,31.7794, +2016-04-18 09:30:00,,,28.689 +2016-04-18 09:32:11,3569.0,31.732, +2016-04-18 09:45:00,,,28.6915 +2016-04-18 09:47:05,3574.0,31.8354, +2016-04-18 10:00:00,,,28.6915 +2016-04-18 10:02:01,3577.0,31.7851, +2016-04-18 10:15:00,,,28.689 +2016-04-18 10:16:56,3581.0,31.7907, +2016-04-18 10:30:00,,,28.6915 +2016-04-18 10:31:51,3585.0,31.8326, +2016-04-18 10:45:00,,,28.689 +2016-04-18 10:46:46,3587.0,31.7794, +2016-04-18 11:00:00,,,28.689 +2016-04-18 11:01:41,3588.0,31.8354, +2016-04-18 11:15:00,,,28.7425 +2016-04-18 11:16:37,3591.0,31.8354, +2016-04-18 11:30:00,,,28.689 +2016-04-18 11:31:32,3591.0,31.7879, +2016-04-18 11:45:00,,,28.6813 +2016-04-18 11:46:27,3592.0,31.9, +2016-04-18 12:00:00,,,28.6813 +2016-04-18 12:01:23,3592.0,31.9562, +2016-04-18 12:15:00,,,28.6915 +2016-04-18 12:16:18,3592.0,31.7879, +2016-04-18 12:30:00,,,28.6813 +2016-04-18 12:31:13,3593.0,31.7935, +2016-04-18 12:45:00,,,28.6813 +2016-04-18 12:46:08,3594.0,31.7376, +2016-04-18 13:00:00,,,28.689 +2016-04-18 13:01:03,3595.0,31.9056, +2016-04-18 13:15:00,,,28.6813 +2016-04-18 13:15:58,3596.0,31.9085, +2016-04-18 13:30:00,,,28.6329 +2016-04-18 13:30:53,3596.0,31.8524, +2016-04-18 13:45:00,,,28.6839 +2016-04-18 13:45:56,3597.0,31.8495, +2016-04-18 14:00:00,,,28.6813 +2016-04-18 14:00:51,3598.0,31.8524, +2016-04-18 14:15:00,,,28.6813 +2016-04-18 14:15:47,3598.0,31.858, +2016-04-18 14:30:00,,,28.6813 +2016-04-18 14:30:42,3598.0,31.7461, +2016-04-18 14:45:00,,,28.6813 +2016-04-18 14:45:37,3598.0,31.6374, +2016-04-18 15:00:00,,,28.6839 +2016-04-18 15:00:33,3598.0,31.6345, +2016-04-18 15:15:00,,,28.6813 +2016-04-18 15:15:28,3598.0,31.7461, +2016-04-18 15:30:00,,,28.6813 +2016-04-18 15:30:23,3598.0,31.7545, +2016-04-18 15:45:00,,,28.6813 +2016-04-18 15:45:18,3598.0,31.643, +2016-04-18 16:00:00,,,28.6329 +2016-04-18 16:00:13,3598.0,31.8105, +2016-04-18 16:15:00,,,28.6813 +2016-04-18 16:15:09,3598.0,31.6486, +2016-04-18 16:30:00,,,28.6813 +2016-04-18 16:30:04,3598.0,31.7071, +2016-04-18 16:44:59,3598.0,31.7099, +2016-04-18 16:45:00,,,28.6813 +2016-04-18 16:59:54,3597.0,31.5958, +2016-04-18 17:00:00,,,28.6839 +2016-04-18 17:14:49,3597.0,31.6514, +2016-04-18 17:15:00,,,28.6813 +2016-04-18 17:29:44,3596.0,31.6542, +2016-04-18 17:30:00,,,28.6839 +2016-04-18 17:44:39,3596.0,31.763, +2016-04-18 17:45:00,,,28.7323 +2016-04-18 17:59:34,3595.0,31.763, +2016-04-18 18:00:00,,,28.7323 +2016-04-18 18:14:29,3594.0,31.8217, +2016-04-18 18:15:00,,,28.6813 +2016-04-18 18:29:24,3593.0,31.7156, +2016-04-18 18:30:00,,,28.6839 +2016-04-18 18:44:19,3592.0,31.7156, +2016-04-18 18:45:00,,,28.6813 +2016-04-18 18:59:14,3591.0,31.7686, +2016-04-18 19:00:00,,,28.6839 +2016-04-18 19:14:09,3589.0,31.7714, +2016-04-18 19:15:00,,,28.6813 +2016-04-18 19:29:04,3588.0,31.6014, +2016-04-18 19:30:00,,,28.6813 +2016-04-18 19:43:59,3586.0,31.7714, +2016-04-18 19:45:00,,,28.6839 +2016-04-18 19:58:53,3585.0,31.8274, +2016-04-18 20:00:00,,,28.6839 +2016-04-18 20:13:48,3583.0,31.6598, +2016-04-18 20:15:00,,,28.6864 +2016-04-18 20:28:43,3581.0,31.7686, +2016-04-18 20:30:00,,,28.6839 +2016-04-18 20:43:38,3580.0,31.7686, +2016-04-18 20:45:00,,,28.7349 +2016-04-18 20:58:32,3578.0,31.6598, +2016-04-18 21:00:00,,,28.6813 +2016-04-18 21:13:27,3577.0,31.8274, +2016-04-18 21:15:00,,,28.6813 +2016-04-18 21:28:22,3577.0,31.6598, +2016-04-18 21:30:00,,,28.6813 +2016-04-18 21:43:17,3576.0,31.7714, +2016-04-18 21:45:00,,,28.6839 +2016-04-18 21:58:11,3575.0,31.7156, +2016-04-18 22:00:00,,,28.6813 +2016-04-18 22:13:06,3574.0,31.7602, +2016-04-18 22:15:00,,,28.6864 +2016-04-18 22:28:01,3574.0,31.6542, +2016-04-18 22:30:00,,,28.6839 +2016-04-18 22:42:56,3574.0,31.7658, +2016-04-18 22:45:00,,,28.6864 +2016-04-18 22:57:50,3573.0,31.7099, +2016-04-18 23:00:00,,,28.7349 +2016-04-18 23:12:45,3573.0,31.6514, +2016-04-18 23:15:00,,,28.6813 +2016-04-18 23:27:40,3573.0,31.5958, +2016-04-18 23:30:00,,,28.7323 +2016-04-18 23:42:34,3572.0,31.763, +2016-04-18 23:45:00,,,28.6839 +2016-04-18 23:57:37,3572.0,31.5986, +2016-04-19 00:00:00,,,28.6813 +2016-04-19 00:12:31,3572.0,31.8217, +2016-04-19 00:15:00,,,28.6813 +2016-04-19 00:27:26,3572.0,31.6542, +2016-04-19 00:30:00,,,28.7323 +2016-04-19 00:42:20,3572.0,31.6542, +2016-04-19 00:45:00,,,28.6839 +2016-04-19 00:57:15,3572.0,31.7658, +2016-04-19 01:00:00,,,28.6864 +2016-04-19 01:12:10,3572.0,31.6542, +2016-04-19 01:15:00,,,28.6864 +2016-04-19 01:27:04,3572.0,31.7071, +2016-04-19 01:30:00,,,28.6839 +2016-04-19 01:41:59,3573.0,31.5958, +2016-04-19 01:45:00,,,28.6813 +2016-04-19 01:56:54,3573.0,31.6542, +2016-04-19 02:00:00,,,28.7349 +2016-04-19 02:11:48,3572.0,31.7099, +2016-04-19 02:15:00,,,28.6839 +2016-04-19 02:26:43,3572.0,31.7071, +2016-04-19 02:30:00,,,28.6839 +2016-04-19 02:41:38,3573.0,31.6458, +2016-04-19 02:45:00,,,28.6839 +2016-04-19 02:56:33,3573.0,31.6987, +2016-04-19 03:00:00,,,28.6813 +2016-04-19 03:11:28,3573.0,31.6458, +2016-04-19 03:15:00,,,28.7323 +2016-04-19 03:26:22,3572.0,31.643, +2016-04-19 03:30:00,,,28.6839 +2016-04-19 03:41:17,3572.0,31.5902, +2016-04-19 03:45:00,,,28.6839 +2016-04-19 03:56:11,3572.0,31.643, +2016-04-19 04:00:00,,,28.7323 +2016-04-19 04:11:06,3572.0,31.5874, +2016-04-19 04:15:00,,,28.6813 +2016-04-19 04:26:01,3571.0,31.7015, +2016-04-19 04:30:00,,,28.6839 +2016-04-19 04:40:56,3571.0,31.643, +2016-04-19 04:45:00,,,28.6864 +2016-04-19 04:55:50,3571.0,31.5902, +2016-04-19 05:00:00,,,28.6813 +2016-04-19 05:10:45,3571.0,31.6458, +2016-04-19 05:15:00,,,28.6813 +2016-04-19 05:25:40,3571.0,31.6987, +2016-04-19 05:30:00,,,28.7349 +2016-04-19 05:40:35,3570.0,31.7461, +2016-04-19 05:45:00,,,28.6839 +2016-04-19 05:55:29,3570.0,31.6931, +2016-04-19 06:00:00,,,28.7349 +2016-04-19 06:10:24,3570.0,31.6374, +2016-04-19 06:15:00,,,28.6813 +2016-04-19 06:25:19,3571.0,31.5818, +2016-04-19 06:30:00,,,28.7349 +2016-04-19 06:40:14,3570.0,31.7461, +2016-04-19 06:45:00,,,28.7349 +2016-04-19 06:55:09,3570.0,31.7461, +2016-04-19 07:00:00,,,28.7323 +2016-04-19 07:10:03,3570.0,31.7489, +2016-04-19 07:15:00,,,28.7349 +2016-04-19 07:24:58,3570.0,31.6345, +2016-04-19 07:30:00,,,28.6864 +2016-04-19 07:39:53,3570.0,31.6345, +2016-04-19 07:45:00,,,28.7349 +2016-04-19 07:54:48,3570.0,31.6374, +2016-04-19 08:00:00,,,28.7374 +2016-04-19 08:09:43,3570.0,31.6374, +2016-04-19 08:15:00,,,28.6813 +2016-04-19 08:24:37,3571.0,31.6374, +2016-04-19 08:30:00,,,28.6813 +2016-04-19 08:39:32,3571.0,31.5789, +2016-04-19 08:45:00,,,28.7323 +2016-04-19 08:54:27,3572.0,31.6345, +2016-04-19 09:00:00,,,28.6839 +2016-04-19 09:09:22,3573.0,31.7489, +2016-04-19 09:15:00,,,28.6813 +2016-04-19 09:24:17,3574.0,31.6931, +2016-04-19 09:30:00,,,28.6813 +2016-04-19 09:39:12,3577.0,31.6374, +2016-04-19 09:45:00,,,28.6839 +2016-04-19 09:54:07,3579.0,31.6931, +2016-04-19 10:00:00,,,28.6813 +2016-04-19 10:09:02,3581.0,31.6345, +2016-04-19 10:15:00,,,28.6813 +2016-04-19 10:23:57,3585.0,31.7461, +2016-04-19 10:30:00,,,28.6813 +2016-04-19 10:39:00,3587.0,31.6345, +2016-04-19 10:45:00,,,28.6813 +2016-04-19 10:53:55,3588.0,31.7461, +2016-04-19 11:00:00,,,28.6813 +2016-04-19 11:08:50,3589.0,31.7461, +2016-04-19 11:15:00,,,28.6813 +2016-04-19 11:23:53,3589.0,31.6345, +2016-04-19 11:30:00,,,28.6839 +2016-04-19 11:38:48,3590.0,31.7489, +2016-04-19 11:45:00,,,28.6813 +2016-04-19 11:53:43,3591.0,31.6903, +2016-04-19 12:00:00,,,28.6839 +2016-04-19 12:08:38,3592.0,31.6903, +2016-04-19 12:15:00,,,28.6813 +2016-04-19 12:23:34,3592.0,31.6903, +2016-04-19 12:30:00,,,28.6839 +2016-04-19 12:38:29,3593.0,31.7461, +2016-04-19 12:45:00,,,28.6813 +2016-04-19 12:53:24,3592.0,31.643, +2016-04-19 13:00:00,,,28.6813 +2016-04-19 13:08:19,3593.0,31.6987, +2016-04-19 13:15:00,,,28.6839 +2016-04-19 13:23:14,3593.0,31.7573, +2016-04-19 13:30:00,,,28.6813 +2016-04-19 13:38:09,3593.0,31.7545, +2016-04-19 13:45:00,,,28.6839 +2016-04-19 13:53:04,3593.0,31.5874, +2016-04-19 14:00:00,,,28.6839 +2016-04-19 14:08:00,3594.0,31.7015, +2016-04-19 14:15:00,,,28.6813 +2016-04-19 14:22:55,3594.0,31.763, +2016-04-19 14:30:00,,,28.6813 +2016-04-19 14:37:50,3594.0,31.7658, +2016-04-19 14:45:00,,,28.6304 +2016-04-19 14:52:46,3594.0,31.7658, +2016-04-19 15:00:00,,,28.6839 +2016-04-19 15:07:41,3595.0,31.763, +2016-04-19 15:15:00,,,28.6813 +2016-04-19 15:22:36,3595.0,31.7071, +2016-04-19 15:30:00,,,28.6839 +2016-04-19 15:37:31,3595.0,31.7658, +2016-04-19 15:45:00,,,28.6839 +2016-04-19 15:52:27,3595.0,31.6486, +2016-04-19 16:00:00,,,28.6329 +2016-04-19 16:07:22,3595.0,31.763, +2016-04-19 16:15:00,,,28.6839 +2016-04-19 16:22:17,3595.0,31.7071, +2016-04-19 16:30:00,,,28.6864 +2016-04-19 16:37:13,3595.0,31.7071, +2016-04-19 16:45:00,,,28.6839 +2016-04-19 16:52:08,3595.0,31.7658, +2016-04-19 17:00:00,,,28.6813 +2016-04-19 17:07:04,3595.0,31.8189, +2016-04-19 17:15:00,,,28.6839 +2016-04-19 17:21:59,3595.0,31.7714, +2016-04-19 17:30:00,,,28.6813 +2016-04-19 17:36:54,3595.0,31.6514, +2016-04-19 17:45:00,,,28.6813 +2016-04-19 17:51:49,3594.0,31.7686, +2016-04-19 18:00:00,,,28.6839 +2016-04-19 18:06:44,3593.0,31.7156, +2016-04-19 18:15:00,,,28.6839 +2016-04-19 18:21:39,3593.0,31.657, +2016-04-19 18:30:00,,,28.6864 +2016-04-19 18:36:42,3592.0,31.7714, +2016-04-19 18:45:00,,,28.6813 +2016-04-19 18:51:37,3590.0,31.7156, +2016-04-19 19:00:00,,,28.6813 +2016-04-19 19:06:32,3588.0,31.8274, +2016-04-19 19:15:00,,,28.6813 +2016-04-19 19:21:26,3588.0,31.6598, +2016-04-19 19:30:00,,,28.6864 +2016-04-19 19:36:21,3586.0,31.657, +2016-04-19 19:45:00,,,28.6839 +2016-04-19 19:51:16,3585.0,31.7714, +2016-04-19 20:00:00,,,28.6813 +2016-04-19 20:06:11,3583.0,31.7714, +2016-04-19 20:15:00,,,28.6839 +2016-04-19 20:21:06,3581.0,31.7156, +2016-04-19 20:30:00,,,28.7349 +2016-04-19 20:36:01,3580.0,31.7714, +2016-04-19 20:45:00,,,28.6813 +2016-04-19 20:50:56,3578.0,31.7714, +2016-04-19 21:00:00,,,28.7349 +2016-04-19 21:05:51,3577.0,31.8246, +2016-04-19 21:15:00,,,28.6839 +2016-04-19 21:20:46,3575.0,31.7714, +2016-04-19 21:30:00,,,28.6813 +2016-04-19 21:35:41,3574.0,31.8274, +2016-04-19 21:45:00,,,28.6839 +2016-04-19 21:50:35,3573.0,31.6598, +2016-04-19 22:00:00,,,28.7349 +2016-04-19 22:05:30,3571.0,31.7099, +2016-04-19 22:15:00,,,28.6839 +2016-04-19 22:20:25,3570.0,31.7658, +2016-04-19 22:30:00,,,28.6813 +2016-04-19 22:35:20,3568.0,31.6542, +2016-04-19 22:45:00,,,28.6839 +2016-04-19 22:50:15,3567.0,31.7658, +2016-04-19 23:00:00,,,28.7374 +2016-04-19 23:05:09,3566.0,31.7071, +2016-04-19 23:15:00,,,28.7349 +2016-04-19 23:20:04,3565.0,31.6542, +2016-04-19 23:30:00,,,28.6839 +2016-04-19 23:34:59,3564.0,31.8217, +2016-04-19 23:45:00,,,28.6839 +2016-04-19 23:49:54,3563.0,31.7099, +2016-04-20 00:00:00,,,28.7349 +2016-04-20 00:04:49,3561.0,31.7658, +2016-04-20 00:15:00,,,28.6839 +2016-04-20 00:19:44,3559.0,31.6542, +2016-04-20 00:30:00,,,28.7349 +2016-04-20 00:34:39,3559.0,31.5431, +2016-04-20 00:45:00,,,28.7323 +2016-04-20 00:49:33,3557.0,31.6542, +2016-04-20 01:00:00,,,28.7349 +2016-04-20 01:04:28,3557.0,31.7658, +2016-04-20 01:15:00,,,28.7323 +2016-04-20 01:19:23,3556.0,31.8133, +2016-04-20 01:30:00,,,28.7349 +2016-04-20 01:34:18,3554.0,31.6458, +2016-04-20 01:45:00,,,28.6813 +2016-04-20 01:49:12,3552.0,31.4765, +2016-04-20 02:00:00,,,28.7349 +2016-04-20 02:04:07,3551.0,31.5818, +2016-04-20 02:15:00,,,28.7374 +2016-04-20 02:19:01,3550.0,31.6374, +2016-04-20 02:30:00,,,28.7323 +2016-04-20 02:33:56,3549.0,31.5789, +2016-04-20 02:45:00,,,28.7349 +2016-04-20 02:48:50,3548.0,31.6374, +2016-04-20 03:00:00,,,28.7374 +2016-04-20 03:03:44,3547.0,31.6374, +2016-04-20 03:15:00,,,28.7349 +2016-04-20 03:18:39,3546.0,31.5263, +2016-04-20 03:30:00,,,28.7374 +2016-04-20 03:33:33,3545.0,31.5789, +2016-04-20 03:45:00,,,28.6839 +2016-04-20 03:48:28,3545.0,31.5818, +2016-04-20 04:00:00,,,28.7349 +2016-04-20 04:03:22,3545.0,31.8048, +2016-04-20 04:15:00,,,28.7374 +2016-04-20 04:18:17,3544.0,31.6317, +2016-04-20 04:30:00,,,28.7349 +2016-04-20 04:33:11,3544.0,31.5733, +2016-04-20 04:45:00,,,28.7374 +2016-04-20 04:48:05,3544.0,31.6289, +2016-04-20 05:00:00,,,28.7349 +2016-04-20 05:03:00,3544.0,31.6289, +2016-04-20 05:15:00,,,28.7349 +2016-04-20 05:17:54,3544.0,31.5733, +2016-04-20 05:30:00,,,28.6813 +2016-04-20 05:32:49,3544.0,31.6289, +2016-04-20 05:45:00,,,28.6839 +2016-04-20 05:47:43,3544.0,31.6846, +2016-04-20 06:00:00,,,28.6839 +2016-04-20 06:02:38,3544.0,31.7963, +2016-04-20 06:15:00,,,28.7323 +2016-04-20 06:17:32,3545.0,31.5733, +2016-04-20 06:30:00,,,28.7349 +2016-04-20 06:32:27,3545.0,31.6762, +2016-04-20 06:45:00,,,28.7374 +2016-04-20 06:47:21,3545.0,31.6205, +2016-04-20 07:00:00,,,28.6864 +2016-04-20 07:02:16,3545.0,31.6233, +2016-04-20 07:15:00,,,28.6839 +2016-04-20 07:17:10,3546.0,31.679, +2016-04-20 07:30:00,,,28.7374 +2016-04-20 07:32:05,3548.0,31.6233, +2016-04-20 07:45:00,,,28.7349 +2016-04-20 07:46:59,3550.0,31.6121, +2016-04-20 08:00:00,,,28.7323 +2016-04-20 08:01:54,3552.0,31.5565, +2016-04-20 08:15:00,,,28.6864 +2016-04-20 08:16:48,3556.0,31.6121, +2016-04-20 08:30:00,,,28.6839 +2016-04-20 08:31:43,3559.0,31.5011, +2016-04-20 08:45:00,,,28.6839 +2016-04-20 08:46:38,3563.0,31.6121, +2016-04-20 09:00:00,,,28.6839 +2016-04-20 09:01:32,3566.0,31.4983, +2016-04-20 09:15:00,,,28.6839 +2016-04-20 09:16:27,3568.0,31.7235, +2016-04-20 09:30:00,,,28.6839 +2016-04-20 09:31:22,3571.0,31.6121, +2016-04-20 09:45:00,,,28.6813 +2016-04-20 09:46:17,3573.0,31.7263, +2016-04-20 10:00:00,,,28.6839 +2016-04-20 10:01:11,3574.0,31.6678, +2016-04-20 10:15:00,,,28.7323 +2016-04-20 10:16:06,3577.0,31.6121, +2016-04-20 10:30:00,,,28.6813 +2016-04-20 10:31:01,3579.0,31.7235, +2016-04-20 10:45:00,,,28.6864 +2016-04-20 10:45:56,3582.0,31.6121, +2016-04-20 11:00:00,,,28.7349 +2016-04-20 11:00:51,3584.0,31.5565, +2016-04-20 11:15:00,,,28.6813 +2016-04-20 11:15:46,3586.0,31.6678, +2016-04-20 11:30:00,,,28.6864 +2016-04-20 11:30:42,3587.0,31.7207, +2016-04-20 11:45:00,,,28.6813 +2016-04-20 11:45:37,3588.0,31.7235, +2016-04-20 12:00:00,,,28.6329 +2016-04-20 12:00:32,3589.0,31.6734, +2016-04-20 12:15:00,,,28.6839 +2016-04-20 12:15:27,3590.0,31.732, +2016-04-20 12:30:00,,,28.6839 +2016-04-20 12:30:22,3592.0,31.732, +2016-04-20 12:45:00,,,28.7323 +2016-04-20 12:45:17,3593.0,31.6734, +2016-04-20 13:00:00,,,28.7323 +2016-04-20 13:00:12,3593.0,31.7376, +2016-04-20 13:15:00,,,28.7349 +2016-04-20 13:15:08,3594.0,31.6818, +2016-04-20 13:30:00,,,28.6839 +2016-04-20 13:30:03,3595.0,31.6289, +2016-04-20 13:44:58,3595.0,31.7376, +2016-04-20 13:45:00,,,28.6839 +2016-04-20 13:59:54,3596.0,31.7376, +2016-04-20 14:00:00,,,28.6813 +2016-04-20 14:14:49,3597.0,31.6818, +2016-04-20 14:15:00,,,28.6839 +2016-04-20 14:29:44,3597.0,31.7461, +2016-04-20 14:30:00,,,28.6813 +2016-04-20 14:44:39,3596.0,31.7461, +2016-04-20 14:45:00,,,28.6839 +2016-04-20 14:59:34,3596.0,31.7461, +2016-04-20 15:00:00,,,28.6813 +2016-04-20 15:14:29,3596.0,31.6903, +2016-04-20 15:15:00,,,28.6813 +2016-04-20 15:29:25,3596.0,31.7461, +2016-04-20 15:30:00,,,28.5314 +2016-04-20 15:44:20,3596.0,31.6458, +2016-04-20 15:45:00,,,28.5314 +2016-04-20 15:59:15,3597.0,31.7015, +2016-04-20 16:00:00,,,28.5314 +2016-04-20 16:14:10,3596.0,31.6987, +2016-04-20 16:15:00,,,28.5796 +2016-04-20 16:29:05,3596.0,31.763, +2016-04-20 16:30:00,,,28.6813 +2016-04-20 16:44:01,3596.0,31.7071, +2016-04-20 16:45:00,,,28.5289 +2016-04-20 16:58:56,3596.0,31.6514, +2016-04-20 17:00:00,,,28.5314 +2016-04-20 17:13:51,3595.0,31.7099, +2016-04-20 17:15:00,,,28.5289 +2016-04-20 17:28:46,3595.0,31.763, +2016-04-20 17:30:00,,,28.5238 +2016-04-20 17:43:41,3595.0,31.6514, +2016-04-20 17:45:00,,,28.5289 +2016-04-20 17:58:37,3594.0,31.763, +2016-04-20 18:00:00,,,28.5289 +2016-04-20 18:13:32,3593.0,31.7099, +2016-04-20 18:15:00,,,28.5339 +2016-04-20 18:28:27,3593.0,31.7658, +2016-04-20 18:30:00,,,28.5314 +2016-04-20 18:43:22,3592.0,31.7658, +2016-04-20 18:45:00,,,28.5314 +2016-04-20 18:58:17,3590.0,31.5986, +2016-04-20 19:00:00,,,28.5796 +2016-04-20 19:13:12,3588.0,31.7071, +2016-04-20 19:15:00,,,28.5289 +2016-04-20 19:28:07,3587.0,31.6514, +2016-04-20 19:30:00,,,28.5339 +2016-04-20 19:43:02,3586.0,31.5487, +2016-04-20 19:45:00,,,28.5314 +2016-04-20 19:57:57,3585.0,31.5487, +2016-04-20 20:00:00,,,28.5821 +2016-04-20 20:12:52,3583.0,31.607, +2016-04-20 20:15:00,,,28.5314 +2016-04-20 20:27:47,3581.0,31.5487, +2016-04-20 20:30:00,,,28.5339 +2016-04-20 20:42:42,3578.0,31.4932, +2016-04-20 20:45:00,,,28.5796 +2016-04-20 20:57:37,3577.0,31.5403, +2016-04-20 21:00:00,,,28.5339 +2016-04-20 21:12:32,3575.0,31.4848, +2016-04-20 21:15:00,,,28.5821 +2016-04-20 21:27:27,3573.0,31.4351, +2016-04-20 21:30:00,,,28.6329 +2016-04-20 21:42:21,3572.0,31.4848, +2016-04-20 21:45:00,,,28.5314 +2016-04-20 21:57:16,3570.0,31.5403, +2016-04-20 22:00:00,,,28.5796 +2016-04-20 22:12:10,3568.0,31.4323, +2016-04-20 22:15:00,,,28.5796 +2016-04-20 22:27:05,3566.0,31.5431, +2016-04-20 22:30:00,,,28.5796 +2016-04-20 22:42:00,3565.0,31.5986, +2016-04-20 22:45:00,,,28.5821 +2016-04-20 22:56:54,3564.0,31.4323, +2016-04-20 23:00:00,,,28.5314 +2016-04-20 23:11:48,3562.0,31.5986, +2016-04-20 23:15:00,,,28.5796 +2016-04-20 23:26:43,3560.0,31.6542, +2016-04-20 23:30:00,,,28.5314 +2016-04-20 23:41:38,3559.0,31.4323, +2016-04-20 23:45:00,,,28.5821 +2016-04-20 23:56:32,3558.0,31.4323, +2016-04-21 00:00:00,,,28.5821 +2016-04-21 00:11:27,3557.0,31.4295, +2016-04-21 00:15:00,,,28.5314 +2016-04-21 00:26:21,3556.0,31.4295, +2016-04-21 00:30:00,,,28.5339 +2016-04-21 00:41:16,3555.0,31.5375, +2016-04-21 00:45:00,,,28.5339 +2016-04-21 00:56:10,3553.0,31.5347, +2016-04-21 01:00:00,,,28.6355 +2016-04-21 01:11:05,3552.0,31.4765, +2016-04-21 01:15:00,,,28.5821 +2016-04-21 01:25:59,3551.0,31.5347, +2016-04-21 01:30:00,,,28.5847 +2016-04-21 01:40:54,3550.0,31.4681, +2016-04-21 01:45:00,,,28.6304 +2016-04-21 01:55:48,3549.0,31.5263, +2016-04-21 02:00:00,,,28.5821 +2016-04-21 02:10:43,3548.0,31.5235, +2016-04-21 02:15:00,,,28.5847 +2016-04-21 02:25:38,3547.0,31.4156, +2016-04-21 02:30:00,,,28.5821 +2016-04-21 02:40:32,3546.0,31.5789, +2016-04-21 02:45:00,,,28.5796 +2016-04-21 02:55:27,3545.0,31.4156, +2016-04-21 03:00:00,,,28.6329 +2016-04-21 03:10:21,3545.0,31.4156, +2016-04-21 03:15:00,,,28.5821 +2016-04-21 03:25:15,3544.0,31.4156, +2016-04-21 03:30:00,,,28.6355 +2016-04-21 03:40:10,3543.0,31.5263, +2016-04-21 03:45:00,,,28.5821 +2016-04-21 03:55:04,3543.0,31.5818, +2016-04-21 04:00:00,,,28.5314 +2016-04-21 04:09:58,3542.0,31.5179, +2016-04-21 04:15:00,,,28.5821 +2016-04-21 04:24:52,3541.0,31.4625, +2016-04-21 04:30:00,,,28.5339 +2016-04-21 04:39:46,3539.0,31.4072, +2016-04-21 04:45:00,,,28.5847 +2016-04-21 04:54:41,3539.0,31.4625, +2016-04-21 05:00:00,,,28.6355 +2016-04-21 05:09:35,3537.0,31.5179, +2016-04-21 05:15:00,,,28.5821 +2016-04-21 05:24:29,3537.0,31.5179, +2016-04-21 05:30:00,,,28.6329 +2016-04-21 05:39:23,3537.0,31.5179, +2016-04-21 05:45:00,,,28.5314 +2016-04-21 05:54:17,3536.0,31.5179, +2016-04-21 06:00:00,,,28.5796 +2016-04-21 06:09:11,3535.0,31.5095, +2016-04-21 06:15:00,,,28.5821 +2016-04-21 06:24:05,3534.0,31.5123, +2016-04-21 06:30:00,,,28.5821 +2016-04-21 06:39:07,3535.0,31.5123, +2016-04-21 06:45:00,,,28.6329 +2016-04-21 06:54:01,3536.0,31.4569, +2016-04-21 07:00:00,,,28.6355 +2016-04-21 07:08:55,3536.0,31.5039, +2016-04-21 07:15:00,,,28.6355 +2016-04-21 07:23:49,3537.0,31.5011, +2016-04-21 07:30:00,,,28.5821 +2016-04-21 07:38:43,3539.0,31.3905, +2016-04-21 07:45:00,,,28.5339 +2016-04-21 07:53:37,3543.0,31.4457, +2016-04-21 08:00:00,,,28.5821 +2016-04-21 08:08:32,3545.0,31.5011, +2016-04-21 08:15:00,,,28.5796 +2016-04-21 08:23:26,3549.0,31.5011, +2016-04-21 08:30:00,,,28.5796 +2016-04-21 08:38:28,3553.0,31.3354, +2016-04-21 08:45:00,,,28.5289 +2016-04-21 08:53:22,3557.0,31.3905, +2016-04-21 09:00:00,,,28.5847 +2016-04-21 09:08:17,3562.0,31.3905, +2016-04-21 09:15:00,,,28.5314 +2016-04-21 09:23:12,3566.0,31.5011, +2016-04-21 09:30:00,,,28.5289 +2016-04-21 09:38:07,3572.0,31.5565, +2016-04-21 09:45:00,,,28.5289 +2016-04-21 09:53:02,3577.0,31.5565, +2016-04-21 10:00:00,,,28.5289 +2016-04-21 10:07:57,3581.0,31.5565, +2016-04-21 10:15:00,,,28.5796 +2016-04-21 10:22:52,3585.0,31.5011, +2016-04-21 10:30:00,,,28.5314 +2016-04-21 10:37:48,3588.0,31.5565, +2016-04-21 10:45:00,,,28.5289 +2016-04-21 10:52:43,3592.0,31.5565, +2016-04-21 11:00:00,,,28.5314 +2016-04-21 11:07:38,3594.0,31.5011, +2016-04-21 11:15:00,,,28.4782 +2016-04-21 11:22:34,3595.0,31.6121, +2016-04-21 11:30:00,,,28.5314 +2016-04-21 11:37:29,3596.0,31.5565, +2016-04-21 11:45:00,,,28.5289 +2016-04-21 11:52:25,3598.0,31.5565, +2016-04-21 12:00:00,,,28.5289 +2016-04-21 12:07:20,3598.0,31.5011, +2016-04-21 12:15:00,,,28.4807 +2016-04-21 12:22:16,3598.0,31.6177, +2016-04-21 12:30:00,,,28.4706 +2016-04-21 12:37:11,3598.0,31.5067, +2016-04-21 12:45:00,,,28.5289 +2016-04-21 12:52:07,3598.0,31.5649, +2016-04-21 13:00:00,,,28.5289 +2016-04-21 13:07:02,3598.0,31.5705, +2016-04-21 13:15:00,,,28.5289 +2016-04-21 13:21:57,3598.0,31.5179, +2016-04-21 13:30:00,,,28.5314 +2016-04-21 13:36:53,3599.0,31.5151, +2016-04-21 13:45:00,,,28.5213 +2016-04-21 13:51:48,3599.0,31.5705, +2016-04-21 14:00:00,,,28.4706 +2016-04-21 14:06:44,3599.0,31.4625, +2016-04-21 14:15:00,,,28.5213 +2016-04-21 14:21:40,3599.0,31.5789, +2016-04-21 14:30:00,,,28.5213 +2016-04-21 14:36:35,3599.0,31.5235, +2016-04-21 14:45:00,,,28.5314 +2016-04-21 14:51:31,3599.0,31.5235, +2016-04-21 15:00:00,,,28.5314 +2016-04-21 15:06:27,3599.0,31.5789, +2016-04-21 15:15:00,,,28.5213 +2016-04-21 15:21:22,3599.0,31.5319, +2016-04-21 15:30:00,,,28.5213 +2016-04-21 15:36:18,3599.0,31.5347, +2016-04-21 15:45:00,,,28.5213 +2016-04-21 15:51:13,3599.0,31.5403, +2016-04-21 16:00:00,,,28.5213 +2016-04-21 16:06:09,3599.0,31.5958, +2016-04-21 16:15:00,,,28.5213 +2016-04-21 16:21:04,3599.0,31.4295, +2016-04-21 16:30:00,,,28.5745 +2016-04-21 16:36:00,3599.0,31.6014, +2016-04-21 16:45:00,,,28.5213 +2016-04-21 16:50:55,3599.0,31.6014, +2016-04-21 17:00:00,,,28.5213 +2016-04-21 17:05:51,3599.0,31.6598, +2016-04-21 17:15:00,,,28.5238 +2016-04-21 17:20:46,3599.0,31.5487, +2016-04-21 17:30:00,,,28.5238 +2016-04-21 17:35:42,3599.0,31.6042, +2016-04-21 17:45:00,,,28.5238 +2016-04-21 17:50:37,3599.0,31.6598, +2016-04-21 18:00:00,,,28.5213 +2016-04-21 18:05:32,3599.0,31.5459, +2016-04-21 18:15:00,,,28.5213 +2016-04-21 18:20:28,3599.0,31.5459, +2016-04-21 18:30:00,,,28.5213 +2016-04-21 18:35:23,3599.0,31.6042, +2016-04-21 18:45:00,,,28.5213 +2016-04-21 18:50:18,3598.0,31.6126, +2016-04-21 19:00:00,,,28.572 +2016-04-21 19:05:14,3598.0,31.5571, +2016-04-21 19:15:00,,,28.5213 +2016-04-21 19:20:09,3598.0,31.6126, +2016-04-21 19:30:00,,,28.5238 +2016-04-21 19:35:04,3597.0,31.6683, +2016-04-21 19:45:00,,,28.5745 +2016-04-21 19:49:59,3595.0,31.4463, +2016-04-21 20:00:00,,,28.5238 +2016-04-21 20:04:54,3593.0,31.6683, +2016-04-21 20:15:00,,,28.5238 +2016-04-21 20:19:49,3591.0,31.4546, +2016-04-21 20:30:00,,,28.572 +2016-04-21 20:34:44,3588.0,31.391, +2016-04-21 20:45:00,,,28.5238 +2016-04-21 20:49:39,3587.0,31.4435, +2016-04-21 21:00:00,,,28.5796 +2016-04-21 21:04:34,3585.0,31.4463, +2016-04-21 21:15:00,,,28.5238 +2016-04-21 21:19:29,3583.0,31.51, +2016-04-21 21:30:00,,,28.5745 +2016-04-21 21:34:24,3581.0,31.3359, +2016-04-21 21:45:00,,,28.5821 +2016-04-21 21:49:19,3579.0,31.391, +2016-04-21 22:00:00,,,28.5314 +2016-04-21 22:04:14,3577.0,31.4463, +2016-04-21 22:15:00,,,28.5314 +2016-04-21 22:19:09,3576.0,31.391, +2016-04-21 22:30:00,,,28.6329 +2016-04-21 22:34:04,3574.0,31.3883, +2016-04-21 22:45:00,,,28.6329 +2016-04-21 22:48:59,3573.0,31.391, +2016-04-21 23:00:00,,,28.5289 +2016-04-21 23:03:53,3572.0,31.4932, +2016-04-21 23:15:00,,,28.5314 +2016-04-21 23:18:48,3571.0,31.4463, +2016-04-21 23:30:00,,,28.5821 +2016-04-21 23:33:43,3569.0,31.3827, +2016-04-21 23:45:00,,,28.5289 +2016-04-21 23:48:37,3568.0,31.5487, +2016-04-22 00:00:00,,,28.5339 +2016-04-22 00:03:32,3566.0,31.496, +2016-04-22 00:15:00,,,28.5847 +2016-04-22 00:18:27,3566.0,31.4379, +2016-04-22 00:30:00,,,28.5821 +2016-04-22 00:33:21,3564.0,31.3799, +2016-04-22 00:45:00,,,28.5314 +2016-04-22 00:48:16,3563.0,31.3827, +2016-04-22 01:00:00,,,28.5821 +2016-04-22 01:03:11,3562.0,31.3827, +2016-04-22 01:15:00,,,28.5339 +2016-04-22 01:18:05,3561.0,31.2726, +2016-04-22 01:30:00,,,28.5796 +2016-04-22 01:33:00,3559.0,31.4379, +2016-04-22 01:45:00,,,28.5821 +2016-04-22 01:47:54,3559.0,31.5487, +2016-04-22 02:00:00,,,28.5821 +2016-04-22 02:02:49,3558.0,31.4323, +2016-04-22 02:15:00,,,28.6355 +2016-04-22 02:17:43,3556.0,31.5431, +2016-04-22 02:30:00,,,28.5796 +2016-04-22 02:32:37,3556.0,31.4848, +2016-04-22 02:45:00,,,28.6329 +2016-04-22 02:47:32,3555.0,31.5431, +2016-04-22 03:00:00,,,28.5847 +2016-04-22 03:02:26,3554.0,31.482, +2016-04-22 03:15:00,,,28.5289 +2016-04-22 03:17:21,3552.0,31.4323, +2016-04-22 03:30:00,,,28.5847 +2016-04-22 03:32:15,3552.0,31.4295, +2016-04-22 03:45:00,,,28.6304 +2016-04-22 03:47:10,3551.0,31.4323, +2016-04-22 04:00:00,,,28.6355 +2016-04-22 04:02:04,3550.0,31.3771, +2016-04-22 04:15:00,,,28.5847 +2016-04-22 04:16:59,3549.0,31.267, +2016-04-22 04:30:00,,,28.6304 +2016-04-22 04:31:53,3549.0,31.3688, +2016-04-22 04:45:00,,,28.5847 +2016-04-22 04:46:48,3548.0,31.3137, +2016-04-22 05:00:00,,,28.5796 +2016-04-22 05:01:42,3546.0,31.3688, +2016-04-22 05:15:00,,,28.5821 +2016-04-22 05:16:37,3545.0,31.3109, +2016-04-22 05:30:00,,,28.5821 +2016-04-22 05:31:31,3545.0,31.4156, +2016-04-22 05:45:00,,,28.5339 +2016-04-22 05:46:26,3545.0,31.3576, +2016-04-22 06:00:00,,,28.5796 +2016-04-22 06:01:20,3545.0,31.4128, +2016-04-22 06:15:00,,,28.6355 +2016-04-22 06:16:14,3545.0,31.3576, +2016-04-22 06:30:00,,,28.6329 +2016-04-22 06:31:09,3544.0,31.3053, +2016-04-22 06:45:00,,,28.5821 +2016-04-22 06:46:03,3544.0,31.4128, +2016-04-22 07:00:00,,,28.6304 +2016-04-22 07:00:58,3545.0,31.2504, +2016-04-22 07:15:00,,,28.4807 +2016-04-22 07:15:52,3545.0,31.3026, +2016-04-22 07:30:00,,,28.5821 +2016-04-22 07:30:47,3547.0,31.3521, +2016-04-22 07:45:00,,,28.5796 +2016-04-22 07:45:41,3549.0,31.4072, +2016-04-22 08:00:00,,,28.5796 +2016-04-22 08:00:36,3551.0,31.297, +2016-04-22 08:15:00,,,28.6329 +2016-04-22 08:15:30,3553.0,31.1872, +2016-04-22 08:30:00,,,28.4327 +2016-04-22 08:30:25,3556.0,31.297, +2016-04-22 08:45:00,,,28.4302 +2016-04-22 08:45:19,3559.0,31.3521, +2016-04-22 09:00:00,,,28.4302 +2016-04-22 09:00:14,3563.0,31.4072, +2016-04-22 09:15:00,,,28.3797 +2016-04-22 09:15:09,3566.0,31.4072, +2016-04-22 09:30:00,,,28.3772 +2016-04-22 09:30:04,3570.0,31.242, +2016-04-22 09:44:59,3574.0,31.5179, +2016-04-22 09:45:00,,,28.4277 +2016-04-22 09:59:54,3577.0,31.3521, +2016-04-22 10:00:00,,,28.3823 +2016-04-22 10:14:49,3581.0,31.3521, +2016-04-22 10:15:00,,,28.3772 +2016-04-22 10:29:44,3584.0,31.4044, +2016-04-22 10:30:00,,,28.3797 +2016-04-22 10:44:40,3586.0,31.4044, +2016-04-22 10:45:00,,,28.3797 +2016-04-22 10:59:35,3588.0,31.3493, +2016-04-22 11:00:00,,,28.3772 +2016-04-22 11:14:30,3591.0,31.4044, +2016-04-22 11:15:00,,,28.3797 +2016-04-22 11:29:25,3592.0,31.297, +2016-04-22 11:30:00,,,28.3772 +2016-04-22 11:44:21,3593.0,31.4597, +2016-04-22 11:45:00,,,28.3772 +2016-04-22 11:59:16,3593.0,31.4597, +2016-04-22 12:00:00,,,28.3772 +2016-04-22 12:14:11,3594.0,31.4597, +2016-04-22 12:15:00,,,28.3772 +2016-04-22 12:29:07,3594.0,31.4044, +2016-04-22 12:30:00,,,28.4302 +2016-04-22 12:44:02,3595.0,31.4681, +2016-04-22 12:45:00,,,28.3797 +2016-04-22 12:58:57,3595.0,31.3576, +2016-04-22 13:00:00,,,28.3797 +2016-04-22 13:13:53,3596.0,31.3576, +2016-04-22 13:15:00,,,28.4277 +2016-04-22 13:28:48,3597.0,31.4709, +2016-04-22 13:30:00,,,28.3772 +2016-04-22 13:43:43,3597.0,31.5235, +2016-04-22 13:45:00,,,28.3772 +2016-04-22 13:58:38,3598.0,31.4681, +2016-04-22 14:00:00,,,28.3797 +2016-04-22 14:13:34,3598.0,31.4765, +2016-04-22 14:15:00,,,28.3269 +2016-04-22 14:28:29,3598.0,31.4239, +2016-04-22 14:30:00,,,28.3772 +2016-04-22 14:43:24,3598.0,31.366, +2016-04-22 14:45:00,,,28.3797 +2016-04-22 14:58:20,3598.0,31.4876, +2016-04-22 15:00:00,,,28.3772 +2016-04-22 15:13:15,3598.0,31.4876, +2016-04-22 15:15:00,,,28.3772 +2016-04-22 15:28:10,3598.0,31.4267, +2016-04-22 15:30:00,,,28.3823 +2016-04-22 15:43:06,3598.0,31.4295, +2016-04-22 15:45:00,,,28.3797 +2016-04-22 15:58:01,3598.0,31.5431, +2016-04-22 16:00:00,,,28.3772 +2016-04-22 16:12:56,3598.0,31.4323, +2016-04-22 16:15:00,,,28.3772 +2016-04-22 16:27:51,3598.0,31.5431, +2016-04-22 16:30:00,,,28.3772 +2016-04-22 16:42:47,3598.0,31.4932, +2016-04-22 16:45:00,,,28.3772 +2016-04-22 16:57:42,3598.0,31.4904, +2016-04-22 17:00:00,,,28.3772 +2016-04-22 17:12:37,3598.0,31.4379, +2016-04-22 17:15:00,,,28.3772 +2016-04-22 17:27:32,3597.0,31.4932, +2016-04-22 17:30:00,,,28.3772 +2016-04-22 17:42:27,3596.0,31.4932, +2016-04-22 17:45:00,,,28.3772 +2016-04-22 17:57:22,3595.0,31.3827, +2016-04-22 18:00:00,,,28.4302 +2016-04-22 18:12:18,3595.0,31.4351, +2016-04-22 18:15:00,,,28.3797 +2016-04-22 18:27:13,3595.0,31.5487, +2016-04-22 18:30:00,,,28.3823 +2016-04-22 18:42:08,3594.0,31.4932, +2016-04-22 18:45:00,,,28.3772 +2016-04-22 18:57:03,3593.0,31.4463, +2016-04-22 19:00:00,,,28.4302 +2016-04-22 19:11:57,3591.0,31.4463, +2016-04-22 19:15:00,,,28.3797 +2016-04-22 19:26:52,3590.0,31.4463, +2016-04-22 19:30:00,,,28.3797 +2016-04-22 19:41:47,3588.0,31.5571, +2016-04-22 19:45:00,,,28.4782 +2016-04-22 19:56:42,3587.0,31.5571, +2016-04-22 20:00:00,,,28.3797 +2016-04-22 20:11:37,3586.0,31.5016, +2016-04-22 20:15:00,,,28.3294 +2016-04-22 20:26:32,3585.0,31.5571, +2016-04-22 20:30:00,,,28.3772 +2016-04-22 20:41:27,3583.0,31.391, +2016-04-22 20:45:00,,,28.4302 +2016-04-22 20:56:22,3582.0,31.4463, +2016-04-22 21:00:00,,,28.3797 +2016-04-22 21:11:16,3580.0,31.6126, +2016-04-22 21:15:00,,,28.3772 +2016-04-22 21:26:11,3578.0,31.5016, +2016-04-22 21:30:00,,,28.3797 +2016-04-22 21:41:06,3577.0,31.391, +2016-04-22 21:45:00,,,28.4302 +2016-04-22 21:56:01,3576.0,31.4379, +2016-04-22 22:00:00,,,28.4782 +2016-04-22 22:10:55,3574.0,31.3359, +2016-04-22 22:15:00,,,28.3823 +2016-04-22 22:25:50,3574.0,31.4379, +2016-04-22 22:30:00,,,28.4302 +2016-04-22 22:40:45,3572.0,31.4379, +2016-04-22 22:45:00,,,28.3797 +2016-04-22 22:55:40,3571.0,31.3276, +2016-04-22 23:00:00,,,28.3797 +2016-04-22 23:10:34,3570.0,31.4379, +2016-04-22 23:15:00,,,28.4782 +2016-04-22 23:25:29,3569.0,31.4379, +2016-04-22 23:30:00,,,28.4782 +2016-04-22 23:40:24,3567.0,31.5487, +2016-04-22 23:45:00,,,28.4782 +2016-04-22 23:55:18,3566.0,31.4932, +2016-04-23 00:00:00,,,28.4327 +2016-04-23 00:15:00,,, +2016-04-23 00:30:00,,, +2016-04-23 00:45:00,,, +2016-04-23 01:00:00,,, +2016-04-23 01:09:52,3559.0,31.4379, +2016-04-23 01:15:00,,,28.4782 +2016-04-23 01:24:46,3558.0,31.2177, +2016-04-23 01:30:00,,,28.3797 +2016-04-23 01:39:41,3557.0,31.3743, +2016-04-23 01:45:00,,,28.4782 +2016-04-23 01:54:35,3556.0,31.322, +2016-04-23 02:00:00,,,28.4807 +2016-04-23 02:09:30,3555.0,31.0999, +2016-04-23 02:15:00,,,28.3772 +2016-04-23 02:24:25,3553.0,31.3771, +2016-04-23 02:30:00,,,28.4782 +2016-04-23 02:39:19,3552.0,31.2642, +2016-04-23 02:45:00,,,28.3797 +2016-04-23 02:54:14,3552.0,31.2121, +2016-04-23 03:00:00,,,28.3823 +2016-04-23 03:09:08,3551.0,31.1573, +2016-04-23 03:15:00,,,28.4782 +2016-04-23 03:24:02,3550.0,31.267, +2016-04-23 03:30:00,,,28.3823 +2016-04-23 03:38:56,3550.0,31.2121, +2016-04-23 03:45:00,,,28.4277 +2016-04-23 03:53:51,3550.0,31.3771, +2016-04-23 04:00:00,,,28.4833 +2016-04-23 04:08:45,3550.0,31.3688, +2016-04-23 04:15:00,,,28.4782 +2016-04-23 04:23:40,3549.0,31.3109, +2016-04-23 04:30:00,,,28.3797 +2016-04-23 04:38:34,3549.0,31.3137, +2016-04-23 04:45:00,,,28.4909 +2016-04-23 04:53:29,3549.0,31.0916, +2016-04-23 05:00:00,,,28.4277 +2016-04-23 05:08:23,3548.0,31.0861, +2016-04-23 05:15:00,,,28.3823 +2016-04-23 05:23:18,3548.0,31.149, +2016-04-23 05:30:00,,,28.4277 +2016-04-23 05:38:12,3547.0,31.1955, +2016-04-23 05:45:00,,,28.4327 +2016-04-23 05:53:07,3547.0,31.1955, +2016-04-23 06:00:00,,,28.4302 +2016-04-23 06:08:01,3546.0,31.3026, +2016-04-23 06:15:00,,,28.4327 +2016-04-23 06:22:56,3546.0,31.1407, +2016-04-23 06:30:00,,,28.4302 +2016-04-23 06:37:50,3546.0,31.3026, +2016-04-23 06:45:00,,,28.4302 +2016-04-23 06:52:45,3545.0,31.1927, +2016-04-23 07:00:00,,,28.3848 +2016-04-23 07:07:39,3546.0,31.1955, +2016-04-23 07:15:00,,,28.4302 +2016-04-23 07:22:34,3547.0,31.3053, +2016-04-23 07:30:00,,,28.4302 +2016-04-23 07:37:28,3548.0,31.1955, +2016-04-23 07:45:00,,,28.3797 +2016-04-23 07:52:23,3549.0,31.1872, +2016-04-23 08:00:00,,,28.4807 +2016-04-23 08:07:17,3550.0,31.2998, +2016-04-23 08:15:00,,,28.3823 +2016-04-23 08:22:12,3551.0,31.297, +2016-04-23 08:30:00,,,28.3772 +2016-04-23 08:37:06,3553.0,31.2476, +2016-04-23 08:45:00,,,28.4782 +2016-04-23 08:52:01,3554.0,31.1872, +2016-04-23 09:00:00,,,28.3797 +2016-04-23 09:06:55,3556.0,31.0778, +2016-04-23 09:15:00,,,28.4302 +2016-04-23 09:21:57,3557.0,31.1872, +2016-04-23 09:30:00,,,28.3797 +2016-04-23 09:36:52,3559.0,31.1872, +2016-04-23 09:45:00,,,28.4277 +2016-04-23 09:51:47,3562.0,31.242, +2016-04-23 10:00:00,,,28.4833 +2016-04-23 10:06:41,3564.0,31.297, +2016-04-23 10:15:00,,,28.4302 +2016-04-23 10:21:36,3566.0,31.297, +2016-04-23 10:30:00,,,28.4807 +2016-04-23 10:36:31,3567.0,31.297, +2016-04-23 10:45:00,,,28.4302 +2016-04-23 10:51:26,3568.0,31.297, +2016-04-23 11:00:00,,,28.3772 +2016-04-23 11:06:21,3569.0,31.297, +2016-04-23 11:15:00,,,28.4807 +2016-04-23 11:21:23,3571.0,31.1872, +2016-04-23 11:30:00,,,28.4302 +2016-04-23 11:36:18,3571.0,31.297, +2016-04-23 11:45:00,,,28.3772 +2016-04-23 11:51:13,3571.0,31.2942, +2016-04-23 12:00:00,,,28.3823 +2016-04-23 12:06:08,3572.0,31.297, +2016-04-23 12:15:00,,,28.3797 +2016-04-23 12:21:02,3573.0,31.297, +2016-04-23 12:30:00,,,28.3797 +2016-04-23 12:35:57,3573.0,31.2942, +2016-04-23 12:45:00,,,28.3823 +2016-04-23 12:50:52,3574.0,31.297, +2016-04-23 13:00:00,,,28.3772 +2016-04-23 13:05:47,3574.0,31.3521, +2016-04-23 13:15:00,,,28.3823 +2016-04-23 13:20:42,3575.0,31.3493, +2016-04-23 13:30:00,,,28.4807 +2016-04-23 13:35:37,3575.0,31.297, +2016-04-23 13:45:00,,,28.3797 +2016-04-23 13:50:32,3577.0,31.1872, +2016-04-23 14:00:00,,,28.4277 +2016-04-23 14:05:26,3577.0,31.297, +2016-04-23 14:15:00,,,28.4302 +2016-04-23 14:20:21,3578.0,31.1872, +2016-04-23 14:30:00,,,28.3797 +2016-04-23 14:35:16,3579.0,31.242, +2016-04-23 14:45:00,,,28.3772 +2016-04-23 14:50:11,3578.0,31.2942, +2016-04-23 15:00:00,,,28.4302 +2016-04-23 15:05:06,3579.0,31.297, +2016-04-23 15:15:00,,,28.4277 +2016-04-23 15:20:01,3578.0,31.242, +2016-04-23 15:30:00,,,28.3797 +2016-04-23 15:34:56,3578.0,31.297, +2016-04-23 15:45:00,,,28.3772 +2016-04-23 15:49:51,3578.0,31.3026, +2016-04-23 16:00:00,,,28.4302 +2016-04-23 16:04:46,3578.0,31.242, +2016-04-23 16:15:00,,,28.3797 +2016-04-23 16:19:41,3578.0,31.1927, +2016-04-23 16:30:00,,,28.4807 +2016-04-23 16:34:35,3577.0,31.3026, +2016-04-23 16:45:00,,,28.3772 +2016-04-23 16:49:30,3577.0,31.3053, +2016-04-23 17:00:00,,,28.3772 +2016-04-23 17:04:25,3577.0,31.3053, +2016-04-23 17:15:00,,,28.4277 +2016-04-23 17:19:20,3576.0,31.3026, +2016-04-23 17:30:00,,,28.4277 +2016-04-23 17:34:14,3575.0,31.2476, +2016-04-23 17:45:00,,,28.4327 +2016-04-23 17:49:09,3575.0,31.2504, +2016-04-23 18:00:00,,,28.3797 +2016-04-23 18:04:04,3574.0,31.3053, +2016-04-23 18:15:00,,,28.4302 +2016-04-23 18:18:59,3574.0,31.3576, +2016-04-23 18:30:00,,,28.4302 +2016-04-23 18:33:54,3573.0,31.3026, +2016-04-23 18:45:00,,,28.4302 +2016-04-23 18:48:48,3572.0,31.3604, +2016-04-23 19:00:00,,,28.3797 +2016-04-23 19:03:43,3570.0,31.3026, +2016-04-23 19:15:00,,,28.4302 +2016-04-23 19:18:38,3568.0,31.3053, +2016-04-23 19:30:00,,,28.4782 +2016-04-23 19:33:32,3566.0,31.2476, +2016-04-23 19:45:00,,,28.4277 +2016-04-23 19:48:27,3565.0,31.3026, +2016-04-23 20:00:00,,,28.4302 +2016-04-23 20:03:22,3563.0,31.1927, +2016-04-23 20:15:00,,,28.3823 +2016-04-23 20:18:16,3561.0,31.2504, +2016-04-23 20:30:00,,,28.4277 +2016-04-23 20:33:11,3559.0,31.3026, +2016-04-23 20:45:00,,,28.4807 +2016-04-23 20:48:05,3557.0,31.1324, +2016-04-23 21:00:00,,,28.4302 +2016-04-23 21:03:00,3555.0,31.2942, +2016-04-23 21:15:00,,,28.3797 +2016-04-23 21:17:54,3553.0,31.242, +2016-04-23 21:30:00,,,28.2816 +2016-04-23 21:32:48,3552.0,31.1324, +2016-04-23 21:45:00,,,28.2791 +2016-04-23 21:47:42,3550.0,31.1324, +2016-04-23 22:00:00,,,28.2766 +2016-04-23 22:02:37,3549.0,31.1324, +2016-04-23 22:15:00,,,28.2791 +2016-04-23 22:17:31,3548.0,31.1872, +2016-04-23 22:30:00,,,28.2791 +2016-04-23 22:32:25,3546.0,31.297, +2016-04-23 22:45:00,,,28.2791 +2016-04-23 22:47:19,3545.0,31.0778, +2016-04-23 23:00:00,,,28.2791 +2016-04-23 23:02:13,3545.0,31.1872, +2016-04-23 23:15:00,,,28.2791 +2016-04-23 23:17:08,3543.0,31.1872, +2016-04-23 23:30:00,,,28.2791 +2016-04-23 23:32:02,3542.0,31.1324, +2016-04-23 23:45:00,,,28.3319 +2016-04-23 23:46:56,3540.0,31.1844, +2016-04-24 00:00:00,,,28.3294 +2016-04-24 00:01:51,3539.0,31.1789, +2016-04-24 00:15:00,,,28.2816 +2016-04-24 00:16:45,3537.0,31.1817, +2016-04-24 00:30:00,,,28.2791 +2016-04-24 00:31:39,3537.0,31.1789, +2016-04-24 00:45:00,,,28.3269 +2016-04-24 00:46:33,3536.0,31.2914, +2016-04-24 01:00:00,,,28.3294 +2016-04-24 01:01:30,3536.0,31.1159, +2016-04-24 01:15:00,,,28.3294 +2016-04-24 01:16:25,3535.0,31.2282, +2016-04-24 01:30:00,,,28.2816 +2016-04-24 01:31:19,3534.0,31.2282, +2016-04-24 01:45:00,,,28.2791 +2016-04-24 01:46:13,3533.0,31.1706, +2016-04-24 02:00:00,,,28.3319 +2016-04-24 02:01:08,3533.0,31.1734, +2016-04-24 02:15:00,,,28.3319 +2016-04-24 02:16:02,3532.0,31.1706, +2016-04-24 02:30:00,,,28.2791 +2016-04-24 02:30:56,3532.0,31.2803, +2016-04-24 02:45:00,,,28.2791 +2016-04-24 02:45:50,3531.0,31.1706, +2016-04-24 03:00:00,,,28.3294 +2016-04-24 03:00:44,3531.0,31.2748, +2016-04-24 03:15:00,,,28.3269 +2016-04-24 03:15:38,3531.0,31.2199, +2016-04-24 03:30:00,,,28.2816 +2016-04-24 03:30:32,3530.0,31.272, +2016-04-24 03:45:00,,,28.2791 +2016-04-24 03:45:27,3530.0,31.1651, +2016-04-24 04:00:00,,,28.3319 +2016-04-24 04:00:21,3529.0,31.327, +2016-04-24 04:15:00,,,28.2791 +2016-04-24 04:15:15,3528.0,31.2748, +2016-04-24 04:30:00,,,28.3319 +2016-04-24 04:30:09,3527.0,31.1651, +2016-04-24 04:45:00,,,28.2716 +2016-04-24 04:45:03,3526.0,31.272, +2016-04-24 04:59:57,3526.0,31.154, +2016-04-24 05:00:00,,,28.3319 +2016-04-24 05:14:51,3524.0,31.2088, +2016-04-24 05:15:00,,,28.2791 +2016-04-24 05:29:46,3524.0,31.2088, +2016-04-24 05:30:00,,,28.2791 +2016-04-24 05:44:40,3523.0,31.154, +2016-04-24 05:45:00,,,28.2716 +2016-04-24 05:59:34,3523.0,31.3187, +2016-04-24 06:00:00,,,28.2741 +2016-04-24 06:14:28,3523.0,31.2581, +2016-04-24 06:15:00,,,28.3244 +2016-04-24 06:29:23,3523.0,31.2005, +2016-04-24 06:30:00,,,28.2816 +2016-04-24 06:44:17,3525.0,31.1457, +2016-04-24 06:45:00,,,28.3218 +2016-04-24 06:59:11,3526.0,31.1374, +2016-04-24 07:00:00,,,28.2791 +2016-04-24 07:14:05,3528.0,31.1922, +2016-04-24 07:15:00,,,28.2716 +2016-04-24 07:29:00,3530.0,31.0827, +2016-04-24 07:30:00,,,28.2716 +2016-04-24 07:43:54,3531.0,31.247, +2016-04-24 07:45:00,,,28.2816 +2016-04-24 07:58:48,3534.0,31.0827, +2016-04-24 08:00:00,,,28.3244 +2016-04-24 08:13:43,3535.0,31.1374, +2016-04-24 08:15:00,,,28.3244 +2016-04-24 08:28:37,3537.0,31.1374, +2016-04-24 08:30:00,,,28.2741 +2016-04-24 08:43:31,3538.0,31.247, +2016-04-24 08:45:00,,,28.3244 +2016-04-24 08:58:26,3539.0,31.247, +2016-04-24 09:00:00,,,28.3244 +2016-04-24 09:13:20,3541.0,31.302, +2016-04-24 09:15:00,,,28.3218 +2016-04-24 09:28:14,3544.0,31.1374, +2016-04-24 09:30:00,,,28.3218 +2016-04-24 09:43:09,3546.0,31.1374, +2016-04-24 09:45:00,,,28.2691 +2016-04-24 09:58:04,3549.0,31.1374, +2016-04-24 10:00:00,,,28.2691 +2016-04-24 10:12:58,3551.0,30.9737, +2016-04-24 10:15:00,,,28.3143 +2016-04-24 10:27:53,3553.0,31.0309, +2016-04-24 10:30:00,,,28.3269 +2016-04-24 10:42:47,3556.0,31.1374, +2016-04-24 10:45:00,,,28.2641 +2016-04-24 10:57:42,3557.0,31.302, +2016-04-24 11:00:00,,,28.2716 +2016-04-24 11:12:37,3559.0,31.1374, +2016-04-24 11:15:00,,,28.2641 +2016-04-24 11:27:31,3559.0,31.247, +2016-04-24 11:30:00,,,28.2139 +2016-04-24 11:42:26,3560.0,31.2443, +2016-04-24 11:45:00,,,28.2716 +2016-04-24 11:57:21,3561.0,31.1402, +2016-04-24 12:00:00,,,28.2641 +2016-04-24 12:12:15,3562.0,31.1374, +2016-04-24 12:15:00,,,28.2641 +2016-04-24 12:27:10,3564.0,31.1922, +2016-04-24 12:30:00,,,28.2666 +2016-04-24 12:42:05,3565.0,31.2498, +2016-04-24 12:45:00,,,28.2641 +2016-04-24 12:56:59,3566.0,31.302, +2016-04-24 13:00:00,,,28.3143 +2016-04-24 13:11:54,3567.0,31.0827, +2016-04-24 13:15:00,,,28.2641 +2016-04-24 13:26:49,3570.0,31.1374, +2016-04-24 13:30:00,,,28.2641 +2016-04-24 13:41:44,3572.0,31.1374, +2016-04-24 13:45:00,,,28.2666 +2016-04-24 13:56:39,3574.0,31.247, +2016-04-24 14:00:00,,,28.2641 +2016-04-24 14:11:34,3577.0,31.1374, +2016-04-24 14:15:00,,,28.2641 +2016-04-24 14:26:29,3577.0,30.9737, +2016-04-24 14:30:00,,,28.2139 +2016-04-24 14:41:24,3577.0,31.0282, +2016-04-24 14:45:00,,,28.2666 +2016-04-24 14:56:19,3577.0,31.0827, +2016-04-24 15:00:00,,,28.2666 +2016-04-24 15:11:13,3577.0,31.0282, +2016-04-24 15:15:00,,,28.2641 +2016-04-24 15:26:08,3575.0,31.0282, +2016-04-24 15:30:00,,,28.2164 +2016-04-24 15:41:03,3573.0,31.0365, +2016-04-24 15:45:00,,,28.2666 +2016-04-24 15:55:58,3571.0,31.091, +2016-04-24 16:00:00,,,28.2666 +2016-04-24 16:10:53,3569.0,31.0365, +2016-04-24 16:15:00,,,28.2139 +2016-04-24 16:25:47,3568.0,31.0365, +2016-04-24 16:30:00,,,28.2164 +2016-04-24 16:40:49,3566.0,31.091, +2016-04-24 16:45:00,,,28.2641 +2016-04-24 16:55:44,3566.0,31.0447, +2016-04-24 17:00:00,,,28.2641 +2016-04-24 17:10:39,3566.0,31.0965, +2016-04-24 17:15:00,,,28.2666 +2016-04-24 17:25:33,3565.0,31.0447, +2016-04-24 17:30:00,,,28.2641 +2016-04-24 17:40:28,3565.0,31.0447, +2016-04-24 17:45:00,,,28.2641 +2016-04-24 17:55:23,3564.0,30.8816, +2016-04-24 18:00:00,,,28.2641 +2016-04-24 18:10:18,3564.0,31.042, +2016-04-24 18:15:00,,,28.2641 +2016-04-24 18:25:13,3562.0,31.0447, +2016-04-24 18:30:00,,,28.2666 +2016-04-24 18:40:07,3560.0,31.0447, +2016-04-24 18:45:00,,,28.2139 +2016-04-24 18:55:02,3559.0,31.0993, +2016-04-24 19:00:00,,,28.2641 +2016-04-24 19:09:57,3557.0,30.993, +2016-04-24 19:15:00,,,28.2641 +2016-04-24 19:24:52,3555.0,30.8788, +2016-04-24 19:30:00,,,28.3168 +2016-04-24 19:39:46,3553.0,30.8816, +2016-04-24 19:45:00,,,28.2641 +2016-04-24 19:54:41,3551.0,31.0447, +2016-04-24 20:00:00,,,28.3168 +2016-04-24 20:09:35,3549.0,30.8816, +2016-04-24 20:15:00,,,28.3143 +2016-04-24 20:24:30,3547.0,30.982, +2016-04-24 20:30:00,,,28.3143 +2016-04-24 20:39:24,3545.0,31.0365, +2016-04-24 20:45:00,,,28.2641 +2016-04-24 20:54:19,3543.0,30.982, +2016-04-24 21:00:00,,,28.2565 +2016-04-24 21:09:13,3541.0,31.0365, +2016-04-24 21:15:00,,,28.2641 +2016-04-24 21:24:07,3539.0,30.982, +2016-04-24 21:30:00,,,28.2666 +2016-04-24 21:39:01,3537.0,30.982, +2016-04-24 21:45:00,,,28.2666 +2016-04-24 21:53:56,3536.0,30.9276, +2016-04-24 22:00:00,,,28.3068 +2016-04-24 22:08:50,3535.0,30.9194, +2016-04-24 22:15:00,,,28.2641 +2016-04-24 22:23:44,3532.0,31.0309, +2016-04-24 22:30:00,,,28.2641 +2016-04-24 22:38:38,3531.0,30.9765, +2016-04-24 22:45:00,,,28.3093 +2016-04-24 22:53:33,3530.0,31.0827, +2016-04-24 23:00:00,,,28.2641 +2016-04-24 23:08:27,3529.0,31.0282, +2016-04-24 23:15:00,,,28.2666 +2016-04-24 23:23:21,3528.0,31.0309, +2016-04-24 23:30:00,,,28.3143 +2016-04-24 23:38:16,3527.0,31.0282, +2016-04-24 23:45:00,,,28.3168 +2016-04-24 23:53:10,3526.0,30.9194, +2016-04-25 00:00:00,,,28.3168 +2016-04-25 00:08:04,3524.0,31.0827, +2016-04-25 00:15:00,,,28.3093 +2016-04-25 00:22:58,3523.0,31.0282, +2016-04-25 00:30:00,,,28.3068 +2016-04-25 00:37:52,3523.0,30.9737, +2016-04-25 00:45:00,,,28.3143 +2016-04-25 00:52:46,3522.0,31.1374, +2016-04-25 01:00:00,,,28.3093 +2016-04-25 01:07:41,3522.0,31.1374, +2016-04-25 01:15:00,,,28.259 +2016-04-25 01:22:35,3521.0,31.0827, +2016-04-25 01:30:00,,,28.2089 +2016-04-25 01:37:29,3521.0,30.9221, +2016-04-25 01:45:00,,,28.2565 +2016-04-25 01:52:24,3521.0,30.9682, +2016-04-25 02:00:00,,,28.259 +2016-04-25 02:07:18,3520.0,31.0227, +2016-04-25 02:15:00,,,28.2565 +2016-04-25 02:22:12,3520.0,31.0772, +2016-04-25 02:30:00,,,28.259 +2016-04-25 02:37:06,3519.0,31.1319, +2016-04-25 02:45:00,,,28.2565 +2016-04-25 02:52:00,3518.0,31.06900000000001, +2016-04-25 03:00:00,,,28.259 +2016-04-25 03:06:54,3518.0,31.0144, +2016-04-25 03:15:00,,,28.3093 +2016-04-25 03:21:48,3518.0,31.0144, +2016-04-25 03:30:00,,,28.3093 +2016-04-25 03:36:43,3517.0,30.96, +2016-04-25 03:45:00,,,28.259 +2016-04-25 03:51:37,3517.0,31.0144, +2016-04-25 04:00:00,,,28.3093 +2016-04-25 04:06:31,3517.0,31.0062, +2016-04-25 04:15:00,,,28.3068 +2016-04-25 04:21:25,3517.0,31.0607, +2016-04-25 04:30:00,,,28.2565 +2016-04-25 04:36:19,3516.0,31.0062, +2016-04-25 04:45:00,,,28.3068 +2016-04-25 04:51:13,3516.0,31.0062, +2016-04-25 05:00:00,,,28.259 +2016-04-25 05:06:07,3516.0,31.0607, +2016-04-25 05:15:00,,,28.259 +2016-04-25 05:21:01,3516.0,31.1153, +2016-04-25 05:30:00,,,28.259 +2016-04-25 05:35:55,3516.0,31.0034, +2016-04-25 05:45:00,,,28.3068 +2016-04-25 05:50:49,3516.0,31.0062, +2016-04-25 06:00:00,,,28.3093 +2016-04-25 06:05:43,3516.0,31.0062, +2016-04-25 06:15:00,,,28.259 +2016-04-25 06:20:37,3516.0,31.0062, +2016-04-25 06:30:00,,,28.2565 +2016-04-25 06:35:31,3517.0,30.9518, +2016-04-25 06:45:00,,,28.3093 +2016-04-25 06:50:26,3518.0,31.0062, +2016-04-25 07:00:00,,,28.3093 +2016-04-25 07:05:20,3520.0,30.9518, +2016-04-25 07:15:00,,,28.2565 +2016-04-25 07:20:14,3521.0,30.9979, +2016-04-25 07:30:00,,,28.2565 +2016-04-25 07:35:08,3523.0,30.9518, +2016-04-25 07:45:00,,,28.259 +2016-04-25 07:50:02,3527.0,31.0524, +2016-04-25 08:00:00,,,28.3068 +2016-04-25 08:04:57,3529.0,30.9979, +2016-04-25 08:15:00,,,28.3068 +2016-04-25 08:19:51,3531.0,30.8865, +2016-04-25 08:30:00,,,28.2565 +2016-04-25 08:34:45,3535.0,30.9435, +2016-04-25 08:45:00,,,28.3068 +2016-04-25 08:49:39,3538.0,31.0524, +2016-04-25 09:00:00,,,28.3068 +2016-04-25 09:04:34,3543.0,30.881, +2016-04-25 09:15:00,,,28.2565 +2016-04-25 09:19:28,3546.0,30.9952, +2016-04-25 09:30:00,,,28.3068 +2016-04-25 09:34:23,3550.0,31.0442, +2016-04-25 09:45:00,,,28.2064 +2016-04-25 09:49:17,3553.0,30.8865, +2016-04-25 10:00:00,,,28.259 +2016-04-25 10:04:12,3556.0,30.8268, +2016-04-25 10:15:00,,,28.2565 +2016-04-25 10:19:06,3558.0,30.9353, +2016-04-25 10:30:00,,,28.2465 +2016-04-25 10:34:01,3560.0,30.8892, +2016-04-25 10:45:00,,,28.249 +2016-04-25 10:48:55,3563.0,31.0524, +2016-04-25 11:00:00,,,28.249 +2016-04-25 11:03:50,3564.0,30.9952, +2016-04-25 11:15:00,,,28.2992 +2016-04-25 11:18:45,3565.0,30.8892, +2016-04-25 11:30:00,,,28.249 +2016-04-25 11:33:39,3566.0,31.0524, +2016-04-25 11:45:00,,,28.2992 +2016-04-25 11:48:34,3566.0,30.9979, +2016-04-25 12:00:00,,,28.2039 +2016-04-25 12:03:29,3566.0,30.9952, +2016-04-25 12:15:00,,,28.249 +2016-04-25 12:18:23,3567.0,30.9435, +2016-04-25 12:30:00,,,28.2014 +2016-04-25 12:33:18,3567.0,30.9435, +2016-04-25 12:45:00,,,28.249 +2016-04-25 12:48:13,3569.0,30.9979, +2016-04-25 13:00:00,,,28.1488 +2016-04-25 13:03:07,3570.0,31.1125, +2016-04-25 13:15:00,,,28.249 +2016-04-25 13:18:02,3571.0,31.0034, +2016-04-25 13:30:00,,,28.249 +2016-04-25 13:32:57,3572.0,31.1153, +2016-04-25 13:45:00,,,28.249 +2016-04-25 13:47:52,3574.0,31.0034, +2016-04-25 14:00:00,,,28.2415 +2016-04-25 14:02:46,3576.0,30.949, +2016-04-25 14:15:00,,,28.2415 +2016-04-25 14:17:41,3577.0,31.0607, +2016-04-25 14:30:00,,,28.2515 +2016-04-25 14:32:36,3578.0,31.0034, +2016-04-25 14:45:00,,,28.3495 +2016-04-25 14:47:31,3578.0,30.8947, +2016-04-25 15:00:00,,,28.2415 +2016-04-25 15:02:26,3578.0,30.949, +2016-04-25 15:15:00,,,28.2415 +2016-04-25 15:17:21,3578.0,31.1153, +2016-04-25 15:30:00,,,28.1414 +2016-04-25 15:32:16,3578.0,31.0062, +2016-04-25 15:45:00,,,28.249 +2016-04-25 15:47:11,3577.0,31.0062, +2016-04-25 16:00:00,,,28.244 +2016-04-25 16:02:06,3578.0,31.0579, +2016-04-25 16:15:00,,,28.2415 +2016-04-25 16:17:01,3577.0,31.0034, +2016-04-25 16:30:00,,,28.2917 +2016-04-25 16:31:56,3577.0,31.1236, +2016-04-25 16:45:00,,,28.2415 +2016-04-25 16:46:51,3577.0,31.06900000000001, +2016-04-25 17:00:00,,,28.2415 +2016-04-25 17:01:45,3576.0,31.0662, +2016-04-25 17:15:00,,,28.1939 +2016-04-25 17:16:40,3576.0,31.0144, +2016-04-25 17:30:00,,,28.2415 +2016-04-25 17:31:35,3575.0,31.0662, +2016-04-25 17:45:00,,,28.2415 +2016-04-25 17:46:30,3574.0,30.9057, +2016-04-25 18:00:00,,,28.2415 +2016-04-25 18:01:25,3574.0,30.9112, +2016-04-25 18:15:00,,,28.2415 +2016-04-25 18:16:20,3574.0,31.1291, +2016-04-25 18:30:00,,,28.2415 +2016-04-25 18:31:14,3573.0,31.0199, +2016-04-25 18:45:00,,,28.2415 +2016-04-25 18:46:09,3572.0,31.0772, +2016-04-25 19:00:00,,,28.2415 +2016-04-25 19:01:04,3571.0,31.0227, +2016-04-25 19:15:00,,,28.244 +2016-04-25 19:15:58,3570.0,31.0745, +2016-04-25 19:30:00,,,28.244 +2016-04-25 19:30:53,3569.0,31.0772, +2016-04-25 19:45:00,,,28.2415 +2016-04-25 19:45:48,3568.0,31.0227, +2016-04-25 20:00:00,,,28.2917 +2016-04-25 20:00:42,3566.0,31.0227, +2016-04-25 20:15:00,,,28.2415 +2016-04-25 20:15:37,3565.0,30.9139, +2016-04-25 20:30:00,,,28.2415 +2016-04-25 20:30:32,3564.0,31.0772, +2016-04-25 20:45:00,,,28.2415 +2016-04-25 20:45:26,3563.0,30.9112, +2016-04-25 21:00:00,,,28.2415 +2016-04-25 21:00:28,3561.0,30.9139, +2016-04-25 21:15:00,,,28.2917 +2016-04-25 21:15:23,3559.0,30.9112, +2016-04-25 21:30:00,,,28.244 +2016-04-25 21:30:17,3559.0,31.1319, +2016-04-25 21:45:00,,,28.2415 +2016-04-25 21:45:12,3558.0,31.0199, +2016-04-25 22:00:00,,,28.244 +2016-04-25 22:00:06,3557.0,31.0745, +2016-04-25 22:15:00,,,28.2415 +2016-04-25 22:15:01,3556.0,31.0745, +2016-04-25 22:29:55,3555.0,31.0227, +2016-04-25 22:30:00,,,28.244 +2016-04-25 22:44:50,3554.0,30.9139, +2016-04-25 22:45:00,,,28.2892 +2016-04-25 22:59:44,3552.0,30.9084, +2016-04-25 23:00:00,,,28.2967 +2016-04-25 23:14:38,3551.0,30.9139, +2016-04-25 23:15:00,,,28.244 +2016-04-25 23:29:33,3550.0,31.0772, +2016-04-25 23:30:00,,,28.2415 +2016-04-25 23:44:28,3549.0,31.0117, +2016-04-25 23:45:00,,,28.2917 +2016-04-25 23:59:22,3548.0,30.9029, +2016-04-26 00:00:00,,,28.2415 +2016-04-26 00:14:17,3548.0,31.0662, +2016-04-26 00:15:00,,,28.2942 +2016-04-26 00:29:11,3546.0,30.9057, +2016-04-26 00:30:00,,,28.234 +2016-04-26 00:44:06,3545.0,30.9572, +2016-04-26 00:45:00,,,28.2917 +2016-04-26 00:59:00,3545.0,31.0144, +2016-04-26 01:00:00,,,28.2917 +2016-04-26 01:13:55,3545.0,30.9029, +2016-04-26 01:15:00,,,28.244 +2016-04-26 01:28:49,3545.0,31.0144, +2016-04-26 01:30:00,,,28.2365 +2016-04-26 01:43:43,3545.0,31.0144, +2016-04-26 01:45:00,,,28.2917 +2016-04-26 01:58:38,3544.0,31.0144, +2016-04-26 02:00:00,,,28.2365 +2016-04-26 02:13:32,3544.0,30.9057, +2016-04-26 02:15:00,,,28.2365 +2016-04-26 02:28:27,3543.0,31.0144, +2016-04-26 02:30:00,,,28.2917 +2016-04-26 02:43:21,3543.0,30.8432, +2016-04-26 02:45:00,,,28.2415 +2016-04-26 02:58:15,3542.0,30.9518, +2016-04-26 03:00:00,,,28.2365 +2016-04-26 03:13:10,3542.0,31.0607, +2016-04-26 03:15:00,,,28.2867 +2016-04-26 03:28:04,3542.0,31.0607, +2016-04-26 03:30:00,,,28.2917 +2016-04-26 03:42:59,3541.0,30.8947, +2016-04-26 03:45:00,,,28.234 +2016-04-26 03:57:53,3540.0,31.0607, +2016-04-26 04:00:00,,,28.2415 +2016-04-26 04:12:48,3540.0,31.0062, +2016-04-26 04:15:00,,,28.1864 +2016-04-26 04:27:42,3539.0,30.949, +2016-04-26 04:30:00,,,28.2867 +2016-04-26 04:42:37,3537.0,31.0062, +2016-04-26 04:45:00,,,28.1864 +2016-04-26 04:57:31,3537.0,31.0607, +2016-04-26 05:00:00,,,28.2415 +2016-04-26 05:12:26,3536.0,31.0034, +2016-04-26 05:15:00,,,28.2415 +2016-04-26 05:27:20,3536.0,31.0607, +2016-04-26 05:30:00,,,28.2365 +2016-04-26 05:42:14,3536.0,30.9518, +2016-04-26 05:45:00,,,28.2917 +2016-04-26 05:57:08,3535.0,30.949, +2016-04-26 06:00:00,,,28.2867 +2016-04-26 06:12:03,3534.0,31.0607, +2016-04-26 06:15:00,,,28.2365 +2016-04-26 06:26:57,3534.0,30.949, +2016-04-26 06:30:00,,,28.2365 +2016-04-26 06:41:51,3533.0,31.0062, +2016-04-26 06:45:00,,,28.2917 +2016-04-26 06:56:45,3533.0,31.0062, +2016-04-26 07:00:00,,,28.2465 +2016-04-26 07:11:40,3533.0,31.0034, +2016-04-26 07:15:00,,,28.2365 +2016-04-26 07:26:34,3533.0,31.1153, +2016-04-26 07:30:00,,,28.2917 +2016-04-26 07:41:28,3533.0,30.8974, +2016-04-26 07:45:00,,,28.2365 +2016-04-26 07:56:23,3535.0,30.9518, +2016-04-26 08:00:00,,,28.2365 +2016-04-26 08:11:17,3536.0,31.0034, +2016-04-26 08:15:00,,,28.2365 +2016-04-26 08:26:12,3537.0,30.8947, +2016-04-26 08:30:00,,,28.1864 +2016-04-26 08:41:06,3539.0,30.9518, +2016-04-26 08:45:00,,,28.1864 +2016-04-26 08:56:01,3542.0,30.8974, +2016-04-26 09:00:00,,,28.2867 +2016-04-26 09:10:55,3544.0,31.0034, +2016-04-26 09:15:00,,,28.2365 +2016-04-26 09:25:50,3546.0,30.8865, +2016-04-26 09:30:00,,,28.2365 +2016-04-26 09:40:44,3549.0,30.9435, +2016-04-26 09:45:00,,,28.2365 +2016-04-26 09:55:39,3551.0,30.9435, +2016-04-26 10:00:00,,,28.2867 +2016-04-26 10:10:34,3553.0,30.9435, +2016-04-26 10:15:00,,,28.234 +2016-04-26 10:25:29,3555.0,30.9979, +2016-04-26 10:30:00,,,28.2365 +2016-04-26 10:40:24,3557.0,30.8323, +2016-04-26 10:45:00,,,28.2315 +2016-04-26 10:55:18,3559.0,30.8865, +2016-04-26 11:00:00,,,28.2365 +2016-04-26 11:10:13,3559.0,30.8323, +2016-04-26 11:15:00,,,28.2817 +2016-04-26 11:25:08,3561.0,30.8892, +2016-04-26 11:30:00,,,28.1864 +2016-04-26 11:40:03,3563.0,31.0034, +2016-04-26 11:45:00,,,28.234 +2016-04-26 11:54:58,3564.0,30.835, +2016-04-26 12:00:00,,,28.1364 +2016-04-26 12:09:53,3566.0,30.835, +2016-04-26 12:15:00,,,28.2365 +2016-04-26 12:24:47,3566.0,31.0062, +2016-04-26 12:30:00,,,28.2365 +2016-04-26 12:39:42,3567.0,31.0579, +2016-04-26 12:45:00,,,28.234 +2016-04-26 12:54:37,3569.0,30.9518, +2016-04-26 13:00:00,,,28.1864 +2016-04-26 13:09:31,3570.0,31.0034, +2016-04-26 13:15:00,,,28.1364 +2016-04-26 13:24:26,3571.0,31.0034, +2016-04-26 13:30:00,,,28.2842 +2016-04-26 13:39:21,3572.0,31.0034, +2016-04-26 13:45:00,,,28.2365 +2016-04-26 13:54:16,3572.0,31.0579, +2016-04-26 14:00:00,,,28.2365 +2016-04-26 14:09:11,3572.0,31.0579, +2016-04-26 14:15:00,,,28.1364 +2016-04-26 14:24:06,3571.0,31.0579, +2016-04-26 14:30:00,,,28.1864 +2016-04-26 14:39:01,3571.0,31.0034, +2016-04-26 14:45:00,,,28.234 +2016-04-26 14:53:55,3570.0,30.949, +2016-04-26 15:00:00,,,28.2365 +2016-04-26 15:08:50,3570.0,31.0607, +2016-04-26 15:15:00,,,28.2365 +2016-04-26 15:23:45,3568.0,31.0034, +2016-04-26 15:30:00,,,28.2365 +2016-04-26 15:38:39,3567.0,31.0034, +2016-04-26 15:45:00,,,28.234 +2016-04-26 15:53:34,3566.0,31.0062, +2016-04-26 16:00:00,,,28.2365 +2016-04-26 16:08:29,3565.0,31.1153, +2016-04-26 16:15:00,,,28.1864 +2016-04-26 16:23:24,3564.0,30.949, +2016-04-26 16:30:00,,,28.1864 +2016-04-26 16:38:19,3562.0,30.9518, +2016-04-26 16:45:00,,,28.2867 +2016-04-26 16:53:13,3560.0,30.8432, +2016-04-26 17:00:00,,,28.2867 +2016-04-26 17:08:08,3559.0,31.0607, +2016-04-26 17:15:00,,,28.1839 +2016-04-26 17:23:14,3556.0,31.0062, +2016-04-26 17:30:00,,,28.2867 +2016-04-26 17:38:46,3552.0,30.8405, +2016-04-26 17:45:00,,,28.2365 +2016-04-26 17:53:40,3551.0,31.0034, +2016-04-26 18:00:00,,,28.2365 +2016-04-26 18:08:35,3549.0,30.8432, +2016-04-26 18:15:00,,,28.2867 +2016-04-26 18:23:29,3549.0,31.0607, +2016-04-26 18:30:00,,,28.2365 +2016-04-26 18:38:24,3547.0,31.0034, +2016-04-26 18:45:00,,,28.2365 +2016-04-26 18:53:18,3546.0,30.9518, +2016-04-26 19:00:00,,,28.234 +2016-04-26 19:08:13,3545.0,31.0607, +2016-04-26 19:15:00,,,28.2867 +2016-04-26 19:23:07,3545.0,31.1153, +2016-04-26 19:30:00,,,28.1364 +2016-04-26 19:38:02,3545.0,31.1153, +2016-04-26 19:45:00,,,28.2365 +2016-04-26 19:52:56,3544.0,31.1673, +2016-04-26 20:00:00,,,28.2365 +2016-04-26 20:07:51,3543.0,31.1153, +2016-04-26 20:15:00,,,28.234 +2016-04-26 20:22:45,3542.0,31.1673, +2016-04-26 20:30:00,,,28.2365 +2016-04-26 20:37:40,3541.0,31.0607, +2016-04-26 20:45:00,,,28.1364 +2016-04-26 20:52:34,3539.0,31.2221, +2016-04-26 21:00:00,,,28.2867 +2016-04-26 21:07:28,3538.0,31.17, +2016-04-26 21:15:00,,,28.2842 +2016-04-26 21:22:23,3537.0,31.2249, +2016-04-26 21:30:00,,,28.2365 +2016-04-26 21:37:17,3537.0,31.0579, +2016-04-26 21:45:00,,,28.2867 +2016-04-26 21:52:12,3536.0,31.1153, +2016-04-26 22:00:00,,,28.2892 +2016-04-26 22:07:06,3536.0,31.1153, +2016-04-26 22:15:00,,,28.2365 +2016-04-26 22:22:00,3536.0,31.1153, +2016-04-26 22:30:00,,,28.2365 +2016-04-26 22:36:55,3536.0,31.1153, +2016-04-26 22:45:00,,,28.2365 +2016-04-26 22:51:49,3536.0,31.1125, +2016-04-26 23:00:00,,,28.2842 +2016-04-26 23:06:44,3537.0,31.0607, +2016-04-26 23:15:00,,,28.234 +2016-04-26 23:21:38,3537.0,31.0607, +2016-04-26 23:30:00,,,28.2365 +2016-04-26 23:36:32,3537.0,31.2249, +2016-04-26 23:45:00,,,28.2365 +2016-04-26 23:51:27,3537.0,31.107, +2016-04-27 00:00:00,,,28.2867 +2016-04-27 00:06:21,3537.0,31.0524, +2016-04-27 00:15:00,,,28.2842 +2016-04-27 00:21:15,3537.0,31.2166, +2016-04-27 00:30:00,,,28.1864 +2016-04-27 00:36:10,3537.0,31.1617, +2016-04-27 00:45:00,,,28.2365 +2016-04-27 00:51:04,3537.0,31.2166, +2016-04-27 01:00:00,,,28.1839 +2016-04-27 01:05:58,3537.0,31.1617, +2016-04-27 01:15:00,,,28.2365 +2016-04-27 01:20:52,3537.0,31.0524, +2016-04-27 01:30:00,,,28.234 +2016-04-27 01:35:47,3537.0,31.1617, +2016-04-27 01:45:00,,,28.1864 +2016-04-27 01:50:41,3537.0,30.9897, +2016-04-27 02:00:00,,,28.2365 +2016-04-27 02:05:35,3536.0,31.107, +2016-04-27 02:15:00,,,28.2365 +2016-04-27 02:20:29,3536.0,31.1015, +2016-04-27 02:30:00,,,28.2315 +2016-04-27 02:35:23,3537.0,31.0987, +2016-04-27 02:45:00,,,28.2867 +2016-04-27 02:50:17,3536.0,31.0987, +2016-04-27 03:00:00,,,28.2365 +2016-04-27 03:05:22,3536.0,31.1534, +2016-04-27 03:15:00,,,28.2867 +2016-04-27 03:20:55,3536.0,31.1534, +2016-04-27 03:30:00,,,28.2867 +2016-04-27 03:35:49,3536.0,31.0987, +2016-04-27 03:45:00,,,28.1864 +2016-04-27 03:50:43,3537.0,31.1015, +2016-04-27 04:00:00,,,28.234 +2016-04-27 04:05:38,3537.0,31.0442, +2016-04-27 04:15:00,,,28.2867 +2016-04-27 04:20:32,3537.0,31.0469, +2016-04-27 04:30:00,,,28.2365 +2016-04-27 04:35:26,3537.0,31.0877, +2016-04-27 04:45:00,,,28.2365 +2016-04-27 04:50:21,3537.0,31.0386, +2016-04-27 05:00:00,,,28.2365 +2016-04-27 05:05:15,3538.0,31.0905, +2016-04-27 05:15:00,,,28.2867 +2016-04-27 05:20:10,3538.0,31.1999, +2016-04-27 05:30:00,,,28.2365 +2016-04-27 05:35:04,3538.0,31.0932, +2016-04-27 05:45:00,,,28.1864 +2016-04-27 05:49:59,3538.0,31.0932, +2016-04-27 06:00:00,,,28.2842 +2016-04-27 06:04:53,3538.0,31.0331, +2016-04-27 06:15:00,,,28.234 +2016-04-27 06:19:47,3538.0,31.0905, +2016-04-27 06:30:00,,,28.2365 +2016-04-27 06:34:41,3539.0,31.0386, +2016-04-27 06:45:00,,,28.234 +2016-04-27 06:49:36,3539.0,31.0905, +2016-04-27 07:00:00,,,28.1864 +2016-04-27 07:04:30,3540.0,31.0359, +2016-04-27 07:15:00,,,28.234 +2016-04-27 07:19:25,3540.0,31.0359, +2016-04-27 07:30:00,,,28.234 +2016-04-27 07:34:19,3541.0,31.0905, +2016-04-27 07:45:00,,,28.2867 +2016-04-27 07:49:14,3542.0,30.9814, +2016-04-27 08:00:00,,,28.2365 +2016-04-27 08:04:08,3543.0,31.1999, +2016-04-27 08:15:00,,,28.2365 +2016-04-27 08:19:10,3544.0,31.0359, +2016-04-27 08:30:00,,,28.2365 +2016-04-27 08:34:04,3545.0,31.0331, +2016-04-27 08:45:00,,,28.1864 +2016-04-27 08:48:59,3546.0,31.0905, +2016-04-27 09:00:00,,,28.2365 +2016-04-27 09:03:53,3549.0,31.0331, +2016-04-27 09:15:00,,,28.2842 +2016-04-27 09:18:48,3550.0,31.0331, +2016-04-27 09:30:00,,,28.234 +2016-04-27 09:33:43,3551.0,31.0331, +2016-04-27 09:45:00,,,28.1864 +2016-04-27 09:48:37,3552.0,31.2027, +2016-04-27 10:00:00,,,28.2315 +2016-04-27 10:03:31,3552.0,31.0877, +2016-04-27 10:15:00,,,28.2265 +2016-04-27 10:18:26,3553.0,31.0932, +2016-04-27 10:30:00,,,28.1864 +2016-04-27 10:33:21,3553.0,31.1424, +2016-04-27 10:45:00,,,28.1889 +2016-04-27 10:48:15,3554.0,31.1999, +2016-04-27 11:00:00,,,28.229 +2016-04-27 11:03:10,3554.0,31.0386, +2016-04-27 11:15:00,,,28.1864 +2016-04-27 11:18:05,3554.0,31.0877, +2016-04-27 11:30:00,,,28.2365 +2016-04-27 11:32:59,3555.0,31.0331, +2016-04-27 11:45:00,,,28.1789 +2016-04-27 11:48:01,3554.0,31.0877, +2016-04-27 12:00:00,,,28.1364 +2016-04-27 12:02:56,3554.0,31.1999, +2016-04-27 12:15:00,,,28.2791 +2016-04-27 12:17:50,3555.0,30.9814, +2016-04-27 12:30:00,,,28.1789 +2016-04-27 12:32:45,3555.0,31.0386, +2016-04-27 12:45:00,,,28.1864 +2016-04-27 12:47:40,3556.0,31.0359, +2016-04-27 13:00:00,,,28.1764 +2016-04-27 13:02:35,3556.0,31.0877, +2016-04-27 13:15:00,,,28.1789 +2016-04-27 13:17:29,3557.0,31.0905, +2016-04-27 13:30:00,,,28.229 +2016-04-27 13:32:24,3557.0,30.9842, +2016-04-27 13:45:00,,,28.229 +2016-04-27 13:47:18,3557.0,31.0359, +2016-04-27 14:00:00,,,28.2265 +2016-04-27 14:02:13,3558.0,31.0359, +2016-04-27 14:15:00,,,28.2265 +2016-04-27 14:17:08,3557.0,31.0877, +2016-04-27 14:30:00,,,28.2791 +2016-04-27 14:32:03,3558.0,31.0905, +2016-04-27 14:45:00,,,28.2791 +2016-04-27 14:46:57,3558.0,31.0386, +2016-04-27 15:00:00,,,28.2791 +2016-04-27 15:01:52,3558.0,31.0331, +2016-04-27 15:15:00,,,28.2791 +2016-04-27 15:16:47,3558.0,31.0331, +2016-04-27 15:30:00,,,28.1789 +2016-04-27 15:31:42,3558.0,31.0877, +2016-04-27 15:45:00,,,28.1789 +2016-04-27 15:46:36,3557.0,31.1424, +2016-04-27 16:00:00,,,28.2265 +2016-04-27 16:01:31,3557.0,31.0877, +2016-04-27 16:15:00,,,28.2265 +2016-04-27 16:16:26,3557.0,31.0331, +2016-04-27 16:30:00,,,28.2239 +2016-04-27 16:31:20,3558.0,30.9814, +2016-04-27 16:45:00,,,28.1789 +2016-04-27 16:46:15,3558.0,31.0414, +2016-04-27 17:00:00,,,28.229 +2016-04-27 17:01:10,3557.0,31.0331, +2016-04-27 17:15:00,,,28.2791 +2016-04-27 17:16:04,3556.0,31.0469, +2016-04-27 17:30:00,,,28.1764 +2016-04-27 17:30:59,3555.0,31.2082, +2016-04-27 17:45:00,,,28.2265 +2016-04-27 17:45:54,3554.0,31.0469, +2016-04-27 18:00:00,,,28.2265 +2016-04-27 18:00:48,3553.0,30.9353, +2016-04-27 18:15:00,,,28.1764 +2016-04-27 18:15:43,3552.0,30.9869, +2016-04-27 18:30:00,,,28.1764 +2016-04-27 18:30:38,3552.0,30.9869, +2016-04-27 18:45:00,,,28.229 +2016-04-27 18:45:32,3551.0,31.0414, +2016-04-27 19:00:00,,,28.229 +2016-04-27 19:00:27,3551.0,30.9353, +2016-04-27 19:15:00,,,28.1789 +2016-04-27 19:15:22,3550.0,31.1015, +2016-04-27 19:30:00,,,28.229 +2016-04-27 19:30:16,3549.0,30.9924, +2016-04-27 19:45:00,,,28.229 +2016-04-27 19:45:10,3547.0,31.1015, +2016-04-27 20:00:00,,,28.1764 +2016-04-27 20:00:05,3545.0,31.0987, +2016-04-27 20:14:59,3544.0,31.0469, +2016-04-27 20:15:00,,,28.229 +2016-04-27 20:29:53,3543.0,31.3182, +2016-04-27 20:30:00,,,28.2265 +2016-04-27 20:44:48,3541.0,31.2631, +2016-04-27 20:45:00,,,28.229 +2016-04-27 20:59:42,3539.0,31.2082, +2016-04-27 21:00:00,,,28.2265 +2016-04-27 21:14:37,3537.0,31.2659, +2016-04-27 21:15:00,,,28.1764 +2016-04-27 21:29:31,3537.0,31.3182, +2016-04-27 21:30:00,,,28.229 +2016-04-27 21:44:25,3536.0,31.211, +2016-04-27 21:45:00,,,28.229 +2016-04-27 21:59:20,3535.0,31.3098, +2016-04-27 22:00:00,,,28.1264 +2016-04-27 22:14:14,3534.0,31.1999, +2016-04-27 22:15:00,,,28.4302 +2016-04-27 22:29:08,3533.0,31.1999, +2016-04-27 22:30:00,,,28.4732 +2016-04-27 22:44:03,3532.0,31.3098, +2016-04-27 22:45:00,,,28.3722 +2016-04-27 22:58:57,3532.0,31.2576, +2016-04-27 23:00:00,,,28.4302 +2016-04-27 23:13:52,3531.0,31.1999, +2016-04-27 23:15:00,,,28.3798 +2016-04-27 23:28:46,3530.0,31.2548, +2016-04-27 23:30:00,,,28.4302 +2016-04-27 23:43:40,3530.0,31.3126, +2016-04-27 23:45:00,,,28.3722 +2016-04-27 23:58:35,3529.0,31.2548, +2016-04-28 00:00:00,,,28.3294 +2016-04-28 00:13:29,3528.0,31.1999, +2016-04-28 00:15:00,,,28.3219 +2016-04-28 00:28:23,3528.0,31.2548, +2016-04-28 00:30:00,,,28.3722 +2016-04-28 00:43:17,3528.0,31.2548, +2016-04-28 00:45:00,,,28.4302 +2016-04-28 00:58:12,3527.0,31.1452, +2016-04-28 01:00:00,,,28.3194 +2016-04-28 01:13:06,3528.0,31.1999, +2016-04-28 01:15:00,,,28.3219 +2016-04-28 01:28:00,3527.0,31.2027, +2016-04-28 01:30:00,,,28.3722 +2016-04-28 01:42:54,3527.0,31.2027, +2016-04-28 01:45:00,,,28.3798 +2016-04-28 01:57:49,3527.0,31.2548, +2016-04-28 02:00:00,,,28.3219 +2016-04-28 02:12:43,3526.0,31.2576, +2016-04-28 02:15:00,,,28.4227 +2016-04-28 02:27:37,3526.0,31.2548, +2016-04-28 02:30:00,,,28.3294 +2016-04-28 02:42:31,3526.0,31.3126, +2016-04-28 02:45:00,,,28.4227 +2016-04-28 02:57:25,3525.0,31.1999, +2016-04-28 03:00:00,,,28.3798 +2016-04-28 03:12:19,3524.0,31.2576, +2016-04-28 03:15:00,,,28.4227 +2016-04-28 03:27:14,3524.0,31.2493, +2016-04-28 03:30:00,,,28.3219 +2016-04-28 03:42:08,3523.0,31.2493, +2016-04-28 03:45:00,,,28.4227 +2016-04-28 03:57:02,3523.0,31.1916, +2016-04-28 04:00:00,,,28.3219 +2016-04-28 04:11:57,3523.0,31.2493, +2016-04-28 04:15:00,,,28.4227 +2016-04-28 04:26:51,3522.0,31.2493, +2016-04-28 04:30:00,,,28.3722 +2016-04-28 04:41:45,3522.0,31.2493, +2016-04-28 04:45:00,,,28.3219 +2016-04-28 04:56:40,3522.0,31.3043, +2016-04-28 05:00:00,,,28.2716 +2016-04-28 05:11:34,3522.0,31.2959, +2016-04-28 05:15:00,,,28.3722 +2016-04-28 05:26:28,3521.0,31.1313, +2016-04-28 05:30:00,,,28.4227 +2016-04-28 05:41:22,3521.0,31.2959, +2016-04-28 05:45:00,,,28.3722 +2016-04-28 05:56:17,3522.0,31.5169, +2016-04-28 06:00:00,,,28.4201 +2016-04-28 06:11:11,3522.0,31.241, +2016-04-28 06:15:00,,,28.3722 +2016-04-28 06:26:05,3523.0,31.2959, +2016-04-28 06:30:00,,,28.4227 +2016-04-28 06:41:00,3524.0,31.2959, +2016-04-28 06:45:00,,,28.3219 +2016-04-28 06:55:54,3525.0,31.1778, +2016-04-28 07:00:00,,,28.3219 +2016-04-28 07:10:48,3527.0,31.175, +2016-04-28 07:15:00,,,28.3747 +2016-04-28 07:25:43,3529.0,31.2299, +2016-04-28 07:30:00,,,28.3722 +2016-04-28 07:40:37,3530.0,31.395, +2016-04-28 07:45:00,,,28.4227 +2016-04-28 07:55:31,3531.0,31.3399, +2016-04-28 08:00:00,,,28.3219 +2016-04-28 08:10:26,3534.0,31.2848, +2016-04-28 08:15:00,,,28.4201 +2016-04-28 08:25:20,3536.0,31.175, +2016-04-28 08:30:00,,,28.3219 +2016-04-28 08:40:14,3538.0,31.3399, +2016-04-28 08:45:00,,,28.3722 +2016-04-28 08:55:09,3542.0,31.3399, +2016-04-28 09:00:00,,,28.3143 +2016-04-28 09:10:03,3545.0,31.2848, +2016-04-28 09:15:00,,,28.3697 +2016-04-28 09:24:58,3548.0,31.2848, +2016-04-28 09:30:00,,,28.3219 +2016-04-28 09:39:53,3550.0,31.2848, +2016-04-28 09:45:00,,,28.3219 +2016-04-28 09:54:47,3554.0,31.395, +2016-04-28 10:00:00,,,28.3722 +2016-04-28 10:09:42,3556.0,31.2848, +2016-04-28 10:15:00,,,28.3194 +2016-04-28 10:24:37,3558.0,31.395, +2016-04-28 10:30:00,,,28.3622 +2016-04-28 10:39:32,3559.0,31.2299, +2016-04-28 10:45:00,,,28.3622 +2016-04-28 10:54:26,3560.0,31.395, +2016-04-28 11:00:00,,,28.4656 +2016-04-28 11:09:21,3561.0,31.2848, +2016-04-28 11:15:00,,,28.3143 +2016-04-28 11:24:16,3561.0,31.2848, +2016-04-28 11:30:00,,,28.3118 +2016-04-28 11:39:10,3563.0,31.2848, +2016-04-28 11:45:00,,,28.2641 +2016-04-28 11:54:05,3563.0,31.2382, +2016-04-28 12:00:00,,,28.3143 +2016-04-28 12:09:00,3563.0,31.2932, +2016-04-28 12:15:00,,,28.3143 +2016-04-28 12:23:55,3563.0,31.4062, +2016-04-28 12:30:00,,,28.3118 +2016-04-28 12:38:49,3564.0,31.4587, +2016-04-28 12:45:00,,,28.3143 +2016-04-28 12:53:44,3564.0,31.2382, +2016-04-28 13:00:00,,,28.4126 +2016-04-28 13:08:39,3566.0,31.241, +2016-04-28 13:15:00,,,28.2641 +2016-04-28 13:23:34,3569.0,31.2932, +2016-04-28 13:30:00,,,28.3143 +2016-04-28 13:38:29,3571.0,31.1916, +2016-04-28 13:45:00,,,28.3143 +2016-04-28 13:53:24,3573.0,31.4698, +2016-04-28 14:00:00,,,28.3622 +2016-04-28 14:08:19,3573.0,31.1916, +2016-04-28 14:15:00,,,28.4151 +2016-04-28 14:23:14,3573.0,31.1916, +2016-04-28 14:30:00,,,28.3647 +2016-04-28 14:38:09,3573.0,31.1916, +2016-04-28 14:45:00,,,28.3143 +2016-04-28 14:53:04,3573.0,31.2027, +2016-04-28 15:00:00,,,28.2641 +2016-04-28 15:07:59,3573.0,31.3098, +2016-04-28 15:15:00,,,28.3647 +2016-04-28 15:23:01,3573.0,31.3621, +2016-04-28 15:30:00,,,28.3622 +2016-04-28 15:37:56,3573.0,31.3649, +2016-04-28 15:45:00,,,28.2616 +2016-04-28 15:52:50,3573.0,31.3621, +2016-04-28 16:00:00,,,28.3143 +2016-04-28 16:07:45,3571.0,31.4173, +2016-04-28 16:15:00,,,28.4126 +2016-04-28 16:22:40,3569.0,31.4201, +2016-04-28 16:30:00,,,28.3647 +2016-04-28 16:37:35,3568.0,31.4201, +2016-04-28 16:45:00,,,28.3143 +2016-04-28 16:52:30,3566.0,31.3621, +2016-04-28 17:00:00,,,28.2641 +2016-04-28 17:07:24,3566.0,31.307, +2016-04-28 17:15:00,,,28.3143 +2016-04-28 17:22:19,3565.0,31.2521, +2016-04-28 17:30:00,,,28.3143 +2016-04-28 17:37:14,3565.0,31.4754, +2016-04-28 17:45:00,,,28.3143 +2016-04-28 17:52:09,3564.0,31.4201, +2016-04-28 18:00:00,,,28.3143 +2016-04-28 18:07:03,3563.0,31.3621, +2016-04-28 18:15:00,,,28.3647 +2016-04-28 18:21:58,3562.0,31.3733, +2016-04-28 18:30:00,,,28.3143 +2016-04-28 18:36:53,3561.0,31.3182, +2016-04-28 18:45:00,,,28.3143 +2016-04-28 18:51:48,3560.0,31.4285, +2016-04-28 19:00:00,,,28.2641 +2016-04-28 19:06:42,3559.0,31.3733, +2016-04-28 19:15:00,,,28.3118 +2016-04-28 19:21:36,3558.0,31.4285, +2016-04-28 19:30:00,,,28.3143 +2016-04-28 19:36:38,3557.0,31.3761, +2016-04-28 19:45:00,,,28.2616 +2016-04-28 19:51:33,3556.0,31.3705, +2016-04-28 20:00:00,,,28.4151 +2016-04-28 20:06:27,3555.0,31.2631, +2016-04-28 20:15:00,,,28.3143 +2016-04-28 20:21:22,3552.0,31.4257, +2016-04-28 20:30:00,,,28.3622 +2016-04-28 20:36:16,3551.0,31.5392, +2016-04-28 20:45:00,,,28.4126 +2016-04-28 20:51:11,3549.0,31.2659, +2016-04-28 21:00:00,,,28.4126 +2016-04-28 21:06:05,3547.0,31.3182, +2016-04-28 21:15:00,,,28.3143 +2016-04-28 21:21:00,3545.0,31.3182, +2016-04-28 21:30:00,,,28.3143 +2016-04-28 21:35:54,3544.0,31.3182, +2016-04-28 21:45:00,,,28.3143 +2016-04-28 21:50:49,3542.0,31.4313, +2016-04-28 22:00:00,,,28.3143 +2016-04-28 22:05:43,3540.0,31.3209, +2016-04-28 22:15:00,,,28.3143 +2016-04-28 22:20:38,3539.0,31.3209, +2016-04-28 22:30:00,,,28.4151 +2016-04-28 22:35:32,3537.0,31.3209, +2016-04-28 22:45:00,,,28.4151 +2016-04-28 22:50:33,3536.0,31.4201, +2016-04-28 23:00:00,,,28.4656 +2016-04-28 23:05:28,3535.0,31.3761, +2016-04-28 23:15:00,,,28.3647 +2016-04-28 23:20:22,3534.0,31.4201, +2016-04-28 23:30:00,,,28.3143 +2016-04-28 23:35:16,3531.0,31.4782, +2016-04-28 23:45:00,,,28.3647 +2016-04-28 23:50:11,3531.0,31.3098, +2016-04-29 00:00:00,,,28.3647 +2016-04-29 00:05:05,3530.0,31.4782, +2016-04-29 00:15:00,,,28.3647 +2016-04-29 00:20:00,3530.0,31.4201, +2016-04-29 00:30:00,,,28.4151 +2016-04-29 00:34:54,3529.0,31.3677, +2016-04-29 00:45:00,,,28.4656 +2016-04-29 00:49:48,3528.0,31.4173, +2016-04-29 01:00:00,,,28.3143 +2016-04-29 01:04:42,3527.0,31.4173, +2016-04-29 01:15:00,,,28.3143 +2016-04-29 01:19:36,3526.0,31.3649, +2016-04-29 01:30:00,,,28.4151 +2016-04-29 01:34:31,3525.0,31.3621, +2016-04-29 01:45:00,,,28.3143 +2016-04-29 01:49:25,3524.0,31.3649, +2016-04-29 02:00:00,,,28.4656 +2016-04-29 02:04:19,3523.0,31.4726, +2016-04-29 02:15:00,,,28.3672 +2016-04-29 02:19:14,3523.0,31.4782, +2016-04-29 02:30:00,,,28.5162 +2016-04-29 02:34:08,3523.0,31.4229, +2016-04-29 02:45:00,,,28.5137 +2016-04-29 02:49:03,3523.0,31.4229, +2016-04-29 03:00:00,,,28.4656 +2016-04-29 03:03:57,3522.0,31.4201, +2016-04-29 03:15:00,,,28.5162 +2016-04-29 03:18:51,3522.0,31.4201, +2016-04-29 03:30:00,,,28.4151 +2016-04-29 03:33:46,3522.0,31.4118, +2016-04-29 03:45:00,,,28.4656 +2016-04-29 03:48:40,3521.0,31.4145, +2016-04-29 04:00:00,,,28.4656 +2016-04-29 04:03:34,3521.0,31.4698, +2016-04-29 04:15:00,,,28.5162 +2016-04-29 04:18:29,3521.0,31.3594, +2016-04-29 04:30:00,,,28.3143 +2016-04-29 04:33:23,3521.0,31.3566, +2016-04-29 04:45:00,,,28.4656 +2016-04-29 04:48:17,3521.0,31.4698, +2016-04-29 05:00:00,,,28.4656 +2016-04-29 05:03:11,3521.0,31.3043, +2016-04-29 05:15:00,,,28.3143 +2016-04-29 05:18:06,3521.0,31.4062, +2016-04-29 05:30:00,,,28.4151 +2016-04-29 05:33:00,3520.0,31.351, +2016-04-29 05:45:00,,,28.3143 +2016-04-29 05:48:01,3520.0,31.5169, +2016-04-29 06:00:00,,,28.3647 +2016-04-29 06:02:56,3520.0,31.351, +2016-04-29 06:15:00,,,28.4656 +2016-04-29 06:17:50,3521.0,31.4062, +2016-04-29 06:30:00,,,28.3118 +2016-04-29 06:32:44,3521.0,31.395, +2016-04-29 06:45:00,,,28.4151 +2016-04-29 06:47:38,3522.0,31.395, +2016-04-29 07:00:00,,,28.4656 +2016-04-29 07:02:40,3524.0,31.395, +2016-04-29 07:15:00,,,28.4656 +2016-04-29 07:17:34,3526.0,31.3978, +2016-04-29 07:30:00,,,28.3143 +2016-04-29 07:32:28,3529.0,31.395, +2016-04-29 07:45:00,,,28.3143 +2016-04-29 07:47:23,3531.0,31.395, +2016-04-29 08:00:00,,,28.3143 +2016-04-29 08:02:17,3535.0,31.4503, +2016-04-29 08:15:00,,,28.3647 +2016-04-29 08:17:12,3539.0,31.395, +2016-04-29 08:30:00,,,28.2616 +2016-04-29 08:32:06,3544.0,31.2848, +2016-04-29 08:45:00,,,28.3143 +2016-04-29 08:47:01,3547.0,31.395, +2016-04-29 09:00:00,,,28.4151 +2016-04-29 09:01:56,3552.0,31.2848, +2016-04-29 09:15:00,,,28.3647 +2016-04-29 09:16:51,3556.0,31.2848, +2016-04-29 09:30:00,,,28.2641 +2016-04-29 09:31:46,3559.0,31.2848, +2016-04-29 09:45:00,,,28.2616 +2016-04-29 09:46:40,3563.0,31.2848, +2016-04-29 10:00:00,,,28.3143 +2016-04-29 10:01:35,3566.0,31.4503, +2016-04-29 10:15:00,,,28.3118 +2016-04-29 10:16:30,3571.0,31.3399, +2016-04-29 10:30:00,,,28.2641 +2016-04-29 10:31:25,3574.0,31.2848, +2016-04-29 10:45:00,,,28.3647 +2016-04-29 10:46:20,3575.0,31.395, +2016-04-29 11:00:00,,,28.2641 +2016-04-29 11:01:15,3577.0,31.2848, +2016-04-29 11:15:00,,,28.4151 +2016-04-29 11:16:10,3577.0,31.395, +2016-04-29 11:30:00,,,28.2641 +2016-04-29 11:31:05,3577.0,31.4034, +2016-04-29 11:45:00,,,28.2641 +2016-04-29 11:46:00,3577.0,31.4587, +2016-04-29 12:00:00,,,28.2616 +2016-04-29 12:00:55,3577.0,31.2932, +2016-04-29 12:15:00,,,28.3143 +2016-04-29 12:15:57,3577.0,31.1833, +2016-04-29 12:30:00,,,28.2616 +2016-04-29 12:30:52,3577.0,31.4034, +2016-04-29 12:45:00,,,28.3143 +2016-04-29 12:45:47,3577.0,31.2465, +2016-04-29 13:00:00,,,28.3143 +2016-04-29 13:00:42,3577.0,31.2465, +2016-04-29 13:15:00,,,28.3143 +2016-04-29 13:15:38,3578.0,31.1916, +2016-04-29 13:30:00,,,28.3143 +2016-04-29 13:30:33,3578.0,31.1916, +2016-04-29 13:45:00,,,28.3118 +2016-04-29 13:45:28,3578.0,31.2465, +2016-04-29 14:00:00,,,28.3118 +2016-04-29 14:00:23,3579.0,31.2521, +2016-04-29 14:15:00,,,28.2641 +2016-04-29 14:15:18,3580.0,31.1424, +2016-04-29 14:30:00,,,28.3118 +2016-04-29 14:30:13,3581.0,31.1972, +2016-04-29 14:45:00,,,28.3143 +2016-04-29 14:45:09,3582.0,31.1972, +2016-04-29 15:00:00,,,28.4126 +2016-04-29 15:00:04,3583.0,31.1972, +2016-04-29 15:14:59,3585.0,31.2027, +2016-04-29 15:15:00,,,28.3118 +2016-04-29 15:29:55,3586.0,31.3098, +2016-04-29 15:30:00,,,28.2616 +2016-04-29 15:44:50,3587.0,31.1999, +2016-04-29 15:45:00,,,28.2641 +2016-04-29 15:59:45,3587.0,31.2521, +2016-04-29 16:00:00,,,28.2616 +2016-04-29 16:14:40,3587.0,31.2521, +2016-04-29 16:15:00,,,28.2641 +2016-04-29 16:29:36,3588.0,31.2548, +2016-04-29 16:30:00,,,28.3647 +2016-04-29 16:44:31,3587.0,31.3154, +2016-04-29 16:45:00,,,28.3118 +2016-04-29 16:59:26,3587.0,31.2631, +2016-04-29 17:00:00,,,28.2641 +2016-04-29 17:14:21,3587.0,31.3209, +2016-04-29 17:15:00,,,28.2641 +2016-04-29 17:29:17,3587.0,31.2055, +2016-04-29 17:30:00,,,28.3118 +2016-04-29 17:44:12,3587.0,31.3237, +2016-04-29 17:45:00,,,28.3143 +2016-04-29 17:59:07,3587.0,31.3265, +2016-04-29 18:00:00,,,28.3118 +2016-04-29 18:14:02,3586.0,31.2687, +2016-04-29 18:15:00,,,28.3118 +2016-04-29 18:28:57,3586.0,31.3816, +2016-04-29 18:30:00,,,28.2641 +2016-04-29 18:43:53,3585.0,31.277, +2016-04-29 18:45:00,,,28.3118 +2016-04-29 18:58:48,3585.0,31.3348, +2016-04-29 19:00:00,,,28.2616 +2016-04-29 19:13:43,3584.0,31.2798, +2016-04-29 19:15:00,,,28.3143 +2016-04-29 19:28:38,3582.0,31.277, +2016-04-29 19:30:00,,,28.3118 +2016-04-29 19:43:40,3581.0,31.3348, +2016-04-29 19:45:00,,,28.3118 +2016-04-29 19:58:35,3580.0,31.2221, +2016-04-29 20:00:00,,,28.3143 +2016-04-29 20:13:30,3578.0,31.2798, +2016-04-29 20:15:00,,,28.2641 +2016-04-29 20:28:25,3576.0,31.4424, +2016-04-29 20:30:00,,,28.3622 +2016-04-29 20:43:20,3574.0,31.2798, +2016-04-29 20:45:00,,,28.3143 +2016-04-29 20:58:15,3573.0,31.2798, +2016-04-29 21:00:00,,,28.3143 +2016-04-29 21:13:10,3572.0,31.3348, +2016-04-29 21:15:00,,,28.3143 +2016-04-29 21:28:05,3570.0,31.3348, +2016-04-29 21:30:00,,,28.3143 +2016-04-29 21:43:00,3569.0,31.3321, +2016-04-29 21:45:00,,,28.4126 +2016-04-29 21:57:55,3567.0,31.2249, +2016-04-29 22:00:00,,,28.3143 +2016-04-29 22:12:50,3566.0,31.2221, +2016-04-29 22:15:00,,,28.2641 +2016-04-29 22:27:59,3566.0,31.277, +2016-04-29 22:30:00,,,28.3143 +2016-04-29 22:42:54,3564.0,31.2221, +2016-04-29 22:45:00,,,28.3143 +2016-04-29 22:57:49,3564.0,31.1153, +2016-04-29 23:00:00,,,28.3118 +2016-04-29 23:12:44,3564.0,31.39, +2016-04-29 23:15:00,,,28.3143 +2016-04-29 23:27:39,3563.0,31.277, +2016-04-29 23:30:00,,,28.3647 +2016-04-29 23:42:34,3562.0,31.277, +2016-04-29 23:45:00,,,28.3622 +2016-04-29 23:57:28,3561.0,31.2249, +2016-04-30 00:00:00,,,28.3118 +2016-04-30 00:12:23,3560.0,31.277, +2016-04-30 00:15:00,,,28.3647 +2016-04-30 00:27:18,3559.0,31.277, +2016-04-30 00:30:00,,,28.3143 +2016-04-30 00:42:13,3559.0,31.2221, +2016-04-30 00:45:00,,,28.3118 +2016-04-30 00:57:08,3559.0,31.277, +2016-04-30 01:00:00,,,28.3118 +2016-04-30 01:12:03,3558.0,31.2249, +2016-04-30 01:15:00,,,28.3647 +2016-04-30 01:26:57,3557.0,31.3321, +2016-04-30 01:30:00,,,28.3647 +2016-04-30 01:41:52,3557.0,31.17, +2016-04-30 01:45:00,,,28.3118 +2016-04-30 01:56:47,3556.0,31.2798, +2016-04-30 02:00:00,,,28.4126 +2016-04-30 02:11:42,3556.0,31.17, +2016-04-30 02:15:00,,,28.3143 +2016-04-30 02:26:36,3556.0,31.277, +2016-04-30 02:30:00,,,28.3118 +2016-04-30 02:41:31,3555.0,31.2249, +2016-04-30 02:45:00,,,28.3143 +2016-04-30 02:56:26,3554.0,31.1125, +2016-04-30 03:00:00,,,28.3118 +2016-04-30 03:11:20,3554.0,31.2221, +2016-04-30 03:15:00,,,28.3143 +2016-04-30 03:26:15,3553.0,31.277, +2016-04-30 03:30:00,,,28.3647 +2016-04-30 03:41:10,3552.0,31.1153, +2016-04-30 03:45:00,,,28.3143 +2016-04-30 03:56:05,3552.0,31.277, +2016-04-30 04:00:00,,,28.3118 +2016-04-30 04:11:00,3551.0,31.2249, +2016-04-30 04:15:00,,,28.3168 +2016-04-30 04:25:55,3550.0,31.2798, +2016-04-30 04:30:00,,,28.4126 +2016-04-30 04:40:49,3550.0,31.2221, +2016-04-30 04:45:00,,,28.3143 +2016-04-30 04:55:44,3550.0,31.3348, +2016-04-30 05:00:00,,,28.3143 +2016-04-30 05:10:39,3550.0,31.2221, +2016-04-30 05:15:00,,,28.3647 +2016-04-30 05:25:34,3550.0,31.2249, +2016-04-30 05:30:00,,,28.2641 +2016-04-30 05:40:28,3550.0,31.1125, +2016-04-30 05:45:00,,,28.3143 +2016-04-30 05:55:23,3550.0,31.1673, +2016-04-30 06:00:00,,,28.3622 +2016-04-30 06:10:18,3551.0,31.2249, +2016-04-30 06:15:00,,,28.3143 +2016-04-30 06:25:12,3551.0,31.1153, +2016-04-30 06:30:00,,,28.3143 +2016-04-30 06:40:07,3552.0,31.2798, +2016-04-30 06:45:00,,,28.4151 +2016-04-30 06:55:02,3553.0,31.2249, +2016-04-30 07:00:00,,,28.3143 +2016-04-30 07:09:56,3553.0,31.3348, +2016-04-30 07:15:00,,,28.3622 +2016-04-30 07:24:51,3555.0,31.2798, +2016-04-30 07:30:00,,,28.2641 +2016-04-30 07:39:46,3556.0,31.2221, +2016-04-30 07:45:00,,,28.4151 +2016-04-30 07:54:40,3557.0,31.2221, +2016-04-30 08:00:00,,,28.3143 +2016-04-30 08:09:35,3558.0,31.2221, +2016-04-30 08:15:00,,,28.3143 +2016-04-30 08:24:30,3559.0,31.2249, +2016-04-30 08:30:00,,,28.3143 +2016-04-30 08:39:25,3562.0,31.3321, +2016-04-30 08:45:00,,,28.3647 +2016-04-30 08:54:20,3564.0,31.1153, +2016-04-30 09:00:00,,,28.3143 +2016-04-30 09:09:15,3567.0,31.3348, +2016-04-30 09:15:00,,,28.2616 +2016-04-30 09:24:10,3570.0,31.3321, +2016-04-30 09:30:00,,,28.3118 +2016-04-30 09:39:05,3573.0,31.277, +2016-04-30 09:45:00,,,28.3143 +2016-04-30 09:54:00,3576.0,31.3321, +2016-04-30 10:00:00,,,28.3118 +2016-04-30 10:08:55,3579.0,31.277, +2016-04-30 10:15:00,,,28.2641 +2016-04-30 10:23:50,3583.0,31.3321, +2016-04-30 10:30:00,,,28.2616 +2016-04-30 10:38:53,3586.0,31.277, +2016-04-30 10:45:00,,,28.2616 +2016-04-30 10:53:48,3588.0,31.277, +2016-04-30 11:00:00,,,28.3118 +2016-04-30 11:08:44,3592.0,31.2221, +2016-04-30 11:15:00,,,28.3118 +2016-04-30 11:23:39,3594.0,31.2249, +2016-04-30 11:30:00,,,28.2616 +2016-04-30 11:38:35,3595.0,31.277, +2016-04-30 11:45:00,,,28.2641 +2016-04-30 11:53:30,3596.0,31.4424, +2016-04-30 12:00:00,,,28.3118 +2016-04-30 12:08:26,3597.0,31.2853, +2016-04-30 12:15:00,,,28.3143 +2016-04-30 12:23:21,3598.0,31.3404, +2016-04-30 12:30:00,,,28.3118 +2016-04-30 12:38:17,3598.0,31.2881, +2016-04-30 12:45:00,,,28.2616 +2016-04-30 12:53:12,3598.0,31.3487, +2016-04-30 13:00:00,,,28.3143 +2016-04-30 13:08:08,3598.0,31.346, +2016-04-30 13:15:00,,,28.3143 +2016-04-30 13:23:03,3599.0,31.346, +2016-04-30 13:30:00,,,28.2641 +2016-04-30 13:37:59,3599.0,31.3571, +2016-04-30 13:45:00,,,28.3118 +2016-04-30 13:52:54,3599.0,31.3571, +2016-04-30 14:00:00,,,28.2641 +2016-04-30 14:07:50,3599.0,31.3543, +2016-04-30 14:15:00,,,28.3622 +2016-04-30 14:22:46,3599.0,31.302, +2016-04-30 14:30:00,,,28.3143 +2016-04-30 14:37:41,3599.0,31.3571, +2016-04-30 14:45:00,,,28.3143 +2016-04-30 14:52:36,3599.0,31.3103, +2016-04-30 15:00:00,,,28.3118 +2016-04-30 15:07:32,3598.0,31.3076, +2016-04-30 15:15:00,,,28.3118 +2016-04-30 15:22:27,3598.0,31.3076, +2016-04-30 15:30:00,,,28.3143 +2016-04-30 15:37:23,3598.0,31.3103, +2016-04-30 15:45:00,,,28.3622 +2016-04-30 15:52:18,3598.0,31.3159, +2016-04-30 16:00:00,,,28.3143 +2016-04-30 16:07:13,3597.0,31.371, +2016-04-30 16:15:00,,,28.3118 +2016-04-30 16:22:09,3595.0,31.371, +2016-04-30 16:30:00,,,28.2616 +2016-04-30 16:37:04,3595.0,31.3849, +2016-04-30 16:45:00,,,28.2616 +2016-04-30 16:51:59,3594.0,31.3821, +2016-04-30 17:00:00,,,28.3143 +2016-04-30 17:06:55,3593.0,31.272, +2016-04-30 17:15:00,,,28.3219 +2016-04-30 17:21:50,3593.0,31.4374, +2016-04-30 17:30:00,,,28.3219 +2016-04-30 17:36:45,3592.0,31.3821, +2016-04-30 17:45:00,,,28.3118 +2016-04-30 17:51:41,3592.0,31.4374, +2016-04-30 18:00:00,,,28.2691 +2016-04-30 18:06:36,3591.0,31.3821, +2016-04-30 18:15:00,,,28.3219 +2016-04-30 18:21:31,3591.0,31.327, +2016-04-30 18:30:00,,,28.3697 +2016-04-30 18:36:27,3589.0,31.327, +2016-04-30 18:45:00,,,28.3194 +2016-04-30 18:51:22,3588.0,31.3326, +2016-04-30 19:00:00,,,28.3194 +2016-04-30 19:06:17,3588.0,31.3905, +2016-04-30 19:15:00,,,28.2716 +2016-04-30 19:21:12,3586.0,31.5011, +2016-04-30 19:30:00,,,28.3118 +2016-04-30 19:36:07,3585.0,31.3905, +2016-04-30 19:45:00,,,28.3219 +2016-04-30 19:51:02,3583.0,31.3877, +2016-04-30 20:00:00,,,28.3697 +2016-04-30 20:05:57,3581.0,31.2803, +2016-04-30 20:15:00,,,28.2691 +2016-04-30 20:20:52,3579.0,31.3905, +2016-04-30 20:30:00,,,28.4227 +2016-04-30 20:35:47,3577.0,31.3905, +2016-04-30 20:45:00,,,28.3219 +2016-04-30 20:50:42,3576.0,31.5011, +2016-04-30 21:00:00,,,28.3219 +2016-04-30 21:05:37,3574.0,31.3354, +2016-04-30 21:15:00,,,28.4227 +2016-04-30 21:20:32,3573.0,31.3905, +2016-04-30 21:30:00,,,28.3798 +2016-04-30 21:35:27,3571.0,31.3354, +2016-04-30 21:45:00,,,28.3269 +2016-04-30 21:50:22,3570.0,31.2803, +2016-04-30 22:00:00,,,28.3294 +2016-04-30 22:05:17,3567.0,31.3354, +2016-04-30 22:15:00,,,28.3294 +2016-04-30 22:20:11,3567.0,31.3877, +2016-04-30 22:30:00,,,28.4302 +2016-04-30 22:35:06,3566.0,31.3905, +2016-04-30 22:45:00,,,28.3294 +2016-04-30 22:50:01,3565.0,31.2803, +2016-04-30 23:00:00,,,28.3798 +2016-04-30 23:04:56,3564.0,31.3877, +2016-04-30 23:15:00,,,28.4302 +2016-04-30 23:19:51,3562.0,31.3354, +2016-04-30 23:30:00,,,28.3773 +2016-04-30 23:34:45,3562.0,31.3905, +2016-04-30 23:45:00,,,28.3294 +2016-04-30 23:49:40,3561.0,31.2803, +2016-05-01 00:00:00,,,28.3798 +2016-05-01 00:04:35,3560.0,31.3354, +2016-05-01 00:15:00,,,28.337 +2016-05-01 00:19:30,3559.0,31.2282, +2016-05-01 00:30:00,,,28.4302 +2016-05-01 00:34:25,3559.0,31.2254, +2016-05-01 00:45:00,,,28.337 +2016-05-01 00:49:20,3559.0,31.1706, +2016-05-01 01:00:00,,,28.3294 +2016-05-01 01:04:17,3559.0,31.3354, +2016-05-01 01:15:00,,,28.3294 +2016-05-01 01:19:12,3559.0,31.3326, +2016-05-01 01:30:00,,,28.4353 +2016-05-01 01:34:06,3559.0,31.2226, +2016-05-01 01:45:00,,,28.337 +2016-05-01 01:49:01,3558.0,31.3877, +2016-05-01 02:00:00,,,28.337 +2016-05-01 02:03:56,3557.0,31.3821, +2016-05-01 02:15:00,,,28.3873 +2016-05-01 02:18:51,3557.0,31.327, +2016-05-01 02:30:00,,,28.3823 +2016-05-01 02:33:45,3556.0,31.2748, +2016-05-01 02:45:00,,,28.4378 +2016-05-01 02:48:40,3556.0,31.1595, +2016-05-01 03:00:00,,,28.3848 +2016-05-01 03:03:35,3556.0,31.3794, +2016-05-01 03:15:00,,,28.3873 +2016-05-01 03:18:29,3555.0,31.1076, +2016-05-01 03:30:00,,,28.3873 +2016-05-01 03:33:31,3554.0,31.272, +2016-05-01 03:45:00,,,28.4353 +2016-05-01 03:48:26,3553.0,31.2171, +2016-05-01 04:00:00,,,28.337 +2016-05-01 04:03:21,3553.0,31.1651, +2016-05-01 04:15:00,,,28.2867 +2016-05-01 04:18:15,3552.0,31.2776, +2016-05-01 04:30:00,,,28.337 +2016-05-01 04:33:10,3552.0,31.272, +2016-05-01 04:45:00,,,28.337 +2016-05-01 04:48:04,3552.0,31.3821, +2016-05-01 05:00:00,,,28.3873 +2016-05-01 05:02:59,3552.0,31.3821, +2016-05-01 05:15:00,,,28.3319 +2016-05-01 05:17:53,3551.0,31.272, +2016-05-01 05:30:00,,,28.2892 +2016-05-01 05:32:48,3551.0,31.3187, +2016-05-01 05:45:00,,,28.337 +2016-05-01 05:47:42,3551.0,31.2637, +2016-05-01 06:00:00,,,28.337 +2016-05-01 06:02:37,3552.0,31.2637, +2016-05-01 06:15:00,,,28.3848 +2016-05-01 06:17:32,3551.0,31.3187, +2016-05-01 06:30:00,,,28.4884 +2016-05-01 06:32:26,3551.0,31.154, +2016-05-01 06:45:00,,,28.3848 +2016-05-01 06:47:21,3551.0,31.3187, +2016-05-01 07:00:00,,,28.2842 +2016-05-01 07:02:15,3552.0,31.2637, +2016-05-01 07:15:00,,,28.337 +2016-05-01 07:17:10,3552.0,31.3159, +2016-05-01 07:30:00,,,28.4378 +2016-05-01 07:32:04,3553.0,31.2005, +2016-05-01 07:45:00,,,28.3873 +2016-05-01 07:46:59,3555.0,31.2554, +2016-05-01 08:00:00,,,28.3873 +2016-05-01 08:01:54,3556.0,31.2005, +2016-05-01 08:15:00,,,28.3873 +2016-05-01 08:16:49,3556.0,31.3654, +2016-05-01 08:30:00,,,28.3344 +2016-05-01 08:31:44,3558.0,31.2554, +2016-05-01 08:45:00,,,28.337 +2016-05-01 08:46:39,3560.0,31.1457, +2016-05-01 09:00:00,,,28.337 +2016-05-01 09:01:34,3564.0,31.3103, +2016-05-01 09:15:00,,,28.3344 +2016-05-01 09:16:29,3567.0,31.2526, +2016-05-01 09:30:00,,,28.3344 +2016-05-01 09:31:24,3571.0,31.3103, +2016-05-01 09:45:00,,,28.337 +2016-05-01 09:46:19,3573.0,31.3627, +2016-05-01 10:00:00,,,28.3823 +2016-05-01 10:01:14,3576.0,31.3654, +2016-05-01 10:15:00,,,28.337 +2016-05-01 10:16:09,3578.0,31.3654, +2016-05-01 10:30:00,,,28.337 +2016-05-01 10:31:04,3581.0,31.3103, +2016-05-01 10:45:00,,,28.3344 +2016-05-01 10:45:59,3583.0,31.1457, +2016-05-01 11:00:00,,,28.3344 +2016-05-01 11:00:55,3585.0,31.2637, +2016-05-01 11:15:00,,,28.337 +2016-05-01 11:15:50,3587.0,31.3738, +2016-05-01 11:30:00,,,28.2842 +2016-05-01 11:30:46,3588.0,31.3159, +2016-05-01 11:45:00,,,28.337 +2016-05-01 11:45:41,3590.0,31.3738, +2016-05-01 12:00:00,,,28.3848 +2016-05-01 12:00:36,3591.0,31.2609, +2016-05-01 12:15:00,,,28.3344 +2016-05-01 12:15:32,3592.0,31.272, +2016-05-01 12:30:00,,,28.337 +2016-05-01 12:30:27,3593.0,31.1623, +2016-05-01 12:45:00,,,28.3873 +2016-05-01 12:45:23,3594.0,31.2171, +2016-05-01 13:00:00,,,28.2867 +2016-05-01 13:00:18,3595.0,31.1623, +2016-05-01 13:15:00,,,28.3344 +2016-05-01 13:15:14,3597.0,31.1623, +2016-05-01 13:30:00,,,28.337 +2016-05-01 13:30:09,3598.0,31.1623, +2016-05-01 13:45:00,,,28.2867 +2016-05-01 13:45:05,3598.0,31.2748, +2016-05-01 14:00:00,3598.0,31.1678,28.3344 +2016-05-01 14:14:56,3598.0,31.2226, +2016-05-01 14:15:00,,,28.3344 +2016-05-01 14:29:52,3598.0,31.2803, +2016-05-01 14:30:00,,,28.3344 +2016-05-01 14:44:47,3599.0,31.1678, +2016-05-01 14:45:00,,,28.3344 +2016-05-01 14:59:43,3599.0,31.2776, +2016-05-01 15:00:00,,,28.3344 +2016-05-01 15:14:39,3598.0,31.2859, +2016-05-01 15:15:00,,,28.337 +2016-05-01 15:29:34,3599.0,31.1789, +2016-05-01 15:30:00,,,28.3344 +2016-05-01 15:44:30,3599.0,31.2942, +2016-05-01 15:45:00,,,28.337 +2016-05-01 15:59:26,3599.0,31.2942, +2016-05-01 16:00:00,,,28.3344 +2016-05-01 16:14:21,3599.0,31.2393, +2016-05-01 16:15:00,,,28.2867 +2016-05-01 16:29:24,3599.0,31.242, +2016-05-01 16:30:00,,,28.3344 +2016-05-01 16:44:20,3599.0,31.1844, +2016-05-01 16:45:00,,,28.3344 +2016-05-01 16:59:15,3599.0,31.3026, +2016-05-01 17:00:00,,,28.3344 +2016-05-01 17:14:10,3599.0,31.1927, +2016-05-01 17:15:00,,,28.3344 +2016-05-01 17:29:06,3599.0,31.3053, +2016-05-01 17:30:00,,,28.234 +2016-05-01 17:44:01,3599.0,31.1927, +2016-05-01 17:45:00,,,28.337 +2016-05-01 17:58:57,3599.0,31.2504, +2016-05-01 18:00:00,,,28.234 +2016-05-01 18:13:52,3599.0,31.1955, +2016-05-01 18:15:00,,,28.1339 +2016-05-01 18:28:48,3598.0,31.3026, +2016-05-01 18:30:00,,,28.2365 +2016-05-01 18:43:44,3598.0,31.3053, +2016-05-01 18:45:00,,,28.1814 +2016-05-01 18:58:39,3598.0,31.2559, +2016-05-01 19:00:00,,,28.1364 +2016-05-01 19:13:35,3598.0,31.3137, +2016-05-01 19:15:00,,,28.234 +2016-05-01 19:28:30,3597.0,31.3109, +2016-05-01 19:30:00,,,28.2365 +2016-05-01 19:43:25,3595.0,31.2038, +2016-05-01 19:45:00,,,28.2365 +2016-05-01 19:58:21,3594.0,31.201, +2016-05-01 20:00:00,,,28.1364 +2016-05-01 20:13:16,3593.0,31.3164, +2016-05-01 20:15:00,,,28.1914 +2016-05-01 20:28:11,3591.0,31.3192, +2016-05-01 20:30:00,,,28.1364 +2016-05-01 20:43:06,3588.0,31.1573, +2016-05-01 20:45:00,,,28.1839 +2016-05-01 20:58:02,3587.0,31.2093, +2016-05-01 21:00:00,,,28.2365 +2016-05-01 21:12:57,3586.0,31.2615, +2016-05-01 21:15:00,,,28.1364 +2016-05-01 21:27:52,3585.0,31.2121, +2016-05-01 21:30:00,,,28.2867 +2016-05-01 21:42:48,3584.0,31.2642, +2016-05-01 21:45:00,,,28.1914 +2016-05-01 21:57:43,3582.0,31.2093, +2016-05-01 22:00:00,,,28.234 +2016-05-01 22:12:38,3581.0,31.3743, +2016-05-01 22:15:00,,,28.1914 +2016-05-01 22:27:33,3579.0,31.2121, +2016-05-01 22:30:00,,,28.2917 +2016-05-01 22:42:28,3578.0,31.1573, +2016-05-01 22:45:00,,,28.2415 +2016-05-01 22:57:23,3577.0,31.3192, +2016-05-01 23:00:00,,,28.2415 +2016-05-01 23:12:18,3576.0,31.1573, +2016-05-01 23:15:00,,,28.2415 +2016-05-01 23:27:13,3574.0,31.3192, +2016-05-01 23:30:00,,,28.1914 +2016-05-01 23:42:08,3574.0,31.3771, +2016-05-01 23:45:00,,,28.2415 +2016-05-01 23:57:03,3573.0,31.2093, +2016-05-02 00:00:00,,,28.2892 +2016-05-02 00:11:58,3572.0,31.366, +2016-05-02 00:15:00,,,28.2415 +2016-05-02 00:26:52,3571.0,31.3109, +2016-05-02 00:30:00,,,28.2415 +2016-05-02 00:41:47,3570.0,31.201, +2016-05-02 00:45:00,,,28.2515 +2016-05-02 00:56:42,3569.0,31.1463, +2016-05-02 01:00:00,,,28.2515 +2016-05-02 01:11:37,3568.0,31.3109, +2016-05-02 01:15:00,,,28.249 +2016-05-02 01:26:31,3567.0,31.0944, +2016-05-02 01:30:00,,,28.2415 +2016-05-02 01:41:26,3566.0,31.3137, +2016-05-02 01:45:00,,,28.249 +2016-05-02 01:56:21,3565.0,31.1463, +2016-05-02 02:00:00,,,28.1989 +2016-05-02 02:11:15,3564.0,31.0944, +2016-05-02 02:15:00,,,28.249 +2016-05-02 02:26:10,3564.0,31.1463, +2016-05-02 02:30:00,,,28.249 +2016-05-02 02:41:05,3563.0,31.3137, +2016-05-02 02:45:00,,,28.249 +2016-05-02 02:56:00,3561.0,31.3109, +2016-05-02 03:00:00,,,28.2565 +2016-05-02 03:10:55,3560.0,31.3026, +2016-05-02 03:15:00,,,28.2515 +2016-05-02 03:25:49,3559.0,31.1407, +2016-05-02 03:30:00,,,28.2992 +2016-05-02 03:40:44,3559.0,31.2504, +2016-05-02 03:45:00,,,28.2992 +2016-05-02 03:55:39,3559.0,31.138, +2016-05-02 04:00:00,,,28.2515 +2016-05-02 04:10:33,3558.0,31.3026, +2016-05-02 04:15:00,,,28.259 +2016-05-02 04:25:28,3557.0,31.3053, +2016-05-02 04:30:00,,,28.259 +2016-05-02 04:40:22,3556.0,31.0315, +2016-05-02 04:45:00,,,28.3068 +2016-05-02 04:55:17,3556.0,31.1955, +2016-05-02 05:00:00,,,28.2089 +2016-05-02 05:10:12,3554.0,31.0315, +2016-05-02 05:15:00,,,28.3093 +2016-05-02 05:25:06,3554.0,31.1955, +2016-05-02 05:30:00,,,28.3017 +2016-05-02 05:40:01,3552.0,31.2504, +2016-05-02 05:45:00,,,28.3068 +2016-05-02 05:54:55,3552.0,31.0833, +2016-05-02 06:00:00,,,28.2064 +2016-05-02 06:09:50,3552.0,31.0778, +2016-05-02 06:15:00,,,28.3068 +2016-05-02 06:24:44,3552.0,31.2504, +2016-05-02 06:30:00,,,28.2565 +2016-05-02 06:39:39,3552.0,31.1324, +2016-05-02 06:45:00,,,28.3093 +2016-05-02 06:54:34,3552.0,31.242, +2016-05-02 07:00:00,,,28.254 +2016-05-02 07:09:28,3552.0,31.0778, +2016-05-02 07:15:00,,,28.2565 +2016-05-02 07:24:23,3554.0,31.0778, +2016-05-02 07:30:00,,,28.2565 +2016-05-02 07:39:18,3555.0,31.1844, +2016-05-02 07:45:00,,,28.2565 +2016-05-02 07:54:12,3557.0,31.1872, +2016-05-02 08:00:00,,,28.2565 +2016-05-02 08:09:07,3559.0,31.1872, +2016-05-02 08:15:00,,,28.2565 +2016-05-02 08:24:02,3562.0,31.297, +2016-05-02 08:30:00,,,28.259 +2016-05-02 08:38:57,3566.0,31.1324, +2016-05-02 08:45:00,,,28.2565 +2016-05-02 08:53:52,3571.0,31.075, +2016-05-02 09:00:00,,,28.2565 +2016-05-02 09:08:55,3574.0,31.1844, +2016-05-02 09:15:00,,,28.2064 +2016-05-02 09:23:50,3578.0,31.2914, +2016-05-02 09:30:00,,,28.2565 +2016-05-02 09:38:45,3581.0,31.1872, +2016-05-02 09:45:00,,,28.2064 +2016-05-02 09:53:40,3585.0,31.3521, +2016-05-02 10:00:00,,,28.1563 +2016-05-02 10:08:36,3588.0,31.2942, +2016-05-02 10:15:00,,,28.2565 +2016-05-02 10:23:31,3591.0,31.1872, +2016-05-02 10:30:00,,,28.2565 +2016-05-02 10:38:27,3593.0,31.2942, +2016-05-02 10:45:00,,,28.2565 +2016-05-02 10:53:22,3595.0,31.2942, +2016-05-02 11:00:00,,,28.2565 +2016-05-02 11:08:18,3596.0,31.297, +2016-05-02 11:15:00,,,28.2565 +2016-05-02 11:23:13,3597.0,31.2393, +2016-05-02 11:30:00,,,28.2565 +2016-05-02 11:38:09,3598.0,31.2942, +2016-05-02 11:45:00,,,28.2565 +2016-05-02 11:53:05,3598.0,31.1955, +2016-05-02 12:00:00,,,28.2565 +2016-05-02 12:08:00,3598.0,31.3026, +2016-05-02 12:15:00,,,28.2565 +2016-05-02 12:22:56,3598.0,31.3026, +2016-05-02 12:30:00,,,28.2565 +2016-05-02 12:37:51,3598.0,31.2476, +2016-05-02 12:45:00,,,28.2565 +2016-05-02 12:52:47,3599.0,31.2476, +2016-05-02 13:00:00,,,28.2565 +2016-05-02 13:07:43,3599.0,31.3026, +2016-05-02 13:15:00,,,28.1563 +2016-05-02 13:22:38,3599.0,31.3109, +2016-05-02 13:30:00,,,28.2064 +2016-05-02 13:37:34,3599.0,31.3137, +2016-05-02 13:45:00,,,28.1563 +2016-05-02 13:52:30,3599.0,31.2038, +2016-05-02 14:00:00,,,28.2064 +2016-05-02 14:07:25,3599.0,31.2615, +2016-05-02 14:15:00,,,28.2565 +2016-05-02 14:22:20,3599.0,31.3192, +2016-05-02 14:30:00,,,28.2565 +2016-05-02 14:37:24,3599.0,31.2642, +2016-05-02 14:45:00,,,28.2565 +2016-05-02 14:52:19,3599.0,31.322, +2016-05-02 15:00:00,,,28.2565 +2016-05-02 15:07:15,3599.0,31.1546, +2016-05-02 15:15:00,,,28.2064 +2016-05-02 15:22:11,3599.0,31.1082, +2016-05-02 15:30:00,,,28.2565 +2016-05-02 15:37:07,3599.0,31.1054, +2016-05-02 15:45:00,,,28.2064 +2016-05-02 15:52:03,3599.0,31.1082, +2016-05-02 16:00:00,,,28.2565 +2016-05-02 16:06:58,3599.0,31.2177, +2016-05-02 16:15:00,,,28.2064 +2016-05-02 16:21:54,3599.0,31.1629, +2016-05-02 16:30:00,,,28.2064 +2016-05-02 16:36:50,3599.0,31.1137, +2016-05-02 16:45:00,,,28.2565 +2016-05-02 16:51:46,3599.0,31.1712, +2016-05-02 17:00:00,,,28.2064 +2016-05-02 17:06:41,3599.0,31.1712, +2016-05-02 17:15:00,,,28.2064 +2016-05-02 17:21:37,3599.0,31.1795, +2016-05-02 17:30:00,,,28.2565 +2016-05-02 17:36:32,3599.0,31.1767, +2016-05-02 17:45:00,,,28.2565 +2016-05-02 17:51:28,3599.0,31.1767, +2016-05-02 18:00:00,,,28.2064 +2016-05-02 18:06:24,3599.0,31.122, +2016-05-02 18:15:00,,,28.259 +2016-05-02 18:21:19,3599.0,31.2343, +2016-05-02 18:30:00,,,28.1538 +2016-05-02 18:36:15,3599.0,31.1795, +2016-05-02 18:45:00,,,28.2565 +2016-05-02 18:51:11,3599.0,31.2343, +2016-05-02 19:00:00,,,28.2064 +2016-05-02 19:06:06,3599.0,31.1878, +2016-05-02 19:15:00,,,28.2064 +2016-05-02 19:21:02,3599.0,31.1878, +2016-05-02 19:30:00,,,28.2064 +2016-05-02 19:35:57,3598.0,31.1878, +2016-05-02 19:45:00,,,28.2114 +2016-05-02 19:50:53,3598.0,31.1878, +2016-05-02 20:00:00,,,28.2164 +2016-05-02 20:05:48,3598.0,31.1878, +2016-05-02 20:15:00,,,28.2565 +2016-05-02 20:20:43,3597.0,31.1303, +2016-05-02 20:30:00,,,28.2164 +2016-05-02 20:35:39,3595.0,31.2426, +2016-05-02 20:45:00,,,28.2565 +2016-05-02 20:50:34,3594.0,31.1961, +2016-05-02 21:00:00,,,28.2641 +2016-05-02 21:05:29,3593.0,31.1385, +2016-05-02 21:15:00,,,28.2641 +2016-05-02 21:20:25,3592.0,31.2426, +2016-05-02 21:30:00,,,28.2641 +2016-05-02 21:35:20,3590.0,31.1933, +2016-05-02 21:45:00,,,28.2641 +2016-05-02 21:50:15,3588.0,31.2509, +2016-05-02 22:00:00,,,28.2641 +2016-05-02 22:05:10,3587.0,31.1413, +2016-05-02 22:15:00,,,28.2164 +2016-05-02 22:20:05,3586.0,31.1413, +2016-05-02 22:30:00,,,28.2641 +2016-05-02 22:35:00,3585.0,31.0839, +2016-05-02 22:45:00,,,28.2139 +2016-05-02 22:49:56,3585.0,31.1413, +2016-05-02 23:00:00,,,28.2641 +2016-05-02 23:04:51,3583.0,31.1961, +2016-05-02 23:15:00,,,28.2641 +2016-05-02 23:19:46,3582.0,31.1878, +2016-05-02 23:30:00,,,28.2139 +2016-05-02 23:34:41,3581.0,31.1878, +2016-05-02 23:45:00,,,28.2666 +2016-05-02 23:49:36,3580.0,31.2426, +2016-05-03 00:00:00,,, +2016-05-03 00:15:00,,, +2016-05-03 00:30:00,,, +2016-05-03 00:45:00,,, +2016-05-03 01:00:00,,,28.2641 +2016-05-03 01:04:11,3576.0,31.133000000000006, +2016-05-03 01:15:00,,,28.2641 +2016-05-03 01:19:06,3575.0,31.0238, +2016-05-03 01:30:00,,,28.2641 +2016-05-03 01:34:00,3574.0,31.1878, +2016-05-03 01:45:00,,,28.2641 +2016-05-03 01:48:55,3574.0,31.0811, +2016-05-03 02:00:00,,,28.3143 +2016-05-03 02:03:50,3574.0,31.1247, +2016-05-03 02:15:00,,,28.2641 +2016-05-03 02:18:45,3573.0,31.1795, +2016-05-03 02:30:00,,,28.2641 +2016-05-03 02:33:40,3573.0,31.2343, +2016-05-03 02:45:00,,,28.2716 +2016-05-03 02:48:35,3572.0,31.1795, +2016-05-03 03:00:00,,,28.2716 +2016-05-03 03:03:30,3572.0,31.1767, +2016-05-03 03:15:00,,,28.2741 +2016-05-03 03:18:24,3572.0,31.1247, +2016-05-03 03:30:00,,,28.2214 +2016-05-03 03:33:19,3571.0,31.2343, +2016-05-03 03:45:00,,,28.1713 +2016-05-03 03:48:14,3571.0,31.1795, +2016-05-03 04:00:00,,,28.1713 +2016-05-03 04:03:09,3571.0,31.2343, +2016-05-03 04:15:00,,,28.2641 +2016-05-03 04:18:04,3570.0,31.1247, +2016-05-03 04:30:00,,,28.2691 +2016-05-03 04:32:59,3569.0,31.1795, +2016-05-03 04:45:00,,,28.2691 +2016-05-03 04:47:54,3568.0,31.1795, +2016-05-03 05:00:00,,,28.3244 +2016-05-03 05:02:49,3568.0,31.1247, +2016-05-03 05:15:00,,,28.3218 +2016-05-03 05:17:43,3567.0,31.0701, +2016-05-03 05:30:00,,,28.3244 +2016-05-03 05:32:38,3566.0,31.1795, +2016-05-03 05:45:00,,,28.2716 +2016-05-03 05:47:33,3566.0,31.1795, +2016-05-03 06:00:00,,,28.3244 +2016-05-03 06:02:28,3566.0,31.0156, +2016-05-03 06:15:00,,,28.2716 +2016-05-03 06:17:23,3566.0,31.0156, +2016-05-03 06:30:00,,,28.2716 +2016-05-03 06:32:18,3566.0,31.226, +2016-05-03 06:45:00,,,28.2741 +2016-05-03 06:47:13,3566.0,31.0073, +2016-05-03 07:00:00,,,28.2289 +2016-05-03 07:02:07,3567.0,31.226, +2016-05-03 07:15:00,,,28.2716 +2016-05-03 07:17:03,3569.0,31.1164, +2016-05-03 07:30:00,,,28.2766 +2016-05-03 07:31:57,3571.0,31.1712, +2016-05-03 07:45:00,,,28.2766 +2016-05-03 07:46:52,3573.0,31.1164, +2016-05-03 08:00:00,,,28.2264 +2016-05-03 08:01:48,3575.0,31.1164, +2016-05-03 08:15:00,,,28.2716 +2016-05-03 08:16:43,3578.0,31.1712, +2016-05-03 08:30:00,,,28.2289 +2016-05-03 08:31:38,3581.0,31.226, +2016-05-03 08:45:00,,,28.2264 +2016-05-03 08:46:33,3585.0,31.1712, +2016-05-03 09:00:00,,,28.2289 +2016-05-03 09:01:29,3587.0,31.226, +2016-05-03 09:15:00,,,28.2766 +2016-05-03 09:16:24,3589.0,31.1164, +2016-05-03 09:30:00,,,28.2791 +2016-05-03 09:31:27,3592.0,31.1137, +2016-05-03 09:45:00,,,28.2791 +2016-05-03 09:46:22,3593.0,31.1712, +2016-05-03 10:00:00,,,28.2289 +2016-05-03 10:01:18,3595.0,31.0618, +2016-05-03 10:15:00,,,28.2289 +2016-05-03 10:16:13,3597.0,31.226, +2016-05-03 10:30:00,,,28.2766 +2016-05-03 10:31:09,3598.0,31.226, +2016-05-03 10:45:00,,,28.2264 +2016-05-03 10:46:04,3598.0,31.1247, +2016-05-03 11:00:00,,,28.2791 +2016-05-03 11:01:00,3598.0,31.1247, +2016-05-03 11:15:00,,,28.2264 +2016-05-03 11:15:55,3598.0,31.1247, +2016-05-03 11:30:00,,,28.1763 +2016-05-03 11:30:51,3598.0,31.1247, +2016-05-03 11:45:00,,,28.2264 +2016-05-03 11:46:01,3598.0,31.1795, +2016-05-03 12:00:00,,,28.2766 +2016-05-03 12:00:56,3598.0,31.1795, +2016-05-03 12:15:00,,,28.2791 +2016-05-03 12:15:52,3598.0,31.1247, +2016-05-03 12:30:00,,,28.2766 +2016-05-03 12:30:48,3599.0,31.133000000000006, +2016-05-03 12:45:00,,,28.2264 +2016-05-03 12:45:43,3598.0,31.1878, +2016-05-03 13:00:00,,,28.2766 +2016-05-03 13:00:46,3598.0,31.1878, +2016-05-03 13:15:00,,,28.2766 +2016-05-03 13:15:42,3598.0,31.133000000000006, +2016-05-03 13:30:00,,,28.2791 +2016-05-03 13:30:37,3598.0,31.2509, +2016-05-03 13:45:00,,,28.2766 +2016-05-03 13:45:32,3596.0,31.1933, +2016-05-03 14:00:00,,,28.2791 +2016-05-03 14:00:28,3595.0,31.1933, +2016-05-03 14:15:00,,,28.2791 +2016-05-03 14:15:23,3593.0,31.1413, +2016-05-03 14:30:00,,,28.2791 +2016-05-03 14:30:18,3592.0,31.2509, +2016-05-03 14:45:00,,,28.2791 +2016-05-03 14:45:13,3589.0,31.1413, +2016-05-03 15:00:00,,,28.2766 +2016-05-03 15:00:09,3588.0,31.1385, +2016-05-03 15:15:00,,,28.2264 +2016-05-03 15:15:04,3587.0,31.1933, +2016-05-03 15:29:59,3585.0,31.1413, +2016-05-03 15:30:00,,,28.2766 +2016-05-03 15:44:54,3585.0,31.1413, +2016-05-03 15:45:00,,,28.2791 +2016-05-03 15:59:49,3583.0,31.0867, +2016-05-03 16:00:00,,,28.2791 +2016-05-03 16:14:44,3583.0,31.1961, +2016-05-03 16:15:00,,,28.2791 +2016-05-03 16:29:39,3582.0,31.2509, +2016-05-03 16:30:00,,,28.2791 +2016-05-03 16:44:34,3582.0,31.1961, +2016-05-03 16:45:00,,,28.2791 +2016-05-03 16:59:29,3581.0,31.1961, +2016-05-03 17:00:00,,,28.2791 +2016-05-03 17:14:24,3581.0,31.1413, +2016-05-03 17:15:00,,,28.2791 +2016-05-03 17:29:19,3581.0,31.0321, +2016-05-03 17:30:00,,,28.2816 +2016-05-03 17:44:14,3580.0,31.1933, +2016-05-03 17:45:00,,,28.2791 +2016-05-03 17:59:09,3579.0,31.0867, +2016-05-03 18:00:00,,,28.2791 +2016-05-03 18:14:04,3578.0,31.1385, +2016-05-03 18:15:00,,,28.2766 +2016-05-03 18:28:59,3578.0,31.1961, +2016-05-03 18:30:00,,,28.2766 +2016-05-03 18:43:54,3578.0,31.1413, +2016-05-03 18:45:00,,,28.2766 +2016-05-03 18:58:49,3578.0,31.1385, +2016-05-03 19:00:00,,,28.2791 +2016-05-03 19:13:44,3577.0,31.1385, +2016-05-03 19:15:00,,,28.2766 +2016-05-03 19:28:39,3577.0,31.0321, +2016-05-03 19:30:00,,,28.2766 +2016-05-03 19:43:34,3577.0,31.1933, +2016-05-03 19:45:00,,,28.2791 +2016-05-03 19:58:29,3576.0,31.0321, +2016-05-03 20:00:00,,,28.3294 +2016-05-03 20:13:24,3575.0,31.1413, +2016-05-03 20:15:00,,,28.2866 +2016-05-03 20:28:19,3574.0,31.2482, +2016-05-03 20:30:00,,,28.2791 +2016-05-03 20:43:14,3574.0,31.1961, +2016-05-03 20:45:00,,,28.3294 +2016-05-03 20:58:10,3574.0,31.1961, +2016-05-03 21:00:00,,,28.2766 +2016-05-03 21:13:05,3573.0,31.1413, +2016-05-03 21:15:00,,,28.2866 +2016-05-03 21:28:00,3573.0,31.0321, +2016-05-03 21:30:00,,,28.2866 +2016-05-03 21:42:55,3572.0,31.0867, +2016-05-03 21:45:00,,,28.2841 +2016-05-03 21:57:50,3571.0,31.1413, +2016-05-03 22:00:00,,,28.3369 +2016-05-03 22:12:45,3571.0,31.1961, +2016-05-03 22:15:00,,,28.3344 +2016-05-03 22:27:40,3571.0,31.1413, +2016-05-03 22:30:00,,,28.3369 +2016-05-03 22:42:35,3570.0,31.1961, +2016-05-03 22:45:00,,,28.2866 +2016-05-03 22:57:30,3570.0,31.1413, +2016-05-03 23:00:00,,,28.2841 +2016-05-03 23:12:25,3569.0,31.1961, +2016-05-03 23:15:00,,,28.2866 +2016-05-03 23:27:20,3568.0,31.133000000000006, +2016-05-03 23:30:00,,,28.2339 +2016-05-03 23:42:14,3567.0,31.0238, +2016-05-03 23:45:00,,,28.3369 +2016-05-03 23:57:09,3566.0,31.0238, +2016-05-04 00:00:00,,,28.3344 +2016-05-04 00:12:04,3565.0,31.0784, +2016-05-04 00:15:00,,,28.3344 +2016-05-04 00:26:59,3564.0,31.133000000000006, +2016-05-04 00:30:00,,,28.3369 +2016-05-04 00:41:53,3563.0,31.1905, +2016-05-04 00:45:00,,,28.2364 +2016-05-04 00:56:47,3561.0,31.1878, +2016-05-04 01:00:00,,,28.3369 +2016-05-04 01:11:50,3560.0,31.1878, +2016-05-04 01:15:00,,,28.3344 +2016-05-04 01:26:45,3559.0,31.0266, +2016-05-04 01:30:00,,,28.3369 +2016-05-04 01:41:39,3558.0,30.9151, +2016-05-04 01:45:00,,,28.2866 +2016-05-04 01:56:34,3557.0,30.9612, +2016-05-04 02:00:00,,,28.2866 +2016-05-04 02:11:29,3556.0,30.9068, +2016-05-04 02:15:00,,,28.2866 +2016-05-04 02:26:23,3555.0,31.0183, +2016-05-04 02:30:00,,,28.3369 +2016-05-04 02:41:18,3554.0,31.1795, +2016-05-04 02:45:00,,,28.2866 +2016-05-04 02:56:12,3553.0,31.1247, +2016-05-04 03:00:00,,,28.3369 +2016-05-04 03:11:06,3552.0,31.0183, +2016-05-04 03:15:00,,,28.2841 +2016-05-04 03:26:09,3551.0,31.1247, +2016-05-04 03:30:00,,,28.3344 +2016-05-04 03:41:03,3550.0,31.1247, +2016-05-04 03:45:00,,,28.2866 +2016-05-04 03:55:58,3549.0,31.0618, +2016-05-04 04:00:00,,,28.3369 +2016-05-04 04:10:52,3549.0,30.9612, +2016-05-04 04:15:00,,,28.3369 +2016-05-04 04:25:46,3548.0,31.0101, +2016-05-04 04:30:00,,,28.3369 +2016-05-04 04:40:41,3547.0,31.0073, +2016-05-04 04:45:00,,,28.2866 +2016-05-04 04:55:35,3546.0,31.0618, +2016-05-04 05:00:00,,,28.2866 +2016-05-04 05:10:30,3546.0,31.1629, +2016-05-04 05:15:00,,,28.2866 +2016-05-04 05:25:24,3545.0,30.9447, +2016-05-04 05:30:00,,,28.3369 +2016-05-04 05:40:18,3545.0,30.9991, +2016-05-04 05:45:00,,,28.2866 +2016-05-04 05:55:13,3545.0,31.0536, +2016-05-04 06:00:00,,,28.2866 +2016-05-04 06:10:07,3545.0,30.9991, +2016-05-04 06:15:00,,,28.2866 +2016-05-04 06:25:01,3546.0,31.1082, +2016-05-04 06:30:00,,,28.3369 +2016-05-04 06:39:56,3546.0,31.1082, +2016-05-04 06:45:00,,,28.3369 +2016-05-04 06:54:50,3547.0,30.9991, +2016-05-04 07:00:00,,,28.2841 +2016-05-04 07:09:45,3549.0,31.1656, +2016-05-04 07:15:00,,,28.3369 +2016-05-04 07:24:39,3550.0,30.9991, +2016-05-04 07:30:00,,,28.2866 +2016-05-04 07:39:34,3551.0,31.1082, +2016-05-04 07:45:00,,,28.3344 +2016-05-04 07:54:29,3553.0,31.0971, +2016-05-04 08:00:00,,,28.3369 +2016-05-04 08:09:23,3554.0,30.9991, +2016-05-04 08:15:00,,,28.2866 +2016-05-04 08:24:18,3556.0,31.1026, +2016-05-04 08:30:00,,,28.3369 +2016-05-04 08:39:13,3557.0,30.9936, +2016-05-04 08:45:00,,,28.2866 +2016-05-04 08:54:07,3559.0,30.9392, +2016-05-04 09:00:00,,,28.3369 +2016-05-04 09:09:02,3559.0,31.1573, +2016-05-04 09:15:00,,,28.2866 +2016-05-04 09:23:57,3560.0,30.9908, +2016-05-04 09:30:00,,,28.2866 +2016-05-04 09:38:52,3563.0,31.1026, +2016-05-04 09:45:00,,,28.3344 +2016-05-04 09:53:46,3564.0,30.9908, +2016-05-04 10:00:00,,,28.2841 +2016-05-04 10:08:41,3566.0,31.048, +2016-05-04 10:15:00,,,28.2866 +2016-05-04 10:23:36,3568.0,31.1573, +2016-05-04 10:30:00,,,28.3369 +2016-05-04 10:38:31,3570.0,30.9936, +2016-05-04 10:45:00,,,28.3344 +2016-05-04 10:53:26,3571.0,31.2093, +2016-05-04 11:00:00,,,28.2866 +2016-05-04 11:08:21,3573.0,31.1546, +2016-05-04 11:15:00,,,28.2866 +2016-05-04 11:23:16,3574.0,31.1026, +2016-05-04 11:30:00,,,28.2339 +2016-05-04 11:38:11,3575.0,31.0453, +2016-05-04 11:45:00,,,28.2866 +2016-05-04 11:53:06,3577.0,31.1546, +2016-05-04 12:00:00,,,28.2339 +2016-05-04 12:08:01,3577.0,31.0999, +2016-05-04 12:15:00,,,28.2841 +2016-05-04 12:22:56,3578.0,31.0999, +2016-05-04 12:30:00,,,28.3344 +2016-05-04 12:37:51,3580.0,31.1573, +2016-05-04 12:45:00,,,28.2866 +2016-05-04 12:52:47,3581.0,31.1573, +2016-05-04 13:00:00,,,28.2841 +2016-05-04 13:07:42,3582.0,31.1546, +2016-05-04 13:15:00,,,28.2866 +2016-05-04 13:22:37,3583.0,31.1629, +2016-05-04 13:30:00,,,28.2841 +2016-05-04 13:37:32,3585.0,31.1026, +2016-05-04 13:45:00,,,28.2841 +2016-05-04 13:52:28,3585.0,31.1629, +2016-05-04 14:00:00,,,28.2866 +2016-05-04 14:07:23,3586.0,31.1082, +2016-05-04 14:15:00,,,28.2866 +2016-05-04 14:22:18,3587.0,31.2177, +2016-05-04 14:30:00,,,28.2364 +2016-05-04 14:37:14,3588.0,31.1629, +2016-05-04 14:45:00,,,28.2841 +2016-05-04 14:52:09,3588.0,31.2149, +2016-05-04 15:00:00,,,28.2339 +2016-05-04 15:07:04,3588.0,31.1082, +2016-05-04 15:15:00,,,28.2866 +2016-05-04 15:22:07,3589.0,31.1601, +2016-05-04 15:30:00,,,28.2364 +2016-05-04 15:37:02,3589.0,31.1054, +2016-05-04 15:45:00,,,28.3369 +2016-05-04 15:51:57,3590.0,31.1082, +2016-05-04 16:00:00,,,28.2841 +2016-05-04 16:06:53,3591.0,31.1601, +2016-05-04 16:15:00,,,28.2866 +2016-05-04 16:21:48,3591.0,31.1054, +2016-05-04 16:30:00,,,28.2841 +2016-05-04 16:36:44,3591.0,31.1164, +2016-05-04 16:45:00,,,28.2841 +2016-05-04 16:51:39,3590.0,31.1712, +2016-05-04 17:00:00,,,28.2841 +2016-05-04 17:06:35,3590.0,31.0618, +2016-05-04 17:15:00,,,28.2841 +2016-05-04 17:21:30,3589.0,31.1712, +2016-05-04 17:30:00,,,28.2866 +2016-05-04 17:36:26,3588.0,31.1164, +2016-05-04 17:45:00,,,28.2841 +2016-05-04 17:51:21,3588.0,31.1795, +2016-05-04 18:00:00,,,28.2841 +2016-05-04 18:06:16,3588.0,31.1247, +2016-05-04 18:15:00,,,28.2364 +2016-05-04 18:21:11,3587.0,31.1795, +2016-05-04 18:30:00,,,28.2841 +2016-05-04 18:36:07,3586.0,31.1795, +2016-05-04 18:45:00,,,28.2841 +2016-05-04 18:51:02,3585.0,31.1795, +2016-05-04 19:00:00,,,28.3369 +2016-05-04 19:05:57,3584.0,31.1795, +2016-05-04 19:15:00,,,28.2866 +2016-05-04 19:20:52,3583.0,31.2343, +2016-05-04 19:30:00,,,28.2339 +2016-05-04 19:35:47,3582.0,31.1795, +2016-05-04 19:45:00,,,28.2339 +2016-05-04 19:50:42,3581.0,31.1795, +2016-05-04 20:00:00,,,28.2841 +2016-05-04 20:05:37,3579.0,31.0701, +2016-05-04 20:15:00,,,28.2866 +2016-05-04 20:20:33,3578.0,31.1795, +2016-05-04 20:30:00,,,28.2866 +2016-05-04 20:35:28,3577.0,31.2343, +2016-05-04 20:45:00,,,28.2866 +2016-05-04 20:50:23,3575.0,31.1795, +2016-05-04 21:00:00,,,28.2841 +2016-05-04 21:05:18,3574.0,31.1795, +2016-05-04 21:15:00,,,28.3369 +2016-05-04 21:20:20,3572.0,31.1795, +2016-05-04 21:30:00,,,28.2866 +2016-05-04 21:35:14,3571.0,31.1247, +2016-05-04 21:45:00,,,28.3369 +2016-05-04 21:50:09,3570.0,31.2343, +2016-05-04 22:00:00,,,28.2866 +2016-05-04 22:05:04,3568.0,31.1247, +2016-05-04 22:15:00,,,28.3369 +2016-05-04 22:19:59,3568.0,31.0729, +2016-05-04 22:30:00,,,28.2866 +2016-05-04 22:34:54,3566.0,31.1247, +2016-05-04 22:45:00,,,28.3369 +2016-05-04 22:49:49,3566.0,31.1247, +2016-05-04 23:00:00,,,28.2841 +2016-05-04 23:04:44,3565.0,31.0701, +2016-05-04 23:15:00,,,28.3369 +2016-05-04 23:19:39,3564.0,30.9612, +2016-05-04 23:30:00,,,28.2841 +2016-05-04 23:34:34,3562.0,31.1247, +2016-05-04 23:45:00,,,28.2866 +2016-05-04 23:49:29,3561.0,31.1164, +2016-05-05 00:00:00,,,28.3369 +2016-05-05 00:04:24,3560.0,31.0618, +2016-05-05 00:15:00,,,28.2866 +2016-05-05 00:19:18,3559.0,31.226, +2016-05-05 00:30:00,,,28.2866 +2016-05-05 00:34:13,3559.0,30.9529, +2016-05-05 00:45:00,,,28.2364 +2016-05-05 00:49:08,3559.0,31.226, +2016-05-05 01:00:00,,,28.2364 +2016-05-05 01:04:03,3558.0,30.9529, +2016-05-05 01:15:00,,,28.3369 +2016-05-05 01:18:58,3557.0,30.9529, +2016-05-05 01:30:00,,,28.3369 +2016-05-05 01:33:52,3557.0,31.1192, +2016-05-05 01:45:00,,,28.2866 +2016-05-05 01:48:47,3556.0,31.1082, +2016-05-05 02:00:00,,,28.2866 +2016-05-05 02:03:42,3556.0,31.2177, +2016-05-05 02:15:00,,,28.3369 +2016-05-05 02:18:37,3556.0,31.1629, +2016-05-05 02:30:00,,,28.3369 +2016-05-05 02:33:31,3555.0,31.1629, +2016-05-05 02:45:00,,,28.1863 +2016-05-05 02:48:26,3554.0,31.1082, +2016-05-05 03:00:00,,,28.1338 +2016-05-05 03:03:20,3554.0,30.8904, +2016-05-05 03:15:00,,,28.1338 +2016-05-05 03:18:15,3553.0,30.9963, +2016-05-05 03:30:00,,,28.0889 +2016-05-05 03:33:09,3553.0,31.2177, +2016-05-05 03:45:00,,,28.1838 +2016-05-05 03:48:11,3552.0,31.1109, +2016-05-05 04:00:00,,,28.1338 +2016-05-05 04:03:06,3552.0,30.9419, +2016-05-05 04:15:00,,,28.1838 +2016-05-05 04:18:00,3552.0,31.0508, +2016-05-05 04:30:00,,,28.1363 +2016-05-05 04:32:55,3551.0,31.2204, +2016-05-05 04:45:00,,,28.1863 +2016-05-05 04:47:50,3550.0,30.9447, +2016-05-05 05:00:00,,,28.1863 +2016-05-05 05:02:44,3550.0,30.9447, +2016-05-05 05:15:00,,,28.1863 +2016-05-05 05:17:39,3549.0,31.048, +2016-05-05 05:30:00,,,28.1363 +2016-05-05 05:32:34,3549.0,31.1026, +2016-05-05 05:45:00,,,28.1363 +2016-05-05 05:47:29,3549.0,31.1573, +2016-05-05 06:00:00,,,28.1363 +2016-05-05 06:02:23,3548.0,31.1573, +2016-05-05 06:15:00,,,28.1863 +2016-05-05 06:17:18,3548.0,31.1573, +2016-05-05 06:30:00,,,28.1363 +2016-05-05 06:32:12,3549.0,31.1026, +2016-05-05 06:45:00,,,28.1363 +2016-05-05 06:47:07,3549.0,30.9908, +2016-05-05 07:00:00,,,28.1863 +2016-05-05 07:02:01,3549.0,31.1026, +2016-05-05 07:15:00,,,28.1363 +2016-05-05 07:16:56,3550.0,31.1573, +2016-05-05 07:30:00,,,28.1338 +2016-05-05 07:31:51,3552.0,30.9936, +2016-05-05 07:45:00,,,28.0864 +2016-05-05 07:46:46,3554.0,30.7227, +2016-05-05 08:00:00,,,28.1363 +2016-05-05 08:01:41,3556.0,30.8794, +2016-05-05 08:15:00,,,28.1863 +2016-05-05 08:16:35,3557.0,30.7767, +2016-05-05 08:30:00,,,28.1363 +2016-05-05 08:31:30,3559.0,30.7685, +2016-05-05 08:45:00,,,28.1388 +2016-05-05 08:46:25,3562.0,30.9364, +2016-05-05 09:00:00,,,28.1363 +2016-05-05 09:01:20,3565.0,30.7657, +2016-05-05 09:15:00,,,28.0864 +2016-05-05 09:16:15,3568.0,30.8849, +2016-05-05 09:30:00,,,28.0839 +2016-05-05 09:31:11,3571.0,30.9853, +2016-05-05 09:45:00,,,28.1338 +2016-05-05 09:46:06,3574.0,30.9853, +2016-05-05 10:00:00,,,28.1338 +2016-05-05 10:01:01,3577.0,31.0453, +2016-05-05 10:15:00,,,28.1338 +2016-05-05 10:15:57,3581.0,30.9908, +2016-05-05 10:30:00,,,28.1363 +2016-05-05 10:30:52,3583.0,30.9364, +2016-05-05 10:45:00,,,28.1338 +2016-05-05 10:45:48,3585.0,30.9364, +2016-05-05 11:00:00,,,28.1363 +2016-05-05 11:00:43,3587.0,30.9392, +2016-05-05 11:15:00,,,28.1338 +2016-05-05 11:15:39,3588.0,30.9908, +2016-05-05 11:30:00,,,28.1338 +2016-05-05 11:30:34,3589.0,30.9364, +2016-05-05 11:45:00,,,28.0839 +2016-05-05 11:45:29,3591.0,30.9364, +2016-05-05 12:00:00,,,28.1363 +2016-05-05 12:00:25,3592.0,30.9392, +2016-05-05 12:15:00,,,28.1363 +2016-05-05 12:15:20,3592.0,30.9908, +2016-05-05 12:30:00,,,28.1338 +2016-05-05 12:30:16,3593.0,30.9936, +2016-05-05 12:45:00,,,28.1363 +2016-05-05 12:45:11,3593.0,30.9963, +2016-05-05 13:00:00,,,28.1338 +2016-05-05 13:00:07,3594.0,31.0508, +2016-05-05 13:15:00,,,28.0864 +2016-05-05 13:15:02,3595.0,30.9963, +2016-05-05 13:29:58,3595.0,31.0508, +2016-05-05 13:30:00,,,28.1363 +2016-05-05 13:44:53,3596.0,31.1054, +2016-05-05 13:45:00,,,28.1338 +2016-05-05 13:59:49,3597.0,31.0536, +2016-05-05 14:00:00,,,28.0864 +2016-05-05 14:14:44,3598.0,30.9991, +2016-05-05 14:15:00,,,28.1363 +2016-05-05 14:29:40,3598.0,30.9991, +2016-05-05 14:30:00,,,28.1338 +2016-05-05 14:44:36,3598.0,30.9529, +2016-05-05 14:45:00,,,28.0839 +2016-05-05 14:59:31,3598.0,31.0073, +2016-05-05 15:00:00,,,28.1338 +2016-05-05 15:14:27,3598.0,31.1164, +2016-05-05 15:15:00,,,28.1363 +2016-05-05 15:29:23,3598.0,31.0156, +2016-05-05 15:30:00,,,28.0864 +2016-05-05 15:44:19,3598.0,30.9584, +2016-05-05 15:45:00,,,28.1338 +2016-05-05 15:59:14,3598.0,31.0701, +2016-05-05 16:00:00,,,28.0839 +2016-05-05 16:14:10,3598.0,31.0156, +2016-05-05 16:15:00,,,28.1363 +2016-05-05 16:29:06,3599.0,31.0156, +2016-05-05 16:30:00,,,28.1338 +2016-05-05 16:44:02,3599.0,31.0156, +2016-05-05 16:45:00,,,28.0864 +2016-05-05 16:58:57,3599.0,30.9041, +2016-05-05 17:00:00,,,28.0839 +2016-05-05 17:13:53,3599.0,31.0156, +2016-05-05 17:15:00,,,28.1338 +2016-05-05 17:28:49,3599.0,31.0784, +2016-05-05 17:30:00,,,28.0864 +2016-05-05 17:43:45,3599.0,31.0784, +2016-05-05 17:45:00,,,28.0839 +2016-05-05 17:58:40,3599.0,31.0867, +2016-05-05 18:00:00,,,28.1338 +2016-05-05 18:13:36,3598.0,31.0867, +2016-05-05 18:15:00,,,28.1363 +2016-05-05 18:28:32,3598.0,31.0867, +2016-05-05 18:30:00,,,28.1363 +2016-05-05 18:43:27,3598.0,31.0321, +2016-05-05 18:45:00,,,28.0839 +2016-05-05 18:58:23,3598.0,31.0321, +2016-05-05 19:00:00,,,28.1338 +2016-05-05 19:13:18,3598.0,30.9749, +2016-05-05 19:15:00,,,28.1363 +2016-05-05 19:28:14,3598.0,31.0321, +2016-05-05 19:30:00,,,28.0839 +2016-05-05 19:43:09,3598.0,31.0321, +2016-05-05 19:45:00,,,28.1838 +2016-05-05 19:58:05,3597.0,31.0266, +2016-05-05 20:00:00,,,28.1363 +2016-05-05 20:13:00,3596.0,31.0867, +2016-05-05 20:15:00,,,28.0864 +2016-05-05 20:27:55,3595.0,30.9749, +2016-05-05 20:30:00,,,28.1363 +2016-05-05 20:42:51,3594.0,31.0922, +2016-05-05 20:45:00,,,28.1363 +2016-05-05 20:57:46,3593.0,31.0376, +2016-05-05 21:00:00,,,28.0839 +2016-05-05 21:12:41,3592.0,31.1468, +2016-05-05 21:15:00,,,28.1363 +2016-05-05 21:27:37,3591.0,30.9832, +2016-05-05 21:30:00,,,28.1363 +2016-05-05 21:42:32,3588.0,31.0376, +2016-05-05 21:45:00,,,28.0839 +2016-05-05 21:57:27,3588.0,30.9832, +2016-05-05 22:00:00,,,28.1338 +2016-05-05 22:12:22,3587.0,30.9832, +2016-05-05 22:15:00,,,28.1363 +2016-05-05 22:27:17,3586.0,31.0376, +2016-05-05 22:30:00,,,28.1363 +2016-05-05 22:42:12,3586.0,31.0376, +2016-05-05 22:45:00,,,28.1363 +2016-05-05 22:57:08,3585.0,31.0922, +2016-05-05 23:00:00,,,28.1338 +2016-05-05 23:12:03,3584.0,31.0376, +2016-05-05 23:15:00,,,28.1363 +2016-05-05 23:26:58,3582.0,31.0376, +2016-05-05 23:30:00,,,28.1363 +2016-05-05 23:41:53,3582.0,31.0376, +2016-05-05 23:45:00,,,28.1363 +2016-05-05 23:56:48,3581.0,31.0949, +2016-05-06 00:00:00,,,28.1338 +2016-05-06 00:11:43,3581.0,30.9832, +2016-05-06 00:15:00,,,28.1363 +2016-05-06 00:26:38,3580.0,31.0376, +2016-05-06 00:30:00,,,28.1363 +2016-05-06 00:41:33,3579.0,31.1468, +2016-05-06 00:45:00,,,28.1438 +2016-05-06 00:56:28,3578.0,31.0376, +2016-05-06 01:00:00,,,28.1438 +2016-05-06 01:11:23,3578.0,31.0922, +2016-05-06 01:15:00,,,28.1914 +2016-05-06 01:26:18,3577.0,31.0376, +2016-05-06 01:30:00,,,28.1939 +2016-05-06 01:41:13,3577.0,30.9832, +2016-05-06 01:45:00,,,28.1438 +2016-05-06 01:56:08,3576.0,30.9832, +2016-05-06 02:00:00,,,28.1413 +2016-05-06 02:11:03,3576.0,30.9288, +2016-05-06 02:15:00,,,28.1413 +2016-05-06 02:25:58,3576.0,31.0922, +2016-05-06 02:30:00,,,28.1413 +2016-05-06 02:40:53,3575.0,31.0867, +2016-05-06 02:45:00,,,28.1438 +2016-05-06 02:55:48,3575.0,30.9316, +2016-05-06 03:00:00,,,28.1413 +2016-05-06 03:10:43,3574.0,30.9288, +2016-05-06 03:15:00,,,28.1413 +2016-05-06 03:25:38,3574.0,30.9233, +2016-05-06 03:30:00,,,28.1413 +2016-05-06 03:40:33,3573.0,30.9233, +2016-05-06 03:45:00,,,28.0939 +2016-05-06 03:55:28,3573.0,30.9233, +2016-05-06 04:00:00,,,28.1438 +2016-05-06 04:10:23,3572.0,31.0321, +2016-05-06 04:15:00,,,28.1939 +2016-05-06 04:25:18,3572.0,30.9233, +2016-05-06 04:30:00,,,28.1438 +2016-05-06 04:40:13,3571.0,30.8149, +2016-05-06 04:45:00,,,28.1438 +2016-05-06 04:55:08,3571.0,30.8691, +2016-05-06 05:00:00,,,28.2014 +2016-05-06 05:10:03,3570.0,30.9233, +2016-05-06 05:15:00,,,28.1438 +2016-05-06 05:24:58,3569.0,30.9233, +2016-05-06 05:30:00,,,28.1438 +2016-05-06 05:39:53,3570.0,30.9233, +2016-05-06 05:45:00,,,28.1438 +2016-05-06 05:54:47,3568.0,30.8691, +2016-05-06 06:00:00,,,28.1438 +2016-05-06 06:09:42,3568.0,30.9233, +2016-05-06 06:15:00,,,28.1513 +2016-05-06 06:24:37,3569.0,30.8149, +2016-05-06 06:30:00,,,28.1989 +2016-05-06 06:39:32,3569.0,30.8149, +2016-05-06 06:45:00,,,28.1488 +2016-05-06 06:54:26,3570.0,30.9233, +2016-05-06 07:00:00,,,28.1438 +2016-05-06 07:09:21,3570.0,30.9233, +2016-05-06 07:15:00,,,28.2014 +2016-05-06 07:24:16,3571.0,30.7609, +2016-05-06 07:30:00,,,28.1513 +2016-05-06 07:39:11,3572.0,30.9206, +2016-05-06 07:45:00,,,28.1513 +2016-05-06 07:54:06,3574.0,30.8691, +2016-05-06 08:00:00,,,28.1014 +2016-05-06 08:09:01,3576.0,30.8149, +2016-05-06 08:15:00,,,28.2014 +2016-05-06 08:23:56,3578.0,30.9233, +2016-05-06 08:30:00,,,28.1014 +2016-05-06 08:38:52,3581.0,30.9233, +2016-05-06 08:45:00,,,28.1014 +2016-05-06 08:53:47,3584.0,30.8149, +2016-05-06 09:00:00,,,28.1513 +2016-05-06 09:08:42,3586.0,30.9206, +2016-05-06 09:15:00,,,28.1014 +2016-05-06 09:23:37,3588.0,30.9206, +2016-05-06 09:30:00,,,28.1513 +2016-05-06 09:38:40,3590.0,30.8149, +2016-05-06 09:45:00,,,28.1513 +2016-05-06 09:53:36,3593.0,30.8691, +2016-05-06 10:00:00,,,28.1014 +2016-05-06 10:08:31,3595.0,30.9233, +2016-05-06 10:15:00,,,28.0939 +2016-05-06 10:23:27,3597.0,30.9233, +2016-05-06 10:30:00,,,28.1513 +2016-05-06 10:38:22,3598.0,30.9206, +2016-05-06 10:45:00,,,28.1488 +2016-05-06 10:53:18,3598.0,30.9233, +2016-05-06 11:00:00,,,28.1513 +2016-05-06 11:08:13,3599.0,30.9233, +2016-05-06 11:15:00,,,28.0964 +2016-05-06 11:23:09,3599.0,30.9233, +2016-05-06 11:30:00,,,28.1014 +2016-05-06 11:38:05,3599.0,30.9288, +2016-05-06 11:45:00,,,28.1014 +2016-05-06 11:53:00,3599.0,30.9288, +2016-05-06 12:00:00,,,28.1014 +2016-05-06 12:07:56,3599.0,30.9288, +2016-05-06 12:15:00,,,28.0989 +2016-05-06 12:22:52,3599.0,30.9288, +2016-05-06 12:30:00,,,28.1513 +2016-05-06 12:37:47,3599.0,30.9832, +2016-05-06 12:45:00,,,28.1014 +2016-05-06 12:52:43,3599.0,30.937, +2016-05-06 13:00:00,,,28.1488 +2016-05-06 13:07:39,3599.0,30.937, +2016-05-06 13:15:00,,,28.0964 +2016-05-06 13:22:35,3599.0,30.8313, +2016-05-06 13:30:00,,,28.0989 +2016-05-06 13:37:31,3599.0,30.9453, +2016-05-06 13:45:00,,,27.9521 +2016-05-06 13:52:27,3599.0,30.9997, +2016-05-06 14:00:00,,,27.9521 +2016-05-06 14:07:23,3599.0,30.9453, +2016-05-06 14:15:00,,,27.9496 +2016-05-06 14:22:19,3599.0,30.9453, +2016-05-06 14:30:00,,,27.9496 +2016-05-06 14:37:15,3599.0,30.891, +2016-05-06 14:45:00,,,27.9471 +2016-05-06 14:52:11,3599.0,30.9453, +2016-05-06 15:00:00,,,27.9521 +2016-05-06 15:07:07,3599.0,30.9535, +2016-05-06 15:15:00,,,28.0018 +2016-05-06 15:22:03,3599.0,30.8992, +2016-05-06 15:30:00,,,27.9993 +2016-05-06 15:36:59,3599.0,30.9535, +2016-05-06 15:45:00,,,27.9496 +2016-05-06 15:51:55,3599.0,30.9535, +2016-05-06 16:00:00,,,27.9496 +2016-05-06 16:06:51,3599.0,30.9535, +2016-05-06 16:15:00,,,27.9993 +2016-05-06 16:21:47,3599.0,30.9535, +2016-05-06 16:30:00,,,27.9471 +2016-05-06 16:36:43,3599.0,30.959, +2016-05-06 16:45:00,,,28.0018 +2016-05-06 16:51:39,3599.0,30.9618, +2016-05-06 17:00:00,,,27.9496 +2016-05-06 17:06:34,3599.0,30.9618, +2016-05-06 17:15:00,,,27.9496 +2016-05-06 17:21:30,3599.0,30.9673, +2016-05-06 17:30:00,,,27.9496 +2016-05-06 17:36:26,3599.0,30.9673, +2016-05-06 17:45:00,,,27.9496 +2016-05-06 17:51:22,3599.0,30.913, +2016-05-06 18:00:00,,,27.9521 +2016-05-06 18:06:18,3599.0,30.8046, +2016-05-06 18:15:00,,,27.9521 +2016-05-06 18:21:14,3599.0,30.7533, +2016-05-06 18:30:00,,,27.9496 +2016-05-06 18:36:10,3599.0,30.8046, +2016-05-06 18:45:00,,,27.9993 +2016-05-06 18:51:05,3599.0,30.8073, +2016-05-06 19:00:00,,,27.9496 +2016-05-06 19:06:01,3599.0,30.8046, +2016-05-06 19:15:00,,,27.9496 +2016-05-06 19:20:57,3599.0,30.8156, +2016-05-06 19:30:00,,,28.0018 +2016-05-06 19:35:53,3599.0,30.8156, +2016-05-06 19:45:00,,,27.9521 +2016-05-06 19:50:48,3599.0,30.7615, +2016-05-06 20:00:00,,,27.9496 +2016-05-06 20:05:44,3599.0,30.8156, +2016-05-06 20:15:00,,,27.9521 +2016-05-06 20:20:39,3599.0,30.8156, +2016-05-06 20:30:00,,,27.957 +2016-05-06 20:35:35,3599.0,30.8156, +2016-05-06 20:45:00,,,28.0067 +2016-05-06 20:50:30,3599.0,30.7615, +2016-05-06 21:00:00,,,28.0067 +2016-05-06 21:05:26,3599.0,30.8697, +2016-05-06 21:15:00,,,27.957 +2016-05-06 21:20:21,3599.0,30.8156, +2016-05-06 21:30:00,,,28.0067 +2016-05-06 21:35:17,3598.0,30.7615, +2016-05-06 21:45:00,,,27.9595 +2016-05-06 21:50:12,3598.0,30.8156, +2016-05-06 22:00:00,,,28.0067 +2016-05-06 22:05:08,3598.0,30.8156, +2016-05-06 22:15:00,,,28.0042 +2016-05-06 22:20:03,3598.0,30.8156, +2016-05-06 22:30:00,,,28.0067 +2016-05-06 22:34:58,3597.0,30.8752, +2016-05-06 22:45:00,,,27.957 +2016-05-06 22:49:53,3596.0,30.8128, +2016-05-06 23:00:00,,,27.9546 +2016-05-06 23:04:49,3595.0,30.8238, +2016-05-06 23:15:00,,,28.0092 +2016-05-06 23:19:44,3595.0,30.8156, +2016-05-06 23:30:00,,,27.957 +2016-05-06 23:34:39,3594.0,30.8697, +2016-05-06 23:45:00,,,27.9546 +2016-05-06 23:49:34,3593.0,30.8156, +2016-05-07 00:00:00,,,28.0092 +2016-05-07 00:04:30,3592.0,30.8156, +2016-05-07 00:15:00,,,27.9595 +2016-05-07 00:19:25,3592.0,30.8697, +2016-05-07 00:30:00,,,27.9595 +2016-05-07 00:34:20,3591.0,30.8265, +2016-05-07 00:45:00,,,27.9595 +2016-05-07 00:49:15,3590.0,30.867, +2016-05-07 01:00:00,,,28.0092 +2016-05-07 01:04:11,3588.0,30.8697, +2016-05-07 01:15:00,,,28.059 +2016-05-07 01:19:06,3588.0,30.8156, +2016-05-07 01:30:00,,,28.0067 +2016-05-07 01:34:01,3588.0,30.7076, +2016-05-07 01:45:00,,,28.0067 +2016-05-07 01:48:56,3587.0,30.8697, +2016-05-07 02:00:00,,,28.0067 +2016-05-07 02:03:51,3587.0,30.8697, +2016-05-07 02:15:00,,,28.0092 +2016-05-07 02:18:47,3586.0,30.8697, +2016-05-07 02:30:00,,,27.957 +2016-05-07 02:33:42,3586.0,30.8697, +2016-05-07 02:45:00,,,27.957 +2016-05-07 02:48:37,3585.0,30.8697, +2016-05-07 03:00:00,,,27.9645 +2016-05-07 03:03:32,3584.0,30.8697, +2016-05-07 03:15:00,,,28.0142 +2016-05-07 03:18:27,3584.0,30.8697, +2016-05-07 03:30:00,,,27.9645 +2016-05-07 03:33:22,3583.0,30.8156, +2016-05-07 03:45:00,,,28.0142 +2016-05-07 03:48:17,3582.0,30.8156, +2016-05-07 04:00:00,,,28.0142 +2016-05-07 04:03:13,3581.0,30.867, +2016-05-07 04:15:00,,,27.9645 +2016-05-07 04:18:08,3582.0,30.8697, +2016-05-07 04:30:00,,,28.0142 +2016-05-07 04:33:10,3580.0,30.8697, +2016-05-07 04:45:00,,,28.0142 +2016-05-07 04:48:05,3581.0,30.8156, +2016-05-07 05:00:00,,,28.064 +2016-05-07 05:03:00,3581.0,30.8697, +2016-05-07 05:15:00,,,28.0615 +2016-05-07 05:17:55,3578.0,30.8128, +2016-05-07 05:30:00,,,28.0167 +2016-05-07 05:32:50,3580.0,30.8156, +2016-05-07 05:45:00,,,28.1238 +2016-05-07 05:47:45,3580.0,30.6537, +2016-05-07 06:00:00,,,28.0142 +2016-05-07 06:02:40,3577.0,30.8697, +2016-05-07 06:15:00,,,28.0142 +2016-05-07 06:17:35,3578.0,30.8697, +2016-05-07 06:30:00,,,27.9719 +2016-05-07 06:32:30,3578.0,30.8697, +2016-05-07 06:45:00,,,28.0241 +2016-05-07 06:47:25,3578.0,30.8156, +2016-05-07 07:00:00,,,28.0142 +2016-05-07 07:02:20,3576.0,30.8697, +2016-05-07 07:15:00,,,28.0216 +2016-05-07 07:17:15,3576.0,30.8073, +2016-05-07 07:30:00,,,27.9744 +2016-05-07 07:32:10,3576.0,30.8615, +2016-05-07 07:45:00,,,27.9719 +2016-05-07 07:47:05,3578.0,30.8073, +2016-05-07 08:00:00,,,28.0216 +2016-05-07 08:02:00,3582.0,30.7506, +2016-05-07 08:15:00,,,28.0216 +2016-05-07 08:16:55,3584.0,30.8101, +2016-05-07 08:30:00,,,28.0241 +2016-05-07 08:31:51,3584.0,30.8073, +2016-05-07 08:45:00,,,27.9719 +2016-05-07 08:46:46,3587.0,30.9184, +2016-05-07 09:00:00,,,28.0216 +2016-05-07 09:01:41,3581.0,31.0955, +2016-05-07 09:15:00,,,27.9719 +2016-05-07 09:16:37,3578.0,30.867, +2016-05-07 09:30:00,,,27.9719 +2016-05-07 09:31:32,3581.0,30.9783, +2016-05-07 09:45:00,,,28.0241 +2016-05-07 09:46:28,3588.0,30.9157, +2016-05-07 10:00:00,,,28.0216 +2016-05-07 10:01:23,3573.0,31.0355, +2016-05-07 10:15:00,,,28.0216 +2016-05-07 10:16:19,3588.0,30.867, +2016-05-07 10:30:00,,,27.9719 +2016-05-07 10:31:14,3592.0,31.153, +2016-05-07 10:45:00,,,27.9744 +2016-05-07 10:46:10,3586.0,30.8642, +2016-05-07 11:00:00,,,28.0216 +2016-05-07 11:01:06,3589.0,30.867, +2016-05-07 11:15:00,,,27.9719 +2016-05-07 11:16:02,3577.0,31.1038, +2016-05-07 11:30:00,,,28.0216 +2016-05-07 11:30:58,3582.0,31.0983, +2016-05-07 11:45:00,,,27.9719 +2016-05-07 11:45:53,3585.0,31.0983, +2016-05-07 12:00:00,,,27.8233 +2016-05-07 12:00:49,3597.0,30.8724, +2016-05-07 12:15:00,,,27.774 +2016-05-07 12:15:45,3598.0,30.9294, +2016-05-07 12:30:00,,,27.8233 +2016-05-07 12:30:41,3598.0,30.8752, +2016-05-07 12:45:00,,,27.8728 +2016-05-07 12:45:37,3595.0,31.041, +2016-05-07 13:00:00,,,27.8233 +2016-05-07 13:00:33,3577.0,31.2271, +2016-05-07 13:15:00,,,27.8233 +2016-05-07 13:15:29,3577.0,30.8971, +2016-05-07 13:30:00,,,27.774 +2016-05-07 13:30:25,3596.0,30.9948, +2016-05-07 13:45:00,,,27.774 +2016-05-07 13:45:21,3588.0,31.1066, +2016-05-07 14:00:00,,,27.7764 +2016-05-07 14:00:17,3591.0,31.0603, +2016-05-07 14:15:00,,,27.8233 +2016-05-07 14:15:13,3588.0,31.1204, +2016-05-07 14:30:00,,,27.8233 +2016-05-07 14:30:09,3560.0,31.5806, +2016-05-07 14:45:00,,,27.774 +2016-05-07 14:45:04,3542.0,31.9213, +2016-05-07 15:00:00,,,27.8209 +2016-05-07 15:00:01,3554.0,31.7533, +2016-05-07 15:14:57,3553.0,31.6975, +2016-05-07 15:15:00,,,27.8209 +2016-05-07 15:29:53,3549.0,31.8233, +2016-05-07 15:30:00,,,27.8728 +2016-05-07 15:44:49,3536.0,32.2379, +2016-05-07 15:45:00,,,27.8703 +2016-05-07 15:59:45,3531.0,32.0031, +2016-05-07 16:00:00,,,27.774 +2016-05-07 16:14:41,3523.0,32.2407, +2016-05-07 16:15:00,,,27.8233 +2016-05-07 16:29:37,3525.0,32.1669, +2016-05-07 16:30:00,,,27.8233 +2016-05-07 16:44:33,3528.0,32.068000000000005, +2016-05-07 16:45:00,,,27.7715 +2016-05-07 16:59:29,3538.0,31.9412, +2016-05-07 17:00:00,,,27.8233 +2016-05-07 17:14:26,3530.0,32.0145, +2016-05-07 17:15:00,,,27.7715 +2016-05-07 17:29:21,3525.0,32.1331, +2016-05-07 17:30:00,,,27.8233 +2016-05-07 17:44:17,3517.0,32.366, +2016-05-07 17:45:00,,,27.8233 +2016-05-07 17:59:13,3514.0,32.3747, +2016-05-07 18:00:00,,,27.8307 +2016-05-07 18:14:09,3508.0,32.4976, +2016-05-07 18:15:00,,,27.8307 +2016-05-07 18:29:05,3506.0,32.3234, +2016-05-07 18:30:00,,,27.8802 +2016-05-07 18:44:01,3533.0,-9.2931, +2016-05-07 18:45:00,,,27.8802 +2016-05-07 18:58:57,3516.0,32.2012, +2016-05-07 19:00:00,,,27.8307 +2016-05-07 19:13:52,3514.0,32.1445, +2016-05-07 19:15:00,,,27.8802 +2016-05-07 19:28:48,3499.0,32.449, +2016-05-07 19:30:00,,,27.8802 +2016-05-07 19:43:44,3498.0,32.449, +2016-05-07 19:45:00,,,27.8307 +2016-05-07 19:58:40,3502.0,32.2723, +2016-05-07 20:00:00,,,27.8802 +2016-05-07 20:13:35,3479.0,32.6961, +2016-05-07 20:15:00,,,27.8802 +2016-05-07 20:28:31,3488.0,32.389, +2016-05-07 20:30:00,,,27.9297 +2016-05-07 20:43:26,3469.0,32.8146, +2016-05-07 20:45:00,,,27.8307 +2016-05-07 20:58:22,3464.0,32.8117, +2016-05-07 21:00:00,,,27.8802 +2016-05-07 21:13:17,3461.0,32.9306, +2016-05-07 21:15:00,,,27.8381 +2016-05-07 21:28:13,3455.0,32.9335, +2016-05-07 21:30:00,,,27.9372 +2016-05-07 21:43:08,3449.0,33.0559, +2016-05-07 21:45:00,,,27.9372 +2016-05-07 21:58:04,3450.0,32.9365, +2016-05-07 22:00:00,,,27.8876 +2016-05-07 22:12:59,3450.0,32.9306, +2016-05-07 22:15:00,,,27.8876 +2016-05-07 22:27:55,3437.0,33.1788, +2016-05-07 22:30:00,,,27.8876 +2016-05-07 22:42:50,3420.0,33.0559, +2016-05-07 22:45:00,,,27.9372 +2016-05-07 22:57:45,3412.0,33.2552, +2016-05-07 23:00:00,,,27.9372 +2016-05-07 23:12:40,3392.0,33.8639, +2016-05-07 23:15:00,,,27.8851 +2016-05-07 23:27:36,3381.0,34.0535, +2016-05-07 23:30:00,,,27.8876 +2016-05-07 23:42:31,3364.0,34.3753, +2016-05-07 23:45:00,,,27.8876 +2016-05-07 23:57:26,3030.0,-8.1326, +2016-05-08 00:00:00,,,-4.0625 +2016-05-08 00:12:22,3030.0,-6.5776, +2016-05-08 00:15:00,,,24.5436 +2016-05-08 00:27:17,3051.0,-11.7669, +2016-05-08 00:30:00,,, +2016-05-08 00:42:13,3051.0,-11.7005, +2016-05-08 00:45:00,,, +2016-05-08 00:57:08,3051.0,-11.6675, +2016-05-08 01:00:00,,, +2016-05-08 01:12:06,3050.0,-11.6356, +2016-05-08 01:15:00,,, +2016-05-08 01:27:02,3050.0,-11.6685, +2016-05-08 01:30:00,,, +2016-05-08 01:41:57,3050.0,-11.6356, +2016-05-08 01:45:00,,, +2016-05-08 01:56:52,3048.0,-11.6356, +2016-05-08 02:00:00,,, +2016-05-08 02:11:47,3047.0,-11.6356, +2016-05-08 02:15:00,,, +2016-05-08 02:26:42,3045.0,-11.6356, +2016-05-08 02:30:00,,, +2016-05-08 02:41:37,3043.0,-11.6356, +2016-05-08 02:45:00,,, +2016-05-08 02:56:33,3043.0,-11.6366, +2016-05-08 03:00:00,,, +2016-05-08 03:11:28,3043.0,-11.6366, +2016-05-08 03:15:00,,, +2016-05-08 03:26:23,3040.0,-11.6366, +2016-05-08 03:30:00,,, +2016-05-08 03:41:18,3040.0,-11.6366, +2016-05-08 03:45:00,,, +2016-05-08 03:56:13,3038.0,-11.6366, +2016-05-08 04:00:00,,, +2016-05-08 04:11:08,3037.0,-11.6366, +2016-05-08 04:15:00,,, +2016-05-08 04:26:03,3036.0,-11.6366, +2016-05-08 04:30:00,,, +2016-05-08 04:40:58,3036.0,-11.6366, +2016-05-08 04:45:00,,, +2016-05-08 04:55:53,3035.0,-11.6366, +2016-05-08 05:00:00,,, +2016-05-08 05:10:48,3034.0,-11.6366, +2016-05-08 05:15:00,,, +2016-05-08 05:25:44,3031.0,-11.6706, +2016-05-08 05:30:00,,, +2016-05-08 05:40:39,3031.0,-11.6695, +2016-05-08 05:45:00,,, +2016-05-08 05:55:34,3031.0,-11.7036, +2016-05-08 06:00:00,,, +2016-05-08 06:10:29,3030.0,-11.6695, +2016-05-08 06:15:00,,, +2016-05-08 06:25:24,3030.0,-11.7036, +2016-05-08 06:30:00,,, +2016-05-08 06:40:19,3030.0,-11.7036, +2016-05-08 06:45:00,,, +2016-05-08 06:55:14,3030.0,-11.6695, +2016-05-08 07:00:00,,, +2016-05-08 07:10:09,3032.0,-11.7036, +2016-05-08 07:15:00,,, +2016-05-08 07:25:04,3034.0,-11.7026, +2016-05-08 07:30:00,,, +2016-05-08 07:39:59,3035.0,-11.7026, +2016-05-08 07:45:00,,, +2016-05-08 07:54:54,3036.0,-11.6695, +2016-05-08 08:00:00,,, +2016-05-08 08:09:50,3038.0,-11.6695, +2016-05-08 08:15:00,,, +2016-05-08 08:24:45,3041.0,-11.6706, +2016-05-08 08:30:00,,, +2016-05-08 08:39:40,3043.0,-11.6366, +2016-05-08 08:45:00,,, +2016-05-08 08:54:36,3045.0,-11.6366, +2016-05-08 09:00:00,,, +2016-05-08 09:09:31,3048.0,-11.6038, +2016-05-08 09:15:00,,, +2016-05-08 09:24:27,3051.0,-11.571, +2016-05-08 09:30:00,,, +2016-05-08 09:39:22,3053.0,-11.571, +2016-05-08 09:45:00,,, +2016-05-08 09:54:17,3058.0,-11.5384, +2016-05-08 10:00:00,,, +2016-05-08 10:09:13,3060.0,-11.5059, +2016-05-08 10:15:00,,, +2016-05-08 10:24:09,3064.0,-11.5059, +2016-05-08 10:30:00,,, +2016-05-08 10:39:05,3065.0,-11.5384, +2016-05-08 10:45:00,,, +2016-05-08 10:54:00,3070.0,-11.1851, +2016-05-08 11:00:00,,, +2016-05-08 11:09:03,3072.0,-11.1851, +2016-05-08 11:15:00,,, +2016-05-08 11:23:59,3072.0,-11.1841, +2016-05-08 11:30:00,,, +2016-05-08 11:38:55,3075.0,-11.1841, +2016-05-08 11:45:00,,, +2016-05-08 11:53:51,3077.0,-11.1851, +2016-05-08 12:00:00,,, +2016-05-08 12:08:47,3079.0,-11.1851, +2016-05-08 12:15:00,,, +2016-05-08 12:23:43,3080.0,-11.1851, +2016-05-08 12:30:00,,, +2016-05-08 12:38:38,3080.0,-11.1851, +2016-05-08 12:45:00,,, +2016-05-08 12:53:34,3080.0,-11.1526, +2016-05-08 13:00:00,,, +2016-05-08 13:08:30,3082.0,-11.1526, +2016-05-08 13:15:00,,, +2016-05-08 13:23:26,3083.0,-11.1526, +2016-05-08 13:30:00,,, +2016-05-08 13:38:22,3085.0,-11.1526, +2016-05-08 13:45:00,,, +2016-05-08 13:53:18,3085.0,-11.1526, +2016-05-08 14:00:00,,, +2016-05-08 14:08:14,3086.0,-11.1526, +2016-05-08 14:15:00,,, +2016-05-08 14:23:11,3086.0,-11.1526, +2016-05-08 14:30:00,,, +2016-05-08 14:38:07,3086.0,-11.1516, +2016-05-08 14:45:00,,, +2016-05-08 14:53:03,3086.0,-11.1526, +2016-05-08 15:00:00,,, +2016-05-08 15:07:59,3087.0,-11.1526, +2016-05-08 15:15:00,,, +2016-05-08 15:22:55,3087.0,-11.1526, +2016-05-08 15:30:00,,, +2016-05-08 15:37:52,3087.0,-11.1526, +2016-05-08 15:45:00,,, +2016-05-08 15:52:48,3087.0,-11.1516, +2016-05-08 16:00:00,,, +2016-05-08 16:07:44,3087.0,-11.1526, +2016-05-08 16:15:00,,, +2016-05-08 16:22:40,3087.0,-11.1526, +2016-05-08 16:30:00,,,-8.1694 +2016-05-08 16:37:36,3087.0,-11.1841, +2016-05-08 16:45:00,,,-4.835 +2016-05-08 16:52:32,3087.0,-11.1831, +2016-05-08 17:00:00,,,-4.8135 +2016-05-08 17:07:28,3087.0,-11.1831, +2016-05-08 17:15:00,,,-4.7917 +2016-05-08 17:22:24,3086.0,-11.1831, +2016-05-08 17:30:00,,,-4.7702 +2016-05-08 17:37:20,3086.0,-11.1841, +2016-05-08 17:45:00,,,-4.962 +2016-05-08 17:52:16,3085.0,-11.1831, +2016-05-08 18:00:00,,,-4.7913 +2016-05-08 18:07:12,3083.0,-11.1831, +2016-05-08 18:15:00,,,-4.9401 +2016-05-08 18:22:08,3082.0,-11.1831, +2016-05-08 18:30:00,,,-4.8968 +2016-05-08 18:37:04,3081.0,-11.2156, +2016-05-08 18:45:00,,,-4.7475 +2016-05-08 18:52:00,3080.0,-11.2156, +2016-05-08 19:00:00,,,-4.7261 +2016-05-08 19:06:56,3079.0,-11.2156, +2016-05-08 19:15:00,,,-4.7694 +2016-05-08 19:21:52,3077.0,-11.2156, +2016-05-08 19:30:00,,,-4.7274 +2016-05-08 19:36:48,3075.0,-11.2473, +2016-05-08 19:45:00,,,-4.7055 +2016-05-08 19:51:44,3072.0,-11.2147, +2016-05-08 20:00:00,,, +2016-05-08 20:06:40,3072.0,-11.2473, +2016-05-08 20:15:00,,, +2016-05-08 20:21:50,3070.0,-11.2473, +2016-05-08 20:30:00,,, +2016-05-08 20:36:45,3067.0,-11.28, +2016-05-08 20:45:00,,, +2016-05-08 20:51:41,3065.0,-11.28, +2016-05-08 21:00:00,,, +2016-05-08 21:06:37,3064.0,-11.28, +2016-05-08 21:15:00,,, +2016-05-08 21:21:32,3061.0,-11.3119, +2016-05-08 21:30:00,,, +2016-05-08 21:36:28,3058.0,-11.3119, +2016-05-08 21:45:00,,, +2016-05-08 21:51:24,3058.0,-11.3119, +2016-05-08 22:00:00,,, +2016-05-08 22:06:19,3055.0,-11.3448, +2016-05-08 22:15:00,,, +2016-05-08 22:21:15,3053.0,-11.3448, +2016-05-08 22:30:00,,, +2016-05-08 22:36:10,3051.0,-11.3438, +2016-05-08 22:45:00,,, +2016-05-08 22:51:06,3051.0,-11.3438, +2016-05-08 23:00:00,,, +2016-05-08 23:06:01,3050.0,-11.3448, +2016-05-08 23:15:00,,, +2016-05-08 23:20:56,3048.0,-11.3768, +2016-05-08 23:30:00,,, +2016-05-08 23:35:52,3047.0,-11.3768, +2016-05-08 23:45:00,,, +2016-05-08 23:50:47,3046.0,-11.3768, +2016-05-09 00:00:00,,, +2016-05-09 00:05:43,3045.0,-11.3768, +2016-05-09 00:15:00,,, +2016-05-09 00:20:38,3044.0,-11.3768, +2016-05-09 00:30:00,,, +2016-05-09 00:35:34,3043.0,-11.3758, +2016-05-09 00:45:00,,, +2016-05-09 00:50:29,3043.0,-11.3758, +2016-05-09 01:00:00,,, +2016-05-09 01:05:32,3043.0,-11.3758, +2016-05-09 01:15:00,,, +2016-05-09 01:20:27,3043.0,-11.3768, +2016-05-09 01:30:00,,, +2016-05-09 01:35:30,3042.0,-11.3758, +2016-05-09 01:45:00,,, +2016-05-09 01:50:25,3041.0,-11.3768, +2016-05-09 02:00:00,,, +2016-05-09 02:05:21,3039.0,-11.3758, +2016-05-09 02:15:00,,, +2016-05-09 02:20:16,3038.0,-11.4089, +2016-05-09 02:30:00,,, +2016-05-09 02:35:12,3037.0,-11.4089, +2016-05-09 02:45:00,,, +2016-05-09 02:50:07,3036.0,-11.4089, +2016-05-09 03:00:00,,, +2016-05-09 03:05:02,3036.0,-11.4089, +2016-05-09 03:15:00,,, +2016-05-09 03:19:58,3035.0,-11.4089, +2016-05-09 03:30:00,,, +2016-05-09 03:34:53,3033.0,-11.4089, +2016-05-09 03:45:00,,, +2016-05-09 03:49:49,3031.0,-11.4079, +2016-05-09 04:00:00,,, +2016-05-09 04:04:44,3030.0,-11.4412, +2016-05-09 04:15:00,,, +2016-05-09 04:19:39,3030.0,-11.4089, +2016-05-09 04:30:00,,, +2016-05-09 04:34:34,3029.0,-11.4422, +2016-05-09 04:45:00,,, +2016-05-09 04:49:30,3029.0,-11.4089, +2016-05-09 05:00:00,,, +2016-05-09 05:04:25,3026.0,-11.4412, +2016-05-09 05:15:00,,, +2016-05-09 05:19:20,3026.0,-11.4089, +2016-05-09 05:30:00,,, +2016-05-09 05:34:16,3025.0,-11.4079, +2016-05-09 05:45:00,,, +2016-05-09 05:49:11,3023.0,-11.4412, +2016-05-09 06:00:00,,, +2016-05-09 06:04:06,3023.0,-11.4412, +2016-05-09 06:15:00,,, +2016-05-09 06:19:01,3023.0,-11.4412, +2016-05-09 06:30:00,,, +2016-05-09 06:33:57,3022.0,-11.4412, +2016-05-09 06:45:00,,, +2016-05-09 06:48:52,3023.0,-11.4412, +2016-05-09 07:00:00,,, +2016-05-09 07:03:47,3023.0,-11.4412, +2016-05-09 07:15:00,,, +2016-05-09 07:18:42,3023.0,-11.4412, +2016-05-09 07:30:00,,, +2016-05-09 07:33:37,3025.0,-11.4089, +2016-05-09 07:45:00,,, +2016-05-09 07:48:32,3028.0,-11.4089, +2016-05-09 08:00:00,,, +2016-05-09 08:03:28,3029.0,-11.3758, +2016-05-09 08:15:00,,, +2016-05-09 08:18:23,3031.0,-11.3768, +2016-05-09 08:30:00,,, +2016-05-09 08:33:18,3034.0,-11.3768, +2016-05-09 08:45:00,,, +2016-05-09 08:48:14,3035.0,-11.3448, +2016-05-09 09:00:00,,, +2016-05-09 09:03:09,3038.0,-11.3119, +2016-05-09 09:15:00,,, +2016-05-09 09:18:05,3041.0,-11.28, +2016-05-09 09:30:00,,, +2016-05-09 09:33:00,3043.0,-11.28, +2016-05-09 09:45:00,,,-5.1088 +2016-05-09 09:47:56,3045.0,-11.28, +2016-05-09 10:00:00,,,-5.0448 +2016-05-09 10:02:51,3050.0,-11.2156, +2016-05-09 10:15:00,,,8.4257 +2016-05-09 10:17:47,3051.0,-11.1831, +2016-05-09 10:30:00,,,-3.8327 +2016-05-09 10:32:42,3054.0,-11.1841, +2016-05-09 10:45:00,,,55.005 +2016-05-09 10:47:38,3058.0,-11.2156, +2016-05-09 11:00:00,,,23.7992 +2016-05-09 11:02:34,3061.0,-11.1526, +2016-05-09 11:15:00,,,-3.5335 +2016-05-09 11:17:30,3064.0,-11.1526, +2016-05-09 11:30:00,,,-4.7107 +2016-05-09 11:32:26,3065.0,-11.1526, +2016-05-09 11:45:00,,,23.9232 +2016-05-09 11:47:22,3066.0,-11.1526, +2016-05-09 12:00:00,,,25.6107 +2016-05-09 12:02:18,3068.0,-11.1526, +2016-05-09 12:15:00,,,26.7861 +2016-05-09 12:17:14,3070.0,-11.1526, +2016-05-09 12:30:00,,,-4.4504 +2016-05-09 12:32:10,3071.0,-11.1526, +2016-05-09 12:45:00,,,26.2608 +2016-05-09 12:47:06,3072.0,-11.1526, +2016-05-09 13:00:00,,,-5.2364 +2016-05-09 13:02:02,3072.0,-11.1526, +2016-05-09 13:15:00,,,-0.2046 +2016-05-09 13:16:58,3073.0,-11.1526, +2016-05-09 13:30:00,,,1.5813 +2016-05-09 13:31:54,3074.0,-11.1526, +2016-05-09 13:45:00,,,55.3896 +2016-05-09 13:46:50,3075.0,-11.1841, +2016-05-09 14:00:00,,,55.7789 +2016-05-09 14:01:46,3076.0,-11.1841, +2016-05-09 14:15:00,,,55.6503 +2016-05-09 14:16:42,3077.0,-11.1841, +2016-05-09 14:30:00,,,55.7789 +2016-05-09 14:31:38,3078.0,-11.1841, +2016-05-09 14:45:00,,,56.0378 +2016-05-09 14:46:34,3079.0,-11.1841, +2016-05-09 15:00:00,,,55.6503 +2016-05-09 15:01:30,3079.0,-11.1516, +2016-05-09 15:15:00,,,55.6503 +2016-05-09 15:16:26,3079.0,-11.1526, +2016-05-09 15:30:00,,,55.6503 +2016-05-09 15:31:22,3080.0,-11.1841, +2016-05-09 15:45:00,,, +2016-05-09 15:46:19,3080.0,-11.2156, +2016-05-09 16:00:00,,,56.173 +2016-05-09 16:01:15,3080.0,-11.1841, +2016-05-09 16:15:00,,,56.173 +2016-05-09 16:16:11,3080.0,-11.1841, +2016-05-09 16:30:00,,,56.173 +2016-05-09 16:31:07,3080.0,-11.1841, +2016-05-09 16:45:00,,, +2016-05-09 16:46:03,3079.0,-11.2156, +2016-05-09 17:00:00,,,49.4429 +2016-05-09 17:00:59,3078.0,-11.2156, +2016-05-09 17:15:00,,,56.3038 +2016-05-09 17:15:55,3078.0,-11.28, +2016-05-09 17:30:00,,,56.3038 +2016-05-09 17:30:51,3077.0,-11.2156, +2016-05-09 17:45:00,,,56.4401 +2016-05-09 17:45:47,3076.0,-11.2156, +2016-05-09 18:00:00,,,56.0527 +2016-05-09 18:00:44,3074.0,-11.2156, +2016-05-09 18:15:00,,,56.0428 +2016-05-09 18:15:40,3072.0,-11.2156, +2016-05-09 18:30:00,,,55.6602 +2016-05-09 18:30:36,3072.0,-11.2147, +2016-05-09 18:45:00,,,56.0478 +2016-05-09 18:45:32,3071.0,-11.2473, +2016-05-09 19:00:00,,,56.7044 +2016-05-09 19:00:28,3070.0,-11.2473, +2016-05-09 19:15:00,,,56.7044 +2016-05-09 19:15:24,3067.0,-11.2473, +2016-05-09 19:30:00,,,56.3188 +2016-05-09 19:30:20,3065.0,-11.28, +2016-05-09 19:45:00,,,56.183 +2016-05-09 19:45:16,3064.0,-11.28, +2016-05-09 20:00:00,,, +2016-05-09 20:00:11,3061.0,-11.3119, +2016-05-09 20:15:00,,,-7.3898 +2016-05-09 20:15:07,3059.0,-11.2473, +2016-05-09 20:30:00,,,55.5271 +2016-05-09 20:30:03,3058.0,-11.3119, +2016-05-09 20:44:59,3054.0,-11.3438, +2016-05-09 20:45:00,,, +2016-05-09 20:59:55,3052.0,-11.3119, +2016-05-09 21:00:00,,,55.5222 +2016-05-09 21:14:51,3051.0,-11.28, +2016-05-09 21:15:00,,,-3.99 +2016-05-09 21:29:47,3050.0,-11.28, +2016-05-09 21:30:00,,,6.082999999999998 +2016-05-09 21:44:42,3048.0,-11.28, +2016-05-09 21:45:00,,,-4.4631 +2016-05-09 21:59:38,3044.0,-11.3768, +2016-05-09 22:00:00,,,55.5271 +2016-05-09 22:14:34,3043.0,-11.3758, +2016-05-09 22:15:00,,,55.923 +2016-05-09 22:29:29,3042.0,-11.3758, +2016-05-09 22:30:00,,,56.587 +2016-05-09 22:44:25,3039.0,-11.3758, +2016-05-09 22:45:00,,,56.0627 +2016-05-09 22:59:21,3039.0,-11.4079, +2016-05-09 23:00:00,,,54.6763 +2016-05-09 23:14:16,3043.0,-11.3428, +2016-05-09 23:15:00,,,70.125 +2016-05-09 23:29:12,3036.0,-11.4079, +2016-05-09 23:30:00,,,56.4601 +2016-05-09 23:44:07,3044.0,-11.3758, +2016-05-09 23:45:00,,,24.2075 +2016-05-09 23:59:03,3042.0,-11.5069, +2016-05-10 00:00:00,,,22.5775 +2016-05-10 00:13:58,3032.0,-11.3758, +2016-05-10 00:15:00,,,30.5977 +2016-05-10 00:28:53,3030.0,-11.3758, +2016-05-10 00:30:00,,,-0.3133 +2016-05-10 00:43:56,3029.0,-11.3758, +2016-05-10 00:45:00,,,-4.1844 +2016-05-10 00:58:51,3029.0,-11.3758, +2016-05-10 01:00:00,,,-4.6351 +2016-05-10 01:13:47,3027.0,-11.4089, +2016-05-10 01:15:00,,,-4.6372 +2016-05-10 01:28:42,3026.0,-11.3758, +2016-05-10 01:30:00,,,-4.6582 +2016-05-10 01:43:37,3024.0,-11.4079, +2016-05-10 01:45:00,,,-4.467 +2016-05-10 01:58:33,3023.0,-11.4089, +2016-05-10 02:00:00,,, +2016-05-10 02:13:28,3022.0,-11.4079, +2016-05-10 02:15:00,,,-4.34 +2016-05-10 02:28:23,3020.0,-11.4089, +2016-05-10 02:30:00,,, +2016-05-10 02:43:19,3020.0,-11.4089, +2016-05-10 02:45:00,,, +2016-05-10 02:58:14,3019.0,-11.4079, +2016-05-10 03:00:00,,, +2016-05-10 03:13:09,3016.0,-11.4079, +2016-05-10 03:15:00,,, +2016-05-10 03:28:04,3015.0,-11.4079, +2016-05-10 03:30:00,,, +2016-05-10 03:43:00,3014.0,-11.4079, +2016-05-10 03:45:00,,, +2016-05-10 03:57:55,3014.0,-11.4412, +2016-05-10 04:00:00,,, +2016-05-10 04:12:50,3012.0,-11.4412, +2016-05-10 04:15:00,,, +2016-05-10 04:27:46,3011.0,-11.4079, +2016-05-10 04:30:00,,, +2016-05-10 04:42:41,3010.0,-11.4412, +2016-05-10 04:45:00,,, +2016-05-10 04:57:36,3009.0,-11.4412, +2016-05-10 05:00:00,,, +2016-05-10 05:12:31,3008.0,-11.4412, +2016-05-10 05:15:00,,, +2016-05-10 05:27:27,3007.0,-11.4402, +2016-05-10 05:30:00,,, +2016-05-10 05:42:22,3006.0,-11.4402, +2016-05-10 05:45:00,,, +2016-05-10 05:57:17,3005.0,-11.4402, +2016-05-10 06:00:00,,, +2016-05-10 06:12:12,3004.0,-11.4402, +2016-05-10 06:15:00,,, +2016-05-10 06:27:08,3003.0,-11.4402, +2016-05-10 06:30:00,,, +2016-05-10 06:42:03,3005.0,-11.5059, +2016-05-10 06:45:00,,, +2016-05-10 06:56:58,3005.0,-11.4079, +2016-05-10 07:00:00,,, +2016-05-10 07:11:54,3004.0,-11.4412, +2016-05-10 07:15:00,,, +2016-05-10 07:26:49,3005.0,-11.4412, +2016-05-10 07:30:00,,, +2016-05-10 07:41:44,3007.0,-11.4412, +2016-05-10 07:45:00,,, +2016-05-10 07:56:39,3008.0,-11.4735, +2016-05-10 08:00:00,,, +2016-05-10 08:11:35,3009.0,-11.4089, +2016-05-10 08:15:00,,, +2016-05-10 08:26:30,3010.0,-11.4089, +2016-05-10 08:30:00,,, +2016-05-10 08:41:25,3012.0,-11.3758, +2016-05-10 08:45:00,,, +2016-05-10 08:56:21,3015.0,-11.4079, +2016-05-10 09:00:00,,,-8.6262 +2016-05-10 09:11:16,3016.0,-11.3438, +2016-05-10 09:15:00,,, +2016-05-10 09:26:11,3019.0,-11.3099, +2016-05-10 09:30:00,,, +2016-05-10 09:41:07,3021.0,-11.3119, +2016-05-10 09:45:00,,, +2016-05-10 09:56:02,3022.0,-11.28, +2016-05-10 10:00:00,,, +2016-05-10 10:10:58,3025.0,-11.2147, +2016-05-10 10:15:00,,, +2016-05-10 10:25:53,3029.0,-11.2463, +2016-05-10 10:30:00,,, +2016-05-10 10:40:49,3032.0,-11.1831, +2016-05-10 10:45:00,,, +2016-05-10 10:55:45,3036.0,-11.2166, +2016-05-10 11:00:00,,, +2016-05-10 11:10:40,3037.0,-11.1831, +2016-05-10 11:15:00,,,-4.6623 +2016-05-10 11:25:36,3038.0,-11.2156, +2016-05-10 11:30:00,,, +2016-05-10 11:40:32,3040.0,-11.2156, +2016-05-10 11:45:00,,,-4.6623 +2016-05-10 11:55:28,3043.0,-11.2156, +2016-05-10 12:00:00,,,-4.7055 +2016-05-10 12:10:24,3043.0,-11.2156, +2016-05-10 12:15:00,,,-4.7055 +2016-05-10 12:25:20,3045.0,-11.2156, +2016-05-10 12:30:00,,,-4.6841 +2016-05-10 12:40:15,3047.0,-11.1831, +2016-05-10 12:45:00,,,-4.7055 +2016-05-10 12:55:11,3048.0,-11.1831, +2016-05-10 13:00:00,,,-4.7055 +2016-05-10 13:10:07,3050.0,-11.1841, +2016-05-10 13:15:00,,,-4.7055 +2016-05-10 13:25:03,3051.0,-11.1841, +2016-05-10 13:30:00,,,-4.7475 +2016-05-10 13:39:59,3052.0,-11.1516, +2016-05-10 13:45:00,,,-4.8543 +2016-05-10 13:54:55,3053.0,-11.1526, +2016-05-10 14:00:00,,,-4.6413 +2016-05-10 14:09:51,3054.0,-11.1841, +2016-05-10 14:15:00,,,-4.6623 +2016-05-10 14:24:47,3054.0,-11.1841, +2016-05-10 14:30:00,,,-4.8753 +2016-05-10 14:39:43,3055.0,-11.1841, +2016-05-10 14:45:00,,,-4.9392 +2016-05-10 14:54:40,3056.0,-11.1841, +2016-05-10 15:00:00,,,-4.9397 +2016-05-10 15:09:36,3057.0,-11.1526, +2016-05-10 15:15:00,,,-5.0041 +2016-05-10 15:24:32,3058.0,-11.1841, +2016-05-10 15:30:00,,,-4.9182 +2016-05-10 15:39:28,3058.0,-11.1841, +2016-05-10 15:45:00,,,-4.9603 +2016-05-10 15:54:24,3058.0,-11.1851, +2016-05-10 16:00:00,,,-4.8963 +2016-05-10 16:09:20,3058.0,-11.1841, +2016-05-10 16:15:00,,,-4.9178 +2016-05-10 16:24:16,3058.0,-11.1841, +2016-05-10 16:30:00,,,-4.7891 +2016-05-10 16:39:12,3057.0,-11.1841, +2016-05-10 16:45:00,,,-5.1102 +2016-05-10 16:54:08,3057.0,-11.1841, +2016-05-10 17:00:00,,,-4.874 +2016-05-10 17:09:04,3054.0,-11.1831, +2016-05-10 17:15:00,,,-4.8101 +2016-05-10 17:24:00,3054.0,-11.1841, +2016-05-10 17:30:00,,,-4.6191 +2016-05-10 17:38:56,3053.0,-11.2156, +2016-05-10 17:45:00,,,-4.832 +2016-05-10 17:53:52,3052.0,-11.2156, +2016-05-10 18:00:00,,,-4.832 +2016-05-10 18:08:48,3051.0,-11.2156, +2016-05-10 18:15:00,,,-4.832 +2016-05-10 18:23:44,3050.0,-11.2156, +2016-05-10 18:30:00,,,-4.8316 +2016-05-10 18:38:41,3050.0,-11.2156, +2016-05-10 18:45:00,,,-4.7673 +2016-05-10 18:53:36,3047.0,-11.2483, +2016-05-10 19:00:00,,,-4.5969 +2016-05-10 19:08:32,3045.0,-11.2473, +2016-05-10 19:15:00,,,-4.5977 +2016-05-10 19:23:28,3043.0,-11.28, +2016-05-10 19:30:00,,,-4.5981 +2016-05-10 19:38:24,3042.0,-11.28, +2016-05-10 19:45:00,,,-4.5763 +2016-05-10 19:53:20,3039.0,-11.279000000000002, +2016-05-10 20:00:00,,,-4.5981 +2016-05-10 20:08:16,3037.0,-11.279000000000002, +2016-05-10 20:15:00,,,-4.5985 +2016-05-10 20:23:12,3036.0,-11.3119, +2016-05-10 20:30:00,,,-4.5771 +2016-05-10 20:38:08,3034.0,-11.3119, +2016-05-10 20:45:00,,,-4.5767 +2016-05-10 20:53:04,3030.0,-11.3119, +2016-05-10 21:00:00,,,-4.5763 +2016-05-10 21:07:59,3029.0,-11.3438, +2016-05-10 21:15:00,,,-4.5763 +2016-05-10 21:22:55,3027.0,-11.3438, +2016-05-10 21:30:00,,,-4.5981 +2016-05-10 21:37:51,3025.0,-11.3438, +2016-05-10 21:45:00,,,-4.5981 +2016-05-10 21:52:47,3023.0,-11.3758, +2016-05-10 22:00:00,,,-4.5767 +2016-05-10 22:07:43,3022.0,-11.3758, +2016-05-10 22:15:00,,,-4.5557 +2016-05-10 22:22:38,3020.0,-11.3758, +2016-05-10 22:30:00,,,-4.5767 +2016-05-10 22:37:34,3018.0,-11.3758, +2016-05-10 22:45:00,,,-4.5985 +2016-05-10 22:52:30,3015.0,-11.4089, +2016-05-10 23:00:00,,, +2016-05-10 23:07:26,3015.0,-11.3758, +2016-05-10 23:15:00,,,-4.5343 +2016-05-10 23:22:21,3014.0,-11.4089, +2016-05-10 23:30:00,,,-4.5561 +2016-05-10 23:37:17,3012.0,-11.4079, +2016-05-10 23:45:00,,,-4.5561 +2016-05-10 23:52:13,3011.0,-11.4079, +2016-05-11 00:00:00,,, +2016-05-11 00:07:08,3010.0,-11.4079, +2016-05-11 00:15:00,,,-4.5561 +2016-05-11 00:22:04,3009.0,-11.4079, +2016-05-11 00:30:00,,,-4.5561 +2016-05-11 00:36:59,3008.0,-11.4412, +2016-05-11 00:45:00,,,-11.6284 +2016-05-11 00:51:55,3007.0,-11.4412, +2016-05-11 01:00:00,,, +2016-05-11 01:06:51,3007.0,-11.4412, +2016-05-11 01:15:00,,,-11.4771 +2016-05-11 01:21:46,3006.0,-11.4412, +2016-05-11 01:30:00,,, +2016-05-11 01:36:42,3004.0,-11.4412, +2016-05-11 01:45:00,,, +2016-05-11 01:51:37,3002.0,-11.4402, +2016-05-11 02:00:00,,, +2016-05-11 02:06:33,3001.0,-11.4402, +2016-05-11 02:15:00,,, +2016-05-11 02:21:28,3000.0,-11.4412, +2016-05-11 02:30:00,,, +2016-05-11 02:36:24,2999.0,-11.4735, +2016-05-11 02:45:00,,, +2016-05-11 02:51:19,2997.0,-11.4735, +2016-05-11 03:00:00,,, +2016-05-11 03:06:15,2995.0,-11.4735, +2016-05-11 03:15:00,,, +2016-05-11 03:21:10,2994.0,-11.4402, +2016-05-11 03:30:00,,, +2016-05-11 03:36:06,2993.0,-11.5069, +2016-05-11 03:45:00,,, +2016-05-11 03:51:01,2992.0,-11.5049, +2016-05-11 04:00:00,,, +2016-05-11 04:05:56,2991.0,-11.5741, +2016-05-11 04:15:00,,, +2016-05-11 04:20:52,2989.0,-11.5049, +2016-05-11 04:30:00,,, +2016-05-11 04:35:47,2987.0,-11.5069, +2016-05-11 04:45:00,,, +2016-05-11 04:50:42,2987.0,-11.5049, +2016-05-11 05:00:00,,, +2016-05-11 05:05:37,2986.0,-11.5049, +2016-05-11 05:15:00,,, +2016-05-11 05:20:32,2985.0,-11.5049, +2016-05-11 05:30:00,,, +2016-05-11 05:35:28,2984.0,-11.5049, +2016-05-11 05:45:00,,, +2016-05-11 05:50:23,2983.0,-11.5049, +2016-05-11 06:00:00,,, +2016-05-11 06:05:18,2982.0,-11.5384, +2016-05-11 06:15:00,,, +2016-05-11 06:20:13,2981.0,-11.5049, +2016-05-11 06:30:00,,, +2016-05-11 06:35:08,2980.0,-11.5049, +2016-05-11 06:45:00,,, +2016-05-11 06:50:03,2980.0,-11.5384, +2016-05-11 07:00:00,,, +2016-05-11 07:04:59,2981.0,-11.5049, +2016-05-11 07:15:00,,,-4.4686 +2016-05-11 07:19:54,2982.0,-11.5384, +2016-05-11 07:30:00,,,-4.5113 +2016-05-11 07:34:49,2983.0,-11.5049, +2016-05-11 07:45:00,,,-4.5109 +2016-05-11 07:49:44,2985.0,-11.5049, +2016-05-11 08:00:00,,,-4.659 +2016-05-11 08:04:39,2986.0,-11.5059, +2016-05-11 08:15:00,,,-4.5739 +2016-05-11 08:19:34,2988.0,-11.4725, +2016-05-11 08:30:00,,,-4.9147 +2016-05-11 08:34:30,2992.0,-11.4735, +2016-05-11 08:45:00,,,-4.6804 +2016-05-11 08:49:25,2993.0,-11.4402, +2016-05-11 09:00:00,,,64.3117 +2016-05-11 09:04:13,3171.0,-10.751, +2016-05-11 09:15:00,,,64.2946 +2016-05-11 09:19:09,3170.0,-10.751, +2016-05-11 09:30:00,,,63.9632 +2016-05-11 09:34:05,3171.0,-10.751, +2016-05-11 09:45:00,,,63.9632 +2016-05-11 09:49:01,3171.0,-10.7198, +2016-05-11 10:00:00,,,63.9575 +2016-05-11 10:03:57,3171.0,-10.7207, +2016-05-11 10:15:00,,,63.793 +2016-05-11 10:18:53,3174.0,-10.6895, +2016-05-11 10:30:00,,,63.7987 +2016-05-11 10:33:49,3175.0,-10.6895, +2016-05-11 10:45:00,,,63.6293 +2016-05-11 10:48:45,3177.0,-10.6904, +2016-05-11 11:00:00,,,63.6293 +2016-05-11 11:03:41,3178.0,-10.6593, +2016-05-11 11:15:00,,,63.2987 +2016-05-11 11:18:37,3180.0,-10.6593, +2016-05-11 11:30:00,,,63.4608 +2016-05-11 11:33:33,3181.0,-10.6593, +2016-05-11 11:45:00,,,62.9656 +2016-05-11 11:48:29,3183.0,-10.6593, +2016-05-11 12:00:00,,,63.1373 +2016-05-11 12:03:25,3184.0,-10.6593, +2016-05-11 12:15:00,,,63.1373 +2016-05-11 12:18:21,3185.0,-10.6593, +2016-05-11 12:30:00,,,62.1742 +2016-05-11 12:33:18,3185.0,-10.6602, +2016-05-11 12:45:00,,,61.6972 +2016-05-11 12:48:14,3186.0,-10.6602, +2016-05-11 13:00:00,,,61.6972 +2016-05-11 13:03:10,3188.0,-10.6292, +2016-05-11 13:15:00,,,61.8573 +2016-05-11 13:18:06,3188.0,-10.6292, +2016-05-11 13:30:00,,,61.6972 +2016-05-11 13:33:03,3189.0,-10.6292, +2016-05-11 13:45:00,,,61.5433 +2016-05-11 13:47:59,3189.0,-10.6292, +2016-05-11 14:00:00,,,61.6972 +2016-05-11 14:02:55,3190.0,-10.6292, +2016-05-11 14:15:00,,,61.8573 +2016-05-11 14:17:52,3191.0,-10.6292, +2016-05-11 14:30:00,,,62.1742 +2016-05-11 14:32:48,3191.0,-10.6292, +2016-05-11 14:45:00,,,62.1742 +2016-05-11 14:47:44,3191.0,-10.6292, +2016-05-11 15:00:00,,,62.1742 +2016-05-11 15:02:41,3191.0,-10.6292, +2016-05-11 15:15:00,,,62.342 +2016-05-11 15:17:37,3192.0,-10.6292, +2016-05-11 15:30:00,,,62.331 +2016-05-11 15:32:33,3191.0,-10.6292, +2016-05-11 15:45:00,,,62.331 +2016-05-11 15:47:30,3192.0,-10.6292, +2016-05-11 16:00:00,,,62.331 +2016-05-11 16:02:26,3192.0,-10.6292, +2016-05-11 16:15:00,,,62.1742 +2016-05-11 16:17:22,3191.0,-10.6292, +2016-05-11 16:30:00,,,61.6972 +2016-05-11 16:32:18,3191.0,-10.6602, +2016-05-11 16:45:00,,,61.8573 +2016-05-11 16:47:14,3190.0,-10.6602, +2016-05-11 17:00:00,,,62.6523 +2016-05-11 17:02:11,3190.0,-10.6602, +2016-05-11 17:15:00,,,62.0126 +2016-05-11 17:17:07,3189.0,-10.6593, +2016-05-11 17:30:00,,,62.4885 +2016-05-11 17:32:03,3189.0,-10.6602, +2016-05-11 17:45:00,,,62.331 +2016-05-11 17:46:59,3188.0,-10.6602, +2016-05-11 18:00:00,,,62.331 +2016-05-11 18:01:55,3187.0,-10.6904, +2016-05-11 18:15:00,,,62.1852 +2016-05-11 18:16:51,3185.0,-10.6904, +2016-05-11 18:30:00,,,62.342 +2016-05-11 18:31:47,3184.0,-10.6904, +2016-05-11 18:45:00,,,62.342 +2016-05-11 18:46:44,3184.0,-10.6904, +2016-05-11 19:00:00,,,62.5052 +2016-05-11 19:01:40,3184.0,-10.6904, +2016-05-11 19:15:00,,,62.3476 +2016-05-11 19:16:36,3183.0,-10.7217, +2016-05-11 19:30:00,,,62.342 +2016-05-11 19:31:32,3182.0,-10.7217, +2016-05-11 19:45:00,,,62.342 +2016-05-11 19:46:28,3181.0,-10.7217, +2016-05-11 20:00:00,,,62.342 +2016-05-11 20:01:24,3180.0,-10.7207, +2016-05-11 20:15:00,,,62.0126 +2016-05-11 20:16:19,3178.0,-10.7207, +2016-05-11 20:30:00,,,62.1852 +2016-05-11 20:31:15,3177.0,-10.7207, +2016-05-11 20:45:00,,,62.3476 +2016-05-11 20:46:11,3177.0,-10.751, +2016-05-11 21:00:00,,,61.8737 +2016-05-11 21:01:07,3175.0,-10.751, +2016-05-11 21:15:00,,,62.1852 +2016-05-11 21:16:03,3174.0,-10.751, +2016-05-11 21:30:00,,,62.5052 +2016-05-11 21:30:58,3174.0,-10.751, +2016-05-11 21:45:00,,,62.342 +2016-05-11 21:45:54,3173.0,-10.751, +2016-05-11 22:00:00,,,62.5052 +2016-05-11 22:00:50,3172.0,-10.7824, +2016-05-11 22:15:00,,,62.669 +2016-05-11 22:15:46,3171.0,-10.7824, +2016-05-11 22:30:00,,,62.6635 +2016-05-11 22:30:41,3171.0,-10.7824, +2016-05-11 22:45:00,,,62.5052 +2016-05-11 22:45:37,3170.0,-10.7824, +2016-05-11 23:00:00,,,62.5052 +2016-05-11 23:00:33,3169.0,-10.8139, +2016-05-11 23:15:00,,,62.342 +2016-05-11 23:15:28,3168.0,-10.8129, +2016-05-11 23:30:00,,,62.4996 +2016-05-11 23:30:24,3167.0,-10.8139, +2016-05-11 23:45:00,,,62.0291 +2016-05-11 23:45:20,3166.0,-10.8129, +2016-05-12 00:00:00,,,62.1963 +2016-05-12 00:00:15,3165.0,-10.7815, +2016-05-12 00:15:00,,,62.342 +2016-05-12 00:15:11,3164.0,-10.8129, +2016-05-12 00:30:00,,,62.1852 +2016-05-12 00:30:07,3164.0,-10.8129, +2016-05-12 00:45:00,,,61.401 +2016-05-12 00:45:02,3163.0,-10.8129, +2016-05-12 00:59:58,3163.0,-10.7824, +2016-05-12 01:00:00,,,61.7136 +2016-05-12 01:14:53,3163.0,-10.8129, +2016-05-12 01:15:00,,,62.4996 +2016-05-12 01:29:49,3162.0,-10.8129, +2016-05-12 01:30:00,,,62.6635 +2016-05-12 01:44:44,3162.0,-10.8129, +2016-05-12 01:45:00,,,62.8281 +2016-05-12 01:59:40,3162.0,-10.8129, +2016-05-12 02:00:00,,,62.9879 +2016-05-12 02:14:35,3162.0,-10.8444, +2016-05-12 02:15:00,,,63.3155 +2016-05-12 02:29:31,3162.0,-10.8444, +2016-05-12 02:30:00,,,63.6463 +2016-05-12 02:44:26,3162.0,-10.8435, +2016-05-12 02:45:00,,,64.1455 +2016-05-12 02:59:22,3162.0,-10.8435, +2016-05-12 03:00:00,,,64.6522 +2016-05-12 03:14:17,3161.0,-10.8435, +2016-05-12 03:15:00,,,65.1606 +2016-05-12 03:29:13,3160.0,-10.8435, +2016-05-12 03:30:00,,,65.1664 +2016-05-12 03:44:08,3160.0,-10.8435, +2016-05-12 03:45:00,,,65.3549 +2016-05-12 03:59:03,3160.0,-10.8435, +2016-05-12 04:00:00,,,65.8621 +2016-05-12 04:13:59,3160.0,-10.8435, +2016-05-12 04:15:00,,,66.0426 +2016-05-12 04:28:54,3160.0,-10.8751, +2016-05-12 04:30:00,,,66.7562 +2016-05-12 04:43:50,3160.0,-10.8751, +2016-05-12 04:45:00,,,66.7739 +2016-05-12 04:58:45,3159.0,-10.9048, +2016-05-12 05:00:00,,,66.5897 +2016-05-12 05:13:41,3159.0,-10.9048, +2016-05-12 05:15:00,,,66.9532 +2016-05-12 05:28:36,3157.0,-10.9048, +2016-05-12 05:30:00,,,67.4906 +2016-05-12 05:43:31,3157.0,-10.9048, +2016-05-12 05:45:00,,,67.8756 +2016-05-12 05:58:27,3157.0,-10.9048, +2016-05-12 06:00:00,,,68.4397 +2016-05-12 06:13:22,3157.0,-10.9366, +2016-05-12 06:15:00,,,68.6276 +2016-05-12 06:28:18,3156.0,-10.9366, +2016-05-12 06:30:00,,,68.6337 +2016-05-12 06:43:14,3157.0,-10.9048, +2016-05-12 06:45:00,,,69.5952 +2016-05-12 06:58:09,3157.0,-10.9048, +2016-05-12 07:00:00,,,70.1873 +2016-05-12 07:13:05,3157.0,-10.9366, +2016-05-12 07:15:00,,,70.391 +2016-05-12 07:28:01,3158.0,-10.9048, +2016-05-12 07:30:00,,,71.8174 +2016-05-12 07:42:56,3160.0,-10.9366, +2016-05-12 07:45:00,,,71.8174 +2016-05-12 07:57:52,3160.0,-10.9058, +2016-05-12 08:00:00,,,72.4472 +2016-05-12 08:12:47,3162.0,-10.9058, +2016-05-12 08:15:00,,,73.0881 +2016-05-12 08:27:43,3162.0,-10.9058, +2016-05-12 08:30:00,,,72.6639 +2016-05-12 08:42:38,3163.0,-10.8741, +2016-05-12 08:45:00,,,73.0881 +2016-05-12 08:57:34,3166.0,-10.8435, +2016-05-12 09:00:00,,,73.9712 +2016-05-12 09:12:30,3168.0,-10.8435, +2016-05-12 09:15:00,,,74.6326 +2016-05-12 09:27:25,3170.0,-10.812, +2016-05-12 09:30:00,,,75.0868 +2016-05-12 09:42:21,3171.0,-10.812, +2016-05-12 09:45:00,,,76.0121 +2016-05-12 09:57:17,3174.0,-10.7815, +2016-05-12 10:00:00,,,77.4371 +2016-05-12 10:12:13,3174.0,-10.7198, +2016-05-12 10:15:00,,,76.9607 +2016-05-12 10:27:09,3176.0,-10.7198, +2016-05-12 10:30:00,,,75.7753 +2016-05-12 10:42:05,3177.0,-10.7198, +2016-05-12 10:45:00,,,75.7753 +2016-05-12 10:57:01,3179.0,-10.7198, +2016-05-12 11:00:00,,,76.0054 +2016-05-12 11:11:56,3180.0,-10.7198, +2016-05-12 11:15:00,,,75.5466 +2016-05-12 11:26:53,3181.0,-10.7198, +2016-05-12 11:30:00,,,75.0868 +2016-05-12 11:41:49,3182.0,-10.7198, +2016-05-12 11:45:00,,,74.8623 +2016-05-12 11:56:45,3183.0,-10.7198, +2016-05-12 12:00:00,,,75.0868 +2016-05-12 12:11:41,3184.0,-10.7198, +2016-05-12 12:15:00,,,74.8823 +2016-05-12 12:26:37,3184.0,-10.7198, +2016-05-12 12:30:00,,,75.7753 +2016-05-12 12:41:33,3185.0,-10.7198, +2016-05-12 12:45:00,,,76.9539 +2016-05-12 12:56:29,3185.0,-10.7198, +2016-05-12 13:00:00,,,73.3085 +2016-05-12 13:11:26,3185.0,-10.7198, +2016-05-12 13:15:00,,,73.3281 +2016-05-12 13:26:22,3186.0,-10.7198, +2016-05-12 13:30:00,,,73.3085 +2016-05-12 13:41:18,3188.0,-10.7198, +2016-05-12 13:45:00,,,74.4306 +2016-05-12 13:56:14,3188.0,-10.7198, +2016-05-12 14:00:00,,,75.1068 +2016-05-12 14:11:10,3189.0,-10.7198, +2016-05-12 14:15:00,,,76.9539 +2016-05-12 14:26:07,3188.0,-10.7198, +2016-05-12 14:30:00,,,74.1969 +2016-05-12 14:41:03,3189.0,-10.7198, +2016-05-12 14:45:00,,,76.2572 +2016-05-12 14:55:59,3189.0,-10.7198, +2016-05-12 15:00:00,,,77.2119 +2016-05-12 15:10:55,3190.0,-10.7198, +2016-05-12 15:15:00,,,23.9976 +2016-05-12 15:25:51,3190.0,-10.7198, +2016-05-12 15:30:00,,,24.0364 +2016-05-12 15:40:48,3190.0,-10.751, +2016-05-12 15:45:00,,,24.1681 +2016-05-12 15:55:44,3191.0,-10.7198, +2016-05-12 16:00:00,,,24.257 +2016-05-12 16:10:40,3191.0,-10.751, +2016-05-12 16:15:00,,,24.3505 +2016-05-12 16:25:37,3191.0,-10.751, +2016-05-12 16:30:00,,,24.3505 +2016-05-12 16:40:33,3190.0,-10.751, +2016-05-12 16:45:00,,,24.3505 +2016-05-12 16:55:29,3191.0,-10.751, +2016-05-12 17:00:00,,,24.3962 +2016-05-12 17:10:26,3191.0,-10.751, +2016-05-12 17:15:00,,,24.4356 +2016-05-12 17:25:22,3191.0,-10.751, +2016-05-12 17:30:00,,,24.4464 +2016-05-12 17:40:19,3191.0,-10.752, +2016-05-12 17:45:00,,,24.4902 +2016-05-12 17:55:15,3191.0,-10.752, +2016-05-12 18:00:00,,,24.4421 +2016-05-12 18:10:11,3190.0,-10.7501, +2016-05-12 18:15:00,,,24.6241 +2016-05-12 18:25:07,3190.0,-10.751, +2016-05-12 18:30:00,,,24.7123 +2016-05-12 18:40:04,3189.0,-10.751, +2016-05-12 18:45:00,,,24.5801 +2016-05-12 18:55:00,3189.0,-10.751, +2016-05-12 19:00:00,,,24.7587 +2016-05-12 19:09:56,3189.0,-10.751, +2016-05-12 19:15:00,,,24.8983 +2016-05-12 19:24:52,3188.0,-10.7815, +2016-05-12 19:30:00,,,24.8961 +2016-05-12 19:39:55,3186.0,-10.7815, +2016-05-12 19:45:00,,,24.8051 +2016-05-12 19:54:51,3184.0,-10.8129, +2016-05-12 20:00:00,,,24.6241 +2016-05-12 20:09:47,3184.0,-10.8129, +2016-05-12 20:15:00,,,24.8029 +2016-05-12 20:24:43,3184.0,-10.8129, +2016-05-12 20:30:00,,,24.8961 +2016-05-12 20:39:39,3183.0,-10.8129, +2016-05-12 20:45:00,,,24.8961 +2016-05-12 20:54:35,3181.0,-10.8444, +2016-05-12 21:00:00,,,24.4421 +2016-05-12 21:09:31,3178.0,-10.8435, +2016-05-12 21:15:00,,,23.7343 +2016-05-12 21:24:27,3179.0,-10.8435, +2016-05-12 21:30:00,,,24.3112 +2016-05-12 21:39:23,3178.0,-10.8435, +2016-05-12 21:45:00,,,24.2656 +2016-05-12 21:54:18,3177.0,-10.812, +2016-05-12 22:00:00,,,24.4421 +2016-05-12 22:09:14,3177.0,-10.8435, +2016-05-12 22:15:00,,,24.5779 +2016-05-12 22:24:10,3176.0,-10.8435, +2016-05-12 22:30:00,,,24.5779 +2016-05-12 22:39:06,3176.0,-10.8435, +2016-05-12 22:45:00,,,24.7188 +2016-05-12 22:54:02,3175.0,-10.8435, +2016-05-12 23:00:00,,,24.4902 +2016-05-12 23:08:57,3174.0,-10.8751, +2016-05-12 23:15:00,,,24.4443 +2016-05-12 23:23:53,3174.0,-10.8435, +2016-05-12 23:30:00,,,24.2721 +2016-05-12 23:38:49,3174.0,-10.8751, +2016-05-12 23:45:00,,,24.3984 +2016-05-12 23:53:44,3172.0,-10.8741, +2016-05-13 00:00:00,,,24.3591 +2016-05-13 00:15:00,,, +2016-05-13 00:30:00,,, +2016-05-13 00:45:00,,, +2016-05-13 01:00:00,,, +2016-05-13 01:08:22,3170.0,-10.9058, +2016-05-13 01:15:00,,,24.4508 +2016-05-13 01:23:18,3169.0,-10.9048, +2016-05-13 01:30:00,,,24.4946 +2016-05-13 01:38:14,3168.0,-10.9058, +2016-05-13 01:45:00,,,24.4508 +2016-05-13 01:53:09,3167.0,-10.9048, +2016-05-13 02:00:00,,,24.4049 +2016-05-13 02:08:05,3168.0,-10.9048, +2016-05-13 02:15:00,,,24.8561 +2016-05-13 02:23:00,3167.0,-10.9048, +2016-05-13 02:30:00,,,24.8583 +2016-05-13 02:37:55,3167.0,-10.9048, +2016-05-13 02:45:00,,,24.9027 +2016-05-13 02:52:59,3166.0,-10.9048, +2016-05-13 03:00:00,,,24.8583 +2016-05-13 03:07:54,3166.0,-10.9048, +2016-05-13 03:15:00,,,24.7652 +2016-05-13 03:22:50,3165.0,-10.9048, +2016-05-13 03:30:00,,,24.8561 +2016-05-13 03:37:45,3164.0,-10.9048, +2016-05-13 03:45:00,,,24.8095 +2016-05-13 03:52:41,3163.0,-10.9048, +2016-05-13 04:00:00,,,24.7652 +2016-05-13 04:07:36,3163.0,-10.9357, +2016-05-13 04:15:00,,,24.8095 +2016-05-13 04:22:31,3163.0,-10.9357, +2016-05-13 04:30:00,,,25.1326 +2016-05-13 04:37:27,3162.0,-10.9366, +2016-05-13 04:45:00,,,24.994 +2016-05-13 04:52:22,3161.0,-10.9357, +2016-05-13 05:00:00,,,25.2224 +2016-05-13 05:07:17,3161.0,-10.9357, +2016-05-13 05:15:00,,,24.9027 +2016-05-13 05:22:13,3160.0,-10.9357, +2016-05-13 05:30:00,,,25.1303 +2016-05-13 05:37:08,3160.0,-10.9357, +2016-05-13 05:45:00,,,25.2201 +2016-05-13 05:52:04,3160.0,-10.9357, +2016-05-13 06:00:00,,,25.1774 +2016-05-13 06:06:59,3160.0,-10.9357, +2016-05-13 06:15:00,,,25.3644 +2016-05-13 06:21:54,3160.0,-10.9357, +2016-05-13 06:30:00,,,25.2719 +2016-05-13 06:36:50,3160.0,-10.9357, +2016-05-13 06:45:00,,,25.2719 +2016-05-13 06:51:45,3160.0,-10.9357, +2016-05-13 07:00:00,,,25.0878 +2016-05-13 07:06:41,3158.0,-10.9357, +2016-05-13 07:15:00,,,24.9049 +2016-05-13 07:21:36,3158.0,-10.9357, +2016-05-13 07:30:00,,,25.1348 +2016-05-13 07:36:31,3159.0,-10.9357, +2016-05-13 07:45:00,,,25.1348 +2016-05-13 07:51:27,3159.0,-10.9357, +2016-05-13 08:00:00,,,25.0878 +2016-05-13 08:06:22,3159.0,-10.9357, +2016-05-13 08:15:00,,,25.0878 +2016-05-13 08:21:18,3160.0,-10.9357, +2016-05-13 08:30:00,,,24.9516 +2016-05-13 08:36:13,3160.0,-10.9357, +2016-05-13 08:45:00,,,25.0878 +2016-05-13 08:51:09,3160.0,-10.9039, +2016-05-13 09:00:00,,,25.1348 +2016-05-13 09:06:04,3161.0,-10.9048, +2016-05-13 09:15:00,,,25.0408 +2016-05-13 09:21:00,3162.0,-10.9048, +2016-05-13 09:30:00,,,24.9516 +2016-05-13 09:35:55,3162.0,-10.9048, +2016-05-13 09:45:00,,,24.9962 +2016-05-13 09:50:51,3163.0,-10.8732, +2016-05-13 10:00:00,,,24.9049 +2016-05-13 10:05:46,3164.0,-10.8732, +2016-05-13 10:15:00,,,24.9049 +2016-05-13 10:20:42,3166.0,-10.8416, +2016-05-13 10:30:00,,,24.9049 +2016-05-13 10:35:38,3167.0,-10.8425, +2016-05-13 10:45:00,,,24.9494 +2016-05-13 10:50:33,3167.0,-10.8425, +2016-05-13 11:00:00,,,24.8583 +2016-05-13 11:05:29,3169.0,-10.811, +2016-05-13 11:15:00,,,24.9494 +2016-05-13 11:20:25,3170.0,-10.811, +2016-05-13 11:30:00,,,24.9962 +2016-05-13 11:35:20,3171.0,-10.812, +2016-05-13 11:45:00,,,24.9049 +2016-05-13 11:50:16,3172.0,-10.7805, +2016-05-13 12:00:00,,,24.7696 +2016-05-13 12:05:12,3173.0,-10.812, +2016-05-13 12:15:00,,,24.7232 +2016-05-13 12:20:08,3174.0,-10.812, +2016-05-13 12:30:00,,,24.4989 +2016-05-13 12:35:04,3174.0,-10.812, +2016-05-13 12:45:00,,,24.453000000000007 +2016-05-13 12:49:59,3175.0,-10.812, +2016-05-13 13:00:00,,,24.5428 +2016-05-13 13:04:55,3176.0,-10.812, +2016-05-13 13:15:00,,,24.721 +2016-05-13 13:19:51,3177.0,-10.7805, +2016-05-13 13:30:00,,,24.7232 +2016-05-13 13:34:46,3178.0,-10.7805, +2016-05-13 13:45:00,,,24.7674 +2016-05-13 13:49:42,3179.0,-10.7815, +2016-05-13 14:00:00,,,24.7232 +2016-05-13 14:04:38,3180.0,-10.7491, +2016-05-13 14:15:00,,,24.721 +2016-05-13 14:19:34,3181.0,-10.7501, +2016-05-13 14:30:00,,,24.5867 +2016-05-13 14:34:30,3181.0,-10.7491, +2016-05-13 14:45:00,,,24.591 +2016-05-13 14:49:26,3183.0,-10.7501, +2016-05-13 15:00:00,,,24.721 +2016-05-13 15:04:22,3183.0,-10.7501, +2016-05-13 15:15:00,,,24.5889 +2016-05-13 15:19:18,3183.0,-10.7501, +2016-05-13 15:30:00,,,24.4071 +2016-05-13 15:34:14,3183.0,-10.7491, +2016-05-13 15:45:00,,,24.6769 +2016-05-13 15:49:10,3184.0,-10.7501, +2016-05-13 16:00:00,,,24.5867 +2016-05-13 16:04:07,3184.0,-10.7501, +2016-05-13 16:15:00,,,24.6328 +2016-05-13 16:19:03,3184.0,-10.7501, +2016-05-13 16:30:00,,,24.5428 +2016-05-13 16:33:59,3184.0,-10.7501, +2016-05-13 16:45:00,,,24.4071 +2016-05-13 16:48:55,3184.0,-10.7815, +2016-05-13 17:00:00,,,24.2764 +2016-05-13 17:03:51,3183.0,-10.7805, +2016-05-13 17:15:00,,,24.3634 +2016-05-13 17:18:48,3183.0,-10.8454, +2016-05-13 17:30:00,,,24.1853 +2016-05-13 17:33:44,3182.0,-10.7815, +2016-05-13 17:45:00,,,24.0642 +2016-05-13 17:48:40,3182.0,-10.9039, +2016-05-13 18:00:00,,,24.142 +2016-05-13 18:03:36,3181.0,-10.8129, +2016-05-13 18:15:00,,,24.0083 +2016-05-13 18:18:32,3181.0,-10.812, +2016-05-13 18:30:00,,,23.8324 +2016-05-13 18:33:29,3179.0,-10.812, +2016-05-13 18:45:00,,,23.8752 +2016-05-13 18:48:25,3178.0,-10.812, +2016-05-13 19:00:00,,,23.5283 +2016-05-13 19:03:21,3177.0,-10.8435, +2016-05-13 19:15:00,,,23.6555 +2016-05-13 19:18:17,3177.0,-10.8425, +2016-05-13 19:30:00,,,77.2324 +2016-05-13 19:33:13,3176.0,-10.8435, +2016-05-13 19:45:00,,,74.9022 +2016-05-13 19:48:09,3174.0,-10.8425, +2016-05-13 20:00:00,,,74.00399999999998 +2016-05-13 20:03:04,3174.0,-10.8425, +2016-05-13 20:15:00,,,72.9077 +2016-05-13 20:18:00,3172.0,-10.8741, +2016-05-13 20:30:00,,,71.0215 +2016-05-13 20:32:56,3171.0,-10.8741, +2016-05-13 20:45:00,,,71.4394 +2016-05-13 20:47:52,3170.0,-10.8732, +2016-05-13 21:00:00,,,70.416 +2016-05-13 21:02:48,3168.0,-10.8732, +2016-05-13 21:15:00,,,69.4329 +2016-05-13 21:17:43,3167.0,-10.8732, +2016-05-13 21:30:00,,,69.0434 +2016-05-13 21:32:39,3166.0,-10.9048, +2016-05-13 21:45:00,,,67.7217 +2016-05-13 21:47:34,3164.0,-10.9048, +2016-05-13 22:00:00,,,67.7157 +2016-05-13 22:02:30,3163.0,-10.9048, +2016-05-13 22:15:00,,,66.6193 +2016-05-13 22:17:25,3162.0,-10.9048, +2016-05-13 22:30:00,,,67.1632 +2016-05-13 22:32:21,3161.0,-10.9048, +2016-05-13 22:45:00,,,68.2769 +2016-05-13 22:47:17,3160.0,-10.9048, +2016-05-13 23:00:00,,,67.5325 +2016-05-13 23:02:12,3160.0,-10.9048, +2016-05-13 23:15:00,,,67.9058 +2016-05-13 23:17:08,3160.0,-10.9048, +2016-05-13 23:30:00,,,67.5325 +2016-05-13 23:32:03,3159.0,-10.9048, +2016-05-13 23:45:00,,,67.9058 +2016-05-13 23:46:59,3159.0,-10.9048, +2016-05-14 00:00:00,,,67.9058 +2016-05-14 00:01:54,3158.0,-10.9048, +2016-05-14 00:15:00,,,67.9058 +2016-05-14 00:16:50,3158.0,-10.9048, +2016-05-14 00:30:00,,,68.6642 +2016-05-14 00:31:46,3158.0,-10.9048, +2016-05-14 00:45:00,,,69.2407 +2016-05-14 00:46:41,3159.0,-10.9048, +2016-05-14 01:00:00,,,68.8472 +2016-05-14 01:01:37,3157.0,-10.9048, +2016-05-14 01:15:00,,,69.2407 +2016-05-14 01:16:32,3157.0,-10.9048, +2016-05-14 01:30:00,,,70.02199999999999 +2016-05-14 01:31:28,3156.0,-10.9048, +2016-05-14 01:45:00,,,70.2184 +2016-05-14 01:46:23,3156.0,-10.9039, +2016-05-14 02:00:00,,,70.4222 +2016-05-14 02:01:19,3156.0,-10.9357, +2016-05-14 02:15:00,,,70.6209 +2016-05-14 02:16:14,3155.0,-10.9357, +2016-05-14 02:30:00,,,71.2362 +2016-05-14 02:31:09,3153.0,-10.9357, +2016-05-14 02:45:00,,,70.8207 +2016-05-14 02:46:05,3152.0,-10.9357, +2016-05-14 03:00:00,,,71.2299 +2016-05-14 03:01:00,3151.0,-10.9675, +2016-05-14 03:15:00,,,71.2299 +2016-05-14 03:15:55,3150.0,-10.9665, +2016-05-14 03:30:00,,,71.6501 +2016-05-14 03:30:50,3150.0,-10.9665, +2016-05-14 03:45:00,,,71.4394 +2016-05-14 03:45:46,3148.0,-10.9665, +2016-05-14 04:00:00,,,71.0278 +2016-05-14 04:00:41,3146.0,-10.9665, +2016-05-14 04:15:00,,,71.8493 +2016-05-14 04:15:36,3146.0,-10.9985, +2016-05-14 04:30:00,,,72.2703 +2016-05-14 04:30:31,3145.0,-10.9665, +2016-05-14 04:45:00,,,71.6438 +2016-05-14 04:45:26,3144.0,-10.9975, +2016-05-14 05:00:00,,,71.8493 +2016-05-14 05:00:22,3143.0,-10.9985, +2016-05-14 05:15:00,,,70.6271 +2016-05-14 05:15:17,3143.0,-10.9975, +2016-05-14 05:30:00,,,70.416 +2016-05-14 05:30:12,3142.0,-10.9975, +2016-05-14 05:45:00,,,70.02199999999999 +2016-05-14 05:45:07,3141.0,-11.0295, +2016-05-14 06:00:00,,,69.4329 +2016-05-14 06:00:02,3141.0,-11.0295, +2016-05-14 06:14:57,3140.0,-11.0286, +2016-05-14 06:15:00,,,69.439 +2016-05-14 06:29:52,3139.0,-11.0295, +2016-05-14 06:30:00,,,69.6261 +2016-05-14 06:44:47,3139.0,-11.0286, +2016-05-14 06:45:00,,,69.6261 +2016-05-14 06:59:42,3138.0,-11.0286, +2016-05-14 07:00:00,,,69.2407 +2016-05-14 07:14:37,3138.0,-11.0286, +2016-05-14 07:15:00,,,69.4329 +2016-05-14 07:29:39,3138.0,-11.0286, +2016-05-14 07:30:00,,,69.4329 +2016-05-14 07:44:34,3138.0,-11.0286, +2016-05-14 07:45:00,,,69.2407 +2016-05-14 07:59:29,3138.0,-11.0286, +2016-05-14 08:00:00,,,69.4329 +2016-05-14 08:14:24,3138.0,-11.0286, +2016-05-14 08:15:00,,,68.0909 +2016-05-14 08:29:19,3138.0,-11.0295, +2016-05-14 08:30:00,,,68.8533 +2016-05-14 08:44:14,3138.0,-11.0295, +2016-05-14 08:45:00,,,67.5385 +2016-05-14 08:59:09,3138.0,-11.0295, +2016-05-14 09:00:00,,,66.8036 +2016-05-14 09:14:04,3138.0,-10.9975, +2016-05-14 09:15:00,,,68.283 +2016-05-14 09:28:59,3138.0,-10.9975, +2016-05-14 09:30:00,,,68.47 +2016-05-14 09:43:54,3139.0,-10.9975, +2016-05-14 09:45:00,,,68.0909 +2016-05-14 09:58:49,3140.0,-10.9656, +2016-05-14 10:00:00,,,67.7217 +2016-05-14 10:13:44,3141.0,-10.9665, +2016-05-14 10:15:00,,,67.9058 +2016-05-14 10:28:39,3141.0,-10.9665, +2016-05-14 10:30:00,,,66.9889 +2016-05-14 10:43:34,3142.0,-10.9665, +2016-05-14 10:45:00,,,66.9829 +2016-05-14 10:58:29,3142.0,-10.9665, +2016-05-14 11:00:00,,,67.1692 +2016-05-14 11:13:24,3143.0,-10.9665, +2016-05-14 11:15:00,,,67.7217 +2016-05-14 11:28:20,3143.0,-10.9347, +2016-05-14 11:30:00,,,67.1692 +2016-05-14 11:43:15,3143.0,-10.9665, +2016-05-14 11:45:00,,,66.8036 +2016-05-14 11:58:10,3143.0,-10.9347, +2016-05-14 12:00:00,,,66.7977 +2016-05-14 12:13:05,3144.0,-10.9347, +2016-05-14 12:15:00,,,67.1692 +2016-05-14 12:28:00,3143.0,-10.9347, +2016-05-14 12:30:00,,,65.9088 +2016-05-14 12:43:03,3143.0,-10.9347, +2016-05-14 12:45:00,,,66.0836 +2016-05-14 12:57:58,3144.0,-10.9347, +2016-05-14 13:00:00,,,66.2652 +2016-05-14 13:12:53,3145.0,-10.9347, +2016-05-14 13:15:00,,,66.0836 +2016-05-14 13:27:48,3145.0,-10.9347, +2016-05-14 13:30:00,,,66.2652 +2016-05-14 13:42:43,3145.0,-10.9347, +2016-05-14 13:45:00,,,65.9088 +2016-05-14 13:57:38,3145.0,-10.9347, +2016-05-14 14:00:00,,,65.7291 +2016-05-14 14:12:34,3145.0,-10.9347, +2016-05-14 14:15:00,,,65.5619 +2016-05-14 14:27:29,3145.0,-10.9347, +2016-05-14 14:30:00,,,65.0364 +2016-05-14 14:42:24,3145.0,-10.9347, +2016-05-14 14:45:00,,,65.2069 +2016-05-14 14:57:19,3145.0,-10.9347, +2016-05-14 15:00:00,,,65.0364 +2016-05-14 15:12:22,3146.0,-10.9347, +2016-05-14 15:15:00,,,65.2069 +2016-05-14 15:27:17,3146.0,-10.9347, +2016-05-14 15:30:00,,,65.5503 +2016-05-14 15:42:12,3146.0,-10.9347, +2016-05-14 15:45:00,,,65.2069 +2016-05-14 15:57:07,3146.0,-10.9347, +2016-05-14 16:00:00,,,64.8668 +2016-05-14 16:12:03,3146.0,-10.9347, +2016-05-14 16:15:00,,,64.8668 +2016-05-14 16:26:58,3146.0,-10.9347, +2016-05-14 16:30:00,,,65.2069 +2016-05-14 16:41:53,3146.0,-10.9347, +2016-05-14 16:45:00,,,64.8668 +2016-05-14 16:56:48,3146.0,-10.9347, +2016-05-14 17:00:00,,,64.5245 +2016-05-14 17:11:44,3145.0,-10.9347, +2016-05-14 17:15:00,,,64.02 +2016-05-14 17:26:39,3145.0,-10.9347, +2016-05-14 17:30:00,,,63.6858 +2016-05-14 17:41:35,3145.0,-10.9347, +2016-05-14 17:45:00,,,64.1854 +2016-05-14 17:56:30,3144.0,-10.9347, +2016-05-14 18:00:00,,,63.6858 +2016-05-14 18:11:25,3143.0,-10.9665, +2016-05-14 18:15:00,,,63.6858 +2016-05-14 18:26:21,3143.0,-10.9665, +2016-05-14 18:30:00,,,63.5228 +2016-05-14 18:41:16,3143.0,-10.9665, +2016-05-14 18:45:00,,,63.0327 +2016-05-14 18:56:11,3143.0,-10.9656, +2016-05-14 19:00:00,,,63.0271 +2016-05-14 19:11:06,3142.0,-10.9665, +2016-05-14 19:15:00,,,62.7135 +2016-05-14 19:26:02,3141.0,-10.9656, +2016-05-14 19:30:00,,,62.708 +2016-05-14 19:40:57,3139.0,-10.9656, +2016-05-14 19:45:00,,,62.708 +2016-05-14 19:55:52,3138.0,-10.9975, +2016-05-14 20:00:00,,,62.2294 +2016-05-14 20:10:47,3138.0,-10.9965, +2016-05-14 20:15:00,,,62.3919 +2016-05-14 20:25:42,3137.0,-10.9965, +2016-05-14 20:30:00,,,62.2294 +2016-05-14 20:40:37,3137.0,-10.9965, +2016-05-14 20:45:00,,,62.708 +2016-05-14 20:55:32,3136.0,-11.0286, +2016-05-14 21:00:00,,,62.3919 +2016-05-14 21:10:27,3135.0,-11.0286, +2016-05-14 21:15:00,,,61.9122 +2016-05-14 21:25:22,3134.0,-11.0286, +2016-05-14 21:30:00,,,61.7574 +2016-05-14 21:40:17,3133.0,-11.0286, +2016-05-14 21:45:00,,,61.7574 +2016-05-14 21:55:12,3132.0,-11.0286, +2016-05-14 22:00:00,,,61.7574 +2016-05-14 22:10:07,3132.0,-11.0286, +2016-05-14 22:15:00,,,61.7574 +2016-05-14 22:25:02,3131.0,-11.0286, +2016-05-14 22:30:00,,,61.7574 +2016-05-14 22:39:57,3130.0,-11.0286, +2016-05-14 22:45:00,,,61.7574 +2016-05-14 22:54:52,3130.0,-11.0597, +2016-05-14 23:00:00,,,61.6034 +2016-05-14 23:09:47,3129.0,-11.0597, +2016-05-14 23:15:00,,,61.292 +2016-05-14 23:24:42,3128.0,-11.0597, +2016-05-14 23:30:00,,,61.292 +2016-05-14 23:39:37,3128.0,-11.0597, +2016-05-14 23:45:00,,,61.2757 +2016-05-14 23:54:32,3127.0,-11.0597, +2016-05-15 00:00:00,,,61.2974 +2016-05-15 00:09:27,3127.0,-11.0597, +2016-05-15 00:15:00,,,61.5925 +2016-05-15 00:24:22,3127.0,-11.0597, +2016-05-15 00:30:00,,,61.2974 +2016-05-15 00:39:17,3126.0,-11.0597, +2016-05-15 00:45:00,,,61.2811 +2016-05-15 00:54:12,3125.0,-11.0597, +2016-05-15 01:00:00,,,61.4337 +2016-05-15 01:09:10,3124.0,-11.0597, +2016-05-15 01:15:00,,,60.9726 +2016-05-15 01:24:05,3124.0,-11.0597, +2016-05-15 01:30:00,,,60.9726 +2016-05-15 01:39:00,3124.0,-11.0597, +2016-05-15 01:45:00,,,61.292 +2016-05-15 01:53:54,3124.0,-11.0597, +2016-05-15 02:00:00,,,61.2811 +2016-05-15 02:08:49,3123.0,-11.0597, +2016-05-15 02:15:00,,,60.9726 +2016-05-15 02:23:44,3123.0,-11.0597, +2016-05-15 02:30:00,,,60.9889 +2016-05-15 02:38:39,3123.0,-11.0597, +2016-05-15 02:45:00,,,60.9726 +2016-05-15 02:53:33,3123.0,-11.0597, +2016-05-15 03:00:00,,,60.8167 +2016-05-15 03:08:28,3123.0,-11.0587, +2016-05-15 03:15:00,,,60.2162 +2016-05-15 03:23:23,3122.0,-11.0587, +2016-05-15 03:30:00,,,60.3639 +2016-05-15 03:38:17,3122.0,-11.0587, +2016-05-15 03:45:00,,,60.3693 +2016-05-15 03:53:12,3122.0,-11.0587, +2016-05-15 04:00:00,,,60.2108 +2016-05-15 04:08:07,3122.0,-11.0587, +2016-05-15 04:15:00,,,59.9172 +2016-05-15 04:23:02,3121.0,-11.0597, +2016-05-15 04:30:00,,,59.7714 +2016-05-15 04:37:57,3121.0,-11.0587, +2016-05-15 04:45:00,,,59.6209 +2016-05-15 04:52:51,3121.0,-11.0587, +2016-05-15 05:00:00,,,59.6209 +2016-05-15 05:07:46,3121.0,-11.0587, +2016-05-15 05:15:00,,,59.6209 +2016-05-15 05:22:41,3121.0,-11.0587, +2016-05-15 05:30:00,,,59.6209 +2016-05-15 05:37:36,3121.0,-11.0597, +2016-05-15 05:45:00,,,59.7555 +2016-05-15 05:52:31,3121.0,-11.0276, +2016-05-15 06:00:00,,,59.6156 +2016-05-15 06:07:25,3121.0,-11.0597, +2016-05-15 06:15:00,,,59.7714 +2016-05-15 06:22:20,3121.0,-11.0597, +2016-05-15 06:30:00,,,59.7555 +2016-05-15 06:37:15,3121.0,-11.0597, +2016-05-15 06:45:00,,,59.7555 +2016-05-15 06:52:10,3121.0,-11.0597, +2016-05-15 07:00:00,,,59.7555 +2016-05-15 07:07:05,3121.0,-11.0597, +2016-05-15 07:15:00,,,59.6051 +2016-05-15 07:22:00,3121.0,-11.0597, +2016-05-15 07:30:00,,,59.6104 +2016-05-15 07:36:55,3121.0,-11.0597, +2016-05-15 07:45:00,,,59.6051 +2016-05-15 07:51:50,3121.0,-11.0597, +2016-05-15 08:00:00,,,59.3167 +2016-05-15 08:06:44,3121.0,-11.0276, +2016-05-15 08:15:00,,,59.1735 +2016-05-15 08:21:39,3121.0,-11.0276, +2016-05-15 08:30:00,,,58.8837 +2016-05-15 08:36:34,3121.0,-11.0276, +2016-05-15 08:45:00,,,59.1578 +2016-05-15 08:51:29,3121.0,-11.0276, +2016-05-15 09:00:00,,,59.0257 +2016-05-15 09:06:24,3121.0,-11.0276, +2016-05-15 09:15:00,,,58.7267 +2016-05-15 09:21:19,3121.0,-10.9646, +2016-05-15 09:30:00,,,58.7267 +2016-05-15 09:36:14,3122.0,-10.9646, +2016-05-15 09:45:00,,,58.8837 +2016-05-15 09:51:09,3122.0,-11.0276, +2016-05-15 10:00:00,,,58.58600000000001 +2016-05-15 10:06:03,3122.0,-10.9965, +2016-05-15 10:15:00,,,58.7267 +2016-05-15 10:20:58,3123.0,-10.9656, +2016-05-15 10:30:00,,,58.58600000000001 +2016-05-15 10:35:53,3123.0,-10.9347, +2016-05-15 10:45:00,,,58.5808 +2016-05-15 10:50:55,3124.0,-10.9337, +2016-05-15 11:00:00,,,58.5808 +2016-05-15 11:05:50,3125.0,-10.9347, +2016-05-15 11:15:00,,,58.5808 +2016-05-15 11:20:46,3127.0,-10.9347, +2016-05-15 11:30:00,,,58.1623 +2016-05-15 11:35:41,3127.0,-10.9347, +2016-05-15 11:45:00,,,58.1571 +2016-05-15 11:50:36,3128.0,-10.9337, +2016-05-15 12:00:00,,,58.29600000000001 +2016-05-15 12:05:31,3128.0,-10.9347, +2016-05-15 12:15:00,,,58.1623 +2016-05-15 12:20:26,3128.0,-10.9347, +2016-05-15 12:30:00,,,57.7389 +2016-05-15 12:35:21,3128.0,-10.9646, +2016-05-15 12:45:00,,,57.87600000000001 +2016-05-15 12:50:16,3128.0,-10.9337, +2016-05-15 13:00:00,,,57.87600000000001 +2016-05-15 13:05:11,3128.0,-10.9347, +2016-05-15 13:15:00,,,57.7389 +2016-05-15 13:20:06,3128.0,-10.9656, +2016-05-15 13:30:00,,,57.4664 +2016-05-15 13:35:01,3128.0,-10.9347, +2016-05-15 13:45:00,,,57.87600000000001 +2016-05-15 13:49:56,3128.0,-10.9347, +2016-05-15 14:00:00,,,58.0137 +2016-05-15 14:04:51,3128.0,-10.9656, +2016-05-15 14:15:00,,,57.744 +2016-05-15 14:19:46,3128.0,-10.9347, +2016-05-15 14:30:00,,,57.4613 +2016-05-15 14:34:42,3128.0,-10.9337, +2016-05-15 14:45:00,,,57.4664 +2016-05-15 14:49:37,3129.0,-10.9646, +2016-05-15 15:00:00,,,57.4613 +2016-05-15 15:04:32,3128.0,-10.9656, +2016-05-15 15:15:00,,,57.4613 +2016-05-15 15:19:27,3128.0,-10.9665, +2016-05-15 15:30:00,,,57.18600000000001 +2016-05-15 15:34:22,3128.0,-10.9347, +2016-05-15 15:45:00,,,57.0568 +2016-05-15 15:49:17,3128.0,-10.9656, +2016-05-15 16:00:00,,,57.3259 +2016-05-15 16:04:12,3128.0,-10.9347, +2016-05-15 16:15:00,,,56.9029 +2016-05-15 16:19:07,3128.0,-10.9347, +2016-05-15 16:30:00,,,56.7849 +2016-05-15 16:34:02,3128.0,-10.9347, +2016-05-15 16:45:00,,,56.7648 +2016-05-15 16:48:57,3127.0,-10.9347, +2016-05-15 17:00:00,,,56.6423 +2016-05-15 17:03:52,3127.0,-10.9347, +2016-05-15 17:15:00,,,56.5153 +2016-05-15 17:18:47,3127.0,-10.9347, +2016-05-15 17:30:00,,,56.6322 +2016-05-15 17:33:42,3127.0,-10.9965, +2016-05-15 17:45:00,,,56.5002 +2016-05-15 17:48:37,3127.0,-10.9965, +2016-05-15 18:00:00,,,56.7648 +2016-05-15 18:03:32,3127.0,-10.9665, +2016-05-15 18:15:00,,,56.1025 +2016-05-15 18:18:27,3127.0,-10.9665, +2016-05-15 18:30:00,,,55.7145 +2016-05-15 18:33:22,3127.0,-10.9656, +2016-05-15 18:45:00,,,55.9677 +2016-05-15 18:48:17,3125.0,-11.0276, +2016-05-15 19:00:00,,,32.4541 +2016-05-15 19:03:12,3125.0,-10.9347, +2016-05-15 19:15:00,,,32.39 +2016-05-15 19:18:07,3123.0,-10.9357, +2016-05-15 19:30:00,,,0.4184 +2016-05-15 19:33:02,3123.0,-10.9347, +2016-05-15 19:45:00,,,-0.2062 +2016-05-15 19:47:57,3122.0,-10.9357, +2016-05-15 20:00:00,,,9.0834 +2016-05-15 20:02:52,3122.0,-10.9665, +2016-05-15 20:15:00,,,0.2239 +2016-05-15 20:17:47,3121.0,-10.9347, +2016-05-15 20:30:00,,,-1.1253 +2016-05-15 20:32:42,3121.0,-10.9665, +2016-05-15 20:45:00,,,2.6954 +2016-05-15 20:47:37,3120.0,-10.9665, +2016-05-15 21:00:00,,,-0.1846 +2016-05-15 21:02:32,3119.0,-10.9665, +2016-05-15 21:15:00,,,-0.3562 +2016-05-15 21:17:27,3119.0,-10.9665, +2016-05-15 21:30:00,,,-0.4849 +2016-05-15 21:32:22,3118.0,-10.9665, +2016-05-15 21:45:00,,,-0.5062 +2016-05-15 21:47:17,3118.0,-10.9665, +2016-05-15 22:00:00,,,-0.5276 +2016-05-15 22:02:11,3117.0,-10.9975, +2016-05-15 22:15:00,,,-0.6561 +2016-05-15 22:17:06,3117.0,-10.9665, +2016-05-15 22:30:00,,,-2.4215 +2016-05-15 22:32:01,3116.0,-10.9656, +2016-05-15 22:45:00,,,-1.5721 +2016-05-15 22:46:55,3116.0,-10.9975, +2016-05-15 23:00:00,,,-1.0622 +2016-05-15 23:01:50,3115.0,-10.9975, +2016-05-15 23:15:00,,,-1.3818 +2016-05-15 23:16:44,3115.0,-11.0597, +2016-05-15 23:30:00,,,-4.6113 +2016-05-15 23:31:47,3115.0,-11.0597, +2016-05-15 23:45:00,,,-1.7654 +2016-05-15 23:46:41,3114.0,-11.0295, +2016-05-16 00:00:00,,,-1.041 +2016-05-16 00:01:36,3114.0,-11.0276, +2016-05-16 00:15:00,,,-0.9982 +2016-05-16 00:16:31,3114.0,-11.0597, +2016-05-16 00:30:00,,,-0.9767 +2016-05-16 00:31:25,3113.0,-11.0286, +2016-05-16 00:45:00,,,-4.6339 +2016-05-16 00:46:20,3113.0,-11.0597, +2016-05-16 01:00:00,,,-4.6347 +2016-05-16 01:01:14,3112.0,-11.0286, +2016-05-16 01:15:00,,,-4.6134 +2016-05-16 01:16:09,3111.0,-11.0286, +2016-05-16 01:30:00,,,-4.5924 +2016-05-16 01:31:04,3111.0,-11.0286, +2016-05-16 01:45:00,,,-4.5625 +2016-05-16 01:45:58,3110.0,-11.0286, +2016-05-16 02:00:00,,,-4.5497 +2016-05-16 02:00:53,3110.0,-11.0286, +2016-05-16 02:15:00,,,-4.5283 +2016-05-16 02:15:48,3110.0,-11.0286, +2016-05-16 02:30:00,,,-4.5287 +2016-05-16 02:30:42,3109.0,-11.0286, +2016-05-16 02:45:00,,,-4.3153 +2016-05-16 02:45:37,3109.0,-11.0286, +2016-05-16 03:00:00,,,-4.2951 +2016-05-16 03:00:32,3109.0,-11.0286, +2016-05-16 03:15:00,,,-4.5295 +2016-05-16 03:15:26,3109.0,-11.0286, +2016-05-16 03:30:00,,,-4.5291 +2016-05-16 03:30:21,3109.0,-11.0919, +2016-05-16 03:45:00,,,-4.3808 +2016-05-16 03:45:16,3109.0,-11.0286, +2016-05-16 04:00:00,,,-4.3808 +2016-05-16 04:00:10,3109.0,-11.0286, +2016-05-16 04:15:00,,,-4.4452 +2016-05-16 04:15:05,3109.0,-11.0607, +2016-05-16 04:30:00,3108.0,-11.0607,-4.3812 +2016-05-16 04:44:54,3108.0,-11.0597, +2016-05-16 04:45:00,,,-4.3595 +2016-05-16 04:59:49,3109.0,-10.9965, +2016-05-16 05:00:00,,,-4.3595 +2016-05-16 05:14:43,3109.0,-11.0286, +2016-05-16 05:15:00,,,-4.4022 +2016-05-16 05:29:38,3109.0,-11.0597, +2016-05-16 05:30:00,,,-4.4025 +2016-05-16 05:44:32,3109.0,-11.0286, +2016-05-16 05:45:00,,,-4.4022 +2016-05-16 05:59:27,3109.0,-11.0286, +2016-05-16 06:00:00,,,-4.4658 +2016-05-16 06:14:22,3109.0,-11.0597, +2016-05-16 06:15:00,,,-4.5726 +2016-05-16 06:29:17,3110.0,-11.0597, +2016-05-16 06:30:00,,,-4.4674 +2016-05-16 06:44:11,3110.0,-11.0286, +2016-05-16 06:45:00,,,-5.0892 +2016-05-16 06:59:06,3111.0,-11.0597, +2016-05-16 07:00:00,,,-4.8076 +2016-05-16 07:14:01,3112.0,-11.0597, +2016-05-16 07:15:00,,,-4.8513 +2016-05-16 07:28:56,3113.0,-11.0597, +2016-05-16 07:30:00,,,-4.8076 +2016-05-16 07:43:50,3114.0,-11.0276, +2016-05-16 07:45:00,,,-4.959 +2016-05-16 07:58:45,3114.0,-11.0286, +2016-05-16 08:00:00,,,-4.8286 +2016-05-16 08:13:40,3114.0,-10.9975, +2016-05-16 08:15:00,,,-5.4987 +2016-05-16 08:28:34,3114.0,-11.0286, +2016-05-16 08:30:00,,,-4.7203 +2016-05-16 08:43:29,3115.0,-10.9665, +2016-05-16 08:45:00,,,-1.8097 +2016-05-16 08:58:24,3115.0,-10.9656, +2016-05-16 09:00:00,,,-4.7845 +2016-05-16 09:13:18,3116.0,-10.9665, +2016-05-16 09:15:00,,,-4.9134 +2016-05-16 09:28:13,3116.0,-10.9665, +2016-05-16 09:30:00,,,-4.7639 +2016-05-16 09:43:08,3117.0,-10.9665, +2016-05-16 09:45:00,,,-1.8526 +2016-05-16 09:58:03,3118.0,-10.9665, +2016-05-16 10:00:00,,,-2.2352 +2016-05-16 10:12:58,3119.0,-10.9665, +2016-05-16 10:15:00,,,-1.7673 +2016-05-16 10:27:52,3120.0,-10.9665, +2016-05-16 10:30:00,,,-1.7459 +2016-05-16 10:42:47,3121.0,-10.9357, +2016-05-16 10:45:00,,,-1.9162 +2016-05-16 10:57:42,3121.0,-10.9357, +2016-05-16 11:00:00,,,-1.9162 +2016-05-16 11:12:37,3122.0,-10.9347, +2016-05-16 11:15:00,,,-1.7032 +2016-05-16 11:27:32,3122.0,-10.9347, +2016-05-16 11:30:00,,,-1.7244 +2016-05-16 11:42:27,3123.0,-10.9347, +2016-05-16 11:45:00,,,-1.7246 +2016-05-16 11:57:22,3123.0,-10.9357, +2016-05-16 12:00:00,,,-1.703 +2016-05-16 12:12:17,3123.0,-10.9039, +2016-05-16 12:15:00,,,-1.7032 +2016-05-16 12:27:12,3124.0,-10.9039, +2016-05-16 12:30:00,,,-1.5112 +2016-05-16 12:42:07,3125.0,-10.9039, +2016-05-16 12:45:00,,,-2.0646 +2016-05-16 12:57:02,3126.0,-10.9357, +2016-05-16 13:00:00,,,-2.5108 +2016-05-16 13:11:57,3127.0,-10.9039, +2016-05-16 13:15:00,,,-1.6818 +2016-05-16 13:26:52,3127.0,-10.9048, +2016-05-16 13:30:00,,,-1.703 +2016-05-16 13:41:48,3128.0,-10.7501, +2016-05-16 13:45:00,,,-1.6603 +2016-05-16 13:56:43,3128.0,-10.9048, +2016-05-16 14:00:00,,,-1.7452 +2016-05-16 14:11:38,3130.0,-10.8732, +2016-05-16 14:15:00,,,4.1062 +2016-05-16 14:26:33,3131.0,-10.7198, +2016-05-16 14:30:00,,,3.2153 +2016-05-16 14:41:28,3132.0,-10.8732, +2016-05-16 14:45:00,,,5.2922 +2016-05-16 14:56:23,3133.0,-10.8732, +2016-05-16 15:00:00,,,6.27 +2016-05-16 15:11:18,3134.0,-10.8416, +2016-05-16 15:15:00,,,25.4878 +2016-05-16 15:26:13,3134.0,-10.8416, +2016-05-16 15:30:00,,,5.5876 +2016-05-16 15:41:08,3135.0,-10.8732, +2016-05-16 15:45:00,,,7.812 +2016-05-16 15:56:03,3135.0,-10.8732, +2016-05-16 16:00:00,,,6.3079 +2016-05-16 16:10:58,3135.0,-11.1851, +2016-05-16 16:15:00,,,-0.5920000000000001 +2016-05-16 16:25:54,3135.0,-11.1851, +2016-05-16 16:30:00,,,4.2818 +2016-05-16 16:40:49,3135.0,-10.8416, +2016-05-16 16:45:00,,,-1.7442 +2016-05-16 16:55:44,3134.0,-11.1851, +2016-05-16 17:00:00,,,-1.1265 +2016-05-16 17:10:39,3134.0,-11.2166, +2016-05-16 17:15:00,,,-1.4891 +2016-05-16 17:25:34,3133.0,-11.1851, +2016-05-16 17:30:00,,,-1.3613 +2016-05-16 17:40:29,3133.0,-11.1851, +2016-05-16 17:45:00,,,-1.4039 +2016-05-16 17:55:25,3132.0,-11.28, +2016-05-16 18:00:00,,,-1.702 +2016-05-16 18:10:20,3132.0,-10.9048, +2016-05-16 18:15:00,,,-1.5105 +2016-05-16 18:25:15,3131.0,-10.9048, +2016-05-16 18:30:00,,,-1.5316 +2016-05-16 18:40:10,3131.0,-11.3778, +2016-05-16 18:45:00,,,-1.5318 +2016-05-16 18:55:05,3131.0,-10.9048, +2016-05-16 19:00:00,,,-1.5743 +2016-05-16 19:10:00,3131.0,-10.9048, +2016-05-16 19:15:00,,,-5.1088 +2016-05-16 19:24:55,3130.0,-10.9039, +2016-05-16 19:30:00,,,-4.916 +2016-05-16 19:39:50,3129.0,-11.2156, +2016-05-16 19:45:00,,,-4.8727 +2016-05-16 19:54:44,3128.0,-11.281, +2016-05-16 20:00:00,,,-4.8299 +2016-05-16 20:09:39,3128.0,-11.281, +2016-05-16 20:15:00,,,-4.8089 +2016-05-16 20:24:34,3128.0,-10.9357, +2016-05-16 20:30:00,,,-4.8089 +2016-05-16 20:39:29,3127.0,-11.3778, +2016-05-16 20:45:00,,,-4.7664 +2016-05-16 20:54:24,3127.0,-11.281, +2016-05-16 21:00:00,,,-4.5525 +2016-05-16 21:09:19,3126.0,-11.281, +2016-05-16 21:15:00,,,-4.5521 +2016-05-16 21:24:14,3124.0,-10.9357, +2016-05-16 21:30:00,,,-4.5315 +2016-05-16 21:39:09,3123.0,-11.3129, +2016-05-16 21:45:00,,,-4.5311 +2016-05-16 21:54:04,3123.0,-11.3129, +2016-05-16 22:00:00,,,-4.5315 +2016-05-16 22:08:58,3123.0,-11.3129, +2016-05-16 22:15:00,,,-4.5751 +2016-05-16 22:23:53,3122.0,-10.9357, +2016-05-16 22:30:00,,,-4.5751 +2016-05-16 22:38:48,3122.0,-11.3129, +2016-05-16 22:45:00,,,-4.5533 +2016-05-16 22:53:43,3122.0,-11.3778, +2016-05-16 23:00:00,,,-4.5533 +2016-05-16 23:08:38,3121.0,-10.9665, +2016-05-16 23:15:00,,,-4.5751 +2016-05-16 23:23:33,3121.0,-10.9665, +2016-05-16 23:30:00,,,-4.5751 +2016-05-16 23:38:28,3120.0,-11.3778, +2016-05-16 23:45:00,,,-4.5965 +2016-05-16 23:53:23,3119.0,-11.3778, +2016-05-17 00:00:00,,,-4.5969 +2016-05-17 00:08:18,3118.0,-10.8741, +2016-05-17 00:15:00,,,-4.6397 +2016-05-17 00:23:12,3118.0,-11.3448, +2016-05-17 00:30:00,,,-4.5323 +2016-05-17 00:38:07,3117.0,-11.3458, +2016-05-17 00:45:00,,, +2016-05-17 00:53:02,3116.0,-11.3778, +2016-05-17 01:00:00,,,-4.5327 +2016-05-17 01:07:57,3116.0,-11.3778, +2016-05-17 01:15:00,,, +2016-05-17 01:22:51,3115.0,-11.3778, +2016-05-17 01:30:00,,, +2016-05-17 01:37:46,3115.0,-11.3458, +2016-05-17 01:45:00,,, +2016-05-17 01:52:41,3115.0,-11.3778, +2016-05-17 02:00:00,,, +2016-05-17 02:07:36,3115.0,-11.3458, +2016-05-17 02:15:00,,, +2016-05-17 02:22:31,3114.0,-11.41, +2016-05-17 02:30:00,,, +2016-05-17 02:37:26,3114.0,-11.3448, +2016-05-17 02:45:00,,, +2016-05-17 02:52:21,3114.0,-11.3778, +2016-05-17 03:00:00,,, +2016-05-17 03:07:16,3113.0,-11.3778, +2016-05-17 03:15:00,,, +2016-05-17 03:22:11,3113.0,-11.3778, +2016-05-17 03:30:00,,, +2016-05-17 03:37:05,3113.0,-11.3778, +2016-05-17 03:45:00,,, +2016-05-17 03:52:00,3112.0,-11.3448, +2016-05-17 04:00:00,,, +2016-05-17 04:06:55,3113.0,-11.3448, +2016-05-17 04:15:00,,, +2016-05-17 04:21:50,3113.0,-10.9665, +2016-05-17 04:30:00,,, +2016-05-17 04:36:45,3112.0,-11.3778, +2016-05-17 04:45:00,,, +2016-05-17 04:51:40,3112.0,-11.3119, +2016-05-17 05:00:00,,, +2016-05-17 05:06:42,3112.0,-11.3778, +2016-05-17 05:15:00,,, +2016-05-17 05:21:37,3111.0,-10.9665, +2016-05-17 05:30:00,,, +2016-05-17 05:36:31,3112.0,-11.3458, +2016-05-17 05:45:00,,, +2016-05-17 05:51:26,3112.0,-11.3129, +2016-05-17 06:00:00,,, +2016-05-17 06:06:21,3112.0,-11.3448, +2016-05-17 06:15:00,,, +2016-05-17 06:21:16,3113.0,-10.9665, +2016-05-17 06:30:00,,, +2016-05-17 06:36:11,3114.0,-11.3778, +2016-05-17 06:45:00,,, +2016-05-17 06:51:06,3113.0,-11.3448, +2016-05-17 07:00:00,,, +2016-05-17 07:06:01,3114.0,-11.3129, +2016-05-17 07:15:00,,, +2016-05-17 07:20:56,3114.0,-11.3129, +2016-05-17 07:30:00,,, +2016-05-17 07:35:51,3114.0,-11.3458, +2016-05-17 07:45:00,,, +2016-05-17 07:50:46,3114.0,-11.3129, +2016-05-17 08:00:00,,, +2016-05-17 08:05:41,3115.0,-11.3129, +2016-05-17 08:15:00,,,-4.6623 +2016-05-17 08:20:36,3115.0,-11.3778, +2016-05-17 08:30:00,,, +2016-05-17 08:35:30,3116.0,-10.9357, +2016-05-17 08:45:00,,, +2016-05-17 08:50:26,3117.0,-11.3448, +2016-05-17 09:00:00,,, +2016-05-17 09:05:21,3118.0,-11.41, +2016-05-17 09:15:00,,,-4.6854 +2016-05-17 09:20:15,3118.0,-10.9357, +2016-05-17 09:30:00,,,-4.7064 +2016-05-17 09:35:10,3120.0,-11.28, +2016-05-17 09:45:00,,,-4.7068 +2016-05-17 09:50:05,3120.0,-11.3119, +2016-05-17 10:00:00,,,-4.7286 +2016-05-17 10:05:00,3121.0,-11.3129, +2016-05-17 10:15:00,,,-4.7496 +2016-05-17 10:19:56,3122.0,-11.3129, +2016-05-17 10:30:00,,,-4.7286 +2016-05-17 10:34:51,3122.0,-11.28, +2016-05-17 10:45:00,,,-4.7286 +2016-05-17 10:49:46,3122.0,-11.3778, +2016-05-17 11:00:00,,,-4.7068 +2016-05-17 11:04:41,3123.0,-10.9039, +2016-05-17 11:15:00,,,-4.7286 +2016-05-17 11:19:36,3123.0,-11.281, +2016-05-17 11:30:00,,,-4.7286 +2016-05-17 11:34:31,3123.0,-11.281, +2016-05-17 11:45:00,,,-4.8779 +2016-05-17 11:49:26,3124.0,-11.2483, +2016-05-17 12:00:00,,,-4.7286 +2016-05-17 12:04:21,3124.0,-11.281, +2016-05-17 12:15:00,,,-4.7715 +2016-05-17 12:19:16,3125.0,-10.9048, +2016-05-17 12:30:00,,,-4.7723 +2016-05-17 12:34:11,3126.0,-10.9048, +2016-05-17 12:45:00,,,-4.7934 +2016-05-17 12:49:06,3127.0,-10.9039, +2016-05-17 13:00:00,,,-5.0497 +2016-05-17 13:04:01,3127.0,-11.3129, +2016-05-17 13:15:00,,,-4.9423 +2016-05-17 13:18:56,3127.0,-11.3768, +2016-05-17 13:30:00,,,-5.0488 +2016-05-17 13:33:51,3128.0,-11.2483, +2016-05-17 13:45:00,,,-4.7278 +2016-05-17 13:48:46,3128.0,-10.9048, +2016-05-17 14:00:00,,,-4.9414 +2016-05-17 14:03:41,3128.0,-11.281, +2016-05-17 14:15:00,,,-4.9419 +2016-05-17 14:18:36,3128.0,-10.9048, +2016-05-17 14:30:00,,,-4.9419 +2016-05-17 14:33:31,3128.0,-11.2483, +2016-05-17 14:45:00,,,-4.9419 +2016-05-17 14:48:34,3128.0,-10.9048, +2016-05-17 15:00:00,,,-4.9633 +2016-05-17 15:03:29,3128.0,-10.9048, +2016-05-17 15:15:00,,,-5.0063 +2016-05-17 15:18:31,3129.0,-11.2166, +2016-05-17 15:30:00,,,-5.0488 +2016-05-17 15:33:27,3130.0,-10.8732, +2016-05-17 15:45:00,,,-5.0919 +2016-05-17 15:48:22,3130.0,-10.8732, +2016-05-17 16:00:00,,,-5.3504 +2016-05-17 16:03:17,3130.0,-11.2156, +2016-05-17 16:15:00,,,-5.1138 +2016-05-17 16:18:12,3131.0,-11.2176, +2016-05-17 16:30:00,,,-2.0226 +2016-05-17 16:33:08,3131.0,-10.8732, +2016-05-17 16:45:00,,,-1.9162 +2016-05-17 16:48:03,3132.0,-10.8425, +2016-05-17 17:00:00,,,-1.8736 +2016-05-17 17:02:58,3132.0,-10.8425, +2016-05-17 17:15:00,,,-1.8522 +2016-05-17 17:17:53,3133.0,-10.8425, +2016-05-17 17:30:00,,,-1.7456 +2016-05-17 17:32:49,3134.0,-10.8425, +2016-05-17 17:45:00,,,2.7018 +2016-05-17 17:47:44,3134.0,-10.8425, +2016-05-17 18:00:00,,,-1.5963 +2016-05-17 18:02:46,3134.0,-11.281, +2016-05-17 18:15:00,,,-1.7029 +2016-05-17 18:17:41,3134.0,-10.8425, +2016-05-17 18:30:00,,,-1.7455 +2016-05-17 18:32:37,3134.0,-10.8425, +2016-05-17 18:45:00,,,-1.7456 +2016-05-17 18:47:32,3134.0,-10.8741, +2016-05-17 19:00:00,,,-1.7029 +2016-05-17 19:02:27,3134.0,-10.8425, +2016-05-17 19:15:00,,,-5.2416 +2016-05-17 19:17:29,3134.0,-10.8741, +2016-05-17 19:30:00,,,-1.916 +2016-05-17 19:32:25,3134.0,-10.8732, +2016-05-17 19:45:00,,,-1.8309 +2016-05-17 19:47:20,3134.0,-10.8732, +2016-05-17 20:00:00,,,-1.8095 +2016-05-17 20:02:15,3133.0,-10.8732, +2016-05-17 20:15:00,,,-5.0923 +2016-05-17 20:17:11,3132.0,-10.9048, +2016-05-17 20:30:00,,,-5.1147 +2016-05-17 20:32:06,3132.0,-11.2166, +2016-05-17 20:45:00,,,-5.1582 +2016-05-17 20:47:01,3131.0,-11.2166, +2016-05-17 21:00:00,,,-5.0937 +2016-05-17 21:01:57,3131.0,-10.9048, +2016-05-17 21:15:00,,,-5.3523 +2016-05-17 21:16:52,3130.0,-11.2166, +2016-05-17 21:30:00,,,-5.1156 +2016-05-17 21:31:48,3129.0,-10.9048, +2016-05-17 21:45:00,,,-5.0941 +2016-05-17 21:46:43,3129.0,-10.9048, +2016-05-17 22:00:00,,,-5.0515 +2016-05-17 22:01:38,3128.0,-10.9048, +2016-05-17 22:15:00,,,-5.073 +2016-05-17 22:16:33,3128.0,-10.9366, +2016-05-17 22:30:00,,,-5.0085 +2016-05-17 22:31:28,3127.0,-10.9357, +2016-05-17 22:45:00,,,-5.009 +2016-05-17 22:46:23,3127.0,-11.3129, +2016-05-17 23:00:00,,,-4.9655 +2016-05-17 23:01:18,3126.0,-11.281, +2016-05-17 23:15:00,,,-5.1161 +2016-05-17 23:16:13,3124.0,-10.9357, +2016-05-17 23:30:00,,,-4.8161 +2016-05-17 23:31:08,3124.0,-10.9357, +2016-05-17 23:45:00,,,-4.7951 +2016-05-17 23:46:04,3123.0,-10.9039, +2016-05-18 00:00:00,,,-4.838 +2016-05-18 00:00:59,3123.0,-10.9357, +2016-05-18 00:15:00,,,-4.8165 +2016-05-18 00:15:54,3123.0,-11.1851, +2016-05-18 00:30:00,,,-5.0524 +2016-05-18 00:30:49,3122.0,-11.281, +2016-05-18 00:45:00,,,-4.8165 +2016-05-18 00:45:44,3122.0,-10.9357, +2016-05-18 01:00:00,,,-4.8165 +2016-05-18 01:00:39,3122.0,-10.9357, +2016-05-18 01:15:00,,,-4.838 +2016-05-18 01:15:34,3122.0,-10.9357, +2016-05-18 01:30:00,,,-4.7951 +2016-05-18 01:30:29,3121.0,-11.281, +2016-05-18 01:45:00,,,-4.817 +2016-05-18 01:45:24,3121.0,-11.3438, +2016-05-18 02:00:00,,,-4.8165 +2016-05-18 02:00:19,3121.0,-10.9357, +2016-05-18 02:15:00,,,-4.817 +2016-05-18 02:15:14,3121.0,-10.9675, +2016-05-18 02:30:00,,,-4.817 +2016-05-18 02:30:16,3120.0,-10.9675, +2016-05-18 02:45:00,,,-4.817 +2016-05-18 02:45:11,3119.0,-10.9675, +2016-05-18 03:00:00,,,-4.8165 +2016-05-18 03:00:06,3119.0,-11.3129, +2016-05-18 03:15:00,,,-4.817 +2016-05-18 03:15:01,3118.0,-10.9675, +2016-05-18 03:29:56,3118.0,-10.9675, +2016-05-18 03:30:00,,,-4.817 +2016-05-18 03:44:50,3118.0,-11.3129, +2016-05-18 03:45:00,,,-4.8165 +2016-05-18 03:59:45,3117.0,-11.3129, +2016-05-18 04:00:00,,,-4.8384 +2016-05-18 04:14:40,3117.0,-10.9665, +2016-05-18 04:15:00,,,-4.8388 +2016-05-18 04:29:35,3116.0,-10.9665, +2016-05-18 04:30:00,,,-4.8388 +2016-05-18 04:44:30,3116.0,-10.9665, +2016-05-18 04:45:00,,,-4.8165 +2016-05-18 04:59:25,3116.0,-11.3129, +2016-05-18 05:00:00,,,-4.7316 +2016-05-18 05:14:20,3116.0,-10.9665, +2016-05-18 05:15:00,,,-4.8384 +2016-05-18 05:29:22,3115.0,-11.3129, +2016-05-18 05:30:00,,,-4.8603 +2016-05-18 05:44:17,3115.0,-10.9665, +2016-05-18 05:45:00,,,-4.8603 +2016-05-18 05:59:12,3115.0,-10.9665, +2016-05-18 06:00:00,,,-4.8603 +2016-05-18 06:14:07,3115.0,-10.9665, +2016-05-18 06:15:00,,,-4.8603 +2016-05-18 06:29:02,3115.0,-11.3129, +2016-05-18 06:30:00,,,-4.817 +2016-05-18 06:43:57,3116.0,-10.9347, +2016-05-18 06:45:00,,,-4.8165 +2016-05-18 06:58:52,3116.0,-10.9357, +2016-05-18 07:00:00,,,-4.8165 +2016-05-18 07:13:47,3116.0,-10.9357, +2016-05-18 07:15:00,,,-4.8599 +2016-05-18 07:28:42,3117.0,-10.9357, +2016-05-18 07:30:00,,,-4.8384 +2016-05-18 07:43:37,3118.0,-10.9357, +2016-05-18 07:45:00,,,-4.8599 +2016-05-18 07:58:32,3120.0,-10.9039, +2016-05-18 08:00:00,,,-5.0744 +2016-05-18 08:13:27,3121.0,-11.281, +2016-05-18 08:15:00,,,-4.8809 +2016-05-18 08:28:29,3122.0,-10.9048, +2016-05-18 08:30:00,,,-5.0959 +2016-05-18 08:43:24,3123.0,-10.8732, +2016-05-18 08:45:00,,,-5.0735 +2016-05-18 08:58:20,3124.0,-10.8732, +2016-05-18 09:00:00,,,-5.0735 +2016-05-18 09:13:15,3126.0,-10.8416, +2016-05-18 09:15:00,,,-5.1591 +2016-05-18 09:28:10,3128.0,-10.8425, +2016-05-18 09:30:00,,,-5.0085 +2016-05-18 09:43:06,3129.0,-11.2483, +2016-05-18 09:45:00,,,-5.0305 +2016-05-18 09:58:01,3131.0,-11.1851, +2016-05-18 10:00:00,,,-5.1161 +2016-05-18 10:12:56,3132.0,-10.812, +2016-05-18 10:15:00,,,-5.1807 +2016-05-18 10:27:52,3135.0,-10.812, +2016-05-18 10:30:00,,,-5.4387 +2016-05-18 10:42:47,3136.0,-11.3448, +2016-05-18 10:45:00,,,-2.0867 +2016-05-18 10:57:42,3137.0,-10.812, +2016-05-18 11:00:00,,,-1.9802 +2016-05-18 11:12:37,3138.0,-10.8129, +2016-05-18 11:15:00,,,-1.8948 +2016-05-18 11:27:33,3138.0,-10.8129, +2016-05-18 11:30:00,,,-1.8309 +2016-05-18 11:42:28,3140.0,-10.7815, +2016-05-18 11:45:00,,,-1.7029 +2016-05-18 11:57:24,3141.0,-10.7815, +2016-05-18 12:00:00,,,20.9207 +2016-05-18 12:12:19,3142.0,-11.0899, +2016-05-18 12:15:00,,,23.0836 +2016-05-18 12:27:15,3143.0,-10.751, +2016-05-18 12:30:00,,,5.4557 +2016-05-18 12:42:10,3143.0,-10.751, +2016-05-18 12:45:00,,,24.4509 +2016-05-18 12:57:06,3144.0,-11.0899, +2016-05-18 13:00:00,,,6.9221 +2016-05-18 13:12:01,3146.0,-10.751, +2016-05-18 13:15:00,,,25.6608 +2016-05-18 13:26:57,3146.0,-11.0587, +2016-05-18 13:30:00,,,26.7814 +2016-05-18 13:41:53,3147.0,-10.751, +2016-05-18 13:45:00,,,27.4603 +2016-05-18 13:56:48,3147.0,-11.0899, +2016-05-18 14:00:00,,,27.9077 +2016-05-18 14:11:44,3148.0,-10.751, +2016-05-18 14:15:00,,,28.5648 +2016-05-18 14:26:40,3149.0,-10.751, +2016-05-18 14:30:00,,,28.9765 +2016-05-18 14:41:35,3149.0,-10.7198, +2016-05-18 14:45:00,,,29.3423 +2016-05-18 14:56:31,3149.0,-10.751, +2016-05-18 15:00:00,,,29.552 +2016-05-18 15:11:26,3149.0,-10.751, +2016-05-18 15:15:00,,,29.7659 +2016-05-18 15:26:22,3150.0,-10.751, +2016-05-18 15:30:00,,,29.9816 +2016-05-18 15:41:18,3149.0,-10.751, +2016-05-18 15:45:00,,,30.2529 +2016-05-18 15:56:13,3149.0,-10.7501, +2016-05-18 16:00:00,,,30.3611 +2016-05-18 16:11:09,3148.0,-11.2483, +2016-05-18 16:15:00,,,26.4552 +2016-05-18 16:26:04,3147.0,-10.7815, +2016-05-18 16:30:00,,,30.5842 +2016-05-18 16:41:00,3147.0,-10.751, +2016-05-18 16:45:00,,,30.6937 +2016-05-18 16:55:55,3146.0,-10.751, +2016-05-18 17:00:00,,,30.5869 +2016-05-18 17:10:51,3145.0,-10.7815, +2016-05-18 17:15:00,,,30.9195 +2016-05-18 17:25:47,3145.0,-10.751, +2016-05-18 17:30:00,,,30.9749 +2016-05-18 17:40:42,3144.0,-10.7815, +2016-05-18 17:45:00,,,9.7681 +2016-05-18 17:55:38,3144.0,-10.7815, +2016-05-18 18:00:00,,,10.6283 +2016-05-18 18:10:33,3143.0,-10.7815, +2016-05-18 18:15:00,,,30.8036 +2016-05-18 18:25:29,3143.0,-10.8129, +2016-05-18 18:30:00,,,31.0276 +2016-05-18 18:40:24,3143.0,-11.1222, +2016-05-18 18:45:00,,,9.8182 +2016-05-18 18:55:20,3143.0,-10.7815, +2016-05-18 19:00:00,,,10.1655 +2016-05-18 19:10:15,3143.0,-10.7815, +2016-05-18 19:15:00,,,9.923 +2016-05-18 19:25:11,3143.0,-10.7815, +2016-05-18 19:30:00,,,8.8431 +2016-05-18 19:40:06,3142.0,-10.8129, +2016-05-18 19:45:00,,,9.5487 +2016-05-18 19:55:02,3141.0,-10.8129, +2016-05-18 20:00:00,,,8.7903 +2016-05-18 20:09:57,3140.0,-10.8129, +2016-05-18 20:15:00,,,0.3963 +2016-05-18 20:24:52,3139.0,-10.8129, +2016-05-18 20:30:00,,,0.1162 +2016-05-18 20:39:48,3138.0,-10.812, +2016-05-18 20:45:00,,,-0.1202 +2016-05-18 20:54:43,3138.0,-10.812, +2016-05-18 21:00:00,,,-0.206 +2016-05-18 21:09:39,3138.0,-10.812, +2016-05-18 21:15:00,,,-0.3132 +2016-05-18 21:24:34,3137.0,-10.8435, +2016-05-18 21:30:00,,,-0.4418 +2016-05-18 21:39:30,3136.0,-10.812, +2016-05-18 21:45:00,,,-0.5274 +2016-05-18 21:54:25,3136.0,-10.8435, +2016-05-18 22:00:00,,,-0.5488 +2016-05-18 22:09:20,3136.0,-10.8435, +2016-05-18 22:15:00,,,-0.5915 +2016-05-18 22:24:16,3136.0,-10.8435, +2016-05-18 22:30:00,,,-0.6557 +2016-05-18 22:39:11,3135.0,-11.2493, +2016-05-18 22:45:00,,,-0.6984 +2016-05-18 22:54:07,3135.0,-10.8435, +2016-05-18 23:00:00,,,-0.7625 +2016-05-18 23:09:02,3133.0,-10.8435, +2016-05-18 23:15:00,,,-4.4765 +2016-05-18 23:23:58,3133.0,-10.8435, +2016-05-18 23:30:00,,,-4.3932 +2016-05-18 23:38:53,3132.0,-10.8425, +2016-05-18 23:45:00,,,-4.4149 +2016-05-18 23:53:49,3132.0,-10.8751, +2016-05-19 00:00:00,,,-4.6282 +2016-05-19 00:08:44,3131.0,-10.8751, +2016-05-19 00:15:00,,,-4.4579 +2016-05-19 00:23:39,3131.0,-10.8435, +2016-05-19 00:30:00,,,-4.4808 +2016-05-19 00:38:35,3130.0,-10.8741, +2016-05-19 00:45:00,,,-4.5662 +2016-05-19 00:53:30,3130.0,-10.8741, +2016-05-19 01:00:00,,,-4.5239 +2016-05-19 01:08:26,3129.0,-10.8741, +2016-05-19 01:15:00,,,-4.6327 +2016-05-19 01:23:21,3128.0,-10.8741, +2016-05-19 01:30:00,,,-4.5034 +2016-05-19 01:38:16,3128.0,-11.2483, +2016-05-19 01:45:00,,,-4.5682 +2016-05-19 01:53:12,3127.0,-10.9048, +2016-05-19 02:00:00,,,-4.505 +2016-05-19 02:08:07,3127.0,-10.9048, +2016-05-19 02:15:00,,,-4.5477 +2016-05-19 02:23:02,3127.0,-11.2166, +2016-05-19 02:30:00,,,-4.5485 +2016-05-19 02:37:57,3126.0,-10.9048, +2016-05-19 02:45:00,,,-4.5493 +2016-05-19 02:52:53,3125.0,-11.2166, +2016-05-19 03:00:00,,,-4.4002 +2016-05-19 03:07:48,3124.0,-10.9048, +2016-05-19 03:15:00,,,-4.592 +2016-05-19 03:22:43,3124.0,-10.9048, +2016-05-19 03:30:00,,,-4.4219 +2016-05-19 03:37:38,3123.0,-10.9048, +2016-05-19 03:45:00,,,-4.465 +2016-05-19 03:52:33,3123.0,-10.9048, +2016-05-19 04:00:00,,,-4.4872 +2016-05-19 04:07:29,3123.0,-10.9048, +2016-05-19 04:15:00,,,-4.68 +2016-05-19 04:22:24,3123.0,-11.2166, +2016-05-19 04:30:00,,,-4.5311 +2016-05-19 04:37:19,3122.0,-10.9048, +2016-05-19 04:45:00,,,-4.5525 +2016-05-19 04:52:14,3122.0,-10.9048, +2016-05-19 05:00:00,,,-4.5315 +2016-05-19 05:07:09,3122.0,-10.9048, +2016-05-19 05:15:00,,,-4.5743 +2016-05-19 05:22:04,3122.0,-10.9048, +2016-05-19 05:30:00,,,-4.5747 +2016-05-19 05:36:59,3121.0,-10.9048, +2016-05-19 05:45:00,,,-4.5537 +2016-05-19 05:51:54,3122.0,-10.9048, +2016-05-19 06:00:00,,,-4.5327 +2016-05-19 06:06:49,3121.0,-10.9048, +2016-05-19 06:15:00,,,-4.5541 +2016-05-19 06:21:44,3121.0,-10.9366, +2016-05-19 06:30:00,,,-4.6183 +2016-05-19 06:36:39,3122.0,-10.9048, +2016-05-19 06:45:00,,,-4.79 +2016-05-19 06:51:35,3122.0,-10.9048, +2016-05-19 07:00:00,,,-4.79 +2016-05-19 07:06:30,3122.0,-10.9048, +2016-05-19 07:15:00,,,-4.8329 +2016-05-19 07:21:25,3122.0,-10.9048, +2016-05-19 07:30:00,,,-4.6623 +2016-05-19 07:36:21,3122.0,-10.9048, +2016-05-19 07:45:00,,,-4.9191 +2016-05-19 07:51:16,3122.0,-10.9048, +2016-05-19 08:00:00,,,-4.8775 +2016-05-19 08:06:11,3123.0,-10.9058, +2016-05-19 08:15:00,,,-4.962 +2016-05-19 08:21:06,3124.0,-10.8741, +2016-05-19 08:30:00,,,-4.9616 +2016-05-19 08:36:01,3126.0,-10.8435, +2016-05-19 08:45:00,,,-5.048 +2016-05-19 08:50:57,3127.0,-10.8435, +2016-05-19 09:00:00,,,-1.8728 +2016-05-19 09:05:52,3128.0,-10.812, +2016-05-19 09:15:00,,,-1.7452 +2016-05-19 09:20:47,3129.0,-10.812, +2016-05-19 09:30:00,,,-1.6812 +2016-05-19 09:35:43,3131.0,-10.7805, +2016-05-19 09:45:00,,,-1.6385 +2016-05-19 09:50:38,3133.0,-10.7815, +2016-05-19 10:00:00,,,-1.5961 +2016-05-19 10:05:34,3135.0,-11.0899, +2016-05-19 10:15:00,,,-1.5105 +2016-05-19 10:20:29,3136.0,-10.751, +2016-05-19 10:30:00,,,-1.5745 +2016-05-19 10:35:25,3138.0,-10.751, +2016-05-19 10:45:00,,,22.9612 +2016-05-19 10:50:21,3139.0,-10.7198, +2016-05-19 11:00:00,,,25.2575 +2016-05-19 11:05:16,3142.0,-11.0276, +2016-05-19 11:15:00,,,26.6012 +2016-05-19 11:20:12,3143.0,-10.7198, +2016-05-19 11:30:00,,,27.5213 +2016-05-19 11:35:08,3143.0,-10.7198, +2016-05-19 11:45:00,,,28.2167 +2016-05-19 11:50:03,3145.0,-10.7198, +2016-05-19 12:00:00,,,28.6792 +2016-05-19 12:04:59,3147.0,-10.7207, +2016-05-19 12:15:00,,,29.0435 +2016-05-19 12:19:55,3148.0,-10.6895, +2016-05-19 12:30:00,,,29.2536 +2016-05-19 12:34:51,3150.0,-10.6904, +2016-05-19 12:45:00,,,29.623 +2016-05-19 12:49:47,3151.0,-10.6904, +2016-05-19 13:00:00,,,29.8375 +2016-05-19 13:04:42,3152.0,-10.6904, +2016-05-19 13:15:00,,,29.6732 +2016-05-19 13:19:38,3154.0,-10.6904, +2016-05-19 13:30:00,,,30.1074 +2016-05-19 13:34:34,3155.0,-10.6904, +2016-05-19 13:45:00,,,30.5431 +2016-05-19 13:49:30,3156.0,-10.6593, +2016-05-19 14:00:00,,,30.71 +2016-05-19 14:04:26,3156.0,-10.6904, +2016-05-19 14:15:00,,,30.7677 +2016-05-19 14:19:22,3156.0,-11.0899, +2016-05-19 14:30:00,,,30.8228 +2016-05-19 14:34:18,3156.0,-10.6904, +2016-05-19 14:45:00,,,30.936 +2016-05-19 14:49:14,3156.0,-10.6904, +2016-05-19 15:00:00,,,30.3719 +2016-05-19 15:04:10,3156.0,-11.0286, +2016-05-19 15:15:00,,,31.0469 +2016-05-19 15:19:06,3156.0,-10.6904, +2016-05-19 15:30:00,,,31.0469 +2016-05-19 15:34:01,3156.0,-10.6904, +2016-05-19 15:45:00,,,31.161 +2016-05-19 15:49:05,3156.0,-10.6904, +2016-05-19 16:00:00,,,31.2169 +2016-05-19 16:04:01,3156.0,-10.6904, +2016-05-19 16:15:00,,,31.2728 +2016-05-19 16:18:56,3156.0,-11.0597, +2016-05-19 16:30:00,,,31.3317 +2016-05-19 16:33:52,3155.0,-10.6904, +2016-05-19 16:45:00,,,31.3907 +2016-05-19 16:48:48,3156.0,-10.6904, +2016-05-19 17:00:00,,,31.3317 +2016-05-19 17:03:44,3156.0,-11.0286, +2016-05-19 17:15:00,,,28.4861 +2016-05-19 17:18:40,3155.0,-11.0899, +2016-05-19 17:30:00,,,31.3907 +2016-05-19 17:33:36,3155.0,-10.6904, +2016-05-19 17:45:00,,,31.447 +2016-05-19 17:48:32,3155.0,-10.7217, +2016-05-19 18:00:00,,,30.595 +2016-05-19 18:03:27,3154.0,-11.1536, +2016-05-19 18:15:00,,,18.5652 +2016-05-19 18:18:23,3152.0,-11.0899, +2016-05-19 18:30:00,,,31.447 +2016-05-19 18:33:19,3152.0,-10.7207, +2016-05-19 18:45:00,,,31.5062 +2016-05-19 18:48:15,3152.0,-10.7207, +2016-05-19 19:00:00,,,31.6195 +2016-05-19 19:03:11,3151.0,-11.0276, +2016-05-19 19:15:00,,,31.5628 +2016-05-19 19:18:06,3150.0,-10.7207, +2016-05-19 19:30:00,,,31.5062 +2016-05-19 19:33:02,3149.0,-10.751, +2016-05-19 19:45:00,,,-4.1554 +2016-05-19 19:47:58,3150.0,-10.752, +2016-05-19 20:00:00,,,30.5977 +2016-05-19 20:02:54,3148.0,-10.751, +2016-05-19 20:15:00,,,30.4805 +2016-05-19 20:17:50,3147.0,-10.751, +2016-05-19 20:30:00,,,31.3879 +2016-05-19 20:32:45,3146.0,-10.7824, +2016-05-19 20:45:00,,,6.1344 +2016-05-19 20:47:41,3144.0,-11.0597, +2016-05-19 21:00:00,,,31.2728 +2016-05-19 21:02:37,3143.0,-10.7824, +2016-05-19 21:15:00,,,31.447 +2016-05-19 21:17:33,3143.0,-10.7824, +2016-05-19 21:30:00,,,31.5034 +2016-05-19 21:32:29,3142.0,-10.7824, +2016-05-19 21:45:00,,,8.1569 +2016-05-19 21:47:24,3140.0,-10.8129, +2016-05-19 22:00:00,,,0.6993 +2016-05-19 22:02:20,3138.0,-11.0909, +2016-05-19 22:15:00,,,0.2886 +2016-05-19 22:17:16,3138.0,-10.8129, +2016-05-19 22:30:00,,,6.7606 +2016-05-19 22:32:11,3138.0,-10.8129, +2016-05-19 22:45:00,,,30.7595 +2016-05-19 22:47:07,3137.0,-10.8129, +2016-05-19 23:00:00,,,0.2886 +2016-05-19 23:02:03,3137.0,-10.8129, +2016-05-19 23:15:00,,,-0.0558 +2016-05-19 23:16:58,3136.0,-10.8129, +2016-05-19 23:30:00,,,-0.0343 +2016-05-19 23:31:54,3136.0,-10.8129, +2016-05-19 23:45:00,,,-0.2704 +2016-05-19 23:46:50,3136.0,-10.8129, +2016-05-20 00:00:00,,,8.8198 +2016-05-20 00:01:45,3135.0,-10.8129, +2016-05-20 00:15:00,,,0.0302 +2016-05-20 00:16:41,3135.0,-11.0597, +2016-05-20 00:30:00,,,-0.2275 +2016-05-20 00:31:37,3135.0,-10.8129, +2016-05-20 00:45:00,,,-0.3347 +2016-05-20 00:46:32,3134.0,-10.8129, +2016-05-20 01:00:00,,,-0.4419 +2016-05-20 01:01:28,3134.0,-10.8129, +2016-05-20 01:15:00,,,-0.4204 +2016-05-20 01:16:23,3134.0,-10.8129, +2016-05-20 01:30:00,,,5.7477 +2016-05-20 01:31:19,3133.0,-10.8435, +2016-05-20 01:45:00,,,-0.1846 +2016-05-20 01:46:15,3132.0,-10.8435, +2016-05-20 02:00:00,,,8.1017 +2016-05-20 02:01:10,3132.0,-10.8435, +2016-05-20 02:15:00,,,2.3385 +2016-05-20 02:16:06,3131.0,-10.8435, +2016-05-20 02:30:00,,,-0.1631 +2016-05-20 02:31:01,3131.0,-10.812, +2016-05-20 02:45:00,,,-0.4418 +2016-05-20 02:45:57,3130.0,-10.8435, +2016-05-20 03:00:00,,,6.5902 +2016-05-20 03:00:52,3129.0,-10.8435, +2016-05-20 03:15:00,,,-0.206 +2016-05-20 03:15:48,3128.0,-10.8435, +2016-05-20 03:30:00,,,-0.4633 +2016-05-20 03:30:43,3128.0,-10.8435, +2016-05-20 03:45:00,,,5.1573 +2016-05-20 03:45:39,3128.0,-10.8435, +2016-05-20 04:00:00,,,-4.4137 +2016-05-20 04:00:34,3127.0,-10.8425, +2016-05-20 04:15:00,,,-4.5026 +2016-05-20 04:15:29,3127.0,-10.8435, +2016-05-20 04:30:00,,,-1.0834 +2016-05-20 04:30:25,3127.0,-10.8435, +2016-05-20 04:45:00,,,-1.0194 +2016-05-20 04:45:20,3127.0,-10.8435, +2016-05-20 05:00:00,,,-4.546 +2016-05-20 05:00:15,3125.0,-10.8435, +2016-05-20 05:15:00,,,-4.6335 +2016-05-20 05:15:10,3125.0,-10.8435, +2016-05-20 05:30:00,,,-4.8907 +2016-05-20 05:30:05,3124.0,-10.8751, +2016-05-20 05:45:00,,,-4.8697 +2016-05-20 05:45:01,3124.0,-11.1536, +2016-05-20 05:59:56,3124.0,-10.8741, +2016-05-20 06:00:00,,,-4.934 +2016-05-20 06:14:51,3125.0,-10.8741, +2016-05-20 06:15:00,,,-4.847 +2016-05-20 06:29:47,3124.0,-10.8435, +2016-05-20 06:30:00,,,-1.5314 +2016-05-20 06:44:42,3124.0,-10.8435, +2016-05-20 06:45:00,,,-4.6549 +2016-05-20 06:59:37,3124.0,-11.1851, +2016-05-20 07:00:00,,,-4.6343 +2016-05-20 07:14:33,3125.0,-10.8435, +2016-05-20 07:15:00,,,-4.9992 +2016-05-20 07:29:28,3125.0,-10.8435, +2016-05-20 07:30:00,,,-1.5953 +2016-05-20 07:44:24,3127.0,-10.812, +2016-05-20 07:45:00,,,3.2105 +2016-05-20 07:59:19,3127.0,-10.812, +2016-05-20 08:00:00,,,-1.1684 +2016-05-20 08:14:15,3127.0,-10.8129, +2016-05-20 08:15:00,,,-1.2965 +2016-05-20 08:29:10,3128.0,-10.8129, +2016-05-20 08:30:00,,,-1.318 +2016-05-20 08:44:06,3128.0,-10.7815, +2016-05-20 08:45:00,,,-1.2967 +2016-05-20 08:59:01,3130.0,-10.7815, +2016-05-20 09:00:00,,,6.1811 +2016-05-20 09:14:04,3132.0,-10.7501, +2016-05-20 09:15:00,,,26.7315 +2016-05-20 09:28:59,3134.0,-10.7501, +2016-05-20 09:30:00,,,28.6665 +2016-05-20 09:43:55,3135.0,-10.7198, +2016-05-20 09:45:00,,,22.8401 +2016-05-20 09:58:51,3137.0,-10.7198, +2016-05-20 10:00:00,,,30.0431 +2016-05-20 10:13:46,3138.0,-10.7198, +2016-05-20 10:15:00,,,30.3719 +2016-05-20 10:28:42,3141.0,-10.6895, +2016-05-20 10:30:00,,,30.6498 +2016-05-20 10:43:38,3143.0,-10.6282, +2016-05-20 10:45:00,,,29.8775 +2016-05-20 10:58:34,3144.0,-10.6593, +2016-05-20 11:00:00,,,30.71 +2016-05-20 11:13:29,3146.0,-10.6904, +2016-05-20 11:15:00,,,31.0524 +2016-05-20 11:28:25,3148.0,-10.6904, +2016-05-20 11:30:00,,,31.108 +2016-05-20 11:43:21,3149.0,-10.6904, +2016-05-20 11:45:00,,,31.2224 +2016-05-20 11:58:17,3150.0,-10.6593, +2016-05-20 12:00:00,,,30.5977 +2016-05-20 12:13:13,3151.0,-10.6904, +2016-05-20 12:15:00,,,30.7677 +2016-05-20 12:28:08,3152.0,-10.6904, +2016-05-20 12:30:00,,,29.7739 +2016-05-20 12:43:04,3152.0,-10.6593, +2016-05-20 12:45:00,,,31.3907 +2016-05-20 12:58:00,3152.0,-10.6593, +2016-05-20 13:00:00,,,31.3962 +2016-05-20 13:12:56,3152.0,-10.6904, +2016-05-20 13:15:00,,,31.2811 +2016-05-20 13:27:52,3153.0,-10.6904, +2016-05-20 13:30:00,,,29.8828 +2016-05-20 13:42:48,3154.0,-10.6593, +2016-05-20 13:45:00,,,26.9939 +2016-05-20 13:57:44,3154.0,-10.6904, +2016-05-20 14:00:00,,,31.1665 +2016-05-20 14:12:40,3155.0,-10.7198, +2016-05-20 14:15:00,,, +2016-05-20 14:27:36,3154.0,-10.7198, +2016-05-20 14:30:00,,,54.3022 +2016-05-20 14:42:32,3153.0,-10.751, +2016-05-20 14:45:00,,,54.3166 +2016-05-20 14:57:27,3152.0,-10.751, +2016-05-20 15:00:00,,,54.4399 +2016-05-20 15:12:30,3152.0,-10.7198, +2016-05-20 15:15:00,,,54.1939 +2016-05-20 15:27:26,3151.0,-10.751, +2016-05-20 15:30:00,,,54.3166 +2016-05-20 15:42:22,3151.0,-10.751, +2016-05-20 15:45:00,,,54.0667 +2016-05-20 15:57:18,3150.0,-10.751, +2016-05-20 16:00:00,,,54.3166 +2016-05-20 16:12:13,3150.0,-10.751, +2016-05-20 16:15:00,,,54.18899999999999 +2016-05-20 16:27:09,3150.0,-10.751, +2016-05-20 16:30:00,,,53.9449 +2016-05-20 16:42:05,3149.0,-10.751, +2016-05-20 16:45:00,,,53.9449 +2016-05-20 16:57:00,3149.0,-10.751, +2016-05-20 17:00:00,,,54.0667 +2016-05-20 17:11:56,3149.0,-10.751, +2016-05-20 17:15:00,,,54.0667 +2016-05-20 17:26:52,3148.0,-10.7824, +2016-05-20 17:30:00,,,54.18899999999999 +2016-05-20 17:41:48,3148.0,-10.751, +2016-05-20 17:45:00,,,53.9449 +2016-05-20 17:56:44,3147.0,-10.7815, +2016-05-20 18:00:00,,,53.5822 +2016-05-20 18:11:39,3146.0,-10.7815, +2016-05-20 18:15:00,,,53.7027 +2016-05-20 18:26:35,3146.0,-10.7815, +2016-05-20 18:30:00,,,53.9449 +2016-05-20 18:41:31,3145.0,-10.7815, +2016-05-20 18:45:00,,,53.8236 +2016-05-20 18:56:27,3145.0,-10.8129, +2016-05-20 19:00:00,,,53.7027 +2016-05-20 19:11:22,3145.0,-10.8129, +2016-05-20 19:15:00,,,54.3166 +2016-05-20 19:26:18,3143.0,-10.751, +2016-05-20 19:30:00,,,27.1356 +2016-05-20 19:41:14,3143.0,-10.751, +2016-05-20 19:45:00,,,27.7299 +2016-05-20 19:56:09,3142.0,-10.751, +2016-05-20 20:00:00,,,31.1135 +2016-05-20 20:11:05,3142.0,-10.7815, +2016-05-20 20:15:00,,,18.918 +2016-05-20 20:26:01,3140.0,-10.8435, +2016-05-20 20:30:00,,, +2016-05-20 20:40:57,3138.0,-10.7824, +2016-05-20 20:45:00,,,-0.4422 +2016-05-20 20:55:52,3138.0,-10.7824, +2016-05-20 21:00:00,,,9.1577 +2016-05-20 21:10:48,3138.0,-10.7824, +2016-05-20 21:15:00,,,31.34 +2016-05-20 21:25:44,3137.0,-10.8129, +2016-05-20 21:30:00,,,31.5712 +2016-05-20 21:40:40,3137.0,-10.7815, +2016-05-20 21:45:00,,,31.4582 +2016-05-20 21:55:35,3136.0,-10.7824, +2016-05-20 22:00:00,,,31.6903 +2016-05-20 22:10:31,3136.0,-10.7815, +2016-05-20 22:15:00,,,31.6931 +2016-05-20 22:25:26,3135.0,-10.8129, +2016-05-20 22:30:00,,,31.8099 +2016-05-20 22:40:22,3135.0,-10.8129, +2016-05-20 22:45:00,,,31.8099 +2016-05-20 22:55:18,3135.0,-10.8435, +2016-05-20 23:00:00,,,31.9329 +2016-05-20 23:10:13,3134.0,-10.8129, +2016-05-20 23:15:00,,,31.8099 +2016-05-20 23:25:09,3133.0,-10.8129, +2016-05-20 23:30:00,,,31.7529 +2016-05-20 23:40:04,3132.0,-10.8129, +2016-05-20 23:45:00,,,31.6959 +2016-05-20 23:55:00,3132.0,-10.8129, +2016-05-21 00:00:00,,,31.8127 +2016-05-21 00:09:56,3131.0,-10.8129, +2016-05-21 00:15:00,,,31.6959 +2016-05-21 00:24:51,3131.0,-10.8129, +2016-05-21 00:30:00,,,31.8127 +2016-05-21 00:39:47,3130.0,-10.8129, +2016-05-21 00:45:00,,,31.8127 +2016-05-21 00:54:42,3130.0,-10.8129, +2016-05-21 01:00:00,,,31.8127 +2016-05-21 01:09:38,3129.0,-10.8129, +2016-05-21 01:15:00,,,31.8127 +2016-05-21 01:24:33,3129.0,-10.812, +2016-05-21 01:30:00,,,31.8127 +2016-05-21 01:39:28,3128.0,-10.8129, +2016-05-21 01:45:00,,,31.8127 +2016-05-21 01:54:24,3128.0,-10.8129, +2016-05-21 02:00:00,,,31.8728 +2016-05-21 02:09:19,3128.0,-10.812, +2016-05-21 02:15:00,,,10.147 +2016-05-21 02:24:15,3128.0,-10.812, +2016-05-21 02:30:00,,,10.1976 +2016-05-21 02:39:10,3128.0,-10.8444, +2016-05-21 02:45:00,,,31.4665 +2016-05-21 02:54:06,3128.0,-10.8435, +2016-05-21 03:00:00,,,31.6391 +2016-05-21 03:09:01,3127.0,-10.812, +2016-05-21 03:15:00,,,31.6959 +2016-05-21 03:23:57,3127.0,-10.812, +2016-05-21 03:30:00,,,29.4626 +2016-05-21 03:38:52,3127.0,-10.8435, +2016-05-21 03:45:00,,,10.7723 +2016-05-21 03:53:48,3127.0,-10.8435, +2016-05-21 04:00:00,,,0.7211 +2016-05-21 04:08:43,3127.0,-10.8129, +2016-05-21 04:15:00,,,0.1809 +2016-05-21 04:23:39,3127.0,-10.8435, +2016-05-21 04:30:00,,,9.0278 +2016-05-21 04:38:34,3127.0,-10.8129, +2016-05-21 04:45:00,,,31.1721 +2016-05-21 04:53:29,3127.0,-10.812, +2016-05-21 05:00:00,,,31.5202 +2016-05-21 05:08:25,3127.0,-10.812, +2016-05-21 05:15:00,,,31.6391 +2016-05-21 05:23:20,3126.0,-10.8435, +2016-05-21 05:30:00,,,31.6391 +2016-05-21 05:38:15,3127.0,-10.8435, +2016-05-21 05:45:00,,,31.6391 +2016-05-21 05:53:11,3127.0,-10.8435, +2016-05-21 06:00:00,,,31.6987 +2016-05-21 06:08:06,3126.0,-10.8435, +2016-05-21 06:15:00,,,31.7585 +2016-05-21 06:23:01,3126.0,-10.8435, +2016-05-21 06:30:00,,,31.6987 +2016-05-21 06:37:57,3126.0,-10.812, +2016-05-21 06:45:00,,,31.7585 +2016-05-21 06:52:52,3126.0,-10.8129, +2016-05-21 07:00:00,,,31.8184 +2016-05-21 07:07:47,3127.0,-10.8129, +2016-05-21 07:15:00,,,31.8756 +2016-05-21 07:22:43,3127.0,-10.8129, +2016-05-21 07:30:00,,,31.7613 +2016-05-21 07:37:38,3128.0,-10.8129, +2016-05-21 07:45:00,,,31.8756 +2016-05-21 07:52:33,3128.0,-10.7815, +2016-05-21 08:00:00,,,31.9329 +2016-05-21 08:07:29,3128.0,-10.8129, +2016-05-21 08:15:00,,,31.8784 +2016-05-21 08:22:24,3130.0,-10.7501, +2016-05-21 08:30:00,,,31.8756 +2016-05-21 08:37:20,3130.0,-10.7501, +2016-05-21 08:45:00,,,31.9329 +2016-05-21 08:52:15,3132.0,-10.7501, +2016-05-21 09:00:00,,,31.8784 +2016-05-21 09:07:11,3134.0,-10.751, +2016-05-21 09:15:00,,,31.9932 +2016-05-21 09:22:06,3135.0,-10.7198, +2016-05-21 09:30:00,,,31.8784 +2016-05-21 09:37:02,3136.0,-10.7198, +2016-05-21 09:45:00,,,31.9932 +2016-05-21 09:51:57,3138.0,-10.6895, +2016-05-21 10:00:00,,,31.9357 +2016-05-21 10:06:53,3138.0,-10.6895, +2016-05-21 10:15:00,,,31.8184 +2016-05-21 10:21:48,3141.0,-10.6904, +2016-05-21 10:30:00,,,31.5286 +2016-05-21 10:36:44,3143.0,-10.6904, +2016-05-21 10:45:00,,,54.3311 +2016-05-21 10:51:40,3144.0,-10.7198, +2016-05-21 11:00:00,,,54.2083 +2016-05-21 11:06:36,3146.0,-10.6885, +2016-05-21 11:15:00,,,54.4544 +2016-05-21 11:21:32,3147.0,-10.6895, +2016-05-21 11:30:00,,,54.583 +2016-05-21 11:36:27,3149.0,-10.6895, +2016-05-21 11:45:00,,,54.3359 +2016-05-21 11:51:23,3150.0,-10.6904, +2016-05-21 12:00:00,,,54.4592 +2016-05-21 12:06:19,3151.0,-10.6895, +2016-05-21 12:15:00,,,54.583 +2016-05-21 12:21:15,3152.0,-10.6904, +2016-05-21 12:30:00,,,54.3359 +2016-05-21 12:36:10,3152.0,-10.6904, +2016-05-21 12:45:00,,,54.5782 +2016-05-21 12:51:06,3155.0,-10.6904, +2016-05-21 13:00:00,,,54.7122 +2016-05-21 13:06:02,3155.0,-10.6593, +2016-05-21 13:15:00,,,54.5879 +2016-05-21 13:20:59,3156.0,-10.6593, +2016-05-21 13:30:00,,,54.5879 +2016-05-21 13:35:55,3156.0,-10.6593, +2016-05-21 13:45:00,,,54.8369 +2016-05-21 13:50:51,3158.0,-10.6593, +2016-05-21 14:00:00,,,55.606 +2016-05-21 14:05:47,3160.0,-10.6292, +2016-05-21 14:15:00,,,54.4592 +2016-05-21 14:20:43,3160.0,-10.6282, +2016-05-21 14:30:00,,,54.9622 +2016-05-21 14:35:39,3161.0,-10.6292, +2016-05-21 14:45:00,,,54.8418 +2016-05-21 14:50:35,3161.0,-10.6292, +2016-05-21 15:00:00,,, +2016-05-21 15:05:31,3161.0,-10.6904, +2016-05-21 15:15:00,,,54.4544 +2016-05-21 15:20:27,3161.0,-10.6282, +2016-05-21 15:30:00,,,54.0859 +2016-05-21 15:35:23,3161.0,-10.6602, +2016-05-21 15:45:00,,,54.0859 +2016-05-21 15:50:19,3161.0,-10.6602, +2016-05-21 16:00:00,,,54.7122 +2016-05-21 16:05:15,3161.0,-10.6602, +2016-05-21 16:15:00,,,54.5879 +2016-05-21 16:20:11,3161.0,-10.6602, +2016-05-21 16:30:00,,,54.3359 +2016-05-21 16:35:07,3160.0,-10.6292, +2016-05-21 16:45:00,,,-3.3299 +2016-05-21 16:50:03,3160.0,-10.6593, +2016-05-21 17:00:00,,,-4.0506 +2016-05-21 17:04:59,3160.0,-10.6292, +2016-05-21 17:15:00,,,54.2083 +2016-05-21 17:19:55,3160.0,-10.6593, +2016-05-21 17:30:00,,,54.0859 +2016-05-21 17:34:51,3159.0,-10.6593, +2016-05-21 17:45:00,,,54.3359 +2016-05-21 17:49:47,3159.0,-10.6904, +2016-05-21 18:00:00,,,54.3311 +2016-05-21 18:04:43,3158.0,-10.6904, +2016-05-21 18:15:00,,,29.2205 +2016-05-21 18:19:39,3158.0,-10.6292, +2016-05-21 18:30:00,,,54.4641 +2016-05-21 18:34:35,3156.0,-10.6914, +2016-05-21 18:45:00,,,27.8189 +2016-05-21 18:49:31,3156.0,-10.6292, +2016-05-21 19:00:00,,,53.8427 +2016-05-21 19:04:27,3155.0,-10.7217, +2016-05-21 19:15:00,,,54.3407 +2016-05-21 19:19:23,3154.0,-10.6904, +2016-05-21 19:30:00,,,31.8671 +2016-05-21 19:34:19,3152.0,-10.6914, +2016-05-21 19:45:00,,, +2016-05-21 19:49:15,3152.0,-10.7207, +2016-05-21 20:00:00,,,31.4609 +2016-05-21 20:04:11,3152.0,-10.6914, +2016-05-21 20:15:00,,,31.9216 +2016-05-21 20:19:07,3151.0,-10.6904, +2016-05-21 20:30:00,,,31.8728 +2016-05-21 20:34:02,3150.0,-10.6904, +2016-05-21 20:45:00,,,31.8756 +2016-05-21 20:48:58,3149.0,-10.6904, +2016-05-21 21:00:00,,,31.9329 +2016-05-21 21:03:54,3148.0,-10.6904, +2016-05-21 21:15:00,,,31.9272 +2016-05-21 21:18:50,3146.0,-10.7217, +2016-05-21 21:30:00,,,31.8212 +2016-05-21 21:33:45,3144.0,-10.7217, +2016-05-21 21:45:00,,,31.8784 +2016-05-21 21:48:41,3143.0,-10.7217, +2016-05-21 22:00:00,,,31.8784 +2016-05-21 22:03:37,3143.0,-10.7207, +2016-05-21 22:15:00,,,31.9386 +2016-05-21 22:18:33,3142.0,-10.7217, +2016-05-21 22:30:00,,,0.2673 +2016-05-21 22:33:29,3138.0,-10.7207, +2016-05-21 22:45:00,,,0.1163 +2016-05-21 22:48:24,3138.0,-11.0899, +2016-05-21 23:00:00,,,7.4266 +2016-05-21 23:03:20,3138.0,-10.7207, +2016-05-21 23:15:00,,,4.6462 +2016-05-21 23:18:16,3137.0,-10.7207, +2016-05-21 23:30:00,,,-0.3133 +2016-05-21 23:33:11,3136.0,-11.1536, +2016-05-21 23:45:00,,,24.9911 +2016-05-21 23:48:07,3136.0,-10.751, +2016-05-22 00:00:00,,,-0.6347 +2016-05-22 00:03:03,3136.0,-11.0899, +2016-05-22 00:15:00,,,-0.2919 +2016-05-22 00:17:59,3135.0,-10.751, +2016-05-22 00:30:00,,,-0.3776 +2016-05-22 00:32:54,3135.0,-10.752, +2016-05-22 00:45:00,,,7.7726 +2016-05-22 00:47:50,3135.0,-10.751, +2016-05-22 01:00:00,,,-0.1631 +2016-05-22 01:02:49,3135.0,-10.751, +2016-05-22 01:15:00,,,-0.4204 +2016-05-22 01:17:44,3134.0,-10.751, +2016-05-22 01:30:00,,,-0.5916 +2016-05-22 01:32:40,3133.0,-10.751, +2016-05-22 01:45:00,,,-0.613 +2016-05-22 01:47:35,3133.0,-10.751, +2016-05-22 02:00:00,,,-0.677 +2016-05-22 02:02:31,3133.0,-10.751, +2016-05-22 02:15:00,,,-0.6984 +2016-05-22 02:17:26,3132.0,-10.751, +2016-05-22 02:30:00,,,-4.5879 +2016-05-22 02:32:22,3132.0,-10.751, +2016-05-22 02:45:00,,,-4.6976 +2016-05-22 02:47:18,3131.0,-10.751, +2016-05-22 03:00:00,,,-4.6775 +2016-05-22 03:02:13,3131.0,-10.751, +2016-05-22 03:15:00,,,-4.6356 +2016-05-22 03:17:09,3130.0,-10.751, +2016-05-22 03:30:00,,,-4.7425 +2016-05-22 03:32:05,3130.0,-11.0899, +2016-05-22 03:45:00,,,-4.6796 +2016-05-22 03:47:00,3129.0,-11.0909, +2016-05-22 04:00:00,,,-4.8513 +2016-05-22 04:01:56,3128.0,-11.1222, +2016-05-22 04:15:00,,,-4.5735 +2016-05-22 04:16:52,3128.0,-11.0889, +2016-05-22 04:30:00,,,-4.9379 +2016-05-22 04:31:47,3128.0,-11.1212, +2016-05-22 04:45:00,,,-4.5735 +2016-05-22 04:46:43,3127.0,-11.0899, +2016-05-22 05:00:00,,,-4.5952 +2016-05-22 05:01:38,3127.0,-11.0899, +2016-05-22 05:15:00,,,-4.6166 +2016-05-22 05:16:34,3126.0,-11.0899, +2016-05-22 05:30:00,,,-4.6384 +2016-05-22 05:31:29,3125.0,-11.0899, +2016-05-22 05:45:00,,,-4.638 +2016-05-22 05:46:25,3126.0,-11.2176, +2016-05-22 06:00:00,,,-4.9169 +2016-05-22 06:01:20,3126.0,-11.0899, +2016-05-22 06:15:00,,,-4.874 +2016-05-22 06:16:16,3125.0,-11.0899, +2016-05-22 06:30:00,,,-4.8745 +2016-05-22 06:31:11,3125.0,-11.0899, +2016-05-22 06:45:00,,,-4.9384 +2016-05-22 06:46:07,3125.0,-11.0899, +2016-05-22 07:00:00,,,-4.703 +2016-05-22 07:01:02,3125.0,-11.0899, +2016-05-22 07:15:00,,,-4.9174 +2016-05-22 07:15:58,3126.0,-11.0909, +2016-05-22 07:30:00,,,-4.9817 +2016-05-22 07:30:53,3127.0,-11.0909, +2016-05-22 07:45:00,,,-4.8093 +2016-05-22 07:45:49,3127.0,-11.0597, +2016-05-22 08:00:00,,,-4.7677 +2016-05-22 08:00:44,3128.0,-11.0597, +2016-05-22 08:15:00,,,-4.6816 +2016-05-22 08:15:40,3129.0,-11.0276, +2016-05-22 08:30:00,,,-4.703 +2016-05-22 08:30:36,3130.0,-11.0276, +2016-05-22 08:45:00,,,-4.7026 +2016-05-22 08:45:32,3132.0,-10.9965, +2016-05-22 09:00:00,,,-4.8959 +2016-05-22 09:00:28,3134.0,-10.9636, +2016-05-22 09:15:00,,,-5.0242 +2016-05-22 09:15:24,3135.0,-10.6282, +2016-05-22 09:30:00,,,-5.0444 +2016-05-22 09:30:19,3136.0,-10.6282, +2016-05-22 09:45:00,,,-5.2384 +2016-05-22 09:45:15,3138.0,-10.5982, +2016-05-22 10:00:00,,,-5.1939 +2016-05-22 10:00:11,3141.0,-10.5982, +2016-05-22 10:15:00,,,-1.8506 +2016-05-22 10:15:07,3143.0,-10.5682, +2016-05-22 10:30:00,,,-1.7653 +2016-05-22 10:30:03,3145.0,-10.9, +2016-05-22 10:44:59,3147.0,-10.5682, +2016-05-22 10:45:00,,,-1.6372 +2016-05-22 10:59:55,3150.0,-10.8416, +2016-05-22 11:00:00,,,-1.6586 +2016-05-22 11:14:52,3151.0,-10.8406, +2016-05-22 11:15:00,,,-1.6586 +2016-05-22 11:29:48,3153.0,-10.8416, +2016-05-22 11:30:00,,,-1.6159 +2016-05-22 11:44:44,3156.0,-10.81, +2016-05-22 11:45:00,,,-1.6159 +2016-05-22 11:59:40,3158.0,-10.81, +2016-05-22 12:00:00,,,-1.5947 +2016-05-22 12:14:36,3160.0,-10.811, +2016-05-22 12:15:00,,,-1.5947 +2016-05-22 12:29:33,3162.0,-10.811, +2016-05-22 12:30:00,,,-1.5734 +2016-05-22 12:44:29,3164.0,-10.7805, +2016-05-22 12:45:00,,,3.7504 +2016-05-22 12:59:25,3167.0,-10.7805, +2016-05-22 13:00:00,,,5.1779 +2016-05-22 13:14:21,3168.0,-10.7491, +2016-05-22 13:15:00,,,-0.9972 +2016-05-22 13:29:25,3171.0,-10.7491, +2016-05-22 13:30:00,,,-0.5893 +2016-05-22 13:44:22,3174.0,-10.449000000000002, +2016-05-22 13:45:00,,,25.7661 +2016-05-22 13:59:18,3174.0,-10.449000000000002, +2016-05-22 14:00:00,,,28.0867 +2016-05-22 14:14:14,3176.0,-10.449000000000002, +2016-05-22 14:15:00,,,29.1886 +2016-05-22 14:29:11,3176.0,-10.449000000000002, +2016-05-22 14:30:00,,,29.734 +2016-05-22 14:44:07,3177.0,-10.4499, +2016-05-22 14:45:00,,,30.1692 +2016-05-22 14:59:04,3178.0,-10.449000000000002, +2016-05-22 15:00:00,,,30.445 +2016-05-22 15:14:00,3179.0,-10.811, +2016-05-22 15:15:00,,,30.614 +2016-05-22 15:28:57,3180.0,-10.4499, +2016-05-22 15:30:00,,,30.7841 +2016-05-22 15:43:53,3181.0,-10.8416, +2016-05-22 15:45:00,,,30.9026 +2016-05-22 15:58:50,3181.0,-10.7491, +2016-05-22 16:00:00,,,30.9579 +2016-05-22 16:13:47,3181.0,-10.7501, +2016-05-22 16:15:00,,,31.0717 +2016-05-22 16:28:43,3181.0,-10.7805, +2016-05-22 16:30:00,,,31.1329 +2016-05-22 16:43:40,3181.0,-10.812, +2016-05-22 16:45:00,,,31.1329 +2016-05-22 16:58:36,3181.0,-10.4194, +2016-05-22 17:00:00,,,31.2473 +2016-05-22 17:13:33,3181.0,-10.812, +2016-05-22 17:15:00,,,31.2501 +2016-05-22 17:28:29,3181.0,-10.7501, +2016-05-22 17:30:00,,,31.2529 +2016-05-22 17:43:25,3181.0,-10.7501, +2016-05-22 17:45:00,,,31.2501 +2016-05-22 17:58:22,3179.0,-10.7805, +2016-05-22 18:00:00,,,31.3089 +2016-05-22 18:13:18,3178.0,-10.7805, +2016-05-22 18:15:00,,,31.3089 +2016-05-22 18:28:15,3177.0,-10.7805, +2016-05-22 18:30:00,,,31.3678 +2016-05-22 18:43:11,3177.0,-10.7805, +2016-05-22 18:45:00,,,31.3678 +2016-05-22 18:58:08,3176.0,-10.812, +2016-05-22 19:00:00,,,31.3678 +2016-05-22 19:13:04,3174.0,-10.812, +2016-05-22 19:15:00,,,31.2556 +2016-05-22 19:28:01,3174.0,-10.8425, +2016-05-22 19:30:00,,,31.3706 +2016-05-22 19:42:57,3172.0,-10.8416, +2016-05-22 19:45:00,,,31.3734 +2016-05-22 19:57:53,3170.0,-10.8425, +2016-05-22 20:00:00,,,31.3706 +2016-05-22 20:12:49,3169.0,-10.8425, +2016-05-22 20:15:00,,,9.2209 +2016-05-22 20:27:46,3167.0,-10.8425, +2016-05-22 20:30:00,,,0.181 +2016-05-22 20:42:42,3165.0,-10.8732, +2016-05-22 20:45:00,,,-0.0773 +2016-05-22 20:57:38,3163.0,-10.8732, +2016-05-22 21:00:00,,,-0.2276 +2016-05-22 21:12:34,3162.0,-10.8732, +2016-05-22 21:15:00,,,-0.3134 +2016-05-22 21:27:31,3160.0,-10.9048, +2016-05-22 21:30:00,,,-0.4633 +2016-05-22 21:42:27,3159.0,-10.9039, +2016-05-22 21:45:00,,,-0.5062 +2016-05-22 21:57:23,3156.0,-10.9039, +2016-05-22 22:00:00,,,-0.5918 +2016-05-22 22:12:19,3156.0,-10.9357, +2016-05-22 22:15:00,,,3.5258 +2016-05-22 22:27:15,3154.0,-10.9039, +2016-05-22 22:30:00,,,-0.4204 +2016-05-22 22:42:11,3154.0,-10.6001, +2016-05-22 22:45:00,,,-0.3777 +2016-05-22 22:57:07,3152.0,-10.9665, +2016-05-22 23:00:00,,,-0.6132 +2016-05-22 23:12:03,3151.0,-10.632, +2016-05-22 23:15:00,,,-0.7629 +2016-05-22 23:26:58,3150.0,-10.9347, +2016-05-22 23:30:00,,,-0.8057 +2016-05-22 23:41:54,3150.0,-10.9665, +2016-05-22 23:45:00,,,-4.8029 +2016-05-22 23:56:50,3148.0,-10.9656, +2016-05-23 00:00:00,,,-4.9336 +2016-05-23 00:15:00,,, +2016-05-23 00:30:00,,, +2016-05-23 00:45:00,,, +2016-05-23 01:00:00,,, +2016-05-23 01:11:29,3138.0,-10.9665, +2016-05-23 01:15:00,,,-4.467 +2016-05-23 01:26:25,3138.0,-10.9665, +2016-05-23 01:30:00,,,-4.5315 +2016-05-23 01:41:21,3137.0,-10.9985, +2016-05-23 01:45:00,,,-4.8955 +2016-05-23 01:56:17,3136.0,-10.9975, +2016-05-23 02:00:00,,,-4.9165 +2016-05-23 02:11:13,3136.0,-10.9975, +2016-05-23 02:15:00,,,-4.5747 +2016-05-23 02:26:08,3135.0,-10.9965, +2016-05-23 02:30:00,,,-4.5965 +2016-05-23 02:41:04,3134.0,-11.0286, +2016-05-23 02:45:00,,,-4.7883 +2016-05-23 02:56:00,3134.0,-11.0286, +2016-05-23 03:00:00,,,-4.5747 +2016-05-23 03:10:55,3132.0,-10.9694, +2016-05-23 03:15:00,,,-4.6829 +2016-05-23 03:25:50,3131.0,-11.0286, +2016-05-23 03:30:00,,,-4.6623 +2016-05-23 03:40:46,3131.0,-11.0305, +2016-05-23 03:45:00,,,-4.6397 +2016-05-23 03:55:53,3130.0,-11.0286, +2016-05-23 04:00:00,,,-4.6405 +2016-05-23 04:11:27,3130.0,-11.0276, +2016-05-23 04:15:00,,,-4.5965 +2016-05-23 04:26:22,3130.0,-11.0276, +2016-05-23 04:30:00,,,-4.5537 +2016-05-23 04:41:18,3130.0,-10.6904, +2016-05-23 04:45:00,,,-4.9384 +2016-05-23 04:56:13,3130.0,-11.0597, +2016-05-23 05:00:00,,,-5.1107 +2016-05-23 05:11:09,3129.0,-11.1536, +2016-05-23 05:15:00,,,-4.9603 +2016-05-23 05:26:04,3128.0,-11.0587, +2016-05-23 05:30:00,,,-4.8749 +2016-05-23 05:41:00,3128.0,-11.0286, +2016-05-23 05:45:00,,,-4.8757 +2016-05-23 05:55:56,3128.0,-11.0276, +2016-05-23 06:00:00,,,-4.8976 +2016-05-23 06:10:51,3128.0,-11.0286, +2016-05-23 06:15:00,,,-4.7265 +2016-05-23 06:25:47,3128.0,-11.0286, +2016-05-23 06:30:00,,,-4.7055 +2016-05-23 06:40:42,3128.0,-11.0276, +2016-05-23 06:45:00,,,-4.7274 +2016-05-23 06:55:38,3128.0,-11.0286, +2016-05-23 07:00:00,,,-4.7488 +2016-05-23 07:10:34,3128.0,-11.0286, +2016-05-23 07:15:00,,,-4.7274 +2016-05-23 07:25:29,3128.0,-11.0286, +2016-05-23 07:30:00,,,-4.7274 +2016-05-23 07:40:25,3128.0,-10.9965, +2016-05-23 07:45:00,,,-4.7702 +2016-05-23 07:55:20,3128.0,-10.9965, +2016-05-23 08:00:00,,,-4.7278 +2016-05-23 08:10:16,3128.0,-11.0276, +2016-05-23 08:15:00,,,-4.7917 +2016-05-23 08:25:12,3129.0,-11.0286, +2016-05-23 08:30:00,,,-5.0278 +2016-05-23 08:40:07,3129.0,-10.9646, +2016-05-23 08:45:00,,,-5.0059 +2016-05-23 08:55:03,3130.0,-10.9965, +2016-05-23 09:00:00,,,-4.9195 +2016-05-23 09:09:58,3130.0,-10.9975, +2016-05-23 09:15:00,,,-4.9195 +2016-05-23 09:24:54,3131.0,-10.9646, +2016-05-23 09:30:00,,,-4.9406 +2016-05-23 09:39:50,3132.0,-10.9656, +2016-05-23 09:45:00,,,-5.005 +2016-05-23 09:54:45,3132.0,-10.9646, +2016-05-23 10:00:00,,,-4.962 +2016-05-23 10:09:41,3132.0,-11.0305, +2016-05-23 10:15:00,,,-4.7261 +2016-05-23 10:24:37,3133.0,-10.9646, +2016-05-23 10:30:00,,,-4.6598 +2016-05-23 10:39:33,3135.0,-10.9347, +2016-05-23 10:45:00,,,-4.6841 +2016-05-23 10:54:28,3136.0,-10.9347, +2016-05-23 11:00:00,,,-5.0054 +2016-05-23 11:09:24,3136.0,-10.9029, +2016-05-23 11:15:00,,,-4.92 +2016-05-23 11:24:20,3136.0,-10.902, +2016-05-23 11:30:00,,,-4.8976 +2016-05-23 11:39:16,3137.0,-10.9347, +2016-05-23 11:45:00,,,-4.962 +2016-05-23 11:54:12,3138.0,-10.9029, +2016-05-23 12:00:00,,,-4.9195 +2016-05-23 12:09:08,3138.0,-10.9337, +2016-05-23 12:15:00,,,-4.9844 +2016-05-23 12:24:03,3138.0,-10.9675, +2016-05-23 12:30:00,,,-5.1129 +2016-05-23 12:38:59,3139.0,-11.0577, +2016-05-23 12:45:00,,,-5.5463 +2016-05-23 12:53:55,3141.0,-10.9029, +2016-05-23 13:00:00,,,-4.9187 +2016-05-23 13:08:51,3141.0,-10.9347, +2016-05-23 13:15:00,,,-5.1770000000000005 +2016-05-23 13:23:46,3141.0,-10.9029, +2016-05-23 13:30:00,,,-4.9191 +2016-05-23 13:38:42,3142.0,-10.9029, +2016-05-23 13:45:00,,,-5.0265 +2016-05-23 13:53:38,3142.0,-11.0325, +2016-05-23 14:00:00,,,-4.9401 +2016-05-23 14:08:34,3143.0,-10.9347, +2016-05-23 14:15:00,,,-5.134 +2016-05-23 14:23:30,3143.0,-10.9048, +2016-05-23 14:30:00,,,-5.069 +2016-05-23 14:38:25,3143.0,-10.9048, +2016-05-23 14:45:00,,,-5.0914 +2016-05-23 14:53:21,3144.0,-10.8406, +2016-05-23 15:00:00,,,-5.3931 +2016-05-23 15:08:17,3145.0,-10.9366, +2016-05-23 15:15:00,,,-5.3499 +2016-05-23 15:23:13,3145.0,-10.8454, +2016-05-23 15:30:00,,,-5.091 +2016-05-23 15:38:09,3145.0,-10.8406, +2016-05-23 15:45:00,,,-5.1147 +2016-05-23 15:53:05,3146.0,-10.9357, +2016-05-23 16:00:00,,,-5.3499 +2016-05-23 16:08:07,3146.0,-10.9039, +2016-05-23 16:15:00,,,-2.0226 +2016-05-23 16:23:03,3145.0,-10.9039, +2016-05-23 16:30:00,,,-1.916 +2016-05-23 16:37:59,3146.0,-10.9039, +2016-05-23 16:45:00,,,-2.3833 +2016-05-23 16:52:55,3146.0,-10.9029, +2016-05-23 17:00:00,,,-1.8521 +2016-05-23 17:07:51,3146.0,-10.9656, +2016-05-23 17:15:00,,,-4.811 +2016-05-23 17:22:47,3146.0,-10.9328, +2016-05-23 17:30:00,,,4.642 +2016-05-23 17:37:43,3146.0,-10.9347, +2016-05-23 17:45:00,,,-6.3712 +2016-05-23 17:52:39,3148.0,-10.8722, +2016-05-23 18:00:00,,,-2.0224 +2016-05-23 18:07:35,3147.0,-10.4787, +2016-05-23 18:15:00,,,-4.482 +2016-05-23 18:22:31,3152.0,-10.6602, +2016-05-23 18:30:00,,,57.4379 +2016-05-23 18:37:27,3150.0,-10.6904, +2016-05-23 18:45:00,,,57.7047 +2016-05-23 18:52:23,3150.0,-10.6593, +2016-05-23 19:00:00,,,56.4839 +2016-05-23 19:07:19,3148.0,-10.6904, +2016-05-23 19:15:00,,,56.3528 +2016-05-23 19:22:14,3147.0,-10.6904, +2016-05-23 19:30:00,,,56.3528 +2016-05-23 19:37:10,3146.0,-10.6904, +2016-05-23 19:45:00,,,55.9673 +2016-05-23 19:52:06,3145.0,-10.7207, +2016-05-23 20:00:00,,,55.176 +2016-05-23 20:07:02,3144.0,-10.7198, +2016-05-23 20:15:00,,,55.0647 +2016-05-23 20:21:58,3143.0,-10.751, +2016-05-23 20:30:00,,,29.673 +2016-05-23 20:37:01,3142.0,-10.6904, +2016-05-23 20:45:00,,,-3.3454 +2016-05-23 20:51:57,3140.0,-10.9646, +2016-05-23 21:00:00,,,17.6128 +2016-05-23 21:06:52,3137.0,-11.0276, +2016-05-23 21:15:00,,,9.2703 +2016-05-23 21:21:48,3136.0,-10.9646, +2016-05-23 21:30:00,,,-3.069 +2016-05-23 21:36:44,3136.0,-10.9347, +2016-05-23 21:45:00,,,6.09 +2016-05-23 21:51:40,3135.0,-10.9656, +2016-05-23 22:00:00,,,18.6657 +2016-05-23 22:06:36,3135.0,-11.0286, +2016-05-23 22:15:00,,,-3.0706 +2016-05-23 22:21:31,3135.0,-11.0237, +2016-05-23 22:30:00,,,-4.563 +2016-05-23 22:36:27,3136.0,-10.9646, +2016-05-23 22:45:00,,, +2016-05-23 22:51:23,3143.0,-10.4203, +2016-05-23 23:00:00,,,62.3178 +2016-05-23 23:06:18,3141.0,-10.751, +2016-05-23 23:15:00,,,24.9379 +2016-05-23 23:21:14,3155.0,-10.6311, +2016-05-23 23:30:00,,,25.5297 +2016-05-23 23:36:09,3155.0,-10.6612, +2016-05-23 23:45:00,,,24.6654 +2016-05-23 23:51:05,3148.0,-10.6914, +2016-05-24 00:00:00,,,25.1188 +2016-05-24 00:06:00,3149.0,-10.6914, +2016-05-24 00:15:00,,,22.4914 +2016-05-24 00:20:56,3139.0,-10.8139, +2016-05-24 00:30:00,,,25.2108 +2016-05-24 00:35:51,3147.0,-10.6914, +2016-05-24 00:45:00,,,23.8188 +2016-05-24 00:50:47,3143.0,-10.7824, +2016-05-24 01:00:00,,,25.491 +2016-05-24 01:05:42,3148.0,-10.5673, +2016-05-24 01:15:00,,,25.3054 +2016-05-24 01:20:38,3146.0,-10.7226, +2016-05-24 01:30:00,,,24.8445 +2016-05-24 01:35:33,3144.0,-10.7529, +2016-05-24 01:45:00,,,24.4371 +2016-05-24 01:50:29,3144.0,-10.752, +2016-05-24 02:00:00,,,25.1121 +2016-05-24 02:05:24,3144.0,-10.752, +2016-05-24 02:15:00,,,25.4366 +2016-05-24 02:20:19,3145.0,-10.7207, +2016-05-24 02:30:00,,,25.2469 +2016-05-24 02:35:15,3144.0,-10.752, +2016-05-24 02:45:00,,,25.016 +2016-05-24 02:50:10,3143.0,-10.751, +2016-05-24 03:00:00,,,25.9929 +2016-05-24 03:05:06,3145.0,-10.7217, +2016-05-24 03:15:00,,,25.3823 +2016-05-24 03:20:01,3143.0,-10.751, +2016-05-24 03:30:00,,,25.4275 +2016-05-24 03:34:56,3143.0,-10.751, +2016-05-24 03:45:00,,,24.4176 +2016-05-24 03:49:59,3140.0,-10.7815, +2016-05-24 04:00:00,,,24.4198 +2016-05-24 04:04:55,3139.0,-10.7815, +2016-05-24 04:15:00,,,25.2852 +2016-05-24 04:19:50,3143.0,-10.751, +2016-05-24 04:30:00,,,24.6413 +2016-05-24 04:34:46,3140.0,-10.8129, +2016-05-24 04:45:00,,,25.0965 +2016-05-24 04:49:41,3141.0,-10.7824, +2016-05-24 05:00:00,,,26.0786 +2016-05-24 05:04:37,3143.0,-10.7207, +2016-05-24 05:15:00,,,26.4664 +2016-05-24 05:19:32,3145.0,-10.6895, +2016-05-24 05:30:00,,,26.2648 +2016-05-24 05:34:27,3144.0,-10.8444, +2016-05-24 05:45:00,,,25.1862 +2016-05-24 05:49:23,3140.0,-10.7815, +2016-05-24 06:00:00,,,26.0786 +2016-05-24 06:04:18,3143.0,-10.751, +2016-05-24 06:15:00,,,26.41 +2016-05-24 06:19:13,3143.0,-10.7198, +2016-05-24 06:30:00,,,26.3116 +2016-05-24 06:34:09,3142.0,-10.751, +2016-05-24 06:45:00,,,25.9768 +2016-05-24 06:49:04,3141.0,-10.7815, +2016-05-24 07:00:00,,,26.3116 +2016-05-24 07:03:59,3142.0,-10.7501, +2016-05-24 07:15:00,,,26.2158 +2016-05-24 07:18:54,3141.0,-10.7815, +2016-05-24 07:30:00,,,26.6457 +2016-05-24 07:33:49,3143.0,-10.751, +2016-05-24 07:45:00,,,26.3701 +2016-05-24 07:48:45,3143.0,-10.751, +2016-05-24 08:00:00,,,25.7856 +2016-05-24 08:03:40,3138.0,-10.8435, +2016-05-24 08:15:00,,,25.8799 +2016-05-24 08:18:35,3138.0,-10.812, +2016-05-24 08:30:00,,,25.6939 +2016-05-24 08:33:37,3138.0,-10.812, +2016-05-24 08:45:00,,,26.3092 +2016-05-24 08:48:33,3139.0,-10.8129, +2016-05-24 09:00:00,,,24.5929 +2016-05-24 09:03:28,3135.0,-10.8425, +2016-05-24 09:15:00,,,24.8203 +2016-05-24 09:18:23,3135.0,-10.8425, +2016-05-24 09:30:00,,,26.1158 +2016-05-24 09:33:19,3138.0,-10.812, +2016-05-24 09:45:00,,,26.0694 +2016-05-24 09:48:14,3138.0,-10.812, +2016-05-24 10:00:00,,,27.0008 +2016-05-24 10:03:09,3143.0,-10.7207, +2016-05-24 10:15:00,,,26.9528 +2016-05-24 10:18:04,3142.0,-10.751, +2016-05-24 10:30:00,,,26.905 +2016-05-24 10:33:00,3143.0,-10.6895, +2016-05-24 10:45:00,,,26.9505 +2016-05-24 10:47:55,3140.0,-10.7501, +2016-05-24 11:00:00,,,26.9481 +2016-05-24 11:02:50,3140.0,-10.7501, +2016-05-24 11:15:00,,,26.8525 +2016-05-24 11:17:45,3139.0,-10.7805, +2016-05-24 11:30:00,,,27.0032 +2016-05-24 11:32:41,3143.0,-10.7198, +2016-05-24 11:45:00,,,27.1474 +2016-05-24 11:47:36,3142.0,-10.7198, +2016-05-24 12:00:00,,,26.6552 +2016-05-24 12:02:31,3138.0,-10.8454, +2016-05-24 12:15:00,,,25.7902 +2016-05-24 12:17:26,3136.0,-10.8416, +2016-05-24 12:30:00,,,27.1933 +2016-05-24 12:32:22,3140.0,-10.7188, +2016-05-24 12:45:00,,,26.8001 +2016-05-24 12:47:17,3138.0,-10.81, +2016-05-24 13:00:00,,,26.7977 +2016-05-24 13:02:12,3138.0,-10.8129, +2016-05-24 13:15:00,,,27.1933 +2016-05-24 13:17:08,3139.0,-10.7501, +2016-05-24 13:30:00,,,26.5064 +2016-05-24 13:32:03,3136.0,-10.811, +2016-05-24 13:45:00,,,26.9481 +2016-05-24 13:46:58,3138.0,-10.7805, +2016-05-24 14:00:00,,,26.504 +2016-05-24 14:01:53,3136.0,-10.8425, +2016-05-24 14:15:00,,,27.0944 +2016-05-24 14:16:48,3138.0,-10.7501, +2016-05-24 14:30:00,,,26.0253 +2016-05-24 14:31:44,3135.0,-10.8425, +2016-05-24 14:45:00,,,26.5512 +2016-05-24 14:46:39,3136.0,-10.812, +2016-05-24 15:00:00,,,26.8477 +2016-05-24 15:01:34,3137.0,-10.812, +2016-05-24 15:15:00,,,26.8477 +2016-05-24 15:16:29,3137.0,-10.7491, +2016-05-24 15:30:00,,,26.3116 +2016-05-24 15:31:25,3135.0,-10.8425, +2016-05-24 15:45:00,,,24.2261 +2016-05-24 15:46:20,3129.0,-10.9039, +2016-05-24 16:00:00,,,24.6788 +2016-05-24 16:01:15,3130.0,-10.8722, +2016-05-24 16:15:00,,,24.0467 +2016-05-24 16:16:10,3129.0,-10.9039, +2016-05-24 16:30:00,,,24.2261 +2016-05-24 16:31:05,3129.0,-10.9039, +2016-05-24 16:45:00,,,23.9155 +2016-05-24 16:46:00,3128.0,-10.9039, +2016-05-24 17:00:00,,,75.4867 +2016-05-24 17:00:55,3127.0,-10.9039, +2016-05-24 17:15:00,,,71.5791 +2016-05-24 17:15:50,3127.0,-10.9039, +2016-05-24 17:30:00,,,24.765 +2016-05-24 17:30:46,3131.0,-10.8732, +2016-05-24 17:45:00,,,70.5599 +2016-05-24 17:45:41,3125.0,-10.9029, +2016-05-24 18:00:00,,,23.9155 +2016-05-24 18:00:36,3128.0,-10.9039, +2016-05-24 18:15:00,,,73.0697 +2016-05-24 18:15:31,3127.0,-10.9039, +2016-05-24 18:30:00,,,72.8383 +2016-05-24 18:30:27,3127.0,-10.9039, +2016-05-24 18:45:00,,,74.5827 +2016-05-24 18:45:22,3127.0,-10.9039, +2016-05-24 19:00:00,,,73.27 +2016-05-24 19:00:17,3127.0,-10.9039, +2016-05-24 19:15:00,,,24.9025 +2016-05-24 19:15:13,3131.0,-10.8732, +2016-05-24 19:30:00,,,74.7851 +2016-05-24 19:30:08,3127.0,-10.8722, +2016-05-24 19:45:00,,,71.5918 +2016-05-24 19:45:03,3127.0,-10.9039, +2016-05-24 19:59:58,3128.0,-10.8732, +2016-05-24 20:00:00,,,76.8952 +2016-05-24 20:14:53,3127.0,-10.9048, +2016-05-24 20:15:00,,,73.27 +2016-05-24 20:29:49,3127.0,-10.9048, +2016-05-24 20:30:00,,,74.1355 +2016-05-24 20:44:44,3123.0,-10.9039, +2016-05-24 20:45:00,,,66.2128 +2016-05-24 20:59:39,3123.0,-10.9039, +2016-05-24 21:00:00,,,66.9282 +2016-05-24 21:14:34,3127.0,-10.9048, +2016-05-24 21:15:00,,,75.9572 +2016-05-24 21:29:30,3123.0,-10.9039, +2016-05-24 21:30:00,,,68.7984 +2016-05-24 21:44:25,3123.0,-10.9039, +2016-05-24 21:45:00,,,67.848 +2016-05-24 21:59:20,3123.0,-10.9039, +2016-05-24 22:00:00,,,67.1079 +2016-05-24 22:14:15,3127.0,-10.9048, +2016-05-24 22:15:00,,,75.9572 +2016-05-24 22:29:11,3123.0,-10.9039, +2016-05-24 22:30:00,,,67.2945 +2016-05-24 22:44:06,3123.0,-10.9029, +2016-05-24 22:45:00,,,69.5686 +2016-05-24 22:59:01,3123.0,-10.9357, +2016-05-24 23:00:00,,,68.5978 +2016-05-24 23:13:56,3123.0,-10.9039, +2016-05-24 23:15:00,,,67.848 +2016-05-24 23:28:51,3123.0,-10.9357, +2016-05-24 23:30:00,,,68.0506 +2016-05-24 23:43:46,3124.0,-10.9039, +2016-05-24 23:45:00,,,74.1619 +2016-05-24 23:58:41,3122.0,-10.9357, +2016-05-25 00:00:00,,,66.2128 +2016-05-25 00:13:43,3122.0,-10.9357, +2016-05-25 00:15:00,,,66.0318 +2016-05-25 00:28:38,3122.0,-10.9357, +2016-05-25 00:30:00,,,65.8517 +2016-05-25 00:43:34,3123.0,-10.9039, +2016-05-25 00:45:00,,,72.8318 +2016-05-25 00:58:29,3122.0,-10.9357, +2016-05-25 01:00:00,,,64.8303 +2016-05-25 01:13:24,3121.0,-10.9347, +2016-05-25 01:15:00,,,64.4889 +2016-05-25 01:28:19,3121.0,-10.9347, +2016-05-25 01:30:00,,,65.3343 +2016-05-25 01:43:14,3120.0,-10.9347, +2016-05-25 01:45:00,,,63.3113 +2016-05-25 01:58:09,3120.0,-10.9347, +2016-05-25 02:00:00,,,63.4731 +2016-05-25 02:13:04,3121.0,-10.9347, +2016-05-25 02:15:00,,,64.1394 +2016-05-25 02:27:59,3121.0,-10.9347, +2016-05-25 02:30:00,,,66.2128 +2016-05-25 02:42:54,3121.0,-10.9347, +2016-05-25 02:45:00,,,65.5001 +2016-05-25 02:57:49,3121.0,-10.9347, +2016-05-25 03:00:00,,,66.3888 +2016-05-25 03:12:44,3121.0,-10.9347, +2016-05-25 03:15:00,,,66.2128 +2016-05-25 03:27:39,3121.0,-10.9347, +2016-05-25 03:30:00,,,66.2128 +2016-05-25 03:42:34,3121.0,-10.9347, +2016-05-25 03:45:00,,,66.0259 +2016-05-25 03:57:29,3121.0,-10.9665, +2016-05-25 04:00:00,,,67.848 +2016-05-25 04:12:24,3121.0,-10.9347, +2016-05-25 04:15:00,,,68.0325 +2016-05-25 04:27:19,3121.0,-10.9347, +2016-05-25 04:30:00,,,68.0385 +2016-05-25 04:42:14,3122.0,-10.9357, +2016-05-25 04:45:00,,,70.3619 +2016-05-25 04:57:09,3121.0,-10.8091, +2016-05-25 05:00:00,,,69.7622 +2016-05-25 05:12:04,3121.0,-10.9337, +2016-05-25 05:15:00,,,69.9569 +2016-05-25 05:26:59,3122.0,-10.9347, +2016-05-25 05:30:00,,,70.5599 +2016-05-25 05:41:54,3121.0,-10.9347, +2016-05-25 05:45:00,,,69.7684 +2016-05-25 05:56:49,3121.0,-10.9347, +2016-05-25 06:00:00,,,68.994 +2016-05-25 06:11:44,3121.0,-10.9665, +2016-05-25 06:15:00,,,69.9569 +2016-05-25 06:26:38,3121.0,-10.9665, +2016-05-25 06:30:00,,,69.9631 +2016-05-25 06:41:33,3122.0,-10.9665, +2016-05-25 06:45:00,,,71.3628 +2016-05-25 06:56:28,3122.0,-10.9347, +2016-05-25 07:00:00,,,71.1604 +2016-05-25 07:11:23,3122.0,-10.9347, +2016-05-25 07:15:00,,,72.2033 +2016-05-25 07:26:18,3122.0,-10.9347, +2016-05-25 07:30:00,,,72.2033 +2016-05-25 07:41:13,3121.0,-10.9347, +2016-05-25 07:45:00,,,72.2033 +2016-05-25 07:56:08,3121.0,-10.9347, +2016-05-25 08:00:00,,,71.7838 +2016-05-25 08:11:03,3121.0,-10.9347, +2016-05-25 08:15:00,,,71.1667 +2016-05-25 08:25:58,3121.0,-10.9347, +2016-05-25 08:30:00,,,70.3619 +2016-05-25 08:40:53,3121.0,-10.9665, +2016-05-25 08:45:00,,,71.5791 +2016-05-25 08:55:48,3122.0,-10.9347, +2016-05-25 09:00:00,,,76.1878 +2016-05-25 09:10:43,3121.0,-10.9347, +2016-05-25 09:15:00,,,70.7589 +2016-05-25 09:25:38,3121.0,-10.9347, +2016-05-25 09:30:00,,,72.2033 +2016-05-25 09:40:33,3122.0,-10.9347, +2016-05-25 09:45:00,,,71.5791 +2016-05-25 09:55:28,3122.0,-10.9039, +2016-05-25 10:00:00,,,73.27 +2016-05-25 10:10:23,3122.0,-10.9347, +2016-05-25 10:15:00,,,73.2635 +2016-05-25 10:25:18,3123.0,-10.9357, +2016-05-25 10:30:00,,,23.8256 +2016-05-25 10:40:13,3123.0,-10.9347, +2016-05-25 10:45:00,,,23.736 +2016-05-25 10:55:08,3123.0,-10.9357, +2016-05-25 11:00:00,,,23.8684 +2016-05-25 11:10:03,3124.0,-10.9039, +2016-05-25 11:15:00,,,23.9585 +2016-05-25 11:24:58,3125.0,-10.9039, +2016-05-25 11:30:00,,,24.2197 +2016-05-25 11:39:53,3124.0,-10.9039, +2016-05-25 11:45:00,,,23.8642 +2016-05-25 11:54:49,3127.0,-10.9039, +2016-05-25 12:00:00,,,24.1785 +2016-05-25 12:09:44,3127.0,-10.9039, +2016-05-25 12:15:00,,,24.2631 +2016-05-25 12:24:39,3127.0,-10.9039, +2016-05-25 12:30:00,,,24.2674 +2016-05-25 12:39:34,3127.0,-10.9039, +2016-05-25 12:45:00,,,24.224 +2016-05-25 12:54:29,3127.0,-10.9039, +2016-05-25 13:00:00,,,24.0015 +2016-05-25 13:09:24,3128.0,-10.9048, +2016-05-25 13:15:00,,,24.0856 +2016-05-25 13:24:20,3128.0,-10.9048, +2016-05-25 13:30:00,,,24.2631 +2016-05-25 13:39:15,3129.0,-10.8732, +2016-05-25 13:45:00,,,24.2652 +2016-05-25 13:54:10,3130.0,-10.9048, +2016-05-25 14:00:00,,,24.3152 +2016-05-25 14:09:05,3131.0,-10.8732, +2016-05-25 14:15:00,,,24.4002 +2016-05-25 14:24:01,3132.0,-10.8732, +2016-05-25 14:30:00,,,24.4877 +2016-05-25 14:38:56,3133.0,-10.8416, +2016-05-25 14:45:00,,,24.4899 +2016-05-25 14:53:51,3134.0,-10.8732, +2016-05-25 15:00:00,,,24.4418 +2016-05-25 15:08:46,3135.0,-10.8416, +2016-05-25 15:15:00,,,24.7142 +2016-05-25 15:23:42,3136.0,-10.8416, +2016-05-25 15:30:00,,,24.7606 +2016-05-25 15:38:37,3136.0,-10.8732, +2016-05-25 15:45:00,,,24.5337 +2016-05-25 15:53:32,3136.0,-10.8416, +2016-05-25 16:00:00,,,24.7142 +2016-05-25 16:08:27,3136.0,-10.8416, +2016-05-25 16:15:00,,,24.4921 +2016-05-25 16:23:23,3136.0,-10.8732, +2016-05-25 16:30:00,,,24.4024 +2016-05-25 16:38:18,3136.0,-10.8732, +2016-05-25 16:45:00,,,24.4877 +2016-05-25 16:53:13,3135.0,-10.8722, +2016-05-25 17:00:00,,,24.0856 +2016-05-25 17:08:08,3135.0,-10.8416, +2016-05-25 17:15:00,,,24.2197 +2016-05-25 17:23:03,3134.0,-10.8732, +2016-05-25 17:30:00,,,23.8663 +2016-05-25 17:37:58,3132.0,-10.9048, +2016-05-25 17:45:00,,,74.1224 +2016-05-25 17:52:53,3132.0,-10.8732, +2016-05-25 18:00:00,,,74.7984 +2016-05-25 18:07:49,3132.0,-10.8732, +2016-05-25 18:15:00,,,74.5695 +2016-05-25 18:22:44,3131.0,-10.8722, +2016-05-25 18:30:00,,,72.6017 +2016-05-25 18:37:39,3132.0,-10.9039, +2016-05-25 18:45:00,,,74.342 +2016-05-25 18:52:34,3132.0,-10.8732, +2016-05-25 19:00:00,,,75.48 +2016-05-25 19:07:29,3130.0,-10.9039, +2016-05-25 19:15:00,,,73.2505 +2016-05-25 19:22:24,3130.0,-10.8722, +2016-05-25 19:30:00,,,72.3923 +2016-05-25 19:37:19,3129.0,-10.9039, +2016-05-25 19:45:00,,,71.977 +2016-05-25 19:52:14,3129.0,-10.9039, +2016-05-25 20:00:00,,,71.56 +2016-05-25 20:07:10,3128.0,-10.9048, +2016-05-25 20:15:00,,,72.3923 +2016-05-25 20:22:05,3128.0,-10.9039, +2016-05-25 20:30:00,,,73.0373 +2016-05-25 20:37:00,3128.0,-10.9039, +2016-05-25 20:45:00,,,72.1776 +2016-05-25 20:51:55,3128.0,-10.9039, +2016-05-25 21:00:00,,,72.8512 +2016-05-25 21:06:50,3128.0,-10.8722, +2016-05-25 21:15:00,,,73.2505 +2016-05-25 21:21:45,3128.0,-10.9039, +2016-05-25 21:30:00,,,73.4714 +2016-05-25 21:36:40,3127.0,-10.9039, +2016-05-25 21:45:00,,,73.0373 +2016-05-25 21:51:36,3127.0,-10.9039, +2016-05-25 22:00:00,,,23.3005 +2016-05-25 22:06:31,3127.0,-10.9357, +2016-05-25 22:15:00,,,71.1478 +2016-05-25 22:21:26,3125.0,-10.9039, +2016-05-25 22:30:00,,,71.1478 +2016-05-25 22:36:21,3124.0,-10.9357, +2016-05-25 22:45:00,,,71.56 +2016-05-25 22:51:16,3124.0,-10.9029, +2016-05-25 23:00:00,,,68.0204 +2016-05-25 23:06:12,3123.0,-10.9347, +2016-05-25 23:15:00,,,69.9382 +2016-05-25 23:21:07,3123.0,-10.9347, +2016-05-25 23:30:00,,,70.7464 +2016-05-25 23:36:02,3123.0,-10.9357, +2016-05-25 23:45:00,,,70.5411 +2016-05-25 23:50:57,3123.0,-10.9029, +2016-05-26 00:00:00,,,69.5501 +2016-05-26 00:05:52,3123.0,-10.9029, +2016-05-26 00:15:00,,,67.1019 +2016-05-26 00:20:47,3122.0,-10.9665, +2016-05-26 00:30:00,,,67.2766 +2016-05-26 00:35:42,3122.0,-10.9029, +2016-05-26 00:45:00,,,66.377 +2016-05-26 00:50:37,3121.0,-10.9347, +2016-05-26 01:00:00,,,66.1893 +2016-05-26 01:05:32,3121.0,-10.9347, +2016-05-26 01:15:00,,,67.6465 +2016-05-26 01:20:27,3121.0,-10.9347, +2016-05-26 01:30:00,,,67.2706 +2016-05-26 01:35:22,3121.0,-10.9347, +2016-05-26 01:45:00,,,64.8016 +2016-05-26 01:50:17,3120.0,-10.9347, +2016-05-26 02:00:00,,,66.0142 +2016-05-26 02:05:12,3121.0,-10.9347, +2016-05-26 02:15:00,,,66.1952 +2016-05-26 02:20:07,3121.0,-10.9029, +2016-05-26 02:30:00,,,64.128 +2016-05-26 02:35:02,3120.0,-10.9347, +2016-05-26 02:45:00,,,63.7876 +2016-05-26 02:49:57,3118.0,-10.9675, +2016-05-26 03:00:00,,,63.4562 +2016-05-26 03:04:52,3118.0,-10.9347, +2016-05-26 03:15:00,,,63.4562 +2016-05-26 03:19:48,3118.0,-10.9347, +2016-05-26 03:30:00,,,62.8138 +2016-05-26 03:34:43,3118.0,-10.9347, +2016-05-26 03:45:00,,,63.7876 +2016-05-26 03:49:38,3118.0,-10.9347, +2016-05-26 04:00:00,,,62.6496 +2016-05-26 04:04:33,3117.0,-10.9347, +2016-05-26 04:15:00,,,62.6496 +2016-05-26 04:19:28,3117.0,-10.9347, +2016-05-26 04:30:00,,,62.1724 +2016-05-26 04:34:23,3117.0,-10.9347, +2016-05-26 04:45:00,,,60.4712 +2016-05-26 04:49:18,3115.0,-10.9347, +2016-05-26 05:00:00,,,61.2324 +2016-05-26 05:04:13,3115.0,-10.9347, +2016-05-26 05:15:00,,,62.3289 +2016-05-26 05:19:08,3116.0,-10.9347, +2016-05-26 05:30:00,,,61.6964 +2016-05-26 05:34:03,3115.0,-10.9347, +2016-05-26 05:45:00,,,61.081 +2016-05-26 05:48:58,3115.0,-10.9665, +2016-05-26 06:00:00,,,61.081 +2016-05-26 06:03:53,3115.0,-10.9347, +2016-05-26 06:15:00,,,61.2324 +2016-05-26 06:18:48,3115.0,-10.9347, +2016-05-26 06:30:00,,,60.6253 +2016-05-26 06:33:43,3114.0,-10.9347, +2016-05-26 06:45:00,,,60.4819 +2016-05-26 06:48:38,3114.0,-10.9347, +2016-05-26 07:00:00,,,62.9677 +2016-05-26 07:03:33,3115.0,-10.9347, +2016-05-26 07:15:00,,,62.6496 +2016-05-26 07:18:28,3115.0,-10.9347, +2016-05-26 07:30:00,,,62.4916 +2016-05-26 07:33:23,3116.0,-10.9347, +2016-05-26 07:45:00,,,63.1335 +2016-05-26 07:48:18,3116.0,-10.9039, +2016-05-26 08:00:00,,,64.1166 +2016-05-26 08:03:13,3118.0,-10.9039, +2016-05-26 08:15:00,,,63.1279 +2016-05-26 08:18:09,3118.0,-10.9039, +2016-05-26 08:30:00,,,62.644 +2016-05-26 08:33:04,3119.0,-10.9039, +2016-05-26 08:45:00,,,64.4603 +2016-05-26 08:47:59,3121.0,-10.8722, +2016-05-26 09:00:00,,,63.2944 +2016-05-26 09:02:54,3122.0,-10.8722, +2016-05-26 09:15:00,,,65.84 +2016-05-26 09:17:50,3124.0,-10.8416, +2016-05-26 09:30:00,,,63.6243 +2016-05-26 09:32:45,3123.0,-10.8416, +2016-05-26 09:45:00,,,63.7876 +2016-05-26 09:47:41,3124.0,-10.8416, +2016-05-26 10:00:00,,,64.9706 +2016-05-26 10:02:36,3127.0,-10.811, +2016-05-26 10:15:00,,,63.3001 +2016-05-26 10:17:31,3127.0,-10.81, +2016-05-26 10:30:00,,,63.4562 +2016-05-26 10:32:27,3128.0,-10.81, +2016-05-26 10:45:00,,,63.4618 +2016-05-26 10:47:22,3130.0,-10.811, +2016-05-26 11:00:00,,, +2016-05-26 11:02:18,3131.0,-10.8416, +2016-05-26 11:15:00,,,63.7876 +2016-05-26 11:17:13,3133.0,-10.7805, +2016-05-26 11:30:00,,,64.1223 +2016-05-26 11:32:09,3134.0,-10.7805, +2016-05-26 11:45:00,,,60.9302 +2016-05-26 11:47:04,3135.0,-10.7805, +2016-05-26 12:00:00,,,62.6496 +2016-05-26 12:02:00,3136.0,-10.7491, +2016-05-26 12:15:00,,,62.3289 +2016-05-26 12:16:56,3138.0,-10.7501, +2016-05-26 12:30:00,,,57.1835 +2016-05-26 12:31:51,3135.0,-10.7491, +2016-05-26 12:45:00,,,57.7303 +2016-05-26 12:46:47,3136.0,-10.7501, +2016-05-26 13:00:00,,,56.3728 +2016-05-26 13:01:42,3136.0,-10.7188, +2016-05-26 13:15:00,,,56.2471 +2016-05-26 13:16:38,3136.0,-10.7188, +2016-05-26 13:30:00,,,57.0495 +2016-05-26 13:31:33,3137.0,-10.7188, +2016-05-26 13:45:00,,,55.8482 +2016-05-26 13:46:29,3137.0,-10.7188, +2016-05-26 14:00:00,,,55.2005 +2016-05-26 14:01:25,3137.0,-10.7188, +2016-05-26 14:15:00,,,54.8191 +2016-05-26 14:16:20,3137.0,-10.7501, +2016-05-26 14:30:00,,,55.4689 +2016-05-26 14:31:16,3138.0,-10.812, +2016-05-26 14:45:00,,,56.7832 +2016-05-26 14:46:11,3142.0,-10.7188, +2016-05-26 15:00:00,,,56.6458 +2016-05-26 15:01:07,3143.0,-10.7188, +2016-05-26 15:15:00,,,26.9002 +2016-05-26 15:16:02,3176.0,-10.181, +2016-05-26 15:30:00,,,26.9457 +2016-05-26 15:30:58,3166.0,-10.5682, +2016-05-26 15:45:00,,,27.186 +2016-05-26 15:46:05,3166.0,-10.5682, +2016-05-26 16:00:00,,,26.0138 +2016-05-26 16:01:12,3160.0,-10.6885, +2016-05-26 16:15:00,,,26.7905 +2016-05-26 16:16:27,3163.0,-10.6282, +2016-05-26 16:30:00,,,26.5465 +2016-05-26 16:31:22,3162.0,-10.6895, +2016-05-26 16:45:00,,,26.5512 +2016-05-26 16:46:29,3161.0,-10.6593, +2016-05-26 17:00:00,,,26.7929 +2016-05-26 17:02:42,3162.0,-10.6282, +2016-05-26 17:15:00,,,27.0848 +2016-05-26 17:17:38,3162.0,-10.6282, +2016-05-26 17:30:00,,,27.1354 +2016-05-26 17:32:33,3162.0,-10.6292, +2016-05-26 17:45:00,,,25.6894 +2016-05-26 17:47:29,3156.0,-10.7198, +2016-05-26 18:00:00,,,26.067 +2016-05-26 18:02:24,3156.0,-10.6885, +2016-05-26 18:15:00,,,25.6414 +2016-05-26 18:17:20,3155.0,-10.7188, +2016-05-26 18:30:00,,,25.5025 +2016-05-26 18:32:15,3152.0,-10.7188, +2016-05-26 18:45:00,,,25.22 +2016-05-26 18:47:11,3152.0,-10.7501, +2016-05-26 19:00:00,,,25.2672 +2016-05-26 19:02:06,3151.0,-10.7501, +2016-05-26 19:15:00,,,25.3123 +2016-05-26 19:17:02,3150.0,-10.7501, +2016-05-26 19:30:00,,,25.5479 +2016-05-26 19:31:57,3150.0,-10.7188, +2016-05-26 19:45:00,,,25.265 +2016-05-26 19:46:53,3149.0,-10.7501, +2016-05-26 20:00:00,,,25.5912 +2016-05-26 20:01:48,3149.0,-10.7188, +2016-05-26 20:15:00,,,24.9893 +2016-05-26 20:16:44,3146.0,-10.7501, +2016-05-26 20:30:00,,,27.092 +2016-05-26 20:31:39,3152.0,-10.5982, +2016-05-26 20:45:00,,,27.1884 +2016-05-26 20:46:35,3152.0,-10.5673, +2016-05-26 21:00:00,,,27.1884 +2016-05-26 21:01:30,3154.0,-10.5374, +2016-05-26 21:15:00,,,27.0464 +2016-05-26 21:16:26,3153.0,-10.5066, +2016-05-26 21:30:00,,,26.8859 +2016-05-26 21:31:21,3146.0,-10.7179, +2016-05-26 21:45:00,,,26.4499 +2016-05-26 21:46:17,3143.0,-10.7179, +2016-05-26 22:00:00,,,27.186 +2016-05-26 22:01:12,3146.0,-10.6574, +2016-05-26 22:15:00,,,25.1279 +2016-05-26 22:16:08,3138.0,-10.811, +2016-05-26 22:30:00,,,25.6825 +2016-05-26 22:31:03,3138.0,-10.811, +2016-05-26 22:45:00,,,26.3537 +2016-05-26 22:45:58,3141.0,-10.7491, +2016-05-26 23:00:00,,,25.6894 +2016-05-26 23:00:54,3138.0,-10.7805, +2016-05-26 23:15:00,,,25.1279 +2016-05-26 23:15:49,3136.0,-10.811, +2016-05-26 23:30:00,,,23.6042 +2016-05-26 23:30:44,3131.0,-10.8416, +2016-05-26 23:45:00,,,23.6042 +2016-05-26 23:45:47,3130.0,-10.8416, +2016-05-27 00:00:00,,,24.4877 +2016-05-27 00:00:42,3132.0,-10.811, +2016-05-27 00:15:00,,,24.8071 +2016-05-27 00:15:37,3134.0,-10.811, +2016-05-27 00:30:00,,,24.1309 +2016-05-27 00:30:33,3130.0,-10.8416, +2016-05-27 00:45:00,,,23.8663 +2016-05-27 00:45:28,3129.0,-10.8416, +2016-05-27 01:00:00,,,23.7807 +2016-05-27 01:00:30,3129.0,-10.8416, +2016-05-27 01:15:00,,,27.1836 +2016-05-27 01:15:26,3139.0,-10.6885, +2016-05-27 01:30:00,,,27.1836 +2016-05-27 01:30:21,3138.0,-10.7198, +2016-05-27 01:45:00,,,27.0368 +2016-05-27 01:45:16,3138.0,-10.7188, +2016-05-27 02:00:00,,,26.5441 +2016-05-27 02:00:11,3136.0,-10.7491, +2016-05-27 02:15:00,,,24.582 +2016-05-27 02:15:06,3129.0,-10.8406, +2016-05-27 02:30:00,,,24.4921 +2016-05-27 02:30:01,3130.0,-10.8406, +2016-05-27 02:44:56,3131.0,-10.8416, +2016-05-27 02:45:00,,,25.4525 +2016-05-27 02:59:51,3135.0,-10.7482, +2016-05-27 03:00:00,,,26.5961 +2016-05-27 03:14:47,3131.0,-10.81, +2016-05-27 03:15:00,,,25.9168 +2016-05-27 03:29:42,3128.0,-10.8406, +2016-05-27 03:30:00,,,25.1324 +2016-05-27 03:44:37,3133.0,-10.7805, +2016-05-27 03:45:00,,,26.8286 +2016-05-27 03:59:32,3132.0,-10.81, +2016-05-27 04:00:00,,,26.1599 +2016-05-27 04:14:27,3134.0,-10.7491, +2016-05-27 04:15:00,,,26.9361 +2016-05-27 04:29:23,3128.0,-10.8406, +2016-05-27 04:30:00,,,25.4593 +2016-05-27 04:44:18,3132.0,-10.7796, +2016-05-27 04:45:00,,,26.5937 +2016-05-27 04:59:13,3133.0,-10.812, +2016-05-27 05:00:00,,,26.8382 +2016-05-27 05:14:08,3134.0,-10.8416, +2016-05-27 05:15:00,,,26.9888 +2016-05-27 05:29:04,3132.0,-10.811, +2016-05-27 05:30:00,,,26.6386 +2016-05-27 05:43:59,3129.0,-10.8406, +2016-05-27 05:45:00,,,25.3101 +2016-05-27 05:58:54,3128.0,-10.8406, +2016-05-27 06:00:00,,,25.362 +2016-05-27 06:13:49,3127.0,-10.8406, +2016-05-27 06:15:00,,,24.7164 +2016-05-27 06:28:45,3117.0,-10.9328, +2016-05-27 06:30:00,,,62.3344 +2016-05-27 06:43:40,3118.0,-10.9029, +2016-05-27 06:45:00,,,61.8617 +2016-05-27 06:58:35,3118.0,-10.9029, +2016-05-27 07:00:00,,,61.3955 +2016-05-27 07:13:30,3118.0,-10.8722, +2016-05-27 07:15:00,,,60.4712 +2016-05-27 07:28:26,3119.0,-10.8406, +2016-05-27 07:30:00,,,60.6253 +2016-05-27 07:43:21,3121.0,-10.8722, +2016-05-27 07:45:00,,,62.6496 +2016-05-27 07:58:16,3123.0,-10.8406, +2016-05-27 08:00:00,,,65.3111 +2016-05-27 08:13:11,3123.0,-10.8722, +2016-05-27 08:15:00,,,63.6243 +2016-05-27 08:28:07,3127.0,-10.8091, +2016-05-27 08:30:00,,,69.9445 +2016-05-27 08:43:02,3128.0,-10.81, +2016-05-27 08:45:00,,,72.6017 +2016-05-27 08:57:57,3131.0,-10.8416, +2016-05-27 09:00:00,,,23.2943 +2016-05-27 09:12:53,3130.0,-10.81, +2016-05-27 09:15:00,,,23.2585 +2016-05-27 09:27:48,3134.0,-10.7805, +2016-05-27 09:30:00,,,24.2197 +2016-05-27 09:42:44,3135.0,-10.7805, +2016-05-27 09:45:00,,,24.4921 +2016-05-27 09:57:39,3140.0,-10.6885, +2016-05-27 10:00:00,,,26.3537 +2016-05-27 10:12:35,3136.0,-10.7805, +2016-05-27 10:15:00,,,24.5359 +2016-05-27 10:27:30,3139.0,-10.7501, +2016-05-27 10:30:00,,,25.6825 +2016-05-27 10:42:25,3138.0,-10.7491, +2016-05-27 10:45:00,,,24.8093 +2016-05-27 10:57:21,3138.0,-10.7491, +2016-05-27 11:00:00,,,24.9893 +2016-05-27 11:12:16,3143.0,-10.6885, +2016-05-27 11:15:00,,,26.4476 +2016-05-27 11:27:12,3144.0,-10.6876, +2016-05-27 11:30:00,,,26.3584 +2016-05-27 11:42:08,3145.0,-10.6885, +2016-05-27 11:45:00,,,26.2135 +2016-05-27 11:57:03,3144.0,-10.6876, +2016-05-27 12:00:00,,,25.9237 +2016-05-27 12:11:59,3150.0,-10.5973, +2016-05-27 12:15:00,,,26.9912 +2016-05-27 12:26:54,3150.0,-10.5973, +2016-05-27 12:30:00,,,27.1426 +2016-05-27 12:41:50,3151.0,-10.5664, +2016-05-27 12:45:00,,,27.1836 +2016-05-27 12:56:45,3152.0,-10.5673, +2016-05-27 13:00:00,,,27.2852 +2016-05-27 13:11:41,3145.0,-10.7179, +2016-05-27 13:15:00,,,24.8558 +2016-05-27 13:26:36,3143.0,-10.7491, +2016-05-27 13:30:00,,,23.6105 +2016-05-27 13:41:32,3141.0,-10.7491, +2016-05-27 13:45:00,,,69.5501 +2016-05-27 13:56:27,3142.0,-10.7179, +2016-05-27 14:00:00,,,70.1339 +2016-05-27 14:11:23,3145.0,-10.6876, +2016-05-27 14:15:00,,,77.35600000000002 +2016-05-27 14:26:19,3145.0,-10.6876, +2016-05-27 14:30:00,,,23.6042 +2016-05-27 14:41:14,3148.0,-10.6574, +2016-05-27 14:45:00,,,24.3109 +2016-05-27 14:56:10,3148.0,-10.6885, +2016-05-27 15:00:00,,,23.7465 +2016-05-27 15:11:06,3149.0,-10.6885, +2016-05-27 15:15:00,,,23.9155 +2016-05-27 15:26:01,3148.0,-10.6885, +2016-05-27 15:30:00,,,23.5701 +2016-05-27 15:40:57,3146.0,-10.7198, +2016-05-27 15:45:00,,,72.184 +2016-05-27 15:55:53,3148.0,-10.6885, +2016-05-27 16:00:00,,,23.4772 +2016-05-27 16:10:48,3149.0,-10.6885, +2016-05-27 16:15:00,,,23.6997 +2016-05-27 16:25:44,3150.0,-10.6885, +2016-05-27 16:30:00,,,23.7465 +2016-05-27 16:40:39,3151.0,-10.6574, +2016-05-27 16:45:00,,,24.3152 +2016-05-27 16:55:35,3150.0,-10.6574, +2016-05-27 17:00:00,,,24.0962 +2016-05-27 17:10:31,3152.0,-10.6273, +2016-05-27 17:15:00,,,24.7252 +2016-05-27 17:25:26,3152.0,-10.6885, +2016-05-27 17:30:00,,,24.4067 +2016-05-27 17:40:22,3151.0,-10.6574, +2016-05-27 17:45:00,,,24.6369 +2016-05-27 17:55:17,3152.0,-10.6273, +2016-05-27 18:00:00,,,25.507 +2016-05-27 18:10:13,3150.0,-10.6885, +2016-05-27 18:15:00,,,24.4176 +2016-05-27 18:25:08,3149.0,-10.6885, +2016-05-27 18:30:00,,,24.3674 +2016-05-27 18:40:04,3150.0,-10.6264, +2016-05-27 18:45:00,,,24.9069 +2016-05-27 18:54:59,3150.0,-10.6264, +2016-05-27 19:00:00,,,25.2739 +2016-05-27 19:09:55,3150.0,-10.6264, +2016-05-27 19:15:00,,,25.2312 +2016-05-27 19:24:50,3150.0,-10.6264, +2016-05-27 19:30:00,,,25.371 +2016-05-27 19:39:46,3150.0,-10.6264, +2016-05-27 19:45:00,,,25.4661 +2016-05-27 19:54:41,3147.0,-10.6574, +2016-05-27 20:00:00,,,25.1324 +2016-05-27 20:09:37,3143.0,-10.6876, +2016-05-27 20:15:00,,,23.879 +2016-05-27 20:24:33,3141.0,-10.7188, +2016-05-27 20:30:00,,,23.357 +2016-05-27 20:39:28,3140.0,-10.6876, +2016-05-27 20:45:00,,,23.3991 +2016-05-27 20:54:24,3138.0,-10.7179, +2016-05-27 21:00:00,,,23.1831 +2016-05-27 21:09:19,3136.0,-10.7179, +2016-05-27 21:15:00,,,70.9591 +2016-05-27 21:24:15,3135.0,-10.7491, +2016-05-27 21:30:00,,,68.9879 +2016-05-27 21:39:10,3133.0,-10.7491, +2016-05-27 21:45:00,,,67.8541 +2016-05-27 21:54:06,3131.0,-10.7491, +2016-05-27 22:00:00,,,65.8517 +2016-05-27 22:09:02,3130.0,-10.7482, +2016-05-27 22:15:00,,,64.9936 +2016-05-27 22:23:57,3129.0,-10.7491, +2016-05-27 22:30:00,,,64.6448 +2016-05-27 22:38:53,3128.0,-10.7482, +2016-05-27 22:45:00,,,63.3113 +2016-05-27 22:53:48,3127.0,-10.7796, +2016-05-27 23:00:00,,,61.7129 +2016-05-27 23:08:44,3127.0,-10.7482, +2016-05-27 23:15:00,,,61.8727 +2016-05-27 23:23:39,3127.0,-10.7796, +2016-05-27 23:30:00,,,63.3113 +2016-05-27 23:38:35,3124.0,-10.7786, +2016-05-27 23:45:00,,,60.3392 +2016-05-27 23:53:30,3123.0,-10.7796, +2016-05-28 00:00:00,,,60.3392 +2016-05-28 00:08:26,3122.0,-10.81, +2016-05-28 00:15:00,,,58.7317 +2016-05-28 00:23:21,3122.0,-10.81, +2016-05-28 00:30:00,,,58.0251 +2016-05-28 00:38:17,3121.0,-10.81, +2016-05-28 00:45:00,,,56.6559 +2016-05-28 00:53:12,3120.0,-10.81, +2016-05-28 01:00:00,,,56.1268 +2016-05-28 01:08:08,3119.0,-10.81, +2016-05-28 01:15:00,,,55.6014 +2016-05-28 01:23:03,3118.0,-10.81, +2016-05-28 01:30:00,,,55.3467 +2016-05-28 01:37:58,3117.0,-10.81, +2016-05-28 01:45:00,,,54.7091 +2016-05-28 01:52:54,3117.0,-10.7491, +2016-05-28 02:00:00,,,31.4207 +2016-05-28 02:07:49,3115.0,-10.7491, +2016-05-28 02:15:00,,,31.6497 +2016-05-28 02:22:44,3115.0,-10.7805, +2016-05-28 02:30:00,,,31.6553 +2016-05-28 02:37:39,3114.0,-10.812, +2016-05-28 02:45:00,,,31.542 +2016-05-28 02:52:34,3114.0,-10.7796, +2016-05-28 03:00:00,,,31.6581 +2016-05-28 03:07:30,3114.0,-10.811, +2016-05-28 03:15:00,,,31.6609 +2016-05-28 03:22:25,3115.0,-10.7805, +2016-05-28 03:30:00,,,31.6042 +2016-05-28 03:37:20,3114.0,-10.7805, +2016-05-28 03:45:00,,,31.4855 +2016-05-28 03:52:15,3113.0,-10.811, +2016-05-28 04:00:00,,,31.6042 +2016-05-28 04:07:10,3114.0,-10.7805, +2016-05-28 04:15:00,,,31.6609 +2016-05-28 04:22:05,3114.0,-10.812, +2016-05-28 04:30:00,,,31.6609 +2016-05-28 04:37:01,3114.0,-10.7805, +2016-05-28 04:45:00,,,31.6609 +2016-05-28 04:51:56,3114.0,-10.7805, +2016-05-28 05:00:00,,,31.6609 +2016-05-28 05:06:51,3114.0,-10.7805, +2016-05-28 05:15:00,,,31.6042 +2016-05-28 05:21:46,3114.0,-10.7805, +2016-05-28 05:30:00,,,31.6609 +2016-05-28 05:36:41,3114.0,-10.7805, +2016-05-28 05:45:00,,,31.7178 +2016-05-28 05:51:37,3114.0,-10.812, +2016-05-28 06:00:00,,,31.7747 +2016-05-28 06:06:32,3114.0,-10.7805, +2016-05-28 06:15:00,,,31.7178 +2016-05-28 06:21:27,3115.0,-10.7491, +2016-05-28 06:30:00,,,31.7234 +2016-05-28 06:36:22,3115.0,-10.7805, +2016-05-28 06:45:00,,,31.7178 +2016-05-28 06:51:18,3115.0,-10.7805, +2016-05-28 07:00:00,,,31.4911 +2016-05-28 07:06:13,3115.0,-10.7805, +2016-05-28 07:15:00,,,31.542 +2016-05-28 07:21:09,3116.0,-10.7491, +2016-05-28 07:30:00,,,31.7206 +2016-05-28 07:36:04,3116.0,-10.7491, +2016-05-28 07:45:00,,,31.7747 +2016-05-28 07:50:59,3116.0,-10.7491, +2016-05-28 08:00:00,,,31.6553 +2016-05-28 08:05:55,3117.0,-10.7491, +2016-05-28 08:15:00,,,7.9954 +2016-05-28 08:20:50,3118.0,-10.7491, +2016-05-28 08:30:00,,,31.7663 +2016-05-28 08:35:46,3119.0,-10.7501, +2016-05-28 08:45:00,,,31.7776 +2016-05-28 08:50:42,3120.0,-10.7501, +2016-05-28 09:00:00,,,31.5448 +2016-05-28 09:05:37,3121.0,-10.7188, +2016-05-28 09:15:00,,,31.0266 +2016-05-28 09:20:33,3121.0,-10.7188, +2016-05-28 09:30:00,,,31.7776 +2016-05-28 09:35:28,3122.0,-10.7188, +2016-05-28 09:45:00,,,31.2551 +2016-05-28 09:50:24,3123.0,-10.7198, +2016-05-28 10:00:00,,,-0.1828 +2016-05-28 10:05:19,3125.0,-10.6885, +2016-05-28 10:15:00,,,31.6441 +2016-05-28 10:20:15,3126.0,-10.7198, +2016-05-28 10:30:00,,,31.7719 +2016-05-28 10:35:11,3128.0,-10.6885, +2016-05-28 10:45:00,,,31.5986 +2016-05-28 10:50:06,3129.0,-10.6885, +2016-05-28 11:00:00,,,31.7776 +2016-05-28 11:05:02,3130.0,-10.6885, +2016-05-28 11:15:00,,,31.7178 +2016-05-28 11:19:58,3130.0,-10.6584, +2016-05-28 11:30:00,,,31.3701 +2016-05-28 11:34:53,3132.0,-10.6584, +2016-05-28 11:45:00,,,31.0239 +2016-05-28 11:49:49,3133.0,-10.6282, +2016-05-28 12:00:00,,,31.7776 +2016-05-28 12:04:45,3134.0,-10.6282, +2016-05-28 12:15:00,,,29.1493 +2016-05-28 12:19:40,3134.0,-10.6584, +2016-05-28 12:30:00,,,31.6637 +2016-05-28 12:34:36,3135.0,-10.6282, +2016-05-28 12:45:00,,,31.7206 +2016-05-28 12:49:32,3135.0,-10.6282, +2016-05-28 13:00:00,,,31.7804 +2016-05-28 13:04:27,3136.0,-10.5973, +2016-05-28 13:15:00,,,31.6637 +2016-05-28 13:19:23,3137.0,-10.5982, +2016-05-28 13:30:00,,,31.4291 +2016-05-28 13:34:19,3138.0,-10.5982, +2016-05-28 13:45:00,,,31.8975 +2016-05-28 13:49:14,3138.0,-10.5982, +2016-05-28 14:00:00,,,31.7804 +2016-05-28 14:04:10,3138.0,-10.5982, +2016-05-28 14:15:00,,,31.7206 +2016-05-28 14:19:05,3138.0,-10.5982, +2016-05-28 14:30:00,,,31.7206 +2016-05-28 14:34:01,3138.0,-10.5982, +2016-05-28 14:45:00,,,31.7234 +2016-05-28 14:48:57,3138.0,-10.5982, +2016-05-28 15:00:00,,,26.408 +2016-05-28 15:03:52,3138.0,-10.5982, +2016-05-28 15:15:00,,,31.7804 +2016-05-28 15:18:48,3139.0,-10.5982, +2016-05-28 15:30:00,,,28.8374 +2016-05-28 15:33:43,3139.0,-10.5982, +2016-05-28 15:45:00,,,26.502 +2016-05-28 15:48:39,3139.0,-10.5982, +2016-05-28 16:00:00,,,25.2909 +2016-05-28 16:03:35,3140.0,-10.5982, +2016-05-28 16:15:00,,,25.2392 +2016-05-28 16:18:30,3140.0,-10.5982, +2016-05-28 16:30:00,,,27.4188 +2016-05-28 16:33:26,3141.0,-10.5982, +2016-05-28 16:45:00,,,31.4375 +2016-05-28 16:48:22,3139.0,-10.5682, +2016-05-28 17:00:00,,,26.121 +2016-05-28 17:03:18,3139.0,-10.5682, +2016-05-28 17:15:00,,,26.691 +2016-05-28 17:18:13,3138.0,-10.5682, +2016-05-28 17:30:00,,,27.4188 +2016-05-28 17:33:09,3138.0,-10.5682, +2016-05-28 17:45:00,,,25.1046 +2016-05-28 17:48:05,3138.0,-10.5973, +2016-05-28 18:00:00,,,26.4973 +2016-05-28 18:03:00,3138.0,-10.5973, +2016-05-28 18:15:00,,,27.5188 +2016-05-28 18:17:56,3136.0,-10.6282, +2016-05-28 18:30:00,,,24.2133 +2016-05-28 18:32:52,3136.0,-10.5673, +2016-05-28 18:45:00,,,23.2641 +2016-05-28 18:47:47,3135.0,-11.1536, +2016-05-28 19:00:00,,,24.4329 +2016-05-28 19:02:43,3135.0,-10.5982, +2016-05-28 19:15:00,,,6.6579 +2016-05-28 19:17:39,3135.0,-10.6282, +2016-05-28 19:30:00,,,22.4931 +2016-05-28 19:32:34,3134.0,-10.5982, +2016-05-28 19:45:00,,,7.619 +2016-05-28 19:47:30,3132.0,-10.5982, +2016-05-28 20:00:00,,,21.597 +2016-05-28 20:02:26,3132.0,-10.6292, +2016-05-28 20:15:00,,,0.5036 +2016-05-28 20:17:21,3131.0,-11.1212, +2016-05-28 20:30:00,,,-4.9515 +2016-05-28 20:32:17,3130.0,-10.5973, +2016-05-28 20:45:00,,,-5.4281 +2016-05-28 20:47:12,3129.0,-10.5973, +2016-05-28 21:00:00,,,-4.1132 +2016-05-28 21:02:08,3128.0,-10.6282, +2016-05-28 21:15:00,,,-3.5572 +2016-05-28 21:17:03,3127.0,-11.0889, +2016-05-28 21:30:00,,,-5.0408 +2016-05-28 21:31:59,3127.0,-11.0256, +2016-05-28 21:45:00,,,17.0977 +2016-05-28 21:46:54,3124.0,-11.0577, +2016-05-28 22:00:00,,,-4.7832 +2016-05-28 22:01:50,3124.0,-10.6282, +2016-05-28 22:15:00,,,-5.1743 +2016-05-28 22:16:46,3123.0,-11.0577, +2016-05-28 22:30:00,,,-5.1752 +2016-05-28 22:31:41,3122.0,-11.0577, +2016-05-28 22:45:00,,,-5.1752 +2016-05-28 22:46:37,3123.0,-11.0577, +2016-05-28 23:00:00,,,-5.0883 +2016-05-28 23:01:32,3122.0,-11.0577, +2016-05-28 23:15:00,,,-5.0668 +2016-05-28 23:16:28,3122.0,-11.0577, +2016-05-28 23:30:00,,,-5.1097 +2016-05-28 23:31:23,3122.0,-11.0266, +2016-05-28 23:45:00,,,-5.0448 +2016-05-28 23:46:19,3121.0,-11.0577, +2016-05-29 00:00:00,,,-5.1962 +2016-05-29 00:01:14,3121.0,-11.0577, +2016-05-29 00:15:00,,,-5.2604 +2016-05-29 00:16:10,3121.0,-11.0577, +2016-05-29 00:30:00,,,-5.2604 +2016-05-29 00:31:06,3119.0,-11.0577, +2016-05-29 00:45:00,,,-5.1532 +2016-05-29 00:46:01,3118.0,-11.0256, +2016-05-29 01:00:00,,,-5.1308 +2016-05-29 01:01:00,3118.0,-11.0266, +2016-05-29 01:15:00,,,-5.0892 +2016-05-29 01:15:56,3118.0,-11.0577, +2016-05-29 01:30:00,,,-5.1317 +2016-05-29 01:30:51,3118.0,-11.0577, +2016-05-29 01:45:00,,,-5.1532 +2016-05-29 01:45:47,3117.0,-11.0256, +2016-05-29 02:00:00,,,-5.1962 +2016-05-29 02:00:42,3117.0,-11.0256, +2016-05-29 02:15:00,,,-5.1111 +2016-05-29 02:15:38,3117.0,-11.0266, +2016-05-29 02:30:00,,,-5.0247 +2016-05-29 02:30:33,3117.0,-11.0266, +2016-05-29 02:45:00,,,-5.1107 +2016-05-29 02:45:29,3116.0,-11.0266, +2016-05-29 03:00:00,,,-5.1532 +2016-05-29 03:00:24,3116.0,-10.9956, +2016-05-29 03:15:00,,,-5.0037 +2016-05-29 03:15:20,3115.0,-11.0256, +2016-05-29 03:30:00,,,-5.2402 +2016-05-29 03:30:15,3115.0,-11.0266, +2016-05-29 03:45:00,,,-5.0883 +2016-05-29 03:45:11,3115.0,-10.9956, +2016-05-29 04:00:00,,,-5.1747 +2016-05-29 04:00:06,3115.0,-11.0266, +2016-05-29 04:15:00,,,-5.2608 +2016-05-29 04:15:01,3115.0,-11.0256, +2016-05-29 04:29:57,3115.0,-11.0256, +2016-05-29 04:30:00,,,-5.0457 +2016-05-29 04:44:52,3114.0,-11.0577, +2016-05-29 04:45:00,,,-5.1747 +2016-05-29 04:59:47,3114.0,-11.0276, +2016-05-29 05:00:00,,,-5.0896 +2016-05-29 05:14:43,3114.0,-11.0276, +2016-05-29 05:15:00,,,-4.8101 +2016-05-29 05:29:38,3114.0,-11.0276, +2016-05-29 05:30:00,,,-4.8101 +2016-05-29 05:44:33,3114.0,-11.0276, +2016-05-29 05:45:00,,,-5.1312 +2016-05-29 05:59:29,3114.0,-11.0256, +2016-05-29 06:00:00,,,-4.9379 +2016-05-29 06:14:24,3113.0,-11.0266, +2016-05-29 06:15:00,,,-4.9392 +2016-05-29 06:29:19,3113.0,-11.0266, +2016-05-29 06:30:00,,,-4.9616 +2016-05-29 06:44:15,3113.0,-11.0266, +2016-05-29 06:45:00,,,-4.8757 +2016-05-29 06:59:10,3112.0,-10.9956, +2016-05-29 07:00:00,,,-4.9187 +2016-05-29 07:14:05,3113.0,-10.9956, +2016-05-29 07:15:00,,,-5.1766 +2016-05-29 07:29:00,3112.0,-10.9956, +2016-05-29 07:30:00,,,-5.0045 +2016-05-29 07:43:55,3112.0,-10.9956, +2016-05-29 07:45:00,,,-4.9831 +2016-05-29 07:58:58,3113.0,-10.9956, +2016-05-29 08:00:00,,,-4.9616 +2016-05-29 08:13:53,3112.0,-10.9636, +2016-05-29 08:15:00,,,-4.8757 +2016-05-29 08:28:49,3113.0,-11.0276, +2016-05-29 08:30:00,,,-4.8757 +2016-05-29 08:43:44,3113.0,-10.9646, +2016-05-29 08:45:00,,,-4.9191 +2016-05-29 08:58:39,3113.0,-10.9965, +2016-05-29 09:00:00,,,-4.9191 +2016-05-29 09:13:42,3114.0,-10.9646, +2016-05-29 09:15:00,,,-4.7904 +2016-05-29 09:28:37,3114.0,-10.9646, +2016-05-29 09:30:00,,,-4.9401 +2016-05-29 09:43:33,3114.0,-10.9646, +2016-05-29 09:45:00,,,-4.7904 +2016-05-29 09:58:28,3114.0,-10.9656, +2016-05-29 10:00:00,,,-4.8766 +2016-05-29 10:13:24,3115.0,-10.9646, +2016-05-29 10:15:00,,,-4.9401 +2016-05-29 10:28:19,3116.0,-10.9656, +2016-05-29 10:30:00,,,-4.9191 +2016-05-29 10:43:15,3116.0,-10.9337, +2016-05-29 10:45:00,,,-4.8123 +2016-05-29 10:58:10,3117.0,-10.9337, +2016-05-29 11:00:00,,,-4.7904 +2016-05-29 11:13:06,3120.0,-10.9337, +2016-05-29 11:15:00,,,-4.9406 +2016-05-29 11:28:01,3121.0,-10.9337, +2016-05-29 11:30:00,,,-5.0265 +2016-05-29 11:42:57,3121.0,-10.9029, +2016-05-29 11:45:00,,,-4.877 +2016-05-29 11:57:52,3122.0,-10.9029, +2016-05-29 12:00:00,,,-4.9195 +2016-05-29 12:12:47,3123.0,-10.9039, +2016-05-29 12:15:00,,,-5.0045 +2016-05-29 12:27:43,3124.0,-10.8722, +2016-05-29 12:30:00,,,-5.0265 +2016-05-29 12:42:38,3127.0,-10.9405, +2016-05-29 12:45:00,,,-5.0076 +2016-05-29 12:57:34,3127.0,-10.8406, +2016-05-29 13:00:00,,,-4.9195 +2016-05-29 13:12:29,3128.0,-10.8732, +2016-05-29 13:15:00,,,-4.941 +2016-05-29 13:27:25,3130.0,-10.8416, +2016-05-29 13:30:00,,,-4.8131 +2016-05-29 13:42:21,3131.0,-10.81, +2016-05-29 13:45:00,,,-4.8131 +2016-05-29 13:57:16,3132.0,-10.8416, +2016-05-29 14:00:00,,,-4.9625 +2016-05-29 14:12:12,3133.0,-10.81, +2016-05-29 14:15:00,,,-4.8127 +2016-05-29 14:27:08,3134.0,-10.811, +2016-05-29 14:30:00,,,-4.8127 +2016-05-29 14:42:03,3135.0,-10.7796, +2016-05-29 14:45:00,,,-4.835 +2016-05-29 14:57:06,3135.0,-10.7805, +2016-05-29 15:00:00,,,-4.8341 +2016-05-29 15:12:02,3136.0,-10.7491, +2016-05-29 15:15:00,,,-4.8569 +2016-05-29 15:26:57,3136.0,-10.7805, +2016-05-29 15:30:00,,,-4.8569 +2016-05-29 15:42:01,3138.0,-10.7805, +2016-05-29 15:45:00,,,-4.9419 +2016-05-29 15:56:56,3138.0,-10.7482, +2016-05-29 16:00:00,,,-5.0278 +2016-05-29 16:11:52,3138.0,-10.7491, +2016-05-29 16:15:00,,,-5.0488 +2016-05-29 16:26:48,3138.0,-10.7491, +2016-05-29 16:30:00,,,-5.1569 +2016-05-29 16:41:44,3140.0,-10.7491, +2016-05-29 16:45:00,,,-4.8783 +2016-05-29 16:56:40,3140.0,-10.7491, +2016-05-29 17:00:00,,,-5.0928 +2016-05-29 17:11:35,3140.0,-10.7491, +2016-05-29 17:15:00,,,-4.8569 +2016-05-29 17:26:31,3139.0,-10.7491, +2016-05-29 17:30:00,,,-5.1143 +2016-05-29 17:41:27,3139.0,-10.7796, +2016-05-29 17:45:00,,,-5.0923 +2016-05-29 17:56:23,3138.0,-10.7805, +2016-05-29 18:00:00,,,-5.1358 +2016-05-29 18:11:18,3138.0,-10.7491, +2016-05-29 18:15:00,,,-4.8569 +2016-05-29 18:26:14,3138.0,-10.7491, +2016-05-29 18:30:00,,,-5.0488 +2016-05-29 18:41:10,3137.0,-10.7805, +2016-05-29 18:45:00,,,-4.9853 +2016-05-29 18:56:06,3136.0,-10.7796, +2016-05-29 19:00:00,,,-4.8569 +2016-05-29 19:11:01,3136.0,-10.7796, +2016-05-29 19:15:00,,,-4.8354 +2016-05-29 19:25:57,3135.0,-10.7796, +2016-05-29 19:30:00,,,-4.8144 +2016-05-29 19:40:53,3135.0,-10.7796, +2016-05-29 19:45:00,,,-4.9221 +2016-05-29 19:55:49,3134.0,-10.7796, +2016-05-29 20:00:00,,,-4.9436 +2016-05-29 20:10:44,3132.0,-10.7796, +2016-05-29 20:15:00,,, +2016-05-29 20:25:40,3131.0,-10.811, +2016-05-29 20:30:00,,,-4.8792 +2016-05-29 20:40:35,3130.0,-10.811, +2016-05-29 20:45:00,,, +2016-05-29 20:55:31,3129.0,-10.81, +2016-05-29 21:00:00,,, +2016-05-29 21:10:27,3128.0,-10.81, +2016-05-29 21:15:00,,, +2016-05-29 21:25:22,3127.0,-10.81, +2016-05-29 21:30:00,,,-4.9226 +2016-05-29 21:40:18,3124.0,-10.81, +2016-05-29 21:45:00,,, +2016-05-29 21:55:13,3124.0,-10.8416, +2016-05-29 22:00:00,,, +2016-05-29 22:10:09,3123.0,-10.8416, +2016-05-29 22:15:00,,, +2016-05-29 22:25:04,3122.0,-10.8416, +2016-05-29 22:30:00,,, +2016-05-29 22:40:00,3122.0,-10.8416, +2016-05-29 22:45:00,,, +2016-05-29 22:54:55,3121.0,-10.8416, +2016-05-29 23:00:00,,, +2016-05-29 23:09:51,3121.0,-10.8416, +2016-05-29 23:15:00,,, +2016-05-29 23:24:46,3120.0,-10.8416, +2016-05-29 23:30:00,,, +2016-05-29 23:39:42,3119.0,-10.8416, +2016-05-29 23:45:00,,, +2016-05-29 23:54:37,3118.0,-10.8406, +2016-05-30 00:00:00,,, +2016-05-30 00:09:33,3118.0,-10.8416, +2016-05-30 00:15:00,,, +2016-05-30 00:24:29,3117.0,-10.8406, +2016-05-30 00:30:00,,, +2016-05-30 00:39:24,3117.0,-10.8732, +2016-05-30 00:45:00,,, +2016-05-30 00:54:20,3116.0,-10.8416, +2016-05-30 01:00:00,,, +2016-05-30 01:09:15,3115.0,-10.8406, +2016-05-30 01:15:00,,, +2016-05-30 01:24:11,3115.0,-10.8416, +2016-05-30 01:30:00,,, +2016-05-30 01:39:06,3115.0,-10.8416, +2016-05-30 01:45:00,,, +2016-05-30 01:54:02,3115.0,-10.8722, +2016-05-30 02:00:00,,, +2016-05-30 02:08:57,3115.0,-10.8722, +2016-05-30 02:15:00,,, +2016-05-30 02:23:53,3114.0,-10.8406, +2016-05-30 02:30:00,,, +2016-05-30 02:38:49,3114.0,-10.8406, +2016-05-30 02:45:00,,, +2016-05-30 02:53:44,3114.0,-10.8722, +2016-05-30 03:00:00,,, +2016-05-30 03:08:39,3114.0,-10.8722, +2016-05-30 03:15:00,,, +2016-05-30 03:23:35,3114.0,-10.8722, +2016-05-30 03:30:00,,, +2016-05-30 03:38:30,3114.0,-10.8722, +2016-05-30 03:45:00,,, +2016-05-30 03:53:26,3114.0,-10.8722, +2016-05-30 04:00:00,,, +2016-05-30 04:08:21,3114.0,-10.8406, +2016-05-30 04:15:00,,, +2016-05-30 04:23:17,3114.0,-10.8732, +2016-05-30 04:30:00,,, +2016-05-30 04:38:12,3114.0,-10.8722, +2016-05-30 04:45:00,,, +2016-05-30 04:53:07,3113.0,-10.8722, +2016-05-30 05:00:00,,, +2016-05-30 05:08:03,3113.0,-10.8406, +2016-05-30 05:15:00,,, +2016-05-30 05:22:58,3113.0,-10.8416, +2016-05-30 05:30:00,,, +2016-05-30 05:37:54,3114.0,-10.8406, +2016-05-30 05:45:00,,, +2016-05-30 05:52:49,3114.0,-10.8722, +2016-05-30 06:00:00,,, +2016-05-30 06:07:45,3114.0,-10.8406, +2016-05-30 06:15:00,,, +2016-05-30 06:22:41,3114.0,-10.8416, +2016-05-30 06:30:00,,, +2016-05-30 06:37:36,3114.0,-10.8732, +2016-05-30 06:45:00,,, +2016-05-30 06:52:32,3114.0,-10.8416, +2016-05-30 07:00:00,,, +2016-05-30 07:07:27,3115.0,-10.8416, +2016-05-30 07:15:00,,, +2016-05-30 07:22:23,3115.0,-10.8416, +2016-05-30 07:30:00,,, +2016-05-30 07:37:19,3115.0,-10.8416, +2016-05-30 07:45:00,,, +2016-05-30 07:52:14,3116.0,-10.8416, +2016-05-30 08:00:00,,, +2016-05-30 08:07:10,3117.0,-10.811, +2016-05-30 08:15:00,,, +2016-05-30 08:22:06,3117.0,-10.811, +2016-05-30 08:30:00,,, +2016-05-30 08:37:01,3118.0,-10.811, +2016-05-30 08:45:00,,, +2016-05-30 08:51:57,3120.0,-10.811, +2016-05-30 09:00:00,,, +2016-05-30 09:06:53,3121.0,-10.812, +2016-05-30 09:15:00,,, +2016-05-30 09:21:48,3122.0,-10.812, +2016-05-30 09:30:00,,, +2016-05-30 09:36:44,3123.0,-10.7805, +2016-05-30 09:45:00,,, +2016-05-30 09:51:40,3123.0,-10.7805, +2016-05-30 10:00:00,,, +2016-05-30 10:06:35,3124.0,-10.7805, +2016-05-30 10:15:00,,, +2016-05-30 10:21:31,3126.0,-10.7805, +2016-05-30 10:30:00,,, +2016-05-30 10:36:26,3127.0,-10.7491, +2016-05-30 10:45:00,,, +2016-05-30 10:51:22,3127.0,-10.7501, +2016-05-30 11:00:00,,, +2016-05-30 11:06:18,3128.0,-10.7501, +2016-05-30 11:15:00,,, +2016-05-30 11:21:14,3129.0,-10.7501, +2016-05-30 11:30:00,,, +2016-05-30 11:36:09,3130.0,-10.7501, +2016-05-30 11:45:00,,, +2016-05-30 11:51:05,3131.0,-10.7188, +2016-05-30 12:00:00,,, +2016-05-30 12:06:01,3133.0,-10.7188, +2016-05-30 12:15:00,,, +2016-05-30 12:20:57,3134.0,-10.7188, +2016-05-30 12:30:00,,, +2016-05-30 12:35:53,3135.0,-10.7188, +2016-05-30 12:45:00,,, +2016-05-30 12:50:48,3136.0,-10.7198, +2016-05-30 13:00:00,,, +2016-05-30 13:05:44,3136.0,-10.7198, +2016-05-30 13:15:00,,, +2016-05-30 13:20:40,3136.0,-10.7198, +2016-05-30 13:30:00,,, +2016-05-30 13:35:43,3137.0,-10.7188, +2016-05-30 13:45:00,,, +2016-05-30 13:50:39,3136.0,-10.7188, +2016-05-30 14:00:00,,, +2016-05-30 14:05:35,3136.0,-10.7188, +2016-05-30 14:15:00,,, +2016-05-30 14:20:31,3135.0,-10.7188, +2016-05-30 14:30:00,,, +2016-05-30 14:35:27,3135.0,-10.7188, +2016-05-30 14:45:00,,, +2016-05-30 14:50:23,3133.0,-10.7188, +2016-05-30 15:00:00,,, +2016-05-30 15:05:19,3132.0,-10.7188, +2016-05-30 15:15:00,,, +2016-05-30 15:20:14,3130.0,-10.7198, +2016-05-30 15:30:00,,, +2016-05-30 15:35:10,3130.0,-10.7188, +2016-05-30 15:45:00,,, +2016-05-30 15:50:06,3131.0,-10.7501, +2016-05-30 16:00:00,,, +2016-05-30 16:05:02,3131.0,-10.7501, +2016-05-30 16:15:00,,, +2016-05-30 16:19:58,3131.0,-10.7501, +2016-05-30 16:30:00,,, +2016-05-30 16:34:54,3131.0,-10.7188, +2016-05-30 16:45:00,,, +2016-05-30 16:49:50,3131.0,-10.7188, +2016-05-30 17:00:00,,, +2016-05-30 17:04:45,3132.0,-10.7188, +2016-05-30 17:15:00,,, +2016-05-30 17:19:41,3132.0,-10.7188, +2016-05-30 17:30:00,,, +2016-05-30 17:34:37,3132.0,-10.7188, +2016-05-30 17:45:00,,, +2016-05-30 17:49:33,3132.0,-10.7188, +2016-05-30 18:00:00,,, +2016-05-30 18:04:29,3132.0,-10.7501, +2016-05-30 18:15:00,,, +2016-05-30 18:19:25,3132.0,-10.7501, +2016-05-30 18:30:00,,, +2016-05-30 18:34:21,3132.0,-10.7188, +2016-05-30 18:45:00,,, +2016-05-30 18:49:17,3131.0,-10.7501, +2016-05-30 19:00:00,,, +2016-05-30 19:04:13,3130.0,-10.7501, +2016-05-30 19:15:00,,, +2016-05-30 19:19:09,3130.0,-10.7491, +2016-05-30 19:30:00,,, +2016-05-30 19:34:05,3130.0,-10.7491, +2016-05-30 19:45:00,,, +2016-05-30 19:49:01,3129.0,-10.7491, +2016-05-30 20:00:00,,, +2016-05-30 20:03:57,3128.0,-10.7491, +2016-05-30 20:15:00,,, +2016-05-30 20:18:53,3127.0,-10.7491, +2016-05-30 20:30:00,,, +2016-05-30 20:33:49,3127.0,-10.7805, +2016-05-30 20:45:00,,, +2016-05-30 20:48:44,3126.0,-10.7805, +2016-05-30 21:00:00,,, +2016-05-30 21:03:40,3124.0,-10.7805, +2016-05-30 21:15:00,,, +2016-05-30 21:18:36,3123.0,-10.7805, +2016-05-30 21:30:00,,, +2016-05-30 21:33:32,3123.0,-10.811, +2016-05-30 21:45:00,,, +2016-05-30 21:48:27,3122.0,-10.811, +2016-05-30 22:00:00,,, +2016-05-30 22:03:23,3122.0,-10.81, +2016-05-30 22:15:00,,, +2016-05-30 22:18:19,3121.0,-10.81, +2016-05-30 22:30:00,,, +2016-05-30 22:33:15,3121.0,-10.81, +2016-05-30 22:45:00,,, +2016-05-30 22:48:10,3120.0,-10.8416, +2016-05-30 23:00:00,,, +2016-05-30 23:03:06,3119.0,-10.8416, +2016-05-30 23:15:00,,, +2016-05-30 23:18:02,3117.0,-10.8416, +2016-05-30 23:30:00,,, +2016-05-30 23:32:58,3116.0,-10.8416, +2016-05-30 23:45:00,,, +2016-05-30 23:47:53,3116.0,-10.8416, +2016-05-31 00:00:00,,, +2016-05-31 00:02:49,3115.0,-10.8416, +2016-05-31 00:15:00,,, +2016-05-31 00:17:45,3115.0,-10.8722, +2016-05-31 00:30:00,,, +2016-05-31 00:32:41,3114.0,-10.8406, +2016-05-31 00:45:00,,, +2016-05-31 00:47:36,3114.0,-10.8396, +2016-05-31 01:00:00,,, +2016-05-31 01:02:32,3113.0,-10.8732, +2016-05-31 01:15:00,,, +2016-05-31 01:17:28,3112.0,-10.8712, +2016-05-31 01:30:00,,, +2016-05-31 01:32:23,3110.0,-10.8722, +2016-05-31 01:45:00,,, +2016-05-31 01:47:19,3110.0,-10.9058, +2016-05-31 02:00:00,,, +2016-05-31 02:02:14,3110.0,-10.8349, +2016-05-31 02:15:00,,, +2016-05-31 02:17:10,3109.0,-10.9386, +2016-05-31 02:30:00,,, +2016-05-31 02:32:06,3109.0,-10.7757, +2016-05-31 02:45:00,,, +2016-05-31 02:47:02,3109.0,-10.9694, +2016-05-31 03:00:00,,, +2016-05-31 03:01:57,3108.0,-11.0325, +2016-05-31 03:15:00,,, +2016-05-31 03:16:53,3108.0,-10.9029, +2016-05-31 03:30:00,,, +2016-05-31 03:31:48,3107.0,-10.9328, +2016-05-31 03:45:00,,, +2016-05-31 03:46:44,3107.0,-10.9039, +2016-05-31 04:00:00,,, +2016-05-31 04:01:39,3107.0,-10.9357, +2016-05-31 04:15:00,,, +2016-05-31 04:16:35,3107.0,-10.9347, +2016-05-31 04:30:00,,, +2016-05-31 04:31:30,3106.0,-10.9039, +2016-05-31 04:45:00,,, +2016-05-31 04:46:26,3106.0,-10.9029, +2016-05-31 05:00:00,,, +2016-05-31 05:01:21,3106.0,-10.9029, +2016-05-31 05:15:00,,, +2016-05-31 05:16:17,3106.0,-10.9347, +2016-05-31 05:30:00,,, +2016-05-31 05:31:12,3106.0,-10.9029, +2016-05-31 05:45:00,,, +2016-05-31 05:46:08,3106.0,-10.9337, +2016-05-31 06:00:00,,, +2016-05-31 06:01:03,3105.0,-10.9039, +2016-05-31 06:15:00,,, +2016-05-31 06:15:59,3106.0,-10.9029, +2016-05-31 06:30:00,,, +2016-05-31 06:30:54,3106.0,-10.9039, +2016-05-31 06:45:00,,, +2016-05-31 06:45:50,3106.0,-10.9039, +2016-05-31 07:00:00,,, +2016-05-31 07:00:46,3106.0,-10.9039, +2016-05-31 07:15:00,,, +2016-05-31 07:15:41,3107.0,-10.7453, +2016-05-31 07:30:00,,, +2016-05-31 07:30:36,3107.0,-10.7815, +2016-05-31 07:45:00,,, +2016-05-31 07:45:32,3107.0,-10.7188, +2016-05-31 08:00:00,,, +2016-05-31 08:00:27,3109.0,-10.7179, +2016-05-31 08:15:00,,, +2016-05-31 08:15:23,3109.0,-10.8139, +2016-05-31 08:30:00,,, +2016-05-31 08:30:19,3110.0,-10.8072, +2016-05-31 08:45:00,,, +2016-05-31 08:45:14,3112.0,-10.8406, +2016-05-31 09:00:00,,, +2016-05-31 09:00:10,3114.0,-10.8732, +2016-05-31 09:15:00,,, +2016-05-31 09:15:06,3115.0,-10.8416, +2016-05-31 09:30:00,,, +2016-05-31 09:30:01,3116.0,-10.81, +2016-05-31 09:44:57,3117.0,-10.81, +2016-05-31 09:45:00,,, +2016-05-31 09:59:53,3120.0,-10.811, +2016-05-31 10:00:00,,, +2016-05-31 10:14:49,3121.0,-10.811, +2016-05-31 10:15:00,,, +2016-05-31 10:29:44,3122.0,-10.812, +2016-05-31 10:30:00,,, +2016-05-31 10:44:40,3123.0,-10.7805, +2016-05-31 10:45:00,,, +2016-05-31 10:59:36,3124.0,-10.7805, +2016-05-31 11:00:00,,, +2016-05-31 11:14:31,3125.0,-10.7805, +2016-05-31 11:15:00,,, +2016-05-31 11:29:27,3127.0,-10.7805, +2016-05-31 11:30:00,,, +2016-05-31 11:44:23,3128.0,-10.7805, +2016-05-31 11:45:00,,, +2016-05-31 11:59:19,3128.0,-10.7501, +2016-05-31 12:00:00,,, +2016-05-31 12:14:14,3130.0,-10.7491, +2016-05-31 12:15:00,,, +2016-05-31 12:29:10,3131.0,-10.7501, +2016-05-31 12:30:00,,, +2016-05-31 12:44:06,3132.0,-10.7501, +2016-05-31 12:45:00,,, +2016-05-31 12:59:02,3134.0,-10.7501, +2016-05-31 13:00:00,,, +2016-05-31 13:13:57,3134.0,-10.7501, +2016-05-31 13:15:00,,, +2016-05-31 13:28:53,3135.0,-10.7501, +2016-05-31 13:30:00,,, +2016-05-31 13:43:49,3136.0,-10.7501, +2016-05-31 13:45:00,,, +2016-05-31 13:58:45,3136.0,-10.7501, +2016-05-31 14:00:00,,, +2016-05-31 14:13:41,3136.0,-10.7188, +2016-05-31 14:15:00,,, +2016-05-31 14:28:37,3137.0,-10.7198, +2016-05-31 14:30:00,,, +2016-05-31 14:43:40,3138.0,-10.7188, +2016-05-31 14:45:00,,, +2016-05-31 14:58:36,3138.0,-10.7188, +2016-05-31 15:00:00,,, +2016-05-31 15:13:32,3138.0,-10.7188, +2016-05-31 15:15:00,,, +2016-05-31 15:28:28,3138.0,-10.7188, +2016-05-31 15:30:00,,,-4.8792 +2016-05-31 15:43:24,3138.0,-10.7198, +2016-05-31 15:45:00,,,-4.8788 +2016-05-31 15:58:20,3138.0,-10.7188, +2016-05-31 16:00:00,,,-4.8573 +2016-05-31 16:13:16,3139.0,-10.7188, +2016-05-31 16:15:00,,,-4.8573 +2016-05-31 16:28:12,3139.0,-10.7198, +2016-05-31 16:30:00,,,-4.8792 +2016-05-31 16:43:08,3140.0,-10.7198, +2016-05-31 16:45:00,,, +2016-05-31 16:58:04,3139.0,-10.7188, +2016-05-31 17:00:00,,,-4.8792 +2016-05-31 17:13:00,3139.0,-10.7198, +2016-05-31 17:15:00,,, +2016-05-31 17:27:56,3138.0,-10.7188, +2016-05-31 17:30:00,,, +2016-05-31 17:42:52,3138.0,-10.7188, +2016-05-31 17:45:00,,, +2016-05-31 17:57:48,3138.0,-10.7188, +2016-05-31 18:00:00,,,-5.287999999999999 +2016-05-31 18:12:44,3137.0,-10.7188, +2016-05-31 18:15:00,,,-5.3523 +2016-05-31 18:27:40,3136.0,-10.7188, +2016-05-31 18:30:00,,, +2016-05-31 18:42:36,3135.0,-10.7188, +2016-05-31 18:45:00,,, +2016-05-31 18:57:32,3134.0,-10.7491, +2016-05-31 19:00:00,,,-5.2439 +2016-05-31 19:12:28,3132.0,-10.7491, +2016-05-31 19:15:00,,, +2016-05-31 19:27:24,3130.0,-10.7805, +2016-05-31 19:30:00,,,-5.2444 +2016-05-31 19:42:19,3128.0,-10.7491, +2016-05-31 19:45:00,,, +2016-05-31 19:57:15,3127.0,-10.811, +2016-05-31 20:00:00,,,-5.1802 +2016-05-31 20:12:11,3124.0,-10.811, +2016-05-31 20:15:00,,,-5.1802 +2016-05-31 20:27:07,3123.0,-10.811, +2016-05-31 20:30:00,,,-5.1802 +2016-05-31 20:42:03,3122.0,-10.81, +2016-05-31 20:45:00,,,-4.987 +2016-05-31 20:56:58,3121.0,-10.8368, +2016-05-31 21:00:00,,, +2016-05-31 21:12:01,3120.0,-10.8435, +2016-05-31 21:15:00,,,-5.0905 +2016-05-31 21:26:56,3118.0,-10.7434, +2016-05-31 21:30:00,,,-5.1367 +2016-05-31 21:41:52,3117.0,-10.8416, +2016-05-31 21:45:00,,, +2016-05-31 21:56:48,3116.0,-10.9039, +2016-05-31 22:00:00,,,-5.1811 +2016-05-31 22:11:43,3115.0,-10.8081, +2016-05-31 22:15:00,,,-5.0502 +2016-05-31 22:26:39,3115.0,-10.8732, +2016-05-31 22:30:00,,, +2016-05-31 22:41:34,3115.0,-10.8396, +2016-05-31 22:45:00,,, +2016-05-31 22:56:30,3114.0,-10.8377, +2016-05-31 23:00:00,,, +2016-05-31 23:11:25,3113.0,-10.8416, +2016-05-31 23:15:00,,, +2016-05-31 23:26:21,3113.0,-10.8712, +2016-05-31 23:30:00,,, +2016-05-31 23:41:16,3113.0,-10.9039, +2016-05-31 23:45:00,,, +2016-05-31 23:56:12,3111.0,-10.9029, +2016-06-01 00:00:00,,, +2016-06-01 00:11:07,3110.0,-10.9029, +2016-06-01 00:15:00,,,-4.9682 +2016-06-01 00:26:03,3110.0,-10.9029, +2016-06-01 00:30:00,,,-4.9226 +2016-06-01 00:40:58,3109.0,-10.9347, +2016-06-01 00:45:00,,,-4.9226 +2016-06-01 00:55:54,3109.0,-10.9337, +2016-06-01 01:00:00,,,-4.8998 +2016-06-01 01:10:49,3109.0,-10.9029, +2016-06-01 01:15:00,,, +2016-06-01 01:25:45,3109.0,-10.9347, +2016-06-01 01:30:00,,,-4.923 +2016-06-01 01:40:40,3109.0,-10.9029, +2016-06-01 01:45:00,,, +2016-06-01 01:55:36,3108.0,-10.9029, +2016-06-01 02:00:00,,, +2016-06-01 02:10:31,3108.0,-10.9029, +2016-06-01 02:15:00,,, +2016-06-01 02:25:27,3107.0,-10.9347, +2016-06-01 02:30:00,,, +2016-06-01 02:40:23,3107.0,-10.9029, +2016-06-01 02:45:00,,, +2016-06-01 02:55:18,3107.0,-10.9337, +2016-06-01 03:00:00,,, +2016-06-01 03:10:14,3106.0,-10.9039, +2016-06-01 03:15:00,,, +2016-06-01 03:25:09,3106.0,-10.9029, +2016-06-01 03:30:00,,, +2016-06-01 03:40:05,3107.0,-10.9347, +2016-06-01 03:45:00,,, +2016-06-01 03:55:00,3107.0,-10.9347, +2016-06-01 04:00:00,,, +2016-06-01 04:09:55,3107.0,-10.9347, +2016-06-01 04:15:00,,, +2016-06-01 04:24:51,3106.0,-10.9337, +2016-06-01 04:30:00,,, +2016-06-01 04:39:46,3107.0,-10.9337, +2016-06-01 04:45:00,,, +2016-06-01 04:54:42,3107.0,-10.9337, +2016-06-01 05:00:00,,, +2016-06-01 05:09:37,3107.0,-10.9337, +2016-06-01 05:15:00,,, +2016-06-01 05:24:33,3107.0,-10.9337, +2016-06-01 05:30:00,,, +2016-06-01 05:39:28,3107.0,-10.9337, +2016-06-01 05:45:00,,, +2016-06-01 05:54:24,3107.0,-10.9337, +2016-06-01 06:00:00,,, +2016-06-01 06:09:19,3107.0,-10.9337, +2016-06-01 06:15:00,,, +2016-06-01 06:24:14,3107.0,-10.9337, +2016-06-01 06:30:00,,, +2016-06-01 06:39:10,3107.0,-10.9347, +2016-06-01 06:45:00,,, +2016-06-01 06:54:05,3107.0,-10.9337, +2016-06-01 07:00:00,,, +2016-06-01 07:09:08,3107.0,-10.9347, +2016-06-01 07:15:00,,, +2016-06-01 07:24:03,3108.0,-10.9347, +2016-06-01 07:30:00,,, +2016-06-01 07:38:59,3108.0,-10.9347, +2016-06-01 07:45:00,,, +2016-06-01 07:53:54,3109.0,-10.9347, +2016-06-01 08:00:00,,, +2016-06-01 08:08:49,3109.0,-10.9347, +2016-06-01 08:15:00,,, +2016-06-01 08:23:45,3109.0,-10.9347, +2016-06-01 08:30:00,,, +2016-06-01 08:38:40,3109.0,-10.9029, +2016-06-01 08:45:00,,, +2016-06-01 08:53:36,3109.0,-10.9029, +2016-06-01 09:00:00,,, +2016-06-01 09:08:31,3109.0,-10.9029, +2016-06-01 09:15:00,,, +2016-06-01 09:23:27,3109.0,-10.9029, +2016-06-01 09:30:00,,, +2016-06-01 09:38:22,3109.0,-10.9029, +2016-06-01 09:45:00,,, +2016-06-01 09:53:18,3109.0,-10.9029, +2016-06-01 10:00:00,,, +2016-06-01 10:08:13,3110.0,-10.9029, +2016-06-01 10:15:00,,, +2016-06-01 10:23:09,3110.0,-10.9029, +2016-06-01 10:30:00,,, +2016-06-01 10:38:05,3110.0,-10.9029, +2016-06-01 10:45:00,,, +2016-06-01 10:53:00,3110.0,-10.8712, +2016-06-01 11:00:00,,, +2016-06-01 11:07:56,3110.0,-10.8722, +2016-06-01 11:15:00,,, +2016-06-01 11:22:51,3111.0,-10.8712, +2016-06-01 11:30:00,,, +2016-06-01 11:37:47,3112.0,-10.8722, +2016-06-01 11:45:00,,, +2016-06-01 11:52:42,3113.0,-10.8722, +2016-06-01 12:00:00,,, +2016-06-01 12:07:38,3113.0,-10.8722, +2016-06-01 12:15:00,,, +2016-06-01 12:22:33,3113.0,-10.9039, +2016-06-01 12:30:00,,, +2016-06-01 12:37:29,3113.0,-10.8406, +2016-06-01 12:45:00,,, +2016-06-01 12:52:25,3114.0,-10.8406, +2016-06-01 13:00:00,,, +2016-06-01 13:07:20,3114.0,-10.8406, +2016-06-01 13:15:00,,, +2016-06-01 13:22:16,3114.0,-10.8406, +2016-06-01 13:30:00,,, +2016-06-01 13:37:11,3115.0,-10.8406, +2016-06-01 13:45:00,,, +2016-06-01 13:52:07,3115.0,-10.8722, +2016-06-01 14:00:00,,, +2016-06-01 14:07:02,3115.0,-10.8416, +2016-06-01 14:15:00,,, +2016-06-01 14:21:58,3116.0,-10.8406, +2016-06-01 14:30:00,,, +2016-06-01 14:36:54,3116.0,-10.8416, +2016-06-01 14:45:00,,, +2016-06-01 14:51:49,3116.0,-10.8406, +2016-06-01 15:00:00,,, +2016-06-01 15:06:45,3117.0,-10.8406, +2016-06-01 15:15:00,,, +2016-06-01 15:21:40,3117.0,-10.8416, +2016-06-01 15:30:00,,, +2016-06-01 15:36:36,3118.0,-10.8416, +2016-06-01 15:45:00,,, +2016-06-01 15:51:32,3118.0,-10.8416, +2016-06-01 16:00:00,,, +2016-06-01 16:06:27,3118.0,-10.8416, +2016-06-01 16:15:00,,, +2016-06-01 16:21:23,3119.0,-10.8416, +2016-06-01 16:30:00,,, +2016-06-01 16:36:19,3120.0,-10.81, +2016-06-01 16:45:00,,, +2016-06-01 16:51:15,3120.0,-10.8416, +2016-06-01 17:00:00,,,-4.9449 +2016-06-01 17:06:10,3120.0,-10.8416, +2016-06-01 17:15:00,,,-4.923 +2016-06-01 17:21:06,3120.0,-10.81, +2016-06-01 17:30:00,,,-4.9234 +2016-06-01 17:36:02,3121.0,-10.8091, +2016-06-01 17:45:00,,,-4.923 +2016-06-01 17:50:58,3121.0,-10.8091, +2016-06-01 18:00:00,,,-4.9011 +2016-06-01 18:05:53,3121.0,-10.8091, +2016-06-01 18:15:00,,,-4.902 +2016-06-01 18:20:49,3121.0,-10.811, +2016-06-01 18:30:00,,, +2016-06-01 18:35:45,3121.0,-10.7786, +2016-06-01 18:45:00,,, +2016-06-01 18:50:40,3121.0,-10.81, +2016-06-01 19:00:00,,,-4.9015 +2016-06-01 19:05:36,3121.0,-10.8416, +2016-06-01 19:15:00,,, +2016-06-01 19:20:32,3120.0,-10.81, +2016-06-01 19:30:00,,, +2016-06-01 19:35:27,3120.0,-10.8406, +2016-06-01 19:45:00,,, +2016-06-01 19:50:23,3119.0,-10.8091, +2016-06-01 20:00:00,,, +2016-06-01 20:05:19,3118.0,-10.81, +2016-06-01 20:15:00,,, +2016-06-01 20:20:14,3118.0,-10.8091, +2016-06-01 20:30:00,,, +2016-06-01 20:35:10,3117.0,-10.8416, +2016-06-01 20:45:00,,, +2016-06-01 20:50:06,3116.0,-10.8406, +2016-06-01 21:00:00,,, +2016-06-01 21:05:01,3116.0,-10.8406, +2016-06-01 21:15:00,,, +2016-06-01 21:19:57,3115.0,-10.8406, +2016-06-01 21:30:00,,, +2016-06-01 21:34:53,3115.0,-10.8406, +2016-06-01 21:45:00,,, +2016-06-01 21:49:48,3114.0,-10.8406, +2016-06-01 22:00:00,,, +2016-06-01 22:04:44,3114.0,-10.8722, +2016-06-01 22:15:00,,, +2016-06-01 22:19:40,3114.0,-10.8722, +2016-06-01 22:30:00,,, +2016-06-01 22:34:35,3113.0,-10.8722, +2016-06-01 22:45:00,,, +2016-06-01 22:49:31,3113.0,-10.8406, +2016-06-01 23:00:00,,, +2016-06-01 23:04:27,3111.0,-10.8712, +2016-06-01 23:15:00,,, +2016-06-01 23:19:22,3110.0,-10.8712, +2016-06-01 23:30:00,,, +2016-06-01 23:34:18,3110.0,-10.9029, +2016-06-01 23:45:00,,, +2016-06-01 23:49:13,3110.0,-10.8712, +2016-06-02 00:00:00,,, +2016-06-02 00:15:00,,, +2016-06-02 00:30:00,,, +2016-06-02 00:45:00,,, +2016-06-02 01:00:00,,, +2016-06-02 01:03:51,3108.0,-10.9029, +2016-06-02 01:15:00,,, +2016-06-02 01:18:47,3108.0,-10.9029, +2016-06-02 01:30:00,,, +2016-06-02 01:33:42,3108.0,-10.9029, +2016-06-02 01:45:00,,, +2016-06-02 01:48:38,3107.0,-10.9029, +2016-06-02 02:00:00,,, +2016-06-02 02:03:33,3107.0,-10.9029, +2016-06-02 02:15:00,,, +2016-06-02 02:18:29,3107.0,-10.9029, +2016-06-02 02:30:00,,, +2016-06-02 02:33:25,3107.0,-10.9029, +2016-06-02 02:45:00,,, +2016-06-02 02:48:20,3107.0,-10.9337, +2016-06-02 03:00:00,,, +2016-06-02 03:03:16,3106.0,-10.9029, +2016-06-02 03:15:00,,, +2016-06-02 03:18:11,3106.0,-10.9337, +2016-06-02 03:30:00,,, +2016-06-02 03:33:07,3106.0,-10.9029, +2016-06-02 03:45:00,,, +2016-06-02 03:48:02,3106.0,-10.9337, +2016-06-02 04:00:00,,, +2016-06-02 04:02:57,3106.0,-10.9347, +2016-06-02 04:15:00,,, +2016-06-02 04:17:53,3106.0,-10.9029, +2016-06-02 04:30:00,,, +2016-06-02 04:32:48,3106.0,-10.9337, +2016-06-02 04:45:00,,, +2016-06-02 04:47:44,3106.0,-10.9337, +2016-06-02 05:00:00,,, +2016-06-02 05:02:39,3106.0,-10.9337, +2016-06-02 05:15:00,,, +2016-06-02 05:17:35,3106.0,-10.9337, +2016-06-02 05:30:00,,, +2016-06-02 05:32:31,3106.0,-10.9337, +2016-06-02 05:45:00,,, +2016-06-02 05:47:26,3106.0,-10.9337, +2016-06-02 06:00:00,,, +2016-06-02 06:02:22,3106.0,-10.9337, +2016-06-02 06:15:00,,, +2016-06-02 06:17:17,3105.0,-10.902, +2016-06-02 06:30:00,,, +2016-06-02 06:32:13,3106.0,-10.9029, +2016-06-02 06:45:00,,, +2016-06-02 06:47:08,3106.0,-10.9337, +2016-06-02 07:00:00,,, +2016-06-02 07:02:04,3107.0,-10.9029, +2016-06-02 07:15:00,,, +2016-06-02 07:16:59,3107.0,-10.9029, +2016-06-02 07:30:00,,, +2016-06-02 07:32:02,3107.0,-10.9029, +2016-06-02 07:45:00,,, +2016-06-02 07:46:57,3109.0,-10.9029, +2016-06-02 08:00:00,,, +2016-06-02 08:01:53,3107.0,-10.8081, +2016-06-02 08:15:00,,, +2016-06-02 08:16:48,3109.0,-10.8722, +2016-06-02 08:30:00,,, +2016-06-02 08:31:44,3109.0,-10.8377, +2016-06-02 08:45:00,,, +2016-06-02 08:46:39,3109.0,-11.0325, +2016-06-02 09:00:00,,, +2016-06-02 09:01:35,3109.0,-10.9087, +2016-06-02 09:15:00,,, +2016-06-02 09:16:30,3113.0,-10.8406, +2016-06-02 09:30:00,,, +2016-06-02 09:31:26,3114.0,-10.8712, +2016-06-02 09:45:00,,, +2016-06-02 09:46:21,3114.0,-10.8712, +2016-06-02 10:00:00,,, +2016-06-02 10:01:17,3114.0,-10.8712, +2016-06-02 10:15:00,,, +2016-06-02 10:16:13,3114.0,-10.8712, +2016-06-02 10:30:00,,, +2016-06-02 10:31:08,3114.0,-10.8712, +2016-06-02 10:45:00,,, +2016-06-02 10:46:04,3115.0,-10.8712, +2016-06-02 11:00:00,,, +2016-06-02 11:00:59,3114.0,-10.8722, +2016-06-02 11:15:00,,,-4.8577 +2016-06-02 11:15:55,3115.0,-10.8712, +2016-06-02 11:30:00,,,74.4192 +2016-06-02 11:30:50,3130.0,-10.3006, +2016-06-02 11:45:00,,,26.8525 +2016-06-02 11:45:46,3132.0,-10.4194, +2016-06-02 12:00:00,,,27.4968 +2016-06-02 12:00:42,3134.0,-10.4194, +2016-06-02 12:15:00,,,27.0488 +2016-06-02 12:15:37,3132.0,-10.4796, +2016-06-02 12:30:00,,,27.1474 +2016-06-02 12:30:33,3133.0,-10.4796, +2016-06-02 12:45:00,,,27.3993 +2016-06-02 12:45:28,3135.0,-10.449000000000002, +2016-06-02 13:00:00,,,27.3993 +2016-06-02 13:00:24,3136.0,-10.4796, +2016-06-02 13:15:00,,,27.4992 +2016-06-02 13:15:19,3136.0,-10.4796, +2016-06-02 13:30:00,,,27.5995 +2016-06-02 13:30:15,3138.0,-10.449000000000002, +2016-06-02 13:45:00,,,27.4017 +2016-06-02 13:45:11,3138.0,-10.449000000000002, +2016-06-02 14:00:00,,,27.7001 +2016-06-02 14:00:06,3139.0,-10.4796, +2016-06-02 14:15:00,,,27.3993 +2016-06-02 14:15:02,3140.0,-10.4796, +2016-06-02 14:29:58,3139.0,-10.4787, +2016-06-02 14:30:00,,,27.0056 +2016-06-02 14:44:53,3141.0,-10.4787, +2016-06-02 14:45:00,,,27.008000000000006 +2016-06-02 14:59:49,3142.0,-10.4787, +2016-06-02 15:00:00,,,26.9074 +2016-06-02 15:14:45,3142.0,-10.4481, +2016-06-02 15:15:00,,,26.9576 +2016-06-02 15:29:41,3143.0,-10.4787, +2016-06-02 15:30:00,,,26.862 +2016-06-02 15:44:37,3143.0,-10.4796, +2016-06-02 15:45:00,,,26.9576 +2016-06-02 15:59:32,3143.0,-10.4787, +2016-06-02 16:00:00,,,27.008000000000006 +2016-06-02 16:14:28,3143.0,-10.4787, +2016-06-02 16:15:00,,,27.008000000000006 +2016-06-02 16:29:24,3143.0,-10.4787, +2016-06-02 16:30:00,,,26.9576 +2016-06-02 16:44:20,3143.0,-10.4796, +2016-06-02 16:45:00,,,26.96 +2016-06-02 16:59:16,3143.0,-10.4787, +2016-06-02 17:00:00,,,27.0056 +2016-06-02 17:14:11,3144.0,-10.4481, +2016-06-02 17:15:00,,,27.1547 +2016-06-02 17:29:07,3144.0,-10.4787, +2016-06-02 17:30:00,,,27.056 +2016-06-02 17:44:03,3143.0,-10.4787, +2016-06-02 17:45:00,,,27.0056 +2016-06-02 17:58:59,3143.0,-10.4787, +2016-06-02 18:00:00,,,27.056 +2016-06-02 18:13:55,3143.0,-10.4787, +2016-06-02 18:15:00,,,27.1041 +2016-06-02 18:28:50,3141.0,-10.4787, +2016-06-02 18:30:00,,,26.9576 +2016-06-02 18:43:46,3140.0,-10.4778, +2016-06-02 18:45:00,,,26.9576 +2016-06-02 18:58:42,3138.0,-10.4778, +2016-06-02 19:00:00,,,26.8096 +2016-06-02 19:13:38,3138.0,-10.5085, +2016-06-02 19:15:00,,,26.7691 +2016-06-02 19:28:33,3137.0,-10.4778, +2016-06-02 19:30:00,,,26.812 +2016-06-02 19:43:29,3136.0,-10.5085, +2016-06-02 19:45:00,,,26.7667 +2016-06-02 19:58:25,3136.0,-10.5085, +2016-06-02 20:00:00,,,27.0104 +2016-06-02 20:13:21,3135.0,-10.5085, +2016-06-02 20:15:00,,,26.96 +2016-06-02 20:28:16,3134.0,-10.5076, +2016-06-02 20:30:00,,,26.9672 +2016-06-02 20:43:12,3132.0,-10.5383, +2016-06-02 20:45:00,,,26.96 +2016-06-02 20:58:08,3131.0,-10.5383, +2016-06-02 21:00:00,,,26.8644 +2016-06-02 21:13:04,3130.0,-10.5692, +2016-06-02 21:15:00,,,26.9122 +2016-06-02 21:27:59,3128.0,-10.5682, +2016-06-02 21:30:00,,,26.9122 +2016-06-02 21:42:55,3128.0,-10.5682, +2016-06-02 21:45:00,,,26.8692 +2016-06-02 21:57:51,3127.0,-10.5682, +2016-06-02 22:00:00,,,26.9672 +2016-06-02 22:12:46,3126.0,-10.5682, +2016-06-02 22:15:00,,,26.7739 +2016-06-02 22:27:42,3125.0,-10.5682, +2016-06-02 22:30:00,,,26.8692 +2016-06-02 22:42:38,3124.0,-10.5682, +2016-06-02 22:45:00,,,26.8692 +2016-06-02 22:57:33,3123.0,-10.5682, +2016-06-02 23:00:00,,,26.8716 +2016-06-02 23:12:29,3123.0,-10.5682, +2016-06-02 23:15:00,,,26.7739 +2016-06-02 23:27:24,3123.0,-10.5982, +2016-06-02 23:30:00,,,26.8215 +2016-06-02 23:42:20,3122.0,-10.5982, +2016-06-02 23:45:00,,,26.8191 +2016-06-02 23:57:16,3122.0,-10.5982, +2016-06-03 00:00:00,,,26.7739 +2016-06-03 00:12:11,3122.0,-10.5982, +2016-06-03 00:15:00,,,26.7715 +2016-06-03 00:27:07,3121.0,-10.5982, +2016-06-03 00:30:00,,,26.7739 +2016-06-03 00:42:03,3121.0,-10.5982, +2016-06-03 00:45:00,,,26.8191 +2016-06-03 00:56:58,3121.0,-10.5982, +2016-06-03 01:00:00,,,26.6765 +2016-06-03 01:11:54,3121.0,-10.5982, +2016-06-03 01:15:00,,,26.7691 +2016-06-03 01:26:49,3120.0,-10.5982, +2016-06-03 01:30:00,,,26.6765 +2016-06-03 01:41:45,3120.0,-10.5982, +2016-06-03 01:45:00,,,26.6268 +2016-06-03 01:56:40,3120.0,-10.5982, +2016-06-03 02:00:00,,,26.724 +2016-06-03 02:11:36,3120.0,-10.5982, +2016-06-03 02:15:00,,,26.8215 +2016-06-03 02:26:31,3119.0,-10.5982, +2016-06-03 02:30:00,,,26.6315 +2016-06-03 02:41:26,3119.0,-10.5982, +2016-06-03 02:45:00,,,26.5795 +2016-06-03 02:56:22,3119.0,-10.5982, +2016-06-03 03:00:00,,,26.5842 +2016-06-03 03:11:17,3119.0,-10.5982, +2016-06-03 03:15:00,,,26.6315 +2016-06-03 03:26:13,3119.0,-10.5982, +2016-06-03 03:30:00,,,26.6292 +2016-06-03 03:41:08,3119.0,-10.5982, +2016-06-03 03:45:00,,,26.5819 +2016-06-03 03:56:04,3119.0,-10.5982, +2016-06-03 04:00:00,,,26.6268 +2016-06-03 04:10:59,3119.0,-10.5982, +2016-06-03 04:15:00,,,26.6315 +2016-06-03 04:25:55,3119.0,-10.5982, +2016-06-03 04:30:00,,,26.4852 +2016-06-03 04:40:50,3119.0,-10.5982, +2016-06-03 04:45:00,,,26.5819 +2016-06-03 04:55:46,3120.0,-10.5982, +2016-06-03 05:00:00,,,26.5323 +2016-06-03 05:10:41,3120.0,-10.5982, +2016-06-03 05:15:00,,,26.6789 +2016-06-03 05:25:37,3120.0,-10.5982, +2016-06-03 05:30:00,,,26.6315 +2016-06-03 05:40:32,3120.0,-10.5982, +2016-06-03 05:45:00,,,26.5795 +2016-06-03 05:55:28,3120.0,-10.5982, +2016-06-03 06:00:00,,,26.6315 +2016-06-03 06:10:23,3120.0,-10.5982, +2016-06-03 06:15:00,,,26.5819 +2016-06-03 06:25:19,3121.0,-10.5982, +2016-06-03 06:30:00,,,26.7763 +2016-06-03 06:40:15,3121.0,-10.5982, +2016-06-03 06:45:00,,,26.7263 +2016-06-03 06:55:10,3122.0,-10.5982, +2016-06-03 07:00:00,,,26.8239 +2016-06-03 07:10:05,3121.0,-10.5982, +2016-06-03 07:15:00,,,26.3396 +2016-06-03 07:25:01,3122.0,-10.5982, +2016-06-03 07:30:00,,,26.1948 +2016-06-03 07:39:56,3122.0,-10.5982, +2016-06-03 07:45:00,,,26.2438 +2016-06-03 07:54:52,3123.0,-10.5982, +2016-06-03 08:00:00,,,26.1948 +2016-06-03 08:09:47,3123.0,-10.5673, +2016-06-03 08:15:00,,,26.0995 +2016-06-03 08:24:43,3125.0,-10.5982, +2016-06-03 08:30:00,,,26.2415 +2016-06-03 08:39:38,3127.0,-10.5682, +2016-06-03 08:45:00,,,26.2438 +2016-06-03 08:54:34,3128.0,-10.5682, +2016-06-03 09:00:00,,,26.1506 +2016-06-03 09:09:30,3128.0,-10.5682, +2016-06-03 09:15:00,,,26.2484 +2016-06-03 09:24:25,3130.0,-10.5682, +2016-06-03 09:30:00,,,26.1995 +2016-06-03 09:39:21,3131.0,-10.5383, +2016-06-03 09:45:00,,,26.2952 +2016-06-03 09:54:17,3133.0,-10.5383, +2016-06-03 10:00:00,,,26.2018 +2016-06-03 10:09:12,3135.0,-10.5076, +2016-06-03 10:15:00,,,26.2461 +2016-06-03 10:24:08,3136.0,-10.5085, +2016-06-03 10:30:00,,,26.342 +2016-06-03 10:39:04,3136.0,-10.5085, +2016-06-03 10:45:00,,,26.2952 +2016-06-03 10:54:00,3138.0,-10.5085, +2016-06-03 11:00:00,,,26.2484 +2016-06-03 11:08:56,3138.0,-10.4778, +2016-06-03 11:15:00,,,26.342 +2016-06-03 11:23:51,3139.0,-10.4778, +2016-06-03 11:30:00,,,26.2952 +2016-06-03 11:38:47,3141.0,-10.4778, +2016-06-03 11:45:00,,,26.3912 +2016-06-03 11:53:43,3142.0,-10.4481, +2016-06-03 12:00:00,,,26.4381 +2016-06-03 12:08:39,3143.0,-10.4787, +2016-06-03 12:15:00,,,26.3022 +2016-06-03 12:23:35,3143.0,-10.4787, +2016-06-03 12:30:00,,,26.3045 +2016-06-03 12:38:31,3145.0,-10.4787, +2016-06-03 12:45:00,,,26.2998 +2016-06-03 12:53:27,3145.0,-10.4481, +2016-06-03 13:00:00,,,26.2998 +2016-06-03 13:08:23,3146.0,-10.4481, +2016-06-03 13:15:00,,,26.2998 +2016-06-03 13:23:19,3146.0,-10.4175, +2016-06-03 13:30:00,,,26.349 +2016-06-03 13:38:15,3148.0,-10.4185, +2016-06-03 13:45:00,,,26.3959 +2016-06-03 13:53:11,3148.0,-10.4185, +2016-06-03 14:00:00,,,26.2088 +2016-06-03 14:08:07,3149.0,-10.4185, +2016-06-03 14:15:00,,,26.2554 +2016-06-03 14:23:03,3150.0,-10.4185, +2016-06-03 14:30:00,,,26.2554 +2016-06-03 14:37:59,3150.0,-10.4194, +2016-06-03 14:45:00,,,26.2554 +2016-06-03 14:52:55,3151.0,-10.4185, +2016-06-03 15:00:00,,,26.5842 +2016-06-03 15:07:51,3152.0,-10.4194, +2016-06-03 15:15:00,,,26.641 +2016-06-03 15:22:47,3152.0,-10.3889, +2016-06-03 15:30:00,,,26.596 +2016-06-03 15:37:43,3152.0,-10.4185, +2016-06-03 15:45:00,,,26.067 +2016-06-03 15:52:39,3152.0,-10.3889, +2016-06-03 16:00:00,,,26.6528 +2016-06-03 16:07:36,3152.0,-10.3889, +2016-06-03 16:15:00,,,26.596 +2016-06-03 16:22:32,3152.0,-10.3889, +2016-06-03 16:30:00,,,26.5017 +2016-06-03 16:37:35,3152.0,-10.3889, +2016-06-03 16:45:00,,,26.5559 +2016-06-03 16:52:31,3151.0,-10.4194, +2016-06-03 17:00:00,,,26.0739 +2016-06-03 17:07:27,3151.0,-10.4185, +2016-06-03 17:15:00,,,26.1645 +2016-06-03 17:22:23,3150.0,-10.4185, +2016-06-03 17:30:00,,,26.0739 +2016-06-03 17:37:19,3150.0,-10.4185, +2016-06-03 17:45:00,,,26.5559 +2016-06-03 17:52:15,3150.0,-10.3889, +2016-06-03 18:00:00,,,26.4546 +2016-06-03 18:07:11,3150.0,-10.3889, +2016-06-03 18:15:00,,,26.4146 +2016-06-03 18:22:08,3150.0,-10.388, +2016-06-03 18:30:00,,,26.4616 +2016-06-03 18:37:04,3149.0,-10.388, +2016-06-03 18:45:00,,,26.5087 +2016-06-03 18:52:00,3148.0,-10.388, +2016-06-03 19:00:00,,,26.4123 +2016-06-03 19:06:56,3146.0,-10.4175, +2016-06-03 19:15:00,,,26.4616 +2016-06-03 19:21:52,3145.0,-10.4175, +2016-06-03 19:30:00,,,26.4616 +2016-06-03 19:36:48,3145.0,-10.4175, +2016-06-03 19:45:00,,,26.4123 +2016-06-03 19:51:51,3143.0,-10.4175, +2016-06-03 20:00:00,,,26.4616 +2016-06-03 20:06:46,3143.0,-10.4175, +2016-06-03 20:15:00,,,25.8406 +2016-06-03 20:21:42,3140.0,-10.4472, +2016-06-03 20:30:00,,,25.8406 +2016-06-03 20:36:38,3138.0,-10.4472, +2016-06-03 20:45:00,,,25.8867 +2016-06-03 20:51:34,3138.0,-10.4778, +2016-06-03 21:00:00,,,25.7465 +2016-06-03 21:06:30,3136.0,-10.4778, +2016-06-03 21:15:00,,,25.8406 +2016-06-03 21:21:26,3135.0,-10.4778, +2016-06-03 21:30:00,,,25.836 +2016-06-03 21:36:22,3134.0,-10.4769, +2016-06-03 21:45:00,,,25.6984 +2016-06-03 21:51:18,3132.0,-10.5085, +2016-06-03 22:00:00,,,25.7465 +2016-06-03 22:06:14,3131.0,-10.4769, +2016-06-03 22:15:00,,,25.8406 +2016-06-03 22:21:10,3130.0,-10.5076, +2016-06-03 22:30:00,,,25.7465 +2016-06-03 22:36:05,3129.0,-10.5076, +2016-06-03 22:45:00,,,25.7465 +2016-06-03 22:51:01,3128.0,-10.5076, +2016-06-03 23:00:00,,,25.7947 +2016-06-03 23:05:57,3128.0,-10.5066, +2016-06-03 23:15:00,,,25.7465 +2016-06-03 23:20:52,3127.0,-10.5066, +2016-06-03 23:30:00,,,25.8406 +2016-06-03 23:35:48,3126.0,-10.5066, +2016-06-03 23:45:00,,,25.7007 +2016-06-03 23:50:44,3124.0,-10.5374, +2016-06-04 00:00:00,,,25.7947 +2016-06-04 00:05:39,3123.0,-10.5374, +2016-06-04 00:15:00,,,25.7007 +2016-06-04 00:20:35,3123.0,-10.5374, +2016-06-04 00:30:00,,,25.7007 +2016-06-04 00:35:30,3122.0,-10.5682, +2016-06-04 00:45:00,,,25.607 +2016-06-04 00:50:26,3122.0,-10.5673, +2016-06-04 01:00:00,,,25.7465 +2016-06-04 01:05:22,3122.0,-10.5682, +2016-06-04 01:15:00,,,25.8406 +2016-06-04 01:20:17,3121.0,-10.5682, +2016-06-04 01:30:00,,,26.0786 +2016-06-04 01:35:13,3122.0,-10.5682, +2016-06-04 01:45:00,,,26.0786 +2016-06-04 01:50:08,3121.0,-10.5673, +2016-06-04 02:00:00,,,26.0786 +2016-06-04 02:05:03,3121.0,-10.5673, +2016-06-04 02:15:00,,,25.7465 +2016-06-04 02:19:59,3119.0,-10.5673, +2016-06-04 02:30:00,,,25.8406 +2016-06-04 02:34:54,3119.0,-10.5673, +2016-06-04 02:45:00,,,25.8406 +2016-06-04 02:49:50,3118.0,-10.5673, +2016-06-04 03:00:00,,,25.8406 +2016-06-04 03:04:46,3118.0,-10.5982, +2016-06-04 03:15:00,,,25.797 +2016-06-04 03:19:41,3117.0,-10.5982, +2016-06-04 03:30:00,,,25.8429 +2016-06-04 03:34:37,3117.0,-10.5982, +2016-06-04 03:45:00,,,25.8867 +2016-06-04 03:49:32,3116.0,-10.5982, +2016-06-04 04:00:00,,,26.1343 +2016-06-04 04:04:28,3116.0,-10.5673, +2016-06-04 04:15:00,,,26.0345 +2016-06-04 04:19:23,3116.0,-10.5973, +2016-06-04 04:30:00,,,26.1738 +2016-06-04 04:34:19,3116.0,-10.5982, +2016-06-04 04:45:00,,,26.2204 +2016-06-04 04:49:14,3115.0,-10.5982, +2016-06-04 05:00:00,,,26.2764 +2016-06-04 05:04:09,3115.0,-10.5982, +2016-06-04 05:15:00,,,26.132 +2016-06-04 05:19:05,3115.0,-10.5973, +2016-06-04 05:30:00,,,25.9813 +2016-06-04 05:34:00,3115.0,-10.5973, +2016-06-04 05:45:00,,,26.4146 +2016-06-04 05:48:55,3115.0,-10.5982, +2016-06-04 06:00:00,,,26.1273 +2016-06-04 06:03:51,3114.0,-10.5973, +2016-06-04 06:15:00,,,26.3185 +2016-06-04 06:18:46,3115.0,-10.5973, +2016-06-04 06:30:00,,,26.2718 +2016-06-04 06:33:41,3115.0,-10.5973, +2016-06-04 06:45:00,,,26.3677 +2016-06-04 06:48:37,3115.0,-10.5982, +2016-06-04 07:00:00,,,26.1273 +2016-06-04 07:03:32,3115.0,-10.5982, +2016-06-04 07:15:00,,,26.2718 +2016-06-04 07:18:28,3116.0,-10.5982, +2016-06-04 07:30:00,,,26.3677 +2016-06-04 07:33:23,3116.0,-10.5673, +2016-06-04 07:45:00,,,26.4146 +2016-06-04 07:48:18,3118.0,-10.5673, +2016-06-04 08:00:00,,,26.4146 +2016-06-04 08:03:14,3118.0,-10.5673, +2016-06-04 08:15:00,,,26.5111 +2016-06-04 08:18:09,3120.0,-10.5673, +2016-06-04 08:30:00,,,26.5606 +2016-06-04 08:33:05,3121.0,-10.5682, +2016-06-04 08:45:00,,,26.6576 +2016-06-04 08:48:00,3122.0,-10.5374, +2016-06-04 09:00:00,,,26.8024 +2016-06-04 09:02:56,3123.0,-10.5066, +2016-06-04 09:15:00,,,26.6576 +2016-06-04 09:17:51,3125.0,-10.5066, +2016-06-04 09:30:00,,,26.7073 +2016-06-04 09:32:47,3127.0,-10.5076, +2016-06-04 09:45:00,,,26.6079 +2016-06-04 09:47:43,3129.0,-10.5076, +2016-06-04 10:00:00,,,26.5158 +2016-06-04 10:02:38,3131.0,-10.5076, +2016-06-04 10:15:00,,,26.5229 +2016-06-04 10:17:34,3133.0,-10.4778, +2016-06-04 10:30:00,,,26.5701 +2016-06-04 10:32:30,3136.0,-10.4778, +2016-06-04 10:45:00,,,26.6599 +2016-06-04 10:47:25,3137.0,-10.4778, +2016-06-04 11:00:00,,,26.6599 +2016-06-04 11:02:21,3138.0,-10.4472, +2016-06-04 11:15:00,,,26.6623 +2016-06-04 11:17:17,3140.0,-10.4472, +2016-06-04 11:30:00,,,26.6599 +2016-06-04 11:32:13,3143.0,-10.4481, +2016-06-04 11:45:00,,,26.5677 +2016-06-04 11:47:08,3143.0,-10.4175, +2016-06-04 12:00:00,,,26.5748 +2016-06-04 12:02:04,3145.0,-10.4175, +2016-06-04 12:15:00,,,26.615 +2016-06-04 12:17:00,3146.0,-10.4175, +2016-06-04 12:30:00,,,26.2788 +2016-06-04 12:31:56,3148.0,-10.4175, +2016-06-04 12:45:00,,,26.5748 +2016-06-04 12:46:53,3149.0,-10.388, +2016-06-04 13:00:00,,,26.4781 +2016-06-04 13:01:49,3150.0,-10.388, +2016-06-04 13:15:00,,,26.6718 +2016-06-04 13:16:45,3150.0,-10.388, +2016-06-04 13:30:00,,,26.622 +2016-06-04 13:31:41,3150.0,-10.388, +2016-06-04 13:45:00,,,26.6623 +2016-06-04 13:46:37,3151.0,-10.3889, +2016-06-04 14:00:00,,,26.4781 +2016-06-04 14:01:34,3151.0,-10.3889, +2016-06-04 14:15:00,,,26.4334 +2016-06-04 14:16:30,3151.0,-10.3585, +2016-06-04 14:30:00,,,26.4734 +2016-06-04 14:31:26,3151.0,-10.3585, +2016-06-04 14:45:00,,,26.4734 +2016-06-04 14:46:22,3151.0,-10.3585, +2016-06-04 15:00:00,,,26.2858 +2016-06-04 15:01:18,3151.0,-10.3889, +2016-06-04 15:15:00,,,26.3841 +2016-06-04 15:16:14,3152.0,-10.3585, +2016-06-04 15:30:00,,,26.4334 +2016-06-04 15:31:11,3152.0,-10.3585, +2016-06-04 15:45:00,,,26.4264 +2016-06-04 15:46:07,3152.0,-10.3585, +2016-06-04 16:00:00,,,26.2391 +2016-06-04 16:01:03,3152.0,-10.3585, +2016-06-04 16:15:00,,,26.4334 +2016-06-04 16:15:59,3152.0,-10.3585, +2016-06-04 16:30:00,,,26.4334 +2016-06-04 16:30:55,3152.0,-10.3585, +2016-06-04 16:45:00,,,26.4334 +2016-06-04 16:45:51,3152.0,-10.3585, +2016-06-04 17:00:00,,,26.3841 +2016-06-04 17:00:47,3152.0,-10.3585, +2016-06-04 17:15:00,,,26.4805 +2016-06-04 17:15:43,3152.0,-10.3585, +2016-06-04 17:30:00,,,27.0656 +2016-06-04 17:30:39,3152.0,-10.329, +2016-06-04 17:45:00,,,27.0656 +2016-06-04 17:45:36,3152.0,-10.329, +2016-06-04 18:00:00,,,27.068 +2016-06-04 18:00:32,3152.0,-10.329, +2016-06-04 18:15:00,,,27.0656 +2016-06-04 18:15:28,3152.0,-10.3281, +2016-06-04 18:30:00,,,26.9696 +2016-06-04 18:30:24,3151.0,-10.3585, +2016-06-04 18:45:00,,,26.9194 +2016-06-04 18:45:20,3150.0,-10.3585, +2016-06-04 19:00:00,,,26.9672 +2016-06-04 19:00:16,3150.0,-10.3585, +2016-06-04 19:15:00,,,27.0176 +2016-06-04 19:15:12,3149.0,-10.3585, +2016-06-04 19:30:00,,,26.9218 +2016-06-04 19:30:08,3148.0,-10.3585, +2016-06-04 19:45:00,,,27.0152 +2016-06-04 19:45:05,3147.0,-10.3585, +2016-06-04 20:00:00,,,26.917 +2016-06-04 20:00:01,3145.0,-10.3576, +2016-06-04 20:14:57,3144.0,-10.3576, +2016-06-04 20:15:00,,,26.917 +2016-06-04 20:29:53,3143.0,-10.3871, +2016-06-04 20:30:00,,,26.8191 +2016-06-04 20:44:49,3142.0,-10.3871, +2016-06-04 20:45:00,,,26.8692 +2016-06-04 20:59:45,3139.0,-10.3871, +2016-06-04 21:00:00,,,26.7715 +2016-06-04 21:14:41,3138.0,-10.3871, +2016-06-04 21:15:00,,,26.8692 +2016-06-04 21:29:37,3138.0,-10.4175, +2016-06-04 21:30:00,,,26.6741 +2016-06-04 21:44:33,3136.0,-10.4175, +2016-06-04 21:45:00,,,26.7715 +2016-06-04 21:59:29,3135.0,-10.4175, +2016-06-04 22:00:00,,,26.8191 +2016-06-04 22:14:24,3135.0,-10.4166, +2016-06-04 22:15:00,,,26.724 +2016-06-04 22:29:20,3133.0,-10.4166, +2016-06-04 22:30:00,,,26.6741 +2016-06-04 22:44:16,3132.0,-10.4166, +2016-06-04 22:45:00,,,26.8215 +2016-06-04 22:59:12,3131.0,-10.4166, +2016-06-04 23:00:00,,,26.7715 +2016-06-04 23:14:08,3130.0,-10.4166, +2016-06-04 23:15:00,,,26.724 +2016-06-04 23:29:04,3129.0,-10.4166, +2016-06-04 23:30:00,,,26.8215 +2016-06-04 23:44:00,3128.0,-10.4472, +2016-06-04 23:45:00,,,26.8215 +2016-06-04 23:58:56,3128.0,-10.4462, +2016-06-05 00:00:00,,,26.8191 +2016-06-05 00:13:52,3127.0,-10.4769, +2016-06-05 00:15:00,,,26.7715 +2016-06-05 00:28:48,3127.0,-10.4769, +2016-06-05 00:30:00,,,26.724 +2016-06-05 00:43:43,3127.0,-10.4462, +2016-06-05 00:45:00,,,26.7715 +2016-06-05 00:58:39,3126.0,-10.4778, +2016-06-05 01:00:00,,,26.7786 +2016-06-05 01:13:39,3124.0,-10.4769, +2016-06-05 01:15:00,,,26.724 +2016-06-05 01:28:35,3124.0,-10.4769, +2016-06-05 01:30:00,,,26.724 +2016-06-05 01:43:31,3123.0,-10.4769, +2016-06-05 01:45:00,,,26.8191 +2016-06-05 01:58:27,3123.0,-10.4769, +2016-06-05 02:00:00,,,26.6765 +2016-06-05 02:13:22,3123.0,-10.4769, +2016-06-05 02:15:00,,,26.9218 +2016-06-05 02:28:18,3123.0,-10.4472, +2016-06-05 02:30:00,,,27.0272 +2016-06-05 02:43:14,3123.0,-10.4769, +2016-06-05 02:45:00,,,27.0272 +2016-06-05 02:58:10,3122.0,-10.4778, +2016-06-05 03:00:00,,,27.0296 +2016-06-05 03:13:05,3122.0,-10.4769, +2016-06-05 03:15:00,,,26.874 +2016-06-05 03:28:01,3122.0,-10.4759, +2016-06-05 03:30:00,,,26.8811 +2016-06-05 03:42:57,3121.0,-10.4769, +2016-06-05 03:45:00,,,26.8811 +2016-06-05 03:57:53,3121.0,-10.4759, +2016-06-05 04:00:00,,,26.8811 +2016-06-05 04:12:49,3121.0,-10.4759, +2016-06-05 04:15:00,,,27.0272 +2016-06-05 04:27:45,3120.0,-10.4759, +2016-06-05 04:30:00,,,26.9792 +2016-06-05 04:42:40,3120.0,-10.4759, +2016-06-05 04:45:00,,,26.9768 +2016-06-05 04:57:36,3119.0,-10.4759, +2016-06-05 05:00:00,,,26.9289 +2016-06-05 05:12:32,3119.0,-10.4759, +2016-06-05 05:15:00,,,26.9313 +2016-06-05 05:27:27,3118.0,-10.4759, +2016-06-05 05:30:00,,,26.831 +2016-06-05 05:42:23,3118.0,-10.4759, +2016-06-05 05:45:00,,,26.9289 +2016-06-05 05:57:18,3118.0,-10.4759, +2016-06-05 06:00:00,,,26.8811 +2016-06-05 06:12:14,3119.0,-10.4759, +2016-06-05 06:15:00,,,26.9289 +2016-06-05 06:27:10,3118.0,-10.4759, +2016-06-05 06:30:00,,,26.9768 +2016-06-05 06:42:05,3119.0,-10.4759, +2016-06-05 06:45:00,,,27.0272 +2016-06-05 06:57:01,3120.0,-10.4759, +2016-06-05 07:00:00,,,27.0776 +2016-06-05 07:11:57,3121.0,-10.4759, +2016-06-05 07:15:00,,,27.0776 +2016-06-05 07:26:52,3121.0,-10.4769, +2016-06-05 07:30:00,,,27.174 +2016-06-05 07:41:48,3122.0,-10.4462, +2016-06-05 07:45:00,,,27.0776 +2016-06-05 07:56:44,3123.0,-10.4472, +2016-06-05 08:00:00,,,27.2271 +2016-06-05 08:11:40,3123.0,-10.4166, +2016-06-05 08:15:00,,,27.2755 +2016-06-05 08:26:36,3124.0,-10.4166, +2016-06-05 08:30:00,,,27.2271 +2016-06-05 08:41:31,3127.0,-10.4166, +2016-06-05 08:45:00,,,27.375 +2016-06-05 08:56:27,3128.0,-10.4166, +2016-06-05 09:00:00,,,27.375 +2016-06-05 09:11:23,3130.0,-10.4166, +2016-06-05 09:15:00,,,27.375 +2016-06-05 09:26:19,3131.0,-10.3871, +2016-06-05 09:30:00,,,27.2296 +2016-06-05 09:41:15,3134.0,-10.3871, +2016-06-05 09:45:00,,,27.278 +2016-06-05 09:56:10,3136.0,-10.3871, +2016-06-05 10:00:00,,,27.278 +2016-06-05 10:11:06,3138.0,-10.3576, +2016-06-05 10:15:00,,,27.2296 +2016-06-05 10:26:02,3139.0,-10.3576, +2016-06-05 10:30:00,,,27.3265 +2016-06-05 10:40:58,3143.0,-10.3576, +2016-06-05 10:45:00,,,27.4797 +2016-06-05 10:55:54,3144.0,-10.3281, +2016-06-05 11:00:00,,,27.4797 +2016-06-05 11:10:50,3145.0,-10.3272, +2016-06-05 11:15:00,,,27.5237 +2016-06-05 11:25:46,3148.0,-10.3281, +2016-06-05 11:30:00,,,27.4334 +2016-06-05 11:40:42,3150.0,-10.2988, +2016-06-05 11:45:00,,,27.4822 +2016-06-05 11:55:38,3150.0,-10.2988, +2016-06-05 12:00:00,,,27.4822 +2016-06-05 12:10:34,3152.0,-10.2988, +2016-06-05 12:15:00,,,27.5824 +2016-06-05 12:25:30,3152.0,-10.2686, +2016-06-05 12:30:00,,,27.58 +2016-06-05 12:40:26,3155.0,-10.2988, +2016-06-05 12:45:00,,,27.6339 +2016-06-05 12:55:22,3155.0,-10.2686, +2016-06-05 13:00:00,,,27.6314 +2016-06-05 13:10:18,3156.0,-10.2686, +2016-06-05 13:15:00,,,27.6339 +2016-06-05 13:25:14,3157.0,-10.2695, +2016-06-05 13:30:00,,,27.6363 +2016-06-05 13:40:10,3159.0,-10.2393, +2016-06-05 13:45:00,,,27.7347 +2016-06-05 13:55:14,3160.0,-10.2393, +2016-06-05 14:00:00,,,27.683000000000003 +2016-06-05 14:10:10,3160.0,-10.2393, +2016-06-05 14:15:00,,,27.7815 +2016-06-05 14:25:06,3161.0,-10.2393, +2016-06-05 14:30:00,,,27.784 +2016-06-05 14:40:02,3162.0,-10.2402, +2016-06-05 14:45:00,,,27.8358 +2016-06-05 14:54:58,3162.0,-10.2393, +2016-06-05 15:00:00,,,27.6363 +2016-06-05 15:09:55,3163.0,-10.2101, +2016-06-05 15:15:00,,,27.6388 +2016-06-05 15:24:51,3163.0,-10.2101, +2016-06-05 15:30:00,,,27.6855 +2016-06-05 15:39:47,3163.0,-10.2402, +2016-06-05 15:45:00,,,27.6879 +2016-06-05 15:54:43,3163.0,-10.2101, +2016-06-05 16:00:00,,,27.6363 +2016-06-05 16:09:40,3163.0,-10.2101, +2016-06-05 16:15:00,,,27.5873 +2016-06-05 16:24:36,3163.0,-10.2101, +2016-06-05 16:30:00,,,27.6363 +2016-06-05 16:39:32,3163.0,-10.2101, +2016-06-05 16:45:00,,,27.6363 +2016-06-05 16:54:28,3163.0,-10.2402, +2016-06-05 17:00:00,,,27.6879 +2016-06-05 17:09:24,3162.0,-10.1801, +2016-06-05 17:15:00,,,27.6879 +2016-06-05 17:24:21,3162.0,-10.2101, +2016-06-05 17:30:00,,,27.5359 +2016-06-05 17:39:17,3161.0,-10.2092, +2016-06-05 17:45:00,,,27.5898 +2016-06-05 17:54:13,3160.0,-10.2402, +2016-06-05 18:00:00,,,27.4968 +2016-06-05 18:09:09,3160.0,-10.1801, +2016-06-05 18:15:00,,,27.5457 +2016-06-05 18:24:05,3160.0,-10.2092, +2016-06-05 18:30:00,,,27.4968 +2016-06-05 18:39:02,3158.0,-10.2092, +2016-06-05 18:45:00,,,27.4456 +2016-06-05 18:53:58,3157.0,-10.2092, +2016-06-05 19:00:00,,,27.4968 +2016-06-05 19:08:54,3156.0,-10.2393, +2016-06-05 19:15:00,,,27.4481 +2016-06-05 19:23:51,3155.0,-10.2393, +2016-06-05 19:30:00,,,27.2974 +2016-06-05 19:38:47,3153.0,-10.2393, +2016-06-05 19:45:00,,,27.3945 +2016-06-05 19:53:43,3152.0,-10.2393, +2016-06-05 20:00:00,,,27.4968 +2016-06-05 20:08:39,3151.0,-10.2384, +2016-06-05 20:15:00,,,27.4968 +2016-06-05 20:23:36,3150.0,-10.2384, +2016-06-05 20:30:00,,,27.5482 +2016-06-05 20:38:32,3149.0,-10.2384, +2016-06-05 20:45:00,,,27.4968 +2016-06-05 20:53:35,3147.0,-10.2686, +2016-06-05 21:00:00,,,27.5482 +2016-06-05 21:08:31,3145.0,-10.2686, +2016-06-05 21:15:00,,,27.5457 +2016-06-05 21:23:28,3144.0,-10.2686, +2016-06-05 21:30:00,,,27.5457 +2016-06-05 21:38:24,3143.0,-10.2988, +2016-06-05 21:45:00,,,27.5042 +2016-06-05 21:53:27,3142.0,-10.2677, +2016-06-05 22:00:00,,,27.5457 +2016-06-05 22:08:23,3140.0,-10.2979, +2016-06-05 22:15:00,,,27.4993 +2016-06-05 22:23:19,3138.0,-10.2979, +2016-06-05 22:30:00,,,27.5457 +2016-06-05 22:38:15,3138.0,-10.2979, +2016-06-05 22:45:00,,,27.4481 +2016-06-05 22:53:11,3136.0,-10.2979, +2016-06-05 23:00:00,,,27.4456 +2016-06-05 23:08:07,3136.0,-10.2969, +2016-06-05 23:15:00,,,27.4042 +2016-06-05 23:23:03,3135.0,-10.2969, +2016-06-05 23:30:00,,,27.4529 +2016-06-05 23:37:59,3134.0,-10.3272, +2016-06-05 23:45:00,,,27.4554 +2016-06-05 23:52:55,3133.0,-10.3272, +2016-06-06 00:00:00,,,27.4554 +2016-06-06 00:07:51,3132.0,-10.3272, +2016-06-06 00:15:00,,,27.4529 +2016-06-06 00:22:46,3131.0,-10.3567, +2016-06-06 00:30:00,,,27.4554 +2016-06-06 00:37:41,3130.0,-10.3567, +2016-06-06 00:45:00,,,27.4529 +2016-06-06 00:52:45,3130.0,-10.3263, +2016-06-06 01:00:00,,,27.4529 +2016-06-06 01:07:41,3128.0,-10.3567, +2016-06-06 01:15:00,,,27.4042 +2016-06-06 01:22:36,3128.0,-10.3567, +2016-06-06 01:30:00,,,27.4529 +2016-06-06 01:37:32,3128.0,-10.3567, +2016-06-06 01:45:00,,,27.4529 +2016-06-06 01:52:28,3127.0,-10.3567, +2016-06-06 02:00:00,,,27.4505 +2016-06-06 02:07:24,3127.0,-10.3567, +2016-06-06 02:15:00,,,27.4018 +2016-06-06 02:22:19,3125.0,-10.3567, +2016-06-06 02:30:00,,,27.4529 +2016-06-06 02:37:15,3125.0,-10.3557, +2016-06-06 02:45:00,,,27.4042 +2016-06-06 02:52:10,3124.0,-10.3861, +2016-06-06 03:00:00,,,27.4042 +2016-06-06 03:07:06,3123.0,-10.3861, +2016-06-06 03:15:00,,,27.4018 +2016-06-06 03:22:01,3123.0,-10.3861, +2016-06-06 03:30:00,,,27.4042 +2016-06-06 03:36:57,3123.0,-10.3861, +2016-06-06 03:45:00,,,27.4554 +2016-06-06 03:51:53,3122.0,-10.3861, +2016-06-06 04:00:00,,,27.4018 +2016-06-06 04:06:48,3122.0,-10.3861, +2016-06-06 04:15:00,,,27.4042 +2016-06-06 04:21:44,3122.0,-10.3861, +2016-06-06 04:30:00,,,27.4018 +2016-06-06 04:36:39,3121.0,-10.3861, +2016-06-06 04:45:00,,,27.4018 +2016-06-06 04:51:35,3121.0,-10.3861, +2016-06-06 05:00:00,,,27.4042 +2016-06-06 05:06:31,3120.0,-10.3861, +2016-06-06 05:15:00,,,27.4042 +2016-06-06 05:21:27,3120.0,-10.3861, +2016-06-06 05:30:00,,,27.3532 +2016-06-06 05:36:22,3119.0,-10.3852, +2016-06-06 05:45:00,,,27.4529 +2016-06-06 05:51:18,3119.0,-10.4166, +2016-06-06 06:00:00,,,27.2538 +2016-06-06 06:06:13,3118.0,-10.4157, +2016-06-06 06:15:00,,,27.3605 +2016-06-06 06:21:09,3118.0,-10.4166, +2016-06-06 06:30:00,,,27.4042 +2016-06-06 06:36:04,3119.0,-10.3861, +2016-06-06 06:45:00,,,27.4115 +2016-06-06 06:51:00,3119.0,-10.3861, +2016-06-06 07:00:00,,,27.4529 +2016-06-06 07:05:55,3119.0,-10.3861, +2016-06-06 07:15:00,,,27.4505 +2016-06-06 07:20:51,3120.0,-10.3861, +2016-06-06 07:30:00,,,27.3022 +2016-06-06 07:35:47,3120.0,-10.3861, +2016-06-06 07:45:00,,,27.3532 +2016-06-06 07:50:42,3121.0,-10.3861, +2016-06-06 08:00:00,,,27.4529 +2016-06-06 08:05:38,3122.0,-10.3861, +2016-06-06 08:15:00,,,27.4554 +2016-06-06 08:20:33,3123.0,-10.3861, +2016-06-06 08:30:00,,,27.5091 +2016-06-06 08:35:29,3123.0,-10.3861, +2016-06-06 08:45:00,,,27.5115 +2016-06-06 08:50:24,3125.0,-10.3557, +2016-06-06 09:00:00,,,27.5531 +2016-06-06 09:05:20,3127.0,-10.3567, +2016-06-06 09:15:00,,,27.5604 +2016-06-06 09:20:16,3128.0,-10.3567, +2016-06-06 09:30:00,,,27.5604 +2016-06-06 09:35:12,3130.0,-10.3567, +2016-06-06 09:45:00,,,27.5164 +2016-06-06 09:50:07,3132.0,-10.3576, +2016-06-06 10:00:00,,,27.5653 +2016-06-06 10:05:03,3135.0,-10.3272, +2016-06-06 10:15:00,,,27.5653 +2016-06-06 10:19:59,3136.0,-10.2979, +2016-06-06 10:30:00,,,27.6168 +2016-06-06 10:34:55,3138.0,-10.2979, +2016-06-06 10:45:00,,,27.6658 +2016-06-06 10:49:58,3138.0,-10.2677, +2016-06-06 11:00:00,,,27.6658 +2016-06-06 11:04:54,3141.0,-10.2677, +2016-06-06 11:15:00,,,27.6634 +2016-06-06 11:19:50,3143.0,-10.2677, +2016-06-06 11:30:00,,,27.715 +2016-06-06 11:34:45,3143.0,-10.2686, +2016-06-06 11:45:00,,,27.7175 +2016-06-06 11:49:41,3145.0,-10.2384, +2016-06-06 12:00:00,,,27.6168 +2016-06-06 12:04:37,3146.0,-10.2384, +2016-06-06 12:15:00,,,27.6168 +2016-06-06 12:19:33,3148.0,-10.2384, +2016-06-06 12:30:00,,,27.6192 +2016-06-06 12:34:29,3149.0,-10.2384, +2016-06-06 12:45:00,,,27.6168 +2016-06-06 12:49:25,3150.0,-10.2384, +2016-06-06 13:00:00,,,27.6168 +2016-06-06 13:04:22,3150.0,-10.2384, +2016-06-06 13:15:00,,,27.6168 +2016-06-06 13:19:18,3151.0,-10.2384, +2016-06-06 13:30:00,,,27.821 +2016-06-06 13:34:14,3152.0,-10.2092, +2016-06-06 13:45:00,,,27.821 +2016-06-06 13:49:10,3152.0,-10.1792, +2016-06-06 14:00:00,,,27.821 +2016-06-06 14:04:13,3153.0,-10.1792, +2016-06-06 14:15:00,,,27.8705 +2016-06-06 14:19:09,3154.0,-10.1792, +2016-06-06 14:30:00,,,27.821 +2016-06-06 14:34:05,3155.0,-10.1792, +2016-06-06 14:45:00,,,27.821 +2016-06-06 14:49:01,3155.0,-10.1801, +2016-06-06 15:00:00,,,27.8729 +2016-06-06 15:03:57,3156.0,-10.1792, +2016-06-06 15:15:00,,,27.8729 +2016-06-06 15:18:53,3156.0,-10.1792, +2016-06-06 15:30:00,,,27.8729 +2016-06-06 15:33:49,3156.0,-10.1792, +2016-06-06 15:45:00,,,27.7224 +2016-06-06 15:48:45,3156.0,-10.1792, +2016-06-06 16:00:00,,,27.7224 +2016-06-06 16:03:41,3156.0,-10.1792, +2016-06-06 16:15:00,,,27.7224 +2016-06-06 16:18:38,3156.0,-10.1792, +2016-06-06 16:30:00,,,27.6732 +2016-06-06 16:33:34,3156.0,-10.1792, +2016-06-06 16:45:00,,,27.6732 +2016-06-06 16:48:30,3155.0,-10.1792, +2016-06-06 17:00:00,,,27.6732 +2016-06-06 17:03:26,3155.0,-10.1792, +2016-06-06 17:15:00,,,27.6241 +2016-06-06 17:18:22,3154.0,-10.1792, +2016-06-06 17:30:00,,,27.6708 +2016-06-06 17:33:18,3153.0,-10.1792, +2016-06-06 17:45:00,,,27.6732 +2016-06-06 17:48:14,3152.0,-10.1792, +2016-06-06 18:00:00,,,27.6732 +2016-06-06 18:03:10,3152.0,-10.1792, +2016-06-06 18:15:00,,,27.6732 +2016-06-06 18:18:06,3152.0,-10.1792, +2016-06-06 18:30:00,,,27.6217 +2016-06-06 18:33:02,3150.0,-10.2092, +2016-06-06 18:45:00,,,27.6217 +2016-06-06 18:47:58,3150.0,-10.2083, +2016-06-06 19:00:00,,,27.5727 +2016-06-06 19:02:54,3149.0,-10.2083, +2016-06-06 19:15:00,,,27.6217 +2016-06-06 19:17:50,3147.0,-10.2083, +2016-06-06 19:30:00,,,27.5727 +2016-06-06 19:32:46,3146.0,-10.2384, +2016-06-06 19:45:00,,,27.5237 +2016-06-06 19:47:42,3145.0,-10.2384, +2016-06-06 20:00:00,,,27.5727 +2016-06-06 20:02:38,3143.0,-10.2384, +2016-06-06 20:15:00,,,27.5213 +2016-06-06 20:17:34,3142.0,-10.2677, +2016-06-06 20:30:00,,,27.5237 +2016-06-06 20:32:30,3140.0,-10.2677, +2016-06-06 20:45:00,,,27.5237 +2016-06-06 20:47:26,3138.0,-10.2677, +2016-06-06 21:00:00,,,27.5213 +2016-06-06 21:02:21,3138.0,-10.2677, +2016-06-06 21:15:00,,,27.4213 +2016-06-06 21:17:17,3136.0,-10.2677, +2016-06-06 21:30:00,,,27.4213 +2016-06-06 21:32:13,3135.0,-10.2667, +2016-06-06 21:45:00,,,27.4213 +2016-06-06 21:47:09,3134.0,-10.2969, +2016-06-06 22:00:00,,,27.4213 +2016-06-06 22:02:04,3132.0,-10.2969, +2016-06-06 22:15:00,,,27.3726 +2016-06-06 22:17:00,3131.0,-10.296, +2016-06-06 22:30:00,,,27.4213 +2016-06-06 22:31:56,3130.0,-10.296, +2016-06-06 22:45:00,,,27.4213 +2016-06-06 22:46:51,3128.0,-10.3263, +2016-06-06 23:00:00,,,27.3726 +2016-06-06 23:01:47,3128.0,-10.3263, +2016-06-06 23:15:00,,,27.4262 +2016-06-06 23:16:42,3127.0,-10.3263, +2016-06-06 23:30:00,,,27.3216 +2016-06-06 23:31:38,3126.0,-10.3263, +2016-06-06 23:45:00,,,27.3313 +2016-06-06 23:46:34,3124.0,-10.3263, +2016-06-07 00:00:00,,,27.3241 +2016-06-07 00:01:29,3123.0,-10.3557, +2016-06-07 00:15:00,,,27.4213 +2016-06-07 00:16:25,3123.0,-10.3557, +2016-06-07 00:30:00,,,27.4286 +2016-06-07 00:31:21,3123.0,-10.3557, +2016-06-07 00:45:00,,,27.4213 +2016-06-07 00:46:16,3122.0,-10.3557, +2016-06-07 01:00:00,,,27.4286 +2016-06-07 01:01:12,3122.0,-10.3557, +2016-06-07 01:15:00,,,27.4286 +2016-06-07 01:16:07,3121.0,-10.3861, +2016-06-07 01:30:00,,,27.4213 +2016-06-07 01:31:03,3121.0,-10.3861, +2016-06-07 01:45:00,,,27.4286 +2016-06-07 01:45:59,3120.0,-10.3852, +2016-06-07 02:00:00,,,27.3799 +2016-06-07 02:00:54,3118.0,-10.3852, +2016-06-07 02:15:00,,,27.3799 +2016-06-07 02:15:50,3118.0,-10.3852, +2016-06-07 02:30:00,,,26.9816 +2016-06-07 02:30:46,3116.0,-10.4148, +2016-06-07 02:45:00,,,27.3241 +2016-06-07 02:45:41,3116.0,-10.4166, +2016-06-07 03:00:00,,,27.3313 +2016-06-07 03:00:37,3115.0,-10.3843, +2016-06-07 03:15:00,,,27.3313 +2016-06-07 03:15:32,3115.0,-10.4148, +2016-06-07 03:30:00,,,27.3289 +2016-06-07 03:30:28,3114.0,-10.4157, +2016-06-07 03:45:00,,,27.3799 +2016-06-07 03:45:23,3114.0,-10.4139, +2016-06-07 04:00:00,,,27.3289 +2016-06-07 04:00:19,3113.0,-10.4148, +2016-06-07 04:15:00,,,27.3313 +2016-06-07 04:15:14,3112.0,-10.4148, +2016-06-07 04:30:00,,,27.2829 +2016-06-07 04:30:10,3110.0,-10.4148, +2016-06-07 04:45:00,,,27.3799 +2016-06-07 04:45:05,3110.0,-10.4741, +2016-06-07 05:00:00,,,27.2829 +2016-06-07 05:00:01,3109.0,-10.4157, +2016-06-07 05:14:56,3109.0,-10.4157, +2016-06-07 05:15:00,,,27.3313 +2016-06-07 05:29:51,3109.0,-10.4778, +2016-06-07 05:30:00,,,27.2853 +2016-06-07 05:44:47,3109.0,-10.5916, +2016-06-07 05:45:00,,,27.2707 +2016-06-07 05:59:42,3109.0,-10.4148, +2016-06-07 06:00:00,,,27.6781 +2016-06-07 06:14:38,3107.0,-10.5057, +2016-06-07 06:15:00,,,26.7834 +2016-06-07 06:29:33,3108.0,-10.4778, +2016-06-07 06:30:00,,,27.3241 +2016-06-07 06:44:29,3109.0,-10.4139, +2016-06-07 06:45:00,,,27.4773 +2016-06-07 06:59:25,3109.0,-10.4139, +2016-06-07 07:00:00,,,27.536 +2016-06-07 07:14:20,3109.0,-10.4148, +2016-06-07 07:15:00,,,27.5384 +2016-06-07 07:29:16,3110.0,-10.4148, +2016-06-07 07:30:00,,,27.629 +2016-06-07 07:44:12,3112.0,-10.4157, +2016-06-07 07:45:00,,,27.4286 +2016-06-07 07:59:08,3113.0,-10.3502, +2016-06-07 08:00:00,,,27.3848 +2016-06-07 08:14:15,3114.0,-10.4148, +2016-06-07 08:15:00,,,27.431 +2016-06-07 08:29:21,3115.0,-10.4453, +2016-06-07 08:30:00,,,26.984 +2016-06-07 08:44:23,3115.0,-10.4759, +2016-06-07 08:45:00,,,26.641 +2016-06-07 08:59:19,3116.0,-10.4759, +2016-06-07 09:00:00,,,26.4922 +2016-06-07 09:14:15,3119.0,-10.4759, +2016-06-07 09:15:00,,,26.5464 +2016-06-07 09:29:11,3121.0,-10.4453, +2016-06-07 09:30:00,,,26.5417 +2016-06-07 09:44:07,3122.0,-10.4453, +2016-06-07 09:45:00,,,26.4052 +2016-06-07 09:59:02,3124.0,-10.4157, +2016-06-07 10:00:00,,,26.4969 +2016-06-07 10:14:09,3127.0,-10.4157, +2016-06-07 10:15:00,,,26.4451 +2016-06-07 10:29:16,3131.0,-10.3567, +2016-06-07 10:30:00,,,27.2417 +2016-06-07 10:44:18,3134.0,-10.3567, +2016-06-07 10:45:00,,,27.2901 +2016-06-07 10:59:14,3136.0,-10.3263, +2016-06-07 11:00:00,,,27.2829 +2016-06-07 11:14:10,3136.0,-10.3567, +2016-06-07 11:15:00,,,26.8955 +2016-06-07 11:29:06,3138.0,-10.2969, +2016-06-07 11:30:00,,,27.0921 +2016-06-07 11:44:03,3140.0,-10.2969, +2016-06-07 11:45:00,,,26.9936 +2016-06-07 11:58:58,3142.0,-10.2969, +2016-06-07 12:00:00,,,26.984 +2016-06-07 12:14:05,3143.0,-10.3263, +2016-06-07 12:15:00,,,26.5464 +2016-06-07 12:29:13,3143.0,-10.3567, +2016-06-07 12:30:00,,,26.1133 +2016-06-07 12:44:15,3144.0,-10.3263, +2016-06-07 12:45:00,,,26.3044 +2016-06-07 12:59:11,3146.0,-10.2969, +2016-06-07 13:00:00,,,26.4545 +2016-06-07 13:14:07,3148.0,-10.2677, +2016-06-07 13:15:00,,,26.8406 +2016-06-07 13:29:03,3147.0,-10.2969, +2016-06-07 13:30:00,,,26.4029 +2016-06-07 13:43:59,3147.0,-10.2969, +2016-06-07 13:45:00,,,26.3044 +2016-06-07 13:58:55,3148.0,-10.2979, +2016-06-07 14:00:00,,,26.3068 +2016-06-07 14:14:02,3149.0,-10.2979, +2016-06-07 14:15:00,,,26.1644 +2016-06-07 14:29:10,3150.0,-10.2979, +2016-06-07 14:30:00,,,26.2157 +2016-06-07 14:44:24,3150.0,-10.2677, +2016-06-07 14:45:00,,,26.4052 +2016-06-07 14:59:20,3150.0,-10.2677, +2016-06-07 15:00:00,,,26.5016 +2016-06-07 15:14:16,3150.0,-10.2979, +2016-06-07 15:15:00,,,26.3091 +2016-06-07 15:29:13,3150.0,-10.2677, +2016-06-07 15:30:00,,,26.1644 +2016-06-07 15:44:09,3150.0,-10.2677, +2016-06-07 15:45:00,,,26.3091 +2016-06-07 15:59:05,3150.0,-10.2677, +2016-06-07 16:00:00,,,26.26 +2016-06-07 16:14:02,3150.0,-10.2677, +2016-06-07 16:15:00,,,26.2133 +2016-06-07 16:29:09,3150.0,-10.2979, +2016-06-07 16:30:00,,,26.211 +2016-06-07 16:44:16,3150.0,-10.2677, +2016-06-07 16:45:00,,,26.3091 +2016-06-07 16:59:18,3150.0,-10.2677, +2016-06-07 17:00:00,,,26.4052 +2016-06-07 17:14:15,3150.0,-10.2979, +2016-06-07 17:15:00,,,26.0738 +2016-06-07 17:29:11,3149.0,-10.2979, +2016-06-07 17:30:00,,,26.211 +2016-06-07 17:44:07,3151.0,-10.1783, +2016-06-07 17:45:00,,,27.2926 +2016-06-07 17:59:04,3150.0,-10.2083, +2016-06-07 18:00:00,,,27.2417 +2016-06-07 18:14:00,3150.0,-10.1783, +2016-06-07 18:15:00,,,27.3897 +2016-06-07 18:29:07,3150.0,-10.1783, +2016-06-07 18:30:00,,,27.3897 +2016-06-07 18:44:14,3144.0,-10.2969, +2016-06-07 18:45:00,,,26.211 +2016-06-07 18:59:16,3147.0,-10.1783, +2016-06-07 19:00:00,,,27.4993 +2016-06-07 19:14:12,3142.0,-10.296, +2016-06-07 19:15:00,,,26.1644 +2016-06-07 19:29:09,3147.0,-10.2092, +2016-06-07 19:30:00,,,27.997 +2016-06-07 19:44:05,3139.0,-10.296, +2016-06-07 19:45:00,,,26.3138 +2016-06-07 19:59:01,3138.0,-10.3263, +2016-06-07 20:00:00,,,26.1644 +2016-06-07 20:13:57,3136.0,-10.3567, +2016-06-07 20:15:00,,,26.1226 +2016-06-07 20:29:04,3136.0,-10.3263, +2016-06-07 20:30:00,,,26.3138 +2016-06-07 20:44:11,3134.0,-10.3557, +2016-06-07 20:45:00,,,26.0274 +2016-06-07 20:59:13,3132.0,-10.3557, +2016-06-07 21:00:00,,,26.0205 +2016-06-07 21:14:10,3131.0,-10.3557, +2016-06-07 21:15:00,,,26.0645 +2016-06-07 21:29:06,3129.0,-10.3557, +2016-06-07 21:30:00,,,25.9788 +2016-06-07 21:44:02,3128.0,-10.3852, +2016-06-07 21:45:00,,,26.1156 +2016-06-07 21:58:58,3127.0,-10.3861, +2016-06-07 22:00:00,,,25.928 +2016-06-07 22:13:54,3127.0,-10.3861, +2016-06-07 22:15:00,,,26.0228 +2016-06-07 22:29:00,3125.0,-10.4157, +2016-06-07 22:30:00,,,25.9719 +2016-06-07 22:44:07,3129.0,-10.2677, +2016-06-07 22:45:00,,,27.5923 +2016-06-07 22:59:09,3123.0,-10.4157, +2016-06-07 23:00:00,,,25.8313 +2016-06-07 23:14:05,3122.0,-10.4148, +2016-06-07 23:15:00,,,25.8382 +2016-06-07 23:29:02,3122.0,-10.3852, +2016-06-07 23:30:00,,,26.218000000000004 +2016-06-07 23:43:58,3122.0,-10.4148, +2016-06-07 23:45:00,,,26.0297 +2016-06-07 23:58:54,3121.0,-10.4148, +2016-06-08 00:00:00,,,25.9326 +2016-06-08 00:13:49,3120.0,-10.4453, +2016-06-08 00:15:00,,,25.8382 +2016-06-08 00:28:56,3121.0,-10.3852, +2016-06-08 00:30:00,,,26.6528 +2016-06-08 00:44:03,3119.0,-10.4148, +2016-06-08 00:45:00,,,26.2203 +2016-06-08 00:59:05,3116.0,-10.4759, +2016-06-08 01:00:00,,,25.7899 +2016-06-08 01:14:01,3113.0,-10.5664, +2016-06-08 01:15:00,,,24.6339 +2016-06-08 01:28:57,3106.0,-10.6565, +2016-06-08 01:30:00,,,64.0267 +2016-06-08 01:43:53,3109.0,-10.5654, +2016-06-08 01:45:00,,,71.408 +2016-06-08 01:58:49,3109.0,-10.5664, +2016-06-08 02:00:00,,,24.0087 +2016-06-08 02:13:44,3109.0,-10.5654, +2016-06-08 02:15:00,,,73.0805 +2016-06-08 02:28:51,3107.0,-10.5963, +2016-06-08 02:30:00,,,73.2991 +2016-06-08 02:43:58,3107.0,-10.5963, +2016-06-08 02:45:00,,,71.8142 +2016-06-08 02:59:00,3106.0,-10.5954, +2016-06-08 03:00:00,,,72.4387 +2016-06-08 03:13:56,3107.0,-10.5654, +2016-06-08 03:15:00,,,74.6112 +2016-06-08 03:28:51,3108.0,-10.5664, +2016-06-08 03:30:00,,,24.6339 +2016-06-08 03:43:47,3107.0,-10.5664, +2016-06-08 03:45:00,,,24.7244 +2016-06-08 03:58:43,3107.0,-10.5355, +2016-06-08 04:00:00,,,24.9551 +2016-06-08 04:13:39,3106.0,-10.5963, +2016-06-08 04:15:00,,,24.4101 +2016-06-08 04:28:46,3105.0,-10.5954, +2016-06-08 04:30:00,,,24.0972 +2016-06-08 04:43:53,3107.0,-10.5355, +2016-06-08 04:45:00,,,25.2351 +2016-06-08 04:58:54,3109.0,-10.4759, +2016-06-08 05:00:00,,,26.5016 +2016-06-08 05:13:50,3103.0,-10.6264, +2016-06-08 05:15:00,,,23.8755 +2016-06-08 05:28:46,3102.0,-10.6264, +2016-06-08 05:30:00,,,73.7269 +2016-06-08 05:43:42,3102.0,-10.6264, +2016-06-08 05:45:00,,,23.8369 +2016-06-08 05:58:38,3101.0,-10.5954, +2016-06-08 06:00:00,,,73.9493 +2016-06-08 06:13:33,3102.0,-10.5954, +2016-06-08 06:15:00,,,73.9493 +2016-06-08 06:28:40,3102.0,-10.5954, +2016-06-08 06:30:00,,,74.4047 +2016-06-08 06:43:46,3103.0,-10.5963, +2016-06-08 06:45:00,,,24.3206 +2016-06-08 06:58:48,3101.0,-10.6264, +2016-06-08 07:00:00,,,72.4387 +2016-06-08 07:13:44,3104.0,-10.5954, +2016-06-08 07:15:00,,,74.6112 +2016-06-08 07:28:40,3104.0,-10.5954, +2016-06-08 07:30:00,,,23.9248 +2016-06-08 07:45:00,,, +2016-06-08 08:00:00,,, +2016-06-08 08:15:00,,, +2016-06-08 08:22:40,3104.0,-10.5057, +2016-06-08 08:30:00,,,24.2358 +2016-06-08 08:45:00,,, +2016-06-08 09:00:00,,, +2016-06-08 09:15:00,,,24.2793 +2016-06-08 09:16:40,3107.0,-10.4453, +2016-06-08 09:30:00,,, +2016-06-08 09:45:00,,, +2016-06-08 10:00:00,,, +2016-06-08 10:10:41,3114.0,-10.3861, +2016-06-08 10:15:00,,,24.5437 +2016-06-08 10:30:00,,, +2016-06-08 10:45:00,,, +2016-06-08 11:00:00,,,24.8595 +2016-06-08 11:04:53,3120.0,-10.3263, +2016-06-08 11:15:00,,, +2016-06-08 11:30:00,,, +2016-06-08 11:45:00,,, +2016-06-08 11:59:05,3125.0,-10.2677, +2016-06-08 12:00:00,,,25.143 +2016-06-08 12:15:00,,, +2016-06-08 12:30:00,,, +2016-06-08 12:45:00,,, +2016-06-08 12:53:12,3129.0,-10.2677, +2016-06-08 13:00:00,,,24.9172 +2016-06-08 13:15:00,,, +2016-06-08 13:30:00,,, +2016-06-08 13:45:00,,,25.1474 +2016-06-08 13:47:14,3132.0,-10.2384, +2016-06-08 14:00:00,,, +2016-06-08 14:15:00,,, +2016-06-08 14:30:00,,, +2016-06-08 14:41:15,3134.0,-10.2384, +2016-06-08 14:45:00,,,24.875 +2016-06-08 15:00:00,,, +2016-06-08 15:15:00,,, +2016-06-08 15:30:00,,,24.7774 +2016-06-08 15:35:17,3135.0,-10.2384, +2016-06-08 15:45:00,,, +2016-06-08 16:00:00,,, +2016-06-08 16:15:00,,, +2016-06-08 16:29:19,3132.0,-10.2384, +2016-06-08 16:30:00,,,24.9128 +2016-06-08 16:45:00,,, +2016-06-08 17:00:00,,, +2016-06-08 17:15:00,,, +2016-06-08 17:23:20,3128.0,-10.2686, +2016-06-08 17:30:00,,,24.915 +2016-06-08 17:45:00,,, +2016-06-08 18:00:00,,, +2016-06-08 18:15:00,,,24.9195 +2016-06-08 18:17:33,3123.0,-10.2979, +2016-06-08 18:30:00,,, +2016-06-08 18:45:00,,, +2016-06-08 19:00:00,,, +2016-06-08 19:11:44,3117.0,-10.3272, +2016-06-08 19:15:00,,,24.8661 +2016-06-08 19:30:00,,, +2016-06-08 19:45:00,,, +2016-06-08 20:00:00,,,24.9195 +2016-06-08 20:05:51,3112.0,-10.3567, +2016-06-08 20:15:00,,, +2016-06-08 20:30:00,,, +2016-06-08 20:45:00,,, +2016-06-08 20:59:51,3107.0,-10.3871, +2016-06-08 21:00:00,,,24.9596 +2016-06-08 21:15:00,,, +2016-06-08 21:30:00,,, +2016-06-08 21:45:00,,, +2016-06-08 21:53:52,3101.0,-10.4166, +2016-06-08 22:00:00,,,24.8284 +2016-06-08 22:15:00,,, +2016-06-08 22:30:00,,, +2016-06-08 22:45:00,,,24.7353 +2016-06-08 22:47:51,3099.0,-10.4157, +2016-06-08 23:00:00,,, +2016-06-08 23:15:00,,, +2016-06-08 23:30:00,,, +2016-06-08 23:41:51,3095.0,-10.4453, +2016-06-08 23:45:00,,,24.7375 +2016-06-09 00:00:00,,, +2016-06-09 00:15:00,,, +2016-06-09 00:30:00,,,25.8082 +2016-06-09 00:35:50,3096.0,-10.3861, +2016-06-09 00:45:00,,, +2016-06-09 01:00:00,,, +2016-06-09 01:15:00,,, +2016-06-09 01:30:00,,,26.3442 +2016-06-09 01:30:01,3094.0,-10.3567, +2016-06-09 01:45:00,,, +2016-06-09 02:00:00,,, +2016-06-09 02:15:00,,, +2016-06-09 02:24:12,3087.0,-10.5057, +2016-06-09 02:30:00,,,24.603 +2016-06-09 02:45:00,,, +2016-06-09 03:00:00,,, +2016-06-09 03:15:00,,,24.4669 +2016-06-09 03:18:20,3086.0,-10.5355, +2016-06-09 03:30:00,,, +2016-06-09 03:45:00,,, +2016-06-09 04:00:00,,, +2016-06-09 04:12:19,3086.0,-10.5673, +2016-06-09 04:15:00,,,24.603 +2016-06-09 04:30:00,,, +2016-06-09 04:45:00,,, +2016-06-09 05:00:00,,,24.647 +2016-06-09 05:06:29,3085.0,-10.5664, +2016-06-09 05:15:00,,, +2016-06-09 05:30:00,,, +2016-06-09 05:45:00,,, +2016-06-09 06:00:00,,,24.6933 +2016-06-09 06:00:39,3084.0,-10.5664, +2016-06-09 06:15:00,,, +2016-06-09 06:30:00,,, +2016-06-09 06:45:00,,, +2016-06-09 06:54:44,3085.0,-10.5664, +2016-06-09 07:00:00,,,24.5568 +2016-06-09 07:15:00,,, +2016-06-09 07:30:00,,, +2016-06-09 07:45:00,,,24.875 +2016-06-09 07:48:44,3087.0,-10.5057, +2016-06-09 08:00:00,,, +2016-06-09 08:15:00,,, +2016-06-09 08:30:00,,, +2016-06-09 08:42:43,3087.0,-10.5057, +2016-06-09 08:45:00,,,25.1497 +2016-06-09 09:00:00,,, +2016-06-09 09:15:00,,, +2016-06-09 09:30:00,,,24.9195 +2016-06-09 09:36:43,3089.0,-10.5057, +2016-06-09 09:45:00,,, +2016-06-09 10:00:00,,, +2016-06-09 10:15:00,,, +2016-06-09 10:30:00,,,24.8728 +2016-06-09 10:30:42,3091.0,-10.5057, +2016-06-09 10:45:00,,, +2016-06-09 11:00:00,,, +2016-06-09 11:15:00,,, +2016-06-09 11:24:41,3095.0,-10.4759, +2016-06-09 11:30:00,,,25.1003 +2016-06-09 11:45:00,,, +2016-06-09 12:00:00,,, +2016-06-09 12:15:00,,,25.1026 +2016-06-09 12:18:52,3100.0,-10.4157, +2016-06-09 12:30:00,,, +2016-06-09 12:45:00,,, +2016-06-09 13:00:00,,, +2016-06-09 13:13:03,3106.0,-10.3861, +2016-06-09 13:15:00,,,25.5202 +2016-06-09 13:30:00,,, +2016-06-09 13:45:00,,, +2016-06-09 14:00:00,,,26.039 +2016-06-09 14:07:09,3109.0,-10.3272, +2016-06-09 14:15:00,,, +2016-06-09 14:30:00,,, +2016-06-09 14:45:00,,, +2016-06-09 15:00:00,,,24.9172 +2016-06-09 15:01:10,3109.0,-10.3871, +2016-06-09 15:15:00,,, +2016-06-09 15:30:00,,, +2016-06-09 15:45:00,,, +2016-06-09 15:55:11,3113.0,-10.3871, +2016-06-09 16:00:00,,,24.964 +2016-06-09 16:15:00,,, +2016-06-09 16:30:00,,, +2016-06-09 16:45:00,,,26.5158 +2016-06-09 16:49:12,3117.0,-10.2686, +2016-06-09 17:00:00,,, +2016-06-09 17:15:00,,, +2016-06-09 17:30:00,,, +2016-06-09 17:43:12,3115.0,-10.2979, +2016-06-09 17:45:00,,,26.0436 +2016-06-09 18:00:00,,, +2016-06-09 18:15:00,,, +2016-06-09 18:30:00,,,25.4702 +2016-06-09 18:37:13,3113.0,-10.3567, +2016-06-09 18:45:00,,, +2016-06-09 19:00:00,,, +2016-06-09 19:15:00,,, +2016-06-09 19:30:00,,,27.0512 +2016-06-09 19:31:24,3114.0,-10.2677, +2016-06-09 19:45:00,,, +2016-06-09 20:00:00,,, +2016-06-09 20:15:00,,, +2016-06-09 20:25:36,3106.0,-10.3861, +2016-06-09 20:30:00,,,25.1407 +2016-06-09 20:45:00,,, +2016-06-09 21:00:00,,, +2016-06-09 21:15:00,,,25.3298 +2016-06-09 21:19:42,3104.0,-10.4166, +2016-06-09 21:30:00,,, +2016-06-09 21:45:00,,, +2016-06-09 22:00:00,,, +2016-06-09 22:13:42,3102.0,-10.3861, +2016-06-09 22:15:00,,,25.9395 +2016-06-09 22:30:00,,, +2016-06-09 22:45:00,,, +2016-06-09 23:00:00,,, +2016-06-09 23:07:42,3099.0,-10.3861, +2016-06-09 23:15:00,,,25.9419 +2016-06-09 23:30:00,,, +2016-06-09 23:45:00,,, +2016-06-10 00:00:00,,,25.7027 +2016-06-10 00:01:42,3096.0,-10.4166, +2016-06-10 00:15:00,,, +2016-06-10 00:30:00,,, +2016-06-10 00:45:00,,, +2016-06-10 00:55:42,3094.0,-10.4462, +2016-06-10 01:00:00,,,25.7991 +2016-06-10 01:15:00,,, +2016-06-10 01:30:00,,, +2016-06-10 01:45:00,,,25.7991 +2016-06-10 01:49:42,3093.0,-10.4759, +2016-06-10 02:00:00,,, +2016-06-10 02:15:00,,, +2016-06-10 02:30:00,,, +2016-06-10 02:43:52,3090.0,-10.4759, +2016-06-10 02:45:00,,,25.7509 +2016-06-10 03:00:00,,, +2016-06-10 03:15:00,,, +2016-06-10 03:30:00,,, +2016-06-10 03:38:03,3085.0,-10.5973, +2016-06-10 03:45:00,,,24.9128 +2016-06-10 04:00:00,,, +2016-06-10 04:15:00,,, +2016-06-10 04:30:00,,,24.0993 +2016-06-10 04:32:08,3080.0,-10.6264, +2016-06-10 04:45:00,,, +2016-06-10 05:00:00,,, +2016-06-10 05:15:00,,, +2016-06-10 05:26:08,3081.0,-10.6273, +2016-06-10 05:30:00,,,24.9551 +2016-06-10 05:45:00,,, +2016-06-10 06:00:00,,, +2016-06-10 06:15:00,,,24.2771 +2016-06-10 06:20:07,3078.0,-10.6574, +2016-06-10 06:30:00,,, +2016-06-10 06:45:00,,, +2016-06-10 07:00:00,,, +2016-06-10 07:14:07,3078.0,-10.6264, +2016-06-10 07:15:00,,,24.5481 +2016-06-10 07:30:00,,, +2016-06-10 07:45:00,,, +2016-06-10 08:00:00,,, +2016-06-10 08:08:06,3080.0,-10.5963, +2016-06-10 08:15:00,,,24.9975 +2016-06-10 08:30:00,,, +2016-06-10 08:45:00,,, +2016-06-10 09:00:00,,,24.904 +2016-06-10 09:02:05,3080.0,-10.5963, +2016-06-10 09:15:00,,, +2016-06-10 09:30:00,,, +2016-06-10 09:45:00,,, +2016-06-10 09:56:15,3083.0,-10.5664, +2016-06-10 10:00:00,,,24.9106 +2016-06-10 10:15:00,,, +2016-06-10 10:30:00,,, +2016-06-10 10:45:00,,,24.9084 +2016-06-10 10:50:25,3088.0,-10.5365, +2016-06-10 11:00:00,,, +2016-06-10 11:15:00,,, +2016-06-10 11:30:00,,, +2016-06-10 11:44:31,3094.0,-10.4462, +2016-06-10 11:45:00,,,25.4634 +2016-06-10 12:00:00,,, +2016-06-10 12:15:00,,, +2016-06-10 12:30:00,,, +2016-06-10 12:38:31,3103.0,-10.4166, +2016-06-10 12:45:00,,,25.8427 +2016-06-10 13:00:00,,, +2016-06-10 13:15:00,,, +2016-06-10 13:30:00,,,25.4657 +2016-06-10 13:32:32,3110.0,-10.4166, +2016-06-10 13:45:00,,, +2016-06-10 14:00:00,,, +2016-06-10 14:15:00,,, +2016-06-10 14:26:33,3108.0,-10.3567, +2016-06-10 14:30:00,,,24.8728 +2016-06-10 14:45:00,,, +2016-06-10 15:00:00,,, +2016-06-10 15:15:00,,,24.8217 +2016-06-10 15:20:34,3114.0,-10.3871, +2016-06-10 15:30:00,,, +2016-06-10 15:45:00,,, +2016-06-10 16:00:00,,, +2016-06-10 16:14:35,3116.0,-10.3871, +2016-06-10 16:15:00,,,24.8261 +2016-06-10 16:30:00,,, +2016-06-10 16:45:00,,, +2016-06-10 17:00:00,,, +2016-06-10 17:08:47,3116.0,-10.3567, +2016-06-10 17:15:00,,,25.0533 +2016-06-10 17:30:00,,, +2016-06-10 17:45:00,,, +2016-06-10 18:00:00,,,25.1452 +2016-06-10 18:02:59,3115.0,-10.3567, +2016-06-10 18:15:00,,, +2016-06-10 18:30:00,,, +2016-06-10 18:45:00,,, +2016-06-10 18:57:06,3115.0,-10.2979, +2016-06-10 19:00:00,,,25.9881 +2016-06-10 19:15:00,,, +2016-06-10 19:30:00,,, +2016-06-10 19:45:00,,,25.0064 +2016-06-10 19:51:07,3110.0,-10.3861, +2016-06-10 20:00:00,,, +2016-06-10 20:15:00,,, +2016-06-10 20:30:00,,, +2016-06-10 20:45:00,,,25.0981 +2016-06-10 20:45:08,3108.0,-10.4166, +2016-06-10 21:00:00,,, +2016-06-10 21:15:00,,, +2016-06-10 21:30:00,,, +2016-06-10 21:39:09,3105.0,-10.4166, +2016-06-10 21:45:00,,,25.3773 +2016-06-10 22:00:00,,, +2016-06-10 22:15:00,,, +2016-06-10 22:30:00,,,25.1474 +2016-06-10 22:33:09,3101.0,-10.4462, +2016-06-10 22:45:00,,, +2016-06-10 23:00:00,,, +2016-06-10 23:15:00,,, +2016-06-10 23:27:09,3099.0,-10.4462, +2016-06-10 23:30:00,,,25.3231 +2016-06-10 23:45:00,,, +2016-06-11 00:00:00,,, +2016-06-11 00:15:00,,,25.3231 +2016-06-11 00:21:20,3096.0,-10.4769, +2016-06-11 00:30:00,,, +2016-06-11 00:45:00,,, +2016-06-11 01:00:00,,, +2016-06-11 01:15:00,,,25.7945 +2016-06-11 01:15:31,3095.0,-10.4462, +2016-06-11 01:30:00,,, +2016-06-11 01:45:00,,, +2016-06-11 02:00:00,,, +2016-06-11 02:09:37,3094.0,-10.4769, +2016-06-11 02:15:00,,,25.7005 +2016-06-11 02:30:00,,, +2016-06-11 02:45:00,,, +2016-06-11 03:00:00,,,25.2396 +2016-06-11 03:03:37,3090.0,-10.5057, +2016-06-11 03:15:00,,, +2016-06-11 03:30:00,,, +2016-06-11 03:45:00,,, +2016-06-11 03:57:37,3087.0,-10.5673, +2016-06-11 04:00:00,,,24.8706 +2016-06-11 04:15:00,,, +2016-06-11 04:30:00,,, +2016-06-11 04:45:00,,,25.2779 +2016-06-11 04:51:37,3087.0,-10.5664, +2016-06-11 05:00:00,,, +2016-06-11 05:15:00,,, +2016-06-11 05:30:00,,, +2016-06-11 05:45:00,,,25.5111 +2016-06-11 05:45:37,3086.0,-10.5365, +2016-06-11 06:00:00,,, +2016-06-11 06:15:00,,, +2016-06-11 06:30:00,,, +2016-06-11 06:39:36,3082.0,-10.5963, +2016-06-11 06:45:00,,,24.7708 +2016-06-11 07:00:00,,, +2016-06-11 07:15:00,,, +2016-06-11 07:30:00,,,24.8639 +2016-06-11 07:33:46,3083.0,-10.5664, +2016-06-11 07:45:00,,, +2016-06-11 08:00:00,,, +2016-06-11 08:15:00,,, +2016-06-11 08:27:57,3085.0,-10.5973, +2016-06-11 08:30:00,,,24.3664 +2016-06-11 08:45:00,,, +2016-06-11 09:00:00,,, +2016-06-11 09:15:00,,,24.7752 +2016-06-11 09:22:02,3087.0,-10.5664, +2016-06-11 09:30:00,,, +2016-06-11 09:45:00,,, +2016-06-11 10:00:00,,, +2016-06-11 10:15:00,,,25.2306 +2016-06-11 10:16:02,3094.0,-10.5066, +2016-06-11 10:30:00,,, +2016-06-11 10:45:00,,, +2016-06-11 11:00:00,,, +2016-06-11 11:10:02,3097.0,-10.5066, +2016-06-11 11:15:00,,,25.0467 +2016-06-11 11:30:00,,, +2016-06-11 11:45:00,,, +2016-06-11 12:00:00,,,25.1879 +2016-06-11 12:04:02,3101.0,-10.4769, +2016-06-11 12:15:00,,, +2016-06-11 12:30:00,,, +2016-06-11 12:45:00,,, +2016-06-11 12:58:02,3102.0,-10.4462, +2016-06-11 13:00:00,,,25.1385 +2016-06-11 13:15:00,,, +2016-06-11 13:30:00,,, +2016-06-11 13:45:00,,,25.0981 +2016-06-11 13:52:03,3106.0,-10.4166, +2016-06-11 14:00:00,,, +2016-06-11 14:15:00,,, +2016-06-11 14:30:00,,, +2016-06-11 14:45:00,,,25.0042 +2016-06-11 14:46:14,3107.0,-10.4166, +2016-06-11 15:00:00,,, +2016-06-11 15:15:00,,, +2016-06-11 15:30:00,,, +2016-06-11 15:40:25,3109.0,-10.3871, +2016-06-11 15:45:00,,,25.4679 +2016-06-11 16:00:00,,, +2016-06-11 16:15:00,,, +2016-06-11 16:30:00,,,23.9248 +2016-06-11 16:34:31,3106.0,-10.4759, +2016-06-11 16:45:00,,, +2016-06-11 17:00:00,,, +2016-06-11 17:15:00,,, +2016-06-11 17:28:33,3107.0,-10.4462, +2016-06-11 17:30:00,,,24.0993 +2016-06-11 17:45:00,,, +2016-06-11 18:00:00,,, +2016-06-11 18:15:00,,, +2016-06-11 18:22:33,3109.0,-10.3861, +2016-06-11 18:30:00,,,24.964 +2016-06-11 18:45:00,,, +2016-06-11 19:00:00,,, +2016-06-11 19:15:00,,,24.5986 +2016-06-11 19:16:34,3107.0,-10.4157, +2016-06-11 19:30:00,,, +2016-06-11 19:45:00,,, +2016-06-11 20:00:00,,, +2016-06-11 20:10:35,3106.0,-10.4166, +2016-06-11 20:15:00,,,24.9618 +2016-06-11 20:30:00,,, +2016-06-11 20:45:00,,, +2016-06-11 21:00:00,,,24.964 +2016-06-11 21:04:35,3102.0,-10.4759, +2016-06-11 21:15:00,,, +2016-06-11 21:30:00,,, +2016-06-11 21:45:00,,, +2016-06-11 21:58:35,3099.0,-10.5066, +2016-06-11 22:00:00,,,24.773000000000003 +2016-06-11 22:15:00,,, +2016-06-11 22:30:00,,, +2016-06-11 22:45:00,,, +2016-06-11 22:52:46,3094.0,-10.5057, +2016-06-11 23:00:00,,,24.6448 +2016-06-11 23:15:00,,, +2016-06-11 23:30:00,,, +2016-06-11 23:45:00,,,24.8683 +2016-06-11 23:46:57,3093.0,-10.5057, +2016-06-12 00:00:00,,, +2016-06-12 00:15:00,,, +2016-06-12 00:30:00,,, +2016-06-12 00:45:00,,, +2016-06-12 01:00:00,,, +2016-06-12 01:15:00,,, +2016-06-12 01:30:00,,,24.7266 +2016-06-12 01:35:02,3090.0,-10.5664, +2016-06-12 01:45:00,,, +2016-06-12 02:00:00,,, +2016-06-12 02:15:00,,, +2016-06-12 02:29:02,3087.0,-10.5973, +2016-06-12 02:30:00,,,24.8151 +2016-06-12 02:45:00,,, +2016-06-12 03:00:00,,, +2016-06-12 03:15:00,,, +2016-06-12 03:23:02,3087.0,-10.5973, +2016-06-12 03:30:00,,,24.6339 +2016-06-12 03:45:00,,, +2016-06-12 04:00:00,,, +2016-06-12 04:15:00,,,24.6383 +2016-06-12 04:17:01,3085.0,-10.5973, +2016-06-12 04:30:00,,, +2016-06-12 04:45:00,,, +2016-06-12 05:00:00,,, +2016-06-12 05:11:00,3083.0,-10.5963, +2016-06-12 05:15:00,,,24.7708 +2016-06-12 05:30:00,,, +2016-06-12 05:45:00,,, +2016-06-12 06:00:00,,,24.6383 +2016-06-12 06:05:10,3082.0,-10.5963, +2016-06-12 06:15:00,,, +2016-06-12 06:30:00,,, +2016-06-12 06:45:00,,, +2016-06-12 06:59:20,3082.0,-10.5973, +2016-06-12 07:00:00,,,24.7287 +2016-06-12 07:15:00,,, +2016-06-12 07:30:00,,, +2016-06-12 07:45:00,,, +2016-06-12 07:53:25,3084.0,-10.5664, +2016-06-12 08:00:00,,,24.7266 +2016-06-12 08:15:00,,, +2016-06-12 08:30:00,,, +2016-06-12 08:45:00,,,24.7287 +2016-06-12 08:47:25,3087.0,-10.5673, +2016-06-12 09:00:00,,, +2016-06-12 09:15:00,,, +2016-06-12 09:30:00,,, +2016-06-12 09:41:24,3093.0,-10.5057, +2016-06-12 09:45:00,,,25.0467 +2016-06-12 10:00:00,,, +2016-06-12 10:15:00,,, +2016-06-12 10:30:00,,,24.9084 +2016-06-12 10:35:24,3096.0,-10.5066, +2016-06-12 10:45:00,,, +2016-06-12 11:00:00,,, +2016-06-12 11:15:00,,, +2016-06-12 11:29:25,3103.0,-10.4462, +2016-06-12 11:30:00,,,25.0064 +2016-06-12 11:45:00,,, +2016-06-12 12:00:00,,, +2016-06-12 12:15:00,,, +2016-06-12 12:23:18,3109.0,-10.3871, +2016-06-12 12:30:00,,,25.3298 +2016-06-12 12:45:00,,, +2016-06-12 13:00:00,,, +2016-06-12 13:15:00,,,24.9128 +2016-06-12 13:17:23,3111.0,-10.3871, +2016-06-12 13:30:00,,, +2016-06-12 13:45:00,,, +2016-06-12 14:00:00,,, +2016-06-12 14:11:23,3113.0,-10.3861, +2016-06-12 14:15:00,,,25.0981 +2016-06-12 14:30:00,,, +2016-06-12 14:45:00,,, +2016-06-12 15:00:00,,,24.9062 +2016-06-12 15:05:24,3109.0,-10.3861, +2016-06-12 15:15:00,,, +2016-06-12 15:30:00,,, +2016-06-12 15:45:00,,, +2016-06-12 15:59:25,3107.0,-10.4166, +2016-06-12 16:00:00,,,24.9551 +2016-06-12 16:15:00,,, +2016-06-12 16:30:00,,, +2016-06-12 16:45:00,,, +2016-06-12 16:53:26,3105.0,-10.4166, +2016-06-12 17:00:00,,,24.8151 +2016-06-12 17:15:00,,, +2016-06-12 17:30:00,,, +2016-06-12 17:45:00,,,24.9084 +2016-06-12 17:47:27,3103.0,-10.4166, +2016-06-12 18:00:00,,, +2016-06-12 18:15:00,,, +2016-06-12 18:30:00,,, +2016-06-12 18:41:39,3100.0,-10.4462, +2016-06-12 18:45:00,,,24.8617 +2016-06-12 19:00:00,,, +2016-06-12 19:15:00,,, +2016-06-12 19:30:00,,,24.6802 +2016-06-12 19:35:50,3099.0,-10.4759, +2016-06-12 19:45:00,,, +2016-06-12 20:00:00,,, +2016-06-12 20:15:00,,, +2016-06-12 20:29:56,3094.0,-10.5066, +2016-06-12 20:30:00,,,24.7708 +2016-06-12 20:45:00,,, +2016-06-12 21:00:00,,, +2016-06-12 21:15:00,,, +2016-06-12 21:23:56,3094.0,-10.5066, +2016-06-12 21:30:00,,,25.0444 +2016-06-12 21:45:00,,, +2016-06-12 22:00:00,,, +2016-06-12 22:15:00,,,24.9529 +2016-06-12 22:17:55,3092.0,-10.5057, +2016-06-12 22:30:00,,, +2016-06-12 22:45:00,,, +2016-06-12 23:00:00,,, +2016-06-12 23:11:55,3090.0,-10.5365, +2016-06-12 23:15:00,,,24.9529 +2016-06-12 23:30:00,,, +2016-06-12 23:45:00,,, +2016-06-13 00:00:00,,,24.9084 +2016-06-13 00:05:55,3087.0,-10.5673, +2016-06-13 00:15:00,,, +2016-06-13 00:30:00,,, +2016-06-13 00:45:00,,, +2016-06-13 00:59:55,3086.0,-10.5673, +2016-06-13 01:00:00,,,24.6802 +2016-06-13 01:15:00,,, +2016-06-13 01:30:00,,, +2016-06-13 01:45:00,,, +2016-06-13 01:54:05,3085.0,-10.5664, +2016-06-13 02:00:00,,,24.6339 +2016-06-13 02:15:00,,, +2016-06-13 02:30:00,,, +2016-06-13 02:45:00,,,24.4538 +2016-06-13 02:48:15,3083.0,-10.5973, +2016-06-13 03:00:00,,, +2016-06-13 03:15:00,,, +2016-06-13 03:30:00,,, +2016-06-13 03:42:21,3082.0,-10.5973, +2016-06-13 03:45:00,,,24.6339 +2016-06-13 04:00:00,,, +2016-06-13 04:15:00,,, +2016-06-13 04:30:00,,,24.8595 +2016-06-13 04:36:20,3083.0,-10.5973, +2016-06-13 04:45:00,,, +2016-06-13 05:00:00,,, +2016-06-13 05:15:00,,, +2016-06-13 05:30:00,,,24.5899 +2016-06-13 05:30:20,3082.0,-10.5973, +2016-06-13 05:45:00,,, +2016-06-13 06:00:00,,, +2016-06-13 06:15:00,,, +2016-06-13 06:24:20,3082.0,-10.5973, +2016-06-13 06:30:00,,,24.7244 +2016-06-13 06:45:00,,, +2016-06-13 07:00:00,,, +2016-06-13 07:15:00,,,24.9084 +2016-06-13 07:18:19,3084.0,-10.5664, +2016-06-13 07:30:00,,, +2016-06-13 07:45:00,,, +2016-06-13 08:00:00,,, +2016-06-13 08:12:19,3086.0,-10.5664, +2016-06-13 08:15:00,,,24.8617 +2016-06-13 08:30:00,,, +2016-06-13 08:45:00,,, +2016-06-13 09:00:00,,,24.9998 +2016-06-13 09:06:29,3087.0,-10.5365, +2016-06-13 09:15:00,,, +2016-06-13 09:30:00,,, +2016-06-13 09:45:00,,, +2016-06-13 10:00:00,,,24.8151 +2016-06-13 10:00:40,3090.0,-10.5057, +2016-06-13 10:15:00,,, +2016-06-13 10:30:00,,, +2016-06-13 10:45:00,,, +2016-06-13 10:54:47,3094.0,-10.5066, +2016-06-13 11:00:00,,,24.9529 +2016-06-13 11:15:00,,, +2016-06-13 11:30:00,,, +2016-06-13 11:45:00,,,24.9529 +2016-06-13 11:48:47,3095.0,-10.4759, +2016-06-13 12:00:00,,, +2016-06-13 12:15:00,,, +2016-06-13 12:30:00,,, +2016-06-13 12:42:48,3098.0,-10.4759, +2016-06-13 12:45:00,,,24.9975 +2016-06-13 13:00:00,,, +2016-06-13 13:15:00,,, +2016-06-13 13:30:00,,,25.0444 +2016-06-13 13:36:48,3100.0,-10.4769, +2016-06-13 13:45:00,,, +2016-06-13 14:00:00,,, +2016-06-13 14:15:00,,, +2016-06-13 14:30:00,,,24.8639 +2016-06-13 14:30:48,3101.0,-10.4166, +2016-06-13 14:45:00,,, +2016-06-13 15:00:00,,, +2016-06-13 15:15:00,,, +2016-06-13 15:24:49,3106.0,-10.4166, +2016-06-13 15:30:00,,,25.0959 +2016-06-13 15:45:00,,, +2016-06-13 16:00:00,,, +2016-06-13 16:15:00,,,25.0914 +2016-06-13 16:19:01,3104.0,-10.5066, +2016-06-13 16:30:00,,, +2016-06-13 16:45:00,,, +2016-06-13 17:00:00,,, +2016-06-13 17:13:12,3095.0,-10.5066, +2016-06-13 17:15:00,,,25.3118 +2016-06-13 17:30:00,,, +2016-06-13 17:45:00,,, +2016-06-13 18:00:00,,,25.6776 +2016-06-13 18:07:18,3092.0,-10.5066, +2016-06-13 18:15:00,,, +2016-06-13 18:30:00,,, +2016-06-13 18:45:00,,, +2016-06-13 19:00:00,,,25.6274 +2016-06-13 19:01:18,3090.0,-10.5066, +2016-06-13 19:15:00,,, +2016-06-13 19:30:00,,, +2016-06-13 19:45:00,,, +2016-06-13 19:55:18,3091.0,-10.5066, +2016-06-13 20:00:00,,,25.7234 +2016-06-13 20:15:00,,, +2016-06-13 20:30:00,,, +2016-06-13 20:45:00,,,25.7188 +2016-06-13 20:49:18,3090.0,-10.5057, +2016-06-13 21:00:00,,, +2016-06-13 21:15:00,,, +2016-06-13 21:30:00,,, +2016-06-13 21:43:19,3089.0,-10.5057, +2016-06-13 21:45:00,,,25.7166 +2016-06-13 22:00:00,,, +2016-06-13 22:15:00,,, +2016-06-13 22:30:00,,,25.8083 +2016-06-13 22:37:19,3087.0,-10.5365, +2016-06-13 22:45:00,,, +2016-06-13 23:00:00,,, +2016-06-13 23:15:00,,, +2016-06-13 23:30:00,,,25.8083 +2016-06-13 23:31:30,3087.0,-10.5673, +2016-06-13 23:45:00,,, +2016-06-14 00:00:00,,, +2016-06-14 00:15:00,,, +2016-06-14 00:25:41,3085.0,-10.5673, +2016-06-14 00:30:00,,,25.9974 +2016-06-14 00:45:00,,, +2016-06-14 01:00:00,,, +2016-06-14 01:15:00,,,25.9004 +2016-06-14 01:19:46,3082.0,-10.5664, +2016-06-14 01:30:00,,, +2016-06-14 01:45:00,,, +2016-06-14 02:00:00,,, +2016-06-14 02:13:46,3081.0,-10.5973, +2016-06-14 02:15:00,,,25.852 +2016-06-14 02:30:00,,, +2016-06-14 02:45:00,,, +2016-06-14 03:00:00,,, +2016-06-14 03:07:46,3081.0,-10.5973, +2016-06-14 03:15:00,,,25.8981 +2016-06-14 03:30:00,,, +2016-06-14 03:45:00,,, +2016-06-14 04:00:00,,,25.7601 +2016-06-14 04:01:46,3080.0,-10.5973, +2016-06-14 04:15:00,,, +2016-06-14 04:30:00,,, +2016-06-14 04:45:00,,, +2016-06-14 04:55:46,3081.0,-10.5973, +2016-06-14 05:00:00,,,25.852 +2016-06-14 05:15:00,,, +2016-06-14 05:30:00,,, +2016-06-14 05:45:00,,,25.7578 +2016-06-14 05:49:46,3082.0,-10.5973, +2016-06-14 06:00:00,,, +2016-06-14 06:15:00,,, +2016-06-14 06:30:00,,, +2016-06-14 06:43:57,3082.0,-10.5664, +2016-06-14 06:45:00,,,25.9465 +2016-06-14 07:00:00,,, +2016-06-14 07:15:00,,, +2016-06-14 07:30:00,,, +2016-06-14 07:38:07,3084.0,-10.5664, +2016-06-14 07:45:00,,,25.9951 +2016-06-14 08:00:00,,, +2016-06-14 08:15:00,,, +2016-06-14 08:30:00,,,26.0924 +2016-06-14 08:32:13,3086.0,-10.5664, +2016-06-14 08:45:00,,, +2016-06-14 09:00:00,,, +2016-06-14 09:15:00,,, +2016-06-14 09:26:13,3086.0,-10.5673, +2016-06-14 09:30:00,,,25.7578 +2016-06-14 09:45:00,,, +2016-06-14 10:00:00,,, +2016-06-14 10:15:00,,,26.0414 +2016-06-14 10:20:13,3087.0,-10.5365, +2016-06-14 10:30:00,,, +2016-06-14 10:45:00,,, +2016-06-14 11:00:00,,, +2016-06-14 11:14:13,3090.0,-10.5066, +2016-06-14 11:15:00,,,26.0437 +2016-06-14 11:30:00,,, +2016-06-14 11:45:00,,, +2016-06-14 12:00:00,,, +2016-06-14 12:08:14,3094.0,-10.4759, +2016-06-14 12:15:00,,,26.3279 +2016-06-14 12:30:00,,, +2016-06-14 12:45:00,,, +2016-06-14 13:00:00,,,26.3794 +2016-06-14 13:02:14,3095.0,-10.4472, +2016-06-14 13:15:00,,, +2016-06-14 13:30:00,,, +2016-06-14 13:45:00,,, +2016-06-14 13:56:25,3096.0,-10.4166, +2016-06-14 14:00:00,,,26.6149 +2016-06-14 14:15:00,,, +2016-06-14 14:30:00,,, +2016-06-14 14:45:00,,,26.6623 +2016-06-14 14:50:36,3100.0,-10.4166, +2016-06-14 15:00:00,,, +2016-06-14 15:15:00,,, +2016-06-14 15:30:00,,, +2016-06-14 15:44:42,3100.0,-10.4166, +2016-06-14 15:45:00,,,26.8072 +2016-06-14 16:00:00,,, +2016-06-14 16:15:00,,, +2016-06-14 16:30:00,,, +2016-06-14 16:38:43,3101.0,-10.4166, +2016-06-14 16:45:00,,,26.8549 +2016-06-14 17:00:00,,, +2016-06-14 17:15:00,,, +2016-06-14 17:30:00,,,26.7572 +2016-06-14 17:32:43,3100.0,-10.4166, +2016-06-14 17:45:00,,, +2016-06-14 18:00:00,,, +2016-06-14 18:15:00,,, +2016-06-14 18:26:43,3100.0,-10.4166, +2016-06-14 18:30:00,,,26.7596 +2016-06-14 18:45:00,,, +2016-06-14 19:00:00,,, +2016-06-14 19:15:00,,,26.7097 +2016-06-14 19:20:44,3100.0,-10.4166, +2016-06-14 19:30:00,,, +2016-06-14 19:45:00,,, +2016-06-14 20:00:00,,, +2016-06-14 20:14:44,3099.0,-10.4166, +2016-06-14 20:15:00,,,26.905 +2016-06-14 20:30:00,,, +2016-06-14 20:45:00,,, +2016-06-14 21:00:00,,, +2016-06-14 21:08:54,3096.0,-10.4148, +2016-06-14 21:15:00,,,27.1475 +2016-06-14 21:30:00,,, +2016-06-14 21:45:00,,, +2016-06-14 22:00:00,,,26.9002 +2016-06-14 22:03:05,3094.0,-10.4472, +2016-06-14 22:15:00,,, +2016-06-14 22:30:00,,, +2016-06-14 22:45:00,,, +2016-06-14 22:57:10,3091.0,-10.632, +2016-06-14 23:00:00,,,27.008000000000006 +2016-06-14 23:15:00,,, +2016-06-14 23:30:00,,, +2016-06-14 23:45:00,,,26.8525 +2016-06-14 23:51:10,3088.0,-10.4759, +2016-06-15 00:00:00,,, +2016-06-15 00:15:00,,, +2016-06-15 00:30:00,,, +2016-06-15 00:45:00,,,27.2949 +2016-06-15 00:45:09,3087.0,-10.5066, +2016-06-15 01:00:00,,, +2016-06-15 01:15:00,,, +2016-06-15 01:30:00,,, +2016-06-15 01:39:08,3087.0,-10.4472, +2016-06-15 01:45:00,,,27.6462 +2016-06-15 02:00:00,,, +2016-06-15 02:15:00,,, +2016-06-15 02:30:00,,,27.1475 +2016-06-15 02:33:07,3085.0,-10.5057, +2016-06-15 02:45:00,,, +2016-06-15 03:00:00,,, +2016-06-15 03:15:00,,, +2016-06-15 03:27:07,3082.0,-10.5365, +2016-06-15 03:30:00,,,26.9505 +2016-06-15 03:45:00,,, +2016-06-15 04:00:00,,, +2016-06-15 04:15:00,,,27.0512 +2016-06-15 04:21:17,3082.0,-10.5673, +2016-06-15 04:30:00,,, +2016-06-15 04:45:00,,, +2016-06-15 05:00:00,,, +2016-06-15 05:15:00,,,26.9026 +2016-06-15 05:15:27,3081.0,-10.5673, +2016-06-15 05:30:00,,, +2016-06-15 05:45:00,,, +2016-06-15 06:00:00,,, +2016-06-15 06:09:33,3082.0,-10.5365, +2016-06-15 06:15:00,,,27.0512 +2016-06-15 06:30:00,,, +2016-06-15 06:45:00,,, +2016-06-15 07:00:00,,,27.0488 +2016-06-15 07:03:33,3084.0,-10.5673, +2016-06-15 07:15:00,,, +2016-06-15 07:30:00,,, +2016-06-15 07:45:00,,, +2016-06-15 07:57:32,3087.0,-10.5048, +2016-06-15 08:00:00,,,26.9505 +2016-06-15 08:15:00,,, +2016-06-15 08:30:00,,, +2016-06-15 08:45:00,,,27.1982 +2016-06-15 08:51:31,3090.0,-10.4759, +2016-06-15 09:00:00,,, +2016-06-15 09:15:00,,, +2016-06-15 09:30:00,,, +2016-06-15 09:45:00,,,27.3945 +2016-06-15 09:45:31,3093.0,-10.4769, +2016-06-15 10:00:00,,, +2016-06-15 10:15:00,,, +2016-06-15 10:30:00,,, +2016-06-15 10:39:30,3093.0,-10.2979, +2016-06-15 10:45:00,,,27.1957 +2016-06-15 11:00:00,,, +2016-06-15 11:15:00,,, +2016-06-15 11:30:00,,,27.2974 +2016-06-15 11:33:41,3095.0,-10.3861, +2016-06-15 11:45:00,,, +2016-06-15 12:00:00,,, +2016-06-15 12:15:00,,, +2016-06-15 12:27:52,3101.0,-10.3272, +2016-06-15 12:30:00,,,27.3507 +2016-06-15 12:45:00,,, +2016-06-15 13:00:00,,, +2016-06-15 13:15:00,,,27.4505 +2016-06-15 13:21:59,3107.0,-10.2969, +2016-06-15 13:30:00,,, +2016-06-15 13:45:00,,, +2016-06-15 14:00:00,,, +2016-06-15 14:15:00,,,27.3046 +2016-06-15 14:16:00,3112.0,-10.4166, +2016-06-15 14:30:00,,, +2016-06-15 14:45:00,,, +2016-06-15 15:00:00,,, +2016-06-15 15:10:01,3106.0,-10.3567, +2016-06-15 15:15:00,,,27.0512 +2016-06-15 15:30:00,,, +2016-06-15 15:45:00,,, +2016-06-15 16:00:00,,,27.3046 +2016-06-15 16:04:01,3100.0,-10.3576, +2016-06-15 16:15:00,,, +2016-06-15 16:30:00,,, +2016-06-15 16:45:00,,, +2016-06-15 16:58:02,3099.0,-10.3871, +2016-06-15 17:00:00,,,27.2538 +2016-06-15 17:15:00,,, +2016-06-15 17:30:00,,, +2016-06-15 17:45:00,,,27.3022 +2016-06-15 17:52:02,3096.0,-10.3567, +2016-06-15 18:00:00,,, +2016-06-15 18:15:00,,, +2016-06-15 18:30:00,,, +2016-06-15 18:45:00,,,27.1017 +2016-06-15 18:46:13,3095.0,-10.3852, +2016-06-15 19:00:00,,, +2016-06-15 19:15:00,,, +2016-06-15 19:30:00,,, +2016-06-15 19:40:24,3094.0,-10.3861, +2016-06-15 19:45:00,,,27.2489 +2016-06-15 20:00:00,,, +2016-06-15 20:15:00,,, +2016-06-15 20:30:00,,,27.0536 +2016-06-15 20:34:30,3092.0,-10.4157, +2016-06-15 20:45:00,,, +2016-06-15 21:00:00,,, +2016-06-15 21:15:00,,, +2016-06-15 21:28:30,3087.0,-10.4462, +2016-06-15 21:30:00,,,27.0536 +2016-06-15 21:45:00,,, +2016-06-15 22:00:00,,, +2016-06-15 22:15:00,,,26.8955 +2016-06-15 22:22:29,3085.0,-10.5066, +2016-06-15 22:30:00,,, +2016-06-15 22:45:00,,, +2016-06-15 23:00:00,,, +2016-06-15 23:15:00,,,26.7525 +2016-06-15 23:16:28,3080.0,-10.4732, +2016-06-15 23:30:00,,, +2016-06-15 23:45:00,,, +2016-06-16 00:00:00,,, +2016-06-16 00:10:27,3079.0,-10.412, +2016-06-16 00:15:00,,,26.7644 +2016-06-16 00:30:00,,, +2016-06-16 00:45:00,,, +2016-06-16 01:00:00,,,28.4757 +2016-06-16 01:04:26,3084.0,-10.4157, +2016-06-16 01:15:00,,, +2016-06-16 01:30:00,,, +2016-06-16 01:45:00,,, +2016-06-16 01:58:36,3074.0,-10.5963, +2016-06-16 02:00:00,,,26.6647 +2016-06-16 02:15:00,,, +2016-06-16 02:30:00,,, +2016-06-16 02:45:00,,, +2016-06-16 02:52:46,3072.0,-10.5973, +2016-06-16 03:00:00,,,26.5582 +2016-06-16 03:15:00,,, +2016-06-16 03:30:00,,, +2016-06-16 03:45:00,,,26.5158 +2016-06-16 03:46:51,3071.0,-10.6264, +2016-06-16 04:00:00,,, +2016-06-16 04:15:00,,, +2016-06-16 04:30:00,,, +2016-06-16 04:40:49,3069.0,-10.6282, +2016-06-16 04:45:00,,,26.7121 +2016-06-16 05:00:00,,, +2016-06-16 05:15:00,,, +2016-06-16 05:30:00,,,26.9505 +2016-06-16 05:34:48,3069.0,-10.5963, +2016-06-16 05:45:00,,, +2016-06-16 06:00:00,,, +2016-06-16 06:15:00,,, +2016-06-16 06:28:46,3071.0,-10.5664, +2016-06-16 06:30:00,,,26.8072 +2016-06-16 06:45:00,,, +2016-06-16 07:00:00,,, +2016-06-16 07:15:00,,, +2016-06-16 07:22:46,3072.0,-10.5664, +2016-06-16 07:30:00,,,26.667 +2016-06-16 07:45:00,,, +2016-06-16 08:00:00,,, +2016-06-16 08:15:00,,,26.7168 +2016-06-16 08:16:45,3078.0,-10.5365, +2016-06-16 08:30:00,,, +2016-06-16 08:45:00,,, +2016-06-16 09:00:00,,, +2016-06-16 09:10:54,3083.0,-10.5057, +2016-06-16 09:15:00,,,27.1089 +2016-06-16 09:30:00,,, +2016-06-16 09:45:00,,, +2016-06-16 10:00:00,,,27.2586 +2016-06-16 10:05:05,3088.0,-10.4148, +2016-06-16 10:15:00,,, +2016-06-16 10:30:00,,, +2016-06-16 10:45:00,,, +2016-06-16 10:59:10,3094.0,-10.4166, +2016-06-16 11:00:00,,,26.9098 +2016-06-16 11:15:00,,, +2016-06-16 11:30:00,,, +2016-06-16 11:45:00,,, +2016-06-16 11:53:11,3099.0,-10.2375, +2016-06-16 12:00:00,,,27.1041 +2016-06-16 12:15:00,,, +2016-06-16 12:30:00,,, +2016-06-16 12:45:00,,,26.9098 +2016-06-16 12:47:11,3101.0,-10.3861, +2016-06-16 13:00:00,,, +2016-06-16 13:15:00,,, +2016-06-16 13:30:00,,, +2016-06-16 13:41:11,3104.0,-10.4175, +2016-06-16 13:45:00,,,26.8096 +2016-06-16 14:00:00,,, +2016-06-16 14:15:00,,, +2016-06-16 14:30:00,,,27.0464 +2016-06-16 14:35:11,3106.0,-10.3852, +2016-06-16 14:45:00,,, +2016-06-16 15:00:00,,, +2016-06-16 15:15:00,,, +2016-06-16 15:29:11,3107.0,-10.2667, +2016-06-16 15:30:00,,,26.9696 +2016-06-16 15:45:00,,, +2016-06-16 16:00:00,,, +2016-06-16 16:15:00,,, +2016-06-16 16:23:22,3106.0,-10.4796, +2016-06-16 16:30:00,,,26.6884 +2016-06-16 16:45:00,,, +2016-06-16 17:00:00,,, +2016-06-16 17:15:00,,,27.0608 +2016-06-16 17:17:33,3104.0,-10.3567, +2016-06-16 17:30:00,,, +2016-06-16 17:45:00,,, +2016-06-16 18:00:00,,, +2016-06-16 18:11:39,3100.0,-10.4166, +2016-06-16 18:15:00,,,26.7667 +2016-06-16 18:30:00,,, +2016-06-16 18:45:00,,, +2016-06-16 19:00:00,,,27.2102 +2016-06-16 19:05:40,3100.0,-10.3567, +2016-06-16 19:15:00,,, +2016-06-16 19:30:00,,, +2016-06-16 19:45:00,,, +2016-06-16 19:59:40,3097.0,-10.3861, +2016-06-16 20:00:00,,,27.0104 +2016-06-16 20:15:00,,, +2016-06-16 20:30:00,,, +2016-06-16 20:45:00,,, +2016-06-16 20:53:40,3095.0,-10.3861, +2016-06-16 21:00:00,,,26.7667 +2016-06-16 21:15:00,,, +2016-06-16 21:30:00,,, +2016-06-16 21:45:00,,,26.9122 +2016-06-16 21:47:40,3094.0,-10.4166, +2016-06-16 22:00:00,,, +2016-06-16 22:15:00,,, +2016-06-16 22:30:00,,, +2016-06-16 22:41:39,3092.0,-10.4166, +2016-06-16 22:45:00,,,26.8143 +2016-06-16 23:00:00,,, +2016-06-16 23:15:00,,, +2016-06-16 23:30:00,,,26.7667 +2016-06-16 23:35:50,3090.0,-10.4462, +2016-06-16 23:45:00,,, +2016-06-17 00:00:00,,, +2016-06-17 00:15:00,,, +2016-06-17 00:30:00,3088.0,-10.4157,26.8143 +2016-06-17 00:45:00,,, +2016-06-17 01:00:00,,, +2016-06-17 01:15:00,,, +2016-06-17 01:24:06,3087.0,-10.4759, +2016-06-17 01:30:00,,,26.7168 +2016-06-17 01:45:00,,, +2016-06-17 02:00:00,,, +2016-06-17 02:15:00,,,26.6694 +2016-06-17 02:18:05,3087.0,-10.4759, +2016-06-17 02:30:00,,, +2016-06-17 02:45:00,,, +2016-06-17 03:00:00,,, +2016-06-17 03:12:05,3086.0,-10.4759, +2016-06-17 03:15:00,,,26.7667 +2016-06-17 03:30:00,,, +2016-06-17 03:45:00,,, +2016-06-17 04:00:00,,,26.9122 +2016-06-17 04:06:04,3086.0,-10.4759, +2016-06-17 04:15:00,,, +2016-06-17 04:30:00,,, +2016-06-17 04:45:00,,, +2016-06-17 05:00:00,,,26.6647 +2016-06-17 05:00:03,3082.0,-10.4759, +2016-06-17 05:15:00,,, +2016-06-17 05:30:00,,, +2016-06-17 05:45:00,,, +2016-06-17 05:54:03,3082.0,-10.5066, +2016-06-17 06:00:00,,,26.9601 +2016-06-17 06:15:00,,, +2016-06-17 06:30:00,,, +2016-06-17 06:45:00,,,26.7121 +2016-06-17 06:48:13,3081.0,-10.475, +2016-06-17 07:00:00,,, +2016-06-17 07:15:00,,, +2016-06-17 07:30:00,,, +2016-06-17 07:42:24,3081.0,-10.4759, +2016-06-17 07:45:00,,,26.862 +2016-06-17 08:00:00,,, +2016-06-17 08:15:00,,, +2016-06-17 08:30:00,,,26.7691 +2016-06-17 08:36:30,3082.0,-10.4759, +2016-06-17 08:45:00,,, +2016-06-17 09:00:00,,, +2016-06-17 09:15:00,,, +2016-06-17 09:30:00,,,26.8167 +2016-06-17 09:30:30,3084.0,-10.4759, +2016-06-17 09:45:00,,, +2016-06-17 10:00:00,,, +2016-06-17 10:15:00,,, +2016-06-17 10:24:30,3087.0,-10.4759, +2016-06-17 10:30:00,,,26.6718 +2016-06-17 10:45:00,,, +2016-06-17 11:00:00,,, +2016-06-17 11:15:00,,,26.7192 +2016-06-17 11:18:30,3087.0,-10.4759, +2016-06-17 11:30:00,,, +2016-06-17 11:45:00,,, +2016-06-17 12:00:00,,, +2016-06-17 12:12:30,3088.0,-10.3861, +2016-06-17 12:15:00,,,26.7168 +2016-06-17 12:30:00,,, +2016-06-17 12:45:00,,, +2016-06-17 13:00:00,,,26.7287 +2016-06-17 13:06:31,3094.0,-10.4426, +2016-06-17 13:15:00,,, +2016-06-17 13:30:00,,, +2016-06-17 13:45:00,,, +2016-06-17 14:00:00,,,26.7168 +2016-06-17 14:00:42,3094.0,-10.4769, +2016-06-17 14:15:00,,, +2016-06-17 14:30:00,,, +2016-06-17 14:45:00,,, +2016-06-17 14:54:53,3091.0,-10.4166, +2016-06-17 15:00:00,,,26.8692 +2016-06-17 15:15:00,,, +2016-06-17 15:30:00,,, +2016-06-17 15:45:00,,,26.8692 +2016-06-17 15:49:00,3091.0,-10.4157, +2016-06-17 16:00:00,,, +2016-06-17 16:15:00,,, +2016-06-17 16:30:00,,, +2016-06-17 16:43:00,3089.0,-10.4462, +2016-06-17 16:45:00,,,26.7739 +2016-06-17 17:00:00,,, +2016-06-17 17:15:00,,, +2016-06-17 17:30:00,,,26.8143 +2016-06-17 17:36:59,3087.0,-10.4157, +2016-06-17 17:45:00,,, +2016-06-17 18:00:00,,, +2016-06-17 18:15:00,,, +2016-06-17 18:30:00,,,26.8644 +2016-06-17 18:30:59,3087.0,-10.4759, +2016-06-17 18:45:00,,, +2016-06-17 19:00:00,,, +2016-06-17 19:15:00,,, +2016-06-17 19:24:59,3087.0,-10.475, +2016-06-17 19:30:00,,,26.7644 +2016-06-17 19:45:00,,, +2016-06-17 20:00:00,,, +2016-06-17 20:15:00,,,26.7192 +2016-06-17 20:18:59,3082.0,-10.5057, +2016-06-17 20:30:00,,, +2016-06-17 20:45:00,,, +2016-06-17 21:00:00,,, +2016-06-17 21:13:10,3080.0,-10.5365, +2016-06-17 21:15:00,,,26.5748 +2016-06-17 21:30:00,,, +2016-06-17 21:45:00,,, +2016-06-17 22:00:00,,,26.8167 +2016-06-17 22:07:20,3079.0,-10.5057, +2016-06-17 22:15:00,,, +2016-06-17 22:30:00,,, +2016-06-17 22:45:00,,, +2016-06-17 23:00:00,,,26.7691 +2016-06-17 23:01:26,3076.0,-10.5365, +2016-06-17 23:15:00,,, +2016-06-17 23:30:00,,, +2016-06-17 23:45:00,,, +2016-06-17 23:55:25,3076.0,-10.5057, +2016-06-18 00:00:00,,,27.2562 +2016-06-18 00:15:00,,, +2016-06-18 00:30:00,,, +2016-06-18 00:45:00,,,27.0608 +2016-06-18 00:49:25,3072.0,-10.5664, +2016-06-18 01:00:00,,, +2016-06-18 01:15:00,,, +2016-06-18 01:30:00,,, +2016-06-18 01:43:24,3072.0,-10.5664, +2016-06-18 01:45:00,,,26.8143 +2016-06-18 02:00:00,,, +2016-06-18 02:15:00,,, +2016-06-18 02:30:00,,,26.8143 +2016-06-18 02:37:23,3071.0,-10.5963, +2016-06-18 02:45:00,,, +2016-06-18 03:00:00,,, +2016-06-18 03:15:00,,, +2016-06-18 03:30:00,,,26.862 +2016-06-18 03:31:22,3070.0,-10.5963, +2016-06-18 03:45:00,,, +2016-06-18 04:00:00,,, +2016-06-18 04:15:00,,, +2016-06-18 04:25:32,3067.0,-10.6264, +2016-06-18 04:30:00,,,26.862 +2016-06-18 04:45:00,,, +2016-06-18 05:00:00,,, +2016-06-18 05:15:00,,,26.7667 +2016-06-18 05:19:41,3066.0,-10.6264, +2016-06-18 05:30:00,,, +2016-06-18 05:45:00,,, +2016-06-18 06:00:00,,, +2016-06-18 06:13:46,3066.0,-10.5954, +2016-06-18 06:15:00,,,26.8167 +2016-06-18 06:30:00,,, +2016-06-18 06:45:00,,, +2016-06-18 07:00:00,,, +2016-06-18 07:07:45,3070.0,-10.5664, +2016-06-18 07:15:00,,,27.1089 +2016-06-18 07:30:00,,, +2016-06-18 07:45:00,,, +2016-06-18 08:00:00,,,27.1113 +2016-06-18 08:01:45,3072.0,-10.5355, +2016-06-18 08:15:00,,, +2016-06-18 08:30:00,,, +2016-06-18 08:45:00,,, +2016-06-18 08:55:44,3078.0,-10.5057, +2016-06-18 09:00:00,,,26.9625 +2016-06-18 09:15:00,,, +2016-06-18 09:30:00,,, +2016-06-18 09:45:00,,,27.1523 +2016-06-18 09:49:44,3083.0,-10.4759, +2016-06-18 10:00:00,,, +2016-06-18 10:15:00,,, +2016-06-18 10:30:00,,, +2016-06-18 10:43:44,3089.0,-10.4157, +2016-06-18 10:45:00,,,27.2538 +2016-06-18 11:00:00,,, +2016-06-18 11:15:00,,, +2016-06-18 11:30:00,,, +2016-06-18 11:37:56,3094.0,-10.3861, +2016-06-18 11:45:00,,,27.2127 +2016-06-18 12:00:00,,, +2016-06-18 12:15:00,,, +2016-06-18 12:30:00,,,27.2151 +2016-06-18 12:32:07,3100.0,-10.3567, +2016-06-18 12:45:00,,, +2016-06-18 13:00:00,,, +2016-06-18 13:15:00,,, +2016-06-18 13:26:14,3105.0,-10.2969, +2016-06-18 13:30:00,,,27.3095 +2016-06-18 13:45:00,,, +2016-06-18 14:00:00,,, +2016-06-18 14:15:00,,,27.261 +2016-06-18 14:20:15,3108.0,-10.3272, +2016-06-18 14:30:00,,, +2016-06-18 14:45:00,,, +2016-06-18 15:00:00,,, +2016-06-18 15:14:16,3107.0,-10.3309, +2016-06-18 15:15:00,,,27.2949 +2016-06-18 15:30:00,,, +2016-06-18 15:45:00,,, +2016-06-18 16:00:00,,, +2016-06-18 16:08:17,3107.0,-10.2667, +2016-06-18 16:15:00,,,27.3095 +2016-06-18 16:30:00,,, +2016-06-18 16:45:00,,, +2016-06-18 17:00:00,,,27.3095 +2016-06-18 17:02:18,3108.0,-10.2969, +2016-06-18 17:15:00,,, +2016-06-18 17:30:00,,, +2016-06-18 17:45:00,,, +2016-06-18 17:56:19,3106.0,-10.2969, +2016-06-18 18:00:00,,,27.3095 +2016-06-18 18:15:00,,, +2016-06-18 18:30:00,,, +2016-06-18 18:45:00,,,27.4091 +2016-06-18 18:50:31,3104.0,-10.2667, +2016-06-18 19:00:00,,, +2016-06-18 19:15:00,,, +2016-06-18 19:30:00,,, +2016-06-18 19:44:43,3103.0,-10.296, +2016-06-18 19:45:00,,,27.4067 +2016-06-18 20:00:00,,, +2016-06-18 20:15:00,,, +2016-06-18 20:30:00,,, +2016-06-18 20:38:50,3100.0,-10.3567, +2016-06-18 20:45:00,,,27.358 +2016-06-18 21:00:00,,, +2016-06-18 21:15:00,,, +2016-06-18 21:30:00,,,27.261 +2016-06-18 21:32:51,3095.0,-10.3557, +2016-06-18 21:45:00,,, +2016-06-18 22:00:00,,, +2016-06-18 22:15:00,,, +2016-06-18 22:26:52,3094.0,-10.3861, +2016-06-18 22:30:00,,,27.656 +2016-06-18 22:45:00,,, +2016-06-18 23:00:00,,, +2016-06-18 23:15:00,,,27.2078 +2016-06-18 23:20:53,3090.0,-10.3861, +2016-06-18 23:30:00,,, +2016-06-18 23:45:00,,, +2016-06-19 00:00:00,,, +2016-06-19 00:14:53,3087.0,-10.4157, +2016-06-19 00:15:00,,,27.1089 +2016-06-19 00:30:00,,, +2016-06-19 00:45:00,,, +2016-06-19 01:00:00,,, +2016-06-19 01:08:53,3084.0,-10.4453, +2016-06-19 01:15:00,,,27.1162 +2016-06-19 01:30:00,,, +2016-06-19 01:45:00,,, +2016-06-19 02:00:00,,,26.9625 +2016-06-19 02:03:04,3080.0,-10.4759, +2016-06-19 02:15:00,,, +2016-06-19 02:30:00,,, +2016-06-19 02:45:00,,, +2016-06-19 02:57:15,3084.0,-10.296, +2016-06-19 03:00:00,,,28.2792 +2016-06-19 03:15:00,,, +2016-06-19 03:30:00,,, +2016-06-19 03:45:00,,,26.9194 +2016-06-19 03:51:21,3078.0,-10.5057, +2016-06-19 04:00:00,,, +2016-06-19 04:15:00,,, +2016-06-19 04:30:00,,, +2016-06-19 04:45:00,,,27.0176 +2016-06-19 04:45:22,3077.0,-10.5057, +2016-06-19 05:00:00,,, +2016-06-19 05:15:00,,, +2016-06-19 05:30:00,,, +2016-06-19 05:39:22,3076.0,-10.475, +2016-06-19 05:45:00,,,27.1186 +2016-06-19 06:00:00,,, +2016-06-19 06:15:00,,, +2016-06-19 06:30:00,,,27.068 +2016-06-19 06:33:22,3076.0,-10.475, +2016-06-19 06:45:00,,, +2016-06-19 07:00:00,,, +2016-06-19 07:15:00,,, +2016-06-19 07:27:23,3079.0,-10.4453, +2016-06-19 07:30:00,,,27.3168 +2016-06-19 07:45:00,,, +2016-06-19 08:00:00,,, +2016-06-19 08:15:00,,,27.1668 +2016-06-19 08:21:23,3080.0,-10.4453, +2016-06-19 08:30:00,,, +2016-06-19 08:45:00,,, +2016-06-19 09:00:00,,, +2016-06-19 09:15:00,,,27.2659 +2016-06-19 09:15:24,3083.0,-10.4148, +2016-06-19 09:30:00,,, +2016-06-19 09:45:00,,, +2016-06-19 10:00:00,,, +2016-06-19 10:09:35,3087.0,-10.3861, +2016-06-19 10:15:00,,,27.2151 +2016-06-19 10:30:00,,, +2016-06-19 10:45:00,,, +2016-06-19 11:00:00,,,26.972 +2016-06-19 11:03:46,3089.0,-10.4157, +2016-06-19 11:15:00,,, +2016-06-19 11:30:00,,, +2016-06-19 11:45:00,,, +2016-06-19 11:57:53,3090.0,-10.4157, +2016-06-19 12:00:00,,,27.4188 +2016-06-19 12:15:00,,, +2016-06-19 12:30:00,,, +2016-06-19 12:45:00,,,27.3192 +2016-06-19 12:51:53,3087.0,-10.3861, +2016-06-19 13:00:00,,, +2016-06-19 13:15:00,,, +2016-06-19 13:30:00,,, +2016-06-19 13:45:00,,,27.2707 +2016-06-19 13:45:53,3088.0,-10.3557, +2016-06-19 14:00:00,,, +2016-06-19 14:15:00,,, +2016-06-19 14:30:00,,, +2016-06-19 14:39:54,3093.0,-10.3557, +2016-06-19 14:45:00,,,27.2199 +2016-06-19 15:00:00,,, +2016-06-19 15:15:00,,, +2016-06-19 15:30:00,,,27.2199 +2016-06-19 15:33:55,3095.0,-10.3567, +2016-06-19 15:45:00,,, +2016-06-19 16:00:00,,, +2016-06-19 16:15:00,,, +2016-06-19 16:27:56,3099.0,-10.3263, +2016-06-19 16:30:00,,,27.2804 +2016-06-19 16:45:00,,, +2016-06-19 17:00:00,,, +2016-06-19 17:15:00,,,27.2248 +2016-06-19 17:22:08,3097.0,-10.3567, +2016-06-19 17:30:00,,, +2016-06-19 17:45:00,,, +2016-06-19 18:00:00,,, +2016-06-19 18:15:00,,,27.0753 +2016-06-19 18:16:20,3095.0,-10.3557, +2016-06-19 18:30:00,,, +2016-06-19 18:45:00,,, +2016-06-19 19:00:00,,, +2016-06-19 19:10:27,3094.0,-10.3852, +2016-06-19 19:15:00,,,27.1258 +2016-06-19 19:30:00,,, +2016-06-19 19:45:00,,, +2016-06-19 20:00:00,,,27.2248 +2016-06-19 20:04:27,3091.0,-10.3852, +2016-06-19 20:15:00,,, +2016-06-19 20:30:00,,, +2016-06-19 20:45:00,,, +2016-06-19 20:58:27,3087.0,-10.4148, +2016-06-19 21:00:00,,,27.0777 +2016-06-19 21:15:00,,, +2016-06-19 21:30:00,,, +2016-06-19 21:45:00,,,27.1258 +2016-06-19 21:52:27,3081.0,-10.475, +2016-06-19 22:00:00,,, +2016-06-19 22:15:00,,, +2016-06-19 22:30:00,,, +2016-06-19 22:45:00,,,27.0704 +2016-06-19 22:46:27,3076.0,-10.5057, +2016-06-19 23:00:00,,, +2016-06-19 23:15:00,,, +2016-06-19 23:30:00,,, +2016-06-19 23:40:26,3072.0,-10.5954, +2016-06-19 23:45:00,,,26.7739 +2016-06-20 00:00:00,,, +2016-06-20 00:15:00,,, +2016-06-20 00:30:00,,,25.5339 +2016-06-20 00:34:37,3065.0,-10.6245, +2016-06-20 00:45:00,,, +2016-06-20 01:00:00,,, +2016-06-20 01:15:00,,, +2016-06-20 01:28:47,3064.0,-10.6565, +2016-06-20 01:30:00,,,26.0043 +2016-06-20 01:45:00,,, +2016-06-20 02:00:00,,, +2016-06-20 02:15:00,,, +2016-06-20 02:22:53,3064.0,-10.5954, +2016-06-20 02:30:00,,,26.9744 +2016-06-20 02:45:00,,, +2016-06-20 03:00:00,,, +2016-06-20 03:15:00,,,26.6789 +2016-06-20 03:16:52,3062.0,-10.6254, +2016-06-20 03:30:00,,, +2016-06-20 03:45:00,,, +2016-06-20 04:00:00,,, +2016-06-20 04:10:52,3058.0,-10.6867, +2016-06-20 04:15:00,,,26.0066 +2016-06-20 04:30:00,,, +2016-06-20 04:45:00,,, +2016-06-20 05:00:00,,,27.121 +2016-06-20 05:04:51,3061.0,-10.6264, +2016-06-20 05:15:00,,, +2016-06-20 05:30:00,,, +2016-06-20 05:45:00,,, +2016-06-20 05:58:50,3060.0,-10.6254, +2016-06-20 06:00:00,,,26.7763 +2016-06-20 06:15:00,,, +2016-06-20 06:30:00,,, +2016-06-20 06:45:00,,, +2016-06-20 06:52:49,3064.0,-10.1475, +2016-06-20 07:00:00,,,28.0318 +2016-06-20 07:15:00,,, +2016-06-20 07:30:00,,, +2016-06-20 07:45:00,,,26.2951 +2016-06-20 07:46:59,3064.0,-10.5954, +2016-06-20 08:00:00,,, +2016-06-20 08:15:00,,, +2016-06-20 08:30:00,,, +2016-06-20 08:41:10,3071.0,-10.5963, +2016-06-20 08:45:00,,,26.724 +2016-06-20 09:00:00,,, +2016-06-20 09:15:00,,, +2016-06-20 09:30:00,,,27.2732 +2016-06-20 09:35:16,3080.0,-10.4759, +2016-06-20 09:45:00,,, +2016-06-20 10:00:00,,, +2016-06-20 10:15:00,,, +2016-06-20 10:29:17,3087.0,-10.4148, +2016-06-20 10:30:00,,,27.2732 +2016-06-20 10:45:00,,, +2016-06-20 11:00:00,,, +2016-06-20 11:15:00,,, +2016-06-20 11:23:18,3094.0,-10.4472, +2016-06-20 11:30:00,,,26.3396 +2016-06-20 11:45:00,,, +2016-06-20 12:00:00,,, +2016-06-20 12:15:00,,,27.1789 +2016-06-20 12:17:19,3101.0,-10.3567, +2016-06-20 12:30:00,,, +2016-06-20 12:45:00,,, +2016-06-20 13:00:00,,, +2016-06-20 13:11:21,3106.0,-10.3861, +2016-06-20 13:15:00,,,26.2928 +2016-06-20 13:30:00,,, +2016-06-20 13:45:00,,, +2016-06-20 14:00:00,,,26.2928 +2016-06-20 14:05:22,3110.0,-10.3567, +2016-06-20 14:15:00,,, +2016-06-20 14:30:00,,, +2016-06-20 14:45:00,,, +2016-06-20 14:59:35,3115.0,-10.296, +2016-06-20 15:00:00,,,26.3888 +2016-06-20 15:15:00,,, +2016-06-20 15:30:00,,, +2016-06-20 15:45:00,,, +2016-06-20 15:53:48,3121.0,-10.2083, +2016-06-20 16:00:00,,,27.2732 +2016-06-20 16:15:00,,, +2016-06-20 16:30:00,,, +2016-06-20 16:45:00,,,26.1994 +2016-06-20 16:47:56,3118.0,-10.2969, +2016-06-20 17:00:00,,, +2016-06-20 17:15:00,,, +2016-06-20 17:30:00,,, +2016-06-20 17:41:58,3119.0,-10.1783, +2016-06-20 17:45:00,,,27.3241 +2016-06-20 18:00:00,,, +2016-06-20 18:15:00,,, +2016-06-20 18:30:00,,,26.1994 +2016-06-20 18:36:00,3112.0,-10.3263, +2016-06-20 18:45:00,,, +2016-06-20 19:00:00,,, +2016-06-20 19:15:00,,, +2016-06-20 19:30:00,,,27.1258 +2016-06-20 19:30:01,3110.0,-10.2375, +2016-06-20 19:45:00,,, +2016-06-20 20:00:00,,, +2016-06-20 20:15:00,,, +2016-06-20 20:24:03,3104.0,-10.3861, +2016-06-20 20:30:00,,,26.104 +2016-06-20 20:45:00,,, +2016-06-20 21:00:00,,, +2016-06-20 21:15:00,,,26.5842 +2016-06-20 21:18:03,3101.0,-10.3852, +2016-06-20 21:30:00,,, +2016-06-20 21:45:00,,, +2016-06-20 22:00:00,,, +2016-06-20 22:12:15,3099.0,-10.296, +2016-06-20 22:15:00,,,27.3241 +2016-06-20 22:30:00,,, +2016-06-20 22:45:00,,, +2016-06-20 23:00:00,,,26.7335 +2016-06-20 23:06:26,3093.0,-10.3861, +2016-06-20 23:15:00,,, +2016-06-20 23:30:00,,, +2016-06-20 23:45:00,,, +2016-06-21 00:00:00,,,27.0248 +2016-06-21 00:00:32,3087.0,-10.3852, +2016-06-21 00:15:00,,, +2016-06-21 00:30:00,,, +2016-06-21 00:45:00,,, +2016-06-21 00:54:32,3082.0,-10.4157, +2016-06-21 01:00:00,,,26.9289 +2016-06-21 01:15:00,,, +2016-06-21 01:30:00,,, +2016-06-21 01:45:00,,,27.2175 +2016-06-21 01:48:32,3081.0,-10.4453, +2016-06-21 02:00:00,,, +2016-06-21 02:15:00,,, +2016-06-21 02:30:00,,, +2016-06-21 02:42:31,3076.0,-10.5048, +2016-06-21 02:45:00,,,26.3888 +2016-06-21 03:00:00,,, +2016-06-21 03:15:00,,, +2016-06-21 03:30:00,,,26.3911 +2016-06-21 03:36:30,3075.0,-10.5057, +2016-06-21 03:45:00,,, +2016-06-21 04:00:00,,, +2016-06-21 04:15:00,,, +2016-06-21 04:30:00,,,26.0136 +2016-06-21 04:30:30,3073.0,-10.5664, +2016-06-21 04:45:00,,, +2016-06-21 05:00:00,,, +2016-06-21 05:15:00,,, +2016-06-21 05:24:41,3075.0,-10.5057, +2016-06-21 05:30:00,,,26.5346 +2016-06-21 05:45:00,,, +2016-06-21 06:00:00,,, +2016-06-21 06:15:00,,,26.4428 +2016-06-21 06:18:51,3075.0,-10.5057, +2016-06-21 06:30:00,,, +2016-06-21 06:45:00,,, +2016-06-21 07:00:00,,, +2016-06-21 07:12:57,3077.0,-10.475, +2016-06-21 07:15:00,,,26.3982 +2016-06-21 07:30:00,,, +2016-06-21 07:45:00,,, +2016-06-21 08:00:00,,,26.9864 +2016-06-21 08:06:56,3080.0,-10.4148, +2016-06-21 08:15:00,,, +2016-06-21 08:30:00,,, +2016-06-21 08:45:00,,, +2016-06-21 09:00:00,,,27.4286 +2016-06-21 09:00:56,3083.0,-10.3557, +2016-06-21 09:15:00,,, +2016-06-21 09:30:00,,, +2016-06-21 09:45:00,,, +2016-06-21 09:54:56,3087.0,-10.4157, +2016-06-21 10:00:00,,,26.7882 +2016-06-21 10:15:00,,, +2016-06-21 10:30:00,,, +2016-06-21 10:45:00,,,26.7335 +2016-06-21 10:48:57,3091.0,-10.4157, +2016-06-21 11:00:00,,, +2016-06-21 11:15:00,,, +2016-06-21 11:30:00,,, +2016-06-21 11:42:58,3094.0,-10.3548, +2016-06-21 11:45:00,,,26.4475 +2016-06-21 12:00:00,,, +2016-06-21 12:15:00,,, +2016-06-21 12:30:00,,,27.3313 +2016-06-21 12:37:10,3100.0,-10.2375, +2016-06-21 12:45:00,,, +2016-06-21 13:00:00,,, +2016-06-21 13:15:00,,, +2016-06-21 13:30:00,,,27.1354 +2016-06-21 13:31:22,3106.0,-10.2384, +2016-06-21 13:45:00,,, +2016-06-21 14:00:00,,, +2016-06-21 14:15:00,,, +2016-06-21 14:25:29,3110.0,-10.1792, +2016-06-21 14:30:00,,,27.3362 +2016-06-21 14:45:00,,, +2016-06-21 15:00:00,,, +2016-06-21 15:15:00,,,27.2393 +2016-06-21 15:19:31,3115.0,-10.1493, +2016-06-21 15:30:00,,, +2016-06-21 15:45:00,,, +2016-06-21 16:00:00,,, +2016-06-21 16:13:33,3118.0,-10.0616, +2016-06-21 16:15:00,,,27.4384 +2016-06-21 16:30:00,,, +2016-06-21 16:45:00,,, +2016-06-21 17:00:00,,, +2016-06-21 17:07:35,3117.0,-10.1493, +2016-06-21 17:15:00,,,27.0897 +2016-06-21 17:30:00,,, +2016-06-21 17:45:00,,, +2016-06-21 18:00:00,,,27.2393 +2016-06-21 18:01:37,3117.0,-10.1194, +2016-06-21 18:15:00,,, +2016-06-21 18:30:00,,, +2016-06-21 18:45:00,,, +2016-06-21 18:55:39,3114.0,-10.1783, +2016-06-21 19:00:00,,,26.8501 +2016-06-21 19:15:00,,, +2016-06-21 19:30:00,,, +2016-06-21 19:45:00,,,26.843000000000004 +2016-06-21 19:49:51,3113.0,-10.1783, +2016-06-21 20:00:00,,, +2016-06-21 20:15:00,,, +2016-06-21 20:30:00,,, +2016-06-21 20:44:04,3109.0,-10.2083, +2016-06-21 20:45:00,,,26.9003 +2016-06-21 21:00:00,,, +2016-06-21 21:15:00,,, +2016-06-21 21:30:00,,, +2016-06-21 21:38:11,3106.0,-10.1484, +2016-06-21 21:45:00,,,27.2465 +2016-06-21 22:00:00,,, +2016-06-21 22:15:00,,, +2016-06-21 22:30:00,,,27.2465 +2016-06-21 22:32:11,3101.0,-10.1783, +2016-06-21 22:45:00,,, +2016-06-21 23:00:00,,, +2016-06-21 23:15:00,,, +2016-06-21 23:26:12,3100.0,-10.1493, +2016-06-21 23:30:00,,,27.2974 +2016-06-21 23:45:00,,, +2016-06-22 00:00:00,,, +2016-06-22 00:15:00,,, +2016-06-22 00:30:00,,, +2016-06-22 00:45:00,,, +2016-06-22 01:00:00,,, +2016-06-22 01:14:14,3094.0,-10.2375, +2016-06-22 01:15:00,,,27.1982 +2016-06-22 01:30:00,,, +2016-06-22 01:45:00,,, +2016-06-22 02:00:00,,, +2016-06-22 02:08:14,3094.0,-10.2375, +2016-06-22 02:15:00,,,27.3459 +2016-06-22 02:30:00,,, +2016-06-22 02:45:00,,, +2016-06-22 03:00:00,,,27.2465 +2016-06-22 03:02:25,3091.0,-10.2375, +2016-06-22 03:15:00,,, +2016-06-22 03:30:00,,, +2016-06-22 03:45:00,,, +2016-06-22 03:56:36,3088.0,-10.2366, +2016-06-22 04:00:00,,,27.1958 +2016-06-22 04:15:00,,, +2016-06-22 04:30:00,,, +2016-06-22 04:45:00,,,26.8501 +2016-06-22 04:50:43,3087.0,-10.3254, +2016-06-22 05:00:00,,, +2016-06-22 05:15:00,,, +2016-06-22 05:30:00,,, +2016-06-22 05:44:43,3090.0,-9.9736, +2016-06-22 05:45:00,,,27.4481 +2016-06-22 06:00:00,,, +2016-06-22 06:15:00,,, +2016-06-22 06:30:00,,, +2016-06-22 06:38:44,3088.0,-10.3254, +2016-06-22 06:45:00,,,26.6504 +2016-06-22 07:00:00,,, +2016-06-22 07:15:00,,, +2016-06-22 07:30:00,,,27.1475 +2016-06-22 07:32:44,3093.0,-10.2375, +2016-06-22 07:45:00,,, +2016-06-22 08:00:00,,, +2016-06-22 08:15:00,,, +2016-06-22 08:26:45,3094.0,-10.2375, +2016-06-22 08:30:00,,,27.1041 +2016-06-22 08:45:00,,, +2016-06-22 09:00:00,,, +2016-06-22 09:15:00,,,27.0488 +2016-06-22 09:20:46,3099.0,-10.1783, +2016-06-22 09:30:00,,, +2016-06-22 09:45:00,,, +2016-06-22 10:00:00,,, +2016-06-22 10:14:58,3104.0,-10.1783, +2016-06-22 10:15:00,,,27.056 +2016-06-22 10:30:00,,, +2016-06-22 10:45:00,,, +2016-06-22 11:00:00,,, +2016-06-22 11:09:11,3110.0,-10.1212, +2016-06-22 11:15:00,,,27.3047 +2016-06-22 11:30:00,,, +2016-06-22 11:45:00,,, +2016-06-22 12:00:00,,,27.2514 +2016-06-22 12:03:19,3115.0,-10.0616, +2016-06-22 12:15:00,,, +2016-06-22 12:30:00,,, +2016-06-22 12:45:00,,, +2016-06-22 12:57:21,3122.0,-10.004, +2016-06-22 13:00:00,,,27.3047 +2016-06-22 13:15:00,,, +2016-06-22 13:30:00,,, +2016-06-22 13:45:00,,,27.2079 +2016-06-22 13:51:23,3128.0,-9.9745, +2016-06-22 14:00:00,,, +2016-06-22 14:15:00,,, +2016-06-22 14:30:00,,, +2016-06-22 14:45:00,,,27.2079 +2016-06-22 14:45:26,3132.0,-9.9458, +2016-06-22 15:00:00,,, +2016-06-22 15:15:00,,, +2016-06-22 15:30:00,,, +2016-06-22 15:39:29,3137.0,-9.9467, +2016-06-22 15:45:00,,,26.7763 +2016-06-22 16:00:00,,, +2016-06-22 16:15:00,,, +2016-06-22 16:30:00,,,27.0633 +2016-06-22 16:33:32,3138.0,-9.9467, +2016-06-22 16:45:00,,, +2016-06-22 17:00:00,,, +2016-06-22 17:15:00,,, +2016-06-22 17:27:46,3138.0,-9.9467, +2016-06-22 17:30:00,,,27.0633 +2016-06-22 17:45:00,,, +2016-06-22 18:00:00,,, +2016-06-22 18:15:00,,,27.3557 +2016-06-22 18:21:59,3137.0,-9.8594, +2016-06-22 18:30:00,,, +2016-06-22 18:45:00,,, +2016-06-22 19:00:00,,, +2016-06-22 19:15:00,,,27.1114 +2016-06-22 19:16:07,3132.0,-9.9467, +2016-06-22 19:30:00,,, +2016-06-22 19:45:00,,, +2016-06-22 20:00:00,,, +2016-06-22 20:10:10,3127.0,-9.9745, +2016-06-22 20:15:00,,,27.1114 +2016-06-22 20:30:00,,, +2016-06-22 20:45:00,,, +2016-06-22 21:00:00,,,27.0152 +2016-06-22 21:04:12,3121.0,-10.0328, +2016-06-22 21:15:00,,, +2016-06-22 21:30:00,,, +2016-06-22 21:45:00,,, +2016-06-22 21:58:14,3116.0,-10.0616, +2016-06-22 22:00:00,,,27.1138 +2016-06-22 22:15:00,,, +2016-06-22 22:30:00,,, +2016-06-22 22:45:00,,,27.1186 +2016-06-22 22:52:15,3112.0,-10.0328, +2016-06-22 23:00:00,,, +2016-06-22 23:15:00,,, +2016-06-22 23:30:00,,, +2016-06-22 23:45:00,,,27.0705 +2016-06-22 23:46:16,3108.0,-10.0625, +2016-06-23 00:00:00,,, +2016-06-23 00:15:00,,, +2016-06-23 00:30:00,,, +2016-06-23 00:40:29,3106.0,-10.0914, +2016-06-23 00:45:00,,,26.9793 +2016-06-23 01:00:00,,, +2016-06-23 01:15:00,,, +2016-06-23 01:30:00,,,26.9793 +2016-06-23 01:34:40,3103.0,-10.1203, +2016-06-23 01:45:00,,, +2016-06-23 02:00:00,,, +2016-06-23 02:15:00,,, +2016-06-23 02:28:48,3101.0,-10.0896, +2016-06-23 02:30:00,,,27.1234 +2016-06-23 02:45:00,,, +2016-06-23 03:00:00,,, +2016-06-23 03:15:00,,, +2016-06-23 03:22:49,3099.0,-10.1203, +2016-06-23 03:30:00,,,27.1813 +2016-06-23 03:45:00,,, +2016-06-23 04:00:00,,, +2016-06-23 04:15:00,,,27.121 +2016-06-23 04:16:51,3096.0,-10.1493, +2016-06-23 04:30:00,,, +2016-06-23 04:45:00,,, +2016-06-23 05:00:00,,, +2016-06-23 05:10:52,3094.0,-10.1493, +2016-06-23 05:15:00,,,27.1307 +2016-06-23 05:30:00,,, +2016-06-23 05:45:00,,, +2016-06-23 06:00:00,,,27.1307 +2016-06-23 06:04:54,3095.0,-10.1194, +2016-06-23 06:15:00,,, +2016-06-23 06:30:00,,, +2016-06-23 06:45:00,,, +2016-06-23 06:58:55,3099.0,-10.1203, +2016-06-23 07:00:00,,,27.1307 +2016-06-23 07:15:00,,, +2016-06-23 07:30:00,,, +2016-06-23 07:45:00,,, +2016-06-23 07:53:08,3104.0,-10.0328, +2016-06-23 08:00:00,,,27.1331 +2016-06-23 08:15:00,,, +2016-06-23 08:30:00,,, +2016-06-23 08:45:00,,,27.1331 +2016-06-23 08:47:21,3110.0,-10.0032, +2016-06-23 09:00:00,,, +2016-06-23 09:15:00,,, +2016-06-23 09:30:00,,, +2016-06-23 09:41:28,3121.0,-9.9467, +2016-06-23 09:45:00,,,27.1813 +2016-06-23 10:00:00,,, +2016-06-23 10:15:00,,, +2016-06-23 10:30:00,,,27.0392 +2016-06-23 10:35:31,3131.0,-9.8594, +2016-06-23 10:45:00,,, +2016-06-23 11:00:00,,, +2016-06-23 11:15:00,,, +2016-06-23 11:29:34,3141.0,-9.8603, +2016-06-23 11:30:00,,,26.9888 +2016-06-23 11:45:00,,, +2016-06-23 12:00:00,,, +2016-06-23 12:15:00,,, +2016-06-23 12:23:38,3150.0,-9.8035, +2016-06-23 12:30:00,,,26.8931 +2016-06-23 12:45:00,,, +2016-06-23 13:00:00,,, +2016-06-23 13:15:00,,,26.8931 +2016-06-23 13:17:42,3157.0,-9.746, +2016-06-23 13:30:00,,, +2016-06-23 13:45:00,,, +2016-06-23 14:00:00,,, +2016-06-23 14:11:47,3163.0,-9.717, +2016-06-23 14:15:00,,,26.8454 +2016-06-23 14:30:00,,, +2016-06-23 14:45:00,,, +2016-06-23 15:00:00,,,26.8931 +2016-06-23 15:06:02,3167.0,-9.6888, +2016-06-23 15:15:00,,, +2016-06-23 15:30:00,,, +2016-06-23 15:45:00,,, +2016-06-23 16:00:00,,,26.8931 +2016-06-23 16:00:18,3170.0,-9.6897, +2016-06-23 16:15:00,,, +2016-06-23 16:30:00,,, +2016-06-23 16:45:00,,, +2016-06-23 16:54:28,3170.0,-9.6607, +2016-06-23 17:00:00,,,26.8931 +2016-06-23 17:15:00,,, +2016-06-23 17:30:00,,, +2016-06-23 17:45:00,,,26.8454 +2016-06-23 17:48:33,3166.0,-9.6888, +2016-06-23 18:00:00,,, +2016-06-23 18:15:00,,, +2016-06-23 18:30:00,,, +2016-06-23 18:42:37,3163.0,-9.6607, +2016-06-23 18:45:00,,,26.7572 +2016-06-23 19:00:00,,, +2016-06-23 19:15:00,,, +2016-06-23 19:30:00,,,26.7596 +2016-06-23 19:36:42,3160.0,-9.7178, +2016-06-23 19:45:00,,, +2016-06-23 20:00:00,,, +2016-06-23 20:15:00,,, +2016-06-23 20:30:00,,,26.8525 +2016-06-23 20:30:46,3154.0,-9.746, +2016-06-23 20:45:00,,, +2016-06-23 21:00:00,,, +2016-06-23 21:15:00,,, +2016-06-23 21:24:50,3149.0,-9.7743, +2016-06-23 21:30:00,,,26.812 +2016-06-23 21:45:00,,, +2016-06-23 22:00:00,,, +2016-06-23 22:15:00,,,26.8597 +2016-06-23 22:18:53,3145.0,-9.7743, +2016-06-23 22:30:00,,, +2016-06-23 22:45:00,,, +2016-06-23 23:00:00,,, +2016-06-23 23:13:08,3142.0,-9.8035, +2016-06-23 23:15:00,,,26.8597 +2016-06-23 23:30:00,,, +2016-06-23 23:45:00,,, +2016-06-24 00:00:00,,,26.8191 +2016-06-24 00:07:22,3137.0,-9.8318, +2016-06-24 00:15:00,,, +2016-06-24 00:30:00,,, +2016-06-24 00:45:00,,, +2016-06-24 01:00:00,,,26.8191 +2016-06-24 01:01:31,3132.0,-9.8611, +2016-06-24 01:15:00,,, +2016-06-24 01:30:00,,, +2016-06-24 01:45:00,,, +2016-06-24 01:55:34,3128.0,-9.8603, +2016-06-24 02:00:00,,,26.8669 +2016-06-24 02:15:00,,, +2016-06-24 02:30:00,,, +2016-06-24 02:45:00,,,26.8669 +2016-06-24 02:49:37,3124.0,-9.8594, +2016-06-24 03:00:00,,, +2016-06-24 03:15:00,,, +2016-06-24 03:30:00,,, +2016-06-24 03:43:39,3123.0,-9.9181, +2016-06-24 03:45:00,,,26.8669 +2016-06-24 04:00:00,,, +2016-06-24 04:15:00,,, +2016-06-24 04:30:00,,, +2016-06-24 04:37:41,3119.0,-9.9173, +2016-06-24 04:45:00,,,26.8191 +2016-06-24 05:00:00,,, +2016-06-24 05:15:00,,, +2016-06-24 05:30:00,,,26.8191 +2016-06-24 05:31:42,3115.0,-9.9458, +2016-06-24 05:45:00,,, +2016-06-24 06:00:00,,, +2016-06-24 06:15:00,,, +2016-06-24 06:25:54,3111.0,-9.9458, +2016-06-24 06:30:00,,,26.8191 +2016-06-24 06:45:00,,, +2016-06-24 07:00:00,,, +2016-06-24 07:15:00,,,26.8239 +2016-06-24 07:20:07,3111.0,-9.9467, +2016-06-24 07:30:00,,, +2016-06-24 07:45:00,,, +2016-06-24 08:00:00,,, +2016-06-24 08:14:15,3115.0,-9.8887, +2016-06-24 08:15:00,,,26.8239 +2016-06-24 08:30:00,,, +2016-06-24 08:45:00,,, +2016-06-24 09:00:00,,, +2016-06-24 09:08:18,3123.0,-9.8603, +2016-06-24 09:15:00,,,26.8335 +2016-06-24 09:30:00,,, +2016-06-24 09:45:00,,, +2016-06-24 10:00:00,,,26.7382 +2016-06-24 10:02:21,3131.0,-9.8026, +2016-06-24 10:15:00,,, +2016-06-24 10:30:00,,, +2016-06-24 10:45:00,,, +2016-06-24 10:56:24,3142.0,-9.746, +2016-06-24 11:00:00,,,26.7858 +2016-06-24 11:15:00,,, +2016-06-24 11:30:00,,, +2016-06-24 11:45:00,,,26.7858 +2016-06-24 11:50:28,3150.0,-9.6607, +2016-06-24 12:00:00,,, +2016-06-24 12:15:00,,, +2016-06-24 12:30:00,,, +2016-06-24 12:44:31,3156.0,-9.7187, +2016-06-24 12:45:00,,,26.596 +2016-06-24 13:00:00,,, +2016-06-24 13:15:00,,, +2016-06-24 13:30:00,,, +2016-06-24 13:38:46,3163.0,-9.6616, +2016-06-24 13:45:00,,,26.6008 +2016-06-24 14:00:00,,, +2016-06-24 14:15:00,,, +2016-06-24 14:30:00,,,26.6008 +2016-06-24 14:33:02,3168.0,-9.6327, +2016-06-24 14:45:00,,, +2016-06-24 15:00:00,,, +2016-06-24 15:15:00,,, +2016-06-24 15:27:12,3171.0,-9.6327, +2016-06-24 15:30:00,,,26.6031 +2016-06-24 15:45:00,,, +2016-06-24 16:00:00,,, +2016-06-24 16:15:00,,,26.4616 +2016-06-24 16:21:17,3171.0,-9.6047, +2016-06-24 16:30:00,,, +2016-06-24 16:45:00,,, +2016-06-24 17:00:00,,, +2016-06-24 17:15:00,,,26.6055 +2016-06-24 17:15:22,3174.0,-9.24, +2016-06-24 17:30:00,,, +2016-06-24 17:45:00,,, +2016-06-24 18:00:00,,, +2016-06-24 18:09:25,3152.0,-9.7187, +2016-06-24 18:15:00,,,26.4616 +2016-06-24 18:30:00,,, +2016-06-24 18:45:00,,, +2016-06-24 19:00:00,,,26.4592 +2016-06-24 19:03:28,3132.0,-9.8035, +2016-06-24 19:15:00,,, +2016-06-24 19:30:00,,, +2016-06-24 19:45:00,,, +2016-06-24 19:57:40,3121.0,-9.8026, +2016-06-24 20:00:00,,,26.4075 +2016-06-24 20:15:00,,, +2016-06-24 20:30:00,,, +2016-06-24 20:45:00,,,26.3137 +2016-06-24 20:51:53,3115.0,-9.8594, +2016-06-24 21:00:00,,, +2016-06-24 21:15:00,,, +2016-06-24 21:30:00,,, +2016-06-24 21:45:00,,,26.3114 +2016-06-24 21:46:01,3110.0,-9.9173, +2016-06-24 22:00:00,,, +2016-06-24 22:15:00,,, +2016-06-24 22:30:00,,, +2016-06-24 22:40:02,3108.0,-9.9467, +2016-06-24 22:45:00,,,26.4146 +2016-06-24 23:00:00,,, +2016-06-24 23:15:00,,, +2016-06-24 23:30:00,,,26.3676 +2016-06-24 23:34:04,3104.0,-9.9458, +2016-06-24 23:45:00,,, +2016-06-25 00:00:00,,, +2016-06-25 00:15:00,,, +2016-06-25 00:28:05,3101.0,-9.9458, +2016-06-25 00:30:00,,,26.5134 +2016-06-25 00:45:00,,, +2016-06-25 01:00:00,,, +2016-06-25 01:15:00,,,26.4686 +2016-06-25 01:22:07,3098.0,-9.9745, +2016-06-25 01:30:00,,, +2016-06-25 01:45:00,,, +2016-06-25 02:00:00,,, +2016-06-25 02:15:00,,,26.471 +2016-06-25 02:16:08,3095.0,-9.9745, +2016-06-25 02:30:00,,, +2016-06-25 02:45:00,,, +2016-06-25 03:00:00,,, +2016-06-25 03:10:20,3094.0,-9.9736, +2016-06-25 03:15:00,,,26.471 +2016-06-25 03:30:00,,, +2016-06-25 03:45:00,,, +2016-06-25 04:00:00,,,26.5252 +2016-06-25 04:04:32,3094.0,-9.9736, +2016-06-25 04:15:00,,, +2016-06-25 04:30:00,,, +2016-06-25 04:45:00,,, +2016-06-25 04:58:39,3094.0,-9.9736, +2016-06-25 05:00:00,,,26.5252 +2016-06-25 05:15:00,,, +2016-06-25 05:30:00,,, +2016-06-25 05:45:00,,, +2016-06-25 05:52:40,3093.0,-10.0032, +2016-06-25 06:00:00,,,26.4287 +2016-06-25 06:15:00,,, +2016-06-25 06:30:00,,, +2016-06-25 06:45:00,,,26.4781 +2016-06-25 06:46:42,3094.0,-9.9736, +2016-06-25 07:00:00,,, +2016-06-25 07:15:00,,, +2016-06-25 07:30:00,,, +2016-06-25 07:40:43,3099.0,-9.945, +2016-06-25 07:45:00,,,26.4287 +2016-06-25 08:00:00,,, +2016-06-25 08:15:00,,, +2016-06-25 08:30:00,,,26.4781 +2016-06-25 08:34:45,3104.0,-9.9458, +2016-06-25 08:45:00,,, +2016-06-25 09:00:00,,, +2016-06-25 09:15:00,,, +2016-06-25 09:28:46,3106.0,-9.9736, +2016-06-25 09:30:00,,,26.2343 +2016-06-25 09:45:00,,, +2016-06-25 10:00:00,,, +2016-06-25 10:15:00,,, +2016-06-25 10:22:59,3109.0,-9.9745, +2016-06-25 10:30:00,,,26.2366 +2016-06-25 10:45:00,,, +2016-06-25 11:00:00,,, +2016-06-25 11:15:00,,,26.3325 +2016-06-25 11:17:12,3113.0,-9.9467, +2016-06-25 11:30:00,,, +2016-06-25 11:45:00,,, +2016-06-25 12:00:00,,, +2016-06-25 12:11:20,3115.0,-9.9173, +2016-06-25 12:15:00,,,26.4287 +2016-06-25 12:30:00,,, +2016-06-25 12:45:00,,, +2016-06-25 13:00:00,,,26.3348 +2016-06-25 13:05:22,3118.0,-9.9173, +2016-06-25 13:15:00,,, +2016-06-25 13:30:00,,, +2016-06-25 13:45:00,,, +2016-06-25 13:59:24,3118.0,-9.9173, +2016-06-25 14:00:00,,,26.288 +2016-06-25 14:15:00,,, +2016-06-25 14:30:00,,, +2016-06-25 14:45:00,,, +2016-06-25 14:53:25,3117.0,-9.8594, +2016-06-25 15:00:00,,,26.431 +2016-06-25 15:15:00,,, +2016-06-25 15:30:00,,, +2016-06-25 15:45:00,,,26.3371 +2016-06-25 15:47:28,3117.0,-9.8594, +2016-06-25 16:00:00,,, +2016-06-25 16:15:00,,, +2016-06-25 16:30:00,,, +2016-06-25 16:41:29,3119.0,-9.8594, +2016-06-25 16:45:00,,,26.384 +2016-06-25 17:00:00,,, +2016-06-25 17:15:00,,, +2016-06-25 17:30:00,,,26.4357 +2016-06-25 17:35:32,3121.0,-9.831, +2016-06-25 17:45:00,,, +2016-06-25 18:00:00,,, +2016-06-25 18:15:00,,, +2016-06-25 18:29:34,3121.0,-9.8594, +2016-06-25 18:30:00,,,26.3371 +2016-06-25 18:45:00,,, +2016-06-25 19:00:00,,, +2016-06-25 19:15:00,,, +2016-06-25 19:23:36,3118.0,-9.8887, +2016-06-25 19:30:00,,,26.3371 +2016-06-25 19:45:00,,, +2016-06-25 20:00:00,,, +2016-06-25 20:15:00,,,26.2413 +2016-06-25 20:17:49,3114.0,-9.9467, +2016-06-25 20:30:00,,, +2016-06-25 20:45:00,,, +2016-06-25 21:00:00,,, +2016-06-25 21:12:01,3109.0,-9.9754, +2016-06-25 21:15:00,,,26.3371 +2016-06-25 21:30:00,,, +2016-06-25 21:45:00,,, +2016-06-25 22:00:00,,,26.2413 +2016-06-25 22:06:09,3096.0,-10.0328, +2016-06-25 22:15:00,,, +2016-06-25 22:30:00,,, +2016-06-25 22:45:00,,, +2016-06-25 23:00:00,,,26.1434 +2016-06-25 23:00:10,3087.0,-10.0914, +2016-06-25 23:15:00,,, +2016-06-25 23:30:00,,, +2016-06-25 23:45:00,,, +2016-06-25 23:54:11,3079.0,-10.1194, +2016-06-26 00:00:00,,,26.2413 +2016-06-26 00:15:00,,, +2016-06-26 00:30:00,,, +2016-06-26 00:45:00,,,26.0018 +2016-06-26 00:48:12,3073.0,-10.1783, +2016-06-26 01:00:00,,, +2016-06-26 01:15:00,,, +2016-06-26 01:30:00,,, +2016-06-26 01:42:12,3072.0,-10.1783, +2016-06-26 01:45:00,,,26.141 +2016-06-26 02:00:00,,, +2016-06-26 02:15:00,,, +2016-06-26 02:30:00,,,26.141 +2016-06-26 02:36:12,3070.0,-10.2375, +2016-06-26 02:45:00,,, +2016-06-26 03:00:00,,, +2016-06-26 03:15:00,,, +2016-06-26 03:30:00,,,26.1876 +2016-06-26 03:30:23,3067.0,-10.2375, +2016-06-26 03:45:00,,, +2016-06-26 04:00:00,,, +2016-06-26 04:15:00,,, +2016-06-26 04:24:34,3065.0,-10.2658, +2016-06-26 04:30:00,,,26.0946 +2016-06-26 04:45:00,,, +2016-06-26 05:00:00,,, +2016-06-26 05:15:00,,,26.141 +2016-06-26 05:18:40,3064.0,-10.2658, +2016-06-26 05:30:00,,, +2016-06-26 05:45:00,,, +2016-06-26 06:00:00,,, +2016-06-26 06:12:40,3064.0,-10.2658, +2016-06-26 06:15:00,,,26.0946 +2016-06-26 06:30:00,,, +2016-06-26 06:45:00,,, +2016-06-26 07:00:00,,,26.0087 +2016-06-26 07:06:40,3065.0,-10.2366, +2016-06-26 07:15:00,,, +2016-06-26 07:30:00,,, +2016-06-26 07:45:00,,, +2016-06-26 08:00:00,,,26.6268 +2016-06-26 08:00:40,3072.0,-10.0896, +2016-06-26 08:15:00,,, +2016-06-26 08:30:00,,, +2016-06-26 08:45:00,,, +2016-06-26 08:54:40,3072.0,-10.2074, +2016-06-26 09:00:00,,,26.0969 +2016-06-26 09:15:00,,, +2016-06-26 09:30:00,,, +2016-06-26 09:45:00,,,26.1923 +2016-06-26 09:48:40,3078.0,-10.1484, +2016-06-26 10:00:00,,, +2016-06-26 10:15:00,,, +2016-06-26 10:30:00,,, +2016-06-26 10:42:52,3082.0,-10.1194, +2016-06-26 10:45:00,,,26.288 +2016-06-26 11:00:00,,, +2016-06-26 11:15:00,,, +2016-06-26 11:30:00,,,26.2413 +2016-06-26 11:37:04,3089.0,-10.1203, +2016-06-26 11:45:00,,, +2016-06-26 12:00:00,,, +2016-06-26 12:15:00,,, +2016-06-26 12:30:00,,,26.2413 +2016-06-26 12:31:11,3095.0,-10.0616, +2016-06-26 12:45:00,,, +2016-06-26 13:00:00,,, +2016-06-26 13:15:00,,, +2016-06-26 13:25:12,3100.0,-10.0616, +2016-06-26 13:30:00,,,26.2413 +2016-06-26 13:45:00,,, +2016-06-26 14:00:00,,, +2016-06-26 14:15:00,,,26.0969 +2016-06-26 14:19:14,3103.0,-10.0616, +2016-06-26 14:30:00,,, +2016-06-26 14:45:00,,, +2016-06-26 15:00:00,,, +2016-06-26 15:13:15,3106.0,-10.0328, +2016-06-26 15:15:00,,,26.1015 +2016-06-26 15:30:00,,, +2016-06-26 15:45:00,,, +2016-06-26 16:00:00,,,26.1015 +2016-06-26 16:07:28,3106.0,-10.0319, +2016-06-26 16:15:00,,, +2016-06-26 16:30:00,,, +2016-06-26 16:45:00,,, +2016-06-26 17:00:00,,,26.0528 +2016-06-26 17:01:41,3104.0,-10.0319, +2016-06-26 17:15:00,,, +2016-06-26 17:30:00,,, +2016-06-26 17:45:00,,, +2016-06-26 17:55:48,3103.0,-10.0319, +2016-06-26 18:00:00,,,26.1015 +2016-06-26 18:15:00,,, +2016-06-26 18:30:00,,, +2016-06-26 18:45:00,,,26.0528 +2016-06-26 18:49:50,3100.0,-10.0616, +2016-06-26 19:00:00,,, +2016-06-26 19:15:00,,, +2016-06-26 19:30:00,,, +2016-06-26 19:43:52,3096.0,-10.0896, +2016-06-26 19:45:00,,,25.9117 +2016-06-26 20:00:00,,, +2016-06-26 20:15:00,,, +2016-06-26 20:30:00,,, +2016-06-26 20:37:53,3092.0,-10.1484, +2016-06-26 20:45:00,,,25.8172 +2016-06-26 21:00:00,,, +2016-06-26 21:15:00,,, +2016-06-26 21:30:00,,,25.8149 +2016-06-26 21:31:54,3086.0,-10.1783, +2016-06-26 21:45:00,,, +2016-06-26 22:00:00,,, +2016-06-26 22:15:00,,, +2016-06-26 22:25:55,3080.0,-10.2375, +2016-06-26 22:30:00,,,25.7208 +2016-06-26 22:45:00,,, +2016-06-26 23:00:00,,, +2016-06-26 23:15:00,,,25.529 +2016-06-26 23:20:07,3075.0,-10.2366, +2016-06-26 23:30:00,,, +2016-06-26 23:45:00,,, +2016-06-27 00:00:00,,, +2016-06-27 00:14:18,3072.0,-10.2658, +2016-06-27 00:15:00,,,25.6225 +2016-06-27 00:30:00,,, +2016-06-27 00:45:00,,, +2016-06-27 01:00:00,,, +2016-06-27 01:08:25,3071.0,-10.296, +2016-06-27 01:15:00,,,25.529 +2016-06-27 01:30:00,,, +2016-06-27 01:45:00,,, +2016-06-27 02:00:00,,,25.6225 +2016-06-27 02:02:26,3068.0,-10.296, +2016-06-27 02:15:00,,, +2016-06-27 02:30:00,,, +2016-06-27 02:45:00,,, +2016-06-27 02:56:26,3065.0,-10.3557, +2016-06-27 03:00:00,,,25.529 +2016-06-27 03:15:00,,, +2016-06-27 03:30:00,,, +2016-06-27 03:45:00,,,25.529 +2016-06-27 03:50:26,3064.0,-10.3557, +2016-06-27 04:00:00,,, +2016-06-27 04:15:00,,, +2016-06-27 04:30:00,,, +2016-06-27 04:44:25,3062.0,-10.3548, +2016-06-27 04:45:00,,,25.5768 +2016-06-27 05:00:00,,, +2016-06-27 05:15:00,,, +2016-06-27 05:30:00,,, +2016-06-27 05:38:24,3060.0,-10.3852, +2016-06-27 05:45:00,,,25.5746 +2016-06-27 06:00:00,,, +2016-06-27 06:15:00,,, +2016-06-27 06:30:00,,,25.5768 +2016-06-27 06:32:35,3059.0,-10.3548, +2016-06-27 06:45:00,,, +2016-06-27 07:00:00,,, +2016-06-27 07:15:00,,, +2016-06-27 07:26:46,3061.0,-10.3557, +2016-06-27 07:30:00,,,25.6225 +2016-06-27 07:45:00,,, +2016-06-27 08:00:00,,, +2016-06-27 08:15:00,,,25.5746 +2016-06-27 08:20:52,3065.0,-10.3557, +2016-06-27 08:30:00,,, +2016-06-27 08:45:00,,, +2016-06-27 09:00:00,,, +2016-06-27 09:14:52,3071.0,-10.296, +2016-06-27 09:15:00,,,25.5335 +2016-06-27 09:30:00,,, +2016-06-27 09:45:00,,, +2016-06-27 10:00:00,,, +2016-06-27 10:08:53,3076.0,-10.2677, +2016-06-27 10:15:00,,,25.5814 +2016-06-27 10:30:00,,, +2016-06-27 10:45:00,,, +2016-06-27 11:00:00,,,25.4404 +2016-06-27 11:02:53,3081.0,-10.2375, +2016-06-27 11:15:00,,, +2016-06-27 11:30:00,,, +2016-06-27 11:45:00,,, +2016-06-27 11:56:55,3082.0,-10.3263, +2016-06-27 12:00:00,,,24.025 +2016-06-27 12:15:00,,, +2016-06-27 12:30:00,,, +2016-06-27 12:45:00,,,25.8518 +2016-06-27 12:50:56,3094.0,-10.1493, +2016-06-27 13:00:00,,, +2016-06-27 13:15:00,,, +2016-06-27 13:30:00,,, +2016-06-27 13:45:00,,,25.7621 +2016-06-27 13:45:10,3099.0,-10.1194, +2016-06-27 14:00:00,,, +2016-06-27 14:15:00,,, +2016-06-27 14:30:00,,, +2016-06-27 14:39:23,3100.0,-10.1203, +2016-06-27 14:45:00,,,25.7621 +2016-06-27 15:00:00,,, +2016-06-27 15:15:00,,, +2016-06-27 15:30:00,,,25.714 +2016-06-27 15:33:31,3100.0,-10.1194, +2016-06-27 15:45:00,,, +2016-06-27 16:00:00,,, +2016-06-27 16:15:00,,, +2016-06-27 16:27:33,3099.0,-10.1203, +2016-06-27 16:30:00,,,25.3928 +2016-06-27 16:45:00,,, +2016-06-27 17:00:00,,, +2016-06-27 17:15:00,,,25.529 +2016-06-27 17:21:35,3100.0,-10.1194, +2016-06-27 17:30:00,,, +2016-06-27 17:45:00,,, +2016-06-27 18:00:00,,, +2016-06-27 18:15:00,,,25.3928 +2016-06-27 18:15:37,3099.0,-10.1493, +2016-06-27 18:30:00,,, +2016-06-27 18:45:00,,, +2016-06-27 19:00:00,,, +2016-06-27 19:09:39,3096.0,-10.1493, +2016-06-27 19:15:00,,,25.3928 +2016-06-27 19:30:00,,, +2016-06-27 19:45:00,,, +2016-06-27 20:00:00,,,24.2045 +2016-06-27 20:03:40,3090.0,-10.2677, +2016-06-27 20:15:00,,, +2016-06-27 20:30:00,,, +2016-06-27 20:45:00,,, +2016-06-27 20:57:53,3087.0,-10.2357, +2016-06-27 21:00:00,,,24.7458 +2016-06-27 21:15:00,,, +2016-06-27 21:30:00,,, +2016-06-27 21:45:00,,,24.383000000000006 +2016-06-27 21:52:05,3084.0,-10.296, +2016-06-27 22:00:00,,, +2016-06-27 22:15:00,,, +2016-06-27 22:30:00,,, +2016-06-27 22:45:00,,,24.2785 +2016-06-27 22:46:12,3080.0,-10.4713, +2016-06-27 23:00:00,,, +2016-06-27 23:15:00,,, +2016-06-27 23:30:00,,, +2016-06-27 23:40:14,3079.0,-10.3263, +2016-06-27 23:45:00,,,24.5562 +2016-06-28 00:00:00,,, +2016-06-28 00:15:00,,, +2016-06-28 00:30:00,,,24.5627 +2016-06-28 00:34:15,3075.0,-10.3254, +2016-06-28 00:45:00,,, +2016-06-28 01:00:00,,, +2016-06-28 01:15:00,,, +2016-06-28 01:28:16,3072.0,-10.3557, +2016-06-28 01:30:00,,,24.5562 +2016-06-28 01:45:00,,, +2016-06-28 02:00:00,,, +2016-06-28 02:15:00,,,24.0596 +2016-06-28 02:22:17,3071.0,-10.3843, +2016-06-28 02:30:00,,, +2016-06-28 02:45:00,,, +2016-06-28 03:00:00,,, +2016-06-28 03:15:00,,,23.9712 +2016-06-28 03:16:18,3068.0,-10.4148, +2016-06-28 03:30:00,,, +2016-06-28 03:45:00,,, +2016-06-28 04:00:00,,, +2016-06-28 04:10:30,3067.0,-10.475, +2016-06-28 04:15:00,,,24.2372 +2016-06-28 04:30:00,,, +2016-06-28 04:45:00,,, +2016-06-28 05:00:00,,,24.285 +2016-06-28 05:04:41,3065.0,-10.4148, +2016-06-28 05:15:00,,, +2016-06-28 05:30:00,,, +2016-06-28 05:45:00,,, +2016-06-28 05:58:48,3062.0,-10.4741, +2016-06-28 06:00:00,,,24.1028 +2016-06-28 06:15:00,,, +2016-06-28 06:30:00,,, +2016-06-28 06:45:00,,, +2016-06-28 06:52:48,3063.0,-10.4444, +2016-06-28 07:00:00,,,24.2872 +2016-06-28 07:15:00,,, +2016-06-28 07:30:00,,, +2016-06-28 07:45:00,,,22.8409 +2016-06-28 07:46:48,3058.0,-10.5355, +2016-06-28 08:00:00,,, +2016-06-28 08:15:00,,, +2016-06-28 08:30:00,,, +2016-06-28 08:40:49,3064.0,-10.4453, +2016-06-28 08:45:00,,,24.3307 +2016-06-28 09:00:00,,, +2016-06-28 09:15:00,,, +2016-06-28 09:30:00,,,24.5101 +2016-06-28 09:34:50,3065.0,-10.3852, +2016-06-28 09:45:00,,, +2016-06-28 10:00:00,,, +2016-06-28 10:15:00,,, +2016-06-28 10:28:50,3070.0,-10.3861, +2016-06-28 10:30:00,,,24.6465 +2016-06-28 10:45:00,,, +2016-06-28 11:00:00,,, +2016-06-28 11:15:00,,, +2016-06-28 11:23:03,3074.0,-10.3263, +2016-06-28 11:30:00,,,24.6972 +2016-06-28 11:45:00,,, +2016-06-28 12:00:00,,, +2016-06-28 12:15:00,,,24.8789 +2016-06-28 12:17:15,3080.0,-10.2667, +2016-06-28 12:30:00,,, +2016-06-28 12:45:00,,, +2016-06-28 13:00:00,,, +2016-06-28 13:11:23,3080.0,-10.3557, +2016-06-28 13:15:00,,,23.4911 +2016-06-28 13:30:00,,, +2016-06-28 13:45:00,,, +2016-06-28 14:00:00,,,23.6267 +2016-06-28 14:05:25,3085.0,-10.2375, +2016-06-28 14:15:00,,, +2016-06-28 14:30:00,,, +2016-06-28 14:45:00,,, +2016-06-28 14:59:27,3092.0,-10.2083, +2016-06-28 15:00:00,,,25.0552 +2016-06-28 15:15:00,,, +2016-06-28 15:30:00,,, +2016-06-28 15:45:00,,, +2016-06-28 15:53:29,3091.0,-10.296, +2016-06-28 16:00:00,,,23.6183 +2016-06-28 16:15:00,,, +2016-06-28 16:30:00,,, +2016-06-28 16:45:00,,,23.7077 +2016-06-28 16:47:31,3092.0,-10.296, +2016-06-28 17:00:00,,, +2016-06-28 17:15:00,,, +2016-06-28 17:30:00,,, +2016-06-28 17:41:33,3090.0,-10.1783, +2016-06-28 17:45:00,,,25.1493 +2016-06-28 18:00:00,,, +2016-06-28 18:15:00,,, +2016-06-28 18:30:00,,,23.8423 +2016-06-28 18:35:46,3087.0,-10.1774, +2016-06-28 18:45:00,,, +2016-06-28 19:00:00,,, +2016-06-28 19:15:00,,, +2016-06-28 19:29:58,3087.0,-10.2375, +2016-06-28 19:30:00,,,25.0149 +2016-06-28 19:45:00,,, +2016-06-28 20:00:00,,, +2016-06-28 20:15:00,,, +2016-06-28 20:24:05,3082.0,-10.2667, +2016-06-28 20:30:00,,,24.8767 +2016-06-28 20:45:00,,, +2016-06-28 21:00:00,,, +2016-06-28 21:15:00,,,24.8301 +2016-06-28 21:18:07,3078.0,-10.296, +2016-06-28 21:30:00,,, +2016-06-28 21:45:00,,, +2016-06-28 22:00:00,,, +2016-06-28 22:12:08,3072.0,-10.3254, +2016-06-28 22:15:00,,,24.9636 +2016-06-28 22:30:00,,, +2016-06-28 22:45:00,,, +2016-06-28 23:00:00,,,24.8723 +2016-06-28 23:06:08,3067.0,-10.3557, +2016-06-28 23:15:00,,, +2016-06-28 23:30:00,,, +2016-06-28 23:45:00,,, +2016-06-29 00:00:00,,,24.9636 +2016-06-29 00:00:08,3065.0,-10.3557, +2016-06-29 00:15:00,,, +2016-06-29 00:30:00,,, +2016-06-29 00:45:00,,, +2016-06-29 00:54:08,3061.0,-10.475, +2016-06-29 01:00:00,,,23.6183 +2016-06-29 01:15:00,,, +2016-06-29 01:30:00,,, +2016-06-29 01:45:00,,,23.3602 +2016-06-29 01:48:19,3058.0,-10.5355, +2016-06-29 02:00:00,,, +2016-06-29 02:15:00,,, +2016-06-29 02:30:00,,, +2016-06-29 02:42:29,3057.0,-10.5654, +2016-06-29 02:45:00,,,23.0566 +2016-06-29 03:00:00,,, +2016-06-29 03:15:00,,, +2016-06-29 03:30:00,,,23.1004 +2016-06-29 03:36:35,3054.0,-10.5654, +2016-06-29 03:45:00,,, +2016-06-29 04:00:00,,, +2016-06-29 04:15:00,,, +2016-06-29 04:30:00,,,23.1422 +2016-06-29 04:30:34,3053.0,-10.5654, +2016-06-29 04:45:00,,, +2016-06-29 05:00:00,,, +2016-06-29 05:15:00,,, +2016-06-29 05:24:34,3053.0,-10.5654, +2016-06-29 05:30:00,,,23.0984 +2016-06-29 05:45:00,,, +2016-06-29 06:00:00,,, +2016-06-29 06:15:00,,,24.737 +2016-06-29 06:18:33,3055.0,-10.4148, +2016-06-29 06:30:00,,, +2016-06-29 06:45:00,,, +2016-06-29 07:00:00,,, +2016-06-29 07:12:32,3061.0,-10.4148, +2016-06-29 07:15:00,,,24.5144 +2016-06-29 07:30:00,,, +2016-06-29 07:45:00,,, +2016-06-29 08:00:00,,,24.5123 +2016-06-29 08:06:32,3065.0,-10.4157, +2016-06-29 08:15:00,,, +2016-06-29 08:30:00,,, +2016-06-29 08:45:00,,, +2016-06-29 09:00:00,,,24.4684 +2016-06-29 09:00:44,3068.0,-10.3852, +2016-06-29 09:15:00,,, +2016-06-29 09:30:00,,, +2016-06-29 09:45:00,,, +2016-06-29 09:54:55,3071.0,-10.3861, +2016-06-29 10:00:00,,,24.4684 +2016-06-29 10:15:00,,, +2016-06-29 10:30:00,,, +2016-06-29 10:45:00,,,24.5584 +2016-06-29 10:49:02,3075.0,-10.3567, +2016-06-29 11:00:00,,, +2016-06-29 11:15:00,,, +2016-06-29 11:30:00,,, +2016-06-29 11:43:03,3080.0,-10.296, +2016-06-29 11:45:00,,,24.6046 +2016-06-29 12:00:00,,, +2016-06-29 12:15:00,,, +2016-06-29 12:30:00,,,24.5606 +2016-06-29 12:37:05,3088.0,-10.2677, +2016-06-29 12:45:00,,, +2016-06-29 13:00:00,,, +2016-06-29 13:15:00,,, +2016-06-29 13:30:00,,,24.6928 +2016-06-29 13:31:06,3093.0,-10.2083, +2016-06-29 13:45:00,,, +2016-06-29 14:00:00,,, +2016-06-29 14:15:00,,, +2016-06-29 14:25:08,3094.0,-10.2074, +2016-06-29 14:30:00,,,24.5144 +2016-06-29 14:45:00,,, +2016-06-29 15:00:00,,, +2016-06-29 15:15:00,,,24.4246 +2016-06-29 15:19:10,3096.0,-10.2384, +2016-06-29 15:30:00,,, +2016-06-29 15:45:00,,, +2016-06-29 16:00:00,,, +2016-06-29 16:13:23,3095.0,-10.2375, +2016-06-29 16:15:00,,,24.2936 +2016-06-29 16:30:00,,, +2016-06-29 16:45:00,,, +2016-06-29 17:00:00,,, +2016-06-29 17:07:36,3094.0,-10.2375, +2016-06-29 17:15:00,,,24.2501 +2016-06-29 17:30:00,,, +2016-06-29 17:45:00,,, +2016-06-29 18:00:00,,,24.2501 +2016-06-29 18:01:44,3093.0,-10.2375, +2016-06-29 18:15:00,,, +2016-06-29 18:30:00,,, +2016-06-29 18:45:00,,, +2016-06-29 18:55:45,3090.0,-10.2667, +2016-06-29 19:00:00,,,24.2936 +2016-06-29 19:15:00,,, +2016-06-29 19:30:00,,, +2016-06-29 19:45:00,,,24.2067 +2016-06-29 19:49:47,3087.0,-10.2979, +2016-06-29 20:00:00,,, +2016-06-29 20:15:00,,, +2016-06-29 20:30:00,,, +2016-06-29 20:43:48,3081.0,-10.3621, +2016-06-29 20:45:00,,,23.9797 +2016-06-29 21:00:00,,, +2016-06-29 21:15:00,,, +2016-06-29 21:30:00,,, +2016-06-29 21:37:49,3076.0,-10.3834, +2016-06-29 21:45:00,,,24.025 +2016-06-29 22:00:00,,, +2016-06-29 22:15:00,,, +2016-06-29 22:30:00,,,23.9367 +2016-06-29 22:31:50,3071.0,-10.3852, +2016-06-29 22:45:00,,, +2016-06-29 23:00:00,,, +2016-06-29 23:15:00,,, +2016-06-29 23:26:02,3065.0,-10.3861, +2016-06-29 23:30:00,,,23.9367 +2016-06-29 23:45:00,,, +2016-06-30 00:00:00,,, +2016-06-30 00:15:00,,,23.9388 +2016-06-30 00:20:13,3064.0,-10.3843, +2016-06-30 00:30:00,,, +2016-06-30 00:45:00,,, +2016-06-30 01:00:00,,, +2016-06-30 01:14:20,3062.0,-10.4148, +2016-06-30 01:15:00,,,23.8487 +2016-06-30 01:30:00,,, +2016-06-30 01:45:00,,, +2016-06-30 02:00:00,,, +2016-06-30 02:08:20,3062.0,-10.4148, +2016-06-30 02:15:00,,,23.8508 +2016-06-30 02:30:00,,, +2016-06-30 02:45:00,,, +2016-06-30 03:00:00,,,23.9346 +2016-06-30 03:02:20,3060.0,-10.4148, +2016-06-30 03:15:00,,, +2016-06-30 03:30:00,,, +2016-06-30 03:45:00,,, +2016-06-30 03:56:20,3059.0,-10.4444, +2016-06-30 04:00:00,,,23.9346 +2016-06-30 04:15:00,,, +2016-06-30 04:30:00,,, +2016-06-30 04:45:00,,,23.8895 +2016-06-30 04:50:20,3058.0,-10.475, +2016-06-30 05:00:00,,, +2016-06-30 05:15:00,,, +2016-06-30 05:30:00,,, +2016-06-30 05:44:20,3058.0,-10.475, +2016-06-30 05:45:00,,,23.8466 +2016-06-30 06:00:00,,, +2016-06-30 06:15:00,,, +2016-06-30 06:30:00,,, +2016-06-30 06:38:31,3058.0,-10.475, +2016-06-30 06:45:00,,,23.8466 +2016-06-30 07:00:00,,, +2016-06-30 07:15:00,,, +2016-06-30 07:30:00,,,23.8058 +2016-06-30 07:32:43,3061.0,-10.4139, +2016-06-30 07:45:00,,, +2016-06-30 08:00:00,,, +2016-06-30 08:15:00,,, +2016-06-30 08:26:49,3062.0,-10.4148, +2016-06-30 08:30:00,,,23.8487 +2016-06-30 08:45:00,,, +2016-06-30 09:00:00,,, +2016-06-30 09:15:00,,,23.8508 +2016-06-30 09:20:50,3065.0,-10.3843, +2016-06-30 09:30:00,,, +2016-06-30 09:45:00,,, +2016-06-30 10:00:00,,, +2016-06-30 10:14:51,3067.0,-10.4148, +2016-06-30 10:15:00,,,23.808000000000003 +2016-06-30 10:30:00,,, +2016-06-30 10:45:00,,, +2016-06-30 11:00:00,,, +2016-06-30 11:08:51,3071.0,-10.5664, +2016-06-30 11:15:00,,,23.9367 +2016-06-30 11:30:00,,, +2016-06-30 11:45:00,,, +2016-06-30 12:00:00,,,23.808000000000003 +2016-06-30 12:02:52,3077.0,-10.3263, +2016-06-30 12:15:00,,, +2016-06-30 12:30:00,,, +2016-06-30 12:45:00,,, +2016-06-30 12:56:53,3081.0,-10.296, +2016-06-30 13:00:00,,,24.0228 +2016-06-30 13:15:00,,, +2016-06-30 13:30:00,,, +2016-06-30 13:45:00,,,23.8101 +2016-06-30 13:51:06,3087.0,-10.2667, +2016-06-30 14:00:00,,, +2016-06-30 14:15:00,,, +2016-06-30 14:30:00,,, +2016-06-30 14:45:00,,,23.8101 +2016-06-30 14:45:18,3090.0,-10.2375, +2016-06-30 15:00:00,,, +2016-06-30 15:15:00,,, +2016-06-30 15:30:00,,, +2016-06-30 15:39:26,3092.0,-10.2083, +2016-06-30 15:45:00,,,23.8101 +2016-06-30 16:00:00,,, +2016-06-30 16:15:00,,, +2016-06-30 16:30:00,,,23.808000000000003 +2016-06-30 16:33:28,3093.0,-10.2375, +2016-06-30 16:45:00,,, +2016-06-30 17:00:00,,, +2016-06-30 17:15:00,,, +2016-06-30 17:27:29,3092.0,-10.2375, +2016-06-30 17:30:00,,,23.898000000000003 +2016-06-30 17:45:00,,, +2016-06-30 18:00:00,,, +2016-06-30 18:15:00,,,23.7652 +2016-06-30 18:21:31,3089.0,-10.2677, +2016-06-30 18:30:00,,, +2016-06-30 18:45:00,,, +2016-06-30 19:00:00,,, +2016-06-30 19:15:00,,,23.6777 +2016-06-30 19:15:32,3087.0,-10.2667, +2016-06-30 19:30:00,,, +2016-06-30 19:45:00,,, +2016-06-30 20:00:00,,, +2016-06-30 20:09:33,3082.0,-10.296, +2016-06-30 20:15:00,,,23.633000000000006 +2016-06-30 20:30:00,,, +2016-06-30 20:45:00,,, +2016-06-30 21:00:00,,,23.546 +2016-06-30 21:03:45,3079.0,-10.3263, +2016-06-30 21:15:00,,, +2016-06-30 21:30:00,,, +2016-06-30 21:45:00,,, +2016-06-30 21:57:57,3075.0,-10.3557, +2016-06-30 22:00:00,,,23.4592 +2016-06-30 22:15:00,,, +2016-06-30 22:30:00,,, +2016-06-30 22:45:00,,,23.4149 +2016-06-30 22:52:03,3072.0,-10.3861, +2016-06-30 23:00:00,,, +2016-06-30 23:15:00,,, +2016-06-30 23:30:00,,, +2016-06-30 23:45:00,,,23.3706 +2016-06-30 23:46:03,3068.0,-10.3861, +2016-07-01 00:00:00,,, +2016-07-01 00:15:00,,, +2016-07-01 00:30:00,,, +2016-07-01 00:40:04,3066.0,-10.4148, +2016-07-01 00:45:00,,,23.2844 +2016-07-01 01:00:00,,, +2016-07-01 01:15:00,,, +2016-07-01 01:30:00,,,23.2844 +2016-07-01 01:34:04,3065.0,-10.4148, +2016-07-01 01:45:00,,, +2016-07-01 02:00:00,,, +2016-07-01 02:15:00,,, +2016-07-01 02:28:04,3064.0,-10.4444, +2016-07-01 02:30:00,,,23.2005 +2016-07-01 02:45:00,,, +2016-07-01 03:00:00,,, +2016-07-01 03:15:00,,,23.2005 +2016-07-01 03:22:03,3062.0,-10.4444, +2016-07-01 03:30:00,,, +2016-07-01 03:45:00,,, +2016-07-01 04:00:00,,, +2016-07-01 04:15:00,,,23.1566 +2016-07-01 04:16:14,3059.0,-10.475, +2016-07-01 04:30:00,,, +2016-07-01 04:45:00,,, +2016-07-01 05:00:00,,, +2016-07-01 05:10:26,3058.0,-10.475, +2016-07-01 05:15:00,,,23.1545 +2016-07-01 05:30:00,,, +2016-07-01 05:45:00,,, +2016-07-01 06:00:00,,,23.1545 +2016-07-01 06:04:32,3058.0,-10.4444, +2016-07-01 06:15:00,,, +2016-07-01 06:30:00,,, +2016-07-01 06:45:00,,, +2016-07-01 06:58:32,3061.0,-10.4148, +2016-07-01 07:00:00,,,23.1566 +2016-07-01 07:15:00,,, +2016-07-01 07:30:00,,, +2016-07-01 07:45:00,,, +2016-07-01 07:52:33,3065.0,-10.3852, +2016-07-01 08:00:00,,,23.2005 +2016-07-01 08:15:00,,, +2016-07-01 08:30:00,,, +2016-07-01 08:45:00,,,23.2844 +2016-07-01 08:46:34,3070.0,-10.3557, +2016-07-01 09:00:00,,, +2016-07-01 09:15:00,,, +2016-07-01 09:30:00,,, +2016-07-01 09:40:36,3076.0,-10.296, +2016-07-01 09:45:00,,,23.2844 +2016-07-01 10:00:00,,, +2016-07-01 10:15:00,,, +2016-07-01 10:30:00,,,23.3285 +2016-07-01 10:34:37,3084.0,-10.2969, +2016-07-01 10:45:00,,, +2016-07-01 11:00:00,,, +2016-07-01 11:15:00,,, +2016-07-01 11:28:51,3087.0,-10.2677, +2016-07-01 11:30:00,,,23.4592 +2016-07-01 11:45:00,,, +2016-07-01 12:00:00,,, +2016-07-01 12:15:00,,, +2016-07-01 12:23:04,3092.0,-10.2083, +2016-07-01 12:30:00,,,23.4592 +2016-07-01 12:45:00,,, +2016-07-01 13:00:00,,, +2016-07-01 13:15:00,,,23.4592 +2016-07-01 13:17:12,3095.0,-10.1792, +2016-07-01 13:30:00,,, +2016-07-01 13:45:00,,, +2016-07-01 14:00:00,,, +2016-07-01 14:11:15,3100.0,-10.1792, +2016-07-01 14:15:00,,,23.4592 +2016-07-01 14:30:00,,, +2016-07-01 14:45:00,,, +2016-07-01 15:00:00,,,23.3327 +2016-07-01 15:05:18,3101.0,-10.1203, +2016-07-01 15:15:00,,, +2016-07-01 15:30:00,,, +2016-07-01 15:45:00,,, +2016-07-01 15:59:21,3106.0,-10.1203, +2016-07-01 16:00:00,,,23.3327 +2016-07-01 16:15:00,,, +2016-07-01 16:30:00,,, +2016-07-01 16:45:00,,, +2016-07-01 16:53:24,3106.0,-10.1203, +2016-07-01 17:00:00,,,90.4855 +2016-07-01 17:15:00,,, +2016-07-01 17:30:00,,, +2016-07-01 17:45:00,,,23.1607 +2016-07-01 17:47:27,3103.0,-10.0905, +2016-07-01 18:00:00,,, +2016-07-01 18:15:00,,, +2016-07-01 18:30:00,,, +2016-07-01 18:41:30,3100.0,-10.1493, +2016-07-01 18:45:00,,,23.1168 +2016-07-01 19:00:00,,, +2016-07-01 19:15:00,,, +2016-07-01 19:30:00,,,22.9877 +2016-07-01 19:35:43,3095.0,-10.1792, +2016-07-01 19:45:00,,, +2016-07-01 20:00:00,,, +2016-07-01 20:15:00,,, +2016-07-01 20:29:57,3092.0,-10.2083, +2016-07-01 20:30:00,,,22.8592 +2016-07-01 20:45:00,,, +2016-07-01 21:00:00,,, +2016-07-01 21:15:00,,, +2016-07-01 21:24:05,3087.0,-10.2677, +2016-07-01 21:30:00,,,22.8179 +2016-07-01 21:45:00,,, +2016-07-01 22:00:00,,, +2016-07-01 22:15:00,,,22.8179 +2016-07-01 22:18:07,3081.0,-10.2677, +2016-07-01 22:30:00,,, +2016-07-01 22:45:00,,, +2016-07-01 23:00:00,,, +2016-07-01 23:12:08,3078.0,-10.2658, +2016-07-01 23:15:00,,,22.7313 +2016-07-01 23:30:00,,, +2016-07-01 23:45:00,,, +2016-07-02 00:00:00,,, +2016-07-02 00:15:00,,, +2016-07-02 00:30:00,,, +2016-07-02 00:45:00,,, +2016-07-02 01:00:00,,,22.6962 +2016-07-02 01:00:12,3072.0,-10.296, +2016-07-02 01:15:00,,, +2016-07-02 01:30:00,,, +2016-07-02 01:45:00,,, +2016-07-02 01:54:14,3071.0,-10.3557, +2016-07-02 02:00:00,,,22.653 +2016-07-02 02:15:00,,, +2016-07-02 02:30:00,,, +2016-07-02 02:45:00,,,22.653 +2016-07-02 02:48:26,3068.0,-10.3557, +2016-07-02 03:00:00,,, +2016-07-02 03:15:00,,, +2016-07-02 03:30:00,,, +2016-07-02 03:42:39,3066.0,-10.3557, +2016-07-02 03:45:00,,,22.612 +2016-07-02 04:00:00,,, +2016-07-02 04:15:00,,, +2016-07-02 04:30:00,,,22.56900000000001 +2016-07-02 04:36:46,3067.0,-10.3557, +2016-07-02 04:45:00,,, +2016-07-02 05:00:00,,, +2016-07-02 05:15:00,,, +2016-07-02 05:30:00,,,22.56900000000001 +2016-07-02 05:30:47,3067.0,-10.3557, +2016-07-02 05:45:00,,, +2016-07-02 06:00:00,,, +2016-07-02 06:15:00,,, +2016-07-02 06:24:49,3068.0,-10.3254, +2016-07-02 06:30:00,,,22.5261 +2016-07-02 06:45:00,,, +2016-07-02 07:00:00,,, +2016-07-02 07:15:00,,,22.4832 +2016-07-02 07:18:51,3071.0,-10.3263, +2016-07-02 07:30:00,,, +2016-07-02 07:45:00,,, +2016-07-02 08:00:00,,, +2016-07-02 08:12:53,3072.0,-10.3861, +2016-07-02 08:15:00,,,22.4832 +2016-07-02 08:30:00,,, +2016-07-02 08:45:00,,, +2016-07-02 09:00:00,,,22.4076 +2016-07-02 09:06:54,3071.0,-10.3861, +2016-07-02 09:15:00,,, +2016-07-02 09:30:00,,, +2016-07-02 09:45:00,,, +2016-07-02 10:00:00,,,22.2758 +2016-07-02 10:01:07,3065.0,-10.4453, +2016-07-02 10:15:00,,, +2016-07-02 10:30:00,,, +2016-07-02 10:45:00,,, +2016-07-02 10:55:19,3059.0,-10.5057, +2016-07-02 11:00:00,,,22.1988 +2016-07-02 11:15:00,,, +2016-07-02 11:30:00,,, +2016-07-02 11:45:00,,,22.1544 +2016-07-02 11:49:26,3052.0,-10.5048, +2016-07-02 12:00:00,,, +2016-07-02 12:15:00,,, +2016-07-02 12:30:00,,, +2016-07-02 12:43:27,3050.0,-10.5048, +2016-07-02 12:45:00,,,79.2416 +2016-07-02 13:00:00,,, +2016-07-02 13:15:00,,, +2016-07-02 13:30:00,,,77.8061 +2016-07-02 13:37:27,3048.0,-10.5355, +2016-07-02 13:45:00,,, +2016-07-02 14:00:00,,, +2016-07-02 14:15:00,,, +2016-07-02 14:30:00,,,22.0317 +2016-07-02 14:31:27,3046.0,-10.5654, +2016-07-02 14:45:00,,, +2016-07-02 15:00:00,,, +2016-07-02 15:15:00,,, +2016-07-02 15:25:27,3045.0,-10.5664, +2016-07-02 15:30:00,,,22.0336 +2016-07-02 15:45:00,,, +2016-07-02 16:00:00,,, +2016-07-02 16:15:00,,,22.0738 +2016-07-02 16:19:27,3047.0,-10.5355, +2016-07-02 16:30:00,,, +2016-07-02 16:45:00,,, +2016-07-02 17:00:00,,, +2016-07-02 17:13:37,3049.0,-10.5664, +2016-07-02 17:15:00,,,22.0719 +2016-07-02 17:30:00,,, +2016-07-02 17:45:00,,, +2016-07-02 18:00:00,,, +2016-07-02 18:07:48,3051.0,-10.5963, +2016-07-02 18:15:00,,,22.0719 +2016-07-02 18:30:00,,, +2016-07-02 18:45:00,,, +2016-07-02 19:00:00,,,21.9915 +2016-07-02 19:01:54,3048.0,-10.6574, +2016-07-02 19:15:00,,, +2016-07-02 19:30:00,,, +2016-07-02 19:45:00,,, +2016-07-02 19:55:53,3043.0,-10.6565, +2016-07-02 20:00:00,,,21.9495 +2016-07-02 20:15:00,,, +2016-07-02 20:30:00,,, +2016-07-02 20:45:00,,,21.9094 +2016-07-02 20:49:53,3039.0,-10.6876, +2016-07-02 21:00:00,,, +2016-07-02 21:15:00,,, +2016-07-02 21:30:00,,, +2016-07-02 21:43:52,3036.0,-10.6867, +2016-07-02 21:45:00,,,21.9075 +2016-07-02 22:00:00,,, +2016-07-02 22:15:00,,, +2016-07-02 22:30:00,,, +2016-07-02 22:37:51,3034.0,-10.7179, +2016-07-02 22:45:00,,,75.8981 +2016-07-02 23:00:00,,, +2016-07-02 23:15:00,,, +2016-07-02 23:30:00,,,76.5941 +2016-07-02 23:31:50,3032.0,-10.7472, +2016-07-02 23:45:00,,, +2016-07-03 00:00:00,,, +2016-07-03 00:15:00,,, +2016-07-03 00:26:00,3029.0,-10.7786, +2016-07-03 00:30:00,,,76.3426 +2016-07-03 00:45:00,,, +2016-07-03 01:00:00,,, +2016-07-03 01:15:00,,,75.8779 +2016-07-03 01:20:10,3029.0,-10.8091, +2016-07-03 01:30:00,,, +2016-07-03 01:45:00,,, +2016-07-03 02:00:00,,, +2016-07-03 02:14:15,3026.0,-10.8406, +2016-07-03 02:15:00,,,75.65100000000002 +2016-07-03 02:30:00,,, +2016-07-03 02:45:00,,, +2016-07-03 03:00:00,,, +2016-07-03 03:08:14,3024.0,-10.8396, +2016-07-03 03:15:00,,,75.65100000000002 +2016-07-03 03:30:00,,, +2016-07-03 03:45:00,,, +2016-07-03 04:00:00,,,74.9653 +2016-07-03 04:02:13,3023.0,-10.8712, +2016-07-03 04:15:00,,, +2016-07-03 04:30:00,,, +2016-07-03 04:45:00,,, +2016-07-03 04:56:11,3022.0,-10.9029, +2016-07-03 05:00:00,,,74.7439 +2016-07-03 05:15:00,,, +2016-07-03 05:30:00,,, +2016-07-03 05:45:00,,,74.5171 +2016-07-03 05:50:10,3022.0,-10.9029, +2016-07-03 06:00:00,,, +2016-07-03 06:15:00,,, +2016-07-03 06:30:00,,, +2016-07-03 06:44:08,3022.0,-10.8396, +2016-07-03 06:45:00,,,74.0611 +2016-07-03 07:00:00,,, +2016-07-03 07:15:00,,, +2016-07-03 07:30:00,,, +2016-07-03 07:38:18,3024.0,-10.8406, +2016-07-03 07:45:00,,,74.0611 +2016-07-03 08:00:00,,, +2016-07-03 08:15:00,,, +2016-07-03 08:30:00,,,74.0611 +2016-07-03 08:32:29,3030.0,-10.81, +2016-07-03 08:45:00,,, +2016-07-03 09:00:00,,, +2016-07-03 09:15:00,,, +2016-07-03 09:26:35,3037.0,-10.7482, +2016-07-03 09:30:00,,,74.0611 +2016-07-03 09:45:00,,, +2016-07-03 10:00:00,,, +2016-07-03 10:15:00,,,73.8384 +2016-07-03 10:20:35,3043.0,-10.7179, +2016-07-03 10:30:00,,, +2016-07-03 10:45:00,,, +2016-07-03 11:00:00,,, +2016-07-03 11:14:35,3051.0,-10.6876, +2016-07-03 11:15:00,,,74.0611 +2016-07-03 11:30:00,,, +2016-07-03 11:45:00,,, +2016-07-03 12:00:00,,, +2016-07-03 12:08:36,3056.0,-10.6574, +2016-07-03 12:15:00,,,74.0611 +2016-07-03 12:30:00,,, +2016-07-03 12:45:00,,, +2016-07-03 13:00:00,,,73.4099 +2016-07-03 13:02:38,3061.0,-10.6264, +2016-07-03 13:15:00,,, +2016-07-03 13:30:00,,, +2016-07-03 13:45:00,,, +2016-07-03 13:56:39,3063.0,-10.5954, +2016-07-03 14:00:00,,,73.1909 +2016-07-03 14:15:00,,, +2016-07-03 14:30:00,,, +2016-07-03 14:45:00,,,72.5547 +2016-07-03 14:50:51,3064.0,-10.5973, +2016-07-03 15:00:00,,, +2016-07-03 15:15:00,,, +2016-07-03 15:30:00,,, +2016-07-03 15:45:00,,,71.7251 +2016-07-03 15:45:03,3065.0,-10.5664, +2016-07-03 16:00:00,,, +2016-07-03 16:15:00,,, +2016-07-03 16:30:00,,, +2016-07-03 16:39:10,3065.0,-10.5654, +2016-07-03 16:45:00,,,70.4995 +2016-07-03 17:00:00,,, +2016-07-03 17:15:00,,, +2016-07-03 17:30:00,,,69.5168 +2016-07-03 17:33:12,3065.0,-10.5664, +2016-07-03 17:45:00,,, +2016-07-03 18:00:00,,, +2016-07-03 18:15:00,,, +2016-07-03 18:27:13,3064.0,-10.5954, +2016-07-03 18:30:00,,,68.5602 +2016-07-03 18:45:00,,, +2016-07-03 19:00:00,,, +2016-07-03 19:15:00,,,67.6224 +2016-07-03 19:21:15,3059.0,-10.5963, +2016-07-03 19:30:00,,, +2016-07-03 19:45:00,,, +2016-07-03 20:00:00,,, +2016-07-03 20:15:00,,,66.5263 +2016-07-03 20:15:16,3054.0,-10.6264, +2016-07-03 20:30:00,,, +2016-07-03 20:45:00,,, +2016-07-03 21:00:00,,, +2016-07-03 21:09:16,3050.0,-10.6876, +2016-07-03 21:15:00,,,65.1231 +2016-07-03 21:30:00,,, +2016-07-03 21:45:00,,, +2016-07-03 22:00:00,,,64.2767 +2016-07-03 22:03:27,3043.0,-10.6867, +2016-07-03 22:15:00,,, +2016-07-03 22:30:00,,, +2016-07-03 22:45:00,,, +2016-07-03 22:57:38,3037.0,-10.7169, +2016-07-03 23:00:00,,,63.2897 +2016-07-03 23:15:00,,, +2016-07-03 23:30:00,,, +2016-07-03 23:45:00,,,62.3248 +2016-07-03 23:51:44,3034.0,-10.7472, +2016-07-04 00:00:00,,, +2016-07-04 00:15:00,,, +2016-07-04 00:30:00,,, +2016-07-04 00:45:00,,,61.7018 +2016-07-04 00:45:44,3030.0,-10.8091, +2016-07-04 01:00:00,,, +2016-07-04 01:15:00,,, +2016-07-04 01:30:00,,, +2016-07-04 01:39:44,3027.0,-10.8406, +2016-07-04 01:45:00,,,61.5437 +2016-07-04 02:00:00,,, +2016-07-04 02:15:00,,, +2016-07-04 02:30:00,,,60.9348 +2016-07-04 02:33:43,3025.0,-10.8406, +2016-07-04 02:45:00,,, +2016-07-04 03:00:00,,, +2016-07-04 03:15:00,,, +2016-07-04 03:27:42,3023.0,-10.8396, +2016-07-04 03:30:00,,,60.3312 +2016-07-04 03:45:00,,, +2016-07-04 04:00:00,,, +2016-07-04 04:15:00,,,59.8882 +2016-07-04 04:21:41,3022.0,-10.9029, +2016-07-04 04:30:00,,, +2016-07-04 04:45:00,,, +2016-07-04 05:00:00,,, +2016-07-04 05:15:00,,,59.8723 +2016-07-04 05:15:51,3021.0,-10.8712, +2016-07-04 05:30:00,,, +2016-07-04 05:45:00,,, +2016-07-04 06:00:00,,, +2016-07-04 06:10:01,3022.0,-10.8396, +2016-07-04 06:15:00,,,60.1633 +2016-07-04 06:30:00,,, +2016-07-04 06:45:00,,, +2016-07-04 07:00:00,,,60.1633 +2016-07-04 07:04:06,3023.0,-10.8406, +2016-07-04 07:15:00,,, +2016-07-04 07:30:00,,, +2016-07-04 07:45:00,,, +2016-07-04 07:58:06,3029.0,-10.81, +2016-07-04 08:00:00,,,60.1633 +2016-07-04 08:15:00,,, +2016-07-04 08:30:00,,, +2016-07-04 08:45:00,,,60.4677 +2016-07-04 08:52:06,3034.0,-10.7482, +2016-07-04 09:00:00,,, +2016-07-04 09:15:00,,, +2016-07-04 09:30:00,,, +2016-07-04 09:45:00,,,60.4677 +2016-07-04 09:46:06,3039.0,-10.7179, +2016-07-04 10:00:00,,, +2016-07-04 10:15:00,,, +2016-07-04 10:30:00,,, +2016-07-04 10:40:06,3048.0,-10.6574, +2016-07-04 10:45:00,,,60.9185 +2016-07-04 11:00:00,,, +2016-07-04 11:15:00,,, +2016-07-04 11:30:00,,,60.9239 +2016-07-04 11:34:07,3055.0,-10.6904, +2016-07-04 11:45:00,,, +2016-07-04 12:00:00,,, +2016-07-04 12:15:00,,, +2016-07-04 12:28:20,3058.0,-10.5954, +2016-07-04 12:30:00,,,60.6155 +2016-07-04 12:45:00,,, +2016-07-04 13:00:00,,, +2016-07-04 13:15:00,,, +2016-07-04 13:22:32,3059.0,-10.5973, +2016-07-04 13:30:00,,,60.3045 +2016-07-04 13:45:00,,, +2016-07-04 14:00:00,,, +2016-07-04 14:15:00,,,59.8563 +2016-07-04 14:16:39,3062.0,-10.5664, +2016-07-04 14:30:00,,, +2016-07-04 14:45:00,,, +2016-07-04 15:00:00,,, +2016-07-04 15:10:41,3063.0,-10.5057, +2016-07-04 15:15:00,,,58.418 +2016-07-04 15:30:00,,, +2016-07-04 15:45:00,,, +2016-07-04 16:00:00,,,57.7215 +2016-07-04 16:04:43,3065.0,-10.5057, +2016-07-04 16:15:00,,, +2016-07-04 16:30:00,,, +2016-07-04 16:45:00,,, +2016-07-04 16:58:45,3065.0,-10.5365, +2016-07-04 17:00:00,,,57.0344 +2016-07-04 17:15:00,,, +2016-07-04 17:30:00,,, +2016-07-04 17:45:00,,, +2016-07-04 17:52:46,3065.0,-10.5365, +2016-07-04 18:00:00,,,59.1294 +2016-07-04 18:15:00,,, +2016-07-04 18:30:00,,, +2016-07-04 18:45:00,,,62.4588 +2016-07-04 18:46:48,3065.0,-10.475, +2016-07-04 19:00:00,,, +2016-07-04 19:15:00,,, +2016-07-04 19:30:00,,, +2016-07-04 19:41:00,3059.0,-10.5954, +2016-07-04 19:45:00,,,57.58600000000001 +2016-07-04 20:00:00,,, +2016-07-04 20:15:00,,, +2016-07-04 20:30:00,,,60.0068 +2016-07-04 20:35:12,3058.0,-10.5963, +2016-07-04 20:45:00,,, +2016-07-04 21:00:00,,, +2016-07-04 21:15:00,,, +2016-07-04 21:29:19,3050.0,-10.7169, +2016-07-04 21:30:00,,,55.8494 +2016-07-04 21:45:00,,, +2016-07-04 22:00:00,,, +2016-07-04 22:15:00,,, +2016-07-04 22:23:19,3047.0,-10.6867, +2016-07-04 22:30:00,,,58.1366 +2016-07-04 22:45:00,,, +2016-07-04 23:00:00,,, +2016-07-04 23:15:00,,,72.2957 +2016-07-04 23:17:20,3051.0,-10.5654, +2016-07-04 23:30:00,,, +2016-07-04 23:45:00,,, +2016-07-05 00:00:00,,, +2016-07-05 00:11:20,3050.0,-10.5954, +2016-07-05 00:15:00,,,71.8653 +2016-07-05 00:30:00,,, +2016-07-05 00:45:00,,, +2016-07-05 01:00:00,,,73.1324 +2016-07-05 01:05:21,3043.0,-10.6264, +2016-07-05 01:15:00,,, +2016-07-05 01:30:00,,, +2016-07-05 01:45:00,,, +2016-07-05 01:59:22,3047.0,-10.6565, +2016-07-05 02:00:00,,,71.6678 +2016-07-05 02:15:00,,, +2016-07-05 02:30:00,,, +2016-07-05 02:45:00,,, +2016-07-05 02:53:33,3044.0,-10.6565, +2016-07-05 03:00:00,,,71.8717 +2016-07-05 03:15:00,,, +2016-07-05 03:30:00,,, +2016-07-05 03:45:00,,,70.8511 +2016-07-05 03:47:45,3043.0,-10.6867, +2016-07-05 04:00:00,,, +2016-07-05 04:15:00,,, +2016-07-05 04:30:00,,, +2016-07-05 04:41:51,3042.0,-10.7179, +2016-07-05 04:45:00,,,72.2893 +2016-07-05 05:00:00,,, +2016-07-05 05:15:00,,, +2016-07-05 05:30:00,,,72.0767 +2016-07-05 05:35:51,3039.0,-10.7179, +2016-07-05 05:45:00,,, +2016-07-05 06:00:00,,, +2016-07-05 06:15:00,,, +2016-07-05 06:29:51,3039.0,-10.6876, +2016-07-05 06:30:00,,,72.4967 +2016-07-05 06:45:00,,, +2016-07-05 07:00:00,,, +2016-07-05 07:15:00,,, +2016-07-05 07:23:51,3043.0,-10.6264, +2016-07-05 07:30:00,,,72.7117 +2016-07-05 07:45:00,,, +2016-07-05 08:00:00,,, +2016-07-05 08:15:00,,,72.0831 +2016-07-05 08:17:52,3047.0,-10.6264, +2016-07-05 08:30:00,,, +2016-07-05 08:45:00,,, +2016-07-05 09:00:00,,, +2016-07-05 09:11:52,3051.0,-10.5963, +2016-07-05 09:15:00,,,69.4613 +2016-07-05 09:30:00,,, +2016-07-05 09:45:00,,, +2016-07-05 10:00:00,,,68.1349 +2016-07-05 10:06:05,3058.0,-10.5664, +2016-07-05 10:15:00,,, +2016-07-05 10:30:00,,, +2016-07-05 10:45:00,,, +2016-07-05 11:00:00,,,70.2534 +2016-07-05 11:00:17,3065.0,-10.5057, +2016-07-05 11:15:00,,, +2016-07-05 11:30:00,,, +2016-07-05 11:45:00,,, +2016-07-05 11:54:24,3071.0,-10.4759, +2016-07-05 12:00:00,,,70.8511 +2016-07-05 12:15:00,,, +2016-07-05 12:30:00,,, +2016-07-05 12:45:00,,,71.2572 +2016-07-05 12:48:26,3076.0,-10.4157, +2016-07-05 13:00:00,,, +2016-07-05 13:15:00,,, +2016-07-05 13:30:00,,, +2016-07-05 13:42:28,3080.0,-10.3861, +2016-07-05 13:45:00,,,70.6528 +2016-07-05 14:00:00,,, +2016-07-05 14:15:00,,, +2016-07-05 14:30:00,,,71.6678 +2016-07-05 14:36:30,3081.0,-10.3557, +2016-07-05 14:45:00,,, +2016-07-05 15:00:00,,, +2016-07-05 15:15:00,,, +2016-07-05 15:30:00,,,70.4494 +2016-07-05 15:30:32,3082.0,-10.3567, +2016-07-05 15:45:00,,, +2016-07-05 16:00:00,,, +2016-07-05 16:15:00,,, +2016-07-05 16:24:34,3082.0,-10.3861, +2016-07-05 16:30:00,,,70.2534 +2016-07-05 16:45:00,,, +2016-07-05 17:00:00,,, +2016-07-05 17:15:00,,,68.8859 +2016-07-05 17:18:47,3080.0,-10.3567, +2016-07-05 17:30:00,,, +2016-07-05 17:45:00,,, +2016-07-05 18:00:00,,, +2016-07-05 18:12:59,3078.0,-10.3567, +2016-07-05 18:15:00,,,70.0522 +2016-07-05 18:30:00,,, +2016-07-05 18:45:00,,, +2016-07-05 19:00:00,,,66.8622 +2016-07-05 19:07:07,3072.0,-10.4166, +2016-07-05 19:15:00,,, +2016-07-05 19:30:00,,, +2016-07-05 19:45:00,,, +2016-07-05 20:00:00,,,66.8681 +2016-07-05 20:01:09,3067.0,-10.4462, +2016-07-05 20:15:00,,, +2016-07-05 20:30:00,,, +2016-07-05 20:45:00,,, +2016-07-05 20:55:10,3063.0,-10.4759, +2016-07-05 21:00:00,,,66.8681 +2016-07-05 21:15:00,,, +2016-07-05 21:30:00,,, +2016-07-05 21:45:00,,,66.6849 +2016-07-05 21:49:11,3058.0,-10.5057, +2016-07-05 22:00:00,,, +2016-07-05 22:15:00,,, +2016-07-05 22:30:00,,, +2016-07-05 22:43:11,3051.0,-10.5355, +2016-07-05 22:45:00,,,66.1526 +2016-07-05 23:00:00,,, +2016-07-05 23:15:00,,, +2016-07-05 23:30:00,,,65.9788 +2016-07-05 23:37:12,3047.0,-10.5963, +2016-07-05 23:45:00,,, +2016-07-06 00:00:00,,, +2016-07-06 00:15:00,,, +2016-07-06 00:30:00,,,63.9313 +2016-07-06 00:31:23,3040.0,-10.6867, +2016-07-06 00:45:00,,, +2016-07-06 01:00:00,,, +2016-07-06 01:15:00,,, +2016-07-06 01:25:34,3030.0,-10.7786, +2016-07-06 01:30:00,,,-16.6124 +2016-07-06 01:45:00,,, +2016-07-06 02:00:00,,, +2016-07-06 02:15:00,,,55.3406 +2016-07-06 02:19:39,3029.0,-10.7472, +2016-07-06 02:30:00,,, +2016-07-06 02:45:00,,, +2016-07-06 03:00:00,,, +2016-07-06 03:13:39,3026.0,-10.7179, +2016-07-06 03:15:00,,,28.0267 +2016-07-06 03:30:00,,, +2016-07-06 03:45:00,,, +2016-07-06 04:00:00,,, +2016-07-06 04:07:38,3023.0,-10.7482, +2016-07-06 04:15:00,,,-1.8323 +2016-07-06 04:30:00,,, +2016-07-06 04:45:00,,, +2016-07-06 05:00:00,,,-4.9839 +2016-07-06 05:01:38,3022.0,-10.7472, +2016-07-06 05:15:00,,, +2016-07-06 05:30:00,,, +2016-07-06 05:45:00,,, +2016-07-06 05:55:38,3021.0,-10.7786, +2016-07-06 06:00:00,,,-5.0045 +2016-07-06 06:15:00,,, +2016-07-06 06:30:00,,, +2016-07-06 06:45:00,,,-2.4286 +2016-07-06 06:49:48,3021.0,-10.7482, +2016-07-06 07:00:00,,, +2016-07-06 07:15:00,,, +2016-07-06 07:30:00,,, +2016-07-06 07:43:59,3022.0,-10.7482, +2016-07-06 07:45:00,,,-2.4286 +2016-07-06 08:00:00,,, +2016-07-06 08:15:00,,, +2016-07-06 08:30:00,,, +2016-07-06 08:38:05,3023.0,-10.7491, +2016-07-06 08:45:00,,,-2.4074 +2016-07-06 09:00:00,,, +2016-07-06 09:15:00,,, +2016-07-06 09:30:00,,,25.4353 +2016-07-06 09:32:05,3027.0,-10.7188, +2016-07-06 09:45:00,,, +2016-07-06 10:00:00,,, +2016-07-06 10:15:00,,, +2016-07-06 10:26:16,3030.0,-10.7179, +2016-07-06 10:30:00,,,26.6199 +2016-07-06 10:45:00,,, +2016-07-06 11:00:00,,, +2016-07-06 11:15:00,,,27.2513 +2016-07-06 11:20:27,3033.0,-10.6574, +2016-07-06 11:30:00,,, +2016-07-06 11:40:48,3037.0,-10.6574, +2016-07-06 11:45:00,,,27.9844 +2016-07-06 11:54:11,3042.0,-10.6885, +2016-07-06 12:00:00,,,29.2452 +2016-07-06 12:04:14,3043.0,-10.7188, +2016-07-06 12:14:17,3046.0,-10.7188, +2016-07-06 12:15:00,,,29.3546 +2016-07-06 12:29:52,3046.0,-10.6885, +2016-07-06 12:30:00,,,29.2478 +2016-07-06 12:45:00,,,29.3546 +2016-07-06 12:49:22,3047.0,-10.6885, +2016-07-06 13:00:00,,,55.3456 +2016-07-06 13:02:25,3050.0,-10.7188, +2016-07-06 13:15:00,,,55.472 +2016-07-06 13:15:48,3051.0,-10.7188, +2016-07-06 13:26:19,3051.0,-10.7188, +2016-07-06 13:30:00,,,55.3456 +2016-07-06 13:36:22,3053.0,-10.7491, +2016-07-06 13:45:00,,,55.472 +2016-07-06 13:48:17,3053.0,-10.7188, +2016-07-06 14:00:00,,,55.6039 +2016-07-06 14:00:44,3054.0,-10.7188, +2016-07-06 14:10:54,3054.0,-10.7491, +2016-07-06 14:15:00,,,55.472 +2016-07-06 14:22:40,3055.0,-10.7491, +2016-07-06 14:30:00,,,55.2196 +2016-07-06 14:33:31,3056.0,-10.7491, +2016-07-06 14:45:00,,,55.3456 +2016-07-06 14:48:05,3055.0,-10.7188, +2016-07-06 15:00:00,,,27.7395 +2016-07-06 15:02:29,3056.0,-10.6885, +2016-07-06 15:15:00,,,55.3456 +2016-07-06 15:15:53,3055.0,-10.6876, +2016-07-06 15:28:28,3056.0,-10.7188, +2016-07-06 15:30:00,,,55.2196 +2016-07-06 15:45:00,,,27.5872 +2016-07-06 15:45:53,3057.0,-10.6885, +2016-07-06 16:00:00,,, +2016-07-06 16:11:51,3057.0,-10.6264, +2016-07-06 16:15:00,,,27.4846 +2016-07-06 16:24:26,3057.0,-10.6574, +2016-07-06 16:30:00,,,27.1861 +2016-07-06 16:45:00,,,27.1378 +2016-07-06 16:49:01,3058.0,-10.6885, +2016-07-06 16:59:04,3054.0,-10.7188, +2016-07-06 17:00:00,,,54.9595 +2016-07-06 17:09:06,3057.0,-10.6885, +2016-07-06 17:15:00,,,29.5301 +2016-07-06 17:19:09,3058.0,-10.6885, +2016-07-06 17:29:12,3057.0,-10.7188, +2016-07-06 17:30:00,,,29.8021 +2016-07-06 17:39:15,3057.0,-10.7188, +2016-07-06 17:45:00,,,28.0018 +2016-07-06 17:49:17,3057.0,-10.7188, +2016-07-06 17:59:20,3057.0,-10.7188, +2016-07-06 18:00:00,,,29.6909 +2016-07-06 18:09:23,3056.0,-10.7188, +2016-07-06 18:15:00,,,29.749 +2016-07-06 18:19:26,3055.0,-10.7188, +2016-07-06 18:29:28,3055.0,-10.7188, +2016-07-06 18:30:00,,,30.3595 +2016-07-06 18:39:31,3055.0,-10.7188, +2016-07-06 18:45:00,,,30.5851 +2016-07-06 18:49:34,3054.0,-10.7501, +2016-07-06 18:59:36,3054.0,-10.7491, +2016-07-06 19:00:00,,,30.5851 +2016-07-06 19:09:39,3054.0,-10.7501, +2016-07-06 19:15:00,,,30.5879 +2016-07-06 19:19:42,3053.0,-10.7491, +2016-07-06 19:29:45,3052.0,-10.7491, +2016-07-06 19:30:00,,,30.5879 +2016-07-06 19:39:47,3052.0,-10.7805, +2016-07-06 19:45:00,,,30.7 +2016-07-06 19:49:50,3051.0,-10.7805, +2016-07-06 19:59:53,3051.0,-10.7805, +2016-07-06 20:00:00,,,30.7027 +2016-07-06 20:09:55,3050.0,-10.7805, +2016-07-06 20:15:00,,,30.7054 +2016-07-06 20:19:58,3050.0,-10.812, +2016-07-06 20:30:00,,,30.7603 +2016-07-06 20:30:01,3050.0,-10.811, +2016-07-06 20:40:03,3049.0,-10.811, +2016-07-06 20:45:00,,,30.7549 +2016-07-06 20:50:06,3048.0,-10.811, +2016-07-06 21:00:00,,,30.7082 +2016-07-06 21:00:08,3046.0,-10.8722, +2016-07-06 21:10:11,3045.0,-10.8416, +2016-07-06 21:15:00,,,30.7631 +2016-07-06 21:20:14,3043.0,-10.8416, +2016-07-06 21:30:00,,,58.2848 +2016-07-06 21:30:16,3045.0,-10.9337, +2016-07-06 21:40:19,3045.0,-10.9646, +2016-07-06 21:45:00,,,59.4352 +2016-07-06 21:50:22,3044.0,-10.9337, +2016-07-06 22:00:00,,,60.4623 +2016-07-06 22:00:24,3043.0,-10.9337, +2016-07-06 22:10:27,3043.0,-10.9328, +2016-07-06 22:15:00,,,60.9023 +2016-07-06 22:20:29,3044.0,-10.9347, +2016-07-06 22:30:00,,,19.0471 +2016-07-06 22:30:32,3043.0,-10.9646, +2016-07-06 22:40:34,3041.0,-10.9646, +2016-07-06 22:45:00,,,60.3098 +2016-07-06 22:50:37,3040.0,-10.9646, +2016-07-06 23:00:00,,,86.0274 +2016-07-06 23:00:39,3051.0,-10.7491, +2016-07-06 23:10:42,3039.0,-10.9646, +2016-07-06 23:15:00,,,61.6744 +2016-07-06 23:20:44,3038.0,-10.9646, +2016-07-06 23:30:00,,,60.9131 +2016-07-06 23:30:47,3037.0,-10.9956, +2016-07-06 23:40:49,3037.0,-10.9646, +2016-07-06 23:45:00,,,62.6268 +2016-07-06 23:50:52,3037.0,-11.0276, +2016-07-07 00:00:00,,,63.9199 +2016-07-07 00:00:54,3037.0,-10.9956, +2016-07-07 00:10:57,3036.0,-11.0276, +2016-07-07 00:15:00,,,61.0629 +2016-07-07 00:20:59,3035.0,-11.0276, +2016-07-07 00:30:00,,,61.37 +2016-07-07 00:31:02,3035.0,-11.0276, +2016-07-07 00:41:04,3034.0,-11.0276, +2016-07-07 00:45:00,,,61.37 +2016-07-07 00:51:07,3033.0,-11.0587, +2016-07-07 01:00:00,,,60.9131 +2016-07-07 01:01:09,3032.0,-11.0587, +2016-07-07 01:11:12,3031.0,-11.0577, +2016-07-07 01:15:00,,,61.37 +2016-07-07 01:21:14,3030.0,-11.0587, +2016-07-07 01:30:00,,,61.3646 +2016-07-07 01:31:17,3030.0,-11.0899, +2016-07-07 01:41:19,3030.0,-11.0899, +2016-07-07 01:45:00,,,61.0629 +2016-07-07 01:51:21,3029.0,-11.0899, +2016-07-07 02:00:00,,,60.7586 +2016-07-07 02:01:24,3028.0,-11.0899, +2016-07-07 02:11:26,3027.0,-11.0899, +2016-07-07 02:15:00,,,64.4306 +2016-07-07 02:21:29,3027.0,-11.0899, +2016-07-07 02:30:00,,,61.8386 +2016-07-07 02:31:31,3026.0,-11.1212, +2016-07-07 02:41:33,3024.0,-11.0889, +2016-07-07 02:45:00,,,61.6744 +2016-07-07 02:51:36,3023.0,-11.1212, +2016-07-07 03:00:00,,,62.3027 +2016-07-07 03:01:38,3023.0,-11.0889, +2016-07-07 03:11:41,3023.0,-11.1212, +2016-07-07 03:15:00,,,61.2188 +2016-07-07 03:21:43,3023.0,-11.1212, +2016-07-07 03:30:00,,,61.0629 +2016-07-07 03:31:45,3022.0,-11.1212, +2016-07-07 03:41:48,3022.0,-11.1536, +2016-07-07 03:45:00,,,60.9131 +2016-07-07 03:51:50,3022.0,-11.1536, +2016-07-07 04:00:00,,,60.7586 +2016-07-07 04:01:52,3022.0,-11.1536, +2016-07-07 04:11:55,3021.0,-11.1536, +2016-07-07 04:15:00,,,60.9131 +2016-07-07 04:21:57,3021.0,-11.1536, +2016-07-07 04:30:00,,,61.37 +2016-07-07 04:31:59,3020.0,-11.1536, +2016-07-07 04:42:02,3020.0,-11.1536, +2016-07-07 04:45:00,,,60.9131 +2016-07-07 04:52:04,3020.0,-11.1536, +2016-07-07 05:00:00,,,61.6744 +2016-07-07 05:02:06,3020.0,-11.1536, +2016-07-07 05:12:09,3020.0,-11.1536, +2016-07-07 05:15:00,,,61.6799 +2016-07-07 05:22:11,3020.0,-11.1526, +2016-07-07 05:30:00,,,61.8332 +2016-07-07 05:32:13,3020.0,-11.1526, +2016-07-07 05:42:16,3020.0,-11.1526, +2016-07-07 05:45:00,,,61.8386 +2016-07-07 05:52:18,3020.0,-11.1526, +2016-07-07 06:00:00,,,61.37 +2016-07-07 06:02:21,3020.0,-11.1526, +2016-07-07 06:12:23,3019.0,-11.1526, +2016-07-07 06:15:00,,,60.9131 +2016-07-07 06:22:25,3020.0,-11.1536, +2016-07-07 06:30:00,,,61.37 +2016-07-07 06:32:28,3019.0,-11.1526, +2016-07-07 06:42:30,3019.0,-11.1526, +2016-07-07 06:45:00,,,61.37 +2016-07-07 06:52:32,3020.0,-11.1536, +2016-07-07 07:00:00,,,61.8386 +2016-07-07 07:02:35,3020.0,-11.1536, +2016-07-07 07:12:37,3020.0,-11.1212, +2016-07-07 07:15:00,,,61.37 +2016-07-07 07:22:39,3021.0,-11.1212, +2016-07-07 07:30:00,,,60.9131 +2016-07-07 07:32:42,3021.0,-11.1212, +2016-07-07 07:42:44,3022.0,-11.0889, +2016-07-07 07:45:00,,,61.37 +2016-07-07 07:52:46,3022.0,-11.0899, +2016-07-07 08:00:00,,,61.37 +2016-07-07 08:02:49,3023.0,-11.0899, +2016-07-07 08:12:51,3023.0,-11.0889, +2016-07-07 08:15:00,,,61.37 +2016-07-07 08:22:54,3024.0,-11.0899, +2016-07-07 08:30:00,,,61.6744 +2016-07-07 08:32:56,3025.0,-11.0577, +2016-07-07 08:42:59,3026.0,-11.0899, +2016-07-07 08:45:00,,,61.6799 +2016-07-07 08:53:01,3028.0,-11.0899, +2016-07-07 09:00:00,,,61.8386 +2016-07-07 09:03:04,3029.0,-11.0577, +2016-07-07 09:13:06,3030.0,-11.0577, +2016-07-07 09:15:00,,,62.4644 +2016-07-07 09:23:08,3030.0,-11.0577, +2016-07-07 09:30:00,,,61.9926 +2016-07-07 09:33:11,3031.0,-11.0587, +2016-07-07 09:43:14,3033.0,-11.0266, +2016-07-07 09:45:00,,,62.1473 +2016-07-07 09:53:16,3034.0,-11.0266, +2016-07-07 10:00:00,,,61.8386 +2016-07-07 10:03:19,3035.0,-11.0276, +2016-07-07 10:13:21,3036.0,-11.0276, +2016-07-07 10:15:00,,,61.9926 +2016-07-07 10:23:24,3037.0,-11.0276, +2016-07-07 10:30:00,,,62.3082 +2016-07-07 10:33:27,3038.0,-10.9956, +2016-07-07 10:43:29,3039.0,-10.9956, +2016-07-07 10:45:00,,,62.9427 +2016-07-07 10:53:32,3040.0,-11.0276, +2016-07-07 11:00:00,,,63.2673 +2016-07-07 11:03:34,3043.0,-10.9646, +2016-07-07 11:13:37,3043.0,-10.9646, +2016-07-07 11:15:00,,,62.3082 +2016-07-07 11:23:40,3043.0,-10.9328, +2016-07-07 11:30:00,,,63.113 +2016-07-07 11:33:42,3043.0,-10.9328, +2016-07-07 11:43:45,3046.0,-10.9337, +2016-07-07 11:45:00,,,63.9256 +2016-07-07 11:53:48,3047.0,-10.9337, +2016-07-07 12:00:00,,,63.5949 +2016-07-07 12:03:50,3049.0,-10.9337, +2016-07-07 12:13:53,3050.0,-10.9347, +2016-07-07 12:15:00,,,64.4134 +2016-07-07 12:23:55,3050.0,-10.9337, +2016-07-07 12:30:00,,,62.7788 +2016-07-07 12:33:56,3051.0,-10.8712, +2016-07-07 12:43:59,3051.0,-10.9029, +2016-07-07 12:45:00,,,63.5949 +2016-07-07 12:54:01,3052.0,-10.8712, +2016-07-07 13:00:00,,,64.2538 +2016-07-07 13:04:04,3054.0,-10.9029, +2016-07-07 13:14:07,3056.0,-10.8712, +2016-07-07 13:15:00,,,64.4248 +2016-07-07 13:24:10,3057.0,-10.8712, +2016-07-07 13:30:00,,,64.4306 +2016-07-07 13:34:13,3058.0,-10.8712, +2016-07-07 13:44:15,3058.0,-10.8406, +2016-07-07 13:45:00,,,64.5967 +2016-07-07 13:54:18,3058.0,-10.8091, +2016-07-07 14:00:00,,,65.2752 +2016-07-07 14:04:21,3059.0,-10.8091, +2016-07-07 14:14:24,3059.0,-10.8406, +2016-07-07 14:15:00,,,64.0893 +2016-07-07 14:24:27,3061.0,-10.8406, +2016-07-07 14:30:00,,,63.757 +2016-07-07 14:34:30,3062.0,-10.8091, +2016-07-07 14:44:32,3063.0,-10.81, +2016-07-07 14:45:00,,,64.9314 +2016-07-07 14:54:35,3064.0,-10.81, +2016-07-07 15:00:00,,,63.1018 +2016-07-07 15:04:38,3064.0,-10.7786, +2016-07-07 15:14:41,3065.0,-10.7786, +2016-07-07 15:15:00,,,64.9314 +2016-07-07 15:24:43,3065.0,-10.7786, +2016-07-07 15:30:00,,,62.9371 +2016-07-07 15:34:46,3065.0,-10.7472, +2016-07-07 15:44:49,3065.0,-10.81, +2016-07-07 15:45:00,,,63.757 +2016-07-07 15:54:52,3066.0,-10.7786, +2016-07-07 16:00:00,,,64.5967 +2016-07-07 16:04:55,3066.0,-10.81, +2016-07-07 16:14:58,3067.0,-10.7786, +2016-07-07 16:15:00,,,64.9372 +2016-07-07 16:25:01,3067.0,-10.7786, +2016-07-07 16:30:00,,,65.2752 +2016-07-07 16:35:04,3066.0,-10.7472, +2016-07-07 16:45:00,,,65.1057 +2016-07-07 16:45:06,3067.0,-10.81, +2016-07-07 16:55:09,3067.0,-10.81, +2016-07-07 17:00:00,,,65.2752 +2016-07-07 17:05:12,3067.0,-10.7786, +2016-07-07 17:15:00,,,64.4248 +2016-07-07 17:15:15,3066.0,-10.81, +2016-07-07 17:25:18,3065.0,-10.7472, +2016-07-07 17:30:00,,,62.7788 +2016-07-07 17:35:20,3068.0,-10.7491, +2016-07-07 17:45:00,,,64.5967 +2016-07-07 17:45:23,3065.0,-10.81, +2016-07-07 17:55:26,3065.0,-10.81, +2016-07-07 18:00:00,,,64.7636 +2016-07-07 18:05:29,3065.0,-10.7786, +2016-07-07 18:15:00,,,63.7627 +2016-07-07 18:15:31,3065.0,-10.8091, +2016-07-07 18:25:34,3065.0,-10.81, +2016-07-07 18:30:00,,,64.4191 +2016-07-07 18:35:37,3065.0,-10.81, +2016-07-07 18:45:00,,,63.1074 +2016-07-07 18:45:40,3063.0,-10.81, +2016-07-07 18:55:42,3064.0,-10.8091, +2016-07-07 19:00:00,,,65.9671 +2016-07-07 19:05:45,3061.0,-10.81, +2016-07-07 19:15:00,,,62.6212 +2016-07-07 19:15:48,3060.0,-10.81, +2016-07-07 19:25:50,3058.0,-10.8091, +2016-07-07 19:30:00,,,62.4588 +2016-07-07 19:35:53,3058.0,-10.8091, +2016-07-07 19:45:00,,,62.3027 +2016-07-07 19:45:56,3058.0,-10.8406, +2016-07-07 19:55:58,3057.0,-10.8091, +2016-07-07 20:00:00,,,62.3027 +2016-07-07 20:06:01,3055.0,-10.8406, +2016-07-07 20:15:00,,,61.8277 +2016-07-07 20:16:03,3053.0,-10.8406, +2016-07-07 20:26:06,3052.0,-10.8406, +2016-07-07 20:30:00,,,61.3646 +2016-07-07 20:36:09,3051.0,-10.8396, +2016-07-07 20:45:00,,,61.3646 +2016-07-07 20:46:11,3050.0,-10.8396, +2016-07-07 20:56:14,3049.0,-10.8712, +2016-07-07 21:00:00,,,61.2134 +2016-07-07 21:06:16,3047.0,-10.8712, +2016-07-07 21:15:00,,,60.9077 +2016-07-07 21:16:19,3045.0,-10.8712, +2016-07-07 21:26:21,3043.0,-10.902, +2016-07-07 21:30:00,,,60.7532 +2016-07-07 21:36:24,3043.0,-10.902, +2016-07-07 21:45:00,,,60.6047 +2016-07-07 21:46:26,3042.0,-10.902, +2016-07-07 21:56:29,3040.0,-10.902, +2016-07-07 22:00:00,,,60.6047 +2016-07-07 22:06:32,3039.0,-10.901, +2016-07-07 22:15:00,,,60.3045 +2016-07-07 22:16:34,3038.0,-10.901, +2016-07-07 22:26:37,3037.0,-10.901, +2016-07-07 22:30:00,,,60.1526 +2016-07-07 22:36:39,3036.0,-10.9328, +2016-07-07 22:45:00,,,59.8616 +2016-07-07 22:46:41,3036.0,-10.9328, +2016-07-07 22:56:44,3035.0,-10.9328, +2016-07-07 23:00:00,,,60.0122 +2016-07-07 23:06:46,3034.0,-10.9328, +2016-07-07 23:15:00,,,59.4246 +2016-07-07 23:16:49,3033.0,-10.9328, +2016-07-07 23:26:51,3033.0,-10.9328, +2016-07-07 23:30:00,,,59.7171 +2016-07-07 23:36:54,3031.0,-10.9318, +2016-07-07 23:45:00,,,59.7171 +2016-07-07 23:46:56,3030.0,-10.9318, +2016-07-07 23:56:58,3030.0,-10.9318, +2016-07-08 00:00:00,,,59.5732 +2016-07-08 00:07:01,3030.0,-10.9318, +2016-07-08 00:15:00,,,59.4299 +2016-07-08 00:17:03,3030.0,-10.9636, +2016-07-08 00:27:06,3029.0,-10.9636, +2016-07-08 00:30:00,,,59.4246 +2016-07-08 00:37:08,3029.0,-10.9636, +2016-07-08 00:45:00,,,59.1347 +2016-07-08 00:47:11,3029.0,-10.9636, +2016-07-08 00:57:13,3029.0,-10.9636, +2016-07-08 01:00:00,,,59.1347 +2016-07-08 01:07:15,3028.0,-10.9636, +2016-07-08 01:15:00,,,58.707 +2016-07-08 01:17:25,3028.0,-10.9636, +2016-07-08 01:27:28,3027.0,-10.9636, +2016-07-08 01:30:00,,,58.8472 +2016-07-08 01:37:30,3026.0,-10.9636, +2016-07-08 01:45:00,,,58.707 +2016-07-08 01:47:33,3026.0,-10.9627, +2016-07-08 01:57:35,3026.0,-10.9636, +2016-07-08 02:00:00,,,58.8472 +2016-07-08 02:07:38,3026.0,-10.9946, +2016-07-08 02:15:00,,,58.5674 +2016-07-08 02:17:40,3025.0,-10.9946, +2016-07-08 02:27:42,3025.0,-10.9946, +2016-07-08 02:30:00,,,58.5674 +2016-07-08 02:37:45,3024.0,-10.9946, +2016-07-08 02:45:00,,,58.5674 +2016-07-08 02:47:47,3024.0,-10.9946, +2016-07-08 02:57:50,3023.0,-10.9946, +2016-07-08 03:00:00,,,58.707 +2016-07-08 03:07:52,3023.0,-11.0266, +2016-07-08 03:15:00,,,58.4232 +2016-07-08 03:17:55,3023.0,-10.9946, +2016-07-08 03:27:57,3023.0,-11.0266, +2016-07-08 03:30:00,,,58.2848 +2016-07-08 03:37:59,3023.0,-11.0256, +2016-07-08 03:45:00,,,58.2848 +2016-07-08 03:48:02,3022.0,-11.0256, +2016-07-08 03:58:04,3022.0,-11.0266, +2016-07-08 04:00:00,,,58.147 +2016-07-08 04:08:07,3022.0,-11.0266, +2016-07-08 04:15:00,,,58.0046 +2016-07-08 04:18:09,3022.0,-11.0256, +2016-07-08 04:28:12,3022.0,-11.0256, +2016-07-08 04:30:00,,,58.147 +2016-07-08 04:38:14,3022.0,-11.0256, +2016-07-08 04:45:00,,,58.0046 +2016-07-08 04:48:17,3022.0,-11.0256, +2016-07-08 04:58:19,3022.0,-11.0256, +2016-07-08 05:00:00,,,58.147 +2016-07-08 05:08:22,3022.0,-11.0256, +2016-07-08 05:15:00,,,57.7267 +2016-07-08 05:18:24,3022.0,-11.0256, +2016-07-08 05:28:27,3021.0,-11.0256, +2016-07-08 05:30:00,,,57.9994 +2016-07-08 05:38:29,3021.0,-11.0256, +2016-07-08 05:45:00,,,57.4511 +2016-07-08 05:48:32,3021.0,-11.0256, +2016-07-08 05:58:34,3022.0,-11.0256, +2016-07-08 06:00:00,,,57.4562 +2016-07-08 06:08:37,3022.0,-11.0266, +2016-07-08 06:15:00,,,57.4511 +2016-07-08 06:18:39,3022.0,-11.0256, +2016-07-08 06:28:42,3022.0,-11.0266, +2016-07-08 06:30:00,,,57.7215 +2016-07-08 06:38:44,3022.0,-10.9946, +2016-07-08 06:45:00,,,57.3167 +2016-07-08 06:48:47,3022.0,-10.9946, +2016-07-08 06:58:49,3022.0,-10.9946, +2016-07-08 07:00:00,,,57.4511 +2016-07-08 07:08:52,3023.0,-10.9946, +2016-07-08 07:15:00,,,57.3116 +2016-07-08 07:18:54,3023.0,-10.9946, +2016-07-08 07:28:57,3023.0,-10.9636, +2016-07-08 07:30:00,,,57.1829 +2016-07-08 07:38:59,3024.0,-10.9636, +2016-07-08 07:45:00,,,57.3167 +2016-07-08 07:49:02,3024.0,-10.9636, +2016-07-08 07:59:04,3024.0,-10.9318, +2016-07-08 08:00:00,,,57.3167 +2016-07-08 08:09:07,3026.0,-10.9318, +2016-07-08 08:15:00,,,57.7267 +2016-07-08 08:19:09,3026.0,-10.9318, +2016-07-08 08:29:12,3028.0,-10.9328, +2016-07-08 08:30:00,,,57.7267 +2016-07-08 08:39:14,3029.0,-10.901, +2016-07-08 08:45:00,,,57.7267 +2016-07-08 08:49:17,3029.0,-10.9328, +2016-07-08 08:59:19,3030.0,-10.901, +2016-07-08 09:00:00,,,57.7267 +2016-07-08 09:09:22,3031.0,-10.8722, +2016-07-08 09:15:00,,,57.3218 +2016-07-08 09:19:25,3033.0,-10.9048, +2016-07-08 09:29:28,3034.0,-10.8712, +2016-07-08 09:30:00,,,57.5963 +2016-07-08 09:39:30,3036.0,-10.902, +2016-07-08 09:45:00,,,57.4511 +2016-07-08 09:49:33,3037.0,-10.8712, +2016-07-08 09:59:36,3038.0,-10.8712, +2016-07-08 10:00:00,,,57.4511 +2016-07-08 10:09:38,3040.0,-10.8406, +2016-07-08 10:15:00,,,57.8628 +2016-07-08 10:19:41,3042.0,-10.8406, +2016-07-08 10:29:44,3043.0,-10.8406, +2016-07-08 10:30:00,,,58.2848 +2016-07-08 10:39:47,3043.0,-10.8406, +2016-07-08 10:45:00,,,58.0046 +2016-07-08 10:49:49,3046.0,-10.8091, +2016-07-08 10:59:52,3048.0,-10.8091, +2016-07-08 11:00:00,,,58.1418 +2016-07-08 11:09:55,3049.0,-10.8091, +2016-07-08 11:15:00,,,58.0046 +2016-07-08 11:19:57,3050.0,-10.81, +2016-07-08 11:30:00,3051.0,-10.81,58.147 +2016-07-08 11:40:03,3051.0,-10.81, +2016-07-08 11:45:00,,,58.147 +2016-07-08 11:50:05,3051.0,-10.7786, +2016-07-08 12:00:00,,,58.2848 +2016-07-08 12:00:08,3053.0,-10.7786, +2016-07-08 12:10:11,3053.0,-10.7786, +2016-07-08 12:15:00,,,58.0046 +2016-07-08 12:20:14,3054.0,-10.7786, +2016-07-08 12:30:00,,,58.0046 +2016-07-08 12:30:16,3054.0,-10.7786, +2016-07-08 12:40:19,3054.0,-10.7472, +2016-07-08 12:45:00,,,58.147 +2016-07-08 12:50:22,3055.0,-10.7472, +2016-07-08 13:00:00,,,57.9994 +2016-07-08 13:00:24,3055.0,-10.7472, +2016-07-08 13:10:27,3055.0,-10.7472, +2016-07-08 13:15:00,,,57.9994 +2016-07-08 13:20:30,3055.0,-10.7786, +2016-07-08 13:30:00,,,57.7267 +2016-07-08 13:30:33,3055.0,-10.7786, +2016-07-08 13:40:43,3055.0,-10.7472, +2016-07-08 13:45:00,,,57.8679 +2016-07-08 13:50:46,3054.0,-10.7472, +2016-07-08 14:00:00,,,57.5912 +2016-07-08 14:00:48,3054.0,-10.7472, +2016-07-08 14:10:51,3054.0,-10.7472, +2016-07-08 14:15:00,,,57.7267 +2016-07-08 14:20:54,3053.0,-10.7472, +2016-07-08 14:30:00,,,57.3167 +2016-07-08 14:30:56,3053.0,-10.7472, +2016-07-08 14:40:59,3053.0,-10.7472, +2016-07-08 14:45:00,,,57.4511 +2016-07-08 14:51:02,3054.0,-10.716, +2016-07-08 15:00:00,,,57.3167 +2016-07-08 15:01:05,3054.0,-10.7482, +2016-07-08 15:11:08,3054.0,-10.716, +2016-07-08 15:15:00,,,57.5912 +2016-07-08 15:21:11,3054.0,-10.7169, +2016-07-08 15:30:00,,,57.4511 +2016-07-08 15:31:13,3054.0,-10.7472, +2016-07-08 15:41:16,3054.0,-10.7472, +2016-07-08 15:45:00,,,57.4511 +2016-07-08 15:51:20,3054.0,-10.716, +2016-07-08 16:00:00,,,57.3167 +2016-07-08 16:01:23,3054.0,-10.716, +2016-07-08 16:11:25,3054.0,-10.7169, +2016-07-08 16:15:00,,,57.3167 +2016-07-08 16:21:28,3054.0,-10.716, +2016-07-08 16:30:00,,,57.3167 +2016-07-08 16:31:31,3054.0,-10.716, +2016-07-08 16:41:34,3054.0,-10.7472, +2016-07-08 16:45:00,,,57.0445 +2016-07-08 16:51:36,3054.0,-10.716, +2016-07-08 17:00:00,,,57.1778 +2016-07-08 17:01:39,3054.0,-10.7169, +2016-07-08 17:11:42,3053.0,-10.716, +2016-07-08 17:15:00,,,57.0445 +2016-07-08 17:21:45,3053.0,-10.7472, +2016-07-08 17:30:00,,,56.7746 +2016-07-08 17:31:48,3053.0,-10.7472, +2016-07-08 17:41:51,3052.0,-10.7786, +2016-07-08 17:45:00,,,57.0395 +2016-07-08 17:51:53,3051.0,-10.7786, +2016-07-08 18:00:00,,,56.9068 +2016-07-08 18:01:56,3051.0,-10.7786, +2016-07-08 18:11:59,3051.0,-10.7472, +2016-07-08 18:15:00,,,56.7746 +2016-07-08 18:22:02,3050.0,-10.7776, +2016-07-08 18:30:00,,,56.643 +2016-07-08 18:32:05,3049.0,-10.7463, +2016-07-08 18:42:08,3047.0,-10.7776, +2016-07-08 18:45:00,,,56.5068 +2016-07-08 18:52:10,3046.0,-10.7776, +2016-07-08 19:00:00,,,56.6379 +2016-07-08 19:02:13,3044.0,-10.7776, +2016-07-08 19:12:16,3043.0,-10.8091, +2016-07-08 19:15:00,,,56.5068 +2016-07-08 19:22:19,3043.0,-10.8091, +2016-07-08 19:30:00,,,56.2463 +2016-07-08 19:32:21,3043.0,-10.8081, +2016-07-08 19:42:24,3042.0,-10.8081, +2016-07-08 19:45:00,,,56.2463 +2016-07-08 19:52:27,3040.0,-10.8081, +2016-07-08 20:00:00,,,56.2463 +2016-07-08 20:02:30,3039.0,-10.8396, +2016-07-08 20:12:33,3038.0,-10.8396, +2016-07-08 20:15:00,,,56.1118 +2016-07-08 20:22:35,3037.0,-10.8396, +2016-07-08 20:30:00,,,55.8494 +2016-07-08 20:32:38,3036.0,-10.8396, +2016-07-08 20:42:40,3036.0,-10.8396, +2016-07-08 20:45:00,,,55.7214 +2016-07-08 20:52:43,3035.0,-10.8387, +2016-07-08 21:00:00,,,55.5891 +2016-07-08 21:02:45,3034.0,-10.8387, +2016-07-08 21:12:48,3033.0,-10.8387, +2016-07-08 21:15:00,,,55.7214 +2016-07-08 21:22:51,3031.0,-10.8703, +2016-07-08 21:30:00,,,55.4621 +2016-07-08 21:32:53,3030.0,-10.8693, +2016-07-08 21:42:56,3030.0,-10.901, +2016-07-08 21:45:00,,,55.0795 +2016-07-08 21:52:59,3029.0,-10.901, +2016-07-08 22:00:00,,,54.9546 +2016-07-08 22:03:02,3029.0,-10.901, +2016-07-08 22:13:04,3028.0,-10.901, +2016-07-08 22:15:00,,,55.0795 +2016-07-08 22:23:07,3026.0,-10.9328, +2016-07-08 22:30:00,,,27.6485 +2016-07-08 22:33:10,3026.0,-10.8703, +2016-07-08 22:43:12,3025.0,-10.902, +2016-07-08 22:45:00,,,28.0615 +2016-07-08 22:53:15,3024.0,-10.902, +2016-07-08 23:00:00,,,30.3703 +2016-07-08 23:03:17,3023.0,-10.901, +2016-07-08 23:13:20,3022.0,-10.901, +2016-07-08 23:15:00,,,30.3162 +2016-07-08 23:23:22,3022.0,-10.901, +2016-07-08 23:30:00,,,30.6507 +2016-07-08 23:33:25,3020.0,-10.9328, +2016-07-08 23:43:28,3019.0,-10.9328, +2016-07-08 23:45:00,,,30.6534 +2016-07-08 23:53:30,3017.0,-10.9318, +2016-07-09 00:00:00,,,30.7658 +2016-07-09 00:03:33,3015.0,-10.9318, +2016-07-09 00:13:35,3015.0,-10.9318, +2016-07-09 00:15:00,,,30.7685 +2016-07-09 00:23:38,3014.0,-10.9318, +2016-07-09 00:30:00,,,30.774 +2016-07-09 00:33:40,3014.0,-10.9318, +2016-07-09 00:43:43,3012.0,-10.9636, +2016-07-09 00:45:00,,,30.7713 +2016-07-09 00:53:45,3012.0,-10.9636, +2016-07-09 01:00:00,,,30.7685 +2016-07-09 01:03:48,3010.0,-10.9636, +2016-07-09 01:13:50,3010.0,-10.9318, +2016-07-09 01:15:00,,,30.829 +2016-07-09 01:23:53,3009.0,-10.9636, +2016-07-09 01:30:00,,,30.8208 +2016-07-09 01:33:55,3009.0,-10.9, +2016-07-09 01:43:58,3007.0,-10.9946, +2016-07-09 01:45:00,,,8.0469 +2016-07-09 01:54:00,3007.0,-10.9946, +2016-07-09 02:00:00,,,30.3162 +2016-07-09 02:04:03,3007.0,-10.9946, +2016-07-09 02:14:05,3007.0,-10.9936, +2016-07-09 02:15:00,,,30.4843 +2016-07-09 02:24:08,3005.0,-11.0256, +2016-07-09 02:30:00,,,30.4272 +2016-07-09 02:34:10,3005.0,-10.9936, +2016-07-09 02:44:13,3005.0,-11.0256, +2016-07-09 02:45:00,,,30.4897 +2016-07-09 02:54:15,3005.0,-11.0256, +2016-07-09 03:00:00,,,30.4843 +2016-07-09 03:04:18,3003.0,-11.0948, +2016-07-09 03:14:20,3002.0,-10.9946, +2016-07-09 03:15:00,,,30.7109 +2016-07-09 03:24:23,3002.0,-11.0256, +2016-07-09 03:30:00,,,30.7713 +2016-07-09 03:34:25,3002.0,-11.0256, +2016-07-09 03:44:28,3002.0,-11.0256, +2016-07-09 03:45:00,,,30.7658 +2016-07-09 03:54:30,3002.0,-11.0256, +2016-07-09 04:00:00,,,29.9297 +2016-07-09 04:04:33,3001.0,-11.0256, +2016-07-09 04:14:35,3001.0,-11.0889, +2016-07-09 04:15:00,,,55.4621 +2016-07-09 04:24:38,3009.0,-10.9318, +2016-07-09 04:30:00,,,75.5838 +2016-07-09 04:34:40,3009.0,-10.9636, +2016-07-09 04:44:43,3009.0,-10.9636, +2016-07-09 04:45:00,,,74.8987 +2016-07-09 04:54:45,3009.0,-10.9636, +2016-07-09 05:00:00,,,75.8105 +2016-07-09 05:04:48,3009.0,-10.9318, +2016-07-09 05:14:50,3009.0,-10.9318, +2016-07-09 05:15:00,,,76.0453 +2016-07-09 05:24:52,3009.0,-10.9318, +2016-07-09 05:30:00,,,75.8105 +2016-07-09 05:34:55,3009.0,-10.9318, +2016-07-09 05:44:57,3009.0,-10.9308, +2016-07-09 05:45:00,,,75.8172 +2016-07-09 05:55:00,3009.0,-10.9627, +2016-07-09 06:00:00,,,75.8105 +2016-07-09 06:05:02,3009.0,-10.9636, +2016-07-09 06:15:00,,,76.0453 +2016-07-09 06:15:05,3009.0,-10.9627, +2016-07-09 06:25:07,3009.0,-10.9627, +2016-07-09 06:30:00,,,76.5056 +2016-07-09 06:35:10,3009.0,-10.9627, +2016-07-09 06:45:00,,,75.5771 +2016-07-09 06:45:12,3010.0,-10.9308, +2016-07-09 06:55:15,3010.0,-10.9308, +2016-07-09 07:00:00,,,75.8105 +2016-07-09 07:05:17,3009.0,-10.9627, +2016-07-09 07:15:00,,,75.8105 +2016-07-09 07:15:20,3010.0,-10.9318, +2016-07-09 07:25:22,3011.0,-10.9318, +2016-07-09 07:30:00,,,75.8105 +2016-07-09 07:35:25,3011.0,-10.9636, +2016-07-09 07:45:00,,,75.3519 +2016-07-09 07:45:27,3012.0,-10.9318, +2016-07-09 07:55:30,3012.0,-10.9318, +2016-07-09 08:00:00,,,74.9054 +2016-07-09 08:05:33,3013.0,-10.9318, +2016-07-09 08:15:00,,,74.6841 +2016-07-09 08:15:35,3013.0,-10.9318, +2016-07-09 08:25:38,3014.0,-10.9318, +2016-07-09 08:30:00,,,75.8105 +2016-07-09 08:35:40,3014.0,-10.9, +2016-07-09 08:45:00,,,76.0453 +2016-07-09 08:45:43,3017.0,-10.9328, +2016-07-09 08:55:45,3018.0,-10.901, +2016-07-09 09:00:00,,,75.5838 +2016-07-09 09:05:48,3019.0,-10.901, +2016-07-09 09:15:00,,,74.45100000000002 +2016-07-09 09:15:50,3020.0,-10.901, +2016-07-09 09:25:53,3021.0,-10.901, +2016-07-09 09:30:00,,,74.9054 +2016-07-09 09:35:55,3022.0,-10.8693, +2016-07-09 09:45:00,,,75.3585 +2016-07-09 09:45:58,3022.0,-10.8693, +2016-07-09 09:56:00,3024.0,-10.8703, +2016-07-09 10:00:00,,,75.5838 +2016-07-09 10:06:03,3024.0,-10.8693, +2016-07-09 10:15:00,,,74.0151 +2016-07-09 10:16:05,3026.0,-10.8387, +2016-07-09 10:26:08,3029.0,-10.8396, +2016-07-09 10:30:00,,,74.23899999999998 +2016-07-09 10:36:11,3029.0,-10.8387, +2016-07-09 10:45:00,,,74.0151 +2016-07-09 10:46:13,3030.0,-10.8396, +2016-07-09 10:56:16,3030.0,-10.8396, +2016-07-09 11:00:00,,,74.0151 +2016-07-09 11:06:19,3030.0,-10.8396, +2016-07-09 11:15:00,,,74.4576 +2016-07-09 11:16:21,3032.0,-10.8396, +2016-07-09 11:26:24,3033.0,-10.8081, +2016-07-09 11:30:00,,,74.4576 +2016-07-09 11:36:27,3034.0,-10.8081, +2016-07-09 11:45:00,,,74.45100000000002 +2016-07-09 11:46:29,3034.0,-10.8091, +2016-07-09 11:56:32,3035.0,-10.7776, +2016-07-09 12:00:00,,,73.79899999999998 +2016-07-09 12:06:34,3036.0,-10.8091, +2016-07-09 12:15:00,,,74.6841 +2016-07-09 12:16:37,3036.0,-10.8091, +2016-07-09 12:26:40,3037.0,-10.7776, +2016-07-09 12:30:00,,,74.6775 +2016-07-09 12:36:42,3037.0,-10.7776, +2016-07-09 12:45:00,,,74.6841 +2016-07-09 12:46:45,3038.0,-10.7776, +2016-07-09 12:56:48,3038.0,-10.7776, +2016-07-09 13:00:00,,,74.45100000000002 +2016-07-09 13:06:51,3039.0,-10.7463, +2016-07-09 13:15:00,,,75.3519 +2016-07-09 13:16:53,3039.0,-10.7463, +2016-07-09 13:26:56,3039.0,-10.7463, +2016-07-09 13:30:00,,,74.6841 +2016-07-09 13:36:59,3040.0,-10.715, +2016-07-09 13:45:00,,,74.4576 +2016-07-09 13:47:02,3040.0,-10.7463, +2016-07-09 13:57:04,3041.0,-10.7472, +2016-07-09 14:00:00,,,73.79899999999998 +2016-07-09 14:07:07,3043.0,-10.716, +2016-07-09 14:15:00,,,74.0151 +2016-07-09 14:17:10,3043.0,-10.716, +2016-07-09 14:27:13,3043.0,-10.716, +2016-07-09 14:30:00,,,73.3642 +2016-07-09 14:37:16,3043.0,-10.716, +2016-07-09 14:45:00,,,73.7925 +2016-07-09 14:47:18,3043.0,-10.716, +2016-07-09 14:57:21,3043.0,-10.7472, +2016-07-09 15:00:00,,,73.79899999999998 +2016-07-09 15:07:24,3043.0,-10.716, +2016-07-09 15:15:00,,,73.79899999999998 +2016-07-09 15:17:27,3044.0,-10.6848, +2016-07-09 15:27:30,3044.0,-10.716, +2016-07-09 15:30:00,,,73.3642 +2016-07-09 15:37:32,3044.0,-10.6848, +2016-07-09 15:45:00,,,73.79899999999998 +2016-07-09 15:47:35,3045.0,-10.6848, +2016-07-09 15:57:38,3045.0,-10.6848, +2016-07-09 16:00:00,,,74.0151 +2016-07-09 16:07:41,3046.0,-10.6848, +2016-07-09 16:15:00,,,73.79899999999998 +2016-07-09 16:17:43,3046.0,-10.716, +2016-07-09 16:27:46,3045.0,-10.716, +2016-07-09 16:30:00,,,73.3642 +2016-07-09 16:37:49,3045.0,-10.716, +2016-07-09 16:45:00,,,71.8844 +2016-07-09 16:47:52,3044.0,-10.716, +2016-07-09 16:57:54,3044.0,-10.716, +2016-07-09 17:00:00,,,72.5095 +2016-07-09 17:07:57,3044.0,-10.716, +2016-07-09 17:15:00,,,72.0895 +2016-07-09 17:18:00,3044.0,-10.716, +2016-07-09 17:28:03,3044.0,-10.716, +2016-07-09 17:30:00,,,72.2957 +2016-07-09 17:38:06,3044.0,-10.716, +2016-07-09 17:45:00,,,72.3021 +2016-07-09 17:48:08,3043.0,-10.716, +2016-07-09 17:58:11,3043.0,-10.716, +2016-07-09 18:00:00,,,72.0895 +2016-07-09 18:08:14,3043.0,-10.715, +2016-07-09 18:15:00,,,71.0693 +2016-07-09 18:18:17,3043.0,-10.715, +2016-07-09 18:28:19,3043.0,-10.7463, +2016-07-09 18:30:00,,,71.4714 +2016-07-09 18:38:22,3041.0,-10.7463, +2016-07-09 18:45:00,,,70.8637 +2016-07-09 18:48:25,3040.0,-10.7463, +2016-07-09 18:58:28,3039.0,-10.7463, +2016-07-09 19:00:00,,,70.2659 +2016-07-09 19:08:30,3038.0,-10.7463, +2016-07-09 19:15:00,,,69.4798 +2016-07-09 19:18:32,3037.0,-10.7776, +2016-07-09 19:28:35,3037.0,-10.7767, +2016-07-09 19:30:00,,,69.289 +2016-07-09 19:38:38,3036.0,-10.7767, +2016-07-09 19:45:00,,,68.8982 +2016-07-09 19:48:40,3035.0,-10.7767, +2016-07-09 19:58:43,3034.0,-10.8081, +2016-07-09 20:00:00,,,68.3318 +2016-07-09 20:08:46,3032.0,-10.8081, +2016-07-09 20:15:00,,,67.9511 +2016-07-09 20:18:48,3030.0,-10.8072, +2016-07-09 20:28:51,3029.0,-10.8072, +2016-07-09 20:30:00,,,67.7683 +2016-07-09 20:38:54,3029.0,-10.8072, +2016-07-09 20:45:00,,,67.5864 +2016-07-09 20:48:56,3027.0,-10.8072, +2016-07-09 20:58:59,3026.0,-10.8072, +2016-07-09 21:00:00,,,67.7683 +2016-07-09 21:09:02,3025.0,-10.8377, +2016-07-09 21:15:00,,,67.2194 +2016-07-09 21:19:04,3023.0,-10.8377, +2016-07-09 21:29:07,3023.0,-10.8377, +2016-07-09 21:30:00,,,67.0403 +2016-07-09 21:39:10,3022.0,-10.8377, +2016-07-09 21:45:00,,,66.8562 +2016-07-09 21:49:12,3022.0,-10.8377, +2016-07-09 21:59:15,3021.0,-10.8377, +2016-07-09 22:00:00,,,66.8622 +2016-07-09 22:09:18,3019.0,-10.8684, +2016-07-09 22:15:00,,,66.679 +2016-07-09 22:19:20,3018.0,-10.8693, +2016-07-09 22:29:23,3016.0,-10.8684, +2016-07-09 22:30:00,,,67.2194 +2016-07-09 22:39:26,3015.0,-10.8684, +2016-07-09 22:45:00,,,66.679 +2016-07-09 22:49:28,3015.0,-10.9, +2016-07-09 22:59:31,3014.0,-10.9, +2016-07-09 23:00:00,,,66.8562 +2016-07-09 23:09:34,3014.0,-10.9, +2016-07-09 23:15:00,,,66.4967 +2016-07-09 23:19:36,3014.0,-10.9, +2016-07-09 23:29:39,3012.0,-10.9, +2016-07-09 23:30:00,,,65.806 +2016-07-09 23:39:42,3012.0,-10.9, +2016-07-09 23:45:00,,,66.1584 +2016-07-09 23:49:44,3011.0,-10.9, +2016-07-09 23:59:47,3010.0,-10.9, +2016-07-10 00:00:00,,,65.9847 +2016-07-10 00:09:49,3010.0,-10.8991, +2016-07-10 00:15:00,,,65.6165 +2016-07-10 00:19:52,3009.0,-10.8991, +2016-07-10 00:29:55,3008.0,-10.8991, +2016-07-10 00:30:00,,,65.1 +2016-07-10 00:39:57,3008.0,-10.9308, +2016-07-10 00:45:00,,,64.7694 +2016-07-10 00:50:00,3008.0,-10.9308, +2016-07-10 01:00:00,,,65.2868 +2016-07-10 01:00:02,3007.0,-10.9299, +2016-07-10 01:10:05,3007.0,-10.9299, +2016-07-10 01:15:00,,,64.9314 +2016-07-10 01:20:08,3006.0,-10.9617, +2016-07-10 01:30:00,,,64.9429 +2016-07-10 01:30:10,3006.0,-10.9617, +2016-07-10 01:40:13,3005.0,-10.9617, +2016-07-10 01:45:00,,,65.2752 +2016-07-10 01:50:15,3005.0,-10.9617, +2016-07-10 02:00:00,,,65.2868 +2016-07-10 02:00:18,3004.0,-10.9617, +2016-07-10 02:10:21,3002.0,-10.9617, +2016-07-10 02:15:00,,,64.271 +2016-07-10 02:20:23,3002.0,-10.9617, +2016-07-10 02:30:00,,,65.634 +2016-07-10 02:30:26,3002.0,-10.9617, +2016-07-10 02:40:28,3001.0,-10.9617, +2016-07-10 02:45:00,,,65.1115 +2016-07-10 02:50:31,3001.0,-10.9617, +2016-07-10 03:00:00,,,64.7751 +2016-07-10 03:00:33,3001.0,-10.9617, +2016-07-10 03:10:36,3000.0,-10.9617, +2016-07-10 03:15:00,,,64.4363 +2016-07-10 03:20:39,3000.0,-10.9926, +2016-07-10 03:30:00,,,63.2785 +2016-07-10 03:30:41,2999.0,-10.9926, +2016-07-10 03:40:44,2999.0,-10.9926, +2016-07-10 03:45:00,,,63.937 +2016-07-10 03:50:46,2999.0,-10.9926, +2016-07-10 04:00:00,,,62.9539 +2016-07-10 04:00:49,2997.0,-11.0247, +2016-07-10 04:10:53,2997.0,-10.9926, +2016-07-10 04:15:00,,,63.2785 +2016-07-10 04:20:56,2997.0,-11.0247, +2016-07-10 04:30:00,,,63.6062 +2016-07-10 04:30:59,2997.0,-11.0247, +2016-07-10 04:41:01,2996.0,-11.0247, +2016-07-10 04:45:00,,,63.1186 +2016-07-10 04:51:04,2995.0,-11.0247, +2016-07-10 05:00:00,,,62.6379 +2016-07-10 05:01:07,2994.0,-11.0247, +2016-07-10 05:11:09,2994.0,-11.0247, +2016-07-10 05:15:00,,,62.9539 +2016-07-10 05:21:12,2994.0,-11.0247, +2016-07-10 05:30:00,,,62.0036 +2016-07-10 05:31:14,2993.0,-11.0247, +2016-07-10 05:41:17,2993.0,-11.0247, +2016-07-10 05:45:00,,,62.3138 +2016-07-10 05:51:20,2993.0,-11.0237, +2016-07-10 06:00:00,,,61.8496 +2016-07-10 06:01:22,2993.0,-11.0247, +2016-07-10 06:11:25,2993.0,-11.0247, +2016-07-10 06:15:00,,,62.1583 +2016-07-10 06:21:27,2993.0,-11.0247, +2016-07-10 06:30:00,,,61.8441 +2016-07-10 06:31:30,2993.0,-10.9926, +2016-07-10 06:41:32,2993.0,-10.9926, +2016-07-10 06:45:00,,,62.1583 +2016-07-10 06:51:35,2993.0,-10.9926, +2016-07-10 07:00:00,,,62.3138 +2016-07-10 07:01:38,2993.0,-10.9607, +2016-07-10 07:11:40,2993.0,-10.9607, +2016-07-10 07:15:00,,,61.8441 +2016-07-10 07:21:43,2994.0,-10.9617, +2016-07-10 07:30:00,,,62.0036 +2016-07-10 07:31:46,2994.0,-10.9299, +2016-07-10 07:41:48,2995.0,-10.9617, +2016-07-10 07:45:00,,,62.1583 +2016-07-10 07:51:51,2996.0,-10.9617, +2016-07-10 08:00:00,,,62.481 +2016-07-10 08:01:54,2998.0,-10.9299, +2016-07-10 08:11:56,2998.0,-10.9299, +2016-07-10 08:15:00,,,61.5328 +2016-07-10 08:21:59,3000.0,-10.9299, +2016-07-10 08:30:00,,,62.3138 +2016-07-10 08:32:02,3001.0,-10.9308, +2016-07-10 08:42:05,3002.0,-10.9308, +2016-07-10 08:45:00,,,61.8441 +2016-07-10 08:52:07,3004.0,-10.9, +2016-07-10 09:00:00,,,62.7955 +2016-07-10 09:02:10,3006.0,-10.9, +2016-07-10 09:12:13,3007.0,-10.9, +2016-07-10 09:15:00,,,62.9539 +2016-07-10 09:22:16,3008.0,-10.9, +2016-07-10 09:30:00,,,62.3193 +2016-07-10 09:32:18,3009.0,-10.9, +2016-07-10 09:42:21,3011.0,-10.8693, +2016-07-10 09:45:00,,,62.3138 +2016-07-10 09:52:24,3013.0,-10.8377, +2016-07-10 10:00:00,,,62.9707 +2016-07-10 10:02:27,3014.0,-10.8377, +2016-07-10 10:12:30,3015.0,-10.8081, +2016-07-10 10:15:00,,,62.3138 +2016-07-10 10:22:32,3016.0,-10.8081, +2016-07-10 10:30:00,,,62.9539 +2016-07-10 10:32:35,3019.0,-10.8081, +2016-07-10 10:42:38,3021.0,-10.7767, +2016-07-10 10:45:00,,,62.649 +2016-07-10 10:52:41,3023.0,-10.7767, +2016-07-10 11:00:00,,,62.4755 +2016-07-10 11:02:44,3024.0,-10.7463, +2016-07-10 11:12:47,3026.0,-10.7463, +2016-07-10 11:15:00,,,63.2785 +2016-07-10 11:22:50,3029.0,-10.7463, +2016-07-10 11:30:00,,,61.8496 +2016-07-10 11:32:53,3029.0,-10.7463, +2016-07-10 11:42:56,3030.0,-10.715, +2016-07-10 11:45:00,,,63.95399999999999 +2016-07-10 11:52:59,3032.0,-10.6848, +2016-07-10 12:00:00,,,63.1354 +2016-07-10 12:03:02,3034.0,-10.6848, +2016-07-10 12:13:05,3036.0,-10.6848, +2016-07-10 12:15:00,,,62.9707 +2016-07-10 12:23:08,3037.0,-10.6857, +2016-07-10 12:30:00,,,63.1354 +2016-07-10 12:33:11,3038.0,-10.6546, +2016-07-10 12:43:14,3039.0,-10.6848, +2016-07-10 12:45:00,,,62.8123 +2016-07-10 12:53:17,3042.0,-10.6546, +2016-07-10 13:00:00,,,62.9707 +2016-07-10 13:03:20,3043.0,-10.6546, +2016-07-10 13:13:23,3046.0,-10.6245, +2016-07-10 13:15:00,,,63.2954 +2016-07-10 13:23:26,3047.0,-10.6245, +2016-07-10 13:30:00,,,63.1186 +2016-07-10 13:33:29,3048.0,-10.6245, +2016-07-10 13:43:32,3047.0,-10.6245, +2016-07-10 13:45:00,,,62.0036 +2016-07-10 13:53:35,3048.0,-10.5935, +2016-07-10 14:00:00,,,63.1354 +2016-07-10 14:03:38,3048.0,-10.5935, +2016-07-10 14:13:41,3048.0,-10.5945, +2016-07-10 14:15:00,,,63.7853 +2016-07-10 14:23:44,3048.0,-10.5945, +2016-07-10 14:30:00,,,63.1354 +2016-07-10 14:33:48,3049.0,-10.5626, +2016-07-10 14:43:51,3050.0,-10.5636, +2016-07-10 14:45:00,,,63.456 +2016-07-10 14:53:54,3050.0,-10.5636, +2016-07-10 15:00:00,,,62.4921 +2016-07-10 15:03:57,3050.0,-10.5636, +2016-07-10 15:14:00,3050.0,-10.5636, +2016-07-10 15:15:00,,,63.6062 +2016-07-10 15:24:03,3050.0,-10.5636, +2016-07-10 15:30:00,,,62.8123 +2016-07-10 15:34:07,3051.0,-10.5636, +2016-07-10 15:44:10,3051.0,-10.5327, +2016-07-10 15:45:00,,,63.6231 +2016-07-10 15:54:13,3051.0,-10.5636, +2016-07-10 16:00:00,,,63.2954 +2016-07-10 16:04:16,3051.0,-10.5636, +2016-07-10 16:14:19,3051.0,-10.5636, +2016-07-10 16:15:00,,,62.8123 +2016-07-10 16:24:22,3052.0,-10.5327, +2016-07-10 16:30:00,,,62.8123 +2016-07-10 16:34:25,3051.0,-10.5327, +2016-07-10 16:44:29,3052.0,-10.5327, +2016-07-10 16:45:00,,,63.9483 +2016-07-10 16:54:32,3051.0,-10.5636, +2016-07-10 17:00:00,,,62.8123 +2016-07-10 17:04:35,3051.0,-10.5636, +2016-07-10 17:14:38,3051.0,-10.5636, +2016-07-10 17:15:00,,,62.3304 +2016-07-10 17:24:41,3051.0,-10.5636, +2016-07-10 17:30:00,,,61.8606 +2016-07-10 17:34:44,3050.0,-10.5636, +2016-07-10 17:44:47,3050.0,-10.5636, +2016-07-10 17:45:00,,,62.4866 +2016-07-10 17:54:51,3048.0,-10.5626, +2016-07-10 18:00:00,,,62.8123 +2016-07-10 18:04:54,3048.0,-10.5636, +2016-07-10 18:14:57,3047.0,-10.5626, +2016-07-10 18:15:00,,,62.4921 +2016-07-10 18:25:00,3045.0,-10.5626, +2016-07-10 18:30:00,,,62.3304 +2016-07-10 18:35:03,3044.0,-10.5626, +2016-07-10 18:45:00,,,62.8123 +2016-07-10 18:45:06,3043.0,-10.5626, +2016-07-10 18:55:09,3043.0,-10.5935, +2016-07-10 19:00:00,,,62.6546 +2016-07-10 19:05:12,3042.0,-10.5935, +2016-07-10 19:15:00,,,61.5492 +2016-07-10 19:15:15,3040.0,-10.5935, +2016-07-10 19:25:18,3039.0,-10.5926, +2016-07-10 19:30:00,,,61.7073 +2016-07-10 19:35:21,3037.0,-10.5926, +2016-07-10 19:45:00,,,61.09 +2016-07-10 19:45:25,3037.0,-10.6235, +2016-07-10 19:55:28,3036.0,-10.6235, +2016-07-10 20:00:00,,,61.09 +2016-07-10 20:05:31,3035.0,-10.6226, +2016-07-10 20:15:00,,,61.09 +2016-07-10 20:15:34,3033.0,-10.6226, +2016-07-10 20:25:37,3031.0,-10.6226, +2016-07-10 20:30:00,,,61.1063 +2016-07-10 20:35:40,3030.0,-10.6226, +2016-07-10 20:45:00,,,60.951 +2016-07-10 20:45:43,3029.0,-10.6226, +2016-07-10 20:55:46,3029.0,-10.6536, +2016-07-10 21:00:00,,,60.7856 +2016-07-10 21:05:49,3026.0,-10.6536, +2016-07-10 21:15:00,,,61.1063 +2016-07-10 21:15:51,3030.0,-10.6226, +2016-07-10 21:25:54,3029.0,-10.6536, +2016-07-10 21:30:00,,,60.8018 +2016-07-10 21:35:57,3028.0,-10.6838, +2016-07-10 21:45:00,,,59.9042 +2016-07-10 21:46:00,3025.0,-10.6838, +2016-07-10 21:56:03,3024.0,-10.6838, +2016-07-10 22:00:00,,,60.2007 +2016-07-10 22:06:06,3023.0,-10.6838, +2016-07-10 22:15:00,,,59.9095 +2016-07-10 22:16:09,3022.0,-10.6838, +2016-07-10 22:26:11,3022.0,-10.6838, +2016-07-10 22:30:00,,,59.7596 +2016-07-10 22:36:14,3021.0,-10.6838, +2016-07-10 22:45:00,,,59.7596 +2016-07-10 22:46:16,3020.0,-10.715, +2016-07-10 22:56:19,3018.0,-10.7141, +2016-07-10 23:00:00,,,59.7596 +2016-07-10 23:06:22,3017.0,-10.7141, +2016-07-10 23:15:00,,,59.4669 +2016-07-10 23:16:25,3015.0,-10.7141, +2016-07-10 23:26:27,3015.0,-10.7141, +2016-07-10 23:30:00,,,59.4669 +2016-07-10 23:36:30,3014.0,-10.7141, +2016-07-10 23:45:00,,,60.3473 +2016-07-10 23:46:33,3014.0,-10.7141, +2016-07-10 23:56:36,3013.0,-10.7453, +2016-07-11 00:00:00,,,59.7596 +2016-07-11 00:06:39,3012.0,-10.7444, +2016-07-11 00:15:00,,,60.2007 +2016-07-11 00:16:41,3011.0,-10.7453, +2016-07-11 00:26:44,3010.0,-10.7453, +2016-07-11 00:30:00,,,59.7596 +2016-07-11 00:36:47,3009.0,-10.7444, +2016-07-11 00:45:00,,,59.182 +2016-07-11 00:46:50,3009.0,-10.7757, +2016-07-11 00:56:53,3008.0,-10.7444, +2016-07-11 01:00:00,,,59.4669 +2016-07-11 01:06:56,3008.0,-10.7444, +2016-07-11 01:15:00,,,59.182 +2016-07-11 01:16:58,3007.0,-10.7757, +2016-07-11 01:27:01,3007.0,-10.7748, +2016-07-11 01:30:00,,,59.0352 +2016-07-11 01:37:04,3007.0,-10.7757, +2016-07-11 01:45:00,,,59.9042 +2016-07-11 01:47:07,3006.0,-10.7748, +2016-07-11 01:57:09,3006.0,-10.7757, +2016-07-11 02:00:00,,,60.2007 +2016-07-11 02:07:12,3005.0,-10.7748, +2016-07-11 02:15:00,,,59.7596 +2016-07-11 02:17:15,3004.0,-10.8062, +2016-07-11 02:27:17,3002.0,-10.8062, +2016-07-11 02:30:00,,,59.6155 +2016-07-11 02:37:20,3000.0,-10.8062, +2016-07-11 02:45:00,,,59.6155 +2016-07-11 02:47:23,3000.0,-10.8062, +2016-07-11 02:57:26,3000.0,-10.8062, +2016-07-11 03:00:00,,,59.6155 +2016-07-11 03:07:29,2999.0,-10.8062, +2016-07-11 03:15:00,,,59.6155 +2016-07-11 03:17:31,2998.0,-10.8053, +2016-07-11 03:27:34,2997.0,-10.8053, +2016-07-11 03:30:00,,,59.4669 +2016-07-11 03:37:37,2996.0,-10.8368, +2016-07-11 03:45:00,,,59.6155 +2016-07-11 03:47:40,2996.0,-10.8368, +2016-07-11 03:57:42,2995.0,-10.8368, +2016-07-11 04:00:00,,,59.7596 +2016-07-11 04:07:45,2994.0,-10.8368, +2016-07-11 04:15:00,,,59.7596 +2016-07-11 04:17:47,2994.0,-10.8368, +2016-07-11 04:27:50,2994.0,-10.8368, +2016-07-11 04:30:00,,,59.4669 +2016-07-11 04:37:53,2993.0,-10.8368, +2016-07-11 04:45:00,,,59.0352 +2016-07-11 04:47:55,2993.0,-10.8368, +2016-07-11 04:57:58,2992.0,-10.8684, +2016-07-11 05:00:00,,,59.182 +2016-07-11 05:08:01,2992.0,-10.8368, +2016-07-11 05:15:00,,,59.3241 +2016-07-11 05:18:03,2992.0,-10.8368, +2016-07-11 05:28:06,2992.0,-10.8368, +2016-07-11 05:30:00,,,59.9202 +2016-07-11 05:38:09,2992.0,-10.8684, +2016-07-11 05:45:00,,,59.3347 +2016-07-11 05:48:11,2991.0,-10.8368, +2016-07-11 05:58:14,2991.0,-10.8368, +2016-07-11 06:00:00,,,59.7755 +2016-07-11 06:08:17,2989.0,-10.8684, +2016-07-11 06:15:00,,,59.1925 +2016-07-11 06:18:19,2989.0,-10.8684, +2016-07-11 06:28:29,2988.0,-10.8684, +2016-07-11 06:30:00,,,59.1925 +2016-07-11 06:38:32,2988.0,-10.8684, +2016-07-11 06:45:00,,,59.0457 +2016-07-11 06:48:34,2987.0,-10.8684, +2016-07-11 06:58:37,2987.0,-10.8368, +2016-07-11 07:00:00,,,58.6247 +2016-07-11 07:08:39,2987.0,-10.8368, +2016-07-11 07:15:00,,,59.6314 +2016-07-11 07:18:42,2988.0,-10.8368, +2016-07-11 07:28:46,2988.0,-10.8368, +2016-07-11 07:30:00,,,59.7755 +2016-07-11 07:38:50,2988.0,-10.8368, +2016-07-11 07:45:00,,,59.9202 +2016-07-11 07:48:52,2988.0,-10.8368, +2016-07-11 07:58:55,2988.0,-10.8368, +2016-07-11 08:00:00,,,60.2168 +2016-07-11 08:08:58,2988.0,-10.8368, +2016-07-11 08:15:00,,,60.3634 +2016-07-11 08:19:01,2989.0,-10.8368, +2016-07-11 08:29:03,2988.0,-10.8368, +2016-07-11 08:30:00,,,59.7755 +2016-07-11 08:39:06,2990.0,-10.8368, +2016-07-11 08:45:00,,,59.7755 +2016-07-11 08:49:09,2989.0,-10.8368, +2016-07-11 08:59:11,2990.0,-10.8368, +2016-07-11 09:00:00,,,59.9202 +2016-07-11 09:09:14,2990.0,-10.8053, +2016-07-11 09:15:00,,,59.6261 +2016-07-11 09:19:17,2991.0,-10.8053, +2016-07-11 09:29:20,2992.0,-10.8062, +2016-07-11 09:30:00,,,59.9202 +2016-07-11 09:39:22,2992.0,-10.8053, +2016-07-11 09:45:00,,,59.4933 +2016-07-11 09:49:25,2992.0,-10.8062, +2016-07-11 09:59:28,2993.0,-10.8062, +2016-07-11 10:00:00,,,59.7861 +2016-07-11 10:09:30,2993.0,-10.7748, +2016-07-11 10:15:00,,,60.3795 +2016-07-11 10:19:33,2994.0,-10.7748, +2016-07-11 10:29:36,2994.0,-10.7748, +2016-07-11 10:30:00,,,60.6801 +2016-07-11 10:39:39,2995.0,-10.7444, +2016-07-11 10:45:00,,,60.2328 +2016-07-11 10:49:42,2996.0,-10.7444, +2016-07-11 10:59:44,2997.0,-10.7444, +2016-07-11 11:00:00,,,60.2328 +2016-07-11 11:09:47,2998.0,-10.7453, +2016-07-11 11:15:00,,,60.5322 +2016-07-11 11:19:49,3000.0,-10.7453, +2016-07-11 11:30:00,3001.0,-10.7453,60.8288 +2016-07-11 11:40:03,3001.0,-10.7453, +2016-07-11 11:45:00,,,60.6748 +2016-07-11 11:50:06,3002.0,-10.7141, +2016-07-11 12:00:00,,,61.2896 +2016-07-11 12:00:09,3002.0,-10.7453, +2016-07-11 12:10:12,3002.0,-10.7453, +2016-07-11 12:15:00,,,60.5268 +2016-07-11 12:20:15,3004.0,-10.7453, +2016-07-11 12:30:00,,,61.1389 +2016-07-11 12:30:17,3005.0,-10.7141, +2016-07-11 12:40:20,3005.0,-10.7141, +2016-07-11 12:45:00,,,60.8288 +2016-07-11 12:50:23,3005.0,-10.7141, +2016-07-11 13:00:00,,,60.5322 +2016-07-11 13:00:26,3005.0,-10.7141, +2016-07-11 13:10:29,3005.0,-10.7141, +2016-07-11 13:15:00,,,60.5268 +2016-07-11 13:20:32,3006.0,-10.7141, +2016-07-11 13:30:00,,,60.6963 +2016-07-11 13:30:35,3005.0,-10.7453, +2016-07-11 13:40:38,3005.0,-10.7453, +2016-07-11 13:45:00,,,60.3956 +2016-07-11 13:50:41,3005.0,-10.7453, +2016-07-11 14:00:00,,,60.2328 +2016-07-11 14:00:44,3003.0,-10.7141, +2016-07-11 14:10:47,3003.0,-10.7141, +2016-07-11 14:15:00,,,60.3795 +2016-07-11 14:20:50,3002.0,-10.7141, +2016-07-11 14:30:00,,,60.8288 +2016-07-11 14:30:53,3002.0,-10.7141, +2016-07-11 14:40:56,3002.0,-10.7141, +2016-07-11 14:45:00,,,60.5429 +2016-07-11 14:50:59,3002.0,-10.7141, +2016-07-11 15:00:00,,,60.3956 +2016-07-11 15:01:02,3002.0,-10.7453, +2016-07-11 15:11:05,3002.0,-10.7141, +2016-07-11 15:15:00,,,60.9943 +2016-07-11 15:21:08,3001.0,-10.7453, +2016-07-11 15:30:00,,,60.8288 +2016-07-11 15:31:11,3001.0,-10.7453, +2016-07-11 15:41:14,3001.0,-10.7141, +2016-07-11 15:45:00,,,60.9997 +2016-07-11 15:51:17,3000.0,-10.7141, +2016-07-11 16:00:00,,,60.0975 +2016-07-11 16:01:20,2998.0,-10.7444, +2016-07-11 16:11:23,2998.0,-10.7444, +2016-07-11 16:15:00,,,60.2435 +2016-07-11 16:21:26,2997.0,-10.7444, +2016-07-11 16:30:00,,,59.2188 +2016-07-11 16:31:29,2996.0,-10.7444, +2016-07-11 16:41:31,2996.0,-10.7444, +2016-07-11 16:45:00,,,59.6526 +2016-07-11 16:51:34,2996.0,-10.7444, +2016-07-11 17:00:00,,,59.9521 +2016-07-11 17:01:37,2996.0,-10.7131, +2016-07-11 17:11:40,2996.0,-10.7444, +2016-07-11 17:15:00,,,59.9468 +2016-07-11 17:21:42,2996.0,-10.7434, +2016-07-11 17:30:00,,,60.2489 +2016-07-11 17:31:46,2995.0,-10.7434, +2016-07-11 17:41:49,2994.0,-10.7434, +2016-07-11 17:45:00,,,60.0975 +2016-07-11 17:51:52,2994.0,-10.7748, +2016-07-11 18:00:00,,,60.0975 +2016-07-11 18:01:55,2993.0,-10.7748, +2016-07-11 18:11:58,2992.0,-10.8062, +2016-07-11 18:15:00,,,59.6579 +2016-07-11 18:22:01,2992.0,-10.8062, +2016-07-11 18:30:00,,,60.5429 +2016-07-11 18:32:04,2991.0,-10.8062, +2016-07-11 18:42:07,2990.0,-10.8062, +2016-07-11 18:45:00,,,60.2435 +2016-07-11 18:52:10,2988.0,-10.8053, +2016-07-11 19:00:00,,,59.802 +2016-07-11 19:02:13,2987.0,-10.8053, +2016-07-11 19:12:15,2986.0,-10.8053, +2016-07-11 19:15:00,,,59.802 +2016-07-11 19:22:18,2985.0,-10.8368, +2016-07-11 19:30:00,,,59.6579 +2016-07-11 19:32:21,2983.0,-10.8368, +2016-07-11 19:42:24,2982.0,-10.8358, +2016-07-11 19:45:00,,,59.9468 +2016-07-11 19:52:27,2980.0,-10.8358, +2016-07-11 20:00:00,,,59.0772 +2016-07-11 20:02:30,2980.0,-10.8674, +2016-07-11 20:12:33,2979.0,-10.8664, +2016-07-11 20:15:00,,,58.9361 +2016-07-11 20:22:35,2978.0,-10.8664, +2016-07-11 20:30:00,,,58.5063 +2016-07-11 20:32:38,2975.0,-10.8981, +2016-07-11 20:42:41,2974.0,-10.8981, +2016-07-11 20:45:00,,,59.2188 +2016-07-11 20:52:44,2973.0,-10.8981, +2016-07-11 21:00:00,,,58.2297 +2016-07-11 21:02:46,2971.0,-10.9289, +2016-07-11 21:12:49,2969.0,-10.9289, +2016-07-11 21:15:00,,,57.2642 +2016-07-11 21:22:52,2967.0,-10.9289, +2016-07-11 21:30:00,,,58.0871 +2016-07-11 21:32:54,2967.0,-10.9289, +2016-07-11 21:42:57,2965.0,-10.9289, +2016-07-11 21:45:00,,,57.5328 +2016-07-11 21:53:00,2963.0,-10.9598, +2016-07-11 22:00:00,,,57.6679 +2016-07-11 22:03:03,2963.0,-10.9598, +2016-07-11 22:13:05,2960.0,-10.9598, +2016-07-11 22:15:00,,,57.5328 +2016-07-11 22:23:08,2958.0,-10.9598, +2016-07-11 22:30:00,,,57.5328 +2016-07-11 22:33:11,2958.0,-10.9598, +2016-07-11 22:43:14,2956.0,-10.9598, +2016-07-11 22:45:00,,,57.5328 +2016-07-11 22:53:16,2954.0,-11.0227, +2016-07-11 23:00:00,,,57.2591 +2016-07-11 23:03:19,2953.0,-10.9907, +2016-07-11 23:13:22,2952.0,-11.0217, +2016-07-11 23:15:00,,,56.3263 +2016-07-11 23:23:25,2951.0,-11.0217, +2016-07-11 23:30:00,,,55.6681 +2016-07-11 23:33:27,2949.0,-11.0217, +2016-07-11 23:43:30,2949.0,-11.0217, +2016-07-11 23:45:00,,,56.1916 +2016-07-11 23:53:33,2947.0,-11.0538, +2016-07-12 00:00:00,,,55.8007 +2016-07-12 00:15:00,,, +2016-07-12 00:30:00,,, +2016-07-12 00:45:00,,, +2016-07-12 01:00:00,,,56.1916 +2016-07-12 01:03:51,2941.0,-11.0528, +2016-07-12 01:13:53,2941.0,-11.0528, +2016-07-12 01:15:00,,,56.3212 +2016-07-12 01:23:56,2940.0,-11.085, +2016-07-12 01:30:00,,,55.541 +2016-07-12 01:33:58,2939.0,-11.085, +2016-07-12 01:44:00,2938.0,-11.0538, +2016-07-12 01:45:00,,,30.457 +2016-07-12 01:54:03,2938.0,-11.085, +2016-07-12 02:00:00,,,55.541 +2016-07-12 02:04:06,2937.0,-11.085, +2016-07-12 02:14:08,2936.0,-11.084, +2016-07-12 02:15:00,,,55.4095 +2016-07-12 02:24:11,2936.0,-11.0538, +2016-07-12 02:30:00,,,55.4095 +2016-07-12 02:34:13,2935.0,-11.1163, +2016-07-12 02:44:16,2934.0,-11.0538, +2016-07-12 02:45:00,,,30.5659 +2016-07-12 02:54:18,2934.0,-11.1163, +2016-07-12 03:00:00,,,55.4095 +2016-07-12 03:04:21,2934.0,-11.1163, +2016-07-12 03:14:24,2933.0,-11.0528, +2016-07-12 03:15:00,,,30.2918 +2016-07-12 03:24:26,2932.0,-11.085, +2016-07-12 03:30:00,,,30.3485 +2016-07-12 03:34:29,2932.0,-11.085, +2016-07-12 03:44:31,2931.0,-11.085, +2016-07-12 03:45:00,,,30.6915 +2016-07-12 03:54:34,2931.0,-11.085, +2016-07-12 04:00:00,,,27.5407 +2016-07-12 04:04:37,2931.0,-11.085, +2016-07-12 04:14:39,2930.0,-11.085, +2016-07-12 04:15:00,,,30.6915 +2016-07-12 04:24:42,2930.0,-11.1173, +2016-07-12 04:30:00,,,30.6942 +2016-07-12 04:34:44,2928.0,-11.1163, +2016-07-12 04:44:47,2927.0,-11.1173, +2016-07-12 04:45:00,,,28.2565 +2016-07-12 04:54:49,2927.0,-11.1163, +2016-07-12 05:00:00,,,30.6942 +2016-07-12 05:04:52,2926.0,-11.1487, +2016-07-12 05:14:54,2926.0,-11.1487, +2016-07-12 05:15:00,,,30.697 +2016-07-12 05:24:57,2925.0,-11.1163, +2016-07-12 05:30:00,,,30.7518 +2016-07-12 05:34:59,2924.0,-11.1487, +2016-07-12 05:45:00,,,30.6942 +2016-07-12 05:45:02,2924.0,-11.1487, +2016-07-12 05:55:04,2924.0,-11.1487, +2016-07-12 06:00:00,,,30.6997 +2016-07-12 06:05:07,2924.0,-11.1487, +2016-07-12 06:15:00,,,30.7546 +2016-07-12 06:15:09,2923.0,-11.1487, +2016-07-12 06:25:12,2923.0,-11.1487, +2016-07-12 06:30:00,,,30.7546 +2016-07-12 06:35:14,2922.0,-11.1487, +2016-07-12 06:45:00,,,30.8095 +2016-07-12 06:45:17,2922.0,-11.1487, +2016-07-12 06:55:19,2921.0,-11.1487, +2016-07-12 07:00:00,,,29.8603 +2016-07-12 07:05:22,2921.0,-11.1487, +2016-07-12 07:15:00,,,30.2485 +2016-07-12 07:15:24,2921.0,-11.1487, +2016-07-12 07:25:27,2920.0,-11.1487, +2016-07-12 07:30:00,,,30.3566 +2016-07-12 07:35:29,2919.0,-11.1487, +2016-07-12 07:45:00,,,30.3025 +2016-07-12 07:45:32,2919.0,-11.1163, +2016-07-12 07:55:34,2919.0,-11.1163, +2016-07-12 08:00:00,,,30.5821 +2016-07-12 08:05:37,2920.0,-11.084, +2016-07-12 08:15:00,,,30.5767 +2016-07-12 08:15:39,2920.0,-11.1163, +2016-07-12 08:25:42,2920.0,-11.1467, +2016-07-12 08:30:00,,,55.4243 +2016-07-12 08:35:44,2921.0,-11.1477, +2016-07-12 08:45:00,,,55.6879 +2016-07-12 08:45:47,2923.0,-11.1477, +2016-07-12 08:55:50,2923.0,-11.1163, +2016-07-12 09:00:00,,,56.4715 +2016-07-12 09:05:52,2924.0,-11.1163, +2016-07-12 09:15:00,,,55.6879 +2016-07-12 09:16:02,2924.0,-11.1487, +2016-07-12 09:26:05,2926.0,-11.1163, +2016-07-12 09:30:00,,,55.8007 +2016-07-12 09:36:07,2927.0,-11.084, +2016-07-12 09:45:00,,,56.4565 +2016-07-12 09:46:10,2928.0,-11.085, +2016-07-12 09:56:13,2930.0,-11.0538, +2016-07-12 10:00:00,,,29.9056 +2016-07-12 10:06:15,2931.0,-11.085, +2016-07-12 10:15:00,,,55.8155 +2016-07-12 10:16:18,2931.0,-11.0528, +2016-07-12 10:26:21,2934.0,-11.085, +2016-07-12 10:30:00,,,55.8155 +2016-07-12 10:36:23,2936.0,-11.085, +2016-07-12 10:45:00,,,55.9437 +2016-07-12 10:46:27,2937.0,-11.085, +2016-07-12 10:56:31,2937.0,-11.085, +2016-07-12 11:00:00,,,55.9437 +2016-07-12 11:06:34,2938.0,-11.085, +2016-07-12 11:15:00,,,56.2065 +2016-07-12 11:16:36,2939.0,-11.0528, +2016-07-12 11:26:39,2939.0,-11.0538, +2016-07-12 11:30:00,,,56.3363 +2016-07-12 11:36:42,2940.0,-11.0538, +2016-07-12 11:45:00,,,56.8705 +2016-07-12 11:46:44,2941.0,-11.0538, +2016-07-12 11:56:47,2941.0,-11.0538, +2016-07-12 12:00:00,,,56.2065 +2016-07-12 12:06:50,2941.0,-11.0217, +2016-07-12 12:15:00,,,57.2744 +2016-07-12 12:16:52,2943.0,-11.0217, +2016-07-12 12:26:55,2943.0,-11.0217, +2016-07-12 12:30:00,,,56.7336 +2016-07-12 12:36:58,2944.0,-11.0217, +2016-07-12 12:45:00,,,56.8705 +2016-07-12 12:47:01,2945.0,-10.9907, +2016-07-12 12:57:03,2945.0,-11.0217, +2016-07-12 13:00:00,,,56.0774 +2016-07-12 13:07:06,2945.0,-11.0227, +2016-07-12 13:15:00,,,57.0079 +2016-07-12 13:17:09,2946.0,-10.9907, +2016-07-12 13:27:12,2946.0,-10.9907, +2016-07-12 13:30:00,,,56.4665 +2016-07-12 13:37:15,2946.0,-10.9907, +2016-07-12 13:45:00,,,56.6023 +2016-07-12 13:47:18,2946.0,-10.9897, +2016-07-12 13:57:20,2946.0,-10.9907, +2016-07-12 14:00:00,,,56.0724 +2016-07-12 14:07:23,2946.0,-10.9598, +2016-07-12 14:15:00,,,56.3363 +2016-07-12 14:17:26,2946.0,-10.9588, +2016-07-12 14:27:29,2947.0,-10.9598, +2016-07-12 14:30:00,,,56.4715 +2016-07-12 14:37:32,2948.0,-10.9588, +2016-07-12 14:45:00,,,56.2065 +2016-07-12 14:47:35,2949.0,-10.9588, +2016-07-12 14:57:37,2949.0,-10.9598, +2016-07-12 15:00:00,,,57.0029 +2016-07-12 15:07:40,2949.0,-10.9598, +2016-07-12 15:15:00,,,56.8654 +2016-07-12 15:17:43,2949.0,-10.9598, +2016-07-12 15:27:46,2949.0,-10.9598, +2016-07-12 15:30:00,,,56.0774 +2016-07-12 15:37:49,2949.0,-10.9598, +2016-07-12 15:45:00,,,55.6879 +2016-07-12 15:47:52,2949.0,-10.9588, +2016-07-12 15:57:55,2948.0,-10.9588, +2016-07-12 16:00:00,,,55.8155 +2016-07-12 16:07:58,2947.0,-10.9588, +2016-07-12 16:15:00,,,55.8007 +2016-07-12 16:18:01,2947.0,-10.9588, +2016-07-12 16:28:04,2946.0,-10.9907, +2016-07-12 16:30:00,,,55.1676 +2016-07-12 16:38:06,2946.0,-10.9279, +2016-07-12 16:45:00,,,55.2982 +2016-07-12 16:48:09,2945.0,-10.9588, +2016-07-12 16:58:12,2945.0,-10.9279, +2016-07-12 17:00:00,,,27.4845 +2016-07-12 17:08:15,2944.0,-10.9279, +2016-07-12 17:15:00,,,27.6362 +2016-07-12 17:18:18,2943.0,-10.9279, +2016-07-12 17:28:21,2942.0,-10.9897, +2016-07-12 17:30:00,,,55.4243 +2016-07-12 17:38:24,2941.0,-11.0217, +2016-07-12 17:45:00,,,29.4696 +2016-07-12 17:48:27,2940.0,-10.9598, +2016-07-12 17:58:30,2939.0,-10.9598, +2016-07-12 18:00:00,,,28.1488 +2016-07-12 18:08:33,2938.0,-10.9588, +2016-07-12 18:15:00,,,55.683 +2016-07-12 18:18:36,2937.0,-11.0217, +2016-07-12 18:28:38,2935.0,-11.0528, +2016-07-12 18:30:00,,,55.4243 +2016-07-12 18:38:41,2934.0,-11.0528, +2016-07-12 18:45:00,,,55.683 +2016-07-12 18:48:44,2932.0,-11.0528, +2016-07-12 18:58:47,2931.0,-11.0528, +2016-07-12 19:00:00,,,55.5509 +2016-07-12 19:08:50,2929.0,-11.0217, +2016-07-12 19:15:00,,,55.683 +2016-07-12 19:18:53,2927.0,-11.0519, +2016-07-12 19:28:56,2926.0,-11.0519, +2016-07-12 19:30:00,,,55.9437 +2016-07-12 19:38:58,2924.0,-11.084, +2016-07-12 19:45:00,,,55.4243 +2016-07-12 19:49:01,2923.0,-11.084, +2016-07-12 19:59:03,2921.0,-11.084, +2016-07-12 20:00:00,,,55.683 +2016-07-12 20:09:06,2920.0,-11.084, +2016-07-12 20:15:00,,,56.6023 +2016-07-12 20:19:09,2918.0,-11.084, +2016-07-12 20:29:11,2918.0,-11.0831, +2016-07-12 20:30:00,,,56.7336 +2016-07-12 20:39:14,2915.0,-11.1153, +2016-07-12 20:45:00,,,56.0774 +2016-07-12 20:49:17,2913.0,-11.1143, +2016-07-12 20:59:19,2912.0,-11.1467, +2016-07-12 21:00:00,,,56.2065 +2016-07-12 21:09:22,2911.0,-11.1467, +2016-07-12 21:15:00,,,56.2065 +2016-07-12 21:19:25,2910.0,-11.1467, +2016-07-12 21:29:27,2908.0,-11.1467, +2016-07-12 21:30:00,,,56.3363 +2016-07-12 21:39:30,2907.0,-11.1467, +2016-07-12 21:45:00,,,56.8654 +2016-07-12 21:49:33,2905.0,-11.1457, +2016-07-12 21:59:35,2904.0,-11.1782, +2016-07-12 22:00:00,,,57.1409 +2016-07-12 22:09:38,2903.0,-11.1782, +2016-07-12 22:15:00,,,55.6879 +2016-07-12 22:19:41,2901.0,-11.2107, +2016-07-12 22:29:43,2898.0,-11.2097, +2016-07-12 22:30:00,,,55.4243 +2016-07-12 22:39:46,2898.0,-11.1782, +2016-07-12 22:45:00,,,30.5767 +2016-07-12 22:49:48,2897.0,-11.1782, +2016-07-12 22:59:51,2896.0,-11.1782, +2016-07-12 23:00:00,,,30.023000000000003 +2016-07-12 23:09:54,2894.0,-11.2107, +2016-07-12 23:15:00,,,30.7546 +2016-07-12 23:19:56,2892.0,-11.2107, +2016-07-12 23:29:59,2890.0,-11.2097, +2016-07-12 23:30:00,,,30.7546 +2016-07-12 23:40:01,2890.0,-11.2097, +2016-07-12 23:45:00,,,30.5849 +2016-07-12 23:50:04,2888.0,-11.2423, +2016-07-13 00:00:00,,,30.2512 +2016-07-13 00:00:07,2886.0,-11.2097, +2016-07-13 00:10:09,2883.0,-11.2423, +2016-07-13 00:15:00,,,30.7546 +2016-07-13 00:20:12,2883.0,-11.2751, +2016-07-13 00:30:00,,,30.7024 +2016-07-13 00:30:15,2882.0,-11.2741, +2016-07-13 00:40:17,2881.0,-11.3378, +2016-07-13 00:45:00,,,55.8155 +2016-07-13 00:50:20,2880.0,-11.3059, +2016-07-13 01:00:00,,,30.593000000000004 +2016-07-13 01:00:22,2877.0,-11.3059, +2016-07-13 01:10:25,2875.0,-11.3378, +2016-07-13 01:15:00,,,-4.1119 +2016-07-13 01:20:27,2874.0,-11.3388, +2016-07-13 01:30:00,,,-4.5589 +2016-07-13 01:30:30,2873.0,-11.3708, +2016-07-13 01:40:32,2870.0,-11.3708, +2016-07-13 01:45:00,,,-4.6664 +2016-07-13 01:50:35,2869.0,-11.3708, +2016-07-13 02:00:00,,,2.2482 +2016-07-13 02:00:37,2869.0,-11.3698, +2016-07-13 02:10:40,2868.0,-11.3708, +2016-07-13 02:15:00,,,-4.1484 +2016-07-13 02:20:43,2866.0,-11.4029, +2016-07-13 02:30:00,,,-4.3851 +2016-07-13 02:30:45,2866.0,-11.3708, +2016-07-13 02:40:47,2864.0,-11.4039, +2016-07-13 02:45:00,,,-4.6442 +2016-07-13 02:50:50,2863.0,-11.4029, +2016-07-13 03:00:00,,,-4.6883 +2016-07-13 03:00:52,2862.0,-11.4029, +2016-07-13 03:10:55,2862.0,-11.4351, +2016-07-13 03:15:00,,,6.9868 +2016-07-13 03:20:57,2861.0,-11.4019, +2016-07-13 03:30:00,,,-4.3210000000000015 +2016-07-13 03:31:00,2860.0,-11.4351, +2016-07-13 03:41:02,2859.0,-11.4351, +2016-07-13 03:45:00,,,-4.6219 +2016-07-13 03:51:05,2857.0,-11.4351, +2016-07-13 04:00:00,,,-4.7955 +2016-07-13 04:01:07,2857.0,-11.4351, +2016-07-13 04:11:10,2855.0,-11.4341, +2016-07-13 04:15:00,,,1.6703 +2016-07-13 04:21:13,2854.0,-11.4341, +2016-07-13 04:30:00,,,-4.7085 +2016-07-13 04:31:15,2854.0,-11.4351, +2016-07-13 04:41:18,2854.0,-11.4341, +2016-07-13 04:45:00,,,-4.774 +2016-07-13 04:51:20,2854.0,-11.4674, +2016-07-13 05:00:00,,,-4.7951 +2016-07-13 05:01:22,2853.0,-11.4674, +2016-07-13 05:11:24,2852.0,-11.4674, +2016-07-13 05:15:00,,,-4.7946 +2016-07-13 05:21:27,2851.0,-11.4674, +2016-07-13 05:30:00,,,-4.7942 +2016-07-13 05:31:29,2850.0,-11.4674, +2016-07-13 05:41:32,2849.0,-11.4674, +2016-07-13 05:45:00,,,-4.7942 +2016-07-13 05:51:34,2848.0,-11.4674, +2016-07-13 06:00:00,,,-4.8157 +2016-07-13 06:01:36,2847.0,-11.4674, +2016-07-13 06:11:39,2847.0,-11.4674, +2016-07-13 06:15:00,,,-4.7942 +2016-07-13 06:21:41,2847.0,-11.4674, +2016-07-13 06:30:00,,,-4.7715 +2016-07-13 06:31:44,2847.0,-11.4674, +2016-07-13 06:41:46,2847.0,-11.4341, +2016-07-13 06:45:00,,,-4.7719 +2016-07-13 06:51:49,2847.0,-11.4341, +2016-07-13 07:00:00,,,-4.7282 +2016-07-13 07:01:51,2847.0,-11.4341, +2016-07-13 07:11:54,2847.0,-11.4341, +2016-07-13 07:15:00,,,-4.7496 +2016-07-13 07:21:56,2847.0,-11.4351, +2016-07-13 07:30:00,,,-4.7278 +2016-07-13 07:31:59,2847.0,-11.4341, +2016-07-13 07:42:02,2847.0,-11.4351, +2016-07-13 07:45:00,,,-4.7711 +2016-07-13 07:52:04,2847.0,-11.4341, +2016-07-13 08:00:00,,,-4.7925 +2016-07-13 08:02:07,2847.0,-11.4341, +2016-07-13 08:12:09,2848.0,-11.4351, +2016-07-13 08:15:00,,,-4.8144 +2016-07-13 08:22:12,2849.0,-11.4341, +2016-07-13 08:30:00,,,-5.0278 +2016-07-13 08:32:14,2850.0,-11.5008, +2016-07-13 08:42:17,2850.0,-11.5333, +2016-07-13 08:45:00,,,-4.9638 +2016-07-13 08:52:20,2848.0,-11.5333, +2016-07-13 09:00:00,,,-4.9638 +2016-07-13 09:02:22,2847.0,-11.5333, +2016-07-13 09:12:25,2847.0,-11.5333, +2016-07-13 09:15:00,,,-4.814 +2016-07-13 09:22:27,2845.0,-11.5333, +2016-07-13 09:30:00,,,-4.7715 +2016-07-13 09:32:30,2843.0,-11.5333, +2016-07-13 09:42:32,2842.0,-11.4998, +2016-07-13 09:45:00,,,-4.9414 +2016-07-13 09:52:35,2840.0,-11.5008, +2016-07-13 10:00:00,,,-4.7265 +2016-07-13 10:02:37,2840.0,-11.5333, +2016-07-13 10:12:40,2840.0,-11.4998, +2016-07-13 10:15:00,,,-4.7047 +2016-07-13 10:22:42,2839.0,-11.4674, +2016-07-13 10:30:00,,,-4.7047 +2016-07-13 10:32:44,2839.0,-11.4998, +2016-07-13 10:42:47,2839.0,-11.5008, +2016-07-13 10:45:00,,,-4.6829 +2016-07-13 10:52:49,2839.0,-11.5008, +2016-07-13 11:00:00,,,-4.6401 +2016-07-13 11:02:52,2846.0,-11.4341, +2016-07-13 11:12:54,2927.0,-11.1801, +2016-07-13 11:15:00,,,55.4243 +2016-07-13 11:22:57,2931.0,-11.1801, +2016-07-13 11:30:00,,,55.8205 +2016-07-13 11:32:59,2933.0,-11.1811, +2016-07-13 11:43:02,2934.0,-11.1811, +2016-07-13 11:45:00,,,55.6929 +2016-07-13 11:53:04,2934.0,-11.1487, +2016-07-13 12:00:00,,,55.4243 +2016-07-13 12:03:07,2934.0,-11.1487, +2016-07-13 12:13:09,2934.0,-11.086, +2016-07-13 12:15:00,,,28.9116 +2016-07-13 12:23:12,2934.0,-11.085, +2016-07-13 12:30:00,,,29.4539 +2016-07-13 12:33:14,2935.0,-11.1173, +2016-07-13 12:43:17,2935.0,-11.1173, +2016-07-13 12:45:00,,,29.6723 +2016-07-13 12:53:20,2935.0,-11.085, +2016-07-13 13:00:00,,,29.895 +2016-07-13 13:03:22,2936.0,-11.086, +2016-07-13 13:13:25,2936.0,-11.086, +2016-07-13 13:15:00,,,29.9003 +2016-07-13 13:23:28,2937.0,-11.1173, +2016-07-13 13:30:00,,,30.015 +2016-07-13 13:33:30,2937.0,-11.1173, +2016-07-13 13:43:33,2937.0,-11.1173, +2016-07-13 13:45:00,,,30.015 +2016-07-13 13:53:35,2937.0,-11.086, +2016-07-13 14:00:00,,,29.6353 +2016-07-13 14:03:39,2937.0,-11.086, +2016-07-13 14:13:43,2937.0,-11.086, +2016-07-13 14:15:00,,,29.3623 +2016-07-13 14:23:45,2937.0,-11.1487, +2016-07-13 14:30:00,,,55.5509 +2016-07-13 14:33:48,2937.0,-11.1487, +2016-07-13 14:43:50,2937.0,-11.086, +2016-07-13 14:45:00,,,29.855 +2016-07-13 14:53:53,2936.0,-11.085, +2016-07-13 15:00:00,,,27.7419 +2016-07-13 15:03:56,2935.0,-11.085, +2016-07-13 15:13:58,2935.0,-11.1173, +2016-07-13 15:15:00,,,30.2405 +2016-07-13 15:24:01,2934.0,-11.1497, +2016-07-13 15:30:00,,,29.9082 +2016-07-13 15:34:04,2934.0,-11.1497, +2016-07-13 15:44:06,2934.0,-11.1497, +2016-07-13 15:45:00,,,30.1866 +2016-07-13 15:54:09,2933.0,-11.1497, +2016-07-13 16:00:00,,,30.1893 +2016-07-13 16:04:12,2932.0,-11.1487, +2016-07-13 16:14:14,2931.0,-11.1487, +2016-07-13 16:15:00,,,30.3566 +2016-07-13 16:24:16,2930.0,-11.1487, +2016-07-13 16:30:00,,,30.3593 +2016-07-13 16:34:27,2930.0,-11.1487, +2016-07-13 16:44:29,2928.0,-11.1811, +2016-07-13 16:45:00,,,29.9696 +2016-07-13 16:54:32,2927.0,-11.1811, +2016-07-13 17:00:00,,,30.3593 +2016-07-13 17:04:34,2926.0,-11.1487, +2016-07-13 17:14:37,2925.0,-11.1801, +2016-07-13 17:15:00,,,13.5243 +2016-07-13 17:24:39,2924.0,-11.1811, +2016-07-13 17:30:00,,,30.3647 +2016-07-13 17:34:42,2924.0,-11.1811, +2016-07-13 17:44:44,2922.0,-11.1801, +2016-07-13 17:45:00,,,0.2901 +2016-07-13 17:54:47,2922.0,-11.1801, +2016-07-13 18:00:00,,,0.2249 +2016-07-13 18:04:49,2921.0,-11.1801, +2016-07-13 18:14:52,2920.0,-11.1801, +2016-07-13 18:15:00,,,8.4504 +2016-07-13 18:24:54,2920.0,-11.1801, +2016-07-13 18:30:00,,,30.2351 +2016-07-13 18:34:57,2918.0,-11.1801, +2016-07-13 18:44:59,2918.0,-11.2117, +2016-07-13 18:45:00,,,30.3458 +2016-07-13 18:55:02,2918.0,-11.2117, +2016-07-13 19:00:00,,,-0.1639 +2016-07-13 19:05:05,2918.0,-11.2117, +2016-07-13 19:15:00,,,10.3316 +2016-07-13 19:15:07,2916.0,-11.2117, +2016-07-13 19:25:10,2915.0,-11.2443, +2016-07-13 19:30:00,,,-0.293 +2016-07-13 19:35:12,2913.0,-11.2443, +2016-07-13 19:45:00,,,-0.8935 +2016-07-13 19:45:15,2913.0,-11.2443, +2016-07-13 19:55:17,2912.0,-11.276, +2016-07-13 20:00:00,,,-1.0646 +2016-07-13 20:05:20,2911.0,-11.276, +2016-07-13 20:15:00,,,-1.5346 +2016-07-13 20:15:22,2910.0,-11.276, +2016-07-13 20:25:25,2909.0,-11.276, +2016-07-13 20:30:00,,,-1.4918 +2016-07-13 20:35:27,2908.0,-11.276, +2016-07-13 20:45:00,,,-1.8332 +2016-07-13 20:45:30,2906.0,-11.3089, +2016-07-13 20:55:32,2905.0,-11.3079, +2016-07-13 21:00:00,,,-1.7473 +2016-07-13 21:05:35,2904.0,-11.3079, +2016-07-13 21:15:00,,,2.5596 +2016-07-13 21:15:37,2903.0,-11.3408, +2016-07-13 21:25:40,2902.0,-11.3398, +2016-07-13 21:30:00,,,-4.874 +2016-07-13 21:35:42,2900.0,-11.3718, +2016-07-13 21:45:00,,,-5.2852 +2016-07-13 21:45:45,2898.0,-11.3718, +2016-07-13 21:55:47,2897.0,-11.4049, +2016-07-13 22:00:00,,,-4.9629 +2016-07-13 22:05:50,2896.0,-11.4049, +2016-07-13 22:15:00,,,-4.8123 +2016-07-13 22:15:52,2894.0,-11.4049, +2016-07-13 22:25:55,2892.0,-11.4039, +2016-07-13 22:30:00,,,-4.7904 +2016-07-13 22:35:57,2890.0,-11.4049, +2016-07-13 22:45:00,,,-5.1985 +2016-07-13 22:45:59,2889.0,-11.4371, +2016-07-13 22:56:02,2886.0,-11.4361, +2016-07-13 23:00:00,,,8.6022 +2016-07-13 23:06:04,2875.0,-11.5018, +2016-07-13 23:15:00,,,-3.8162 +2016-07-13 23:16:06,2872.0,-11.5018, +2016-07-13 23:26:08,2869.0,-11.5018, +2016-07-13 23:30:00,,,-4.249 +2016-07-13 23:36:10,2869.0,-11.5008, +2016-07-13 23:45:00,,,-4.7261 +2016-07-13 23:46:13,2862.0,-11.5343, +2016-07-13 23:56:15,2857.0,-11.5333, +2016-07-14 00:00:00,,,-4.7925 +2016-07-14 00:06:17,2856.0,-11.5333, +2016-07-14 00:15:00,,,-4.9436 +2016-07-14 00:16:20,2854.0,-11.567, +2016-07-14 00:26:22,2847.0,-11.5649, +2016-07-14 00:30:00,,,-5.0506 +2016-07-14 00:36:24,2847.0,-11.5986, +2016-07-14 00:45:00,,,-4.8792 +2016-07-14 00:46:27,2847.0,-11.5659, +2016-07-14 00:56:29,2846.0,-11.5659, +2016-07-14 01:00:00,,, +2016-07-14 01:06:31,2846.0,-11.5659, +2016-07-14 01:15:00,,,-4.8788 +2016-07-14 01:16:34,2844.0,-11.6325, +2016-07-14 01:26:36,2843.0,-11.6325, +2016-07-14 01:30:00,,,-4.8792 +2016-07-14 01:36:39,2842.0,-11.6325, +2016-07-14 01:45:00,,,-4.8135 +2016-07-14 01:46:41,2840.0,-11.6325, +2016-07-14 01:56:44,2840.0,-11.6325, +2016-07-14 02:00:00,,,-4.9427 +2016-07-14 02:06:46,2840.0,-11.6325, +2016-07-14 02:15:00,,, +2016-07-14 02:16:48,2839.0,-11.6325, +2016-07-14 02:26:51,2839.0,-11.6325, +2016-07-14 02:30:00,,, +2016-07-14 02:36:53,2837.0,-11.6325, +2016-07-14 02:45:00,,, +2016-07-14 02:46:55,2836.0,-11.6664, +2016-07-14 02:57:09,2836.0,-11.6664, +2016-07-14 03:00:00,,, +2016-07-14 03:07:49,2833.0,-11.6654, +2016-07-14 03:15:00,,, +2016-07-14 03:17:51,2833.0,-11.6654, +2016-07-14 03:27:53,2833.0,-11.6995, +2016-07-14 03:30:00,,, +2016-07-14 03:37:55,2833.0,-11.6995, +2016-07-14 03:45:00,,,-4.9853 +2016-07-14 03:47:58,2831.0,-11.6984, +2016-07-14 03:58:00,2830.0,-11.6984, +2016-07-14 04:00:00,,,-4.9853 +2016-07-14 04:08:02,2829.0,-11.6984, +2016-07-14 04:15:00,,,-4.9213 +2016-07-14 04:18:04,2828.0,-11.6984, +2016-07-14 04:28:07,2827.0,-11.6995, +2016-07-14 04:30:00,,, +2016-07-14 04:38:09,2826.0,-11.6984, +2016-07-14 04:45:00,,, +2016-07-14 04:48:11,2825.0,-11.7326, +2016-07-14 04:58:13,2825.0,-11.7326, +2016-07-14 05:00:00,,, +2016-07-14 05:08:16,2825.0,-11.7326, +2016-07-14 05:15:00,,,-4.9432 +2016-07-14 05:18:18,2824.0,-11.7659, +2016-07-14 05:28:20,2823.0,-11.7326, +2016-07-14 05:30:00,,, +2016-07-14 05:38:22,2822.0,-11.7659, +2016-07-14 05:45:00,,, +2016-07-14 05:48:32,2820.0,-11.7659, +2016-07-14 05:58:34,2819.0,-11.7669, +2016-07-14 06:00:00,,, +2016-07-14 06:08:36,2818.0,-11.7669, +2016-07-14 06:15:00,,, +2016-07-14 06:18:38,2818.0,-11.7659, +2016-07-14 06:28:40,2818.0,-11.7659, +2016-07-14 06:30:00,,, +2016-07-14 06:38:43,2818.0,-11.7659, +2016-07-14 06:45:00,,, +2016-07-14 06:48:45,2818.0,-11.7659, +2016-07-14 06:58:47,2816.0,-11.7648, +2016-07-14 07:00:00,,, +2016-07-14 07:08:49,2815.0,-11.8003, +2016-07-14 07:15:00,,, +2016-07-14 07:18:52,2814.0,-11.7648, +2016-07-14 07:28:54,2814.0,-11.7992, +2016-07-14 07:30:00,,, +2016-07-14 07:38:56,2813.0,-11.7316, +2016-07-14 07:45:00,,, +2016-07-14 07:48:59,2811.0,-11.7992, +2016-07-14 07:59:01,2811.0,-11.9084, +2016-07-14 08:00:00,,, +2016-07-14 08:09:03,2811.0,-11.7659, +2016-07-14 08:15:00,,, +2016-07-14 08:19:05,2811.0,-11.7982, +2016-07-14 08:29:07,2810.0,-11.7326, +2016-07-14 08:30:00,,, +2016-07-14 08:39:09,2809.0,-11.8611, +2016-07-14 08:45:00,,, +2016-07-14 08:49:22,2809.0,-11.8337, +2016-07-14 09:00:00,,,-4.9427 +2016-07-14 09:00:02,2809.0,-11.7992, +2016-07-14 09:10:04,2808.0,-11.7992, +2016-07-14 09:15:00,,, +2016-07-14 09:20:06,2808.0,-11.7982, +2016-07-14 09:30:00,,,-5.0502 +2016-07-14 09:30:09,2807.0,-11.7982, +2016-07-14 09:40:11,2807.0,-11.7982, +2016-07-14 09:45:00,,,-5.0291 +2016-07-14 09:50:13,2809.0,-11.7659, +2016-07-14 10:00:00,,,7.8662 +2016-07-14 10:00:15,2808.0,-11.7982, +2016-07-14 10:10:18,2809.0,-11.7648, +2016-07-14 10:15:00,,, +2016-07-14 10:20:20,2809.0,-11.7648, +2016-07-14 10:30:00,,, +2016-07-14 10:30:22,2810.0,-11.5608, +2016-07-14 10:40:24,2811.0,-11.8003, +2016-07-14 10:45:00,,,-4.8552 +2016-07-14 10:50:26,2811.0,-11.7659, +2016-07-14 11:00:00,,,-4.9427 +2016-07-14 11:00:29,2812.0,-11.7659, +2016-07-14 11:10:31,2812.0,-11.7648, +2016-07-14 11:15:00,,,-5.0502 +2016-07-14 11:20:33,2813.0,-11.7305, +2016-07-14 11:30:00,,,-5.0721 +2016-07-14 11:30:35,2814.0,-11.7648, +2016-07-14 11:40:38,2814.0,-11.7659, +2016-07-14 11:45:00,,,-5.0502 +2016-07-14 11:50:40,2814.0,-11.7305, +2016-07-14 12:00:00,,,-4.9436 +2016-07-14 12:00:42,2815.0,-11.7316, +2016-07-14 12:10:44,2815.0,-11.6964, +2016-07-14 12:15:00,,, +2016-07-14 12:20:47,2815.0,-11.7648, +2016-07-14 12:30:00,,,-5.0085 +2016-07-14 12:30:49,2815.0,-11.6974, +2016-07-14 12:40:52,2817.0,-11.6284, +2016-07-14 12:45:00,,,-5.0506 +2016-07-14 12:50:54,2818.0,-11.6984, +2016-07-14 13:00:00,,,-5.0076 +2016-07-14 13:00:56,2818.0,-11.6984, +2016-07-14 13:10:59,2818.0,-11.6984, +2016-07-14 13:15:00,,,-5.0305 +2016-07-14 13:21:01,2818.0,-11.6964, +2016-07-14 13:30:00,,,-5.5232 +2016-07-14 13:31:03,2819.0,-11.6984, +2016-07-14 13:41:06,2821.0,-11.6984, +2016-07-14 13:45:00,,,-5.0291 +2016-07-14 13:51:08,2820.0,-11.6644, +2016-07-14 14:00:00,,,-5.0085 +2016-07-14 14:01:11,2819.0,-11.6974, +2016-07-14 14:11:13,2820.0,-11.6304, +2016-07-14 14:15:00,,,-5.0941 +2016-07-14 14:21:15,2821.0,-11.6644, +2016-07-14 14:30:00,,,-5.0937 +2016-07-14 14:31:18,2820.0,-11.6294, +2016-07-14 14:41:20,2820.0,-11.6654, +2016-07-14 14:45:00,,,-5.0937 +2016-07-14 14:51:23,2822.0,-11.6675, +2016-07-14 15:00:00,,,-5.0072 +2016-07-14 15:01:25,2822.0,-11.6356, +2016-07-14 15:11:28,2822.0,-11.6995, +2016-07-14 15:15:00,,,-5.0296 +2016-07-14 15:21:30,2822.0,-11.6315, +2016-07-14 15:30:00,,,-5.1573 +2016-07-14 15:31:33,2822.0,-11.5956, +2016-07-14 15:41:35,2820.0,-11.6633, +2016-07-14 15:45:00,,,-5.3508 +2016-07-14 15:51:37,2819.0,-11.6623, +2016-07-14 16:00:00,,,-4.9217 +2016-07-14 16:01:40,2818.0,-11.6644, +2016-07-14 16:11:42,2818.0,-11.4674, +2016-07-14 16:15:00,,,-5.0721 +2016-07-14 16:21:45,2818.0,-11.6644, +2016-07-14 16:30:00,,,-5.0502 +2016-07-14 16:31:47,2818.0,-11.6654, +2016-07-14 16:41:50,2817.0,-11.5598, +2016-07-14 16:45:00,,, +2016-07-14 16:51:52,2816.0,-11.6294, +2016-07-14 17:00:00,,, +2016-07-14 17:01:55,2815.0,-11.6995, +2016-07-14 17:11:57,2814.0,-11.567, +2016-07-14 17:15:00,,,-5.0305 +2016-07-14 17:22:00,2814.0,-11.6644, +2016-07-14 17:30:00,,, +2016-07-14 17:32:04,2813.0,-11.6644, +2016-07-14 17:42:07,2812.0,-11.6964, +2016-07-14 17:45:00,,,-5.0506 +2016-07-14 17:52:10,2812.0,-11.6984, +2016-07-14 18:00:00,,,-5.2444 +2016-07-14 18:02:12,2811.0,-11.7305, +2016-07-14 18:12:15,2811.0,-11.6964, +2016-07-14 18:15:00,,, +2016-07-14 18:22:17,2809.0,-11.7305, +2016-07-14 18:30:00,,,-5.0081 +2016-07-14 18:32:20,2808.0,-11.6964, +2016-07-14 18:42:22,2806.0,-11.7316, +2016-07-14 18:45:00,,, +2016-07-14 18:52:25,2805.0,-11.7305, +2016-07-14 19:00:00,,, +2016-07-14 19:02:28,2804.0,-11.7305, +2016-07-14 19:12:30,2801.0,-11.7648, +2016-07-14 19:15:00,,, +2016-07-14 19:22:32,2799.0,-11.7648, +2016-07-14 19:30:00,,, +2016-07-14 19:32:35,2798.0,-11.7982, +2016-07-14 19:42:37,2796.0,-11.7982, +2016-07-14 19:45:00,,, +2016-07-14 19:52:40,2795.0,-11.7982, +2016-07-14 20:00:00,,, +2016-07-14 20:02:42,2792.0,-11.7982, +2016-07-14 20:12:45,2790.0,-11.7971, +2016-07-14 20:15:00,,, +2016-07-14 20:22:47,2789.0,-11.8317, +2016-07-14 20:30:00,,, +2016-07-14 20:32:50,2787.0,-11.8663, +2016-07-14 20:42:52,2786.0,-11.8663, +2016-07-14 20:45:00,,, +2016-07-14 20:52:55,2784.0,-11.8653, +2016-07-14 21:00:00,,, +2016-07-14 21:02:57,2782.0,-11.8653, +2016-07-14 21:13:00,2781.0,-11.9, +2016-07-14 21:15:00,,, +2016-07-14 21:23:02,2777.0,-11.899, +2016-07-14 21:30:00,,, +2016-07-14 21:33:05,2775.0,-11.899, +2016-07-14 21:43:07,2773.0,-11.9338, +2016-07-14 21:45:00,,, +2016-07-14 21:53:09,2771.0,-11.9338, +2016-07-14 22:00:00,,, +2016-07-14 22:03:12,2769.0,-11.9338, +2016-07-14 22:13:14,2768.0,-11.9328, +2016-07-14 22:15:00,,, +2016-07-14 22:23:16,2767.0,-11.9328, +2016-07-14 22:30:00,,, +2016-07-14 22:33:19,2765.0,-11.9328, +2016-07-14 22:43:21,2762.0,-11.9678, +2016-07-14 22:45:00,,, +2016-07-14 22:53:24,2762.0,-11.9678, +2016-07-14 23:00:00,,, +2016-07-14 23:03:26,2760.0,-11.9667, +2016-07-14 23:13:29,2759.0,-11.9667, +2016-07-14 23:15:00,,, +2016-07-14 23:23:31,2758.0,-12.0019, +2016-07-14 23:30:00,,, +2016-07-14 23:33:33,2757.0,-12.0019, +2016-07-14 23:43:36,2756.0,-12.0008, +2016-07-14 23:45:00,,, +2016-07-14 23:53:38,2755.0,-11.9667, +2016-07-15 00:00:00,,, +2016-07-15 00:03:40,2755.0,-12.0008, +2016-07-15 00:13:43,2754.0,-12.0008, +2016-07-15 00:15:00,,, +2016-07-15 00:23:45,2753.0,-12.0008, +2016-07-15 00:30:00,,, +2016-07-15 00:33:47,2753.0,-12.0008, +2016-07-15 00:43:50,2751.0,-12.0008, +2016-07-15 00:45:00,,, +2016-07-15 00:53:52,2749.0,-12.0361, +2016-07-15 01:00:00,,, +2016-07-15 01:03:55,2749.0,-12.0361, +2016-07-15 01:13:57,2748.0,-12.035, +2016-07-15 01:15:00,,, +2016-07-15 01:24:00,2747.0,-12.035, +2016-07-15 01:30:00,,, +2016-07-15 01:34:02,2745.0,-12.0704, +2016-07-15 01:44:04,2744.0,-12.0704, +2016-07-15 01:45:00,,, +2016-07-15 01:54:07,2743.0,-12.035, +2016-07-15 02:00:00,,, +2016-07-15 02:04:09,2742.0,-12.0704, +2016-07-15 02:14:11,2742.0,-12.0704, +2016-07-15 02:15:00,,, +2016-07-15 02:24:14,2741.0,-12.0704, +2016-07-15 02:30:00,,, +2016-07-15 02:34:15,2740.0,-12.0704, +2016-07-15 02:44:18,2738.0,-12.0704, +2016-07-15 02:45:00,,, +2016-07-15 02:54:20,2738.0,-12.0704, +2016-07-15 03:00:00,,, +2016-07-15 03:04:23,2738.0,-12.0704, +2016-07-15 03:14:25,2737.0,-12.0693, +2016-07-15 03:15:00,,, +2016-07-15 03:24:27,2734.0,-12.1048, +2016-07-15 03:30:00,,, +2016-07-15 03:34:30,2734.0,-12.1048, +2016-07-15 03:44:32,2733.0,-12.1048, +2016-07-15 03:45:00,,, +2016-07-15 03:54:34,2731.0,-12.1394, +2016-07-15 04:00:00,,, +2016-07-15 04:04:37,2730.0,-12.1394, +2016-07-15 04:14:39,2730.0,-12.1394, +2016-07-15 04:15:00,,, +2016-07-15 04:24:41,2728.0,-12.1384, +2016-07-15 04:30:00,,, +2016-07-15 04:34:44,2727.0,-12.1394, +2016-07-15 04:44:46,2726.0,-12.1384, +2016-07-15 04:45:00,,, +2016-07-15 04:54:48,2725.0,-12.1741, +2016-07-15 05:00:00,,, +2016-07-15 05:04:51,2724.0,-12.1741, +2016-07-15 05:14:53,2724.0,-12.1741, +2016-07-15 05:15:00,,, +2016-07-15 05:24:55,2721.0,-12.1741, +2016-07-15 05:30:00,,, +2016-07-15 05:34:58,2721.0,-12.1741, +2016-07-15 05:45:00,2720.0,-12.1741, +2016-07-15 05:55:02,2719.0,-12.1741, +2016-07-15 06:00:00,,, +2016-07-15 06:05:04,2718.0,-12.1731, +2016-07-15 06:15:00,,, +2016-07-15 06:15:06,2716.0,-12.1731, +2016-07-15 06:25:16,2716.0,-12.2101, +2016-07-15 06:30:00,,, +2016-07-15 06:35:18,2715.0,-12.209, +2016-07-15 06:45:00,,, +2016-07-15 06:45:21,2714.0,-12.209, +2016-07-15 06:55:23,2713.0,-12.209, +2016-07-15 07:00:00,,, +2016-07-15 07:05:25,2713.0,-12.209, +2016-07-15 07:15:00,,, +2016-07-15 07:15:27,2712.0,-12.209, +2016-07-15 07:25:30,2712.0,-12.209, +2016-07-15 07:30:00,,, +2016-07-15 07:35:32,2711.0,-12.209, +2016-07-15 07:45:00,,, +2016-07-15 07:45:34,2710.0,-12.1731, +2016-07-15 07:55:36,2710.0,-12.209, +2016-07-15 08:00:00,,, +2016-07-15 08:05:39,2710.0,-12.1731, +2016-07-15 08:15:00,,, +2016-07-15 08:15:41,2710.0,-12.1731, +2016-07-15 08:25:43,2709.0,-12.1731, +2016-07-15 08:30:00,,, +2016-07-15 08:35:45,2709.0,-12.1731, +2016-07-15 08:45:00,,, +2016-07-15 08:45:55,2709.0,-12.1731, +2016-07-15 08:55:58,2709.0,-12.1731, +2016-07-15 09:00:00,,, +2016-07-15 09:06:00,2709.0,-12.1731, +2016-07-15 09:15:00,,, +2016-07-15 09:16:02,2709.0,-12.1731, +2016-07-15 09:26:05,2709.0,-12.1731, +2016-07-15 09:30:00,,, +2016-07-15 09:36:07,2709.0,-12.1731, +2016-07-15 09:45:00,,, +2016-07-15 09:46:09,2709.0,-12.1731, +2016-07-15 09:56:12,2709.0,-12.1731, +2016-07-15 10:00:00,,, +2016-07-15 10:06:14,2709.0,-12.1731, +2016-07-15 10:15:00,,, +2016-07-15 10:16:16,2709.0,-12.1731, +2016-07-15 10:26:19,2708.0,-12.1731, +2016-07-15 10:30:00,,, +2016-07-15 10:36:21,2708.0,-12.1731, +2016-07-15 10:45:00,,, +2016-07-15 10:46:23,2709.0,-12.1731, +2016-07-15 10:56:26,2709.0,-12.1384, +2016-07-15 11:00:00,,, +2016-07-15 11:06:28,2709.0,-12.1384, +2016-07-15 11:15:00,,, +2016-07-15 11:16:31,2710.0,-12.1384, +2016-07-15 11:26:33,2710.0,-12.1384, +2016-07-15 11:30:00,,, +2016-07-15 11:36:35,2710.0,-12.1384, +2016-07-15 11:45:00,,, +2016-07-15 11:46:37,2712.0,-12.1384, +2016-07-15 11:56:40,2712.0,-12.1384, +2016-07-15 12:00:00,,, +2016-07-15 12:06:42,2713.0,-12.1384, +2016-07-15 12:15:00,,, +2016-07-15 12:16:44,2713.0,-12.1384, +2016-07-15 12:26:46,2713.0,-12.1384, +2016-07-15 12:30:00,,, +2016-07-15 12:36:56,2714.0,-12.1384, +2016-07-15 12:45:00,,, +2016-07-15 12:46:58,2714.0,-12.1384, +2016-07-15 12:57:01,2714.0,-12.1384, +2016-07-15 13:00:00,,, +2016-07-15 13:07:03,2713.0,-12.1384, +2016-07-15 13:15:00,,, +2016-07-15 13:17:05,2713.0,-12.1384, +2016-07-15 13:27:08,2713.0,-12.1384, +2016-07-15 13:30:00,,, +2016-07-15 13:37:10,2712.0,-12.1384, +2016-07-15 13:45:00,,, +2016-07-15 13:47:12,2712.0,-12.1384, +2016-07-15 13:57:15,2712.0,-12.1384, +2016-07-15 14:00:00,,, +2016-07-15 14:07:17,2712.0,-12.1384, +2016-07-15 14:15:00,,, +2016-07-15 14:17:19,2712.0,-12.1384, +2016-07-15 14:27:22,2711.0,-12.1384, +2016-07-15 14:30:00,,, +2016-07-15 14:37:24,2710.0,-12.1384, +2016-07-15 14:45:00,,, +2016-07-15 14:47:34,2709.0,-12.1373, +2016-07-15 14:57:36,2706.0,-12.1384, +2016-07-15 15:00:00,,, +2016-07-15 15:07:39,2706.0,-12.1373, +2016-07-15 15:15:00,,, +2016-07-15 15:17:41,2705.0,-12.1373, +2016-07-15 15:27:44,2704.0,-12.1373, +2016-07-15 15:30:00,,, +2016-07-15 15:37:46,2702.0,-12.1384, +2016-07-15 15:45:00,,, +2016-07-15 15:47:49,2702.0,-12.1373, +2016-07-15 15:57:51,2702.0,-12.1384, +2016-07-15 16:00:00,,, +2016-07-15 16:07:53,2701.0,-12.1027, +2016-07-15 16:15:00,,, +2016-07-15 16:17:56,2701.0,-12.1384, +2016-07-15 16:27:58,2701.0,-12.1373, +2016-07-15 16:30:00,,, +2016-07-15 16:38:01,2701.0,-12.1373, +2016-07-15 16:45:00,,, +2016-07-15 16:48:03,2700.0,-12.1373, +2016-07-15 16:58:05,2700.0,-12.1373, +2016-07-15 17:00:00,,, +2016-07-15 17:08:08,2700.0,-12.1373, +2016-07-15 17:15:00,,, +2016-07-15 17:18:10,2700.0,-12.1373, +2016-07-15 17:28:13,2700.0,-12.1373, +2016-07-15 17:30:00,,, +2016-07-15 17:38:15,2699.0,-12.1373, +2016-07-15 17:45:00,,, +2016-07-15 17:48:17,2698.0,-12.1373, +2016-07-15 17:58:20,2697.0,-12.1373, +2016-07-15 18:00:00,,, +2016-07-15 18:08:22,2696.0,-12.1373, +2016-07-15 18:15:00,,, +2016-07-15 18:18:25,2695.0,-12.1731, +2016-07-15 18:28:27,2695.0,-12.1731, +2016-07-15 18:30:00,,, +2016-07-15 18:38:29,2694.0,-12.1373, +2016-07-15 18:45:00,,, +2016-07-15 18:48:32,2693.0,-12.1373, +2016-07-15 18:58:34,2692.0,-12.1373, +2016-07-15 19:00:00,,, +2016-07-15 19:08:37,2691.0,-12.172, +2016-07-15 19:15:00,,, +2016-07-15 19:18:39,2688.0,-12.172, +2016-07-15 19:28:41,2687.0,-12.2079, +2016-07-15 19:30:00,,, +2016-07-15 19:38:44,2685.0,-12.2068, +2016-07-15 19:45:00,,, +2016-07-15 19:48:46,2684.0,-12.2068, +2016-07-15 19:58:49,2682.0,-12.278, +2016-07-15 20:00:00,,, +2016-07-15 20:08:51,2680.0,-12.278, +2016-07-15 20:15:00,,, +2016-07-15 20:18:53,2678.0,-12.278, +2016-07-15 20:28:56,2676.0,-12.278, +2016-07-15 20:30:00,,, +2016-07-15 20:38:58,2673.0,-12.3144, +2016-07-15 20:45:00,,, +2016-07-15 20:49:02,2672.0,-12.3133, +2016-07-15 20:59:05,2670.0,-12.3509, +2016-07-15 21:00:00,,, +2016-07-15 21:09:07,2666.0,-12.3122, +2016-07-15 21:15:00,,, +2016-07-15 21:19:10,2664.0,-12.3842, +2016-07-15 21:29:12,2661.0,-12.3853, +2016-07-15 21:30:00,,, +2016-07-15 21:39:15,2658.0,-12.3842, +2016-07-15 21:45:00,,, +2016-07-15 21:49:17,2657.0,-12.421, +2016-07-15 21:59:19,2654.0,-12.4199, +2016-07-15 22:00:00,,, +2016-07-15 22:09:22,2650.0,-12.4199, +2016-07-15 22:15:00,,, +2016-07-15 22:19:24,2649.0,-12.4569, +2016-07-15 22:29:26,2646.0,-12.4558, +2016-07-15 22:30:00,,, +2016-07-15 22:39:29,2644.0,-12.4558, +2016-07-15 22:45:00,,, +2016-07-15 22:49:31,2642.0,-12.4929, +2016-07-15 22:59:33,2640.0,-12.4929, +2016-07-15 23:00:00,,, +2016-07-15 23:09:35,2637.0,-12.5301, +2016-07-15 23:15:00,,, +2016-07-15 23:19:38,2635.0,-12.529000000000002, +2016-07-15 23:29:40,2631.0,-12.5301, +2016-07-15 23:30:00,,, +2016-07-15 23:39:42,2629.0,-12.529000000000002, +2016-07-15 23:45:00,,, +2016-07-15 23:49:44,2629.0,-12.529000000000002, +2016-07-15 23:59:47,2626.0,-12.5653, +2016-07-16 00:00:00,,, +2016-07-16 00:09:49,2623.0,-12.5664, +2016-07-16 00:15:00,,, +2016-07-16 00:19:51,2622.0,-12.5664, +2016-07-16 00:29:53,2620.0,-12.5653, +2016-07-16 00:30:00,,, +2016-07-16 00:39:55,2617.0,-12.6018, +2016-07-16 00:45:00,,, +2016-07-16 00:49:58,2615.0,-12.6018, +2016-07-16 01:00:00,2614.0,-12.6018, +2016-07-16 01:10:02,2612.0,-12.6018, +2016-07-16 01:15:00,,, +2016-07-16 01:20:04,2610.0,-12.6018, +2016-07-16 01:30:00,,, +2016-07-16 01:30:06,2608.0,-12.6384, +2016-07-16 01:40:09,2607.0,-12.6384, +2016-07-16 01:45:00,,, +2016-07-16 01:50:11,2605.0,-12.6763, +2016-07-16 02:00:00,,, +2016-07-16 02:00:13,2603.0,-12.6763, +2016-07-16 02:10:15,2601.0,-12.6752, +2016-07-16 02:15:00,,, +2016-07-16 02:20:17,2600.0,-12.6763, +2016-07-16 02:30:00,,, +2016-07-16 02:30:20,2600.0,-12.6763, +2016-07-16 02:40:22,2598.0,-12.6752, +2016-07-16 02:45:00,,, +2016-07-16 02:50:24,2596.0,-12.6752, +2016-07-16 03:00:00,,, +2016-07-16 03:00:26,2593.0,-12.7122, +2016-07-16 03:10:28,2593.0,-12.7122, +2016-07-16 03:15:00,,, +2016-07-16 03:20:30,2591.0,-12.7122, +2016-07-16 03:30:00,,, +2016-07-16 03:30:32,2590.0,-12.7122, +2016-07-16 03:40:34,2588.0,-12.7122, +2016-07-16 03:45:00,,, +2016-07-16 03:50:36,2587.0,-12.7493, +2016-07-16 04:00:00,,, +2016-07-16 04:00:39,2586.0,-12.7493, +2016-07-16 04:10:41,2584.0,-12.7493, +2016-07-16 04:15:00,,,-5.874 +2016-07-16 04:20:43,2582.0,-12.7866, +2016-07-16 04:30:00,,,0.8539 +2016-07-16 04:30:45,2580.0,-12.8253, +2016-07-16 04:40:47,2580.0,-12.7493, +2016-07-16 04:45:00,,, +2016-07-16 04:50:49,2579.0,-12.7493, +2016-07-16 05:00:00,,, +2016-07-16 05:00:51,2577.0,-12.7878, +2016-07-16 05:10:54,2576.0,-12.7493, +2016-07-16 05:15:00,,, +2016-07-16 05:20:56,2574.0,-12.7866, +2016-07-16 05:30:00,,, +2016-07-16 05:30:58,2573.0,-12.7866, +2016-07-16 05:41:00,2571.0,-12.7866, +2016-07-16 05:45:00,,, +2016-07-16 05:51:02,2570.0,-12.7866, +2016-07-16 06:00:00,,, +2016-07-16 06:01:04,2569.0,-12.7866, +2016-07-16 06:11:06,2567.0,-12.8253, +2016-07-16 06:15:00,,, +2016-07-16 06:21:08,2566.0,-12.7866, +2016-07-16 06:30:00,,, +2016-07-16 06:31:10,2565.0,-12.7866, +2016-07-16 06:41:12,2564.0,-12.7866, +2016-07-16 06:45:00,,, +2016-07-16 06:51:14,2564.0,-12.7866, +2016-07-16 07:00:00,,, +2016-07-16 07:01:16,2564.0,-12.7866, +2016-07-16 07:11:18,2562.0,-12.7866, +2016-07-16 07:15:00,,, +2016-07-16 07:21:20,2562.0,-12.7866, +2016-07-16 07:30:00,,, +2016-07-16 07:31:22,2562.0,-12.7482, +2016-07-16 07:41:25,2561.0,-12.7482, +2016-07-16 07:45:00,,, +2016-07-16 07:51:27,2561.0,-12.7482, +2016-07-16 08:00:00,,, +2016-07-16 08:01:36,2562.0,-12.7866, +2016-07-16 08:11:38,2562.0,-12.7493, +2016-07-16 08:15:00,,, +2016-07-16 08:21:40,2562.0,-12.7482, +2016-07-16 08:30:00,,, +2016-07-16 08:31:43,2564.0,-12.7493, +2016-07-16 08:41:45,2564.0,-12.7482, +2016-07-16 08:45:00,,, +2016-07-16 08:51:47,2564.0,-12.7493, +2016-07-16 09:00:00,,, +2016-07-16 09:01:49,2565.0,-12.7493, +2016-07-16 09:11:52,2565.0,-12.7493, +2016-07-16 09:15:00,,, +2016-07-16 09:21:54,2566.0,-12.7111, +2016-07-16 09:30:00,,, +2016-07-16 09:31:56,2567.0,-12.7111, +2016-07-16 09:41:59,2569.0,-12.7111, +2016-07-16 09:45:00,,, +2016-07-16 09:52:01,2571.0,-12.7122, +2016-07-16 10:00:00,,, +2016-07-16 10:02:03,2572.0,-12.6741, +2016-07-16 10:12:05,2573.0,-12.6741, +2016-07-16 10:15:00,,, +2016-07-16 10:22:08,2574.0,-12.6741, +2016-07-16 10:30:00,,, +2016-07-16 10:32:10,2576.0,-12.6741, +2016-07-16 10:42:19,2578.0,-12.6752, +2016-07-16 10:45:00,,, +2016-07-16 10:52:22,2579.0,-12.6752, +2016-07-16 11:00:00,,, +2016-07-16 11:02:24,2580.0,-12.6384, +2016-07-16 11:12:27,2580.0,-12.6373, +2016-07-16 11:15:00,,, +2016-07-16 11:22:29,2580.0,-12.6362, +2016-07-16 11:30:00,,, +2016-07-16 11:32:32,2580.0,-12.6373, +2016-07-16 11:42:34,2580.0,-12.6373, +2016-07-16 11:45:00,,, +2016-07-16 11:52:37,2580.0,-12.6007, +2016-07-16 12:00:00,,, +2016-07-16 12:02:39,2581.0,-12.5631, +2016-07-16 12:12:42,2581.0,-12.5631, +2016-07-16 12:15:00,,, +2016-07-16 12:22:44,2582.0,-12.5631, +2016-07-16 12:30:00,,, +2016-07-16 12:32:47,2582.0,-12.5631, +2016-07-16 12:42:49,2582.0,-12.5642, +2016-07-16 12:45:00,,, +2016-07-16 12:52:52,2581.0,-12.5642, +2016-07-16 13:00:00,,, +2016-07-16 13:02:55,2581.0,-12.5642, +2016-07-16 13:12:57,2580.0,-12.6007, +2016-07-16 13:15:00,,, +2016-07-16 13:23:00,2579.0,-12.5642, +2016-07-16 13:30:00,,, +2016-07-16 13:33:03,2578.0,-12.5631, +2016-07-16 13:43:05,2577.0,-12.5631, +2016-07-16 13:45:00,,, +2016-07-16 13:53:08,2576.0,-12.5631, +2016-07-16 14:00:00,,, +2016-07-16 14:03:10,2575.0,-12.5257, +2016-07-16 14:13:13,2573.0,-12.5631, +2016-07-16 14:15:00,,, +2016-07-16 14:23:15,2573.0,-12.5631, +2016-07-16 14:30:00,,, +2016-07-16 14:33:18,2571.0,-12.5631, +2016-07-16 14:43:21,2569.0,-12.5631, +2016-07-16 14:45:00,,, +2016-07-16 14:53:23,2566.0,-12.5631, +2016-07-16 15:00:00,,, +2016-07-16 15:03:25,2564.0,-12.5631, +2016-07-16 15:13:28,2562.0,-12.5631, +2016-07-16 15:15:00,,, +2016-07-16 15:23:30,2560.0,-12.562, +2016-07-16 15:30:00,,, +2016-07-16 15:33:33,2558.0,-12.5984, +2016-07-16 15:43:36,2557.0,-12.5609, +2016-07-16 15:45:00,,, +2016-07-16 15:53:38,2554.0,-12.5609, +2016-07-16 16:00:00,,, +2016-07-16 16:03:41,2552.0,-12.5984, +2016-07-16 16:13:44,2549.0,-12.4437, +2016-07-16 16:15:00,,, +2016-07-16 16:23:46,2546.0,-12.5213, +2016-07-16 16:30:00,,, +2016-07-16 16:33:48,2543.0,-12.634, +2016-07-16 16:43:51,2541.0,-12.673, +2016-07-16 16:45:00,,, +2016-07-16 16:54:05,2537.0,-12.6351, +2016-07-16 17:00:00,,, +2016-07-16 17:04:46,2533.0,-12.6719, +2016-07-16 17:14:48,2530.0,-12.6719, +2016-07-16 17:15:00,,, +2016-07-16 17:24:51,2526.0,-12.7099, +2016-07-16 17:30:00,,, +2016-07-16 17:34:54,2522.0,-12.7088, +2016-07-16 17:44:56,2517.0,-12.7077, +2016-07-16 17:45:00,,, +2016-07-16 17:54:59,2513.0,-12.7459, +2016-07-16 18:00:00,,, +2016-07-16 18:05:02,2508.0,-12.7459, +2016-07-16 18:15:00,,, +2016-07-16 18:15:04,2504.0,-12.7448, +2016-07-16 18:25:07,2499.0,-12.7832, +2016-07-16 18:30:00,,, +2016-07-16 18:35:10,2495.0,-12.7821, +2016-07-16 18:45:00,,, +2016-07-16 18:45:12,2490.0,-12.8207, +2016-07-16 18:55:15,2485.0,-12.8584, +2016-07-16 19:00:00,,, +2016-07-16 19:05:18,2480.0,-12.8962, +2016-07-16 19:15:00,,, +2016-07-16 19:15:20,2475.0,-12.8962, +2016-07-16 19:25:23,2468.0,-12.9343, +2016-07-16 19:30:00,,, +2016-07-16 19:35:26,2461.0,-13.012, +2016-07-16 19:45:00,,,-5.9207 +2016-07-16 19:45:28,2454.0,-13.0109, +2016-07-16 19:55:31,2447.0,-13.0109, +2016-07-16 20:00:00,,, +2016-07-16 20:05:33,2440.0,-13.0495, +2016-07-16 20:15:00,,, +2016-07-16 20:15:36,2433.0,-13.0883, +2016-07-16 20:25:39,2426.0,-13.1285, +2016-07-16 20:30:00,,, +2016-07-16 20:35:41,2419.0,-13.1273, +2016-07-16 20:45:00,,, +2016-07-16 20:45:44,2411.0,-13.1666, +2016-07-16 20:55:46,2404.0,-13.206, +2016-07-16 21:00:00,,, +2016-07-16 21:05:49,2397.0,-13.1619, +2016-07-16 21:15:00,,, +2016-07-16 21:15:52,2389.0,-13.2457, +2016-07-16 21:25:54,2380.0,-13.2855, +2016-07-16 21:30:00,,, +2016-07-16 21:35:57,2371.0,-13.3257, +2016-07-16 21:45:00,,, +2016-07-16 21:45:59,2362.0,-13.366, +2016-07-16 21:56:02,2353.0,-13.4066, +2016-07-16 22:00:00,,, +2016-07-16 22:06:04,2345.0,-13.4474, +2016-07-16 22:15:00,,, +2016-07-16 22:16:07,2334.0,-13.4885, +2016-07-16 22:26:09,2326.0,-13.5726, +2016-07-16 22:30:00,,, +2016-07-16 22:36:12,2317.0,-13.5714, +2016-07-16 22:45:00,,, +2016-07-16 22:46:15,2305.0,-13.6132, +2016-07-16 23:00:00,,, +2016-07-16 23:15:00,,, +2016-07-16 23:30:00,,, +2016-07-16 23:45:00,,, +2016-07-17 00:00:00,,, +2016-07-17 00:15:00,,, +2016-07-17 00:30:00,,, +2016-07-17 00:45:00,,, +2016-07-17 01:00:00,,, +2016-07-17 01:15:00,,, +2016-07-17 01:30:00,,, +2016-07-17 01:45:00,,, +2016-07-17 02:00:00,,, +2016-07-17 02:15:00,,, +2016-07-17 02:30:00,,, +2016-07-17 02:45:00,,, +2016-07-17 03:00:00,,, +2016-07-17 03:15:00,,, +2016-07-17 03:30:00,,, +2016-07-17 03:45:00,,, +2016-07-17 04:00:00,,, +2016-07-17 04:15:00,,, +2016-07-17 04:30:00,,, +2016-07-17 04:45:00,,, +2016-07-17 05:00:00,,, +2016-07-17 05:15:00,,, +2016-07-17 05:30:00,,, +2016-07-17 05:45:00,,, +2016-07-17 06:00:00,,, +2016-07-17 06:15:00,,, +2016-07-17 06:30:00,,, +2016-07-17 06:45:00,,, +2016-07-17 07:00:00,,, +2016-07-17 07:15:00,,, +2016-07-17 07:30:00,,, +2016-07-17 07:45:00,,, +2016-07-17 08:00:00,,, +2016-07-17 08:15:00,,, +2016-07-17 08:30:00,,, +2016-07-17 08:45:00,,, +2016-07-17 09:00:00,,, +2016-07-17 09:15:00,,, +2016-07-17 09:30:00,,, +2016-07-17 09:45:00,,, +2016-07-17 10:00:00,,, +2016-07-17 10:15:00,,, +2016-07-17 10:30:00,,, +2016-07-17 10:45:00,,, +2016-07-17 11:00:00,,, +2016-07-17 11:15:00,,, +2016-07-17 11:30:00,,, +2016-07-17 11:45:00,,, +2016-07-17 12:00:00,,, +2016-07-17 12:15:00,,, +2016-07-17 12:30:00,,, +2016-07-17 12:45:00,,, +2016-07-17 13:00:00,,, +2016-07-17 13:15:00,,, +2016-07-17 13:30:00,,, +2016-07-17 13:45:00,,, +2016-07-17 14:00:00,,, +2016-07-17 14:15:00,,, +2016-07-17 14:30:00,,, +2016-07-17 14:45:00,,, +2016-07-17 15:00:00,,, +2016-07-17 15:15:00,,, +2016-07-17 15:30:00,,, +2016-07-17 15:45:00,,, +2016-07-17 16:00:00,,, +2016-07-17 16:15:00,,, +2016-07-17 16:30:00,,, +2016-07-17 16:45:00,,, +2016-07-17 17:00:00,,, +2016-07-17 17:15:00,,, +2016-07-17 17:30:00,,, +2016-07-17 17:45:00,,, +2016-07-17 18:00:00,,, +2016-07-17 18:15:00,,, +2016-07-17 18:30:00,,, +2016-07-17 18:45:00,,, +2016-07-17 19:00:00,,, +2016-07-17 19:15:00,,, +2016-07-17 19:30:00,,, +2016-07-17 19:45:00,,, +2016-07-17 20:00:00,,, +2016-07-17 20:15:00,,, +2016-07-17 20:30:00,,, +2016-07-17 20:45:00,,, +2016-07-17 21:00:00,,, +2016-07-17 21:15:00,,, +2016-07-17 21:30:00,,, +2016-07-17 21:45:00,,, +2016-07-17 22:00:00,,, +2016-07-17 22:15:00,,, +2016-07-17 22:30:00,,, +2016-07-17 22:45:00,,, +2016-07-17 23:00:00,,, +2016-07-17 23:15:00,,, +2016-07-17 23:30:00,,, +2016-07-17 23:45:00,,, +2016-07-18 00:00:00,,, +2016-07-18 00:15:00,,, +2016-07-18 00:30:00,,, +2016-07-18 00:45:00,,, +2016-07-18 01:00:00,,, +2016-07-18 01:15:00,,, +2016-07-18 01:30:00,,, +2016-07-18 01:45:00,,, +2016-07-18 02:00:00,,, +2016-07-18 02:15:00,,, +2016-07-18 02:30:00,,, +2016-07-18 02:45:00,,, +2016-07-18 03:00:00,,, +2016-07-18 03:15:00,,, +2016-07-18 03:30:00,,, +2016-07-18 03:45:00,,, +2016-07-18 04:00:00,,, +2016-07-18 04:15:00,,, +2016-07-18 04:30:00,,, +2016-07-18 04:45:00,,, +2016-07-18 05:00:00,,, +2016-07-18 05:15:00,,, +2016-07-18 05:30:00,,, +2016-07-18 05:45:00,,, +2016-07-18 06:00:00,,, +2016-07-18 06:15:00,,, +2016-07-18 06:30:00,,, +2016-07-18 06:45:00,,, +2016-07-18 07:00:00,,, +2016-07-18 07:15:00,,, +2016-07-18 07:30:00,,, +2016-07-18 07:45:00,,, +2016-07-18 08:00:00,,, +2016-07-18 08:15:00,,, +2016-07-18 08:30:00,,, +2016-07-18 08:45:00,,, +2016-07-18 09:00:00,,, +2016-07-18 09:15:00,,, +2016-07-18 09:30:00,,, +2016-07-18 09:45:00,,, +2016-07-18 10:00:00,,, +2016-07-18 10:15:00,,, +2016-07-18 10:30:00,,, +2016-07-18 10:45:00,,, +2016-07-18 11:00:00,,, +2016-07-18 11:15:00,,, +2016-07-18 11:30:00,,, +2016-07-18 11:45:00,,, +2016-07-18 12:00:00,,, +2016-07-18 12:15:00,,, +2016-07-18 12:30:00,,, +2016-07-18 12:45:00,,, +2016-07-18 13:00:00,,, +2016-07-18 13:15:00,,, +2016-07-18 13:30:00,,, +2016-07-18 13:45:00,,, +2016-07-18 14:00:00,,, +2016-07-18 14:15:00,,, +2016-07-18 14:30:00,,, +2016-07-18 14:45:00,,, +2016-07-18 15:00:00,,, +2016-07-18 15:15:00,,, +2016-07-18 15:30:00,,, +2016-07-18 15:45:00,,, +2016-07-18 16:00:00,,, +2016-07-18 16:15:00,,, +2016-07-18 16:30:00,,, +2016-07-18 16:45:00,,, +2016-07-18 17:00:00,,, +2016-07-18 17:15:00,,, +2016-07-18 17:30:00,,, +2016-07-18 17:45:00,,, +2016-07-18 18:00:00,,, +2016-07-18 18:15:00,,, +2016-07-18 18:30:00,,, +2016-07-18 18:45:00,,, +2016-07-18 19:00:00,,, +2016-07-18 19:15:00,,, +2016-07-18 19:30:00,,, +2016-07-18 19:45:00,,, +2016-07-18 20:00:00,,, +2016-07-18 20:15:00,,, +2016-07-18 20:30:00,,, +2016-07-18 20:45:00,,, +2016-07-18 21:00:00,,, +2016-07-18 21:15:00,,, +2016-07-18 21:30:00,,, +2016-07-18 21:45:00,,, +2016-07-18 22:00:00,,, +2016-07-18 22:15:00,,, +2016-07-18 22:30:00,,, +2016-07-18 22:45:00,,, +2016-07-18 23:00:00,,, +2016-07-18 23:15:00,,, +2016-07-18 23:30:00,,, +2016-07-18 23:45:00,,, +2016-07-19 00:00:00,,, +2016-07-19 00:15:00,,, +2016-07-19 00:30:00,,, +2016-07-19 00:45:00,,, +2016-07-19 01:00:00,,, +2016-07-19 01:15:00,,, +2016-07-19 01:30:00,,, +2016-07-19 01:45:00,,, +2016-07-19 02:00:00,,, +2016-07-19 02:15:00,,, +2016-07-19 02:30:00,,, +2016-07-19 02:45:00,,, +2016-07-19 03:00:00,,, +2016-07-19 03:15:00,,, +2016-07-19 03:30:00,,, +2016-07-19 03:45:00,,, +2016-07-19 04:00:00,,, +2016-07-19 04:15:00,,, +2016-07-19 04:30:00,,, +2016-07-19 04:45:00,,, +2016-07-19 05:00:00,,, +2016-07-19 05:15:00,,, +2016-07-19 05:30:00,,, +2016-07-19 05:45:00,,, +2016-07-19 06:00:00,,, +2016-07-19 06:15:00,,, +2016-07-19 06:30:00,,, +2016-07-19 06:45:00,,, +2016-07-19 07:00:00,,, +2016-07-19 07:15:00,,, +2016-07-19 07:30:00,,, +2016-07-19 07:45:00,,, +2016-07-19 08:00:00,,, +2016-07-19 08:15:00,,, +2016-07-19 08:30:00,,, +2016-07-19 08:45:00,,, +2016-07-19 09:00:00,,, +2016-07-19 09:15:00,,, +2016-07-19 09:30:00,,, +2016-07-19 09:45:00,,, +2016-07-19 10:00:00,,, +2016-07-19 10:15:00,,, +2016-07-19 10:30:00,,, +2016-07-19 10:45:00,,, +2016-07-19 11:00:00,,, +2016-07-19 11:15:00,,, +2016-07-19 11:30:00,,, +2016-07-19 11:45:00,,, +2016-07-19 12:00:00,,, +2016-07-19 12:15:00,,, +2016-07-19 12:30:00,,, +2016-07-19 12:45:00,,, +2016-07-19 13:00:00,,, +2016-07-19 13:15:00,,, +2016-07-19 13:30:00,,, +2016-07-19 13:45:00,,, +2016-07-19 14:00:00,,, +2016-07-19 14:15:00,,, +2016-07-19 14:30:00,,, +2016-07-19 14:45:00,,, +2016-07-19 15:00:00,,, +2016-07-19 15:15:00,,, +2016-07-19 15:30:00,,, +2016-07-19 15:45:00,,, +2016-07-19 16:00:00,,, +2016-07-19 16:15:00,,, +2016-07-19 16:30:00,,, +2016-07-19 16:45:00,,, +2016-07-19 17:00:00,,, +2016-07-19 17:15:00,,, +2016-07-19 17:30:00,,, +2016-07-19 17:45:00,,, +2016-07-19 18:00:00,,, +2016-07-19 18:15:00,,, +2016-07-19 18:30:00,,, +2016-07-19 18:45:00,,, +2016-07-19 19:00:00,,, +2016-07-19 19:15:00,,, +2016-07-19 19:30:00,,, +2016-07-19 19:45:00,,, +2016-07-19 20:00:00,,, +2016-07-19 20:15:00,,, +2016-07-19 20:30:00,,, +2016-07-19 20:45:00,,, +2016-07-19 21:00:00,,, +2016-07-19 21:15:00,,, +2016-07-19 21:30:00,,, +2016-07-19 21:45:00,,, +2016-07-19 22:00:00,,, +2016-07-19 22:15:00,,, +2016-07-19 22:30:00,,, +2016-07-19 22:45:00,,, +2016-07-19 23:00:00,,, +2016-07-19 23:15:00,,, +2016-07-19 23:30:00,,, +2016-07-19 23:45:00,,, +2016-07-20 00:00:00,,, +2016-07-20 00:15:00,,, +2016-07-20 00:30:00,,, +2016-07-20 00:45:00,,, +2016-07-20 01:00:00,,, +2016-07-20 01:15:00,,, +2016-07-20 01:30:00,,, +2016-07-20 01:45:00,,, +2016-07-20 02:00:00,,, +2016-07-20 02:15:00,,, +2016-07-20 02:30:00,,, +2016-07-20 02:45:00,,, +2016-07-20 03:00:00,,, +2016-07-20 03:15:00,,, +2016-07-20 03:30:00,,, +2016-07-20 03:45:00,,, +2016-07-20 04:00:00,,, +2016-07-20 04:15:00,,, +2016-07-20 04:30:00,,, +2016-07-20 04:45:00,,, +2016-07-20 05:00:00,,, +2016-07-20 05:15:00,,, +2016-07-20 05:30:00,,, +2016-07-20 05:45:00,,, +2016-07-20 06:00:00,,, +2016-07-20 06:15:00,,, +2016-07-20 06:30:00,,, +2016-07-20 06:45:00,,, +2016-07-20 07:00:00,,, +2016-07-20 07:15:00,,, +2016-07-20 07:30:00,,, +2016-07-20 07:45:00,,, +2016-07-20 08:00:00,,, +2016-07-20 08:15:00,,, +2016-07-20 08:30:00,,, +2016-07-20 08:45:00,,, +2016-07-20 09:00:00,,, +2016-07-20 09:15:00,,, +2016-07-20 09:30:00,,, +2016-07-20 09:45:00,,, +2016-07-20 10:00:00,,, +2016-07-20 10:15:00,,, +2016-07-20 10:30:00,,, +2016-07-20 10:45:00,,, +2016-07-20 11:00:00,,, +2016-07-20 11:15:00,,, +2016-07-20 11:30:00,,, +2016-07-20 11:45:00,,, +2016-07-20 12:00:00,,, +2016-07-20 12:15:00,,, +2016-07-20 12:30:00,,, +2016-07-20 12:45:00,,, +2016-07-20 13:00:00,,, +2016-07-20 13:15:00,,, +2016-07-20 13:30:00,,, +2016-07-20 13:45:00,,, +2016-07-20 14:00:00,,, +2016-07-20 14:15:00,,, +2016-07-20 14:30:00,,, +2016-07-20 14:45:00,,, +2016-07-20 15:00:00,,, +2016-07-20 15:15:00,,, +2016-07-20 15:30:00,,, +2016-07-20 15:45:00,,, +2016-07-20 16:00:00,,, +2016-07-20 16:15:00,,, +2016-07-20 16:30:00,,, +2016-07-20 16:45:00,,, +2016-07-20 17:00:00,,, +2016-07-20 17:15:00,,, +2016-07-20 17:30:00,,, +2016-07-20 17:45:00,,, +2016-07-20 18:00:00,,, +2016-07-20 18:15:00,,, +2016-07-20 18:30:00,,, +2016-07-20 18:45:00,,, +2016-07-20 19:00:00,,, +2016-07-20 19:15:00,,, +2016-07-20 19:30:00,,, +2016-07-20 19:45:00,,, +2016-07-20 20:00:00,,, +2016-07-20 20:15:00,,, +2016-07-20 20:30:00,,, +2016-07-20 20:45:00,,, +2016-07-20 21:00:00,,, +2016-07-20 21:15:00,,, +2016-07-20 21:30:00,,, +2016-07-20 21:45:00,,, +2016-07-20 22:00:00,,, +2016-07-20 22:15:00,,, +2016-07-20 22:30:00,,, +2016-07-20 22:45:00,,, +2016-07-20 23:00:00,,, +2016-07-20 23:15:00,,, +2016-07-20 23:30:00,,, +2016-07-20 23:45:00,,, +2016-07-21 00:00:00,,, +2016-07-21 00:15:00,,, +2016-07-21 00:30:00,,, +2016-07-21 00:45:00,,, +2016-07-21 01:00:00,,, +2016-07-21 01:15:00,,, +2016-07-21 01:30:00,,, +2016-07-21 01:45:00,,, +2016-07-21 02:00:00,,, +2016-07-21 02:15:00,,, +2016-07-21 02:30:00,,, +2016-07-21 02:45:00,,, +2016-07-21 03:00:00,,, +2016-07-21 03:15:00,,, +2016-07-21 03:30:00,,, +2016-07-21 03:45:00,,, +2016-07-21 04:00:00,,, +2016-07-21 04:15:00,,, +2016-07-21 04:30:00,,, +2016-07-21 04:45:00,,, +2016-07-21 05:00:00,,, +2016-07-21 05:15:00,,, +2016-07-21 05:30:00,,, +2016-07-21 05:45:00,,, +2016-07-21 06:00:00,,, +2016-07-21 06:15:00,,, +2016-07-21 06:30:00,,, +2016-07-21 06:45:00,,, +2016-07-21 07:00:00,,, +2016-07-21 07:15:00,,, +2016-07-21 07:30:00,,, +2016-07-21 07:45:00,,, +2016-07-21 08:00:00,,, +2016-07-21 08:15:00,,, +2016-07-21 08:30:00,,, +2016-07-21 08:45:00,,, +2016-07-21 09:00:00,,, +2016-07-21 09:15:00,,, +2016-07-21 09:30:00,,, +2016-07-21 09:45:00,,, +2016-07-21 10:00:00,,, +2016-07-21 10:15:00,,, +2016-07-21 10:30:00,,, +2016-07-21 10:45:00,,, +2016-07-21 11:00:00,,, +2016-07-21 11:15:00,,, +2016-07-21 11:30:00,,, +2016-07-21 11:45:00,,, +2016-07-21 12:00:00,,, +2016-07-21 12:15:00,,, +2016-07-21 12:30:00,,, +2016-07-21 12:45:00,,, +2016-07-21 13:00:00,,, +2016-07-21 13:15:00,,, +2016-07-21 13:30:00,,, +2016-07-21 13:45:00,,, +2016-07-21 14:00:00,,, +2016-07-21 14:15:00,,, +2016-07-21 14:30:00,,, +2016-07-21 14:45:00,,, +2016-07-21 15:00:00,,, +2016-07-21 15:15:00,,,65.4378 +2016-07-21 15:18:26,3171.0,-8.7205, +2016-07-21 15:28:29,3170.0,-7.1864, +2016-07-21 15:30:00,,,65.2505 +2016-07-21 15:38:32,3168.0,-8.1925, +2016-07-21 15:45:00,,,61.6696 +2016-07-21 15:48:46,3174.0,-8.3784, +2016-07-21 15:59:27,3179.0,-8.5638, +2016-07-21 16:00:00,,,66.6564 +2016-07-21 16:09:30,3179.0,-8.8342, +2016-07-21 16:15:00,,,69.2344 +2016-07-21 16:19:33,3182.0,-8.8886, +2016-07-21 16:29:37,3599.0,18.2752, +2016-07-21 16:30:00,,,21.0865 +2016-07-21 16:39:40,3599.0,18.3564, +2016-07-21 16:45:00,,,21.0884 +2016-07-21 16:49:42,3599.0,18.3856, +2016-07-21 16:59:45,3599.0,18.428, +2016-07-21 17:00:00,,,21.0865 +2016-07-21 17:09:48,3599.0,18.4296, +2016-07-21 17:15:00,,,21.0884 +2016-07-21 17:19:51,3599.0,18.428, +2016-07-21 17:29:54,3599.0,18.4296, +2016-07-21 17:30:00,,,21.0884 +2016-07-21 17:39:57,3599.0,18.428, +2016-07-21 17:45:00,,,21.0884 +2016-07-21 17:50:01,3599.0,18.4672, +2016-07-21 18:00:00,,,21.0884 +2016-07-21 18:00:03,3599.0,18.4655, +2016-07-21 18:10:07,3599.0,18.4672, +2016-07-21 18:15:00,,,21.0902 +2016-07-21 18:20:10,3599.0,18.5014, +2016-07-21 18:30:00,,,21.1348 +2016-07-21 18:30:13,3599.0,18.4655, +2016-07-21 18:40:16,3599.0,18.5014, +2016-07-21 18:45:00,,,21.133000000000006 +2016-07-21 18:50:19,3599.0,18.5014, +2016-07-21 19:00:00,,,21.133000000000006 +2016-07-21 19:00:21,3599.0,18.5014, +2016-07-21 19:10:24,3599.0,18.5031, +2016-07-21 19:15:00,,,21.1273 +2016-07-21 19:20:27,3599.0,18.539, +2016-07-21 19:30:00,,,21.0921 +2016-07-21 19:30:30,3599.0,18.5031, +2016-07-21 19:40:33,3599.0,18.5374, +2016-07-21 19:45:00,,,21.1273 +2016-07-21 19:50:43,3599.0,18.5374, +2016-07-21 20:00:00,,,21.094 +2016-07-21 20:00:46,3599.0,18.5374, +2016-07-21 20:10:49,3599.0,18.508, +2016-07-21 20:15:00,,,21.0959 +2016-07-21 20:20:52,3599.0,18.5423, +2016-07-21 20:30:00,,,21.1348 +2016-07-21 20:30:54,3599.0,18.544, +2016-07-21 20:40:57,3599.0,18.544, +2016-07-21 20:45:00,,,21.1348 +2016-07-21 20:51:00,3599.0,18.5783, +2016-07-21 21:00:00,,,21.133000000000006 +2016-07-21 21:01:03,3599.0,18.58, +2016-07-21 21:11:06,3599.0,18.58, +2016-07-21 21:15:00,,,21.1348 +2016-07-21 21:21:09,3599.0,18.5783, +2016-07-21 21:30:00,,,21.0959 +2016-07-21 21:31:12,3599.0,18.58, +2016-07-21 21:41:15,3599.0,18.58, +2016-07-21 21:45:00,,,21.133000000000006 +2016-07-21 21:51:17,3599.0,18.58, +2016-07-21 22:00:00,,,21.094 +2016-07-21 22:01:20,3599.0,18.58, +2016-07-21 22:11:23,3599.0,18.5783, +2016-07-21 22:15:00,,,21.0959 +2016-07-21 22:21:26,3599.0,18.58, +2016-07-21 22:30:00,,,21.1348 +2016-07-21 22:31:29,3599.0,18.544, +2016-07-21 22:41:31,3599.0,18.5849, +2016-07-21 22:45:00,,,21.1348 +2016-07-21 22:51:34,3599.0,18.5833, +2016-07-21 23:00:00,,,21.133000000000006 +2016-07-21 23:01:37,3599.0,18.58, +2016-07-21 23:11:40,3599.0,18.5833, +2016-07-21 23:15:00,,,21.0996 +2016-07-21 23:21:43,3599.0,18.58, +2016-07-21 23:30:00,,,20.9774 +2016-07-21 23:31:45,3599.0,18.616, +2016-07-21 23:41:48,3599.0,18.58, +2016-07-21 23:45:00,,,21.0162 +2016-07-21 23:51:51,3599.0,18.5783, +2016-07-22 00:00:00,,, +2016-07-22 00:15:00,,, +2016-07-22 00:30:00,,, +2016-07-22 00:45:00,,, +2016-07-22 01:00:00,,,20.9849 +2016-07-22 01:02:11,3599.0,18.58, +2016-07-22 01:12:13,3599.0,18.616, +2016-07-22 01:15:00,,,21.0218 +2016-07-22 01:22:16,3599.0,18.5783, +2016-07-22 01:30:00,,,20.9849 +2016-07-22 01:32:19,3599.0,18.58, +2016-07-22 01:42:22,3599.0,18.58, +2016-07-22 01:45:00,,,20.983 +2016-07-22 01:52:25,3599.0,18.616, +2016-07-22 02:00:00,,,20.9849 +2016-07-22 02:02:27,3599.0,18.5783, +2016-07-22 02:12:30,3599.0,18.616, +2016-07-22 02:15:00,,,20.983 +2016-07-22 02:22:33,3599.0,18.616, +2016-07-22 02:30:00,,,20.9849 +2016-07-22 02:32:36,3599.0,18.5783, +2016-07-22 02:42:38,3599.0,18.58, +2016-07-22 02:45:00,,,21.0218 +2016-07-22 02:52:41,3599.0,18.5783, +2016-07-22 03:00:00,,,20.9849 +2016-07-22 03:02:44,3599.0,18.5783, +2016-07-22 03:12:46,3599.0,18.616, +2016-07-22 03:15:00,,,20.9849 +2016-07-22 03:22:49,3599.0,18.616, +2016-07-22 03:30:00,,,20.983 +2016-07-22 03:32:52,3599.0,18.5783, +2016-07-22 03:42:54,3599.0,18.616, +2016-07-22 03:45:00,,,21.0237 +2016-07-22 03:52:57,3599.0,18.6094, +2016-07-22 04:00:00,,,21.0237 +2016-07-22 04:03:00,3599.0,18.6143, +2016-07-22 04:13:03,3599.0,18.6094, +2016-07-22 04:15:00,,,20.983 +2016-07-22 04:23:05,3599.0,18.6094, +2016-07-22 04:30:00,,,21.0237 +2016-07-22 04:33:08,3599.0,18.5733, +2016-07-22 04:43:11,3599.0,18.611, +2016-07-22 04:45:00,,,21.0237 +2016-07-22 04:53:13,3599.0,18.5733, +2016-07-22 05:00:00,,,20.983 +2016-07-22 05:03:16,3599.0,18.6094, +2016-07-22 05:13:19,3599.0,18.5733, +2016-07-22 05:15:00,,,21.0237 +2016-07-22 05:23:22,3599.0,18.575, +2016-07-22 05:30:00,,,20.9849 +2016-07-22 05:33:24,3599.0,18.5733, +2016-07-22 05:43:27,3599.0,18.6094, +2016-07-22 05:45:00,,,20.983 +2016-07-22 05:53:29,3599.0,18.6094, +2016-07-22 06:00:00,,,21.0237 +2016-07-22 06:03:32,3599.0,18.6094, +2016-07-22 06:13:34,3599.0,18.5733, +2016-07-22 06:15:00,,,20.9849 +2016-07-22 06:23:44,3599.0,18.575, +2016-07-22 06:30:00,,,20.9849 +2016-07-22 06:33:47,3599.0,18.611, +2016-07-22 06:43:50,3599.0,18.575, +2016-07-22 06:45:00,,,20.9849 +2016-07-22 06:53:52,3599.0,18.6094, +2016-07-22 07:00:00,,,20.9849 +2016-07-22 07:03:55,3599.0,18.575, +2016-07-22 07:13:58,3599.0,18.5733, +2016-07-22 07:15:00,,,21.0237 +2016-07-22 07:24:01,3599.0,18.5733, +2016-07-22 07:30:00,,,21.0237 +2016-07-22 07:34:03,3599.0,18.5733, +2016-07-22 07:44:06,3599.0,18.611, +2016-07-22 07:45:00,,,20.983 +2016-07-22 07:54:09,3599.0,18.5733, +2016-07-22 08:00:00,,,20.983 +2016-07-22 08:04:11,3599.0,18.611, +2016-07-22 08:14:14,3599.0,18.57, +2016-07-22 08:15:00,,,21.0237 +2016-07-22 08:24:17,3599.0,18.5684, +2016-07-22 08:30:00,,,20.983 +2016-07-22 08:34:19,3599.0,18.6061, +2016-07-22 08:44:22,3599.0,18.6061, +2016-07-22 08:45:00,,,21.0237 +2016-07-22 08:54:25,3599.0,18.57, +2016-07-22 09:00:00,,,21.0237 +2016-07-22 09:04:28,3599.0,18.5684, +2016-07-22 09:14:31,3599.0,18.6405, +2016-07-22 09:15:00,,,21.0237 +2016-07-22 09:24:33,3599.0,18.57, +2016-07-22 09:30:00,,,21.0237 +2016-07-22 09:34:36,3599.0,18.5341, +2016-07-22 09:44:39,3599.0,18.6044, +2016-07-22 09:45:00,,,20.983 +2016-07-22 09:54:42,3599.0,18.4622, +2016-07-22 10:00:00,,,20.9849 +2016-07-22 10:04:44,3599.0,18.5341, +2016-07-22 10:14:47,3599.0,18.4622, +2016-07-22 10:15:00,,,21.0237 +2016-07-22 10:24:50,3599.0,18.4606, +2016-07-22 10:30:00,,,20.9849 +2016-07-22 10:34:53,3599.0,18.4606, +2016-07-22 10:44:56,3599.0,18.4247, +2016-07-22 10:45:00,,,20.9849 +2016-07-22 10:54:59,3599.0,18.3223, +2016-07-22 11:00:00,,,21.0237 +2016-07-22 11:05:02,3599.0,18.3531, +2016-07-22 11:15:00,,,21.0218 +2016-07-22 11:15:04,3599.0,18.3938, +2016-07-22 11:25:07,3599.0,18.3597, +2016-07-22 11:30:00,,,20.9849 +2016-07-22 11:35:10,3599.0,18.2493, +2016-07-22 11:45:00,,,21.0237 +2016-07-22 11:45:13,3599.0,18.2866, +2016-07-22 11:55:16,3599.0,18.2882, +2016-07-22 12:00:00,,,20.983 +2016-07-22 12:05:19,3599.0,18.2169, +2016-07-22 12:15:00,,,20.9849 +2016-07-22 12:15:22,3599.0,18.2509, +2016-07-22 12:25:25,3599.0,18.2526, +2016-07-22 12:30:00,,,21.0237 +2016-07-22 12:35:28,3599.0,18.2866, +2016-07-22 12:45:00,,,20.9849 +2016-07-22 12:45:31,3599.0,18.1442, +2016-07-22 12:55:34,3599.0,18.1813, +2016-07-22 13:00:00,,,21.0218 +2016-07-22 13:05:37,3599.0,18.1442, +2016-07-22 13:15:00,,,20.9849 +2016-07-22 13:15:40,3599.0,18.0394, +2016-07-22 13:25:44,3599.0,18.0378, +2016-07-22 13:30:00,,,21.0218 +2016-07-22 13:35:47,3599.0,18.0426, +2016-07-22 13:45:00,,,21.0237 +2016-07-22 13:45:50,3599.0,18.0426, +2016-07-22 13:55:53,3599.0,18.0426, +2016-07-22 14:00:00,,,20.9849 +2016-07-22 14:05:56,3599.0,18.0426, +2016-07-22 14:15:00,,,20.9849 +2016-07-22 14:15:59,3599.0,17.9044, +2016-07-22 14:26:02,3599.0,17.9365, +2016-07-22 14:30:00,,,20.9055 +2016-07-22 14:36:05,3599.0,17.9044, +2016-07-22 14:45:00,,,20.9074 +2016-07-22 14:46:08,3599.0,17.906, +2016-07-22 14:56:11,3599.0,17.9397, +2016-07-22 15:00:00,,,20.8668 +2016-07-22 15:06:14,3599.0,17.9044, +2016-07-22 15:15:00,,,20.8668 +2016-07-22 15:16:17,3599.0,17.906, +2016-07-22 15:26:20,3599.0,17.9044, +2016-07-22 15:30:00,,,20.9074 +2016-07-22 15:36:23,3599.0,17.9397, +2016-07-22 15:45:00,,,20.9074 +2016-07-22 15:46:26,3599.0,17.9044, +2016-07-22 15:56:29,3599.0,17.9044, +2016-07-22 16:00:00,,,20.8687 +2016-07-22 16:06:32,3599.0,17.8692, +2016-07-22 16:15:00,,,20.8687 +2016-07-22 16:16:35,3599.0,17.9044, +2016-07-22 16:26:38,3599.0,17.9397, +2016-07-22 16:30:00,,,20.9055 +2016-07-22 16:36:41,3599.0,17.9461, +2016-07-22 16:45:00,,,20.9074 +2016-07-22 16:46:44,3599.0,17.9092, +2016-07-22 16:56:47,3599.0,17.9799, +2016-07-22 17:00:00,,,20.9074 +2016-07-22 17:06:50,3599.0,17.9108, +2016-07-22 17:15:00,,,20.8687 +2016-07-22 17:16:53,3599.0,17.9108, +2016-07-22 17:26:55,3599.0,17.9815, +2016-07-22 17:30:00,,,20.9074 +2016-07-22 17:36:58,3599.0,17.9445, +2016-07-22 17:45:00,,,20.9442 +2016-07-22 17:47:01,3599.0,18.0152, +2016-07-22 17:57:04,3599.0,18.0506, +2016-07-22 18:00:00,,,20.9074 +2016-07-22 18:07:07,3599.0,18.0861, +2016-07-22 18:15:00,,,20.8687 +2016-07-22 18:17:09,3599.0,18.0506, +2016-07-22 18:27:12,3599.0,18.0506, +2016-07-22 18:30:00,,,20.9074 +2016-07-22 18:37:15,3599.0,18.0152, +2016-07-22 18:45:00,,,20.9074 +2016-07-22 18:47:18,3599.0,18.0506, +2016-07-22 18:57:20,3599.0,18.0522, +2016-07-22 19:00:00,,,20.9055 +2016-07-22 19:07:30,3599.0,17.9799, +2016-07-22 19:15:00,,,20.8687 +2016-07-22 19:17:33,3599.0,18.0861, +2016-07-22 19:27:36,3599.0,18.0506, +2016-07-22 19:30:00,,,20.9461 +2016-07-22 19:37:38,3599.0,17.9799, +2016-07-22 19:45:00,,,20.9074 +2016-07-22 19:47:41,3599.0,18.0506, +2016-07-22 19:57:44,3599.0,18.0506, +2016-07-22 20:00:00,,,20.9055 +2016-07-22 20:07:47,3599.0,18.0506, +2016-07-22 20:15:00,,,20.9074 +2016-07-22 20:17:49,3599.0,18.0168, +2016-07-22 20:27:52,3599.0,18.0152, +2016-07-22 20:30:00,,,20.9461 +2016-07-22 20:37:55,3599.0,18.0152, +2016-07-22 20:45:00,,,20.8687 +2016-07-22 20:47:58,3599.0,18.0458, +2016-07-22 20:58:00,3599.0,18.0152, +2016-07-22 21:00:00,,,20.8743 +2016-07-22 21:08:03,3599.0,18.0104, +2016-07-22 21:15:00,,,20.9517 +2016-07-22 21:18:06,3599.0,18.0104, +2016-07-22 21:28:08,3599.0,17.9751, +2016-07-22 21:30:00,,,20.9074 +2016-07-22 21:38:11,3599.0,18.0458, +2016-07-22 21:45:00,,,20.9517 +2016-07-22 21:48:14,3599.0,18.0104, +2016-07-22 21:58:16,3599.0,17.9767, +2016-07-22 22:00:00,,,20.9517 +2016-07-22 22:08:19,3599.0,18.0458, +2016-07-22 22:15:00,,,20.9129 +2016-07-22 22:18:22,3599.0,18.0474, +2016-07-22 22:28:25,3599.0,18.0458, +2016-07-22 22:30:00,,,20.9129 +2016-07-22 22:38:27,3599.0,18.0458, +2016-07-22 22:45:00,,,20.9498 +2016-07-22 22:48:30,3599.0,18.0458, +2016-07-22 22:58:33,3599.0,18.0829, +2016-07-22 23:00:00,,,20.9129 +2016-07-22 23:08:35,3599.0,18.0458, +2016-07-22 23:15:00,,,20.9129 +2016-07-22 23:18:38,3599.0,18.0458, +2016-07-22 23:28:41,3599.0,18.1167, +2016-07-22 23:30:00,,,20.9129 +2016-07-22 23:38:43,3599.0,18.1539, +2016-07-22 23:45:00,,,20.8743 +2016-07-22 23:48:46,3599.0,18.0829, +2016-07-22 23:58:49,3599.0,18.1167, +2016-07-23 00:00:00,,,20.9517 +2016-07-23 00:08:51,3599.0,18.1539, +2016-07-23 00:15:00,,,20.9129 +2016-07-23 00:18:54,3599.0,18.1523, +2016-07-23 00:28:56,3599.0,18.1539, +2016-07-23 00:30:00,,,20.9498 +2016-07-23 00:38:59,3599.0,18.0813, +2016-07-23 00:45:00,,,20.9129 +2016-07-23 00:49:02,3599.0,18.1523, +2016-07-23 00:59:04,3599.0,18.1119, +2016-07-23 01:00:00,,,20.9517 +2016-07-23 01:09:07,3599.0,18.1474, +2016-07-23 01:15:00,,,20.9129 +2016-07-23 01:19:10,3599.0,18.1506, +2016-07-23 01:29:12,3599.0,18.1474, +2016-07-23 01:30:00,,,20.9185 +2016-07-23 01:39:15,3599.0,18.183, +2016-07-23 01:45:00,,,20.9129 +2016-07-23 01:49:17,3599.0,18.1135, +2016-07-23 01:59:20,3599.0,18.183, +2016-07-23 02:00:00,,,20.9129 +2016-07-23 02:09:22,3599.0,18.149, +2016-07-23 02:15:00,,,20.9129 +2016-07-23 02:19:25,3599.0,18.149, +2016-07-23 02:29:27,3599.0,18.2153, +2016-07-23 02:30:00,,,20.9129 +2016-07-23 02:39:30,3599.0,18.1846, +2016-07-23 02:45:00,,,20.9517 +2016-07-23 02:49:33,3599.0,18.1797, +2016-07-23 02:59:35,3599.0,18.1442, +2016-07-23 03:00:00,,,20.9129 +2016-07-23 03:09:38,3599.0,18.1797, +2016-07-23 03:15:00,,,20.878 +2016-07-23 03:19:40,3599.0,18.1442, +2016-07-23 03:29:43,3599.0,18.1797, +2016-07-23 03:30:00,,,20.9185 +2016-07-23 03:39:46,3599.0,18.1781, +2016-07-23 03:45:00,,,20.9498 +2016-07-23 03:49:48,3599.0,18.1781, +2016-07-23 03:59:51,3599.0,18.1442, +2016-07-23 04:00:00,,,20.9554 +2016-07-23 04:09:53,3599.0,18.1797, +2016-07-23 04:15:00,,,20.9185 +2016-07-23 04:19:56,3599.0,18.1442, +2016-07-23 04:29:58,3599.0,18.1442, +2016-07-23 04:30:00,,,20.9129 +2016-07-23 04:40:01,3599.0,18.1797, +2016-07-23 04:45:00,,,20.8798 +2016-07-23 04:50:03,3599.0,18.2153, +2016-07-23 05:00:00,,,20.9498 +2016-07-23 05:00:13,3599.0,18.2153, +2016-07-23 05:10:16,3599.0,18.1442, +2016-07-23 05:15:00,,,20.9517 +2016-07-23 05:20:18,3599.0,18.1797, +2016-07-23 05:30:00,,,20.9573 +2016-07-23 05:30:21,3599.0,18.1813, +2016-07-23 05:40:23,3599.0,18.1442, +2016-07-23 05:45:00,,,20.8817 +2016-07-23 05:50:26,3599.0,18.1749, +2016-07-23 06:00:00,,,20.8798 +2016-07-23 06:00:29,3599.0,18.1393, +2016-07-23 06:10:31,3599.0,18.1749, +2016-07-23 06:15:00,,,20.8798 +2016-07-23 06:20:34,3599.0,18.1749, +2016-07-23 06:30:00,,,20.9185 +2016-07-23 06:30:36,3599.0,18.1749, +2016-07-23 06:40:39,3599.0,18.1749, +2016-07-23 06:45:00,,,20.9185 +2016-07-23 06:50:41,3599.0,18.1765, +2016-07-23 07:00:00,,,20.9573 +2016-07-23 07:00:44,3599.0,18.1749, +2016-07-23 07:10:47,3599.0,18.1749, +2016-07-23 07:15:00,,,20.9204 +2016-07-23 07:20:49,3599.0,18.1749, +2016-07-23 07:30:00,,,20.8817 +2016-07-23 07:30:52,3599.0,18.1038, +2016-07-23 07:40:54,3599.0,18.1055, +2016-07-23 07:45:00,,,20.9129 +2016-07-23 07:50:57,3599.0,18.0684, +2016-07-23 08:00:00,,,20.8798 +2016-07-23 08:01:00,3599.0,18.1393, +2016-07-23 08:11:02,3599.0,18.1038, +2016-07-23 08:15:00,,,20.9554 +2016-07-23 08:21:05,3599.0,18.07, +2016-07-23 08:30:00,,,20.8045 +2016-07-23 08:31:07,3599.0,18.0668, +2016-07-23 08:41:10,3599.0,18.0684, +2016-07-23 08:45:00,,,20.7641 +2016-07-23 08:51:13,3599.0,18.1055, +2016-07-23 09:00:00,,,20.8393 +2016-07-23 09:01:15,3599.0,18.0282, +2016-07-23 09:11:18,3599.0,17.9928, +2016-07-23 09:15:00,,,20.8393 +2016-07-23 09:21:20,3599.0,17.9222, +2016-07-23 09:30:00,,,20.8026 +2016-07-23 09:31:23,3599.0,17.9928, +2016-07-23 09:41:25,3599.0,17.9575, +2016-07-23 09:45:00,,,20.8026 +2016-07-23 09:51:28,3599.0,17.9928, +2016-07-23 10:00:00,,,20.8026 +2016-07-23 10:01:31,3599.0,17.9575, +2016-07-23 10:11:33,3599.0,17.9559, +2016-07-23 10:15:00,,,20.8356 +2016-07-23 10:21:36,3599.0,17.9575, +2016-07-23 10:30:00,,,20.8026 +2016-07-23 10:31:39,3599.0,17.9944, +2016-07-23 10:41:42,3599.0,17.9928, +2016-07-23 10:45:00,,,20.7971 +2016-07-23 10:51:44,3599.0,17.9591, +2016-07-23 11:00:00,,,20.8356 +2016-07-23 11:01:47,3599.0,18.0282, +2016-07-23 11:11:50,3599.0,17.9591, +2016-07-23 11:15:00,,,20.8338 +2016-07-23 11:21:53,3599.0,17.8917, +2016-07-23 11:30:00,,,20.7971 +2016-07-23 11:31:56,3599.0,17.8869, +2016-07-23 11:41:58,3599.0,17.8565, +2016-07-23 11:45:00,,,20.6816 +2016-07-23 11:52:01,3599.0,17.8917, +2016-07-23 12:00:00,,,20.6798 +2016-07-23 12:02:04,3599.0,17.7862, +2016-07-23 12:12:07,3599.0,17.7862, +2016-07-23 12:15:00,,,20.6816 +2016-07-23 12:22:09,3599.0,17.7862, +2016-07-23 12:30:00,,,20.6872 +2016-07-23 12:32:12,3599.0,17.7862, +2016-07-23 12:42:15,3599.0,17.7862, +2016-07-23 12:45:00,,,20.6488 +2016-07-23 12:52:18,3599.0,17.7877, +2016-07-23 13:00:00,,,20.6816 +2016-07-23 13:02:21,3599.0,17.715999999999994, +2016-07-23 13:12:23,3599.0,17.680999999999994, +2016-07-23 13:15:00,,,20.6816 +2016-07-23 13:22:26,3599.0,17.680999999999994, +2016-07-23 13:30:00,,,20.6816 +2016-07-23 13:32:29,3599.0,17.646, +2016-07-23 13:42:32,3599.0,17.715999999999994, +2016-07-23 13:45:00,,,20.6853 +2016-07-23 13:52:34,3599.0,17.680999999999994, +2016-07-23 14:00:00,,,20.6798 +2016-07-23 14:02:37,3599.0,17.646, +2016-07-23 14:12:40,3599.0,17.680999999999994, +2016-07-23 14:15:00,,,20.7201 +2016-07-23 14:22:43,3599.0,17.611, +2016-07-23 14:30:00,,,20.6816 +2016-07-23 14:32:46,3599.0,17.5761, +2016-07-23 14:42:49,3599.0,17.5808, +2016-07-23 14:45:00,,,20.6816 +2016-07-23 14:52:51,3599.0,17.6507, +2016-07-23 15:00:00,,,20.6872 +2016-07-23 15:02:54,3599.0,17.5808, +2016-07-23 15:12:57,3599.0,17.5111, +2016-07-23 15:15:00,,,20.6798 +2016-07-23 15:23:00,3599.0,17.5111, +2016-07-23 15:30:00,,,20.6816 +2016-07-23 15:33:03,3599.0,17.5111, +2016-07-23 15:43:06,3599.0,17.5111, +2016-07-23 15:45:00,,,20.6816 +2016-07-23 15:53:09,3599.0,17.4763, +2016-07-23 16:00:00,,,20.6816 +2016-07-23 16:03:12,3599.0,17.4763, +2016-07-23 16:13:15,3599.0,17.5111, +2016-07-23 16:15:00,,,20.6816 +2016-07-23 16:23:18,3599.0,17.4415, +2016-07-23 16:30:00,,,20.6816 +2016-07-23 16:33:21,3599.0,17.4778, +2016-07-23 16:43:24,3599.0,17.4083, +2016-07-23 16:45:00,,,20.6798 +2016-07-23 16:53:27,3599.0,17.4067, +2016-07-23 17:00:00,,,20.6798 +2016-07-23 17:03:30,3599.0,17.372, +2016-07-23 17:13:33,3599.0,17.4114, +2016-07-23 17:15:00,,,20.6816 +2016-07-23 17:23:35,3599.0,17.3767, +2016-07-23 17:30:00,,,20.5667 +2016-07-23 17:33:38,3599.0,17.3767, +2016-07-23 17:43:41,3599.0,17.4114, +2016-07-23 17:45:00,,,20.5667 +2016-07-23 17:53:44,3599.0,17.4114, +2016-07-23 18:00:00,,,20.5667 +2016-07-23 18:03:47,3599.0,17.4129, +2016-07-23 18:13:50,3599.0,17.4114, +2016-07-23 18:15:00,,,20.5667 +2016-07-23 18:23:53,3599.0,17.3798, +2016-07-23 18:30:00,,,20.5722 +2016-07-23 18:33:56,3599.0,17.416, +2016-07-23 18:43:59,3599.0,17.3813, +2016-07-23 18:45:00,,,20.5667 +2016-07-23 18:54:02,3599.0,17.416, +2016-07-23 19:00:00,,,20.5667 +2016-07-23 19:04:05,3599.0,17.4145, +2016-07-23 19:14:15,3599.0,17.4145, +2016-07-23 19:15:00,,,20.5704 +2016-07-23 19:24:18,3599.0,17.416, +2016-07-23 19:30:00,,,20.5649 +2016-07-23 19:34:21,3599.0,17.4145, +2016-07-23 19:44:24,3599.0,17.3798, +2016-07-23 19:45:00,,,20.5722 +2016-07-23 19:54:27,3599.0,17.4145, +2016-07-23 20:00:00,,,20.5667 +2016-07-23 20:04:30,3599.0,17.416, +2016-07-23 20:14:33,3599.0,17.4145, +2016-07-23 20:15:00,,,20.6105 +2016-07-23 20:24:36,3599.0,17.3813, +2016-07-23 20:30:00,,,20.5704 +2016-07-23 20:34:39,3599.0,17.5189, +2016-07-23 20:44:42,3599.0,17.5189, +2016-07-23 20:45:00,,,20.605 +2016-07-23 20:54:44,3599.0,17.5189, +2016-07-23 21:00:00,,,20.5704 +2016-07-23 21:04:47,3599.0,17.5189, +2016-07-23 21:14:50,3599.0,17.5204, +2016-07-23 21:15:00,,,20.5722 +2016-07-23 21:24:53,3599.0,17.5568, +2016-07-23 21:30:00,,,20.534 +2016-07-23 21:34:56,3599.0,17.484, +2016-07-23 21:44:59,3599.0,17.5204, +2016-07-23 21:45:00,,,20.5722 +2016-07-23 21:55:02,3599.0,17.5204, +2016-07-23 22:00:00,,,20.5722 +2016-07-23 22:05:04,3599.0,17.5204, +2016-07-23 22:15:00,,,20.5722 +2016-07-23 22:15:07,3599.0,17.5189, +2016-07-23 22:25:10,3599.0,17.5204, +2016-07-23 22:30:00,,,20.5722 +2016-07-23 22:35:13,3599.0,17.5189, +2016-07-23 22:45:00,,,20.5722 +2016-07-23 22:45:16,3599.0,17.5204, +2016-07-23 22:55:19,3599.0,17.5537, +2016-07-23 23:00:00,,,20.5704 +2016-07-23 23:05:21,3599.0,17.5553, +2016-07-23 23:15:00,,,20.5722 +2016-07-23 23:15:24,3599.0,17.5204, +2016-07-23 23:25:27,3599.0,17.5204, +2016-07-23 23:30:00,,,20.5722 +2016-07-23 23:35:30,3599.0,17.5189, +2016-07-23 23:45:00,,,20.5722 +2016-07-23 23:45:33,3599.0,17.5189, +2016-07-23 23:55:35,3599.0,17.5553, +2016-07-24 00:00:00,,,20.5704 +2016-07-24 00:05:38,3599.0,17.5189, +2016-07-24 00:15:00,,,20.5722 +2016-07-24 00:15:41,3599.0,17.5553, +2016-07-24 00:25:44,3599.0,17.5553, +2016-07-24 00:30:00,,,20.5722 +2016-07-24 00:35:47,3599.0,17.5189, +2016-07-24 00:45:00,,,20.5722 +2016-07-24 00:45:49,3599.0,17.5189, +2016-07-24 00:55:52,3599.0,17.5204, +2016-07-24 01:00:00,,,20.6105 +2016-07-24 01:05:55,3599.0,17.5189, +2016-07-24 01:15:00,,,20.5722 +2016-07-24 01:15:57,3599.0,17.5204, +2016-07-24 01:26:00,3599.0,17.5553, +2016-07-24 01:30:00,,,20.5758 +2016-07-24 01:36:03,3599.0,17.5189, +2016-07-24 01:45:00,,,20.6105 +2016-07-24 01:46:06,3599.0,17.6251, +2016-07-24 01:56:08,3599.0,17.6601, +2016-07-24 02:00:00,,,20.5722 +2016-07-24 02:06:11,3599.0,17.5886, +2016-07-24 02:15:00,,,20.5722 +2016-07-24 02:16:13,3599.0,17.6601, +2016-07-24 02:26:16,3599.0,17.6236, +2016-07-24 02:30:00,,,20.6105 +2016-07-24 02:36:19,3599.0,17.6601, +2016-07-24 02:45:00,,,20.5722 +2016-07-24 02:46:22,3599.0,17.5886, +2016-07-24 02:56:24,3599.0,17.6904, +2016-07-24 03:00:00,,,20.5722 +2016-07-24 03:06:27,3599.0,17.6554, +2016-07-24 03:15:00,,,20.5758 +2016-07-24 03:16:30,3599.0,17.657, +2016-07-24 03:26:32,3599.0,17.5855, +2016-07-24 03:30:00,,,20.5704 +2016-07-24 03:36:35,3599.0,17.6554, +2016-07-24 03:45:00,,,20.5758 +2016-07-24 03:46:37,3599.0,17.6554, +2016-07-24 03:56:40,3599.0,17.6554, +2016-07-24 04:00:00,,,20.6178 +2016-07-24 04:06:43,3599.0,17.6554, +2016-07-24 04:15:00,,,20.6086 +2016-07-24 04:16:45,3599.0,17.6554, +2016-07-24 04:26:48,3599.0,17.6554, +2016-07-24 04:30:00,,,20.5722 +2016-07-24 04:36:51,3599.0,17.657, +2016-07-24 04:45:00,,,20.5758 +2016-07-24 04:46:53,3599.0,17.5855, +2016-07-24 04:56:56,3599.0,17.6554, +2016-07-24 05:00:00,,,20.5722 +2016-07-24 05:06:59,3599.0,17.6189, +2016-07-24 05:15:00,,,20.5758 +2016-07-24 05:17:02,3599.0,17.5855, +2016-07-24 05:27:04,3599.0,17.6554, +2016-07-24 05:30:00,,,20.5758 +2016-07-24 05:37:07,3599.0,17.5824, +2016-07-24 05:45:00,,,20.6105 +2016-07-24 05:47:10,3599.0,17.6507, +2016-07-24 05:57:12,3599.0,17.6173, +2016-07-24 06:00:00,,,20.6141 +2016-07-24 06:07:15,3599.0,17.6507, +2016-07-24 06:15:00,,,20.5758 +2016-07-24 06:17:18,3599.0,17.6507, +2016-07-24 06:27:20,3599.0,17.6507, +2016-07-24 06:30:00,,,20.5758 +2016-07-24 06:37:23,3599.0,17.6507, +2016-07-24 06:45:00,,,20.5704 +2016-07-24 06:47:26,3599.0,17.6507, +2016-07-24 06:57:29,3599.0,17.6157, +2016-07-24 07:00:00,,,20.5758 +2016-07-24 07:07:31,3599.0,17.6507, +2016-07-24 07:15:00,,,20.5758 +2016-07-24 07:17:34,3599.0,17.6507, +2016-07-24 07:27:36,3599.0,17.6157, +2016-07-24 07:30:00,,,20.5758 +2016-07-24 07:37:39,3599.0,17.6507, +2016-07-24 07:45:00,,,20.5758 +2016-07-24 07:47:42,3599.0,17.6157, +2016-07-24 07:57:44,3599.0,17.6157, +2016-07-24 08:00:00,,,20.6141 +2016-07-24 08:07:47,3599.0,17.6507, +2016-07-24 08:15:00,,,20.6141 +2016-07-24 08:17:50,3599.0,17.6507, +2016-07-24 08:27:52,3599.0,17.6157, +2016-07-24 08:30:00,,,20.5777 +2016-07-24 08:37:55,3599.0,17.5459, +2016-07-24 08:45:00,,,20.5758 +2016-07-24 08:47:58,3599.0,17.5459, +2016-07-24 08:58:00,3599.0,17.5111, +2016-07-24 09:00:00,,,20.6141 +2016-07-24 09:08:03,3599.0,17.5459, +2016-07-24 09:15:00,,,20.5758 +2016-07-24 09:18:06,3599.0,17.5459, +2016-07-24 09:28:09,3599.0,17.5459, +2016-07-24 09:30:00,,,20.4994 +2016-07-24 09:38:11,3599.0,17.5459, +2016-07-24 09:45:00,,,20.4631 +2016-07-24 09:48:14,3599.0,17.5459, +2016-07-24 09:58:17,3599.0,17.4415, +2016-07-24 10:00:00,,,20.4994 +2016-07-24 10:08:20,3599.0,17.4067, +2016-07-24 10:15:00,,,20.4613 +2016-07-24 10:18:22,3599.0,17.4083, +2016-07-24 10:28:25,3599.0,17.4067, +2016-07-24 10:30:00,,,20.4613 +2016-07-24 10:38:28,3599.0,17.4067, +2016-07-24 10:45:00,,,20.4613 +2016-07-24 10:48:31,3599.0,17.4067, +2016-07-24 10:58:34,3599.0,17.4067, +2016-07-24 11:00:00,,,20.4631 +2016-07-24 11:08:37,3599.0,17.4067, +2016-07-24 11:15:00,,,20.4613 +2016-07-24 11:18:40,3599.0,17.3374, +2016-07-24 11:28:43,3599.0,17.3028, +2016-07-24 11:30:00,,,20.4631 +2016-07-24 11:38:46,3599.0,17.3012, +2016-07-24 11:45:00,,,20.4613 +2016-07-24 11:48:49,3599.0,17.3028, +2016-07-24 11:58:52,3599.0,17.3028, +2016-07-24 12:00:00,,,20.4613 +2016-07-24 12:08:55,3599.0,17.2682, +2016-07-24 12:15:00,,,20.4613 +2016-07-24 12:18:58,3599.0,17.3389, +2016-07-24 12:29:03,3599.0,17.2682, +2016-07-24 12:30:00,,,20.4613 +2016-07-24 12:39:06,3599.0,17.372, +2016-07-24 12:45:00,,,20.3472 +2016-07-24 12:49:09,3599.0,17.2037, +2016-07-24 12:59:12,3599.0,17.2336, +2016-07-24 13:00:00,,,20.387 +2016-07-24 13:09:15,3599.0,17.2382, +2016-07-24 13:15:00,,,20.3472 +2016-07-24 13:19:18,3599.0,17.2022, +2016-07-24 13:29:21,3599.0,17.2382, +2016-07-24 13:30:00,,,20.3852 +2016-07-24 13:39:24,3599.0,17.2413, +2016-07-24 13:45:00,,,20.349 +2016-07-24 13:49:27,3599.0,17.2413, +2016-07-24 13:59:30,3599.0,17.1393, +2016-07-24 14:00:00,,,20.3472 +2016-07-24 14:09:33,3599.0,17.1034, +2016-07-24 14:15:00,,,20.3472 +2016-07-24 14:19:36,3599.0,17.1723, +2016-07-24 14:29:39,3599.0,17.069000000000006, +2016-07-24 14:30:00,,,20.3472 +2016-07-24 14:39:42,3599.0,17.1378, +2016-07-24 14:45:00,,,20.3093 +2016-07-24 14:49:45,3599.0,17.1378, +2016-07-24 14:59:48,3599.0,17.1393, +2016-07-24 15:00:00,,,20.3852 +2016-07-24 15:09:51,3599.0,17.1393, +2016-07-24 15:15:00,,,20.3472 +2016-07-24 15:19:54,3599.0,17.1378, +2016-07-24 15:29:57,3599.0,17.1034, +2016-07-24 15:30:00,,,20.3472 +2016-07-24 15:40:00,3599.0,17.1378, +2016-07-24 15:45:00,,,20.3472 +2016-07-24 15:50:03,3599.0,17.1034, +2016-07-24 16:00:00,,,20.2732 +2016-07-24 16:00:06,3599.0,17.1034, +2016-07-24 16:10:09,3599.0,17.1424, +2016-07-24 16:15:00,,,20.2714 +2016-07-24 16:20:12,3599.0,17.1378, +2016-07-24 16:30:00,,,20.2732 +2016-07-24 16:30:15,3599.0,17.1424, +2016-07-24 16:40:18,3599.0,17.0392, +2016-07-24 16:45:00,,,20.2714 +2016-07-24 16:50:21,3599.0,17.0736, +2016-07-24 17:00:00,,,20.2335 +2016-07-24 17:00:24,3599.0,17.0392, +2016-07-24 17:10:27,3599.0,17.0049, +2016-07-24 17:15:00,,,20.2714 +2016-07-24 17:20:30,3599.0,17.0049, +2016-07-24 17:30:00,,,20.1958 +2016-07-24 17:30:33,3599.0,17.0407, +2016-07-24 17:40:36,3599.0,17.0392, +2016-07-24 17:45:00,,,20.2335 +2016-07-24 17:50:39,3599.0,17.0407, +2016-07-24 18:00:00,,,20.2714 +2016-07-24 18:00:42,3599.0,17.0049, +2016-07-24 18:10:45,3599.0,17.0392, +2016-07-24 18:15:00,,,20.1958 +2016-07-24 18:20:48,3599.0,17.0392, +2016-07-24 18:30:00,,,20.2714 +2016-07-24 18:30:51,3599.0,17.0392, +2016-07-24 18:40:54,3599.0,17.0407, +2016-07-24 18:45:00,,,20.2714 +2016-07-24 18:50:57,3599.0,17.0407, +2016-07-24 19:00:00,,,20.2732 +2016-07-24 19:01:00,3599.0,17.0392, +2016-07-24 19:11:03,3599.0,17.0392, +2016-07-24 19:15:00,,,20.2714 +2016-07-24 19:21:06,3599.0,17.0392, +2016-07-24 19:30:00,,,20.2714 +2016-07-24 19:31:09,3599.0,17.0049, +2016-07-24 19:41:12,3599.0,17.0392, +2016-07-24 19:45:00,,,20.2714 +2016-07-24 19:51:15,3599.0,17.0407, +2016-07-24 20:00:00,,,20.2714 +2016-07-24 20:01:18,3599.0,17.0392, +2016-07-24 20:11:21,3599.0,17.0392, +2016-07-24 20:15:00,,,20.1958 +2016-07-24 20:21:24,3599.0,17.0453, +2016-07-24 20:30:00,,,20.2335 +2016-07-24 20:31:27,3599.0,17.0049, +2016-07-24 20:41:30,3599.0,17.0453, +2016-07-24 20:45:00,,,20.2353 +2016-07-24 20:51:33,3599.0,17.0392, +2016-07-24 21:00:00,,,20.2714 +2016-07-24 21:01:36,3599.0,17.1439, +2016-07-24 21:11:39,3599.0,17.1814, +2016-07-24 21:15:00,,,20.2335 +2016-07-24 21:21:42,3599.0,17.1485, +2016-07-24 21:30:00,,,20.2335 +2016-07-24 21:31:44,3599.0,17.1814, +2016-07-24 21:41:46,3599.0,17.1814, +2016-07-24 21:45:00,,,20.2335 +2016-07-24 21:51:49,3599.0,17.1814, +2016-07-24 22:00:00,,,20.2714 +2016-07-24 22:01:52,3599.0,17.147000000000002, +2016-07-24 22:11:55,3599.0,17.1485, +2016-07-24 22:15:00,,,20.2714 +2016-07-24 22:21:58,3599.0,17.1814, +2016-07-24 22:30:00,,,20.2714 +2016-07-24 22:32:01,3599.0,17.147000000000002, +2016-07-24 22:42:04,3599.0,17.1485, +2016-07-24 22:45:00,,,20.2714 +2016-07-24 22:52:06,3599.0,17.1125, +2016-07-24 23:00:00,,,20.2732 +2016-07-24 23:02:09,3599.0,17.1424, +2016-07-24 23:12:12,3599.0,17.1485, +2016-07-24 23:15:00,,,20.2335 +2016-07-24 23:22:15,3599.0,17.183, +2016-07-24 23:30:00,,,20.1958 +2016-07-24 23:32:18,3599.0,17.1814, +2016-07-24 23:42:21,3599.0,17.1769, +2016-07-24 23:45:00,,,20.2714 +2016-07-24 23:52:24,3599.0,17.1485, +2016-07-25 00:00:00,,,20.2335 +2016-07-25 00:02:26,3599.0,17.183, +2016-07-25 00:12:29,3599.0,17.1485, +2016-07-25 00:15:00,,,20.2335 +2016-07-25 00:22:32,3599.0,17.1485, +2016-07-25 00:30:00,,,20.2335 +2016-07-25 00:32:35,3599.0,17.1769, +2016-07-25 00:42:38,3599.0,17.183, +2016-07-25 00:45:00,,,20.2714 +2016-07-25 00:52:40,3599.0,17.1784, +2016-07-25 01:00:00,,,20.2335 +2016-07-25 01:02:50,3599.0,17.1784, +2016-07-25 01:12:53,3599.0,17.1784, +2016-07-25 01:15:00,,,20.2335 +2016-07-25 01:22:56,3599.0,17.1769, +2016-07-25 01:30:00,,,20.2335 +2016-07-25 01:32:59,3599.0,17.1769, +2016-07-25 01:43:02,3599.0,17.1424, +2016-07-25 01:45:00,,,20.2714 +2016-07-25 01:53:04,3599.0,17.1769, +2016-07-25 02:00:00,,,20.2732 +2016-07-25 02:03:07,3599.0,17.1439, +2016-07-25 02:13:10,3599.0,17.1769, +2016-07-25 02:15:00,,,20.2714 +2016-07-25 02:23:13,3599.0,17.1784, +2016-07-25 02:30:00,,,20.2714 +2016-07-25 02:33:16,3599.0,17.1424, +2016-07-25 02:43:18,3599.0,17.1095, +2016-07-25 02:45:00,,,20.2714 +2016-07-25 02:53:21,3599.0,17.1424, +2016-07-25 03:00:00,,,20.2714 +2016-07-25 03:03:24,3599.0,17.1784, +2016-07-25 03:13:27,3599.0,17.1424, +2016-07-25 03:15:00,,,20.2714 +2016-07-25 03:23:30,3599.0,17.1424, +2016-07-25 03:30:00,,,20.2335 +2016-07-25 03:33:33,3599.0,17.1424, +2016-07-25 03:43:35,3599.0,17.1439, +2016-07-25 03:45:00,,,20.2714 +2016-07-25 03:53:38,3599.0,17.2459, +2016-07-25 04:00:00,,,20.2353 +2016-07-25 04:03:41,3599.0,17.2805, +2016-07-25 04:13:44,3599.0,17.2474, +2016-07-25 04:15:00,,,20.2732 +2016-07-25 04:23:47,3599.0,17.2805, +2016-07-25 04:30:00,,,20.2335 +2016-07-25 04:33:50,3599.0,17.2459, +2016-07-25 04:43:52,3599.0,17.2805, +2016-07-25 04:45:00,,,20.2714 +2016-07-25 04:53:55,3599.0,17.2805, +2016-07-25 05:00:00,,,20.2714 +2016-07-25 05:03:58,3599.0,17.2805, +2016-07-25 05:14:01,3599.0,17.3151, +2016-07-25 05:15:00,,,20.2714 +2016-07-25 05:24:04,3599.0,17.2805, +2016-07-25 05:30:00,,,20.2714 +2016-07-25 05:34:07,3599.0,17.2805, +2016-07-25 05:44:10,3599.0,17.3151, +2016-07-25 05:45:00,,,20.2732 +2016-07-25 05:54:13,3599.0,17.282, +2016-07-25 06:00:00,,,20.2714 +2016-07-25 06:04:16,3599.0,17.282, +2016-07-25 06:14:19,3599.0,17.2805, +2016-07-25 06:15:00,,,20.2714 +2016-07-25 06:24:21,3599.0,17.2459, +2016-07-25 06:30:00,,,20.2714 +2016-07-25 06:34:24,3599.0,17.2805, +2016-07-25 06:44:26,3599.0,17.3166, +2016-07-25 06:45:00,,,20.2335 +2016-07-25 06:54:36,3599.0,17.3105, +2016-07-25 07:00:00,,,20.2732 +2016-07-25 07:04:39,3599.0,17.3166, +2016-07-25 07:14:42,3599.0,17.2805, +2016-07-25 07:15:00,,,20.2714 +2016-07-25 07:24:45,3599.0,17.2413, +2016-07-25 07:30:00,,,20.2335 +2016-07-25 07:34:47,3599.0,17.1378, +2016-07-25 07:44:50,3599.0,17.1738, +2016-07-25 07:45:00,,,20.2714 +2016-07-25 07:54:53,3599.0,17.1723, +2016-07-25 08:00:00,,,20.2335 +2016-07-25 08:04:56,3599.0,17.1378, +2016-07-25 08:14:59,3599.0,17.1378, +2016-07-25 08:15:00,,,20.2714 +2016-07-25 08:25:02,3599.0,17.1723, +2016-07-25 08:30:00,,,20.2714 +2016-07-25 08:35:05,3599.0,17.1723, +2016-07-25 08:45:00,,,20.2732 +2016-07-25 08:45:08,3599.0,17.2083, +2016-07-25 08:55:10,3599.0,17.1723, +2016-07-25 09:00:00,,,20.2714 +2016-07-25 09:05:13,3599.0,17.0347, +2016-07-25 09:15:00,,,20.2732 +2016-07-25 09:15:16,3599.0,17.069000000000006, +2016-07-25 09:25:19,3599.0,17.069000000000006, +2016-07-25 09:30:00,,,20.2732 +2016-07-25 09:35:22,3599.0,17.1049, +2016-07-25 09:45:00,,,20.2714 +2016-07-25 09:45:25,3599.0,17.069000000000006, +2016-07-25 09:55:28,3599.0,17.0347, +2016-07-25 10:00:00,,,20.2714 +2016-07-25 10:05:31,3599.0,17.0347, +2016-07-25 10:15:00,,,20.2714 +2016-07-25 10:15:34,3599.0,17.0362, +2016-07-25 10:25:37,3599.0,17.069000000000006, +2016-07-25 10:30:00,,,20.2714 +2016-07-25 10:35:40,3599.0,17.0392, +2016-07-25 10:45:00,,,20.158 +2016-07-25 10:45:43,3599.0,16.9334, +2016-07-25 10:55:45,3599.0,16.9379, +2016-07-25 11:00:00,,,20.1203 +2016-07-25 11:05:48,3599.0,16.9364, +2016-07-25 11:15:00,,,20.158 +2016-07-25 11:15:51,3599.0,17.0049, +2016-07-25 11:25:54,3599.0,17.0064, +2016-07-25 11:30:00,,,20.158 +2016-07-25 11:35:57,3599.0,16.9364, +2016-07-25 11:45:00,,,20.1203 +2016-07-25 11:46:00,3599.0,16.868, +2016-07-25 11:56:03,3599.0,16.868, +2016-07-25 12:00:00,,,20.1203 +2016-07-25 12:06:06,3599.0,16.868, +2016-07-25 12:15:00,,,20.1203 +2016-07-25 12:16:09,3599.0,16.7331, +2016-07-25 12:26:12,3599.0,16.7657, +2016-07-25 12:30:00,,,20.158 +2016-07-25 12:36:15,3599.0,16.7998, +2016-07-25 12:45:00,,,20.158 +2016-07-25 12:46:18,3599.0,16.7657, +2016-07-25 12:56:21,3599.0,16.7657, +2016-07-25 13:00:00,,,20.0076 +2016-07-25 13:06:24,3599.0,16.7672, +2016-07-25 13:15:00,,,20.0076 +2016-07-25 13:16:27,3599.0,16.7717, +2016-07-25 13:26:30,3599.0,16.6637, +2016-07-25 13:30:00,,,20.0076 +2016-07-25 13:36:33,3599.0,16.6681, +2016-07-25 13:45:00,,,20.0094 +2016-07-25 13:46:36,3599.0,16.6342, +2016-07-25 13:56:39,3599.0,16.5664, +2016-07-25 14:00:00,,,20.0076 +2016-07-25 14:06:42,3599.0,16.5679, +2016-07-25 14:15:00,,,20.0076 +2016-07-25 14:16:45,3599.0,16.5679, +2016-07-25 14:26:49,3599.0,16.468, +2016-07-25 14:30:00,,,20.0094 +2016-07-25 14:36:52,3599.0,16.4695, +2016-07-25 14:45:00,,,20.0094 +2016-07-25 14:46:55,3599.0,16.4709, +2016-07-25 14:56:58,3599.0,16.4343, +2016-07-25 15:00:00,,,19.8952 +2016-07-25 15:07:01,3599.0,16.4695, +2016-07-25 15:15:00,,,19.938 +2016-07-25 15:17:04,3599.0,16.3684, +2016-07-25 15:27:07,3599.0,16.402, +2016-07-25 15:30:00,,,19.9326 +2016-07-25 15:37:10,3599.0,16.4035, +2016-07-25 15:45:00,,,19.9326 +2016-07-25 15:47:15,3599.0,16.3684, +2016-07-25 15:57:19,3599.0,16.3669, +2016-07-25 16:00:00,,,19.9326 +2016-07-25 16:07:22,3599.0,16.3684, +2016-07-25 16:15:00,,,19.8952 +2016-07-25 16:17:25,3599.0,16.3669, +2016-07-25 16:27:28,3599.0,16.3727, +2016-07-25 16:30:00,,,19.9006 +2016-07-25 16:37:31,3599.0,16.3727, +2016-07-25 16:45:00,,,19.8632 +2016-07-25 16:47:34,3599.0,16.3391, +2016-07-25 16:57:37,3599.0,16.4064, +2016-07-25 17:00:00,,,19.8952 +2016-07-25 17:07:41,3599.0,16.3727, +2016-07-25 17:15:00,,,19.9326 +2016-07-25 17:17:44,3599.0,16.4064, +2016-07-25 17:27:47,3599.0,16.3771, +2016-07-25 17:30:00,,,19.938 +2016-07-25 17:37:50,3599.0,16.4108, +2016-07-25 17:45:00,,,19.8952 +2016-07-25 17:47:53,3599.0,16.3771, +2016-07-25 17:57:56,3599.0,16.3771, +2016-07-25 18:00:00,,,19.8952 +2016-07-25 18:07:59,3599.0,16.3756, +2016-07-25 18:15:00,,,19.9397 +2016-07-25 18:18:02,3599.0,16.4108, +2016-07-25 18:28:05,3599.0,16.3771, +2016-07-25 18:30:00,,,19.938 +2016-07-25 18:38:08,3599.0,16.4093, +2016-07-25 18:45:00,,,19.9006 +2016-07-25 18:48:11,3599.0,16.3771, +2016-07-25 18:58:14,3599.0,16.4093, +2016-07-25 19:00:00,,,19.938 +2016-07-25 19:08:17,3599.0,16.3771, +2016-07-25 19:15:00,,,19.9006 +2016-07-25 19:18:20,3599.0,16.4108, +2016-07-25 19:28:23,3599.0,16.4445, +2016-07-25 19:30:00,,,19.9006 +2016-07-25 19:38:26,3599.0,16.3756, +2016-07-25 19:45:00,,,19.9772 +2016-07-25 19:48:29,3599.0,16.4108, +2016-07-25 19:58:32,3599.0,16.4152, +2016-07-25 20:00:00,,,19.9006 +2016-07-25 20:08:35,3599.0,16.3771, +2016-07-25 20:15:00,,,19.938 +2016-07-25 20:18:38,3599.0,16.3478, +2016-07-25 20:28:41,3599.0,16.4137, +2016-07-25 20:30:00,,,19.9006 +2016-07-25 20:38:44,3599.0,16.4152, +2016-07-25 20:45:00,,,19.9006 +2016-07-25 20:48:47,3599.0,16.3478, +2016-07-25 20:58:50,3599.0,16.3478, +2016-07-25 21:00:00,,,19.938 +2016-07-25 21:08:53,3599.0,16.4152, +2016-07-25 21:15:00,,,19.9006 +2016-07-25 21:18:56,3599.0,16.3815, +2016-07-25 21:28:59,3599.0,16.4152, +2016-07-25 21:30:00,,,19.9006 +2016-07-25 21:39:02,3599.0,16.4152, +2016-07-25 21:45:00,,,19.9023 +2016-07-25 21:49:05,3599.0,16.3815, +2016-07-25 21:59:07,3599.0,16.4152, +2016-07-25 22:00:00,,,19.9023 +2016-07-25 22:09:10,3599.0,16.4137, +2016-07-25 22:15:00,,,19.9754 +2016-07-25 22:19:13,3599.0,16.4137, +2016-07-25 22:29:16,3599.0,16.3464, +2016-07-25 22:30:00,,,19.938 +2016-07-25 22:39:19,3599.0,16.4137, +2016-07-25 22:45:00,,,19.938 +2016-07-25 22:49:22,3599.0,16.38, +2016-07-25 22:59:25,3599.0,16.3815, +2016-07-25 23:00:00,,,19.9076 +2016-07-25 23:09:28,3599.0,16.4152, +2016-07-25 23:15:00,,,19.9059 +2016-07-25 23:19:31,3599.0,16.4152, +2016-07-25 23:29:33,3599.0,16.4152, +2016-07-25 23:30:00,,,19.9023 +2016-07-25 23:39:36,3599.0,16.38, +2016-07-25 23:45:00,,,19.9433 +2016-07-25 23:49:39,3599.0,16.4152, +2016-07-25 23:59:42,3599.0,16.4152, +2016-07-26 00:00:00,,,19.9059 +2016-07-26 00:09:45,3599.0,16.3478, +2016-07-26 00:15:00,,,19.9807 +2016-07-26 00:19:48,3599.0,16.3815, +2016-07-26 00:29:50,3599.0,16.4489, +2016-07-26 00:30:00,,,19.9433 +2016-07-26 00:39:53,3599.0,16.3815, +2016-07-26 00:45:00,,,19.9451 +2016-07-26 00:49:55,3599.0,16.4137, +2016-07-26 00:59:58,3599.0,16.3478, +2016-07-26 01:00:00,,,19.9451 +2016-07-26 01:10:01,3599.0,16.3815, +2016-07-26 01:15:00,,,19.9433 +2016-07-26 01:20:03,3599.0,16.4152, +2016-07-26 01:30:00,,,19.9451 +2016-07-26 01:30:06,3599.0,16.3478, +2016-07-26 01:40:09,3599.0,16.5503, +2016-07-26 01:45:00,,,19.9433 +2016-07-26 01:50:11,3599.0,16.4826, +2016-07-26 02:00:00,,,19.9451 +2016-07-26 02:00:14,3599.0,16.5488, +2016-07-26 02:10:17,3599.0,16.4474, +2016-07-26 02:15:00,,,19.9433 +2016-07-26 02:20:20,3599.0,16.5164, +2016-07-26 02:30:00,,,19.9433 +2016-07-26 02:30:22,3599.0,16.5164, +2016-07-26 02:40:25,3599.0,16.4826, +2016-07-26 02:45:00,,,19.9059 +2016-07-26 02:50:28,3599.0,16.4474, +2016-07-26 03:00:00,,,19.9112 +2016-07-26 03:00:31,3599.0,16.5164, +2016-07-26 03:10:34,3599.0,16.4782, +2016-07-26 03:15:00,,,19.9486 +2016-07-26 03:20:36,3599.0,16.512, +2016-07-26 03:30:00,,,19.9879 +2016-07-26 03:30:39,3599.0,16.4812, +2016-07-26 03:40:42,3599.0,16.512, +2016-07-26 03:45:00,,,19.9112 +2016-07-26 03:50:44,3599.0,16.512, +2016-07-26 04:00:00,,,19.9861 +2016-07-26 04:00:47,3599.0,16.512, +2016-07-26 04:10:50,3599.0,16.4445, +2016-07-26 04:15:00,,,19.9486 +2016-07-26 04:20:53,3599.0,16.5106, +2016-07-26 04:30:00,,,19.9504 +2016-07-26 04:30:55,3599.0,16.512, +2016-07-26 04:40:58,3599.0,16.5459, +2016-07-26 04:45:00,,,19.9861 +2016-07-26 04:51:00,3599.0,16.4768, +2016-07-26 05:00:00,,,19.9486 +2016-07-26 05:01:03,3599.0,16.5444, +2016-07-26 05:11:06,3599.0,16.512, +2016-07-26 05:15:00,,,19.9112 +2016-07-26 05:21:08,3599.0,16.512, +2016-07-26 05:30:00,,,19.9504 +2016-07-26 05:31:11,3599.0,16.512, +2016-07-26 05:41:14,3599.0,16.4782, +2016-07-26 05:45:00,,,19.9504 +2016-07-26 05:51:16,3599.0,16.512, +2016-07-26 06:00:00,,,19.9486 +2016-07-26 06:01:19,3599.0,16.512, +2016-07-26 06:11:22,3599.0,16.512, +2016-07-26 06:15:00,,,19.9486 +2016-07-26 06:21:24,3599.0,16.4782, +2016-07-26 06:30:00,,,19.9486 +2016-07-26 06:31:34,3599.0,16.4782, +2016-07-26 06:41:37,3599.0,16.5106, +2016-07-26 06:45:00,,,19.9486 +2016-07-26 06:51:40,3599.0,16.4782, +2016-07-26 07:00:00,,,19.9504 +2016-07-26 07:01:42,3599.0,16.512, +2016-07-26 07:11:45,3599.0,16.5076, +2016-07-26 07:15:00,,,19.913 +2016-07-26 07:21:48,3599.0,16.4739, +2016-07-26 07:30:00,,,19.9504 +2016-07-26 07:31:50,3599.0,16.5076, +2016-07-26 07:41:53,3599.0,16.5414, +2016-07-26 07:45:00,,,19.9861 +2016-07-26 07:51:56,3599.0,16.4739, +2016-07-26 08:00:00,,,19.9112 +2016-07-26 08:01:59,3599.0,16.5414, +2016-07-26 08:12:01,3599.0,16.5076, +2016-07-26 08:15:00,,,19.9486 +2016-07-26 08:22:04,3599.0,16.4401, +2016-07-26 08:30:00,,,19.9861 +2016-07-26 08:32:07,3599.0,16.4739, +2016-07-26 08:42:10,3599.0,16.54, +2016-07-26 08:45:00,,,19.9861 +2016-07-26 08:52:12,3599.0,16.4343, +2016-07-26 09:00:00,,,19.8365 +2016-07-26 09:02:15,3599.0,16.3347, +2016-07-26 09:12:18,3599.0,16.402, +2016-07-26 09:15:00,,,19.9486 +2016-07-26 09:22:20,3599.0,16.4049, +2016-07-26 09:30:00,,,19.7992 +2016-07-26 09:32:23,3599.0,16.402, +2016-07-26 09:42:26,3599.0,16.3669, +2016-07-26 09:45:00,,,19.8382 +2016-07-26 09:52:28,3599.0,16.4357, +2016-07-26 10:00:00,,,19.8738 +2016-07-26 10:02:31,3599.0,16.402, +2016-07-26 10:12:33,3599.0,16.402, +2016-07-26 10:15:00,,,19.8365 +2016-07-26 10:22:36,3599.0,16.4343, +2016-07-26 10:30:00,,,19.8365 +2016-07-26 10:32:39,3599.0,16.3684, +2016-07-26 10:42:42,3599.0,16.4357, +2016-07-26 10:45:00,,,19.8365 +2016-07-26 10:52:45,3599.0,16.402, +2016-07-26 11:00:00,,,19.8365 +2016-07-26 11:02:47,3599.0,16.3333, +2016-07-26 11:12:50,3599.0,16.402, +2016-07-26 11:15:00,,,19.8365 +2016-07-26 11:22:53,3599.0,16.402, +2016-07-26 11:30:00,,,19.8382 +2016-07-26 11:32:56,3599.0,16.402, +2016-07-26 11:42:58,3599.0,16.2676, +2016-07-26 11:45:00,,,19.8365 +2016-07-26 11:53:01,3599.0,16.3011, +2016-07-26 12:00:00,,,19.7992 +2016-07-26 12:03:04,3599.0,16.3011, +2016-07-26 12:13:07,3599.0,16.3011, +2016-07-26 12:15:00,,,19.8382 +2016-07-26 12:23:10,3599.0,16.2676, +2016-07-26 12:30:00,,,19.801 +2016-07-26 12:33:13,3599.0,16.3011, +2016-07-26 12:43:15,3599.0,16.2676, +2016-07-26 12:45:00,,,19.7248 +2016-07-26 12:53:18,3599.0,16.1671, +2016-07-26 13:00:00,,,19.7248 +2016-07-26 13:03:21,3599.0,16.1671, +2016-07-26 13:13:24,3599.0,16.1656, +2016-07-26 13:15:00,,,19.7248 +2016-07-26 13:23:27,3599.0,16.2005, +2016-07-26 13:30:00,,,19.7248 +2016-07-26 13:33:30,3599.0,16.2005, +2016-07-26 13:43:33,3599.0,16.1671, +2016-07-26 13:45:00,,,19.7248 +2016-07-26 13:53:36,3599.0,16.0669, +2016-07-26 14:00:00,,,19.7248 +2016-07-26 14:03:39,3599.0,16.0655, +2016-07-26 14:13:42,3599.0,16.1045, +2016-07-26 14:15:00,,,19.7248 +2016-07-26 14:23:45,3599.0,16.0712, +2016-07-26 14:30:00,,,19.7248 +2016-07-26 14:33:48,3599.0,16.0712, +2016-07-26 14:43:50,3599.0,16.0712, +2016-07-26 14:45:00,,,19.6876 +2016-07-26 14:53:53,3599.0,16.0712, +2016-07-26 15:00:00,,,19.7248 +2016-07-26 15:03:56,3599.0,16.137999999999998, +2016-07-26 15:13:59,3599.0,16.1045, +2016-07-26 15:15:00,,,19.6135 +2016-07-26 15:24:02,3599.0,16.0697, +2016-07-26 15:30:00,,,19.6135 +2016-07-26 15:34:05,3599.0,16.137999999999998, +2016-07-26 15:44:08,3599.0,16.137999999999998, +2016-07-26 15:45:00,,,19.5765 +2016-07-26 15:54:11,3599.0,16.0712, +2016-07-26 16:00:00,,,19.6153 +2016-07-26 16:04:14,3599.0,16.0712, +2016-07-26 16:14:17,3599.0,16.0712, +2016-07-26 16:15:00,,,19.6135 +2016-07-26 16:24:20,3599.0,16.1045, +2016-07-26 16:30:00,,,19.6135 +2016-07-26 16:34:23,3599.0,16.0421, +2016-07-26 16:44:26,3599.0,16.0088, +2016-07-26 16:45:00,,,19.6135 +2016-07-26 16:54:29,3599.0,16.0045, +2016-07-26 17:00:00,,,19.6135 +2016-07-26 17:04:32,3599.0,16.0074, +2016-07-26 17:14:35,3599.0,16.0088, +2016-07-26 17:15:00,,,19.6135 +2016-07-26 17:24:38,3599.0,16.0421, +2016-07-26 17:30:00,,,19.5765 +2016-07-26 17:34:41,3599.0,16.0421, +2016-07-26 17:44:44,3599.0,16.0088, +2016-07-26 17:45:00,,,19.6135 +2016-07-26 17:54:47,3599.0,16.0074, +2016-07-26 18:00:00,,,19.6135 +2016-07-26 18:04:50,3599.0,16.0074, +2016-07-26 18:14:53,3599.0,16.0074, +2016-07-26 18:15:00,,,19.6135 +2016-07-26 18:24:56,3599.0,16.0074, +2016-07-26 18:30:00,,,19.6135 +2016-07-26 18:34:59,3599.0,16.0074, +2016-07-26 18:45:00,,,19.6135 +2016-07-26 18:45:02,3599.0,16.0088, +2016-07-26 18:55:05,3599.0,16.0088, +2016-07-26 19:00:00,,,19.6135 +2016-07-26 19:05:10,3599.0,16.0088, +2016-07-26 19:15:00,,,19.6135 +2016-07-26 19:15:13,3599.0,16.0088, +2016-07-26 19:25:16,3599.0,16.0421, +2016-07-26 19:30:00,,,19.6135 +2016-07-26 19:35:19,3599.0,15.9741, +2016-07-26 19:45:00,,,19.6153 +2016-07-26 19:45:22,3599.0,16.0088, +2016-07-26 19:55:24,3599.0,16.0088, +2016-07-26 20:00:00,,,19.6153 +2016-07-26 20:05:27,3599.0,16.0088, +2016-07-26 20:15:00,,,19.6135 +2016-07-26 20:15:30,3599.0,16.0088, +2016-07-26 20:25:33,3599.0,16.0088, +2016-07-26 20:30:00,,,19.6153 +2016-07-26 20:35:36,3599.0,16.0088, +2016-07-26 20:45:00,,,19.6153 +2016-07-26 20:45:39,3599.0,16.0421, +2016-07-26 20:55:41,3599.0,16.0074, +2016-07-26 21:00:00,,,19.6135 +2016-07-26 21:05:44,3599.0,16.0088, +2016-07-26 21:15:00,,,19.6135 +2016-07-26 21:15:47,3599.0,16.0088, +2016-07-26 21:25:50,3599.0,16.0421, +2016-07-26 21:30:00,,,19.5765 +2016-07-26 21:35:53,3599.0,16.1074, +2016-07-26 21:45:00,,,19.6153 +2016-07-26 21:45:56,3599.0,16.074, +2016-07-26 21:55:58,3599.0,16.1408, +2016-07-26 22:00:00,,,19.6135 +2016-07-26 22:06:01,3599.0,16.074, +2016-07-26 22:15:00,,,19.6506 +2016-07-26 22:16:04,3599.0,16.1088, +2016-07-26 22:26:07,3599.0,16.0755, +2016-07-26 22:30:00,,,19.6153 +2016-07-26 22:36:10,3599.0,16.0755, +2016-07-26 22:45:00,,,19.6135 +2016-07-26 22:46:12,3599.0,16.1074, +2016-07-26 22:56:15,3599.0,16.0755, +2016-07-26 23:00:00,,,19.6135 +2016-07-26 23:06:18,3599.0,16.1074, +2016-07-26 23:15:00,,,19.6135 +2016-07-26 23:16:21,3599.0,16.0755, +2016-07-26 23:26:24,3599.0,16.0755, +2016-07-26 23:30:00,,,19.6153 +2016-07-26 23:36:26,3599.0,16.0755, +2016-07-26 23:45:00,,,19.6135 +2016-07-26 23:46:29,3599.0,16.074, +2016-07-26 23:56:32,3599.0,16.0755, +2016-07-27 00:00:00,,,19.5783 +2016-07-27 00:06:35,3599.0,16.1423, +2016-07-27 00:15:00,,,19.5765 +2016-07-27 00:16:37,3599.0,16.137999999999998, +2016-07-27 00:26:40,3599.0,16.1088, +2016-07-27 00:30:00,,,19.6205 +2016-07-27 00:36:43,3599.0,16.1771, +2016-07-27 00:45:00,,,19.6118 +2016-07-27 00:46:46,3599.0,16.0712, +2016-07-27 00:56:48,3599.0,16.1045, +2016-07-27 01:00:00,,,19.6135 +2016-07-27 01:06:51,3599.0,16.1365, +2016-07-27 01:15:00,,,19.6135 +2016-07-27 01:16:53,3599.0,16.0712, +2016-07-27 01:27:03,3599.0,16.105999999999998, +2016-07-27 01:30:00,,,19.6153 +2016-07-27 01:37:06,3599.0,16.1365, +2016-07-27 01:45:00,,,19.5835 +2016-07-27 01:47:09,3599.0,16.1045, +2016-07-27 01:57:12,3599.0,16.0712, +2016-07-27 02:00:00,,,19.6187 +2016-07-27 02:07:14,3599.0,16.1045, +2016-07-27 02:15:00,,,19.6506 +2016-07-27 02:17:17,3599.0,16.1045, +2016-07-27 02:27:20,3599.0,16.1017, +2016-07-27 02:30:00,,,19.617 +2016-07-27 02:37:22,3599.0,16.0669, +2016-07-27 02:45:00,,,19.6523 +2016-07-27 02:47:25,3599.0,16.0988, +2016-07-27 02:57:28,3599.0,16.1351, +2016-07-27 03:00:00,,,19.617 +2016-07-27 03:07:31,3599.0,16.0988, +2016-07-27 03:15:00,,,19.6205 +2016-07-27 03:17:33,3599.0,16.0655, +2016-07-27 03:27:36,3599.0,16.0683, +2016-07-27 03:30:00,,,19.6205 +2016-07-27 03:37:38,3599.0,16.1003, +2016-07-27 03:45:00,,,19.617 +2016-07-27 03:47:41,3599.0,16.1017, +2016-07-27 03:57:44,3599.0,16.0669, +2016-07-27 04:00:00,,,19.617 +2016-07-27 04:07:46,3599.0,16.1003, +2016-07-27 04:15:00,,,19.6135 +2016-07-27 04:17:48,3599.0,16.1003, +2016-07-27 04:27:51,3599.0,16.1336, +2016-07-27 04:30:00,,,19.6135 +2016-07-27 04:37:54,3599.0,16.1351, +2016-07-27 04:45:00,,,19.6558 +2016-07-27 04:47:56,3599.0,16.1336, +2016-07-27 04:57:59,3599.0,16.0988, +2016-07-27 05:00:00,,,19.6205 +2016-07-27 05:08:02,3599.0,16.1336, +2016-07-27 05:15:00,,,19.6205 +2016-07-27 05:18:04,3599.0,16.1293, +2016-07-27 05:28:07,3599.0,16.1351, +2016-07-27 05:30:00,,,19.6205 +2016-07-27 05:38:10,3599.0,16.1003, +2016-07-27 05:45:00,,,19.6135 +2016-07-27 05:48:13,3599.0,16.1293, +2016-07-27 05:58:15,3599.0,16.0626, +2016-07-27 06:00:00,,,19.6205 +2016-07-27 06:08:18,3599.0,16.17, +2016-07-27 06:15:00,,,19.6153 +2016-07-27 06:18:21,3599.0,16.096, +2016-07-27 06:28:23,3599.0,16.17, +2016-07-27 06:30:00,,,19.6523 +2016-07-27 06:38:26,3598.0,16.0974, +2016-07-27 06:45:00,,,19.6187 +2016-07-27 06:48:29,3599.0,16.0597, +2016-07-27 06:58:31,3599.0,16.0974, +2016-07-27 07:00:00,,,19.6187 +2016-07-27 07:08:34,3599.0,16.0917, +2016-07-27 07:15:00,,,19.6558 +2016-07-27 07:18:37,3598.0,-6.6287, +2016-07-27 07:28:39,3599.0,16.1265, +2016-07-27 07:30:00,,,19.6153 +2016-07-27 07:38:42,3599.0,16.125, +2016-07-27 07:45:00,,,19.6135 +2016-07-27 07:48:44,3598.0,-13.1385, +2016-07-27 07:58:47,3599.0,16.0917, +2016-07-27 08:00:00,,,19.6135 +2016-07-27 08:08:50,3599.0,16.0583, +2016-07-27 08:15:00,,,19.6135 +2016-07-27 08:18:52,3599.0,16.0583, +2016-07-27 08:28:55,3599.0,16.125, +2016-07-27 08:30:00,,,19.6576 +2016-07-27 08:38:58,3599.0,16.0583, +2016-07-27 08:45:00,,,19.6135 +2016-07-27 08:49:00,3599.0,-8.3606, +2016-07-27 08:59:03,3597.0,15.9528, +2016-07-27 09:00:00,,,19.6187 +2016-07-27 09:09:06,3599.0,16.0583, +2016-07-27 09:15:00,,,19.6135 +2016-07-27 09:19:08,3599.0,16.0583, +2016-07-27 09:29:11,3599.0,15.9055, +2016-07-27 09:30:00,,,19.6576 +2016-07-27 09:39:13,3599.0,16.0917, +2016-07-27 09:45:00,,,19.6153 +2016-07-27 09:49:16,3599.0,16.0583, +2016-07-27 09:59:19,3599.0,16.125, +2016-07-27 10:00:00,,,19.6135 +2016-07-27 10:09:33,3599.0,16.125, +2016-07-27 10:15:00,,,19.6153 +2016-07-27 10:20:20,3599.0,16.125, +2016-07-27 10:30:00,,,19.6135 +2016-07-27 10:30:23,3599.0,16.054000000000002, +2016-07-27 10:40:25,3599.0,16.125, +2016-07-27 10:45:00,,,19.6135 +2016-07-27 10:50:28,3599.0,16.0874, +2016-07-27 11:00:00,,,19.6135 +2016-07-27 11:00:31,3599.0,10.6535, +2016-07-27 11:10:34,3599.0,16.1207, +2016-07-27 11:15:00,,,19.6135 +2016-07-27 11:20:37,3599.0,16.1236, +2016-07-27 11:30:00,,,19.5044 +2016-07-27 11:30:39,3599.0,16.0555, +2016-07-27 11:40:42,3599.0,16.1222, +2016-07-27 11:45:00,,,19.5765 +2016-07-27 11:50:45,3599.0,16.1222, +2016-07-27 12:00:00,,,19.5009 +2016-07-27 12:00:48,3599.0,15.986, +2016-07-27 12:10:51,3599.0,16.0207, +2016-07-27 12:15:00,,,19.5027 +2016-07-27 12:20:53,3599.0,16.054000000000002, +2016-07-27 12:30:00,,,19.5027 +2016-07-27 12:30:56,3599.0,15.9875, +2016-07-27 12:40:59,3599.0,15.9875, +2016-07-27 12:45:00,,,19.5027 +2016-07-27 12:51:02,3599.0,16.0207, +2016-07-27 13:00:00,,,19.5044 +2016-07-27 13:01:05,3599.0,15.9585, +2016-07-27 13:11:08,3599.0,15.8879, +2016-07-27 13:15:00,,,19.5027 +2016-07-27 13:21:11,3599.0,15.8921, +2016-07-27 13:30:00,,,19.5044 +2016-07-27 13:31:14,3599.0,15.9253, +2016-07-27 13:41:17,3599.0,15.9253, +2016-07-27 13:45:00,,,19.5027 +2016-07-27 13:51:20,3599.0,15.8921, +2016-07-27 14:00:00,,,19.5027 +2016-07-27 14:01:23,3599.0,15.7928, +2016-07-27 14:11:26,3599.0,15.7928, +2016-07-27 14:15:00,,,19.5027 +2016-07-27 14:21:29,3599.0,15.7928, +2016-07-27 14:30:00,,,19.429 +2016-07-27 14:31:32,3599.0,15.8258, +2016-07-27 14:41:35,3599.0,15.7942, +2016-07-27 14:45:00,,,19.3555 +2016-07-27 14:51:38,3599.0,15.7928, +2016-07-27 15:00:00,,,19.3922 +2016-07-27 15:01:41,3599.0,15.7928, +2016-07-27 15:11:44,3599.0,15.8273, +2016-07-27 15:15:00,,,19.3922 +2016-07-27 15:21:47,3599.0,15.7928, +2016-07-27 15:30:00,,,19.394 +2016-07-27 15:31:50,3599.0,15.8258, +2016-07-27 15:41:53,3599.0,15.7928, +2016-07-27 15:45:00,,,19.429 +2016-07-27 15:51:56,3599.0,15.7928, +2016-07-27 16:00:00,,,19.3555 +2016-07-27 16:01:59,3599.0,15.6937, +2016-07-27 16:12:02,3599.0,15.6937, +2016-07-27 16:15:00,,,19.429 +2016-07-27 16:22:05,3599.0,15.6979, +2016-07-27 16:30:00,,,19.3922 +2016-07-27 16:32:08,3599.0,15.665, +2016-07-27 16:42:11,3599.0,15.6979, +2016-07-27 16:45:00,,,19.4307 +2016-07-27 16:52:14,3599.0,15.6993, +2016-07-27 17:00:00,,,19.429 +2016-07-27 17:02:17,3599.0,15.7639, +2016-07-27 17:12:20,3599.0,15.6664, +2016-07-27 17:15:00,,,19.3189 +2016-07-27 17:22:23,3599.0,15.6979, +2016-07-27 17:30:00,,,19.2822 +2016-07-27 17:32:26,3599.0,15.7309, +2016-07-27 17:42:29,3599.0,15.5992, +2016-07-27 17:45:00,,,19.2822 +2016-07-27 17:52:32,3599.0,15.6334, +2016-07-27 18:00:00,,,19.3189 +2016-07-27 18:02:35,3599.0,15.6362, +2016-07-27 18:12:37,3599.0,15.6019, +2016-07-27 18:15:00,,,19.2822 +2016-07-27 18:22:40,3599.0,15.6348, +2016-07-27 18:30:00,,,19.284 +2016-07-27 18:32:43,3599.0,-10.969, +2016-07-27 18:42:46,3599.0,15.6005, +2016-07-27 18:45:00,,,19.2822 +2016-07-27 18:52:49,3599.0,15.5704, +2016-07-27 19:00:00,,,19.3189 +2016-07-27 19:02:52,3599.0,15.6348, +2016-07-27 19:12:55,3599.0,15.5704, +2016-07-27 19:15:00,,,19.3189 +2016-07-27 19:22:58,3599.0,15.6033, +2016-07-27 19:30:00,,,19.3189 +2016-07-27 19:33:01,3599.0,15.7337, +2016-07-27 19:43:11,3599.0,15.7007, +2016-07-27 19:45:00,,,19.3189 +2016-07-27 19:53:14,3599.0,15.7021, +2016-07-27 20:00:00,,,19.3189 +2016-07-27 20:03:17,3599.0,15.7007, +2016-07-27 20:13:20,3599.0,15.7007, +2016-07-27 20:15:00,,,19.284 +2016-07-27 20:23:23,3599.0,15.7035, +2016-07-27 20:30:00,,,19.3206 +2016-07-27 20:33:26,3599.0,15.7021, +2016-07-27 20:43:28,3599.0,15.7007, +2016-07-27 20:45:00,,,19.2822 +2016-07-27 20:53:31,3599.0,15.7007, +2016-07-27 21:00:00,,,19.3189 +2016-07-27 21:03:34,3599.0,15.7007, +2016-07-27 21:13:37,3599.0,15.6678, +2016-07-27 21:15:00,,,19.3189 +2016-07-27 21:23:40,3599.0,15.7667, +2016-07-27 21:30:00,,,19.2822 +2016-07-27 21:33:43,3599.0,15.7007, +2016-07-27 21:43:46,3599.0,15.7021, +2016-07-27 21:45:00,,,19.3189 +2016-07-27 21:53:48,3599.0,15.7351, +2016-07-27 22:00:00,,,19.2474 +2016-07-27 22:03:51,3599.0,15.7007, +2016-07-27 22:13:54,3599.0,15.6691, +2016-07-27 22:15:00,,,19.3189 +2016-07-27 22:23:57,3599.0,15.7007, +2016-07-27 22:30:00,,,19.2822 +2016-07-27 22:33:59,3599.0,15.7337, +2016-07-27 22:44:02,3599.0,15.7007, +2016-07-27 22:45:00,,,19.2822 +2016-07-27 22:54:05,3599.0,15.7021, +2016-07-27 23:00:00,,,19.2822 +2016-07-27 23:04:08,3599.0,15.7021, +2016-07-27 23:14:11,3599.0,15.6678, +2016-07-27 23:15:00,,,19.3189 +2016-07-27 23:24:14,3599.0,15.8012, +2016-07-27 23:30:00,,,19.3189 +2016-07-27 23:34:16,3599.0,15.7998, +2016-07-27 23:44:19,3599.0,15.7998, +2016-07-27 23:45:00,,,19.3206 +2016-07-27 23:54:22,3599.0,15.7998, +2016-07-28 00:00:00,,,19.284 +2016-07-28 00:04:25,3599.0,15.8026, +2016-07-28 00:14:28,3599.0,15.8012, +2016-07-28 00:15:00,,,19.284 +2016-07-28 00:24:30,3599.0,15.8329, +2016-07-28 00:30:00,,,19.3206 +2016-07-28 00:34:33,3599.0,15.7681, +2016-07-28 00:44:36,3599.0,15.8357, +2016-07-28 00:45:00,,,19.284 +2016-07-28 00:54:39,3599.0,15.7998, +2016-07-28 01:00:00,,,19.2822 +2016-07-28 01:04:41,3599.0,15.8012, +2016-07-28 01:14:44,3599.0,15.8012, +2016-07-28 01:15:00,,,19.284 +2016-07-28 01:24:47,3599.0,15.797, +2016-07-28 01:30:00,,,19.2822 +2016-07-28 01:34:50,3599.0,15.797, +2016-07-28 01:44:53,3599.0,15.8315, +2016-07-28 01:45:00,,,19.284 +2016-07-28 01:54:55,3598.0,15.797, +2016-07-28 02:00:00,,,19.3206 +2016-07-28 02:04:58,3598.0,15.7984, +2016-07-28 02:15:00,,,19.3189 +2016-07-28 02:15:01,3598.0,15.7984, +2016-07-28 02:25:03,3598.0,15.797, +2016-07-28 02:30:00,,,19.3206 +2016-07-28 02:35:06,3598.0,15.8301, +2016-07-28 02:45:00,,,19.3189 +2016-07-28 02:45:08,3598.0,15.7928, +2016-07-28 02:55:10,3598.0,15.7984, +2016-07-28 03:00:00,,,19.3206 +2016-07-28 03:05:21,3598.0,15.7928, +2016-07-28 03:15:00,,,19.3189 +2016-07-28 03:15:23,3598.0,15.7928, +2016-07-28 03:25:26,3598.0,15.7942, +2016-07-28 03:30:00,,,19.284 +2016-07-28 03:35:28,3597.0,15.7928, +2016-07-28 03:45:00,,,19.3206 +2016-07-28 03:45:31,3597.0,15.7597, +2016-07-28 03:55:34,3596.0,15.8258, +2016-07-28 04:00:00,,,19.2822 +2016-07-28 04:05:36,3596.0,15.7928, +2016-07-28 04:15:00,,,19.284 +2016-07-28 04:15:39,3596.0,15.7928, +2016-07-28 04:25:41,3596.0,15.7928, +2016-07-28 04:30:00,,,19.284 +2016-07-28 04:35:44,3595.0,15.7928, +2016-07-28 04:45:00,,,19.3206 +2016-07-28 04:45:46,3595.0,15.7942, +2016-07-28 04:55:49,3595.0,15.7928, +2016-07-28 05:00:00,,,19.3189 +2016-07-28 05:05:51,3594.0,15.8258, +2016-07-28 05:15:00,,,19.3206 +2016-07-28 05:15:53,3594.0,15.7942, +2016-07-28 05:26:04,3594.0,15.8258, +2016-07-28 05:30:00,,,19.3206 +2016-07-28 05:36:06,3593.0,15.8216, +2016-07-28 05:45:00,,,19.2822 +2016-07-28 05:46:09,3593.0,15.7886, +2016-07-28 05:56:11,3593.0,15.7886, +2016-07-28 06:00:00,,,19.3189 +2016-07-28 06:06:14,3593.0,15.79, +2016-07-28 06:15:00,,,19.3189 +2016-07-28 06:16:16,3593.0,15.7886, +2016-07-28 06:26:19,3592.0,15.79, +2016-07-28 06:30:00,,,19.3189 +2016-07-28 06:36:22,3592.0,15.7886, +2016-07-28 06:45:00,,,19.3206 +2016-07-28 06:46:24,3592.0,15.7886, +2016-07-28 06:56:27,3592.0,15.7886, +2016-07-28 07:00:00,,,19.3189 +2016-07-28 07:06:29,3592.0,15.8216, +2016-07-28 07:15:00,,,19.3206 +2016-07-28 07:16:32,3593.0,15.7886, +2016-07-28 07:26:34,3593.0,15.8216, +2016-07-28 07:30:00,,,19.284 +2016-07-28 07:36:37,3593.0,15.79, +2016-07-28 07:45:00,,,19.3206 +2016-07-28 07:46:39,3594.0,15.79, +2016-07-28 07:56:42,3595.0,15.8216, +2016-07-28 08:00:00,,,19.3189 +2016-07-28 08:06:44,3595.0,15.7857, +2016-07-28 08:15:00,,,19.2822 +2016-07-28 08:16:47,3595.0,15.8174, +2016-07-28 08:26:49,3596.0,15.8174, +2016-07-28 08:30:00,,,19.284 +2016-07-28 08:36:52,3597.0,15.8188, +2016-07-28 08:45:00,,,19.2822 +2016-07-28 08:46:55,3598.0,15.7857, +2016-07-28 08:56:57,3598.0,15.8174, +2016-07-28 09:00:00,,,19.3189 +2016-07-28 09:07:00,3598.0,15.7857, +2016-07-28 09:15:00,,,19.3189 +2016-07-28 09:17:02,3598.0,15.8174, +2016-07-28 09:27:05,3598.0,15.7857, +2016-07-28 09:30:00,,,19.3189 +2016-07-28 09:37:07,3598.0,15.7843, +2016-07-28 09:45:00,,,19.3189 +2016-07-28 09:47:10,3598.0,15.7513, +2016-07-28 09:57:12,3599.0,15.8174, +2016-07-28 10:00:00,,,19.3189 +2016-07-28 10:07:15,3599.0,15.6881, +2016-07-28 10:15:00,,,19.3206 +2016-07-28 10:17:18,3599.0,15.7183, +2016-07-28 10:27:20,3599.0,15.7843, +2016-07-28 10:30:00,,,19.2822 +2016-07-28 10:37:23,3599.0,15.6868, +2016-07-28 10:45:00,,,19.3189 +2016-07-28 10:47:25,3599.0,15.6854, +2016-07-28 10:57:28,3599.0,15.7211, +2016-07-28 11:00:00,,,19.3573 +2016-07-28 11:07:31,3599.0,15.7197, +2016-07-28 11:15:00,,,19.3189 +2016-07-28 11:17:34,3599.0,15.6868, +2016-07-28 11:27:36,3599.0,15.684, +2016-07-28 11:30:00,,,19.2822 +2016-07-28 11:37:39,3599.0,15.6868, +2016-07-28 11:45:00,,,19.3189 +2016-07-28 11:47:42,3599.0,15.7183, +2016-07-28 11:57:45,3599.0,15.6854, +2016-07-28 12:00:00,,,19.3189 +2016-07-28 12:07:48,3599.0,15.6195, +2016-07-28 12:15:00,,,19.2822 +2016-07-28 12:17:51,3599.0,15.6154, +2016-07-28 12:27:53,3599.0,15.6524, +2016-07-28 12:30:00,,,19.2822 +2016-07-28 12:37:56,3599.0,15.6195, +2016-07-28 12:45:00,,,19.2091 +2016-07-28 12:47:59,3599.0,15.6209, +2016-07-28 12:58:02,3599.0,15.5881, +2016-07-28 13:00:00,,,19.2091 +2016-07-28 13:08:05,3599.0,15.6195, +2016-07-28 13:15:00,,,19.2108 +2016-07-28 13:18:08,3599.0,15.4555, +2016-07-28 13:28:11,3599.0,15.521, +2016-07-28 13:30:00,,,19.1743 +2016-07-28 13:38:14,3599.0,15.521, +2016-07-28 13:45:00,,,19.1743 +2016-07-28 13:48:17,3599.0,15.491, +2016-07-28 13:58:20,3599.0,15.4883, +2016-07-28 14:00:00,,,19.2457 +2016-07-28 14:08:22,3599.0,15.521, +2016-07-28 14:15:00,,,19.2091 +2016-07-28 14:18:25,3599.0,15.4883, +2016-07-28 14:28:28,3599.0,15.521, +2016-07-28 14:30:00,,,19.1726 +2016-07-28 14:38:31,3599.0,15.4938, +2016-07-28 14:45:00,,,19.2091 +2016-07-28 14:48:34,3599.0,15.5252, +2016-07-28 14:58:37,3599.0,15.4924, +2016-07-28 15:00:00,,,19.2091 +2016-07-28 15:08:40,3599.0,15.558, +2016-07-28 15:15:00,,,19.0998 +2016-07-28 15:18:43,3599.0,15.3929, +2016-07-28 15:28:46,3599.0,15.3943, +2016-07-28 15:30:00,,,19.0652 +2016-07-28 15:38:49,3599.0,15.3943, +2016-07-28 15:45:00,,,19.0635 +2016-07-28 15:48:52,3599.0,15.3943, +2016-07-28 15:58:55,3599.0,15.3943, +2016-07-28 16:00:00,,,19.0635 +2016-07-28 16:08:58,3599.0,15.4597, +2016-07-28 16:15:00,,,19.0998 +2016-07-28 16:19:01,3599.0,15.4283, +2016-07-28 16:29:04,3599.0,15.3943, +2016-07-28 16:30:00,,,19.0635 +2016-07-28 16:39:07,3599.0,15.4269, +2016-07-28 16:45:00,,,19.0652 +2016-07-28 16:49:10,3599.0,15.4269, +2016-07-28 16:59:13,3599.0,15.3943, +2016-07-28 17:00:00,,,19.0635 +2016-07-28 17:09:16,3599.0,15.4269, +2016-07-28 17:15:00,,,19.1015 +2016-07-28 17:19:19,3599.0,15.4269, +2016-07-28 17:29:22,3599.0,15.3943, +2016-07-28 17:30:00,,,19.1015 +2016-07-28 17:39:24,3599.0,15.4269, +2016-07-28 17:45:00,,,19.0652 +2016-07-28 17:49:27,3599.0,15.3943, +2016-07-28 17:59:30,3599.0,15.1435, +2016-07-28 18:00:00,,,19.0998 +2016-07-28 18:09:33,3599.0,15.3943, +2016-07-28 18:15:00,,,19.0635 +2016-07-28 18:19:36,3599.0,15.3943, +2016-07-28 18:29:39,3599.0,15.4311, +2016-07-28 18:30:00,,,19.1379 +2016-07-28 18:39:42,3599.0,15.4311, +2016-07-28 18:45:00,,,19.0652 +2016-07-28 18:49:45,3599.0,15.3984, +2016-07-28 18:59:48,3599.0,15.4638, +2016-07-28 19:00:00,,,19.0652 +2016-07-28 19:09:51,3599.0,15.4297, +2016-07-28 19:15:00,,,19.0618 +2016-07-28 19:19:54,3599.0,15.3984, +2016-07-28 19:29:57,3599.0,15.3984, +2016-07-28 19:30:00,,,19.0618 +2016-07-28 19:40:00,3599.0,15.5307, +2016-07-28 19:45:00,,,19.0635 +2016-07-28 19:50:02,3599.0,15.4965, +2016-07-28 20:00:00,,,19.1032 +2016-07-28 20:00:05,3599.0,15.5293, +2016-07-28 20:10:08,3599.0,15.4979, +2016-07-28 20:15:00,,,19.0635 +2016-07-28 20:20:11,3599.0,15.5307, +2016-07-28 20:30:00,,,19.0998 +2016-07-28 20:30:14,3599.0,15.5293, +2016-07-28 20:40:17,3599.0,15.5621, +2016-07-28 20:45:00,,,19.0652 +2016-07-28 20:50:19,3599.0,15.4965, +2016-07-28 21:00:00,,,19.0635 +2016-07-28 21:00:22,3599.0,15.5293, +2016-07-28 21:10:25,3599.0,15.5293, +2016-07-28 21:15:00,,,19.0635 +2016-07-28 21:20:28,3599.0,15.5293, +2016-07-28 21:30:00,,,19.0998 +2016-07-28 21:30:30,3599.0,15.5293, +2016-07-28 21:40:33,3599.0,15.4965, +2016-07-28 21:45:00,,,19.0635 +2016-07-28 21:50:36,3599.0,15.5307, +2016-07-28 22:00:00,,,19.1379 +2016-07-28 22:00:39,3599.0,15.5293, +2016-07-28 22:10:42,3599.0,15.5293, +2016-07-28 22:15:00,,,19.0998 +2016-07-28 22:20:45,3599.0,15.5293, +2016-07-28 22:30:00,,,19.1015 +2016-07-28 22:30:47,3599.0,15.4965, +2016-07-28 22:40:50,3599.0,15.4979, +2016-07-28 22:45:00,,,19.1015 +2016-07-28 22:50:53,3598.0,15.5293, +2016-07-28 23:00:00,,,19.0635 +2016-07-28 23:00:56,3598.0,15.5635, +2016-07-28 23:10:58,3598.0,15.5293, +2016-07-28 23:15:00,,,19.0998 +2016-07-28 23:21:01,3598.0,15.5293, +2016-07-28 23:30:00,,,19.1015 +2016-07-28 23:31:04,3588.0,15.4269, +2016-07-28 23:41:07,3598.0,15.4924, +2016-07-28 23:45:00,,,19.1379 +2016-07-28 23:51:09,3598.0,15.5293, +2016-07-29 00:00:00,,,19.0998 +2016-07-29 00:01:12,3597.0,15.4938, +2016-07-29 00:11:15,3597.0,15.5252, +2016-07-29 00:15:00,,,19.0635 +2016-07-29 00:21:18,3597.0,15.5252, +2016-07-29 00:30:00,,,19.0998 +2016-07-29 00:31:20,3597.0,15.5252, +2016-07-29 00:41:23,3596.0,15.5252, +2016-07-29 00:45:00,,,19.1015 +2016-07-29 00:51:26,3596.0,15.5252, +2016-07-29 01:00:00,,,19.0998 +2016-07-29 01:01:28,3595.0,15.5252, +2016-07-29 01:11:31,3595.0,15.5252, +2016-07-29 01:15:00,,,19.0635 +2016-07-29 01:21:33,3595.0,15.4924, +2016-07-29 01:30:00,,,19.0652 +2016-07-29 01:31:36,3595.0,15.5252, +2016-07-29 01:41:39,3595.0,15.5252, +2016-07-29 01:45:00,,,19.0998 +2016-07-29 01:51:42,3594.0,15.5252, +2016-07-29 02:00:00,,,19.0652 +2016-07-29 02:01:44,3594.0,15.4924, +2016-07-29 02:11:47,3594.0,15.5252, +2016-07-29 02:15:00,,,19.0998 +2016-07-29 02:21:50,3593.0,15.5252, +2016-07-29 02:30:00,,,19.0635 +2016-07-29 02:31:52,3593.0,15.5252, +2016-07-29 02:41:55,3592.0,15.5252, +2016-07-29 02:45:00,,,19.0635 +2016-07-29 02:51:58,3592.0,15.5252, +2016-07-29 03:00:00,,,19.1362 +2016-07-29 03:02:00,3592.0,15.5238, +2016-07-29 03:12:03,3591.0,15.5266, +2016-07-29 03:15:00,,,19.0635 +2016-07-29 03:22:06,3591.0,15.558, +2016-07-29 03:30:00,,,19.0652 +2016-07-29 03:32:08,3590.0,15.5238, +2016-07-29 03:42:11,3590.0,15.5252, +2016-07-29 03:45:00,,,19.0635 +2016-07-29 03:52:14,3590.0,15.5252, +2016-07-29 04:00:00,,,19.0652 +2016-07-29 04:02:16,3589.0,15.4924, +2016-07-29 04:12:19,3589.0,15.521, +2016-07-29 04:15:00,,,19.0635 +2016-07-29 04:22:21,3588.0,15.4896, +2016-07-29 04:30:00,,,19.1015 +2016-07-29 04:32:24,3588.0,15.4938, +2016-07-29 04:42:27,3588.0,15.5252, +2016-07-29 04:45:00,,,19.0652 +2016-07-29 04:52:29,3588.0,15.521, +2016-07-29 05:00:00,,,19.0652 +2016-07-29 05:02:32,3588.0,15.5224, +2016-07-29 05:12:35,3587.0,15.5224, +2016-07-29 05:15:00,,,19.1015 +2016-07-29 05:22:37,3587.0,15.5224, +2016-07-29 05:30:00,,,19.0998 +2016-07-29 05:32:40,3587.0,15.5224, +2016-07-29 05:42:43,3587.0,15.521, +2016-07-29 05:45:00,,,19.1015 +2016-07-29 05:52:45,3587.0,15.521, +2016-07-29 06:00:00,,,19.0635 +2016-07-29 06:02:48,3587.0,15.5224, +2016-07-29 06:12:51,3586.0,15.5224, +2016-07-29 06:15:00,,,19.1015 +2016-07-29 06:22:53,3586.0,15.5183, +2016-07-29 06:30:00,,,19.0998 +2016-07-29 06:32:56,3587.0,15.4855, +2016-07-29 06:42:59,3586.0,15.5183, +2016-07-29 06:45:00,,,19.0998 +2016-07-29 06:53:02,3587.0,15.5183, +2016-07-29 07:00:00,,,19.0635 +2016-07-29 07:03:04,3587.0,15.4841, +2016-07-29 07:13:07,3587.0,15.5183, +2016-07-29 07:15:00,,,19.0998 +2016-07-29 07:23:10,3587.0,15.5511, +2016-07-29 07:30:00,,,19.1362 +2016-07-29 07:33:13,3587.0,15.5183, +2016-07-29 07:43:15,3587.0,15.5183, +2016-07-29 07:45:00,,,19.1015 +2016-07-29 07:53:18,3588.0,15.5183, +2016-07-29 08:00:00,,,19.0998 +2016-07-29 08:03:21,3588.0,15.5183, +2016-07-29 08:13:23,3588.0,15.5183, +2016-07-29 08:15:00,,,19.1015 +2016-07-29 08:23:26,3589.0,15.5497, +2016-07-29 08:30:00,,,19.0652 +2016-07-29 08:33:29,3590.0,15.5183, +2016-07-29 08:43:31,3591.0,15.5183, +2016-07-29 08:45:00,,,19.0998 +2016-07-29 08:53:34,3591.0,15.5183, +2016-07-29 09:00:00,,,19.0998 +2016-07-29 09:03:37,3591.0,15.5183, +2016-07-29 09:13:40,3592.0,15.5197, +2016-07-29 09:15:00,,,19.0652 +2016-07-29 09:23:43,3592.0,15.5183, +2016-07-29 09:30:00,,,19.1015 +2016-07-29 09:33:45,3592.0,15.5183, +2016-07-29 09:43:48,3592.0,15.5183, +2016-07-29 09:45:00,,,19.0998 +2016-07-29 09:53:51,3593.0,15.5183, +2016-07-29 10:00:00,,,19.0635 +2016-07-29 10:03:54,3593.0,15.5183, +2016-07-29 10:13:57,3592.0,15.5183, +2016-07-29 10:15:00,,,18.9926 +2016-07-29 10:23:59,3594.0,15.5183, +2016-07-29 10:30:00,,,18.9547 +2016-07-29 10:34:02,3595.0,15.5169, +2016-07-29 10:44:04,3595.0,15.5183, +2016-07-29 10:45:00,,,18.9909 +2016-07-29 10:54:07,3596.0,15.5183, +2016-07-29 11:00:00,,,18.9547 +2016-07-29 11:04:10,3597.0,15.5511, +2016-07-29 11:14:12,3598.0,15.5183, +2016-07-29 11:15:00,,,18.9547 +2016-07-29 11:24:15,3598.0,15.5183, +2016-07-29 11:30:00,,,18.9926 +2016-07-29 11:34:18,3598.0,15.5183, +2016-07-29 11:44:21,3598.0,15.5511, +2016-07-29 11:45:00,,,18.9564 +2016-07-29 11:54:24,3599.0,15.5183, +2016-07-29 12:00:00,,,18.9547 +2016-07-29 12:04:26,3598.0,15.5183, +2016-07-29 12:14:29,3599.0,15.4201, +2016-07-29 12:15:00,,,18.9547 +2016-07-29 12:24:32,3599.0,15.3874, +2016-07-29 12:30:00,,,18.9909 +2016-07-29 12:34:35,3599.0,15.4201, +2016-07-29 12:44:38,3599.0,15.4201, +2016-07-29 12:45:00,,,18.9858 +2016-07-29 12:54:41,3599.0,15.4201, +2016-07-29 13:00:00,,,18.9547 +2016-07-29 13:04:44,3599.0,15.3222, +2016-07-29 13:14:47,3599.0,15.2896, +2016-07-29 13:15:00,,,18.9496 +2016-07-29 13:24:50,3599.0,15.3222, +2016-07-29 13:30:00,,,18.9858 +2016-07-29 13:34:52,3599.0,15.3222, +2016-07-29 13:44:55,3599.0,15.3208, +2016-07-29 13:45:00,,,18.8824 +2016-07-29 13:54:58,3599.0,15.3222, +2016-07-29 14:00:00,,,18.8773 +2016-07-29 14:05:01,3599.0,15.1921, +2016-07-29 14:15:00,,,18.8824 +2016-07-29 14:15:04,3599.0,15.2571, +2016-07-29 14:25:07,3599.0,15.2246, +2016-07-29 14:30:00,,,18.8807 +2016-07-29 14:35:10,3599.0,15.2246, +2016-07-29 14:45:00,,,18.9151 +2016-07-29 14:45:13,3599.0,15.2246, +2016-07-29 14:55:16,3599.0,15.2557, +2016-07-29 15:00:00,,,18.9202 +2016-07-29 15:05:19,3599.0,15.1259, +2016-07-29 15:15:00,,,18.879 +2016-07-29 15:15:22,3599.0,15.1596, +2016-07-29 15:25:25,3599.0,15.1637, +2016-07-29 15:30:00,,,18.879 +2016-07-29 15:35:28,3599.0,15.1272, +2016-07-29 15:45:00,,,18.8773 +2016-07-29 15:45:31,3599.0,15.1312, +2016-07-29 15:55:34,3599.0,15.1637, +2016-07-29 16:00:00,,,18.879 +2016-07-29 16:05:37,3599.0,15.1596, +2016-07-29 16:15:00,,,18.8841 +2016-07-29 16:15:40,3599.0,15.1299, +2016-07-29 16:25:43,3599.0,15.1623, +2016-07-29 16:30:00,,,18.8773 +2016-07-29 16:35:46,3599.0,15.0975, +2016-07-29 16:45:00,,,18.9151 +2016-07-29 16:45:49,3599.0,15.0989, +2016-07-29 16:55:52,3599.0,15.0989, +2016-07-29 17:00:00,,,18.8824 +2016-07-29 17:05:55,3599.0,15.1623, +2016-07-29 17:15:00,,,18.9151 +2016-07-29 17:15:58,3599.0,15.1637, +2016-07-29 17:26:01,3599.0,15.0975, +2016-07-29 17:30:00,,,18.879 +2016-07-29 17:36:04,3599.0,15.1015, +2016-07-29 17:45:00,,,18.8773 +2016-07-29 17:46:07,3599.0,15.1015, +2016-07-29 17:56:10,3599.0,15.1339, +2016-07-29 18:00:00,,,18.9135 +2016-07-29 18:06:13,3599.0,15.1326, +2016-07-29 18:15:00,,,18.879 +2016-07-29 18:16:16,3599.0,15.1339, +2016-07-29 18:26:19,3599.0,-10.203, +2016-07-29 18:30:00,,,18.8773 +2016-07-29 18:36:22,3599.0,15.1339, +2016-07-29 18:45:00,,,18.8773 +2016-07-29 18:46:25,3599.0,15.1015, +2016-07-29 18:56:27,3599.0,15.1015, +2016-07-29 19:00:00,,,18.8824 +2016-07-29 19:06:30,3599.0,15.1339, +2016-07-29 19:15:00,,,18.8773 +2016-07-29 19:16:33,3599.0,15.1015, +2016-07-29 19:26:36,3599.0,15.1664, +2016-07-29 19:30:00,,,18.8773 +2016-07-29 19:36:39,3599.0,15.1664, +2016-07-29 19:45:00,,,18.8773 +2016-07-29 19:46:42,3599.0,15.1339, +2016-07-29 19:56:45,3599.0,15.1664, +2016-07-29 20:00:00,,,18.879 +2016-07-29 20:06:48,3599.0,15.1339, +2016-07-29 20:15:00,,,18.8773 +2016-07-29 20:16:50,3599.0,15.1029, +2016-07-29 20:26:53,3599.0,15.1664, +2016-07-29 20:30:00,,,18.8773 +2016-07-29 20:36:56,3599.0,15.1664, +2016-07-29 20:45:00,,,18.879 +2016-07-29 20:46:59,3599.0,15.1339, +2016-07-29 20:57:02,3599.0,15.1664, +2016-07-29 21:00:00,,,18.879 +2016-07-29 21:07:04,3599.0,15.1015, +2016-07-29 21:15:00,,,18.8773 +2016-07-29 21:17:07,3599.0,15.1339, +2016-07-29 21:27:10,3599.0,15.1339, +2016-07-29 21:30:00,,,18.8773 +2016-07-29 21:37:13,3599.0,15.1664, +2016-07-29 21:45:00,,,18.879 +2016-07-29 21:47:15,3598.0,15.1339, +2016-07-29 21:57:18,3598.0,15.1029, +2016-07-29 22:00:00,,,18.8773 +2016-07-29 22:07:21,3598.0,15.1664, +2016-07-29 22:15:00,,,18.8773 +2016-07-29 22:17:24,3598.0,15.1015, +2016-07-29 22:27:26,3598.0,15.1015, +2016-07-29 22:30:00,,,18.9151 +2016-07-29 22:37:29,3598.0,15.1339, +2016-07-29 22:45:00,,,18.879 +2016-07-29 22:47:31,3598.0,15.1664, +2016-07-29 22:57:34,3597.0,15.1339, +2016-07-29 23:00:00,,,18.8773 +2016-07-29 23:07:37,3597.0,15.1339, +2016-07-29 23:15:00,,,18.879 +2016-07-29 23:17:39,3596.0,15.1339, +2016-07-29 23:27:42,3596.0,15.2313, +2016-07-29 23:30:00,,,18.879 +2016-07-29 23:37:45,3595.0,15.2313, +2016-07-29 23:45:00,,,18.879 +2016-07-29 23:47:47,3595.0,15.2313, +2016-07-29 23:57:50,3595.0,15.2638, +2016-07-30 00:00:00,,,18.8773 +2016-07-30 00:07:52,3594.0,15.2638, +2016-07-30 00:15:00,,,18.8773 +2016-07-30 00:17:55,3593.0,15.2638, +2016-07-30 00:27:57,3593.0,15.1975, +2016-07-30 00:30:00,,,18.9185 +2016-07-30 00:38:00,3593.0,15.2313, +2016-07-30 00:45:00,,,18.8824 +2016-07-30 00:48:02,3592.0,15.1988, +2016-07-30 00:58:05,3592.0,15.2313, +2016-07-30 01:00:00,,,18.879 +2016-07-30 01:08:07,3592.0,15.2638, +2016-07-30 01:15:00,,,18.8773 +2016-07-30 01:18:10,3592.0,15.2638, +2016-07-30 01:28:12,3592.0,15.2313, +2016-07-30 01:30:00,,,18.8773 +2016-07-30 01:38:15,3592.0,15.2638, +2016-07-30 01:45:00,,,18.9151 +2016-07-30 01:48:17,3592.0,15.2638, +2016-07-30 01:58:20,3592.0,15.2652, +2016-07-30 02:00:00,,,18.9202 +2016-07-30 02:08:23,3591.0,15.2313, +2016-07-30 02:15:00,,,18.8841 +2016-07-30 02:18:25,3591.0,15.2313, +2016-07-30 02:28:28,3591.0,15.2638, +2016-07-30 02:30:00,,,18.8824 +2016-07-30 02:38:31,3590.0,15.2286, +2016-07-30 02:45:00,,,18.8841 +2016-07-30 02:48:33,3590.0,15.2923, +2016-07-30 02:58:36,3589.0,15.2611, +2016-07-30 03:00:00,,,18.8773 +2016-07-30 03:08:39,3589.0,15.1948, +2016-07-30 03:15:00,,,18.879 +2016-07-30 03:18:41,3589.0,15.2273, +2016-07-30 03:28:44,3588.0,15.1948, +2016-07-30 03:30:00,,,18.9135 +2016-07-30 03:38:46,3588.0,15.2611, +2016-07-30 03:45:00,,,18.8773 +2016-07-30 03:48:49,3588.0,15.2273, +2016-07-30 03:58:51,3588.0,15.2273, +2016-07-30 04:00:00,,,18.8824 +2016-07-30 04:08:53,3588.0,15.1948, +2016-07-30 04:15:00,,,18.9202 +2016-07-30 04:18:56,3586.0,15.2246, +2016-07-30 04:28:59,3586.0,15.2598, +2016-07-30 04:30:00,,,18.8773 +2016-07-30 04:39:01,3586.0,15.2571, +2016-07-30 04:45:00,,,18.8841 +2016-07-30 04:49:04,3586.0,15.2571, +2016-07-30 04:59:06,3586.0,15.2571, +2016-07-30 05:00:00,,,18.879 +2016-07-30 05:09:09,3585.0,15.2557, +2016-07-30 05:15:00,,,18.8841 +2016-07-30 05:19:11,3585.0,15.2246, +2016-07-30 05:29:14,3585.0,15.2246, +2016-07-30 05:30:00,,,18.8824 +2016-07-30 05:39:16,3585.0,15.2259, +2016-07-30 05:45:00,,,18.879 +2016-07-30 05:49:19,3584.0,15.2571, +2016-07-30 05:59:22,3584.0,15.2571, +2016-07-30 06:00:00,,,18.8773 +2016-07-30 06:09:24,3584.0,15.2571, +2016-07-30 06:15:00,,,18.8841 +2016-07-30 06:19:27,3583.0,15.2232, +2016-07-30 06:29:29,3584.0,15.2246, +2016-07-30 06:30:00,,,18.8824 +2016-07-30 06:39:32,3582.0,15.2246, +2016-07-30 06:45:00,,,18.8841 +2016-07-30 06:49:34,3582.0,15.2571, +2016-07-30 06:59:37,3585.0,15.2584, +2016-07-30 07:00:00,,,18.879 +2016-07-30 07:09:40,3584.0,15.2571, +2016-07-30 07:15:00,,,18.8824 +2016-07-30 07:19:42,3584.0,15.2571, +2016-07-30 07:29:45,3585.0,15.2557, +2016-07-30 07:30:00,,,18.8824 +2016-07-30 07:39:47,3585.0,15.2571, +2016-07-30 07:45:00,,,18.9185 +2016-07-30 07:49:50,3585.0,15.2205, +2016-07-30 07:59:52,3586.0,15.2191, +2016-07-30 08:00:00,,,18.879 +2016-07-30 08:09:55,3586.0,15.2191, +2016-07-30 08:15:00,,,18.8824 +2016-07-30 08:19:57,3586.0,15.253, +2016-07-30 08:30:00,3587.0,15.2896,18.8841 +2016-07-30 08:40:03,3587.0,15.1867, +2016-07-30 08:45:00,,,18.8773 +2016-07-30 08:50:05,3588.0,15.188, +2016-07-30 09:00:00,,,18.8841 +2016-07-30 09:00:08,3588.0,15.253, +2016-07-30 09:10:11,3588.0,15.253, +2016-07-30 09:15:00,,,18.8773 +2016-07-30 09:20:15,3589.0,15.2205, +2016-07-30 09:30:00,,,18.8052 +2016-07-30 09:30:18,3588.0,15.253, +2016-07-30 09:40:21,3591.0,15.2191, +2016-07-30 09:45:00,,,18.7709 +2016-07-30 09:50:23,3591.0,15.2205, +2016-07-30 10:00:00,,,18.7743 +2016-07-30 10:00:26,3590.0,15.2205, +2016-07-30 10:10:29,3593.0,15.1542, +2016-07-30 10:15:00,,,18.7743 +2016-07-30 10:20:32,3593.0,15.1232, +2016-07-30 10:30:00,,,18.8052 +2016-07-30 10:30:34,3595.0,15.0895, +2016-07-30 10:40:37,3595.0,15.1218, +2016-07-30 10:45:00,,,18.7709 +2016-07-30 10:50:40,3596.0,15.1556, +2016-07-30 11:00:00,,,18.7693 +2016-07-30 11:00:43,3597.0,15.1218, +2016-07-30 11:10:45,3598.0,15.1218, +2016-07-30 11:15:00,,,18.8052 +2016-07-30 11:20:48,3596.0,15.1232, +2016-07-30 11:30:00,,,18.7709 +2016-07-30 11:30:51,3598.0,15.1556, +2016-07-30 11:40:54,3598.0,15.1556, +2016-07-30 11:45:00,,,18.8052 +2016-07-30 11:50:56,3598.0,15.1542, +2016-07-30 12:00:00,,,18.7759 +2016-07-30 12:00:59,3598.0,15.1218, +2016-07-30 12:11:02,3598.0,15.1556, +2016-07-30 12:15:00,,,18.7693 +2016-07-30 12:21:05,3599.0,15.1218, +2016-07-30 12:30:00,,,18.7693 +2016-07-30 12:31:08,3599.0,15.0261, +2016-07-30 12:41:11,3599.0,15.0261, +2016-07-30 12:45:00,,,18.7693 +2016-07-30 12:51:13,3599.0,15.0571, +2016-07-30 13:00:00,,,18.6632 +2016-07-30 13:01:16,3599.0,15.0301, +2016-07-30 13:11:19,3599.0,15.0585, +2016-07-30 13:15:00,,,18.6616 +2016-07-30 13:21:22,3599.0,15.0261, +2016-07-30 13:30:00,,,18.6632 +2016-07-30 13:31:25,3599.0,14.9979, +2016-07-30 13:41:28,3599.0,15.0301, +2016-07-30 13:45:00,,,18.6258 +2016-07-30 13:51:30,3599.0,15.0625, +2016-07-30 14:00:00,,,18.6632 +2016-07-30 14:01:33,3599.0,14.932, +2016-07-30 14:11:36,3599.0,14.8972, +2016-07-30 14:15:00,,,18.6616 +2016-07-30 14:21:39,3599.0,14.9656, +2016-07-30 14:30:00,,,18.6632 +2016-07-30 14:31:42,3599.0,14.9334, +2016-07-30 14:41:45,3599.0,14.9656, +2016-07-30 14:45:00,,,18.6616 +2016-07-30 14:51:48,3599.0,14.9643, +2016-07-30 15:00:00,,,18.6632 +2016-07-30 15:01:51,3599.0,14.932, +2016-07-30 15:11:54,3599.0,14.9656, +2016-07-30 15:15:00,,,18.6616 +2016-07-30 15:21:56,3599.0,14.8369, +2016-07-30 15:30:00,,,18.6632 +2016-07-30 15:31:59,3599.0,14.8369, +2016-07-30 15:42:02,3599.0,14.8369, +2016-07-30 15:45:00,,,18.6632 +2016-07-30 15:52:05,3599.0,14.869000000000002, +2016-07-30 16:00:00,,,18.5543 +2016-07-30 16:02:08,3599.0,14.8355, +2016-07-30 16:12:11,3599.0,14.8355, +2016-07-30 16:15:00,,,18.5543 +2016-07-30 16:22:14,3599.0,14.8355, +2016-07-30 16:30:00,,,18.5543 +2016-07-30 16:32:17,3599.0,14.8677, +2016-07-30 16:42:19,3599.0,14.8342, +2016-07-30 16:45:00,,,18.5543 +2016-07-30 16:52:22,3599.0,14.869000000000002, +2016-07-30 17:00:00,,,18.5543 +2016-07-30 17:02:25,3599.0,14.869000000000002, +2016-07-30 17:12:28,3599.0,14.8369, +2016-07-30 17:15:00,,,18.5543 +2016-07-30 17:22:31,3599.0,14.8355, +2016-07-30 17:30:00,,,18.59 +2016-07-30 17:32:34,3599.0,14.8355, +2016-07-30 17:42:37,3599.0,14.8677, +2016-07-30 17:45:00,,,18.5559 +2016-07-30 17:52:40,3599.0,14.8369, +2016-07-30 18:00:00,,,18.5559 +2016-07-30 18:02:43,3599.0,14.8369, +2016-07-30 18:12:46,3599.0,14.8716, +2016-07-30 18:15:00,,,18.5543 +2016-07-30 18:22:48,3599.0,14.869000000000002, +2016-07-30 18:30:00,,,18.5559 +2016-07-30 18:32:51,3599.0,14.94, +2016-07-30 18:42:54,3599.0,14.8395, +2016-07-30 18:45:00,,,18.5543 +2016-07-30 18:52:57,3599.0,14.8716, +2016-07-30 19:00:00,,,18.5543 +2016-07-30 19:03:00,3599.0,14.8395, +2016-07-30 19:13:03,3599.0,14.8395, +2016-07-30 19:15:00,,,18.5559 +2016-07-30 19:23:06,3598.0,-11.2629, +2016-07-30 19:30:00,,,18.5559 +2016-07-30 19:33:09,3599.0,14.8395, +2016-07-30 19:43:11,3599.0,14.8395, +2016-07-30 19:45:00,,,18.5543 +2016-07-30 19:53:14,3599.0,14.8716, +2016-07-30 20:00:00,,,18.5543 +2016-07-30 20:03:17,3599.0,14.8716, +2016-07-30 20:13:20,3599.0,14.8395, +2016-07-30 20:15:00,,,18.5543 +2016-07-30 20:23:23,3599.0,14.8716, +2016-07-30 20:30:00,,,18.5559 +2016-07-30 20:33:26,3599.0,14.8395, +2016-07-30 20:43:29,3599.0,14.8395, +2016-07-30 20:45:00,,,18.5559 +2016-07-30 20:53:32,3599.0,14.8408, +2016-07-30 21:00:00,,,18.5186 +2016-07-30 21:03:35,3598.0,14.8395, +2016-07-30 21:13:37,3598.0,14.8716, +2016-07-30 21:15:00,,,18.5543 +2016-07-30 21:23:40,3598.0,14.9038, +2016-07-30 21:30:00,,,18.5559 +2016-07-30 21:33:43,3598.0,14.8395, +2016-07-30 21:43:46,3598.0,14.8716, +2016-07-30 21:45:00,,,18.5543 +2016-07-30 21:53:49,3597.0,14.873, +2016-07-30 22:00:00,,,18.5543 +2016-07-30 22:03:52,3597.0,14.8395, +2016-07-30 22:13:54,3596.0,14.8716, +2016-07-30 22:15:00,,,18.5559 +2016-07-30 22:23:57,3595.0,14.8395, +2016-07-30 22:30:00,,,18.5543 +2016-07-30 22:34:00,3594.0,14.8395, +2016-07-30 22:44:02,3595.0,14.9051, +2016-07-30 22:45:00,,,18.5559 +2016-07-30 22:54:05,3593.0,14.8716, +2016-07-30 23:00:00,,,18.5559 +2016-07-30 23:04:08,3593.0,14.8369, +2016-07-30 23:14:11,3592.0,14.8395, +2016-07-30 23:15:00,,,18.5543 +2016-07-30 23:24:13,3591.0,14.9012, +2016-07-30 23:30:00,,,18.5543 +2016-07-30 23:34:16,3592.0,14.8716, +2016-07-30 23:44:19,3592.0,14.9078, +2016-07-30 23:45:00,,,18.5543 +2016-07-30 23:54:21,3590.0,14.8395, +2016-07-31 00:00:00,,,18.5543 +2016-07-31 00:04:24,3588.0,14.8369, +2016-07-31 00:14:27,3588.0,14.8369, +2016-07-31 00:15:00,,,18.5543 +2016-07-31 00:24:29,3589.0,14.1468, +2016-07-31 00:30:00,,,18.5559 +2016-07-31 00:34:32,3586.0,14.8369, +2016-07-31 00:44:35,3587.0,14.8369, +2016-07-31 00:45:00,,,18.5543 +2016-07-31 00:54:37,3586.0,14.8369, +2016-07-31 01:00:00,,,18.59 +2016-07-31 01:04:40,3587.0,14.8369, +2016-07-31 01:14:43,3585.0,14.8369, +2016-07-31 01:15:00,,,18.5559 +2016-07-31 01:24:45,3585.0,14.869000000000002, +2016-07-31 01:30:00,,,18.5559 +2016-07-31 01:34:48,3585.0,14.869000000000002, +2016-07-31 01:44:51,3584.0,14.869000000000002, +2016-07-31 01:45:00,,,18.5917 +2016-07-31 01:54:53,3584.0,14.8677, +2016-07-31 02:00:00,,,18.5543 +2016-07-31 02:04:56,3583.0,14.8355, +2016-07-31 02:14:59,3581.0,14.8369, +2016-07-31 02:15:00,,,18.5559 +2016-07-31 02:25:01,3582.0,14.869000000000002, +2016-07-31 02:30:00,,,18.5559 +2016-07-31 02:35:04,3581.0,14.8369, +2016-07-31 02:45:00,,,18.5559 +2016-07-31 02:45:07,3581.0,14.8382, +2016-07-31 02:55:09,3577.0,14.869000000000002, +2016-07-31 03:00:00,,,18.5559 +2016-07-31 03:05:12,3578.0,14.8369, +2016-07-31 03:15:00,,,18.5559 +2016-07-31 03:15:15,3580.0,14.8637, +2016-07-31 03:25:16,3580.0,14.8329, +2016-07-31 03:30:00,,,18.5543 +2016-07-31 03:35:19,3580.0,14.8637, +2016-07-31 03:45:00,,,18.5559 +2016-07-31 03:45:21,3580.0,14.865, +2016-07-31 03:55:24,3579.0,14.8637, +2016-07-31 04:00:00,,,18.5917 +2016-07-31 04:05:26,3580.0,14.8329, +2016-07-31 04:15:00,,,18.5559 +2016-07-31 04:15:29,3579.0,14.8959, +2016-07-31 04:25:31,3580.0,14.8316, +2016-07-31 04:30:00,,,18.5559 +2016-07-31 04:35:34,3580.0,14.8316, +2016-07-31 04:45:00,,,18.5559 +2016-07-31 04:45:36,3580.0,14.8329, +2016-07-31 04:55:39,3580.0,14.8316, +2016-07-31 05:00:00,,,18.5559 +2016-07-31 05:05:41,3580.0,14.8316, +2016-07-31 05:15:00,,,18.5543 +2016-07-31 05:15:44,3580.0,14.865, +2016-07-31 05:25:46,3581.0,14.8637, +2016-07-31 05:30:00,,,18.5559 +2016-07-31 05:35:49,3581.0,14.9616, +2016-07-31 05:45:00,,,18.59 +2016-07-31 05:45:52,3581.0,14.9603, +2016-07-31 05:55:54,3581.0,14.9294, +2016-07-31 06:00:00,,,18.5559 +2016-07-31 06:05:57,3581.0,14.9576, +2016-07-31 06:15:00,,,18.59 +2016-07-31 06:15:59,3581.0,14.9616, +2016-07-31 06:26:02,3581.0,14.9254, +2016-07-31 06:30:00,,,18.5543 +2016-07-31 06:36:04,3581.0,14.9576, +2016-07-31 06:45:00,,,18.5917 +2016-07-31 06:46:07,3581.0,14.9576, +2016-07-31 06:56:09,3581.0,14.8611, +2016-07-31 07:00:00,,,18.5559 +2016-07-31 07:06:12,3581.0,14.8276, +2016-07-31 07:15:00,,,18.5559 +2016-07-31 07:16:14,3581.0,14.8932, +2016-07-31 07:26:17,3581.0,14.8276, +2016-07-31 07:30:00,,,18.5559 +2016-07-31 07:36:19,3585.0,14.8289, +2016-07-31 07:45:00,,,18.5559 +2016-07-31 07:46:22,3581.0,14.8611, +2016-07-31 07:56:24,3582.0,14.8932, +2016-07-31 08:00:00,,,18.5543 +2016-07-31 08:06:27,3582.0,14.8932, +2016-07-31 08:15:00,,,18.5559 +2016-07-31 08:16:29,3583.0,14.8892, +2016-07-31 08:26:39,3585.0,14.8558, +2016-07-31 08:30:00,,,18.5543 +2016-07-31 08:36:42,3585.0,14.8879, +2016-07-31 08:45:00,,,18.5543 +2016-07-31 08:46:45,3585.0,14.8611, +2016-07-31 08:56:47,3586.0,14.825, +2016-07-31 09:00:00,,,18.5153 +2016-07-31 09:06:50,3587.0,14.8237, +2016-07-31 09:15:00,,,18.5543 +2016-07-31 09:16:53,3588.0,14.8237, +2016-07-31 09:26:55,3588.0,14.8571, +2016-07-31 09:30:00,,,18.5559 +2016-07-31 09:36:58,3589.0,14.8558, +2016-07-31 09:45:00,,,18.551 +2016-07-31 09:47:00,3591.0,14.8237, +2016-07-31 09:57:03,3592.0,14.825, +2016-07-31 10:00:00,,,18.551 +2016-07-31 10:07:05,3593.0,14.8237, +2016-07-31 10:15:00,,,18.551 +2016-07-31 10:17:08,3594.0,14.8571, +2016-07-31 10:27:11,3595.0,14.8237, +2016-07-31 10:30:00,,,18.5493 +2016-07-31 10:37:13,3596.0,14.8237, +2016-07-31 10:45:00,,,18.551 +2016-07-31 10:47:16,3597.0,14.8237, +2016-07-31 10:57:18,3598.0,14.825, +2016-07-31 11:00:00,,,18.5493 +2016-07-31 11:07:21,3598.0,14.8571, +2016-07-31 11:15:00,,,18.551 +2016-07-31 11:17:24,3598.0,14.825, +2016-07-31 11:27:26,3598.0,14.8571, +2016-07-31 11:30:00,,,18.551 +2016-07-31 11:37:29,3599.0,14.7608, +2016-07-31 11:45:00,,,18.4085 +2016-07-31 11:47:32,3592.0,14.6557, +2016-07-31 11:57:35,3599.0,14.7288, +2016-07-31 12:00:00,,,18.4085 +2016-07-31 12:07:38,3599.0,14.7608, +2016-07-31 12:15:00,,,18.4425 +2016-07-31 12:17:40,3599.0,14.7648, +2016-07-31 12:27:44,3599.0,14.7314, +2016-07-31 12:30:00,,,18.4069 +2016-07-31 12:37:48,3599.0,14.7327, +2016-07-31 12:45:00,,,18.4069 +2016-07-31 12:47:51,3599.0,14.6688, +2016-07-31 12:57:54,3599.0,14.7007, +2016-07-31 13:00:00,,,18.4457 +2016-07-31 13:07:57,3599.0,14.6688, +2016-07-31 13:15:00,,,18.4408 +2016-07-31 13:18:00,3599.0,14.6368, +2016-07-31 13:28:03,3599.0,14.6368, +2016-07-31 13:30:00,,,18.4441 +2016-07-31 13:38:06,3599.0,14.6688, +2016-07-31 13:45:00,,,18.478 +2016-07-31 13:48:08,3599.0,14.6727, +2016-07-31 13:58:11,3599.0,14.6688, +2016-07-31 14:00:00,,,18.4425 +2016-07-31 14:08:14,3599.0,14.6675, +2016-07-31 14:15:00,,,18.4441 +2016-07-31 14:18:17,3599.0,14.6075, +2016-07-31 14:28:20,3599.0,14.6088, +2016-07-31 14:30:00,,,18.478 +2016-07-31 14:38:23,3599.0,14.5756, +2016-07-31 14:45:00,,,18.3714 +2016-07-31 14:48:26,3599.0,14.5769, +2016-07-31 14:58:29,3599.0,14.5769, +2016-07-31 15:00:00,,,18.3376 +2016-07-31 15:08:32,3599.0,14.5769, +2016-07-31 15:15:00,,,18.3714 +2016-07-31 15:18:35,3599.0,14.5769, +2016-07-31 15:28:37,3599.0,14.6075, +2016-07-31 15:30:00,,,18.336 +2016-07-31 15:38:40,3599.0,14.5769, +2016-07-31 15:45:00,,,18.3376 +2016-07-31 15:48:43,3599.0,14.5756, +2016-07-31 15:58:46,3599.0,14.5769, +2016-07-31 16:00:00,,,18.336 +2016-07-31 16:08:49,3599.0,14.5438, +2016-07-31 16:15:00,,,18.336 +2016-07-31 16:18:52,3599.0,14.5769, +2016-07-31 16:28:55,3599.0,14.5756, +2016-07-31 16:30:00,,,18.3714 +2016-07-31 16:38:58,3599.0,14.5438, +2016-07-31 16:45:00,,,18.336 +2016-07-31 16:49:01,3599.0,14.5769, +2016-07-31 16:59:04,3599.0,14.5769, +2016-07-31 17:00:00,,,18.3714 +2016-07-31 17:09:07,3599.0,14.5756, +2016-07-31 17:15:00,,,18.336 +2016-07-31 17:19:10,3599.0,14.5769, +2016-07-31 17:29:13,3599.0,14.5756, +2016-07-31 17:30:00,,,18.3714 +2016-07-31 17:39:15,3599.0,14.5795, +2016-07-31 17:45:00,,,18.3311 +2016-07-31 17:49:18,3599.0,14.5756, +2016-07-31 17:59:21,3599.0,14.5756, +2016-07-31 18:00:00,,,18.336 +2016-07-31 18:09:24,3599.0,14.5808, +2016-07-31 18:15:00,,,18.3311 +2016-07-31 18:19:27,3599.0,14.5489, +2016-07-31 18:29:29,3599.0,14.5808, +2016-07-31 18:30:00,,,18.336 +2016-07-31 18:39:32,3598.0,14.5808, +2016-07-31 18:45:00,,,18.336 +2016-07-31 18:49:35,3598.0,14.6075, +2016-07-31 18:59:38,3598.0,14.5451, +2016-07-31 19:00:00,,,18.373 +2016-07-31 19:09:41,3598.0,14.5808, +2016-07-31 19:15:00,,,18.336 +2016-07-31 19:19:43,3597.0,14.5808, +2016-07-31 19:29:46,3595.0,14.5795, +2016-07-31 19:30:00,,,18.3376 +2016-07-31 19:39:49,3593.0,14.5808, +2016-07-31 19:45:00,,,18.3311 +2016-07-31 19:49:52,3593.0,14.5808, +2016-07-31 19:59:54,3593.0,14.5808, +2016-07-31 20:00:00,,,18.3714 +2016-07-31 20:09:57,3590.0,14.6753, +2016-07-31 20:15:00,,,18.3376 +2016-07-31 20:20:00,3590.0,14.6766, +2016-07-31 20:30:00,,,18.373 +2016-07-31 20:30:03,3589.0,14.6433, +2016-07-31 20:40:05,3588.0,14.6753, +2016-07-31 20:45:00,,,18.3327 +2016-07-31 20:50:08,3587.0,14.6727, +2016-07-31 21:00:00,,,18.373 +2016-07-31 21:00:11,3586.0,14.6727, +2016-07-31 21:10:13,3586.0,14.6727, +2016-07-31 21:15:00,,,18.373 +2016-07-31 21:20:16,3585.0,14.6714, +2016-07-31 21:30:00,,,18.3714 +2016-07-31 21:30:19,3585.0,14.7034, +2016-07-31 21:40:20,3583.0,14.6714, +2016-07-31 21:45:00,,,18.373 +2016-07-31 21:50:23,3584.0,14.6727, +2016-07-31 22:00:00,,,18.336 +2016-07-31 22:00:26,3583.0,14.6714, +2016-07-31 22:10:28,3583.0,14.6714, +2016-07-31 22:15:00,,,18.3376 +2016-07-31 22:20:31,3581.0,14.7047, +2016-07-31 22:30:00,,,18.3392 +2016-07-31 22:30:33,3581.0,14.6727, +2016-07-31 22:40:36,3580.0,14.6727, +2016-07-31 22:45:00,,,18.3681 +2016-07-31 22:50:38,3580.0,14.7674, +2016-07-31 23:00:00,,,18.336 +2016-07-31 23:00:41,3579.0,14.8008, +2016-07-31 23:10:43,3578.0,14.7674, +2016-07-31 23:15:00,,,18.3376 +2016-07-31 23:20:46,3578.0,14.7687, +2016-07-31 23:30:00,,,18.3665 +2016-07-31 23:30:48,3576.0,14.8008, +2016-07-31 23:40:51,3575.0,14.8008, +2016-07-31 23:45:00,,,18.336 +2016-07-31 23:50:53,3574.0,14.8008, +2016-08-01 00:00:00,,, +2016-08-01 00:15:00,,, +2016-08-01 00:30:00,,, +2016-08-01 00:45:00,,, +2016-08-01 01:00:00,,,18.373 +2016-08-01 01:01:11,3574.0,14.7327, +2016-08-01 01:11:13,3573.0,14.7968, +2016-08-01 01:15:00,,,18.336 +2016-08-01 01:21:16,3573.0,14.7327, +2016-08-01 01:30:00,,,18.336 +2016-08-01 01:31:18,3572.0,14.7648, +2016-08-01 01:41:20,3572.0,14.7968, +2016-08-01 01:45:00,,,18.373 +2016-08-01 01:51:23,3571.0,14.7608, +2016-08-01 02:00:00,,,18.3376 +2016-08-01 02:01:25,3568.0,14.7608, +2016-08-01 02:11:28,3567.0,14.7916, +2016-08-01 02:15:00,,,18.3714 +2016-08-01 02:21:30,3568.0,14.7929, +2016-08-01 02:30:00,,,18.3376 +2016-08-01 02:31:33,3567.0,14.7301, +2016-08-01 02:41:35,3567.0,14.7608, +2016-08-01 02:45:00,,,18.336 +2016-08-01 02:51:38,3566.0,14.7275, +2016-08-01 03:00:00,,,18.373 +2016-08-01 03:01:40,3566.0,14.7929, +2016-08-01 03:11:42,3565.0,14.7595, +2016-08-01 03:15:00,,,18.373 +2016-08-01 03:21:45,3565.0,14.7929, +2016-08-01 03:30:00,,,18.3714 +2016-08-01 03:31:47,3564.0,14.8879, +2016-08-01 03:41:50,3564.0,14.8892, +2016-08-01 03:45:00,,,18.3665 +2016-08-01 03:51:52,3562.0,14.8531, +2016-08-01 04:00:00,,,18.3714 +2016-08-01 04:01:55,3561.0,14.8518, +2016-08-01 04:11:57,3560.0,14.8853, +2016-08-01 04:15:00,,,18.3714 +2016-08-01 04:21:59,3560.0,14.8531, +2016-08-01 04:30:00,,,18.3714 +2016-08-01 04:32:02,3560.0,14.8531, +2016-08-01 04:42:05,3560.0,14.8853, +2016-08-01 04:45:00,,,18.3681 +2016-08-01 04:52:07,3556.0,14.8853, +2016-08-01 05:00:00,,,18.373 +2016-08-01 05:02:09,3559.0,14.8197, +2016-08-01 05:12:12,3559.0,14.8531, +2016-08-01 05:15:00,,,18.373 +2016-08-01 05:22:14,3559.0,14.8853, +2016-08-01 05:30:00,,,18.3665 +2016-08-01 05:32:17,3559.0,14.8531, +2016-08-01 05:42:19,3559.0,14.8518, +2016-08-01 05:45:00,,,18.336 +2016-08-01 05:52:22,3559.0,14.8813, +2016-08-01 06:00:00,,,18.3681 +2016-08-01 06:02:24,3558.0,14.8813, +2016-08-01 06:12:26,3559.0,14.8813, +2016-08-01 06:15:00,,,18.3714 +2016-08-01 06:22:29,3559.0,14.8478, +2016-08-01 06:30:00,,,18.3327 +2016-08-01 06:32:31,3559.0,14.8492, +2016-08-01 06:42:33,3559.0,14.8505, +2016-08-01 06:45:00,,,18.3747 +2016-08-01 06:52:35,3559.0,14.8773, +2016-08-01 07:00:00,,,18.3327 +2016-08-01 07:02:37,3559.0,14.8786, +2016-08-01 07:12:40,3559.0,14.8452, +2016-08-01 07:15:00,,,18.3665 +2016-08-01 07:22:42,3559.0,14.8131, +2016-08-01 07:30:00,,,18.3311 +2016-08-01 07:32:44,3560.0,14.8465, +2016-08-01 07:42:47,3561.0,14.8452, +2016-08-01 07:45:00,,,18.3311 +2016-08-01 07:52:49,3562.0,14.8773, +2016-08-01 08:00:00,,,18.3311 +2016-08-01 08:02:51,3562.0,14.8452, +2016-08-01 08:12:54,3563.0,14.8452, +2016-08-01 08:15:00,,,18.3665 +2016-08-01 08:22:56,3564.0,14.8452, +2016-08-01 08:30:00,,,18.3681 +2016-08-01 08:32:58,3564.0,14.8131, +2016-08-01 08:43:01,3565.0,14.8773, +2016-08-01 08:45:00,,,18.3327 +2016-08-01 08:53:03,3566.0,14.8452, +2016-08-01 09:00:00,,,18.3327 +2016-08-01 09:03:06,3566.0,14.8412, +2016-08-01 09:13:08,3567.0,14.8412, +2016-08-01 09:15:00,,,18.402 +2016-08-01 09:23:10,3567.0,14.8412, +2016-08-01 09:30:00,,,18.3311 +2016-08-01 09:33:13,3569.0,14.8105, +2016-08-01 09:43:15,3570.0,14.8734, +2016-08-01 09:45:00,,,18.3665 +2016-08-01 09:53:17,3571.0,14.8092, +2016-08-01 10:00:00,,,18.3681 +2016-08-01 10:03:20,3572.0,14.8426, +2016-08-01 10:13:22,3573.0,14.8734, +2016-08-01 10:15:00,,,18.3327 +2016-08-01 10:23:24,3574.0,14.8412, +2016-08-01 10:30:00,,,18.3665 +2016-08-01 10:33:27,3574.0,14.8412, +2016-08-01 10:43:29,3576.0,14.8426, +2016-08-01 10:45:00,,,18.2619 +2016-08-01 10:53:31,3576.0,14.8426, +2016-08-01 11:00:00,,,18.2619 +2016-08-01 11:03:34,3577.0,14.7464, +2016-08-01 11:13:36,3577.0,14.7451, +2016-08-01 11:15:00,,,18.2266 +2016-08-01 11:23:39,3578.0,14.7451, +2016-08-01 11:30:00,,,18.2619 +2016-08-01 11:33:41,3579.0,14.7451, +2016-08-01 11:43:43,3580.0,14.7451, +2016-08-01 11:45:00,,,18.2266 +2016-08-01 11:53:46,3581.0,14.7784, +2016-08-01 12:00:00,,,18.2619 +2016-08-01 12:03:48,3581.0,14.7771, +2016-08-01 12:13:51,3581.0,14.7451, +2016-08-01 12:15:00,,,18.2603 +2016-08-01 12:23:53,3584.0,14.6492, +2016-08-01 12:30:00,,,18.2619 +2016-08-01 12:33:56,3584.0,14.6173, +2016-08-01 12:43:58,3585.0,14.6505, +2016-08-01 12:45:00,,,18.2266 +2016-08-01 12:54:01,3585.0,14.6505, +2016-08-01 13:00:00,,,18.2603 +2016-08-01 13:04:04,3586.0,14.6505, +2016-08-01 13:14:06,3586.0,14.6492, +2016-08-01 13:15:00,,,18.2619 +2016-08-01 13:24:09,3586.0,14.6492, +2016-08-01 13:30:00,,,18.225 +2016-08-01 13:34:11,3587.0,14.6492, +2016-08-01 13:44:14,3586.0,14.6492, +2016-08-01 13:45:00,,,18.225 +2016-08-01 13:54:16,3587.0,14.6811, +2016-08-01 14:00:00,,,18.2636 +2016-08-01 14:04:19,3587.0,14.6492, +2016-08-01 14:14:21,3587.0,14.6492, +2016-08-01 14:15:00,,,18.2603 +2016-08-01 14:24:24,3588.0,14.5536, +2016-08-01 14:30:00,,,18.225 +2016-08-01 14:34:26,3588.0,14.5536, +2016-08-01 14:44:29,3588.0,14.5854, +2016-08-01 14:45:00,,,18.2619 +2016-08-01 14:54:32,3588.0,14.5536, +2016-08-01 15:00:00,,,18.2619 +2016-08-01 15:04:34,3588.0,14.5536, +2016-08-01 15:14:37,3589.0,14.5536, +2016-08-01 15:15:00,,,18.2266 +2016-08-01 15:24:39,3589.0,14.5536, +2016-08-01 15:30:00,,,18.225 +2016-08-01 15:34:42,3589.0,14.5536, +2016-08-01 15:44:45,3589.0,14.5536, +2016-08-01 15:45:00,,,18.225 +2016-08-01 15:54:49,3589.0,14.5536, +2016-08-01 16:00:00,,,18.2603 +2016-08-01 16:04:52,3590.0,14.5536, +2016-08-01 16:14:54,3590.0,14.5536, +2016-08-01 16:15:00,,,18.2619 +2016-08-01 16:24:57,3591.0,14.5536, +2016-08-01 16:30:00,,,18.2636 +2016-08-01 16:35:00,3590.0,14.5536, +2016-08-01 16:45:00,,,18.225 +2016-08-01 16:45:02,3591.0,14.5536, +2016-08-01 16:55:05,3591.0,14.5549, +2016-08-01 17:00:00,,,18.2266 +2016-08-01 17:05:08,3592.0,14.5536, +2016-08-01 17:15:00,,,18.2266 +2016-08-01 17:15:11,3591.0,14.5854, +2016-08-01 17:25:13,3591.0,14.5536, +2016-08-01 17:30:00,,,18.225 +2016-08-01 17:35:16,3592.0,14.5536, +2016-08-01 17:45:00,,,18.2603 +2016-08-01 17:45:19,3591.0,14.5536, +2016-08-01 17:55:21,3591.0,14.5549, +2016-08-01 18:00:00,,,18.2266 +2016-08-01 18:05:24,3591.0,14.5854, +2016-08-01 18:15:00,,,18.225 +2016-08-01 18:15:27,3591.0,14.5536, +2016-08-01 18:25:29,3591.0,14.5536, +2016-08-01 18:30:00,,,18.2603 +2016-08-01 18:35:32,3591.0,14.5536, +2016-08-01 18:45:00,,,18.2603 +2016-08-01 18:45:34,3590.0,14.5536, +2016-08-01 18:55:37,3590.0,14.5854, +2016-08-01 19:00:00,,,18.2266 +2016-08-01 19:05:40,3589.0,14.5536, +2016-08-01 19:15:00,,,18.225 +2016-08-01 19:15:42,3588.0,14.5536, +2016-08-01 19:25:45,3588.0,14.5854, +2016-08-01 19:30:00,,,18.2619 +2016-08-01 19:35:48,3588.0,14.5536, +2016-08-01 19:45:00,,,18.2603 +2016-08-01 19:45:50,3587.0,14.5854, +2016-08-01 19:55:53,3586.0,14.5549, +2016-08-01 20:00:00,,,18.2603 +2016-08-01 20:05:55,3587.0,14.5575, +2016-08-01 20:15:00,,,18.1561 +2016-08-01 20:15:58,3586.0,14.5536, +2016-08-01 20:26:01,3585.0,14.5575, +2016-08-01 20:30:00,,,18.1177 +2016-08-01 20:36:03,3584.0,14.5536, +2016-08-01 20:45:00,,,18.1209 +2016-08-01 20:46:06,3584.0,14.5893, +2016-08-01 20:56:08,3583.0,14.5575, +2016-08-01 21:00:00,,,18.2603 +2016-08-01 21:06:11,3582.0,14.5536, +2016-08-01 21:15:00,,,18.2957 +2016-08-01 21:16:14,3580.0,14.5575, +2016-08-01 21:26:16,3578.0,14.5575, +2016-08-01 21:30:00,,,18.1545 +2016-08-01 21:36:18,3578.0,14.5536, +2016-08-01 21:45:00,,,18.1513 +2016-08-01 21:46:28,3576.0,14.5549, +2016-08-01 21:56:31,3576.0,14.5854, +2016-08-01 22:00:00,,,18.1513 +2016-08-01 22:06:33,3575.0,14.5536, +2016-08-01 22:15:00,,,18.1513 +2016-08-01 22:16:36,3574.0,14.5536, +2016-08-01 22:26:38,3574.0,14.5536, +2016-08-01 22:30:00,,,18.1161 +2016-08-01 22:36:41,3572.0,14.5867, +2016-08-01 22:45:00,,,18.1161 +2016-08-01 22:46:43,3572.0,14.5549, +2016-08-01 22:56:46,3572.0,14.5536, +2016-08-01 23:00:00,,,18.2619 +2016-08-01 23:06:48,3571.0,14.5854, +2016-08-01 23:15:00,,,18.1161 +2016-08-01 23:16:51,3571.0,14.5854, +2016-08-01 23:26:53,3570.0,14.5854, +2016-08-01 23:30:00,,,18.2218 +2016-08-01 23:36:56,3569.0,14.5854, +2016-08-01 23:45:00,,,18.1161 +2016-08-01 23:46:58,3569.0,14.5854, +2016-08-01 23:57:01,3568.0,14.5536, +2016-08-02 00:00:00,,,18.1513 +2016-08-02 00:07:03,3568.0,14.5536, +2016-08-02 00:15:00,,,18.1161 +2016-08-02 00:17:06,3568.0,14.5854, +2016-08-02 00:27:08,3567.0,14.5536, +2016-08-02 00:30:00,,,18.1161 +2016-08-02 00:37:11,3566.0,14.5854, +2016-08-02 00:45:00,,,18.1513 +2016-08-02 00:47:13,3564.0,14.5829, +2016-08-02 00:57:15,3565.0,14.5536, +2016-08-02 01:00:00,,,18.1161 +2016-08-02 01:07:17,3565.0,14.5854, +2016-08-02 01:15:00,,,18.1513 +2016-08-02 01:17:19,3565.0,14.550999999999998, +2016-08-02 01:27:22,3564.0,14.5829, +2016-08-02 01:30:00,,,18.1513 +2016-08-02 01:37:24,3563.0,14.5497, +2016-08-02 01:45:00,,,18.1865 +2016-08-02 01:47:27,3564.0,14.5816, +2016-08-02 01:57:29,3564.0,14.5497, +2016-08-02 02:00:00,,,18.1513 +2016-08-02 02:07:32,3552.0,-9.8501, +2016-08-02 02:15:00,,,18.1865 +2016-08-02 02:17:34,3563.0,14.5497, +2016-08-02 02:27:37,3560.0,14.5497, +2016-08-02 02:30:00,,,18.1513 +2016-08-02 02:37:39,3561.0,14.5497, +2016-08-02 02:45:00,,,18.1513 +2016-08-02 02:47:42,3560.0,14.5777, +2016-08-02 02:57:44,3559.0,14.5471, +2016-08-02 03:00:00,,,18.1865 +2016-08-02 03:07:46,3560.0,14.5458, +2016-08-02 03:15:00,,,18.1161 +2016-08-02 03:17:49,3560.0,14.5777, +2016-08-02 03:27:51,3560.0,14.5458, +2016-08-02 03:30:00,,,18.1161 +2016-08-02 03:37:54,3559.0,14.579, +2016-08-02 03:45:00,,,18.1513 +2016-08-02 03:47:56,3559.0,14.542, +2016-08-02 03:57:59,3559.0,14.5433, +2016-08-02 04:00:00,,,18.1513 +2016-08-02 04:08:01,3559.0,14.542, +2016-08-02 04:15:00,,,18.1513 +2016-08-02 04:18:04,3559.0,14.6375, +2016-08-02 04:28:06,3560.0,14.6375, +2016-08-02 04:30:00,,,18.1865 +2016-08-02 04:38:09,3552.0,14.5673, +2016-08-02 04:45:00,,,18.1161 +2016-08-02 04:48:11,3559.0,14.6388, +2016-08-02 04:58:13,3559.0,14.6375, +2016-08-02 05:00:00,,,18.1112 +2016-08-02 05:08:16,3560.0,14.6375, +2016-08-02 05:15:00,,,18.1529 +2016-08-02 05:18:18,3560.0,14.6388, +2016-08-02 05:28:20,3560.0,14.6388, +2016-08-02 05:30:00,,,18.1464 +2016-08-02 05:38:23,3559.0,14.6694, +2016-08-02 05:45:00,,,18.1464 +2016-08-02 05:48:25,3559.0,14.6707, +2016-08-02 05:58:28,3560.0,14.6388, +2016-08-02 06:00:00,,,18.1112 +2016-08-02 06:08:30,3561.0,14.6375, +2016-08-02 06:15:00,,,18.1464 +2016-08-02 06:18:33,3561.0,14.6375, +2016-08-02 06:28:35,3560.0,14.6375, +2016-08-02 06:30:00,,,18.1112 +2016-08-02 06:38:38,3560.0,14.6375, +2016-08-02 06:45:00,,,18.1464 +2016-08-02 06:48:40,3559.0,14.6694, +2016-08-02 06:58:43,3560.0,14.6375, +2016-08-02 07:00:00,,,18.1096 +2016-08-02 07:08:45,3560.0,14.6388, +2016-08-02 07:15:00,,,18.1464 +2016-08-02 07:18:48,3561.0,14.6375, +2016-08-02 07:28:50,3561.0,14.6388, +2016-08-02 07:30:00,,,18.1816 +2016-08-02 07:38:53,3561.0,14.6694, +2016-08-02 07:45:00,,,18.1112 +2016-08-02 07:48:55,3562.0,14.6401, +2016-08-02 07:58:58,3563.0,14.6375, +2016-08-02 08:00:00,,,18.1464 +2016-08-02 08:09:00,3563.0,14.6694, +2016-08-02 08:15:00,,,18.1464 +2016-08-02 08:19:03,3563.0,14.6375, +2016-08-02 08:29:06,3564.0,14.6349, +2016-08-02 08:30:00,,,18.1096 +2016-08-02 08:39:08,3564.0,14.6694, +2016-08-02 08:45:00,,,18.1464 +2016-08-02 08:49:11,3564.0,14.6349, +2016-08-02 08:59:13,3564.0,14.6349, +2016-08-02 09:00:00,,,18.1464 +2016-08-02 09:09:16,3563.0,14.6349, +2016-08-02 09:15:00,,,18.1816 +2016-08-02 09:19:18,3559.0,14.6668, +2016-08-02 09:29:21,3559.0,14.6668, +2016-08-02 09:30:00,,,18.1112 +2016-08-02 09:39:23,3563.0,14.6668, +2016-08-02 09:45:00,,,18.1112 +2016-08-02 09:49:26,3563.0,14.6668, +2016-08-02 09:59:28,3566.0,14.6668, +2016-08-02 10:00:00,,,18.1816 +2016-08-02 10:09:30,3566.0,14.6336, +2016-08-02 10:15:00,,,18.1816 +2016-08-02 10:19:33,3566.0,14.6349, +2016-08-02 10:29:35,3566.0,14.6655, +2016-08-02 10:30:00,,,18.1816 +2016-08-02 10:39:38,3567.0,14.6349, +2016-08-02 10:45:00,,,18.1416 +2016-08-02 10:49:40,3566.0,14.6629, +2016-08-02 10:59:43,3567.0,14.6336, +2016-08-02 11:00:00,,,18.1416 +2016-08-02 11:09:45,3567.0,14.630999999999998, +2016-08-02 11:15:00,,,18.1464 +2016-08-02 11:19:48,3569.0,14.6668, +2016-08-02 11:29:50,3569.0,14.6629, +2016-08-02 11:30:00,,,18.1112 +2016-08-02 11:39:53,3572.0,14.630999999999998, +2016-08-02 11:45:00,,,18.1752 +2016-08-02 11:49:55,3569.0,14.6297, +2016-08-02 11:59:57,3569.0,14.6629, +2016-08-02 12:00:00,,,18.1064 +2016-08-02 12:10:00,3570.0,14.6616, +2016-08-02 12:15:00,,,18.1752 +2016-08-02 12:20:02,3566.0,14.630999999999998, +2016-08-02 12:30:00,,,18.1768 +2016-08-02 12:30:04,3571.0,14.6629, +2016-08-02 12:40:07,3572.0,14.630999999999998, +2016-08-02 12:45:00,,,18.1416 +2016-08-02 12:50:09,3572.0,14.6629, +2016-08-02 13:00:00,,,18.1064 +2016-08-02 13:00:12,3573.0,14.630999999999998, +2016-08-02 13:10:14,3563.0,-7.6414, +2016-08-02 13:15:00,,,18.1416 +2016-08-02 13:20:17,3574.0,14.630999999999998, +2016-08-02 13:30:00,,,18.1064 +2016-08-02 13:30:20,3586.0,14.5978, +2016-08-02 13:40:22,3579.0,14.6297, +2016-08-02 13:45:00,,,18.1064 +2016-08-02 13:50:25,3581.0,14.6297, +2016-08-02 14:00:00,,,18.1064 +2016-08-02 14:00:27,3581.0,14.6297, +2016-08-02 14:10:30,3581.0,14.630999999999998, +2016-08-02 14:15:00,,,18.1064 +2016-08-02 14:20:33,3582.0,14.630999999999998, +2016-08-02 14:30:00,,,18.1768 +2016-08-02 14:30:35,3582.0,14.5355, +2016-08-02 14:40:38,3582.0,14.5394, +2016-08-02 14:45:00,,,18.1768 +2016-08-02 14:50:41,3571.0,14.4681, +2016-08-02 15:00:00,,,18.1064 +2016-08-02 15:00:43,3584.0,14.5394, +2016-08-02 15:10:46,3584.0,14.5355, +2016-08-02 15:15:00,,,18.1416 +2016-08-02 15:20:48,3586.0,14.5394, +2016-08-02 15:30:00,,,18.1432 +2016-08-02 15:30:51,3581.0,14.5394, +2016-08-02 15:40:53,3587.0,14.5394, +2016-08-02 15:45:00,,,18.1416 +2016-08-02 15:50:56,3584.0,14.5712, +2016-08-02 16:00:00,,,18.1064 +2016-08-02 16:00:59,3585.0,-8.9037, +2016-08-02 16:11:01,3589.0,14.5394, +2016-08-02 16:15:00,,,18.1048 +2016-08-02 16:21:04,3587.0,14.7841, +2016-08-02 16:30:00,,,18.1416 +2016-08-02 16:31:06,3589.0,14.5394, +2016-08-02 16:41:09,3588.0,14.5394, +2016-08-02 16:45:00,,,18.1064 +2016-08-02 16:51:11,3588.0,14.5381, +2016-08-02 17:00:00,,,18.1416 +2016-08-02 17:01:14,3589.0,14.5394, +2016-08-02 17:11:17,3589.0,14.542, +2016-08-02 17:15:00,,,18.1416 +2016-08-02 17:21:19,3589.0,14.542, +2016-08-02 17:30:00,,,18.1064 +2016-08-02 17:31:22,3589.0,14.542, +2016-08-02 17:41:24,3590.0,14.542, +2016-08-02 17:45:00,,,18.1416 +2016-08-02 17:51:27,3587.0,14.5738, +2016-08-02 18:00:00,,,18.1064 +2016-08-02 18:01:30,3588.0,14.5445, +2016-08-02 18:11:32,3588.0,14.542, +2016-08-02 18:15:00,,,18.1768 +2016-08-02 18:21:35,3587.0,14.542, +2016-08-02 18:30:00,,,18.14 +2016-08-02 18:31:38,3588.0,14.5433, +2016-08-02 18:41:40,3588.0,14.542, +2016-08-02 18:45:00,,,18.1064 +2016-08-02 18:51:43,3587.0,14.5433, +2016-08-02 19:00:00,,,18.1064 +2016-08-02 19:01:46,3588.0,14.5738, +2016-08-02 19:11:50,3588.0,14.542, +2016-08-02 19:15:00,,,18.1064 +2016-08-02 19:21:53,3588.0,14.5433, +2016-08-02 19:30:00,,,18.1416 +2016-08-02 19:31:56,3588.0,14.542, +2016-08-02 19:41:58,3587.0,14.5738, +2016-08-02 19:45:00,,,18.1064 +2016-08-02 19:52:01,3587.0,14.5738, +2016-08-02 20:00:00,,,18.1064 +2016-08-02 20:02:04,3587.0,14.542, +2016-08-02 20:12:06,3585.0,14.5738, +2016-08-02 20:15:00,,,18.1064 +2016-08-02 20:22:09,3586.0,14.542, +2016-08-02 20:30:00,,,18.1064 +2016-08-02 20:32:12,3585.0,14.542, +2016-08-02 20:42:14,3586.0,14.542, +2016-08-02 20:45:00,,,18.1064 +2016-08-02 20:52:17,3584.0,14.542, +2016-08-02 21:00:00,,,18.14 +2016-08-02 21:02:20,3584.0,14.5738, +2016-08-02 21:12:23,3584.0,14.5433, +2016-08-02 21:15:00,,,18.1064 +2016-08-02 21:22:25,3583.0,14.542, +2016-08-02 21:30:00,,,18.108 +2016-08-02 21:32:28,3582.0,14.5738, +2016-08-02 21:42:31,3582.0,14.5738, +2016-08-02 21:45:00,,,18.1064 +2016-08-02 21:52:34,3582.0,14.542, +2016-08-02 22:00:00,,,18.1064 +2016-08-02 22:02:36,3582.0,14.542, +2016-08-02 22:12:39,3581.0,14.5738, +2016-08-02 22:15:00,,,18.1064 +2016-08-02 22:22:41,3581.0,14.542, +2016-08-02 22:30:00,,,18.1064 +2016-08-02 22:32:44,3581.0,14.5433, +2016-08-02 22:42:46,3578.0,14.542, +2016-08-02 22:45:00,,,18.1064 +2016-08-02 22:52:49,3578.0,14.542, +2016-08-02 23:00:00,,,18.1064 +2016-08-02 23:02:52,3578.0,14.542, +2016-08-02 23:12:54,3580.0,14.542, +2016-08-02 23:15:00,,,18.1064 +2016-08-02 23:22:57,3577.0,14.542, +2016-08-02 23:30:00,,,18.1064 +2016-08-02 23:33:00,3580.0,14.542, +2016-08-02 23:43:02,3579.0,14.5738, +2016-08-02 23:45:00,,,18.1064 +2016-08-02 23:53:05,3579.0,14.542, +2016-08-03 00:00:00,,,18.1064 +2016-08-03 00:03:07,3579.0,14.5738, +2016-08-03 00:13:10,3579.0,14.542, +2016-08-03 00:15:00,,,18.1064 +2016-08-03 00:23:12,3580.0,14.5751, +2016-08-03 00:30:00,,,18.1064 +2016-08-03 00:33:15,3580.0,14.542, +2016-08-03 00:43:17,3580.0,14.5738, +2016-08-03 00:45:00,,,18.1416 +2016-08-03 00:53:20,3579.0,14.5433, +2016-08-03 01:00:00,,,18.1048 +2016-08-03 01:03:23,3579.0,14.542, +2016-08-03 01:13:25,3579.0,14.5738, +2016-08-03 01:15:00,,,18.1064 +2016-08-03 01:23:28,3579.0,14.5738, +2016-08-03 01:30:00,,,18.1064 +2016-08-03 01:33:30,3578.0,14.5738, +2016-08-03 01:43:33,3579.0,14.5738, +2016-08-03 01:45:00,,,18.1416 +2016-08-03 01:53:35,3578.0,14.542, +2016-08-03 02:00:00,,,18.1416 +2016-08-03 02:03:38,3579.0,14.542, +2016-08-03 02:13:40,3577.0,14.5738, +2016-08-03 02:15:00,,,18.14 +2016-08-03 02:23:43,3578.0,14.5738, +2016-08-03 02:30:00,,,18.1064 +2016-08-03 02:33:45,3579.0,14.542, +2016-08-03 02:43:48,3578.0,14.5433, +2016-08-03 02:45:00,,,18.1064 +2016-08-03 02:53:50,3578.0,14.5433, +2016-08-03 03:00:00,,,18.1064 +2016-08-03 03:03:53,3578.0,14.5738, +2016-08-03 03:13:55,3578.0,14.542, +2016-08-03 03:15:00,,,18.108 +2016-08-03 03:23:58,3578.0,14.542, +2016-08-03 03:30:00,,,18.1416 +2016-08-03 03:34:00,3578.0,14.542, +2016-08-03 03:44:10,3577.0,14.5738, +2016-08-03 03:45:00,,,18.1048 +2016-08-03 03:54:12,3578.0,14.542, +2016-08-03 04:00:00,,,18.1064 +2016-08-03 04:04:15,3578.0,14.542, +2016-08-03 04:14:17,3576.0,14.5738, +2016-08-03 04:15:00,,,18.1416 +2016-08-03 04:24:19,3577.0,14.5433, +2016-08-03 04:30:00,,,18.1064 +2016-08-03 04:34:21,3577.0,14.542, +2016-08-03 04:44:24,3578.0,14.542, +2016-08-03 04:45:00,,,18.1416 +2016-08-03 04:54:26,3578.0,14.5738, +2016-08-03 05:00:00,,,18.14 +2016-08-03 05:04:29,3578.0,14.6375, +2016-08-03 05:14:31,3578.0,14.6375, +2016-08-03 05:15:00,,,18.1064 +2016-08-03 05:24:34,3579.0,14.6694, +2016-08-03 05:30:00,,,18.1416 +2016-08-03 05:34:36,3579.0,14.6388, +2016-08-03 05:44:38,3578.0,14.6388, +2016-08-03 05:45:00,,,18.1064 +2016-08-03 05:54:48,3579.0,14.6388, +2016-08-03 06:00:00,,,18.1064 +2016-08-03 06:04:51,3580.0,14.6375, +2016-08-03 06:14:53,3579.0,14.5738, +2016-08-03 06:15:00,,,18.1064 +2016-08-03 06:24:56,3580.0,14.542, +2016-08-03 06:30:00,,,18.1064 +2016-08-03 06:34:58,3580.0,14.542, +2016-08-03 06:45:00,,,18.1416 +2016-08-03 06:45:01,3580.0,14.542, +2016-08-03 06:55:03,3581.0,14.6375, +2016-08-03 07:00:00,,,18.1064 +2016-08-03 07:05:06,3580.0,14.5738, +2016-08-03 07:15:00,,,18.1416 +2016-08-03 07:15:08,3581.0,14.542, +2016-08-03 07:25:11,3581.0,14.542, +2016-08-03 07:30:00,,,18.1064 +2016-08-03 07:35:14,3581.0,14.542, +2016-08-03 07:45:00,,,18.1064 +2016-08-03 07:45:16,3581.0,14.542, +2016-08-03 07:55:19,3581.0,14.542, +2016-08-03 08:00:00,,,18.1064 +2016-08-03 08:05:21,3581.0,14.5738, +2016-08-03 08:15:00,,,18.1416 +2016-08-03 08:15:24,3582.0,14.542, +2016-08-03 08:25:27,3581.0,14.542, +2016-08-03 08:30:00,,,18.14 +2016-08-03 08:35:29,3582.0,14.542, +2016-08-03 08:45:00,,,18.1064 +2016-08-03 08:45:32,3582.0,14.6388, +2016-08-03 08:55:34,3582.0,14.542, +2016-08-03 09:00:00,,,18.1064 +2016-08-03 09:05:37,3583.0,14.5738, +2016-08-03 09:15:00,,,18.1064 +2016-08-03 09:15:39,3584.0,14.5738, +2016-08-03 09:25:42,3584.0,14.6375, +2016-08-03 09:30:00,,,18.1064 +2016-08-03 09:35:45,3584.0,14.6694, +2016-08-03 09:45:00,,,18.1048 +2016-08-03 09:45:47,3584.0,14.542, +2016-08-03 09:55:50,3585.0,14.5738, +2016-08-03 10:00:00,,,18.1416 +2016-08-03 10:05:53,3583.0,14.6694, +2016-08-03 10:15:00,,,18.0012 +2016-08-03 10:15:55,3584.0,14.5738, +2016-08-03 10:25:58,3586.0,14.5738, +2016-08-03 10:30:00,,,18.0362 +2016-08-03 10:36:01,3587.0,14.5433, +2016-08-03 10:45:00,,,18.0012 +2016-08-03 10:46:04,3588.0,14.5738, +2016-08-03 10:56:06,3588.0,14.542, +2016-08-03 11:00:00,,,17.9964 +2016-08-03 11:06:16,3589.0,14.542, +2016-08-03 11:15:00,,,17.9996 +2016-08-03 11:16:19,3591.0,14.5738, +2016-08-03 11:26:22,3591.0,14.5738, +2016-08-03 11:30:00,,,18.0012 +2016-08-03 11:36:24,3591.0,14.542, +2016-08-03 11:45:00,,,18.0012 +2016-08-03 11:46:27,3592.0,14.6375, +2016-08-03 11:56:30,3592.0,14.542, +2016-08-03 12:00:00,,,18.0713 +2016-08-03 12:06:32,3592.0,14.5738, +2016-08-03 12:15:00,,,18.0028 +2016-08-03 12:16:35,3593.0,14.542, +2016-08-03 12:26:38,3593.0,14.542, +2016-08-03 12:30:00,,,18.0012 +2016-08-03 12:36:41,3594.0,14.542, +2016-08-03 12:45:00,,,18.0012 +2016-08-03 12:46:43,3595.0,14.542, +2016-08-03 12:56:46,3595.0,14.5445, +2016-08-03 13:00:00,,,18.0012 +2016-08-03 13:06:49,3596.0,14.5738, +2016-08-03 13:15:00,,,17.9964 +2016-08-03 13:16:51,3597.0,14.5777, +2016-08-03 13:27:01,3598.0,14.514, +2016-08-03 13:30:00,,,18.0012 +2016-08-03 13:37:04,3598.0,14.5458, +2016-08-03 13:45:00,,,18.0012 +2016-08-03 13:47:06,3598.0,14.5458, +2016-08-03 13:57:09,3598.0,14.5458, +2016-08-03 14:00:00,,,18.0314 +2016-08-03 14:07:12,3598.0,14.5777, +2016-08-03 14:15:00,,,17.9964 +2016-08-03 14:17:14,3599.0,14.5458, +2016-08-03 14:27:17,3599.0,14.5497, +2016-08-03 14:30:00,,,18.0362 +2016-08-03 14:37:20,3599.0,14.5829, +2016-08-03 14:45:00,,,18.0362 +2016-08-03 14:47:23,3598.0,14.550999999999998, +2016-08-03 14:57:25,3599.0,14.5816, +2016-08-03 15:00:00,,,17.9964 +2016-08-03 15:07:28,3599.0,14.5497, +2016-08-03 15:15:00,,,18.0012 +2016-08-03 15:17:31,3598.0,14.5497, +2016-08-03 15:27:34,3599.0,14.5536, +2016-08-03 15:30:00,,,17.9296 +2016-08-03 15:37:36,3599.0,14.5523, +2016-08-03 15:45:00,,,17.9312 +2016-08-03 15:47:39,3599.0,14.5536, +2016-08-03 15:57:42,3599.0,14.5854, +2016-08-03 16:00:00,,,17.9264 +2016-08-03 16:07:45,3599.0,14.5549, +2016-08-03 16:15:00,,,17.9312 +2016-08-03 16:17:47,3598.0,14.5536, +2016-08-03 16:27:50,3599.0,14.5854, +2016-08-03 16:30:00,,,17.9312 +2016-08-03 16:37:53,3598.0,14.5536, +2016-08-03 16:45:00,,,17.9264 +2016-08-03 16:47:56,3598.0,14.5536, +2016-08-03 16:57:58,3598.0,14.5536, +2016-08-03 17:00:00,,,17.9312 +2016-08-03 17:08:01,3598.0,14.5536, +2016-08-03 17:15:00,,,17.9296 +2016-08-03 17:18:04,3598.0,14.5536, +2016-08-03 17:28:07,3598.0,14.5523, +2016-08-03 17:30:00,,,17.963 +2016-08-03 17:38:09,3598.0,14.5854, +2016-08-03 17:45:00,,,17.9312 +2016-08-03 17:48:12,3598.0,14.5536, +2016-08-03 17:58:15,3598.0,14.5536, +2016-08-03 18:00:00,,,17.9312 +2016-08-03 18:08:18,3598.0,14.5536, +2016-08-03 18:15:00,,,17.9312 +2016-08-03 18:18:20,3598.0,14.5575, +2016-08-03 18:28:23,3598.0,14.5893, +2016-08-03 18:30:00,,,17.8963 +2016-08-03 18:38:26,3598.0,14.5893, +2016-08-03 18:45:00,,,17.9264 +2016-08-03 18:48:28,3596.0,14.5575, +2016-08-03 18:58:31,3598.0,14.5575, +2016-08-03 19:00:00,,,17.9312 +2016-08-03 19:08:34,3596.0,14.5575, +2016-08-03 19:15:00,,,17.9662 +2016-08-03 19:18:37,3597.0,14.5575, +2016-08-03 19:28:39,3597.0,14.5893, +2016-08-03 19:30:00,,,17.9296 +2016-08-03 19:38:42,3596.0,14.5906, +2016-08-03 19:45:00,,,17.9312 +2016-08-03 19:48:45,3596.0,14.5575, +2016-08-03 19:58:47,3596.0,14.5906, +2016-08-03 20:00:00,,,17.9662 +2016-08-03 20:08:50,3595.0,14.5575, +2016-08-03 20:15:00,,,17.9312 +2016-08-03 20:18:53,3594.0,14.5575, +2016-08-03 20:28:55,3595.0,14.5575, +2016-08-03 20:30:00,,,17.9312 +2016-08-03 20:38:58,3595.0,14.5588, +2016-08-03 20:45:00,,,17.9662 +2016-08-03 20:49:00,3594.0,14.5575, +2016-08-03 20:59:03,3594.0,14.5893, +2016-08-03 21:00:00,,,17.9312 +2016-08-03 21:09:05,3594.0,14.5893, +2016-08-03 21:15:00,,,17.9312 +2016-08-03 21:19:08,3592.0,14.5575, +2016-08-03 21:29:11,3592.0,14.5893, +2016-08-03 21:30:00,,,17.9662 +2016-08-03 21:39:13,3592.0,14.5575, +2016-08-03 21:45:00,,,17.9312 +2016-08-03 21:49:16,3593.0,14.5575, +2016-08-03 21:59:18,3592.0,14.5893, +2016-08-03 22:00:00,,,17.9312 +2016-08-03 22:09:21,3592.0,14.5893, +2016-08-03 22:15:00,,,17.9312 +2016-08-03 22:19:24,3592.0,14.5575, +2016-08-03 22:29:28,3592.0,14.5575, +2016-08-03 22:30:00,,,17.9312 +2016-08-03 22:39:31,3592.0,14.5575, +2016-08-03 22:45:00,,,17.9312 +2016-08-03 22:49:34,3592.0,14.5906, +2016-08-03 22:59:36,3592.0,14.5893, +2016-08-03 23:00:00,,,17.9296 +2016-08-03 23:09:39,3591.0,14.5893, +2016-08-03 23:15:00,,,17.9312 +2016-08-03 23:19:42,3592.0,14.5575, +2016-08-03 23:29:44,3591.0,14.5614, +2016-08-03 23:30:00,,,17.9312 +2016-08-03 23:39:47,3591.0,14.5893, +2016-08-03 23:45:00,,,17.9312 +2016-08-03 23:49:50,3591.0,14.5893, +2016-08-03 23:59:52,3591.0,14.5575, +2016-08-04 00:00:00,,,17.9312 +2016-08-04 00:09:55,3590.0,14.5614, +2016-08-04 00:15:00,,,17.9312 +2016-08-04 00:19:58,3591.0,14.5575, +2016-08-04 00:30:00,3590.0,14.5575,17.9312 +2016-08-04 00:40:03,3590.0,14.5614, +2016-08-04 00:45:00,,,17.9312 +2016-08-04 00:50:06,3590.0,14.5893, +2016-08-04 01:00:00,,,17.9312 +2016-08-04 01:00:08,3590.0,14.5575, +2016-08-04 01:10:11,3589.0,14.5906, +2016-08-04 01:15:00,,,17.9312 +2016-08-04 01:20:14,3589.0,14.5893, +2016-08-04 01:30:00,,,17.9296 +2016-08-04 01:30:16,3589.0,14.5575, +2016-08-04 01:40:19,3588.0,14.5893, +2016-08-04 01:45:00,,,17.9312 +2016-08-04 01:50:22,3588.0,14.5893, +2016-08-04 02:00:00,,,17.9312 +2016-08-04 02:00:25,3589.0,14.5575, +2016-08-04 02:10:27,3587.0,14.5562, +2016-08-04 02:15:00,,,17.9312 +2016-08-04 02:20:30,3588.0,14.5893, +2016-08-04 02:30:00,,,17.9312 +2016-08-04 02:30:33,3588.0,14.5893, +2016-08-04 02:40:35,3588.0,14.5893, +2016-08-04 02:45:00,,,17.9312 +2016-08-04 02:50:38,3588.0,14.5919, +2016-08-04 03:00:00,,,17.9312 +2016-08-04 03:00:41,3588.0,14.5588, +2016-08-04 03:10:43,3588.0,14.5575, +2016-08-04 03:15:00,,,17.9312 +2016-08-04 03:20:46,3588.0,14.5575, +2016-08-04 03:30:00,,,17.9312 +2016-08-04 03:30:49,3588.0,14.5575, +2016-08-04 03:40:51,3588.0,14.5575, +2016-08-04 03:45:00,,,17.9312 +2016-08-04 03:50:54,3587.0,14.5893, +2016-08-04 04:00:00,,,17.9312 +2016-08-04 04:00:57,3588.0,14.5575, +2016-08-04 04:10:59,3587.0,14.5893, +2016-08-04 04:15:00,,,17.9312 +2016-08-04 04:21:02,3587.0,14.5893, +2016-08-04 04:30:00,,,17.9662 +2016-08-04 04:31:05,3587.0,14.5575, +2016-08-04 04:41:07,3587.0,14.5893, +2016-08-04 04:45:00,,,17.9312 +2016-08-04 04:51:10,3586.0,14.5575, +2016-08-04 05:00:00,,,17.9312 +2016-08-04 05:01:12,3587.0,14.5893, +2016-08-04 05:11:15,3587.0,14.5893, +2016-08-04 05:15:00,,,17.9312 +2016-08-04 05:21:18,3587.0,14.5575, +2016-08-04 05:30:00,,,17.9312 +2016-08-04 05:31:20,3587.0,14.5893, +2016-08-04 05:41:23,3587.0,14.5893, +2016-08-04 05:45:00,,,17.9328 +2016-08-04 05:51:25,3587.0,14.5575, +2016-08-04 06:00:00,,,17.9312 +2016-08-04 06:01:28,3587.0,14.5575, +2016-08-04 06:11:31,3586.0,14.5893, +2016-08-04 06:15:00,,,17.9312 +2016-08-04 06:21:33,3586.0,14.5575, +2016-08-04 06:30:00,,,17.9312 +2016-08-04 06:31:36,3586.0,14.5575, +2016-08-04 06:41:38,3586.0,14.5575, +2016-08-04 06:45:00,,,17.9662 +2016-08-04 06:51:41,3585.0,14.5893, +2016-08-04 07:00:00,,,17.9312 +2016-08-04 07:01:43,3586.0,14.5893, +2016-08-04 07:11:46,3586.0,14.5575, +2016-08-04 07:15:00,,,17.9296 +2016-08-04 07:21:49,3586.0,14.5575, +2016-08-04 07:30:00,,,17.9312 +2016-08-04 07:31:51,3586.0,14.5575, +2016-08-04 07:41:53,3587.0,14.5893, +2016-08-04 07:45:00,,,17.9662 +2016-08-04 07:51:56,3586.0,14.5575, +2016-08-04 08:00:00,,,17.9312 +2016-08-04 08:01:58,3587.0,14.5893, +2016-08-04 08:12:01,3583.0,14.5588, +2016-08-04 08:15:00,,,17.9662 +2016-08-04 08:22:04,3587.0,14.5575, +2016-08-04 08:30:00,,,17.9662 +2016-08-04 08:32:07,3588.0,14.5575, +2016-08-04 08:42:09,3588.0,14.5575, +2016-08-04 08:45:00,,,17.9312 +2016-08-04 08:52:12,3588.0,14.5575, +2016-08-04 09:00:00,,,17.9312 +2016-08-04 09:02:15,3588.0,14.5575, +2016-08-04 09:12:17,3590.0,14.5575, +2016-08-04 09:15:00,,,17.9312 +2016-08-04 09:22:20,3590.0,14.5893, +2016-08-04 09:30:00,,,17.9312 +2016-08-04 09:32:23,3591.0,14.5893, +2016-08-04 09:42:25,3591.0,14.5575, +2016-08-04 09:45:00,,,17.9312 +2016-08-04 09:52:28,3591.0,14.5893, +2016-08-04 10:00:00,,,17.9312 +2016-08-04 10:02:31,3591.0,14.5575, +2016-08-04 10:12:33,3591.0,14.5575, +2016-08-04 10:15:00,,,17.9312 +2016-08-04 10:22:36,3592.0,14.5906, +2016-08-04 10:30:00,,,17.9312 +2016-08-04 10:32:38,3591.0,14.5575, +2016-08-04 10:42:41,3590.0,14.5575, +2016-08-04 10:45:00,,,17.9312 +2016-08-04 10:52:44,3590.0,14.5575, +2016-08-04 11:00:00,,,17.9312 +2016-08-04 11:02:46,3589.0,14.5575, +2016-08-04 11:12:49,3590.0,14.5893, +2016-08-04 11:15:00,,,17.9312 +2016-08-04 11:22:52,3591.0,14.5906, +2016-08-04 11:30:00,,,17.9312 +2016-08-04 11:32:54,3587.0,14.5893, +2016-08-04 11:42:57,3590.0,14.5575, +2016-08-04 11:45:00,,,17.9312 +2016-08-04 11:53:00,3592.0,14.5575, +2016-08-04 12:00:00,,,17.9312 +2016-08-04 12:03:02,3592.0,14.5575, +2016-08-04 12:13:05,3592.0,14.5893, +2016-08-04 12:15:00,,,17.9312 +2016-08-04 12:23:08,3593.0,14.5893, +2016-08-04 12:30:00,,,17.9312 +2016-08-04 12:33:11,3593.0,14.4621, +2016-08-04 12:43:13,3594.0,14.4939, +2016-08-04 12:45:00,,,17.8614 +2016-08-04 12:53:16,3595.0,14.4621, +2016-08-04 13:00:00,,,17.8266 +2016-08-04 13:03:19,3595.0,14.4621, +2016-08-04 13:13:21,3595.0,14.4621, +2016-08-04 13:15:00,,,17.8266 +2016-08-04 13:23:24,3596.0,14.4939, +2016-08-04 13:30:00,,,17.7902 +2016-08-04 13:33:27,3596.0,14.4608, +2016-08-04 13:43:30,3597.0,14.4621, +2016-08-04 13:45:00,,,17.8266 +2016-08-04 13:53:33,3597.0,14.4634, +2016-08-04 14:00:00,,,17.7918 +2016-08-04 14:03:35,3598.0,14.4621, +2016-08-04 14:13:38,3598.0,14.4621, +2016-08-04 14:15:00,,,17.8266 +2016-08-04 14:23:41,3598.0,14.4939, +2016-08-04 14:30:00,,,17.8266 +2016-08-04 14:33:44,3598.0,14.4621, +2016-08-04 14:43:47,3598.0,14.4621, +2016-08-04 14:45:00,,,17.8266 +2016-08-04 14:53:49,3598.0,14.4608, +2016-08-04 15:00:00,,,17.8282 +2016-08-04 15:03:52,3598.0,14.367, +2016-08-04 15:13:55,3598.0,14.367, +2016-08-04 15:15:00,,,17.8266 +2016-08-04 15:23:58,3598.0,14.367, +2016-08-04 15:30:00,,,17.8266 +2016-08-04 15:34:01,3598.0,14.367, +2016-08-04 15:44:03,3598.0,14.367, +2016-08-04 15:45:00,,,17.7918 +2016-08-04 15:54:06,3598.0,14.367, +2016-08-04 16:00:00,,,17.8266 +2016-08-04 16:04:09,3598.0,14.3708, +2016-08-04 16:14:12,3598.0,14.367, +2016-08-04 16:15:00,,,17.8266 +2016-08-04 16:24:14,3598.0,14.3696, +2016-08-04 16:30:00,,,17.825 +2016-08-04 16:34:17,3598.0,14.3696, +2016-08-04 16:44:19,3598.0,14.3696, +2016-08-04 16:45:00,,,17.8266 +2016-08-04 16:54:21,3598.0,14.3696, +2016-08-04 17:00:00,,,17.8266 +2016-08-04 17:04:24,3598.0,14.3696, +2016-08-04 17:14:27,3599.0,14.3696, +2016-08-04 17:15:00,,,17.8282 +2016-08-04 17:24:30,3598.0,14.3696, +2016-08-04 17:30:00,,,17.7918 +2016-08-04 17:34:32,3598.0,14.3696, +2016-08-04 17:44:35,3599.0,14.4012, +2016-08-04 17:45:00,,,17.7918 +2016-08-04 17:54:38,3598.0,14.3696, +2016-08-04 18:00:00,,,17.8266 +2016-08-04 18:04:41,3598.0,14.3734, +2016-08-04 18:14:43,3598.0,14.3696, +2016-08-04 18:15:00,,,17.7902 +2016-08-04 18:24:46,3598.0,14.3696, +2016-08-04 18:30:00,,,17.8266 +2016-08-04 18:34:48,3598.0,14.3708, +2016-08-04 18:44:51,3598.0,14.3734, +2016-08-04 18:45:00,,,17.8266 +2016-08-04 18:54:54,3598.0,14.3734, +2016-08-04 19:00:00,,,17.8266 +2016-08-04 19:04:56,3596.0,14.4368, +2016-08-04 19:14:59,3598.0,14.3734, +2016-08-04 19:15:00,,,17.8266 +2016-08-04 19:25:02,3598.0,14.4051, +2016-08-04 19:30:00,,,17.8266 +2016-08-04 19:35:04,3598.0,14.3734, +2016-08-04 19:45:00,,,17.8266 +2016-08-04 19:45:07,3597.0,14.3734, +2016-08-04 19:55:10,3596.0,14.4064, +2016-08-04 20:00:00,,,17.8266 +2016-08-04 20:05:12,3594.0,14.4368, +2016-08-04 20:15:00,,,17.8266 +2016-08-04 20:15:15,3593.0,14.3734, +2016-08-04 20:25:18,3593.0,14.3734, +2016-08-04 20:30:00,,,17.7918 +2016-08-04 20:35:20,3590.0,14.5003, +2016-08-04 20:45:00,,,17.825 +2016-08-04 20:45:23,3588.0,14.5003, +2016-08-04 20:55:26,3588.0,14.4686, +2016-08-04 21:00:00,,,17.7902 +2016-08-04 21:05:28,3588.0,14.5003, +2016-08-04 21:15:00,,,17.8266 +2016-08-04 21:15:31,3587.0,14.4686, +2016-08-04 21:25:34,3587.0,14.5003, +2016-08-04 21:30:00,,,17.7918 +2016-08-04 21:35:36,3585.0,14.4686, +2016-08-04 21:45:00,,,17.8266 +2016-08-04 21:45:39,3585.0,14.4698, +2016-08-04 21:55:41,3582.0,14.4686, +2016-08-04 22:00:00,,,17.8266 +2016-08-04 22:05:44,3584.0,14.4698, +2016-08-04 22:15:00,,,17.7918 +2016-08-04 22:15:46,3583.0,14.4686, +2016-08-04 22:25:49,3585.0,14.4686, +2016-08-04 22:30:00,,,17.8266 +2016-08-04 22:35:52,3582.0,14.5003, +2016-08-04 22:45:00,,,17.8614 +2016-08-04 22:45:54,3583.0,14.5321, +2016-08-04 22:55:57,3583.0,14.466, +2016-08-04 23:00:00,,,17.7918 +2016-08-04 23:05:59,3582.0,14.4965, +2016-08-04 23:15:00,,,17.8266 +2016-08-04 23:16:02,3580.0,14.466, +2016-08-04 23:26:04,3581.0,14.466, +2016-08-04 23:30:00,,,17.8266 +2016-08-04 23:36:07,3581.0,14.4673, +2016-08-04 23:45:00,,,17.8282 +2016-08-04 23:46:09,3581.0,14.466, +2016-08-04 23:56:12,3581.0,14.466, +2016-08-05 00:00:00,,,17.8266 +2016-08-05 00:06:15,3581.0,14.466, +2016-08-05 00:15:00,,,17.8266 +2016-08-05 00:16:17,3580.0,14.4647, +2016-08-05 00:26:20,3580.0,14.4977, +2016-08-05 00:30:00,,,17.8266 +2016-08-05 00:36:22,3580.0,14.4647, +2016-08-05 00:45:00,,,17.8614 +2016-08-05 00:46:25,3579.0,14.4647, +2016-08-05 00:56:27,3578.0,14.4621, +2016-08-05 01:00:00,,,17.8266 +2016-08-05 01:06:30,3578.0,14.4621, +2016-08-05 01:15:00,,,17.8266 +2016-08-05 01:16:32,3578.0,14.4939, +2016-08-05 01:26:35,3578.0,14.4621, +2016-08-05 01:30:00,,,17.8266 +2016-08-05 01:36:37,3577.0,14.4939, +2016-08-05 01:45:00,,,17.8266 +2016-08-05 01:46:41,3577.0,14.4939, +2016-08-05 01:56:44,3577.0,14.4621, +2016-08-05 02:00:00,,,17.8266 +2016-08-05 02:06:47,3577.0,14.4621, +2016-08-05 02:15:00,,,17.8266 +2016-08-05 02:16:50,3576.0,14.4621, +2016-08-05 02:26:52,3576.0,14.4608, +2016-08-05 02:30:00,,,17.8266 +2016-08-05 02:36:55,3576.0,14.4621, +2016-08-05 02:45:00,,,17.8266 +2016-08-05 02:46:57,3576.0,14.5257, +2016-08-05 02:57:00,3576.0,14.4621, +2016-08-05 03:00:00,,,17.7918 +2016-08-05 03:07:03,3576.0,14.4621, +2016-08-05 03:15:00,,,17.8266 +2016-08-05 03:17:05,3575.0,14.4621, +2016-08-05 03:27:08,3576.0,14.4939, +2016-08-05 03:30:00,,,17.8282 +2016-08-05 03:37:10,3575.0,14.4621, +2016-08-05 03:45:00,,,17.8266 +2016-08-05 03:47:13,3576.0,14.4621, +2016-08-05 03:57:15,3575.0,14.4621, +2016-08-05 04:00:00,,,17.8266 +2016-08-05 04:07:18,3575.0,14.4939, +2016-08-05 04:15:00,,,17.8266 +2016-08-05 04:17:20,3575.0,14.49, +2016-08-05 04:27:23,3576.0,14.49, +2016-08-05 04:30:00,,,17.8266 +2016-08-05 04:37:25,3575.0,14.4583, +2016-08-05 04:45:00,,,17.8266 +2016-08-05 04:47:28,3575.0,14.5218, +2016-08-05 04:57:30,3574.0,14.49, +2016-08-05 05:00:00,,,17.8266 +2016-08-05 05:07:33,3574.0,14.4583, +2016-08-05 05:15:00,,,17.8614 +2016-08-05 05:17:35,3574.0,14.4583, +2016-08-05 05:27:38,3574.0,14.49, +2016-08-05 05:30:00,,,17.8266 +2016-08-05 05:37:40,3574.0,14.49, +2016-08-05 05:45:00,,,17.8266 +2016-08-05 05:47:43,3574.0,14.4583, +2016-08-05 05:57:45,3574.0,14.5218, +2016-08-05 06:00:00,,,17.8266 +2016-08-05 06:07:47,3572.0,14.49, +2016-08-05 06:15:00,,,17.8266 +2016-08-05 06:17:50,3574.0,14.49, +2016-08-05 06:27:52,3573.0,14.4583, +2016-08-05 06:30:00,,,17.8266 +2016-08-05 06:37:55,3573.0,14.457, +2016-08-05 06:45:00,,,17.8266 +2016-08-05 06:47:57,3573.0,14.4583, +2016-08-05 06:58:00,3574.0,14.4583, +2016-08-05 07:00:00,,,17.7918 +2016-08-05 07:08:02,3574.0,14.4583, +2016-08-05 07:15:00,,,17.7918 +2016-08-05 07:18:04,3574.0,14.49, +2016-08-05 07:28:07,3574.0,14.4583, +2016-08-05 07:30:00,,,17.8266 +2016-08-05 07:38:09,3573.0,14.4887, +2016-08-05 07:45:00,,,17.8266 +2016-08-05 07:48:12,3574.0,14.49, +2016-08-05 07:58:14,3574.0,14.49, +2016-08-05 08:00:00,,,17.8266 +2016-08-05 08:08:17,3575.0,14.4583, +2016-08-05 08:15:00,,,17.8266 +2016-08-05 08:18:19,3575.0,14.4544, +2016-08-05 08:28:22,3576.0,14.4544, +2016-08-05 08:30:00,,,17.8266 +2016-08-05 08:38:24,3576.0,14.4544, +2016-08-05 08:45:00,,,17.8266 +2016-08-05 08:48:27,3577.0,14.4544, +2016-08-05 08:58:29,3577.0,14.4861, +2016-08-05 09:00:00,,,17.8266 +2016-08-05 09:08:32,3577.0,14.4544, +2016-08-05 09:15:00,,,17.8266 +2016-08-05 09:18:34,3578.0,14.4544, +2016-08-05 09:28:37,3579.0,14.4544, +2016-08-05 09:30:00,,,17.8266 +2016-08-05 09:38:39,3580.0,14.4544, +2016-08-05 09:45:00,,,17.8266 +2016-08-05 09:48:42,3581.0,14.4544, +2016-08-05 09:58:45,3581.0,14.4544, +2016-08-05 10:00:00,,,17.8266 +2016-08-05 10:08:47,3582.0,14.5179, +2016-08-05 10:15:00,,,17.8266 +2016-08-05 10:18:50,3583.0,14.4861, +2016-08-05 10:28:52,3583.0,14.4544, +2016-08-05 10:30:00,,,17.8266 +2016-08-05 10:38:55,3585.0,14.4861, +2016-08-05 10:45:00,,,17.825 +2016-08-05 10:48:57,3585.0,14.4861, +2016-08-05 10:58:59,3586.0,14.3593, +2016-08-05 11:00:00,,,17.8266 +2016-08-05 11:09:02,3587.0,14.4227, +2016-08-05 11:15:00,,,17.8266 +2016-08-05 11:19:04,3588.0,14.3593, +2016-08-05 11:29:07,3588.0,14.3593, +2016-08-05 11:30:00,,,17.7918 +2016-08-05 11:39:10,3589.0,14.3593, +2016-08-05 11:45:00,,,17.8266 +2016-08-05 11:49:12,3591.0,14.3593, +2016-08-05 11:59:15,3592.0,14.3593, +2016-08-05 12:00:00,,,17.8266 +2016-08-05 12:09:18,3592.0,14.3593, +2016-08-05 12:15:00,,,17.8266 +2016-08-05 12:19:21,3593.0,14.390999999999998, +2016-08-05 12:29:23,3593.0,14.3593, +2016-08-05 12:30:00,,,17.8266 +2016-08-05 12:39:26,3593.0,14.3593, +2016-08-05 12:45:00,,,17.825 +2016-08-05 12:49:29,3595.0,14.2961, +2016-08-05 12:59:31,3595.0,14.2974, +2016-08-05 13:00:00,,,17.825 +2016-08-05 13:09:34,3595.0,14.2646, +2016-08-05 13:15:00,,,17.8266 +2016-08-05 13:19:37,3596.0,14.2961, +2016-08-05 13:29:39,3597.0,14.2961, +2016-08-05 13:30:00,,,17.7223 +2016-08-05 13:39:42,3598.0,14.2684, +2016-08-05 13:45:00,,,17.7223 +2016-08-05 13:49:45,3598.0,14.2987, +2016-08-05 13:59:47,3598.0,14.2987, +2016-08-05 14:00:00,,,17.7223 +2016-08-05 14:09:50,3598.0,14.2987, +2016-08-05 14:15:00,,,17.7223 +2016-08-05 14:19:53,3598.0,14.2987, +2016-08-05 14:29:56,3598.0,14.2987, +2016-08-05 14:30:00,,,17.7223 +2016-08-05 14:39:58,3598.0,14.1725, +2016-08-05 14:45:00,,,17.7223 +2016-08-05 14:50:01,3598.0,14.2053, +2016-08-05 15:00:00,,,17.6876 +2016-08-05 15:00:04,3598.0,14.1738, +2016-08-05 15:10:06,3598.0,14.2053, +2016-08-05 15:15:00,,,17.7223 +2016-08-05 15:20:09,3598.0,14.1738, +2016-08-05 15:30:00,,,17.6876 +2016-08-05 15:30:12,3598.0,14.2053, +2016-08-05 15:40:14,3598.0,14.1738, +2016-08-05 15:45:00,,,17.7223 +2016-08-05 15:50:17,3598.0,14.204, +2016-08-05 16:00:00,,,17.6876 +2016-08-05 16:00:20,3598.0,14.2053, +2016-08-05 16:10:23,3598.0,14.2053, +2016-08-05 16:15:00,,,17.7223 +2016-08-05 16:20:25,3598.0,14.2053, +2016-08-05 16:30:00,,,17.757 +2016-08-05 16:30:28,3599.0,14.2053, +2016-08-05 16:40:31,3599.0,14.204, +2016-08-05 16:45:00,,,17.7223 +2016-08-05 16:50:34,3599.0,14.1776, +2016-08-05 17:00:00,,,17.7223 +2016-08-05 17:00:37,3599.0,14.2053, +2016-08-05 17:10:39,3599.0,14.1776, +2016-08-05 17:15:00,,,17.7223 +2016-08-05 17:20:42,3599.0,14.2078, +2016-08-05 17:30:00,,,17.7223 +2016-08-05 17:30:44,3599.0,14.2091, +2016-08-05 17:40:55,3599.0,14.1776, +2016-08-05 17:45:00,,,17.7223 +2016-08-05 17:50:58,3599.0,14.1776, +2016-08-05 18:00:00,,,17.6184 +2016-08-05 18:01:01,3599.0,14.1763, +2016-08-05 18:11:03,3599.0,14.2091, +2016-08-05 18:15:00,,,17.7223 +2016-08-05 18:21:06,3598.0,14.2091, +2016-08-05 18:30:00,,,17.5839 +2016-08-05 18:31:09,3599.0,14.2091, +2016-08-05 18:41:12,3598.0,14.2091, +2016-08-05 18:45:00,,,17.5839 +2016-08-05 18:51:14,3598.0,14.2091, +2016-08-05 19:00:00,,,17.6184 +2016-08-05 19:01:17,3598.0,14.2091, +2016-08-05 19:11:20,3598.0,14.2078, +2016-08-05 19:15:00,,,17.5839 +2016-08-05 19:21:23,3598.0,14.2091, +2016-08-05 19:30:00,,,17.6184 +2016-08-05 19:31:25,3598.0,14.1763, +2016-08-05 19:41:28,3598.0,14.1776, +2016-08-05 19:45:00,,,17.6184 +2016-08-05 19:51:30,3598.0,14.1776, +2016-08-05 20:00:00,,,17.5839 +2016-08-05 20:01:32,3598.0,14.2078, +2016-08-05 20:11:35,3598.0,14.1776, +2016-08-05 20:15:00,,,17.6184 +2016-08-05 20:21:37,3597.0,14.2393, +2016-08-05 20:30:00,,,17.6184 +2016-08-05 20:31:40,3597.0,14.2091, +2016-08-05 20:41:43,3596.0,14.2091, +2016-08-05 20:45:00,,,17.6184 +2016-08-05 20:51:45,3595.0,14.2091, +2016-08-05 21:00:00,,,17.6184 +2016-08-05 21:01:48,3595.0,14.2091, +2016-08-05 21:11:51,3594.0,14.2078, +2016-08-05 21:15:00,,,17.6184 +2016-08-05 21:21:53,3593.0,14.2091, +2016-08-05 21:30:00,,,17.6184 +2016-08-05 21:31:56,3592.0,14.2078, +2016-08-05 21:41:58,3592.0,14.1776, +2016-08-05 21:45:00,,,17.6184 +2016-08-05 21:52:01,3591.0,14.2091, +2016-08-05 22:00:00,,,17.6184 +2016-08-05 22:02:04,3591.0,14.2091, +2016-08-05 22:12:06,3591.0,14.2129, +2016-08-05 22:15:00,,,17.5839 +2016-08-05 22:22:09,3590.0,14.2078, +2016-08-05 22:30:00,,,17.6184 +2016-08-05 22:32:11,3588.0,14.1776, +2016-08-05 22:42:14,3588.0,14.2091, +2016-08-05 22:45:00,,,17.6184 +2016-08-05 22:52:16,3588.0,14.2091, +2016-08-05 23:00:00,,,17.6169 +2016-08-05 23:02:19,3588.0,14.2091, +2016-08-05 23:12:21,3587.0,14.2091, +2016-08-05 23:15:00,,,17.653 +2016-08-05 23:22:24,3586.0,14.2091, +2016-08-05 23:30:00,,,17.6184 +2016-08-05 23:32:26,3586.0,14.2091, +2016-08-05 23:42:28,3586.0,14.2091, +2016-08-05 23:45:00,,,17.6184 +2016-08-05 23:52:31,3585.0,14.2091, +2016-08-06 00:00:00,,,17.6546 +2016-08-06 00:02:33,3585.0,14.2091, +2016-08-06 00:12:36,3582.0,14.2091, +2016-08-06 00:15:00,,,17.5854 +2016-08-06 00:22:38,3581.0,14.2091, +2016-08-06 00:30:00,,,17.653 +2016-08-06 00:32:41,3581.0,14.2406, +2016-08-06 00:42:43,3581.0,14.2091, +2016-08-06 00:45:00,,,17.6184 +2016-08-06 00:52:46,3581.0,14.2091, +2016-08-06 01:00:00,,,17.5839 +2016-08-06 01:02:48,3581.0,14.2091, +2016-08-06 01:12:51,3581.0,14.2091, +2016-08-06 01:15:00,,,17.653 +2016-08-06 01:22:53,3581.0,14.1776, +2016-08-06 01:30:00,,,17.5839 +2016-08-06 01:32:56,3581.0,14.2078, +2016-08-06 01:42:58,3581.0,14.2091, +2016-08-06 01:45:00,,,17.6514 +2016-08-06 01:53:01,3581.0,14.2091, +2016-08-06 02:00:00,,,17.653 +2016-08-06 02:03:04,3581.0,14.2091, +2016-08-06 02:13:06,3580.0,14.2091, +2016-08-06 02:15:00,,,17.6184 +2016-08-06 02:23:09,3580.0,14.2091, +2016-08-06 02:30:00,,,17.6184 +2016-08-06 02:33:11,3579.0,14.2091, +2016-08-06 02:43:14,3579.0,14.2053, +2016-08-06 02:45:00,,,17.6184 +2016-08-06 02:53:16,3579.0,14.2053, +2016-08-06 03:00:00,,,17.653 +2016-08-06 03:03:19,3579.0,14.2053, +2016-08-06 03:13:21,3578.0,14.204, +2016-08-06 03:15:00,,,17.6184 +2016-08-06 03:23:24,3578.0,14.2053, +2016-08-06 03:30:00,,,17.6184 +2016-08-06 03:33:26,3578.0,14.2053, +2016-08-06 03:43:29,3578.0,14.2053, +2016-08-06 03:45:00,,,17.5839 +2016-08-06 03:53:31,3578.0,14.2053, +2016-08-06 04:00:00,,,17.6184 +2016-08-06 04:03:34,3577.0,14.2053, +2016-08-06 04:13:37,3578.0,14.2053, +2016-08-06 04:15:00,,,17.6184 +2016-08-06 04:23:39,3577.0,14.2053, +2016-08-06 04:30:00,,,17.6184 +2016-08-06 04:33:42,3577.0,14.2053, +2016-08-06 04:43:44,3577.0,14.1738, +2016-08-06 04:45:00,,,17.5839 +2016-08-06 04:53:46,3577.0,14.2053, +2016-08-06 05:00:00,,,17.62 +2016-08-06 05:03:50,3577.0,14.2053, +2016-08-06 05:13:53,3576.0,14.2053, +2016-08-06 05:15:00,,,17.6184 +2016-08-06 05:23:56,3576.0,14.1725, +2016-08-06 05:30:00,,,17.6184 +2016-08-06 05:33:58,3576.0,14.2053, +2016-08-06 05:44:01,3577.0,14.204, +2016-08-06 05:45:00,,,17.6184 +2016-08-06 05:54:03,3577.0,14.2053, +2016-08-06 06:00:00,,,17.653 +2016-08-06 06:04:06,3577.0,14.2053, +2016-08-06 06:14:09,3577.0,14.2053, +2016-08-06 06:15:00,,,17.6184 +2016-08-06 06:24:11,3577.0,14.2053, +2016-08-06 06:30:00,,,17.5839 +2016-08-06 06:34:14,3577.0,14.2053, +2016-08-06 06:44:17,3577.0,14.2015, +2016-08-06 06:45:00,,,17.5839 +2016-08-06 06:54:19,3577.0,14.2015, +2016-08-06 07:00:00,,,17.6184 +2016-08-06 07:04:22,3577.0,14.2015, +2016-08-06 07:14:24,3577.0,14.2015, +2016-08-06 07:15:00,,,17.5839 +2016-08-06 07:24:27,3577.0,14.2015, +2016-08-06 07:30:00,,,17.6184 +2016-08-06 07:34:29,3578.0,14.233, +2016-08-06 07:44:32,3578.0,14.1965, +2016-08-06 07:45:00,,,17.6184 +2016-08-06 07:54:35,3578.0,14.2015, +2016-08-06 08:00:00,,,17.6184 +2016-08-06 08:04:37,3578.0,14.2015, +2016-08-06 08:14:40,3580.0,14.17, +2016-08-06 08:15:00,,,17.653 +2016-08-06 08:24:43,3580.0,14.2015, +2016-08-06 08:30:00,,,17.5839 +2016-08-06 08:34:45,3580.0,14.2002, +2016-08-06 08:44:48,3581.0,14.2015, +2016-08-06 08:45:00,,,17.6184 +2016-08-06 08:54:51,3581.0,14.2015, +2016-08-06 09:00:00,,,17.6184 +2016-08-06 09:04:53,3581.0,14.1977, +2016-08-06 09:14:56,3581.0,14.1965, +2016-08-06 09:15:00,,,17.6184 +2016-08-06 09:24:58,3581.0,14.2015, +2016-08-06 09:30:00,,,17.6184 +2016-08-06 09:35:01,3581.0,14.1965, +2016-08-06 09:45:00,,,17.6184 +2016-08-06 09:45:03,3581.0,14.2015, +2016-08-06 09:55:06,3581.0,14.1977, +2016-08-06 10:00:00,,,17.6184 +2016-08-06 10:05:09,3581.0,14.1977, +2016-08-06 10:15:00,,,17.653 +2016-08-06 10:15:11,3582.0,14.1977, +2016-08-06 10:25:14,3582.0,14.1977, +2016-08-06 10:30:00,,,17.6184 +2016-08-06 10:35:17,3583.0,14.1977, +2016-08-06 10:45:00,,,17.5839 +2016-08-06 10:45:19,3582.0,14.1977, +2016-08-06 10:55:22,3582.0,14.1977, +2016-08-06 11:00:00,,,17.653 +2016-08-06 11:05:24,3581.0,14.1977, +2016-08-06 11:15:00,,,17.653 +2016-08-06 11:15:27,3582.0,14.1965, +2016-08-06 11:25:29,3582.0,14.1965, +2016-08-06 11:30:00,,,17.653 +2016-08-06 11:35:32,3583.0,14.1977, +2016-08-06 11:45:00,,,17.5839 +2016-08-06 11:45:35,3583.0,14.1977, +2016-08-06 11:55:37,3583.0,14.1977, +2016-08-06 12:00:00,,,17.5839 +2016-08-06 12:05:40,3585.0,14.1977, +2016-08-06 12:15:00,,,17.6184 +2016-08-06 12:15:43,3585.0,14.1977, +2016-08-06 12:25:45,3586.0,14.1977, +2016-08-06 12:30:00,,,17.5839 +2016-08-06 12:35:48,3586.0,14.1662, +2016-08-06 12:45:00,,,17.6184 +2016-08-06 12:45:51,3586.0,14.1965, +2016-08-06 12:55:53,3586.0,14.1977, +2016-08-06 13:00:00,,,17.5839 +2016-08-06 13:05:56,3587.0,14.1977, +2016-08-06 13:15:00,,,17.5839 +2016-08-06 13:15:59,3588.0,14.1977, +2016-08-06 13:26:01,3588.0,14.2015, +2016-08-06 13:30:00,,,17.653 +2016-08-06 13:36:04,3589.0,14.1977, +2016-08-06 13:45:00,,,17.6184 +2016-08-06 13:46:06,3589.0,14.1977, +2016-08-06 13:56:09,3591.0,14.165, +2016-08-06 14:00:00,,,17.6184 +2016-08-06 14:06:11,3592.0,14.1977, +2016-08-06 14:15:00,,,17.6184 +2016-08-06 14:16:13,3593.0,14.1071, +2016-08-06 14:26:16,3593.0,14.0757, +2016-08-06 14:30:00,,,17.5839 +2016-08-06 14:36:19,3593.0,14.1071, +2016-08-06 14:45:00,,,17.5494 +2016-08-06 14:46:21,3594.0,14.1071, +2016-08-06 14:56:24,3595.0,14.1071, +2016-08-06 15:00:00,,,17.5149 +2016-08-06 15:06:27,3594.0,14.1071, +2016-08-06 15:15:00,,,17.5494 +2016-08-06 15:16:29,3595.0,14.1071, +2016-08-06 15:26:32,3595.0,14.1059, +2016-08-06 15:30:00,,,17.5149 +2016-08-06 15:36:35,3595.0,14.1059, +2016-08-06 15:45:00,,,17.5494 +2016-08-06 15:46:38,3595.0,14.1059, +2016-08-06 15:56:40,3595.0,14.1071, +2016-08-06 16:00:00,,,17.5494 +2016-08-06 16:06:43,3596.0,14.1071, +2016-08-06 16:15:00,,,17.5149 +2016-08-06 16:16:46,3596.0,14.1071, +2016-08-06 16:26:48,3596.0,14.1071, +2016-08-06 16:30:00,,,17.4805 +2016-08-06 16:36:51,3596.0,14.1386, +2016-08-06 16:45:00,,,17.5494 +2016-08-06 16:46:54,3596.0,14.1071, +2016-08-06 16:56:56,3595.0,14.1071, +2016-08-06 17:00:00,,,17.5494 +2016-08-06 17:06:59,3595.0,14.1071, +2016-08-06 17:15:00,,,17.5149 +2016-08-06 17:17:02,3594.0,14.1071, +2016-08-06 17:27:04,3593.0,14.1109, +2016-08-06 17:30:00,,,17.5149 +2016-08-06 17:37:07,3592.0,14.0795, +2016-08-06 17:45:00,,,17.5494 +2016-08-06 17:47:10,3591.0,14.0795, +2016-08-06 17:57:12,3589.0,14.1411, +2016-08-06 18:00:00,,,17.5494 +2016-08-06 18:07:14,3588.0,14.1109, +2016-08-06 18:15:00,,,17.5149 +2016-08-06 18:17:24,3587.0,14.1109, +2016-08-06 18:27:27,3586.0,14.1109, +2016-08-06 18:30:00,,,17.5149 +2016-08-06 18:37:29,3585.0,14.1097, +2016-08-06 18:45:00,,,17.5494 +2016-08-06 18:47:32,3584.0,14.1097, +2016-08-06 18:57:34,3582.0,14.1109, +2016-08-06 19:00:00,,,17.5494 +2016-08-06 19:07:37,3582.0,14.1097, +2016-08-06 19:15:00,,,17.5494 +2016-08-06 19:17:39,3581.0,14.1109, +2016-08-06 19:27:42,3581.0,14.1109, +2016-08-06 19:30:00,,,17.5494 +2016-08-06 19:37:45,3580.0,14.1109, +2016-08-06 19:45:00,,,17.5149 +2016-08-06 19:47:47,3578.0,14.1109, +2016-08-06 19:57:50,3577.0,14.1071, +2016-08-06 20:00:00,,,17.5133 +2016-08-06 20:07:52,3576.0,14.2015, +2016-08-06 20:15:00,,,17.5494 +2016-08-06 20:17:55,3576.0,14.2015, +2016-08-06 20:27:57,3575.0,14.2015, +2016-08-06 20:30:00,,,17.5494 +2016-08-06 20:38:00,3574.0,14.2015, +2016-08-06 20:45:00,,,17.5149 +2016-08-06 20:48:02,3574.0,14.2015, +2016-08-06 20:58:05,3574.0,14.2015, +2016-08-06 21:00:00,,,17.5494 +2016-08-06 21:08:07,3574.0,14.2015, +2016-08-06 21:15:00,,,17.5133 +2016-08-06 21:18:10,3573.0,14.2015, +2016-08-06 21:28:12,3573.0,14.1688, +2016-08-06 21:30:00,,,17.5494 +2016-08-06 21:38:15,3573.0,14.165, +2016-08-06 21:45:00,,,17.5509 +2016-08-06 21:48:17,3573.0,14.1977, +2016-08-06 21:58:20,3572.0,14.1977, +2016-08-06 22:00:00,,,17.5494 +2016-08-06 22:08:23,3572.0,14.1977, +2016-08-06 22:15:00,,,17.5149 +2016-08-06 22:18:25,3571.0,14.1965, +2016-08-06 22:28:28,3572.0,14.1977, +2016-08-06 22:30:00,,,17.5149 +2016-08-06 22:38:30,3571.0,14.1977, +2016-08-06 22:45:00,,,17.5494 +2016-08-06 22:48:33,3571.0,14.2292, +2016-08-06 22:58:35,3571.0,14.1977, +2016-08-06 23:00:00,,,17.5494 +2016-08-06 23:08:38,3572.0,14.2242, +2016-08-06 23:15:00,,,17.5494 +2016-08-06 23:18:40,3571.0,14.1939, +2016-08-06 23:28:42,3571.0,14.1977, +2016-08-06 23:30:00,,,17.5494 +2016-08-06 23:38:44,3571.0,14.1939, +2016-08-06 23:45:00,,,17.5149 +2016-08-06 23:48:47,3571.0,14.1939, +2016-08-06 23:58:49,3571.0,14.1939, +2016-08-07 00:00:00,,,17.5494 +2016-08-07 00:08:51,3571.0,14.1939, +2016-08-07 00:15:00,,,17.5149 +2016-08-07 00:18:54,3571.0,14.1927, +2016-08-07 00:28:56,3571.0,14.1927, +2016-08-07 00:30:00,,,17.5494 +2016-08-07 00:38:59,3571.0,14.1939, +2016-08-07 00:45:00,,,17.5165 +2016-08-07 00:49:01,3570.0,14.1939, +2016-08-07 00:59:04,3570.0,14.1927, +2016-08-07 01:00:00,,,17.5149 +2016-08-07 01:09:06,3570.0,14.1927, +2016-08-07 01:15:00,,,17.5494 +2016-08-07 01:19:09,3570.0,14.1939, +2016-08-07 01:29:11,3570.0,14.1939, +2016-08-07 01:30:00,,,17.5149 +2016-08-07 01:39:13,3569.0,14.1939, +2016-08-07 01:45:00,,,17.5494 +2016-08-07 01:49:16,3569.0,14.1927, +2016-08-07 01:59:18,3569.0,14.1939, +2016-08-07 02:00:00,,,17.4805 +2016-08-07 02:09:21,3569.0,14.2254, +2016-08-07 02:15:00,,,17.5494 +2016-08-07 02:19:23,3569.0,14.1927, +2016-08-07 02:29:26,3568.0,14.1939, +2016-08-07 02:30:00,,,17.5494 +2016-08-07 02:39:28,3568.0,14.1625, +2016-08-07 02:45:00,,,17.5494 +2016-08-07 02:49:31,3568.0,14.1939, +2016-08-07 02:59:33,3568.0,14.1939, +2016-08-07 03:00:00,,,17.5494 +2016-08-07 03:09:35,3568.0,14.1939, +2016-08-07 03:15:00,,,17.5494 +2016-08-07 03:19:38,3568.0,14.1927, +2016-08-07 03:29:40,3567.0,14.1939, +2016-08-07 03:30:00,,,17.5494 +2016-08-07 03:39:42,3567.0,14.1927, +2016-08-07 03:45:00,,,17.5494 +2016-08-07 03:49:45,3567.0,14.1927, +2016-08-07 03:59:47,3566.0,14.2254, +2016-08-07 04:00:00,,,17.5494 +2016-08-07 04:09:50,3567.0,14.1939, +2016-08-07 04:15:00,,,17.5494 +2016-08-07 04:19:52,3567.0,14.1939, +2016-08-07 04:29:55,3567.0,14.2216, +2016-08-07 04:30:00,,,17.5509 +2016-08-07 04:39:57,3567.0,14.1889, +2016-08-07 04:45:00,,,17.5494 +2016-08-07 04:50:00,3566.0,14.1914, +2016-08-07 05:00:00,,,17.5149 +2016-08-07 05:00:02,3566.0,14.1901, +2016-08-07 05:10:05,3566.0,14.1901, +2016-08-07 05:15:00,,,17.5494 +2016-08-07 05:20:07,3566.0,14.1901, +2016-08-07 05:30:00,,,17.5165 +2016-08-07 05:30:10,3566.0,14.1914, +2016-08-07 05:40:12,3565.0,14.1876, +2016-08-07 05:45:00,,,17.5494 +2016-08-07 05:50:15,3565.0,14.1901, +2016-08-07 06:00:00,,,17.5494 +2016-08-07 06:00:17,3565.0,14.1901, +2016-08-07 06:10:20,3565.0,14.1864, +2016-08-07 06:15:00,,,17.5494 +2016-08-07 06:20:23,3565.0,14.2191, +2016-08-07 06:30:00,,,17.5494 +2016-08-07 06:30:25,3565.0,14.1864, +2016-08-07 06:40:28,3565.0,14.1864, +2016-08-07 06:45:00,,,17.5494 +2016-08-07 06:50:30,3566.0,14.1876, +2016-08-07 07:00:00,,,17.5149 +2016-08-07 07:00:33,3566.0,14.1876, +2016-08-07 07:10:35,3566.0,14.1826, +2016-08-07 07:15:00,,,17.5149 +2016-08-07 07:20:38,3566.0,14.1876, +2016-08-07 07:30:00,,,17.5149 +2016-08-07 07:30:40,3566.0,14.1826, +2016-08-07 07:40:42,3566.0,14.2178, +2016-08-07 07:45:00,,,17.5494 +2016-08-07 07:50:45,3567.0,14.214, +2016-08-07 08:00:00,,,17.5149 +2016-08-07 08:00:47,3568.0,14.1826, +2016-08-07 08:10:50,3569.0,14.1826, +2016-08-07 08:15:00,,,17.5494 +2016-08-07 08:20:54,3569.0,14.1826, +2016-08-07 08:30:00,,,17.5447 +2016-08-07 08:30:57,3570.0,14.1826, +2016-08-07 08:41:00,3571.0,14.1826, +2016-08-07 08:45:00,,,17.5149 +2016-08-07 08:51:02,3572.0,14.1838, +2016-08-07 09:00:00,,,17.5102 +2016-08-07 09:01:05,3572.0,14.1826, +2016-08-07 09:11:07,3573.0,14.1826, +2016-08-07 09:15:00,,,17.5462 +2016-08-07 09:21:10,3574.0,14.1838, +2016-08-07 09:30:00,,,17.4758 +2016-08-07 09:31:13,3574.0,14.1826, +2016-08-07 09:41:15,3575.0,14.1826, +2016-08-07 09:45:00,,,17.5447 +2016-08-07 09:51:18,3576.0,14.1838, +2016-08-07 10:00:00,,,17.5102 +2016-08-07 10:01:20,3577.0,14.1826, +2016-08-07 10:11:23,3578.0,14.1826, +2016-08-07 10:15:00,,,17.5447 +2016-08-07 10:21:26,3581.0,14.1826, +2016-08-07 10:30:00,,,17.5462 +2016-08-07 10:31:28,3582.0,14.214, +2016-08-07 10:41:31,3585.0,14.1838, +2016-08-07 10:45:00,,,17.5431 +2016-08-07 10:51:34,3586.0,14.1838, +2016-08-07 11:00:00,,,17.5447 +2016-08-07 11:01:36,3586.0,14.1826, +2016-08-07 11:11:39,3588.0,14.214, +2016-08-07 11:15:00,,,17.5102 +2016-08-07 11:21:42,3588.0,14.1826, +2016-08-07 11:30:00,,,17.5102 +2016-08-07 11:31:44,3589.0,14.057, +2016-08-07 11:41:47,3591.0,14.0883, +2016-08-07 11:45:00,,,17.5102 +2016-08-07 11:51:50,3592.0,14.0883, +2016-08-07 12:00:00,,,17.5447 +2016-08-07 12:01:52,3593.0,14.0883, +2016-08-07 12:11:55,3594.0,14.0883, +2016-08-07 12:15:00,,,17.4758 +2016-08-07 12:21:57,3594.0,13.9956, +2016-08-07 12:30:00,,,17.5447 +2016-08-07 12:32:00,3595.0,13.9631, +2016-08-07 12:42:03,3596.0,13.9981, +2016-08-07 12:45:00,,,17.5102 +2016-08-07 12:52:05,3597.0,13.9981, +2016-08-07 13:00:00,,,17.5447 +2016-08-07 13:02:08,3598.0,13.9981, +2016-08-07 13:12:11,3598.0,13.9981, +2016-08-07 13:15:00,,,17.5102 +2016-08-07 13:22:14,3598.0,13.9043, +2016-08-07 13:30:00,,,17.5431 +2016-08-07 13:32:16,3598.0,13.8731, +2016-08-07 13:42:19,3599.0,13.8756, +2016-08-07 13:45:00,,,17.5102 +2016-08-07 13:52:22,3599.0,13.908, +2016-08-07 14:00:00,,,17.5447 +2016-08-07 14:02:25,3599.0,13.9068, +2016-08-07 14:12:27,3599.0,13.9393, +2016-08-07 14:15:00,,,17.5102 +2016-08-07 14:22:30,3599.0,13.9068, +2016-08-07 14:30:00,,,17.5071 +2016-08-07 14:32:33,3599.0,13.9105, +2016-08-07 14:42:36,3599.0,13.8768, +2016-08-07 14:45:00,,,17.5102 +2016-08-07 14:52:38,3599.0,13.8805, +2016-08-07 15:00:00,,,17.4414 +2016-08-07 15:02:41,3599.0,13.9118, +2016-08-07 15:12:44,3599.0,13.817, +2016-08-07 15:15:00,,,17.4024 +2016-08-07 15:22:47,3599.0,13.817, +2016-08-07 15:30:00,,,17.4055 +2016-08-07 15:32:50,3599.0,13.8182, +2016-08-07 15:42:52,3599.0,13.817, +2016-08-07 15:45:00,,,17.4024 +2016-08-07 15:52:55,3599.0,13.817, +2016-08-07 16:00:00,,,17.4383 +2016-08-07 16:02:58,3599.0,13.8481, +2016-08-07 16:13:01,3599.0,13.8481, +2016-08-07 16:15:00,,,17.4368 +2016-08-07 16:23:04,3599.0,13.8182, +2016-08-07 16:30:00,,,17.4024 +2016-08-07 16:33:07,3599.0,13.817, +2016-08-07 16:43:09,3599.0,13.8494, +2016-08-07 16:45:00,,,17.4024 +2016-08-07 16:53:12,3599.0,13.8182, +2016-08-07 17:00:00,,,17.4024 +2016-08-07 17:03:15,3599.0,13.817, +2016-08-07 17:13:18,3599.0,13.8207, +2016-08-07 17:15:00,,,17.404 +2016-08-07 17:23:21,3599.0,13.8531, +2016-08-07 17:30:00,,,17.4383 +2016-08-07 17:33:23,3599.0,13.8531, +2016-08-07 17:43:26,3599.0,13.8219, +2016-08-07 17:45:00,,,17.4024 +2016-08-07 17:53:29,3599.0,13.8256, +2016-08-07 18:00:00,,,17.4383 +2016-08-07 18:03:32,3599.0,13.8244, +2016-08-07 18:13:34,3599.0,13.7322, +2016-08-07 18:15:00,,,17.4024 +2016-08-07 18:23:37,3599.0,13.731, +2016-08-07 18:30:00,,,17.4368 +2016-08-07 18:33:40,3599.0,13.7322, +2016-08-07 18:43:43,3599.0,13.7347, +2016-08-07 18:45:00,,,17.4024 +2016-08-07 18:53:46,3599.0,13.7322, +2016-08-07 19:00:00,,,17.4383 +2016-08-07 19:03:49,3599.0,13.7322, +2016-08-07 19:13:52,3599.0,13.7347, +2016-08-07 19:15:00,,,17.4024 +2016-08-07 19:23:55,3599.0,13.7645, +2016-08-07 19:30:00,,,17.4024 +2016-08-07 19:33:58,3599.0,13.7347, +2016-08-07 19:44:01,3599.0,13.7645, +2016-08-07 19:45:00,,,17.4383 +2016-08-07 19:54:03,3599.0,13.7359, +2016-08-07 20:00:00,,,17.4024 +2016-08-07 20:04:06,3599.0,13.8293, +2016-08-07 20:14:09,3599.0,13.828, +2016-08-07 20:15:00,,,17.4368 +2016-08-07 20:24:12,3599.0,13.8605, +2016-08-07 20:30:00,,,17.4414 +2016-08-07 20:34:14,3599.0,13.8605, +2016-08-07 20:44:17,3599.0,13.8268, +2016-08-07 20:45:00,,,17.4024 +2016-08-07 20:54:20,3599.0,13.8592, +2016-08-07 21:00:00,,,17.4055 +2016-08-07 21:04:23,3599.0,13.828, +2016-08-07 21:14:26,3599.0,13.828, +2016-08-07 21:15:00,,,17.4368 +2016-08-07 21:24:28,3598.0,13.8592, +2016-08-07 21:30:00,,,17.4071 +2016-08-07 21:34:31,3598.0,13.828, +2016-08-07 21:44:34,3598.0,13.8305, +2016-08-07 21:45:00,,,17.404 +2016-08-07 21:54:37,3598.0,13.833, +2016-08-07 22:00:00,,,17.4368 +2016-08-07 22:04:39,3598.0,13.833, +2016-08-07 22:14:42,3598.0,13.8317, +2016-08-07 22:15:00,,,17.4414 +2016-08-07 22:24:45,3598.0,13.8317, +2016-08-07 22:30:00,,,17.4414 +2016-08-07 22:34:48,3598.0,13.8629, +2016-08-07 22:44:50,3598.0,13.833, +2016-08-07 22:45:00,,,17.4071 +2016-08-07 22:54:53,3598.0,13.8642, +2016-08-07 23:00:00,,,17.4414 +2016-08-07 23:04:56,3598.0,13.833, +2016-08-07 23:14:59,3597.0,13.8317, +2016-08-07 23:15:00,,,17.4071 +2016-08-07 23:25:01,3597.0,13.8642, +2016-08-07 23:30:00,,,17.4414 +2016-08-07 23:35:04,3597.0,13.833, +2016-08-07 23:45:00,,,17.4055 +2016-08-07 23:45:06,3596.0,13.8317, +2016-08-07 23:55:09,3596.0,13.8629, +2016-08-08 00:00:00,,,17.4071 +2016-08-08 00:05:12,3596.0,13.8642, +2016-08-08 00:15:00,,,17.4414 +2016-08-08 00:15:15,3596.0,13.8317, +2016-08-08 00:25:17,3594.0,13.8642, +2016-08-08 00:30:00,,,17.4399 +2016-08-08 00:35:20,3594.0,13.833, +2016-08-08 00:45:00,,,17.4055 +2016-08-08 00:45:23,3595.0,13.8317, +2016-08-08 00:55:25,3595.0,13.8629, +2016-08-08 01:00:00,,,17.4086 +2016-08-08 01:05:28,3595.0,13.8317, +2016-08-08 01:15:00,,,17.4414 +2016-08-08 01:15:31,3595.0,13.8317, +2016-08-08 01:25:34,3595.0,13.833, +2016-08-08 01:30:00,,,17.4071 +2016-08-08 01:35:37,3595.0,13.8317, +2016-08-08 01:45:00,,,17.4414 +2016-08-08 01:45:39,3595.0,13.8629, +2016-08-08 01:55:42,3595.0,13.8642, +2016-08-08 02:00:00,,,17.4071 +2016-08-08 02:05:45,3595.0,13.833, +2016-08-08 02:15:00,,,17.4414 +2016-08-08 02:15:48,3582.0,13.8293, +2016-08-08 02:25:51,3594.0,13.833, +2016-08-08 02:30:00,,,17.4414 +2016-08-08 02:35:53,3592.0,13.8642, +2016-08-08 02:45:00,,,17.3043 +2016-08-08 02:45:55,3596.0,13.8642, +2016-08-08 02:55:58,3595.0,13.8317, +2016-08-08 03:00:00,,,17.3043 +2016-08-08 03:06:01,3596.0,13.833, +2016-08-08 03:15:00,,,17.4071 +2016-08-08 03:16:04,3595.0,13.833, +2016-08-08 03:26:06,3596.0,13.8317, +2016-08-08 03:30:00,,,17.3043 +2016-08-08 03:36:09,3595.0,13.833, +2016-08-08 03:45:00,,,17.4071 +2016-08-08 03:46:12,3595.0,13.833, +2016-08-08 03:56:14,3595.0,13.8317, +2016-08-08 04:00:00,,,17.3043 +2016-08-08 04:06:17,3595.0,13.8642, +2016-08-08 04:15:00,,,17.4071 +2016-08-08 04:16:20,3595.0,13.8317, +2016-08-08 04:26:23,3595.0,13.833, +2016-08-08 04:30:00,,,17.4071 +2016-08-08 04:36:25,3595.0,13.8617, +2016-08-08 04:45:00,,,17.3043 +2016-08-08 04:46:28,3595.0,13.8317, +2016-08-08 04:56:31,3593.0,13.8317, +2016-08-08 05:00:00,,,17.3089 +2016-08-08 05:06:33,3594.0,13.8317, +2016-08-08 05:15:00,,,17.3089 +2016-08-08 05:16:36,3594.0,13.8317, +2016-08-08 05:26:38,3594.0,13.833, +2016-08-08 05:30:00,,,17.3043 +2016-08-08 05:36:41,3594.0,13.8317, +2016-08-08 05:45:00,,,17.3043 +2016-08-08 05:46:44,3594.0,13.833, +2016-08-08 05:56:47,3594.0,13.8642, +2016-08-08 06:00:00,,,17.3074 +2016-08-08 06:06:49,3594.0,13.8317, +2016-08-08 06:15:00,,,17.3431 +2016-08-08 06:16:52,3594.0,13.833, +2016-08-08 06:26:54,3595.0,13.833, +2016-08-08 06:30:00,,,17.3089 +2016-08-08 06:36:57,3594.0,13.833, +2016-08-08 06:45:00,,,17.3089 +2016-08-08 06:47:00,3594.0,13.8617, +2016-08-08 06:57:02,3594.0,13.8317, +2016-08-08 07:00:00,,,17.3089 +2016-08-08 07:07:05,3594.0,13.8317, +2016-08-08 07:15:00,,,17.3074 +2016-08-08 07:17:07,3594.0,13.833, +2016-08-08 07:27:10,3595.0,13.8629, +2016-08-08 07:30:00,,,17.3089 +2016-08-08 07:37:13,3595.0,13.9266, +2016-08-08 07:45:00,,,17.3089 +2016-08-08 07:47:15,3595.0,13.833, +2016-08-08 07:57:18,3596.0,13.833, +2016-08-08 08:00:00,,,17.3089 +2016-08-08 08:07:20,3596.0,13.8317, +2016-08-08 08:15:00,,,17.2747 +2016-08-08 08:17:23,3597.0,13.8629, +2016-08-08 08:27:26,3596.0,13.8317, +2016-08-08 08:30:00,,,17.3089 +2016-08-08 08:37:28,3598.0,13.833, +2016-08-08 08:45:00,,,17.3089 +2016-08-08 08:47:31,3598.0,13.833, +2016-08-08 08:57:33,3598.0,13.8629, +2016-08-08 09:00:00,,,17.3074 +2016-08-08 09:07:36,3598.0,13.8317, +2016-08-08 09:15:00,,,17.3104 +2016-08-08 09:17:39,3598.0,13.8305, +2016-08-08 09:27:42,3598.0,13.833, +2016-08-08 09:30:00,,,17.3089 +2016-08-08 09:37:44,3599.0,13.833, +2016-08-08 09:45:00,,,17.3089 +2016-08-08 09:47:47,3598.0,13.8305, +2016-08-08 09:57:50,3599.0,13.833, +2016-08-08 10:00:00,,,17.3089 +2016-08-08 10:07:53,3599.0,13.8305, +2016-08-08 10:15:00,,,17.3089 +2016-08-08 10:17:55,3599.0,13.7707, +2016-08-08 10:27:58,3599.0,13.7383, +2016-08-08 10:30:00,,,17.3089 +2016-08-08 10:38:01,3599.0,13.7396, +2016-08-08 10:45:00,,,17.3089 +2016-08-08 10:48:04,3599.0,13.7383, +2016-08-08 10:58:07,3599.0,13.6774, +2016-08-08 11:00:00,,,17.3089 +2016-08-08 11:08:09,3599.0,13.6488, +2016-08-08 11:15:00,,,17.3089 +2016-08-08 11:18:12,3599.0,13.6799, +2016-08-08 11:28:15,3599.0,13.6488, +2016-08-08 11:30:00,,,17.3089 +2016-08-08 11:38:19,3599.0,13.6488, +2016-08-08 11:45:00,,,17.2064 +2016-08-08 11:48:23,3599.0,13.6476, +2016-08-08 11:58:26,3599.0,13.6488, +2016-08-08 12:00:00,,,17.2406 +2016-08-08 12:08:29,3599.0,13.6513, +2016-08-08 12:15:00,,,17.2406 +2016-08-08 12:18:31,3599.0,13.6513, +2016-08-08 12:28:34,3599.0,13.6525, +2016-08-08 12:30:00,,,17.2064 +2016-08-08 12:38:37,3599.0,13.6525, +2016-08-08 12:45:00,,,17.208 +2016-08-08 12:48:40,3599.0,13.6525, +2016-08-08 12:58:43,3599.0,13.5595, +2016-08-08 13:00:00,,,17.2064 +2016-08-08 13:08:46,3599.0,13.5595, +2016-08-08 13:15:00,,,17.2064 +2016-08-08 13:18:49,3599.0,13.5595, +2016-08-08 13:28:52,3599.0,13.5583, +2016-08-08 13:30:00,,,17.2406 +2016-08-08 13:38:55,3599.0,13.5595, +2016-08-08 13:45:00,,,17.2049 +2016-08-08 13:48:58,3599.0,13.5595, +2016-08-08 13:59:01,3599.0,13.4656, +2016-08-08 14:00:00,,,17.2064 +2016-08-08 14:09:04,3599.0,13.4977, +2016-08-08 14:15:00,,,17.2064 +2016-08-08 14:19:07,3599.0,13.5001, +2016-08-08 14:29:10,3599.0,13.5013, +2016-08-08 14:30:00,,,17.2406 +2016-08-08 14:39:13,3599.0,13.5013, +2016-08-08 14:45:00,,,17.2406 +2016-08-08 14:49:16,3599.0,13.4692, +2016-08-08 14:59:19,3599.0,13.5013, +2016-08-08 15:00:00,,,17.2064 +2016-08-08 15:09:22,3599.0,13.468, +2016-08-08 15:15:00,,,17.239 +2016-08-08 15:19:25,3599.0,13.3779, +2016-08-08 15:29:29,3599.0,13.4076, +2016-08-08 15:30:00,,,17.2064 +2016-08-08 15:39:32,3599.0,13.3768, +2016-08-08 15:45:00,,,17.2064 +2016-08-08 15:49:35,3599.0,13.3779, +2016-08-08 15:59:38,3599.0,13.4087, +2016-08-08 16:00:00,,,17.2406 +2016-08-08 16:09:41,3599.0,13.3756, +2016-08-08 16:15:00,,,17.2049 +2016-08-08 16:19:44,3599.0,13.3768, +2016-08-08 16:29:47,3599.0,13.3815, +2016-08-08 16:30:00,,,17.2064 +2016-08-08 16:39:50,3599.0,13.3779, +2016-08-08 16:45:00,,,17.2406 +2016-08-08 16:49:53,3599.0,13.4123, +2016-08-08 16:59:55,3599.0,13.4111, +2016-08-08 17:00:00,,,17.2064 +2016-08-08 17:09:58,3599.0,13.3815, +2016-08-08 17:15:00,,,17.2406 +2016-08-08 17:20:01,3599.0,13.4123, +2016-08-08 17:30:00,,,17.2406 +2016-08-08 17:30:04,3599.0,13.5049, +2016-08-08 17:40:07,3599.0,13.5049, +2016-08-08 17:45:00,,,17.2406 +2016-08-08 17:50:10,3599.0,13.474, +2016-08-08 18:00:00,,,17.2064 +2016-08-08 18:00:12,3599.0,13.4728, +2016-08-08 18:10:15,3599.0,13.5049, +2016-08-08 18:15:00,,,17.2064 +2016-08-08 18:20:18,3599.0,13.474, +2016-08-08 18:30:00,,,17.2064 +2016-08-08 18:30:21,3599.0,13.5049, +2016-08-08 18:40:24,3599.0,13.5049, +2016-08-08 18:45:00,,,17.2064 +2016-08-08 18:50:26,3599.0,13.474, +2016-08-08 19:00:00,,,17.2064 +2016-08-08 19:00:29,3599.0,13.5049, +2016-08-08 19:10:32,3599.0,13.5049, +2016-08-08 19:15:00,,,17.2064 +2016-08-08 19:20:34,3599.0,13.4728, +2016-08-08 19:30:00,,,17.2064 +2016-08-08 19:30:37,3598.0,13.474, +2016-08-08 19:40:40,3599.0,13.5049, +2016-08-08 19:45:00,,,17.2064 +2016-08-08 19:50:42,3598.0,13.5049, +2016-08-08 20:00:00,,,17.2406 +2016-08-08 20:00:45,3598.0,13.474, +2016-08-08 20:10:48,3598.0,13.5037, +2016-08-08 20:15:00,,,17.2064 +2016-08-08 20:20:50,3598.0,13.5037, +2016-08-08 20:30:00,,,17.2064 +2016-08-08 20:30:53,3598.0,13.5049, +2016-08-08 20:40:55,3598.0,13.4432, +2016-08-08 20:45:00,,,17.2421 +2016-08-08 20:50:57,3597.0,13.4704, +2016-08-08 21:00:00,,,17.239 +2016-08-08 21:01:00,3597.0,13.5001, +2016-08-08 21:11:02,3596.0,13.5013, +2016-08-08 21:15:00,,,17.2064 +2016-08-08 21:21:05,3596.0,13.5013, +2016-08-08 21:30:00,,,17.2064 +2016-08-08 21:31:07,3595.0,13.4704, +2016-08-08 21:41:10,3595.0,13.5001, +2016-08-08 21:45:00,,,17.2064 +2016-08-08 21:51:13,3595.0,13.5001, +2016-08-08 22:00:00,,,17.2064 +2016-08-08 22:01:15,3595.0,13.5013, +2016-08-08 22:11:18,3594.0,13.5013, +2016-08-08 22:15:00,,,17.2406 +2016-08-08 22:21:21,3593.0,13.5001, +2016-08-08 22:30:00,,,17.2064 +2016-08-08 22:31:24,3593.0,13.5013, +2016-08-08 22:41:26,3592.0,13.4692, +2016-08-08 22:45:00,,,17.2406 +2016-08-08 22:51:29,3592.0,13.5013, +2016-08-08 23:00:00,,,17.2406 +2016-08-08 23:01:31,3592.0,13.5013, +2016-08-08 23:11:34,3592.0,13.5013, +2016-08-08 23:15:00,,,17.2406 +2016-08-08 23:21:37,3591.0,13.5013, +2016-08-08 23:30:00,,,17.2406 +2016-08-08 23:31:39,3591.0,13.5025, +2016-08-08 23:41:42,3589.0,13.5013, +2016-08-08 23:45:00,,,17.2406 +2016-08-08 23:51:44,3590.0,13.5013, +2016-08-09 00:00:00,,,17.2406 +2016-08-09 00:01:47,3588.0,13.4384, +2016-08-09 00:11:50,3588.0,13.5001, +2016-08-09 00:15:00,,,17.2064 +2016-08-09 00:21:52,3588.0,13.5001, +2016-08-09 00:30:00,,,17.2406 +2016-08-09 00:31:55,3587.0,13.4977, +2016-08-09 00:41:57,3587.0,13.4965, +2016-08-09 00:45:00,,,17.2406 +2016-08-09 00:52:00,3586.0,13.4965, +2016-08-09 01:00:00,,,17.2406 +2016-08-09 01:02:02,3586.0,13.4977, +2016-08-09 01:12:04,3586.0,13.5583, +2016-08-09 01:15:00,,,17.2064 +2016-08-09 01:22:07,3585.0,13.5595, +2016-08-09 01:30:00,,,17.2064 +2016-08-09 01:32:09,3585.0,13.5905, +2016-08-09 01:42:12,3584.0,13.6215, +2016-08-09 01:45:00,,,17.2406 +2016-08-09 01:52:14,3583.0,13.5905, +2016-08-09 02:00:00,,,17.208 +2016-08-09 02:02:17,3582.0,13.5595, +2016-08-09 02:12:19,3580.0,13.5583, +2016-08-09 02:15:00,,,17.2064 +2016-08-09 02:22:22,3581.0,13.5595, +2016-08-09 02:30:00,,,17.2064 +2016-08-09 02:32:25,3579.0,13.5583, +2016-08-09 02:42:27,3579.0,13.5583, +2016-08-09 02:45:00,,,17.2049 +2016-08-09 02:52:29,3578.0,13.5595, +2016-08-09 03:00:00,,,17.2406 +2016-08-09 03:02:32,3578.0,13.5559, +2016-08-09 03:12:34,3577.0,13.5559, +2016-08-09 03:15:00,,,17.2064 +2016-08-09 03:22:37,3577.0,13.5559, +2016-08-09 03:30:00,,,17.2747 +2016-08-09 03:32:39,3577.0,13.5869, +2016-08-09 03:42:41,3577.0,13.5869, +2016-08-09 03:45:00,,,17.2064 +2016-08-09 03:52:44,3576.0,13.5523, +2016-08-09 04:00:00,,,17.2064 +2016-08-09 04:02:46,3575.0,13.5535, +2016-08-09 04:12:49,3574.0,13.5844, +2016-08-09 04:15:00,,,17.2421 +2016-08-09 04:22:51,3575.0,13.5535, +2016-08-09 04:30:00,,,17.2452 +2016-08-09 04:32:54,3574.0,13.5832, +2016-08-09 04:42:56,3574.0,13.5511, +2016-08-09 04:45:00,,,17.2064 +2016-08-09 04:52:59,3573.0,13.5844, +2016-08-09 05:00:00,,,17.2406 +2016-08-09 05:03:01,3574.0,13.5832, +2016-08-09 05:13:03,3573.0,13.5523, +2016-08-09 05:15:00,,,17.2064 +2016-08-09 05:23:06,3572.0,13.5844, +2016-08-09 05:30:00,,,17.2064 +2016-08-09 05:33:08,3572.0,13.5499, +2016-08-09 05:43:10,3572.0,13.5832, +2016-08-09 05:45:00,,,17.2452 +2016-08-09 05:53:12,3571.0,13.5487, +2016-08-09 06:00:00,,,17.2406 +2016-08-09 06:03:14,3571.0,13.5487, +2016-08-09 06:13:17,3571.0,13.5499, +2016-08-09 06:15:00,,,17.211 +2016-08-09 06:23:19,3571.0,13.5796, +2016-08-09 06:30:00,,,17.211 +2016-08-09 06:33:21,3571.0,13.5808, +2016-08-09 06:43:23,3571.0,13.5808, +2016-08-09 06:45:00,,,17.2406 +2016-08-09 06:53:26,3571.0,13.5808, +2016-08-09 07:00:00,,,17.2064 +2016-08-09 07:03:28,3571.0,13.5796, +2016-08-09 07:13:30,3571.0,13.5808, +2016-08-09 07:15:00,,,17.2747 +2016-08-09 07:23:33,3571.0,13.5772, +2016-08-09 07:30:00,,,17.2406 +2016-08-09 07:33:35,3571.0,13.6082, +2016-08-09 07:43:37,3572.0,13.5772, +2016-08-09 07:45:00,,,17.2064 +2016-08-09 07:53:40,3572.0,13.5463, +2016-08-09 08:00:00,,,17.2406 +2016-08-09 08:03:42,3572.0,13.5463, +2016-08-09 08:13:44,3572.0,13.5463, +2016-08-09 08:15:00,,,17.2064 +2016-08-09 08:23:47,3572.0,13.576, +2016-08-09 08:30:00,,,17.2406 +2016-08-09 08:33:49,3573.0,13.5772, +2016-08-09 08:43:52,3573.0,13.6069, +2016-08-09 08:45:00,,,17.2406 +2016-08-09 08:53:54,3574.0,13.5427, +2016-08-09 09:00:00,,,17.2406 +2016-08-09 09:03:56,3574.0,13.6045, +2016-08-09 09:13:59,3574.0,13.5724, +2016-08-09 09:15:00,,,17.2406 +2016-08-09 09:24:01,3574.0,13.5415, +2016-08-09 09:30:00,,,17.2064 +2016-08-09 09:34:04,3575.0,13.5427, +2016-08-09 09:44:06,3576.0,13.5724, +2016-08-09 09:45:00,,,17.2406 +2016-08-09 09:54:08,3577.0,13.5415, +2016-08-09 10:00:00,,,17.2406 +2016-08-09 10:04:11,3578.0,13.5724, +2016-08-09 10:14:13,3580.0,13.4797, +2016-08-09 10:15:00,,,17.2064 +2016-08-09 10:24:16,3581.0,13.4797, +2016-08-09 10:30:00,,,17.2406 +2016-08-09 10:34:18,3583.0,13.4773, +2016-08-09 10:44:21,3584.0,13.4453, +2016-08-09 10:45:00,,,17.1383 +2016-08-09 10:54:23,3585.0,13.4761, +2016-08-09 11:00:00,,,17.1383 +2016-08-09 11:04:26,3586.0,13.4761, +2016-08-09 11:14:28,3587.0,13.4761, +2016-08-09 11:15:00,,,17.1383 +2016-08-09 11:24:31,3588.0,13.4773, +2016-08-09 11:30:00,,,17.1383 +2016-08-09 11:34:33,3589.0,13.3837, +2016-08-09 11:44:36,3591.0,13.353, +2016-08-09 11:45:00,,,17.1383 +2016-08-09 11:54:38,3592.0,13.3837, +2016-08-09 12:00:00,,,17.1043 +2016-08-09 12:04:41,3592.0,13.3837, +2016-08-09 12:14:43,3593.0,13.3837, +2016-08-09 12:15:00,,,17.1383 +2016-08-09 12:24:46,3593.0,13.3837, +2016-08-09 12:30:00,,,17.1383 +2016-08-09 12:34:49,3594.0,13.3837, +2016-08-09 12:44:51,3595.0,13.3837, +2016-08-09 12:45:00,,,17.1399 +2016-08-09 12:54:54,3595.0,13.3837, +2016-08-09 13:00:00,,,17.1383 +2016-08-09 13:04:56,3595.0,13.3849, +2016-08-09 13:14:59,3595.0,13.3837, +2016-08-09 13:15:00,,,17.1368 +2016-08-09 13:25:02,3595.0,13.3542, +2016-08-09 13:30:00,,,17.1383 +2016-08-09 13:35:04,3596.0,13.353, +2016-08-09 13:45:00,,,17.1043 +2016-08-09 13:45:07,3596.0,13.3825, +2016-08-09 13:55:09,3595.0,13.3837, +2016-08-09 14:00:00,,,17.1383 +2016-08-09 14:05:12,3596.0,13.3837, +2016-08-09 14:15:00,,,17.1383 +2016-08-09 14:15:15,3596.0,13.3837, +2016-08-09 14:25:17,3597.0,13.3849, +2016-08-09 14:30:00,,,17.1383 +2016-08-09 14:35:20,3597.0,13.3837, +2016-08-09 14:45:00,,,17.0364 +2016-08-09 14:45:22,3598.0,13.353, +2016-08-09 14:55:26,3598.0,13.353, +2016-08-09 15:00:00,,,17.0349 +2016-08-09 15:05:30,3598.0,13.3223, +2016-08-09 15:15:00,,,17.0364 +2016-08-09 15:15:32,3597.0,13.353, +2016-08-09 15:25:35,3597.0,13.3837, +2016-08-09 15:30:00,,,17.0364 +2016-08-09 15:35:38,3597.0,13.3837, +2016-08-09 15:45:00,,,17.0349 +2016-08-09 15:45:40,3597.0,13.3837, +2016-08-09 15:55:43,3597.0,13.353, +2016-08-09 16:00:00,,,17.0364 +2016-08-09 16:05:45,3596.0,13.3849, +2016-08-09 16:15:00,,,17.0364 +2016-08-09 16:15:48,3597.0,13.353, +2016-08-09 16:25:51,3596.0,13.353, +2016-08-09 16:30:00,,,17.0026 +2016-08-09 16:35:53,3595.0,13.3837, +2016-08-09 16:45:00,,,17.0364 +2016-08-09 16:45:56,3595.0,13.3837, +2016-08-09 16:55:59,3593.0,13.3825, +2016-08-09 17:00:00,,,16.9687 +2016-08-09 17:06:01,3595.0,13.3837, +2016-08-09 17:15:00,,,17.0364 +2016-08-09 17:16:04,3595.0,13.3837, +2016-08-09 17:26:07,3595.0,13.3837, +2016-08-09 17:30:00,,,17.0364 +2016-08-09 17:36:09,3594.0,13.3837, +2016-08-09 17:45:00,,,17.0026 +2016-08-09 17:46:12,3594.0,13.353, +2016-08-09 17:56:14,3593.0,13.3837, +2016-08-09 18:00:00,,,17.0364 +2016-08-09 18:06:17,3593.0,13.3837, +2016-08-09 18:15:00,,,17.0026 +2016-08-09 18:16:19,3592.0,13.3837, +2016-08-09 18:26:22,3591.0,13.3837, +2016-08-09 18:30:00,,,17.0364 +2016-08-09 18:36:24,3591.0,13.3837, +2016-08-09 18:45:00,,,17.0349 +2016-08-09 18:46:27,3590.0,13.3542, +2016-08-09 18:56:29,3589.0,13.3542, +2016-08-09 19:00:00,,,17.0364 +2016-08-09 19:06:32,3588.0,13.3849, +2016-08-09 19:15:00,,,17.0364 +2016-08-09 19:16:35,3587.0,13.3837, +2016-08-09 19:26:37,3587.0,13.4145, +2016-08-09 19:30:00,,,17.0364 +2016-08-09 19:36:40,3586.0,13.3837, +2016-08-09 19:45:00,,,17.0364 +2016-08-09 19:46:42,3586.0,13.3837, +2016-08-09 19:56:45,3585.0,13.3837, +2016-08-09 20:00:00,,,17.0026 +2016-08-09 20:06:48,3585.0,13.3837, +2016-08-09 20:15:00,,,17.0364 +2016-08-09 20:16:50,3584.0,13.353, +2016-08-09 20:26:53,3583.0,13.3837, +2016-08-09 20:30:00,,,17.0364 +2016-08-09 20:36:55,3583.0,13.3837, +2016-08-09 20:45:00,,,17.0364 +2016-08-09 20:46:58,3582.0,13.3837, +2016-08-09 20:57:00,3582.0,13.3837, +2016-08-09 21:00:00,,,17.0364 +2016-08-09 21:07:03,3581.0,13.3837, +2016-08-09 21:15:00,,,17.0364 +2016-08-09 21:17:05,3581.0,13.3849, +2016-08-09 21:27:08,3577.0,13.3837, +2016-08-09 21:30:00,,,17.0364 +2016-08-09 21:37:10,3578.0,13.3837, +2016-08-09 21:45:00,,,17.0364 +2016-08-09 21:47:13,3578.0,13.3837, +2016-08-09 21:57:15,3578.0,13.3837, +2016-08-09 22:00:00,,,17.0364 +2016-08-09 22:07:18,3577.0,13.3837, +2016-08-09 22:15:00,,,17.0364 +2016-08-09 22:17:20,3577.0,13.3837, +2016-08-09 22:27:22,3577.0,13.3837, +2016-08-09 22:30:00,,,17.0364 +2016-08-09 22:37:25,3576.0,13.3837, +2016-08-09 22:45:00,,,17.0349 +2016-08-09 22:47:27,3574.0,13.3837, +2016-08-09 22:57:30,3575.0,13.3837, +2016-08-09 23:00:00,,,17.0364 +2016-08-09 23:07:32,3574.0,13.3837, +2016-08-09 23:15:00,,,17.0349 +2016-08-09 23:17:35,3573.0,13.3837, +2016-08-09 23:27:37,3574.0,13.3837, +2016-08-09 23:30:00,,,17.0704 +2016-08-09 23:37:39,3573.0,13.3849, +2016-08-09 23:45:00,,,17.038 +2016-08-09 23:47:42,3572.0,13.3837, +2016-08-09 23:57:44,3572.0,13.3802, +2016-08-10 00:00:00,,,17.0364 +2016-08-10 00:07:46,3571.0,13.3825, +2016-08-10 00:15:00,,,17.0364 +2016-08-10 00:17:48,3571.0,13.3802, +2016-08-10 00:27:50,3571.0,13.3506, +2016-08-10 00:30:00,,,17.0364 +2016-08-10 00:37:53,3570.0,13.3802, +2016-08-10 00:45:00,,,17.0364 +2016-08-10 00:47:55,3574.0,13.3494, +2016-08-10 00:57:58,3576.0,13.4109, +2016-08-10 01:00:00,,,17.0364 +2016-08-10 01:08:00,3570.0,13.3825, +2016-08-10 01:15:00,,,17.0364 +2016-08-10 01:18:03,3569.0,13.3778, +2016-08-10 01:28:05,3568.0,13.3778, +2016-08-10 01:30:00,,,17.0026 +2016-08-10 01:38:07,3568.0,13.3778, +2016-08-10 01:45:00,,,17.0364 +2016-08-10 01:48:10,3566.0,13.3778, +2016-08-10 01:58:12,3564.0,13.3778, +2016-08-10 02:00:00,,,17.0364 +2016-08-10 02:08:15,3562.0,13.3778, +2016-08-10 02:15:00,,,17.0364 +2016-08-10 02:18:17,3560.0,13.3778, +2016-08-10 02:28:19,3559.0,13.3742, +2016-08-10 02:30:00,,,16.998 +2016-08-10 02:38:22,3561.0,13.3742, +2016-08-10 02:45:00,,,17.0364 +2016-08-10 02:48:24,3561.0,13.3742, +2016-08-10 02:58:26,3559.0,13.3742, +2016-08-10 03:00:00,,,17.0319 +2016-08-10 03:08:29,3559.0,13.3742, +2016-08-10 03:15:00,,,17.0364 +2016-08-10 03:18:31,3559.0,13.3742, +2016-08-10 03:28:33,3559.0,13.405, +2016-08-10 03:30:00,,,17.0319 +2016-08-10 03:38:36,3559.0,13.3742, +2016-08-10 03:45:00,,,17.0364 +2016-08-10 03:48:38,3559.0,13.405, +2016-08-10 03:58:40,3558.0,13.3742, +2016-08-10 04:00:00,,,17.0364 +2016-08-10 04:08:42,3557.0,13.3742, +2016-08-10 04:15:00,,,17.0304 +2016-08-10 04:18:45,3557.0,13.3742, +2016-08-10 04:28:47,3557.0,13.3742, +2016-08-10 04:30:00,,,17.0319 +2016-08-10 04:38:49,3557.0,13.3742, +2016-08-10 04:45:00,,,17.0319 +2016-08-10 04:48:51,3557.0,13.3742, +2016-08-10 04:58:53,3556.0,13.3742, +2016-08-10 05:00:00,,,17.0304 +2016-08-10 05:08:56,3556.0,13.3754, +2016-08-10 05:15:00,,,17.0319 +2016-08-10 05:18:58,3556.0,13.3694, +2016-08-10 05:29:00,3555.0,13.3706, +2016-08-10 05:30:00,,,17.0319 +2016-08-10 05:39:03,3555.0,13.3706, +2016-08-10 05:45:00,,,17.0658 +2016-08-10 05:49:05,3555.0,13.3694, +2016-08-10 05:59:07,3553.0,13.3706, +2016-08-10 06:00:00,,,17.0319 +2016-08-10 06:09:09,3553.0,13.3706, +2016-08-10 06:15:00,,,17.0334 +2016-08-10 06:19:12,3553.0,13.3671, +2016-08-10 06:29:14,3554.0,13.3671, +2016-08-10 06:30:00,,,17.0319 +2016-08-10 06:39:16,3552.0,13.3659, +2016-08-10 06:45:00,,,17.0319 +2016-08-10 06:49:18,3553.0,13.3671, +2016-08-10 06:59:21,3553.0,13.3671, +2016-08-10 07:00:00,,,17.0319 +2016-08-10 07:09:23,3554.0,13.3635, +2016-08-10 07:15:00,,,17.0274 +2016-08-10 07:19:25,3554.0,13.3671, +2016-08-10 07:29:27,3554.0,13.3635, +2016-08-10 07:30:00,,,17.0319 +2016-08-10 07:39:29,3555.0,13.3635, +2016-08-10 07:45:00,,,17.0319 +2016-08-10 07:49:32,3555.0,13.3635, +2016-08-10 07:59:34,3556.0,13.3635, +2016-08-10 08:00:00,,,17.0334 +2016-08-10 08:09:36,3556.0,13.3635, +2016-08-10 08:15:00,,,17.0319 +2016-08-10 08:19:38,3557.0,13.3647, +2016-08-10 08:29:41,3557.0,13.3635, +2016-08-10 08:30:00,,,16.9935 +2016-08-10 08:39:43,3558.0,13.3623, +2016-08-10 08:45:00,,,17.0289 +2016-08-10 08:49:45,3559.0,13.3635, +2016-08-10 08:59:47,3559.0,13.3635, +2016-08-10 09:00:00,,,17.0289 +2016-08-10 09:09:49,3560.0,13.3635, +2016-08-10 09:15:00,,,17.0274 +2016-08-10 09:19:51,3561.0,13.3635, +2016-08-10 09:29:53,3561.0,13.3942, +2016-08-10 09:30:00,,,17.0274 +2016-08-10 09:39:55,3562.0,13.3635, +2016-08-10 09:45:00,,,17.0258 +2016-08-10 09:49:58,3562.0,13.3647, +2016-08-10 10:00:00,3563.0,13.3635,17.0289 +2016-08-10 10:10:02,3563.0,13.3635, +2016-08-10 10:15:00,,,17.0628 +2016-08-10 10:20:04,3563.0,13.3635, +2016-08-10 10:30:00,,,17.0228 +2016-08-10 10:30:07,3564.0,13.3635, +2016-08-10 10:40:09,3564.0,13.3635, +2016-08-10 10:45:00,,,17.0628 +2016-08-10 10:50:11,3564.0,13.3635, +2016-08-10 11:00:00,,,17.0289 +2016-08-10 11:00:14,3564.0,13.3635, +2016-08-10 11:10:16,3564.0,13.3635, +2016-08-10 11:15:00,,,17.0243 +2016-08-10 11:20:26,3562.0,13.3635, +2016-08-10 11:30:00,,,17.0274 +2016-08-10 11:30:28,3564.0,13.3635, +2016-08-10 11:40:30,3564.0,13.3942, +2016-08-10 11:45:00,,,17.0243 +2016-08-10 11:50:33,3564.0,13.3635, +2016-08-10 12:00:00,,,17.0243 +2016-08-10 12:00:35,3565.0,13.3635, +2016-08-10 12:10:37,3565.0,13.3588, +2016-08-10 12:15:00,,,17.0243 +2016-08-10 12:20:40,3566.0,13.3611, +2016-08-10 12:30:00,,,17.0228 +2016-08-10 12:30:42,3566.0,13.3588, +2016-08-10 12:40:44,3567.0,13.3599, +2016-08-10 12:45:00,,,17.0228 +2016-08-10 12:50:47,3568.0,13.3599, +2016-08-10 13:00:00,,,16.9214 +2016-08-10 13:00:49,3569.0,13.3599, +2016-08-10 13:10:51,3570.0,13.3304, +2016-08-10 13:15:00,,,16.9229 +2016-08-10 13:20:54,3571.0,13.3599, +2016-08-10 13:30:00,,,16.9229 +2016-08-10 13:30:56,3572.0,13.3281, +2016-08-10 13:40:58,3572.0,13.3599, +2016-08-10 13:45:00,,,16.9567 +2016-08-10 13:51:01,3574.0,13.3599, +2016-08-10 14:00:00,,,16.9214 +2016-08-10 14:01:03,3576.0,13.3599, +2016-08-10 14:11:06,3577.0,13.268, +2016-08-10 14:15:00,,,16.9214 +2016-08-10 14:21:08,3579.0,13.2986, +2016-08-10 14:30:00,,,16.9229 +2016-08-10 14:31:11,3581.0,13.2385, +2016-08-10 14:41:13,3581.0,13.2668, +2016-08-10 14:45:00,,,16.9214 +2016-08-10 14:51:16,3582.0,13.268, +2016-08-10 15:00:00,,,16.9214 +2016-08-10 15:01:18,3582.0,13.2986, +2016-08-10 15:11:21,3583.0,13.2385, +2016-08-10 15:15:00,,,16.9214 +2016-08-10 15:21:24,3583.0,13.268, +2016-08-10 15:30:00,,,16.9214 +2016-08-10 15:31:26,3583.0,13.268, +2016-08-10 15:41:29,3583.0,13.2668, +2016-08-10 15:45:00,,,16.9214 +2016-08-10 15:51:31,3583.0,13.268, +2016-08-10 16:00:00,,,16.9199 +2016-08-10 16:01:34,3583.0,13.268, +2016-08-10 16:11:36,3582.0,13.2668, +2016-08-10 16:15:00,,,16.8876 +2016-08-10 16:21:39,3582.0,13.268, +2016-08-10 16:30:00,,,16.8876 +2016-08-10 16:31:41,3582.0,13.2668, +2016-08-10 16:41:44,3582.0,13.2668, +2016-08-10 16:45:00,,,16.9214 +2016-08-10 16:51:47,3581.0,13.268, +2016-08-10 17:00:00,,,16.9214 +2016-08-10 17:01:49,3581.0,13.268, +2016-08-10 17:11:51,3581.0,13.2668, +2016-08-10 17:15:00,,,16.9214 +2016-08-10 17:21:54,3581.0,13.2373, +2016-08-10 17:30:00,,,16.9214 +2016-08-10 17:31:56,3581.0,13.268, +2016-08-10 17:41:59,3580.0,13.2668, +2016-08-10 17:45:00,,,16.9214 +2016-08-10 17:52:01,3581.0,13.268, +2016-08-10 18:00:00,,,16.9214 +2016-08-10 18:02:04,3580.0,13.268, +2016-08-10 18:12:06,3580.0,13.268, +2016-08-10 18:15:00,,,16.9214 +2016-08-10 18:22:09,3579.0,13.2373, +2016-08-10 18:30:00,,,16.9214 +2016-08-10 18:32:11,3579.0,13.2691, +2016-08-10 18:42:14,3578.0,13.268, +2016-08-10 18:45:00,,,16.9214 +2016-08-10 18:52:16,3578.0,13.268, +2016-08-10 19:00:00,,,16.9229 +2016-08-10 19:02:19,3577.0,13.2373, +2016-08-10 19:12:21,3577.0,13.268, +2016-08-10 19:15:00,,,16.9214 +2016-08-10 19:22:24,3576.0,13.268, +2016-08-10 19:30:00,,,16.9199 +2016-08-10 19:32:26,3576.0,13.2691, +2016-08-10 19:42:29,3576.0,13.268, +2016-08-10 19:45:00,,,16.9214 +2016-08-10 19:52:31,3574.0,13.2691, +2016-08-10 20:00:00,,,16.9199 +2016-08-10 20:02:33,3574.0,13.2373, +2016-08-10 20:12:36,3574.0,13.2691, +2016-08-10 20:15:00,,,16.9536 +2016-08-10 20:22:38,3573.0,13.268, +2016-08-10 20:30:00,,,16.9229 +2016-08-10 20:32:41,3572.0,13.268, +2016-08-10 20:42:43,3571.0,13.2656, +2016-08-10 20:45:00,,,16.9214 +2016-08-10 20:52:46,3570.0,13.2644, +2016-08-10 21:00:00,,,16.9229 +2016-08-10 21:02:48,3570.0,13.2644, +2016-08-10 21:12:51,3568.0,13.2656, +2016-08-10 21:15:00,,,16.9199 +2016-08-10 21:22:53,3568.0,13.2656, +2016-08-10 21:30:00,,,16.9229 +2016-08-10 21:32:56,3566.0,13.2656, +2016-08-10 21:42:58,3566.0,13.2656, +2016-08-10 21:45:00,,,16.8876 +2016-08-10 21:53:00,3565.0,13.2656, +2016-08-10 22:00:00,,,16.9214 +2016-08-10 22:03:02,3565.0,13.2962, +2016-08-10 22:13:05,3564.0,13.2644, +2016-08-10 22:15:00,,,16.9214 +2016-08-10 22:23:07,3563.0,13.2644, +2016-08-10 22:30:00,,,16.8831 +2016-08-10 22:33:09,3562.0,13.2644, +2016-08-10 22:43:18,3561.0,13.2644, +2016-08-10 22:45:00,,,16.9199 +2016-08-10 22:53:21,3560.0,13.2621, +2016-08-10 23:00:00,,,16.9214 +2016-08-10 23:03:23,3559.0,13.2656, +2016-08-10 23:13:25,3559.0,13.2621, +2016-08-10 23:15:00,,,16.9506 +2016-08-10 23:23:27,3558.0,13.2927, +2016-08-10 23:30:00,,,16.9214 +2016-08-10 23:33:30,3557.0,13.2915, +2016-08-10 23:43:32,3557.0,13.2609, +2016-08-10 23:45:00,,,16.9214 +2016-08-10 23:53:34,3556.0,13.2315, +2016-08-11 00:00:00,,,16.9551 +2016-08-11 00:15:00,,, +2016-08-11 00:30:00,,, +2016-08-11 00:45:00,,, +2016-08-11 01:00:00,,,16.9521 +2016-08-11 01:03:50,3551.0,13.3504, +2016-08-11 01:13:53,3550.0,13.2573, +2016-08-11 01:15:00,,,16.9184 +2016-08-11 01:23:55,3550.0,13.2268, +2016-08-11 01:30:00,,,16.9169 +2016-08-11 01:33:57,3549.0,13.2573, +2016-08-11 01:43:59,3549.0,13.2573, +2016-08-11 01:45:00,,,16.9184 +2016-08-11 01:54:02,3548.0,13.2573, +2016-08-11 02:00:00,,,16.9506 +2016-08-11 02:04:04,3548.0,13.2585, +2016-08-11 02:14:06,3547.0,13.2585, +2016-08-11 02:15:00,,,16.9521 +2016-08-11 02:24:09,3547.0,13.2585, +2016-08-11 02:30:00,,,16.9521 +2016-08-11 02:34:11,3546.0,13.2573, +2016-08-11 02:44:13,3545.0,13.2585, +2016-08-11 02:45:00,,,16.9184 +2016-08-11 02:54:16,3545.0,13.2573, +2016-08-11 03:00:00,,,16.8846 +2016-08-11 03:04:18,3545.0,13.2573, +2016-08-11 03:14:20,3545.0,13.3493, +2016-08-11 03:15:00,,,16.9184 +2016-08-11 03:24:22,3544.0,13.255, +2016-08-11 03:30:00,,,16.9184 +2016-08-11 03:34:25,3544.0,13.2562, +2016-08-11 03:44:27,3543.0,13.255, +2016-08-11 03:45:00,,,16.9123 +2016-08-11 03:54:29,3543.0,13.255, +2016-08-11 04:00:00,,,16.9184 +2016-08-11 04:04:31,3543.0,13.3481, +2016-08-11 04:14:34,3542.0,13.3469, +2016-08-11 04:15:00,,,16.9169 +2016-08-11 04:24:36,3542.0,13.3445, +2016-08-11 04:30:00,,,16.9184 +2016-08-11 04:34:38,3542.0,13.3433, +2016-08-11 04:44:40,3541.0,13.3433, +2016-08-11 04:45:00,,,16.9123 +2016-08-11 04:54:43,3541.0,13.3421, +2016-08-11 05:00:00,,,16.9138 +2016-08-11 05:04:45,3540.0,13.2514, +2016-08-11 05:14:47,3540.0,13.3421, +2016-08-11 05:15:00,,,16.9138 +2016-08-11 05:24:49,3540.0,13.2479, +2016-08-11 05:30:00,,,16.9138 +2016-08-11 05:34:51,3540.0,13.2479, +2016-08-11 05:44:53,3539.0,13.2479, +2016-08-11 05:45:00,,,16.9123 +2016-08-11 05:54:56,3539.0,13.2479, +2016-08-11 06:00:00,,,16.8786 +2016-08-11 06:04:58,3539.0,13.3398, +2016-08-11 06:15:00,3539.0,13.3398,16.9461 +2016-08-11 06:25:02,3538.0,13.3704, +2016-08-11 06:30:00,,,16.9123 +2016-08-11 06:35:04,3538.0,13.3398, +2016-08-11 06:45:00,,,16.9138 +2016-08-11 06:45:07,3538.0,13.3398, +2016-08-11 06:55:09,3538.0,13.3398, +2016-08-11 07:00:00,,,16.9138 +2016-08-11 07:05:11,3539.0,13.3398, +2016-08-11 07:15:00,,,16.9461 +2016-08-11 07:15:13,3539.0,13.3398, +2016-08-11 07:25:15,3540.0,13.3398, +2016-08-11 07:30:00,,,16.9123 +2016-08-11 07:35:18,3540.0,13.3398, +2016-08-11 07:45:00,,,16.9123 +2016-08-11 07:45:20,3541.0,13.3398, +2016-08-11 07:55:22,3542.0,13.3398, +2016-08-11 08:00:00,,,16.9093 +2016-08-11 08:05:25,3543.0,13.3398, +2016-08-11 08:15:00,,,16.9476 +2016-08-11 08:15:27,3544.0,13.2761, +2016-08-11 08:25:29,3545.0,13.2444, +2016-08-11 08:30:00,,,16.9078 +2016-08-11 08:35:32,3545.0,13.2444, +2016-08-11 08:45:00,,,16.9431 +2016-08-11 08:45:34,3547.0,13.2456, +2016-08-11 08:55:36,3548.0,13.2444, +2016-08-11 09:00:00,,,16.9416 +2016-08-11 09:05:39,3550.0,13.2444, +2016-08-11 09:15:00,,,16.9078 +2016-08-11 09:15:41,3550.0,13.2456, +2016-08-11 09:25:43,3553.0,13.2444, +2016-08-11 09:30:00,,,16.9093 +2016-08-11 09:35:46,3554.0,13.2408, +2016-08-11 09:45:00,,,16.9078 +2016-08-11 09:45:48,3556.0,13.2444, +2016-08-11 09:55:51,3557.0,13.2444, +2016-08-11 10:00:00,,,16.9078 +2016-08-11 10:05:53,3559.0,13.2408, +2016-08-11 10:15:00,,,16.9078 +2016-08-11 10:15:56,3560.0,13.2408, +2016-08-11 10:25:58,3563.0,13.2408, +2016-08-11 10:30:00,,,16.9078 +2016-08-11 10:36:00,3564.0,13.2408, +2016-08-11 10:45:00,,,16.9093 +2016-08-11 10:46:03,3565.0,13.2408, +2016-08-11 10:56:05,3566.0,13.2444, +2016-08-11 11:00:00,,,16.9078 +2016-08-11 11:06:08,3568.0,13.2714, +2016-08-11 11:15:00,,,16.9033 +2016-08-11 11:16:10,3569.0,13.2408, +2016-08-11 11:26:13,3570.0,13.2103, +2016-08-11 11:30:00,,,16.9048 +2016-08-11 11:36:15,3572.0,13.2103, +2016-08-11 11:45:00,,,16.9033 +2016-08-11 11:46:18,3572.0,13.2408, +2016-08-11 11:56:20,3573.0,13.1505, +2016-08-11 12:00:00,,,16.9033 +2016-08-11 12:06:23,3574.0,13.1528, +2016-08-11 12:15:00,,,16.9033 +2016-08-11 12:16:25,3574.0,13.1493, +2016-08-11 12:26:28,3575.0,13.1493, +2016-08-11 12:30:00,,,16.9048 +2016-08-11 12:36:30,3576.0,13.1528, +2016-08-11 12:45:00,,,16.9033 +2016-08-11 12:46:33,3577.0,13.1493, +2016-08-11 12:56:35,3577.0,13.1528, +2016-08-11 13:00:00,,,16.8696 +2016-08-11 13:06:38,3577.0,13.1528, +2016-08-11 13:15:00,,,16.9033 +2016-08-11 13:16:40,3578.0,13.1493, +2016-08-11 13:26:43,3578.0,13.1528, +2016-08-11 13:30:00,,,16.9048 +2016-08-11 13:36:46,3579.0,13.1528, +2016-08-11 13:45:00,,,16.8711 +2016-08-11 13:46:48,3580.0,13.1528, +2016-08-11 13:56:51,3581.0,13.1235, +2016-08-11 14:00:00,,,16.9033 +2016-08-11 14:06:53,3581.0,13.154000000000002, +2016-08-11 14:15:00,,,16.9048 +2016-08-11 14:16:56,3581.0,13.1528, +2016-08-11 14:26:58,3581.0,13.1528, +2016-08-11 14:30:00,,,16.9048 +2016-08-11 14:37:01,3582.0,13.1516, +2016-08-11 14:45:00,,,16.9033 +2016-08-11 14:47:04,3583.0,13.154000000000002, +2016-08-11 14:57:06,3583.0,13.1528, +2016-08-11 15:00:00,,,16.8038 +2016-08-11 15:07:09,3583.0,13.1528, +2016-08-11 15:15:00,,,16.8038 +2016-08-11 15:17:11,3583.0,13.1528, +2016-08-11 15:27:14,3584.0,13.1563, +2016-08-11 15:30:00,,,16.8038 +2016-08-11 15:37:16,3584.0,13.1528, +2016-08-11 15:45:00,,,16.8023 +2016-08-11 15:47:19,3585.0,13.154000000000002, +2016-08-11 15:57:22,3585.0,13.1528, +2016-08-11 16:00:00,,,16.8023 +2016-08-11 16:07:24,3585.0,13.1563, +2016-08-11 16:15:00,,,16.8053 +2016-08-11 16:17:26,3585.0,13.1563, +2016-08-11 16:27:29,3585.0,13.1563, +2016-08-11 16:30:00,,,16.8023 +2016-08-11 16:37:32,3585.0,13.1563, +2016-08-11 16:45:00,,,16.8038 +2016-08-11 16:47:34,3585.0,13.1258, +2016-08-11 16:57:37,3585.0,13.1563, +2016-08-11 17:00:00,,,16.8038 +2016-08-11 17:07:39,3585.0,13.1563, +2016-08-11 17:15:00,,,16.7687 +2016-08-11 17:17:42,3585.0,13.1563, +2016-08-11 17:27:44,3584.0,13.1563, +2016-08-11 17:30:00,,,16.8023 +2016-08-11 17:37:47,3584.0,13.1563, +2016-08-11 17:45:00,,,16.8023 +2016-08-11 17:47:49,3583.0,13.1258, +2016-08-11 17:57:52,3582.0,13.1563, +2016-08-11 18:00:00,,,16.8023 +2016-08-11 18:07:54,3581.0,13.1563, +2016-08-11 18:15:00,,,16.8023 +2016-08-11 18:17:57,3581.0,13.1563, +2016-08-11 18:28:00,3581.0,13.1551, +2016-08-11 18:30:00,,,16.7687 +2016-08-11 18:38:02,3580.0,13.1563, +2016-08-11 18:45:00,,,16.8053 +2016-08-11 18:48:05,3579.0,13.1563, +2016-08-11 18:58:07,3578.0,13.1563, +2016-08-11 19:00:00,,,16.8023 +2016-08-11 19:08:10,3577.0,13.1563, +2016-08-11 19:15:00,,,16.8038 +2016-08-11 19:18:12,3577.0,13.1563, +2016-08-11 19:28:15,3576.0,13.1563, +2016-08-11 19:30:00,,,16.8038 +2016-08-11 19:38:17,3575.0,13.1563, +2016-08-11 19:45:00,,,16.7702 +2016-08-11 19:48:20,3574.0,13.1563, +2016-08-11 19:58:22,3574.0,13.1563, +2016-08-11 20:00:00,,,16.8023 +2016-08-11 20:08:24,3573.0,13.1563, +2016-08-11 20:15:00,,,16.8023 +2016-08-11 20:18:27,3572.0,13.1563, +2016-08-11 20:28:29,3572.0,13.1563, +2016-08-11 20:30:00,,,16.8023 +2016-08-11 20:38:32,3571.0,13.1563, +2016-08-11 20:45:00,,,16.8023 +2016-08-11 20:48:34,3571.0,13.1868, +2016-08-11 20:58:37,3570.0,13.1563, +2016-08-11 21:00:00,,,16.8023 +2016-08-11 21:08:39,3570.0,13.1563, +2016-08-11 21:15:00,,,16.7687 +2016-08-11 21:18:41,3570.0,13.1563, +2016-08-11 21:28:44,3569.0,13.1563, +2016-08-11 21:30:00,,,16.8023 +2016-08-11 21:38:46,3569.0,13.1868, +2016-08-11 21:45:00,,,16.7978 +2016-08-11 21:48:48,3569.0,13.1563, +2016-08-11 21:58:50,3569.0,13.1868, +2016-08-11 22:00:00,,,16.7993 +2016-08-11 22:08:53,3568.0,13.1551, +2016-08-11 22:15:00,,,16.8023 +2016-08-11 22:18:55,3568.0,13.1868, +2016-08-11 22:28:57,3568.0,13.1563, +2016-08-11 22:30:00,,,16.7978 +2016-08-11 22:39:00,3568.0,13.1868, +2016-08-11 22:45:00,,,16.7993 +2016-08-11 22:49:02,3567.0,13.1563, +2016-08-11 22:59:04,3568.0,13.1563, +2016-08-11 23:00:00,,,16.8329 +2016-08-11 23:09:06,3567.0,13.1563, +2016-08-11 23:15:00,,,16.8023 +2016-08-11 23:19:09,3568.0,13.127, +2016-08-11 23:29:11,3567.0,13.1563, +2016-08-11 23:30:00,,,16.7993 +2016-08-11 23:39:13,3567.0,13.1563, +2016-08-11 23:45:00,,,16.7993 +2016-08-11 23:49:16,3567.0,13.1563, +2016-08-11 23:59:18,3567.0,13.1563, +2016-08-12 00:00:00,,,16.8008 +2016-08-12 00:09:20,3567.0,13.1563, +2016-08-12 00:15:00,,,16.7993 +2016-08-12 00:19:22,3566.0,13.1563, +2016-08-12 00:29:25,3567.0,13.1563, +2016-08-12 00:30:00,,,16.7993 +2016-08-12 00:39:27,3567.0,13.1575, +2016-08-12 00:45:00,,,16.7993 +2016-08-12 00:49:29,3567.0,13.1563, +2016-08-12 00:59:31,3567.0,13.1563, +2016-08-12 01:00:00,,,16.8329 +2016-08-12 01:09:34,3567.0,13.1563, +2016-08-12 01:15:00,,,16.7993 +2016-08-12 01:19:36,3567.0,13.1563, +2016-08-12 01:29:38,3567.0,13.1563, +2016-08-12 01:30:00,,,16.7993 +2016-08-12 01:39:40,3567.0,13.1563, +2016-08-12 01:45:00,,,16.7993 +2016-08-12 01:49:43,3567.0,13.1258, +2016-08-12 01:59:45,3568.0,13.1563, +2016-08-12 02:00:00,,,16.7993 +2016-08-12 02:09:47,3568.0,13.1563, +2016-08-12 02:15:00,,,16.7993 +2016-08-12 02:19:50,3568.0,13.1563, +2016-08-12 02:29:53,3567.0,13.1563, +2016-08-12 02:30:00,,,16.7993 +2016-08-12 02:39:55,3567.0,13.1563, +2016-08-12 02:45:00,,,16.7993 +2016-08-12 02:49:58,3568.0,13.1575, +2016-08-12 03:00:00,3568.0,13.1258,16.7993 +2016-08-12 03:10:03,3568.0,13.1563, +2016-08-12 03:15:00,,,16.7993 +2016-08-12 03:20:05,3568.0,13.1563, +2016-08-12 03:30:00,,,16.7993 +2016-08-12 03:30:08,3568.0,13.1563, +2016-08-12 03:40:10,3568.0,13.1563, +2016-08-12 03:45:00,,,16.7993 +2016-08-12 03:50:13,3568.0,13.1563, +2016-08-12 04:00:00,,,16.7978 +2016-08-12 04:00:15,3568.0,13.1563, +2016-08-12 04:10:18,3568.0,13.1563, +2016-08-12 04:15:00,,,16.7993 +2016-08-12 04:20:20,3568.0,13.1563, +2016-08-12 04:30:00,,,16.7948 +2016-08-12 04:30:23,3567.0,13.1563, +2016-08-12 04:40:25,3567.0,13.1563, +2016-08-12 04:45:00,,,16.8285 +2016-08-12 04:50:28,3567.0,13.1563, +2016-08-12 05:00:00,,,16.7613 +2016-08-12 05:00:30,3566.0,13.1563, +2016-08-12 05:10:32,3567.0,13.1563, +2016-08-12 05:15:00,,,16.7948 +2016-08-12 05:20:35,3566.0,13.1563, +2016-08-12 05:30:00,,,16.8285 +2016-08-12 05:30:37,3566.0,13.1563, +2016-08-12 05:40:40,3566.0,13.1563, +2016-08-12 05:45:00,,,16.7963 +2016-08-12 05:50:42,3566.0,13.1563, +2016-08-12 06:00:00,,,16.7948 +2016-08-12 06:00:45,3566.0,13.1551, +2016-08-12 06:10:47,3566.0,13.1563, +2016-08-12 06:15:00,,,16.7993 +2016-08-12 06:20:50,3565.0,13.1868, +2016-08-12 06:30:00,,,16.7948 +2016-08-12 06:30:52,3566.0,13.1258, +2016-08-12 06:40:54,3566.0,13.1563, +2016-08-12 06:45:00,,,16.7948 +2016-08-12 06:50:57,3565.0,13.1258, +2016-08-12 07:00:00,,,16.7948 +2016-08-12 07:00:59,3565.0,13.1563, +2016-08-12 07:11:01,3565.0,13.2479, +2016-08-12 07:15:00,,,16.7948 +2016-08-12 07:21:04,3565.0,13.2479, +2016-08-12 07:30:00,,,16.7948 +2016-08-12 07:31:06,3565.0,13.2479, +2016-08-12 07:41:08,3565.0,13.2479, +2016-08-12 07:45:00,,,16.7948 +2016-08-12 07:51:11,3566.0,13.2479, +2016-08-12 08:00:00,,,16.7948 +2016-08-12 08:01:13,3541.0,13.2173, +2016-08-12 08:11:16,3566.0,13.2479, +2016-08-12 08:15:00,,,16.7948 +2016-08-12 08:21:18,3566.0,13.2479, +2016-08-12 08:30:00,,,16.7948 +2016-08-12 08:31:21,3566.0,13.2479, +2016-08-12 08:41:23,3566.0,13.2479, +2016-08-12 08:45:00,,,16.7948 +2016-08-12 08:51:26,3567.0,13.2479, +2016-08-12 09:00:00,,,16.7948 +2016-08-12 09:01:28,3566.0,13.2479, +2016-08-12 09:11:30,3567.0,13.1563, +2016-08-12 09:15:00,,,16.7948 +2016-08-12 09:21:33,3566.0,13.1223, +2016-08-12 09:30:00,,,16.7948 +2016-08-12 09:31:35,3568.0,13.2479, +2016-08-12 09:41:38,3570.0,13.1563, +2016-08-12 09:45:00,,,16.7948 +2016-08-12 09:51:40,3570.0,13.1528, +2016-08-12 10:00:00,,,16.7948 +2016-08-12 10:01:42,3571.0,13.1563, +2016-08-12 10:11:45,3572.0,13.1563, +2016-08-12 10:15:00,,,16.7948 +2016-08-12 10:21:47,3573.0,13.1528, +2016-08-12 10:30:00,,,16.7948 +2016-08-12 10:31:50,3574.0,13.154000000000002, +2016-08-12 10:41:52,3574.0,13.1563, +2016-08-12 10:45:00,,,16.8285 +2016-08-12 10:51:55,3575.0,13.1563, +2016-08-12 11:00:00,,,16.7948 +2016-08-12 11:01:57,3576.0,13.1563, +2016-08-12 11:12:00,3577.0,13.1563, +2016-08-12 11:15:00,,,16.7613 +2016-08-12 11:22:02,3577.0,13.1563, +2016-08-12 11:30:00,,,16.7948 +2016-08-12 11:32:05,3578.0,13.1563, +2016-08-12 11:42:07,3579.0,13.1258, +2016-08-12 11:45:00,,,16.7948 +2016-08-12 11:52:09,3580.0,13.2479, +2016-08-12 12:00:00,,,16.7613 +2016-08-12 12:02:12,3581.0,13.2479, +2016-08-12 12:12:14,3581.0,13.2479, +2016-08-12 12:15:00,,,16.7948 +2016-08-12 12:22:17,3582.0,13.2479, +2016-08-12 12:30:00,,,16.7948 +2016-08-12 12:32:20,3583.0,13.2479, +2016-08-12 12:42:22,3584.0,13.2479, +2016-08-12 12:45:00,,,16.7948 +2016-08-12 12:52:25,3584.0,13.2467, +2016-08-12 13:00:00,,,16.824 +2016-08-12 13:02:27,3585.0,13.2479, +2016-08-12 13:12:30,3585.0,13.2479, +2016-08-12 13:15:00,,,16.7948 +2016-08-12 13:22:32,3585.0,13.2479, +2016-08-12 13:30:00,,,16.7904 +2016-08-12 13:32:35,3585.0,13.2479, +2016-08-12 13:42:37,3586.0,13.2785, +2016-08-12 13:45:00,,,16.7553 +2016-08-12 13:52:40,3586.0,13.2479, +2016-08-12 14:00:00,,,16.7904 +2016-08-12 14:02:42,3587.0,13.2173, +2016-08-12 14:12:45,3587.0,13.2479, +2016-08-12 14:15:00,,,16.7904 +2016-08-12 14:22:47,3588.0,13.2479, +2016-08-12 14:30:00,,,16.7904 +2016-08-12 14:32:50,3588.0,13.2479, +2016-08-12 14:42:52,3588.0,13.2479, +2016-08-12 14:45:00,,,16.7904 +2016-08-12 14:52:55,3590.0,13.2479, +2016-08-12 15:00:00,,,16.7948 +2016-08-12 15:02:57,3591.0,13.2173, +2016-08-12 15:13:00,3592.0,13.2479, +2016-08-12 15:15:00,,,16.7904 +2016-08-12 15:23:03,3592.0,13.2503, +2016-08-12 15:30:00,,,16.7904 +2016-08-12 15:33:05,3593.0,13.1586, +2016-08-12 15:43:08,3593.0,13.2503, +2016-08-12 15:45:00,,,16.7568 +2016-08-12 15:53:10,3593.0,13.2197, +2016-08-12 16:00:00,,,16.7904 +2016-08-12 16:03:13,3593.0,13.1586, +2016-08-12 16:13:16,3593.0,13.2503, +2016-08-12 16:15:00,,,16.7948 +2016-08-12 16:23:19,3593.0,13.255, +2016-08-12 16:30:00,,,16.7904 +2016-08-12 16:33:22,3593.0,13.255, +2016-08-12 16:43:24,3593.0,13.255, +2016-08-12 16:45:00,,,16.7904 +2016-08-12 16:53:27,3594.0,13.2256, +2016-08-12 17:00:00,,,16.7568 +2016-08-12 17:03:30,3593.0,13.1621, +2016-08-12 17:13:32,3593.0,13.1352, +2016-08-12 17:15:00,,,16.7568 +2016-08-12 17:23:35,3594.0,13.2573, +2016-08-12 17:30:00,,,16.7889 +2016-08-12 17:33:37,3594.0,13.2573, +2016-08-12 17:43:40,3593.0,13.2573, +2016-08-12 17:45:00,,,16.7904 +2016-08-12 17:53:43,3594.0,13.2573, +2016-08-12 18:00:00,,,16.7904 +2016-08-12 18:03:45,3593.0,13.2573, +2016-08-12 18:13:48,3593.0,13.2573, +2016-08-12 18:15:00,,,16.7904 +2016-08-12 18:23:50,3593.0,13.2573, +2016-08-12 18:30:00,,,16.7904 +2016-08-12 18:33:53,3593.0,13.2573, +2016-08-12 18:43:56,3593.0,13.2268, +2016-08-12 18:45:00,,,16.7904 +2016-08-12 18:53:58,3593.0,13.2573, +2016-08-12 19:00:00,,,16.7568 +2016-08-12 19:04:01,3593.0,13.2573, +2016-08-12 19:14:03,3593.0,13.2573, +2016-08-12 19:15:00,,,16.7904 +2016-08-12 19:24:06,3593.0,13.2573, +2016-08-12 19:30:00,,,16.7904 +2016-08-12 19:34:09,3593.0,13.2585, +2016-08-12 19:44:11,3593.0,13.2891, +2016-08-12 19:45:00,,,16.7568 +2016-08-12 19:54:14,3592.0,13.2573, +2016-08-12 20:00:00,,,16.7904 +2016-08-12 20:04:16,3592.0,13.2573, +2016-08-12 20:14:19,3592.0,13.2573, +2016-08-12 20:15:00,,,16.7904 +2016-08-12 20:24:22,3592.0,13.2573, +2016-08-12 20:30:00,,,16.7904 +2016-08-12 20:34:24,3592.0,13.2573, +2016-08-12 20:44:27,3592.0,13.2268, +2016-08-12 20:45:00,,,16.7948 +2016-08-12 20:54:29,3592.0,13.2621, +2016-08-12 21:00:00,,,16.7904 +2016-08-12 21:04:32,3592.0,13.2621, +2016-08-12 21:14:35,3592.0,13.2609, +2016-08-12 21:15:00,,,16.7904 +2016-08-12 21:24:37,3592.0,13.2609, +2016-08-12 21:30:00,,,16.7904 +2016-08-12 21:34:40,3592.0,13.2609, +2016-08-12 21:44:42,3591.0,13.2621, +2016-08-12 21:45:00,,,16.7904 +2016-08-12 21:54:45,3591.0,13.2609, +2016-08-12 22:00:00,,,16.7904 +2016-08-12 22:04:47,3591.0,13.2644, +2016-08-12 22:14:50,3590.0,13.2621, +2016-08-12 22:15:00,,,16.7904 +2016-08-12 22:24:52,3590.0,13.2621, +2016-08-12 22:30:00,,,16.7904 +2016-08-12 22:34:55,3590.0,13.2303, +2016-08-12 22:44:57,3590.0,13.295, +2016-08-12 22:45:00,,,16.7948 +2016-08-12 22:55:00,3590.0,13.1739, +2016-08-12 23:00:00,,,16.7904 +2016-08-12 23:05:02,3589.0,13.2644, +2016-08-12 23:15:00,,,16.7904 +2016-08-12 23:15:05,3590.0,13.2656, +2016-08-12 23:25:08,3589.0,13.2656, +2016-08-12 23:30:00,,,16.7904 +2016-08-12 23:35:10,3589.0,13.2644, +2016-08-12 23:45:00,,,16.7904 +2016-08-12 23:45:13,3589.0,13.2656, +2016-08-12 23:55:15,3588.0,13.235, +2016-08-13 00:00:00,,,16.7904 +2016-08-13 00:05:18,3588.0,13.2691, +2016-08-13 00:15:00,,,16.7948 +2016-08-13 00:15:20,3588.0,13.2656, +2016-08-13 00:25:23,3588.0,13.2656, +2016-08-13 00:30:00,,,16.7613 +2016-08-13 00:35:26,3588.0,13.2668, +2016-08-13 00:45:00,,,16.7948 +2016-08-13 00:45:28,3588.0,13.2668, +2016-08-13 00:55:30,3588.0,13.2986, +2016-08-13 01:00:00,,,16.7948 +2016-08-13 01:05:33,3588.0,13.268, +2016-08-13 01:15:00,,,16.7948 +2016-08-13 01:15:35,3588.0,13.2668, +2016-08-13 01:25:37,3588.0,13.268, +2016-08-13 01:30:00,,,16.7948 +2016-08-13 01:35:39,3588.0,13.2691, +2016-08-13 01:45:00,,,16.7948 +2016-08-13 01:45:42,3588.0,13.268, +2016-08-13 01:55:44,3588.0,13.2668, +2016-08-13 02:00:00,,,16.8285 +2016-08-13 02:05:47,3587.0,13.2373, +2016-08-13 02:15:00,,,16.7934 +2016-08-13 02:15:50,3588.0,13.2668, +2016-08-13 02:25:52,3587.0,13.2668, +2016-08-13 02:30:00,,,16.7948 +2016-08-13 02:35:54,3587.0,13.268, +2016-08-13 02:45:00,,,16.7948 +2016-08-13 02:45:57,3587.0,13.268, +2016-08-13 02:56:00,3587.0,13.268, +2016-08-13 03:00:00,,,16.7948 +2016-08-13 03:06:02,3587.0,13.2715, +2016-08-13 03:15:00,,,16.7948 +2016-08-13 03:16:05,3587.0,13.268, +2016-08-13 03:26:07,3586.0,13.2668, +2016-08-13 03:30:00,,,16.7948 +2016-08-13 03:36:09,3586.0,13.268, +2016-08-13 03:45:00,,,16.7613 +2016-08-13 03:46:12,3586.0,13.2715, +2016-08-13 03:56:14,3586.0,13.2715, +2016-08-13 04:00:00,,,16.7948 +2016-08-13 04:06:17,3586.0,13.2715, +2016-08-13 04:15:00,,,16.7948 +2016-08-13 04:16:19,3585.0,13.2715, +2016-08-13 04:26:22,3585.0,13.2715, +2016-08-13 04:30:00,,,16.7948 +2016-08-13 04:36:24,3585.0,13.2715, +2016-08-13 04:45:00,,,16.7948 +2016-08-13 04:46:26,3585.0,13.3021, +2016-08-13 04:56:29,3585.0,13.2409, +2016-08-13 05:00:00,,,16.8285 +2016-08-13 05:06:31,3585.0,13.2703, +2016-08-13 05:15:00,,,16.7993 +2016-08-13 05:16:34,3584.0,13.2715, +2016-08-13 05:26:36,3584.0,13.2715, +2016-08-13 05:30:00,,,16.7948 +2016-08-13 05:36:39,3584.0,13.2715, +2016-08-13 05:45:00,,,16.7948 +2016-08-13 05:46:41,3584.0,13.2715, +2016-08-13 05:56:44,3583.0,13.2715, +2016-08-13 06:00:00,,,16.7934 +2016-08-13 06:06:46,3583.0,13.2715, +2016-08-13 06:15:00,,,16.7948 +2016-08-13 06:16:49,3583.0,13.2703, +2016-08-13 06:26:51,3582.0,13.2715, +2016-08-13 06:30:00,,,16.7948 +2016-08-13 06:36:54,3582.0,13.2715, +2016-08-13 06:45:00,,,16.7948 +2016-08-13 06:46:56,3582.0,13.2715, +2016-08-13 06:56:59,3582.0,13.2703, +2016-08-13 07:00:00,,,16.7613 +2016-08-13 07:07:01,3582.0,13.2703, +2016-08-13 07:15:00,,,16.7657 +2016-08-13 07:17:03,3582.0,13.2715, +2016-08-13 07:27:06,3582.0,13.2715, +2016-08-13 07:30:00,,,16.7948 +2016-08-13 07:37:08,3582.0,13.2715, +2016-08-13 07:45:00,,,16.7993 +2016-08-13 07:47:11,3583.0,13.2715, +2016-08-13 07:57:13,3583.0,13.2715, +2016-08-13 08:00:00,,,16.7993 +2016-08-13 08:07:16,3583.0,13.2703, +2016-08-13 08:15:00,,,16.7993 +2016-08-13 08:17:18,3584.0,13.2715, +2016-08-13 08:27:21,3585.0,13.2397, +2016-08-13 08:30:00,,,16.7978 +2016-08-13 08:37:23,3586.0,13.3021, +2016-08-13 08:45:00,,,16.7993 +2016-08-13 08:47:26,3586.0,13.2715, +2016-08-13 08:57:29,3587.0,13.2715, +2016-08-13 09:00:00,,,16.7657 +2016-08-13 09:07:31,3588.0,13.2715, +2016-08-13 09:15:00,,,16.7993 +2016-08-13 09:17:34,3588.0,13.2409, +2016-08-13 09:27:36,3590.0,13.2703, +2016-08-13 09:30:00,,,16.7993 +2016-08-13 09:37:39,3592.0,13.2715, +2016-08-13 09:45:00,,,16.7993 +2016-08-13 09:47:42,3593.0,13.2715, +2016-08-13 09:57:45,3595.0,13.1785, +2016-08-13 10:00:00,,,16.8329 +2016-08-13 10:07:47,3595.0,13.1797, +2016-08-13 10:15:00,,,16.7993 +2016-08-13 10:17:49,3597.0,13.1797, +2016-08-13 10:27:52,3598.0,13.1492, +2016-08-13 10:30:00,,,16.7993 +2016-08-13 10:37:54,3598.0,13.1797, +2016-08-13 10:45:00,,,16.7993 +2016-08-13 10:47:57,3599.0,13.1797, +2016-08-13 10:57:59,3599.0,13.1797, +2016-08-13 11:00:00,,,16.7993 +2016-08-13 11:08:02,3599.0,13.1797, +2016-08-13 11:15:00,,,16.7993 +2016-08-13 11:18:05,3599.0,13.1785, +2016-08-13 11:28:07,3599.0,13.1187, +2016-08-13 11:30:00,,,16.7993 +2016-08-13 11:38:10,3599.0,13.1187, +2016-08-13 11:45:00,,,16.7993 +2016-08-13 11:48:13,3599.0,13.0882, +2016-08-13 11:58:16,3599.0,13.0566, +2016-08-13 12:00:00,,,16.7657 +2016-08-13 12:08:18,3599.0,13.1187, +2016-08-13 12:15:00,,,16.6652 +2016-08-13 12:18:21,3599.0,13.087, +2016-08-13 12:28:24,3599.0,13.1187, +2016-08-13 12:30:00,,,16.6652 +2016-08-13 12:38:27,3599.0,13.0917, +2016-08-13 12:45:00,,,16.6652 +2016-08-13 12:48:30,3599.0,13.0003, +2016-08-13 12:58:32,3599.0,13.0003, +2016-08-13 13:00:00,,,16.6652 +2016-08-13 13:08:35,3599.0,13.0038, +2016-08-13 13:15:00,,,16.6987 +2016-08-13 13:18:38,3599.0,13.0027, +2016-08-13 13:28:41,3599.0,13.0038, +2016-08-13 13:30:00,,,16.6987 +2016-08-13 13:38:44,3599.0,13.0027, +2016-08-13 13:45:00,,,16.6987 +2016-08-13 13:48:46,3599.0,13.0331, +2016-08-13 13:58:49,3599.0,13.0331, +2016-08-13 14:00:00,,,16.7002 +2016-08-13 14:08:52,3599.0,12.9769, +2016-08-13 14:15:00,,,16.6637 +2016-08-13 14:18:55,3599.0,13.0061, +2016-08-13 14:28:58,3599.0,13.0061, +2016-08-13 14:30:00,,,16.6696 +2016-08-13 14:39:01,3599.0,13.0061, +2016-08-13 14:45:00,,,16.6682 +2016-08-13 14:49:04,3599.0,13.0073, +2016-08-13 14:59:07,3599.0,12.9757, +2016-08-13 15:00:00,,,16.7016 +2016-08-13 15:09:09,3599.0,13.0061, +2016-08-13 15:15:00,,,16.7016 +2016-08-13 15:19:12,3599.0,13.0061, +2016-08-13 15:29:15,3599.0,13.0073, +2016-08-13 15:30:00,,,16.6972 +2016-08-13 15:39:18,3599.0,12.9757, +2016-08-13 15:45:00,,,16.7016 +2016-08-13 15:49:21,3599.0,13.0061, +2016-08-13 15:59:24,3599.0,12.9769, +2016-08-13 16:00:00,,,16.6696 +2016-08-13 16:09:27,3599.0,13.0061, +2016-08-13 16:15:00,,,16.6682 +2016-08-13 16:19:30,3599.0,12.9769, +2016-08-13 16:29:33,3599.0,13.0096, +2016-08-13 16:30:00,,,16.6682 +2016-08-13 16:39:36,3599.0,13.0096, +2016-08-13 16:45:00,,,16.6682 +2016-08-13 16:49:38,3599.0,13.0096, +2016-08-13 16:59:41,3599.0,13.0131, +2016-08-13 17:00:00,,,16.6347 +2016-08-13 17:09:44,3599.0,13.04, +2016-08-13 17:15:00,,,16.5679 +2016-08-13 17:19:54,3599.0,13.0131, +2016-08-13 17:29:57,3599.0,12.9815, +2016-08-13 17:30:00,,,16.5679 +2016-08-13 17:40:00,3599.0,12.9826, +2016-08-13 17:45:00,,,16.5694 +2016-08-13 17:50:03,3599.0,13.0154, +2016-08-13 18:00:00,,,16.5679 +2016-08-13 18:00:05,3599.0,13.0131, +2016-08-13 18:10:08,3599.0,13.047, +2016-08-13 18:15:00,,,16.6013 +2016-08-13 18:20:11,3599.0,13.0165, +2016-08-13 18:30:00,,,16.6362 +2016-08-13 18:30:14,3599.0,13.0165, +2016-08-13 18:40:17,3599.0,12.9861, +2016-08-13 18:45:00,,,16.6028 +2016-08-13 18:50:19,3599.0,12.9861, +2016-08-13 19:00:00,,,16.6013 +2016-08-13 19:00:22,3599.0,13.0165, +2016-08-13 19:10:25,3599.0,13.0165, +2016-08-13 19:15:00,,,16.6013 +2016-08-13 19:20:28,3599.0,13.047, +2016-08-13 19:30:00,,,16.6347 +2016-08-13 19:30:32,3599.0,13.0165, +2016-08-13 19:40:36,3599.0,13.0165, +2016-08-13 19:45:00,,,16.5679 +2016-08-13 19:50:38,3599.0,12.9861, +2016-08-13 20:00:00,,,16.6013 +2016-08-13 20:00:41,3599.0,13.0165, +2016-08-13 20:10:44,3599.0,13.0165, +2016-08-13 20:15:00,,,16.6347 +2016-08-13 20:20:47,3599.0,13.0165, +2016-08-13 20:30:00,,,16.6013 +2016-08-13 20:30:50,3599.0,12.985, +2016-08-13 20:40:53,3599.0,13.047, +2016-08-13 20:45:00,,,16.6362 +2016-08-13 20:50:55,3599.0,13.0165, +2016-08-13 21:00:00,,,16.5679 +2016-08-13 21:00:58,3599.0,13.0177, +2016-08-13 21:11:01,3599.0,13.0165, +2016-08-13 21:15:00,,,16.6013 +2016-08-13 21:21:04,3599.0,13.047, +2016-08-13 21:30:00,,,16.6013 +2016-08-13 21:31:06,3599.0,13.0165, +2016-08-13 21:41:09,3599.0,13.0165, +2016-08-13 21:45:00,,,16.6028 +2016-08-13 21:51:12,3599.0,13.0165, +2016-08-13 22:00:00,,,16.6347 +2016-08-13 22:01:14,3598.0,13.047, +2016-08-13 22:11:17,3598.0,13.0165, +2016-08-13 22:15:00,,,16.6347 +2016-08-13 22:21:20,3598.0,13.0165, +2016-08-13 22:30:00,,,16.6362 +2016-08-13 22:31:22,3598.0,13.047, +2016-08-13 22:41:25,3598.0,13.047, +2016-08-13 22:45:00,,,16.6362 +2016-08-13 22:51:28,3598.0,13.0165, +2016-08-13 23:00:00,,,16.6362 +2016-08-13 23:01:31,3598.0,13.047, +2016-08-13 23:11:33,3598.0,13.0165, +2016-08-13 23:15:00,,,16.6347 +2016-08-13 23:21:36,3597.0,13.047, +2016-08-13 23:30:00,,,16.6347 +2016-08-13 23:31:38,3597.0,13.047, +2016-08-13 23:41:41,3597.0,13.0165, +2016-08-13 23:45:00,,,16.6362 +2016-08-13 23:51:44,3596.0,13.047, +2016-08-14 00:00:00,,,16.6362 +2016-08-14 00:01:47,3596.0,13.0458, +2016-08-14 00:11:49,3595.0,13.0165, +2016-08-14 00:15:00,,,16.6362 +2016-08-14 00:21:52,3595.0,13.0165, +2016-08-14 00:30:00,,,16.6377 +2016-08-14 00:31:55,3595.0,13.0165, +2016-08-14 00:41:57,3595.0,13.0177, +2016-08-14 00:45:00,,,16.6013 +2016-08-14 00:52:00,3594.0,13.0165, +2016-08-14 01:00:00,,,16.6362 +2016-08-14 01:02:03,3593.0,13.047, +2016-08-14 01:12:05,3593.0,13.047, +2016-08-14 01:15:00,,,16.6013 +2016-08-14 01:22:08,3593.0,13.047, +2016-08-14 01:30:00,,,16.6347 +2016-08-14 01:32:11,3593.0,13.0458, +2016-08-14 01:42:13,3592.0,13.0165, +2016-08-14 01:45:00,,,16.6028 +2016-08-14 01:52:16,3592.0,13.0165, +2016-08-14 02:00:00,,,16.6347 +2016-08-14 02:02:19,3592.0,13.047, +2016-08-14 02:12:21,3591.0,12.9861, +2016-08-14 02:15:00,,,16.6013 +2016-08-14 02:22:24,3592.0,13.0165, +2016-08-14 02:30:00,,,16.6013 +2016-08-14 02:32:26,3591.0,12.9861, +2016-08-14 02:42:36,3591.0,13.047, +2016-08-14 02:45:00,,,16.6028 +2016-08-14 02:52:39,3591.0,13.047, +2016-08-14 03:00:00,,,16.6347 +2016-08-14 03:02:42,3590.0,13.0165, +2016-08-14 03:12:44,3590.0,13.0165, +2016-08-14 03:15:00,,,16.6362 +2016-08-14 03:22:47,3590.0,12.9861, +2016-08-14 03:30:00,,,16.6013 +2016-08-14 03:32:49,3589.0,13.0165, +2016-08-14 03:42:52,3589.0,13.0165, +2016-08-14 03:45:00,,,16.6057 +2016-08-14 03:52:54,3589.0,13.0458, +2016-08-14 04:00:00,,,16.6072 +2016-08-14 04:02:57,3588.0,13.0165, +2016-08-14 04:13:00,3588.0,13.047, +2016-08-14 04:15:00,,,16.6057 +2016-08-14 04:23:02,3588.0,13.0119, +2016-08-14 04:30:00,,,16.6406 +2016-08-14 04:33:04,3588.0,13.0482, +2016-08-14 04:43:07,3588.0,13.047, +2016-08-14 04:45:00,,,16.6392 +2016-08-14 04:53:09,3587.0,13.0131, +2016-08-14 05:00:00,,,16.5724 +2016-08-14 05:03:12,3587.0,13.0435, +2016-08-14 05:13:14,3587.0,13.0131, +2016-08-14 05:15:00,,,16.6406 +2016-08-14 05:23:17,3587.0,13.0131, +2016-08-14 05:30:00,,,16.6406 +2016-08-14 05:33:19,3586.0,13.0435, +2016-08-14 05:43:22,3586.0,13.0435, +2016-08-14 05:45:00,,,16.6072 +2016-08-14 05:53:25,3586.0,13.0131, +2016-08-14 06:00:00,,,16.6392 +2016-08-14 06:03:27,3586.0,13.0131, +2016-08-14 06:13:30,3586.0,13.0131, +2016-08-14 06:15:00,,,16.6406 +2016-08-14 06:23:32,3586.0,13.0435, +2016-08-14 06:30:00,,,16.6057 +2016-08-14 06:33:35,3586.0,13.0108, +2016-08-14 06:43:37,3586.0,13.0096, +2016-08-14 06:45:00,,,16.6392 +2016-08-14 06:53:40,3586.0,13.0412, +2016-08-14 07:00:00,,,16.6057 +2016-08-14 07:03:42,3586.0,13.0412, +2016-08-14 07:13:45,3586.0,13.04, +2016-08-14 07:15:00,,,16.6072 +2016-08-14 07:23:47,3587.0,13.0108, +2016-08-14 07:30:00,,,16.6436 +2016-08-14 07:33:50,3587.0,12.9803, +2016-08-14 07:43:53,3587.0,13.0412, +2016-08-14 07:45:00,,,16.6117 +2016-08-14 07:53:55,3587.0,13.0108, +2016-08-14 08:00:00,,,16.6406 +2016-08-14 08:03:58,3588.0,13.0096, +2016-08-14 08:14:00,3588.0,13.04, +2016-08-14 08:15:00,,,16.6406 +2016-08-14 08:24:03,3588.0,13.0096, +2016-08-14 08:30:00,,,16.6072 +2016-08-14 08:34:06,3588.0,13.0108, +2016-08-14 08:44:08,3588.0,13.0366, +2016-08-14 08:45:00,,,16.6392 +2016-08-14 08:54:11,3588.0,13.0096, +2016-08-14 09:00:00,,,16.6057 +2016-08-14 09:04:13,3589.0,13.0412, +2016-08-14 09:14:16,3590.0,13.0108, +2016-08-14 09:15:00,,,16.6072 +2016-08-14 09:24:19,3590.0,12.9792, +2016-08-14 09:30:00,,,16.6117 +2016-08-14 09:34:21,3591.0,13.0377, +2016-08-14 09:44:24,3592.0,13.0108, +2016-08-14 09:45:00,,,16.6057 +2016-08-14 09:54:26,3592.0,13.0377, +2016-08-14 10:00:00,,,16.6436 +2016-08-14 10:04:29,3592.0,13.0096, +2016-08-14 10:14:31,3593.0,13.0061, +2016-08-14 10:15:00,,,16.6057 +2016-08-14 10:24:34,3594.0,13.0084, +2016-08-14 10:30:00,,,16.6102 +2016-08-14 10:34:37,3594.0,13.0412, +2016-08-14 10:44:39,3595.0,13.0108, +2016-08-14 10:45:00,,,16.6451 +2016-08-14 10:54:42,3595.0,13.0412, +2016-08-14 11:00:00,,,16.6057 +2016-08-14 11:04:44,3595.0,13.0377, +2016-08-14 11:14:47,3595.0,13.0073, +2016-08-14 11:15:00,,,16.6392 +2016-08-14 11:24:49,3596.0,13.005, +2016-08-14 11:30:00,,,16.6392 +2016-08-14 11:34:52,3597.0,13.0061, +2016-08-14 11:44:54,3597.0,12.9792, +2016-08-14 11:45:00,,,16.6117 +2016-08-14 11:54:57,3598.0,13.0377, +2016-08-14 12:00:00,,,16.6102 +2016-08-14 12:05:00,3598.0,13.0354, +2016-08-14 12:15:00,,,16.6102 +2016-08-14 12:15:02,3598.0,13.0412, +2016-08-14 12:25:05,3598.0,13.0061, +2016-08-14 12:30:00,,,16.6436 +2016-08-14 12:35:07,3598.0,13.0108, +2016-08-14 12:45:00,,,16.6406 +2016-08-14 12:45:10,3598.0,12.9196, +2016-08-14 12:55:13,3598.0,12.9488, +2016-08-14 13:00:00,,,16.6117 +2016-08-14 13:05:15,3598.0,12.9196, +2016-08-14 13:15:00,,,16.5116 +2016-08-14 13:15:18,3598.0,12.9173, +2016-08-14 13:25:21,3598.0,12.9161, +2016-08-14 13:30:00,,,16.5449 +2016-08-14 13:35:23,3598.0,12.9184, +2016-08-14 13:45:00,,,16.5057 +2016-08-14 13:45:25,3599.0,12.9184, +2016-08-14 13:55:28,3599.0,12.9184, +2016-08-14 14:00:00,,,16.5434 +2016-08-14 14:05:30,3599.0,12.9184, +2016-08-14 14:15:00,,,16.5101 +2016-08-14 14:15:33,3599.0,12.9173, +2016-08-14 14:25:36,3599.0,12.9184, +2016-08-14 14:30:00,,,16.5057 +2016-08-14 14:35:38,3599.0,12.9488, +2016-08-14 14:45:00,,,16.5101 +2016-08-14 14:45:41,3599.0,12.9184, +2016-08-14 14:55:44,3599.0,12.9196, +2016-08-14 15:00:00,,,16.5434 +2016-08-14 15:05:46,3599.0,12.8275, +2016-08-14 15:15:00,,,16.5116 +2016-08-14 15:15:49,3599.0,12.8578, +2016-08-14 15:25:51,3599.0,12.8286, +2016-08-14 15:30:00,,,16.5101 +2016-08-14 15:35:54,3599.0,12.8275, +2016-08-14 15:45:00,,,16.4768 +2016-08-14 15:45:57,3599.0,12.8309, +2016-08-14 15:55:59,3599.0,12.8286, +2016-08-14 16:00:00,,,16.5101 +2016-08-14 16:06:02,3599.0,12.8309, +2016-08-14 16:15:00,,,16.5116 +2016-08-14 16:16:05,3599.0,12.8309, +2016-08-14 16:26:07,3599.0,12.8612, +2016-08-14 16:30:00,,,16.5116 +2016-08-14 16:36:10,3599.0,12.8309, +2016-08-14 16:45:00,,,16.5101 +2016-08-14 16:46:12,3599.0,12.8309, +2016-08-14 16:56:15,3599.0,12.8612, +2016-08-14 17:00:00,,,16.5101 +2016-08-14 17:06:18,3599.0,12.8309, +2016-08-14 17:15:00,,,16.5101 +2016-08-14 17:16:20,3599.0,12.8309, +2016-08-14 17:26:23,3599.0,12.8612, +2016-08-14 17:30:00,,,16.5116 +2016-08-14 17:36:26,3599.0,12.8635, +2016-08-14 17:45:00,,,16.5101 +2016-08-14 17:46:28,3599.0,12.8309, +2016-08-14 17:56:31,3599.0,12.8612, +2016-08-14 18:00:00,,,16.5101 +2016-08-14 18:06:33,3599.0,12.8343, +2016-08-14 18:15:00,,,16.5101 +2016-08-14 18:16:36,3599.0,12.8343, +2016-08-14 18:26:39,3599.0,12.8343, +2016-08-14 18:30:00,,,16.5116 +2016-08-14 18:36:41,3599.0,12.8647, +2016-08-14 18:45:00,,,16.539 +2016-08-14 18:46:44,3599.0,12.8647, +2016-08-14 18:56:46,3599.0,12.8343, +2016-08-14 19:00:00,,,16.5101 +2016-08-14 19:06:49,3599.0,12.8332, +2016-08-14 19:15:00,,,16.5116 +2016-08-14 19:16:52,3599.0,12.8343, +2016-08-14 19:26:54,3599.0,12.8647, +2016-08-14 19:30:00,,,16.5101 +2016-08-14 19:36:57,3599.0,12.8343, +2016-08-14 19:45:00,,,16.5101 +2016-08-14 19:46:59,3599.0,12.8635, +2016-08-14 19:57:02,3598.0,12.8647, +2016-08-14 20:00:00,,,16.5449 +2016-08-14 20:07:05,3598.0,12.8343, +2016-08-14 20:15:00,,,16.5434 +2016-08-14 20:17:07,3599.0,12.8647, +2016-08-14 20:27:10,3598.0,12.8355, +2016-08-14 20:30:00,,,16.5101 +2016-08-14 20:37:12,3598.0,12.8647, +2016-08-14 20:45:00,,,16.5101 +2016-08-14 20:47:15,3598.0,12.8647, +2016-08-14 20:57:17,3598.0,12.8647, +2016-08-14 21:00:00,,,16.5116 +2016-08-14 21:07:20,3598.0,12.8343, +2016-08-14 21:15:00,,,16.5116 +2016-08-14 21:17:22,3598.0,12.8647, +2016-08-14 21:27:25,3597.0,12.8332, +2016-08-14 21:30:00,,,16.5101 +2016-08-14 21:37:27,3596.0,12.8343, +2016-08-14 21:45:00,,,16.5101 +2016-08-14 21:47:30,3595.0,12.8343, +2016-08-14 21:57:32,3595.0,12.8343, +2016-08-14 22:00:00,,,16.5116 +2016-08-14 22:07:34,3595.0,12.8343, +2016-08-14 22:15:00,,,16.5116 +2016-08-14 22:17:37,3594.0,12.8343, +2016-08-14 22:27:39,3593.0,12.8635, +2016-08-14 22:30:00,,,16.5116 +2016-08-14 22:37:42,3593.0,12.8647, +2016-08-14 22:45:00,,,16.5116 +2016-08-14 22:47:46,3593.0,12.8647, +2016-08-14 22:57:49,3593.0,12.8343, +2016-08-14 23:00:00,,,16.5116 +2016-08-14 23:07:52,3592.0,12.8343, +2016-08-14 23:15:00,,,16.5101 +2016-08-14 23:17:55,3592.0,12.8343, +2016-08-14 23:27:57,3592.0,12.8343, +2016-08-14 23:30:00,,,16.5101 +2016-08-14 23:38:00,3592.0,12.8343, +2016-08-14 23:45:00,,,16.5101 +2016-08-14 23:48:02,3591.0,12.8647, +2016-08-14 23:58:05,3590.0,12.8343, +2016-08-15 00:00:00,,,16.5116 +2016-08-15 00:08:08,3590.0,12.8343, +2016-08-15 00:15:00,,,16.5101 +2016-08-15 00:18:10,3590.0,12.8647, +2016-08-15 00:28:13,3590.0,12.8647, +2016-08-15 00:30:00,,,16.5116 +2016-08-15 00:38:15,3589.0,12.8343, +2016-08-15 00:45:00,,,16.5101 +2016-08-15 00:48:18,3589.0,12.8647, +2016-08-15 00:58:20,3588.0,12.8309, +2016-08-15 01:00:00,,,16.5101 +2016-08-15 01:08:23,3588.0,12.8647, +2016-08-15 01:15:00,,,16.5116 +2016-08-15 01:18:25,3588.0,12.8612, +2016-08-15 01:28:28,3588.0,12.8309, +2016-08-15 01:30:00,,,16.5101 +2016-08-15 01:38:30,3588.0,12.8309, +2016-08-15 01:45:00,,,16.5101 +2016-08-15 01:48:33,3588.0,12.8612, +2016-08-15 01:58:36,3588.0,12.8309, +2016-08-15 02:00:00,,,16.5116 +2016-08-15 02:08:38,3588.0,12.8298, +2016-08-15 02:15:00,,,16.516 +2016-08-15 02:18:41,3587.0,12.8612, +2016-08-15 02:28:44,3587.0,12.8309, +2016-08-15 02:30:00,,,16.5116 +2016-08-15 02:38:46,3587.0,12.8309, +2016-08-15 02:45:00,,,16.5434 +2016-08-15 02:48:49,3587.0,12.8309, +2016-08-15 02:58:51,3586.0,12.9522, +2016-08-15 03:00:00,,,16.5116 +2016-08-15 03:08:54,3586.0,12.9196, +2016-08-15 03:15:00,,,16.5116 +2016-08-15 03:18:56,3585.0,12.9196, +2016-08-15 03:28:59,3585.0,12.9219, +2016-08-15 03:30:00,,,16.5145 +2016-08-15 03:39:01,3585.0,12.8275, +2016-08-15 03:45:00,,,16.516 +2016-08-15 03:49:04,3585.0,12.8275, +2016-08-15 03:59:06,3585.0,12.8589, +2016-08-15 04:00:00,,,16.5101 +2016-08-15 04:09:09,3584.0,12.8578, +2016-08-15 04:15:00,,,16.5145 +2016-08-15 04:19:11,3584.0,12.8286, +2016-08-15 04:29:14,3583.0,12.8589, +2016-08-15 04:30:00,,,16.516 +2016-08-15 04:39:16,3583.0,12.8275, +2016-08-15 04:45:00,,,16.5145 +2016-08-15 04:49:19,3583.0,12.8275, +2016-08-15 04:59:21,3582.0,12.8589, +2016-08-15 05:00:00,,,16.516 +2016-08-15 05:09:24,3582.0,12.9488, +2016-08-15 05:15:00,,,16.5145 +2016-08-15 05:19:26,3582.0,12.8544, +2016-08-15 05:29:29,3581.0,12.8241, +2016-08-15 05:30:00,,,16.5145 +2016-08-15 05:39:31,3581.0,12.8555, +2016-08-15 05:45:00,,,16.516 +2016-08-15 05:49:34,3581.0,12.8544, +2016-08-15 05:59:36,3581.0,12.8544, +2016-08-15 06:00:00,,,16.5493 +2016-08-15 06:09:39,3581.0,12.8544, +2016-08-15 06:15:00,,,16.5116 +2016-08-15 06:19:41,3581.0,12.8555, +2016-08-15 06:29:44,3580.0,12.8555, +2016-08-15 06:30:00,,,16.5434 +2016-08-15 06:39:46,3580.0,12.8555, +2016-08-15 06:45:00,,,16.5493 +2016-08-15 06:49:49,3580.0,12.9465, +2016-08-15 06:59:51,3579.0,12.9161, +2016-08-15 07:00:00,,,16.516 +2016-08-15 07:09:54,3580.0,12.915, +2016-08-15 07:15:00,,,16.5145 +2016-08-15 07:19:56,3580.0,12.9138, +2016-08-15 07:29:58,3580.0,12.915, +2016-08-15 07:30:00,,,16.5479 +2016-08-15 07:40:01,3580.0,12.9161, +2016-08-15 07:45:00,,,16.5479 +2016-08-15 07:50:03,3580.0,12.9453, +2016-08-15 08:00:00,,,16.516 +2016-08-15 08:00:05,3581.0,12.9465, +2016-08-15 08:10:07,3580.0,12.9453, +2016-08-15 08:15:00,,,16.5145 +2016-08-15 08:20:09,3581.0,12.8544, +2016-08-15 08:30:00,,,16.516 +2016-08-15 08:30:12,3581.0,12.8252, +2016-08-15 08:40:14,3581.0,12.8252, +2016-08-15 08:45:00,,,16.516 +2016-08-15 08:50:17,3582.0,12.8252, +2016-08-15 09:00:00,,,16.5145 +2016-08-15 09:00:19,3583.0,12.8241, +2016-08-15 09:10:22,3584.0,12.915, +2016-08-15 09:15:00,,,16.5116 +2016-08-15 09:20:24,3584.0,12.8544, +2016-08-15 09:30:00,,,16.5116 +2016-08-15 09:30:27,3584.0,12.8241, +2016-08-15 09:40:29,3585.0,12.8241, +2016-08-15 09:45:00,,,16.5145 +2016-08-15 09:50:32,3586.0,12.8241, +2016-08-15 10:00:00,,,16.5493 +2016-08-15 10:00:34,3587.0,12.8544, +2016-08-15 10:10:37,3588.0,12.8555, +2016-08-15 10:15:00,,,16.516 +2016-08-15 10:20:39,3588.0,12.8252, +2016-08-15 10:30:00,,,16.5145 +2016-08-15 10:30:42,3589.0,12.8555, +2016-08-15 10:40:45,3591.0,12.8241, +2016-08-15 10:45:00,,,16.5116 +2016-08-15 10:50:47,3593.0,12.8544, +2016-08-15 11:00:00,,,16.5479 +2016-08-15 11:00:50,3593.0,12.8532, +2016-08-15 11:10:52,3593.0,12.8544, +2016-08-15 11:15:00,,,16.516 +2016-08-15 11:20:55,3594.0,12.8252, +2016-08-15 11:30:00,,,16.5434 +2016-08-15 11:30:57,3595.0,12.8241, +2016-08-15 11:41:00,3595.0,12.8544, +2016-08-15 11:45:00,,,16.5116 +2016-08-15 11:51:03,3595.0,12.8241, +2016-08-15 12:00:00,,,16.5116 +2016-08-15 12:01:05,3596.0,12.8241, +2016-08-15 12:11:08,3596.0,12.8241, +2016-08-15 12:15:00,,,16.4783 +2016-08-15 12:21:10,3597.0,12.7345, +2016-08-15 12:30:00,,,16.5145 +2016-08-15 12:31:13,3597.0,12.7345, +2016-08-15 12:41:16,3598.0,12.7636, +2016-08-15 12:45:00,,,16.5116 +2016-08-15 12:51:18,3598.0,12.7636, +2016-08-15 13:00:00,,,16.5101 +2016-08-15 13:01:21,3598.0,12.7323, +2016-08-15 13:11:23,3598.0,12.7334, +2016-08-15 13:15:00,,,16.5116 +2016-08-15 13:21:26,3598.0,12.7345, +2016-08-15 13:30:00,,,16.4436 +2016-08-15 13:31:28,3598.0,12.7345, +2016-08-15 13:41:31,3598.0,12.7345, +2016-08-15 13:45:00,,,16.4162 +2016-08-15 13:51:33,3598.0,12.7938, +2016-08-15 14:00:00,,,16.4104 +2016-08-15 14:01:36,3598.0,12.7334, +2016-08-15 14:11:39,3598.0,12.7345, +2016-08-15 14:15:00,,,16.4104 +2016-08-15 14:21:41,3598.0,12.7345, +2016-08-15 14:30:00,,,16.4104 +2016-08-15 14:31:44,3598.0,12.7334, +2016-08-15 14:41:46,3599.0,12.7636, +2016-08-15 14:45:00,,,16.4104 +2016-08-15 14:51:49,3598.0,12.7334, +2016-08-15 15:00:00,,,16.4119 +2016-08-15 15:01:52,3598.0,12.7334, +2016-08-15 15:11:54,3598.0,12.7334, +2016-08-15 15:15:00,,,16.4436 +2016-08-15 15:21:57,3599.0,12.7334, +2016-08-15 15:30:00,,,16.4148 +2016-08-15 15:32:00,3599.0,12.7334, +2016-08-15 15:42:02,3599.0,12.7334, +2016-08-15 15:45:00,,,16.4451 +2016-08-15 15:52:05,3599.0,12.7625, +2016-08-15 16:00:00,,,16.4119 +2016-08-15 16:02:08,3598.0,12.7323, +2016-08-15 16:12:10,3599.0,12.7334, +2016-08-15 16:15:00,,,16.4104 +2016-08-15 16:22:13,3599.0,12.7636, +2016-08-15 16:30:00,,,16.4104 +2016-08-15 16:32:16,3599.0,12.7636, +2016-08-15 16:42:18,3599.0,12.7636, +2016-08-15 16:45:00,,,16.4104 +2016-08-15 16:52:21,3599.0,12.7334, +2016-08-15 17:00:00,,,16.4119 +2016-08-15 17:02:23,3599.0,12.7345, +2016-08-15 17:12:25,3599.0,12.7334, +2016-08-15 17:15:00,,,16.4119 +2016-08-15 17:22:28,3599.0,12.7345, +2016-08-15 17:30:00,,,16.4119 +2016-08-15 17:32:31,3599.0,12.7334, +2016-08-15 17:42:33,3599.0,12.7647, +2016-08-15 17:45:00,,,16.4451 +2016-08-15 17:52:36,3599.0,12.7334, +2016-08-15 18:00:00,,,16.4104 +2016-08-15 18:02:38,3598.0,12.7323, +2016-08-15 18:12:41,3598.0,12.7334, +2016-08-15 18:15:00,,,16.4119 +2016-08-15 18:22:43,3598.0,12.7938, +2016-08-15 18:30:00,,,16.4451 +2016-08-15 18:32:46,3598.0,12.7636, +2016-08-15 18:42:49,3598.0,12.7938, +2016-08-15 18:45:00,,,16.4436 +2016-08-15 18:52:51,3598.0,12.7636, +2016-08-15 19:00:00,,,16.4104 +2016-08-15 19:02:54,3598.0,12.7334, +2016-08-15 19:12:56,3598.0,12.7334, +2016-08-15 19:15:00,,,16.4119 +2016-08-15 19:22:59,3598.0,12.7334, +2016-08-15 19:30:00,,,16.4104 +2016-08-15 19:33:01,3598.0,12.7334, +2016-08-15 19:43:04,3598.0,12.7334, +2016-08-15 19:45:00,,,16.4104 +2016-08-15 19:53:07,3597.0,12.7334, +2016-08-15 20:00:00,,,16.4119 +2016-08-15 20:03:09,3596.0,12.7323, +2016-08-15 20:13:12,3596.0,12.7345, +2016-08-15 20:15:00,,,16.4119 +2016-08-15 20:23:14,3595.0,12.7636, +2016-08-15 20:30:00,,,16.4119 +2016-08-15 20:33:17,3595.0,12.7334, +2016-08-15 20:43:19,3594.0,12.7636, +2016-08-15 20:45:00,,,16.4104 +2016-08-15 20:53:22,3593.0,12.7636, +2016-08-15 21:00:00,,,16.4104 +2016-08-15 21:03:24,3593.0,12.7334, +2016-08-15 21:13:27,3592.0,12.7636, +2016-08-15 21:15:00,,,16.4451 +2016-08-15 21:23:29,3591.0,12.7345, +2016-08-15 21:30:00,,,16.4451 +2016-08-15 21:33:32,3590.0,12.7334, +2016-08-15 21:43:34,3589.0,12.7636, +2016-08-15 21:45:00,,,16.4436 +2016-08-15 21:53:37,3588.0,12.7345, +2016-08-15 22:00:00,,,16.4119 +2016-08-15 22:03:39,3588.0,12.7636, +2016-08-15 22:13:42,3587.0,12.7334, +2016-08-15 22:15:00,,,16.4104 +2016-08-15 22:23:44,3586.0,12.7647, +2016-08-15 22:30:00,,,16.4104 +2016-08-15 22:33:46,3586.0,12.7625, +2016-08-15 22:43:49,3586.0,12.7636, +2016-08-15 22:45:00,,,16.4119 +2016-08-15 22:53:51,3585.0,12.7647, +2016-08-15 23:00:00,,,16.4119 +2016-08-15 23:03:54,3585.0,12.7636, +2016-08-15 23:13:56,3584.0,12.7647, +2016-08-15 23:15:00,,,16.4119 +2016-08-15 23:23:59,3583.0,12.7323, +2016-08-15 23:30:00,,,16.4119 +2016-08-15 23:34:01,3583.0,12.7636, +2016-08-15 23:44:04,3582.0,12.7636, +2016-08-15 23:45:00,,,16.4119 +2016-08-15 23:54:06,3581.0,12.7334, +2016-08-16 00:00:00,,,16.4104 +2016-08-16 00:04:09,3581.0,12.7636, +2016-08-16 00:14:11,3581.0,12.7636, +2016-08-16 00:15:00,,,16.4119 +2016-08-16 00:24:13,3580.0,12.7636, +2016-08-16 00:30:00,,,16.4119 +2016-08-16 00:34:16,3580.0,12.7647, +2016-08-16 00:44:18,3579.0,12.7334, +2016-08-16 00:45:00,,,16.4436 +2016-08-16 00:54:21,3579.0,12.7345, +2016-08-16 01:00:00,,,16.4104 +2016-08-16 01:04:23,3578.0,12.7636, +2016-08-16 01:14:25,3577.0,12.7345, +2016-08-16 01:15:00,,,16.4451 +2016-08-16 01:24:28,3577.0,12.7334, +2016-08-16 01:30:00,,,16.4119 +2016-08-16 01:34:30,3577.0,12.7636, +2016-08-16 01:44:32,3577.0,12.7625, +2016-08-16 01:45:00,,,16.4451 +2016-08-16 01:54:35,3576.0,12.7334, +2016-08-16 02:00:00,,,16.4451 +2016-08-16 02:04:38,3576.0,12.7334, +2016-08-16 02:14:41,3576.0,12.7602, +2016-08-16 02:15:00,,,16.4451 +2016-08-16 02:24:44,3576.0,12.7311, +2016-08-16 02:30:00,,,16.4119 +2016-08-16 02:34:46,3575.0,12.7938, +2016-08-16 02:44:48,3574.0,12.7613, +2016-08-16 02:45:00,,,16.4119 +2016-08-16 02:54:51,3574.0,12.7311, +2016-08-16 03:00:00,,,16.4436 +2016-08-16 03:04:53,3574.0,12.7602, +2016-08-16 03:14:55,3574.0,12.73, +2016-08-16 03:15:00,,,16.4451 +2016-08-16 03:24:58,3574.0,12.7602, +2016-08-16 03:30:00,,,16.4119 +2016-08-16 03:35:00,3574.0,12.73, +2016-08-16 03:45:00,,,16.4436 +2016-08-16 03:45:02,3574.0,12.7602, +2016-08-16 03:55:05,3573.0,12.7579, +2016-08-16 04:00:00,,,16.4104 +2016-08-16 04:05:07,3572.0,12.7266, +2016-08-16 04:15:00,,,16.4104 +2016-08-16 04:15:09,3572.0,12.7311, +2016-08-16 04:25:12,3572.0,12.7266, +2016-08-16 04:30:00,,,16.4436 +2016-08-16 04:35:14,3572.0,12.7277, +2016-08-16 04:45:00,,,16.4119 +2016-08-16 04:45:17,3571.0,12.7568, +2016-08-16 04:55:19,3571.0,12.787, +2016-08-16 05:00:00,,,16.4451 +2016-08-16 05:05:21,3570.0,12.7277, +2016-08-16 05:15:00,,,16.4104 +2016-08-16 05:15:24,3570.0,12.7545, +2016-08-16 05:25:26,3570.0,12.7579, +2016-08-16 05:30:00,,,16.4451 +2016-08-16 05:35:28,3569.0,12.7545, +2016-08-16 05:45:00,,,16.4436 +2016-08-16 05:45:30,3569.0,12.7545, +2016-08-16 05:55:33,3568.0,12.7534, +2016-08-16 06:00:00,,,16.4104 +2016-08-16 06:05:35,3567.0,12.7534, +2016-08-16 06:15:00,,,16.4119 +2016-08-16 06:15:37,3567.0,12.7545, +2016-08-16 06:25:40,3567.0,12.7545, +2016-08-16 06:30:00,,,16.4104 +2016-08-16 06:35:42,3567.0,12.7243, +2016-08-16 06:45:00,,,16.3125 +2016-08-16 06:45:44,3566.0,12.7545, +2016-08-16 06:55:47,3567.0,12.7847, +2016-08-16 07:00:00,,,16.4104 +2016-08-16 07:05:49,3566.0,12.7243, +2016-08-16 07:15:00,,,16.3441 +2016-08-16 07:15:51,3566.0,12.7232, +2016-08-16 07:25:54,3566.0,12.7243, +2016-08-16 07:30:00,,,16.3125 +2016-08-16 07:35:56,3567.0,12.7545, +2016-08-16 07:45:00,,,16.3456 +2016-08-16 07:45:58,3567.0,12.7545, +2016-08-16 07:56:01,3568.0,12.7545, +2016-08-16 08:00:00,,,16.3125 +2016-08-16 08:06:03,3569.0,12.7545, +2016-08-16 08:15:00,,,16.3125 +2016-08-16 08:16:05,3569.0,12.7232, +2016-08-16 08:26:07,3570.0,12.7232, +2016-08-16 08:30:00,,,16.3456 +2016-08-16 08:36:10,3571.0,12.7545, +2016-08-16 08:45:00,,,16.3441 +2016-08-16 08:46:12,3572.0,12.7847, +2016-08-16 08:56:14,3573.0,12.7545, +2016-08-16 09:00:00,,,16.3441 +2016-08-16 09:06:17,3574.0,12.720999999999998, +2016-08-16 09:15:00,,,16.3456 +2016-08-16 09:16:19,3575.0,12.7802, +2016-08-16 09:26:22,3577.0,12.7198, +2016-08-16 09:30:00,,,16.3125 +2016-08-16 09:36:24,3577.0,12.7198, +2016-08-16 09:45:00,,,16.3397 +2016-08-16 09:46:27,3579.0,12.7198, +2016-08-16 09:56:29,3581.0,12.7511, +2016-08-16 10:00:00,,,16.3412 +2016-08-16 10:06:32,3582.0,12.7511, +2016-08-16 10:15:00,,,16.3067 +2016-08-16 10:16:35,3585.0,12.75, +2016-08-16 10:26:37,3586.0,12.7813, +2016-08-16 10:30:00,,,16.3067 +2016-08-16 10:36:40,3587.0,12.7198, +2016-08-16 10:45:00,,,16.3067 +2016-08-16 10:46:42,3588.0,12.7523, +2016-08-16 10:56:45,3589.0,12.7813, +2016-08-16 11:00:00,,,16.3067 +2016-08-16 11:06:47,3591.0,12.720999999999998, +2016-08-16 11:15:00,,,16.3397 +2016-08-16 11:16:49,3592.0,12.7198, +2016-08-16 11:26:52,3593.0,12.720999999999998, +2016-08-16 11:30:00,,,16.3067 +2016-08-16 11:36:54,3593.0,12.75, +2016-08-16 11:45:00,,,16.3397 +2016-08-16 11:46:56,3595.0,12.720999999999998, +2016-08-16 11:57:07,3595.0,12.720999999999998, +2016-08-16 12:00:00,,,16.3397 +2016-08-16 12:07:10,3595.0,12.6629, +2016-08-16 12:15:00,,,16.3067 +2016-08-16 12:17:12,3596.0,12.6328, +2016-08-16 12:27:15,3597.0,12.6328, +2016-08-16 12:30:00,,,16.3067 +2016-08-16 12:37:18,3597.0,12.6328, +2016-08-16 12:45:00,,,16.3067 +2016-08-16 12:47:20,3598.0,12.6641, +2016-08-16 12:57:23,3598.0,12.634, +2016-08-16 13:00:00,,,16.3081 +2016-08-16 13:07:26,3598.0,12.634, +2016-08-16 13:15:00,,,16.242 +2016-08-16 13:17:29,3598.0,12.6629, +2016-08-16 13:27:31,3598.0,12.6629, +2016-08-16 13:30:00,,,16.2406 +2016-08-16 13:37:34,3599.0,12.6641, +2016-08-16 13:45:00,,,16.2091 +2016-08-16 13:47:37,3599.0,12.634, +2016-08-16 13:57:39,3599.0,12.634, +2016-08-16 14:00:00,,,16.2406 +2016-08-16 14:07:42,3599.0,12.6629, +2016-08-16 14:15:00,,,16.242 +2016-08-16 14:17:45,3599.0,12.5727, +2016-08-16 14:27:47,3599.0,12.6028, +2016-08-16 14:30:00,,,16.242 +2016-08-16 14:37:50,3599.0,12.5727, +2016-08-16 14:45:00,,,16.242 +2016-08-16 14:47:53,3599.0,12.5738, +2016-08-16 14:57:55,3599.0,12.5727, +2016-08-16 15:00:00,,,16.2406 +2016-08-16 15:07:58,3599.0,12.5438, +2016-08-16 15:15:00,,,16.2076 +2016-08-16 15:18:01,3599.0,12.5727, +2016-08-16 15:28:03,3599.0,12.5738, +2016-08-16 15:30:00,,,16.2076 +2016-08-16 15:38:06,3599.0,12.5727, +2016-08-16 15:45:00,,,16.2033 +2016-08-16 15:48:09,3599.0,12.5738, +2016-08-16 15:58:11,3599.0,12.5738, +2016-08-16 16:00:00,,,16.242 +2016-08-16 16:08:14,3599.0,12.5727, +2016-08-16 16:15:00,,,16.2406 +2016-08-16 16:18:17,3599.0,12.5727, +2016-08-16 16:28:20,3599.0,12.5761, +2016-08-16 16:30:00,,,16.2091 +2016-08-16 16:38:23,3599.0,12.5772, +2016-08-16 16:45:00,,,16.2091 +2016-08-16 16:48:25,3599.0,12.5761, +2016-08-16 16:58:28,3599.0,12.5761, +2016-08-16 17:00:00,,,16.2377 +2016-08-16 17:08:31,3599.0,12.5761, +2016-08-16 17:15:00,,,16.2033 +2016-08-16 17:18:34,3599.0,12.5761, +2016-08-16 17:28:37,3599.0,12.5761, +2016-08-16 17:30:00,,,16.1704 +2016-08-16 17:38:39,3599.0,12.5772, +2016-08-16 17:45:00,,,16.2091 +2016-08-16 17:48:42,3599.0,12.5794, +2016-08-16 17:58:45,3599.0,12.5794, +2016-08-16 18:00:00,,,16.2076 +2016-08-16 18:08:48,3599.0,12.5794, +2016-08-16 18:15:00,,,16.2377 +2016-08-16 18:18:50,3599.0,12.5494, +2016-08-16 18:28:53,3599.0,12.5805, +2016-08-16 18:30:00,,,16.2377 +2016-08-16 18:38:56,3599.0,12.5794, +2016-08-16 18:45:00,,,16.2047 +2016-08-16 18:48:58,3599.0,12.5794, +2016-08-16 18:59:01,3599.0,12.5794, +2016-08-16 19:00:00,,,16.2062 +2016-08-16 19:09:04,3599.0,12.5494, +2016-08-16 19:15:00,,,16.2033 +2016-08-16 19:19:07,3599.0,12.5794, +2016-08-16 19:29:09,3599.0,12.6129, +2016-08-16 19:30:00,,,16.2033 +2016-08-16 19:39:12,3599.0,12.5794, +2016-08-16 19:45:00,,,16.2047 +2016-08-16 19:49:15,3599.0,12.5828, +2016-08-16 19:59:18,3599.0,12.5828, +2016-08-16 20:00:00,,,16.2363 +2016-08-16 20:09:20,3598.0,12.5828, +2016-08-16 20:15:00,,,16.2033 +2016-08-16 20:19:22,3598.0,12.5839, +2016-08-16 20:29:25,3598.0,12.5828, +2016-08-16 20:30:00,,,16.2363 +2016-08-16 20:39:28,3598.0,12.5828, +2016-08-16 20:45:00,,,16.2363 +2016-08-16 20:49:30,3598.0,12.5828, +2016-08-16 20:59:33,3598.0,12.5839, +2016-08-16 21:00:00,,,16.2377 +2016-08-16 21:09:36,3596.0,12.5828, +2016-08-16 21:15:00,,,16.2363 +2016-08-16 21:19:39,3595.0,12.6129, +2016-08-16 21:29:41,3595.0,12.5839, +2016-08-16 21:30:00,,,16.2047 +2016-08-16 21:39:44,3594.0,12.614, +2016-08-16 21:45:00,,,16.2377 +2016-08-16 21:49:47,3593.0,12.5828, +2016-08-16 21:59:49,3593.0,12.5817, +2016-08-16 22:00:00,,,16.2047 +2016-08-16 22:09:52,3592.0,12.5828, +2016-08-16 22:15:00,,,16.2363 +2016-08-16 22:19:54,3591.0,12.5839, +2016-08-16 22:29:57,3590.0,12.5828, +2016-08-16 22:30:00,,,16.2363 +2016-08-16 22:40:00,3589.0,12.5839, +2016-08-16 22:45:00,,,16.242 +2016-08-16 22:50:02,3588.0,12.5828, +2016-08-16 23:00:00,,,16.2033 +2016-08-16 23:00:05,3588.0,12.5828, +2016-08-16 23:10:07,3587.0,12.6129, +2016-08-16 23:15:00,,,16.242 +2016-08-16 23:20:10,3586.0,12.5839, +2016-08-16 23:30:00,,,16.2363 +2016-08-16 23:30:12,3585.0,12.5817, +2016-08-16 23:40:15,3585.0,12.5794, +2016-08-16 23:45:00,,,16.2033 +2016-08-16 23:50:18,3584.0,12.5828, +2016-08-17 00:00:00,,, +2016-08-17 00:10:30,3582.0,12.5505, +2016-08-17 00:15:00,,,16.2076 +2016-08-17 00:20:32,3581.0,12.5805, +2016-08-17 00:30:00,,,16.242 +2016-08-17 00:30:35,3581.0,12.5794, +2016-08-17 00:40:37,3580.0,12.5794, +2016-08-17 00:45:00,,,16.242 +2016-08-17 00:50:40,3579.0,12.5805, +2016-08-17 01:00:00,,,16.2091 +2016-08-17 01:00:42,3578.0,12.5805, +2016-08-17 01:10:45,3577.0,12.5505, +2016-08-17 01:15:00,,,16.2406 +2016-08-17 01:20:47,3577.0,12.5772, +2016-08-17 01:30:00,,,16.2377 +2016-08-17 01:30:50,3576.0,12.5772, +2016-08-17 01:40:52,3575.0,12.5761, +2016-08-17 01:45:00,,,16.242 +2016-08-17 01:50:55,3574.0,12.5772, +2016-08-17 02:00:00,,,16.2377 +2016-08-17 02:00:57,3574.0,12.5772, +2016-08-17 02:11:00,3574.0,12.5772, +2016-08-17 02:15:00,,,16.2047 +2016-08-17 02:21:02,3573.0,12.5472, +2016-08-17 02:30:00,,,16.2377 +2016-08-17 02:31:05,3572.0,12.5727, +2016-08-17 02:41:07,3572.0,12.5727, +2016-08-17 02:45:00,,,16.2406 +2016-08-17 02:51:10,3571.0,12.5727, +2016-08-17 03:00:00,,,16.2033 +2016-08-17 03:01:12,3571.0,12.6028, +2016-08-17 03:11:15,3570.0,12.5727, +2016-08-17 03:15:00,,,16.2076 +2016-08-17 03:21:17,3569.0,12.5738, +2016-08-17 03:30:00,,,16.242 +2016-08-17 03:31:20,3569.0,12.5738, +2016-08-17 03:41:22,3568.0,12.5727, +2016-08-17 03:45:00,,,16.242 +2016-08-17 03:51:24,3567.0,12.5727, +2016-08-17 04:00:00,,,16.2406 +2016-08-17 04:01:27,3566.0,12.6028, +2016-08-17 04:11:29,3566.0,12.5727, +2016-08-17 04:15:00,,,16.2377 +2016-08-17 04:21:32,3566.0,12.5438, +2016-08-17 04:30:00,,,16.2377 +2016-08-17 04:31:34,3565.0,12.6039, +2016-08-17 04:41:37,3565.0,12.5738, +2016-08-17 04:45:00,,,16.2047 +2016-08-17 04:51:39,3564.0,12.5738, +2016-08-17 05:00:00,,,16.242 +2016-08-17 05:01:42,3564.0,12.5738, +2016-08-17 05:11:44,3563.0,12.605, +2016-08-17 05:15:00,,,16.2406 +2016-08-17 05:21:48,3563.0,12.5705, +2016-08-17 05:30:00,,,16.242 +2016-08-17 05:31:51,3562.0,12.5738, +2016-08-17 05:41:54,3561.0,12.5738, +2016-08-17 05:45:00,,,16.242 +2016-08-17 05:51:56,3560.0,12.5405, +2016-08-17 06:00:00,,,16.242 +2016-08-17 06:01:58,3560.0,12.5705, +2016-08-17 06:12:01,3560.0,12.6016, +2016-08-17 06:15:00,,,16.242 +2016-08-17 06:22:03,3559.0,12.5705, +2016-08-17 06:30:00,,,16.2363 +2016-08-17 06:32:06,3559.0,12.5671, +2016-08-17 06:42:08,3559.0,12.5682, +2016-08-17 06:45:00,,,16.2377 +2016-08-17 06:52:11,3559.0,12.5671, +2016-08-17 07:00:00,,,16.2363 +2016-08-17 07:02:13,3559.0,12.5671, +2016-08-17 07:12:16,3559.0,12.5671, +2016-08-17 07:15:00,,,16.2363 +2016-08-17 07:22:18,3559.0,12.5671, +2016-08-17 07:30:00,,,16.242 +2016-08-17 07:32:21,3559.0,12.5638, +2016-08-17 07:42:23,3559.0,12.5649, +2016-08-17 07:45:00,,,16.2033 +2016-08-17 07:52:26,3560.0,12.5938, +2016-08-17 08:00:00,,,16.2377 +2016-08-17 08:02:28,3561.0,12.5938, +2016-08-17 08:12:31,3561.0,12.5649, +2016-08-17 08:15:00,,,16.2091 +2016-08-17 08:22:33,3562.0,12.5638, +2016-08-17 08:30:00,,,16.2693 +2016-08-17 08:32:36,3563.0,12.5916, +2016-08-17 08:42:38,3563.0,12.5593, +2016-08-17 08:45:00,,,16.2377 +2016-08-17 08:52:40,3564.0,12.5604, +2016-08-17 09:00:00,,,16.2377 +2016-08-17 09:02:50,3564.0,12.5604, +2016-08-17 09:12:53,3565.0,12.5904, +2016-08-17 09:15:00,,,16.2033 +2016-08-17 09:22:55,3565.0,12.5904, +2016-08-17 09:30:00,,,16.2693 +2016-08-17 09:32:58,3566.0,12.5604, +2016-08-17 09:43:01,3567.0,12.5604, +2016-08-17 09:45:00,,,16.2377 +2016-08-17 09:53:03,3568.0,12.5604, +2016-08-17 10:00:00,,,16.2377 +2016-08-17 10:03:06,3570.0,12.5615, +2016-08-17 10:13:08,3571.0,12.5904, +2016-08-17 10:15:00,,,16.2392 +2016-08-17 10:23:18,3571.0,12.5604, +2016-08-17 10:30:00,,,16.2377 +2016-08-17 10:33:20,3573.0,12.5604, +2016-08-17 10:43:23,3573.0,12.5604, +2016-08-17 10:45:00,,,16.2363 +2016-08-17 10:53:25,3574.0,12.5604, +2016-08-17 11:00:00,,,16.2363 +2016-08-17 11:03:28,3576.0,12.5604, +2016-08-17 11:13:30,3578.0,12.4705, +2016-08-17 11:15:00,,,16.2377 +2016-08-17 11:23:33,3579.0,12.4705, +2016-08-17 11:30:00,,,16.1718 +2016-08-17 11:33:36,3581.0,12.4705, +2016-08-17 11:43:38,3582.0,12.4705, +2016-08-17 11:45:00,,,16.2363 +2016-08-17 11:53:41,3583.0,12.4705, +2016-08-17 12:00:00,,,16.2363 +2016-08-17 12:03:43,3585.0,12.4406, +2016-08-17 12:13:46,3585.0,12.4705, +2016-08-17 12:15:00,,,16.2047 +2016-08-17 12:23:48,3587.0,12.4705, +2016-08-17 12:30:00,,,16.2363 +2016-08-17 12:33:51,3588.0,12.4705, +2016-08-17 12:43:53,3588.0,12.4705, +2016-08-17 12:45:00,,,16.2363 +2016-08-17 12:53:56,3590.0,12.4705, +2016-08-17 13:00:00,,,16.2363 +2016-08-17 13:03:58,3591.0,12.4705, +2016-08-17 13:14:01,3592.0,12.4705, +2016-08-17 13:15:00,,,16.2033 +2016-08-17 13:24:04,3592.0,12.4705, +2016-08-17 13:30:00,,,16.2363 +2016-08-17 13:34:06,3593.0,12.4705, +2016-08-17 13:44:09,3594.0,12.4716, +2016-08-17 13:45:00,,,16.1389 +2016-08-17 13:54:12,3595.0,12.5005, +2016-08-17 14:00:00,,,16.1375 +2016-08-17 14:04:14,3596.0,12.4705, +2016-08-17 14:14:17,3597.0,12.4705, +2016-08-17 14:15:00,,,16.1375 +2016-08-17 14:24:20,3598.0,12.4705, +2016-08-17 14:30:00,,,16.1375 +2016-08-17 14:34:22,3598.0,12.4705, +2016-08-17 14:44:24,3598.0,12.4705, +2016-08-17 14:45:00,,,16.1046 +2016-08-17 14:54:27,3598.0,12.4705, +2016-08-17 15:00:00,,,16.0732 +2016-08-17 15:04:29,3598.0,12.4705, +2016-08-17 15:14:32,3598.0,12.4705, +2016-08-17 15:15:00,,,16.1389 +2016-08-17 15:24:35,3598.0,12.4705, +2016-08-17 15:30:00,,,16.1046 +2016-08-17 15:34:38,3598.0,12.4705, +2016-08-17 15:44:40,3598.0,12.4705, +2016-08-17 15:45:00,,,16.1375 +2016-08-17 15:54:43,3598.0,12.4705, +2016-08-17 16:00:00,,,16.1046 +2016-08-17 16:04:46,3598.0,12.4738, +2016-08-17 16:14:49,3598.0,12.4738, +2016-08-17 16:15:00,,,16.1046 +2016-08-17 16:24:51,3598.0,12.4749, +2016-08-17 16:30:00,,,16.1046 +2016-08-17 16:34:54,3598.0,12.4749, +2016-08-17 16:44:57,3598.0,12.4738, +2016-08-17 16:45:00,,,16.1389 +2016-08-17 16:55:00,3598.0,12.4738, +2016-08-17 17:00:00,,,16.1046 +2016-08-17 17:05:02,3598.0,12.4738, +2016-08-17 17:15:00,,,16.1389 +2016-08-17 17:15:05,3598.0,12.4749, +2016-08-17 17:25:08,3598.0,12.4772, +2016-08-17 17:30:00,,,16.1375 +2016-08-17 17:35:11,3598.0,12.4772, +2016-08-17 17:45:00,,,16.1375 +2016-08-17 17:45:13,3598.0,12.4472, +2016-08-17 17:55:16,3598.0,12.4772, +2016-08-17 18:00:00,,,16.0718 +2016-08-17 18:05:19,3598.0,12.4772, +2016-08-17 18:15:00,,,16.1046 +2016-08-17 18:15:22,3598.0,12.4472, +2016-08-17 18:25:25,3598.0,12.4772, +2016-08-17 18:30:00,,,16.1046 +2016-08-17 18:35:27,3598.0,12.4772, +2016-08-17 18:45:00,,,16.0732 +2016-08-17 18:45:30,3598.0,12.4772, +2016-08-17 18:55:33,3598.0,12.4772, +2016-08-17 19:00:00,,,16.1375 +2016-08-17 19:05:36,3598.0,12.4772, +2016-08-17 19:15:00,,,16.1046 +2016-08-17 19:15:38,3598.0,12.4772, +2016-08-17 19:25:41,3598.0,12.4805, +2016-08-17 19:30:00,,,16.1375 +2016-08-17 19:35:44,3597.0,12.4794, +2016-08-17 19:45:00,,,16.1046 +2016-08-17 19:45:46,3596.0,12.4805, +2016-08-17 19:55:49,3595.0,12.4805, +2016-08-17 20:00:00,,,16.105999999999998 +2016-08-17 20:05:51,3595.0,12.4794, +2016-08-17 20:15:00,,,16.1375 +2016-08-17 20:15:54,3594.0,12.4794, +2016-08-17 20:25:57,3594.0,12.4494, +2016-08-17 20:30:00,,,16.1375 +2016-08-17 20:35:59,3593.0,12.4794, +2016-08-17 20:45:00,,,16.1046 +2016-08-17 20:46:02,3592.0,12.4494, +2016-08-17 20:56:04,3592.0,12.4505, +2016-08-17 21:00:00,,,16.1389 +2016-08-17 21:06:07,3590.0,12.4794, +2016-08-17 21:15:00,,,16.105999999999998 +2016-08-17 21:16:09,3589.0,12.4794, +2016-08-17 21:26:12,3588.0,12.4794, +2016-08-17 21:30:00,,,16.1375 +2016-08-17 21:36:15,3588.0,12.4794, +2016-08-17 21:45:00,,,16.1046 +2016-08-17 21:46:17,3587.0,12.4805, +2016-08-17 21:56:20,3587.0,12.5094, +2016-08-17 22:00:00,,,16.1389 +2016-08-17 22:06:22,3586.0,12.4794, +2016-08-17 22:15:00,,,16.1403 +2016-08-17 22:16:25,3586.0,12.4805, +2016-08-17 22:26:27,3585.0,12.4816, +2016-08-17 22:30:00,,,16.1389 +2016-08-17 22:36:37,3585.0,12.4794, +2016-08-17 22:45:00,,,16.1375 +2016-08-17 22:46:40,3584.0,12.4805, +2016-08-17 22:56:43,3583.0,12.4794, +2016-08-17 23:00:00,,,16.1375 +2016-08-17 23:06:45,3582.0,12.4794, +2016-08-17 23:15:00,,,16.1389 +2016-08-17 23:16:48,3582.0,12.4794, +2016-08-17 23:26:50,3581.0,12.4805, +2016-08-17 23:30:00,,,16.1046 +2016-08-17 23:36:52,3581.0,12.5105, +2016-08-17 23:45:00,,,16.1389 +2016-08-17 23:46:54,3581.0,12.4805, +2016-08-17 23:56:57,3581.0,12.4772, +2016-08-18 00:00:00,,,16.1375 +2016-08-18 00:06:59,3580.0,12.5071, +2016-08-18 00:15:00,,,16.1389 +2016-08-18 00:17:02,3579.0,12.4794, +2016-08-18 00:27:04,3578.0,12.4772, +2016-08-18 00:30:00,,,16.1375 +2016-08-18 00:37:06,3578.0,12.4772, +2016-08-18 00:45:00,,,16.1375 +2016-08-18 00:47:09,3578.0,12.4772, +2016-08-18 00:57:11,3577.0,12.4772, +2016-08-18 01:00:00,,,16.1375 +2016-08-18 01:07:13,3577.0,12.4783, +2016-08-18 01:15:00,,,16.1389 +2016-08-18 01:17:16,3577.0,12.4772, +2016-08-18 01:27:18,3577.0,12.4783, +2016-08-18 01:30:00,,,16.1389 +2016-08-18 01:37:21,3577.0,12.4772, +2016-08-18 01:45:00,,,16.1375 +2016-08-18 01:47:23,3576.0,12.4772, +2016-08-18 01:57:26,3575.0,12.4783, +2016-08-18 02:00:00,,,16.1375 +2016-08-18 02:07:28,3575.0,12.4738, +2016-08-18 02:15:00,,,16.1046 +2016-08-18 02:17:31,3575.0,12.4738, +2016-08-18 02:27:33,3574.0,12.4738, +2016-08-18 02:30:00,,,16.1375 +2016-08-18 02:37:35,3574.0,12.4738, +2016-08-18 02:45:00,,,16.105999999999998 +2016-08-18 02:47:38,3574.0,12.4749, +2016-08-18 02:57:40,3574.0,12.4738, +2016-08-18 03:00:00,,,16.1375 +2016-08-18 03:07:43,3574.0,12.4738, +2016-08-18 03:15:00,,,16.1075 +2016-08-18 03:17:45,3574.0,12.4738, +2016-08-18 03:27:47,3574.0,12.4749, +2016-08-18 03:30:00,,,16.1389 +2016-08-18 03:37:50,3573.0,12.4738, +2016-08-18 03:45:00,,,16.1389 +2016-08-18 03:47:52,3573.0,12.5005, +2016-08-18 03:57:54,3573.0,12.4705, +2016-08-18 04:00:00,,,16.1403 +2016-08-18 04:07:56,3573.0,12.4705, +2016-08-18 04:15:00,,,16.1389 +2016-08-18 04:17:59,3573.0,12.4705, +2016-08-18 04:28:01,3572.0,12.4705, +2016-08-18 04:30:00,,,16.1375 +2016-08-18 04:38:03,3572.0,12.4705, +2016-08-18 04:45:00,,,16.1375 +2016-08-18 04:48:05,3572.0,12.5005, +2016-08-18 04:58:08,3572.0,12.4716, +2016-08-18 05:00:00,,,16.1375 +2016-08-18 05:08:10,3572.0,12.4716, +2016-08-18 05:15:00,,,16.1075 +2016-08-18 05:18:12,3571.0,12.4705, +2016-08-18 05:28:14,3571.0,12.4705, +2016-08-18 05:30:00,,,16.1389 +2016-08-18 05:38:17,3571.0,12.4705, +2016-08-18 05:45:00,,,16.1389 +2016-08-18 05:48:19,3571.0,12.4705, +2016-08-18 05:58:21,3571.0,12.4694, +2016-08-18 06:00:00,,,16.1389 +2016-08-18 06:08:24,3571.0,12.5005, +2016-08-18 06:15:00,,,16.1389 +2016-08-18 06:18:26,3571.0,12.4716, +2016-08-18 06:28:28,3571.0,12.4705, +2016-08-18 06:30:00,,,16.1389 +2016-08-18 06:38:30,3571.0,12.4406, +2016-08-18 06:45:00,,,16.0418 +2016-08-18 06:48:33,3571.0,12.4716, +2016-08-18 06:58:35,3571.0,12.4705, +2016-08-18 07:00:00,,,16.039 +2016-08-18 07:08:38,3571.0,12.4705, +2016-08-18 07:15:00,,,16.0404 +2016-08-18 07:18:40,3571.0,12.4705, +2016-08-18 07:28:42,3571.0,12.5005, +2016-08-18 07:30:00,,,16.0077 +2016-08-18 07:38:45,3571.0,12.5005, +2016-08-18 07:45:00,,,16.0077 +2016-08-18 07:48:47,3571.0,12.5005, +2016-08-18 07:58:49,3572.0,12.5005, +2016-08-18 08:00:00,,,16.039 +2016-08-18 08:08:52,3572.0,12.4705, +2016-08-18 08:15:00,,,16.0062 +2016-08-18 08:18:54,3573.0,12.4705, +2016-08-18 08:28:56,3574.0,12.4705, +2016-08-18 08:30:00,,,16.0077 +2016-08-18 08:38:59,3574.0,12.4705, +2016-08-18 08:45:00,,,16.0062 +2016-08-18 08:49:03,3575.0,12.4705, +2016-08-18 08:59:05,3576.0,12.5016, +2016-08-18 09:00:00,,,16.0404 +2016-08-18 09:09:08,3577.0,12.4705, +2016-08-18 09:15:00,,,16.0404 +2016-08-18 09:19:10,3578.0,12.4705, +2016-08-18 09:29:13,3580.0,12.4705, +2016-08-18 09:30:00,,,16.0404 +2016-08-18 09:39:15,3581.0,12.4705, +2016-08-18 09:45:00,,,16.0062 +2016-08-18 09:49:17,3583.0,12.4683, +2016-08-18 09:59:20,3585.0,12.5005, +2016-08-18 10:00:00,,,16.0361 +2016-08-18 10:09:22,3586.0,12.4705, +2016-08-18 10:15:00,,,16.039 +2016-08-18 10:19:25,3588.0,12.4705, +2016-08-18 10:29:27,3589.0,12.4705, +2016-08-18 10:30:00,,,16.0361 +2016-08-18 10:39:30,3591.0,12.3775, +2016-08-18 10:45:00,,,16.0034 +2016-08-18 10:49:33,3593.0,12.3808, +2016-08-18 10:59:35,3594.0,12.3808, +2016-08-18 11:00:00,,,16.0048 +2016-08-18 11:09:38,3595.0,12.3808, +2016-08-18 11:15:00,,,16.0361 +2016-08-18 11:19:40,3596.0,12.3808, +2016-08-18 11:29:43,3597.0,12.3808, +2016-08-18 11:30:00,,,16.0034 +2016-08-18 11:39:46,3598.0,12.3819, +2016-08-18 11:45:00,,,16.0034 +2016-08-18 11:49:49,3598.0,12.3808, +2016-08-18 11:59:51,3598.0,12.3808, +2016-08-18 12:00:00,,,16.0034 +2016-08-18 12:09:54,3598.0,12.3808, +2016-08-18 12:15:00,,,16.0034 +2016-08-18 12:19:57,3598.0,12.3211, +2016-08-18 12:29:59,3599.0,12.3211, +2016-08-18 12:30:00,,,16.0034 +2016-08-18 12:40:02,3598.0,12.2913, +2016-08-18 12:45:00,,,16.002 +2016-08-18 12:50:05,3599.0,12.2913, +2016-08-18 13:00:00,,,15.9366 +2016-08-18 13:00:07,3599.0,12.2913, +2016-08-18 13:10:09,3599.0,12.2913, +2016-08-18 13:15:00,,,15.938 +2016-08-18 13:20:20,3599.0,12.2913, +2016-08-18 13:30:00,,,15.938 +2016-08-18 13:30:23,3599.0,12.2913, +2016-08-18 13:40:26,3599.0,12.2913, +2016-08-18 13:45:00,,,15.938 +2016-08-18 13:50:28,3599.0,12.2913, +2016-08-18 14:00:00,,,15.938 +2016-08-18 14:00:31,3599.0,12.2913, +2016-08-18 14:10:34,3599.0,12.2913, +2016-08-18 14:15:00,,,15.938 +2016-08-18 14:20:37,3599.0,12.2053, +2016-08-18 14:30:00,,,15.938 +2016-08-18 14:30:40,3599.0,12.2021, +2016-08-18 14:40:42,3599.0,12.2053, +2016-08-18 14:45:00,,,15.938 +2016-08-18 14:50:45,3599.0,12.2351, +2016-08-18 15:00:00,,,15.9366 +2016-08-18 15:00:48,3599.0,12.2053, +2016-08-18 15:10:51,3599.0,12.2351, +2016-08-18 15:15:00,,,15.938 +2016-08-18 15:20:53,3599.0,12.2097, +2016-08-18 15:30:00,,,15.9054 +2016-08-18 15:30:56,3599.0,12.2086, +2016-08-18 15:40:59,3599.0,12.2086, +2016-08-18 15:45:00,,,15.938 +2016-08-18 15:51:02,3599.0,12.2394, +2016-08-18 16:00:00,,,15.9054 +2016-08-18 16:01:05,3599.0,12.2383, +2016-08-18 16:11:08,3599.0,12.2086, +2016-08-18 16:15:00,,,15.938 +2016-08-18 16:21:10,3599.0,12.2119, +2016-08-18 16:30:00,,,15.9054 +2016-08-18 16:31:13,3599.0,12.1524, +2016-08-18 16:41:16,3599.0,12.1217, +2016-08-18 16:45:00,,,15.9011 +2016-08-18 16:51:19,3599.0,12.1217, +2016-08-18 17:00:00,,,15.938 +2016-08-18 17:01:21,3599.0,12.1557, +2016-08-18 17:11:24,3599.0,12.1217, +2016-08-18 17:15:00,,,15.938 +2016-08-18 17:21:27,3599.0,12.1513, +2016-08-18 17:30:00,,,15.9366 +2016-08-18 17:31:30,3599.0,12.1249, +2016-08-18 17:41:32,3599.0,12.1249, +2016-08-18 17:45:00,,,15.9054 +2016-08-18 17:51:34,3599.0,12.1249, +2016-08-18 18:00:00,,,15.9054 +2016-08-18 18:01:37,3599.0,12.1557, +2016-08-18 18:11:40,3599.0,12.1546, +2016-08-18 18:15:00,,,15.938 +2016-08-18 18:21:43,3599.0,12.1546, +2016-08-18 18:30:00,,,15.9338 +2016-08-18 18:31:45,3599.0,12.214, +2016-08-18 18:41:48,3599.0,12.2449, +2016-08-18 18:45:00,,,15.9054 +2016-08-18 18:51:51,3599.0,12.2151, +2016-08-18 19:00:00,,,15.9054 +2016-08-18 19:01:54,3599.0,12.214, +2016-08-18 19:11:57,3599.0,12.2438, +2016-08-18 19:15:00,,,15.9366 +2016-08-18 19:22:00,3599.0,12.2438, +2016-08-18 19:30:00,,,15.938 +2016-08-18 19:32:02,3599.0,12.2438, +2016-08-18 19:42:05,3599.0,12.2438, +2016-08-18 19:45:00,,,15.9338 +2016-08-18 19:52:08,3599.0,12.214, +2016-08-18 20:00:00,,,15.9054 +2016-08-18 20:02:11,3599.0,12.2151, +2016-08-18 20:12:13,3599.0,12.214, +2016-08-18 20:15:00,,,15.9054 +2016-08-18 20:22:16,3599.0,12.1843, +2016-08-18 20:30:00,,,15.938 +2016-08-18 20:32:19,3599.0,12.2438, +2016-08-18 20:42:21,3599.0,12.2151, +2016-08-18 20:45:00,,,15.9054 +2016-08-18 20:52:24,3598.0,12.2449, +2016-08-18 21:00:00,,,15.9054 +2016-08-18 21:02:27,3598.0,12.214, +2016-08-18 21:12:29,3598.0,12.214, +2016-08-18 21:15:00,,,15.9054 +2016-08-18 21:22:32,3598.0,12.214, +2016-08-18 21:30:00,,,15.9054 +2016-08-18 21:32:35,3598.0,12.214, +2016-08-18 21:42:37,3597.0,12.1854, +2016-08-18 21:45:00,,,15.938 +2016-08-18 21:52:40,3596.0,12.2151, +2016-08-18 22:00:00,,,15.938 +2016-08-18 22:02:43,3595.0,12.1854, +2016-08-18 22:12:45,3595.0,12.2438, +2016-08-18 22:15:00,,,15.938 +2016-08-18 22:22:48,3594.0,12.214, +2016-08-18 22:30:00,,,15.938 +2016-08-18 22:32:51,3593.0,12.2438, +2016-08-18 22:42:53,3593.0,12.214, +2016-08-18 22:45:00,,,15.938 +2016-08-18 22:52:56,3592.0,12.214, +2016-08-18 23:00:00,,,15.9394 +2016-08-18 23:02:58,3592.0,12.2438, +2016-08-18 23:13:01,3590.0,12.2449, +2016-08-18 23:15:00,,,15.9054 +2016-08-18 23:23:03,3590.0,12.2151, +2016-08-18 23:30:00,,,15.938 +2016-08-18 23:33:06,3588.0,12.214, +2016-08-18 23:43:08,3588.0,12.2438, +2016-08-18 23:45:00,,,15.9366 +2016-08-18 23:53:11,3588.0,12.2151, +2016-08-19 00:00:00,,,15.938 +2016-08-19 00:03:13,3587.0,12.2438, +2016-08-19 00:13:16,3587.0,12.2151, +2016-08-19 00:15:00,,,15.938 +2016-08-19 00:23:18,3586.0,12.214, +2016-08-19 00:30:00,,,15.9394 +2016-08-19 00:33:21,3586.0,12.2449, +2016-08-19 00:43:23,3585.0,12.214, +2016-08-19 00:45:00,,,15.938 +2016-08-19 00:53:26,3585.0,12.214, +2016-08-19 01:00:00,,,15.938 +2016-08-19 01:03:28,3584.0,12.2438, +2016-08-19 01:13:31,3583.0,12.2151, +2016-08-19 01:15:00,,,15.938 +2016-08-19 01:23:33,3583.0,12.1843, +2016-08-19 01:30:00,,,15.9082 +2016-08-19 01:33:36,3582.0,12.214, +2016-08-19 01:43:38,3581.0,12.2151, +2016-08-19 01:45:00,,,15.9423 +2016-08-19 01:53:41,3581.0,12.2438, +2016-08-19 02:00:00,,,15.938 +2016-08-19 02:03:43,3581.0,12.2449, +2016-08-19 02:13:46,3581.0,12.2151, +2016-08-19 02:15:00,,,15.9749 +2016-08-19 02:23:48,3580.0,12.2151, +2016-08-19 02:30:00,,,15.938 +2016-08-19 02:33:50,3579.0,12.2449, +2016-08-19 02:43:53,3579.0,12.2449, +2016-08-19 02:45:00,,,15.9394 +2016-08-19 02:53:55,3578.0,12.2438, +2016-08-19 03:00:00,,,15.9437 +2016-08-19 03:03:57,3578.0,12.214, +2016-08-19 03:13:59,3577.0,12.2151, +2016-08-19 03:15:00,,,15.911 +2016-08-19 03:24:02,3577.0,12.2438, +2016-08-19 03:30:00,,,15.9423 +2016-08-19 03:34:04,3577.0,12.2449, +2016-08-19 03:44:07,3577.0,12.2151, +2016-08-19 03:45:00,,,15.938 +2016-08-19 03:54:09,3577.0,12.2438, +2016-08-19 04:00:00,,,15.9054 +2016-08-19 04:04:11,3577.0,12.214, +2016-08-19 04:14:14,3576.0,12.2108, +2016-08-19 04:15:00,,,15.9096 +2016-08-19 04:24:16,3576.0,12.2405, +2016-08-19 04:30:00,,,15.9082 +2016-08-19 04:34:18,3576.0,12.2119, +2016-08-19 04:44:21,3576.0,12.2119, +2016-08-19 04:45:00,,,15.9749 +2016-08-19 04:54:23,3575.0,12.2108, +2016-08-19 05:00:00,,,15.9408 +2016-08-19 05:04:26,3575.0,12.2108, +2016-08-19 05:14:28,3575.0,12.2416, +2016-08-19 05:15:00,,,15.9423 +2016-08-19 05:24:30,3575.0,12.2097, +2016-08-19 05:30:00,,,15.938 +2016-08-19 05:34:33,3574.0,12.181, +2016-08-19 05:44:35,3574.0,12.1789, +2016-08-19 05:45:00,,,15.9408 +2016-08-19 05:54:38,3574.0,12.2383, +2016-08-19 06:00:00,,,15.9423 +2016-08-19 06:04:40,3574.0,12.2383, +2016-08-19 06:14:42,3574.0,12.2086, +2016-08-19 06:15:00,,,15.9423 +2016-08-19 06:24:45,3574.0,12.2383, +2016-08-19 06:30:00,,,15.938 +2016-08-19 06:34:47,3574.0,12.2351, +2016-08-19 06:44:49,3574.0,12.2086, +2016-08-19 06:45:00,,,15.9408 +2016-08-19 06:54:52,3573.0,12.2097, +2016-08-19 07:00:00,,,15.9408 +2016-08-19 07:04:54,3574.0,12.2383, +2016-08-19 07:14:57,3574.0,12.2053, +2016-08-19 07:15:00,,,15.9096 +2016-08-19 07:24:59,3574.0,12.2351, +2016-08-19 07:30:00,,,15.9408 +2016-08-19 07:35:01,3574.0,12.2351, +2016-08-19 07:45:00,,,15.9423 +2016-08-19 07:45:04,3574.0,12.2362, +2016-08-19 07:55:06,3574.0,12.2351, +2016-08-19 08:00:00,,,15.9408 +2016-08-19 08:05:08,3575.0,12.2064, +2016-08-19 08:15:00,,,15.9408 +2016-08-19 08:15:11,3576.0,12.2351, +2016-08-19 08:25:13,3577.0,12.2351, +2016-08-19 08:30:00,,,15.9408 +2016-08-19 08:35:15,3577.0,12.2351, +2016-08-19 08:45:00,,,15.9082 +2016-08-19 08:45:18,3578.0,12.1724, +2016-08-19 08:55:20,3579.0,12.2351, +2016-08-19 09:00:00,,,15.9423 +2016-08-19 09:05:22,3581.0,12.2318, +2016-08-19 09:15:00,,,15.9423 +2016-08-19 09:15:25,3581.0,12.2021, +2016-08-19 09:25:27,3583.0,12.2318, +2016-08-19 09:30:00,,,15.9423 +2016-08-19 09:35:29,3585.0,12.1724, +2016-08-19 09:45:00,,,15.9054 +2016-08-19 09:45:32,3586.0,12.2318, +2016-08-19 09:55:34,3588.0,12.2053, +2016-08-19 10:00:00,,,15.9408 +2016-08-19 10:05:36,3589.0,12.1724, +2016-08-19 10:15:00,,,15.938 +2016-08-19 10:15:39,3591.0,12.2021, +2016-08-19 10:25:41,3593.0,12.1427, +2016-08-19 10:30:00,,,15.9423 +2016-08-19 10:35:44,3594.0,12.1131, +2016-08-19 10:45:00,,,15.9082 +2016-08-19 10:45:46,3595.0,12.1163, +2016-08-19 10:55:49,3596.0,12.1427, +2016-08-19 11:00:00,,,15.9082 +2016-08-19 11:05:51,3598.0,12.1427, +2016-08-19 11:15:00,,,15.9423 +2016-08-19 11:15:54,3598.0,12.1459, +2016-08-19 11:25:56,3598.0,12.1459, +2016-08-19 11:30:00,,,15.843 +2016-08-19 11:35:59,3598.0,12.1427, +2016-08-19 11:45:00,,,15.8402 +2016-08-19 11:46:02,3599.0,12.1163, +2016-08-19 11:56:05,3599.0,12.1163, +2016-08-19 12:00:00,,,15.8402 +2016-08-19 12:06:09,3599.0,12.1163, +2016-08-19 12:15:00,,,15.8076 +2016-08-19 12:16:12,3599.0,12.1163, +2016-08-19 12:26:15,3599.0,12.1459, +2016-08-19 12:30:00,,,15.8076 +2016-08-19 12:36:18,3599.0,12.1195, +2016-08-19 12:45:00,,,15.8076 +2016-08-19 12:46:21,3599.0,12.1492, +2016-08-19 12:56:23,3599.0,12.1492, +2016-08-19 13:00:00,,,15.8402 +2016-08-19 13:06:26,3599.0,12.1195, +2016-08-19 13:15:00,,,15.8076 +2016-08-19 13:16:29,3599.0,12.1195, +2016-08-19 13:26:32,3599.0,12.1195, +2016-08-19 13:30:00,,,15.8076 +2016-08-19 13:36:35,3599.0,12.1217, +2016-08-19 13:45:00,,,15.8076 +2016-08-19 13:46:38,3599.0,12.1217, +2016-08-19 13:56:41,3599.0,12.0328, +2016-08-19 14:00:00,,,15.8076 +2016-08-19 14:06:44,3599.0,12.0624, +2016-08-19 14:15:00,,,15.8402 +2016-08-19 14:16:47,3599.0,12.0328, +2016-08-19 14:26:50,3599.0,12.0328, +2016-08-19 14:30:00,,,15.8076 +2016-08-19 14:36:52,3599.0,12.036, +2016-08-19 14:45:00,,,15.7088 +2016-08-19 14:46:55,3599.0,12.0371, +2016-08-19 14:56:58,3599.0,12.036, +2016-08-19 15:00:00,,,15.7102 +2016-08-19 15:07:01,3599.0,12.0656, +2016-08-19 15:15:00,,,15.7102 +2016-08-19 15:17:04,3599.0,12.0371, +2016-08-19 15:27:07,3599.0,12.036, +2016-08-19 15:30:00,,,15.7102 +2016-08-19 15:37:10,3599.0,12.036, +2016-08-19 15:45:00,,,15.7102 +2016-08-19 15:47:13,3599.0,12.036, +2016-08-19 15:57:16,3599.0,12.036, +2016-08-19 16:00:00,,,15.7102 +2016-08-19 16:07:19,3599.0,11.9484, +2016-08-19 16:15:00,,,15.7427 +2016-08-19 16:17:22,3599.0,12.036, +2016-08-19 16:27:25,3599.0,11.9484, +2016-08-19 16:30:00,,,15.7102 +2016-08-19 16:37:28,3599.0,11.9473, +2016-08-19 16:45:00,,,15.7102 +2016-08-19 16:47:31,3599.0,11.9515, +2016-08-19 16:57:34,3599.0,11.98, +2016-08-19 17:00:00,,,15.7102 +2016-08-19 17:07:37,3599.0,11.98, +2016-08-19 17:15:00,,,15.7427 +2016-08-19 17:17:40,3599.0,11.9505, +2016-08-19 17:27:43,3599.0,11.9547, +2016-08-19 17:30:00,,,15.7102 +2016-08-19 17:37:46,3599.0,11.9537, +2016-08-19 17:45:00,,,15.7088 +2016-08-19 17:47:49,3599.0,11.9537, +2016-08-19 17:57:52,3599.0,11.9537, +2016-08-19 18:00:00,,,15.7102 +2016-08-19 18:07:55,3599.0,11.9569, +2016-08-19 18:15:00,,,15.7102 +2016-08-19 18:17:58,3599.0,11.9569, +2016-08-19 18:28:01,3599.0,11.9558, +2016-08-19 18:30:00,,,15.7102 +2016-08-19 18:38:04,3599.0,11.9569, +2016-08-19 18:45:00,,,15.7102 +2016-08-19 18:48:07,3599.0,11.9864, +2016-08-19 18:58:10,3599.0,11.9864, +2016-08-19 19:00:00,,,15.7427 +2016-08-19 19:08:13,3599.0,11.9579, +2016-08-19 19:15:00,,,15.7102 +2016-08-19 19:18:16,3599.0,11.9854, +2016-08-19 19:28:19,3599.0,11.9875, +2016-08-19 19:30:00,,,15.7455 +2016-08-19 19:38:22,3599.0,11.9569, +2016-08-19 19:45:00,,,15.7102 +2016-08-19 19:48:25,3599.0,11.9864, +2016-08-19 19:58:28,3599.0,11.9875, +2016-08-19 20:00:00,,,15.7469 +2016-08-19 20:08:31,3599.0,11.9569, +2016-08-19 20:15:00,,,15.7102 +2016-08-19 20:18:33,3599.0,11.9558, +2016-08-19 20:28:36,3599.0,11.9558, +2016-08-19 20:30:00,,,15.7144 +2016-08-19 20:38:39,3599.0,12.0456, +2016-08-19 20:45:00,,,15.7102 +2016-08-19 20:48:42,3599.0,12.0763, +2016-08-19 20:58:45,3599.0,12.0456, +2016-08-19 21:00:00,,,15.713 +2016-08-19 21:08:47,3599.0,12.0753, +2016-08-19 21:15:00,,,15.713 +2016-08-19 21:18:50,3599.0,12.0467, +2016-08-19 21:28:53,3599.0,12.0785, +2016-08-19 21:30:00,,,15.7144 +2016-08-19 21:38:56,3599.0,12.0488, +2016-08-19 21:45:00,,,15.713 +2016-08-19 21:48:58,3599.0,12.0796, +2016-08-19 21:59:01,3599.0,12.0488, +2016-08-19 22:00:00,,,15.713 +2016-08-19 22:09:04,3599.0,12.0785, +2016-08-19 22:15:00,,,15.7793 +2016-08-19 22:19:07,3599.0,12.0796, +2016-08-19 22:29:10,3599.0,12.0488, +2016-08-19 22:30:00,,,15.7144 +2016-08-19 22:39:13,3599.0,12.0785, +2016-08-19 22:45:00,,,15.713 +2016-08-19 22:49:16,3599.0,12.0192, +2016-08-19 22:59:19,3599.0,12.0785, +2016-08-19 23:00:00,,,15.7779 +2016-08-19 23:09:21,3599.0,12.0488, +2016-08-19 23:15:00,,,15.713 +2016-08-19 23:19:24,3599.0,12.0488, +2016-08-19 23:29:27,3599.0,12.0499, +2016-08-19 23:30:00,,,15.7793 +2016-08-19 23:39:29,3599.0,12.0796, +2016-08-19 23:45:00,,,15.7144 +2016-08-19 23:49:32,3599.0,12.0478, +2016-08-19 23:59:35,3599.0,12.0478, +2016-08-20 00:00:00,,,15.713 +2016-08-20 00:09:38,3599.0,12.0488, +2016-08-20 00:15:00,,,15.7158 +2016-08-20 00:19:40,3599.0,12.0488, +2016-08-20 00:29:43,3599.0,12.0796, +2016-08-20 00:30:00,,,15.7469 +2016-08-20 00:39:46,3599.0,12.0774, +2016-08-20 00:45:00,,,15.6806 +2016-08-20 00:49:49,3599.0,12.0817, +2016-08-20 00:59:51,3599.0,12.0478, +2016-08-20 01:00:00,,,15.7469 +2016-08-20 01:09:54,3599.0,12.0488, +2016-08-20 01:15:00,,,15.713 +2016-08-20 01:19:57,3599.0,12.0499, +2016-08-20 01:30:00,3599.0,12.0488,15.713 +2016-08-20 01:40:02,3599.0,12.0488, +2016-08-20 01:45:00,,,15.7144 +2016-08-20 01:50:05,3599.0,12.0488, +2016-08-20 02:00:00,,,15.713 +2016-08-20 02:00:08,3599.0,12.0774, +2016-08-20 02:10:10,3599.0,12.0488, +2016-08-20 02:15:00,,,15.7144 +2016-08-20 02:20:13,3599.0,12.0478, +2016-08-20 02:30:00,,,15.713 +2016-08-20 02:30:16,3599.0,12.0488, +2016-08-20 02:40:18,3599.0,12.0478, +2016-08-20 02:45:00,,,15.6482 +2016-08-20 02:50:21,3599.0,12.0499, +2016-08-20 03:00:00,,,15.713 +2016-08-20 03:00:24,3599.0,12.0785, +2016-08-20 03:10:26,3598.0,12.0478, +2016-08-20 03:15:00,,,15.7455 +2016-08-20 03:20:29,3598.0,12.0499, +2016-08-20 03:30:00,,,15.7158 +2016-08-20 03:30:32,3598.0,12.0488, +2016-08-20 03:40:35,3598.0,12.0488, +2016-08-20 03:45:00,,,15.7144 +2016-08-20 03:50:37,3598.0,12.0796, +2016-08-20 04:00:00,,,15.713 +2016-08-20 04:00:40,3598.0,12.0796, +2016-08-20 04:10:43,3598.0,12.0488, +2016-08-20 04:15:00,,,15.7455 +2016-08-20 04:20:45,3598.0,12.0488, +2016-08-20 04:30:00,,,15.7469 +2016-08-20 04:30:48,3598.0,12.0796, +2016-08-20 04:40:51,3598.0,12.0478, +2016-08-20 04:45:00,,,15.7158 +2016-08-20 04:50:53,3598.0,12.0488, +2016-08-20 05:00:00,,,15.713 +2016-08-20 05:00:56,3597.0,12.0785, +2016-08-20 05:10:58,3598.0,12.0478, +2016-08-20 05:15:00,,,15.7807 +2016-08-20 05:21:01,3597.0,12.0488, +2016-08-20 05:30:00,,,15.713 +2016-08-20 05:31:04,3597.0,12.0499, +2016-08-20 05:41:06,3597.0,12.0785, +2016-08-20 05:45:00,,,15.713 +2016-08-20 05:51:09,3596.0,12.0488, +2016-08-20 06:00:00,,,15.713 +2016-08-20 06:01:11,3595.0,12.0785, +2016-08-20 06:11:13,3595.0,12.0796, +2016-08-20 06:15:00,,,15.713 +2016-08-20 06:21:16,3595.0,12.0742, +2016-08-20 06:30:00,,,15.713 +2016-08-20 06:31:18,3595.0,12.0499, +2016-08-20 06:41:21,3595.0,12.0488, +2016-08-20 06:45:00,,,15.7469 +2016-08-20 06:51:23,3595.0,12.0488, +2016-08-20 07:00:00,,,15.7469 +2016-08-20 07:01:26,3595.0,12.0467, +2016-08-20 07:11:29,3595.0,12.0774, +2016-08-20 07:15:00,,,15.7483 +2016-08-20 07:21:31,3595.0,12.0456, +2016-08-20 07:30:00,,,15.7469 +2016-08-20 07:31:34,3595.0,12.0488, +2016-08-20 07:41:36,3595.0,12.0446, +2016-08-20 07:45:00,,,15.7469 +2016-08-20 07:51:39,3595.0,12.0753, +2016-08-20 08:00:00,,,15.7455 +2016-08-20 08:01:42,3596.0,12.0456, +2016-08-20 08:11:44,3595.0,12.0753, +2016-08-20 08:15:00,,,15.7144 +2016-08-20 08:21:47,3596.0,12.0456, +2016-08-20 08:30:00,,,15.7469 +2016-08-20 08:31:50,3597.0,12.0785, +2016-08-20 08:41:52,3597.0,12.0467, +2016-08-20 08:45:00,,,15.7469 +2016-08-20 08:51:55,3598.0,12.0446, +2016-08-20 09:00:00,,,15.713 +2016-08-20 09:01:57,3598.0,12.0467, +2016-08-20 09:12:00,3598.0,12.0467, +2016-08-20 09:15:00,,,15.7469 +2016-08-20 09:22:03,3598.0,12.0753, +2016-08-20 09:30:00,,,15.7455 +2016-08-20 09:32:05,3598.0,12.0753, +2016-08-20 09:42:08,3598.0,12.0488, +2016-08-20 09:45:00,,,15.7455 +2016-08-20 09:52:10,3599.0,12.0456, +2016-08-20 10:00:00,,,15.6496 +2016-08-20 10:02:13,3599.0,12.0456, +2016-08-20 10:12:16,3599.0,12.0742, +2016-08-20 10:15:00,,,15.6806 +2016-08-20 10:22:18,3599.0,12.0753, +2016-08-20 10:30:00,,,15.6806 +2016-08-20 10:32:21,3599.0,12.0456, +2016-08-20 10:42:24,3599.0,12.0499, +2016-08-20 10:45:00,,,15.6482 +2016-08-20 10:52:26,3599.0,12.0796, +2016-08-20 11:00:00,,,15.6482 +2016-08-20 11:02:29,3599.0,12.0785, +2016-08-20 11:12:32,3599.0,12.0785, +2016-08-20 11:15:00,,,15.6482 +2016-08-20 11:22:34,3599.0,12.0774, +2016-08-20 11:30:00,,,15.6482 +2016-08-20 11:32:37,3599.0,12.0478, +2016-08-20 11:42:40,3599.0,11.9611, +2016-08-20 11:45:00,,,15.6482 +2016-08-20 11:52:43,3599.0,12.0478, +2016-08-20 12:00:00,,,15.6482 +2016-08-20 12:02:45,3599.0,12.0521, +2016-08-20 12:12:48,3599.0,12.0499, +2016-08-20 12:15:00,,,15.6496 +2016-08-20 12:22:51,3599.0,12.0521, +2016-08-20 12:30:00,,,15.6806 +2016-08-20 12:32:54,3599.0,12.0828, +2016-08-20 12:42:57,3599.0,12.0521, +2016-08-20 12:45:00,,,15.651 +2016-08-20 12:52:59,3599.0,11.9928, +2016-08-20 13:00:00,,,15.6482 +2016-08-20 13:03:02,3599.0,11.9632, +2016-08-20 13:13:05,3599.0,11.9632, +2016-08-20 13:15:00,,,15.6482 +2016-08-20 13:23:08,3599.0,11.9928, +2016-08-20 13:30:00,,,15.6159 +2016-08-20 13:33:10,3599.0,11.9664, +2016-08-20 13:43:13,3599.0,11.9654, +2016-08-20 13:45:00,,,15.6496 +2016-08-20 13:53:16,3599.0,11.9654, +2016-08-20 14:00:00,,,15.682 +2016-08-20 14:03:19,3599.0,11.9654, +2016-08-20 14:13:22,3599.0,11.9664, +2016-08-20 14:15:00,,,15.6496 +2016-08-20 14:23:25,3599.0,11.996, +2016-08-20 14:30:00,,,15.6482 +2016-08-20 14:33:28,3599.0,11.9664, +2016-08-20 14:43:31,3599.0,11.995, +2016-08-20 14:45:00,,,15.6482 +2016-08-20 14:53:34,3599.0,11.9664, +2016-08-20 15:00:00,,,15.6482 +2016-08-20 15:03:37,3599.0,11.996, +2016-08-20 15:13:40,3599.0,11.9664, +2016-08-20 15:15:00,,,15.6482 +2016-08-20 15:23:43,3599.0,11.9654, +2016-08-20 15:30:00,,,15.6159 +2016-08-20 15:33:55,3599.0,11.9664, +2016-08-20 15:43:57,3599.0,11.9654, +2016-08-20 15:45:00,,,15.6524 +2016-08-20 15:54:00,3599.0,11.9664, +2016-08-20 16:00:00,,,15.6482 +2016-08-20 16:04:03,3599.0,11.9654, +2016-08-20 16:14:06,3599.0,11.9664, +2016-08-20 16:15:00,,,15.6496 +2016-08-20 16:24:09,3599.0,11.9654, +2016-08-20 16:30:00,,,15.6482 +2016-08-20 16:34:12,3599.0,11.9664, +2016-08-20 16:44:15,3599.0,11.995, +2016-08-20 16:45:00,,,15.6482 +2016-08-20 16:54:17,3599.0,11.9696, +2016-08-20 17:00:00,,,15.6482 +2016-08-20 17:04:20,3599.0,11.9696, +2016-08-20 17:14:23,3599.0,11.9696, +2016-08-20 17:15:00,,,15.6524 +2016-08-20 17:24:26,3599.0,11.9992, +2016-08-20 17:30:00,,,15.6848 +2016-08-20 17:34:29,3599.0,11.9992, +2016-08-20 17:44:31,3599.0,11.9686, +2016-08-20 17:45:00,,,15.682 +2016-08-20 17:54:34,3599.0,11.9686, +2016-08-20 18:00:00,,,15.6524 +2016-08-20 18:04:37,3599.0,11.9686, +2016-08-20 18:14:39,3599.0,11.9696, +2016-08-20 18:15:00,,,15.6524 +2016-08-20 18:24:50,3599.0,11.9686, +2016-08-20 18:30:00,,,15.6524 +2016-08-20 18:34:52,3599.0,11.9696, +2016-08-20 18:44:55,3599.0,11.9696, +2016-08-20 18:45:00,,,15.6538 +2016-08-20 18:54:58,3599.0,11.9728, +2016-08-20 19:00:00,,,15.6524 +2016-08-20 19:05:01,3599.0,11.9686, +2016-08-20 19:15:00,,,15.6524 +2016-08-20 19:15:03,3599.0,11.9686, +2016-08-20 19:25:06,3599.0,11.9718, +2016-08-20 19:30:00,,,15.6524 +2016-08-20 19:35:09,3599.0,11.9696, +2016-08-20 19:45:00,,,15.6524 +2016-08-20 19:45:12,3599.0,12.0024, +2016-08-20 19:55:15,3599.0,11.9728, +2016-08-20 20:00:00,,,15.6538 +2016-08-20 20:05:17,3599.0,11.9696, +2016-08-20 20:15:00,,,15.6538 +2016-08-20 20:15:20,3599.0,11.9728, +2016-08-20 20:25:23,3599.0,11.9728, +2016-08-20 20:30:00,,,15.6862 +2016-08-20 20:35:25,3598.0,11.9728, +2016-08-20 20:45:00,,,15.6524 +2016-08-20 20:45:28,3598.0,11.9728, +2016-08-20 20:55:31,3598.0,11.9728, +2016-08-20 21:00:00,,,15.6524 +2016-08-20 21:05:34,3598.0,12.0024, +2016-08-20 21:15:00,,,15.6538 +2016-08-20 21:15:36,3598.0,11.9728, +2016-08-20 21:25:39,3598.0,11.9686, +2016-08-20 21:30:00,,,15.6538 +2016-08-20 21:35:42,3598.0,11.9992, +2016-08-20 21:45:00,,,15.6538 +2016-08-20 21:45:45,3598.0,12.0617, +2016-08-20 21:55:47,3598.0,12.0617, +2016-08-20 22:00:00,,,15.6524 +2016-08-20 22:05:50,3597.0,12.0882, +2016-08-20 22:15:00,,,15.658 +2016-08-20 22:15:53,3597.0,12.0574, +2016-08-20 22:25:56,3597.0,12.0882, +2016-08-20 22:30:00,,,15.6566 +2016-08-20 22:35:58,3596.0,12.0574, +2016-08-20 22:45:00,,,15.6566 +2016-08-20 22:46:01,3595.0,12.0574, +2016-08-20 22:56:04,3595.0,12.0585, +2016-08-20 23:00:00,,,15.658 +2016-08-20 23:06:07,3595.0,12.0585, +2016-08-20 23:15:00,,,15.658 +2016-08-20 23:16:09,3595.0,12.0585, +2016-08-20 23:26:12,3595.0,12.0882, +2016-08-20 23:30:00,,,15.6566 +2016-08-20 23:36:15,3595.0,12.0574, +2016-08-20 23:45:00,,,15.6566 +2016-08-20 23:46:18,3594.0,12.0871, +2016-08-20 23:56:20,3593.0,12.0585, +2016-08-21 00:00:00,,,15.658 +2016-08-21 00:15:00,,, +2016-08-21 00:30:00,,, +2016-08-21 00:45:00,,, +2016-08-21 01:00:00,,,15.6904 +2016-08-21 01:06:38,3591.0,12.0553, +2016-08-21 01:15:00,,,15.658 +2016-08-21 01:16:41,3591.0,12.0553, +2016-08-21 01:26:44,3590.0,12.0542, +2016-08-21 01:30:00,,,15.6566 +2016-08-21 01:36:46,3590.0,12.0553, +2016-08-21 01:45:00,,,15.6566 +2016-08-21 01:46:49,3590.0,12.0553, +2016-08-21 01:56:52,3589.0,12.0542, +2016-08-21 02:00:00,,,15.658 +2016-08-21 02:06:55,3588.0,12.0553, +2016-08-21 02:15:00,,,15.658 +2016-08-21 02:16:57,3588.0,12.0542, +2016-08-21 02:27:00,3588.0,12.0553, +2016-08-21 02:30:00,,,15.658 +2016-08-21 02:37:03,3588.0,12.0553, +2016-08-21 02:45:00,,,15.6566 +2016-08-21 02:47:06,3588.0,12.0849, +2016-08-21 02:57:08,3587.0,12.0553, +2016-08-21 03:00:00,,,15.6904 +2016-08-21 03:07:11,3587.0,12.0553, +2016-08-21 03:15:00,,,15.6566 +2016-08-21 03:17:14,3587.0,12.0849, +2016-08-21 03:27:17,3586.0,12.0542, +2016-08-21 03:30:00,,,15.6566 +2016-08-21 03:37:19,3586.0,12.0542, +2016-08-21 03:45:00,,,15.6904 +2016-08-21 03:47:22,3586.0,12.0553, +2016-08-21 03:57:25,3586.0,12.0553, +2016-08-21 04:00:00,,,15.6608 +2016-08-21 04:07:27,3585.0,12.0849, +2016-08-21 04:15:00,,,15.6566 +2016-08-21 04:17:30,3585.0,12.0849, +2016-08-21 04:27:33,3585.0,12.0849, +2016-08-21 04:30:00,,,15.658 +2016-08-21 04:37:35,3585.0,12.0553, +2016-08-21 04:45:00,,,15.6566 +2016-08-21 04:47:38,3585.0,12.0849, +2016-08-21 04:57:41,3584.0,12.0839, +2016-08-21 05:00:00,,,15.658 +2016-08-21 05:07:43,3584.0,12.0521, +2016-08-21 05:15:00,,,15.6904 +2016-08-21 05:17:46,3584.0,12.0521, +2016-08-21 05:27:48,3583.0,12.0817, +2016-08-21 05:30:00,,,15.6608 +2016-08-21 05:37:51,3583.0,12.0521, +2016-08-21 05:45:00,,,15.6622 +2016-08-21 05:47:54,3583.0,12.0806, +2016-08-21 05:57:56,3582.0,12.0817, +2016-08-21 06:00:00,,,15.6946 +2016-08-21 06:07:59,3582.0,12.0785, +2016-08-21 06:15:00,,,15.6608 +2016-08-21 06:18:01,3582.0,12.0488, +2016-08-21 06:28:04,3581.0,12.0488, +2016-08-21 06:30:00,,,15.6622 +2016-08-21 06:38:07,3582.0,12.0488, +2016-08-21 06:45:00,,,15.658 +2016-08-21 06:48:09,3582.0,12.0488, +2016-08-21 06:58:12,3581.0,12.0478, +2016-08-21 07:00:00,,,15.6622 +2016-08-21 07:08:14,3582.0,12.0796, +2016-08-21 07:15:00,,,15.658 +2016-08-21 07:18:17,3582.0,12.0499, +2016-08-21 07:28:19,3582.0,12.0753, +2016-08-21 07:30:00,,,15.6946 +2016-08-21 07:38:22,3582.0,12.0753, +2016-08-21 07:45:00,,,15.6608 +2016-08-21 07:48:25,3583.0,12.0456, +2016-08-21 07:58:27,3583.0,12.0753, +2016-08-21 08:00:00,,,15.658 +2016-08-21 08:08:30,3584.0,12.0467, +2016-08-21 08:15:00,,,15.6622 +2016-08-21 08:18:32,3585.0,12.0763, +2016-08-21 08:28:35,3585.0,12.0456, +2016-08-21 08:30:00,,,15.6622 +2016-08-21 08:38:37,3585.0,12.0753, +2016-08-21 08:45:00,,,15.6608 +2016-08-21 08:48:40,3586.0,12.0467, +2016-08-21 08:58:43,3587.0,12.0753, +2016-08-21 09:00:00,,,15.6566 +2016-08-21 09:08:45,3588.0,12.0456, +2016-08-21 09:15:00,,,15.6566 +2016-08-21 09:18:48,3588.0,12.0446, +2016-08-21 09:28:50,3588.0,12.0456, +2016-08-21 09:30:00,,,15.5933 +2016-08-21 09:38:52,3589.0,12.0456, +2016-08-21 09:45:00,,,15.5638 +2016-08-21 09:48:55,3590.0,12.0456, +2016-08-21 09:58:57,3591.0,12.0456, +2016-08-21 10:00:00,,,15.5652 +2016-08-21 10:09:00,3592.0,11.9569, +2016-08-21 10:15:00,,,15.561 +2016-08-21 10:19:03,3593.0,11.9569, +2016-08-21 10:29:06,3594.0,11.9569, +2016-08-21 10:30:00,,,15.5638 +2016-08-21 10:39:09,3595.0,11.9569, +2016-08-21 10:45:00,,,15.5596 +2016-08-21 10:49:11,3596.0,11.9569, +2016-08-21 10:59:14,3597.0,11.9558, +2016-08-21 11:00:00,,,15.5638 +2016-08-21 11:09:17,3598.0,11.9569, +2016-08-21 11:15:00,,,15.5638 +2016-08-21 11:19:20,3598.0,11.9854, +2016-08-21 11:29:22,3598.0,11.9569, +2016-08-21 11:30:00,,,15.561 +2016-08-21 11:39:25,3598.0,11.9569, +2016-08-21 11:45:00,,,15.561 +2016-08-21 11:49:27,3598.0,11.9579, +2016-08-21 11:59:30,3598.0,11.9864, +2016-08-21 12:00:00,,,15.5596 +2016-08-21 12:09:33,3598.0,11.9569, +2016-08-21 12:15:00,,,15.561 +2016-08-21 12:19:36,3598.0,11.9864, +2016-08-21 12:29:38,3599.0,11.9569, +2016-08-21 12:30:00,,,15.5919 +2016-08-21 12:39:41,3599.0,11.9558, +2016-08-21 12:45:00,,,15.5596 +2016-08-21 12:49:44,3599.0,11.9558, +2016-08-21 12:59:46,3599.0,11.9569, +2016-08-21 13:00:00,,,15.5596 +2016-08-21 13:09:49,3599.0,11.9569, +2016-08-21 13:15:00,,,15.561 +2016-08-21 13:19:52,3599.0,11.9854, +2016-08-21 13:29:54,3599.0,11.9569, +2016-08-21 13:30:00,,,15.5933 +2016-08-21 13:39:57,3599.0,11.8683, +2016-08-21 13:45:00,,,15.561 +2016-08-21 13:50:00,3599.0,11.8694, +2016-08-21 14:00:00,,,15.5596 +2016-08-21 14:00:03,3599.0,11.8683, +2016-08-21 14:10:05,3599.0,11.8672, +2016-08-21 14:15:00,,,15.561 +2016-08-21 14:20:08,3599.0,11.8683, +2016-08-21 14:30:00,,,15.5919 +2016-08-21 14:30:11,3599.0,11.8999, +2016-08-21 14:40:14,3599.0,11.8967, +2016-08-21 14:45:00,,,15.561 +2016-08-21 14:50:16,3599.0,11.8409, +2016-08-21 15:00:00,,,15.5596 +2016-08-21 15:00:19,3599.0,11.901, +2016-08-21 15:10:22,3599.0,11.8715, +2016-08-21 15:15:00,,,15.5596 +2016-08-21 15:20:24,3599.0,11.901, +2016-08-21 15:30:00,,,15.5596 +2016-08-21 15:30:26,3599.0,11.8704, +2016-08-21 15:40:37,3599.0,11.8715, +2016-08-21 15:45:00,,,15.5596 +2016-08-21 15:50:40,3599.0,11.8704, +2016-08-21 16:00:00,,,15.561 +2016-08-21 16:00:42,3599.0,11.8704, +2016-08-21 16:10:45,3599.0,11.8715, +2016-08-21 16:15:00,,,15.561 +2016-08-21 16:20:48,3599.0,11.8715, +2016-08-21 16:30:00,,,15.5596 +2016-08-21 16:30:50,3599.0,11.8715, +2016-08-21 16:40:53,3599.0,11.8715, +2016-08-21 16:45:00,,,15.561 +2016-08-21 16:50:56,3599.0,11.8746, +2016-08-21 17:00:00,,,15.5596 +2016-08-21 17:00:59,3599.0,11.8704, +2016-08-21 17:11:01,3599.0,11.8704, +2016-08-21 17:15:00,,,15.5596 +2016-08-21 17:21:04,3599.0,11.8736, +2016-08-21 17:30:00,,,15.5596 +2016-08-21 17:31:07,3599.0,11.8704, +2016-08-21 17:41:09,3599.0,11.8746, +2016-08-21 17:45:00,,,15.5933 +2016-08-21 17:51:12,3599.0,11.8715, +2016-08-21 18:00:00,,,15.5596 +2016-08-21 18:01:15,3598.0,11.9042, +2016-08-21 18:11:17,3599.0,11.8746, +2016-08-21 18:15:00,,,15.5596 +2016-08-21 18:21:20,3599.0,11.8746, +2016-08-21 18:30:00,,,15.5596 +2016-08-21 18:31:23,3599.0,11.8746, +2016-08-21 18:41:27,3599.0,11.8746, +2016-08-21 18:45:00,,,15.5933 +2016-08-21 18:51:30,3599.0,11.8746, +2016-08-21 19:00:00,,,15.561 +2016-08-21 19:01:33,3599.0,11.9031, +2016-08-21 19:11:36,3598.0,11.8746, +2016-08-21 19:15:00,,,15.561 +2016-08-21 19:21:39,3599.0,11.8736, +2016-08-21 19:30:00,,,15.561 +2016-08-21 19:31:42,3598.0,11.8746, +2016-08-21 19:41:44,3598.0,11.8746, +2016-08-21 19:45:00,,,15.5596 +2016-08-21 19:51:47,3598.0,11.8736, +2016-08-21 20:00:00,,,15.5933 +2016-08-21 20:01:50,3598.0,11.8746, +2016-08-21 20:11:53,3598.0,11.8746, +2016-08-21 20:15:00,,,15.5596 +2016-08-21 20:21:55,3598.0,11.9042, +2016-08-21 20:30:00,,,15.5596 +2016-08-21 20:31:58,3598.0,11.9031, +2016-08-21 20:42:00,3598.0,11.8746, +2016-08-21 20:45:00,,,15.5596 +2016-08-21 20:52:03,3598.0,11.8746, +2016-08-21 21:00:00,,,15.561 +2016-08-21 21:02:06,3597.0,11.8746, +2016-08-21 21:12:08,3597.0,11.8746, +2016-08-21 21:15:00,,,15.5596 +2016-08-21 21:22:11,3597.0,11.8746, +2016-08-21 21:30:00,,,15.5596 +2016-08-21 21:32:13,3596.0,11.9042, +2016-08-21 21:42:16,3596.0,11.8746, +2016-08-21 21:45:00,,,15.5596 +2016-08-21 21:52:19,3595.0,11.8746, +2016-08-21 22:00:00,,,15.561 +2016-08-21 22:02:21,3595.0,11.8736, +2016-08-21 22:12:24,3595.0,11.8746, +2016-08-21 22:15:00,,,15.561 +2016-08-21 22:22:26,3595.0,11.8746, +2016-08-21 22:30:00,,,15.5919 +2016-08-21 22:32:29,3594.0,11.901, +2016-08-21 22:42:32,3593.0,11.902, +2016-08-21 22:45:00,,,15.5919 +2016-08-21 22:52:34,3593.0,11.901, +2016-08-21 23:00:00,,,15.561 +2016-08-21 23:02:44,3592.0,11.8715, +2016-08-21 23:12:46,3592.0,11.8715, +2016-08-21 23:15:00,,,15.561 +2016-08-21 23:22:49,3592.0,11.8715, +2016-08-21 23:30:00,,,15.5933 +2016-08-21 23:32:52,3592.0,11.8725, +2016-08-21 23:42:54,3591.0,11.8999, +2016-08-21 23:45:00,,,15.5596 +2016-08-21 23:52:57,3590.0,11.8715, +2016-08-22 00:00:00,,,15.561 +2016-08-22 00:02:59,3590.0,11.8715, +2016-08-22 00:13:02,3589.0,11.8704, +2016-08-22 00:15:00,,,15.561 +2016-08-22 00:23:05,3588.0,11.901, +2016-08-22 00:30:00,,,15.561 +2016-08-22 00:33:07,3588.0,11.8683, +2016-08-22 00:43:10,3588.0,11.8683, +2016-08-22 00:45:00,,,15.5638 +2016-08-22 00:53:12,3588.0,11.8978, +2016-08-22 01:00:00,,,15.561 +2016-08-22 01:03:15,3588.0,11.8978, +2016-08-22 01:13:17,3588.0,11.8683, +2016-08-22 01:15:00,,,15.561 +2016-08-22 01:23:20,3587.0,11.8694, +2016-08-22 01:30:00,,,15.5596 +2016-08-22 01:33:22,3586.0,11.8672, +2016-08-22 01:43:25,3586.0,11.8694, +2016-08-22 01:45:00,,,15.5652 +2016-08-22 01:53:28,3586.0,11.8967, +2016-08-22 02:00:00,,,15.5638 +2016-08-22 02:03:30,3586.0,11.8683, +2016-08-22 02:13:33,3586.0,11.8967, +2016-08-22 02:15:00,,,15.561 +2016-08-22 02:23:36,3586.0,11.8683, +2016-08-22 02:30:00,,,15.5596 +2016-08-22 02:33:38,3586.0,11.8672, +2016-08-22 02:43:41,3585.0,11.8672, +2016-08-22 02:45:00,,,15.5596 +2016-08-22 02:53:43,3586.0,11.8694, +2016-08-22 03:00:00,,,15.5638 +2016-08-22 03:03:46,3586.0,11.8978, +2016-08-22 03:13:49,3585.0,11.8683, +2016-08-22 03:15:00,,,15.5596 +2016-08-22 03:23:51,3585.0,11.8672, +2016-08-22 03:30:00,,,15.5596 +2016-08-22 03:33:54,3586.0,11.8683, +2016-08-22 03:43:56,3585.0,11.8683, +2016-08-22 03:45:00,,,15.5933 +2016-08-22 03:53:58,3586.0,11.8683, +2016-08-22 04:00:00,,,15.5933 +2016-08-22 04:04:00,3585.0,11.8978, +2016-08-22 04:14:03,3585.0,11.8683, +2016-08-22 04:15:00,,,15.5919 +2016-08-22 04:24:05,3585.0,11.8683, +2016-08-22 04:30:00,,,15.5596 +2016-08-22 04:34:08,3585.0,11.8683, +2016-08-22 04:44:10,3585.0,11.8989, +2016-08-22 04:45:00,,,15.561 +2016-08-22 04:54:13,3585.0,11.8989, +2016-08-22 05:00:00,,,15.5919 +2016-08-22 05:04:15,3584.0,11.8694, +2016-08-22 05:14:18,3584.0,11.8978, +2016-08-22 05:15:00,,,15.5933 +2016-08-22 05:24:20,3584.0,11.8683, +2016-08-22 05:30:00,,,15.561 +2016-08-22 05:34:23,3584.0,11.8683, +2016-08-22 05:44:25,3584.0,11.8672, +2016-08-22 05:45:00,,,15.561 +2016-08-22 05:54:28,3584.0,11.8399, +2016-08-22 06:00:00,,,15.5919 +2016-08-22 06:04:30,3583.0,11.8683, +2016-08-22 06:14:33,3583.0,11.8683, +2016-08-22 06:15:00,,,15.5596 +2016-08-22 06:24:36,3583.0,11.8672, +2016-08-22 06:30:00,,,15.5933 +2016-08-22 06:34:38,3583.0,11.9273, +2016-08-22 06:44:41,3583.0,11.8672, +2016-08-22 06:45:00,,,15.5596 +2016-08-22 06:54:43,3583.0,11.8989, +2016-08-22 07:00:00,,,15.561 +2016-08-22 07:04:46,3583.0,11.8651, +2016-08-22 07:14:48,3584.0,11.8946, +2016-08-22 07:15:00,,,15.5596 +2016-08-22 07:24:51,3585.0,11.8683, +2016-08-22 07:30:00,,,15.5933 +2016-08-22 07:34:53,3585.0,11.8651, +2016-08-22 07:44:56,3584.0,11.8662, +2016-08-22 07:45:00,,,15.5596 +2016-08-22 07:54:58,3585.0,11.8651, +2016-08-22 08:00:00,,,15.561 +2016-08-22 08:05:01,3586.0,11.8946, +2016-08-22 08:15:00,,,15.561 +2016-08-22 08:15:03,3586.0,11.8651, +2016-08-22 08:25:06,3586.0,11.8662, +2016-08-22 08:30:00,,,15.561 +2016-08-22 08:35:09,3587.0,11.8651, +2016-08-22 08:45:00,,,15.561 +2016-08-22 08:45:11,3587.0,11.8662, +2016-08-22 08:55:14,3588.0,11.8651, +2016-08-22 09:00:00,,,15.5596 +2016-08-22 09:05:16,3588.0,11.8662, +2016-08-22 09:15:00,,,15.5596 +2016-08-22 09:15:19,3589.0,11.8651, +2016-08-22 09:25:21,3590.0,11.8946, +2016-08-22 09:30:00,,,15.5933 +2016-08-22 09:35:24,3592.0,11.8651, +2016-08-22 09:45:00,,,15.5596 +2016-08-22 09:45:27,3593.0,11.8651, +2016-08-22 09:55:30,3594.0,11.8662, +2016-08-22 10:00:00,,,15.5596 +2016-08-22 10:05:32,3595.0,11.8651, +2016-08-22 10:15:00,,,15.5596 +2016-08-22 10:15:35,3597.0,11.8946, +2016-08-22 10:25:38,3598.0,11.8946, +2016-08-22 10:30:00,,,15.561 +2016-08-22 10:35:40,3598.0,11.8946, +2016-08-22 10:45:00,,,15.5596 +2016-08-22 10:45:43,3598.0,11.8662, +2016-08-22 10:55:46,3598.0,11.8651, +2016-08-22 11:00:00,,,15.5933 +2016-08-22 11:05:48,3599.0,11.8651, +2016-08-22 11:15:00,,,15.5596 +2016-08-22 11:15:51,3599.0,11.8651, +2016-08-22 11:25:54,3599.0,11.8651, +2016-08-22 11:30:00,,,15.5288 +2016-08-22 11:35:57,3599.0,11.8651, +2016-08-22 11:45:00,,,15.5596 +2016-08-22 11:45:59,3599.0,11.8651, +2016-08-22 11:56:02,3599.0,11.8651, +2016-08-22 12:00:00,,,15.5596 +2016-08-22 12:06:05,3599.0,11.8651, +2016-08-22 12:15:00,,,15.5596 +2016-08-22 12:16:08,3599.0,11.8683, +2016-08-22 12:26:11,3599.0,11.8651, +2016-08-22 12:30:00,,,15.5596 +2016-08-22 12:36:13,3599.0,11.8672, +2016-08-22 12:45:00,,,15.463 +2016-08-22 12:46:16,3599.0,11.8683, +2016-08-22 13:00:00,,,15.4644 +2016-08-22 13:06:28,3599.0,11.7789, +2016-08-22 13:15:00,,,15.4308 +2016-08-22 13:16:30,3599.0,11.8094, +2016-08-22 13:26:33,3599.0,11.8094, +2016-08-22 13:30:00,,,15.4322 +2016-08-22 13:36:36,3599.0,11.7789, +2016-08-22 13:45:00,,,15.4308 +2016-08-22 13:46:38,3599.0,11.8094, +2016-08-22 13:56:41,3599.0,11.781, +2016-08-22 14:00:00,,,15.463 +2016-08-22 14:06:44,3599.0,11.8094, +2016-08-22 14:15:00,,,15.463 +2016-08-22 14:16:46,3599.0,11.8094, +2016-08-22 14:26:49,3599.0,11.8094, +2016-08-22 14:30:00,,,15.4644 +2016-08-22 14:36:52,3599.0,11.8094, +2016-08-22 14:45:00,,,15.463 +2016-08-22 14:46:55,3599.0,11.8094, +2016-08-22 14:56:58,3599.0,11.7789, +2016-08-22 15:00:00,,,15.4308 +2016-08-22 15:07:00,3599.0,11.8104, +2016-08-22 15:15:00,,,15.4602 +2016-08-22 15:17:03,3599.0,11.8094, +2016-08-22 15:27:06,3599.0,11.7789, +2016-08-22 15:30:00,,,15.463 +2016-08-22 15:37:09,3599.0,11.8094, +2016-08-22 15:45:00,,,15.4589 +2016-08-22 15:47:11,3599.0,11.78, +2016-08-22 15:57:14,3599.0,11.8083, +2016-08-22 16:00:00,,,15.463 +2016-08-22 16:07:17,3599.0,11.7789, +2016-08-22 16:15:00,,,15.4589 +2016-08-22 16:17:20,3599.0,11.7821, +2016-08-22 16:27:22,3599.0,11.8125, +2016-08-22 16:30:00,,,15.4322 +2016-08-22 16:37:25,3599.0,11.7547, +2016-08-22 16:45:00,,,15.463 +2016-08-22 16:47:28,3599.0,11.7841, +2016-08-22 16:57:31,3599.0,11.8115, +2016-08-22 17:00:00,,,15.4589 +2016-08-22 17:07:33,3599.0,11.8115, +2016-08-22 17:15:00,,,15.4589 +2016-08-22 17:17:36,3599.0,11.7862, +2016-08-22 17:27:39,3599.0,11.8157, +2016-08-22 17:30:00,,,15.463 +2016-08-22 17:37:42,3599.0,11.8157, +2016-08-22 17:45:00,,,15.4589 +2016-08-22 17:47:45,3599.0,11.8146, +2016-08-22 17:57:47,3599.0,11.7568, +2016-08-22 18:00:00,,,15.4267 +2016-08-22 18:07:50,3599.0,11.7862, +2016-08-22 18:15:00,,,15.4322 +2016-08-22 18:17:53,3599.0,11.8157, +2016-08-22 18:27:56,3599.0,11.8157, +2016-08-22 18:30:00,,,15.4644 +2016-08-22 18:37:58,3599.0,11.7894, +2016-08-22 18:45:00,,,15.463 +2016-08-22 18:48:01,3599.0,11.8178, +2016-08-22 18:58:04,3599.0,11.7883, +2016-08-22 19:00:00,,,15.463 +2016-08-22 19:08:07,3599.0,11.7883, +2016-08-22 19:15:00,,,15.4589 +2016-08-22 19:18:09,3599.0,11.8178, +2016-08-22 19:28:12,3599.0,11.8178, +2016-08-22 19:30:00,,,15.4644 +2016-08-22 19:38:15,3599.0,11.8178, +2016-08-22 19:45:00,,,15.4644 +2016-08-22 19:48:18,3599.0,11.8188, +2016-08-22 19:58:20,3599.0,11.8188, +2016-08-22 20:00:00,,,15.463 +2016-08-22 20:08:23,3599.0,11.7894, +2016-08-22 20:15:00,,,15.463 +2016-08-22 20:18:26,3599.0,11.7894, +2016-08-22 20:28:29,3599.0,11.8178, +2016-08-22 20:30:00,,,15.4644 +2016-08-22 20:38:31,3599.0,11.8188, +2016-08-22 20:45:00,,,15.4308 +2016-08-22 20:48:34,3599.0,11.8188, +2016-08-22 20:58:37,3599.0,11.8188, +2016-08-22 21:00:00,,,15.4308 +2016-08-22 21:08:39,3599.0,11.8178, +2016-08-22 21:15:00,,,15.4644 +2016-08-22 21:18:42,3599.0,11.7894, +2016-08-22 21:28:45,3599.0,11.8188, +2016-08-22 21:30:00,,,15.463 +2016-08-22 21:38:47,3599.0,11.8178, +2016-08-22 21:45:00,,,15.463 +2016-08-22 21:48:50,3599.0,11.8188, +2016-08-22 21:58:54,3599.0,11.8188, +2016-08-22 22:00:00,,,15.4644 +2016-08-22 22:08:58,3599.0,11.8188, +2016-08-22 22:15:00,,,15.463 +2016-08-22 22:19:00,3599.0,11.7894, +2016-08-22 22:29:03,3599.0,11.8188, +2016-08-22 22:30:00,,,15.463 +2016-08-22 22:39:06,3598.0,11.7589, +2016-08-22 22:45:00,,,15.463 +2016-08-22 22:49:09,3598.0,11.8188, +2016-08-22 22:59:12,3599.0,11.8178, +2016-08-22 23:00:00,,,15.463 +2016-08-22 23:09:14,3598.0,11.7894, +2016-08-22 23:15:00,,,15.4644 +2016-08-22 23:19:17,3598.0,11.8188, +2016-08-22 23:29:20,3598.0,11.8178, +2016-08-22 23:30:00,,,15.463 +2016-08-22 23:39:23,3598.0,11.8178, +2016-08-22 23:45:00,,,15.4644 +2016-08-22 23:49:25,3598.0,11.8188, +2016-08-22 23:59:28,3598.0,11.8178, +2016-08-23 00:00:00,,,15.463 +2016-08-23 00:09:31,3598.0,11.8178, +2016-08-23 00:15:00,,,15.4644 +2016-08-23 00:19:34,3598.0,11.8188, +2016-08-23 00:29:36,3598.0,11.8188, +2016-08-23 00:30:00,,,15.4644 +2016-08-23 00:39:39,3598.0,11.8178, +2016-08-23 00:45:00,,,15.4644 +2016-08-23 00:49:42,3598.0,11.8188, +2016-08-23 00:59:44,3598.0,11.7894, +2016-08-23 01:00:00,,,15.463 +2016-08-23 01:09:47,3598.0,11.76, +2016-08-23 01:15:00,,,15.463 +2016-08-23 01:19:50,3598.0,11.7883, +2016-08-23 01:29:52,3597.0,11.7894, +2016-08-23 01:30:00,,,15.4685 +2016-08-23 01:39:55,3597.0,11.8157, +2016-08-23 01:45:00,,,15.4644 +2016-08-23 01:49:58,3597.0,11.8157, +2016-08-23 02:00:00,3597.0,11.8157,15.4644 +2016-08-23 02:10:03,3596.0,11.8178, +2016-08-23 02:15:00,,,15.4644 +2016-08-23 02:20:06,3596.0,11.8188, +2016-08-23 02:30:00,,,15.4685 +2016-08-23 02:30:08,3596.0,11.8188, +2016-08-23 02:40:11,3595.0,11.7852, +2016-08-23 02:45:00,,,15.4671 +2016-08-23 02:50:13,3595.0,11.8157, +2016-08-23 03:00:00,,,15.4644 +2016-08-23 03:00:16,3595.0,11.8157, +2016-08-23 03:10:19,3595.0,11.8157, +2016-08-23 03:15:00,,,15.4671 +2016-08-23 03:20:21,3595.0,11.8746, +2016-08-23 03:30:00,,,15.4644 +2016-08-23 03:30:24,3595.0,11.8746, +2016-08-23 03:40:26,3595.0,11.8746, +2016-08-23 03:45:00,,,15.4322 +2016-08-23 03:50:29,3595.0,11.9042, +2016-08-23 04:00:00,,,15.4965 +2016-08-23 04:00:32,3595.0,11.8746, +2016-08-23 04:10:34,3594.0,11.8746, +2016-08-23 04:15:00,,,15.463 +2016-08-23 04:20:37,3594.0,11.8157, +2016-08-23 04:30:00,,,15.4685 +2016-08-23 04:30:40,3594.0,11.7862, +2016-08-23 04:40:42,3593.0,11.8157, +2016-08-23 04:45:00,,,15.4671 +2016-08-23 04:50:45,3593.0,11.8157, +2016-08-23 05:00:00,,,15.4644 +2016-08-23 05:00:47,3592.0,11.7568, +2016-08-23 05:10:50,3592.0,11.8157, +2016-08-23 05:15:00,,,15.463 +2016-08-23 05:20:53,3592.0,11.8157, +2016-08-23 05:30:00,,,15.4671 +2016-08-23 05:30:55,3592.0,11.7841, +2016-08-23 05:40:58,3592.0,11.7821, +2016-08-23 05:45:00,,,15.4685 +2016-08-23 05:51:01,3592.0,11.8125, +2016-08-23 06:00:00,,,15.4644 +2016-08-23 06:01:03,3592.0,11.7831, +2016-08-23 06:11:06,3592.0,11.8157, +2016-08-23 06:15:00,,,15.4671 +2016-08-23 06:21:08,3592.0,11.8136, +2016-08-23 06:30:00,,,15.4671 +2016-08-23 06:31:11,3592.0,11.7831, +2016-08-23 06:41:13,3592.0,11.8125, +2016-08-23 06:45:00,,,15.4644 +2016-08-23 06:51:16,3592.0,11.8115, +2016-08-23 07:00:00,,,15.4685 +2016-08-23 07:01:18,3592.0,11.8136, +2016-08-23 07:11:20,3592.0,11.8715, +2016-08-23 07:15:00,,,15.4685 +2016-08-23 07:21:23,3592.0,11.8725, +2016-08-23 07:30:00,,,15.4671 +2016-08-23 07:31:25,3593.0,11.8725, +2016-08-23 07:41:28,3593.0,11.8715, +2016-08-23 07:45:00,,,15.4349 +2016-08-23 07:51:30,3594.0,11.8725, +2016-08-23 08:00:00,,,15.4685 +2016-08-23 08:01:33,3595.0,11.8715, +2016-08-23 08:11:36,3595.0,11.8715, +2016-08-23 08:15:00,,,15.4671 +2016-08-23 08:21:38,3595.0,11.8683, +2016-08-23 08:30:00,,,15.4685 +2016-08-23 08:31:41,3596.0,11.8672, +2016-08-23 08:41:44,3596.0,11.8978, +2016-08-23 08:45:00,,,15.4685 +2016-08-23 08:51:47,3597.0,11.8704, +2016-08-23 09:00:00,,,15.3707 +2016-08-23 09:01:49,3598.0,11.8694, +2016-08-23 09:11:52,3598.0,11.8967, +2016-08-23 09:15:00,,,15.3721 +2016-08-23 09:21:55,3598.0,11.901, +2016-08-23 09:30:00,,,15.3707 +2016-08-23 09:31:57,3598.0,11.8683, +2016-08-23 09:42:00,3598.0,11.8704, +2016-08-23 09:45:00,,,15.3707 +2016-08-23 09:52:03,3598.0,11.8672, +2016-08-23 10:00:00,,,15.3707 +2016-08-23 10:02:06,3599.0,11.7841, +2016-08-23 10:12:08,3599.0,11.8115, +2016-08-23 10:15:00,,,15.3721 +2016-08-23 10:22:11,3599.0,11.8094, +2016-08-23 10:30:00,,,15.4001 +2016-08-23 10:32:14,3599.0,11.7821, +2016-08-23 10:42:17,3599.0,11.7841, +2016-08-23 10:45:00,,,15.3666 +2016-08-23 10:52:20,3599.0,11.7841, +2016-08-23 11:00:00,,,15.3707 +2016-08-23 11:02:22,3599.0,11.7821, +2016-08-23 11:12:25,3599.0,11.8125, +2016-08-23 11:15:00,,,15.3666 +2016-08-23 11:22:28,3599.0,11.7831, +2016-08-23 11:30:00,,,15.3707 +2016-08-23 11:32:31,3599.0,11.7831, +2016-08-23 11:42:34,3599.0,11.8125, +2016-08-23 11:45:00,,,15.3987 +2016-08-23 11:52:37,3599.0,11.7831, +2016-08-23 12:00:00,,,15.3707 +2016-08-23 12:02:40,3599.0,11.8125, +2016-08-23 12:12:42,3599.0,11.8125, +2016-08-23 12:15:00,,,15.3721 +2016-08-23 12:22:45,3599.0,11.8157, +2016-08-23 12:30:00,,,15.3721 +2016-08-23 12:32:48,3599.0,11.8157, +2016-08-23 12:42:51,3599.0,11.7862, +2016-08-23 12:45:00,,,15.368 +2016-08-23 12:52:54,3599.0,11.8157, +2016-08-23 13:00:00,,,15.3707 +2016-08-23 13:02:57,3599.0,11.8146, +2016-08-23 13:13:00,3599.0,11.8157, +2016-08-23 13:15:00,,,15.3721 +2016-08-23 13:23:03,3599.0,11.7883, +2016-08-23 13:30:00,,,15.368 +2016-08-23 13:33:06,3599.0,11.8188, +2016-08-23 13:43:09,3599.0,11.7012, +2016-08-23 13:45:00,,,15.3707 +2016-08-23 13:53:12,3599.0,11.7306, +2016-08-23 14:00:00,,,15.3666 +2016-08-23 14:03:15,3599.0,11.8188, +2016-08-23 14:13:18,3599.0,11.8188, +2016-08-23 14:15:00,,,15.3387 +2016-08-23 14:23:21,3599.0,11.7295, +2016-08-23 14:30:00,,,15.3707 +2016-08-23 14:33:24,3599.0,11.7306, +2016-08-23 14:43:27,3599.0,11.7295, +2016-08-23 14:45:00,,,15.3707 +2016-08-23 14:53:29,3599.0,11.7012, +2016-08-23 15:00:00,,,15.34 +2016-08-23 15:03:32,3599.0,11.7001, +2016-08-23 15:13:35,3599.0,11.7295, +2016-08-23 15:15:00,,,15.3387 +2016-08-23 15:23:38,3599.0,11.7306, +2016-08-23 15:30:00,,,15.3707 +2016-08-23 15:33:41,3599.0,11.7306, +2016-08-23 15:43:44,3599.0,11.7306, +2016-08-23 15:45:00,,,15.3666 +2016-08-23 15:53:47,3599.0,11.7306, +2016-08-23 16:00:00,,,15.276 +2016-08-23 16:03:50,3599.0,11.7306, +2016-08-23 16:13:52,3599.0,11.7295, +2016-08-23 16:15:00,,,15.2719 +2016-08-23 16:23:55,3599.0,11.7033, +2016-08-23 16:30:00,,,15.308 +2016-08-23 16:33:58,3599.0,11.7295, +2016-08-23 16:44:01,3599.0,11.7337, +2016-08-23 16:45:00,,,15.2746 +2016-08-23 16:54:04,3599.0,11.7337, +2016-08-23 17:00:00,,,15.308 +2016-08-23 17:04:07,3599.0,11.7326, +2016-08-23 17:14:10,3599.0,11.7043, +2016-08-23 17:15:00,,,15.2746 +2016-08-23 17:24:13,3599.0,11.7368, +2016-08-23 17:30:00,,,15.3066 +2016-08-23 17:34:16,3599.0,11.7358, +2016-08-23 17:44:19,3599.0,11.7368, +2016-08-23 17:45:00,,,15.2746 +2016-08-23 17:54:21,3599.0,11.7368, +2016-08-23 18:00:00,,,15.2427 +2016-08-23 18:04:24,3599.0,11.7368, +2016-08-23 18:14:27,3599.0,11.7389, +2016-08-23 18:15:00,,,15.3066 +2016-08-23 18:24:30,3599.0,11.7368, +2016-08-23 18:30:00,,,15.3066 +2016-08-23 18:34:33,3599.0,11.7389, +2016-08-23 18:44:35,3599.0,11.7389, +2016-08-23 18:45:00,,,15.2427 +2016-08-23 18:54:38,3599.0,11.7389, +2016-08-23 19:00:00,,,15.3066 +2016-08-23 19:04:41,3599.0,11.7389, +2016-08-23 19:14:44,3599.0,11.7389, +2016-08-23 19:15:00,,,15.244000000000002 +2016-08-23 19:24:47,3599.0,11.7389, +2016-08-23 19:30:00,,,15.2746 +2016-08-23 19:34:49,3599.0,11.7095, +2016-08-23 19:44:52,3599.0,11.7389, +2016-08-23 19:45:00,,,15.2427 +2016-08-23 19:54:55,3599.0,11.7095, +2016-08-23 20:00:00,,,15.276 +2016-08-23 20:04:58,3599.0,11.7095, +2016-08-23 20:15:00,,,15.2427 +2016-08-23 20:15:01,3599.0,11.7389, +2016-08-23 20:25:04,3599.0,11.7389, +2016-08-23 20:30:00,,,15.276 +2016-08-23 20:35:06,3599.0,11.7389, +2016-08-23 20:45:00,,,15.276 +2016-08-23 20:45:09,3599.0,11.7431, +2016-08-23 20:55:12,3599.0,11.7389, +2016-08-23 21:00:00,,,15.2746 +2016-08-23 21:05:14,3599.0,11.7095, +2016-08-23 21:15:00,,,15.2468 +2016-08-23 21:15:17,3599.0,11.7137, +2016-08-23 21:25:20,3599.0,11.7389, +2016-08-23 21:30:00,,,15.276 +2016-08-23 21:35:22,3599.0,11.742, +2016-08-23 21:45:00,,,15.2746 +2016-08-23 21:45:25,3599.0,11.7389, +2016-08-23 21:55:28,3599.0,11.742, +2016-08-23 22:00:00,,,15.3066 +2016-08-23 22:05:30,3599.0,11.742, +2016-08-23 22:15:00,,,15.2746 +2016-08-23 22:15:33,3599.0,11.742, +2016-08-23 22:25:35,3599.0,11.742, +2016-08-23 22:30:00,,,15.3094 +2016-08-23 22:35:38,3599.0,11.742, +2016-08-23 22:45:00,,,15.2774 +2016-08-23 22:45:41,3599.0,11.7126, +2016-08-23 22:55:43,3599.0,11.742, +2016-08-23 23:00:00,,,15.2746 +2016-08-23 23:05:46,3599.0,11.7389, +2016-08-23 23:15:00,,,15.2427 +2016-08-23 23:15:49,3599.0,11.742, +2016-08-23 23:25:51,3599.0,11.7126, +2016-08-23 23:30:00,,,15.3107 +2016-08-23 23:35:54,3599.0,11.7431, +2016-08-23 23:45:00,,,15.3121 +2016-08-23 23:45:57,3599.0,11.7715, +2016-08-23 23:55:59,3599.0,11.7095, +2016-08-24 00:00:00,,,15.2801 +2016-08-24 00:06:02,3599.0,11.742, +2016-08-24 00:15:00,,,15.3121 +2016-08-24 00:16:04,3599.0,11.7126, +2016-08-24 00:26:07,3599.0,11.742, +2016-08-24 00:30:00,,,15.2787 +2016-08-24 00:36:10,3599.0,11.742, +2016-08-24 00:45:00,,,15.3121 +2016-08-24 00:46:12,3599.0,11.742, +2016-08-24 00:56:15,3599.0,11.7379, +2016-08-24 01:00:00,,,15.2468 +2016-08-24 01:06:17,3599.0,11.7389, +2016-08-24 01:15:00,,,15.2787 +2016-08-24 01:16:22,3599.0,11.7389, +2016-08-24 01:26:25,3599.0,11.7085, +2016-08-24 01:30:00,,,15.2787 +2016-08-24 01:36:28,3599.0,11.7389, +2016-08-24 01:45:00,,,15.2801 +2016-08-24 01:46:30,3599.0,11.7389, +2016-08-24 01:56:33,3599.0,11.7389, +2016-08-24 02:00:00,,,15.2481 +2016-08-24 02:06:35,3599.0,11.7389, +2016-08-24 02:15:00,,,15.3107 +2016-08-24 02:16:38,3598.0,11.7389, +2016-08-24 02:26:41,3598.0,11.7095, +2016-08-24 02:30:00,,,15.2801 +2016-08-24 02:36:44,3599.0,11.7389, +2016-08-24 02:45:00,,,15.3107 +2016-08-24 02:46:46,3599.0,11.7389, +2016-08-24 02:56:49,3598.0,11.7389, +2016-08-24 03:00:00,,,15.2801 +2016-08-24 03:06:52,3599.0,11.7389, +2016-08-24 03:15:00,,,15.3107 +2016-08-24 03:16:55,3599.0,11.7095, +2016-08-24 03:26:57,3599.0,11.7389, +2016-08-24 03:30:00,,,15.3094 +2016-08-24 03:37:00,3599.0,11.7085, +2016-08-24 03:45:00,,,15.3121 +2016-08-24 03:47:03,3598.0,11.7095, +2016-08-24 03:57:06,3598.0,11.7095, +2016-08-24 04:00:00,,,15.2787 +2016-08-24 04:07:09,3598.0,11.7095, +2016-08-24 04:15:00,,,15.2787 +2016-08-24 04:17:11,3599.0,11.7095, +2016-08-24 04:27:14,3598.0,11.7095, +2016-08-24 04:30:00,,,15.2787 +2016-08-24 04:37:17,3598.0,11.7389, +2016-08-24 04:45:00,,,15.3121 +2016-08-24 04:47:19,3598.0,11.7389, +2016-08-24 04:57:22,3598.0,11.7095, +2016-08-24 05:00:00,,,15.2454 +2016-08-24 05:07:25,3598.0,11.7389, +2016-08-24 05:15:00,,,15.2801 +2016-08-24 05:17:27,3598.0,11.7389, +2016-08-24 05:27:30,3598.0,11.74, +2016-08-24 05:30:00,,,15.2801 +2016-08-24 05:37:33,3598.0,11.7389, +2016-08-24 05:45:00,,,15.2774 +2016-08-24 05:47:35,3598.0,11.7389, +2016-08-24 05:57:38,3598.0,11.7389, +2016-08-24 06:00:00,,,15.2801 +2016-08-24 06:07:41,3598.0,11.7389, +2016-08-24 06:15:00,,,15.2787 +2016-08-24 06:17:43,3598.0,11.7389, +2016-08-24 06:27:46,3598.0,11.7389, +2016-08-24 06:30:00,,,15.2774 +2016-08-24 06:37:49,3598.0,11.7389, +2016-08-24 06:45:00,,,15.2787 +2016-08-24 06:47:52,3598.0,11.7389, +2016-08-24 06:57:54,3598.0,11.7389, +2016-08-24 07:00:00,,,15.2774 +2016-08-24 07:07:57,3598.0,11.7389, +2016-08-24 07:15:00,,,15.2801 +2016-08-24 07:18:00,3598.0,11.7389, +2016-08-24 07:28:02,3598.0,11.7074, +2016-08-24 07:30:00,,,15.2774 +2016-08-24 07:38:05,3598.0,11.7389, +2016-08-24 07:45:00,,,15.3107 +2016-08-24 07:48:08,3598.0,11.7074, +2016-08-24 07:58:10,3598.0,11.7389, +2016-08-24 08:00:00,,,15.2801 +2016-08-24 08:08:13,3598.0,11.7683, +2016-08-24 08:15:00,,,15.2787 +2016-08-24 08:18:16,3598.0,11.7389, +2016-08-24 08:28:18,3599.0,11.7368, +2016-08-24 08:30:00,,,15.2774 +2016-08-24 08:38:21,3599.0,11.7074, +2016-08-24 08:45:00,,,15.2787 +2016-08-24 08:48:24,3599.0,11.7389, +2016-08-24 08:58:26,3599.0,11.7368, +2016-08-24 09:00:00,,,15.3107 +2016-08-24 09:08:29,3599.0,11.7389, +2016-08-24 09:15:00,,,15.2468 +2016-08-24 09:18:32,3599.0,11.7389, +2016-08-24 09:28:35,3599.0,11.7368, +2016-08-24 09:30:00,,,15.2774 +2016-08-24 09:38:37,3599.0,11.7095, +2016-08-24 09:45:00,,,15.2468 +2016-08-24 09:48:40,3599.0,11.7389, +2016-08-24 09:58:43,3599.0,11.7095, +2016-08-24 10:00:00,,,15.3107 +2016-08-24 10:08:46,3599.0,11.7095, +2016-08-24 10:15:00,,,15.2801 +2016-08-24 10:18:48,3599.0,11.7389, +2016-08-24 10:28:51,3599.0,11.7389, +2016-08-24 10:30:00,,,15.2787 +2016-08-24 10:38:54,3599.0,11.7389, +2016-08-24 10:45:00,,,15.2801 +2016-08-24 10:48:56,3599.0,11.7095, +2016-08-24 10:58:59,3599.0,11.7389, +2016-08-24 11:00:00,,,15.2481 +2016-08-24 11:09:02,3599.0,11.7095, +2016-08-24 11:15:00,,,15.3121 +2016-08-24 11:19:05,3599.0,11.7389, +2016-08-24 11:29:08,3599.0,11.6508, +2016-08-24 11:30:00,,,15.2468 +2016-08-24 11:39:11,3599.0,11.6508, +2016-08-24 11:45:00,,,15.2801 +2016-08-24 11:49:14,3599.0,11.6508, +2016-08-24 11:59:17,3599.0,11.6214, +2016-08-24 12:00:00,,,15.3121 +2016-08-24 12:09:20,3599.0,11.6508, +2016-08-24 12:15:00,,,15.2787 +2016-08-24 12:19:23,3599.0,11.6508, +2016-08-24 12:29:26,3599.0,11.6539, +2016-08-24 12:30:00,,,15.2787 +2016-08-24 12:39:29,3599.0,11.6539, +2016-08-24 12:45:00,,,15.2801 +2016-08-24 12:49:32,3599.0,11.6539, +2016-08-24 12:59:35,3599.0,11.6549, +2016-08-24 13:00:00,,,15.2774 +2016-08-24 13:09:38,3599.0,11.6245, +2016-08-24 13:15:00,,,15.3094 +2016-08-24 13:19:41,3599.0,11.6539, +2016-08-24 13:29:44,3599.0,11.6245, +2016-08-24 13:30:00,,,15.3107 +2016-08-24 13:39:47,3599.0,11.6245, +2016-08-24 13:45:00,,,15.2787 +2016-08-24 13:49:50,3599.0,11.656, +2016-08-24 13:59:53,3599.0,11.6276, +2016-08-24 14:00:00,,,15.3094 +2016-08-24 14:09:56,3599.0,11.658, +2016-08-24 14:15:00,,,15.3094 +2016-08-24 14:20:00,3599.0,11.657, +2016-08-24 14:30:00,,,15.3094 +2016-08-24 14:30:03,3599.0,11.6266, +2016-08-24 14:40:06,3599.0,11.6308, +2016-08-24 14:45:00,,,15.2787 +2016-08-24 14:50:09,3599.0,11.6308, +2016-08-24 15:00:00,,,15.2468 +2016-08-24 15:00:12,3599.0,11.6308, +2016-08-24 15:10:16,3599.0,11.6601, +2016-08-24 15:15:00,,,15.2468 +2016-08-24 15:20:19,3599.0,11.5428, +2016-08-24 15:30:00,,,15.3107 +2016-08-24 15:30:22,3599.0,11.5721, +2016-08-24 15:40:25,3599.0,11.5721, +2016-08-24 15:45:00,,,15.2787 +2016-08-24 15:50:29,3599.0,11.5731, +2016-08-24 16:00:00,,,15.3121 +2016-08-24 16:00:32,3599.0,11.5742, +2016-08-24 16:10:35,3599.0,11.5459, +2016-08-24 16:15:00,,,15.3121 +2016-08-24 16:20:38,3599.0,11.5752, +2016-08-24 16:30:00,,,15.2787 +2016-08-24 16:30:42,3599.0,11.5742, +2016-08-24 16:40:45,3599.0,11.5742, +2016-08-24 16:45:00,,,15.3107 +2016-08-24 16:50:48,3599.0,11.5742, +2016-08-24 17:00:00,,,15.2787 +2016-08-24 17:00:51,3599.0,11.5752, +2016-08-24 17:10:55,3599.0,11.548, +2016-08-24 17:15:00,,,15.3107 +2016-08-24 17:20:58,3599.0,11.5762, +2016-08-24 17:30:00,,,15.2787 +2016-08-24 17:31:01,3599.0,11.548, +2016-08-24 17:41:04,3599.0,11.548, +2016-08-24 17:45:00,,,15.2787 +2016-08-24 17:51:08,3599.0,11.548, +2016-08-24 18:00:00,,,15.3121 +2016-08-24 18:01:11,3599.0,11.5803, +2016-08-24 18:11:14,3599.0,11.550999999999998, +2016-08-24 18:15:00,,,15.2468 +2016-08-24 18:21:17,3599.0,11.5803, +2016-08-24 18:30:00,,,15.2814 +2016-08-24 18:31:20,3599.0,11.550999999999998, +2016-08-24 18:41:24,3599.0,11.5803, +2016-08-24 18:45:00,,,15.2468 +2016-08-24 18:51:27,3599.0,11.5803, +2016-08-24 19:00:00,,,15.1843 +2016-08-24 19:01:30,3599.0,11.5803, +2016-08-24 19:11:33,3599.0,11.5803, +2016-08-24 19:15:00,,,15.3094 +2016-08-24 19:21:36,3599.0,11.5803, +2016-08-24 19:30:00,,,15.187 +2016-08-24 19:31:39,3599.0,11.550999999999998, +2016-08-24 19:41:42,3599.0,11.5541, +2016-08-24 19:45:00,,,15.1524 +2016-08-24 19:51:45,3599.0,11.5834, +2016-08-24 20:00:00,,,15.1883 +2016-08-24 20:01:48,3599.0,11.5541, +2016-08-24 20:11:51,3599.0,11.5552, +2016-08-24 20:15:00,,,15.1856 +2016-08-24 20:21:54,3599.0,11.5541, +2016-08-24 20:30:00,,,15.2175 +2016-08-24 20:31:57,3599.0,11.5541, +2016-08-24 20:42:00,3599.0,11.5541, +2016-08-24 20:45:00,,,15.1829 +2016-08-24 20:52:03,3599.0,11.5541, +2016-08-24 21:00:00,,,15.1856 +2016-08-24 21:02:06,3599.0,11.5541, +2016-08-24 21:12:09,3599.0,11.5552, +2016-08-24 21:15:00,,,15.1537 +2016-08-24 21:22:12,3599.0,11.5541, +2016-08-24 21:30:00,,,15.1883 +2016-08-24 21:32:15,3599.0,11.5541, +2016-08-24 21:42:18,3599.0,11.5541, +2016-08-24 21:45:00,,,15.187 +2016-08-24 21:52:20,3599.0,11.5552, +2016-08-24 22:00:00,,,15.1856 +2016-08-24 22:02:23,3599.0,11.5541, +2016-08-24 22:12:26,3599.0,11.5541, +2016-08-24 22:15:00,,,15.187 +2016-08-24 22:22:29,3599.0,11.5541, +2016-08-24 22:30:00,,,15.191 +2016-08-24 22:32:32,3599.0,11.5541, +2016-08-24 22:42:35,3599.0,11.5541, +2016-08-24 22:45:00,,,15.187 +2016-08-24 22:52:38,3599.0,11.5834, +2016-08-24 23:00:00,,,15.1564 +2016-08-24 23:02:41,3599.0,11.5834, +2016-08-24 23:12:43,3599.0,11.5552, +2016-08-24 23:15:00,,,15.191 +2016-08-24 23:22:46,3599.0,11.6715, +2016-08-24 23:30:00,,,15.191 +2016-08-24 23:32:49,3599.0,11.6715, +2016-08-24 23:42:52,3599.0,11.6715, +2016-08-24 23:45:00,,,15.191 +2016-08-24 23:52:54,3599.0,11.6715, +2016-08-25 00:00:00,,,15.191 +2016-08-25 00:02:57,3599.0,11.6421, +2016-08-25 00:13:00,3599.0,11.6421, +2016-08-25 00:15:00,,,15.191 +2016-08-25 00:23:02,3599.0,11.6726, +2016-08-25 00:30:00,,,15.191 +2016-08-25 00:33:05,3599.0,11.6715, +2016-08-25 00:43:08,3599.0,11.6715, +2016-08-25 00:45:00,,,15.191 +2016-08-25 00:53:11,3599.0,11.6715, +2016-08-25 01:00:00,,,15.191 +2016-08-25 01:03:13,3599.0,11.6421, +2016-08-25 01:13:16,3599.0,11.6715, +2016-08-25 01:15:00,,,15.1591 +2016-08-25 01:23:19,3599.0,11.6715, +2016-08-25 01:30:00,,,15.191 +2016-08-25 01:33:22,3599.0,11.6715, +2016-08-25 01:43:24,3599.0,11.6715, +2016-08-25 01:45:00,,,15.1897 +2016-08-25 01:53:27,3599.0,11.6421, +2016-08-25 02:00:00,,,15.1951 +2016-08-25 02:03:30,3599.0,11.6432, +2016-08-25 02:13:33,3599.0,11.6726, +2016-08-25 02:15:00,,,15.1937 +2016-08-25 02:23:35,3599.0,11.6421, +2016-08-25 02:30:00,,,15.1951 +2016-08-25 02:33:38,3599.0,11.6432, +2016-08-25 02:43:41,3599.0,11.6715, +2016-08-25 02:45:00,,,15.1951 +2016-08-25 02:53:44,3599.0,11.6715, +2016-08-25 03:00:00,,,15.227 +2016-08-25 03:03:46,3599.0,11.639, +2016-08-25 03:13:49,3599.0,11.6684, +2016-08-25 03:15:00,,,15.1937 +2016-08-25 03:23:52,3599.0,11.6684, +2016-08-25 03:30:00,,,15.1951 +2016-08-25 03:33:55,3599.0,11.6684, +2016-08-25 03:43:58,3599.0,11.639, +2016-08-25 03:45:00,,,15.2256 +2016-08-25 03:54:00,3599.0,11.6694, +2016-08-25 04:00:00,,,15.1951 +2016-08-25 04:04:03,3599.0,11.6684, +2016-08-25 04:14:06,3599.0,11.6684, +2016-08-25 04:15:00,,,15.1937 +2016-08-25 04:24:09,3599.0,11.6684, +2016-08-25 04:30:00,,,15.1951 +2016-08-25 04:34:13,3599.0,11.639, +2016-08-25 04:44:17,3599.0,11.6684, +2016-08-25 04:45:00,,,15.227 +2016-08-25 04:54:19,3599.0,11.639, +2016-08-25 05:00:00,,,15.1951 +2016-08-25 05:04:22,3599.0,11.6684, +2016-08-25 05:14:25,3599.0,11.6684, +2016-08-25 05:15:00,,,15.1951 +2016-08-25 05:24:28,3599.0,11.6684, +2016-08-25 05:30:00,,,15.2256 +2016-08-25 05:34:30,3599.0,11.6684, +2016-08-25 05:44:33,3599.0,11.639, +2016-08-25 05:45:00,,,15.2284 +2016-08-25 05:54:36,3599.0,11.6684, +2016-08-25 06:00:00,,,15.1951 +2016-08-25 06:04:39,3599.0,11.6684, +2016-08-25 06:14:41,3599.0,11.6684, +2016-08-25 06:15:00,,,15.1632 +2016-08-25 06:24:44,3599.0,11.6653, +2016-08-25 06:30:00,,,15.1937 +2016-08-25 06:34:46,3599.0,11.548, +2016-08-25 06:44:49,3599.0,11.5773, +2016-08-25 06:45:00,,,15.1951 +2016-08-25 06:54:52,3599.0,11.5783, +2016-08-25 07:00:00,,,15.1951 +2016-08-25 07:04:55,3599.0,11.5773, +2016-08-25 07:14:57,3599.0,11.6328, +2016-08-25 07:15:00,,,15.227 +2016-08-25 07:25:00,3599.0,11.6632, +2016-08-25 07:30:00,,,15.1951 +2016-08-25 07:35:03,3599.0,11.5742, +2016-08-25 07:45:00,,,15.227 +2016-08-25 07:45:05,3599.0,11.6622, +2016-08-25 07:55:08,3599.0,11.5742, +2016-08-25 08:00:00,,,15.1964 +2016-08-25 08:05:11,3599.0,11.5742, +2016-08-25 08:15:00,,,15.1951 +2016-08-25 08:15:13,3599.0,11.5742, +2016-08-25 08:25:16,3599.0,11.5449, +2016-08-25 08:30:00,,,15.1951 +2016-08-25 08:35:19,3599.0,11.5742, +2016-08-25 08:45:00,,,15.1964 +2016-08-25 08:45:22,3599.0,11.6622, +2016-08-25 08:55:24,3599.0,11.6328, +2016-08-25 09:00:00,,,15.1951 +2016-08-25 09:05:27,3599.0,11.6328, +2016-08-25 09:15:00,,,15.1951 +2016-08-25 09:15:30,3599.0,11.6328, +2016-08-25 09:25:33,3599.0,11.6328, +2016-08-25 09:30:00,,,15.1951 +2016-08-25 09:35:35,3599.0,11.6622, +2016-08-25 09:45:00,,,15.1951 +2016-08-25 09:45:38,3599.0,11.5752, +2016-08-25 09:55:41,3599.0,11.5752, +2016-08-25 10:00:00,,,15.1951 +2016-08-25 10:05:44,3599.0,11.5752, +2016-08-25 10:15:00,,,15.227 +2016-08-25 10:15:47,3599.0,11.5449, +2016-08-25 10:25:50,3599.0,11.5742, +2016-08-25 10:30:00,,,15.227 +2016-08-25 10:35:53,3599.0,11.5742, +2016-08-25 10:45:00,,,15.227 +2016-08-25 10:45:56,3599.0,11.5742, +2016-08-25 10:55:59,3599.0,11.5449, +2016-08-25 11:00:00,,,15.1951 +2016-08-25 11:06:02,3599.0,11.5459, +2016-08-25 11:15:00,,,15.1937 +2016-08-25 11:16:05,3599.0,11.5742, +2016-08-25 11:26:08,3599.0,11.5742, +2016-08-25 11:30:00,,,15.1951 +2016-08-25 11:36:11,3599.0,11.5742, +2016-08-25 11:45:00,,,15.1951 +2016-08-25 11:46:14,3599.0,11.5752, +2016-08-25 11:56:17,3599.0,11.5742, +2016-08-25 12:00:00,,,15.1618 +2016-08-25 12:06:20,3599.0,11.5459, +2016-08-25 12:15:00,,,15.0981 +2016-08-25 12:16:24,3599.0,11.548, +2016-08-25 12:26:27,3599.0,11.4561, +2016-08-25 12:30:00,,,15.1313 +2016-08-25 12:36:30,3599.0,11.4612, +2016-08-25 12:45:00,,,15.1313 +2016-08-25 12:46:33,3599.0,11.4894, +2016-08-25 12:56:37,3599.0,11.4894, +2016-08-25 13:00:00,,,15.0995 +2016-08-25 13:06:40,3599.0,11.4602, +2016-08-25 13:15:00,,,15.0995 +2016-08-25 13:16:43,3599.0,11.4925, +2016-08-25 13:26:46,3599.0,11.4633, +2016-08-25 13:30:00,,,15.0995 +2016-08-25 13:36:49,3599.0,11.4633, +2016-08-25 13:45:00,,,15.1313 +2016-08-25 13:46:52,3599.0,11.3757, +2016-08-25 13:56:55,3599.0,11.4048, +2016-08-25 14:00:00,,,15.0981 +2016-08-25 14:06:59,3599.0,11.3757, +2016-08-25 14:15:00,,,15.0995 +2016-08-25 14:17:02,3599.0,11.3757, +2016-08-25 14:27:05,3599.0,11.4048, +2016-08-25 14:30:00,,,15.13 +2016-08-25 14:37:09,3599.0,11.4048, +2016-08-25 14:45:00,,,15.0995 +2016-08-25 14:47:12,3599.0,11.4079, +2016-08-25 14:57:16,3599.0,11.3787, +2016-08-25 15:00:00,,,15.1313 +2016-08-25 15:07:19,3599.0,11.3787, +2016-08-25 15:15:00,,,15.1313 +2016-08-25 15:17:23,3599.0,11.3787, +2016-08-25 15:27:26,3599.0,11.4079, +2016-08-25 15:30:00,,,15.0995 +2016-08-25 15:37:30,3599.0,11.3787, +2016-08-25 15:45:00,,,15.0981 +2016-08-25 15:47:33,3599.0,11.4079, +2016-08-25 15:57:36,3599.0,11.4069, +2016-08-25 16:00:00,,,15.0995 +2016-08-25 16:07:40,3599.0,11.3817, +2016-08-25 16:15:00,,,15.0042 +2016-08-25 16:17:43,3599.0,11.4119, +2016-08-25 16:27:47,3599.0,11.4109, +2016-08-25 16:30:00,,,15.0042 +2016-08-25 16:37:50,3599.0,11.3817, +2016-08-25 16:45:00,,,15.0042 +2016-08-25 16:47:54,3599.0,11.3838, +2016-08-25 16:57:57,3599.0,11.3838, +2016-08-25 17:00:00,,,15.0042 +2016-08-25 17:08:01,3599.0,11.3848, +2016-08-25 17:15:00,,,15.0042 +2016-08-25 17:18:04,3599.0,11.3848, +2016-08-25 17:28:08,3599.0,11.3848, +2016-08-25 17:30:00,,,15.0029 +2016-08-25 17:38:11,3599.0,11.3858, +2016-08-25 17:45:00,,,15.0042 +2016-08-25 17:48:15,3599.0,11.414, +2016-08-25 17:58:18,3599.0,11.3848, +2016-08-25 18:00:00,,,15.0042 +2016-08-25 18:08:21,3599.0,11.3878, +2016-08-25 18:15:00,,,15.0029 +2016-08-25 18:18:25,3599.0,11.3838, +2016-08-25 18:28:28,3599.0,11.3878, +2016-08-25 18:30:00,,,15.0042 +2016-08-25 18:38:31,3599.0,11.416, +2016-08-25 18:45:00,,,15.0042 +2016-08-25 18:48:35,3599.0,11.3878, +2016-08-25 18:58:38,3599.0,11.3868, +2016-08-25 19:00:00,,,15.0042 +2016-08-25 19:08:41,3599.0,11.3878, +2016-08-25 19:15:00,,,15.0055 +2016-08-25 19:18:45,3599.0,11.3868, +2016-08-25 19:28:48,3599.0,11.416, +2016-08-25 19:30:00,,,15.0042 +2016-08-25 19:38:51,3599.0,11.3868, +2016-08-25 19:45:00,,,15.0042 +2016-08-25 19:48:54,3599.0,11.416, +2016-08-25 19:58:58,3599.0,11.416, +2016-08-25 20:00:00,,,15.0029 +2016-08-25 20:09:01,3599.0,11.3878, +2016-08-25 20:15:00,,,15.0042 +2016-08-25 20:19:04,3599.0,11.3868, +2016-08-25 20:29:07,3599.0,11.416, +2016-08-25 20:30:00,,,15.0042 +2016-08-25 20:39:11,3599.0,11.3868, +2016-08-25 20:45:00,,,15.0029 +2016-08-25 20:49:14,3599.0,11.3878, +2016-08-25 20:59:17,3599.0,11.417, +2016-08-25 21:00:00,,,15.0042 +2016-08-25 21:09:20,3599.0,11.3868, +2016-08-25 21:15:00,,,15.0042 +2016-08-25 21:19:23,3599.0,11.3898, +2016-08-25 21:29:26,3599.0,11.3868, +2016-08-25 21:30:00,,,15.0042 +2016-08-25 21:39:30,3599.0,11.4191, +2016-08-25 21:45:00,,,15.0069 +2016-08-25 21:49:33,3599.0,11.3898, +2016-08-25 21:59:36,3599.0,11.3898, +2016-08-25 22:00:00,,,15.0082 +2016-08-25 22:09:39,3599.0,11.3898, +2016-08-25 22:15:00,,,15.0413 +2016-08-25 22:19:42,3599.0,11.4191, +2016-08-25 22:29:45,3599.0,11.3898, +2016-08-25 22:30:00,,,15.0082 +2016-08-25 22:39:48,3599.0,11.3898, +2016-08-25 22:45:00,,,15.0082 +2016-08-25 22:49:51,3599.0,11.3898, +2016-08-25 22:59:54,3599.0,11.4191, +2016-08-25 23:00:00,,,15.0082 +2016-08-25 23:09:57,3599.0,11.3909, +2016-08-25 23:15:00,,,15.0399 +2016-08-25 23:20:00,3599.0,11.3868, +2016-08-25 23:30:00,,,15.0082 +2016-08-25 23:30:03,3599.0,11.4191, +2016-08-25 23:40:06,3599.0,11.3898, +2016-08-25 23:45:00,,,15.0082 +2016-08-25 23:50:09,3599.0,11.4191, +2016-08-26 00:00:00,,,15.0082 +2016-08-26 00:00:12,3599.0,11.4201, +2016-08-26 00:10:15,3599.0,11.4191, +2016-08-26 00:15:00,,,15.0082 +2016-08-26 00:20:18,3599.0,11.3898, +2016-08-26 00:30:00,,,15.0082 +2016-08-26 00:30:21,3599.0,11.3909, +2016-08-26 00:40:24,3599.0,11.4493, +2016-08-26 00:45:00,,,15.0082 +2016-08-26 00:50:27,3599.0,11.3878, +2016-08-26 01:00:00,,,15.0082 +2016-08-26 01:00:30,3599.0,11.4462, +2016-08-26 01:10:33,3599.0,11.3878, +2016-08-26 01:15:00,,,15.0122 +2016-08-26 01:20:36,3599.0,11.3878, +2016-08-26 01:30:00,,,15.0122 +2016-08-26 01:30:39,3599.0,11.3878, +2016-08-26 01:40:41,3599.0,11.3868, +2016-08-26 01:45:00,,,15.0122 +2016-08-26 01:50:44,3599.0,11.4462, +2016-08-26 02:00:00,,,15.0399 +2016-08-26 02:00:47,3599.0,11.3878, +2016-08-26 02:10:50,3599.0,11.4442, +2016-08-26 02:15:00,,,15.044 +2016-08-26 02:20:53,3599.0,11.3868, +2016-08-26 02:30:00,,,15.044 +2016-08-26 02:30:56,3599.0,11.4462, +2016-08-26 02:40:59,3599.0,11.3868, +2016-08-26 02:45:00,,,15.0122 +2016-08-26 02:51:02,3599.0,11.3878, +2016-08-26 03:00:00,,,15.0122 +2016-08-26 03:01:04,3599.0,11.3868, +2016-08-26 03:11:07,3599.0,11.3868, +2016-08-26 03:15:00,,,15.0135 +2016-08-26 03:21:10,3599.0,11.416, +2016-08-26 03:30:00,,,15.0122 +2016-08-26 03:31:13,3599.0,11.416, +2016-08-26 03:41:16,3599.0,11.3868, +2016-08-26 03:45:00,,,15.0109 +2016-08-26 03:51:19,3599.0,11.3868, +2016-08-26 04:00:00,,,15.0122 +2016-08-26 04:01:21,3599.0,11.3868, +2016-08-26 04:11:24,3599.0,11.3878, +2016-08-26 04:15:00,,,15.0122 +2016-08-26 04:21:27,3599.0,11.3868, +2016-08-26 04:30:00,,,15.0149 +2016-08-26 04:31:30,3599.0,11.4452, +2016-08-26 04:41:32,3599.0,11.416, +2016-08-26 04:45:00,,,15.044 +2016-08-26 04:51:35,3599.0,11.3838, +2016-08-26 05:00:00,,,15.0109 +2016-08-26 05:01:38,3599.0,11.3838, +2016-08-26 05:11:41,3599.0,11.3848, +2016-08-26 05:15:00,,,15.0149 +2016-08-26 05:21:43,3599.0,11.3838, +2016-08-26 05:30:00,,,15.0149 +2016-08-26 05:31:46,3599.0,11.413, +2016-08-26 05:41:49,3599.0,11.3848, +2016-08-26 05:45:00,,,15.0149 +2016-08-26 05:51:52,3599.0,11.413, +2016-08-26 06:00:00,,,15.0466 +2016-08-26 06:01:54,3599.0,11.414, +2016-08-26 06:11:57,3599.0,11.3858, +2016-08-26 06:15:00,,,15.0149 +2016-08-26 06:22:00,3599.0,11.413, +2016-08-26 06:30:00,,,15.0466 +2016-08-26 06:32:02,3599.0,11.414, +2016-08-26 06:42:05,3599.0,11.3858, +2016-08-26 06:45:00,,,15.0175 +2016-08-26 06:52:08,3599.0,11.414, +2016-08-26 07:00:00,,,15.0466 +2016-08-26 07:02:11,3599.0,11.3848, +2016-08-26 07:12:14,3599.0,11.414, +2016-08-26 07:15:00,,,15.0149 +2016-08-26 07:22:16,3599.0,11.3848, +2016-08-26 07:30:00,,,15.0149 +2016-08-26 07:32:19,3599.0,11.3817, +2016-08-26 07:42:22,3599.0,11.3817, +2016-08-26 07:45:00,,,15.0162 +2016-08-26 07:52:24,3599.0,11.3828, +2016-08-26 08:00:00,,,15.0162 +2016-08-26 08:02:26,3599.0,11.4109, +2016-08-26 08:12:29,3599.0,11.4109, +2016-08-26 08:15:00,,,15.0162 +2016-08-26 08:22:32,3599.0,11.4109, +2016-08-26 08:30:00,,,15.0149 +2016-08-26 08:32:34,3599.0,11.3817, +2016-08-26 08:42:37,3599.0,11.3817, +2016-08-26 08:45:00,,,15.0149 +2016-08-26 08:52:40,3599.0,11.4371, +2016-08-26 09:00:00,,,15.0466 +2016-08-26 09:02:43,3599.0,11.4109, +2016-08-26 09:12:46,3599.0,11.4079, +2016-08-26 09:15:00,,,15.0466 +2016-08-26 09:22:49,3599.0,11.4401, +2016-08-26 09:30:00,,,15.0149 +2016-08-26 09:32:52,3599.0,11.3787, +2016-08-26 09:42:55,3599.0,11.4079, +2016-08-26 09:45:00,,,15.0149 +2016-08-26 09:52:58,3599.0,11.3787, +2016-08-26 10:00:00,,,15.0162 +2016-08-26 10:03:01,3599.0,11.3787, +2016-08-26 10:13:04,3599.0,11.3787, +2016-08-26 10:15:00,,,15.0175 +2016-08-26 10:23:07,3599.0,11.3787, +2016-08-26 10:30:00,,,15.0466 +2016-08-26 10:33:10,3599.0,11.4391, +2016-08-26 10:43:13,3599.0,11.3787, +2016-08-26 10:45:00,,,15.0149 +2016-08-26 10:53:16,3599.0,11.4109, +2016-08-26 11:00:00,,,15.048 +2016-08-26 11:03:19,3599.0,11.3828, +2016-08-26 11:13:22,3599.0,11.3817, +2016-08-26 11:15:00,,,15.0149 +2016-08-26 11:23:26,3599.0,11.3817, +2016-08-26 11:30:00,,,15.048 +2016-08-26 11:33:29,3599.0,11.3817, +2016-08-26 11:43:32,3599.0,11.4109, +2016-08-26 11:45:00,,,15.0162 +2016-08-26 11:53:35,3599.0,11.3838, +2016-08-26 12:00:00,,,15.0798 +2016-08-26 12:03:39,3599.0,11.3848, +2016-08-26 12:13:42,3599.0,11.3264, +2016-08-26 12:15:00,,,15.0162 +2016-08-26 12:23:46,3599.0,11.3264, +2016-08-26 12:30:00,,,15.0149 +2016-08-26 12:33:49,3599.0,11.3264, +2016-08-26 12:43:52,3599.0,11.3264, +2016-08-26 12:45:00,,,15.0162 +2016-08-26 12:53:56,3599.0,11.3254, +2016-08-26 13:00:00,,,15.0466 +2016-08-26 13:03:59,3599.0,11.3264, +2016-08-26 13:14:03,3599.0,11.2963, +2016-08-26 13:15:00,,,15.0149 +2016-08-26 13:24:06,3599.0,11.3264, +2016-08-26 13:30:00,,,14.9832 +2016-08-26 13:34:09,3599.0,11.3285, +2016-08-26 13:44:13,3599.0,11.2121, +2016-08-26 13:45:00,,,15.0162 +2016-08-26 13:54:16,3599.0,11.2411, +2016-08-26 14:00:00,,,14.9198 +2016-08-26 14:04:20,3599.0,11.3285, +2016-08-26 14:14:23,3599.0,11.3003, +2016-08-26 14:15:00,,,14.9198 +2016-08-26 14:24:27,3599.0,11.2421, +2016-08-26 14:30:00,,,14.9198 +2016-08-26 14:34:30,3599.0,11.2411, +2016-08-26 14:44:34,3599.0,11.2441, +2016-08-26 14:45:00,,,14.9198 +2016-08-26 14:54:37,3599.0,11.2441, +2016-08-26 15:00:00,,,14.9198 +2016-08-26 15:04:41,3599.0,11.2441, +2016-08-26 15:14:45,3599.0,11.2451, +2016-08-26 15:15:00,,,14.9198 +2016-08-26 15:24:48,3599.0,11.2481, +2016-08-26 15:30:00,,,14.9211 +2016-08-26 15:34:52,3599.0,11.2471, +2016-08-26 15:44:55,3599.0,11.2481, +2016-08-26 15:45:00,,,14.9211 +2016-08-26 15:54:59,3599.0,11.2481, +2016-08-26 16:00:00,,,14.9198 +2016-08-26 16:05:03,3599.0,11.2471, +2016-08-26 16:15:00,,,14.9198 +2016-08-26 16:15:06,3599.0,11.2471, +2016-08-26 16:25:10,3599.0,11.2501, +2016-08-26 16:30:00,,,14.9198 +2016-08-26 16:35:14,3599.0,11.222, +2016-08-26 16:45:00,,,14.9198 +2016-08-26 16:45:17,3599.0,11.2501, +2016-08-26 16:55:20,3599.0,11.2531, +2016-08-26 17:00:00,,,14.9198 +2016-08-26 17:05:24,3599.0,11.2531, +2016-08-26 17:15:00,,,14.9198 +2016-08-26 17:15:27,3599.0,11.2531, +2016-08-26 17:25:31,3599.0,11.2531, +2016-08-26 17:30:00,,,14.9198 +2016-08-26 17:35:34,3599.0,11.224, +2016-08-26 17:45:00,,,14.9198 +2016-08-26 17:45:38,3599.0,11.2531, +2016-08-26 17:55:41,3599.0,11.224, +2016-08-26 18:00:00,,,14.9198 +2016-08-26 18:05:45,3599.0,11.2531, +2016-08-26 18:15:00,,,14.9198 +2016-08-26 18:15:48,3599.0,11.2531, +2016-08-26 18:25:52,3599.0,11.2561, +2016-08-26 18:30:00,,,14.9198 +2016-08-26 18:35:55,3599.0,11.227, +2016-08-26 18:45:00,,,14.8882 +2016-08-26 18:45:58,3599.0,11.2571, +2016-08-26 18:56:02,3599.0,11.2561, +2016-08-26 19:00:00,,,14.9198 +2016-08-26 19:06:05,3599.0,11.2561, +2016-08-26 19:15:00,,,14.9198 +2016-08-26 19:16:09,3599.0,11.2561, +2016-08-26 19:26:12,3599.0,11.2561, +2016-08-26 19:30:00,,,14.9198 +2016-08-26 19:36:16,3599.0,11.2561, +2016-08-26 19:45:00,,,14.8882 +2016-08-26 19:46:19,3599.0,11.2561, +2016-08-26 19:56:22,3599.0,11.2591, +2016-08-26 20:00:00,,,14.9198 +2016-08-26 20:06:26,3599.0,11.2551, +2016-08-26 20:15:00,,,14.9198 +2016-08-26 20:16:29,3599.0,11.2581, +2016-08-26 20:26:32,3599.0,11.2591, +2016-08-26 20:30:00,,,14.8566 +2016-08-26 20:36:35,3599.0,11.2591, +2016-08-26 20:45:00,,,14.8237 +2016-08-26 20:46:38,3599.0,11.2581, +2016-08-26 20:56:42,3599.0,11.2591, +2016-08-26 21:00:00,,,14.9211 +2016-08-26 21:06:45,3599.0,11.2601, +2016-08-26 21:15:00,,,14.8566 +2016-08-26 21:16:48,3599.0,11.2591, +2016-08-26 21:26:51,3599.0,11.2591, +2016-08-26 21:30:00,,,14.825 +2016-08-26 21:36:55,3599.0,11.2591, +2016-08-26 21:45:00,,,14.8566 +2016-08-26 21:46:58,3599.0,11.2591, +2016-08-26 22:00:00,,,14.8579 +2016-08-26 22:07:11,3599.0,11.2581, +2016-08-26 22:15:00,,,14.8592 +2016-08-26 22:17:15,3599.0,11.2591, +2016-08-26 22:27:18,3599.0,11.2621, +2016-08-26 22:30:00,,,14.8592 +2016-08-26 22:37:21,3599.0,11.2591, +2016-08-26 22:45:00,,,14.8566 +2016-08-26 22:47:24,3599.0,11.233, +2016-08-26 22:57:27,3599.0,11.2601, +2016-08-26 23:00:00,,,14.8566 +2016-08-26 23:07:31,3599.0,11.2591, +2016-08-26 23:15:00,,,14.8869 +2016-08-26 23:17:34,3599.0,11.2621, +2016-08-26 23:27:37,3599.0,11.2621, +2016-08-26 23:30:00,,,14.825 +2016-08-26 23:37:40,3599.0,11.233, +2016-08-26 23:45:00,,,14.8592 +2016-08-26 23:47:43,3599.0,11.2621, +2016-08-26 23:57:46,3599.0,11.2621, +2016-08-27 00:00:00,,,14.8606 +2016-08-27 00:07:49,3599.0,11.2621, +2016-08-27 00:15:00,,,14.8619 +2016-08-27 00:17:52,3599.0,11.2621, +2016-08-27 00:27:55,3599.0,11.2591, +2016-08-27 00:30:00,,,14.8606 +2016-08-27 00:37:58,3599.0,11.2581, +2016-08-27 00:45:00,,,14.8606 +2016-08-27 00:48:01,3599.0,11.2591, +2016-08-27 00:58:04,3599.0,11.2591, +2016-08-27 01:00:00,,,14.8606 +2016-08-27 01:08:07,3599.0,11.2621, +2016-08-27 01:15:00,,,14.8606 +2016-08-27 01:18:10,3599.0,11.2591, +2016-08-27 01:28:13,3599.0,11.2581, +2016-08-27 01:30:00,,,14.8606 +2016-08-27 01:38:16,3599.0,11.23, +2016-08-27 01:45:00,,,14.8922 +2016-08-27 01:48:19,3599.0,11.2591, +2016-08-27 01:58:22,3599.0,11.2591, +2016-08-27 02:00:00,,,14.8619 +2016-08-27 02:08:24,3599.0,11.2591, +2016-08-27 02:15:00,,,14.8961 +2016-08-27 02:18:27,3599.0,11.2591, +2016-08-27 02:28:30,3599.0,11.2591, +2016-08-27 02:30:00,,,14.829 +2016-08-27 02:38:33,3599.0,11.2591, +2016-08-27 02:45:00,,,14.8961 +2016-08-27 02:48:36,3599.0,11.2591, +2016-08-27 02:58:39,3599.0,11.2591, +2016-08-27 03:00:00,,,14.8645 +2016-08-27 03:08:42,3599.0,11.2591, +2016-08-27 03:15:00,,,14.8658 +2016-08-27 03:18:45,3599.0,11.227, +2016-08-27 03:28:48,3599.0,11.2561, +2016-08-27 03:30:00,,,14.8645 +2016-08-27 03:38:51,3599.0,11.2561, +2016-08-27 03:45:00,,,14.8658 +2016-08-27 03:48:54,3599.0,11.2561, +2016-08-27 03:58:56,3599.0,11.2561, +2016-08-27 04:00:00,,,14.8329 +2016-08-27 04:08:59,3599.0,11.2561, +2016-08-27 04:15:00,,,14.8658 +2016-08-27 04:19:02,3599.0,11.2561, +2016-08-27 04:29:05,3599.0,11.2561, +2016-08-27 04:30:00,,,14.8658 +2016-08-27 04:39:08,3599.0,11.2853, +2016-08-27 04:45:00,,,14.8645 +2016-08-27 04:49:11,3599.0,11.229, +2016-08-27 04:59:14,3599.0,11.227, +2016-08-27 05:00:00,,,14.8658 +2016-08-27 05:09:16,3599.0,11.227, +2016-08-27 05:15:00,,,14.8343 +2016-08-27 05:19:19,3599.0,11.2581, +2016-08-27 05:29:22,3599.0,11.2561, +2016-08-27 05:30:00,,,14.8645 +2016-08-27 05:39:25,3599.0,11.3144, +2016-08-27 05:45:00,,,14.8658 +2016-08-27 05:49:28,3599.0,11.3154, +2016-08-27 05:59:30,3599.0,11.3426, +2016-08-27 06:00:00,,,14.8645 +2016-08-27 06:09:33,3599.0,11.3426, +2016-08-27 06:15:00,,,14.8658 +2016-08-27 06:19:36,3599.0,11.3446, +2016-08-27 06:29:39,3599.0,11.3114, +2016-08-27 06:30:00,,,14.8658 +2016-08-27 06:39:42,3599.0,11.3406, +2016-08-27 06:45:00,,,14.8369 +2016-08-27 06:49:45,3599.0,11.3406, +2016-08-27 06:59:47,3599.0,11.3698, +2016-08-27 07:00:00,,,14.8698 +2016-08-27 07:09:50,3599.0,11.3406, +2016-08-27 07:15:00,,,14.8685 +2016-08-27 07:19:53,3599.0,11.3406, +2016-08-27 07:29:56,3599.0,11.3406, +2016-08-27 07:30:00,,,14.8698 +2016-08-27 07:39:59,3599.0,11.3406, +2016-08-27 07:45:00,,,14.8685 +2016-08-27 07:50:01,3599.0,11.3406, +2016-08-27 08:00:00,,,14.8685 +2016-08-27 08:00:04,3599.0,11.3406, +2016-08-27 08:10:07,3599.0,11.3406, +2016-08-27 08:15:00,,,14.8382 +2016-08-27 08:20:10,3599.0,11.3416, +2016-08-27 08:30:00,,,14.8698 +2016-08-27 08:30:12,3599.0,11.3406, +2016-08-27 08:40:15,3599.0,11.3406, +2016-08-27 08:45:00,,,14.8685 +2016-08-27 08:50:18,3599.0,11.3406, +2016-08-27 09:00:00,,,14.8685 +2016-08-27 09:00:21,3599.0,11.3385, +2016-08-27 09:10:23,3599.0,11.3385, +2016-08-27 09:15:00,,,14.8685 +2016-08-27 09:20:26,3599.0,11.3667, +2016-08-27 09:30:00,,,14.8382 +2016-08-27 09:30:29,3599.0,11.3385, +2016-08-27 09:40:32,3599.0,11.3385, +2016-08-27 09:45:00,,,14.8698 +2016-08-27 09:50:35,3599.0,11.2491, +2016-08-27 10:00:00,,,14.8698 +2016-08-27 10:00:38,3599.0,11.2501, +2016-08-27 10:10:41,3599.0,11.2501, +2016-08-27 10:15:00,,,14.8685 +2016-08-27 10:20:44,3599.0,11.2792, +2016-08-27 10:30:00,,,14.8369 +2016-08-27 10:30:47,3599.0,11.2511, +2016-08-27 10:40:50,3599.0,11.2511, +2016-08-27 10:45:00,,,14.8685 +2016-08-27 10:50:53,3599.0,11.2501, +2016-08-27 11:00:00,,,14.8672 +2016-08-27 11:00:56,3599.0,11.2501, +2016-08-27 11:10:58,3599.0,11.220999999999998, +2016-08-27 11:15:00,,,14.8369 +2016-08-27 11:21:01,3599.0,11.222, +2016-08-27 11:30:00,,,14.8698 +2016-08-27 11:31:04,3599.0,11.2511, +2016-08-27 11:41:07,3599.0,11.220999999999998, +2016-08-27 11:45:00,,,14.8698 +2016-08-27 11:51:10,3599.0,11.2501, +2016-08-27 12:00:00,,,14.8685 +2016-08-27 12:01:13,3599.0,11.2491, +2016-08-27 12:11:16,3599.0,11.2511, +2016-08-27 12:15:00,,,14.8685 +2016-08-27 12:21:19,3599.0,11.2501, +2016-08-27 12:30:00,,,14.8685 +2016-08-27 12:31:22,3599.0,11.2511, +2016-08-27 12:41:26,3599.0,11.1659, +2016-08-27 12:45:00,,,14.8698 +2016-08-27 12:51:29,3599.0,11.1629, +2016-08-27 13:00:00,,,14.8698 +2016-08-27 13:01:32,3599.0,11.1649, +2016-08-27 13:11:35,3599.0,11.1659, +2016-08-27 13:15:00,,,14.8698 +2016-08-27 13:21:39,3599.0,11.1659, +2016-08-27 13:30:00,,,14.7423 +2016-08-27 13:31:42,3599.0,11.1659, +2016-08-27 13:41:45,3599.0,11.1659, +2016-08-27 13:45:00,,,14.7751 +2016-08-27 13:51:48,3599.0,11.1659, +2016-08-27 14:00:00,,,14.7751 +2016-08-27 14:01:51,3599.0,11.1659, +2016-08-27 14:11:54,3599.0,11.1659, +2016-08-27 14:15:00,,,14.7436 +2016-08-27 14:21:58,3599.0,11.1659, +2016-08-27 14:30:00,,,14.7436 +2016-08-27 14:32:01,3599.0,11.1659, +2016-08-27 14:42:04,3599.0,11.1659, +2016-08-27 14:45:00,,,14.7423 +2016-08-27 14:52:08,3599.0,11.0818, +2016-08-27 15:00:00,,,14.7423 +2016-08-27 15:02:11,3599.0,11.0789, +2016-08-27 15:12:14,3599.0,11.0828, +2016-08-27 15:15:00,,,14.7436 +2016-08-27 15:22:17,3599.0,11.0538, +2016-08-27 15:30:00,,,14.7436 +2016-08-27 15:32:21,3599.0,11.0818, +2016-08-27 15:42:24,3599.0,11.0818, +2016-08-27 15:45:00,,,14.7423 +2016-08-27 15:52:27,3599.0,11.0818, +2016-08-27 16:00:00,,,14.7423 +2016-08-27 16:02:31,3599.0,11.0818, +2016-08-27 16:12:34,3599.0,11.0828, +2016-08-27 16:15:00,,,14.7423 +2016-08-27 16:22:37,3599.0,11.0848, +2016-08-27 16:30:00,,,14.7436 +2016-08-27 16:32:41,3599.0,11.0848, +2016-08-27 16:42:44,3599.0,11.0848, +2016-08-27 16:45:00,,,14.7423 +2016-08-27 16:52:47,3599.0,11.0558, +2016-08-27 17:00:00,,,14.7423 +2016-08-27 17:02:51,3599.0,11.0868, +2016-08-27 17:12:54,3599.0,11.0587, +2016-08-27 17:15:00,,,14.7423 +2016-08-27 17:22:57,3599.0,11.0877, +2016-08-27 17:30:00,,,14.7436 +2016-08-27 17:33:01,3599.0,11.0877, +2016-08-27 17:43:04,3599.0,11.0578, +2016-08-27 17:45:00,,,14.7423 +2016-08-27 17:53:07,3599.0,11.0877, +2016-08-27 18:00:00,,,14.7423 +2016-08-27 18:03:11,3599.0,11.0877, +2016-08-27 18:13:14,3599.0,11.0877, +2016-08-27 18:15:00,,,14.7423 +2016-08-27 18:23:17,3599.0,11.0868, +2016-08-27 18:30:00,,,14.7738 +2016-08-27 18:33:21,3599.0,11.0877, +2016-08-27 18:43:24,3599.0,11.0587, +2016-08-27 18:45:00,,,14.7423 +2016-08-27 18:53:27,3599.0,11.0868, +2016-08-27 19:00:00,,,14.7423 +2016-08-27 19:03:30,3599.0,11.0897, +2016-08-27 19:13:34,3599.0,11.1778, +2016-08-27 19:15:00,,,14.7423 +2016-08-27 19:23:37,3599.0,11.1478, +2016-08-27 19:30:00,,,14.7738 +2016-08-27 19:33:40,3599.0,11.1768, +2016-08-27 19:43:43,3599.0,11.1768, +2016-08-27 19:45:00,,,14.7463 +2016-08-27 19:53:46,3599.0,11.1778, +2016-08-27 20:00:00,,,14.7738 +2016-08-27 20:03:50,3599.0,11.1778, +2016-08-27 20:13:53,3599.0,11.1768, +2016-08-27 20:15:00,,,14.7423 +2016-08-27 20:23:55,3599.0,11.1778, +2016-08-27 20:30:00,,,14.7765 +2016-08-27 20:33:58,3599.0,11.1768, +2016-08-27 20:44:01,3599.0,11.1778, +2016-08-27 20:45:00,,,14.745 +2016-08-27 20:54:05,3599.0,11.1478, +2016-08-27 21:00:00,,,14.7778 +2016-08-27 21:04:08,3599.0,11.1778, +2016-08-27 21:14:11,3599.0,11.1778, +2016-08-27 21:15:00,,,14.7423 +2016-08-27 21:24:14,3599.0,11.1778, +2016-08-27 21:30:00,,,14.7765 +2016-08-27 21:34:16,3599.0,11.1778, +2016-08-27 21:44:19,3599.0,11.1778, +2016-08-27 21:45:00,,,14.7778 +2016-08-27 21:54:22,3599.0,11.2049, +2016-08-27 22:00:00,,,14.7463 +2016-08-27 22:04:25,3599.0,11.1778, +2016-08-27 22:14:28,3599.0,11.1768, +2016-08-27 22:15:00,,,14.7476 +2016-08-27 22:24:31,3599.0,11.1778, +2016-08-27 22:30:00,,,14.7463 +2016-08-27 22:34:34,3599.0,11.1778, +2016-08-27 22:44:37,3599.0,11.1778, +2016-08-27 22:45:00,,,14.7778 +2016-08-27 22:54:40,3599.0,11.1768, +2016-08-27 23:00:00,,,14.7463 +2016-08-27 23:04:43,3599.0,11.1778, +2016-08-27 23:14:46,3599.0,11.1768, +2016-08-27 23:15:00,,,14.7476 +2016-08-27 23:24:49,3599.0,11.1768, +2016-08-27 23:30:00,,,14.7476 +2016-08-27 23:34:52,3599.0,11.1778, +2016-08-27 23:44:55,3599.0,11.1778, +2016-08-27 23:45:00,,,14.7463 +2016-08-27 23:54:58,3599.0,11.1778, +2016-08-28 00:00:00,,,14.7778 +2016-08-28 00:05:01,3599.0,11.1778, +2016-08-28 00:15:00,,,14.745 +2016-08-28 00:15:04,3599.0,11.2069, +2016-08-28 00:25:07,3599.0,11.1778, +2016-08-28 00:30:00,,,14.7476 +2016-08-28 00:35:09,3599.0,11.1778, +2016-08-28 00:45:00,,,14.745 +2016-08-28 00:45:12,3599.0,11.1778, +2016-08-28 00:55:15,3599.0,11.1778, +2016-08-28 01:00:00,,,14.7791 +2016-08-28 01:05:18,3599.0,11.1778, +2016-08-28 01:15:00,,,14.7463 +2016-08-28 01:15:21,3599.0,11.1778, +2016-08-28 01:25:24,3599.0,11.1778, +2016-08-28 01:30:00,,,14.7791 +2016-08-28 01:35:27,3599.0,11.1778, +2016-08-28 01:45:00,,,14.7476 +2016-08-28 01:45:30,3599.0,11.2059, +2016-08-28 01:55:33,3599.0,11.1488, +2016-08-28 02:00:00,,,14.7778 +2016-08-28 02:05:36,3599.0,11.2039, +2016-08-28 02:15:00,,,14.7463 +2016-08-28 02:15:39,3599.0,11.1778, +2016-08-28 02:25:42,3599.0,11.1729, +2016-08-28 02:30:00,,,14.7476 +2016-08-28 02:35:44,3599.0,11.1748, +2016-08-28 02:45:00,,,14.8093 +2016-08-28 02:45:47,3599.0,11.1748, +2016-08-28 02:55:50,3599.0,11.1739, +2016-08-28 03:00:00,,,14.7476 +2016-08-28 03:05:53,3599.0,11.1739, +2016-08-28 03:15:00,,,14.745 +2016-08-28 03:15:56,3599.0,11.1748, +2016-08-28 03:25:59,3599.0,11.1739, +2016-08-28 03:30:00,,,14.7778 +2016-08-28 03:36:02,3599.0,11.1739, +2016-08-28 03:45:00,,,14.7778 +2016-08-28 03:46:05,3599.0,11.1748, +2016-08-28 03:56:07,3599.0,11.1748, +2016-08-28 04:00:00,,,14.7778 +2016-08-28 04:06:10,3599.0,11.1748, +2016-08-28 04:15:00,,,14.7765 +2016-08-28 04:16:13,3599.0,11.1739, +2016-08-28 04:26:16,3599.0,11.1748, +2016-08-28 04:30:00,,,14.7476 +2016-08-28 04:36:19,3599.0,11.1748, +2016-08-28 04:45:00,,,14.7476 +2016-08-28 04:46:21,3599.0,11.1458, +2016-08-28 04:56:24,3599.0,11.1748, +2016-08-28 05:00:00,,,14.7463 +2016-08-28 05:06:27,3599.0,11.2029, +2016-08-28 05:15:00,,,14.7476 +2016-08-28 05:16:30,3599.0,11.1748, +2016-08-28 05:26:32,3599.0,11.1748, +2016-08-28 05:30:00,,,14.7463 +2016-08-28 05:36:34,3599.0,11.1719, +2016-08-28 05:45:00,,,14.7817 +2016-08-28 05:46:37,3599.0,11.1719, +2016-08-28 05:56:40,3599.0,11.1729, +2016-08-28 06:00:00,,,14.7765 +2016-08-28 06:06:43,3599.0,11.1719, +2016-08-28 06:15:00,,,14.7463 +2016-08-28 06:16:45,3599.0,11.1719, +2016-08-28 06:26:48,3599.0,11.1709, +2016-08-28 06:30:00,,,14.7515 +2016-08-28 06:36:51,3599.0,11.1438, +2016-08-28 06:45:00,,,14.745 +2016-08-28 06:46:54,3599.0,11.1709, +2016-08-28 06:56:56,3599.0,11.1709, +2016-08-28 07:00:00,,,14.7161 +2016-08-28 07:06:59,3599.0,11.2009, +2016-08-28 07:15:00,,,14.7502 +2016-08-28 07:17:02,3599.0,11.1719, +2016-08-28 07:27:05,3599.0,11.1689, +2016-08-28 07:30:00,,,14.7843 +2016-08-28 07:37:07,3599.0,11.1689, +2016-08-28 07:45:00,,,14.7515 +2016-08-28 07:47:10,3599.0,11.1679, +2016-08-28 07:57:13,3599.0,11.1679, +2016-08-28 08:00:00,,,14.7804 +2016-08-28 08:07:16,3599.0,11.1689, +2016-08-28 08:15:00,,,14.7804 +2016-08-28 08:17:19,3599.0,11.1689, +2016-08-28 08:27:21,3599.0,11.1699, +2016-08-28 08:30:00,,,14.783 +2016-08-28 08:37:24,3599.0,11.1679, +2016-08-28 08:45:00,,,14.7502 +2016-08-28 08:47:27,3599.0,11.1689, +2016-08-28 08:57:30,3599.0,11.1689, +2016-08-28 09:00:00,,,14.7515 +2016-08-28 09:07:33,3599.0,11.0519, +2016-08-28 09:15:00,,,14.7515 +2016-08-28 09:17:36,3599.0,11.1699, +2016-08-28 09:27:38,3599.0,11.0808, +2016-08-28 09:30:00,,,14.7804 +2016-08-28 09:37:41,3599.0,11.0818, +2016-08-28 09:45:00,,,14.7528 +2016-08-28 09:47:44,3599.0,11.0818, +2016-08-28 09:57:47,3599.0,11.1108, +2016-08-28 10:00:00,,,14.7502 +2016-08-28 10:07:50,3599.0,11.0528, +2016-08-28 10:15:00,,,14.7817 +2016-08-28 10:17:53,3599.0,11.0818, +2016-08-28 10:27:56,3599.0,11.0808, +2016-08-28 10:30:00,,,14.7528 +2016-08-28 10:37:59,3599.0,11.0818, +2016-08-28 10:45:00,,,14.7817 +2016-08-28 10:48:02,3599.0,11.1108, +2016-08-28 10:58:05,3599.0,11.0808, +2016-08-28 11:00:00,,,14.7502 +2016-08-28 11:08:08,3599.0,11.0818, +2016-08-28 11:15:00,,,14.7515 +2016-08-28 11:18:11,3599.0,11.0818, +2016-08-28 11:28:14,3599.0,11.0818, +2016-08-28 11:30:00,,,14.7515 +2016-08-28 11:38:17,3599.0,11.0808, +2016-08-28 11:45:00,,,14.7502 +2016-08-28 11:48:21,3599.0,11.0818, +2016-08-28 11:58:24,3599.0,11.0818, +2016-08-28 12:00:00,,,14.7515 +2016-08-28 12:08:27,3599.0,11.0528, +2016-08-28 12:15:00,,,14.7515 +2016-08-28 12:18:30,3599.0,11.0848, +2016-08-28 12:28:33,3599.0,11.0838, +2016-08-28 12:30:00,,,14.7502 +2016-08-28 12:38:37,3599.0,11.0858, +2016-08-28 12:45:00,,,14.7502 +2016-08-28 12:48:40,3599.0,11.0848, +2016-08-28 12:58:43,3599.0,11.0848, +2016-08-28 13:00:00,,,14.7817 +2016-08-28 13:08:47,3599.0,11.0868, +2016-08-28 13:15:00,,,14.7515 +2016-08-28 13:18:50,3599.0,11.0848, +2016-08-28 13:28:53,3599.0,11.0868, +2016-08-28 13:30:00,,,14.6572 +2016-08-28 13:38:57,3599.0,11.0587, +2016-08-28 13:45:00,,,14.6559 +2016-08-28 13:49:00,3599.0,11.0877, +2016-08-28 13:59:03,3599.0,11.0868, +2016-08-28 14:00:00,,,14.6572 +2016-08-28 14:09:06,3599.0,11.0877, +2016-08-28 14:15:00,,,14.6546 +2016-08-28 14:19:10,3599.0,11.0877, +2016-08-28 14:29:12,3599.0,11.0868, +2016-08-28 14:30:00,,,14.6886 +2016-08-28 14:39:15,3599.0,11.0877, +2016-08-28 14:45:00,,,14.6559 +2016-08-28 14:49:18,3599.0,11.0877, +2016-08-28 14:59:22,3599.0,11.0868, +2016-08-28 15:00:00,,,14.6886 +2016-08-28 15:09:25,3599.0,11.0907, +2016-08-28 15:15:00,,,14.6546 +2016-08-28 15:19:28,3599.0,11.0907, +2016-08-28 15:29:31,3599.0,11.0897, +2016-08-28 15:30:00,,,14.6873 +2016-08-28 15:39:34,3599.0,11.0907, +2016-08-28 15:45:00,,,14.6559 +2016-08-28 15:49:38,3599.0,11.0038, +2016-08-28 15:59:41,3599.0,11.0038, +2016-08-28 16:00:00,,,14.686 +2016-08-28 16:09:44,3599.0,11.0038, +2016-08-28 16:15:00,,,14.6585 +2016-08-28 16:19:47,3599.0,11.0038, +2016-08-28 16:29:50,3599.0,11.0327, +2016-08-28 16:30:00,,,14.686 +2016-08-28 16:39:54,3599.0,11.0057, +2016-08-28 16:45:00,,,14.6572 +2016-08-28 16:49:57,3599.0,11.0057, +2016-08-28 17:00:00,3599.0,11.0057,14.6546 +2016-08-28 17:10:03,3599.0,11.0057, +2016-08-28 17:15:00,,,14.6873 +2016-08-28 17:20:07,3599.0,11.0057, +2016-08-28 17:30:00,,,14.686 +2016-08-28 17:30:10,3599.0,11.0057, +2016-08-28 17:40:13,3599.0,10.9797, +2016-08-28 17:45:00,,,14.6572 +2016-08-28 17:50:16,3599.0,10.9797, +2016-08-28 18:00:00,,,14.6572 +2016-08-28 18:00:19,3599.0,11.0087, +2016-08-28 18:10:23,3599.0,11.0376, +2016-08-28 18:15:00,,,14.6873 +2016-08-28 18:20:26,3599.0,11.0666, +2016-08-28 18:30:00,,,14.6598 +2016-08-28 18:30:29,3599.0,11.0956, +2016-08-28 18:40:32,3599.0,11.0956, +2016-08-28 18:45:00,,,14.6546 +2016-08-28 18:50:35,3599.0,11.0966, +2016-08-28 19:00:00,,,14.6598 +2016-08-28 19:00:38,3599.0,11.0956, +2016-08-28 19:10:41,3599.0,11.0956, +2016-08-28 19:15:00,,,14.6886 +2016-08-28 19:20:44,3599.0,11.0956, +2016-08-28 19:30:00,,,14.6598 +2016-08-28 19:30:47,3599.0,11.0956, +2016-08-28 19:40:50,3599.0,11.0956, +2016-08-28 19:45:00,,,14.6624 +2016-08-28 19:50:53,3599.0,11.0986, +2016-08-28 20:00:00,,,14.6572 +2016-08-28 20:00:56,3599.0,11.0696, +2016-08-28 20:10:58,3599.0,11.0956, +2016-08-28 20:15:00,,,14.6912 +2016-08-28 20:21:01,3599.0,11.0956, +2016-08-28 20:30:00,,,14.6912 +2016-08-28 20:31:04,3599.0,11.0956, +2016-08-28 20:41:07,3599.0,11.0676, +2016-08-28 20:45:00,,,14.6912 +2016-08-28 20:51:10,3599.0,11.0966, +2016-08-28 21:00:00,,,14.6598 +2016-08-28 21:01:13,3599.0,11.0956, +2016-08-28 21:11:15,3599.0,11.0666, +2016-08-28 21:15:00,,,14.6598 +2016-08-28 21:21:18,3599.0,11.0956, +2016-08-28 21:30:00,,,14.6598 +2016-08-28 21:31:21,3599.0,11.0956, +2016-08-28 21:41:23,3599.0,11.0946, +2016-08-28 21:45:00,,,14.6925 +2016-08-28 21:51:26,3599.0,11.0966, +2016-08-28 22:00:00,,,14.6598 +2016-08-28 22:01:29,3599.0,11.0956, +2016-08-28 22:11:32,3599.0,11.0666, +2016-08-28 22:15:00,,,14.6585 +2016-08-28 22:21:34,3599.0,11.0966, +2016-08-28 22:30:00,,,14.6912 +2016-08-28 22:31:37,3599.0,11.0956, +2016-08-28 22:41:40,3599.0,11.1247, +2016-08-28 22:45:00,,,14.6598 +2016-08-28 22:51:43,3599.0,11.0956, +2016-08-28 23:00:00,,,14.6611 +2016-08-28 23:01:45,3599.0,11.1247, +2016-08-28 23:11:48,3599.0,11.0956, +2016-08-28 23:15:00,,,14.6912 +2016-08-28 23:21:50,3599.0,11.1257, +2016-08-28 23:30:00,,,14.6912 +2016-08-28 23:31:53,3599.0,11.0956, +2016-08-28 23:41:56,3599.0,11.0956, +2016-08-28 23:45:00,,,14.6899 +2016-08-28 23:51:58,3599.0,11.0956, +2016-08-29 00:00:00,,,14.6598 +2016-08-29 00:02:01,3599.0,11.1247, +2016-08-29 00:12:04,3599.0,11.0647, +2016-08-29 00:15:00,,,14.6912 +2016-08-29 00:22:07,3599.0,11.0656, +2016-08-29 00:30:00,,,14.6598 +2016-08-29 00:32:10,3599.0,11.0656, +2016-08-29 00:42:13,3599.0,11.0937, +2016-08-29 00:45:00,,,14.6912 +2016-08-29 00:52:15,3599.0,11.0647, +2016-08-29 01:00:00,,,14.6598 +2016-08-29 01:02:18,3599.0,11.1217, +2016-08-29 01:12:21,3599.0,11.0927, +2016-08-29 01:15:00,,,14.6598 +2016-08-29 01:22:24,3599.0,11.0637, +2016-08-29 01:30:00,,,14.6611 +2016-08-29 01:32:27,3599.0,11.0927, +2016-08-29 01:42:29,3599.0,11.0946, +2016-08-29 01:45:00,,,14.6899 +2016-08-29 01:52:32,3599.0,11.0907, +2016-08-29 02:00:00,,,14.6912 +2016-08-29 02:02:35,3599.0,11.1197, +2016-08-29 02:12:37,3599.0,11.0607, +2016-08-29 02:15:00,,,14.6912 +2016-08-29 02:22:40,3599.0,11.0627, +2016-08-29 02:30:00,,,14.6637 +2016-08-29 02:32:43,3599.0,11.0907, +2016-08-29 02:42:45,3599.0,11.0907, +2016-08-29 02:45:00,,,14.6637 +2016-08-29 02:52:48,3599.0,11.0897, +2016-08-29 03:00:00,,,14.6637 +2016-08-29 03:02:50,3599.0,11.0907, +2016-08-29 03:12:53,3599.0,11.0907, +2016-08-29 03:15:00,,,14.6624 +2016-08-29 03:22:56,3599.0,11.0907, +2016-08-29 03:30:00,,,14.6598 +2016-08-29 03:32:58,3599.0,11.0907, +2016-08-29 03:43:01,3599.0,11.0907, +2016-08-29 03:45:00,,,14.6912 +2016-08-29 03:53:03,3599.0,11.0877, +2016-08-29 04:00:00,,,14.6637 +2016-08-29 04:03:06,3599.0,11.0868, +2016-08-29 04:13:08,3599.0,11.0868, +2016-08-29 04:15:00,,,14.6637 +2016-08-29 04:23:11,3599.0,11.0877, +2016-08-29 04:30:00,,,14.6951 +2016-08-29 04:33:13,3599.0,11.0877, +2016-08-29 04:43:16,3599.0,11.0868, +2016-08-29 04:45:00,,,14.665 +2016-08-29 04:53:19,3599.0,11.0877, +2016-08-29 05:00:00,,,14.6637 +2016-08-29 05:03:21,3599.0,11.0877, +2016-08-29 05:13:24,3599.0,11.0877, +2016-08-29 05:15:00,,,14.6951 +2016-08-29 05:23:26,3599.0,11.0887, +2016-08-29 05:30:00,,,14.6637 +2016-08-29 05:33:36,3599.0,11.0848, +2016-08-29 05:43:39,3599.0,11.0848, +2016-08-29 05:45:00,,,14.6977 +2016-08-29 05:53:41,3599.0,11.0848, +2016-08-29 06:00:00,,,14.6951 +2016-08-29 06:03:44,3599.0,11.0848, +2016-08-29 06:13:47,3599.0,11.0848, +2016-08-29 06:15:00,,,14.6951 +2016-08-29 06:23:49,3599.0,11.0848, +2016-08-29 06:30:00,,,14.6964 +2016-08-29 06:33:52,3599.0,11.0848, +2016-08-29 06:43:54,3599.0,11.0818, +2016-08-29 06:45:00,,,14.6663 +2016-08-29 06:53:57,3599.0,11.0818, +2016-08-29 07:00:00,,,14.6964 +2016-08-29 07:03:59,3599.0,11.0818, +2016-08-29 07:14:02,3599.0,11.0818, +2016-08-29 07:15:00,,,14.6663 +2016-08-29 07:24:05,3599.0,11.1108, +2016-08-29 07:30:00,,,14.6964 +2016-08-29 07:34:07,3599.0,11.0818, +2016-08-29 07:44:10,3599.0,11.0818, +2016-08-29 07:45:00,,,14.6951 +2016-08-29 07:54:12,3599.0,11.1108, +2016-08-29 08:00:00,,,14.6964 +2016-08-29 08:04:15,3599.0,11.0789, +2016-08-29 08:14:17,3599.0,11.0789, +2016-08-29 08:15:00,,,14.6951 +2016-08-29 08:24:20,3599.0,11.0789, +2016-08-29 08:30:00,,,14.6951 +2016-08-29 08:34:22,3599.0,11.0789, +2016-08-29 08:44:25,3599.0,11.0789, +2016-08-29 08:45:00,,,14.6964 +2016-08-29 08:54:27,3599.0,11.1079, +2016-08-29 09:00:00,,,14.6624 +2016-08-29 09:04:30,3599.0,11.0789, +2016-08-29 09:14:32,3599.0,11.0789, +2016-08-29 09:15:00,,,14.6637 +2016-08-29 09:24:35,3599.0,11.0789, +2016-08-29 09:30:00,,,14.6637 +2016-08-29 09:34:38,3599.0,11.0789, +2016-08-29 09:44:41,3599.0,11.0798, +2016-08-29 09:45:00,,,14.6951 +2016-08-29 09:54:43,3599.0,11.0789, +2016-08-29 10:00:00,,,14.6624 +2016-08-29 10:04:46,3599.0,11.0789, +2016-08-29 10:14:48,3599.0,11.0789, +2016-08-29 10:15:00,,,14.6637 +2016-08-29 10:24:51,3599.0,11.0789, +2016-08-29 10:30:00,,,14.6637 +2016-08-29 10:34:54,3599.0,11.0789, +2016-08-29 10:44:57,3599.0,11.0789, +2016-08-29 10:45:00,,,14.6637 +2016-08-29 10:54:59,3599.0,11.0769, +2016-08-29 11:00:00,,,14.6637 +2016-08-29 11:05:02,3599.0,11.0759, +2016-08-29 11:15:00,,,14.6977 +2016-08-29 11:15:05,3599.0,11.0759, +2016-08-29 11:25:08,3599.0,11.0759, +2016-08-29 11:30:00,,,14.6951 +2016-08-29 11:35:10,3599.0,11.1039, +2016-08-29 11:45:00,,,14.6637 +2016-08-29 11:45:13,3599.0,11.0759, +2016-08-29 11:55:16,3599.0,11.0759, +2016-08-29 12:00:00,,,14.6637 +2016-08-29 12:05:18,3599.0,11.1049, +2016-08-29 12:15:00,,,14.6951 +2016-08-29 12:15:21,3599.0,11.0749, +2016-08-29 12:25:24,3599.0,11.0759, +2016-08-29 12:30:00,,,14.6676 +2016-08-29 12:35:27,3599.0,11.0769, +2016-08-29 12:45:00,,,14.6585 +2016-08-29 12:45:29,3599.0,11.0759, +2016-08-29 12:55:32,3599.0,11.1049, +2016-08-29 13:00:00,,,14.6663 +2016-08-29 13:05:35,3599.0,11.0769, +2016-08-29 13:15:00,,,14.6624 +2016-08-29 13:15:37,3599.0,11.0759, +2016-08-29 13:25:40,3599.0,11.046, +2016-08-29 13:30:00,,,14.665 +2016-08-29 13:35:43,3599.0,11.0479, +2016-08-29 13:45:00,,,14.6637 +2016-08-29 13:45:46,3599.0,11.0759, +2016-08-29 13:55:48,3599.0,11.0729, +2016-08-29 14:00:00,,,14.6611 +2016-08-29 14:05:51,3599.0,11.1039, +2016-08-29 14:15:00,,,14.5957 +2016-08-29 14:15:54,3599.0,11.0769, +2016-08-29 14:25:56,3599.0,11.0759, +2016-08-29 14:30:00,,,14.5683 +2016-08-29 14:35:59,3599.0,11.0739, +2016-08-29 14:45:00,,,14.5657 +2016-08-29 14:46:02,3599.0,11.0739, +2016-08-29 14:56:05,3599.0,11.0739, +2016-08-29 15:00:00,,,14.6284 +2016-08-29 15:06:07,3599.0,11.1029, +2016-08-29 15:15:00,,,14.5657 +2016-08-29 15:16:10,3599.0,11.0739, +2016-08-29 15:26:13,3599.0,11.0729, +2016-08-29 15:30:00,,,14.5657 +2016-08-29 15:36:16,3599.0,11.0739, +2016-08-29 15:45:00,,,14.5957 +2016-08-29 15:46:19,3599.0,11.0739, +2016-08-29 15:56:22,3599.0,11.045, +2016-08-29 16:00:00,,,14.5983 +2016-08-29 16:06:24,3599.0,11.0739, +2016-08-29 16:15:00,,,14.5644 +2016-08-29 16:16:27,3599.0,11.0739, +2016-08-29 16:26:30,3599.0,11.044, +2016-08-29 16:30:00,,,14.597 +2016-08-29 16:36:33,3599.0,11.0739, +2016-08-29 16:45:00,,,14.567 +2016-08-29 16:46:36,3599.0,11.0729, +2016-08-29 16:56:38,3599.0,11.0749, +2016-08-29 17:00:00,,,14.567 +2016-08-29 17:06:41,3599.0,11.0729, +2016-08-29 17:15:00,,,14.5644 +2016-08-29 17:16:43,3599.0,11.0479, +2016-08-29 17:26:54,3599.0,11.0749, +2016-08-29 17:30:00,,,14.5657 +2016-08-29 17:36:57,3599.0,11.0739, +2016-08-29 17:45:00,,,14.5657 +2016-08-29 17:46:59,3599.0,11.1029, +2016-08-29 17:57:02,3599.0,11.044, +2016-08-29 18:00:00,,,14.6297 +2016-08-29 18:07:05,3599.0,11.045, +2016-08-29 18:15:00,,,14.6271 +2016-08-29 18:17:08,3599.0,11.1029, +2016-08-29 18:27:10,3599.0,11.1319, +2016-08-29 18:30:00,,,14.597 +2016-08-29 18:37:13,3599.0,11.1029, +2016-08-29 18:45:00,,,14.597 +2016-08-29 18:47:16,3599.0,11.0739, +2016-08-29 18:57:19,3599.0,11.0729, +2016-08-29 19:00:00,,,14.567 +2016-08-29 19:07:21,3599.0,11.0739, +2016-08-29 19:15:00,,,14.5996 +2016-08-29 19:17:24,3599.0,11.0739, +2016-08-29 19:27:27,3599.0,11.0739, +2016-08-29 19:30:00,,,14.597 +2016-08-29 19:37:30,3599.0,11.0739, +2016-08-29 19:45:00,,,14.597 +2016-08-29 19:47:32,3599.0,11.0739, +2016-08-29 19:57:35,3599.0,11.0739, +2016-08-29 20:00:00,,,14.5996 +2016-08-29 20:07:38,3599.0,11.0729, +2016-08-29 20:15:00,,,14.5983 +2016-08-29 20:17:41,3599.0,11.0729, +2016-08-29 20:27:43,3599.0,11.0729, +2016-08-29 20:30:00,,,14.5957 +2016-08-29 20:37:46,3599.0,11.0739, +2016-08-29 20:45:00,,,14.597 +2016-08-29 20:47:49,3599.0,11.0729, +2016-08-29 20:57:51,3599.0,11.0739, +2016-08-29 21:00:00,,,14.597 +2016-08-29 21:07:54,3599.0,11.0739, +2016-08-29 21:15:00,,,14.597 +2016-08-29 21:17:56,3599.0,11.0729, +2016-08-29 21:27:59,3599.0,11.0739, +2016-08-29 21:30:00,,,14.5983 +2016-08-29 21:38:02,3599.0,11.0729, +2016-08-29 21:45:00,,,14.597 +2016-08-29 21:48:04,3599.0,11.0739, +2016-08-29 21:58:07,3599.0,11.071, +2016-08-29 22:00:00,,,14.597 +2016-08-29 22:08:09,3599.0,11.0729, +2016-08-29 22:15:00,,,14.5996 +2016-08-29 22:18:12,3599.0,11.1289, +2016-08-29 22:28:14,3599.0,11.071, +2016-08-29 22:30:00,,,14.597 +2016-08-29 22:38:17,3599.0,11.07, +2016-08-29 22:45:00,,,14.597 +2016-08-29 22:48:19,3599.0,11.07, +2016-08-29 22:58:22,3599.0,11.071, +2016-08-29 23:00:00,,,14.597 +2016-08-29 23:08:24,3599.0,11.071, +2016-08-29 23:15:00,,,14.597 +2016-08-29 23:18:27,3599.0,11.0999, +2016-08-29 23:28:30,3599.0,11.068, +2016-08-29 23:30:00,,,14.5683 +2016-08-29 23:38:32,3599.0,11.068, +2016-08-29 23:45:00,,,14.597 +2016-08-29 23:48:34,3599.0,11.067, +2016-08-29 23:58:37,3599.0,11.095999999999998, +2016-08-30 00:00:00,,,14.5996 +2016-08-30 00:08:39,3599.0,11.068, +2016-08-30 00:15:00,,,14.597 +2016-08-30 00:18:42,3599.0,11.068, +2016-08-30 00:28:44,3599.0,11.067, +2016-08-30 00:30:00,,,14.5996 +2016-08-30 00:38:46,3598.0,11.097, +2016-08-30 00:45:00,,,14.5996 +2016-08-30 00:48:49,3598.0,11.097, +2016-08-30 00:58:51,3598.0,11.0391, +2016-08-30 01:00:00,,,14.597 +2016-08-30 01:08:54,3598.0,11.068, +2016-08-30 01:15:00,,,14.5657 +2016-08-30 01:18:56,3598.0,11.068, +2016-08-30 01:28:58,3598.0,11.0661, +2016-08-30 01:30:00,,,14.597 +2016-08-30 01:39:01,3598.0,11.094, +2016-08-30 01:45:00,,,14.5996 +2016-08-30 01:49:03,3597.0,11.0641, +2016-08-30 01:59:05,3596.0,11.0651, +2016-08-30 02:00:00,,,14.597 +2016-08-30 02:09:08,3596.0,11.094, +2016-08-30 02:15:00,,,14.597 +2016-08-30 02:19:10,3595.0,11.0651, +2016-08-30 02:29:13,3595.0,11.093, +2016-08-30 02:30:00,,,14.5983 +2016-08-30 02:39:15,3594.0,11.123, +2016-08-30 02:45:00,,,14.5983 +2016-08-30 02:49:17,3594.0,11.0651, +2016-08-30 02:59:20,3593.0,11.0641, +2016-08-30 03:00:00,,,14.597 +2016-08-30 03:09:22,3593.0,11.0621, +2016-08-30 03:15:00,,,14.5957 +2016-08-30 03:19:24,3592.0,11.0621, +2016-08-30 03:29:27,3591.0,11.0621, +2016-08-30 03:30:00,,,14.5983 +2016-08-30 03:39:29,3591.0,11.0911, +2016-08-30 03:45:00,,,14.597 +2016-08-30 03:49:31,3589.0,11.0621, +2016-08-30 03:59:34,3588.0,11.0881, +2016-08-30 04:00:00,,,14.5983 +2016-08-30 04:09:36,3588.0,11.0592, +2016-08-30 04:15:00,,,14.5657 +2016-08-30 04:19:38,3588.0,11.0592, +2016-08-30 04:29:41,3587.0,11.0592, +2016-08-30 04:30:00,,,14.5957 +2016-08-30 04:39:43,3587.0,11.1171, +2016-08-30 04:45:00,,,14.597 +2016-08-30 04:49:45,3586.0,11.0592, +2016-08-30 04:59:47,3586.0,11.0592, +2016-08-30 05:00:00,,,14.597 +2016-08-30 05:09:50,3585.0,11.0592, +2016-08-30 05:15:00,,,14.5983 +2016-08-30 05:19:52,3585.0,11.0881, +2016-08-30 05:29:54,3585.0,11.0562, +2016-08-30 05:30:00,,,14.5957 +2016-08-30 05:39:57,3584.0,11.0572, +2016-08-30 05:45:00,,,14.5983 +2016-08-30 05:49:59,3584.0,11.0562, +2016-08-30 06:00:00,,,14.5931 +2016-08-30 06:00:01,3583.0,11.0572, +2016-08-30 06:10:03,3583.0,11.0562, +2016-08-30 06:15:00,,,14.5944 +2016-08-30 06:20:06,3583.0,11.0572, +2016-08-30 06:30:00,,,14.6559 +2016-08-30 06:30:08,3582.0,11.0572, +2016-08-30 06:40:11,3582.0,11.0562, +2016-08-30 06:45:00,,,14.5631 +2016-08-30 06:50:13,3581.0,11.0822, +2016-08-30 07:00:00,,,14.5631 +2016-08-30 07:00:15,3582.0,11.0822, +2016-08-30 07:10:18,3581.0,11.0533, +2016-08-30 07:15:00,,,14.6572 +2016-08-30 07:20:20,3582.0,11.0533, +2016-08-30 07:30:00,,,14.5631 +2016-08-30 07:30:22,3582.0,11.0503, +2016-08-30 07:40:25,3582.0,11.0503, +2016-08-30 07:45:00,,,14.5918 +2016-08-30 07:50:27,3583.0,11.0503, +2016-08-30 08:00:00,,,14.6899 +2016-08-30 08:00:29,3583.0,11.0792, +2016-08-30 08:10:32,3584.0,11.0792, +2016-08-30 08:15:00,,,14.6899 +2016-08-30 08:20:34,3584.0,11.0792, +2016-08-30 08:30:00,,,14.5944 +2016-08-30 08:30:36,3585.0,11.0503, +2016-08-30 08:40:39,3586.0,11.0503, +2016-08-30 08:45:00,,,14.5944 +2016-08-30 08:50:41,3587.0,11.0792, +2016-08-30 09:00:00,,,14.5957 +2016-08-30 09:00:44,3588.0,11.0503, +2016-08-30 09:10:46,3588.0,11.0503, +2016-08-30 09:15:00,,,14.5893 +2016-08-30 09:20:48,3589.0,11.0513, +2016-08-30 09:30:00,,,14.5918 +2016-08-30 09:30:51,3591.0,11.0483, +2016-08-30 09:40:53,3592.0,11.0474, +2016-08-30 09:45:00,,,14.5592 +2016-08-30 09:50:56,3593.0,11.0483, +2016-08-30 10:00:00,,,14.5906 +2016-08-30 10:00:59,3595.0,11.0483, +2016-08-30 10:11:01,3595.0,11.0483, +2016-08-30 10:15:00,,,14.588 +2016-08-30 10:21:04,3596.0,11.0483, +2016-08-30 10:30:00,,,14.5579 +2016-08-30 10:31:06,3598.0,11.0483, +2016-08-30 10:41:09,3598.0,11.0483, +2016-08-30 10:45:00,,,14.5918 +2016-08-30 10:51:11,3598.0,11.0773, +2016-08-30 11:00:00,,,14.5906 +2016-08-30 11:01:14,3598.0,11.0483, +2016-08-30 11:11:16,3599.0,11.0483, +2016-08-30 11:15:00,,,14.5906 +2016-08-30 11:21:19,3599.0,11.0474, +2016-08-30 11:30:00,,,14.5592 +2016-08-30 11:31:22,3599.0,11.0483, +2016-08-30 11:41:26,3599.0,11.0474, +2016-08-30 11:45:00,,,14.5592 +2016-08-30 11:51:30,3599.0,11.0483, +2016-08-30 12:00:00,,,14.5906 +2016-08-30 12:01:33,3599.0,11.0474, +2016-08-30 12:11:35,3599.0,11.0483, +2016-08-30 12:15:00,,,14.5893 +2016-08-30 12:21:38,3599.0,11.0773, +2016-08-30 12:30:00,,,14.588 +2016-08-30 12:31:40,3599.0,11.0483, +2016-08-30 12:41:43,3599.0,11.0474, +2016-08-30 12:45:00,,,14.5906 +2016-08-30 12:51:46,3599.0,11.0483, +2016-08-30 13:00:00,,,14.5906 +2016-08-30 13:01:48,3599.0,11.0483, +2016-08-30 13:11:51,3599.0,11.0474, +2016-08-30 13:15:00,,,14.5906 +2016-08-30 13:21:54,3599.0,11.0474, +2016-08-30 13:30:00,,,14.5906 +2016-08-30 13:31:56,3599.0,11.0483, +2016-08-30 13:41:59,3599.0,11.0483, +2016-08-30 13:45:00,,,14.5906 +2016-08-30 13:52:02,3599.0,11.0483, +2016-08-30 14:00:00,,,14.5906 +2016-08-30 14:02:05,3599.0,11.0483, +2016-08-30 14:12:07,3599.0,11.0483, +2016-08-30 14:15:00,,,14.5893 +2016-08-30 14:22:10,3599.0,11.0483, +2016-08-30 14:30:00,,,14.5893 +2016-08-30 14:32:13,3599.0,11.0483, +2016-08-30 14:42:15,3599.0,11.0483, +2016-08-30 14:45:00,,,14.5554 +2016-08-30 14:52:18,3599.0,11.0474, +2016-08-30 15:00:00,,,14.5867 +2016-08-30 15:02:21,3599.0,11.0185, +2016-08-30 15:12:24,3599.0,11.0483, +2016-08-30 15:15:00,,,14.5841 +2016-08-30 15:22:26,3599.0,10.9349, +2016-08-30 15:30:00,,,14.4343 +2016-08-30 15:32:29,3599.0,10.9319, +2016-08-30 15:42:32,3599.0,10.9598, +2016-08-30 15:45:00,,,14.4603 +2016-08-30 15:52:35,3599.0,10.9617, +2016-08-30 16:00:00,,,14.5241 +2016-08-30 16:02:38,3599.0,10.9627, +2016-08-30 16:12:41,3599.0,10.9637, +2016-08-30 16:15:00,,,14.4603 +2016-08-30 16:22:43,3599.0,10.9925, +2016-08-30 16:30:00,,,14.5228 +2016-08-30 16:32:46,3599.0,10.9637, +2016-08-30 16:42:49,3599.0,10.9925, +2016-08-30 16:45:00,,,14.4603 +2016-08-30 16:52:52,3599.0,10.9925, +2016-08-30 17:00:00,,,14.4915 +2016-08-30 17:02:55,3599.0,11.0214, +2016-08-30 17:12:58,3599.0,10.9925, +2016-08-30 17:15:00,,,14.4915 +2016-08-30 17:23:01,3599.0,10.9916, +2016-08-30 17:30:00,,,14.5254 +2016-08-30 17:33:03,3599.0,10.9637, +2016-08-30 17:43:06,3599.0,10.9627, +2016-08-30 17:45:00,,,14.4616 +2016-08-30 17:53:09,3599.0,10.9637, +2016-08-30 18:00:00,,,14.5228 +2016-08-30 18:03:12,3599.0,10.9627, +2016-08-30 18:13:15,3599.0,10.9637, +2016-08-30 18:15:00,,,14.4915 +2016-08-30 18:23:18,3599.0,11.0493, +2016-08-30 18:30:00,,,14.4603 +2016-08-30 18:33:20,3599.0,10.9637, +2016-08-30 18:43:23,3599.0,11.0214, +2016-08-30 18:45:00,,,14.4903 +2016-08-30 18:53:26,3599.0,11.0503, +2016-08-30 19:00:00,,,14.4915 +2016-08-30 19:03:29,3599.0,11.0503, +2016-08-30 19:13:32,3599.0,11.0533, +2016-08-30 19:15:00,,,14.4629 +2016-08-30 19:23:34,3599.0,11.0533, +2016-08-30 19:30:00,,,14.4629 +2016-08-30 19:33:37,3599.0,11.0533, +2016-08-30 19:43:40,3599.0,11.0533, +2016-08-30 19:45:00,,,14.4915 +2016-08-30 19:53:43,3599.0,11.0822, +2016-08-30 20:00:00,,,14.5241 +2016-08-30 20:03:45,3599.0,11.0533, +2016-08-30 20:13:48,3599.0,11.0503, +2016-08-30 20:15:00,,,14.4915 +2016-08-30 20:23:51,3599.0,11.0533, +2016-08-30 20:30:00,,,14.4928 +2016-08-30 20:33:53,3599.0,11.0533, +2016-08-30 20:43:56,3599.0,11.0822, +2016-08-30 20:45:00,,,14.4616 +2016-08-30 20:53:58,3599.0,11.0822, +2016-08-30 21:00:00,,,14.5241 +2016-08-30 21:04:00,3599.0,11.0503, +2016-08-30 21:14:03,3599.0,11.0533, +2016-08-30 21:15:00,,,14.4928 +2016-08-30 21:24:05,3599.0,11.0822, +2016-08-30 21:30:00,,,14.5241 +2016-08-30 21:34:08,3599.0,11.0533, +2016-08-30 21:44:10,3599.0,11.0503, +2016-08-30 21:45:00,,,14.4928 +2016-08-30 21:54:13,3599.0,11.0493, +2016-08-30 22:00:00,,,14.4928 +2016-08-30 22:04:16,3599.0,11.0792, +2016-08-30 22:14:18,3599.0,11.0523, +2016-08-30 22:15:00,,,14.4603 +2016-08-30 22:24:21,3599.0,11.0503, +2016-08-30 22:30:00,,,14.4603 +2016-08-30 22:34:23,3599.0,11.0503, +2016-08-30 22:44:26,3599.0,11.0503, +2016-08-30 22:45:00,,,14.4928 +2016-08-30 22:54:28,3599.0,11.0503, +2016-08-30 23:00:00,,,14.4941 +2016-08-30 23:04:31,3599.0,11.0792, +2016-08-30 23:14:33,3599.0,11.0503, +2016-08-30 23:15:00,,,14.5254 +2016-08-30 23:24:36,3599.0,11.0503, +2016-08-30 23:30:00,,,14.4915 +2016-08-30 23:34:38,3599.0,11.0513, +2016-08-30 23:44:41,3599.0,11.0513, +2016-08-30 23:45:00,,,14.4928 +2016-08-30 23:54:44,3598.0,11.0503, +2016-08-31 00:00:00,,,14.4603 +2016-08-31 00:15:00,,, +2016-08-31 00:30:00,,, +2016-08-31 00:45:00,,, +2016-08-31 01:00:00,,,14.4941 +2016-08-31 01:05:02,3598.0,11.0503, +2016-08-31 01:15:00,,,14.4915 +2016-08-31 01:15:04,3598.0,11.0792, +2016-08-31 01:25:07,3598.0,11.0483, +2016-08-31 01:30:00,,,14.4915 +2016-08-31 01:35:09,3598.0,11.0483, +2016-08-31 01:45:00,,,14.4616 +2016-08-31 01:45:12,3598.0,11.0483, +2016-08-31 01:55:14,3598.0,11.0483, +2016-08-31 02:00:00,,,14.489 +2016-08-31 02:05:17,3598.0,11.0474, +2016-08-31 02:15:00,,,14.4565 +2016-08-31 02:15:19,3598.0,11.0763, +2016-08-31 02:25:22,3597.0,11.0483, +2016-08-31 02:30:00,,,14.4877 +2016-08-31 02:35:25,3597.0,11.0483, +2016-08-31 02:45:00,,,14.4928 +2016-08-31 02:45:27,3597.0,11.0773, +2016-08-31 02:55:30,3596.0,11.0773, +2016-08-31 03:00:00,,,14.5189 +2016-08-31 03:05:32,3595.0,11.0773, +2016-08-31 03:15:00,,,14.5215 +2016-08-31 03:15:35,3595.0,11.0773, +2016-08-31 03:25:37,3595.0,11.0483, +2016-08-31 03:30:00,,,14.5241 +2016-08-31 03:35:40,3594.0,11.0483, +2016-08-31 03:45:00,,,14.5202 +2016-08-31 03:45:42,3594.0,11.0483, +2016-08-31 03:55:45,3593.0,11.0483, +2016-08-31 04:00:00,,,14.4928 +2016-08-31 04:05:47,3593.0,11.0773, +2016-08-31 04:15:00,,,14.5189 +2016-08-31 04:15:50,3592.0,11.0483, +2016-08-31 04:25:52,3592.0,11.0454, +2016-08-31 04:30:00,,,14.4578 +2016-08-31 04:35:55,3592.0,11.0454, +2016-08-31 04:45:00,,,14.489 +2016-08-31 04:45:57,3592.0,11.0454, +2016-08-31 04:56:00,3591.0,11.0454, +2016-08-31 05:00:00,,,14.5202 +2016-08-31 05:06:02,3591.0,11.0454, +2016-08-31 05:15:00,,,14.489 +2016-08-31 05:16:05,3591.0,11.0743, +2016-08-31 05:26:07,3591.0,11.0713, +2016-08-31 05:30:00,,,14.489 +2016-08-31 05:36:10,3591.0,11.0464, +2016-08-31 05:45:00,,,14.4903 +2016-08-31 05:46:12,3590.0,11.0415, +2016-08-31 05:56:14,3590.0,11.0425, +2016-08-31 06:00:00,,,14.4591 +2016-08-31 06:06:16,3590.0,11.0713, +2016-08-31 06:15:00,,,14.489 +2016-08-31 06:16:18,3589.0,11.0425, +2016-08-31 06:26:21,3589.0,11.0713, +2016-08-31 06:30:00,,,14.5189 +2016-08-31 06:36:23,3589.0,11.0425, +2016-08-31 06:45:00,,,14.4877 +2016-08-31 06:46:25,3590.0,11.0713, +2016-08-31 06:56:28,3589.0,11.0425, +2016-08-31 07:00:00,,,14.4877 +2016-08-31 07:06:30,3589.0,11.0425, +2016-08-31 07:15:00,,,14.4903 +2016-08-31 07:16:33,3589.0,11.0425, +2016-08-31 07:26:35,3589.0,11.0713, +2016-08-31 07:30:00,,,14.489 +2016-08-31 07:36:37,3590.0,11.0425, +2016-08-31 07:45:00,,,14.5202 +2016-08-31 07:46:40,3590.0,11.0425, +2016-08-31 07:56:42,3590.0,11.0395, +2016-08-31 08:00:00,,,14.5189 +2016-08-31 08:06:45,3592.0,11.0395, +2016-08-31 08:15:00,,,14.4578 +2016-08-31 08:16:47,3592.0,11.0395, +2016-08-31 08:26:49,3592.0,11.0684, +2016-08-31 08:30:00,,,14.5202 +2016-08-31 08:36:52,3593.0,11.0395, +2016-08-31 08:45:00,,,14.5189 +2016-08-31 08:46:54,3594.0,11.0684, +2016-08-31 08:56:57,3595.0,11.0395, +2016-08-31 09:00:00,,,14.4864 +2016-08-31 09:06:59,3596.0,11.0385, +2016-08-31 09:15:00,,,14.5215 +2016-08-31 09:17:02,3597.0,11.0395, +2016-08-31 09:27:04,3598.0,11.0684, +2016-08-31 09:30:00,,,14.4838 +2016-08-31 09:37:07,3598.0,11.0395, +2016-08-31 09:45:00,,,14.4864 +2016-08-31 09:47:09,3598.0,11.0395, +2016-08-31 09:57:12,3598.0,11.0684, +2016-08-31 10:00:00,,,14.4851 +2016-08-31 10:07:14,3599.0,11.0395, +2016-08-31 10:15:00,,,14.4552 +2016-08-31 10:17:17,3599.0,11.0395, +2016-08-31 10:27:19,3599.0,11.0395, +2016-08-31 10:30:00,,,14.4526 +2016-08-31 10:37:22,3599.0,10.953, +2016-08-31 10:45:00,,,14.515 +2016-08-31 10:47:24,3599.0,10.9808, +2016-08-31 10:57:27,3599.0,10.9808, +2016-08-31 11:00:00,,,14.4838 +2016-08-31 11:07:29,3599.0,10.9808, +2016-08-31 11:15:00,,,14.4539 +2016-08-31 11:17:32,3599.0,10.9808, +2016-08-31 11:27:35,3599.0,10.9808, +2016-08-31 11:30:00,,,14.4552 +2016-08-31 11:37:37,3599.0,10.9818, +2016-08-31 11:45:00,,,14.4877 +2016-08-31 11:47:40,3599.0,10.953, +2016-08-31 11:57:43,3599.0,10.9808, +2016-08-31 12:00:00,,,14.4552 +2016-08-31 12:07:46,3599.0,10.9818, +2016-08-31 12:15:00,,,14.4526 +2016-08-31 12:17:49,3599.0,10.9818, +2016-08-31 12:27:52,3599.0,10.9808, +2016-08-31 12:30:00,,,14.4864 +2016-08-31 12:37:54,3599.0,10.952, +2016-08-31 12:45:00,,,14.4825 +2016-08-31 12:47:57,3599.0,10.9242, +2016-08-31 12:58:00,3599.0,10.8954, +2016-08-31 13:00:00,,,14.4501 +2016-08-31 13:08:03,3599.0,10.8954, +2016-08-31 13:15:00,,,14.4851 +2016-08-31 13:18:05,3599.0,10.8954, +2016-08-31 13:28:08,3599.0,10.8944, +2016-08-31 13:30:00,,,14.4526 +2016-08-31 13:38:11,3599.0,10.8983, +2016-08-31 13:45:00,,,14.48 +2016-08-31 13:48:14,3599.0,10.8686, +2016-08-31 13:58:17,3599.0,10.8983, +2016-08-31 14:00:00,,,14.3891 +2016-08-31 14:08:19,3599.0,10.8408, +2016-08-31 14:15:00,,,14.3865 +2016-08-31 14:18:22,3599.0,10.8686, +2016-08-31 14:28:25,3599.0,10.8686, +2016-08-31 14:30:00,,,14.3891 +2016-08-31 14:38:28,3599.0,10.8686, +2016-08-31 14:45:00,,,14.3891 +2016-08-31 14:48:31,3599.0,10.8973, +2016-08-31 14:58:34,3599.0,10.8973, +2016-08-31 15:00:00,,,14.4176 +2016-08-31 15:08:39,3599.0,10.8973, +2016-08-31 15:15:00,,,14.3891 +2016-08-31 15:18:42,3599.0,10.8695, +2016-08-31 15:28:45,3599.0,10.8695, +2016-08-31 15:30:00,,,14.3865 +2016-08-31 15:38:48,3599.0,10.9002, +2016-08-31 15:45:00,,,14.3878 +2016-08-31 15:48:51,3599.0,10.9012, +2016-08-31 15:58:54,3599.0,10.8715, +2016-08-31 16:00:00,,,14.3567 +2016-08-31 16:08:57,3599.0,10.8724, +2016-08-31 16:15:00,,,14.4176 +2016-08-31 16:19:00,3599.0,10.8724, +2016-08-31 16:29:03,3599.0,10.8753, +2016-08-31 16:30:00,,,14.3865 +2016-08-31 16:39:06,3599.0,10.8753, +2016-08-31 16:45:00,,,14.3878 +2016-08-31 16:49:09,3599.0,10.8734, +2016-08-31 16:59:12,3599.0,10.9041, +2016-08-31 17:00:00,,,14.3865 +2016-08-31 17:09:15,3599.0,10.8753, +2016-08-31 17:15:00,,,14.3865 +2016-08-31 17:19:18,3599.0,10.8753, +2016-08-31 17:29:21,3599.0,10.9031, +2016-08-31 17:30:00,,,14.3878 +2016-08-31 17:39:24,3599.0,10.8753, +2016-08-31 17:45:00,,,14.3865 +2016-08-31 17:49:27,3599.0,10.9041, +2016-08-31 17:59:30,3599.0,10.9041, +2016-08-31 18:00:00,,,14.3865 +2016-08-31 18:09:33,3599.0,10.9031, +2016-08-31 18:15:00,,,14.3865 +2016-08-31 18:19:36,3599.0,10.8744, +2016-08-31 18:29:39,3599.0,10.9061, +2016-08-31 18:30:00,,,14.3567 +2016-08-31 18:39:42,3599.0,10.8773, +2016-08-31 18:45:00,,,14.3554 +2016-08-31 18:49:45,3599.0,10.907, +2016-08-31 18:59:48,3599.0,10.8485, +2016-08-31 19:00:00,,,14.4189 +2016-08-31 19:09:51,3599.0,10.8773, +2016-08-31 19:15:00,,,14.3554 +2016-08-31 19:19:53,3599.0,10.9051, +2016-08-31 19:29:56,3599.0,10.8773, +2016-08-31 19:30:00,,,14.3891 +2016-08-31 19:39:59,3599.0,10.9061, +2016-08-31 19:45:00,,,14.4202 +2016-08-31 19:50:02,3599.0,10.8763, +2016-08-31 20:00:00,,,14.3878 +2016-08-31 20:00:05,3599.0,10.9051, +2016-08-31 20:10:08,3599.0,10.8773, +2016-08-31 20:15:00,,,14.3567 +2016-08-31 20:20:11,3599.0,10.9061, +2016-08-31 20:30:00,,,14.3878 +2016-08-31 20:30:13,3599.0,10.8773, +2016-08-31 20:40:16,3599.0,10.8773, +2016-08-31 20:45:00,,,14.3878 +2016-08-31 20:50:19,3599.0,10.907, +2016-08-31 21:00:00,,,14.3865 +2016-08-31 21:00:22,3599.0,10.8773, +2016-08-31 21:10:25,3599.0,10.8773, +2016-08-31 21:15:00,,,14.3891 +2016-08-31 21:20:27,3599.0,10.8763, +2016-08-31 21:30:00,,,14.3567 +2016-08-31 21:30:30,3599.0,10.8495, +2016-08-31 21:40:33,3599.0,10.9061, +2016-08-31 21:45:00,,,14.3865 +2016-08-31 21:50:36,3599.0,10.8782, +2016-08-31 22:00:00,,,14.3852 +2016-08-31 22:00:38,3599.0,10.9061, +2016-08-31 22:10:41,3599.0,10.9051, +2016-08-31 22:15:00,,,14.3903 +2016-08-31 22:20:44,3599.0,10.9061, +2016-08-31 22:30:00,,,14.3865 +2016-08-31 22:30:46,3599.0,10.907, +2016-08-31 22:40:49,3599.0,10.9051, +2016-08-31 22:45:00,,,14.3865 +2016-08-31 22:50:52,3599.0,10.9061, +2016-08-31 23:00:00,,,14.3852 +2016-08-31 23:00:54,3599.0,10.9061, +2016-08-31 23:10:57,3599.0,10.9051, +2016-08-31 23:15:00,,,14.3891 +2016-08-31 23:20:59,3599.0,10.8773, +2016-08-31 23:30:00,,,14.3865 +2016-08-31 23:31:02,3599.0,10.9061, +2016-08-31 23:41:04,3599.0,10.9061, +2016-08-31 23:45:00,,,14.3878 +2016-08-31 23:51:07,3599.0,10.8773, +2016-09-01 00:00:00,,, diff --git a/sphinx-doc/scripts/make_doc_module.py b/sphinxdoc/scripts/make_doc_module.py similarity index 79% rename from sphinx-doc/scripts/make_doc_module.py rename to sphinxdoc/scripts/make_doc_module.py index e68178771a1895ab4463e221eba82752dde8cd22..6223e24f8378f1593b6dd0429dc6dc70bd745c85 100644 --- a/sphinx-doc/scripts/make_doc_module.py +++ b/sphinxdoc/scripts/make_doc_module.py @@ -139,9 +139,13 @@ def make_doc_module(targetpath, func_dict, doc_mod_structure): def make_doc_core(sphinxroot, func_dict, doc_mod_structure): - targetfolder = os.path.join(sphinxroot, "Core") + targetfolder = os.path.join(sphinxroot, "sphinxdoc/coredoc") coresource = os.path.join(sphinxroot, os.path.normpath("saqc/core/core.py")) + if os.path.isdir(targetfolder): + shutil.rmtree(targetfolder) + os.makedirs(targetfolder, exist_ok=True) + # parse real core.py with open(coresource) as f: corelines = f.readlines() @@ -163,7 +167,7 @@ def make_doc_core(sphinxroot, func_dict, doc_mod_structure): for doc_mod in [ d for d in doc_mod_structure.keys() if not re.search("_dcstring$", d) ]: - with open(os.path.join(targetfolder, f"Core.py"), "w+") as f: + with open(os.path.join(targetfolder, f"core.py"), "w+") as f: mod_string = [] mod_funcs = doc_mod_structure[doc_mod] for func in mod_funcs: @@ -188,6 +192,14 @@ def make_doc_core(sphinxroot, func_dict, doc_mod_structure): ) f.write(newcore) + with open(os.path.join(targetfolder, f"__init__.py"), "w+") as f: + init_content = [ + "# ! /usr/bin/env python", + "# -*- coding: utf-8 -*-", + "from sphinxdoc.coredoc.core import SaQC", + ] + f.write("\n".join(init_content)) + return 0 @@ -207,6 +219,31 @@ def makeModuleAPIs(modules, folder_path="moduleAPIs", pck_path="Functions"): pass +def makeModuleSummaries(modules, folder_path="funcSummaries"): + f_path = os.path.abspath(folder_path) + if os.path.isdir(f_path): + shutil.rmtree(f_path) + os.makedirs(f_path, exist_ok=True) + + for m in [m for m in modules.keys() if m.split("_")[-1] != "dcstring"]: + lines = [] + lines += [m] + lines += ["=" * len(m)] + lines += [""] + lines += [modules[m + "_dcstring"]] + lines += [""] + lines += [f".. currentmodule:: saqc", ""] + lines += [".. autosummary::", ""] + for func in modules[m]: + lines += [3 * " " + f"~SaQC.{func.split('.')[-1]}"] + + with open(os.path.join(f_path, f"{m}.rst"), "w") as f: + for l in lines: + f.write(l + "\n") + + pass + + @click.command() @click.option( "-p", @@ -216,50 +253,35 @@ def makeModuleAPIs(modules, folder_path="moduleAPIs", pck_path="Functions"): default="saqc/funcs", help="Relative path to the package to be documented (relative to sphinx root).", ) -@click.option( - "-t", - "--targetpath", - type=str, - required=True, - default="docs/intro_modules", - help="Output folder path (relative to sphinx root). Will be overridden if already existent.", -) @click.option( "-sr", "--sphinxroot", type=str, required=True, - default="..", + default="../..", help="Relative path to the sphinx root.", ) @click.option( - "-mo", - "--mode", + "-su", + "--summaries", type=str, required=True, - default="Functions", - help="either 'Functions' or 'module_doc' or 'registered_doc' (All but 'Functions' is deprecated and will be remove " - "soon).", + default="funcSummaries", + help="Target path for summaries.", ) -def main(pckpath, targetpath, sphinxroot, mode): +def main(pckpath, sphinxroot, summaries): root_path = os.path.abspath(sphinxroot) pkg_path = os.path.join(root_path, pckpath) - targetpath = os.path.join(root_path, targetpath) - coretrg = os.path.join(sphinxroot, "Core") + coretrg = os.path.join(sphinxroot, "sphinxdoc/coredoc") modules = [] # collect modules for _, modname, _ in pkgutil.walk_packages(path=[pkg_path], onerror=lambda x: None): modules.append(modname) - # clear target dir - if os.path.isdir(targetpath): - shutil.rmtree(targetpath) - os.makedirs(targetpath, exist_ok=True) - - if os.path.isdir(coretrg): - shutil.rmtree(coretrg) - os.makedirs(coretrg, exist_ok=True) + # if os.path.isdir(coretrg): + # shutil.rmtree(coretrg) + # os.makedirs(coretrg, exist_ok=True) # parse all the functions module_paths = [os.path.join(pkg_path, f"{m}.py") for m in modules] @@ -268,22 +290,16 @@ def main(pckpath, targetpath, sphinxroot, mode): zip([k + "_dcstring" for k in mod_dict.keys()], list(mod_dict.values())) ) func_dict = parse_func_dcstrings(module_paths) - if mode == "Functions": - # module docs - doc_struct = {m: [] for m in modules} - for dm in func_dict.keys(): - module = re.search("([^ .]*)\.[^ ]*$", dm).group(1) - doc_struct[module].append(dm) - makeModuleAPIs(list(doc_struct.keys())) - doc_struct.update(mod_dict) - make_doc_module(targetpath, func_dict, doc_struct) - - # complete docs - doc_mod_structure = {"saqc": [f for f in func_dict.keys()], "saqc_dcstring": ""} - makeModuleAPIs(["saqc"]) - make_doc_module(targetpath, func_dict, doc_mod_structure) - - make_doc_core(root_path, func_dict, doc_mod_structure) + + # module docs + doc_struct = {m: [] for m in modules} + for dm in func_dict.keys(): + module = re.search("([^ .]*)\.[^ ]*$", dm).group(1) + doc_struct[module].append(dm) + doc_struct.update(mod_dict) + makeModuleSummaries(doc_struct, summaries) + doc_mod_structure = {"saqc": [f for f in func_dict.keys()], "saqc_dcstring": ""} + make_doc_core(root_path, func_dict, doc_mod_structure) if __name__ == "__main__": diff --git a/sphinx-doc/scripts/make_doc_rst.py b/sphinxdoc/scripts/make_doc_rst.py similarity index 98% rename from sphinx-doc/scripts/make_doc_rst.py rename to sphinxdoc/scripts/make_doc_rst.py index b5f3cfb25fb5808db1aabf359de89b29f65c726c..e3084a69e3cd08cefdc14e14ee524d635736faa8 100644 --- a/sphinx-doc/scripts/make_doc_rst.py +++ b/sphinxdoc/scripts/make_doc_rst.py @@ -32,7 +32,7 @@ def parse_imports(path): "--targetpath", type=str, required=True, - default="sphinx-doc/internal_doc_rst", + default="sphinxdoc/internal_doc_rst", help="Output folder path (relative to sphinx root). Will be overridden if already existent.", ) @click.option( diff --git a/sphinx-doc/scripts/make_env_tab.py b/sphinxdoc/scripts/make_env_tab.py similarity index 98% rename from sphinx-doc/scripts/make_env_tab.py rename to sphinxdoc/scripts/make_env_tab.py index af92bcb06e0bbce22c70af284b8b02f7d4b5a69d..6f0914792bc8b8bc66d14642eb3a2af223a09193 100644 --- a/sphinx-doc/scripts/make_env_tab.py +++ b/sphinxdoc/scripts/make_env_tab.py @@ -22,7 +22,7 @@ import pickle "--targetpath", type=str, required=True, - default="sphinx-doc/environment", + default="sphinxdoc/environment", help="Output path to contain configEnv.rst (relative to sphinx root).", ) @click.option( diff --git a/sphinxdoc/scripts/modify_html_API.py b/sphinxdoc/scripts/modify_html_API.py new file mode 100644 index 0000000000000000000000000000000000000000..4e8208a18a69363f49d75b751349d9aedb77535c --- /dev/null +++ b/sphinxdoc/scripts/modify_html_API.py @@ -0,0 +1,43 @@ +import os +import click +import time + + +@click.command() +@click.option( + "-src", + "--source", + type=str, + required=True, + default="sphinxdoc.coredoc.SaQC", +) +@click.option( + "-trg", + "--target", + type=str, + required=True, + default="saqc.SaQC", +) +@click.option( + "-br", + "--builddir", + type=str, + required=True, + default="_build", + help="Relative path to the build dir.", +) +def main(source, target, builddir): + builddir = os.path.abspath(builddir) + apidir = os.path.join(builddir, os.path.normpath("html/_api")) + os.remove(os.path.join(apidir, target + ".html")) + with open(os.path.join(apidir, source + ".html"), "r") as f: + APIstring = f.read() + # APIstring = APIstring.replace('sphinxdoc.coredoc.core', 'saqc') + + APIstring = APIstring.replace(source, target) + with open(os.path.join(apidir, target + ".html"), "w+") as f: + f.write(APIstring) + + +if __name__ == "__main__": + main() diff --git a/tests/core/test_core.py b/tests/core/test_core.py index 5662ba2e5d5c973871f5574df46c01f8516d1fb3..a1e709507910850aa051194e728828ae31cc8bbd 100644 --- a/tests/core/test_core.py +++ b/tests/core/test_core.py @@ -158,3 +158,31 @@ def test_sourceTargetMultivariate(): return data, flags SaQC(data).flagMulti(field=data.columns, target=data.columns) + + +def test_sourceTargetMulti(): + data = initData(3) + flags = initFlagsLike(data) + fields = data.columns + targets = [f"target{i + 1}" for i in range(len(fields))] + + @register( + mask=["field"], + demask=["field"], + squeeze=["field"], + handles_target=False, + multivariate=True, + ) + def flagMulti(data, field, flags, target, **kwargs): + assert len(field) == len(target) + for src, trg in zip(field, target): + assert src in data + assert trg in data + assert src in flags + assert trg in flags + + assert (data[src] == data[trg]).all(axis=None) + assert (flags[src] == flags[trg]).all(axis=None) + return data, flags + + SaQC(data, flags).flagMulti(field=fields, target=targets) diff --git a/tests/core/test_reader.py b/tests/core/test_reader.py index a1ddc8c5784b96a7dcfe50b4d51f4fe849ee1ef4..d04d463a513a1f4ce2788071bfa234e2b87b87ce 100644 --- a/tests/core/test_reader.py +++ b/tests/core/test_reader.py @@ -8,7 +8,7 @@ import dios from pathlib import Path from saqc.core.reader import fromConfig, readFile -from saqc.core.register import FUNC_MAP, register, flagging +from saqc.core.register import FUNC_MAP, flagging from tests.common import initData, writeIO diff --git a/tests/funcs/test_functions.py b/tests/funcs/test_functions.py index ab8fa8f4985586b4b3f55ed2c6152464282eeaae..535fa632fc3697d9cf907027ff515e1a6a942b60 100644 --- a/tests/funcs/test_functions.py +++ b/tests/funcs/test_functions.py @@ -4,6 +4,7 @@ import dios import pandas as pd import numpy as np +import saqc from saqc.funcs.noise import flagByStatLowPass from saqc.constants import * @@ -11,9 +12,8 @@ from saqc.core import initFlagsLike from saqc.funcs.drift import ( flagDriftFromNorm, flagDriftFromReference, - flagDriftFromScaledNorm, ) -from saqc.funcs.outliers import flagCrossStatistic, flagRange +from saqc.funcs.outliers import flagRange from saqc.funcs.flagtools import flagManual, forceFlags, clearFlags from saqc.funcs.tools import dropField, copyField, maskTime from saqc.funcs.resampling import concatFlags @@ -171,24 +171,6 @@ def test_flagIsolated(data, field): assert flags_result[field].iloc[[3, 5, 13, 14]].all() -@pytest.mark.parametrize("dat", [pytest.lazy_fixture("course_2")]) -def test_flagCrossScoring(dat): - data1, characteristics = dat(initial_level=0, final_level=0, out_val=0) - data2, characteristics = dat(initial_level=0, final_level=0, out_val=10) - fields = ["data1", "data2"] - s1, s2 = data1.squeeze(), data2.squeeze() - s1 = pd.Series(data=s1.values, index=s1.index) - s2 = pd.Series(data=s2.values, index=s1.index) - data = dios.DictOfSeries([s1, s2], columns=["data1", "data2"]) - flags = initFlagsLike(data) - _, flags_result = flagCrossStatistic( - data, fields, flags, thresh=3, method=np.mean, flag=BAD - ) - for field in fields: - isflagged = flags_result[field] > UNFLAGGED - assert isflagged[characteristics["raise"]].all() - - def test_flagManual(data, field): flags = initFlagsLike(data) dat = data[field] @@ -272,44 +254,55 @@ def test_flagManual(data, field): @pytest.mark.parametrize("dat", [pytest.lazy_fixture("course_1")]) -def test_flagDriftFromNormal(dat): - data = dat(periods=200, peak_level=5, name="d1")[0] - data["d2"] = dat(periods=200, peak_level=10, name="d2")[0]["d2"] - data["d3"] = dat(periods=200, peak_level=100, name="d3")[0]["d3"] - data["d4"] = 3 + 4 * data["d1"] - data["d5"] = 3 + 4 * data["d1"] +def test_flagDriftFromNorm(dat): + data = dat(periods=200, peak_level=5, name="field1")[0] + data["field2"] = dat(periods=200, peak_level=10, name="field2")[0]["field2"] + data["field3"] = dat(periods=200, peak_level=100, name="field3")[0]["field3"] + + fields = ["field1", "field2", "field3"] flags = initFlagsLike(data) _, flags_norm = flagDriftFromNorm( data=data.copy(), - field=["d1", "d2", "d3"], + field=fields, flags=flags.copy(), freq="200min", spread=5, flag=BAD, ) + assert all(flags_norm["field3"] > UNFLAGGED) + + +@pytest.mark.parametrize("dat", [pytest.lazy_fixture("course_1")]) +def test_flagDriftFromReference(dat): + data = dat(periods=200, peak_level=5, name="field1")[0] + data["field2"] = dat(periods=200, peak_level=10, name="field2")[0]["field2"] + data["field3"] = dat(periods=200, peak_level=100, name="field3")[0]["field3"] + + fields = ["field1", "field2", "field3"] + + flags = initFlagsLike(data) _, flags_ref = flagDriftFromReference( data=data.copy(), - field=["d1", "d2", "d3"], + field=fields, flags=flags.copy(), - reference="d1", + reference="field1", freq="3D", thresh=20, flag=BAD, ) + assert all(flags_ref["field3"] > UNFLAGGED) - _, flags_scale = flagDriftFromScaledNorm( - data.copy(), - "dummy", - flags.copy(), - ["d1", "d3"], - ["d4", "d5"], - freq="3D", - thresh=20, - spread=5, - flag=BAD, + +def test_transferFlags(): + data = pd.DataFrame({"a": [1, 2], "b": [1, 2], "c": [1, 2]}) + qc = saqc.SaQC(data) + qc = qc.flagRange("a", max=1.5) + qc = qc.transferFlags(["a", "a"], ["b", "c"]) + assert np.all( + qc.flags["b"].values == np.array([saqc.constants.UNFLAGGED, saqc.constants.BAD]) + ) + assert np.all( + qc.flags["c"].values == np.array([saqc.constants.UNFLAGGED, saqc.constants.BAD]) ) - assert all(flags_norm["d3"] > UNFLAGGED) - assert all(flags_ref["d3"] > UNFLAGGED) - assert all(flags_scale["d3"] > UNFLAGGED) diff --git a/tests/funcs/test_generic_api_functions.py b/tests/funcs/test_generic_api_functions.py index c8eecb617f1ff4cf6e94647b20310fcb4b5ac3d5..91f41a67fdcf310aed6e85f876629d457bbff78a 100644 --- a/tests/funcs/test_generic_api_functions.py +++ b/tests/funcs/test_generic_api_functions.py @@ -8,6 +8,7 @@ from dios.dios.dios import DictOfSeries from saqc.constants import BAD, UNFLAGGED, FILTER_ALL from saqc.core.flags import Flags from saqc import SaQC +from saqc.core.register import _isflagged from saqc.lib.tools import toSequence from tests.common import initData @@ -18,6 +19,19 @@ def data(): return initData() +def test_emptyData(): + # test that things do not break with empty data sets + saqc = SaQC(data=pd.DataFrame({"x": [], "y": []})) + + saqc.flagGeneric("x", func=lambda x: x < 0) + assert saqc.data.empty + assert saqc.flags.empty + + saqc = saqc.processGeneric(field="x", target="y", func=lambda x: x + 2) + assert saqc.data.empty + assert saqc.flags.empty + + def test_writeTargetFlagGeneric(data): params = [ (["tmp"], lambda x, y: pd.Series(True, index=x.index.union(y.index))), @@ -116,6 +130,7 @@ def test_writeTargetProcGeneric(data): "func": func.__name__, "flag": BAD, "dfilter": dfilter, + "label": "generic", }, } saqc = SaQC( @@ -125,7 +140,12 @@ def test_writeTargetProcGeneric(data): ), ) res = saqc.processGeneric( - field=fields, target=targets, func=func, flag=BAD, dfilter=dfilter + field=fields, + target=targets, + func=func, + flag=BAD, + dfilter=dfilter, + label="generic", ) assert (expected_data == res.data[targets].squeeze()).all(axis=None) # check that new histories where created @@ -155,6 +175,7 @@ def test_overwriteFieldProcGeneric(data): "func": func.__name__, "flag": flag, "dfilter": dfilter, + "label": "generic", }, } @@ -165,7 +186,9 @@ def test_overwriteFieldProcGeneric(data): ), ) - res = saqc.processGeneric(field=fields, func=func, flag=flag, dfilter=dfilter) + res = saqc.processGeneric( + field=fields, func=func, flag=flag, dfilter=dfilter, label="generic" + ) assert (expected_data == res.data[fields].squeeze()).all(axis=None) # check that the histories got appended for field in fields: diff --git a/tests/funcs/test_spikes_detection.py b/tests/funcs/test_outier_detection.py similarity index 75% rename from tests/funcs/test_spikes_detection.py rename to tests/funcs/test_outier_detection.py index 9c951fc4d849d2a06288b2099f4277bb4c6e8157..6cc2a91c4f2e77e803a8c2f78802b5a345b7e4db 100644 --- a/tests/funcs/test_spikes_detection.py +++ b/tests/funcs/test_outier_detection.py @@ -11,6 +11,7 @@ from saqc.funcs.outliers import ( flagRaise, flagMVScores, flagByGrubbs, + flagCrossStatistics, ) from saqc.constants import * from saqc.core import initFlagsLike @@ -79,18 +80,25 @@ def test_flagSpikesLimitRaise(dat): # see test/functs/fixtures.py for the 'course_N' @pytest.mark.parametrize("dat", [pytest.lazy_fixture("course_3")]) -def test_flagMultivarScores(dat): +def test_flagMVScores(dat): + def _check(fields, flags, characteristics): + for field in fields: + isflagged = flags[field] > UNFLAGGED + assert isflagged[characteristics["raise"]].all() + assert not isflagged[characteristics["return"]].any() + assert not isflagged[characteristics["drop"]].any() + data1, characteristics = dat( periods=1000, initial_level=5, final_level=15, out_val=50 ) data2, characteristics = dat( periods=1000, initial_level=20, final_level=1, out_val=30 ) - fields = ["data1", "data2"] + fields = ["field1", "field2"] s1, s2 = data1.squeeze(), data2.squeeze() s1 = pd.Series(data=s1.values, index=s1.index) s2 = pd.Series(data=s2.values, index=s1.index) - data = dios.DictOfSeries([s1, s2], columns=["data1", "data2"]) + data = dios.DictOfSeries([s1, s2], columns=["field1", "field2"]) flags = initFlagsLike(data) _, flags_result = flagMVScores( data=data, @@ -101,11 +109,7 @@ def test_flagMultivarScores(dat): n=10, flag=BAD, ) - for field in fields: - isflagged = flags_result[field] > UNFLAGGED - assert isflagged[characteristics["raise"]].all() - assert not isflagged[characteristics["return"]].any() - assert not isflagged[characteristics["drop"]].any() + _check(fields, flags_result, characteristics) @pytest.mark.parametrize("dat", [pytest.lazy_fixture("course_3")]) @@ -124,3 +128,22 @@ def test_grubbs(dat): data, "data", flags, window=20, min_periods=15, flag=BAD ) assert np.all(result_flags["data"][char_dict["drop"]] > UNFLAGGED) + + +@pytest.mark.parametrize("dat", [pytest.lazy_fixture("course_2")]) +def test_flagCrossStatistics(dat): + data1, characteristics = dat(initial_level=0, final_level=0, out_val=0) + data2, characteristics = dat(initial_level=0, final_level=0, out_val=10) + fields = ["field1", "field2"] + s1, s2 = data1.squeeze(), data2.squeeze() + s1 = pd.Series(data=s1.values, index=s1.index) + s2 = pd.Series(data=s2.values, index=s1.index) + data = dios.DictOfSeries([s1, s2], columns=["field1", "field2"]) + flags = initFlagsLike(data) + + _, flags_result = flagCrossStatistics( + data, fields, flags, thresh=3, method=np.mean, flag=BAD + ) + for field in fields: + isflagged = flags_result[field] > UNFLAGGED + assert isflagged[characteristics["raise"]].all() diff --git a/tests/funcs/test_tools.py b/tests/funcs/test_tools.py index eb3daefa524309aff04c45082bd1be98e4624289..3686b2e7d657abca2cfc4b11db7f0809b4256f85 100644 --- a/tests/funcs/test_tools.py +++ b/tests/funcs/test_tools.py @@ -30,5 +30,5 @@ def test_makeFig(): d_saqc = d_saqc.plot(field="data", path=dummy_path, history="valid", stats=True) d_saqc = d_saqc.plot(field="data", path=dummy_path, history="complete") d_saqc = d_saqc.plot( - field="data", path=dummy_path, ax_kwargs={"ylim": "2000-10"}, stats=True + field="data", path=dummy_path, ax_kwargs={"ylabel": "data is data"}, stats=True )