diff --git a/.asf.yaml b/.asf.yaml
index 2f645d8c99ed..b78168cab4b7 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -17,8 +17,26 @@
# under the License.
#
+# Please refer https://cwiki.apache.org/confluence/display/INFRA/Git+-+.asf.yaml+features
+
github:
description: "Apache Pinot - A realtime distributed OLAP datastore"
homepage: https://pinot.apache.org/
labels:
- java
+ del_branch_on_merge: true
+ enabled_merge_buttons:
+ squash: true
+ merge: false
+ rebase: false
+ collaborators:
+ - sullis
+ - shenyu0127
+ - tibrewalpratik17
+ - abhioncbr
+ - zhtaoxiang
+ - shounakmk219
+ - itschrispeck
+ - soumitra-st
+ - swaminathanmanish
+ - yashmayya
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index d135c26b02cc..9719e1a53392 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -24,6 +24,7 @@ updates:
directory: "/"
schedule:
interval: "daily"
+ open-pull-requests-limit: 20
- package-ecosystem: "npm"
directory: "/pinot-controller/src/main/resources"
diff --git a/.github/workflows/build-multi-arch-pinot-docker-image.yml b/.github/workflows/build-multi-arch-pinot-docker-image.yml
new file mode 100644
index 000000000000..e3314bec9c12
--- /dev/null
+++ b/.github/workflows/build-multi-arch-pinot-docker-image.yml
@@ -0,0 +1,108 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+name: Pinot Multi-Arch Platform Docker Image Build and Publish
+
+on:
+ workflow_dispatch:
+ inputs:
+ gitUrl:
+ description: "The Pinot git repo to check out to build, use https."
+ default: "https://github.com/apache/pinot.git"
+ required: true
+ commit:
+ description: "The branch/commit to check out to build Pinot image."
+ default: "master"
+ required: true
+ dockerImageName:
+ description: "The docker image name, default to 'apachepinot/pinot'."
+ default: "apachepinot/pinot"
+ required: true
+ tags:
+ description: "Tags to push of the image, comma separated, e.g. tag1,tag2,tag3"
+ default: ""
+
+jobs:
+ generate-build-info:
+ name: Generate Build Info
+ runs-on: ubuntu-latest
+ outputs:
+ commit-id: ${{ steps.generate-build-info.outputs.commit-id }}
+ tags: ${{ steps.generate-build-info.outputs.tags }}
+ steps:
+ - uses: actions/checkout@v4
+ - name: Generate Build Info
+ id: generate-build-info
+ env:
+ PINOT_GIT_URL: ${{ github.event.inputs.gitUrl }}
+ PINOT_BRANCH: ${{ github.event.inputs.commit }}
+ TAGS: ${{ github.event.inputs.tags }}
+ run: |
+ .github/workflows/scripts/docker/.pinot_build_info_gen.sh
+ build-pinot-docker-image:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ arch: [ "amd64", "arm64" ]
+ base-image-tag: [ "11-amazoncorretto", "11-ms-openjdk" ]
+ name: Build Pinot Docker Image on ${{ matrix.arch }} with base image ${{ matrix.base-image-tag }}
+ needs: [ generate-build-info ]
+ steps:
+ - name: Login to DockerHub
+ uses: docker/login-action@v3
+ with:
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
+ - uses: docker/setup-qemu-action@v3
+ name: Set up QEMU
+ with:
+ platforms: linux/${{ matrix.arch }}
+ - uses: docker/setup-buildx-action@v3
+ name: Set up Docker Buildx
+ - uses: actions/checkout@v4
+ - name: Build and push the Docker image
+ env:
+ DOCKER_FILE_BASE_DIR: "docker/images/pinot"
+ DOCKER_IMAGE_NAME: ${{ github.event.inputs.dockerImageName }}
+ BUILD_PLATFORM: "linux/${{ matrix.arch }}"
+ BASE_IMAGE_TAG: ${{ matrix.base-image-tag }}
+ PINOT_GIT_URL: ${{ github.event.inputs.gitUrl }}
+ PINOT_BRANCH: "${{needs.generate-build-info.outputs.commit-id}}"
+ TAGS: "${{needs.generate-build-info.outputs.tags}}"
+ run: .github/workflows/scripts/docker/.pinot_single_platform_docker_image_build.sh
+ create-multi-arch-manifest:
+ name: Create Multi-Arch Manifest
+ runs-on: ubuntu-latest
+ needs: [ generate-build-info, build-pinot-docker-image ]
+ steps:
+ - name: Login to DockerHub
+ uses: docker/login-action@v3
+ with:
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
+ - uses: docker/setup-qemu-action@v3
+ name: Set up QEMU
+ - uses: docker/setup-buildx-action@v3
+ name: Set up Docker Buildx
+ - uses: actions/checkout@v4
+ - name: Create Multi-Arch Manifest
+ env:
+ TAGS: "${{needs.generate-build-info.outputs.tags}}"
+ BUILD_PLATFORM: "linux/arm64,linux/amd64"
+ BASE_IMAGE_TAGS: "11-amazoncorretto,11-ms-openjdk"
+ run: .github/workflows/scripts/docker/.pinot_multi_arch_docker_image_manifest_package.sh
diff --git a/.github/workflows/build-pinot-base-docker-image.yml b/.github/workflows/build-pinot-base-docker-image.yml
new file mode 100644
index 000000000000..e079fde1c304
--- /dev/null
+++ b/.github/workflows/build-pinot-base-docker-image.yml
@@ -0,0 +1,50 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+name: Pinot Base Docker Image Build and Publish
+
+on:
+ workflow_dispatch:
+ inputs: { }
+
+jobs:
+ build-pinot-build-docker-image:
+ name: Build Pinot Base Docker Image
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ baseImageType: [ "build", "runtime" ]
+ openJdkDist: [ "amazoncorretto", "ms-openjdk" ]
+ steps:
+ - name: Login to DockerHub
+ uses: docker/login-action@v3
+ with:
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
+ - uses: docker/setup-qemu-action@v3
+ name: Set up QEMU
+ - uses: docker/setup-buildx-action@v3
+ name: Set up Docker Buildx
+ - uses: actions/checkout@v4
+ - name: Build and push the Docker image
+ env:
+ OPEN_JDK_DIST: ${{ matrix.openJdkDist }}
+ BASE_IMAGE_TYPE: ${{ matrix.baseImageType }}
+ BUILD_PLATFORM: "linux/amd64,linux/arm64"
+ TAG: "11-${{ matrix.openJdkDist }}"
+ run: .github/workflows/scripts/docker/.pinot_base_docker_image_build_and_push.sh
diff --git a/.github/workflows/build-pinot-docker-image.yml b/.github/workflows/build-pinot-docker-image.yml
index 345440750e97..c21e8bbadd6e 100644
--- a/.github/workflows/build-pinot-docker-image.yml
+++ b/.github/workflows/build-pinot-docker-image.yml
@@ -47,15 +47,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Login to DockerHub
- uses: docker/login-action@v1
+ uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- - uses: docker/setup-qemu-action@v1
+ - uses: docker/setup-qemu-action@v3
name: Set up QEMU
- - uses: docker/setup-buildx-action@v1
+ - uses: docker/setup-buildx-action@v3
name: Set up Docker Buildx
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Build and push the Docker image
env:
DOCKER_FILE_BASE_DIR: "docker/images/pinot"
diff --git a/.github/workflows/build-presto-docker-image.yml b/.github/workflows/build-presto-docker-image.yml
index 7ae35253615d..d054074f1551 100644
--- a/.github/workflows/build-presto-docker-image.yml
+++ b/.github/workflows/build-presto-docker-image.yml
@@ -47,15 +47,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Login to DockerHub
- uses: docker/login-action@v1
+ uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- - uses: docker/setup-qemu-action@v1
+ - uses: docker/setup-qemu-action@v3
name: Set up QEMU
- - uses: docker/setup-buildx-action@v1
+ - uses: docker/setup-buildx-action@v3
name: Set up Docker Buildx
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Build and push the Docker image
env:
DOCKER_FILE_BASE_DIR: "docker/images/pinot-presto"
diff --git a/.github/workflows/build-superset-docker-image.yml b/.github/workflows/build-superset-docker-image.yml
index c0e871991691..9cc362d7c502 100644
--- a/.github/workflows/build-superset-docker-image.yml
+++ b/.github/workflows/build-superset-docker-image.yml
@@ -43,15 +43,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Login to DockerHub
- uses: docker/login-action@v1
+ uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- - uses: docker/setup-qemu-action@v1
+ - uses: docker/setup-qemu-action@v3
name: Set up QEMU
- - uses: docker/setup-buildx-action@v1
+ - uses: docker/setup-buildx-action@v3
name: Set up Docker Buildx
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Build and push the Docker image
env:
DOCKER_FILE_BASE_DIR: "docker/images/pinot-superset"
diff --git a/.github/workflows/pinot_compatibility_tests.yml b/.github/workflows/pinot_compatibility_tests.yml
index acb0b1974caa..ecbc2300e01e 100644
--- a/.github/workflows/pinot_compatibility_tests.yml
+++ b/.github/workflows/pinot_compatibility_tests.yml
@@ -36,11 +36,23 @@ jobs:
test_suite: [ "compatibility-verifier/sample-test-suite" ]
name: Pinot Compatibility Regression Testing against ${{ github.event.inputs.oldCommit }} and ${{ github.event.inputs.newCommit }} on ${{ matrix.test_suite }}
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
- name: Set up JDK 11
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v4
with:
java-version: 11
+ distribution: 'temurin'
+ cache: 'maven'
+ - name: Setup node
+ uses: actions/setup-node@v4
+ with:
+ node-version: v16.15.0
+ cache: 'npm'
+ cache-dependency-path: pinot-controller/src/main/resources/package-lock.json
+ - name: Install npm
+ run: |
+ npm install -g npm@8.5.5
+ npm --version
- name: Pinot Compatibility Regression Testing
if : ${{github.event_name == 'workflow_dispatch'}}
env:
@@ -50,7 +62,7 @@ jobs:
TEST_SUITE: ${{ matrix.test_suite }}
MAVEN_OPTS: >
-Xmx2G -DskipShade -DfailIfNoTests=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=25
- -Dmaven.wagon.http.retryHandler.count=3 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
+ -Dmaven.wagon.http.retryHandler.count=30 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
-XX:+IgnoreUnrecognizedVMOptions
--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
@@ -62,7 +74,7 @@ jobs:
if: always()
run: |
zip -1 -r artifacts.zip /tmp/compatibility-verifier/*
- - uses: actions/upload-artifact@v2
+ - uses: actions/upload-artifact@v4
name: Store compatibility verifier work directory
if: always()
with:
diff --git a/.github/workflows/pinot_multi_stage_query_engine_compatibility_tests.yml b/.github/workflows/pinot_multi_stage_query_engine_compatibility_tests.yml
new file mode 100644
index 000000000000..52b7773033de
--- /dev/null
+++ b/.github/workflows/pinot_multi_stage_query_engine_compatibility_tests.yml
@@ -0,0 +1,84 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+name: Pinot Multi-Stage Query Engine Compatibility Regression Test
+
+on:
+ workflow_dispatch:
+ inputs:
+ oldCommit:
+ description: "Git hash (or tag) for old commit. (required)"
+ required: true
+ newCommit:
+ description: "Git hash (or tag) for new commit. (required)"
+ required: true
+
+jobs:
+ compatibility-verifier:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ test_suite: [ "compatibility-verifier/multi-stage-query-engine-test-suite" ]
+ name: Pinot Multi-Stage Query Engine Compatibility Regression Testing against ${{ github.event.inputs.oldCommit }} and ${{ github.event.inputs.newCommit }} on ${{ matrix.test_suite }}
+ steps:
+ - uses: actions/checkout@v4
+ - name: Set up JDK 11
+ uses: actions/setup-java@v4
+ with:
+ java-version: 11
+ distribution: 'temurin'
+ cache: 'maven'
+ - name: Setup node
+ uses: actions/setup-node@v4
+ with:
+ node-version: v16.15.0
+ cache: 'npm'
+ cache-dependency-path: pinot-controller/src/main/resources/package-lock.json
+ - name: Install npm
+ run: |
+ npm install -g npm@8.5.5
+ npm --version
+ - name: Pinot Multi-Stage Query Engine Compatibility Regression Testing
+ if : ${{github.event_name == 'workflow_dispatch'}}
+ env:
+ OLD_COMMIT: ${{ github.event.inputs.oldCommit }}
+ NEW_COMMIT: ${{ github.event.inputs.newCommit }}
+ WORKING_DIR: /tmp/multi-stage-compatibility-verifier
+ TEST_SUITE: ${{ matrix.test_suite }}
+ MAVEN_OPTS: >
+ -Xmx2G -DskipShade -DfailIfNoTests=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=25
+ -Dmaven.wagon.http.retryHandler.count=30 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
+ -XX:+IgnoreUnrecognizedVMOptions
+ --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED
+ --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
+ --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED
+ --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED
+ --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
+ run: .github/workflows/scripts/.pinot_compatibility_verifier.sh
+ - name: Archive artifacts into zip
+ if: always()
+ run: |
+ zip -1 -r artifacts.zip /tmp/multi-stage-compatibility-verifier/*
+ - uses: actions/upload-artifact@v4
+ name: Store multi-stage compatibility verifier work directory
+ if: always()
+ with:
+ ## TODO: currently matrix.test_suite cannot be used as part of name due to invalid path character.
+ name: multi_stage_compatibility_verifier_work_dir
+ retention-days: 3
+ path: artifacts.zip
diff --git a/.github/workflows/pinot_tests.yml b/.github/workflows/pinot_tests.yml
index b3331fc7d446..ef2828d549b9 100644
--- a/.github/workflows/pinot_tests.yml
+++ b/.github/workflows/pinot_tests.yml
@@ -49,16 +49,20 @@ jobs:
runs-on: ubuntu-latest
name: Pinot Linter Test Set
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
- name: Set up JDK 11
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v4
with:
java-version: 11
+ distribution: 'temurin'
+ cache: 'maven'
- name: Linter Test
env:
+ GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
MAVEN_OPTS: >
-Xmx2G -DskipShade -DfailIfNoTests=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=25
- -Dmaven.wagon.http.retryHandler.count=3 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
+ -Dmaven.wagon.http.retryHandler.count=30 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
+ -B -ntp
-XX:+IgnoreUnrecognizedVMOptions
--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
@@ -70,17 +74,33 @@ jobs:
if: github.repository == 'apache/pinot'
runs-on: ubuntu-latest
strategy:
+ # Changed to false in order to improve coverage using unsafe buffers
+ fail-fast: false
matrix:
testset: [ 1, 2 ]
- name: Pinot Unit Test Set ${{ matrix.testset }}
+ java: [ 11, 21 ]
+ distribution: [ "temurin" ]
+ skip_bytebuffer: [false]
+ include:
+ - java: 21
+ testset: 1
+ distribution: "temurin"
+ skip_bytebuffer: true
+ - java: 21
+ testset: 2
+ distribution: "temurin"
+ skip_bytebuffer: true
+ name: Pinot Unit Test Set ${{ matrix.testset }} (${{matrix.distribution}}-${{matrix.java}}) with skip bytebuffers:${{matrix.skip_bytebuffer}}
steps:
- - uses: actions/checkout@v2
- - name: Set up JDK 11
- uses: actions/setup-java@v1
+ - uses: actions/checkout@v4
+ - name: Set up JDK ${{ matrix.java }}-${{ matrix.distribution }}
+ uses: actions/setup-java@v4
with:
- java-version: 11
+ java-version: ${{ matrix.java }}
+ distribution: ${{ matrix.distribution }}
+ cache: 'maven'
# Step that does that actual cache save and restore
- - uses: actions/cache@v3
+ - uses: actions/cache@v4
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 10
with:
@@ -88,24 +108,45 @@ jobs:
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
+ - name: Build Project
+ env:
+ RUN_INTEGRATION_TESTS: false
+ RUN_TEST_SET: ${{ matrix.testset }}
+ GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
+ MAVEN_OPTS: >
+ -Xmx2G -DskipShade -DfailIfNoTests=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=25
+ -Dmaven.wagon.http.retryHandler.count=30 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
+ -B -ntp
+ -XX:+IgnoreUnrecognizedVMOptions
+ --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED
+ --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
+ --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED
+ --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED
+ --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
+ run: .github/workflows/scripts/pr-tests/.pinot_tests_build.sh
- name: Unit Test
env:
RUN_INTEGRATION_TESTS: false
RUN_TEST_SET: ${{ matrix.testset }}
+ PINOT_OFFHEAP_SKIP_BYTEBUFFER: ${{ matrix.skip_bytebuffer }}
+ GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
MAVEN_OPTS: >
-Xmx2G -DskipShade -DfailIfNoTests=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=25
- -Dmaven.wagon.http.retryHandler.count=3 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
+ -Dmaven.wagon.http.retryHandler.count=30 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
+ -B -ntp
-XX:+IgnoreUnrecognizedVMOptions
--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
- run: .github/workflows/scripts/.pinot_test.sh
+ run: .github/workflows/scripts/pr-tests/.pinot_tests_unit.sh
- name: Upload coverage to Codecov
- uses: codecov/codecov-action@v3
+ uses: codecov/codecov-action@v4
+ continue-on-error: true
+ timeout-minutes: 5
with:
- flags: unittests${{ matrix.testset }}
+ flags: unittests,unittests${{ matrix.testset }},${{matrix.distribution}},java-${{matrix.java}},skip-bytebuffers-${{matrix.skip_bytebuffer}}
name: codecov-unit-tests
fail_ci_if_error: false
verbose: true
@@ -114,17 +155,33 @@ jobs:
if: github.repository == 'apache/pinot'
runs-on: ubuntu-latest
strategy:
+ # Changed to false in order to improve coverage using unsafe buffers
+ fail-fast: false
matrix:
testset: [ 1, 2 ]
- name: Pinot Integration Test Set ${{ matrix.testset }}
+ java: [ 11, 21 ]
+ distribution: [ "temurin" ]
+ skip_bytebuffer: [false]
+ include:
+ - java: 21
+ testset: 1
+ distribution: "temurin"
+ skip_bytebuffer: true
+ - java: 21
+ testset: 2
+ distribution: "temurin"
+ skip_bytebuffer: true
+ name: Pinot Integration Test Set ${{ matrix.testset }} (${{matrix.distribution}}-${{matrix.java}}) with skip bytebuffers:${{matrix.skip_bytebuffer}}
steps:
- - uses: actions/checkout@v2
- - name: Set up JDK 11
- uses: actions/setup-java@v1
+ - uses: actions/checkout@v4
+ - name: Set up JDK ${{ matrix.java }}-${{ matrix.distribution }}
+ uses: actions/setup-java@v4
with:
- java-version: 11
+ java-version: ${{ matrix.java }}
+ distribution: ${{ matrix.distribution }}
+ cache: 'maven'
# Step that does that actual cache save and restore
- - uses: actions/cache@v3
+ - uses: actions/cache@v4
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 10
with:
@@ -132,44 +189,107 @@ jobs:
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
+ - name: Build Project
+ env:
+ RUN_INTEGRATION_TESTS: true
+ GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
+ MAVEN_OPTS: >
+ -Xmx2G -DskipShade -DfailIfNoTests=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=25
+ -Dmaven.wagon.http.retryHandler.count=30 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
+ -B -ntp
+ -XX:+IgnoreUnrecognizedVMOptions
+ --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED
+ --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
+ --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED
+ --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED
+ --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
+ run: .github/workflows/scripts/pr-tests/.pinot_tests_build.sh
- name: Integration Test
env:
RUN_INTEGRATION_TESTS: true
RUN_TEST_SET: ${{ matrix.testset }}
+ PINOT_OFFHEAP_SKIP_BYTEBUFFER: ${{ matrix.skip_bytebuffer }}
+ GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
MAVEN_OPTS: >
-Xmx2G -DskipShade -DfailIfNoTests=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=25
- -Dmaven.wagon.http.retryHandler.count=3 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
+ -Dmaven.wagon.http.retryHandler.count=30 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
+ -B -ntp
-XX:+IgnoreUnrecognizedVMOptions
--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
- run: .github/workflows/scripts/.pinot_test.sh
+ run: .github/workflows/scripts/pr-tests/.pinot_tests_integration.sh
- name: Upload coverage to Codecov
- uses: codecov/codecov-action@v3
+ uses: codecov/codecov-action@v4
+ continue-on-error: true
+ timeout-minutes: 5
with:
- flags: integration${{ matrix.testset }}
+ flags: integration,integration${{ matrix.testset }},${{matrix.distribution}},java-${{matrix.java}},skip-bytebuffers-${{matrix.skip_bytebuffer}}
name: codecov-integration-tests
fail_ci_if_error: false
verbose: true
+ - name: Custom Integration Test
+ if : ${{ matrix.testset == 1 }}
+ env:
+ RUN_INTEGRATION_TESTS: true
+ RUN_TEST_SET: ${{ matrix.testset }}
+ GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
+ MAVEN_OPTS: >
+ -Xmx2G -DskipShade -DfailIfNoTests=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=25
+ -Dmaven.wagon.http.retryHandler.count=30 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
+ -B -ntp
+ -XX:+IgnoreUnrecognizedVMOptions
+ --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED
+ --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
+ --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED
+ --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED
+ --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
+ run: .github/workflows/scripts/pr-tests/.pinot_tests_custom_integration.sh
+ - name: Upload coverage to Codecov
+ if : ${{ matrix.testset == 1 }}
+ uses: codecov/codecov-action@v4
+ continue-on-error: true
+ timeout-minutes: 5
+ with:
+ flags: integration,custom-integration${{ matrix.testset }},${{matrix.distribution}},java-${{matrix.java}}
+ name: codecov-custom-integration-tests
+ fail_ci_if_error: false
+ verbose: true
compatibility-verifier:
if: github.repository == 'apache/pinot'
runs-on: ubuntu-latest
strategy:
+ # Changed to false in order to improve coverage using unsafe buffers
+ fail-fast: false
matrix:
test_suite: [ "compatibility-verifier/sample-test-suite" ]
- old_commit: [ "release-0.9.0", "master" ]
+ old_commit: [
+ "release-1.0.0", "release-1.1.0", "master"
+ ]
name: Pinot Compatibility Regression Testing against ${{ matrix.old_commit }} on ${{ matrix.test_suite }}
steps:
- - uses: actions/checkout@v2
- - name: Set up JDK 1.8
- uses: actions/setup-java@v1
+ - uses: actions/checkout@v4
+ - name: Set up JDK 11
+ uses: actions/setup-java@v4
with:
- java-version: 1.8
+ java-version: 11
+ distribution: 'temurin'
+ cache: 'maven'
+ - name: Setup node
+ uses: actions/setup-node@v4
+ with:
+ node-version: v16.15.0
+ cache: 'npm'
+ cache-dependency-path: pinot-controller/src/main/resources/package-lock.json
+ - name: Install npm
+ run: |
+ npm install -g npm@8.5.5
+ npm --version
# Step that does that actual cache save and restore
- - uses: actions/cache@v3
+ - uses: actions/cache@v4
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 10
with:
@@ -184,7 +304,8 @@ jobs:
TEST_SUITE: ${{ matrix.test_suite }}
MAVEN_OPTS: >
-Xmx2G -DskipShade -DfailIfNoTests=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=25
- -Dmaven.wagon.http.retryHandler.count=3 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
+ -Dmaven.wagon.http.retryHandler.count=30 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
+ -B -ntp
-XX:+IgnoreUnrecognizedVMOptions
--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
@@ -193,23 +314,38 @@ jobs:
--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
run: .github/workflows/scripts/.pinot_compatibility_verifier.sh
- quickstarts:
+ multi-stage-compatibility-verifier:
if: github.repository == 'apache/pinot'
runs-on: ubuntu-latest
strategy:
+ # Changed to false in order to improve coverage using unsafe buffers
+ fail-fast: false
matrix:
- # We only test LTS Java versions
- # TODO: add JDK 17 once ready. see: https://github.com/apache/pinot/issues/8529
- java: [ 1.8, 11, 15 ]
- name: Pinot Quickstart on JDK ${{ matrix.java }}
+ test_suite: [ "compatibility-verifier/multi-stage-query-engine-test-suite" ]
+ old_commit: [
+ "master"
+ ]
+ name: Pinot Multi-Stage Query Engine Compatibility Regression Testing against ${{ matrix.old_commit }} on ${{ matrix.test_suite }}
steps:
- - uses: actions/checkout@v2
- - name: Set up JDK ${{ matrix.java }}
- uses: actions/setup-java@v1
+ - uses: actions/checkout@v4
+ - name: Set up JDK 11
+ uses: actions/setup-java@v4
with:
- java-version: ${{ matrix.java }}
+ java-version: 11
+ distribution: 'temurin'
+ cache: 'maven'
+ - name: Setup node
+ uses: actions/setup-node@v4
+ with:
+ node-version: v16.15.0
+ cache: 'npm'
+ cache-dependency-path: pinot-controller/src/main/resources/package-lock.json
+ - name: Install npm
+ run: |
+ npm install -g npm@8.5.5
+ npm --version
# Step that does that actual cache save and restore
- - uses: actions/cache@v3
+ - uses: actions/cache@v4
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 10
with:
@@ -217,38 +353,57 @@ jobs:
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- - name: Quickstart on JDK ${{ matrix.java }}
- run: .github/workflows/scripts/.pinot_quickstart.sh
-
- presto-driver-build:
- if: github.repository == 'apache/pinot'
- runs-on: ubuntu-latest
- name: Build Presto Pinot Driver
- steps:
- - uses: actions/checkout@v2
- - name: Set up JDK 11
- uses: actions/setup-java@v1
- with:
- java-version: 11
- - name: Build presto pinot driver with JDK 11
+ - name: Pinot Multi-Stage Query Engine Compatibility Regression Testing
env:
+ OLD_COMMIT: ${{ matrix.old_commit }}
+ WORKING_DIR: /tmp/multi-stage-compatibility-verifier
+ TEST_SUITE: ${{ matrix.test_suite }}
MAVEN_OPTS: >
- -Xmx2G -DfailIfNoTests=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=25
- -Dmaven.wagon.http.retryHandler.count=3 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
+ -Xmx2G -DskipShade -DfailIfNoTests=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=25
+ -Dmaven.wagon.http.retryHandler.count=30 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
+ -B -ntp
-XX:+IgnoreUnrecognizedVMOptions
--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
- run: |
- mvn clean install -DskipTests -Ppresto-driver -am -B -pl ':presto-pinot-driver' -T 16 || exit 1
- - name: Set up JDK 8
- uses: actions/setup-java@v1
+ run: .github/workflows/scripts/.pinot_compatibility_verifier.sh
+
+ quickstarts:
+ if: github.repository == 'apache/pinot'
+ runs-on: ubuntu-latest
+ strategy:
+ # Changed to false in order to improve coverage using unsafe buffers
+ fail-fast: false
+ matrix:
+ java: [ 11, 21 ]
+ distribution: [ "temurin" ]
+ skip_bytebuffer: [false]
+ include:
+ - java: 21
+ distribution: "temurin"
+ skip_bytebuffer: true
+ name: Pinot Quickstart on JDK ${{ matrix.java }}-${{ matrix.distribution }} with skip bytebuffers:${{matrix.skip_bytebuffer}}
+ steps:
+ - uses: actions/checkout@v4
+ - name: Set up JDK ${{ matrix.java }}
+ uses: actions/setup-java@v4
with:
- java-version: 8
- - name: Build presto pinot driver with JDK 8
+ java-version: ${{ matrix.java }}
+ distribution: ${{ matrix.distribution }}
+ cache: 'maven'
+ # Step that does that actual cache save and restore
+ - uses: actions/cache@v4
env:
- MAVEN_OPTS: -Xmx2G -DfailIfNoTests=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=25 -Dmaven.wagon.http.retryHandler.count=3 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
- run: |
- mvn clean install -DskipTests -Ppresto-driver -am -B -pl ':presto-pinot-driver' -Djdk.version=8 -T 16 || exit 1
+ SEGMENT_DOWNLOAD_TIMEOUT_MINS: 10
+ GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
+ with:
+ path: ~/.m2/repository
+ key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
+ restore-keys: |
+ ${{ runner.os }}-maven-
+ - name: Quickstart on JDK ${{ matrix.java }}
+ env:
+ PINOT_OFFHEAP_SKIP_BYTEBUFFER: ${{ matrix.skip_bytebuffer }}
+ run: .github/workflows/scripts/.pinot_quickstart.sh
diff --git a/.github/workflows/pinot_vuln_check.yml b/.github/workflows/pinot_vuln_check.yml
index f3c8c3e08400..b4924d3bc848 100644
--- a/.github/workflows/pinot_vuln_check.yml
+++ b/.github/workflows/pinot_vuln_check.yml
@@ -37,20 +37,17 @@ jobs:
name: Verify Docker Image
runs-on: ubuntu-latest
steps:
- - uses: docker/setup-qemu-action@v1
+ - uses: docker/setup-qemu-action@v3
name: Set up QEMU
- - uses: docker/setup-buildx-action@v1
- name: Set up Docker Buildx
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Build the Docker image
env:
DOCKER_FILE_BASE_DIR: "docker/images/pinot"
DOCKER_IMAGE_NAME: "apachepinot/pinot"
- BUILD_PLATFORM: "linux/amd64"
PINOT_GIT_URL: ${{ github.event.inputs.gitUrl }}
PINOT_BRANCH: ${{ env.GITHUB_REF }}
- TAGS: ${{ github.sha }}
- run: .github/workflows/scripts/docker/.pinot_docker_image_build.sh
+ PINOT_SHA: ${{ github.sha }}
+ run: .github/workflows/scripts/.pinot_vuln_check.sh
- name: Run Trivy vulnerability scanner (sarif)
uses: aquasecurity/trivy-action@master
@@ -61,7 +58,8 @@ jobs:
output: 'trivy-results.sarif'
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'
+ timeout: '10m'
- name: Upload Trivy scan results to GitHub Security tab
- uses: github/codeql-action/upload-sarif@v2
+ uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results.sarif'
diff --git a/.github/workflows/scripts/.pinot_compatibility_verifier.sh b/.github/workflows/scripts/.pinot_compatibility_verifier.sh
index 0897eacdd809..93789ce67ca8 100755
--- a/.github/workflows/scripts/.pinot_compatibility_verifier.sh
+++ b/.github/workflows/scripts/.pinot_compatibility_verifier.sh
@@ -41,17 +41,49 @@ echo " https://packages.confluent.io/maven/">> ${SETTINGS_FILE}
echo " false">> ${SETTINGS_FILE}
echo " ">> ${SETTINGS_FILE}
echo " ">> ${SETTINGS_FILE}
+
+echo " ">> ${SETTINGS_FILE}
+echo " ">> ${SETTINGS_FILE}
+echo " central">> ${SETTINGS_FILE}
+echo " ">> ${SETTINGS_FILE}
+echo " ">> ${SETTINGS_FILE}
+echo " ">> ${SETTINGS_FILE}
+echo " 120000">> ${SETTINGS_FILE}
+echo " 120000">> ${SETTINGS_FILE}
+echo " 3">> ${SETTINGS_FILE}
+echo " ">> ${SETTINGS_FILE}
+echo " ">> ${SETTINGS_FILE}
+echo " ">> ${SETTINGS_FILE}
+echo " ">> ${SETTINGS_FILE}
+echo " ">> ${SETTINGS_FILE}
+
echo "">> ${SETTINGS_FILE}
# PINOT_MAVEN_OPTS is used to provide additional maven options to the checkoutAndBuild.sh command
export PINOT_MAVEN_OPTS="-s $(pwd)/${SETTINGS_FILE}"
-if [ -z "$newerCommit" ]; then
- echo "Running compatibility regression test against \"${olderCommit}\""
+# Compare commit hash for compatibility verification
+git fetch --all
+NEW_COMMIT_HASH=`git log -1 --pretty=format:'%h' HEAD`
+if [ ! -z "${NEW_COMMIT}" ]; then
+ NEW_COMMIT_HASH=`git log -1 --pretty=format:'%h' ${NEW_COMMIT}`
+fi
+OLD_COMMIT_HASH=`git log -1 --pretty=format:'%h' ${OLD_COMMIT}`
+if [ $? -ne 0 ]; then
+ echo "Failed to get commit hash for commit: \"${OLD_COMMIT}\""
+ OLD_COMMIT_HASH=`git log -1 --pretty=format:'%h' origin/${OLD_COMMIT}`
+fi
+if [ "${NEW_COMMIT_HASH}" == "${OLD_COMMIT_HASH}" ]; then
+ echo "No changes between old commit: \"${OLD_COMMIT}\" and new commit: \"${NEW_COMMIT}\""
+ exit 0
+fi
+
+if [ -z "${NEW_COMMIT}" ]; then
+ echo "Running compatibility regression test against \"${OLD_COMMIT}\""
compatibility-verifier/checkoutAndBuild.sh -w $WORKING_DIR -o $OLD_COMMIT
else
- echo "Running compatibility regression test against \"${olderCommit}\" and \"${newerCommit}\""
- compatibility-verifier/checkoutAndBuild.sh -w $WORKING_DIR -o $OLD_COMMIT -n $NEW_OLD_COMMIT
+ echo "Running compatibility regression test against \"${OLD_COMMIT}\" and \"${NEW_COMMIT}\""
+ compatibility-verifier/checkoutAndBuild.sh -w $WORKING_DIR -o $OLD_COMMIT -n $NEW_COMMIT
fi
compatibility-verifier/compCheck.sh -w $WORKING_DIR -t $TEST_SUITE
diff --git a/.github/workflows/scripts/.pinot_linter.sh b/.github/workflows/scripts/.pinot_linter.sh
index 90dd8a7d6926..ef4ba7a5f3d2 100755
--- a/.github/workflows/scripts/.pinot_linter.sh
+++ b/.github/workflows/scripts/.pinot_linter.sh
@@ -26,8 +26,8 @@ ifconfig
netstat -i
-mvn license:check || exit 1
-mvn checkstyle:check || exit 1
-mvn spotless:check || exit 1
-mvn enforcer:enforce || exit 1
+mvn -B -ntp -T1C license:check || exit 1
+mvn -B -ntp -T1C checkstyle:check || exit 1
+mvn -B -ntp -T1C spotless:check || exit 1
+mvn -B -ntp -T1C enforcer:enforce || exit 1
diff --git a/.github/workflows/scripts/.pinot_quickstart.sh b/.github/workflows/scripts/.pinot_quickstart.sh
index f27ecc8dcfd3..fb2ebae6322a 100755
--- a/.github/workflows/scripts/.pinot_quickstart.sh
+++ b/.github/workflows/scripts/.pinot_quickstart.sh
@@ -64,14 +64,11 @@ jdk_version() {
JAVA_VER="$(jdk_version)"
# Build
+echo "Building Pinot to JAVA 11 source code Using JDK ${JAVA_VER}"
PASS=0
for i in $(seq 1 2)
do
- if [ "$JAVA_VER" -gt 11 ] ; then
- mvn clean install -B -DskipTests=true -Pbin-dist -Dmaven.javadoc.skip=true -Djdk.version=11
- else
- mvn clean install -B -DskipTests=true -Pbin-dist -Dmaven.javadoc.skip=true -Djdk.version=${JAVA_VER}
- fi
+ mvn clean install -B -ntp -T1C -DskipTests -Pbin-dist -Dmaven.javadoc.skip=true -Djdk.version=11
if [ $? -eq 0 ]; then
PASS=1
break;
@@ -87,6 +84,7 @@ cd "${DIST_BIN_DIR}"
# Test standalone pinot. Configure JAVA_OPTS for smaller memory, and don't use System.exit
export JAVA_OPTS="-Xms1G -Dlog4j2.configurationFile=conf/log4j2.xml"
+
bin/pinot-admin.sh StartZookeeper &
ZK_PID=$!
sleep 10
@@ -119,6 +117,12 @@ if [ $? -ne 0 ]; then
exit 1
fi
+bin/pinot-admin.sh AddTable -tableConfigFile examples/batch/dimBaseballTeams/dimBaseballTeams_offline_table_config.json -schemaFile examples/batch/dimBaseballTeams/dimBaseballTeams_schema.json -exec
+if [ $? -ne 0 ]; then
+ echo 'Failed to create table dimBaseballTeams.'
+ exit 1
+fi
+
# Ingest Data
d=`pwd`
INSERT_INTO_RES=`curl -X POST --header 'Content-Type: application/json' -d "{\"sql\":\"INSERT INTO baseballStats FROM FILE '${d}/examples/batch/baseballStats/rawdata'\",\"trace\":false}" http://localhost:8099/query/sql`
@@ -128,8 +132,17 @@ if [ $? -ne 0 ]; then
fi
PASS=0
+
+INSERT_INTO_RES=`curl -X POST --header 'Content-Type: application/json' -d "{\"sql\":\"INSERT INTO dimBaseballTeams FROM FILE '${d}/examples/batch/dimBaseballTeams/rawdata'\",\"trace\":false}" http://localhost:8099/query/sql`
+if [ $? -ne 0 ]; then
+ echo 'Failed to ingest data for table baseballStats.'
+ exit 1
+fi
+PASS=0
+
# Wait for 10 Seconds for table to be set up, then query the total count.
sleep 10
+# Validate V1 query count(*) result
for i in $(seq 1 150)
do
QUERY_RES=`curl -X POST --header 'Accept: application/json' -d '{"sql":"select count(*) from baseballStats limit 1","trace":false}' http://localhost:8099/query/sql`
@@ -143,6 +156,38 @@ do
sleep 2
done
+PASS=0
+
+# Validate V2 query count(*) result
+for i in $(seq 1 150)
+do
+ QUERY_RES=`curl -X POST --header 'Accept: application/json' -d '{"sql":"SET useMultistageEngine=true; select count(*) from baseballStats limit 1","trace":false}' http://localhost:8099/query/sql`
+ if [ $? -eq 0 ]; then
+ COUNT_STAR_RES=`echo "${QUERY_RES}" | jq '.resultTable.rows[0][0]'`
+ if [[ "${COUNT_STAR_RES}" =~ ^[0-9]+$ ]] && [ "${COUNT_STAR_RES}" -eq 97889 ]; then
+ PASS=1
+ break
+ fi
+ fi
+ sleep 2
+done
+
+PASS=0
+
+# Validate V2 join query results
+for i in $(seq 1 150)
+do
+ QUERY_RES=`curl -X POST --header 'Accept: application/json' -d '{"sql":"SET useMultistageEngine=true;SELECT a.playerName, a.teamID, b.teamName FROM baseballStats_OFFLINE AS a JOIN dimBaseballTeams_OFFLINE AS b ON a.teamID = b.teamID LIMIT 10","trace":false}' http://localhost:8099/query/sql`
+ if [ $? -eq 0 ]; then
+ RES_0=`echo "${QUERY_RES}" | jq '.resultTable.rows[0][0]'`
+ if [[ "${RES_0}" = "\"David Allan\"" ]]; then
+ PASS=1
+ break
+ fi
+ fi
+ sleep 2
+done
+
cleanup "${PINOT_PID}"
cleanup "${ZK_PID}"
if [ "${PASS}" -eq 0 ]; then
@@ -150,8 +195,8 @@ if [ "${PASS}" -eq 0 ]; then
exit 1
fi
-# Test quick-start-batch
-bin/quick-start-batch.sh &
+# Test quick-start-multi-stage
+bin/pinot-admin.sh QuickStart -type MULTI_STAGE &
PID=$!
# Print the JVM settings
@@ -174,6 +219,38 @@ do
sleep 2
done
+PASS=0
+
+# Validate V2 query count(*) result
+for i in $(seq 1 150)
+do
+ QUERY_RES=`curl -X POST --header 'Accept: application/json' -d '{"sql":"SET useMultistageEngine=true; select count(*) from baseballStats limit 1","trace":false}' http://localhost:8000/query/sql`
+ if [ $? -eq 0 ]; then
+ COUNT_STAR_RES=`echo "${QUERY_RES}" | jq '.resultTable.rows[0][0]'`
+ if [[ "${COUNT_STAR_RES}" =~ ^[0-9]+$ ]] && [ "${COUNT_STAR_RES}" -eq 97889 ]; then
+ PASS=1
+ break
+ fi
+ fi
+ sleep 2
+done
+
+PASS=0
+
+# Validate V2 join query results
+for i in $(seq 1 150)
+do
+ QUERY_RES=`curl -X POST --header 'Accept: application/json' -d '{"sql":"SET useMultistageEngine=true;SELECT a.playerName, a.teamID, b.teamName FROM baseballStats_OFFLINE AS a JOIN dimBaseballTeams_OFFLINE AS b ON a.teamID = b.teamID LIMIT 10","trace":false}' http://localhost:8000/query/sql`
+ if [ $? -eq 0 ]; then
+ RES_0=`echo "${QUERY_RES}" | jq '.resultTable.rows[0][0]'`
+ if [[ ${RES_0} = "\"David Allan\"" ]]; then
+ PASS=1
+ break
+ fi
+ fi
+ sleep 2
+done
+
cleanup "${PID}"
if [ "${PASS}" -eq 0 ]; then
echo 'Batch Quickstart failed: Cannot get correct result for count star query.'
@@ -181,42 +258,41 @@ if [ "${PASS}" -eq 0 ]; then
fi
# Test quick-start-streaming
-# TODO: Streaming test is disabled because Meetup RSVP stream is retired. Find a replacement and re-enable this test.
-#bin/quick-start-streaming.sh &
-#PID=$!
-#
-#PASS=0
-#RES_1=0
-#
-## Wait for 1 minute for table to be set up, then at most 5 minutes to reach the desired state
-#sleep 60
-#for i in $(seq 1 150)
-#do
-# QUERY_RES=`curl -X POST --header 'Accept: application/json' -d '{"sql":"select count(*) from meetupRsvp limit 1","trace":false}' http://localhost:8000/query/sql`
-# if [ $? -eq 0 ]; then
-# COUNT_STAR_RES=`echo "${QUERY_RES}" | jq '.resultTable.rows[0][0]'`
-# if [[ "${COUNT_STAR_RES}" =~ ^[0-9]+$ ]] && [ "${COUNT_STAR_RES}" -gt 0 ]; then
-# if [ "${RES_1}" -eq 0 ]; then
-# RES_1="${COUNT_STAR_RES}"
-# continue
-# elif [ "${COUNT_STAR_RES}" -gt "${RES_1}" ]; then
-# PASS=1
-# break
-# fi
-# fi
-# fi
-# sleep 2
-#done
-#
-#cleanup "${PID}"
-#if [ "${PASS}" -eq 0 ]; then
-# if [ "${RES_1}" -eq 0 ]; then
-# echo 'Streaming Quickstart test failed: Cannot get correct result for count star query.'
-# exit 1
-# fi
-# echo 'Streaming Quickstart test failed: Cannot get incremental counts for count star query.'
-# exit 1
-#fi
+bin/quick-start-streaming.sh &
+PID=$!
+
+PASS=0
+RES_1=0
+
+# Wait for 1 minute for table to be set up, then at most 5 minutes to reach the desired state
+sleep 60
+for i in $(seq 1 150)
+do
+ QUERY_RES=`curl -X POST --header 'Accept: application/json' -d '{"sql":"select count(*) from meetupRsvp limit 1","trace":false}' http://localhost:8000/query/sql`
+ if [ $? -eq 0 ]; then
+ COUNT_STAR_RES=`echo "${QUERY_RES}" | jq '.resultTable.rows[0][0]'`
+ if [[ "${COUNT_STAR_RES}" =~ ^[0-9]+$ ]] && [ "${COUNT_STAR_RES}" -gt 0 ]; then
+ if [ "${RES_1}" -eq 0 ]; then
+ RES_1="${COUNT_STAR_RES}"
+ continue
+ elif [ "${COUNT_STAR_RES}" -gt "${RES_1}" ]; then
+ PASS=1
+ break
+ fi
+ fi
+ fi
+ sleep 2
+done
+
+cleanup "${PID}"
+if [ "${PASS}" -eq 0 ]; then
+ if [ "${RES_1}" -eq 0 ]; then
+ echo 'Streaming Quickstart test failed: Cannot get correct result for count star query.'
+ exit 1
+ fi
+ echo 'Streaming Quickstart test failed: Cannot get incremental counts for count star query.'
+ exit 1
+fi
# Test quick-start-hybrid
bin/quick-start-hybrid.sh &
diff --git a/.github/workflows/scripts/.pinot_test.sh b/.github/workflows/scripts/.pinot_test.sh
deleted file mode 100755
index d88414583c60..000000000000
--- a/.github/workflows/scripts/.pinot_test.sh
+++ /dev/null
@@ -1,86 +0,0 @@
-#!/bin/bash -x
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-
-# Java version
-java -version
-
-# Check network
-ifconfig
-netstat -i
-
-if [ "$RUN_INTEGRATION_TESTS" != false ]; then
- # Integration Tests
- mvn clean install -DskipTests -am -B -pl 'pinot-integration-tests' -T 16 || exit 1
- if [ "$RUN_TEST_SET" == "1" ]; then
- mvn test -am -B \
- -pl 'pinot-integration-tests' \
- -Dtest='C*Test,L*Test,M*Test,R*Test,S*Test' \
- -P github-actions,integration-tests-only && exit 0 || exit 1
- fi
- if [ "$RUN_TEST_SET" == "2" ]; then
- mvn test -am -B \
- -pl 'pinot-integration-tests' \
- -Dtest='!C*Test,!L*Test,!M*Test,!R*Test,!S*Test' \
- -P github-actions,integration-tests-only && exit 0 || exit 1
- fi
-else
- # Unit Tests
- # - TEST_SET#1 runs install and test together so the module list must ensure no additional modules were tested
- # due to the -am flag (include dependency modules)
- if [ "$RUN_TEST_SET" == "1" ]; then
- mvn clean install -am -B \
- -pl 'pinot-spi' \
- -pl 'pinot-segment-spi' \
- -pl 'pinot-common' \
- -pl 'pinot-segment-local' \
- -pl 'pinot-core' \
- -pl 'pinot-query-planner' \
- -pl 'pinot-query-runtime' \
- -pl 'pinot-server' \
- -pl ':pinot-yammer' \
- -pl ':pinot-avro-base' \
- -pl ':pinot-avro' \
- -pl ':pinot-csv' \
- -pl ':pinot-json' \
- -pl ':pinot-segment-uploader-default' \
- -P github-actions,no-integration-tests && exit 0 || exit 1
- fi
- if [ "$RUN_TEST_SET" == "2" ]; then
- mvn clean install -DskipTests -T 16 || exit 1
- mvn test -am -B \
- -pl '!pinot-spi' \
- -pl '!pinot-segment-spi' \
- -pl '!pinot-common' \
- -pl '!pinot-segment-local' \
- -pl '!pinot-core' \
- -pl '!pinot-query-planner' \
- -pl '!pinot-query-runtime' \
- -pl '!pinot-server' \
- -pl '!:pinot-yammer' \
- -pl '!:pinot-avro-base' \
- -pl '!:pinot-avro' \
- -pl '!:pinot-csv' \
- -pl '!:pinot-json' \
- -pl '!:pinot-segment-uploader-default' \
- -P github-actions,no-integration-tests && exit 0 || exit 1
- fi
-fi
-
-mvn clean > /dev/null
diff --git a/.github/workflows/scripts/.pinot_vuln_check.sh b/.github/workflows/scripts/.pinot_vuln_check.sh
new file mode 100755
index 000000000000..928de0b25fae
--- /dev/null
+++ b/.github/workflows/scripts/.pinot_vuln_check.sh
@@ -0,0 +1,43 @@
+#!/bin/bash -x
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+if [ -z "${DOCKER_IMAGE_NAME}" ]; then
+ DOCKER_IMAGE_NAME="apachepinot/pinot"
+fi
+if [ -z "${PINOT_GIT_URL}" ]; then
+ PINOT_GIT_URL="https://github.com/apache/pinot.git"
+fi
+if [ -z "${PINOT_BRANCH}" ]; then
+ PINOT_BRANCH="master"
+fi
+
+cd ${DOCKER_FILE_BASE_DIR}
+
+docker image prune --all --filter "until=1h" -f
+
+docker build \
+ --no-cache \
+ --file Dockerfile \
+ --build-arg PINOT_GIT_URL=${PINOT_GIT_URL} \
+ --build-arg PINOT_BRANCH=${PINOT_BRANCH} \
+ --tag ${DOCKER_IMAGE_NAME}:${PINOT_SHA} \
+ .
+
+docker image ls
diff --git a/.github/workflows/scripts/docker/.pinot_base_docker_image_build_and_push.sh b/.github/workflows/scripts/docker/.pinot_base_docker_image_build_and_push.sh
new file mode 100755
index 000000000000..14a8d9f3cdb4
--- /dev/null
+++ b/.github/workflows/scripts/docker/.pinot_base_docker_image_build_and_push.sh
@@ -0,0 +1,40 @@
+#!/bin/bash -x
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+set -e
+
+if [ -z "${BUILD_PLATFORM}" ]; then
+ exit 1
+fi
+
+if [ -z "${BASE_IMAGE_TYPE}" ]; then
+ exit 1
+fi
+
+cd docker/images/pinot-base/pinot-base-${BASE_IMAGE_TYPE}
+
+docker buildx build \
+ --no-cache \
+ --platform=${BUILD_PLATFORM} \
+ --file ${OPEN_JDK_DIST}.dockerfile \
+ --tag apachepinot/pinot-base-${BASE_IMAGE_TYPE}:${TAG} \
+ --build-arg JAVA_VERSION=${JDK_VERSION:-11} \
+ --push \
+ .
diff --git a/.github/workflows/scripts/docker/.pinot_build_info_gen.sh b/.github/workflows/scripts/docker/.pinot_build_info_gen.sh
new file mode 100755
index 000000000000..bca2a0ef8e37
--- /dev/null
+++ b/.github/workflows/scripts/docker/.pinot_build_info_gen.sh
@@ -0,0 +1,41 @@
+#!/bin/bash -x
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+if [ -z "${PINOT_GIT_URL}" ]; then
+ PINOT_GIT_URL="https://github.com/apache/pinot.git"
+fi
+if [ -z "${PINOT_BRANCH}" ]; then
+ PINOT_BRANCH="master"
+fi
+
+# Get pinot commit id
+ROOT_DIR=$(pwd)
+rm -rf /tmp/pinot
+git clone -b ${PINOT_BRANCH} --single-branch ${PINOT_GIT_URL} /tmp/pinot
+cd /tmp/pinot
+COMMIT_ID=$(git rev-parse --short HEAD)
+VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
+rm -rf /tmp/pinot
+DATE=$(date +%Y%m%d)
+
+if [ -z "${TAGS}" ]; then
+ TAGS="${VERSION}-${COMMIT_ID}-${DATE},latest"
+fi
+echo "commit-id=${COMMIT_ID}" >>"$GITHUB_OUTPUT"
+echo "tags=${TAGS}" >>"$GITHUB_OUTPUT"
diff --git a/.github/workflows/scripts/docker/.pinot_docker_image_build.sh b/.github/workflows/scripts/docker/.pinot_docker_image_build.sh
index 62bed0fdf508..7f9109f1d466 100755
--- a/.github/workflows/scripts/docker/.pinot_docker_image_build.sh
+++ b/.github/workflows/scripts/docker/.pinot_docker_image_build.sh
@@ -31,9 +31,17 @@ if [ -z "${BUILD_PLATFORM}" ]; then
BUILD_PLATFORM="linux/arm64,linux/amd64"
fi
+# Get pinot commit id
+ROOT_DIR=`pwd`
+rm -rf /tmp/pinot
+git clone -b ${PINOT_BRANCH} --single-branch ${PINOT_GIT_URL} /tmp/pinot
+cd /tmp/pinot
COMMIT_ID=`git rev-parse --short HEAD`
-DATE=`date +%Y%m%d`
VERSION=`mvn help:evaluate -Dexpression=project.version -q -DforceStdout`
+rm -rf /tmp/pinot
+DATE=`date +%Y%m%d`
+cd ${ROOT_DIR}
+
tags=()
if [ -z "${TAGS}" ]; then
tags=("${VERSION}-${COMMIT_ID}-${DATE}")
diff --git a/.github/workflows/scripts/docker/.pinot_docker_image_build_and_push.sh b/.github/workflows/scripts/docker/.pinot_docker_image_build_and_push.sh
index f7f46e8a6087..4b6e2adea2f2 100755
--- a/.github/workflows/scripts/docker/.pinot_docker_image_build_and_push.sh
+++ b/.github/workflows/scripts/docker/.pinot_docker_image_build_and_push.sh
@@ -31,9 +31,17 @@ if [ -z "${BUILD_PLATFORM}" ]; then
BUILD_PLATFORM="linux/arm64,linux/amd64"
fi
+# Get pinot commit id
+ROOT_DIR=`pwd`
+rm -rf /tmp/pinot
+git clone -b ${PINOT_BRANCH} --single-branch ${PINOT_GIT_URL} /tmp/pinot
+cd /tmp/pinot
COMMIT_ID=`git rev-parse --short HEAD`
-DATE=`date +%Y%m%d`
VERSION=`mvn help:evaluate -Dexpression=project.version -q -DforceStdout`
+rm -rf /tmp/pinot
+DATE=`date +%Y%m%d`
+cd ${ROOT_DIR}
+
tags=()
if [ -z "${TAGS}" ]; then
tags=("${VERSION}-${COMMIT_ID}-${DATE}")
diff --git a/.github/workflows/scripts/docker/.pinot_multi_arch_docker_image_manifest_package.sh b/.github/workflows/scripts/docker/.pinot_multi_arch_docker_image_manifest_package.sh
new file mode 100755
index 000000000000..f94df2e9e8f7
--- /dev/null
+++ b/.github/workflows/scripts/docker/.pinot_multi_arch_docker_image_manifest_package.sh
@@ -0,0 +1,64 @@
+#!/bin/bash -x
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+set -x
+
+if [ -z "${DOCKER_IMAGE_NAME}" ]; then
+ DOCKER_IMAGE_NAME="apachepinot/pinot"
+fi
+
+tags=()
+declare -a tags=($(echo ${TAGS} | tr "," " "))
+
+platforms=()
+declare -a platforms=($(echo ${BUILD_PLATFORM} | tr "," " "))
+
+baseImageTags=()
+declare -a baseImageTags=($(echo ${BASE_IMAGE_TAGS} | tr "," " "))
+
+for tag in "${tags[@]}"; do
+ for baseImageTag in "${baseImageTags[@]}"; do
+ DOCKER_AMEND_TAGS_CMD=""
+ for platform in "${platforms[@]}"; do
+ platformTag=${platform/\//-}
+ DOCKER_AMEND_TAGS_CMD+=" --amend ${DOCKER_IMAGE_NAME}:${tag}-${baseImageTag}-${platformTag} "
+ done
+
+ echo "Creating manifest for tag: ${tag}-${baseImageTag}"
+ docker manifest create \
+ ${DOCKER_IMAGE_NAME}:${tag}-${baseImageTag} \
+ ${DOCKER_AMEND_TAGS_CMD}
+
+ docker manifest push \
+ ${DOCKER_IMAGE_NAME}:${tag}-${baseImageTag}
+
+ if [ "${baseImageTag}" == "11-amazoncorretto" ]; then
+ if [ "${tag}" == "latest" ]; then
+ echo "Creating manifest for tag: latest"
+ docker manifest create \
+ ${DOCKER_IMAGE_NAME}:latest \
+ ${DOCKER_AMEND_TAGS_CMD}
+
+ docker manifest push \
+ ${DOCKER_IMAGE_NAME}:latest
+ fi
+ fi
+ done
+done
diff --git a/.github/workflows/scripts/docker/.pinot_single_platform_docker_image_build.sh b/.github/workflows/scripts/docker/.pinot_single_platform_docker_image_build.sh
new file mode 100755
index 000000000000..80296b473db1
--- /dev/null
+++ b/.github/workflows/scripts/docker/.pinot_single_platform_docker_image_build.sh
@@ -0,0 +1,89 @@
+#!/bin/bash -x
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+set -e
+set -x
+
+if [ -z "${DOCKER_IMAGE_NAME}" ]; then
+ DOCKER_IMAGE_NAME="apachepinot/pinot"
+fi
+if [ -z "${PINOT_GIT_URL}" ]; then
+ PINOT_GIT_URL="https://github.com/apache/pinot.git"
+fi
+if [ -z "${JDK_VERSION}" ]; then
+ JDK_VERSION="11"
+fi
+
+
+cd ${DOCKER_FILE_BASE_DIR}
+platformTag=${BUILD_PLATFORM/\//-}
+
+PINOT_BUILD_IMAGE_TAG=${BASE_IMAGE_TAG}-${platformTag}
+echo "Building docker image for platform: ${BUILD_PLATFORM} with tag: pinot-build:${PINOT_BUILD_IMAGE_TAG}"
+docker build \
+ --no-cache \
+ --platform ${BUILD_PLATFORM} \
+ --file Dockerfile.build \
+ --build-arg PINOT_GIT_URL=${PINOT_GIT_URL} \
+ --build-arg PINOT_BRANCH=${PINOT_BRANCH} \
+ --build-arg JDK_VERSION=${JDK_VERSION} \
+ --build-arg PINOT_BASE_IMAGE_TAG=${BASE_IMAGE_TAG} \
+ --tag pinot-build:${PINOT_BUILD_IMAGE_TAG} \
+ .
+
+tags=()
+declare -a tags=($(echo ${TAGS} | tr "," " "))
+
+runtimeImages=()
+declare -a runtimeImages=($(echo ${RUNTIME_IMAGE_TAGS} | tr "," " "))
+
+
+for runtimeImage in "${runtimeImages[@]}"; do
+ DOCKER_BUILD_TAGS=""
+ for tag in "${tags[@]}"; do
+ DOCKER_BUILD_TAGS+=" --tag ${DOCKER_IMAGE_NAME}:${tag}-${runtimeImage}-${platformTag} "
+
+ if [ "${runtimeImage}" == "11-amazoncorretto" ]; then
+ if [ "${tag}" == "latest" ]; then
+ DOCKER_BUILD_TAGS+=" --tag ${DOCKER_IMAGE_NAME}:latest-${platformTag} "
+ fi
+ fi
+ done
+
+ echo "Building docker image for platform: ${BUILD_PLATFORM} with tags: ${DOCKER_BUILD_TAGS}"
+ docker build \
+ --no-cache \
+ --platform ${BUILD_PLATFORM} \
+ --file Dockerfile.package \
+ --build-arg PINOT_BUILD_IMAGE_TAG=${PINOT_BUILD_IMAGE_TAG} \
+ --build-arg PINOT_RUNTIME_IMAGE_TAG=${runtimeImage} \
+ ${DOCKER_BUILD_TAGS} \
+ .
+
+ for tag in "${tags[@]}"; do
+ docker push ${DOCKER_IMAGE_NAME}:${tag}-${runtimeImage}-${platformTag}
+
+ if [ "${runtimeImage}" == "11-amazoncorretto" ]; then
+ if [ "${tag}" == "latest" ]; then
+ docker push ${DOCKER_IMAGE_NAME}:${tag}-${platformTag}
+ fi
+ fi
+ done
+done
diff --git a/.github/workflows/scripts/docker/.presto_build_info_gen.sh b/.github/workflows/scripts/docker/.presto_build_info_gen.sh
new file mode 100755
index 000000000000..87c5da3f055a
--- /dev/null
+++ b/.github/workflows/scripts/docker/.presto_build_info_gen.sh
@@ -0,0 +1,42 @@
+#!/bin/bash -x
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+if [ -z "${PRESTO_GIT_URL}" ]; then
+ PRESTO_GIT_URL="https://github.com/prestodb/presto.git"
+fi
+if [ -z "${PRESTO_BRANCH}" ]; then
+ PRESTO_BRANCH="master"
+fi
+
+# Get presto commit id
+ROOT_DIR=`pwd`
+rm -rf /tmp/presto
+git clone -b ${PRESTO_BRANCH} --single-branch ${PRESTO_GIT_URL} /tmp/presto
+cd /tmp/presto
+COMMIT_ID=`git rev-parse --short HEAD`
+./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout
+VERSION=`./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout`
+rm -rf /tmp/presto
+DATE=`date +%Y%m%d`
+
+if [ -z "${TAGS}" ]; then
+ TAGS="${VERSION}-${COMMIT_ID}-${DATE},latest"
+fi
+echo "commit-id=${COMMIT_ID}" >> "$GITHUB_OUTPUT"
+echo "tags=${TAGS}" >> "$GITHUB_OUTPUT"
diff --git a/.github/workflows/scripts/docker/.presto_docker_image_build_and_push.sh b/.github/workflows/scripts/docker/.presto_docker_image_build_and_push.sh
index 9db8baf612d6..a95fba69b286 100755
--- a/.github/workflows/scripts/docker/.presto_docker_image_build_and_push.sh
+++ b/.github/workflows/scripts/docker/.presto_docker_image_build_and_push.sh
@@ -31,40 +31,31 @@ if [ -z "${BUILD_PLATFORM}" ]; then
BUILD_PLATFORM="linux/amd64"
fi
-# Get presto commit id
-ROOT_DIR=`pwd`
-rm -rf /tmp/presto
-git clone -b ${PRESTO_BRANCH} --single-branch ${PRESTO_GIT_URL} /tmp/presto
-cd /tmp/presto
-COMMIT_ID=`git rev-parse --short HEAD`
-VERSION=`mvn help:evaluate -Dexpression=project.version -q -DforceStdout`
-rm -rf /tmp/presto
-DATE=`date +%Y%m%d`
-cd ${ROOT_DIR}
-
tags=()
-if [ -z "${TAGS}" ]; then
- tags=("${VERSION}-${COMMIT_ID}-${DATE}")
- tags+=("latest")
-else
- declare -a tags=($(echo ${TAGS} | tr "," " "))
-fi
+declare -a tags=($(echo ${TAGS} | tr "," " "))
DOCKER_BUILD_TAGS=""
for tag in "${tags[@]}"
do
- echo "Plan to build and push docker images for: ${DOCKER_IMAGE_NAME}:${tag}"
+ echo "Plan to build docker images for: ${DOCKER_IMAGE_NAME}:${tag}"
DOCKER_BUILD_TAGS+=" --tag ${DOCKER_IMAGE_NAME}:${tag} "
done
cd ${DOCKER_FILE_BASE_DIR}
-docker buildx build \
+docker image prune --all --filter "until=1h" -f
+
+docker build \
--no-cache \
--platform=${BUILD_PLATFORM} \
--file Dockerfile \
--build-arg PRESTO_GIT_URL=${PRESTO_GIT_URL} --build-arg PRESTO_BRANCH=${PRESTO_BRANCH} \
${DOCKER_BUILD_TAGS} \
- --push \
.
+
+for tag in "${tags[@]}"
+do
+ echo "Push docker image: ${DOCKER_IMAGE_NAME}:${tag}"
+ docker push ${DOCKER_IMAGE_NAME}:${tag}
+done
diff --git a/.github/workflows/scripts/docker/.superset_docker_image_build_and_push.sh b/.github/workflows/scripts/docker/.superset_docker_image_build_and_push.sh
index 700b8e01a1be..a82997e2d842 100755
--- a/.github/workflows/scripts/docker/.superset_docker_image_build_and_push.sh
+++ b/.github/workflows/scripts/docker/.superset_docker_image_build_and_push.sh
@@ -49,7 +49,7 @@ done
cd ${DOCKER_FILE_BASE_DIR}
-docker buildx build \
+docker build \
--no-cache \
--platform=${BUILD_PLATFORM} \
--file Dockerfile \
diff --git a/.github/workflows/scripts/docker/.superset_multi_arch_docker_image_build_and_push.sh b/.github/workflows/scripts/docker/.superset_multi_arch_docker_image_build_and_push.sh
new file mode 100755
index 000000000000..a82997e2d842
--- /dev/null
+++ b/.github/workflows/scripts/docker/.superset_multi_arch_docker_image_build_and_push.sh
@@ -0,0 +1,59 @@
+#!/bin/bash -x
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+if [ -z "${DOCKER_IMAGE_NAME}" ]; then
+ DOCKER_IMAGE_NAME="apachepinot/pinot-superset"
+fi
+if [ -z "${SUPERSET_IMAGE_TAG}" ]; then
+ SUPERSET_IMAGE_TAG="latest"
+fi
+if [ -z "${BUILD_PLATFORM}" ]; then
+ BUILD_PLATFORM="linux/amd64"
+fi
+
+DATE=`date +%Y%m%d`
+docker pull apache/superset:${SUPERSET_IMAGE_TAG}
+COMMIT_ID=`docker images apache/superset:${SUPERSET_IMAGE_TAG} --format "{{.ID}}"`
+
+tags=()
+if [ -z "${TAGS}" ]; then
+ tags=("${COMMIT_ID}-${DATE}")
+ tags+=("latest")
+else
+ declare -a tags=($(echo ${TAGS} | tr "," " "))
+fi
+
+DOCKER_BUILD_TAGS=""
+for tag in "${tags[@]}"
+do
+ echo "Plan to build and push docker images for: ${DOCKER_IMAGE_NAME}:${tag}"
+ DOCKER_BUILD_TAGS+=" --tag ${DOCKER_IMAGE_NAME}:${tag} "
+done
+
+cd ${DOCKER_FILE_BASE_DIR}
+
+docker build \
+ --no-cache \
+ --platform=${BUILD_PLATFORM} \
+ --file Dockerfile \
+ --build-arg SUPERSET_IMAGE_TAG=${SUPERSET_IMAGE_TAG} \
+ ${DOCKER_BUILD_TAGS} \
+ --push \
+ .
diff --git a/.github/workflows/scripts/pr-tests/.pinot_tests_build.sh b/.github/workflows/scripts/pr-tests/.pinot_tests_build.sh
new file mode 100755
index 000000000000..e94d7447b8c9
--- /dev/null
+++ b/.github/workflows/scripts/pr-tests/.pinot_tests_build.sh
@@ -0,0 +1,61 @@
+#!/bin/bash -x
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+# Java version
+java -version
+
+# Check network
+ifconfig
+netstat -i
+
+if [ "$RUN_INTEGRATION_TESTS" != false ]; then
+ # Integration Tests
+ mvn clean install \
+ -DskipTests -Dcheckstyle.skip -Dspotless.skip -Denforcer.skip -Dlicense.skip -Dmaven.plugin.appassembler.skip=true \
+ -am -B -T 16 -ntp \
+ -P github-actions,integration-tests \
+ -pl 'pinot-integration-tests' || exit 1
+else
+ # Unit Tests
+ # - TEST_SET#1 runs install and test together so the module list must ensure no additional modules were tested
+ # due to the -am flag (include dependency modules)
+ if [ "$RUN_TEST_SET" == "1" ]; then
+ mvn clean install \
+ -DskipTests -Dcheckstyle.skip -Dspotless.skip -Denforcer.skip -Dlicense.skip -Dmaven.plugin.appassembler.skip=true \
+ -am -B -T 16 -ntp \
+ -P github-actions \
+ -pl 'pinot-spi' \
+ -pl 'pinot-segment-spi' \
+ -pl 'pinot-common' \
+ -pl 'pinot-segment-local' \
+ -pl 'pinot-core' \
+ -pl 'pinot-query-planner' \
+ -pl 'pinot-query-runtime' || exit 1
+ fi
+ if [ "$RUN_TEST_SET" == "2" ]; then
+ mvn clean install \
+ -DskipTests -Dcheckstyle.skip -Dspotless.skip -Denforcer.skip -Dlicense.skip -Dmaven.plugin.appassembler.skip=true \
+ -am -B -T 16 -ntp \
+ -P github-actions \
+ -pl '!pinot-integration-tests' \
+ -pl '!pinot-perf' \
+ -pl '!pinot-distribution' || exit 1
+ fi
+fi
diff --git a/.github/workflows/scripts/pr-tests/.pinot_tests_custom_integration.sh b/.github/workflows/scripts/pr-tests/.pinot_tests_custom_integration.sh
new file mode 100755
index 000000000000..cd99615ce4d6
--- /dev/null
+++ b/.github/workflows/scripts/pr-tests/.pinot_tests_custom_integration.sh
@@ -0,0 +1,33 @@
+#!/bin/bash -x
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+# Java version
+java -version
+
+# Check network
+ifconfig
+netstat -i
+
+# Custom Integration Tests
+cd pinot-integration-tests || exit 1
+if [ "$RUN_TEST_SET" == "1" ]; then
+ mvn test \
+ -P github-actions,custom-cluster-integration-test-suite || exit 1
+fi
diff --git a/.github/workflows/scripts/pr-tests/.pinot_tests_integration.sh b/.github/workflows/scripts/pr-tests/.pinot_tests_integration.sh
new file mode 100755
index 000000000000..a6f671c2181d
--- /dev/null
+++ b/.github/workflows/scripts/pr-tests/.pinot_tests_integration.sh
@@ -0,0 +1,37 @@
+#!/bin/bash -x
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+# Java version
+java -version
+
+# Check network
+ifconfig
+netstat -i
+
+# Integration Tests
+cd pinot-integration-tests || exit 1
+if [ "$RUN_TEST_SET" == "1" ]; then
+ mvn test \
+ -P github-actions,integration-tests-set-1 && exit 0 || exit 1
+fi
+if [ "$RUN_TEST_SET" == "2" ]; then
+ mvn test \
+ -P github-actions,integration-tests-set-2 && exit 0 || exit 1
+fi
diff --git a/.github/workflows/scripts/pr-tests/.pinot_tests_unit.sh b/.github/workflows/scripts/pr-tests/.pinot_tests_unit.sh
new file mode 100755
index 000000000000..e50cdc93b633
--- /dev/null
+++ b/.github/workflows/scripts/pr-tests/.pinot_tests_unit.sh
@@ -0,0 +1,52 @@
+#!/bin/bash -x
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+# Java version
+java -version
+
+# Check network
+ifconfig
+netstat -i
+
+# Unit Tests
+# - TEST_SET#1 runs install and test together so the module list must ensure no additional modules were tested
+# due to the -am flag (include dependency modules)
+if [ "$RUN_TEST_SET" == "1" ]; then
+ mvn test -T 16 \
+ -pl 'pinot-spi' \
+ -pl 'pinot-segment-spi' \
+ -pl 'pinot-common' \
+ -pl ':pinot-yammer' \
+ -pl 'pinot-core' \
+ -pl 'pinot-query-planner' \
+ -pl 'pinot-query-runtime' \
+ -P github-actions,no-integration-tests || exit 1
+fi
+if [ "$RUN_TEST_SET" == "2" ]; then
+ mvn test -T 16 \
+ -pl '!pinot-spi' \
+ -pl '!pinot-segment-spi' \
+ -pl '!pinot-common' \
+ -pl '!pinot-core' \
+ -pl '!pinot-query-planner' \
+ -pl '!pinot-query-runtime' \
+ -pl '!:pinot-yammer' \
+ -P github-actions,no-integration-tests || exit 1
+fi
diff --git a/.gitignore b/.gitignore
index e7ca720ff04e..ca69e90d0e43 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,9 +2,11 @@ cscope.*
.classpath
.project
.svn
+.java-version
.externalToolBuilders/
maven-eclipse.xml
target/
+examples/
bin/
*/bin/
.idea
@@ -25,7 +27,6 @@ docs/_build
**/.docker/
**/.env
**/.factorypath
-.mvn/
# Misc
.envrc
@@ -51,3 +52,5 @@ kubernetes/helm/**/charts/
kubernetes/helm/**/requirements.lock
kubernetes/helm/**/Chart.lock
+#Develocity
+.mvn/.gradle-enterprise/
diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml
new file mode 100644
index 000000000000..177fc5d6f1e8
--- /dev/null
+++ b/.mvn/extensions.xml
@@ -0,0 +1,33 @@
+
+
+
+
+ com.gradle
+ gradle-enterprise-maven-extension
+ 1.20.1
+
+
+ com.gradle
+ common-custom-user-data-maven-extension
+ 2
+
+
diff --git a/.mvn/gradle-enterprise.xml b/.mvn/gradle-enterprise.xml
new file mode 100644
index 000000000000..cf1a9a0a9e88
--- /dev/null
+++ b/.mvn/gradle-enterprise.xml
@@ -0,0 +1,48 @@
+
+
+
+
+ https://ge.apache.org
+ false
+
+
+
+ true
+ true
+ true
+
+ #{isFalse(env['GITHUB_ACTIONS'])}
+ ALWAYS
+ true
+
+ #{{'0.0.0.0'}}
+
+
+
+
+ #{isFalse(env['GITHUB_ACTIONS'])}
+
+
+ false
+
+
+
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index e1c92e5d57c0..d87c29fcebae 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -22,6 +22,8 @@
Before you begin to contribute, make sure you have reviewed [Dev Environment Setup](https://docs.pinot.apache.org/developers/developers-and-contributors/code-setup) and [Code Modules and Organization](https://docs.pinot.apache.org/developers/developers-and-contributors/code-modules-and-organization) sections and that you have created your own fork of the pinot source code.
+> If you wish to contribute to the UI codebase, follow [this guide](/pinot-controller/src/main/resources/Readme.md) to setup UI locally for development.
+
### Create a design document
If your change is relatively minor, you can skip this step. If you are adding new major feature, we suggest that you add a design document and solicit comments from the community before submitting any code.
diff --git a/LICENSE-binary b/LICENSE-binary
index caad3acf82cf..dcae96f5c399 100644
--- a/LICENSE-binary
+++ b/LICENSE-binary
@@ -204,15 +204,15 @@
This project bundles some components that are also licensed under the Apache
License Version 2.0:
-cloud.localstack:localstack-utils:0.2.19
-com.101tec:zkclient:0.7
-com.chuusai:shapeless_2.12:2.3.3
-com.clearspring.analytics:stream:2.7.0
-com.esri.geometry:esri-geometry-api:2.2.0
+ch.qos.reload4j:reload4j:1.2.25
+cloud.localstack:localstack-utils:0.2.23
+com.101tec:zkclient:0.11
+com.chuusai:shapeless_2.12:2.3.11
+com.clearspring.analytics:stream:2.9.8
+com.dynatrace.hash4j:hash4j:0.17.0
com.fasterxml.jackson.core:jackson-annotations:2.12.7
com.fasterxml.jackson.core:jackson-core:2.12.7
-com.fasterxml.jackson.core:jackson-databind:2.12.7
-com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.12.7
+com.fasterxml.jackson.core:jackson-databind:2.12.7.1
com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.12.7
com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.7
com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.12.7
@@ -221,271 +221,341 @@ com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.7
com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:2.12.7
com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.12.7
com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.12.7
-com.fasterxml.jackson.module:jackson-module-jsonSchema:2.12.7
com.fasterxml.jackson.module:jackson-module-scala_2.12:2.12.7
-com.fasterxml.woodstox:woodstox-core:5.0.3
-com.github.ben-manes.caffeine:caffeine:2.6.2
+com.fasterxml.woodstox:woodstox-core:7.0.0
+com.github.jnr:jffi:1.3.13
+com.github.jnr:jnr-a64asm:1.0.0
+com.github.jnr:jnr-constants:0.10.4
+com.github.jnr:jnr-ffi:2.2.16
com.github.os72:protobuf-dynamic:1.0.1
-com.github.seancfoley:ipaddress:5.3.4
+com.github.seancfoley:ipaddress:5.5.0
+com.github.stephenc.jcip:jcip-annotations:1.0-1
com.google.android:annotations:4.1.1.4
-com.google.api-client:google-api-client:1.30.10
-com.google.api.grpc:proto-google-common-protos:1.18.1
-com.google.api.grpc:proto-google-iam-v1:1.0.0
-com.google.apis:google-api-services-storage:v1-rev20200814-1.30.10
-com.google.auto.value:auto-value-annotations:1.7.2
-com.google.cloud:google-cloud-core-http:1.93.8
-com.google.cloud:google-cloud-core:1.93.8
-com.google.cloud:google-cloud-nio:0.120.0-alpha
-com.google.cloud:google-cloud-storage:1.113.1
-com.google.code.findbugs:jsr305:3.0.0
-com.google.code.gson:gson:2.2.4
-com.google.errorprone:error_prone_annotations:2.3.4
-com.google.guava:failureaccess:1.0.1
-com.google.guava:guava:20.0
+com.google.api-client:google-api-client:2.6.0
+com.google.api.grpc:gapic-google-cloud-storage-v2:2.40.0-alpha
+com.google.api.grpc:grpc-google-cloud-storage-v2:2.40.0-alpha
+com.google.api.grpc:proto-google-cloud-storage-v2:2.40.0-alpha
+com.google.api.grpc:proto-google-common-protos:2.40.0
+com.google.api.grpc:proto-google-iam-v1:1.35.0
+com.google.apis:google-api-services-storage:v1-rev20240319-2.0.0
+com.google.auto.service:auto-service-annotations:1.1.1
+com.google.auto.service:auto-service:1.1.1
+com.google.auto.value:auto-value-annotations:1.10.4
+com.google.auto:auto-common:1.2.1
+com.google.cloud:google-cloud-core-grpc:2.39.0
+com.google.cloud:google-cloud-core-http:2.39.0
+com.google.cloud:google-cloud-core:2.39.0
+com.google.cloud:google-cloud-nio:0.127.19
+com.google.cloud:google-cloud-storage:2.40.0
+com.google.code.findbugs:jsr305:3.0.2
+com.google.code.gson:gson:2.11.0
+com.google.errorprone:error_prone_annotations:2.28.0
+com.google.guava:failureaccess:1.0.2
+com.google.guava:guava:33.1.0-jre
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
-com.google.http-client:google-http-client-appengine:1.36.0
-com.google.http-client:google-http-client-jackson2:1.36.0
-com.google.http-client:google-http-client:1.36.0
-com.google.j2objc:j2objc-annotations:1.3
-com.google.oauth-client:google-oauth-client:1.31.0
+com.google.http-client:google-http-client-apache-v2:1.44.2
+com.google.http-client:google-http-client-appengine:1.44.2
+com.google.http-client:google-http-client-gson:1.44.2
+com.google.http-client:google-http-client-jackson2:1.44.2
+com.google.http-client:google-http-client:1.44.2
+com.google.j2objc:j2objc-annotations:3.0.0
+com.google.oauth-client:google-oauth-client:1.36.0
com.google.uzaygezen:uzaygezen-core:0.2
-com.jayway.jsonpath:json-path:2.7.0
-com.lmax:disruptor:3.3.4
-com.squareup.okio:okio:1.6.0
-com.squareup.wire:wire-runtime:3.2.2
-com.squareup.wire:wire-schema:3.2.2
+com.googlecode.json-simple:json-simple:1.1.1
+com.jayway.jsonpath:json-path:2.9.0
+com.lmax:disruptor:4.0.0
+com.nimbusds:content-type:2.3
+com.nimbusds:lang-tag:1.7
+com.nimbusds:nimbus-jose-jwt:9.40
+com.nimbusds:oauth2-oidc-sdk:11.9.1
+com.squareup.okio:okio-jvm:3.9.0
+com.squareup.wire:wire-runtime-jvm:4.9.7
+com.squareup.wire:wire-schema-jvm:4.9.7
+com.squareup:javapoet:1.13.0
+com.squareup:kotlinpoet-jvm:1.16.0
com.tdunning:t-digest:3.2
com.twitter:chill-java:0.7.6
-com.twitter:chill_2.12:0.7.6
-com.typesafe.akka:akka-actor_2.12:2.5.21
-com.typesafe.akka:akka-protobuf_2.12:2.5.21
-com.typesafe.akka:akka-slf4j_2.12:2.5.21
-com.typesafe.akka:akka-stream_2.12:2.5.21
-com.typesafe.netty:netty-reactive-streams-http:2.0.4
com.typesafe.netty:netty-reactive-streams:2.0.4
com.typesafe.scala-logging:scala-logging_2.12:3.9.2
-com.typesafe:config:1.3.3
-com.typesafe:ssl-config-core_2.12:0.3.7
-com.uber:h3:4.0.0
-com.yahoo.datasketches:memory:0.8.3
-com.yahoo.datasketches:sketches-core:0.8.3
+com.uber:h3:4.1.1
com.yammer.metrics:metrics-core:2.2.0
+com.yscope.clp:clp-ffi:0.4.4
com.zaxxer:HikariCP-java7:2.4.13
-commons-cli:commons-cli:1.2
-commons-codec:commons-codec:1.15
+commons-cli:commons-cli:1.8.0
+commons-codec:commons-codec:1.17.0
commons-collections:commons-collections:3.2.2
-commons-configuration:commons-configuration:1.10
-commons-httpclient:commons-httpclient:3.1
-commons-io:commons-io:2.11.0
-commons-lang:commons-lang:2.6
-commons-logging:commons-logging:1.2
+commons-io:commons-io:2.16.1
commons-pool:commons-pool:1.6
-info.picocli:picocli:4.6.1
-io.airlift:aircompressor:0.10
-io.circe:circe-core_2.12:0.13.0
-io.circe:circe-generic_2.12:0.13.0
-io.circe:circe-jawn_2.12:0.13.0
-io.circe:circe-numbers_2.12:0.13.0
-io.circe:circe-parser_2.12:0.13.0
-io.confluent:common-config:5.5.3
-io.confluent:common-utils:5.5.3
-io.confluent:kafka-avro-serializer:5.5.3
-io.confluent:kafka-protobuf-provider:5.5.3
-io.confluent:kafka-protobuf-serializer:5.5.3
-io.confluent:kafka-schema-registry-client:5.5.3
-io.confluent:kafka-schema-serializer:5.5.3
-io.dropwizard.metrics:metrics-core:4.2.2
-io.dropwizard.metrics:metrics-jmx:4.2.2
-io.grpc:grpc-api:1.41.0
-io.grpc:grpc-context:1.14.0
-io.grpc:grpc-core:1.41.0
-io.grpc:grpc-netty-shaded:1.41.0
-io.grpc:grpc-protobuf-lite:1.19.0
-io.grpc:grpc-protobuf:1.41.0
-io.grpc:grpc-stub:1.41.0
-io.netty:netty-all:4.1.79.Final
-io.netty:netty-buffer:4.1.79.Final
-io.netty:netty-codec-dns:4.1.79.Final
-io.netty:netty-codec-haproxy:4.1.79.Final
-io.netty:netty-codec-http2:4.1.79.Final
-io.netty:netty-codec-http:4.1.79.Final
-io.netty:netty-codec-memcache:4.1.79.Final
-io.netty:netty-codec-mqtt:4.1.79.Final
-io.netty:netty-codec-redis:4.1.79.Final
-io.netty:netty-codec-smtp:4.1.79.Final
-io.netty:netty-codec-socks:4.1.79.Final
-io.netty:netty-codec-stomp:4.1.79.Final
-io.netty:netty-codec-xml:4.1.79.Final
-io.netty:netty-codec:4.1.79.Final
-io.netty:netty-common:4.1.79.Final
-io.netty:netty-handler-proxy:4.1.79.Final
-io.netty:netty-handler:4.1.79.Final
-io.netty:netty-resolver-dns-classes-macos:4.1.79.Final
-io.netty:netty-resolver-dns-native-macos:4.1.79.Final
-io.netty:netty-resolver-dns:4.1.79.Final
-io.netty:netty-resolver:4.1.79.Final
-io.netty:netty-tcnative-boringssl-static:2.0.53.Final
-io.netty:netty-tcnative-classes:2.0.53.Final
-io.netty:netty-transport-classes-epoll:4.1.79.Final
-io.netty:netty-transport-classes-kqueue:4.1.79.Final
-io.netty:netty-transport-native-epoll:4.1.79.Final
-io.netty:netty-transport-native-kqueue:4.1.79.Final
-io.netty:netty-transport-native-unix-common:4.1.79.Final
-io.netty:netty-transport-rxtx:4.1.79.Final
-io.netty:netty-transport-sctp:4.1.79.Final
-io.netty:netty-transport-udt:4.1.79.Final
-io.netty:netty-transport:4.1.79.Final
-io.opencensus:opencensus-api:0.24.0
-io.opencensus:opencensus-contrib-http-util:0.24.0
-io.perfmark:perfmark-api:0.23.0
-io.projectreactor.netty:reactor-netty-core:1.0.15
-io.projectreactor.netty:reactor-netty-http:1.0.15
-io.projectreactor:reactor-core:3.4.14
-io.prometheus:simpleclient:0.8.1
-io.prometheus:simpleclient_common:0.8.1
-io.prometheus:simpleclient_hotspot:0.8.1
-io.swagger:swagger-annotations:1.6.2
-io.swagger:swagger-core:1.6.6
-io.swagger:swagger-jaxrs:1.6.6
-io.swagger:swagger-jersey2-jaxrs:1.6.6
-io.swagger:swagger-models:1.6.6
-it.unimi.dsi:fastutil:8.2.3
+info.picocli:picocli:4.7.6
+io.airlift:aircompressor:0.27
+io.circe:circe-core_2.12:0.14.8
+io.circe:circe-generic_2.12:0.14.8
+io.circe:circe-jawn_2.12:0.14.8
+io.circe:circe-numbers_2.12:0.14.8
+io.circe:circe-parser_2.12:0.14.8
+io.confluent:common-utils:7.6.1
+io.confluent:kafka-avro-serializer:7.6.1
+io.confluent:kafka-protobuf-provider:7.6.1
+io.confluent:kafka-protobuf-serializer:7.6.1
+io.confluent:kafka-protobuf-types:7.6.1
+io.confluent:kafka-schema-registry-client:7.6.1
+io.confluent:kafka-schema-serializer:7.6.1
+io.confluent:logredactor-metrics:1.0.12
+io.confluent:logredactor:1.0.12
+io.dropwizard.metrics:metrics-core:4.2.26
+io.dropwizard.metrics:metrics-jmx:4.2.26
+io.github.hakky54:sslcontext-kickstart-for-netty:8.3.6
+io.github.hakky54:sslcontext-kickstart:8.3.6
+io.grpc:grpc-alts:1.65.0
+io.grpc:grpc-api:1.65.0
+io.grpc:grpc-auth:1.65.0
+io.grpc:grpc-context:1.65.0
+io.grpc:grpc-core:1.65.0
+io.grpc:grpc-googleapis:1.65.0
+io.grpc:grpc-grpclb:1.65.0
+io.grpc:grpc-inprocess:1.65.0
+io.grpc:grpc-netty-shaded:1.65.0
+io.grpc:grpc-protobuf-lite:1.65.0
+io.grpc:grpc-protobuf:1.65.0
+io.grpc:grpc-rls:1.65.0
+io.grpc:grpc-services:1.65.0
+io.grpc:grpc-stub:1.65.0
+io.grpc:grpc-util:1.65.0
+io.grpc:grpc-xds:1.65.0
+io.netty:netty-all:4.1.111.Final
+io.netty:netty-buffer:4.1.111.Final
+io.netty:netty-codec-dns:4.1.111.Final
+io.netty:netty-codec-haproxy:4.1.111.Final
+io.netty:netty-codec-http2:4.1.111.Final
+io.netty:netty-codec-http:4.1.111.Final
+io.netty:netty-codec-memcache:4.1.111.Final
+io.netty:netty-codec-mqtt:4.1.111.Final
+io.netty:netty-codec-redis:4.1.111.Final
+io.netty:netty-codec-smtp:4.1.111.Final
+io.netty:netty-codec-socks:4.1.111.Final
+io.netty:netty-codec-stomp:4.1.111.Final
+io.netty:netty-codec-xml:4.1.111.Final
+io.netty:netty-codec:4.1.111.Final
+io.netty:netty-common:4.1.111.Final
+io.netty:netty-handler-proxy:4.1.111.Final
+io.netty:netty-handler-ssl-ocsp:4.1.111.Final
+io.netty:netty-handler:4.1.111.Final
+io.netty:netty-resolver-dns-classes-macos:4.1.111.Final
+io.netty:netty-resolver-dns-native-macos:4.1.111.Final
+io.netty:netty-resolver-dns:4.1.111.Final
+io.netty:netty-resolver:4.1.111.Final
+io.netty:netty-tcnative-boringssl-static:2.0.65.Final
+io.netty:netty-tcnative-classes:2.0.65.Final
+io.netty:netty-transport-classes-epoll:4.1.111.Final
+io.netty:netty-transport-classes-kqueue:4.1.111.Final
+io.netty:netty-transport-native-epoll:4.1.111.Final
+io.netty:netty-transport-native-kqueue:4.1.111.Final
+io.netty:netty-transport-native-unix-common:4.1.111.Final
+io.netty:netty-transport-rxtx:4.1.111.Final
+io.netty:netty-transport-sctp:4.1.111.Final
+io.netty:netty-transport-udt:4.1.111.Final
+io.netty:netty-transport:4.1.111.Final
+io.opencensus:opencensus-api:0.31.1
+io.opencensus:opencensus-contrib-http-util:0.31.1
+io.opencensus:opencensus-proto:0.2.0
+io.opentelemetry:opentelemetry-api-incubator:1.37.0-alpha
+io.opentelemetry:opentelemetry-api:1.37.0
+io.opentelemetry:opentelemetry-context:1.37.0
+io.perfmark:perfmark-api:0.26.0
+io.projectreactor.netty:reactor-netty-core:1.0.45
+io.projectreactor.netty:reactor-netty-http:1.0.45
+io.projectreactor:reactor-core:3.4.38
+io.swagger.core.v3:swagger-annotations:2.1.10
+io.swagger:swagger-annotations:1.6.14
+io.swagger:swagger-core:1.6.14
+io.swagger:swagger-jaxrs:1.6.14
+io.swagger:swagger-jersey2-jaxrs:1.6.14
+io.swagger:swagger-models:1.6.14
+it.unimi.dsi:fastutil:8.5.13
jakarta.validation:jakarta.validation-api:2.0.2
javax.inject:javax.inject:1
javax.validation:validation-api:2.0.1.Final
-joda-time:joda-time:2.10.5
-net.java.dev.jna:jna:4.1.0
-net.minidev:accessors-smart:1.2
-net.minidev:json-smart:2.3
-org.apache.avro:avro-protobuf:1.9.1
-org.apache.avro:avro:1.9.2
-org.apache.bookkeeper:bookkeeper-common-allocator:4.12.0
-org.apache.bookkeeper:circe-checksum:4.12.0
-org.apache.calcite.avatica:avatica-core:1.20.0
-org.apache.calcite:calcite-babel:1.29.0
-org.apache.calcite:calcite-core:1.29.0
-org.apache.calcite:calcite-linq4j:1.29.0
-org.apache.commons:commons-collections4:4.1
-org.apache.commons:commons-compress:1.21
-org.apache.commons:commons-csv:1.0
-org.apache.commons:commons-lang3:3.11
-org.apache.commons:commons-math3:3.2
+joda-time:joda-time:2.12.7
+net.java.dev.jna:jna-platform:5.14.0
+net.java.dev.jna:jna:5.14.0
+net.minidev:accessors-smart:2.5.1
+net.minidev:json-smart:2.5.1
+net.openhft:chronicle-analytics:2.26ea1
+net.openhft:chronicle-core:2.26ea1
+net.openhft:posix:2.26ea1
+org.apache.avro:avro:1.11.3
+org.apache.calcite.avatica:avatica-core:1.25.0
+org.apache.calcite:calcite-babel:1.37.0
+org.apache.calcite:calcite-core:1.37.0
+org.apache.calcite:calcite-linq4j:1.37.0
+org.apache.commons:commons-collections4:4.4
+org.apache.commons:commons-compress:1.26.2
+org.apache.commons:commons-configuration2:2.11.0
+org.apache.commons:commons-csv:1.11.0
+org.apache.commons:commons-lang3:3.14.0
+org.apache.commons:commons-math3:3.6.1
org.apache.commons:commons-math:2.1
-org.apache.datasketches:datasketches-java:1.2.0-incubating
-org.apache.datasketches:datasketches-memory:1.2.0-incubating
-org.apache.flink:flink-annotations:1.12.0
-org.apache.flink:flink-core:1.12.0
-org.apache.flink:flink-file-sink-common:1.12.0
-org.apache.flink:flink-hadoop-fs:1.12.0
-org.apache.flink:flink-java:1.12.0
-org.apache.flink:flink-metrics-core:1.12.0
-org.apache.flink:flink-queryable-state-client-java:1.12.0
-org.apache.flink:flink-runtime_2.12:1.12.0
-org.apache.flink:flink-shaded-asm-7:7.1-12.0
-org.apache.flink:flink-shaded-guava:18.0-12.0
-org.apache.flink:flink-shaded-jackson:2.10.1-12.0
-org.apache.flink:flink-shaded-netty:4.1.49.Final-12.0
-org.apache.flink:flink-shaded-zookeeper-3:3.4.14-12.0
-org.apache.flink:flink-streaming-java_2.12:1.12.0
-org.apache.flink:force-shading:1.12.0
-org.apache.helix:helix-common:1.0.4
-org.apache.helix:helix-core:1.0.4
-org.apache.helix:metadata-store-directory-common:1.0.4
-org.apache.helix:metrics-common:1.0.4
-org.apache.helix:zookeeper-api:1.0.4
-org.apache.hive:hive-storage-api:2.7.1
-org.apache.httpcomponents:httpclient:4.5.13
-org.apache.httpcomponents:httpcore:4.4.13
-org.apache.httpcomponents:httpmime:4.5.13
+org.apache.commons:commons-text:1.12.0
+org.apache.curator:curator-client:5.2.0
+org.apache.curator:curator-framework:5.2.0
+org.apache.datasketches:datasketches-java:6.0.0
+org.apache.datasketches:datasketches-memory:2.2.0
+org.apache.flink:flink-annotations:1.19.1
+org.apache.flink:flink-connector-datagen:1.19.1
+org.apache.flink:flink-core:1.19.1
+org.apache.flink:flink-file-sink-common:1.19.1
+org.apache.flink:flink-hadoop-fs:1.19.1
+org.apache.flink:flink-java:1.19.1
+org.apache.flink:flink-metrics-core:1.19.1
+org.apache.flink:flink-queryable-state-client-java:1.19.1
+org.apache.flink:flink-rpc-akka-loader:1.19.1
+org.apache.flink:flink-rpc-core:1.19.1
+org.apache.flink:flink-runtime:1.19.1
+org.apache.flink:flink-shaded-asm-9:9.5-17.0
+org.apache.flink:flink-shaded-guava:31.1-jre-17.0
+org.apache.flink:flink-shaded-jackson:2.14.2-17.0
+org.apache.flink:flink-shaded-netty:4.1.91.Final-17.0
+org.apache.flink:flink-shaded-zookeeper-3:3.7.1-17.0
+org.apache.flink:flink-streaming-java:1.19.1
+org.apache.hadoop.thirdparty:hadoop-shaded-guava:1.1.1
+org.apache.hadoop.thirdparty:hadoop-shaded-protobuf_3_21:1.2.0
+org.apache.hadoop.thirdparty:hadoop-shaded-protobuf_3_7:1.1.1
+org.apache.hadoop:hadoop-annotations:3.3.6
+org.apache.hadoop:hadoop-auth:3.3.6
+org.apache.hadoop:hadoop-mapreduce-client-core:3.3.6
+org.apache.hadoop:hadoop-yarn-api:3.3.6
+org.apache.hadoop:hadoop-yarn-client:3.3.6
+org.apache.hadoop:hadoop-yarn-common:3.3.6
+org.apache.helix:helix-common:1.3.1
+org.apache.helix:helix-core:1.3.1
+org.apache.helix:metadata-store-directory-common:1.3.1
+org.apache.helix:metrics-common:1.3.1
+org.apache.helix:zookeeper-api:1.3.1
+org.apache.hive:hive-storage-api:2.8.1
+org.apache.httpcomponents.client5:httpclient5:5.3.1
+org.apache.httpcomponents.core5:httpcore5-h2:5.2.4
+org.apache.httpcomponents.core5:httpcore5:5.2.4
+org.apache.httpcomponents:httpclient:4.5.14
+org.apache.httpcomponents:httpcore:4.4.16
+org.apache.httpcomponents:httpmime:4.5.14
org.apache.kafka:kafka-clients:2.8.1
org.apache.kafka:kafka-metadata:2.8.1
org.apache.kafka:kafka-raft:2.8.1
-org.apache.kafka:kafka_2.10:0.9.0.1
org.apache.kafka:kafka_2.12:2.8.1
-org.apache.logging.log4j:log4j-1.2-api:2.17.1
-org.apache.logging.log4j:log4j-api:2.17.1
-org.apache.logging.log4j:log4j-core:2.17.1
-org.apache.logging.log4j:log4j-slf4j-impl:2.17.1
-org.apache.lucene:lucene-analyzers-common:8.2.0
-org.apache.lucene:lucene-core:8.2.0
-org.apache.lucene:lucene-queries:8.2.0
-org.apache.lucene:lucene-queryparser:8.2.0
-org.apache.lucene:lucene-sandbox:8.2.0
-org.apache.orc:orc-core:1.5.9
-org.apache.orc:orc-shims:1.5.9
-org.apache.parquet:parquet-avro:1.11.1
-org.apache.parquet:parquet-column:1.11.1
-org.apache.parquet:parquet-common:1.11.1
-org.apache.parquet:parquet-encoding:1.11.1
-org.apache.parquet:parquet-format-structures:1.11.1
-org.apache.parquet:parquet-hadoop:1.11.1
-org.apache.parquet:parquet-jackson:1.11.1
-org.apache.pulsar:bouncy-castle-bc:2.7.2
-org.apache.pulsar:protobuf-shaded:2.1.0-incubating
-org.apache.pulsar:pulsar-client-admin-original:2.7.2
-org.apache.pulsar:pulsar-client-api:2.7.2
-org.apache.pulsar:pulsar-client-original:2.7.2
-org.apache.pulsar:pulsar-common:2.7.2
-org.apache.pulsar:pulsar-transaction-common:2.7.2
-org.apache.spark:spark-launcher_2.12:3.2.1
-org.apache.spark:spark-tags_2.12:3.2.1
-org.apache.thrift:libthrift:0.15.0
-org.apache.yetus:audience-annotations:0.13.0
-org.apache.zookeeper:zookeeper-jute:3.6.3
-org.apache.zookeeper:zookeeper:3.6.3
-org.apiguardian:apiguardian-api:1.1.0
+org.apache.kerby:kerb-admin:2.0.3
+org.apache.kerby:kerb-client:2.0.3
+org.apache.kerby:kerb-common:2.0.3
+org.apache.kerby:kerb-core:2.0.3
+org.apache.kerby:kerb-crypto:2.0.3
+org.apache.kerby:kerb-identity:2.0.3
+org.apache.kerby:kerb-server:2.0.3
+org.apache.kerby:kerb-simplekdc:2.0.3
+org.apache.kerby:kerb-util:2.0.3
+org.apache.kerby:kerby-asn1:2.0.3
+org.apache.kerby:kerby-config:2.0.3
+org.apache.kerby:kerby-pkix:2.0.3
+org.apache.kerby:kerby-util:2.0.3
+org.apache.kerby:kerby-xdr:2.0.3
+org.apache.kerby:token-provider:2.0.3
+org.apache.logging.log4j:log4j-1.2-api:2.23.1
+org.apache.logging.log4j:log4j-api:2.23.1
+org.apache.logging.log4j:log4j-core:2.23.1
+org.apache.logging.log4j:log4j-slf4j2-impl:2.23.1
+org.apache.lucene:lucene-analysis-common:9.11.1
+org.apache.lucene:lucene-backward-codecs:9.11.1
+org.apache.lucene:lucene-core:9.11.1
+org.apache.lucene:lucene-queries:9.11.1
+org.apache.lucene:lucene-queryparser:9.11.1
+org.apache.lucene:lucene-sandbox:9.11.1
+org.apache.orc:orc-core:1.9.3
+org.apache.orc:orc-shims:1.9.3
+org.apache.parquet:parquet-avro:1.14.1
+org.apache.parquet:parquet-column:1.14.1
+org.apache.parquet:parquet-common:1.14.1
+org.apache.parquet:parquet-encoding:1.14.1
+org.apache.parquet:parquet-format-structures:1.14.1
+org.apache.parquet:parquet-hadoop:1.14.1
+org.apache.parquet:parquet-jackson:1.14.1
+org.apache.pulsar:bouncy-castle-bc:3.3.0
+org.apache.pulsar:pulsar-client-admin-api:3.3.0
+org.apache.pulsar:pulsar-client-api:3.3.0
+org.apache.pulsar:pulsar-client:3.3.0
+org.apache.spark:spark-launcher_2.12:3.5.1
+org.apache.spark:spark-tags_2.12:3.5.1
+org.apache.thrift:libthrift:0.18.1
+org.apache.yetus:audience-annotations:0.15.0
+org.apache.zookeeper:zookeeper-jute:3.9.2
+org.apache.zookeeper:zookeeper:3.9.2
+org.apiguardian:apiguardian-api:1.1.2
org.asynchttpclient:async-http-client-netty-utils:2.12.3
org.asynchttpclient:async-http-client:2.12.3
org.codehaus.groovy:groovy-all:2.4.21
-org.eclipse.jetty:jetty-http:9.4.45.v20220203
-org.eclipse.jetty:jetty-io:9.4.45.v20220203
-org.eclipse.jetty:jetty-security:9.4.45.v20220203
-org.eclipse.jetty:jetty-server:9.4.45.v20220203
-org.eclipse.jetty:jetty-servlet:9.4.45.v20220203
-org.eclipse.jetty:jetty-util-ajax:9.4.45.v20220203
-org.eclipse.jetty:jetty-util:9.4.45.v20220203
-org.javassist:javassist:3.19.0-GA
-org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.71
-org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.71
-org.jetbrains.kotlin:kotlin-stdlib:1.4.0
-org.jetbrains:annotations:13.0
+org.conscrypt:conscrypt-openjdk-uber:2.5.2
+org.eclipse.jetty.websocket:websocket-api:9.4.54.v20240208
+org.eclipse.jetty.websocket:websocket-client:9.4.54.v20240208
+org.eclipse.jetty.websocket:websocket-common:9.4.54.v20240208
+org.eclipse.jetty:jetty-client:9.4.54.v20240208
+org.eclipse.jetty:jetty-http:9.4.54.v20240208
+org.eclipse.jetty:jetty-io:9.4.54.v20240208
+org.javassist:javassist:3.30.2-GA
+org.jetbrains.kotlin:kotlin-reflect:1.9.22
+org.jetbrains.kotlin:kotlin-stdlib-common:1.9.24
+org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.24
+org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.24
+org.jetbrains.kotlin:kotlin-stdlib:1.9.24
+org.jetbrains:annotations:17.0.0
+org.locationtech.proj4j:proj4j:1.2.2
org.lz4:lz4-java:1.8.0
org.objenesis:objenesis:2.1
org.quartz-scheduler:quartz:2.3.2
-org.roaringbitmap:RoaringBitmap:0.9.35
-org.roaringbitmap:shims:0.9.35
+org.roaringbitmap:RoaringBitmap:1.1.0
org.scala-lang.modules:scala-collection-compat_2.12:2.3.0
org.scala-lang.modules:scala-java8-compat_2.12:0.9.1
-org.scala-lang.modules:scala-xml_2.12:1.3.0
-org.typelevel:macro-compat_2.12:1.1.1
-org.webjars:swagger-ui:3.23.11
-org.wildfly.openssl:wildfly-openssl:1.0.7.Final
+org.scala-lang.modules:scala-xml_2.12:2.3.0
+org.scala-lang:scala-library:2.12.19
+org.slf4j:jcl-over-slf4j:2.0.13
+org.snakeyaml:snakeyaml-engine:2.6
+org.webjars:swagger-ui:5.17.14
org.xerial.larray:larray-buffer:0.4.1
org.xerial.larray:larray-mmap:0.4.1
-org.xerial.snappy:snappy-java:1.1.8.2
-org.yaml:snakeyaml:1.33
-software.amazon.awssdk:annotations:2.14.28
-software.amazon.awssdk:apache-client:2.14.28
-software.amazon.awssdk:arns:2.14.28
-software.amazon.awssdk:auth:2.14.28
-software.amazon.awssdk:aws-cbor-protocol:2.14.28
-software.amazon.awssdk:aws-core:2.14.28
-software.amazon.awssdk:aws-json-protocol:2.14.28
-software.amazon.awssdk:aws-query-protocol:2.14.28
-software.amazon.awssdk:aws-xml-protocol:2.14.28
-software.amazon.awssdk:http-client-spi:2.14.28
-software.amazon.awssdk:kinesis:2.14.28
-software.amazon.awssdk:metrics-spi:2.14.28
-software.amazon.awssdk:netty-nio-client:2.14.28
-software.amazon.awssdk:profiles:2.14.28
-software.amazon.awssdk:protocol-core:2.14.28
-software.amazon.awssdk:regions:2.14.28
-software.amazon.awssdk:s3:2.14.28
-software.amazon.awssdk:sdk-core:2.14.28
-software.amazon.awssdk:sts:2.14.28
-software.amazon.awssdk:utils:2.14.28
+org.xerial.snappy:snappy-java:1.1.10.5
+org.yaml:snakeyaml:2.2
+software.amazon.awssdk:annotations:2.26.11
+software.amazon.awssdk:apache-client:2.26.11
+software.amazon.awssdk:arns:2.26.11
+software.amazon.awssdk:auth:2.26.11
+software.amazon.awssdk:aws-cbor-protocol:2.26.11
+software.amazon.awssdk:aws-core:2.26.11
+software.amazon.awssdk:aws-json-protocol:2.26.11
+software.amazon.awssdk:aws-query-protocol:2.26.11
+software.amazon.awssdk:aws-xml-protocol:2.26.11
+software.amazon.awssdk:checksums-spi:2.26.11
+software.amazon.awssdk:checksums:2.26.11
+software.amazon.awssdk:crt-core:2.26.11
+software.amazon.awssdk:endpoints-spi:2.26.11
+software.amazon.awssdk:http-auth-aws:2.26.11
+software.amazon.awssdk:http-auth-spi:2.26.11
+software.amazon.awssdk:http-auth:2.26.11
+software.amazon.awssdk:http-client-spi:2.26.11
+software.amazon.awssdk:identity-spi:2.26.11
+software.amazon.awssdk:json-utils:2.26.11
+software.amazon.awssdk:kinesis:2.26.11
+software.amazon.awssdk:metrics-spi:2.26.11
+software.amazon.awssdk:netty-nio-client:2.26.11
+software.amazon.awssdk:profiles:2.26.11
+software.amazon.awssdk:protocol-core:2.26.11
+software.amazon.awssdk:regions:2.26.11
+software.amazon.awssdk:retries-spi:2.26.11
+software.amazon.awssdk:retries:2.26.11
+software.amazon.awssdk:s3:2.26.11
+software.amazon.awssdk:sdk-core:2.26.11
+software.amazon.awssdk:sts:2.26.11
+software.amazon.awssdk:third-party-jackson-core:2.26.11
+software.amazon.awssdk:third-party-jackson-dataformat-cbor:2.26.11
+software.amazon.awssdk:utils:2.26.11
software.amazon.eventstream:eventstream:1.0.1
-xml-apis:xml-apis:1.4.01
+tools.profiler:async-profiler:2.9
+xml-apis:xml-apis:1.0.b2
------------------------------------------------------------------------------------
@@ -496,81 +566,80 @@ of these licenses.
MIT License
-----------
-com.azure:azure-core-http-netty:1.11.8
-com.azure:azure-core:1.26.0
-com.azure:azure-storage-blob:12.15.0
-com.azure:azure-storage-common:12.15.0
-com.azure:azure-storage-file-datalake:12.8.0
-com.azure:azure-storage-internal-avro:12.2.0
-com.microsoft.azure:azure-data-lake-store-sdk:2.3.10
-com.github.scopt:scopt_2.12:3.5.0
-net.sf.jopt-simple:jopt-simple:4.6
+com.azure:azure-core-http-netty:1.15.1
+com.azure:azure-core:1.49.1
+com.azure:azure-identity:1.13.0
+com.azure:azure-json::1.1.0
+com.azure:azure-storage-blob:12.26.1
+com.azure:azure-storage-common:12.25.1
+com.azure:azure-storage-file-datalake:12.19.1
+com.azure:azure-storage-internal-avro:12.11.1
+com.azure:azure-xml:1.0.0
+com.eclipsesource.minimal-json:minimal-json:0.9.5
+com.github.jnr:jnr-x86asm:1.0.2
+com.microsoft.azure:msal4j-persistence-extension:1.3.0
+com.microsoft.azure:msal4j:1.15.1
+net.sf.jopt-simple:jopt-simple:5.0.4
net.sourceforge.argparse4j:argparse4j:0.7.0
-org.checkerframework:checker-compat-qual:2.5.5
-org.checkerframework:checker-qual:3.10.0
-org.codehaus.mojo:animal-sniffer-annotations:1.17
-org.reactivestreams:reactive-streams:1.0.3
-org.typelevel:cats-core_2.12:2.1.0
-org.typelevel:cats-kernel_2.12:2.1.0
-org.typelevel:cats-macros_2.12:2.1.0
-org.typelevel:jawn-parser_2.12:1.0.0
-org.slf4j:jul-to-slf4j:1.7.25
-org.slf4j:slf4j-api:1.7.25
+org.checkerframework:checker-qual:3.44.0
+org.codehaus.mojo:animal-sniffer-annotations:1.23
+org.reactivestreams:reactive-streams:1.0.4
+org.slf4j:slf4j-api:2.0.13
+org.slf4j:slf4j-reload4j:1.7.36
+org.typelevel:cats-core_2.12:2.10.0
+org.typelevel:cats-kernel_2.12:2.10.0
+org.typelevel:jawn-parser_2.12:1.5.1
BSD
---
com.thoughtworks.paranamer:paranamer:2.8
-
BSD 2-Clause
------------
-com.github.luben:zstd-jni:1.5.2-3
-org.clapper:grizzled-slf4j_2.12:1.3.2
-org.codehaus.woodstox:stax2-api:3.1.4
+com.github.luben:zstd-jni:1.5.6-3
+org.codehaus.woodstox:stax2-api:4.2.2
BSD 3-Clause
------------
com.esotericsoftware.kryo:kryo:2.24.0
com.esotericsoftware.minlog:minlog:1.2
-com.google.api:api-common:1.10.0
-com.google.api:gax-httpjson:0.75.2
-com.google.api:gax:1.58.2
-com.google.auth:google-auth-library-credentials:0.21.1
-com.google.auth:google-auth-library-oauth2-http:0.21.1
-com.google.protobuf:protobuf-java-util:3.13.0
-com.google.protobuf:protobuf-java:3.19.2
-com.google.protobuf:protobuf-lite:3.0.1
-com.jcabi:jcabi-aspects:0.22
-com.jcabi:jcabi-log:0.17.1
-org.antlr:antlr4-runtime:4.6
-org.codehaus.janino:commons-compiler:3.1.6
-org.codehaus.janino:janino:3.1.6
-org.ow2.asm:asm:5.0.4
-org.scala-lang:scala-library:2.10.5
-org.scala-lang.modules:scala-parser-combinators_2.12:1.1.1
-org.threeten:threeten-extra:1.5.0
-org.threeten:threetenbp:1.4.4
+com.google.api:api-common:2.32.0
+com.google.api:gax-grpc:2.49.0
+com.google.api:gax-httpjson:2.49.0
+com.google.api:gax:2.49.0
+com.google.auth:google-auth-library-credentials:1.23.0
+com.google.auth:google-auth-library-oauth2-http:1.23.0
+com.google.protobuf:protobuf-java-util:3.25.3
+com.google.protobuf:protobuf-java:3.25.3
+org.codehaus.janino:commons-compiler:3.1.12
+org.codehaus.janino:janino:3.1.12
+org.codehaus.jettison:jettison:1.5.4
+org.jline:jline:3.26.2
+org.ow2.asm:asm:9.7
+org.threeten:threeten-extra:1.7.1
+org.threeten:threetenbp:1.6.9
Common Development and Distribution License (CDDL) 1.0
------------------------------------------------------
(see licenses/LICENSE-cddl-1.0.txt)
-javax.activation:activation:1.1.0
-javax.annotation:javax.annotation-api:1.2
-javax.servlet:javax.servlet-api:3.0.1
-org.glassfish.jersey.containers:jersey-container-servlet-core:2.35
+com.sun.activation:javax.activation:1.2.0
+org.glassfish.jersey.containers:jersey-container-servlet-core:2.42
Common Development and Distribution License (CDDL) 1.1
------------------------------------------------------
(see licenses/LICENSE-cddl-1.1.txt)
-com.sun.xml.bind:jaxb-core:2.3.0
-javax.ws.rs:javax.ws.rs-api:2.0.1
-javax.xml.bind:jaxb-api:2.2.11
+com.github.pjfanning:jersey-json:1.20
+com.sun.xml.bind:jaxb-impl:2.2.3-1
+javax.activation:javax.activation-api:1.2.0
+javax.annotation:javax.annotation-api:1.3.2
+javax.servlet:javax.servlet-api:4.0.1
+javax.xml.bind:jaxb-api:2.3.1
Eclipse Public License (EPL) 1.0
@@ -579,8 +648,9 @@ Eclipse Public License (EPL) 1.0
com.mchange:c3p0:0.9.5.4
com.mchange:mchange-commons-java:0.2.15
-org.aspectj:aspectjrt:1.8.4
-org.locationtech.jts:jts-core:1.16.1
+ch.qos.logback:logback-classic:1.2.13
+ch.qos.logback:logback-core:1.2.13
+javax.ws.rs:javax.ws.rs-api:2.1.1
Eclipse Public License (EPL) 2.0
@@ -588,6 +658,7 @@ Eclipse Public License (EPL) 2.0
(see licenses/LICENSE-epl-2.0.txt)
jakarta.annotation:jakarta.annotation-api:1.3.5
+jakarta.servlet:jakarta.servlet-api:4.0.4
jakarta.ws.rs:jakarta.ws.rs-api:2.1.6
org.glassfish.grizzly:grizzly-framework:2.4.4
org.glassfish.grizzly:grizzly-http-server:2.4.4
@@ -596,17 +667,21 @@ org.glassfish.hk2.external:aopalliance-repackaged:2.6.1
org.glassfish.hk2.external:jakarta.inject:2.6.1
org.glassfish.hk2:hk2-api:2.6.1
org.glassfish.hk2:hk2-locator:2.6.1
+org.glassfish.hk2:hk2-metadata-generator:2.6.1
org.glassfish.hk2:hk2-utils:2.6.1
org.glassfish.hk2:osgi-resource-locator:1.0.3
-org.glassfish.jersey.containers:jersey-container-grizzly2-http:2.35
-org.glassfish.jersey.core:jersey-client:2.35
-org.glassfish.jersey.core:jersey-common:2.35
-org.glassfish.jersey.core:jersey-server:2.35
-org.glassfish.jersey.ext:jersey-entity-filtering:2.35
-org.glassfish.jersey.inject:jersey-hk2:2.35
-org.glassfish.jersey.media:jersey-media-json-jackson:2.35
-org.glassfish.jersey.media:jersey-media-multipart:2.35
-org.glassfish.tyrus.bundles:tyrus-standalone-client:1.15
+org.glassfish.jersey.containers:jersey-container-grizzly2-http:2.42
+org.glassfish.jersey.core:jersey-client:2.42
+org.glassfish.jersey.core:jersey-common:2.42
+org.glassfish.jersey.core:jersey-server:2.42
+org.glassfish.jersey.ext:jersey-entity-filtering:2.42
+org.glassfish.jersey.inject:jersey-hk2:2.42
+org.glassfish.jersey.media:jersey-media-json-jackson:2.42
+org.glassfish.jersey.media:jersey-media-multipart:2.42
+org.glassfish.tyrus.bundles:tyrus-standalone-client:2.1.5
+org.locationtech.jts.io:jts-io-common:1.19.0
+org.locationtech.jts:jts-core:1.19.0
+
Eclipse Distribution License (EDL) 1.0
@@ -614,14 +689,13 @@ Eclipse Distribution License (EDL) 1.0
(see licenses/LICENSE-edl-1.0.txt)
com.sun.activation:jakarta.activation:1.2.2
-jakarta.activation:jakarta.activation-api:1.2.1
-jakarta.xml.bind:jakarta.xml.bind-api:2.3.2
-org.jvnet.mimepull:mimepull:1.9.13
+jakarta.xml.bind:jakarta.xml.bind-api:2.3.3
+org.jvnet.mimepull:mimepull:1.9.15
WTFPL License
-------------
-org.reflections:reflections:0.9.11
+org.reflections:reflections:0.10.2
Creative Commons Attribution License (CC BY 2.5)
@@ -631,12 +705,22 @@ net.jcip:jcip-annotations:1.0
Bounty Castle License
---------------------
-org.bouncycastle:bcpkix-jdk15to18:1.68
-org.bouncycastle:bcprov-ext-jdk15to18:1.68
-org.bouncycastle:bcprov-jdk15to18:1.68
-
+org.bouncycastle:bcpkix-jdk18on:1.78.1
+org.bouncycastle:bcprov-jdk18on:1.78.1
+org.bouncycastle:bcutil-jdk18on:1.78.1
ISC License
-----------
org.mindrot:jbcrypt:0.4
+
+The Go License
+--------------
+
+com.google.re2j:re2j:1.7
+
+JCraft, Inc.
+------------
+
+com.jcraft:jsch:0.1.55
+
diff --git a/NOTICE-binary b/NOTICE-binary
index 186fe1a2051a..81e0ef937398 100644
--- a/NOTICE-binary
+++ b/NOTICE-binary
@@ -1,6 +1,3 @@
-Apache Pinot
-Copyright 2018-2022 Apache Software Foundation
-
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
@@ -8,60 +5,53 @@ The Apache Software Foundation (http://www.apache.org/).
// NOTICE file corresponding to the section 4d of The Apache License,
// Version 2.0, in this case for
// ------------------------------------------------------------------
+// NOTICE file corresponding to the section 4d of The Apache License,
+// Version 2.0, in this case for
+// ------------------------------------------------------------------
Spark Project Tags
-Copyright 2022 The Apache Software Foundation
+Copyright 2024 Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
-Apache Commons Configuration
-Copyright 2001-2013 The Apache Software Foundation
-Apache Commons Codec
-Copyright 2002-2020 The Apache Software Foundation
+Apache Commons Lang
+Copyright 2001-2023 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (https://www.apache.org/).
-src/test/org/apache/commons/codec/language/DoubleMetaphoneTest.java
-contains test data from http://aspell.net/test/orig/batch0.tab.
-Copyright (C) 2002 Kevin Atkinson (kevina@gnu.org)
-
-===============================================================================
-
-The content of package org.apache.commons.codec.language.bm has been translated
-from the original php source code available at http://stevemorse.org/phoneticinfo.htm
-with permission from the original authors.
-Original source copyright:
-Copyright (c) 2008 Alexander Beider & Stephen P. Morse.
+Apache Commons Collections
+Copyright 2001-2019 The Apache Software Foundation
-Apache Commons IO
-Copyright 2002-2021 The Apache Software Foundation
+Apache Commons Math
+Copyright 2001-2016 The Apache Software Foundation
-Apache Commons Lang
-Copyright 2001-2011 The Apache Software Foundation
+This product includes software developed for Orekit by
+CS Systèmes d'Information (http://www.c-s.fr/)
+Copyright 2010-2012 CS Systèmes d'Information
-This product includes software developed by
-The Apache Software Foundation (http://www.apache.org/).
+Apache Commons Configuration
+Copyright 2001-2024 The Apache Software Foundation
-Apache Commons Logging
-Copyright 2003-2014 The Apache Software Foundation
+Apache Commons Text
+Copyright 2014-2024 The Apache Software Foundation
-Apache Commons Lang
-Copyright 2001-2020 The Apache Software Foundation
+Apache Commons IO
+Copyright 2002-2024 The Apache Software Foundation
-Apache Commons Collections
-Copyright 2001-2015 The Apache Software Foundation
+Apache Commons Codec
+Copyright 2002-2024 The Apache Software Foundation
-Apache Log4j SLF4J Binding
-Copyright 1999-1969 The Apache Software Foundation
+Apache Log4j SLF4J 2.0 Binding
+Copyright 1999-2024 The Apache Software Foundation
Apache Log4j API
-Copyright 1999-1969 The Apache Software Foundation
+Copyright 1999-2024 The Apache Software Foundation
Apache Log4j 1.x Compatibility API
-Copyright 1999-1969 The Apache Software Foundation
+Copyright 1999-2024 The Apache Software Foundation
=============================================================================
= NOTICE file corresponding to section 4d of the Apache License Version 2.0 =
@@ -88,7 +78,7 @@ in some artifacts (usually source distributions); but is always available
from the source code management (SCM) system project uses.
Apache Avro
-Copyright 2009-2020 The Apache Software Foundation
+Copyright 2009-2023 The Apache Software Foundation
Apache Groovy
Copyright 2003-2020 The Apache Software Foundation
@@ -102,26 +92,33 @@ Licensed under the Creative Commons Attribution Licence v2.5
http://creativecommons.org/licenses/by/2.5/
Apache HttpClient Mime
-Copyright 1999-2020 The Apache Software Foundation
+Copyright 1999-2022 The Apache Software Foundation
Apache HttpClient
-Copyright 1999-2020 The Apache Software Foundation
+Copyright 1999-2022 The Apache Software Foundation
Apache HttpCore
-Copyright 2005-2020 The Apache Software Foundation
+Copyright 2005-2022 The Apache Software Foundation
Apache Calcite
-Copyright 2012-2021 The Apache Software Foundation
+Copyright 2012-2024 The Apache Software Foundation
This product is based on source code originally developed
by DynamoBI Corporation, LucidEra Inc., SQLstream Inc. and others
under the auspices of the Eigenbase Foundation
and released as the LucidDB project.
-The web site includes files generated by Jekyll.
-
Apache Calcite -- Avatica
-Copyright 2012-2021 The Apache Software Foundation
+Copyright 2012-2024 The Apache Software Foundation
+
+Apache HttpClient
+Copyright 1999-2021 The Apache Software Foundation
+
+Apache HttpComponents Core HTTP/2
+Copyright 2005-2021 The Apache Software Foundation
+
+Apache HttpComponents Core HTTP/1.1
+Copyright 2005-2021 The Apache Software Foundation
Jackson is a high-performance, Free/Open Source JSON processing library.
It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has
@@ -138,83 +135,484 @@ A list of contributors may be found from CREDITS file, which is included
in some artifacts (usually source distributions); but is always available
from the source code management (SCM) system project uses.
-Apache Thrift
-Copyright (C) 2006 - 2019, The Apache Software Foundation
+# Notice for Jersey
+This content is produced and maintained by the Eclipse Jersey project.
-Apache Jakarta HttpClient
-Copyright 1999-2007 The Apache Software Foundation
+* Project home: https://projects.eclipse.org/projects/ee4j.jersey
-Apache Commons Compress
-Copyright 2002-2021 The Apache Software Foundation
+## Trademarks
+Eclipse Jersey is a trademark of the Eclipse Foundation.
+
+## Copyright
+
+All content is the property of the respective authors or their employers. For
+more information regarding authorship of content, please consult the listed
+source code repository logs.
+
+## Declared Project Licenses
+
+This program and the accompanying materials are made available under the terms
+of the Eclipse Public License v. 2.0 which is available at
+http://www.eclipse.org/legal/epl-2.0. This Source Code may also be made
+available under the following Secondary Licenses when the conditions for such
+availability set forth in the Eclipse Public License v. 2.0 are satisfied: GNU
+General Public License, version 2 with the GNU Classpath Exception which is
+available at https://www.gnu.org/software/classpath/license.html.
+
+SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
+
+## Source Code
+The project maintains the following source code repositories:
+
+* https://github.com/eclipse-ee4j/jersey
+
+## Third-party Content
+
+Angular JS, v1.6.6
+* License MIT (http://www.opensource.org/licenses/mit-license.php)
+* Project: http://angularjs.org
+* Coyright: (c) 2010-2017 Google, Inc.
+
+aopalliance Version 1
+* License: all the source code provided by AOP Alliance is Public Domain.
+* Project: http://aopalliance.sourceforge.net
+* Copyright: Material in the public domain is not protected by copyright
+
+Bean Validation API 2.0.2
+* License: Apache License, 2.0
+* Project: http://beanvalidation.org/1.1/
+* Copyright: 2009, Red Hat, Inc. and/or its affiliates, and individual contributors
+* by the @authors tag.
+
+Hibernate Validator CDI, 6.2.5.Final
+* License: Apache License, 2.0
+* Project: https://beanvalidation.org/
+* Repackaged in org.glassfish.jersey.server.validation.internal.hibernate
+
+Bootstrap v3.3.7
+* License: MIT license (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+* Project: http://getbootstrap.com
+* Copyright: 2011-2016 Twitter, Inc
+
+Google Guava Version 18.0
+* License: Apache License, 2.0
+* Copyright (C) 2009 The Guava Authors
+
+javax.inject Version: 1
+* License: Apache License, 2.0
+* Copyright (C) 2009 The JSR-330 Expert Group
+
+Javassist Version 3.30.2-GA
+* License: Apache License, 2.0
+* Project: http://www.javassist.org/
+* Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.
+
+Jackson JAX-RS Providers Version 2.16.2
+* License: Apache License, 2.0
+* Project: https://github.com/FasterXML/jackson-jaxrs-providers
+* Copyright: (c) 2009-2024 FasterXML, LLC. All rights reserved unless otherwise indicated.
+
+jQuery v1.12.4
+* License: jquery.org/license
+* Project: jquery.org
+* Copyright: (c) jQuery Foundation
+
+jQuery Barcode plugin 0.3
+* License: MIT & GPL (http://www.opensource.org/licenses/mit-license.php & http://www.gnu.org/licenses/gpl.html)
+* Project: http://www.pasella.it/projects/jQuery/barcode
+* Copyright: (c) 2009 Antonello Pasella antonello.pasella@gmail.com
+
+JSR-166 Extension - JEP 266
+* License: CC0
+* No copyright
+* Written by Doug Lea with assistance from members of JCP JSR-166 Expert Group and released to the public domain, as explained at http://creativecommons.org/publicdomain/zero/1.0/
+
+KineticJS, v4.7.1
+* License: MIT license (http://www.opensource.org/licenses/mit-license.php)
+* Project: http://www.kineticjs.com, https://github.com/ericdrowell/KineticJS
+* Copyright: Eric Rowell
+
+org.objectweb.asm Version 9.6
+* License: Modified BSD (https://asm.ow2.io/license.html)
+* Copyright (c) 2000-2011 INRIA, France Telecom. All rights reserved.
+
+org.osgi.core version 6.0.0
+* License: Apache License, 2.0
+* Copyright (c) OSGi Alliance (2005, 2008). All Rights Reserved.
+
+org.glassfish.jersey.server.internal.monitoring.core
+* License: Apache License, 2.0
+* Copyright (c) 2015-2018 Oracle and/or its affiliates. All rights reserved.
+* Copyright 2010-2013 Coda Hale and Yammer, Inc.
+
+W3.org documents
+* License: W3C License
+* Copyright: Copyright (c) 1994-2001 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/
+
+# Notices for the Jakarta RESTful Web Services Project
+
+This content is produced and maintained by the **Jakarta RESTful Web Services**
+project.
+
+* Project home: https://projects.eclipse.org/projects/ee4j.jaxrs
+
+## Trademarks
+
+**Jakarta RESTful Web Services** is a trademark of the Eclipse Foundation.
+
+## Source Code
+
+The project maintains the following source code repositories:
+
+* https://github.com/eclipse-ee4j/jaxrs-api
+
+This project leverages the following third party content.
+
+javaee-api (7.0)
+
+* License: Apache-2.0 AND W3C
+
+JUnit (4.11)
+
+* License: Common Public License 1.0
+
+Mockito (2.16.0)
+
+* Project: http://site.mockito.org
+* Source: https://github.com/mockito/mockito/releases/tag/v2.16.0
+
+## Cryptography
+
+Content may contain encryption software. The country in which you are currently
+may have restrictions on the import, possession, and use, and/or re-export to
+another country, of encryption software. BEFORE using any encryption software,
+please check the country's laws, regulations and policies concerning the import,
+possession, or use, and re-export of encryption software, to see if this is
+permitted.
+
+# Notices for Jakarta Annotations
+
+This content is produced and maintained by the Jakarta Annotations project.
+
+ * Project home: https://projects.eclipse.org/projects/ee4j.ca
+
+Jakarta Annotations is a trademark of the Eclipse Foundation.
+
+ * https://github.com/eclipse-ee4j/common-annotations-api
+
+# Notices for Eclipse GlassFish
+
+This content is produced and maintained by the Eclipse GlassFish project.
+
+* Project home: https://projects.eclipse.org/projects/ee4j.glassfish
+
+Eclipse GlassFish, and GlassFish are trademarks of the Eclipse Foundation.
+
+* https://github.com/eclipse-ee4j/glassfish-ha-api
+* https://github.com/eclipse-ee4j/glassfish-logging-annotation-processor
+* https://github.com/eclipse-ee4j/glassfish-shoal
+* https://github.com/eclipse-ee4j/glassfish-cdi-porting-tck
+* https://github.com/eclipse-ee4j/glassfish-jsftemplating
+* https://github.com/eclipse-ee4j/glassfish-hk2-extra
+* https://github.com/eclipse-ee4j/glassfish-hk2
+* https://github.com/eclipse-ee4j/glassfish-fighterfish
----
+None
-The files in the package org.apache.commons.compress.archivers.sevenz
-were derived from the LZMA SDK, version 9.20 (C/ and CPP/7zip/),
-which has been placed in the public domain:
+[//]: # " Copyright (c) 2018, 2021 Oracle and/or its affiliates. All rights reserved. "
+[//]: # " "
+[//]: # " This program and the accompanying materials are made available under the "
+[//]: # " terms of the Eclipse Distribution License v. 1.0, which is available at "
+[//]: # " http://www.eclipse.org/org/documents/edl-v10.php. "
+[//]: # " "
+[//]: # " SPDX-License-Identifier: BSD-3-Clause "
-"LZMA SDK is placed in the public domain." (http://www.7-zip.org/sdk.html)
+# Notices for Eclipse Metro
-The test file lbzip2_32767.bz2 has been copied from libbzip2's source
-repository:
+This content is produced and maintained by the Eclipse Metro project.
-This program, "bzip2", the associated library "libbzip2", and all
-documentation, are copyright (C) 1996-2019 Julian R Seward. All
-rights reserved.
+* Project home: https://projects.eclipse.org/projects/ee4j.metro
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
+Eclipse Metro is a trademark of the Eclipse Foundation.
-1. Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
+This program and the accompanying materials are made available under the terms
+of the Eclipse Distribution License v. 1.0 which is available at
+http://www.eclipse.org/org/documents/edl-v10.php.
-2. The origin of this software must not be misrepresented; you must
- not claim that you wrote the original software. If you use this
- software in a product, an acknowledgment in the product
- documentation would be appreciated but is not required.
+SPDX-License-Identifier: BSD-3-Clause
-3. Altered source versions must be plainly marked as such, and must
- not be misrepresented as being the original software.
+* https://github.com/eclipse-ee4j/metro-xmlstreambuffer
+* https://github.com/eclipse-ee4j/metro-policy
+* https://github.com/eclipse-ee4j/metro-wsit
+* https://github.com/eclipse-ee4j/metro-mimepull
+* https://github.com/eclipse-ee4j/metro-ws-test-harness
+* https://github.com/eclipse-ee4j/metro-package-rename-task
+* https://github.com/eclipse-ee4j/metro-jax-ws
+* https://github.com/eclipse-ee4j/metro-saaj
+* https://github.com/eclipse-ee4j/metro-jwsdp-samples
+* https://github.com/eclipse-ee4j/jax-rpc-ri
-4. The name of the author may not be used to endorse or promote
- products derived from this software without specific prior written
- permission.
+addressing.xml Version: 2004/10 (n/a)
-THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
-OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
-DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
-GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+* License: W3C
+* Project: https://www.w3.org/Submission/ws-addressing/
+* Source: http://schemas.xmlsoap.org/ws/2004/08/addressing/
-Julian Seward, jseward@acm.org
+ant-launcher (1.10.2)
+
+* License: Apache-2.0 AND SAX-PD AND W3C
+* Project: https://ant.apache.org/
+* Source:
+ http://central.maven.org/maven2/org/apache/ant/ant-launcher/1.10.2/ant-launcher-1.10.2-sources.jar
+
+Apache Ant (1.6)
+
+* License: Apache-1.1
+* Project: https://ant.apache.org/
+* Source: https://repo1.maven.org/maven2/ant/ant/1.6/ant-1.6-sources.jar
+
+Apache Ant (1.10.2)
+
+* License: Apache-2.0 AND W3C AND LicenseRef-Public-Domain
+
+commons-logging (1.1.2)
+
+* License: Apache-2.0
+* Project: https://commons.apache.org/proper/commons-logging/
+* Source:
+ http://central.maven.org/maven2/commons-logging/commons-logging/1.1.2/commons-logging-1.1.2-sources.jar
+
+JUnit (4.12)
+
+* License: Eclipse Public License
+
+maven-core (3.5.2)
+
+* License: Apache-2.0
+
+maven-plugin-annotations (3.5.1)
+
+* License: Apache-2.0
+* Project:
+ https://maven.apache.org/plugin-tools/maven-plugin-annotations/project-info.html
+* Source:
+ https://github.com/apache/maven-plugin-tools/tree/maven-plugin-tools-3.5.1/maven-plugin-annotations
+
+maven-plugin-api (3.5.2)
+
+* License: Apache-2.0
+* Project: https://maven.apache.org/
+* Source: https://github.com/apache/maven/tree/master/maven-plugin-api
+
+maven-resolver-api (1.1.1)
+
+maven-resolver-util (1.1.1)
+
+maven-settings (3.5.2)
+
+mex.xsd Version: 2004/09 (n/a)
+
+* License: Oasis Style
+* Project: https://www.w3.org/Submission/WS-MetadataExchange/#appendix-II
+* Source: http://schemas.xmlsoap.org/ws/2004/09/mex/MetadataExchange.xsd
+
+plexus-utils (3.1.0)
+
+* License: Apache- 2.0 or Apache- 1.1 or BSD or Public Domain or Indiana
+ University Extreme! Lab Software License V1.1.1 (Apache 1.1 style)
+
+relaxng-datatype (1.0)
+
+* License: New BSD license
+
+stax2-api (4.1)
+
+* License: Pending
+* Project: https://github.com/FasterXML/stax2-api
+* Source:
+ http://central.maven.org/maven2/org/codehaus/woodstox/stax2-api/4.1/stax2-api-4.1-sources.jar
+
+testng (6.14.2)
+
+* License: Apache-2.0 AND MIT
+* Project: https://testng.org/doc/index.html
+* Source: https://github.com/cbeust/testng
+
+woodstox-core-asl (4.4.1)
+
+woodstox-core-asl (5.1.0)
+
+* License: Pending
+* Project: https://github.com/FasterXML/woodstox
+* Source: https://github.com/FasterXML/woodstox
+
+ws-addr.wsd (1.0)
+
+* License: W3C
+* Project: https://www.w3.org/2005/08/addressing/
+* Source: https://www.w3.org/2006/03/addressing/ws-addr.xsd
+
+wsat.xsd Version: 2004/10 (n/a)
+
+* License: Oasis Style
+* Project: http://schemas.xmlsoap.org/ws/2004/10/wsat/
+* Source: http://schemas.xmlsoap.org/ws/2004/10/wsat/wsat.xsd
+
+wscoor.xsd (1.0)
+
+* License: OASIS Style
+
+wscoor.xsd (1.1)
+
+* License: Oasis (Custom)
+* Project: http://docs.oasis-open.org/ws-tx/wscoor/2006/06
+* Source:
+ http://docs.oasis-open.org/ws-tx/wscoor/2006/06/wstx-wscoor-1.1-schema-200701.xsd
+
+wsrm Version: 2005/02 (n/a)
+
+* License: Oasis (Custom)
+* Project: http://schemas.xmlsoap.org/ws/2005/02/rm/
+* Source:
+ http://schemas.xmlsoap.org/ws/2005/02/rm/wsrm.xsd;%20http://schemas.xmlsoap.org/ws/2005/02/rm/wsrm-policy.xsd
+
+wsrm.xsd (1.2)
+
+* License: Oasis
+
+wstx-wsat.xsd (1.1)
+
+* License: Oasis (Custom)
+
+xmlsec (1.5.8)
+
+* License: Apache-2.0
+* Project: http://santuario.apache.org/
+* Source:
+ https://repo1.maven.org/maven2/org/apache/santuario/xmlsec/1.5.8/xmlsec-1.5.8-sources.jar
+
+Jackson core and extension components may licensed under different licenses.
+To find the details that apply to this artifact see the accompanying LICENSE file.
+For more information, including possible other licensing options, contact
+FasterXML.com (http://fasterxml.com).
+
+[//]: # " Copyright (c) 2018, 2019 Oracle and/or its affiliates. All rights reserved. "
+[//]: # " "
+[//]: # " This program and the accompanying materials are made available under the "
+[//]: # " terms of the Eclipse Distribution License v. 1.0, which is available at "
+[//]: # " http://www.eclipse.org/org/documents/edl-v10.php. "
+[//]: # " "
+[//]: # " SPDX-License-Identifier: BSD-3-Clause "
+
+# Notices for Jakarta XML Binding
+
+This content is produced and maintained by the Jakarta XML Binding
+project.
+
+* Project home: https://projects.eclipse.org/projects/ee4j.jaxb
+
+Jakarta XML Binding is a trademark of the Eclipse Foundation.
+
+* https://github.com/eclipse-ee4j/jaxb-api
+* https://github.com/eclipse-ee4j/jaxb-tck
+
+Apache River (3.0.0)
+
+* License: Apache-2.0 AND BSD-3-Clause
+
+ASM 7 (n/a)
+
+* License: BSD-3-Clause
+* Project: https://asm.ow2.io/
+* Source:
+ https://repository.ow2.org/nexus/#nexus-search;gav~org.ow2.asm~asm-commons~~~~kw,versionexpand
+
+JTHarness (5.0)
+
+* License: (GPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)
+* Project: https://wiki.openjdk.java.net/display/CodeTools/JT+Harness
+* Source: http://hg.openjdk.java.net/code-tools/jtharness/
+
+normalize.css (3.0.2)
+
+* License: MIT
+
+SigTest (n/a)
+
+* License: GPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
+
+Apache Thrift
+Copyright (C) 2006 - 2019, The Apache Software Foundation
+
+Apache Commons Compress
+Copyright 2002-2024 The Apache Software Foundation
Apache Helix :: Core
-Copyright 2022 The Apache Software Foundation
+Copyright 2023 Apache Software Foundation
Apache Helix :: Helix Common
-Copyright 2022 The Apache Software Foundation
+Copyright 2023 Apache Software Foundation
Apache Helix :: Metrics Common
-Copyright 2022 The Apache Software Foundation
+Copyright 2023 Apache Software Foundation
Apache Helix :: ZooKeeper API
-Copyright 2022 The Apache Software Foundation
+Copyright 2023 Apache Software Foundation
Apache Helix :: Metadata Store Directory Common
-Copyright 2022 The Apache Software Foundation
+Copyright 2023 Apache Software Foundation
+
+Apache Commons CLI
+Copyright 2002-2024 The Apache Software Foundation
+
+Apache Commons Math
+Copyright 2001-2010 The Apache Software Foundation
+
+This product includes software developed by
+The Apache Software Foundation (http://www.apache.org/).
+
+===============================================================================
+The LinearConstraint, LinearObjectiveFunction, LinearOptimizer,
+RelationShip, SimplexSolver and SimplexTableau classes in package
+org.apache.commons.math.optimization.linear include software developed by
+Benjamin McCann (http://www.benmccann.com) and distributed with
+the following copyright: Copyright 2009 Google Inc.
+===============================================================================
+
+This product includes software developed by the
+University of Chicago, as Operator of Argonne National
+Laboratory.
+The LevenbergMarquardtOptimizer class in package
+org.apache.commons.math.optimization.general includes software
+translated from the lmder, lmpar and qrsolv Fortran routines
+from the Minpack package
+Minpack Copyright Notice (1999) University of Chicago. All rights reserved
+===============================================================================
+
+The GraggBulirschStoerIntegrator class in package
+org.apache.commons.math.ode.nonstiff includes software translated
+from the odex Fortran routine developed by E. Hairer and G. Wanner.
+Original source copyright:
+Copyright (c) 2004, Ernst Hairer
+===============================================================================
-Apache ZooKeeper - Server
-Copyright 2008-2020 The Apache Software Foundation
+The EigenDecompositionImpl class in package
+org.apache.commons.math.linear includes software translated
+from some LAPACK Fortran routines. Original source copyright:
+Copyright (c) 1992-2008 The University of Tennessee. All rights reserved.
+===============================================================================
-Apache ZooKeeper - Jute
-Copyright 2008-2020 The Apache Software Foundation
+The MersenneTwister class in package org.apache.commons.math.random
+includes software translated from the 2002-01-26 version of
+the Mersenne-Twister generator written in C by Makoto Matsumoto and Takuji
+Nishimura. Original source copyright:
+Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
+All rights reserved
+===============================================================================
+
+The complete text of licenses and disclaimers associated with the the original
+sources enumerated above at the time of code translation are in the LICENSE.txt
+file.
The Netty Project
=================
@@ -268,66 +666,38 @@ This product contains code from boringssl.
* https://boringssl.googlesource.com/boringssl/
Apache Yetus - Audience Annotations
-Copyright 2015-2020 The Apache Software Foundation
+Copyright 2015-2023 The Apache Software Foundation
-Apache Commons Math
-Copyright 2001-2010 The Apache Software Foundation
+# Notices for Jakarta Activation
-===============================================================================
-The LinearConstraint, LinearObjectiveFunction, LinearOptimizer,
-RelationShip, SimplexSolver and SimplexTableau classes in package
-org.apache.commons.math.optimization.linear include software developed by
-Benjamin McCann (http://www.benmccann.com) and distributed with
-the following copyright: Copyright 2009 Google Inc.
-===============================================================================
+This content is produced and maintained by Jakarta Activation project.
-This product includes software developed by the
-University of Chicago, as Operator of Argonne National
-Laboratory.
-The LevenbergMarquardtOptimizer class in package
-org.apache.commons.math.optimization.general includes software
-translated from the lmder, lmpar and qrsolv Fortran routines
-from the Minpack package
-Minpack Copyright Notice (1999) University of Chicago. All rights reserved
-===============================================================================
+* Project home: https://projects.eclipse.org/projects/ee4j.jaf
-The GraggBulirschStoerIntegrator class in package
-org.apache.commons.math.ode.nonstiff includes software translated
-from the odex Fortran routine developed by E. Hairer and G. Wanner.
-Original source copyright:
-Copyright (c) 2004, Ernst Hairer
-===============================================================================
+This program and the accompanying materials are made available under the terms
+of the Eclipse Distribution License v. 1.0,
+which is available at http://www.eclipse.org/org/documents/edl-v10.php.
-The EigenDecompositionImpl class in package
-org.apache.commons.math.linear includes software translated
-from some LAPACK Fortran routines. Original source copyright:
-Copyright (c) 1992-2008 The University of Tennessee. All rights reserved.
-===============================================================================
+* https://github.com/eclipse-ee4j/jaf
-The MersenneTwister class in package org.apache.commons.math.random
-includes software translated from the 2002-01-26 version of
-the Mersenne-Twister generator written in C by Makoto Matsumoto and Takuji
-Nishimura. Original source copyright:
-Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
-All rights reserved
-===============================================================================
+datasketches-java
+Copyright 2015-2024 The Apache Software Foundation
-The complete text of licenses and disclaimers associated with the the original
-sources enumerated above at the time of code translation are in the LICENSE.txt
-file.
+Apache DataSketches Memory
+Copyright 2022 - The Apache Software Foundation
-datasketches-java
-Copyright 2015-2020 The Apache Software Foundation
+Copyright 2015-2018 Yahoo Inc.
+Copyright 2019-2020 Verizon Media
+Copyright 2021 Yahoo Inc.
-datasketches-memory
-Copyright 2015-2019 The Apache Software Foundation
+Prior to moving to ASF, the software for this project was developed at
+Yahoo Inc. (https://developer.yahoo.com).
Apache Lucene
-Copyright 2001-2019 The Apache Software Foundation
+Copyright 2001-2022 The Apache Software Foundation
Includes software from other Apache Software Foundation projects,
including, but not limited to:
- - Apache Ant
- Apache Jakarta Regexp
- Apache Commons
- Apache Xerces
@@ -351,12 +721,14 @@ http://bitbucket.org/jpbarrette/moman/overview/
The class org.apache.lucene.util.WeakIdentityMap was derived from
the Apache CXF project and is Apache License 2.0.
+The class org.apache.lucene.util.compress.LZ4 is a Java rewrite of the LZ4
+compression library (https://github.com/lz4/lz4/tree/dev/lib) that is licensed
+under the 2-clause BSD license.
+(https://opensource.org/licenses/bsd-license.php)
+
The Google Code Prettify is Apache License 2.0.
See http://code.google.com/p/google-code-prettify/
-JUnit (junit-4.10) is licensed under the Common Public License v. 1.0
-See http://junit.sourceforge.net/cpl-v10.html
-
This product includes code (JaspellTernarySearchTrie) from Java Spelling Checkin
g Package (jaspell): http://jaspell.sourceforge.net/
License: The BSD License (http://www.opensource.org/licenses/bsd-license.php)
@@ -368,7 +740,7 @@ The snowball stopword lists in
analysis/common/src/resources/org/apache/lucene/analysis/snowball
were developed by Martin Porter and Richard Boulton.
The full snowball package is available from
- http://snowball.tartarus.org/
+ https://snowballstem.org/
The KStem stemmer in
analysis/common/src/org/apache/lucene/analysis/en
@@ -407,7 +779,7 @@ and Edmond Nolan.
The Polish analyzer (stempel) comes with a default
stopword list that is BSD-licensed created by the Carrot2 project. The file resides
in stempel/src/resources/org/apache/lucene/analysis/pl/stopwords.txt.
-See http://project.carrot2.org/license.html.
+See https://github.com/carrot2/carrot2.
The SmartChineseAnalyzer source code (smartcn) was
provided by Xiaoping Gao and copyright 2009 by www.imdict.net.
@@ -417,14 +789,9 @@ is derived from Unicode data such as the Unicode Character Database.
See http://unicode.org/copyright.html for more details.
The Morfologik analyzer (morfologik) includes BSD-licensed software
-developed by Dawid Weiss and Marcin Miłkowski (http://morfologik.blogspot.com/).
-
-Morfologik uses data from Polish ispell/myspell dictionary
-(http://www.sjp.pl/slownik/en/) licenced on the terms of (inter alia)
-LGPL and Creative Commons ShareAlike.
-
-Morfologic includes data from BSD-licensed dictionary of Polish (SGJP)
-(http://sgjp.pl/morfeusz/)
+developed by Dawid Weiss and Marcin Miłkowski
+(https://github.com/morfologik/morfologik-stemming) and uses
+data from the BSD-licensed dictionary of Polish (SGJP, http://sgjp.pl/morfeusz/).
Servlet-api.jar and javax.servlet-*.jar are under the CDDL license, the original
source code for this can be found at http://www.eclipse.org/jetty/downloads.php
@@ -520,128 +887,117 @@ Nori Korean Morphological Analyzer - Apache Lucene Integration
https://bitbucket.org/eunjeon/mecab-ko-dic/downloads/mecab-ko-dic-2.0.3-20170922.tar.gz
-Apache Commons CLI
-Copyright 2001-2009 The Apache Software Foundation
+Apache Commons CSV
+Copyright 2005-2024 The Apache Software Foundation
-Jackson core and extension components may licensed under different licenses.
-To find the details that apply to this artifact see the accompanying LICENSE file.
-For more information, including possible other licensing options, contact
-FasterXML.com (http://fasterxml.com).
+Apache Hadoop Third-party Libs
+Copyright 2020 and onwards The Apache Software Foundation.
-Apache Commons CSV
-Copyright 2005-2014 The Apache Software Foundation
+Hive Storage API
+Copyright 2020 The Apache Software Foundation
-src/main/resources/contract.txt
-This file was downloaded from http://www.ferc.gov/docs-filing/eqr/soft-tools/sample-csv/contract.txt and contains neither copyright notice nor license.
+ORC Core
+Copyright 2013-2024 The Apache Software Foundation
-src/main/resources/transaction.txt
-This file was downloaded from http://www.ferc.gov/docs-filing/eqr/soft-tools/sample-csv/transaction.txt and contains neither copyright notice nor license.
+ORC Shims
+Copyright 2013-2024 The Apache Software Foundation
-src/test/resources/CSVFileParser/bom.csv
-src/test/resources/CSVFileParser/test.csv
-src/test/resources/CSVFileParser/test_default.txt
-src/test/resources/CSVFileParser/test_default_comment.txt
-src/test/resources/CSVFileParser/test_rfc4180.txt
-src/test/resources/CSVFileParser/test_rfc4180_trim.txt
-src/test/resources/CSVFileParser/testCSV85.csv
-src/test/resources/CSVFileParser/testCSV85_default.txt
-src/test/resources/CSVFileParser/testCSV85_ignoreEmpty.txt
-These files are used as test data and test result specifications.
+Apache Parquet MR (Incubating)
+Copyright 2014-2015 The Apache Software Foundation
-Apache Commons Math
-Copyright 2001-2013 The Apache Software Foundation
+--------------------------------------------------------------------------------
-The inverse error function implementation in the Erf class is based on CUDA
-code developed by Mike Giles, Oxford-Man Institute of Quantitative Finance,
-and published in GPU Computing Gems, volume 2, 2010.
-===============================================================================
+This product includes code from Apache Avro, which includes the following in
+its NOTICE file:
-The BracketFinder (package org.apache.commons.math3.optimization.univariate)
-and PowellOptimizer (package org.apache.commons.math3.optimization.general)
-classes are based on the Python code in module "optimize.py" (version 0.5)
-developed by Travis E. Oliphant for the SciPy library (http://www.scipy.org/)
-Copyright © 2003-2009 SciPy Developers.
-===============================================================================
+ Apache Avro
+ Copyright 2010-2015 The Apache Software Foundation
-The LinearConstraint, LinearObjectiveFunction, LinearOptimizer,
-RelationShip, SimplexSolver and SimplexTableau classes in package
-org.apache.commons.math3.optimization.linear include software developed by
-Benjamin McCann (http://www.benmccann.com) and distributed with
-the following copyright: Copyright 2009 Google Inc.
-===============================================================================
+ This product includes software developed at
+ The Apache Software Foundation (http://www.apache.org/).
-This product includes software developed by the
-University of Chicago, as Operator of Argonne National
-Laboratory.
-The LevenbergMarquardtOptimizer class in package
-org.apache.commons.math3.optimization.general includes software
-translated from the lmder, lmpar and qrsolv Fortran routines
-from the Minpack package
-Minpack Copyright Notice (1999) University of Chicago. All rights reserved
-===============================================================================
+Copyright 2007-, Tatu Saloranta (tatu.saloranta@iki.fi)
-The GraggBulirschStoerIntegrator class in package
-org.apache.commons.math3.ode.nonstiff includes software translated
-from the odex Fortran routine developed by E. Hairer and G. Wanner.
-Original source copyright:
-Copyright (c) 2004, Ernst Hairer
-===============================================================================
+## FastDoubleParser
-The EigenDecompositionImpl class in package
-org.apache.commons.math3.linear includes software translated
-from some LAPACK Fortran routines. Original source copyright:
-Copyright (c) 1992-2008 The University of Tennessee. All rights reserved.
-===============================================================================
+jackson-core bundles a shaded copy of FastDoubleParser .
+That code is available under an MIT license
+under the following copyright.
-The MersenneTwister class in package org.apache.commons.math3.random
-includes software translated from the 2002-01-26 version of
-the Mersenne-Twister generator written in C by Makoto Matsumoto and Takuji
-Nishimura. Original source copyright:
-Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
-All rights reserved
-===============================================================================
+Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
-The LocalizedFormatsTest class in the unit tests is an adapted version of
-the OrekitMessagesTest class from the orekit library distributed under the
-terms of the Apache 2 licence. Original source copyright:
-Copyright 2010 CS Systèmes d'Information
-===============================================================================
+See FastDoubleParser-NOTICE for details of other source code included in FastDoubleParser
+and the licenses and copyrights that apply to that code.
-The HermiteInterpolator class and its corresponding test have been imported from
-the orekit library distributed under the terms of the Apache 2 licence. Original
-source copyright:
-Copyright 2010-2012 CS Systèmes d'Information
-===============================================================================
+Apache Commons Pool
+Copyright 2001-2012 The Apache Software Foundation
-The creation of the package "o.a.c.m.analysis.integration.gauss" was inspired
-by an original code donated by Sébastien Brisard.
-===============================================================================
+AWS SDK for Java 2.0
+Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
-ORC Core
-Copyright 2013-2020 The Apache Software Foundation
+This product includes software developed by
+Amazon Technologies, Inc (http://www.amazon.com/).
-ORC Shims
-Copyright 2013-2020 The Apache Software Foundation
+**********************
+THIRD PARTY COMPONENTS
+**********************
+This software includes third party software subject to the following copyrights:
+- XML parsing and utility functions from JetS3t - Copyright 2006-2009 James Murty.
+- PKCS#1 PEM encoded private key parsing and utility functions from oauth.googlecode.com - Copyright 1998-2010 AOL Inc.
+- Apache Commons Lang - https://github.com/apache/commons-lang
+- Netty Reactive Streams - https://github.com/playframework/netty-reactive-streams
+- Jackson-core - https://github.com/FasterXML/jackson-core
+- Jackson-dataformat-cbor - https://github.com/FasterXML/jackson-dataformats-binary
-Hive Storage API
-Copyright 2019 The Apache Software Foundation
+The licenses for these third party components are included in LICENSE.txt
-Apache Parquet MR (Incubating)
-Copyright 2014-2015 The Apache Software Foundation
+- For Apache Commons Lang see also this required NOTICE:
+ Apache Commons Lang
+ Copyright 2001-2020 The Apache Software Foundation
---------------------------------------------------------------------------------
+ This product includes software developed at
+ The Apache Software Foundation (https://www.apache.org/).
-This product includes code from Apache Avro, which includes the following in
-its NOTICE file:
+Pulsar Client Java
+Copyright 2017-2024 Apache Software Foundation
- Apache Avro
- Copyright 2010-2015 The Apache Software Foundation
+Apache Commons Lang
+Copyright 2001-2020 The Apache Software Foundation
- This product includes software developed at
- The Apache Software Foundation (http://www.apache.org/).
+Pulsar Client :: API
+Copyright 2017-2024 Apache Software Foundation
-Apache Commons Pool
-Copyright 2001-2012 The Apache Software Foundation
+Pulsar Client Admin :: API
+Copyright 2017-2024 Apache Software Foundation
+
+Apache Pulsar :: Bouncy Castle :: BC
+Copyright 2017-2024 Apache Software Foundation
+
+# Notices for Eclipse Tyrus
+
+This content is produced and maintained by the Eclipse Tyrus project.
+
+* Project home: https://projects.eclipse.org/projects/ee4j.tyrus
+
+Eclipse Tyrus is a trademark of the Eclipse Foundation.
+
+* https://github.com/eclipse-ee4j/tyrus
+
+## Third-party Content
+This project leverages the following third party content:
+
+jakarta.enterprise.cdi-api Version 4.0.1
+* License: Apache License, 2.0
+* Copyright 2010, Red Hat, Inc., and individual contributors
+
+jakarta.inject Version: 2.0.1
+* License: Apache License, 2.0
+* Copyright (C) 2009 The JSR-330 Expert Group
+
+jline Version: 2.14.5
+* License: BSD-3-Clause
+* Project: https://github.com/jline/jline2
+* Source: https://github.com/jline/jline2
Apache Log4j Core
Copyright 1999-2012 Apache Software Foundation
@@ -650,5 +1006,5 @@ ResolverUtil.java
Copyright 2005-2006 Tim Fennell
Spark Project Launcher
-Copyright 2022 The Apache Software Foundation
+Copyright 2024 Apache Software Foundation
diff --git a/README.md b/README.md
index 6b115012aec1..f39ad1a3b18a 100644
--- a/README.md
+++ b/README.md
@@ -87,8 +87,6 @@ SELECT sum(clicks), sum(impressions) FROM AdAnalyticsTable
daysSinceEpoch TOP 100
```
-Pinot is not a replacement for database i.e it cannot be used as source of truth store, cannot mutate data. While Pinot [supports text search](https://docs.pinot.apache.org/basics/features/text-search-support), it's not a replacement for a search engine. Also, Pinot queries cannot span across multiple tables by default. You can use the [Trino-Pinot Connector](https://trino.io/docs/current/connector/pinot.html) or [Presto-Pinot Connector](https://prestodb.io/docs/current/connector/pinot.html) to achieve table joins and other features.
-
## Building Pinot
More detailed instructions can be found at [Quick Demo](https://docs.pinot.apache.org/basics/getting-started/quick-start) section in the documentation.
```
@@ -104,6 +102,8 @@ $ cd build/
$ bin/quick-start-batch.sh
```
+For UI development setup refer this [doc](https://github.com/apache/pinot/blob/master/pinot-controller/src/main/resources/Readme.md).
+
## Deploying Pinot to Kubernetes
Please refer to [Running Pinot on Kubernetes](https://docs.pinot.apache.org/basics/getting-started/kubernetes-quickstart) in our project documentation. Pinot also provides Kubernetes integrations with the interactive query engine, [Trino](https://docs.pinot.apache.org/integrations/trino) [Presto](https://docs.pinot.apache.org/integrations/presto), and the data visualization tool, [Apache Superset](kubernetes/helm/superset.yaml).
diff --git a/compatibility-verifier/checkoutAndBuild.sh b/compatibility-verifier/checkoutAndBuild.sh
index 702e01b1f4aa..e17a270839c7 100755
--- a/compatibility-verifier/checkoutAndBuild.sh
+++ b/compatibility-verifier/checkoutAndBuild.sh
@@ -22,6 +22,8 @@ cmdName=`basename $0`
cmdDir=`dirname $0`
source ${cmdDir}/utils.inc
MVN_CACHE_DIR="mvn-compat-cache"
+df -h
+du -hd2 /home/runner
# get usage of the script
function usage() {
@@ -64,7 +66,7 @@ function checkOut() {
# compatibility tester
# It uses a different version for each build, since we build trees in parallel.
# Building the same version on all trees in parallel causes unstable builds.
-# Using indpendent buildIds will cause maven cache to fill up, so we use a
+# Using independent buildIds will cause maven cache to fill up, so we use a
# dedicated maven cache for these builds, and remove the cache after build is
# completed.
# If buildId is less than 0, then the mvn version is not changed in pom files.
@@ -72,10 +74,13 @@ function build() {
local outFile=$1
local buildTests=$2
local buildId=$3
+ local buildCompatibilityVerifier=$4
local repoOption=""
- local versionOption="-Djdk.version=8"
+ local versionOption="-Djdk.version=11"
+ local maxRetry=5
mkdir -p ${MVN_CACHE_DIR}
+ mkdir -p ${mvnCache}
if [ ${buildId} -gt 0 ]; then
# Build it in a different env under different version so that maven cache does
@@ -85,15 +90,40 @@ function build() {
mvn versions:commit -q -B 1>${outFile} 2>&1
repoOption="-Dmaven.repo.local=${mvnCache}/${buildId}"
fi
-
- mvn install package -DskipTests -Pbin-dist ${versionOption} ${repoOption} ${PINOT_MAVEN_OPTS} 1>${outFile} 2>&1
- if [ $? -ne 0 ]; then exit 1; fi
- mvn -pl pinot-tools package -DskipTests ${versionOption} ${repoOption} ${PINOT_MAVEN_OPTS} 1>>${outFile} 2>&1
- if [ $? -ne 0 ]; then exit 1; fi
+ buildComponents=":pinot-tools"
+ if [ $buildCompatibilityVerifier -gt 0 ]; then
+ buildComponents=":pinot-tools,:pinot-compatibility-verifier"
+ fi
+ for i in $(seq 1 $maxRetry); do
+ mvn clean package -am -pl ${buildComponents} -DskipTests -T1C ${versionOption} ${repoOption} ${PINOT_MAVEN_OPTS} 1>${outFile} 2>&1
+ if [ $? -eq 0 ]; then break; fi
+ if [ $i -eq $maxRetry ]; then exit 1; fi
+ echo ""
+ echo "Build failed, see last 1000 lines of output below."
+ tail -1000 ${outFile}
+ echo "Retrying after 30 seconds..."
+ sleep 30
+ done
if [ $buildTests -eq 1 ]; then
- mvn -pl pinot-integration-tests package -DskipTests ${versionOption} ${repoOption} ${PINOT_MAVEN_OPTS} 1>>${outFile} 2>&1
- if [ $? -ne 0 ]; then exit 1; fi
+ for i in $(seq 1 $maxRetry); do
+ mvn package -am -pl :pinot-integration-tests -DskipTests -T1C ${versionOption} ${repoOption} ${PINOT_MAVEN_OPTS} 1>>${outFile} 2>&1
+ if [ $? -eq 0 ]; then break; fi
+ if [ $i -eq $maxRetry ]; then exit 1; fi
+ echo ""
+ echo "Build failed, see last 500 lines of output below."
+ tail -500 ${outFile}
+ echo "Retrying after 30 seconds..."
+ sleep 30
+ done
fi
+ # DELETE the mvn cache
+ du -hd1 ${mvnCache}
+ df -h
+ rm -rf ${mvnCache}
+ du -hd2 /home/runner
+ df -h
+ rm -rf /home/runner/.m2/repository
+ df -h
}
#
@@ -190,29 +220,46 @@ fi
echo "Checking out old version at commit \"${olderCommit}\""
checkOut "$olderCommit" "$oldTargetDir"
-# Start builds in parallel.
+exitStatus=0
+
+# Start builds in sequential.
# First build the current tree. We need it so that we can
-# run the compatibiity tester.
+# run the compatibility tester.
echo Starting build for compat checker at ${cmdDir}, buildId none.
-(cd ${cmdDir}/..; build ${curBuildOutFile} 1 -1) &
+(cd ${cmdDir}/..; build ${curBuildOutFile} 1 -1 1) &
curBuildPid=$!
+echo Awaiting build complete for compat checker
+while true ; do
+ printf "."
+ ps -p ${curBuildPid} 1>/dev/null 2>&1
+ if [ $? -ne 0 ]; then
+ printf "\n"
+ wait ${curBuildPid}
+ curBuildStatus=$?
+ break
+ fi
+ sleep 5
+done
+
+if [ ${curBuildStatus} -eq 0 ]; then
+ echo Compat checker build completed successfully
+else
+ echo Compat checker build failed. See ${curBuildOutFile}
+ echo ======== Build output ========
+ cat ${curBuildOutFile}
+ echo ==== End Build output ========
+ exitStatus=1
+ /bin/rm -r ${mvnCache}
+ exit ${exitStatus}
+fi
+
# The old commit has been cloned in oldTargetDir, build it.
buildId=$(date +%s)
echo Starting build for old version at ${oldTargetDir} buildId ${buildId}
-(cd ${oldTargetDir}; build ${oldBuildOutFile} 0 ${buildId}) &
+(cd ${oldTargetDir}; build ${oldBuildOutFile} 0 ${buildId} 0) &
oldBuildPid=$!
-# In case the user specified the current tree as newer commit, then
-# We don't need to build newer commit tree (we have already built the
-# current tree above and linked newTargetDir). Otherwise, build the newTargetDir
-if [ ${buildNewTarget} -eq 1 ]; then
- buildId=$((buildId+1))
- echo Starting build for new version at ${newTargetDir} buildId ${buildId}
- (cd ${newTargetDir}; build ${newBuildOutFile} 0 ${buildId}) &
- newBuildPid=$!
-fi
-
# We may have potentially started three builds above (at least two).
# Wait for each of them to complete.
echo Awaiting build complete for old commit
@@ -228,18 +275,27 @@ while true ; do
sleep 5
done
-echo Awaiting build complete for compat checker
-while true ; do
- printf "."
- ps -p ${curBuildPid} 1>/dev/null 2>&1
- if [ $? -ne 0 ]; then
- printf "\n"
- wait ${curBuildPid}
- curBuildStatus=$?
- break
- fi
- sleep 5
-done
+if [ ${oldBuildStatus} -eq 0 ]; then
+ echo Old version build completed successfully
+else
+ echo Old version build failed. See ${oldBuildOutFile}
+ echo ======== Build output ========
+ cat ${oldBuildOutFile}
+ echo ==== End Build output ========
+ exitStatus=1
+ /bin/rm -r ${mvnCache}
+ exit ${exitStatus}
+fi
+
+# In case the user specified the current tree as newer commit, then
+# We don't need to build newer commit tree (we have already built the
+# current tree above and linked newTargetDir). Otherwise, build the newTargetDir
+if [ ${buildNewTarget} -eq 1 ]; then
+ buildId=$((buildId+1))
+ echo Starting build for new version at ${newTargetDir} buildId ${buildId}
+ (cd ${newTargetDir}; build ${newBuildOutFile} 0 ${buildId} 0) &
+ newBuildPid=$!
+fi
if [ ${buildNewTarget} -eq 1 ]; then
echo Awaiting build complete for new commit
@@ -256,28 +312,6 @@ if [ ${buildNewTarget} -eq 1 ]; then
done
fi
-exitStatus=0
-
-if [ ${oldBuildStatus} -eq 0 ]; then
- echo Old version build completed successfully
-else
- echo Old version build failed. See ${oldBuildOutFile}
- echo ======== Build output ========
- cat ${oldBuildOutFile}
- echo ==== End Build output ========
- exitStatus=1
-fi
-
-if [ ${curBuildStatus} -eq 0 ]; then
- echo Compat checker build completed successfully
-else
- echo Compat checker build failed. See ${curBuildOutFile}
- echo ======== Build output ========
- cat ${curBuildOutFile}
- echo ==== End Build output ========
- exitStatus=1
-fi
-
if [ ${buildNewTarget} -eq 1 ]; then
if [ ${newBuildStatus} -eq 0 ]; then
echo New version build completed successfully
@@ -287,6 +321,7 @@ if [ ${buildNewTarget} -eq 1 ]; then
cat ${newBuildOutFile}
echo ==== End Build output ========
exitStatus=1
+ exit ${exitStatus}
fi
fi
diff --git a/compatibility-verifier/compCheck.sh b/compatibility-verifier/compCheck.sh
index 0803a06b9c77..c90f8d75302f 100755
--- a/compatibility-verifier/compCheck.sh
+++ b/compatibility-verifier/compCheck.sh
@@ -46,20 +46,32 @@ cmdName=`basename $0`
source `dirname $0`/utils.inc
function cleanupControllerDirs() {
- local dirName=$(grep -F controller.data.dir ${CONTROLLER_CONF} | awk '{print $3}')
- if [ ! -z "$dirName" ]; then
- ${RM} -rf ${dirName}
+ local dirName=$(grep -F controller.data.dir "${CONTROLLER_CONF}" | awk '{print $3}')
+ if [ -n "$dirName" ]; then
+ ${RM} -rf "${dirName}"
fi
}
function cleanupServerDirs() {
- local dirName=$(grep -F pinot.server.instance.dataDir ${SERVER_CONF} | awk '{print $3}')
- if [ ! -z "$dirName" ]; then
- ${RM} -rf ${dirName}
+ local dirName=$(grep -F pinot.server.instance.dataDir "${SERVER_CONF}" | awk '{print $3}')
+ if [ -n "$dirName" ]; then
+ ${RM} -rf "${dirName}"
fi
- dirName=$(grep -F pinot.server.instance.segmentTarDir ${SERVER_CONF} | awk '{print $3}')
- if [ ! -z "$dirName" ]; then
- ${RM} -rf ${dirName}
+ dirName=$(grep -F pinot.server.instance.segmentTarDir "${SERVER_CONF}" | awk '{print $3}')
+ if [ -n "$dirName" ]; then
+ ${RM} -rf "${dirName}"
+ fi
+
+ # Cleanup directories for server 2 if a second server is configured
+ if [ -f "${SERVER_CONF_2}" ]; then
+ local dirName=$(grep -F pinot.server.instance.dataDir "${SERVER_CONF_2}" | awk '{print $3}')
+ if [ -n "$dirName" ]; then
+ ${RM} -rf "${dirName}"
+ fi
+ dirName=$(grep -F pinot.server.instance.segmentTarDir "${SERVER_CONF_2}" | awk '{print $3}')
+ if [ -n "$dirName" ]; then
+ ${RM} -rf "${dirName}"
+ fi
fi
}
@@ -78,9 +90,9 @@ function waitForZkReady() {
status=1
while [ $status -ne 0 ]; do
sleep 1
- echo Checking port ${ZK_PORT} for zk ready
+ echo "Checking port ${ZK_PORT} for zk ready"
echo x | nc localhost ${ZK_PORT} 1>/dev/null 2>&1
- status=$(echo $?)
+ status=$?
done
}
@@ -88,9 +100,9 @@ function waitForControllerReady() {
status=1
while [ $status -ne 0 ]; do
sleep 1
- echo Checking port ${CONTROLLER_PORT} for controller ready
+ echo "Checking port ${CONTROLLER_PORT} for controller ready"
curl localhost:${CONTROLLER_PORT}/health 1>/dev/null 2>&1
- status=$(echo $?)
+ status=$?
done
}
@@ -98,9 +110,9 @@ function waitForKafkaReady() {
status=1
while [ $status -ne 0 ]; do
sleep 1
- echo Checking port 19092 for kafka ready
+ echo "Checking port 19092 for kafka ready"
echo x | nc localhost 19092 1>/dev/null 2>&1
- status=$(echo $?)
+ status=$?
done
}
@@ -108,9 +120,9 @@ function waitForBrokerReady() {
local status=1
while [ $status -ne 0 ]; do
sleep 1
- echo Checking port ${BROKER_QUERY_PORT} for broker ready
+ echo "Checking port ${BROKER_QUERY_PORT} for broker ready"
curl localhost:${BROKER_QUERY_PORT}/debug/routingTable 1>/dev/null 2>&1
- status=$(echo $?)
+ status=$?
done
}
@@ -118,15 +130,31 @@ function waitForServerReady() {
local status=1
while [ $status -ne 0 ]; do
sleep 1
- echo Checking port ${SERVER_ADMIN_PORT} for server ready
+ echo "Checking port ${SERVER_ADMIN_PORT} for server ready"
curl localhost:${SERVER_ADMIN_PORT}/health 1>/dev/null 2>&1
- status=$(echo $?)
+ status=$?
+ done
+}
+
+function waitForServer2Ready() {
+ local status=1
+ while [ $status -ne 0 ]; do
+ sleep 1
+ echo "Checking port ${SERVER_2_ADMIN_PORT} for server ready"
+ curl localhost:${SERVER_2_ADMIN_PORT}/health 1>/dev/null 2>&1
+ status=$?
done
}
function waitForClusterReady() {
waitForBrokerReady
waitForServerReady
+
+ # Check second server if configured
+ if [ -f "${SERVER_CONF_2}" ]; then
+ waitForServer2Ready
+ fi
+
waitForKafkaReady
}
@@ -164,6 +192,9 @@ function startService() {
elif [ "$serviceName" = "server" ]; then
./pinot-admin.sh StartServer ${configFileArg} 1>${LOG_DIR}/server.${logCount}.log 2>&1 &
echo $! >${PID_DIR}/server.pid
+ elif [ "$serviceName" = "server2" ]; then
+ ./pinot-admin.sh StartServer ${configFileArg} 1>${LOG_DIR}/server2.${logCount}.log 2>&1 &
+ echo $! >${PID_DIR}/server2.pid
elif [ "$serviceName" = "kafka" ]; then
./pinot-admin.sh StartKafka -zkAddress localhost:${ZK_PORT}/kafka 1>${LOG_DIR}/kafka.${logCount}.log 2>&1 &
echo $! >${PID_DIR}/kafka.pid
@@ -207,6 +238,12 @@ function startServices() {
waitForControllerReady
startService broker "$dirName" "$BROKER_CONF"
startService server "$dirName" "$SERVER_CONF"
+
+ # Start second server if configured
+ if [ -f "${SERVER_CONF_2}" ]; then
+ startService server2 "$dirName" "$SERVER_CONF_2"
+ fi
+
startService kafka "$dirName" "unused"
echo "Cluster started."
waitForClusterReady
@@ -217,8 +254,20 @@ function stopServices() {
stopService controller
stopService broker
stopService server
+
+ # Stop second server if configured
+ if [ -f "${SERVER_CONF_2}" ]; then
+ stopService server2
+ fi
+
stopService zookeeper
stopService kafka
+ echo "Controller logs:"
+ cat ${LOG_DIR}/controller.*.log
+ echo "Broker logs:"
+ cat ${LOG_DIR}/broker.*.log
+ echo "Server logs:"
+ cat ${LOG_DIR}/server.*.log
echo "Cluster stopped."
}
@@ -248,23 +297,50 @@ function setupControllerVariables() {
function setupBrokerVariables() {
if [ -f ${BROKER_CONF} ]; then
local port=$(grep -F pinot.broker.client.queryPort ${BROKER_CONF} | awk '{print $3}')
- if [ ! -z "$port" ]; then
+ if [ -n "$port" ]; then
BROKER_QUERY_PORT=$port
fi
fi
}
function setupServerVariables() {
- if [ -f ${SERVER_CONF} ]; then
+ if [ -f "${SERVER_CONF}" ]; then
local port
- port=$(grep -F pinot.server.adminapi.port ${SERVER_CONF} | awk '{print $3}')
- if [ ! -z "$port" ]; then
+ port=$(grep -F pinot.server.adminapi.port "${SERVER_CONF}" | awk '{print $3}')
+ if [ -n "$port" ]; then
SERVER_ADMIN_PORT=$port
fi
- port=$(grep -F pinot.server.netty.port ${SERVER_CONF} | awk '{print $3}')
- if [ ! -z "$port" ]; then
+ port=$(grep -F pinot.server.netty.port "${SERVER_CONF}" | awk '{print $3}')
+ if [ -n "$port" ]; then
SERVER_NETTY_PORT=$port
fi
+ port=$(grep -F pinot.server.grpc.port "${SERVER_CONF}" | awk '{print $3}')
+ if [ -n "$port" ]; then
+ SERVER_GRPC_PORT=$port
+ fi
+ fi
+
+ if [ -f "${SERVER_CONF_2}" ]; then
+ local port
+ port=$(grep -F pinot.server.adminapi.port "${SERVER_CONF_2}" | awk '{print $3}')
+ if [ -n "$port" ]; then
+ SERVER_2_ADMIN_PORT=$port
+ fi
+ port=$(grep -F pinot.server.netty.port "${SERVER_CONF_2}" | awk '{print $3}')
+ if [ -n "$port" ]; then
+ SERVER_2_NETTY_PORT=$port
+ fi
+ port=$(grep -F pinot.server.grpc.port "${SERVER_CONF_2}" | awk '{print $3}')
+ if [ -n "$port" ]; then
+ SERVER_2_GRPC_PORT=$port
+ fi
+ fi
+}
+
+function checkPortAvailable() {
+ if lsof -t -i:"$1" -s TCP:LISTEN; then
+ echo "Port number $1 not available. Check any existing process that may be using this port."
+ return 1
fi
}
@@ -314,6 +390,7 @@ COMPAT_TESTER_PATH="pinot-compatibility-verifier/target/pinot-compatibility-veri
BROKER_CONF=${testSuiteDir}/config/BrokerConfig.properties
CONTROLLER_CONF=${testSuiteDir}/config/ControllerConfig.properties
SERVER_CONF=${testSuiteDir}/config/ServerConfig.properties
+SERVER_CONF_2=${testSuiteDir}/config/ServerConfig2.properties
cleanupControllerDirs
cleanupServerDirs
@@ -322,7 +399,11 @@ BROKER_QUERY_PORT=8099
ZK_PORT=2181
CONTROLLER_PORT=9000
SERVER_ADMIN_PORT=8097
+SERVER_2_ADMIN_PORT=9097
SERVER_NETTY_PORT=8098
+SERVER_2_NETTY_PORT=9098
+SERVER_GRPC_PORT=8090
+SERVER_2_GRPC_PORT=9090
PID_DIR=${workingDir}/pids
LOG_DIR=${workingDir}/logs
@@ -344,9 +425,9 @@ newTargetDir="$workingDir"/newTargetDir
setupCompatTester
# check that the default ports are open
-if [ "$(lsof -t -i:${SERVER_ADMIN_PORT} -s TCP:LISTEN)" ] || [ "$(lsof -t -i:${SERVER_NETTY_PORT} -sTCP:LISTEN)" ] || [ "$(lsof -t -i:${BROKER_QUERY_PORT} -sTCP:LISTEN)" ] ||
- [ "$(lsof -t -i:${CONTROLLER_PORT} -sTCP:LISTEN)" ] || [ "$(lsof -t -i:${ZK_PORT} -sTCP:LISTEN)" ]; then
- echo "Cannot start the components since the default ports are not open. Check any existing process that may be using the default ports."
+if ! checkPortAvailable ${SERVER_ADMIN_PORT} || ! checkPortAvailable ${SERVER_NETTY_PORT} || ! checkPortAvailable ${SERVER_GRPC_PORT} ||
+ ! checkPortAvailable ${BROKER_QUERY_PORT} || ! checkPortAvailable ${CONTROLLER_PORT} || ! checkPortAvailable ${ZK_PORT} ||
+ { [ -f "${SERVER_CONF_2}" ] && { ! checkPortAvailable ${SERVER_2_ADMIN_PORT} || ! checkPortAvailable ${SERVER_2_NETTY_PORT} || ! checkPortAvailable ${SERVER_2_GRPC_PORT}; } ; }; then
exit 1
fi
@@ -363,10 +444,11 @@ if [ -f $testSuiteDir/pre-controller-upgrade.yaml ]; then
if [ $keepClusterOnFailure == "false" ]; then
stopServices
fi
- echo Failed before controller upgrade
+ echo "Failed before controller upgrade"
exit 1
fi
fi
+
echo "Upgrading controller"
stopService controller
startService controller "$newTargetDir" "$CONTROLLER_CONF"
@@ -380,14 +462,16 @@ if [ -f $testSuiteDir/pre-broker-upgrade.yaml ]; then
if [ $keepClusterOnFailure == "false" ]; then
stopServices
fi
- echo Failed before broker upgrade
+ echo "Failed before broker upgrade"
exit 1
fi
fi
+
echo "Upgrading broker"
stopService broker
startService broker "$newTargetDir" "$BROKER_CONF"
waitForBrokerReady
+
if [ -f $testSuiteDir/pre-server-upgrade.yaml ]; then
echo "Running tests after broker upgrade"
genNum=$((genNum+1))
@@ -396,14 +480,16 @@ if [ -f $testSuiteDir/pre-server-upgrade.yaml ]; then
if [ $keepClusterOnFailure == "false" ]; then
stopServices
fi
- echo Failed before server upgrade
+ echo "Failed before server upgrade"
exit 1
fi
fi
+
echo "Upgrading server"
stopService server
startService server "$newTargetDir" "$SERVER_CONF"
waitForServerReady
+
if [ -f $testSuiteDir/post-server-upgrade.yaml ]; then
echo "Running tests after server upgrade"
genNum=$((genNum+1))
@@ -412,16 +498,56 @@ if [ -f $testSuiteDir/post-server-upgrade.yaml ]; then
if [ $keepClusterOnFailure == "false" ]; then
stopServices
fi
- echo Failed after server upgrade
+ echo "Failed after server upgrade"
exit 1
fi
fi
+if [ -f "${SERVER_CONF_2}" ]; then
+ echo "Upgrading server 2"
+ stopService server2
+ startService server2 "$newTargetDir" "$SERVER_CONF_2"
+ waitForServer2Ready
+
+ if [ -f $testSuiteDir/post-server-2-upgrade.yaml ]; then
+ echo "Running tests after server 2 upgrade"
+ genNum=$((genNum+1))
+ $COMPAT_TESTER $testSuiteDir/post-server-2-upgrade.yaml $genNum
+ if [ $? -ne 0 ]; then
+ if [ $keepClusterOnFailure == "false" ]; then
+ stopServices
+ fi
+ echo "Failed after server 2 upgrade"
+ exit 1
+ fi
+ fi
+
+ echo "Downgrading server 2"
+ # Upgrade completed, now do a rollback
+ stopService server2
+ startService server2 "$oldTargetDir" "$SERVER_CONF_2"
+ waitForServer2Ready
+
+ if [ -f $testSuiteDir/post-server-2-rollback.yaml ]; then
+ echo "Running tests after server 2 downgrade"
+ genNum=$((genNum+1))
+ $COMPAT_TESTER $testSuiteDir/post-server-2-rollback.yaml $genNum
+ if [ $? -ne 0 ]; then
+ if [ $keepClusterOnFailure == "false" ]; then
+ stopServices
+ fi
+ echo "Failed after server 2 downgrade"
+ exit 1
+ fi
+ fi
+fi
+
echo "Downgrading server"
# Upgrade completed, now do a rollback
stopService server
startService server "$oldTargetDir" "$SERVER_CONF"
waitForServerReady
+
if [ -f $testSuiteDir/post-server-rollback.yaml ]; then
echo "Running tests after server downgrade"
genNum=$((genNum+1))
@@ -430,14 +556,16 @@ if [ -f $testSuiteDir/post-server-rollback.yaml ]; then
if [ $keepClusterOnFailure == "false" ]; then
stopServices
fi
- echo Failed after server downgrade
+ echo "Failed after server downgrade"
exit 1
fi
fi
+
echo "Downgrading broker"
stopService broker
startService broker "$oldTargetDir" "$BROKER_CONF"
waitForBrokerReady
+
if [ -f $testSuiteDir/post-broker-rollback.yaml ]; then
echo "Running tests after broker downgrade"
genNum=$((genNum+1))
@@ -446,15 +574,17 @@ if [ -f $testSuiteDir/post-broker-rollback.yaml ]; then
if [ $keepClusterOnFailure == "false" ]; then
stopServices
fi
- echo Failed after broker downgrade
+ echo "Failed after broker downgrade"
exit 1
fi
fi
+
echo "Downgrading controller"
stopService controller
startService controller "$oldTargetDir" "$CONTROLLER_CONF"
waitForControllerReady
waitForControllerReady
+
if [ -f $testSuiteDir/post-controller-rollback.yaml ]; then
echo "Running tests after controller downgrade"
genNum=$((genNum+1))
@@ -463,10 +593,11 @@ if [ -f $testSuiteDir/post-controller-rollback.yaml ]; then
if [ $keepClusterOnFailure == "false" ]; then
stopServices
fi
- echo Failed after controller downgrade
+ echo "Failed after controller downgrade"
exit 1
fi
fi
+
stopServices
echo "All tests passed"
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/config/BrokerConfig.properties b/compatibility-verifier/multi-stage-query-engine-test-suite/config/BrokerConfig.properties
new file mode 100644
index 000000000000..e56f23c287b6
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/config/BrokerConfig.properties
@@ -0,0 +1,23 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+pinot.broker.client.queryPort = 8099
+pinot.zk.server = localhost:2181
+pinot.cluster.name = PinotCluster
+pinot.broker.disable.query.groovy=false
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/config/ControllerConfig.properties b/compatibility-verifier/multi-stage-query-engine-test-suite/config/ControllerConfig.properties
new file mode 100644
index 000000000000..9949b2519ea6
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/config/ControllerConfig.properties
@@ -0,0 +1,25 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+controller.host = localhost
+controller.port = 9000
+controller.zk.str = localhost:2181
+controller.data.dir = /tmp/PinotController
+controller.helix.cluster.name = PinotCluster
+controller.disable.ingestion.groovy = false
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/config/FeatureTest1-schema.json b/compatibility-verifier/multi-stage-query-engine-test-suite/config/FeatureTest1-schema.json
new file mode 100644
index 000000000000..85378dd3a04d
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/config/FeatureTest1-schema.json
@@ -0,0 +1,94 @@
+{
+ "dimensionFieldSpecs": [
+ {
+ "dataType": "INT",
+ "name": "generationNumber"
+ },
+ {
+ "dataType": "STRING",
+ "name": "stringDimSV1"
+ },
+ {
+ "dataType": "STRING",
+ "name": "stringDimSV2"
+ },
+ {
+ "dataType": "LONG",
+ "name": "longDimSV1"
+ },
+ {
+ "dataType": "LONG",
+ "name": "longDimSV2"
+ },
+ {
+ "dataType": "STRING",
+ "name": "stringDimMV1",
+ "singleValueField": false
+ },
+ {
+ "dataType": "STRING",
+ "name": "stringDimMV2",
+ "singleValueField": false
+ },
+ {
+ "dataType": "INT",
+ "name": "intDimMV1",
+ "singleValueField": false
+ },
+ {
+ "dataType": "INT",
+ "name": "intDimMV2",
+ "singleValueField": false
+ },
+ {
+ "dataType": "STRING",
+ "maxLength": 1000,
+ "name": "textDim1"
+ },
+ {
+ "dataType": "BYTES",
+ "name": "bytesDimSV1"
+ },
+ {
+ "dataType": "STRING",
+ "name": "mapDim1__KEYS",
+ "singleValueField": false
+ },
+ {
+ "dataType": "INT",
+ "name": "mapDim1__VALUES",
+ "singleValueField": false
+ },
+ {
+ "dataType": "STRING",
+ "name": "mapDim2json"
+ }
+ ],
+ "metricFieldSpecs": [
+ {
+ "dataType": "INT",
+ "name": "intMetric1"
+ },
+ {
+ "dataType": "LONG",
+ "name": "longMetric1"
+ },
+ {
+ "dataType": "FLOAT",
+ "name": "floatMetric1"
+ },
+ {
+ "dataType": "DOUBLE",
+ "name": "doubleMetric1"
+ }
+ ],
+ "dateTimeFieldSpecs" : [
+ {
+ "name" : "HoursSinceEpoch",
+ "dataType" : "INT",
+ "format" : "1:HOURS:EPOCH",
+ "granularity": "1:HOURS"
+ }
+ ],
+ "schemaName": "FeatureTest1"
+}
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/config/FeatureTest2-schema.json b/compatibility-verifier/multi-stage-query-engine-test-suite/config/FeatureTest2-schema.json
new file mode 100644
index 000000000000..f53c5a2c863f
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/config/FeatureTest2-schema.json
@@ -0,0 +1,94 @@
+{
+ "dimensionFieldSpecs": [
+ {
+ "dataType": "INT",
+ "name": "generationNumber"
+ },
+ {
+ "dataType": "STRING",
+ "name": "stringDimSV1"
+ },
+ {
+ "dataType": "STRING",
+ "name": "stringDimSV2"
+ },
+ {
+ "dataType": "LONG",
+ "name": "longDimSV1"
+ },
+ {
+ "dataType": "LONG",
+ "name": "longDimSV2"
+ },
+ {
+ "dataType": "STRING",
+ "name": "stringDimMV1",
+ "singleValueField": false
+ },
+ {
+ "dataType": "STRING",
+ "name": "stringDimMV2",
+ "singleValueField": false
+ },
+ {
+ "dataType": "INT",
+ "name": "intDimMV1",
+ "singleValueField": false
+ },
+ {
+ "dataType": "INT",
+ "name": "intDimMV2",
+ "singleValueField": false
+ },
+ {
+ "dataType": "STRING",
+ "maxLength": 1000,
+ "name": "textDim1"
+ },
+ {
+ "dataType": "BYTES",
+ "name": "bytesDimSV1"
+ },
+ {
+ "dataType": "STRING",
+ "name": "mapDim1__KEYS",
+ "singleValueField": false
+ },
+ {
+ "dataType": "INT",
+ "name": "mapDim1__VALUES",
+ "singleValueField": false
+ },
+ {
+ "dataType": "STRING",
+ "name": "mapDim2json"
+ }
+ ],
+ "metricFieldSpecs": [
+ {
+ "dataType": "INT",
+ "name": "intMetric1"
+ },
+ {
+ "dataType": "LONG",
+ "name": "longMetric1"
+ },
+ {
+ "dataType": "FLOAT",
+ "name": "floatMetric1"
+ },
+ {
+ "dataType": "DOUBLE",
+ "name": "doubleMetric1"
+ }
+ ],
+ "dateTimeFieldSpecs" : [
+ {
+ "name" : "HoursSinceEpoch",
+ "dataType" : "INT",
+ "format" : "1:HOURS:EPOCH",
+ "granularity": "1:HOURS"
+ }
+ ],
+ "schemaName": "FeatureTest2"
+}
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/config/ServerConfig.properties b/compatibility-verifier/multi-stage-query-engine-test-suite/config/ServerConfig.properties
new file mode 100644
index 000000000000..0bf3a9b47bb8
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/config/ServerConfig.properties
@@ -0,0 +1,25 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+pinot.server.adminapi.port = 8097
+pinot.server.netty.port = 8098
+pinot.zk.server = localhost:2181
+pinot.cluster.name = PinotCluster
+pinot.server.instance.dataDir = /tmp/PinotServer/data
+pinot.server.instance.segmentTarDir = /tmp/PinotServer/segments
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/config/ServerConfig2.properties b/compatibility-verifier/multi-stage-query-engine-test-suite/config/ServerConfig2.properties
new file mode 100644
index 000000000000..b0f4707f70a7
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/config/ServerConfig2.properties
@@ -0,0 +1,26 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+pinot.server.adminapi.port = 9097
+pinot.server.netty.port = 9098
+pinot.server.grpc.port = 9090
+pinot.zk.server = localhost:2181
+pinot.cluster.name = PinotCluster
+pinot.server.instance.dataDir = /tmp/PinotServer2/data
+pinot.server.instance.segmentTarDir = /tmp/PinotServer2/segments
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/config/data/FeatureTest1-data-00.csv b/compatibility-verifier/multi-stage-query-engine-test-suite/config/data/FeatureTest1-data-00.csv
new file mode 100644
index 000000000000..bb537d9ba333
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/config/data/FeatureTest1-data-00.csv
@@ -0,0 +1,12 @@
+# HoursSinceEpoch generationNumber stringDimSV1 stringDimSV2 longDimSV1 longDimSV2 stringDimMV1 stringDimMV2 intDimMV1 intDimMV2 textDim1 mapDim1__KEYS mapDim1__VALUES mapDim2json intMetric1 longMetric1 floatMetric1 doubleMetric1
+# Add some common rows from first segment, and some new rows as well
+123456,__GENERATION_NUMBER__,"s1-0",s2-0,1,2,m1-0-0;m1-0-1,m2-0-0;m2-0-1,3;4,6;7,Java C++ Python,01a0bc,k1;k2;k3;k4;k5,1;1;2;2;2,"{""k1"":1,""k2"":1,""k3"":2,""k4"":2,""k5"":2}",10,11,12.1,13.1
+123456,__GENERATION_NUMBER__,"s1-0",s2-0,1,2,m1-0-0;m1-0-1,m2-0-0;m2-0-1,3;4,6;7,Java C++ Python,4877625602,k1;k2;k3;k4;k5,3;3;3;3;3,"{""k1"":3,""k2"":3,""k3"":3,""k4"":3,""k5"":3}",10,11,12.1,13.1, # Dupliate of row 0 1
+123456,__GENERATION_NUMBER__,s1-2,s2-2,11,21,m1-2-0;m1-2-1,m2-2-0;m2-2-1,32;42,62;72,Java C++ golang,13225573e3f5,k1;k2;k3;k4;k5,4;5;6;7;7,"{""k1"":4,""k2"":5,""k3"":6,""k4"":7,""k5"":7}",10,21,22.1,23.10
+123456,__GENERATION_NUMBER__,s1-2,s2-2,11,21,m1-3-0;m1-3-1,m2-3-0;m2-3-1,32;42,62;72,Java C++ golang,deadbeef,k1;k2;k3;k4;k5,7;7;7;7;7,"{""k1"":7,""k2"":7,""k3"":7,""k4"":7,""k5"":7}",10,21,22.1,23.10, # All sv cols same as prev
+123456,__GENERATION_NUMBER__,s1-4,s2-4,41,22,m1-2-0;m1-2-1,m2-2-0;m2-2-1,42;52,72;82,Java C++ golang,deed0507,k1;k2;k3;k4;k5,7;7;8;8;8,"{""k1"":7,""k2"":7,""k3"":8,""k4"":8,""k5"":8}",14,24,24.1,24.10, # All mv cols same as row 2
+123456,__GENERATION_NUMBER__,s1-5,,,32,m1-5-0,m2-2-0,,92;22,golang shell bash,,k1;k2;k3;k4;k5,7;7;7;7;7,"{""k1"":7,""k2"":7,""k3"":7,""k4"":7,""k5"":7}",,24,,24.10, # Default values for some columns
+123456,__GENERATION_NUMBER__,s1-6,s2-6,7611,7621,m1-5-0;m1-5-1;m1-5-2,m2-2-0,392;462,6662;782,C++ golang python,deed0507,k1;k2;k3;k4;k5,7;8;9;10;20,"{""k1"":7,""k2"":8,""k3"":9,""k4"":10,""k5"":20}",101,251,262.1,263.10, # 3 values in MV
+123456,__GENERATION_NUMBER__,s1-6,s2-6,7611,7621,m1-5-0;m1-5-1;m1-5-2,m2-2-0,392;462,6662;782,C++ golang python,deed0507,k1;k2;k3;k4;k5,7;8;9;10;20,"{""k1"":7,""k2"":8,""k3"":9,""k4"":10,""k5"":20}",2147483647,251,262.1,263.10, # MAX_INT in int metric
+123456,__GENERATION_NUMBER__,s1-6,s2-6,7611,7621,m1-5-0;m1-5-1;m1-5-2,m2-2-0,392;462,6662;782,C++ golang python,deed0507,k1;k2;k3;k4;k5,7;8;9;10;20,"{""k1"":7,""k2"":8,""k3"":9,""k4"":10,""k5"":20}",2147483647,251,262.1,263.10, # MAX_INT in int metric
+123456,__GENERATION_NUMBER__,s1-7,s2-7,6766,6777,m1-6-0;m1-6-1;m1-6-2;m1-6-3,m2-6-0;m2-6-1,392;462,6662;782,golang Java,d54d0507,k1;k2;k3;k4;k5,31;31;32;32;32,"{""k1"":31,""k2"":31,""k3"":32,""k4"":32,""k5"":32}",87,251,262.10,263.10
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/config/data/FeatureTest2-data-realtime-00.csv b/compatibility-verifier/multi-stage-query-engine-test-suite/config/data/FeatureTest2-data-realtime-00.csv
new file mode 100644
index 000000000000..e4e36e47051f
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/config/data/FeatureTest2-data-realtime-00.csv
@@ -0,0 +1,11 @@
+# HoursSinceEpoch generationNumber stringDimSV1 stringDimSV2 longDimSV1 longDimSV2 stringDimMV1 stringDimMV2 intDimMV1 intDimMV2 textDim1 mapDim1__KEYS mapDim1__VALUES mapDim2json intMetric1 longMetric1 floatMetric1 doubleMetric1
+123456,__GENERATION_NUMBER__,"s1-0",s2-0,1,2,m1-0-0;m1-0-1,m2-0-0;m2-0-1,3;4,6;7,Java C++ Python,01a0bc,k1;k2;k3;k4;k5,1;1;2;2;2,"{""k1"":1,""k2"":1,""k3"":2,""k4"":2,""k5"":2}",10,11,12.1,13.1
+123456,__GENERATION_NUMBER__,"s1-0",s2-0,1,2,m1-0-0;m1-0-1,m2-0-0;m2-0-1,3;4,6;7,Java C++ Python,4877625602,k1;k2;k3;k4;k5,3;3;3;3;3,"{""k1"":3,""k2"":3,""k3"":3,""k4"":3,""k5"":3}",10,11,12.1,13.1, # Dupliate of row 0 1
+123456,__GENERATION_NUMBER__,s1-2,s2-2,11,21,m1-2-0;m1-2-1,m2-2-0;m2-2-1,32;42,62;72,Java C++ golang,13225573e3f5,k1;k2;k3;k4;k5,4;5;6;7;7,"{""k1"":4,""k2"":5,""k3"":6,""k4"":7,""k5"":7}",10,21,22.1,23.10
+123456,__GENERATION_NUMBER__,s1-2,s2-2,11,21,m1-3-0;m1-3-1,m2-3-0;m2-3-1,32;42,62;72,Java C++ golang,deadbeef,k1;k2;k3;k4;k5,7;7;7;7;7,"{""k1"":7,""k2"":7,""k3"":7,""k4"":7,""k5"":7}",10,21,22.1,23.10, # All sv cols same as prev
+123456,__GENERATION_NUMBER__,s1-4,s2-4,41,22,m1-2-0;m1-2-1,m2-2-0;m2-2-1,42;52,72;82,Java C++ golang,deed0507,k1;k2;k3;k4;k5,7;7;8;8;8,"{""k1"":7,""k2"":7,""k3"":8,""k4"":8,""k5"":8}",14,24,24.1,24.10, # All mv cols same as row 2
+123456,__GENERATION_NUMBER__,s1-5,,,32,m1-5-0,m2-2-0,,92;22,golang shell bash,,k1;k2;k3;k4;k5,7;7;7;7;7,"{""k1"":7,""k2"":7,""k3"":7,""k4"":7,""k5"":7}",,24,,24.10, # Default values for some columns
+123456,__GENERATION_NUMBER__,s1-6,s2-6,7611,7621,m1-5-0;m1-5-1;m1-5-2,m2-2-0,392;462,6662;782,C++ golang python,deed0507,k1;k2;k3;k4;k5,7;8;9;10;20,"{""k1"":7,""k2"":8,""k3"":9,""k4"":10,""k5"":20}",101,251,262.1,263.10, # 3 values in MV
+123456,__GENERATION_NUMBER__,s1-6,s2-6,7611,7621,m1-5-0;m1-5-1;m1-5-2,m2-2-0,392;462,6662;782,C++ golang python,deed0507,k1;k2;k3;k4;k5,7;8;9;10;20,"{""k1"":7,""k2"":8,""k3"":9,""k4"":10,""k5"":20}",2147483647,251,262.1,263.10, # MAX_INT in int metric
+123456,__GENERATION_NUMBER__,s1-6,s2-6,7611,7621,m1-5-0;m1-5-1;m1-5-2,m2-2-0,392;462,6662;782,C++ golang python,deed0507,k1;k2;k3;k4;k5,7;8;9;10;20,"{""k1"":7,""k2"":8,""k3"":9,""k4"":10,""k5"":20}",2147483647,251,262.1,263.10, # MAX_INT in int metric
+123456,__GENERATION_NUMBER__,s1-7,s2-7,6766,6777,m1-6-0;m1-6-1;m1-6-2;m1-6-3,m2-6-0;m2-6-1,392;462,6662;782,golang Java,d54d0507,k1;k2;k3;k4;k5,31;31;32;32;32,"{""k1"":31,""k2"":31,""k3"":32,""k4"":32,""k5"":32}",87,251,262.10,263.10
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/config/data/recordReaderConfig.json b/compatibility-verifier/multi-stage-query-engine-test-suite/config/data/recordReaderConfig.json
new file mode 100644
index 000000000000..ebaa04e10464
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/config/data/recordReaderConfig.json
@@ -0,0 +1,5 @@
+{
+ "commentMarker" : "#",
+ "header" :
+ "HoursSinceEpoch,generationNumber,stringDimSV1,stringDimSV2,longDimSV1,longDimSV2,stringDimMV1,stringDimMV2,intDimMV1,intDimMV2,textDim1,bytesDimSV1,mapDim1__KEYS,mapDim1__VALUES,mapDim2json,intMetric1,longMetric1,floatMetric1,doubleMetric1"
+}
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/config/feature-test-1.json b/compatibility-verifier/multi-stage-query-engine-test-suite/config/feature-test-1.json
new file mode 100644
index 000000000000..381e6885d19a
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/config/feature-test-1.json
@@ -0,0 +1,46 @@
+{
+ "fieldConfigList": [
+ {
+ "encodingType": "RAW",
+ "indexType": "TEXT",
+ "name": "textDim1",
+ "properties": {
+ "deriveNumDocsPerChunkForRawIndex": "true",
+ "rawIndexWriterVersion": "3"
+ }
+ }
+ ],
+ "metadata": {
+ "customConfigs": {
+ "d2Name": ""
+ }
+ },
+ "segmentsConfig": {
+ "replication": "1",
+ "retentionTimeUnit": "",
+ "retentionTimeValue": "",
+ "segmentAssignmentStrategy": "BalanceNumSegmentAssignmentStrategy",
+ "segmentPushFrequency": "daily",
+ "segmentPushType": "REFRESH",
+ "timeColumnName": "HoursSinceEpoch",
+ "timeType": "HOURS"
+ },
+ "tableIndexConfig": {
+ "aggregateMetrics": false,
+ "autoGeneratedInvertedIndex": false,
+ "createInvertedIndexDuringSegmentGeneration": false,
+ "enableDefaultStarTree": false,
+ "enableDynamicStarTreeCreation": false,
+ "loadMode": "MMAP",
+ "noDictionaryColumns": ["textDim1"],
+ "nullHandlingEnabled": false,
+ "sortedColumn": [],
+ "streamConfigs": {}
+ },
+ "tableName": "FeatureTest1_OFFLINE",
+ "tableType": "OFFLINE",
+ "tenants": {
+ "broker": "DefaultTenant",
+ "server": "DefaultTenant"
+ }
+}
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/config/feature-test-2-realtime-stream-config.json b/compatibility-verifier/multi-stage-query-engine-test-suite/config/feature-test-2-realtime-stream-config.json
new file mode 100644
index 000000000000..441ce201a903
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/config/feature-test-2-realtime-stream-config.json
@@ -0,0 +1,8 @@
+{
+ "streamType": "kafka",
+ "stream.kafka.consumer.type": "simple",
+ "topicName": "PinotRealtimeFeatureTest2Event",
+ "partitionColumn": "longDimSV1",
+ "numPartitions": "1",
+ "stream.kafka.consumer.prop.auto.offset.reset": "smallest"
+}
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/config/feature-test-2-realtime.json b/compatibility-verifier/multi-stage-query-engine-test-suite/config/feature-test-2-realtime.json
new file mode 100644
index 000000000000..6df335e48841
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/config/feature-test-2-realtime.json
@@ -0,0 +1,61 @@
+{
+ "fieldConfigList": [
+ {
+ "encodingType": "RAW",
+ "indexType": "TEXT",
+ "name": "textDim1",
+ "properties": {
+ "deriveNumDocsPerChunkForRawIndex": "true",
+ "rawIndexWriterVersion": "3"
+ }
+ }
+ ],
+ "metadata": {
+ "customConfigs": {
+ "d2Name": ""
+ }
+ },
+ "segmentsConfig": {
+ "replicasPerPartition": "1",
+ "replication": "1",
+ "retentionTimeUnit": "",
+ "retentionTimeValue": "",
+ "schemaName": "FeatureTest2",
+ "segmentAssignmentStrategy": "BalanceNumSegmentAssignmentStrategy",
+ "segmentPushFrequency": "daily",
+ "segmentPushType": "APPEND",
+ "timeColumnName": "HoursSinceEpoch",
+ "timeType": "HOURS"
+ },
+ "tableIndexConfig": {
+ "aggregateMetrics": false,
+ "autoGeneratedInvertedIndex": false,
+ "bloomFilterColumns": [],
+ "createInvertedIndexDuringSegmentGeneration": false,
+ "enableDefaultStarTree": false,
+ "enableDynamicStarTreeCreation": false,
+ "loadMode": "MMAP",
+ "noDictionaryColumns": [],
+ "nullHandlingEnabled": false,
+ "segmentFormatVersion": "v3",
+ "sortedColumn": [],
+ "streamConfigs": {
+ "realtime.segment.flush.threshold.size": "63",
+ "realtime.segment.flush.threshold.time": "1h",
+ "streamType": "kafka",
+ "stream.kafka.topic.name": "PinotRealtimeFeatureTest2Event",
+ "stream.kafka.consumer.type": "simple",
+ "stream.kafka.decoder.class.name": "org.apache.pinot.plugin.stream.kafka.KafkaJSONMessageDecoder",
+ "stream.kafka.consumer.factory.class.name": "org.apache.pinot.plugin.stream.kafka20.KafkaConsumerFactory",
+ "stream.kafka.broker.list": "localhost:19092",
+ "stream.kafka.zk.broker.url": "localhost:2181/kafka",
+ "stream.kafka.consumer.prop.auto.offset.reset": "largest"
+ }
+ },
+ "tableName": "FeatureTest2",
+ "tableType": "REALTIME",
+ "tenants": {
+ "broker": "DefaultTenant",
+ "server": "DefaultTenant"
+ }
+}
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/config/queries/feature-test-multi-stage.queries b/compatibility-verifier/multi-stage-query-engine-test-suite/config/queries/feature-test-multi-stage.queries
new file mode 100644
index 000000000000..00d0c6cb8a74
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/config/queries/feature-test-multi-stage.queries
@@ -0,0 +1,31 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+# Joins
+SELECT COUNT(*) FROM FeatureTest1 ft1 INNER JOIN FeatureTest2 ft2 ON ft1.stringDimSV1 = ft2.stringDimSV1 WHERE ft1.generationNumber = __GENERATION_NUMBER__ AND ft2.generationNumber = __GENERATION_NUMBER__
+SELECT ft1.stringDimSV1, COUNT(ft1.stringDimSV1) FROM FeatureTest1 ft1 INNER JOIN FeatureTest2 ft2 ON ft1.stringDimSV1 = ft2.stringDimSV1 WHERE ft1.generationNumber = __GENERATION_NUMBER__ AND ft2.generationNumber = __GENERATION_NUMBER__ GROUP BY ft1.stringDimSV1
+SELECT ft1.stringDimSV2, SUM(ft1.floatMetric1) FROM FeatureTest1 ft1 INNER JOIN FeatureTest2 ft2 ON ft1.stringDimSV1 = ft2.stringDimSV1 WHERE ft1.generationNumber = __GENERATION_NUMBER__ AND ft2.generationNumber = __GENERATION_NUMBER__ GROUP BY ft1.stringDimSV2
+SELECT ft1.stringDimSV1 FROM FeatureTest1 ft1 WHERE ft1.generationNumber = __GENERATION_NUMBER__ AND EXISTS (SELECT 1 FROM FeatureTest2 ft2 WHERE ft2.generationNumber = __GENERATION_NUMBER__ AND ft2.stringDimSV2 = ft1.stringDimSV1)
+
+# Set operations
+SELECT * FROM (SELECT stringDimSV1 FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__) INTERSECT (SELECT stringDimSV1 FROM FeatureTest2 WHERE generationNumber = __GENERATION_NUMBER__)
+SELECT * FROM (SELECT stringDimSV1 FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__) UNION (SELECT stringDimSV1 FROM FeatureTest2 WHERE generationNumber = __GENERATION_NUMBER__)
+
+# Windows
+SELECT stringDimSV1, longMetric1, SUM(longMetric1) OVER (PARTITION BY stringDimSV1) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/config/query-results/feature-test-multi-stage.results b/compatibility-verifier/multi-stage-query-engine-test-suite/config/query-results/feature-test-multi-stage.results
new file mode 100644
index 000000000000..b073dd9e1cbb
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/config/query-results/feature-test-multi-stage.results
@@ -0,0 +1,31 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+# Joins
+{"resultTable":{"dataSchema":{"columnNames":["EXPR$0"],"columnDataTypes":["LONG"]},"rows":[[130]]},"requestId":"11345778000000000","stageStats":{"type":"MAILBOX_RECEIVE","executionTimeMs":36,"emittedRows":1,"fanIn":1,"rawMessages":2,"deserializedBytes":714,"upstreamWaitMs":40,"children":[{"type":"MAILBOX_SEND","executionTimeMs":36,"emittedRows":1,"stage":1,"parallelism":1,"fanOut":1,"rawMessages":2,"serializedBytes":99,"serializationTimeMs":2,"children":[{"type":"AGGREGATE","executionTimeMs":1,"emittedRows":1,"children":[{"type":"MAILBOX_RECEIVE","executionTimeMs":1,"emittedRows":1,"fanIn":1,"inMemoryMessages":2,"upstreamWaitMs":7,"children":[{"type":"MAILBOX_SEND","executionTimeMs":1,"emittedRows":1,"stage":2,"parallelism":1,"fanOut":1,"inMemoryMessages":2,"children":[{"type":"AGGREGATE","executionTimeMs":1,"emittedRows":1,"children":[{"type":"HASH_JOIN","executionTimeMs":1,"emittedRows":130,"timeBuildingHashTableMs":1,"children":[{"type":"MAILBOX_RECEIVE","emittedRows":10,"fanIn":1,"inMemoryMessages":2,"upstreamWaitMs":4,"children":[{"type":"MAILBOX_SEND","executionTimeMs":4,"emittedRows":10,"stage":3,"parallelism":1,"fanOut":1,"inMemoryMessages":2,"children":[{"type":"LEAF","table":"FeatureTest1","executionTimeMs":5,"emittedRows":10,"numDocsScanned":10,"numEntriesScannedPostFilter":10,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"totalDocs":10}]}]},{"type":"MAILBOX_RECEIVE","emittedRows":66,"fanIn":1,"inMemoryMessages":3,"upstreamWaitMs":3,"children":[{"type":"MAILBOX_SEND","executionTimeMs":4,"emittedRows":66,"stage":4,"parallelism":1,"fanOut":1,"inMemoryMessages":3,"children":[{"type":"LEAF","table":"FeatureTest2","executionTimeMs":4,"emittedRows":66,"numDocsScanned":66,"numEntriesScannedPostFilter":66,"numSegmentsQueried":2,"numSegmentsProcessed":2,"numSegmentsMatched":2,"numConsumingSegmentsQueried":1,"minConsumingFreshnessTimeMs":1716274896691,"totalDocs":66}]}]}]}]}]}]}]}]}]},"brokerId":"Broker_192.168.29.25_8099","exceptions":[],"numServersQueried":0,"numServersResponded":0,"numSegmentsQueried":3,"numSegmentsProcessed":3,"numSegmentsMatched":3,"numConsumingSegmentsQueried":1,"numConsumingSegmentsProcessed":0,"numConsumingSegmentsMatched":0,"numDocsScanned":76,"numEntriesScannedInFilter":0,"numEntriesScannedPostFilter":76,"numGroupsLimitReached":false,"maxRowsInJoinReached":false,"totalDocs":76,"timeUsedMs":975,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"offlineSystemActivitiesCpuTimeNs":0,"realtimeSystemActivitiesCpuTimeNs":0,"offlineResponseSerializationCpuTimeNs":0,"realtimeResponseSerializationCpuTimeNs":0,"offlineTotalCpuTimeNs":0,"realtimeTotalCpuTimeNs":0,"brokerReduceTimeMs":56,"partialResult":false,"exceptionsSize":0,"numRowsResultSet":1,"maxRowsInOperator":130,"numSegmentsPrunedByBroker":0,"minConsumingFreshnessTimeMs":1716274896691,"numSegmentsPrunedByServer":0,"numSegmentsPrunedInvalid":0,"numSegmentsPrunedByLimit":0,"numSegmentsPrunedByValue":0,"explainPlanNumEmptyFilterSegments":0,"explainPlanNumMatchAllFilterSegments":0}
+{"resultTable":{"dataSchema":{"columnNames":["stringDimSV1","EXPR$1"],"columnDataTypes":["STRING","LONG"]},"rows":[["s1-4",7],["s1-6",54],["s1-2",28],["s1-0",28],["s1-5",7],["s1-7",6]]},"requestId":"11345778000000001","stageStats":{"type":"MAILBOX_RECEIVE","executionTimeMs":3,"emittedRows":6,"fanIn":1,"rawMessages":2,"deserializedBytes":824,"upstreamWaitMs":3,"children":[{"type":"MAILBOX_SEND","executionTimeMs":2,"emittedRows":6,"stage":1,"parallelism":1,"fanOut":1,"rawMessages":2,"serializedBytes":245,"children":[{"type":"AGGREGATE","executionTimeMs":2,"emittedRows":6,"children":[{"type":"MAILBOX_RECEIVE","executionTimeMs":1,"emittedRows":6,"fanIn":1,"inMemoryMessages":2,"upstreamWaitMs":4,"children":[{"type":"MAILBOX_SEND","executionTimeMs":1,"emittedRows":6,"stage":2,"parallelism":1,"fanOut":1,"inMemoryMessages":2,"children":[{"type":"AGGREGATE","executionTimeMs":1,"emittedRows":6,"children":[{"type":"HASH_JOIN","emittedRows":130,"timeBuildingHashTableMs":1,"children":[{"type":"MAILBOX_RECEIVE","emittedRows":10,"fanIn":1,"inMemoryMessages":2,"upstreamWaitMs":3,"children":[{"type":"MAILBOX_SEND","emittedRows":10,"stage":3,"parallelism":1,"fanOut":1,"inMemoryMessages":2,"children":[{"type":"LEAF","table":"FeatureTest1","executionTimeMs":1,"emittedRows":10,"numDocsScanned":10,"numEntriesScannedPostFilter":10,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"totalDocs":10}]}]},{"type":"MAILBOX_RECEIVE","emittedRows":66,"fanIn":1,"inMemoryMessages":3,"upstreamWaitMs":3,"children":[{"type":"MAILBOX_SEND","emittedRows":66,"stage":4,"parallelism":1,"fanOut":1,"inMemoryMessages":3,"children":[{"type":"LEAF","table":"FeatureTest2","executionTimeMs":1,"emittedRows":66,"numDocsScanned":66,"numEntriesScannedPostFilter":66,"numSegmentsQueried":2,"numSegmentsProcessed":2,"numSegmentsMatched":2,"numConsumingSegmentsQueried":1,"minConsumingFreshnessTimeMs":1716276514329,"totalDocs":66}]}]}]}]}]}]}]}]}]},"brokerId":"Broker_192.168.29.25_8099","exceptions":[],"numServersQueried":0,"numServersResponded":0,"numSegmentsQueried":3,"numSegmentsProcessed":3,"numSegmentsMatched":3,"numConsumingSegmentsQueried":1,"numConsumingSegmentsProcessed":0,"numConsumingSegmentsMatched":0,"numDocsScanned":76,"numEntriesScannedInFilter":0,"numEntriesScannedPostFilter":76,"numGroupsLimitReached":false,"maxRowsInJoinReached":false,"totalDocs":76,"timeUsedMs":49,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"offlineSystemActivitiesCpuTimeNs":0,"realtimeSystemActivitiesCpuTimeNs":0,"offlineResponseSerializationCpuTimeNs":0,"realtimeResponseSerializationCpuTimeNs":0,"offlineTotalCpuTimeNs":0,"realtimeTotalCpuTimeNs":0,"brokerReduceTimeMs":3,"partialResult":false,"maxRowsInOperator":130,"numRowsResultSet":6,"exceptionsSize":0,"numSegmentsPrunedByBroker":0,"minConsumingFreshnessTimeMs":1716276514329,"numSegmentsPrunedByServer":0,"numSegmentsPrunedInvalid":0,"numSegmentsPrunedByLimit":0,"numSegmentsPrunedByValue":0,"explainPlanNumEmptyFilterSegments":0,"explainPlanNumMatchAllFilterSegments":0}
+{"resultTable":{"dataSchema":{"columnNames":["stringDimSV2","EXPR$1"],"columnDataTypes":["STRING","DOUBLE"]},"rows":[["s2-6",14153.4],["s2-2",618.8],["s2-0",338.8],["s2-4",168.7],["s2-7",1572.6],["null",0.0]]},"requestId":"11345778000000002","stageStats":{"type":"MAILBOX_RECEIVE","executionTimeMs":2,"emittedRows":6,"fanIn":1,"rawMessages":2,"deserializedBytes":826,"upstreamWaitMs":3,"children":[{"type":"MAILBOX_SEND","executionTimeMs":4,"emittedRows":6,"stage":1,"parallelism":1,"fanOut":1,"rawMessages":2,"serializedBytes":247,"children":[{"type":"AGGREGATE","executionTimeMs":3,"emittedRows":6,"children":[{"type":"MAILBOX_RECEIVE","executionTimeMs":3,"emittedRows":6,"fanIn":1,"inMemoryMessages":2,"upstreamWaitMs":4,"children":[{"type":"MAILBOX_SEND","executionTimeMs":2,"emittedRows":6,"stage":2,"parallelism":1,"fanOut":1,"inMemoryMessages":2,"children":[{"type":"AGGREGATE","executionTimeMs":2,"emittedRows":6,"children":[{"type":"HASH_JOIN","executionTimeMs":1,"emittedRows":130,"timeBuildingHashTableMs":1,"children":[{"type":"MAILBOX_RECEIVE","emittedRows":10,"fanIn":1,"inMemoryMessages":2,"upstreamWaitMs":2,"children":[{"type":"MAILBOX_SEND","emittedRows":10,"stage":3,"parallelism":1,"fanOut":1,"inMemoryMessages":2,"children":[{"type":"LEAF","table":"FeatureTest1","emittedRows":10,"numDocsScanned":10,"numEntriesScannedPostFilter":30,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"totalDocs":10}]}]},{"type":"MAILBOX_RECEIVE","executionTimeMs":1,"emittedRows":66,"fanIn":1,"inMemoryMessages":3,"upstreamWaitMs":2,"children":[{"type":"MAILBOX_SEND","emittedRows":66,"stage":4,"parallelism":1,"fanOut":1,"inMemoryMessages":3,"children":[{"type":"LEAF","table":"FeatureTest2","emittedRows":66,"numDocsScanned":66,"numEntriesScannedPostFilter":66,"numSegmentsQueried":2,"numSegmentsProcessed":2,"numSegmentsMatched":2,"numConsumingSegmentsQueried":1,"minConsumingFreshnessTimeMs":1716276645639,"totalDocs":66}]}]}]}]}]}]}]}]}]},"brokerId":"Broker_192.168.29.25_8099","exceptions":[],"numServersQueried":0,"numServersResponded":0,"numSegmentsQueried":3,"numSegmentsProcessed":3,"numSegmentsMatched":3,"numConsumingSegmentsQueried":1,"numConsumingSegmentsProcessed":0,"numConsumingSegmentsMatched":0,"numDocsScanned":76,"numEntriesScannedInFilter":0,"numEntriesScannedPostFilter":96,"numGroupsLimitReached":false,"maxRowsInJoinReached":false,"totalDocs":76,"timeUsedMs":21,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"offlineSystemActivitiesCpuTimeNs":0,"realtimeSystemActivitiesCpuTimeNs":0,"offlineResponseSerializationCpuTimeNs":0,"realtimeResponseSerializationCpuTimeNs":0,"offlineTotalCpuTimeNs":0,"realtimeTotalCpuTimeNs":0,"brokerReduceTimeMs":3,"partialResult":false,"exceptionsSize":0,"numRowsResultSet":6,"maxRowsInOperator":130,"numSegmentsPrunedByBroker":0,"minConsumingFreshnessTimeMs":1716276645639,"numSegmentsPrunedByServer":0,"numSegmentsPrunedInvalid":0,"numSegmentsPrunedByLimit":0,"numSegmentsPrunedByValue":0,"explainPlanNumEmptyFilterSegments":0,"explainPlanNumMatchAllFilterSegments":0}
+{"resultTable":{"dataSchema":{"columnNames":["stringDimSV1"],"columnDataTypes":["STRING"]},"rows":[]},"requestId":"11345778000000003","stageStats":{"type":"MAILBOX_RECEIVE","fanIn":1,"rawMessages":1,"deserializedBytes":132,"children":[{"type":"MAILBOX_SEND","stage":1,"parallelism":1,"fanOut":1,"rawMessages":1,"children":[{"type":"LEAF","table":"FeatureTest1","numSegmentsQueried":1,"totalDocs":10,"numSegmentsPrunedByServer":1}]}]},"brokerId":"Broker_192.168.29.25_8099","exceptions":[],"numServersQueried":0,"numServersResponded":0,"numSegmentsQueried":1,"numSegmentsProcessed":0,"numSegmentsMatched":0,"numConsumingSegmentsQueried":0,"numConsumingSegmentsProcessed":0,"numConsumingSegmentsMatched":0,"numDocsScanned":0,"numEntriesScannedInFilter":0,"numEntriesScannedPostFilter":0,"numGroupsLimitReached":false,"maxRowsInJoinReached":false,"totalDocs":10,"timeUsedMs":43,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"offlineSystemActivitiesCpuTimeNs":0,"realtimeSystemActivitiesCpuTimeNs":0,"offlineResponseSerializationCpuTimeNs":0,"realtimeResponseSerializationCpuTimeNs":0,"offlineTotalCpuTimeNs":0,"realtimeTotalCpuTimeNs":0,"brokerReduceTimeMs":0,"partialResult":false,"maxRowsInOperator":0,"exceptionsSize":0,"numRowsResultSet":0,"numSegmentsPrunedByBroker":0,"minConsumingFreshnessTimeMs":0,"numSegmentsPrunedByServer":1,"numSegmentsPrunedInvalid":0,"numSegmentsPrunedByLimit":0,"numSegmentsPrunedByValue":0,"explainPlanNumEmptyFilterSegments":0,"explainPlanNumMatchAllFilterSegments":0}
+
+# Set operations
+{"resultTable":{"dataSchema":{"columnNames":["stringDimSV1"],"columnDataTypes":["STRING"]},"rows":[["s1-0"],["s1-2"],["s1-4"],["s1-5"],["s1-6"],["s1-7"]]},"requestId":"11345778000000004","stageStats":{"type":"MAILBOX_RECEIVE","executionTimeMs":1,"emittedRows":6,"fanIn":1,"rawMessages":2,"deserializedBytes":628,"upstreamWaitMs":2,"children":[{"type":"MAILBOX_SEND","executionTimeMs":1,"emittedRows":6,"stage":1,"parallelism":1,"fanOut":1,"rawMessages":2,"serializedBytes":174,"children":[{"children":[{"type":"MAILBOX_RECEIVE","emittedRows":6,"children":[{"type":"MAILBOX_SEND","emittedRows":10,"stage":2,"parallelism":1,"fanOut":1,"inMemoryMessages":2,"children":[{"type":"LEAF","table":"FeatureTest1","emittedRows":10,"numDocsScanned":10,"numEntriesScannedPostFilter":10,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"totalDocs":10}]}]},{"type":"MAILBOX_RECEIVE","emittedRows":10,"fanIn":1,"inMemoryMessages":2,"upstreamWaitMs":1,"children":[{"type":"MAILBOX_SEND","emittedRows":66,"stage":3,"parallelism":1,"fanOut":1,"inMemoryMessages":3,"children":[{"type":"LEAF","table":"FeatureTest2","emittedRows":66,"numDocsScanned":66,"numEntriesScannedPostFilter":66,"numSegmentsQueried":2,"numSegmentsProcessed":2,"numSegmentsMatched":2,"numConsumingSegmentsQueried":1,"minConsumingFreshnessTimeMs":1716276920346,"totalDocs":66}]}]}]}]}]},"brokerId":"Broker_192.168.29.25_8099","exceptions":[],"numServersQueried":0,"numServersResponded":0,"numSegmentsQueried":3,"numSegmentsProcessed":3,"numSegmentsMatched":3,"numConsumingSegmentsQueried":1,"numConsumingSegmentsProcessed":0,"numConsumingSegmentsMatched":0,"numDocsScanned":76,"numEntriesScannedInFilter":0,"numEntriesScannedPostFilter":76,"numGroupsLimitReached":false,"maxRowsInJoinReached":false,"totalDocs":76,"timeUsedMs":35,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"offlineSystemActivitiesCpuTimeNs":0,"realtimeSystemActivitiesCpuTimeNs":0,"offlineResponseSerializationCpuTimeNs":0,"realtimeResponseSerializationCpuTimeNs":0,"offlineTotalCpuTimeNs":0,"realtimeTotalCpuTimeNs":0,"brokerReduceTimeMs":2,"partialResult":false,"numSegmentsPrunedByBroker":0,"minConsumingFreshnessTimeMs":1716276920346,"numSegmentsPrunedByServer":0,"numSegmentsPrunedInvalid":0,"numSegmentsPrunedByLimit":0,"numSegmentsPrunedByValue":0,"explainPlanNumEmptyFilterSegments":0,"explainPlanNumMatchAllFilterSegments":0,"numRowsResultSet":6,"exceptionsSize":0,"maxRowsInOperator":66}
+{"resultTable":{"dataSchema":{"columnNames":["stringDimSV1"],"columnDataTypes":["STRING"]},"rows":[["s1-4"],["s1-6"],["s1-2"],["s1-0"],["s1-5"],["s1-7"]]},"requestId":"11345778000000006","stageStats":{"type":"MAILBOX_RECEIVE","emittedRows":6,"fanIn":1,"rawMessages":2,"deserializedBytes":744,"upstreamWaitMs":1,"children":[{"type":"MAILBOX_SEND","executionTimeMs":2,"emittedRows":6,"stage":1,"parallelism":1,"fanOut":1,"rawMessages":2,"serializedBytes":174,"children":[{"type":"AGGREGATE","executionTimeMs":2,"emittedRows":6,"children":[{"type":"MAILBOX_RECEIVE","executionTimeMs":2,"emittedRows":6,"fanIn":1,"inMemoryMessages":2,"upstreamWaitMs":3,"children":[{"type":"MAILBOX_SEND","executionTimeMs":1,"emittedRows":6,"stage":2,"parallelism":1,"fanOut":1,"inMemoryMessages":2,"children":[{"type":"AGGREGATE","executionTimeMs":1,"emittedRows":6,"children":[{"type":"UNION","executionTimeMs":1,"emittedRows":76,"children":[{"type":"MAILBOX_RECEIVE","executionTimeMs":1,"emittedRows":10,"fanIn":1,"inMemoryMessages":2,"upstreamWaitMs":1,"children":[{"type":"MAILBOX_SEND","emittedRows":10,"stage":3,"parallelism":1,"fanOut":1,"inMemoryMessages":2,"children":[{"type":"LEAF","table":"FeatureTest1","emittedRows":10,"numDocsScanned":10,"numEntriesScannedPostFilter":10,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"totalDocs":10}]}]},{"type":"MAILBOX_RECEIVE","emittedRows":66,"fanIn":1,"inMemoryMessages":3,"upstreamWaitMs":1,"children":[{"type":"MAILBOX_SEND","emittedRows":66,"stage":4,"parallelism":1,"fanOut":1,"inMemoryMessages":3,"children":[{"type":"LEAF","table":"FeatureTest2","emittedRows":66,"numDocsScanned":66,"numEntriesScannedPostFilter":66,"numSegmentsQueried":2,"numSegmentsProcessed":2,"numSegmentsMatched":2,"numConsumingSegmentsQueried":1,"minConsumingFreshnessTimeMs":1716276920346,"totalDocs":66}]}]}]}]}]}]}]}]}]},"brokerId":"Broker_192.168.29.25_8099","exceptions":[],"numServersQueried":0,"numServersResponded":0,"numSegmentsQueried":3,"numSegmentsProcessed":3,"numSegmentsMatched":3,"numConsumingSegmentsQueried":1,"numConsumingSegmentsProcessed":0,"numConsumingSegmentsMatched":0,"numDocsScanned":76,"numEntriesScannedInFilter":0,"numEntriesScannedPostFilter":76,"numGroupsLimitReached":false,"maxRowsInJoinReached":false,"totalDocs":76,"timeUsedMs":13,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"offlineSystemActivitiesCpuTimeNs":0,"realtimeSystemActivitiesCpuTimeNs":0,"offlineResponseSerializationCpuTimeNs":0,"realtimeResponseSerializationCpuTimeNs":0,"offlineTotalCpuTimeNs":0,"realtimeTotalCpuTimeNs":0,"brokerReduceTimeMs":1,"partialResult":false,"numSegmentsPrunedByBroker":0,"minConsumingFreshnessTimeMs":1716276920346,"numSegmentsPrunedByServer":0,"numSegmentsPrunedInvalid":0,"numSegmentsPrunedByLimit":0,"numSegmentsPrunedByValue":0,"explainPlanNumEmptyFilterSegments":0,"explainPlanNumMatchAllFilterSegments":0,"numRowsResultSet":6,"exceptionsSize":0,"maxRowsInOperator":76}
+
+# Windows
+{"resultTable":{"dataSchema":{"columnNames":["stringDimSV1","longMetric1","EXPR$2"],"columnDataTypes":["STRING","LONG","LONG"]},"rows":[["s1-5",24,24],["s1-4",24,24],["s1-7",251,251],["s1-6",251,753],["s1-6",251,753],["s1-6",251,753],["s1-0",11,22],["s1-0",11,22],["s1-2",21,42],["s1-2",21,42]]},"partialResult":false,"exceptions":[],"numGroupsLimitReached":false,"maxRowsInJoinReached":false,"timeUsedMs":34,"stageStats":{"type":"MAILBOX_RECEIVE","executionTimeMs":3,"emittedRows":10,"fanIn":1,"rawMessages":2,"deserializedBytes":717,"upstreamWaitMs":1,"children":[{"type":"MAILBOX_SEND","executionTimeMs":1,"emittedRows":10,"stage":1,"parallelism":1,"fanOut":1,"rawMessages":2,"serializedBytes":407,"children":[{"type":"TRANSFORM","executionTimeMs":1,"emittedRows":10,"children":[{"type":"WINDOW","executionTimeMs":1,"emittedRows":10,"children":[{"type":"MAILBOX_RECEIVE","emittedRows":10,"fanIn":1,"inMemoryMessages":2,"upstreamWaitMs":2,"children":[{"type":"MAILBOX_SEND","emittedRows":10,"stage":2,"parallelism":1,"fanOut":1,"inMemoryMessages":2,"children":[{"type":"LEAF","table":"FeatureTest1","executionTimeMs":1,"emittedRows":10,"numDocsScanned":10,"totalDocs":10,"numEntriesScannedPostFilter":20,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1}]}]}]}]}]}]},"maxRowsInOperator":10,"requestId":"11345778000000006","brokerId":"Broker_192.168.29.25_8099","numDocsScanned":10,"totalDocs":10,"numEntriesScannedInFilter":0,"numEntriesScannedPostFilter":20,"numServersQueried":0,"numServersResponded":0,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numConsumingSegmentsQueried":0,"numConsumingSegmentsProcessed":0,"numConsumingSegmentsMatched":0,"minConsumingFreshnessTimeMs":0,"numSegmentsPrunedByBroker":0,"numSegmentsPrunedByServer":0,"numSegmentsPrunedInvalid":0,"numSegmentsPrunedByLimit":0,"numSegmentsPrunedByValue":0,"brokerReduceTimeMs":3,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"offlineSystemActivitiesCpuTimeNs":0,"realtimeSystemActivitiesCpuTimeNs":0,"offlineResponseSerializationCpuTimeNs":0,"realtimeResponseSerializationCpuTimeNs":0,"offlineTotalCpuTimeNs":0,"realtimeTotalCpuTimeNs":0,"explainPlanNumEmptyFilterSegments":0,"explainPlanNumMatchAllFilterSegments":0,"traceInfo":{}}
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/post-broker-rollback.yaml b/compatibility-verifier/multi-stage-query-engine-test-suite/post-broker-rollback.yaml
new file mode 100644
index 000000000000..c03834c943b5
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/post-broker-rollback.yaml
@@ -0,0 +1,43 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+# Operations to be done.
+description: Operations to be run after broker rollback
+operations:
+ - type: segmentOp
+ description: Add segment FeatureTest1_Segment8 to table FeatureTest1
+ op: UPLOAD
+ inputDataFileName: data/FeatureTest1-data-00.csv
+ schemaFileName: FeatureTest1-schema.json
+ tableConfigFileName: feature-test-1.json
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ segmentName: FeatureTest1_Segment8
+ - type: streamOp
+ description: publish rows to PinotRealtimeFeatureTest2Event
+ op: PRODUCE
+ streamConfigFileName: feature-test-2-realtime-stream-config.json
+ numRows: 66
+ inputDataFileName: data/FeatureTest2-data-realtime-00.csv
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ tableConfigFileName: feature-test-2-realtime.json
+ - type: queryOp
+ description: Run multi-stage queries on FeatureTest1 and FeatureTest2 using SQL
+ useMultiStageQueryEngine: true
+ queryFileName: queries/feature-test-multi-stage.queries
+ expectedResultsFileName: query-results/feature-test-multi-stage.results
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/post-controller-rollback.yaml b/compatibility-verifier/multi-stage-query-engine-test-suite/post-controller-rollback.yaml
new file mode 100644
index 000000000000..572bb9bce388
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/post-controller-rollback.yaml
@@ -0,0 +1,53 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+# Operations to be done.
+description: Operations to be run after controller rollback
+operations:
+ - type: segmentOp
+ description: Add segment FeatureTest1_Segment9 to table FeatureTest1
+ op: UPLOAD
+ inputDataFileName: data/FeatureTest1-data-00.csv
+ schemaFileName: FeatureTest1-schema.json
+ tableConfigFileName: feature-test-1.json
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ segmentName: FeatureTest1_Segment9
+ - type: streamOp
+ description: publish rows to PinotRealtimeFeatureTest2Event
+ op: PRODUCE
+ streamConfigFileName: feature-test-2-realtime-stream-config.json
+ numRows: 66
+ inputDataFileName: data/FeatureTest2-data-realtime-00.csv
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ tableConfigFileName: feature-test-2-realtime.json
+ - type: queryOp
+ description: Run multi-stage queries on FeatureTest1 and FeatureTest2 using SQL
+ useMultiStageQueryEngine: true
+ queryFileName: queries/feature-test-multi-stage.queries
+ expectedResultsFileName: query-results/feature-test-multi-stage.results
+ - type: segmentOp
+ description: Delete segment FeatureTest1_Segment
+ op: DELETE
+ tableConfigFileName: feature-test-1.json
+ segmentName: FeatureTest1_Segment
+ - type: tableOp
+ description: Delete table feature-test-1.json
+ op: DELETE
+ schemaFileName: FeatureTest1-schema.json
+ tableConfigFileName: feature-test-1.json
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/post-server-2-rollback.yaml b/compatibility-verifier/multi-stage-query-engine-test-suite/post-server-2-rollback.yaml
new file mode 100644
index 000000000000..5df517c9a3ac
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/post-server-2-rollback.yaml
@@ -0,0 +1,43 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+# Operations to be done.
+description: Operations to be run after server rollback
+operations:
+ - type: segmentOp
+ description: Add segment FeatureTest1_Segment6 to table FeatureTest1
+ op: UPLOAD
+ inputDataFileName: data/FeatureTest1-data-00.csv
+ schemaFileName: FeatureTest1-schema.json
+ tableConfigFileName: feature-test-1.json
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ segmentName: FeatureTest1_Segment6
+ - type: streamOp
+ description: publish rows to PinotRealtimeFeatureTest2Event
+ op: PRODUCE
+ streamConfigFileName: feature-test-2-realtime-stream-config.json
+ numRows: 66
+ inputDataFileName: data/FeatureTest2-data-realtime-00.csv
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ tableConfigFileName: feature-test-2-realtime.json
+ - type: queryOp
+ description: Run multi-stage queries on FeatureTest1 and FeatureTest2 using SQL
+ useMultiStageQueryEngine: true
+ queryFileName: queries/feature-test-multi-stage.queries
+ expectedResultsFileName: query-results/feature-test-multi-stage.results
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/post-server-2-upgrade.yaml b/compatibility-verifier/multi-stage-query-engine-test-suite/post-server-2-upgrade.yaml
new file mode 100644
index 000000000000..6dbb916845cd
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/post-server-2-upgrade.yaml
@@ -0,0 +1,43 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+# Operations to be done.
+description: Operations to be run after server upgrade
+operations:
+ - type: segmentOp
+ description: Add segment FeatureTest1_Segment5 to table FeatureTest1
+ op: UPLOAD
+ inputDataFileName: data/FeatureTest1-data-00.csv
+ schemaFileName: FeatureTest1-schema.json
+ tableConfigFileName: feature-test-1.json
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ segmentName: FeatureTest1_Segment5
+ - type: streamOp
+ description: publish rows to PinotRealtimeFeatureTest2Event
+ op: PRODUCE
+ streamConfigFileName: feature-test-2-realtime-stream-config.json
+ numRows: 66
+ inputDataFileName: data/FeatureTest2-data-realtime-00.csv
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ tableConfigFileName: feature-test-2-realtime.json
+ - type: queryOp
+ description: Run multi-stage queries on FeatureTest1 and FeatureTest2 using SQL
+ useMultiStageQueryEngine: true
+ queryFileName: queries/feature-test-multi-stage.queries
+ expectedResultsFileName: query-results/feature-test-multi-stage.results
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/post-server-rollback.yaml b/compatibility-verifier/multi-stage-query-engine-test-suite/post-server-rollback.yaml
new file mode 100644
index 000000000000..6417eef1cd72
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/post-server-rollback.yaml
@@ -0,0 +1,43 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+# Operations to be done.
+description: Operations to be run after server rollback
+operations:
+ - type: segmentOp
+ description: Add segment FeatureTest1_Segment7 to table FeatureTest1
+ op: UPLOAD
+ inputDataFileName: data/FeatureTest1-data-00.csv
+ schemaFileName: FeatureTest1-schema.json
+ tableConfigFileName: feature-test-1.json
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ segmentName: FeatureTest1_Segment7
+ - type: streamOp
+ description: publish rows to PinotRealtimeFeatureTest2Event
+ op: PRODUCE
+ streamConfigFileName: feature-test-2-realtime-stream-config.json
+ numRows: 66
+ inputDataFileName: data/FeatureTest2-data-realtime-00.csv
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ tableConfigFileName: feature-test-2-realtime.json
+ - type: queryOp
+ description: Run multi-stage queries on FeatureTest1 and FeatureTest2 using SQL
+ useMultiStageQueryEngine: true
+ queryFileName: queries/feature-test-multi-stage.queries
+ expectedResultsFileName: query-results/feature-test-multi-stage.results
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/post-server-upgrade.yaml b/compatibility-verifier/multi-stage-query-engine-test-suite/post-server-upgrade.yaml
new file mode 100644
index 000000000000..786cb3fb3981
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/post-server-upgrade.yaml
@@ -0,0 +1,43 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+# Operations to be done.
+description: Operations to be run after server upgrade
+operations:
+ - type: segmentOp
+ description: Add segment FeatureTest1_Segment4 to table FeatureTest1
+ op: UPLOAD
+ inputDataFileName: data/FeatureTest1-data-00.csv
+ schemaFileName: FeatureTest1-schema.json
+ tableConfigFileName: feature-test-1.json
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ segmentName: FeatureTest1_Segment4
+ - type: streamOp
+ description: publish rows to PinotRealtimeFeatureTest2Event
+ op: PRODUCE
+ streamConfigFileName: feature-test-2-realtime-stream-config.json
+ numRows: 66
+ inputDataFileName: data/FeatureTest2-data-realtime-00.csv
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ tableConfigFileName: feature-test-2-realtime.json
+ - type: queryOp
+ description: Run multi-stage queries on FeatureTest1 and FeatureTest2 using SQL
+ useMultiStageQueryEngine: true
+ queryFileName: queries/feature-test-multi-stage.queries
+ expectedResultsFileName: query-results/feature-test-multi-stage.results
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/pre-broker-upgrade.yaml b/compatibility-verifier/multi-stage-query-engine-test-suite/pre-broker-upgrade.yaml
new file mode 100644
index 000000000000..4e255b8cf8a8
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/pre-broker-upgrade.yaml
@@ -0,0 +1,43 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+# Operations to be done.
+description: Operations to be run before Broker upgrade
+operations:
+ - type: segmentOp
+ description: Add segment FeatureTest1_Segment2 to table FeatureTest1
+ op: UPLOAD
+ inputDataFileName: data/FeatureTest1-data-00.csv
+ schemaFileName: FeatureTest1-schema.json
+ tableConfigFileName: feature-test-1.json
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ segmentName: FeatureTest1_Segment2
+ - type: streamOp
+ description: publish rows to PinotRealtimeFeatureTest2Event
+ op: PRODUCE
+ streamConfigFileName: feature-test-2-realtime-stream-config.json
+ numRows: 66
+ inputDataFileName: data/FeatureTest2-data-realtime-00.csv
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ tableConfigFileName: feature-test-2-realtime.json
+ - type: queryOp
+ description: Run multi-stage queries on FeatureTest1 and FeatureTest2 using SQL
+ useMultiStageQueryEngine: true
+ queryFileName: queries/feature-test-multi-stage.queries
+ expectedResultsFileName: query-results/feature-test-multi-stage.results
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/pre-controller-upgrade.yaml b/compatibility-verifier/multi-stage-query-engine-test-suite/pre-controller-upgrade.yaml
new file mode 100644
index 000000000000..39f8bcacdf09
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/pre-controller-upgrade.yaml
@@ -0,0 +1,58 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+# Operations to be done.
+description: Operations to be run before Controller upgrade
+operations:
+ - type: streamOp
+ description: create Kafka topic PinotRealtimeFeatureTest2Event
+ op: CREATE
+ streamConfigFileName: feature-test-2-realtime-stream-config.json
+ - type: tableOp
+ description: Create realtime table FeatureTest2
+ op: CREATE
+ schemaFileName: FeatureTest2-schema.json
+ tableConfigFileName: feature-test-2-realtime.json
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ - type: tableOp
+ description: Create offline table FeatureTest1
+ op: CREATE
+ schemaFileName: FeatureTest1-schema.json
+ tableConfigFileName: feature-test-1.json
+ - type: segmentOp
+ description: Add segment FeatureTest1_Segment to table FeatureTest1
+ op: UPLOAD
+ inputDataFileName: data/FeatureTest1-data-00.csv
+ schemaFileName: FeatureTest1-schema.json
+ tableConfigFileName: feature-test-1.json
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ segmentName: FeatureTest1_Segment
+ - type: streamOp
+ description: publish rows to PinotRealtimeFeatureTest2Event
+ op: PRODUCE
+ streamConfigFileName: feature-test-2-realtime-stream-config.json
+ numRows: 66
+ inputDataFileName: data/FeatureTest2-data-realtime-00.csv
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ tableConfigFileName: feature-test-2-realtime.json
+ - type: queryOp
+ description: Run multi-stage queries on FeatureTest1 and FeatureTest2 using SQL
+ useMultiStageQueryEngine: true
+ queryFileName: queries/feature-test-multi-stage.queries
+ expectedResultsFileName: query-results/feature-test-multi-stage.results
diff --git a/compatibility-verifier/multi-stage-query-engine-test-suite/pre-server-upgrade.yaml b/compatibility-verifier/multi-stage-query-engine-test-suite/pre-server-upgrade.yaml
new file mode 100644
index 000000000000..167f71fadf2f
--- /dev/null
+++ b/compatibility-verifier/multi-stage-query-engine-test-suite/pre-server-upgrade.yaml
@@ -0,0 +1,43 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+# Operations to be done.
+description: Operations to be run before server upgrade
+operations:
+ - type: segmentOp
+ description: Add segment FeatureTest1_Segment3 to table FeatureTest1
+ op: UPLOAD
+ inputDataFileName: data/FeatureTest1-data-00.csv
+ schemaFileName: FeatureTest1-schema.json
+ tableConfigFileName: feature-test-1.json
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ segmentName: FeatureTest1_Segment3
+ - type: streamOp
+ description: publish rows to PinotRealtimeFeatureTest2Event
+ op: PRODUCE
+ streamConfigFileName: feature-test-2-realtime-stream-config.json
+ numRows: 66
+ inputDataFileName: data/FeatureTest2-data-realtime-00.csv
+ recordReaderConfigFileName: data/recordReaderConfig.json
+ tableConfigFileName: feature-test-2-realtime.json
+ - type: queryOp
+ description: Run multi-stage queries on FeatureTest1 and FeatureTest2 using SQL
+ useMultiStageQueryEngine: true
+ queryFileName: queries/feature-test-multi-stage.queries
+ expectedResultsFileName: query-results/feature-test-multi-stage.results
diff --git a/compatibility-verifier/sample-test-suite/config/queries/feature-test-1-sql.queries b/compatibility-verifier/sample-test-suite/config/queries/feature-test-1-sql.queries
index 37a6120a5d3c..38b848424362 100644
--- a/compatibility-verifier/sample-test-suite/config/queries/feature-test-1-sql.queries
+++ b/compatibility-verifier/sample-test-suite/config/queries/feature-test-1-sql.queries
@@ -22,7 +22,7 @@ SELECT count(*) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__
SELECT sum(intMetric1), sumMV(intDimMV1), min(intMetric1), minMV(intDimMV2), max(longDimSV1), maxMV(intDimMV1) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__
SELECT count(longDimSV1), countMV(intDimMV1), avg(floatMetric1), avgMV(intDimMV2), minMaxRange(doubleMetric1), minMaxRangeMV(intDimMV2) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__
SELECT percentile(longDimSV1, 80), percentileMV(intDimMV1, 90), percentileEst(longDimSV1, 80), percentileEstMV(intDimMV1, 90), percentileTDigest(longDimSV1, 80), percentileTDigestMV(intDimMV1, 90) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__
-SELECT distinctCount(longDimSV1), distinctCountMV(intDimMV1), distinctCountHLL(longDimSV1), distinctCountHLLMV(intDimMV1) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__
+SELECT distinctCount(longDimSV1), distinctCountMV(intDimMV1), distinctCountHLL(longDimSV1), distinctCountHLLMV(intDimMV1), distinctCountThetaSketch(longDimSV1) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__
# Selection
SELECT longDimSV2, stringDimSV1, textDim1, bytesDimSV1 FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__ ORDER BY longDimSV2 LIMIT 9
@@ -46,14 +46,14 @@ SELECT longDimSV1, intDimMV1, count(*) FROM FeatureTest1 WHERE generationNumber
SELECT longDimSV1, intDimMV1, sum(intMetric1), sumMV(intDimMV1), min(intMetric1), minMV(intDimMV2), max(longDimSV1), maxMV(intDimMV1) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__ GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1 LIMIT 5
SELECT longDimSV1, intDimMV1, count(longDimSV1), countMV(intDimMV1), avg(floatMetric1), avgMV(intDimMV2), minMaxRange(doubleMetric1), minMaxRangeMV(intDimMV2) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__ GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1 LIMIT 5
SELECT longDimSV1, intDimMV1, percentile(longDimSV1, 80), percentileMV(intDimMV1, 90), percentileEst(longDimSV1, 80), percentileEstMV(intDimMV1, 90), percentileTDigest(longDimSV1, 80), percentileTDigestMV(intDimMV1, 90) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__ GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1 LIMIT 5
-SELECT longDimSV1, intDimMV1, distinctCount(longDimSV1), distinctCountMV(intDimMV1), distinctCountHLL(longDimSV1), distinctCountHLLMV(intDimMV1) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__ GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1 LIMIT 5
+SELECT longDimSV1, intDimMV1, distinctCount(longDimSV1), distinctCountMV(intDimMV1), distinctCountHLL(longDimSV1), distinctCountHLLMV(intDimMV1), distinctCountThetaSketch(longDimSV1) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__ GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1 LIMIT 5
# Selection & Filtering & Grouping on Aggregation
SELECT longDimSV1, intDimMV1, count(*) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__ AND (stringDimSV1 != 's1-6' AND longDimSV1 BETWEEN 10 AND 1000 OR (intDimMV1 < 42 AND stringDimMV2 IN ('m2-0-0', 'm2-2-0') AND intDimMV2 NOT IN (6,72))) GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1, intDimMV1 LIMIT 5
SELECT longDimSV1, intDimMV1, sum(intMetric1), sumMV(intDimMV1), min(intMetric1), minMV(intDimMV2), max(longDimSV1), maxMV(intDimMV1) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__ AND (stringDimSV1 != 's1-6' AND longDimSV1 BETWEEN 10 AND 1000 OR (intDimMV1 < 42 AND stringDimMV2 IN ('m2-0-0', 'm2-2-0') AND intDimMV2 NOT IN (6,72))) GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1, intDimMV1 LIMIT 5
SELECT longDimSV1, intDimMV1, count(longDimSV1), countMV(intDimMV1), avg(floatMetric1), avgMV(intDimMV2), minMaxRange(doubleMetric1), minMaxRangeMV(intDimMV2) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__ AND (stringDimSV1 != 's1-6' AND longDimSV1 BETWEEN 10 AND 1000 OR (intDimMV1 < 42 AND stringDimMV2 IN ('m2-0-0', 'm2-2-0') AND intDimMV2 NOT IN (6,72))) GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1, intDimMV1 LIMIT 5
SELECT longDimSV1, intDimMV1, percentile(longDimSV1, 80), percentileMV(intDimMV1, 90), percentileEst(longDimSV1, 80), percentileEstMV(intDimMV1, 90), percentileTDigest(longDimSV1, 80), percentileTDigestMV(intDimMV1, 90) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__ AND (stringDimSV1 != 's1-6' AND longDimSV1 BETWEEN 10 AND 1000 OR (intDimMV1 < 42 AND stringDimMV2 IN ('m2-0-0', 'm2-2-0') AND intDimMV2 NOT IN (6,72))) GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1, intDimMV1 LIMIT 5
-SELECT longDimSV1, intDimMV1, distinctCount(longDimSV1), distinctCountMV(intDimMV1), distinctCountHLL(longDimSV1), distinctCountHLLMV(intDimMV1) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__ AND (stringDimSV1 != 's1-6' AND longDimSV1 BETWEEN 10 AND 1000 OR (intDimMV1 < 42 AND stringDimMV2 IN ('m2-0-0', 'm2-2-0') AND intDimMV2 NOT IN (6,72))) GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1, intDimMV1 LIMIT 5
+SELECT longDimSV1, intDimMV1, distinctCount(longDimSV1), distinctCountMV(intDimMV1), distinctCountHLL(longDimSV1), distinctCountHLLMV(intDimMV1), distinctCountThetaSketch(longDimSV1) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__ AND (stringDimSV1 != 's1-6' AND longDimSV1 BETWEEN 10 AND 1000 OR (intDimMV1 < 42 AND stringDimMV2 IN ('m2-0-0', 'm2-2-0') AND intDimMV2 NOT IN (6,72))) GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1, intDimMV1 LIMIT 5
# Transformation Functions
SELECT add(longDimSV1, sub(longDimSV2, 3)), mod(intMetric1, 10), div(doubleMetric1, mult(floatMetric1, 5)) FROM FeatureTest1 WHERE generationNumber = __GENERATION_NUMBER__ ORDER BY add(longDimSV1, sub(longDimSV2, 3)) DESC, mod(intMetric1, 10)
diff --git a/compatibility-verifier/sample-test-suite/config/queries/feature-test-2-sql-realtime.queries b/compatibility-verifier/sample-test-suite/config/queries/feature-test-2-sql-realtime.queries
index da9c43d7adbd..362720553426 100644
--- a/compatibility-verifier/sample-test-suite/config/queries/feature-test-2-sql-realtime.queries
+++ b/compatibility-verifier/sample-test-suite/config/queries/feature-test-2-sql-realtime.queries
@@ -32,7 +32,7 @@ SELECT sum(intMetric1), sumMV(intDimMV1), min(intMetric1), minMV(intDimMV2), max
SELECT count(longDimSV1), countMV(intDimMV1), avg(floatMetric1), avgMV(intDimMV2), minMaxRange(doubleMetric1), minMaxRangeMV(intDimMV2) FROM FeatureTest2 WHERE generationNumber = __GENERATION_NUMBER__
SELECT percentile(longDimSV1, 80), percentileMV(intDimMV1, 90), percentileEst(longDimSV1, 80), percentileEstMV(intDimMV1, 90), percentileTDigest(longDimSV1, 80), percentileTDigestMV(intDimMV1, 90) FROM FeatureTest2 WHERE generationNumber = __GENERATION_NUMBER__
SELECT percentile(longDimSV1, 80.01), percentileMV(intDimMV1, 99.99), percentileEst(longDimSV1, 80.01), percentileEstMV(intDimMV1, 99.99), percentileTDigest(longDimSV1, 80.01), percentileTDigestMV(intDimMV1, 99.99) FROM FeatureTest2 WHERE generationNumber = __GENERATION_NUMBER__
-SELECT distinctCount(longDimSV1), distinctCountMV(intDimMV1), distinctCountHLL(longDimSV1), distinctCountHLLMV(intDimMV1) FROM FeatureTest2 WHERE generationNumber = __GENERATION_NUMBER__
+SELECT distinctCount(longDimSV1), distinctCountMV(intDimMV1), distinctCountHLL(longDimSV1), distinctCountHLLMV(intDimMV1), distinctCountThetaSketch(longDimSV1) FROM FeatureTest2 WHERE generationNumber = __GENERATION_NUMBER__
# Selection & Filtering & Grouping on Aggregation
SELECT longDimSV1, intDimMV1, count(*) FROM FeatureTest2 WHERE generationNumber = __GENERATION_NUMBER__ AND (stringDimSV1 != 's1-6' AND longDimSV1 BETWEEN 10 AND 1000 OR (intDimMV1 < 42 AND stringDimMV2 IN ('m2-0-0', 'm2-2-0') AND intDimMV2 NOT IN (6,72))) GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1, intDimMV1 LIMIT 20
@@ -40,7 +40,7 @@ SELECT longDimSV1, intDimMV1, sum(intMetric1), sumMV(intDimMV1), min(intMetric1)
SELECT longDimSV1, intDimMV1, count(longDimSV1), countMV(intDimMV1), avg(floatMetric1), avgMV(intDimMV2), minMaxRange(doubleMetric1), minMaxRangeMV(intDimMV2) FROM FeatureTest2 WHERE generationNumber = __GENERATION_NUMBER__ AND (stringDimSV1 != 's1-6' AND longDimSV1 BETWEEN 10 AND 1000 OR (intDimMV1 < 42 AND stringDimMV2 IN ('m2-0-0', 'm2-2-0') AND intDimMV2 NOT IN (6,72))) GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1, intDimMV1 LIMIT 20
SELECT longDimSV1, intDimMV1, percentile(longDimSV1, 80), percentileMV(intDimMV1, 90), percentileEst(longDimSV1, 80), percentileEstMV(intDimMV1, 90), percentileTDigest(longDimSV1, 80), percentileTDigestMV(intDimMV1, 90) FROM FeatureTest2 WHERE generationNumber = __GENERATION_NUMBER__ AND (stringDimSV1 != 's1-6' AND longDimSV1 BETWEEN 10 AND 1000 OR (intDimMV1 < 42 AND stringDimMV2 IN ('m2-0-0', 'm2-2-0') AND intDimMV2 NOT IN (6,72))) GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1, intDimMV1 LIMIT 20
SELECT longDimSV1, intDimMV1, percentile(longDimSV1, 80.01), percentileMV(intDimMV1, 99.99), percentileEst(longDimSV1, 80.01), percentileEstMV(intDimMV1, 99.99), percentileTDigest(longDimSV1, 80.01), percentileTDigestMV(intDimMV1, 99.99) FROM FeatureTest2 WHERE generationNumber = __GENERATION_NUMBER__ AND (stringDimSV1 != 's1-6' AND longDimSV1 BETWEEN 10 AND 1000 OR (intDimMV1 < 42 AND stringDimMV2 IN ('m2-0-0', 'm2-2-0') AND intDimMV2 NOT IN (6,72))) GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1, intDimMV1 LIMIT 20
-SELECT longDimSV1, intDimMV1, distinctCount(longDimSV1), distinctCountMV(intDimMV1), distinctCountHLL(longDimSV1), distinctCountHLLMV(intDimMV1) FROM FeatureTest2 WHERE generationNumber = __GENERATION_NUMBER__ AND (stringDimSV1 != 's1-6' AND longDimSV1 BETWEEN 10 AND 1000 OR (intDimMV1 < 42 AND stringDimMV2 IN ('m2-0-0', 'm2-2-0') AND intDimMV2 NOT IN (6,72))) GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1, intDimMV1 LIMIT 20
+SELECT longDimSV1, intDimMV1, distinctCount(longDimSV1), distinctCountMV(intDimMV1), distinctCountHLL(longDimSV1), distinctCountHLLMV(intDimMV1), distinctCountThetaSketch(longDimSV1) FROM FeatureTest2 WHERE generationNumber = __GENERATION_NUMBER__ AND (stringDimSV1 != 's1-6' AND longDimSV1 BETWEEN 10 AND 1000 OR (intDimMV1 < 42 AND stringDimMV2 IN ('m2-0-0', 'm2-2-0') AND intDimMV2 NOT IN (6,72))) GROUP BY longDimSV1, intDimMV1 ORDER BY longDimSV1, intDimMV1 LIMIT 20
# Transformation Functions
SELECT DISTINCT add(longDimSV1, sub(longDimSV2, 3)), mod(intMetric1, 10), div(doubleMetric1, mult(floatMetric1, 5)) FROM FeatureTest2 WHERE generationNumber = __GENERATION_NUMBER__ ORDER BY add(longDimSV1, sub(longDimSV2, 3)) DESC, mod(intMetric1, 10), div(doubleMetric1, mult(floatMetric1, 5))
diff --git a/compatibility-verifier/sample-test-suite/config/query-results/feature-test-1-rest-sql.results b/compatibility-verifier/sample-test-suite/config/query-results/feature-test-1-rest-sql.results
index 83ae2471162f..aad84fc46ecd 100644
--- a/compatibility-verifier/sample-test-suite/config/query-results/feature-test-1-rest-sql.results
+++ b/compatibility-verifier/sample-test-suite/config/query-results/feature-test-1-rest-sql.results
@@ -22,7 +22,7 @@
{"resultTable":{"dataSchema":{"columnDataTypes":["DOUBLE","DOUBLE","DOUBLE","DOUBLE","DOUBLE","DOUBLE"],"columnNames":["sum(intMetric1)","summv(intDimMV1)","min(intMetric1)","minmv(intDimMV2)","max(longDimSV1)","maxmv(intDimMV1)"]},"rows":[[4.294967536E9,-2.147479976E9,0.0,6.0,7611.0,462.0]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":10,"numEntriesScannedPostFilter":40,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":5,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
{"resultTable":{"dataSchema":{"columnDataTypes":["LONG","LONG","DOUBLE","DOUBLE","DOUBLE","DOUBLE"],"columnNames":["count(*)","countmv(intDimMV1)","avg(floatMetric1)","avgmv(intDimMV2)","minmaxrange(doubleMetric1)","minmaxrangemv(intDimMV2)"]},"rows":[[10,19,114.09000263214111,1516.9,250.00000000000003,6656.0]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":10,"numEntriesScannedPostFilter":40,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":7,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
{"resultTable":{"dataSchema":{"columnDataTypes":["DOUBLE","DOUBLE","LONG","LONG","DOUBLE","DOUBLE"],"columnNames":["percentile(longDimSV1, 80.0)","percentilemv(intDimMV1, 90.0)","percentileest(longDimSV1, 80.0)","percentileestmv(intDimMV1, 90.0)","percentiletdigest(longDimSV1, 80.0)","percentiletdigestmv(intDimMV1, 90.0)"]},"rows":[[7611.0,462.0,7611,462,7611.0,462.0]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":10,"numEntriesScannedPostFilter":20,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":8,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
-{"resultTable":{"dataSchema":{"columnDataTypes":["INT","INT","LONG","LONG"],"columnNames":["distinctcount(longDimSV1)","distinctcountmv(intDimMV1)","distinctcounthll(longDimSV1)","distinctcounthllmv(intDimMV1)"]},"rows":[[6,8,6,8]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":10,"numEntriesScannedPostFilter":20,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":6,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
+{"resultTable":{"dataSchema":{"columnDataTypes":["INT","INT","LONG","LONG","LONG"],"columnNames":["distinctcount(longDimSV1)","distinctcountmv(intDimMV1)","distinctcounthll(longDimSV1)","distinctcounthllmv(intDimMV1)","distinctcountthetasketch(longDimSV1)"]},"rows":[[6,8,6,8,6]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":10,"numEntriesScannedPostFilter":20,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":6,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
# Selection
{"resultTable":{"dataSchema":{"columnDataTypes":["LONG","STRING","STRING","BYTES"],"columnNames":["longDimSV2","stringDimSV1","textDim1","bytesDimSV1"]},"rows":[[2,"s1-0","Java C++ Python","4877625602"],[2,"s1-0","Java C++ Python","01a0bc"],[21,"s1-2","Java C++ golang","13225573e3f5"],[21,"s1-2","Java C++ golang","deadbeef"],[22,"s1-4","Java C++ golang","deed0507"],[32,"s1-5","golang shell bash",""],[6777,"s1-7","golang Java","d54d0507"],[7621,"s1-6","C++ golang python","deed0507"],[7621,"s1-6","C++ golang python","deed0507"]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":10,"numEntriesScannedPostFilter":47,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":31,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
@@ -42,14 +42,14 @@
{"resultTable":{"dataSchema":{"columnDataTypes":["LONG","INT","DOUBLE","DOUBLE","DOUBLE","DOUBLE","DOUBLE","DOUBLE"],"columnNames":["longDimSV1","intDimMV1","sum(intMetric1)","summv(intDimMV1)","min(intMetric1)","minmv(intDimMV2)","max(longDimSV1)","maxmv(intDimMV1)"]},"rows":[[-9223372036854775808,-2147483648,0.0,-2.147483648E9,0.0,22.0,-9.223372036854776E18,-2.147483648E9],[1,3,20.0,14.0,10.0,6.0,1.0,4.0],[1,4,20.0,14.0,10.0,6.0,1.0,4.0],[11,42,20.0,148.0,10.0,62.0,11.0,42.0],[11,32,20.0,148.0,10.0,62.0,11.0,42.0]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":10,"numEntriesScannedPostFilter":40,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":8,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
{"resultTable":{"dataSchema":{"columnDataTypes":["LONG","INT","LONG","LONG","DOUBLE","DOUBLE","DOUBLE","DOUBLE"],"columnNames":["longDimSV1","intDimMV1","count(*)","countmv(intDimMV1)","avg(floatMetric1)","avgmv(intDimMV2)","minmaxrange(doubleMetric1)","minmaxrangemv(intDimMV2)"]},"rows":[[-9223372036854775808,-2147483648,1,1,0.0,57.0,0.0,70.0],[1,3,2,4,12.100000381469727,6.5,0.0,1.0],[1,4,2,4,12.100000381469727,6.5,0.0,1.0],[11,42,2,4,22.100000381469727,67.0,0.0,10.0],[11,32,2,4,22.100000381469727,67.0,0.0,10.0]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":10,"numEntriesScannedPostFilter":50,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":12,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
{"resultTable":{"dataSchema":{"columnDataTypes":["LONG","INT","DOUBLE","DOUBLE","LONG","LONG","DOUBLE","DOUBLE"],"columnNames":["longDimSV1","intDimMV1","percentile(longDimSV1, 80.0)","percentilemv(intDimMV1, 90.0)","percentileest(longDimSV1, 80.0)","percentileestmv(intDimMV1, 90.0)","percentiletdigest(longDimSV1, 80.0)","percentiletdigestmv(intDimMV1, 90.0)"]},"rows":[[-9223372036854775808,-2147483648,-9.223372036854776E18,-2.147483648E9,-9223372036854775808,-2147483648,-9.223372036854776E18,-2.147483648E9],[1,3,1.0,4.0,1,4,1.0,4.0],[1,4,1.0,4.0,1,4,1.0,4.0],[11,42,11.0,42.0,11,42,11.0,42.0],[11,32,11.0,42.0,11,42,11.0,42.0]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":10,"numEntriesScannedPostFilter":20,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":13,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
-{"resultTable":{"dataSchema":{"columnDataTypes":["LONG","INT","INT","INT","LONG","LONG"],"columnNames":["longDimSV1","intDimMV1","distinctcount(longDimSV1)","distinctcountmv(intDimMV1)","distinctcounthll(longDimSV1)","distinctcounthllmv(intDimMV1)"]},"rows":[[-9223372036854775808,-2147483648,1,1,1,1],[1,3,1,2,1,2],[1,4,1,2,1,2],[11,42,1,2,1,2],[11,32,1,2,1,2]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":10,"numEntriesScannedPostFilter":20,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":10,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
+{"resultTable":{"dataSchema":{"columnDataTypes":["LONG","INT","INT","INT","LONG","LONG","LONG"],"columnNames":["longDimSV1","intDimMV1","distinctcount(longDimSV1)","distinctcountmv(intDimMV1)","distinctcounthll(longDimSV1)","distinctcounthllmv(intDimMV1)","distinctcountthetasketch(longDimSV1)"]},"rows":[[-9223372036854775808,-2147483648,1,1,1,1,1],[1,3,1,2,1,2,1],[1,4,1,2,1,2,1],[11,42,1,2,1,2,1],[11,32,1,2,1,2,1]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":10,"numEntriesScannedPostFilter":20,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":10,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
# Selection & Filtering & Grouping on Aggregation
{"resultTable":{"dataSchema":{"columnDataTypes":["LONG","INT","LONG"],"columnNames":["longDimSV1","intDimMV1","count(*)"]},"rows":[[-9223372036854775808,-2147483648,1],[11,32,2],[11,42,2],[41,42,1],[41,52,1]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":4,"numEntriesScannedPostFilter":8,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":8,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
{"resultTable":{"dataSchema":{"columnDataTypes":["LONG","INT","DOUBLE","DOUBLE","DOUBLE","DOUBLE","DOUBLE","DOUBLE"],"columnNames":["longDimSV1","intDimMV1","sum(intMetric1)","summv(intDimMV1)","min(intMetric1)","minmv(intDimMV2)","max(longDimSV1)","maxmv(intDimMV1)"]},"rows":[[-9223372036854775808,-2147483648,0,-2147483648,0,22,-9223372036854776000,-2147483648],[11,32,20,148,10,62,11,42],[11,42,20,148,10,62,11,42],[41,42,14,94,14,72,41,52],[41,52,14,94,14,72,41,52]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":4,"numEntriesScannedPostFilter":16,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":13,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
{"resultTable":{"dataSchema":{"columnDataTypes":["LONG","INT","LONG","LONG","DOUBLE","DOUBLE","DOUBLE","DOUBLE"],"columnNames":["longDimSV1","intDimMV1","count(*)","countmv(intDimMV1)","avg(floatMetric1)","avgmv(intDimMV2)","minmaxrange(doubleMetric1)","minmaxrangemv(intDimMV2)"]},"rows":[[-9223372036854775808,-2147483648,1,1,0,57,0,70],[11,32,2,4,22.100000381469727,67,0,10],[11,42,2,4,22.100000381469727,67,0,10],[41,42,1,2,24.100000381469727,77,0,10],[41,52,1,2,24.100000381469727,77,0,10]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":4,"numEntriesScannedPostFilter":20,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":4,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
{"resultTable":{"dataSchema":{"columnDataTypes":["LONG","INT","DOUBLE","DOUBLE","LONG","LONG","DOUBLE","DOUBLE"],"columnNames":["longDimSV1","intDimMV1","percentile(longDimSV1, 80.0)","percentilemv(intDimMV1, 90.0)","percentileest(longDimSV1, 80.0)","percentileestmv(intDimMV1, 90.0)","percentiletdigest(longDimSV1, 80.0)","percentiletdigestmv(intDimMV1, 90.0)"]},"rows":[[-9223372036854775808,-2147483648,-9223372036854775808,-2147483648,-9223372036854775808,-2147483648,-9223372036854776000,-2147483648],[11,32,11,42,11,42,11,42],[11,42,11,42,11,42,11,42],[41,42,41,52,41,52,41,52],[41,52,41,52,41,52,41,52]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":4,"numEntriesScannedPostFilter":8,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":18,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
-{"resultTable":{"dataSchema":{"columnDataTypes":["LONG","INT","INT","INT","LONG","LONG"],"columnNames":["longDimSV1","intDimMV1","distinctcount(longDimSV1)","distinctcountmv(intDimMV1)","distinctcounthll(longDimSV1)","distinctcounthllmv(intDimMV1)"]},"rows":[[-9223372036854775808,-2147483648,1,1,1,1],[11,32,1,2,1,2],[11,42,1,2,1,2],[41,42,1,2,1,2],[41,52,1,2,1,2]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":4,"numEntriesScannedPostFilter":8,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":7,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
+{"resultTable":{"dataSchema":{"columnDataTypes":["LONG","INT","INT","INT","LONG","LONG","LONG"],"columnNames":["longDimSV1","intDimMV1","distinctcount(longDimSV1)","distinctcountmv(intDimMV1)","distinctcounthll(longDimSV1)","distinctcounthllmv(intDimMV1)","distinctcountthetasketch(longDimSV1)"]},"rows":[[-9223372036854775808,-2147483648,1,1,1,1,1],[11,32,1,2,1,2,1],[11,42,1,2,1,2,1],[41,42,1,2,1,2,1],[41,52,1,2,1,2,1]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":4,"numEntriesScannedPostFilter":8,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":7,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
# Transformation Functions
{"resultTable":{"dataSchema":{"columnDataTypes":["DOUBLE","DOUBLE","DOUBLE"],"columnNames":["add(longDimSV1,sub(longDimSV2,'3'))","mod(intMetric1,'10')","div(doubleMetric1,mult(floatMetric1,'5'))"]},"rows":[[15229.0,1.0,0.20076306285631254],[15229.0,7.0,0.20076306285631254],[15229.0,7.0,0.20076306285631254],[13540.0,7.0,0.20076306285631254],[60.0,4.0,0.1999999968342762],[29.0,0.0,0.20904977014723267],[29.0,0.0,0.20904977014723267],[0.0,0.0,0.21652891879345226],[0.0,0.0,0.21652891879345226],[-9.223372036854776E18,0.0,"Infinity"]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":10,"numEntriesScannedPostFilter":60,"numGroupsLimitReached":false,"totalDocs":10,"timeUsedMs":8,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":0}
diff --git a/compatibility-verifier/sample-test-suite/config/query-results/feature-test-2-sql-realtime.results b/compatibility-verifier/sample-test-suite/config/query-results/feature-test-2-sql-realtime.results
index 47f7a2805c84..849020c10403 100644
--- a/compatibility-verifier/sample-test-suite/config/query-results/feature-test-2-sql-realtime.results
+++ b/compatibility-verifier/sample-test-suite/config/query-results/feature-test-2-sql-realtime.results
@@ -29,7 +29,7 @@
{"resultTable":{"dataSchema":{"columnNames":["count(*)","countmv(intDimMV1)","avg(floatMetric1)","avgmv(intDimMV2)","minmaxrange(doubleMetric1)","minmaxrangemv(intDimMV2)"],"columnDataTypes":["LONG","LONG","DOUBLE","DOUBLE","DOUBLE","DOUBLE"]},"rows":[[66,125,105.11969939145175,1383.2575757575758,250.00000000000003,6656.0]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":66,"numEntriesScannedPostFilter":264,"numGroupsLimitReached":false,"totalDocs":66,"timeUsedMs":5,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":1620950080428}
{"resultTable":{"dataSchema":{"columnNames":["percentile(longDimSV1, 80.0)","percentilemv(intDimMV1, 90.0)","percentileest(longDimSV1, 80.0)","percentileestmv(intDimMV1, 90.0)","percentiletdigest(longDimSV1, 80.0)","percentiletdigestmv(intDimMV1, 90.0)"],"columnDataTypes":["DOUBLE","DOUBLE","LONG","LONG","DOUBLE","DOUBLE"]},"rows":[[7611.0,462.0,7611,462,7611.0,462.0]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":66,"numEntriesScannedPostFilter":132,"numGroupsLimitReached":false,"totalDocs":66,"timeUsedMs":9,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":1620950080428}
{"resultTable":{"dataSchema":{"columnNames":["percentile(longDimSV1, 80.01)","percentilemv(intDimMV1, 99.99)","percentileest(longDimSV1, 80.01)","percentileestmv(intDimMV1, 99.99)","percentiletdigest(longDimSV1, 80.01)","percentiletdigestmv(intDimMV1, 99.99)"],"columnDataTypes":["DOUBLE","DOUBLE","LONG","LONG","DOUBLE","DOUBLE"]},"rows":[[7611.0,462.0,7611,462,7611.0,462.0]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":66,"numEntriesScannedPostFilter":132,"numGroupsLimitReached":false,"totalDocs":66,"timeUsedMs":9,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":1620950080428}
-{"resultTable":{"dataSchema":{"columnNames":["distinctcount(longDimSV1)","distinctcountmv(intDimMV1)","distinctcounthll(longDimSV1)","distinctcounthllmv(intDimMV1)"],"columnDataTypes":["INT","INT","LONG","LONG"]},"rows":[[6,8,6,8]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":66,"numEntriesScannedPostFilter":132,"numGroupsLimitReached":false,"totalDocs":66,"timeUsedMs":5,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":1620950080428}
+{"resultTable":{"dataSchema":{"columnNames":["distinctcount(longDimSV1)","distinctcountmv(intDimMV1)","distinctcounthll(longDimSV1)","distinctcounthllmv(intDimMV1)","distinctcountthetasketch(longDimSV1)"],"columnDataTypes":["INT","INT","LONG","LONG","LONG"]},"rows":[[6,8,6,8,6]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":66,"numEntriesScannedPostFilter":132,"numGroupsLimitReached":false,"totalDocs":66,"timeUsedMs":5,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":1620950080428}
# Selection & Filtering & Grouping on Aggregation
{"resultTable":{"dataSchema":{"columnNames":["longDimSV1","intDimMV1","count(*)"],"columnDataTypes":["LONG","INT","LONG"]},"rows":[[-9223372036854775808,-2147483648,7],[11,32,14],[11,42,14],[41,42,7],[41,52,7]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":28,"numEntriesScannedPostFilter":56,"numGroupsLimitReached":false,"totalDocs":66,"timeUsedMs":6,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":1620950080428}
@@ -37,7 +37,7 @@
{"resultTable":{"dataSchema":{"columnNames":["longDimSV1","intDimMV1","count(*)","countmv(intDimMV1)","avg(floatMetric1)","avgmv(intDimMV2)","minmaxrange(doubleMetric1)","minmaxrangemv(intDimMV2)"],"columnDataTypes":["LONG","INT","LONG","LONG","DOUBLE","DOUBLE","DOUBLE","DOUBLE"]},"rows":[[-9223372036854775808,-2147483648,7,7,0.0,57.0,0.0,70.0],[11,32,14,28,22.100000381469727,67.0,0.0,10.0],[11,42,14,28,22.100000381469727,67.0,0.0,10.0],[41,42,7,14,24.100000381469727,77.0,0.0,10.0],[41,52,7,14,24.100000381469727,77.0,0.0,10.0]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":28,"numEntriesScannedPostFilter":140,"numGroupsLimitReached":false,"totalDocs":66,"timeUsedMs":5,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":1620950080428}
{"resultTable":{"dataSchema":{"columnNames":["longDimSV1","intDimMV1","percentile(longDimSV1, 80.0)","percentilemv(intDimMV1, 90.0)","percentileest(longDimSV1, 80.0)","percentileestmv(intDimMV1, 90.0)","percentiletdigest(longDimSV1, 80.0)","percentiletdigestmv(intDimMV1, 90.0)"],"columnDataTypes":["LONG","INT","DOUBLE","DOUBLE","LONG","LONG","DOUBLE","DOUBLE"]},"rows":[[-9223372036854775808,-2147483648,-9.223372036854776E18,-2.147483648E9,-9223372036854775808,-2147483648,-9.223372036854776E18,-2.147483648E9],[11,32,11.0,42.0,11,42,11.0,42.0],[11,42,11.0,42.0,11,42,11.0,42.0],[41,42,41.0,52.0,41,52,41.0,52.0],[41,52,41.0,52.0,41,52,41.0,52.0]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":28,"numEntriesScannedPostFilter":56,"numGroupsLimitReached":false,"totalDocs":66,"timeUsedMs":8,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":1620950080428}
{"resultTable":{"dataSchema":{"columnNames":["longDimSV1","intDimMV1","percentile(longDimSV1, 80.01)","percentilemv(intDimMV1, 99.99)","percentileest(longDimSV1, 80.01)","percentileestmv(intDimMV1, 99.99)","percentiletdigest(longDimSV1, 80.01)","percentiletdigestmv(intDimMV1, 99.99)"],"columnDataTypes":["LONG","INT","DOUBLE","DOUBLE","LONG","LONG","DOUBLE","DOUBLE"]},"rows":[[-9223372036854775808,-2147483648,-9.223372036854776E18,-2.147483648E9,-9223372036854775808,-2147483648,-9.223372036854776E18,-2.147483648E9],[11,32,11.0,42.0,11,42,11.0,42.0],[11,42,11.0,42.0,11,42,11.0,42.0],[41,42,41.0,52.0,41,52,41.0,52.0],[41,52,41.0,52.0,41,52,41.0,52.0]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":28,"numEntriesScannedPostFilter":56,"numGroupsLimitReached":false,"totalDocs":66,"timeUsedMs":12,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":1620950080428}
-{"resultTable":{"dataSchema":{"columnNames":["longDimSV1","intDimMV1","distinctcount(longDimSV1)","distinctcountmv(intDimMV1)","distinctcounthll(longDimSV1)","distinctcounthllmv(intDimMV1)"],"columnDataTypes":["LONG","INT","INT","INT","LONG","LONG"]},"rows":[[-9223372036854775808,-2147483648,1,1,1,1],[11,32,1,2,1,2],[11,42,1,2,1,2],[41,42,1,2,1,2],[41,52,1,2,1,2]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":28,"numEntriesScannedPostFilter":56,"numGroupsLimitReached":false,"totalDocs":66,"timeUsedMs":7,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":1620950080428}
+{"resultTable":{"dataSchema":{"columnNames":["longDimSV1","intDimMV1","distinctcount(longDimSV1)","distinctcountmv(intDimMV1)","distinctcounthll(longDimSV1)","distinctcounthllmv(intDimMV1)","distinctcountthetasketch(longDimSV1)"],"columnDataTypes":["LONG","INT","INT","INT","LONG","LONG","LONG"]},"rows":[[-9223372036854775808,-2147483648,1,1,1,1,1],[11,32,1,2,1,2,1],[11,42,1,2,1,2,1],[41,42,1,2,1,2,1],[41,52,1,2,1,2,1]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":28,"numEntriesScannedPostFilter":56,"numGroupsLimitReached":false,"totalDocs":66,"timeUsedMs":7,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":1620950080428}
# Transformation Functions
{"resultTable":{"dataSchema":{"columnNames":["add(longDimSV1,sub(longDimSV2,'3'))","mod(intMetric1,'10')","div(doubleMetric1,mult(floatMetric1,'5'))"],"columnDataTypes":["DOUBLE","DOUBLE","DOUBLE"]},"rows":[[15229.0,1.0,0.20076306285631254],[15229.0,7.0,0.20076306285631254],[13540.0,7.0,0.20076306285631254],[60.0,4.0,0.1999999968342762],[29.0,0.0,0.20904977014723267],[0.0,0.0,0.21652891879345226],[-9.223372036854776E18,0.0,"Infinity"]]},"exceptions":[],"numServersQueried":1,"numServersResponded":1,"numSegmentsQueried":1,"numSegmentsProcessed":1,"numSegmentsMatched":1,"numDocsScanned":66,"numEntriesScannedPostFilter":330,"numGroupsLimitReached":false,"totalDocs":66,"timeUsedMs":31,"offlineThreadCpuTimeNs":0,"realtimeThreadCpuTimeNs":0,"segmentStatistics":[],"traceInfo":{},"minConsumingFreshnessTimeMs":1620950080428}
diff --git a/config/checkstyle.xml b/config/checkstyle.xml
index 86e163f50ced..c1feca644f1e 100644
--- a/config/checkstyle.xml
+++ b/config/checkstyle.xml
@@ -26,6 +26,10 @@
+
+
+
+
diff --git a/config/suppressions.xml b/config/suppressions.xml
index 56b06ed6b7ae..10d796b23338 100644
--- a/config/suppressions.xml
+++ b/config/suppressions.xml
@@ -45,4 +45,7 @@
+
+
+
diff --git a/contrib/pinot-druid-benchmark/pom.xml b/contrib/pinot-druid-benchmark/pom.xml
index 050e312a1b2e..0e4589761e0f 100644
--- a/contrib/pinot-druid-benchmark/pom.xml
+++ b/contrib/pinot-druid-benchmark/pom.xml
@@ -33,7 +33,7 @@
org.apache.httpcomponents
httpclient
- 4.5.1
+ 4.5.13
diff --git a/contrib/pinot-fmpp-maven-plugin/pom.xml b/contrib/pinot-fmpp-maven-plugin/pom.xml
deleted file mode 100644
index b7ccad0d8557..000000000000
--- a/contrib/pinot-fmpp-maven-plugin/pom.xml
+++ /dev/null
@@ -1,111 +0,0 @@
-
-
-
- 4.0.0
-
- pinot
- org.apache.pinot
- 0.13.0-SNAPSHOT
- ../..
-
-
- pinot-fmpp-maven-plugin
- Pinot FMPP plugin
- https://pinot.apache.org/
- maven-plugin
-
- ${basedir}/../..
- 3.3.3
- 0.9.16
- 2.3.28
-
-
-
-
- commons-io
- commons-io
-
-
- org.apache.maven
- maven-core
- ${maven.version}
-
-
- org.codehaus.plexus
- plexus-utils
-
-
-
-
- org.apache.maven
- maven-plugin-api
- ${maven.version}
-
-
- net.sourceforge.fmpp
- fmpp
- ${fmpp.version}
-
-
- org.freemarker
- freemarker
- ${freemarker.version}
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-checkstyle-plugin
-
- true
-
-
-
- org.apache.maven.plugins
- maven-plugin-plugin
-
- pinot-fmpp
-
-
-
- default-descriptor
-
- descriptor
-
- process-classes
-
-
- help-descriptor
-
- helpmojo
-
- process-classes
-
-
-
-
-
-
diff --git a/contrib/pinot-fmpp-maven-plugin/src/main/java/org/apache/pinot/fmpp/FMPPMojo.java b/contrib/pinot-fmpp-maven-plugin/src/main/java/org/apache/pinot/fmpp/FMPPMojo.java
deleted file mode 100644
index 787ac7606cd3..000000000000
--- a/contrib/pinot-fmpp-maven-plugin/src/main/java/org/apache/pinot/fmpp/FMPPMojo.java
+++ /dev/null
@@ -1,270 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.pinot.fmpp;
-
-import com.google.common.base.Joiner;
-import com.google.common.base.Stopwatch;
-import fmpp.Engine;
-import fmpp.ProgressListener;
-import fmpp.progresslisteners.TerseConsoleProgressListener;
-import fmpp.setting.Settings;
-import fmpp.util.MiscUtil;
-import java.io.File;
-import java.io.IOException;
-import java.nio.file.Files;
-import java.util.ArrayList;
-import java.util.List;
-import java.util.concurrent.TimeUnit;
-import org.apache.commons.io.FileUtils;
-import org.apache.maven.plugin.AbstractMojo;
-import org.apache.maven.plugin.MojoExecutionException;
-import org.apache.maven.plugin.MojoFailureException;
-import org.apache.maven.project.MavenProject;
-
-import static java.lang.String.format;
-
-
-/**
- * a maven plugin to run the freemarker generation incrementally
- * (if output has not changed, the files are not touched)
- *
- * @goal generate
- * @phase generate-sources
- */
-public class FMPPMojo extends AbstractMojo {
-
- /**
- * Used to add new source directories to the build.
- *
- * @parameter default-value="${project}"
- * @required
- * @readonly
- **/
- private MavenProject project;
-
- /**
- * Where to find the FreeMarker template files.
- *
- * @parameter default-value="src/main/resources/fmpp/templates/"
- * @required
- */
- private File templates;
-
- /**
- * Where to write the generated files of the output files.
- *
- * @parameter default-value="${project.build.directory}/generated-sources/fmpp/"
- * @required
- */
- private File output;
-
- /**
- * Location of the FreeMarker config file.
- *
- * @parameter default-value="src/main/resources/fmpp/config.fmpp"
- * @required
- */
- private File config;
-
- /**
- * compilation scope to be added to ("compile" or "test")
- *
- * @parameter default-value="compile"
- * @required
- */
- private String scope;
-
- /**
- * FMPP data model build parameter.
- *
- * @see FMPP Data Model Building
- * @parameter default-value=""
- */
- private String data;
-
- /**
- * if maven properties are added as data
- *
- * @parameter default-value="true"
- * @required
- */
- private boolean addMavenDataLoader;
-
- @Override
- public void execute()
- throws MojoExecutionException, MojoFailureException {
- if (project == null) {
- throw new MojoExecutionException("This plugin can only be used inside a project.");
- }
- String outputPath = output.getAbsolutePath();
- if ((!output.exists() && !output.mkdirs()) || !output.isDirectory()) {
- throw new MojoFailureException("can not write to output dir: " + outputPath);
- }
- String templatesPath = templates.getAbsolutePath();
- if (!templates.exists() || !templates.isDirectory()) {
- throw new MojoFailureException("templates not found in dir: " + outputPath);
- }
-
- // add the output directory path to the project source directories
- switch (scope) {
- case "compile":
- project.addCompileSourceRoot(outputPath);
- break;
- case "test":
- project.addTestCompileSourceRoot(outputPath);
- break;
- default:
- throw new MojoFailureException("scope must be compile or test");
- }
-
- final Stopwatch sw = Stopwatch.createStarted();
- try {
- getLog().info(
- format("Freemarker generation:\n scope: %s,\n config: %s,\n templates: %s", scope, config.getAbsolutePath(),
- templatesPath));
- final File tmp = Files.createTempDirectory("freemarker-tmp").toFile();
- String tmpPath = tmp.getAbsolutePath();
- final String tmpPathNormalized = tmpPath.endsWith(File.separator) ? tmpPath : tmpPath + File.separator;
- Settings settings = new Settings(new File("."));
- settings.set(Settings.NAME_SOURCE_ROOT, templatesPath);
- settings.set(Settings.NAME_OUTPUT_ROOT, tmp.getAbsolutePath());
- settings.load(config);
- settings.addProgressListener(new TerseConsoleProgressListener());
- settings.addProgressListener(new ProgressListener() {
- @Override
- public void notifyProgressEvent(Engine engine, int event, File src, int pMode, Throwable error, Object param)
- throws Exception {
- if (event == EVENT_END_PROCESSING_SESSION) {
- getLog().info(format("Freemarker generation took %dms", sw.elapsed(TimeUnit.MILLISECONDS)));
- sw.reset();
- Report report = moveIfChanged(tmp, tmpPathNormalized);
- if (!tmp.delete()) {
- throw new MojoFailureException(format("can not delete %s", tmp));
- }
- getLog().info(format("Incremental output update took %dms", sw.elapsed(TimeUnit.MILLISECONDS)));
- getLog().info(format("new: %d", report.newFiles));
- getLog().info(format("changed: %d", report.changedFiles));
- getLog().info(format("unchanged: %d", report.unchangedFiles));
- }
- }
- });
- List dataValues = new ArrayList<>();
- if (addMavenDataLoader) {
- getLog().info("Adding maven data loader");
- settings.setEngineAttribute(MavenDataLoader.MAVEN_DATA_ATTRIBUTE, new MavenDataLoader.MavenData(project));
- dataValues.add(format("maven: %s()", MavenDataLoader.class.getName()));
- }
- if (data != null) {
- dataValues.add(data);
- }
- if (!dataValues.isEmpty()) {
- String dataString = Joiner.on(",").join(dataValues);
- getLog().info("Setting data loader " + dataString);
-
- settings.add(Settings.NAME_DATA, dataString);
- }
- settings.execute();
- } catch (Exception e) {
- throw new MojoFailureException(MiscUtil.causeMessages(e), e);
- }
- }
-
- private static final class Report {
- int changedFiles;
- int unchangedFiles;
- int newFiles;
-
- Report(int changedFiles, int unchangedFiles, int newFiles) {
- super();
- this.changedFiles = changedFiles;
- this.unchangedFiles = unchangedFiles;
- this.newFiles = newFiles;
- }
-
- public Report() {
- this(0, 0, 0);
- }
-
- void add(Report other) {
- changedFiles += other.changedFiles;
- unchangedFiles += other.unchangedFiles;
- newFiles += other.newFiles;
- }
-
- public void addChanged() {
- ++changedFiles;
- }
-
- public void addNew() {
- ++newFiles;
- }
-
- public void addUnchanged() {
- ++unchangedFiles;
- }
- }
-
- private Report moveIfChanged(File root, String tmpPath)
- throws MojoFailureException, IOException {
- Report report = new Report();
- for (File file : root.listFiles()) {
- if (file.isDirectory()) {
- report.add(moveIfChanged(file, tmpPath));
- if (!file.delete()) {
- throw new MojoFailureException(format("can not delete %s", file));
- }
- } else {
- String absPath = file.getAbsolutePath();
- if (!absPath.startsWith(tmpPath)) {
- throw new MojoFailureException(format("%s should start with %s", absPath, tmpPath));
- }
- String relPath = absPath.substring(tmpPath.length());
- File outputFile = new File(output, relPath);
- if (!outputFile.exists()) {
- report.addNew();
- } else if (!FileUtils.contentEquals(file, outputFile)) {
- getLog().info(format("%s has changed", relPath));
- if (!outputFile.delete()) {
- throw new MojoFailureException(format("can not delete %s", outputFile));
- }
- report.addChanged();
- } else {
- report.addUnchanged();
- }
- if (!outputFile.exists()) {
- File parentDir = outputFile.getParentFile();
- if (parentDir.exists() && !parentDir.isDirectory()) {
- throw new MojoFailureException(
- format("can not move %s to %s as %s is not a dir", file, outputFile, parentDir));
- }
- if (!parentDir.exists() && !parentDir.mkdirs()) {
- throw new MojoFailureException(
- format("can not move %s to %s as dir %s can not be created", file, outputFile, parentDir));
- }
- FileUtils.moveFile(file, outputFile);
- } else {
- if (!file.delete()) {
- throw new MojoFailureException(format("can not delete %s", file));
- }
- }
- }
- }
- return report;
- }
-}
diff --git a/contrib/pinot-fmpp-maven-plugin/src/main/java/org/apache/pinot/fmpp/MavenDataLoader.java b/contrib/pinot-fmpp-maven-plugin/src/main/java/org/apache/pinot/fmpp/MavenDataLoader.java
deleted file mode 100644
index df85ad891b18..000000000000
--- a/contrib/pinot-fmpp-maven-plugin/src/main/java/org/apache/pinot/fmpp/MavenDataLoader.java
+++ /dev/null
@@ -1,55 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.pinot.fmpp;
-
-import fmpp.Engine;
-import fmpp.tdd.DataLoader;
-import java.util.List;
-import org.apache.maven.project.MavenProject;
-
-
-/**
- * A data loader for Maven
- */
-public class MavenDataLoader implements DataLoader {
- public static final class MavenData {
- private final MavenProject project;
-
- public MavenData(MavenProject project) {
- this.project = project;
- }
-
- public MavenProject getProject() {
- return project;
- }
- }
-
- public static final String MAVEN_DATA_ATTRIBUTE = "maven.data";
-
- @Override
- public Object load(Engine e, List args)
- throws Exception {
- if (!args.isEmpty()) {
- throw new IllegalArgumentException("maven model data loader has no parameters");
- }
-
- MavenData data = (MavenData) e.getAttribute(MAVEN_DATA_ATTRIBUTE);
- return data;
- }
-}
diff --git a/doap_Pinot.rdf b/doap_Pinot.rdf
new file mode 100644
index 000000000000..f4a57a1f4680
--- /dev/null
+++ b/doap_Pinot.rdf
@@ -0,0 +1,64 @@
+
+
+
+
+
+ 2023-08-07
+
+ Apache Pinot
+
+
+ Apache Pinot is a real-time distributed OLAP datastore purpose-built for low-latency, high-throughput analytics.
+ Apache Pinot is a real-time distributed online analytical processing (OLAP) datastore. Use Pinot to ingest and immediately query data from streaming or batch data sources (including, Apache Kafka, Amazon Kinesis, Hadoop HDFS, Amazon S3, Azure ADLS, and Google Cloud Storage).
+Apache Pinot includes the following:
+Ultra low-latency analytics even at extremely high throughput.
+Columnar data store with several smart indexing and pre-aggregation techniques.
+Scaling up and out with no upper bound.
+Consistent performance based on the size of your cluster and an expected query per second (QPS) threshold.
+It's perfect for user-facing real-time analytics and other analytical use cases, including internal dashboards, anomaly detection, and ad hoc data exploration.
+
+
+
+ Java
+
+
+
+ 1.1.0
+ 2024-03-24
+ 1.1.0
+
+
+
+
+
+
+
+
+
+
+ Apache Pinot Team
+
+
+
+
+
+
diff --git a/docker/images/pinot-base/README.md b/docker/images/pinot-base/README.md
index d7f5e929174c..92430de06c68 100644
--- a/docker/images/pinot-base/README.md
+++ b/docker/images/pinot-base/README.md
@@ -20,40 +20,35 @@
-->
# docker-pinot-base
+
This is the base docker image to build [Apache Pinot](https://github.com/apache/pinot).
-## How to build a docker image
+## Build and publish the docker image
-Arguments:
+Here is
+the [Github Action task](https://github.com/apachepinot/pinot-fork/actions/workflows/build-pinot-docker-base-image.yml)
+to build and publish pinot base docker images.
-`JAVA_VERSION`: The Java Build and Runtime image version. Default is `11`
+This task can be triggered manually to build the cross platform(amd64 and arm64v8) base image.
-`OPENJDK_IMAGE`: Base image to use for Pinot build and runtime, e.g. `arm64v8/openjdk`. Default is `openjdk`.
+The build shell is:
-Usage:
-```SHELL
-docker build -t apachepinot/pinot-base-build:openjdk11 --no-cache --network=host --build-arg JAVA_VERSION=11 -f pinot-base-build/Dockerfile .
-```
+For Amazon Corretto 11:
```SHELL
-docker build -t apachepinot/pinot-base-runtime:openjdk11 --no-cache --network=host --build-arg JAVA_VERSION=11 -f pinot-base-runtime/Dockerfile .
+docker buildx build --no-cache --platform=linux/arm64,linux/amd64 --file pinot-base-build/amazoncorretto.dockerfile --tag apachepinot/pinot-base-build:11-amazoncorretto --push .
```
-Note that if you are not on arm64 machine, you can still build the image by turning on the experimental feature of docker, and add `--platform linux/arm64` into the `docker build ...` script, e.g.
-```SHELL
-docker build -t apachepinot/pinot-base-build:openjdk11-arm64v8 --platform linux/arm64 --no-cache --network=host --build-arg JAVA_VERSION=11 --build-arg OPENJDK_IMAGE=arm64v8/openjdk -f pinot-base-build/Dockerfile .
-```
```SHELL
-docker build -t apachepinot/pinot-base-runtime:openjdk11-arm64v8 --platform linux/arm64 --no-cache --network=host --build-arg JAVA_VERSION=11 --build-arg OPENJDK_IMAGE=arm64v8/openjdk -f pinot-base-runtime/Dockerfile .
+docker buildx build --no-cache --platform=linux/arm64,linux/amd64 --file pinot-base-runtime/amazoncorretto.dockerfile --tag apachepinot/pinot-base-runtime:11-amazoncorretto --push .
```
-## Publish the docker image
+For MS OpenJDK, the build shell is:
-Here is the [Github Action task](https://github.com/apachepinot/pinot-fork/actions/workflows/build-pinot-docker-base-image.yml) to build and publish pinot base docker images.
-
-This task can be triggered manually to build the cross platform(amd64 and arm64v8) base image.
+```SHELL
+docker buildx build --no-cache --platform=linux/arm64,linux/amd64 --file pinot-base-build/amazoncorretto.dockerfile --tag apachepinot/pinot-base-build:11-ms-openjdk --push .
+```
-The build shell is:
```SHELL
-docker buildx build --no-cache --platform=linux/arm64,linux/amd64 --file Dockerfile --tag apachepinot/pinot-base-build:openjdk11 --push .
-```
\ No newline at end of file
+docker buildx build --no-cache --platform=linux/arm64,linux/amd64 --file pinot-base-runtime/amazoncorretto.dockerfile --tag apachepinot/pinot-base-runtime:11-ms-openjdk --push .
+```
diff --git a/docker/images/pinot-base/pinot-base-build/Dockerfile b/docker/images/pinot-base/pinot-base-build/Dockerfile
deleted file mode 100644
index 5b93684c5637..000000000000
--- a/docker/images/pinot-base/pinot-base-build/Dockerfile
+++ /dev/null
@@ -1,48 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-ARG JAVA_VERSION=11
-ARG OPENJDK_IMAGE=openjdk
-FROM ${OPENJDK_IMAGE}:${JAVA_VERSION} AS pinot_build_env
-
-LABEL MAINTAINER=dev@pinot.apache.org
-
-# extra dependency for running launcher
-RUN apt-get update && \
- apt-get install -y --no-install-recommends vim wget curl git automake bison flex g++ libboost-all-dev libevent-dev \
- libssl-dev libtool make pkg-config && \
- rm -rf /var/lib/apt/lists/*
-
-# install maven
-RUN mkdir -p /usr/share/maven /usr/share/maven/ref \
- && wget https://downloads.apache.org/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz -P /tmp \
- && tar -xzf /tmp/apache-maven-*.tar.gz -C /usr/share/maven --strip-components=1 \
- && rm -f /tmp/apache-maven-*.tar.gz \
- && ln -s /usr/share/maven/bin/mvn /usr/bin/mvn
-ENV MAVEN_HOME /usr/share/maven
-ENV MAVEN_CONFIG /opt/.m2
-
-# install thrift
-RUN wget http://archive.apache.org/dist/thrift/0.12.0/thrift-0.12.0.tar.gz -O /tmp/thrift-0.12.0.tar.gz && \
- tar xfz /tmp/thrift-0.12.0.tar.gz --directory /tmp && \
- base_dir=`pwd` && \
- cd /tmp/thrift-0.12.0 && \
- ./configure --with-cpp=no --with-c_glib=no --with-java=yes --with-python=no --with-ruby=no --with-erlang=no --with-go=no --with-nodejs=no --with-php=no && \
- make install
-
-CMD ["-help"]
diff --git a/docker/images/pinot-base/pinot-base-build/amazoncorretto.dockerfile b/docker/images/pinot-base/pinot-base-build/amazoncorretto.dockerfile
new file mode 100644
index 000000000000..79126ed713ce
--- /dev/null
+++ b/docker/images/pinot-base/pinot-base-build/amazoncorretto.dockerfile
@@ -0,0 +1,64 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+FROM debian:buster-slim
+
+ARG version=11.0.18.10-1
+# In addition to installing the Amazon corretto, we also install
+# fontconfig. The folks who manage the docker hub's
+# official image library have found that font management
+# is a common usecase, and painpoint, and have
+# recommended that Java images include font support.
+#
+# See:
+# https://github.com/docker-library/official-images/blob/master/test/tests/java-uimanager-font/container.java
+
+LABEL MAINTAINER=dev@pinot.apache.org
+
+RUN set -eux \
+ && apt-get update \
+ && apt-get install -y --no-install-recommends \
+ curl ca-certificates gnupg software-properties-common fontconfig java-common vim wget git automake bison flex g++ libboost-all-dev libevent-dev libssl-dev libtool make pkg-config\
+ && curl -fL https://apt.corretto.aws/corretto.key | apt-key add - \
+ && add-apt-repository 'deb https://apt.corretto.aws stable main' \
+ && mkdir -p /usr/share/man/man1 || true \
+ && apt-get update \
+ && apt-get install -y java-11-amazon-corretto-jdk=1:$version \
+ && rm -rf /var/lib/apt/lists/*
+
+ENV LANG C.UTF-8
+ENV JAVA_HOME=/usr/lib/jvm/java-11-amazon-corretto
+
+# install maven
+RUN mkdir -p /usr/share/maven /usr/share/maven/ref \
+ && wget https://dlcdn.apache.org/maven/maven-3/3.9.7/binaries/apache-maven-3.9.7-bin.tar.gz -P /tmp \
+ && tar -xzf /tmp/apache-maven-*.tar.gz -C /usr/share/maven --strip-components=1 \
+ && rm -f /tmp/apache-maven-*.tar.gz \
+ && ln -s /usr/share/maven/bin/mvn /usr/bin/mvn
+ENV MAVEN_HOME /usr/share/maven
+ENV MAVEN_CONFIG /opt/.m2
+
+# install thrift
+RUN wget https://archive.apache.org/dist/thrift/0.12.0/thrift-0.12.0.tar.gz -O /tmp/thrift-0.12.0.tar.gz && \
+ tar xfz /tmp/thrift-0.12.0.tar.gz --directory /tmp && \
+ base_dir=`pwd` && \
+ cd /tmp/thrift-0.12.0 && \
+ ./configure --with-cpp=no --with-c_glib=no --with-java=yes --with-python=no --with-ruby=no --with-erlang=no --with-go=no --with-nodejs=no --with-php=no && \
+ make install
+
+CMD ["bash"]
diff --git a/docker/images/pinot-base/pinot-base-build/ms-openjdk.dockerfile b/docker/images/pinot-base/pinot-base-build/ms-openjdk.dockerfile
new file mode 100644
index 000000000000..8255d84a1608
--- /dev/null
+++ b/docker/images/pinot-base/pinot-base-build/ms-openjdk.dockerfile
@@ -0,0 +1,48 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+ARG JAVA_VERSION=11
+ARG JDK_IMAGE=mcr.microsoft.com/openjdk/jdk
+FROM ${JDK_IMAGE}:${JAVA_VERSION}-ubuntu AS pinot_build_env
+
+LABEL MAINTAINER=dev@pinot.apache.org
+
+# extra dependency for running launcher
+RUN apt-get update && \
+ apt-get install -y --no-install-recommends vim wget curl git automake bison flex g++ libboost-all-dev libevent-dev \
+ libssl-dev libtool make pkg-config && \
+ rm -rf /var/lib/apt/lists/*
+
+# install maven
+RUN mkdir -p /usr/share/maven /usr/share/maven/ref \
+ && wget https://dlcdn.apache.org/maven/maven-3/3.9.7/binaries/apache-maven-3.9.7-bin.tar.gz -P /tmp \
+ && tar -xzf /tmp/apache-maven-*.tar.gz -C /usr/share/maven --strip-components=1 \
+ && rm -f /tmp/apache-maven-*.tar.gz \
+ && ln -s /usr/share/maven/bin/mvn /usr/bin/mvn
+ENV MAVEN_HOME /usr/share/maven
+ENV MAVEN_CONFIG /opt/.m2
+
+# install thrift
+RUN wget https://archive.apache.org/dist/thrift/0.12.0/thrift-0.12.0.tar.gz -O /tmp/thrift-0.12.0.tar.gz && \
+ tar xfz /tmp/thrift-0.12.0.tar.gz --directory /tmp && \
+ base_dir=`pwd` && \
+ cd /tmp/thrift-0.12.0 && \
+ ./configure --with-cpp=no --with-c_glib=no --with-java=yes --with-python=no --with-ruby=no --with-erlang=no --with-go=no --with-nodejs=no --with-php=no && \
+ make install
+
+CMD ["bash"]
diff --git a/docker/images/pinot-base/pinot-base-build/openjdk.dockerfile b/docker/images/pinot-base/pinot-base-build/openjdk.dockerfile
new file mode 100644
index 000000000000..3e0eb30adc3a
--- /dev/null
+++ b/docker/images/pinot-base/pinot-base-build/openjdk.dockerfile
@@ -0,0 +1,52 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+ARG JAVA_VERSION=21
+ARG JDK_IMAGE=openjdk
+# At 2023-06-14, slim is the only openjdk flavour without medium, high or critical vulns
+FROM ${JDK_IMAGE}:${JAVA_VERSION}-jdk-slim
+
+LABEL MAINTAINER=dev@pinot.apache.org
+
+ENV MAVEN_HOME /usr/share/maven
+ENV MAVEN_CONFIG /root/.m2
+
+# extra dependency for running launcher
+RUN apt-get update && \
+ apt-get install -y --no-install-recommends vim wget curl git automake bison flex g++ libboost-all-dev libevent-dev \
+ libssl-dev libtool make pkg-config && \
+ rm -rf /var/lib/apt/lists/*
+
+# install maven
+RUN mkdir -p /usr/share/maven /usr/share/maven/ref \
+ && wget https://dlcdn.apache.org/maven/maven-3/3.9.7/binaries/apache-maven-3.9.7-bin.tar.gz -P /tmp \
+ && tar -xzf /tmp/apache-maven-*.tar.gz -C /usr/share/maven --strip-components=1 \
+ && rm -f /tmp/apache-maven-*.tar.gz \
+ && ln -s /usr/share/maven/bin/mvn /usr/bin/mvn \
+ && mvn help:evaluate -Dexpression=settings.localRepository
+
+
+# install thrift
+RUN wget https://archive.apache.org/dist/thrift/0.12.0/thrift-0.12.0.tar.gz -O /tmp/thrift-0.12.0.tar.gz && \
+ tar xfz /tmp/thrift-0.12.0.tar.gz --directory /tmp && \
+ base_dir=`pwd` && \
+ cd /tmp/thrift-0.12.0 && \
+ ./configure --with-cpp=no --with-c_glib=no --with-java=yes --with-python=no --with-ruby=no --with-erlang=no --with-go=no --with-nodejs=no --with-php=no && \
+ make install
+
+CMD ["bash"]
diff --git a/docker/images/pinot-base/pinot-base-runtime/Dockerfile b/docker/images/pinot-base/pinot-base-runtime/Dockerfile
deleted file mode 100644
index 7a8ade3016a4..000000000000
--- a/docker/images/pinot-base/pinot-base-runtime/Dockerfile
+++ /dev/null
@@ -1,39 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-ARG JAVA_VERSION=11
-ARG OPENJDK_IMAGE=openjdk
-
-FROM ${OPENJDK_IMAGE}:${JAVA_VERSION}-jdk-slim
-
-LABEL MAINTAINER=dev@pinot.apache.org
-
-RUN apt-get update && \
- apt-get install -y --no-install-recommends vim less wget curl git python sysstat procps linux-perf openjdk-11-dbg && \
- rm -rf /var/lib/apt/lists/*
-
-RUN case `uname -m` in \
- x86_64) arch=x64; ;; \
- aarch64) arch=arm64; ;; \
- *) echo "platform=$(uname -m) un-supported, exit ..."; exit 1; ;; \
- esac \
- && mkdir -p /usr/local/lib/async-profiler \
- && curl -L https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.5.1/async-profiler-2.5.1-linux-${arch}.tar.gz | tar -xz --strip-components 1 -C /usr/local/lib/async-profiler \
- && ln -s /usr/local/lib/async-profiler/profiler.sh /usr/local/bin/async-profiler
-
-CMD ["bash"]
diff --git a/docker/images/pinot-base/pinot-base-runtime/amazoncorretto.dockerfile b/docker/images/pinot-base/pinot-base-runtime/amazoncorretto.dockerfile
new file mode 100644
index 000000000000..9568ea0bb98e
--- /dev/null
+++ b/docker/images/pinot-base/pinot-base-runtime/amazoncorretto.dockerfile
@@ -0,0 +1,40 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+ARG JAVA_VERSION=11
+ARG JDK_IMAGE=amazoncorretto
+
+FROM ${JDK_IMAGE}:${JAVA_VERSION}-al2-jdk
+
+LABEL MAINTAINER=dev@pinot.apache.org
+
+RUN yum update -y && \
+ yum groupinstall 'Development Tools' -y && \
+ yum install -y procps vim less wget curl git python sysstat perf libtasn1 zstd && \
+ yum clean all
+
+RUN case `uname -m` in \
+ x86_64) arch=x64; ;; \
+ aarch64) arch=arm64; ;; \
+ *) echo "platform=$(uname -m) un-supported, exit ..."; exit 1; ;; \
+ esac \
+ && mkdir -p /usr/local/lib/async-profiler \
+ && curl -L https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.9/async-profiler-2.9-linux-${arch}.tar.gz | tar -xz --strip-components 1 -C /usr/local/lib/async-profiler \
+ && ln -s /usr/local/lib/async-profiler/profiler.sh /usr/local/bin/async-profiler
+
+CMD ["bash"]
diff --git a/docker/images/pinot-base/pinot-base-runtime/ms-openjdk.dockerfile b/docker/images/pinot-base/pinot-base-runtime/ms-openjdk.dockerfile
new file mode 100644
index 000000000000..913f08bff8fe
--- /dev/null
+++ b/docker/images/pinot-base/pinot-base-runtime/ms-openjdk.dockerfile
@@ -0,0 +1,40 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+ARG JAVA_VERSION=11
+ARG JDK_IMAGE=mcr.microsoft.com/openjdk/jdk
+
+FROM ${JDK_IMAGE}:${JAVA_VERSION}-ubuntu
+
+LABEL MAINTAINER=dev@pinot.apache.org
+
+RUN apt-get update && \
+ apt-get install -y --no-install-recommends vim less wget curl git python sysstat procps linux-tools-generic libtasn1-6 zstd && \
+ rm -rf /var/lib/apt/lists/*
+
+RUN case `uname -m` in \
+ x86_64) arch=x64; ;; \
+ aarch64) arch=arm64; ;; \
+ *) echo "platform=$(uname -m) un-supported, exit ..."; exit 1; ;; \
+ esac \
+ && mkdir -p /usr/local/lib/async-profiler \
+ && curl -L https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.9/async-profiler-2.9-linux-${arch}.tar.gz | tar -xz --strip-components 1 -C /usr/local/lib/async-profiler \
+ && ln -s /usr/local/lib/async-profiler/profiler.sh /usr/local/bin/async-profiler
+
+CMD ["bash"]
diff --git a/docker/images/pinot-base/pinot-base-runtime/openjdk.dockerfile b/docker/images/pinot-base/pinot-base-runtime/openjdk.dockerfile
new file mode 100644
index 000000000000..d2c5791c5700
--- /dev/null
+++ b/docker/images/pinot-base/pinot-base-runtime/openjdk.dockerfile
@@ -0,0 +1,39 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+ARG JAVA_VERSION=21
+ARG JDK_IMAGE=openjdk
+
+FROM ${JDK_IMAGE}:${JAVA_VERSION}-jdk-slim
+
+LABEL MAINTAINER=dev@pinot.apache.org
+
+RUN apt-get update && \
+ apt-get install -y --no-install-recommends vim less wget curl git python-is-python3 sysstat procps linux-perf libtasn1-6 zstd && \
+ rm -rf /var/lib/apt/lists/*
+
+RUN case `uname -m` in \
+ x86_64) arch=x64; ;; \
+ aarch64) arch=arm64; ;; \
+ *) echo "platform=$(uname -m) un-supported, exit ..."; exit 1; ;; \
+ esac \
+ && mkdir -p /usr/local/lib/async-profiler \
+ && curl -L https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.9/async-profiler-2.9-linux-${arch}.tar.gz | tar -xz --strip-components 1 -C /usr/local/lib/async-profiler \
+ && ln -s /usr/local/lib/async-profiler/profiler.sh /usr/local/bin/async-profiler
+
+CMD ["bash"]
diff --git a/docker/images/pinot-presto/Dockerfile b/docker/images/pinot-presto/Dockerfile
index dc42bf2f817f..16ec15385db8 100644
--- a/docker/images/pinot-presto/Dockerfile
+++ b/docker/images/pinot-presto/Dockerfile
@@ -43,7 +43,7 @@ USER presto
RUN git clone ${PRESTO_GIT_URL} ${PRESTO_BUILD_DIR} && \
cd ${PRESTO_BUILD_DIR} && \
git checkout ${PRESTO_BRANCH} && \
- echo "distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip" > .mvn/wrapper/maven-wrapper.properties && \
+ echo "distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.9.7/apache-maven-3.9.7-bin.zip" > .mvn/wrapper/maven-wrapper.properties && \
./mvnw clean install -DskipTests && \
mkdir -p ${PRESTO_HOME}/data && \
cp -r presto-server/target/presto-server-*/presto-server-*/* ${PRESTO_HOME} && \
diff --git a/docker/images/pinot-superset/requirements-db.txt b/docker/images/pinot-superset/requirements-db.txt
index bb250db8c99e..322ab46c63af 100644
--- a/docker/images/pinot-superset/requirements-db.txt
+++ b/docker/images/pinot-superset/requirements-db.txt
@@ -17,4 +17,4 @@
# under the License.
#
pinotdb>=0.4.5
-redis==3.4.1
+redis>=4.6.0,<5.0
diff --git a/docker/images/pinot-thirdeye/Dockerfile b/docker/images/pinot-thirdeye/Dockerfile
deleted file mode 100644
index db15f03d6dec..000000000000
--- a/docker/images/pinot-thirdeye/Dockerfile
+++ /dev/null
@@ -1,78 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-
-FROM openjdk:8 AS thirdeye_build_env
-
-LABEL MAINTAINER=dev@pinot.apache.org
-
-ARG PINOT_BRANCH=master
-ARG PINOT_GIT_URL="https://github.com/apache/pinot.git"
-RUN echo "Trying to build Thirdeye from [ ${PINOT_GIT_URL} ] on branch [ ${PINOT_BRANCH} ]"
-
-ENV TE_HOME=/opt/thirdeye
-ENV TE_BUILD_DIR=/opt/thirdeye-build
-
-# extra dependency for running launcher
-RUN apt-get update \
- && curl -sL https://deb.nodesource.com/setup_10.x | bash - \
- && apt-get install -y --no-install-recommends vim wget curl git automake bison flex g++ libboost-all-dev libevent-dev libssl-dev libtool make pkg-config nodejs \
- && echo '{ "allow_root": true }' > /root/.bowerrc \
- && rm -rf /var/lib/apt/lists/*
-
-# install maven
-RUN mkdir -p /usr/share/maven /usr/share/maven/ref \
- && wget https://www.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz -P /tmp \
- && tar -xzf /tmp/apache-maven-*.tar.gz -C /usr/share/maven --strip-components=1 \
- && rm -f /tmp/apache-maven-*.tar.gz \
- && ln -s /usr/share/maven/bin/mvn /usr/bin/mvn
-
-ENV MAVEN_HOME /usr/share/maven
-ENV MAVEN_CONFIG /opt/.m2
-
-RUN npm install -g phantomjs --unsafe-perm --ignore-scripts
-
-RUN git clone ${PINOT_GIT_URL} ${TE_BUILD_DIR} \
- && cd ${TE_BUILD_DIR}/thirdeye \
- && git checkout ${PINOT_BRANCH} \
- && cd thirdeye-frontend \
- && mvn clean install -X -DskipTests || exit 1 \
- && cd .. \
- && mvn clean install -X -DskipTests || exit 1 \
- && mkdir -p ${TE_HOME}/config/default \
- && mkdir -p ${TE_HOME}/bin \
- && cp -rp ${TE_BUILD_DIR}/thirdeye/thirdeye-pinot/config/* ${TE_HOME}/config/default/. \
- && rm ${TE_BUILD_DIR}/thirdeye/thirdeye-pinot/target/thirdeye-pinot-*-sources.jar \
- && cp ${TE_BUILD_DIR}/thirdeye/thirdeye-pinot/target/thirdeye-pinot-*.jar ${TE_HOME}/bin/thirdeye-pinot.jar \
- && rm -rf ${TE_BUILD_DIR}
-
-FROM openjdk:8-jdk-slim
-
-LABEL MAINTAINER=dev@pinot.apache.org
-
-ENV TE_HOME=/opt/thirdeye
-
-COPY --from=thirdeye_build_env ${TE_HOME} ${TE_HOME}
-COPY bin ${TE_HOME}/bin
-COPY config ${TE_HOME}/config
-
-VOLUME ["${TE_HOME}/config"]
-EXPOSE 1426 1427
-WORKDIR ${TE_HOME}
-
-ENTRYPOINT ["./bin/start-thirdeye.sh"]
diff --git a/docker/images/pinot-thirdeye/README.md b/docker/images/pinot-thirdeye/README.md
deleted file mode 100644
index de2b67a4c68d..000000000000
--- a/docker/images/pinot-thirdeye/README.md
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-# docker-pinot-thirdeye
-This is a docker image of [Apache Thirdeye](https://github.com/apache/pinot/tree/master/thirdeye).
-
-## How to build a docker image
-
-There is a docker build script which will build a given Git repo/branch and tag the image.
-
-Usage:
-
-```SHELL
-./docker-build.sh [Docker Tag] [Git Branch] [Pinot Git URL]
-```
-
-This script will check out Pinot Repo `[Pinot Git URL]` on branch `[Git Branch]` and build the docker image for that.
-
-The docker image is tagged as `[Docker Tag]`.
-
-`Docker Tag`: Name and tag your docker image. Default is `thirdeye:latest`.
-
-`Git Branch`: The Pinot branch to build. Default is `master`.
-
-`Pinot Git URL`: The Pinot Git Repo to build, users can set it to their own fork. Please note that, the URL is `https://` based, not `git://`. Default is the Apache Repo: `https://github.com/apache/pinot.git`.
-
-* Example of building and tagging a snapshot on your own fork:
-```SHELL
-./docker-build.sh thirdeye:latest master https://github.com/apache/pinot.git
-```
-
-## How to publish a docker image
-
-Script `docker-push.sh` publishes a given docker image to your docker registry.
-
-In order to push to your own repo, the image needs to be explicitly tagged with the repo name.
-
-* Example of publishing a image to [apachepinot/thirdeye](https://cloud.docker.com/u/apachepinot/repository/docker/apachepinot/thirdeye) dockerHub repo.
-
-```SHELL
-docker tag thirdeye:latest apachepinot/thirdeye:latest
-./docker-push.sh apachepinot/thirdeye:latest
-```
-
-Script `docker-build-and-push.sh` builds and publishes this docker image to your docker registry after build.
-
-* Example of building and publishing a image to [apachepinot/thirdeye](https://cloud.docker.com/u/apachepinot/repository/docker/apachepinot/thirdeye) dockerHub repo.
-
-```SHELL
-./docker-build-and-push.sh apachepinot/thirdeye:latest master https://github.com/apache/pinot.git
-```
-
-## How to Run it
-
-The entry point of docker image is `start-thirdeye.sh` script.
-
-* Create an isolated bridge network in docker.
-
-```SHELL
-docker network create -d bridge pinot-demo
-```
-
-* Start Pinot Batch Quickstart
-
-```SHELL
-docker run \
- --network=pinot-demo \
- --name pinot-quickstart \
- -p 9000:9000 \
- -d apachepinot/pinot:latest QuickStart \
- -type batch
-```
-
-* Start ThirdEye companion
-
-```SHELL
-docker run \
- --network=pinot-demo \
- --name thirdeye-backend \
- -p 1426:1426 \
- -p 1427:1427 \
- -d apachepinot/thirdeye:latest pinot-quickstart
-```
-
diff --git a/docker/images/pinot-thirdeye/bin/start-thirdeye.sh b/docker/images/pinot-thirdeye/bin/start-thirdeye.sh
deleted file mode 100755
index 2fbfc72877b4..000000000000
--- a/docker/images/pinot-thirdeye/bin/start-thirdeye.sh
+++ /dev/null
@@ -1,88 +0,0 @@
-#!/bin/bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-
-# Script Usage
-# ---------------------------------------------
-# ./start-thirdeye.sh ${CONFIG_DIR} ${MODE}
-#
-# - CONFIG_DIR: path to the thirdeye configuration director
-# - MODE: Choices: {frontend, backend, * }
-# frontend: Start the frontend server only
-# backend: Start the backend server only
-# database: Start the H@ db service. Also initializes the db with the required tables
-# For any other value, defaults to starting all services with an h2 db.
-#
-
-if [[ "$#" -gt 0 ]]
-then
- CONFIG_DIR="./config/$1"
-else
- CONFIG_DIR="./config/default"
-fi
-
-
-function start_server {
- class_ref=$1
- config_dir=$2
- java -Dlog4j.configurationFile=log4j2.xml -cp "./bin/thirdeye-pinot.jar" ${class_ref} "${config_dir}"
-}
-
-function start_frontend {
- echo "Running Thirdeye frontend config: ${CONFIG_DIR}"
- start_server org.apache.pinot.thirdeye.dashboard.ThirdEyeDashboardApplication "${CONFIG_DIR}"
-}
-
-function start_backend {
- echo "Running Thirdeye backend config: ${CONFIG_DIR}"
- start_server org.apache.pinot.thirdeye.anomaly.ThirdEyeAnomalyApplication "${CONFIG_DIR}"
-}
-
-
-function start_db {
- echo "Starting H2 database server"
- java -cp "./bin/thirdeye-pinot.jar" org.h2.tools.Server -tcp -baseDir "${CONFIG_DIR}/.." &
- sleep 1
-
- echo "Creating ThirdEye database schema"
- java -cp "./bin/thirdeye-pinot.jar" org.h2.tools.RunScript -user "sa" -password "sa" -url "jdbc:h2:tcp:localhost/h2db" -script "zip:./bin/thirdeye-pinot.jar!/schema/create-schema.sql"
-
- if [ -f "${CONFIG_DIR}/bootstrap.sql" ]; then
- echo "Running database bootstrap script ${CONFIG_DIR}/bootstrap.sql"
- java -cp "./bin/thirdeye-pinot.jar" org.h2.tools.RunScript -user "sa" -password "sa" -url "jdbc:h2:tcp:localhost/h2db" -script "${CONFIG_DIR}/bootstrap.sql"
- fi
-}
-
-function start_all {
- start_db
-
- start_backend &
- sleep 10
-
- start_frontend &
- wait
-}
-
-MODE=$2
-case ${MODE} in
- "frontend" ) start_frontend ;;
- "backend" ) start_backend ;;
- "database" ) start_db;;
- * ) start_all ;;
-esac
diff --git a/docker/images/pinot-thirdeye/config/ephemeral/dashboard.yml b/docker/images/pinot-thirdeye/config/ephemeral/dashboard.yml
deleted file mode 100644
index c5298b19ce5a..000000000000
--- a/docker/images/pinot-thirdeye/config/ephemeral/dashboard.yml
+++ /dev/null
@@ -1,40 +0,0 @@
-logging:
- type: external
-authConfig:
- authEnabled: false
- authKey: ""
- ldapUrl: ""
- domainSuffix: []
- cacheTTL: 3600
- cookieTTL: 604800
-resourceConfig: []
-rootCause:
- definitionsPath: rca.yml
- parallelism: 5
- formatters:
- - org.apache.pinot.thirdeye.dashboard.resources.v2.rootcause.AnomalyEventFormatter
- - org.apache.pinot.thirdeye.dashboard.resources.v2.rootcause.ThirdEyeEventFormatter
- - org.apache.pinot.thirdeye.dashboard.resources.v2.rootcause.MetricEntityFormatter
- - org.apache.pinot.thirdeye.dashboard.resources.v2.rootcause.DimensionEntityFormatter
- - org.apache.pinot.thirdeye.dashboard.resources.v2.rootcause.ServiceEntityFormatter
- - org.apache.pinot.thirdeye.dashboard.resources.v2.rootcause.DefaultEventEntityFormatter
-dashboardHost: "http://thirdeye-dashboard:1426"
-failureFromAddress: thirdeye@localhost
-failureToAddress: user@localhost
-alerterConfiguration:
- smtpConfiguration:
- smtpHost: localhost
- smtpPort: 25
-server:
- requestLog:
- type: external
- type: default
- applicationConnectors:
- - type: http
- port: 1426
- adminConnectors:
- - type: http
- port: 1427
-whitelistDatasets: []
-swagger:
- resourcePackage: "org.apache.pinot.thirdeye.dashboard.resources,org.apache.pinot.thirdeye.dashboard.resources.v2,org.apache.pinot.thirdeye.anomaly.onboard,org.apache.pinot.thirdeye.detection,org.apache.pinot.thirdeye.detection.yaml"
diff --git a/docker/images/pinot-thirdeye/config/ephemeral/data-sources/cache-config.yml b/docker/images/pinot-thirdeye/config/ephemeral/data-sources/cache-config.yml
deleted file mode 100644
index 5672706ba36f..000000000000
--- a/docker/images/pinot-thirdeye/config/ephemeral/data-sources/cache-config.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-useInMemoryCache: true
-useCentralizedCache: false
-
-centralizedCacheSettings:
- # TTL (time-to-live) for documents in seconds
- ttl: 3600
- # if inserting data points individually, max number of threads to spawn to parallel insert at a time
- maxParallelInserts: 10
- # which store to use
- cacheDataStoreName: 'couchbase'
- cacheDataSources:
- couchbase:
- className: org.apache.pinot.thirdeye.detection.cache.CouchbaseCacheDAO
- config:
- useCertificateBasedAuthentication: false
- # at least 1 host needed
- hosts:
- - 'host1' # ex. http://localhost:8091
- - 'host2' # ex. http://localhost:8092
- - 'host3' # ex. http://localhost:8093
- - 'host4' # and so on...
- bucketName: 'your_bucket_name'
- # if using certificate-based authentication, authUsername and authPassword values don't matter and won't be used
- authUsername: 'your_bucket_user_username'
- authPassword: 'your_bucket_user_password'
- enableDnsSrv: false
- # certificate based authentication is only available in Couchbase enterprise edition.
- keyStoreFilePath: 'key/store/path/keystore_file' # e.g. '/var/identity.p12'
- # if your keystore has a password, enter it here. by default, Java uses 'work_around_jdk-6879539' to enable empty passwords for certificates.
- keyStorePassword: 'work_around_jdk-6879539'
- trustStoreFilePath: 'trust/store/path/truststore_file' # e.g. '/etc/riddler/cacerts'
- trustStorePassword: ''
- # add your store of choice here
-
diff --git a/docker/images/pinot-thirdeye/config/ephemeral/data-sources/data-sources-config-backend.yml b/docker/images/pinot-thirdeye/config/ephemeral/data-sources/data-sources-config-backend.yml
deleted file mode 100644
index 97ee45121a76..000000000000
--- a/docker/images/pinot-thirdeye/config/ephemeral/data-sources/data-sources-config-backend.yml
+++ /dev/null
@@ -1,189 +0,0 @@
-
-# Please put the mock data source as the first in this configuration.
-dataSourceConfigs:
- - className: org.apache.pinot.thirdeye.datasource.mock.MockThirdEyeDataSource
- properties:
- populateMetaData: false
- lookback: 90
- datasets:
- tracking:
- granularity: "1hour"
- timezone: "America/Los_Angeles"
- dimensions: [country, browser, platform]
- metrics:
- pageViews:
- us:
- chrome:
- desktop:
- mean: 100
- std: 20
- mobile:
- mean: 200
- std: 50
- safari:
- desktop:
- mean: 70
- std: 15
- mobile:
- mean: 250
- std: 40
- firefox:
- desktop:
- mean: 30
- std: 5
- mobile:
- mean: 20
- std: 3
- edge:
- desktop:
- mean: 85
- std: 18
- ca:
- chrome:
- desktop:
- mean: 30
- std: 5
- mobile:
- mean: 70
- std: 8
- safari:
- desktop:
- mean: 20
- std: 3
- mobile:
- mean: 60
- std: 8
- firefox:
- desktop:
- mean: 12
- std: 2
- mobile:
- mean: 7
- std: 1
- edge:
- desktop:
- mean: 32
- std: 10
- mx:
- chrome:
- desktop:
- mean: 40
- std: 6
- mobile:
- mean: 80
- std: 10
- safari:
- desktop:
- mean: 20
- std: 3
- mobile:
- mean: 65
- std: 10
- firefox:
- desktop:
- mean: 15
- std: 3
- mobile:
- mean: 12
- std: 2
- edge:
- desktop:
- mean: 32
- std: 9
-
- adImpressions:
- us:
- chrome:
- desktop:
- mean: 50
- std: 10
- mobile:
- mean: 100
- std: 25
- safari:
- desktop:
- mean: 35
- std: 7
- mobile:
- mean: 125
- std: 20
- firefox:
- desktop:
- mean: 15
- std: 2
- mobile:
- mean: 10
- std: 1
- edge:
- desktop:
- mean: 42
- std: 9
-
- business:
- granularity: "1day"
- timezone: "America/Los_Angeles"
- dimensions: [country, browser]
- metrics:
- purchases:
- us:
- chrome:
- mean: 16
- std: 2
- safari:
- mean: 19
- std: 3
- edge:
- mean: 4
- std: 1
- ca:
- chrome:
- mean: 5
- std: 1
- safari:
- mean: 5
- std: 2
- edge:
- mean: 1
- std: 1
- mx:
- chrome:
- mean: 3
- std: 1
- safari:
- mean: 5
- std: 2
- edge:
- mean: 2
- std: 1
-
- revenue:
- us:
- chrome:
- mean: 160
- std: 20
- safari:
- mean: 190
- std: 30
- edge:
- mean: 40
- std: 10
- ca:
- chrome:
- mean: 50
- std: 10
- safari:
- mean: 50
- std: 15
- edge:
- mean: 10
- std: 2
- mx:
- chrome:
- mean: 30
- std: 6
- safari:
- mean: 50
- std: 15
- edge:
- mean: 20
- std: 3
diff --git a/docker/images/pinot-thirdeye/config/ephemeral/data-sources/data-sources-config-frontend.yml b/docker/images/pinot-thirdeye/config/ephemeral/data-sources/data-sources-config-frontend.yml
deleted file mode 100644
index b2b083d149da..000000000000
--- a/docker/images/pinot-thirdeye/config/ephemeral/data-sources/data-sources-config-frontend.yml
+++ /dev/null
@@ -1,189 +0,0 @@
-
-# Please put the mock data source as the first in this configuration.
-dataSourceConfigs:
- - className: org.apache.pinot.thirdeye.datasource.mock.MockThirdEyeDataSource
- properties:
- populateMetaData: true
- lookback: 90
- datasets:
- tracking:
- granularity: "1hour"
- timezone: "America/Los_Angeles"
- dimensions: [country, browser, platform]
- metrics:
- pageViews:
- us:
- chrome:
- desktop:
- mean: 100
- std: 20
- mobile:
- mean: 200
- std: 50
- safari:
- desktop:
- mean: 70
- std: 15
- mobile:
- mean: 250
- std: 40
- firefox:
- desktop:
- mean: 30
- std: 5
- mobile:
- mean: 20
- std: 3
- edge:
- desktop:
- mean: 85
- std: 18
- ca:
- chrome:
- desktop:
- mean: 30
- std: 5
- mobile:
- mean: 70
- std: 8
- safari:
- desktop:
- mean: 20
- std: 3
- mobile:
- mean: 60
- std: 8
- firefox:
- desktop:
- mean: 12
- std: 2
- mobile:
- mean: 7
- std: 1
- edge:
- desktop:
- mean: 32
- std: 10
- mx:
- chrome:
- desktop:
- mean: 40
- std: 6
- mobile:
- mean: 80
- std: 10
- safari:
- desktop:
- mean: 20
- std: 3
- mobile:
- mean: 65
- std: 10
- firefox:
- desktop:
- mean: 15
- std: 3
- mobile:
- mean: 12
- std: 2
- edge:
- desktop:
- mean: 32
- std: 9
-
- adImpressions:
- us:
- chrome:
- desktop:
- mean: 50
- std: 10
- mobile:
- mean: 100
- std: 25
- safari:
- desktop:
- mean: 35
- std: 7
- mobile:
- mean: 125
- std: 20
- firefox:
- desktop:
- mean: 15
- std: 2
- mobile:
- mean: 10
- std: 1
- edge:
- desktop:
- mean: 42
- std: 9
-
- business:
- granularity: "1day"
- timezone: "America/Los_Angeles"
- dimensions: [country, browser]
- metrics:
- purchases:
- us:
- chrome:
- mean: 16
- std: 2
- safari:
- mean: 19
- std: 3
- edge:
- mean: 4
- std: 1
- ca:
- chrome:
- mean: 5
- std: 1
- safari:
- mean: 5
- std: 2
- edge:
- mean: 1
- std: 1
- mx:
- chrome:
- mean: 3
- std: 1
- safari:
- mean: 5
- std: 2
- edge:
- mean: 2
- std: 1
-
- revenue:
- us:
- chrome:
- mean: 160
- std: 20
- safari:
- mean: 190
- std: 30
- edge:
- mean: 40
- std: 10
- ca:
- chrome:
- mean: 50
- std: 10
- safari:
- mean: 50
- std: 15
- edge:
- mean: 10
- std: 2
- mx:
- chrome:
- mean: 30
- std: 6
- safari:
- mean: 50
- std: 15
- edge:
- mean: 20
- std: 3
diff --git a/docker/images/pinot-thirdeye/config/ephemeral/data/README.md b/docker/images/pinot-thirdeye/config/ephemeral/data/README.md
deleted file mode 100644
index 6f12739ddeee..000000000000
--- a/docker/images/pinot-thirdeye/config/ephemeral/data/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-`daily.csv`: daily data
-
-From Kaggle: https://www.kaggle.com/marklvl/bike-sharing-dataset#Bike-Sharing-Dataset.zip
-
- `hourly.csv`: hourly data
-
- From Kaggle: https://www.kaggle.com/robikscube/hourly-energy-consumption
\ No newline at end of file
diff --git a/docker/images/pinot-thirdeye/config/ephemeral/data/daily.csv b/docker/images/pinot-thirdeye/config/ephemeral/data/daily.csv
deleted file mode 100644
index 094897484692..000000000000
--- a/docker/images/pinot-thirdeye/config/ephemeral/data/daily.csv
+++ /dev/null
@@ -1,732 +0,0 @@
-date,value
-2011-01-01,985
-2011-01-02,801
-2011-01-03,1349
-2011-01-04,1562
-2011-01-05,1600
-2011-01-06,1606
-2011-01-07,1510
-2011-01-08,959
-2011-01-09,822
-2011-01-10,1321
-2011-01-11,1263
-2011-01-12,1162
-2011-01-13,1406
-2011-01-14,1421
-2011-01-15,1248
-2011-01-16,1204
-2011-01-17,1000
-2011-01-18,683
-2011-01-19,1650
-2011-01-20,1927
-2011-01-21,1543
-2011-01-22,981
-2011-01-23,986
-2011-01-24,1416
-2011-01-25,1985
-2011-01-26,506
-2011-01-27,431
-2011-01-28,1167
-2011-01-29,1098
-2011-01-30,1096
-2011-01-31,1501
-2011-02-01,1360
-2011-02-02,1526
-2011-02-03,1550
-2011-02-04,1708
-2011-02-05,1005
-2011-02-06,1623
-2011-02-07,1712
-2011-02-08,1530
-2011-02-09,1605
-2011-02-10,1538
-2011-02-11,1746
-2011-02-12,1472
-2011-02-13,1589
-2011-02-14,1913
-2011-02-15,1815
-2011-02-16,2115
-2011-02-17,2475
-2011-02-18,2927
-2011-02-19,1635
-2011-02-20,1812
-2011-02-21,1107
-2011-02-22,1450
-2011-02-23,1917
-2011-02-24,1807
-2011-02-25,1461
-2011-02-26,1969
-2011-02-27,2402
-2011-02-28,1446
-2011-03-01,1851
-2011-03-02,2134
-2011-03-03,1685
-2011-03-04,1944
-2011-03-05,2077
-2011-03-06,605
-2011-03-07,1872
-2011-03-08,2133
-2011-03-09,1891
-2011-03-10,623
-2011-03-11,1977
-2011-03-12,2132
-2011-03-13,2417
-2011-03-14,2046
-2011-03-15,2056
-2011-03-16,2192
-2011-03-17,2744
-2011-03-18,3239
-2011-03-19,3117
-2011-03-20,2471
-2011-03-21,2077
-2011-03-22,2703
-2011-03-23,2121
-2011-03-24,1865
-2011-03-25,2210
-2011-03-26,2496
-2011-03-27,1693
-2011-03-28,2028
-2011-03-29,2425
-2011-03-30,1536
-2011-03-31,1685
-2011-04-01,2227
-2011-04-02,2252
-2011-04-03,3249
-2011-04-04,3115
-2011-04-05,1795
-2011-04-06,2808
-2011-04-07,3141
-2011-04-08,1471
-2011-04-09,2455
-2011-04-10,2895
-2011-04-11,3348
-2011-04-12,2034
-2011-04-13,2162
-2011-04-14,3267
-2011-04-15,3126
-2011-04-16,795
-2011-04-17,3744
-2011-04-18,3429
-2011-04-19,3204
-2011-04-20,3944
-2011-04-21,4189
-2011-04-22,1683
-2011-04-23,4036
-2011-04-24,4191
-2011-04-25,4073
-2011-04-26,4400
-2011-04-27,3872
-2011-04-28,4058
-2011-04-29,4595
-2011-04-30,5312
-2011-05-01,3351
-2011-05-02,4401
-2011-05-03,4451
-2011-05-04,2633
-2011-05-05,4433
-2011-05-06,4608
-2011-05-07,4714
-2011-05-08,4333
-2011-05-09,4362
-2011-05-10,4803
-2011-05-11,4182
-2011-05-12,4864
-2011-05-13,4105
-2011-05-14,3409
-2011-05-15,4553
-2011-05-16,3958
-2011-05-17,4123
-2011-05-18,3855
-2011-05-19,4575
-2011-05-20,4917
-2011-05-21,5805
-2011-05-22,4660
-2011-05-23,4274
-2011-05-24,4492
-2011-05-25,4978
-2011-05-26,4677
-2011-05-27,4679
-2011-05-28,4758
-2011-05-29,4788
-2011-05-30,4098
-2011-05-31,3982
-2011-06-01,3974
-2011-06-02,4968
-2011-06-03,5312
-2011-06-04,5342
-2011-06-05,4906
-2011-06-06,4548
-2011-06-07,4833
-2011-06-08,4401
-2011-06-09,3915
-2011-06-10,4586
-2011-06-11,4966
-2011-06-12,4460
-2011-06-13,5020
-2011-06-14,4891
-2011-06-15,5180
-2011-06-16,3767
-2011-06-17,4844
-2011-06-18,5119
-2011-06-19,4744
-2011-06-20,4010
-2011-06-21,4835
-2011-06-22,4507
-2011-06-23,4790
-2011-06-24,4991
-2011-06-25,5202
-2011-06-26,5305
-2011-06-27,4708
-2011-06-28,4648
-2011-06-29,5225
-2011-06-30,5515
-2011-07-01,5362
-2011-07-02,5119
-2011-07-03,4649
-2011-07-04,6043
-2011-07-05,4665
-2011-07-06,4629
-2011-07-07,4592
-2011-07-08,4040
-2011-07-09,5336
-2011-07-10,4881
-2011-07-11,4086
-2011-07-12,4258
-2011-07-13,4342
-2011-07-14,5084
-2011-07-15,5538
-2011-07-16,5923
-2011-07-17,5302
-2011-07-18,4458
-2011-07-19,4541
-2011-07-20,4332
-2011-07-21,3784
-2011-07-22,3387
-2011-07-23,3285
-2011-07-24,3606
-2011-07-25,3840
-2011-07-26,4590
-2011-07-27,4656
-2011-07-28,4390
-2011-07-29,3846
-2011-07-30,4475
-2011-07-31,4302
-2011-08-01,4266
-2011-08-02,4845
-2011-08-03,3574
-2011-08-04,4576
-2011-08-05,4866
-2011-08-06,4294
-2011-08-07,3785
-2011-08-08,4326
-2011-08-09,4602
-2011-08-10,4780
-2011-08-11,4792
-2011-08-12,4905
-2011-08-13,4150
-2011-08-14,3820
-2011-08-15,4338
-2011-08-16,4725
-2011-08-17,4694
-2011-08-18,3805
-2011-08-19,4153
-2011-08-20,5191
-2011-08-21,3873
-2011-08-22,4758
-2011-08-23,5895
-2011-08-24,5130
-2011-08-25,3542
-2011-08-26,4661
-2011-08-27,1115
-2011-08-28,4334
-2011-08-29,4634
-2011-08-30,5204
-2011-08-31,5058
-2011-09-01,5115
-2011-09-02,4727
-2011-09-03,4484
-2011-09-04,4940
-2011-09-05,3351
-2011-09-06,2710
-2011-09-07,1996
-2011-09-08,1842
-2011-09-09,3544
-2011-09-10,5345
-2011-09-11,5046
-2011-09-12,4713
-2011-09-13,4763
-2011-09-14,4785
-2011-09-15,3659
-2011-09-16,4760
-2011-09-17,4511
-2011-09-18,4274
-2011-09-19,4539
-2011-09-20,3641
-2011-09-21,4352
-2011-09-22,4795
-2011-09-23,2395
-2011-09-24,5423
-2011-09-25,5010
-2011-09-26,4630
-2011-09-27,4120
-2011-09-28,3907
-2011-09-29,4839
-2011-09-30,5202
-2011-10-01,2429
-2011-10-02,2918
-2011-10-03,3570
-2011-10-04,4456
-2011-10-05,4826
-2011-10-06,4765
-2011-10-07,4985
-2011-10-08,5409
-2011-10-09,5511
-2011-10-10,5117
-2011-10-11,4563
-2011-10-12,2416
-2011-10-13,2913
-2011-10-14,3644
-2011-10-15,5217
-2011-10-16,5041
-2011-10-17,4570
-2011-10-18,4748
-2011-10-19,2424
-2011-10-20,4195
-2011-10-21,4304
-2011-10-22,4308
-2011-10-23,4381
-2011-10-24,4187
-2011-10-25,4687
-2011-10-26,3894
-2011-10-27,2659
-2011-10-28,3747
-2011-10-29,627
-2011-10-30,3331
-2011-10-31,3669
-2011-11-01,4068
-2011-11-02,4186
-2011-11-03,3974
-2011-11-04,4046
-2011-11-05,3926
-2011-11-06,3649
-2011-11-07,4035
-2011-11-08,4205
-2011-11-09,4109
-2011-11-10,2933
-2011-11-11,3368
-2011-11-12,4067
-2011-11-13,3717
-2011-11-14,4486
-2011-11-15,4195
-2011-11-16,1817
-2011-11-17,3053
-2011-11-18,3392
-2011-11-19,3663
-2011-11-20,3520
-2011-11-21,2765
-2011-11-22,1607
-2011-11-23,2566
-2011-11-24,1495
-2011-11-25,2792
-2011-11-26,3068
-2011-11-27,3071
-2011-11-28,3867
-2011-11-29,2914
-2011-11-30,3613
-2011-12-01,3727
-2011-12-02,3940
-2011-12-03,3614
-2011-12-04,3485
-2011-12-05,3811
-2011-12-06,2594
-2011-12-07,705
-2011-12-08,3322
-2011-12-09,3620
-2011-12-10,3190
-2011-12-11,2743
-2011-12-12,3310
-2011-12-13,3523
-2011-12-14,3740
-2011-12-15,3709
-2011-12-16,3577
-2011-12-17,2739
-2011-12-18,2431
-2011-12-19,3403
-2011-12-20,3750
-2011-12-21,2660
-2011-12-22,3068
-2011-12-23,2209
-2011-12-24,1011
-2011-12-25,754
-2011-12-26,1317
-2011-12-27,1162
-2011-12-28,2302
-2011-12-29,2423
-2011-12-30,2999
-2011-12-31,2485
-2012-01-01,2294
-2012-01-02,1951
-2012-01-03,2236
-2012-01-04,2368
-2012-01-05,3272
-2012-01-06,4098
-2012-01-07,4521
-2012-01-08,3425
-2012-01-09,2376
-2012-01-10,3598
-2012-01-11,2177
-2012-01-12,4097
-2012-01-13,3214
-2012-01-14,2493
-2012-01-15,2311
-2012-01-16,2298
-2012-01-17,2935
-2012-01-18,3376
-2012-01-19,3292
-2012-01-20,3163
-2012-01-21,1301
-2012-01-22,1977
-2012-01-23,2432
-2012-01-24,4339
-2012-01-25,4270
-2012-01-26,4075
-2012-01-27,3456
-2012-01-28,4023
-2012-01-29,3243
-2012-01-30,3624
-2012-01-31,4509
-2012-02-01,4579
-2012-02-02,3761
-2012-02-03,4151
-2012-02-04,2832
-2012-02-05,2947
-2012-02-06,3784
-2012-02-07,4375
-2012-02-08,2802
-2012-02-09,3830
-2012-02-10,3831
-2012-02-11,2169
-2012-02-12,1529
-2012-02-13,3422
-2012-02-14,3922
-2012-02-15,4169
-2012-02-16,3005
-2012-02-17,4154
-2012-02-18,4318
-2012-02-19,2689
-2012-02-20,3129
-2012-02-21,3777
-2012-02-22,4773
-2012-02-23,5062
-2012-02-24,3487
-2012-02-25,2732
-2012-02-26,3389
-2012-02-27,4322
-2012-02-28,4363
-2012-02-29,1834
-2012-03-01,4990
-2012-03-02,3194
-2012-03-03,4066
-2012-03-04,3423
-2012-03-05,3333
-2012-03-06,3956
-2012-03-07,4916
-2012-03-08,5382
-2012-03-09,4569
-2012-03-10,4118
-2012-03-11,4911
-2012-03-12,5298
-2012-03-13,5847
-2012-03-14,6312
-2012-03-15,6192
-2012-03-16,4378
-2012-03-17,7836
-2012-03-18,5892
-2012-03-19,6153
-2012-03-20,6093
-2012-03-21,6230
-2012-03-22,6871
-2012-03-23,8362
-2012-03-24,3372
-2012-03-25,4996
-2012-03-26,5558
-2012-03-27,5102
-2012-03-28,5698
-2012-03-29,6133
-2012-03-30,5459
-2012-03-31,6235
-2012-04-01,6041
-2012-04-02,5936
-2012-04-03,6772
-2012-04-04,6436
-2012-04-05,6457
-2012-04-06,6460
-2012-04-07,6857
-2012-04-08,5169
-2012-04-09,5585
-2012-04-10,5918
-2012-04-11,4862
-2012-04-12,5409
-2012-04-13,6398
-2012-04-14,7460
-2012-04-15,7132
-2012-04-16,6370
-2012-04-17,6691
-2012-04-18,4367
-2012-04-19,6565
-2012-04-20,7290
-2012-04-21,6624
-2012-04-22,1027
-2012-04-23,3214
-2012-04-24,5633
-2012-04-25,6196
-2012-04-26,5026
-2012-04-27,6233
-2012-04-28,4220
-2012-04-29,6304
-2012-04-30,5572
-2012-05-01,5740
-2012-05-02,6169
-2012-05-03,6421
-2012-05-04,6296
-2012-05-05,6883
-2012-05-06,6359
-2012-05-07,6273
-2012-05-08,5728
-2012-05-09,4717
-2012-05-10,6572
-2012-05-11,7030
-2012-05-12,7429
-2012-05-13,6118
-2012-05-14,2843
-2012-05-15,5115
-2012-05-16,7424
-2012-05-17,7384
-2012-05-18,7639
-2012-05-19,8294
-2012-05-20,7129
-2012-05-21,4359
-2012-05-22,6073
-2012-05-23,5260
-2012-05-24,6770
-2012-05-25,6734
-2012-05-26,6536
-2012-05-27,6591
-2012-05-28,6043
-2012-05-29,5743
-2012-05-30,6855
-2012-05-31,7338
-2012-06-01,4127
-2012-06-02,8120
-2012-06-03,7641
-2012-06-04,6998
-2012-06-05,7001
-2012-06-06,7055
-2012-06-07,7494
-2012-06-08,7736
-2012-06-09,7498
-2012-06-10,6598
-2012-06-11,6664
-2012-06-12,4972
-2012-06-13,7421
-2012-06-14,7363
-2012-06-15,7665
-2012-06-16,7702
-2012-06-17,6978
-2012-06-18,5099
-2012-06-19,6825
-2012-06-20,6211
-2012-06-21,5905
-2012-06-22,5823
-2012-06-23,7458
-2012-06-24,6891
-2012-06-25,6779
-2012-06-26,7442
-2012-06-27,7335
-2012-06-28,6879
-2012-06-29,5463
-2012-06-30,5687
-2012-07-01,5531
-2012-07-02,6227
-2012-07-03,6660
-2012-07-04,7403
-2012-07-05,6241
-2012-07-06,6207
-2012-07-07,4840
-2012-07-08,4672
-2012-07-09,6569
-2012-07-10,6290
-2012-07-11,7264
-2012-07-12,7446
-2012-07-13,7499
-2012-07-14,6969
-2012-07-15,6031
-2012-07-16,6830
-2012-07-17,6786
-2012-07-18,5713
-2012-07-19,6591
-2012-07-20,5870
-2012-07-21,4459
-2012-07-22,7410
-2012-07-23,6966
-2012-07-24,7592
-2012-07-25,8173
-2012-07-26,6861
-2012-07-27,6904
-2012-07-28,6685
-2012-07-29,6597
-2012-07-30,7105
-2012-07-31,7216
-2012-08-01,7580
-2012-08-02,7261
-2012-08-03,7175
-2012-08-04,6824
-2012-08-05,5464
-2012-08-06,7013
-2012-08-07,7273
-2012-08-08,7534
-2012-08-09,7286
-2012-08-10,5786
-2012-08-11,6299
-2012-08-12,6544
-2012-08-13,6883
-2012-08-14,6784
-2012-08-15,7347
-2012-08-16,7605
-2012-08-17,7148
-2012-08-18,7865
-2012-08-19,4549
-2012-08-20,6530
-2012-08-21,7006
-2012-08-22,7375
-2012-08-23,7765
-2012-08-24,7582
-2012-08-25,6053
-2012-08-26,5255
-2012-08-27,6917
-2012-08-28,7040
-2012-08-29,7697
-2012-08-30,7713
-2012-08-31,7350
-2012-09-01,6140
-2012-09-02,5810
-2012-09-03,6034
-2012-09-04,6864
-2012-09-05,7112
-2012-09-06,6203
-2012-09-07,7504
-2012-09-08,5976
-2012-09-09,8227
-2012-09-10,7525
-2012-09-11,7767
-2012-09-12,7870
-2012-09-13,7804
-2012-09-14,8009
-2012-09-15,8714
-2012-09-16,7333
-2012-09-17,6869
-2012-09-18,4073
-2012-09-19,7591
-2012-09-20,7720
-2012-09-21,8167
-2012-09-22,8395
-2012-09-23,7907
-2012-09-24,7436
-2012-09-25,7538
-2012-09-26,7733
-2012-09-27,7393
-2012-09-28,7415
-2012-09-29,8555
-2012-09-30,6889
-2012-10-01,6778
-2012-10-02,4639
-2012-10-03,7572
-2012-10-04,7328
-2012-10-05,8156
-2012-10-06,7965
-2012-10-07,3510
-2012-10-08,5478
-2012-10-09,6392
-2012-10-10,7691
-2012-10-11,7570
-2012-10-12,7282
-2012-10-13,7109
-2012-10-14,6639
-2012-10-15,5875
-2012-10-16,7534
-2012-10-17,7461
-2012-10-18,7509
-2012-10-19,5424
-2012-10-20,8090
-2012-10-21,6824
-2012-10-22,7058
-2012-10-23,7466
-2012-10-24,7693
-2012-10-25,7359
-2012-10-26,7444
-2012-10-27,7852
-2012-10-28,4459
-2012-10-29,22
-2012-10-30,1096
-2012-10-31,5566
-2012-11-01,5986
-2012-11-02,5847
-2012-11-03,5138
-2012-11-04,5107
-2012-11-05,5259
-2012-11-06,5686
-2012-11-07,5035
-2012-11-08,5315
-2012-11-09,5992
-2012-11-10,6536
-2012-11-11,6852
-2012-11-12,6269
-2012-11-13,4094
-2012-11-14,5495
-2012-11-15,5445
-2012-11-16,5698
-2012-11-17,5629
-2012-11-18,4669
-2012-11-19,5499
-2012-11-20,5634
-2012-11-21,5146
-2012-11-22,2425
-2012-11-23,3910
-2012-11-24,2277
-2012-11-25,2424
-2012-11-26,5087
-2012-11-27,3959
-2012-11-28,5260
-2012-11-29,5323
-2012-11-30,5668
-2012-12-01,5191
-2012-12-02,4649
-2012-12-03,6234
-2012-12-04,6606
-2012-12-05,5729
-2012-12-06,5375
-2012-12-07,5008
-2012-12-08,5582
-2012-12-09,3228
-2012-12-10,5170
-2012-12-11,5501
-2012-12-12,5319
-2012-12-13,5532
-2012-12-14,5611
-2012-12-15,5047
-2012-12-16,3786
-2012-12-17,4585
-2012-12-18,5557
-2012-12-19,5267
-2012-12-20,4128
-2012-12-21,3623
-2012-12-22,1749
-2012-12-23,1787
-2012-12-24,920
-2012-12-25,1013
-2012-12-26,441
-2012-12-27,2114
-2012-12-28,3095
-2012-12-29,1341
-2012-12-30,1796
-2012-12-31,2729
diff --git a/docker/images/pinot-thirdeye/config/ephemeral/data/hourly.csv b/docker/images/pinot-thirdeye/config/ephemeral/data/hourly.csv
deleted file mode 100755
index 7714a9380334..000000000000
--- a/docker/images/pinot-thirdeye/config/ephemeral/data/hourly.csv
+++ /dev/null
@@ -1,66498 +0,0 @@
-datetime,value
-2011-12-31 01:00:00,9970.0
-2011-12-31 02:00:00,9428.0
-2011-12-31 03:00:00,9059.0
-2011-12-31 04:00:00,8817.0
-2011-12-31 05:00:00,8743.0
-2011-12-31 06:00:00,8735.0
-2011-12-31 07:00:00,8993.0
-2011-12-31 08:00:00,9363.0
-2011-12-31 09:00:00,9545.0
-2011-12-31 10:00:00,9676.0
-2011-12-31 11:00:00,9937.0
-2011-12-31 12:00:00,10139.0
-2011-12-31 13:00:00,10326.0
-2011-12-31 14:00:00,10359.0
-2011-12-31 15:00:00,10293.0
-2011-12-31 16:00:00,10240.0
-2011-12-31 17:00:00,10416.0
-2011-12-31 18:00:00,11225.0
-2011-12-31 19:00:00,11907.0
-2011-12-31 20:00:00,11812.0
-2011-12-31 21:00:00,11542.0
-2011-12-31 22:00:00,11149.0
-2011-12-31 23:00:00,10855.0
-2012-01-01 00:00:00,10335.0
-2011-12-30 01:00:00,10126.0
-2011-12-30 02:00:00,9535.0
-2011-12-30 03:00:00,9182.0
-2011-12-30 04:00:00,8945.0
-2011-12-30 05:00:00,8874.0
-2011-12-30 06:00:00,9070.0
-2011-12-30 07:00:00,9583.0
-2011-12-30 08:00:00,10329.0
-2011-12-30 09:00:00,10804.0
-2011-12-30 10:00:00,11100.0
-2011-12-30 11:00:00,11396.0
-2011-12-30 12:00:00,11586.0
-2011-12-30 13:00:00,11598.0
-2011-12-30 14:00:00,11511.0
-2011-12-30 15:00:00,11429.0
-2011-12-30 16:00:00,11317.0
-2011-12-30 17:00:00,11384.0
-2011-12-30 18:00:00,11996.0
-2011-12-30 19:00:00,12440.0
-2011-12-30 20:00:00,12248.0
-2011-12-30 21:00:00,12023.0
-2011-12-30 22:00:00,11717.0
-2011-12-30 23:00:00,11318.0
-2011-12-31 00:00:00,10728.0
-2011-12-29 01:00:00,10743.0
-2011-12-29 02:00:00,10083.0
-2011-12-29 03:00:00,9701.0
-2011-12-29 04:00:00,9448.0
-2011-12-29 05:00:00,9353.0
-2011-12-29 06:00:00,9531.0
-2011-12-29 07:00:00,10111.0
-2011-12-29 08:00:00,10975.0
-2011-12-29 09:00:00,11415.0
-2011-12-29 10:00:00,11541.0
-2011-12-29 11:00:00,11634.0
-2011-12-29 12:00:00,11659.0
-2011-12-29 13:00:00,11564.0
-2011-12-29 14:00:00,11432.0
-2011-12-29 15:00:00,11343.0
-2011-12-29 16:00:00,11216.0
-2011-12-29 17:00:00,11140.0
-2011-12-29 18:00:00,11904.0
-2011-12-29 19:00:00,12754.0
-2011-12-29 20:00:00,12593.0
-2011-12-29 21:00:00,12406.0
-2011-12-29 22:00:00,12140.0
-2011-12-29 23:00:00,11661.0
-2011-12-30 00:00:00,10980.0
-2011-12-28 01:00:00,10615.0
-2011-12-28 02:00:00,10017.0
-2011-12-28 03:00:00,9736.0
-2011-12-28 04:00:00,9552.0
-2011-12-28 05:00:00,9557.0
-2011-12-28 06:00:00,9797.0
-2011-12-28 07:00:00,10448.0
-2011-12-28 08:00:00,11364.0
-2011-12-28 09:00:00,11861.0
-2011-12-28 10:00:00,12095.0
-2011-12-28 11:00:00,12287.0
-2011-12-28 12:00:00,12392.0
-2011-12-28 13:00:00,12385.0
-2011-12-28 14:00:00,12344.0
-2011-12-28 15:00:00,12268.0
-2011-12-28 16:00:00,12222.0
-2011-12-28 17:00:00,12249.0
-2011-12-28 18:00:00,12971.0
-2011-12-28 19:00:00,13628.0
-2011-12-28 20:00:00,13447.0
-2011-12-28 21:00:00,13216.0
-2011-12-28 22:00:00,12936.0
-2011-12-28 23:00:00,12432.0
-2011-12-29 00:00:00,11590.0
-2011-12-27 01:00:00,9950.0
-2011-12-27 02:00:00,9391.0
-2011-12-27 03:00:00,9030.0
-2011-12-27 04:00:00,8868.0
-2011-12-27 05:00:00,8832.0
-2011-12-27 06:00:00,9077.0
-2011-12-27 07:00:00,9737.0
-2011-12-27 08:00:00,10649.0
-2011-12-27 09:00:00,11243.0
-2011-12-27 10:00:00,11551.0
-2011-12-27 11:00:00,11809.0
-2011-12-27 12:00:00,11973.0
-2011-12-27 13:00:00,12054.0
-2011-12-27 14:00:00,12040.0
-2011-12-27 15:00:00,12062.0
-2011-12-27 16:00:00,12062.0
-2011-12-27 17:00:00,12133.0
-2011-12-27 18:00:00,12849.0
-2011-12-27 19:00:00,13311.0
-2011-12-27 20:00:00,13093.0
-2011-12-27 21:00:00,12874.0
-2011-12-27 22:00:00,12629.0
-2011-12-27 23:00:00,12122.0
-2011-12-28 00:00:00,11386.0
-2011-12-26 01:00:00,9620.0
-2011-12-26 02:00:00,9171.0
-2011-12-26 03:00:00,8892.0
-2011-12-26 04:00:00,8728.0
-2011-12-26 05:00:00,8723.0
-2011-12-26 06:00:00,8875.0
-2011-12-26 07:00:00,9212.0
-2011-12-26 08:00:00,9625.0
-2011-12-26 09:00:00,9707.0
-2011-12-26 10:00:00,9786.0
-2011-12-26 11:00:00,9954.0
-2011-12-26 12:00:00,10040.0
-2011-12-26 13:00:00,10062.0
-2011-12-26 14:00:00,9983.0
-2011-12-26 15:00:00,9887.0
-2011-12-26 16:00:00,9898.0
-2011-12-26 17:00:00,10172.0
-2011-12-26 18:00:00,11219.0
-2011-12-26 19:00:00,11963.0
-2011-12-26 20:00:00,11908.0
-2011-12-26 21:00:00,11820.0
-2011-12-26 22:00:00,11667.0
-2011-12-26 23:00:00,11280.0
-2011-12-27 00:00:00,10655.0
-2011-12-25 01:00:00,10042.0
-2011-12-25 02:00:00,9487.0
-2011-12-25 03:00:00,9073.0
-2011-12-25 04:00:00,8800.0
-2011-12-25 05:00:00,8662.0
-2011-12-25 06:00:00,8634.0
-2011-12-25 07:00:00,8760.0
-2011-12-25 08:00:00,9005.0
-2011-12-25 09:00:00,9076.0
-2011-12-25 10:00:00,9133.0
-2011-12-25 11:00:00,9219.0
-2011-12-25 12:00:00,9213.0
-2011-12-25 13:00:00,9209.0
-2011-12-25 14:00:00,9137.0
-2011-12-25 15:00:00,9056.0
-2011-12-25 16:00:00,9031.0
-2011-12-25 17:00:00,9087.0
-2011-12-25 18:00:00,9751.0
-2011-12-25 19:00:00,10526.0
-2011-12-25 20:00:00,10577.0
-2011-12-25 21:00:00,10630.0
-2011-12-25 22:00:00,10627.0
-2011-12-25 23:00:00,10563.0
-2011-12-26 00:00:00,10187.0
-2011-12-24 01:00:00,10698.0
-2011-12-24 02:00:00,10021.0
-2011-12-24 03:00:00,9505.0
-2011-12-24 04:00:00,9355.0
-2011-12-24 05:00:00,9237.0
-2011-12-24 06:00:00,9261.0
-2011-12-24 07:00:00,9498.0
-2011-12-24 08:00:00,9864.0
-2011-12-24 09:00:00,10029.0
-2011-12-24 10:00:00,10187.0
-2011-12-24 11:00:00,10327.0
-2011-12-24 12:00:00,10329.0
-2011-12-24 13:00:00,10292.0
-2011-12-24 14:00:00,10211.0
-2011-12-24 15:00:00,10034.0
-2011-12-24 16:00:00,9904.0
-2011-12-24 17:00:00,9919.0
-2011-12-24 18:00:00,10743.0
-2011-12-24 19:00:00,11519.0
-2011-12-24 20:00:00,11437.0
-2011-12-24 21:00:00,11235.0
-2011-12-24 22:00:00,11126.0
-2011-12-24 23:00:00,10934.0
-2011-12-25 00:00:00,10584.0
-2011-12-23 01:00:00,10853.0
-2011-12-23 02:00:00,10177.0
-2011-12-23 03:00:00,9758.0
-2011-12-23 04:00:00,9560.0
-2011-12-23 05:00:00,9504.0
-2011-12-23 06:00:00,9718.0
-2011-12-23 07:00:00,10265.0
-2011-12-23 08:00:00,11162.0
-2011-12-23 09:00:00,11534.0
-2011-12-23 10:00:00,11686.0
-2011-12-23 11:00:00,11707.0
-2011-12-23 12:00:00,11686.0
-2011-12-23 13:00:00,11509.0
-2011-12-23 14:00:00,11374.0
-2011-12-23 15:00:00,11301.0
-2011-12-23 16:00:00,11395.0
-2011-12-23 17:00:00,11668.0
-2011-12-23 18:00:00,12618.0
-2011-12-23 19:00:00,13158.0
-2011-12-23 20:00:00,12967.0
-2011-12-23 21:00:00,12736.0
-2011-12-23 22:00:00,12512.0
-2011-12-23 23:00:00,12165.0
-2011-12-24 00:00:00,11489.0
-2011-12-22 01:00:00,10668.0
-2011-12-22 02:00:00,10013.0
-2011-12-22 03:00:00,9584.0
-2011-12-22 04:00:00,9325.0
-2011-12-22 05:00:00,9303.0
-2011-12-22 06:00:00,9550.0
-2011-12-22 07:00:00,10219.0
-2011-12-22 08:00:00,11347.0
-2011-12-22 09:00:00,11903.0
-2011-12-22 10:00:00,12167.0
-2011-12-22 11:00:00,12327.0
-2011-12-22 12:00:00,12451.0
-2011-12-22 13:00:00,12476.0
-2011-12-22 14:00:00,12405.0
-2011-12-22 15:00:00,12544.0
-2011-12-22 16:00:00,12593.0
-2011-12-22 17:00:00,12763.0
-2011-12-22 18:00:00,13401.0
-2011-12-22 19:00:00,13766.0
-2011-12-22 20:00:00,13530.0
-2011-12-22 21:00:00,13326.0
-2011-12-22 22:00:00,13032.0
-2011-12-22 23:00:00,12580.0
-2011-12-23 00:00:00,11779.0
-2011-12-21 01:00:00,10682.0
-2011-12-21 02:00:00,9935.0
-2011-12-21 03:00:00,9518.0
-2011-12-21 04:00:00,9292.0
-2011-12-21 05:00:00,9248.0
-2011-12-21 06:00:00,9439.0
-2011-12-21 07:00:00,10028.0
-2011-12-21 08:00:00,11174.0
-2011-12-21 09:00:00,11891.0
-2011-12-21 10:00:00,12165.0
-2011-12-21 11:00:00,12344.0
-2011-12-21 12:00:00,12374.0
-2011-12-21 13:00:00,12319.0
-2011-12-21 14:00:00,12366.0
-2011-12-21 15:00:00,12476.0
-2011-12-21 16:00:00,12467.0
-2011-12-21 17:00:00,12612.0
-2011-12-21 18:00:00,13355.0
-2011-12-21 19:00:00,13655.0
-2011-12-21 20:00:00,13412.0
-2011-12-21 21:00:00,13205.0
-2011-12-21 22:00:00,12939.0
-2011-12-21 23:00:00,12466.0
-2011-12-22 00:00:00,11630.0
-2011-12-20 01:00:00,10576.0
-2011-12-20 02:00:00,9883.0
-2011-12-20 03:00:00,9525.0
-2011-12-20 04:00:00,9305.0
-2011-12-20 05:00:00,9276.0
-2011-12-20 06:00:00,9538.0
-2011-12-20 07:00:00,10244.0
-2011-12-20 08:00:00,11431.0
-2011-12-20 09:00:00,12162.0
-2011-12-20 10:00:00,12330.0
-2011-12-20 11:00:00,12362.0
-2011-12-20 12:00:00,12456.0
-2011-12-20 13:00:00,12486.0
-2011-12-20 14:00:00,12454.0
-2011-12-20 15:00:00,12476.0
-2011-12-20 16:00:00,12426.0
-2011-12-20 17:00:00,12590.0
-2011-12-20 18:00:00,13293.0
-2011-12-20 19:00:00,13796.0
-2011-12-20 20:00:00,13616.0
-2011-12-20 21:00:00,13380.0
-2011-12-20 22:00:00,13078.0
-2011-12-20 23:00:00,12559.0
-2011-12-21 00:00:00,11634.0
-2011-12-19 01:00:00,10102.0
-2011-12-19 02:00:00,9535.0
-2011-12-19 03:00:00,9225.0
-2011-12-19 04:00:00,9070.0
-2011-12-19 05:00:00,9072.0
-2011-12-19 06:00:00,9330.0
-2011-12-19 07:00:00,10038.0
-2011-12-19 08:00:00,11245.0
-2011-12-19 09:00:00,11838.0
-2011-12-19 10:00:00,11903.0
-2011-12-19 11:00:00,11960.0
-2011-12-19 12:00:00,11970.0
-2011-12-19 13:00:00,11896.0
-2011-12-19 14:00:00,11829.0
-2011-12-19 15:00:00,11869.0
-2011-12-19 16:00:00,11856.0
-2011-12-19 17:00:00,12113.0
-2011-12-19 18:00:00,13039.0
-2011-12-19 19:00:00,13522.0
-2011-12-19 20:00:00,13371.0
-2011-12-19 21:00:00,13170.0
-2011-12-19 22:00:00,12904.0
-2011-12-19 23:00:00,12402.0
-2011-12-20 00:00:00,11514.0
-2011-12-18 01:00:00,10664.0
-2011-12-18 02:00:00,10059.0
-2011-12-18 03:00:00,9583.0
-2011-12-18 04:00:00,9400.0
-2011-12-18 05:00:00,9280.0
-2011-12-18 06:00:00,9277.0
-2011-12-18 07:00:00,9472.0
-2011-12-18 08:00:00,9810.0
-2011-12-18 09:00:00,10037.0
-2011-12-18 10:00:00,10272.0
-2011-12-18 11:00:00,10477.0
-2011-12-18 12:00:00,10425.0
-2011-12-18 13:00:00,10351.0
-2011-12-18 14:00:00,10285.0
-2011-12-18 15:00:00,10175.0
-2011-12-18 16:00:00,10142.0
-2011-12-18 17:00:00,10223.0
-2011-12-18 18:00:00,11250.0
-2011-12-18 19:00:00,12159.0
-2011-12-18 20:00:00,12308.0
-2011-12-18 21:00:00,12234.0
-2011-12-18 22:00:00,12058.0
-2011-12-18 23:00:00,11626.0
-2011-12-19 00:00:00,10939.0
-2011-12-17 01:00:00,11120.0
-2011-12-17 02:00:00,10415.0
-2011-12-17 03:00:00,10010.0
-2011-12-17 04:00:00,9770.0
-2011-12-17 05:00:00,9682.0
-2011-12-17 06:00:00,9775.0
-2011-12-17 07:00:00,10113.0
-2011-12-17 08:00:00,10607.0
-2011-12-17 09:00:00,10939.0
-2011-12-17 10:00:00,11264.0
-2011-12-17 11:00:00,11566.0
-2011-12-17 12:00:00,11700.0
-2011-12-17 13:00:00,11730.0
-2011-12-17 14:00:00,11550.0
-2011-12-17 15:00:00,11395.0
-2011-12-17 16:00:00,11277.0
-2011-12-17 17:00:00,11462.0
-2011-12-17 18:00:00,12203.0
-2011-12-17 19:00:00,12734.0
-2011-12-17 20:00:00,12666.0
-2011-12-17 21:00:00,12527.0
-2011-12-17 22:00:00,12334.0
-2011-12-17 23:00:00,11999.0
-2011-12-18 00:00:00,11395.0
-2011-12-16 01:00:00,10981.0
-2011-12-16 02:00:00,10314.0
-2011-12-16 03:00:00,9944.0
-2011-12-16 04:00:00,9797.0
-2011-12-16 05:00:00,9809.0
-2011-12-16 06:00:00,10044.0
-2011-12-16 07:00:00,10831.0
-2011-12-16 08:00:00,12069.0
-2011-12-16 09:00:00,12676.0
-2011-12-16 10:00:00,12735.0
-2011-12-16 11:00:00,12637.0
-2011-12-16 12:00:00,12576.0
-2011-12-16 13:00:00,12352.0
-2011-12-16 14:00:00,12191.0
-2011-12-16 15:00:00,12119.0
-2011-12-16 16:00:00,11987.0
-2011-12-16 17:00:00,12060.0
-2011-12-16 18:00:00,12946.0
-2011-12-16 19:00:00,13744.0
-2011-12-16 20:00:00,13666.0
-2011-12-16 21:00:00,13399.0
-2011-12-16 22:00:00,13124.0
-2011-12-16 23:00:00,12759.0
-2011-12-17 00:00:00,11979.0
-2011-12-15 01:00:00,10211.0
-2011-12-15 02:00:00,9511.0
-2011-12-15 03:00:00,9126.0
-2011-12-15 04:00:00,8896.0
-2011-12-15 05:00:00,8864.0
-2011-12-15 06:00:00,9066.0
-2011-12-15 07:00:00,9808.0
-2011-12-15 08:00:00,11073.0
-2011-12-15 09:00:00,11843.0
-2011-12-15 10:00:00,12094.0
-2011-12-15 11:00:00,12185.0
-2011-12-15 12:00:00,12308.0
-2011-12-15 13:00:00,12368.0
-2011-12-15 14:00:00,12408.0
-2011-12-15 15:00:00,12564.0
-2011-12-15 16:00:00,12607.0
-2011-12-15 17:00:00,12790.0
-2011-12-15 18:00:00,13511.0
-2011-12-15 19:00:00,14016.0
-2011-12-15 20:00:00,13872.0
-2011-12-15 21:00:00,13698.0
-2011-12-15 22:00:00,13340.0
-2011-12-15 23:00:00,12863.0
-2011-12-16 00:00:00,11935.0
-2011-12-14 01:00:00,10517.0
-2011-12-14 02:00:00,9852.0
-2011-12-14 03:00:00,9448.0
-2011-12-14 04:00:00,9284.0
-2011-12-14 05:00:00,9228.0
-2011-12-14 06:00:00,9439.0
-2011-12-14 07:00:00,10186.0
-2011-12-14 08:00:00,11439.0
-2011-12-14 09:00:00,12193.0
-2011-12-14 10:00:00,12480.0
-2011-12-14 11:00:00,12741.0
-2011-12-14 12:00:00,12739.0
-2011-12-14 13:00:00,12584.0
-2011-12-14 14:00:00,12477.0
-2011-12-14 15:00:00,12514.0
-2011-12-14 16:00:00,12521.0
-2011-12-14 17:00:00,12688.0
-2011-12-14 18:00:00,13394.0
-2011-12-14 19:00:00,13628.0
-2011-12-14 20:00:00,13361.0
-2011-12-14 21:00:00,13112.0
-2011-12-14 22:00:00,12789.0
-2011-12-14 23:00:00,12206.0
-2011-12-15 00:00:00,11214.0
-2011-12-13 01:00:00,10490.0
-2011-12-13 02:00:00,9902.0
-2011-12-13 03:00:00,9531.0
-2011-12-13 04:00:00,9334.0
-2011-12-13 05:00:00,9290.0
-2011-12-13 06:00:00,9534.0
-2011-12-13 07:00:00,10297.0
-2011-12-13 08:00:00,11545.0
-2011-12-13 09:00:00,12265.0
-2011-12-13 10:00:00,12345.0
-2011-12-13 11:00:00,12382.0
-2011-12-13 12:00:00,12576.0
-2011-12-13 13:00:00,12405.0
-2011-12-13 14:00:00,12307.0
-2011-12-13 15:00:00,12323.0
-2011-12-13 16:00:00,12219.0
-2011-12-13 17:00:00,12351.0
-2011-12-13 18:00:00,13234.0
-2011-12-13 19:00:00,13637.0
-2011-12-13 20:00:00,13455.0
-2011-12-13 21:00:00,13231.0
-2011-12-13 22:00:00,12939.0
-2011-12-13 23:00:00,12386.0
-2011-12-14 00:00:00,11474.0
-2011-12-12 01:00:00,10335.0
-2011-12-12 02:00:00,9882.0
-2011-12-12 03:00:00,9609.0
-2011-12-12 04:00:00,9536.0
-2011-12-12 05:00:00,9585.0
-2011-12-12 06:00:00,9905.0
-2011-12-12 07:00:00,10698.0
-2011-12-12 08:00:00,12007.0
-2011-12-12 09:00:00,12594.0
-2011-12-12 10:00:00,12641.0
-2011-12-12 11:00:00,12553.0
-2011-12-12 12:00:00,12436.0
-2011-12-12 13:00:00,12358.0
-2011-12-12 14:00:00,12198.0
-2011-12-12 15:00:00,12141.0
-2011-12-12 16:00:00,12122.0
-2011-12-12 17:00:00,12175.0
-2011-12-12 18:00:00,13078.0
-2011-12-12 19:00:00,13766.0
-2011-12-12 20:00:00,13557.0
-2011-12-12 21:00:00,13309.0
-2011-12-12 22:00:00,13019.0
-2011-12-12 23:00:00,12461.0
-2011-12-13 00:00:00,11463.0
-2011-12-11 01:00:00,10985.0
-2011-12-11 02:00:00,10416.0
-2011-12-11 03:00:00,9967.0
-2011-12-11 04:00:00,9730.0
-2011-12-11 05:00:00,9700.0
-2011-12-11 06:00:00,9689.0
-2011-12-11 07:00:00,9850.0
-2011-12-11 08:00:00,10135.0
-2011-12-11 09:00:00,10186.0
-2011-12-11 10:00:00,10342.0
-2011-12-11 11:00:00,10457.0
-2011-12-11 12:00:00,10492.0
-2011-12-11 13:00:00,10428.0
-2011-12-11 14:00:00,10368.0
-2011-12-11 15:00:00,10234.0
-2011-12-11 16:00:00,10183.0
-2011-12-11 17:00:00,10314.0
-2011-12-11 18:00:00,11315.0
-2011-12-11 19:00:00,12238.0
-2011-12-11 20:00:00,12396.0
-2011-12-11 21:00:00,12389.0
-2011-12-11 22:00:00,12186.0
-2011-12-11 23:00:00,11823.0
-2011-12-12 00:00:00,11079.0
-2011-12-10 01:00:00,11502.0
-2011-12-10 02:00:00,10836.0
-2011-12-10 03:00:00,10510.0
-2011-12-10 04:00:00,10311.0
-2011-12-10 05:00:00,10272.0
-2011-12-10 06:00:00,10350.0
-2011-12-10 07:00:00,10703.0
-2011-12-10 08:00:00,11274.0
-2011-12-10 09:00:00,11550.0
-2011-12-10 10:00:00,11748.0
-2011-12-10 11:00:00,11889.0
-2011-12-10 12:00:00,11888.0
-2011-12-10 13:00:00,11789.0
-2011-12-10 14:00:00,11553.0
-2011-12-10 15:00:00,11331.0
-2011-12-10 16:00:00,11224.0
-2011-12-10 17:00:00,11318.0
-2011-12-10 18:00:00,12308.0
-2011-12-10 19:00:00,13128.0
-2011-12-10 20:00:00,13050.0
-2011-12-10 21:00:00,12945.0
-2011-12-10 22:00:00,12677.0
-2011-12-10 23:00:00,12363.0
-2011-12-11 00:00:00,11705.0
-2011-12-09 01:00:00,10825.0
-2011-12-09 02:00:00,10237.0
-2011-12-09 03:00:00,9938.0
-2011-12-09 04:00:00,9762.0
-2011-12-09 05:00:00,9802.0
-2011-12-09 06:00:00,10064.0
-2011-12-09 07:00:00,10730.0
-2011-12-09 08:00:00,11993.0
-2011-12-09 09:00:00,12563.0
-2011-12-09 10:00:00,12736.0
-2011-12-09 11:00:00,12689.0
-2011-12-09 12:00:00,12695.0
-2011-12-09 13:00:00,12610.0
-2011-12-09 14:00:00,12539.0
-2011-12-09 15:00:00,12446.0
-2011-12-09 16:00:00,12375.0
-2011-12-09 17:00:00,12405.0
-2011-12-09 18:00:00,13367.0
-2011-12-09 19:00:00,14066.0
-2011-12-09 20:00:00,13947.0
-2011-12-09 21:00:00,13742.0
-2011-12-09 22:00:00,13478.0
-2011-12-09 23:00:00,13098.0
-2011-12-10 00:00:00,12315.0
-2011-12-08 01:00:00,10947.0
-2011-12-08 02:00:00,10329.0
-2011-12-08 03:00:00,10000.0
-2011-12-08 04:00:00,9807.0
-2011-12-08 05:00:00,9784.0
-2011-12-08 06:00:00,10039.0
-2011-12-08 07:00:00,10798.0
-2011-12-08 08:00:00,12064.0
-2011-12-08 09:00:00,12629.0
-2011-12-08 10:00:00,12718.0
-2011-12-08 11:00:00,12691.0
-2011-12-08 12:00:00,12688.0
-2011-12-08 13:00:00,12585.0
-2011-12-08 14:00:00,12481.0
-2011-12-08 15:00:00,12390.0
-2011-12-08 16:00:00,12307.0
-2011-12-08 17:00:00,12493.0
-2011-12-08 18:00:00,13399.0
-2011-12-08 19:00:00,13910.0
-2011-12-08 20:00:00,13781.0
-2011-12-08 21:00:00,13567.0
-2011-12-08 22:00:00,13230.0
-2011-12-08 23:00:00,12705.0
-2011-12-09 00:00:00,11738.0
-2011-12-07 01:00:00,10740.0
-2011-12-07 02:00:00,10122.0
-2011-12-07 03:00:00,9758.0
-2011-12-07 04:00:00,9520.0
-2011-12-07 05:00:00,9530.0
-2011-12-07 06:00:00,9791.0
-2011-12-07 07:00:00,10570.0
-2011-12-07 08:00:00,11858.0
-2011-12-07 09:00:00,12370.0
-2011-12-07 10:00:00,12497.0
-2011-12-07 11:00:00,12468.0
-2011-12-07 12:00:00,12522.0
-2011-12-07 13:00:00,12519.0
-2011-12-07 14:00:00,12350.0
-2011-12-07 15:00:00,12334.0
-2011-12-07 16:00:00,12249.0
-2011-12-07 17:00:00,12398.0
-2011-12-07 18:00:00,13331.0
-2011-12-07 19:00:00,14021.0
-2011-12-07 20:00:00,13890.0
-2011-12-07 21:00:00,13700.0
-2011-12-07 22:00:00,13392.0
-2011-12-07 23:00:00,12818.0
-2011-12-08 00:00:00,11873.0
-2011-12-06 01:00:00,10443.0
-2011-12-06 02:00:00,9834.0
-2011-12-06 03:00:00,9495.0
-2011-12-06 04:00:00,9320.0
-2011-12-06 05:00:00,9296.0
-2011-12-06 06:00:00,9590.0
-2011-12-06 07:00:00,10343.0
-2011-12-06 08:00:00,11633.0
-2011-12-06 09:00:00,12231.0
-2011-12-06 10:00:00,12414.0
-2011-12-06 11:00:00,12490.0
-2011-12-06 12:00:00,12560.0
-2011-12-06 13:00:00,12571.0
-2011-12-06 14:00:00,12495.0
-2011-12-06 15:00:00,12450.0
-2011-12-06 16:00:00,12339.0
-2011-12-06 17:00:00,12356.0
-2011-12-06 18:00:00,13219.0
-2011-12-06 19:00:00,13910.0
-2011-12-06 20:00:00,13774.0
-2011-12-06 21:00:00,13584.0
-2011-12-06 22:00:00,13301.0
-2011-12-06 23:00:00,12709.0
-2011-12-07 00:00:00,11701.0
-2011-12-05 01:00:00,9716.0
-2011-12-05 02:00:00,9266.0
-2011-12-05 03:00:00,9014.0
-2011-12-05 04:00:00,8926.0
-2011-12-05 05:00:00,8947.0
-2011-12-05 06:00:00,9268.0
-2011-12-05 07:00:00,10057.0
-2011-12-05 08:00:00,11419.0
-2011-12-05 09:00:00,11991.0
-2011-12-05 10:00:00,12165.0
-2011-12-05 11:00:00,12268.0
-2011-12-05 12:00:00,12356.0
-2011-12-05 13:00:00,12357.0
-2011-12-05 14:00:00,12352.0
-2011-12-05 15:00:00,12409.0
-2011-12-05 16:00:00,12411.0
-2011-12-05 17:00:00,12547.0
-2011-12-05 18:00:00,13304.0
-2011-12-05 19:00:00,13694.0
-2011-12-05 20:00:00,13485.0
-2011-12-05 21:00:00,13253.0
-2011-12-05 22:00:00,12955.0
-2011-12-05 23:00:00,12382.0
-2011-12-06 00:00:00,11383.0
-2011-12-04 01:00:00,9800.0
-2011-12-04 02:00:00,9175.0
-2011-12-04 03:00:00,8715.0
-2011-12-04 04:00:00,8542.0
-2011-12-04 05:00:00,8409.0
-2011-12-04 06:00:00,8375.0
-2011-12-04 07:00:00,8449.0
-2011-12-04 08:00:00,8703.0
-2011-12-04 09:00:00,8892.0
-2011-12-04 10:00:00,9218.0
-2011-12-04 11:00:00,9583.0
-2011-12-04 12:00:00,9863.0
-2011-12-04 13:00:00,10022.0
-2011-12-04 14:00:00,10165.0
-2011-12-04 15:00:00,10237.0
-2011-12-04 16:00:00,10322.0
-2011-12-04 17:00:00,10588.0
-2011-12-04 18:00:00,11359.0
-2011-12-04 19:00:00,11862.0
-2011-12-04 20:00:00,11844.0
-2011-12-04 21:00:00,11765.0
-2011-12-04 22:00:00,11516.0
-2011-12-04 23:00:00,11114.0
-2011-12-05 00:00:00,10400.0
-2011-12-03 01:00:00,10615.0
-2011-12-03 02:00:00,9917.0
-2011-12-03 03:00:00,9494.0
-2011-12-03 04:00:00,9195.0
-2011-12-03 05:00:00,9041.0
-2011-12-03 06:00:00,9014.0
-2011-12-03 07:00:00,9327.0
-2011-12-03 08:00:00,9808.0
-2011-12-03 09:00:00,10255.0
-2011-12-03 10:00:00,10549.0
-2011-12-03 11:00:00,10781.0
-2011-12-03 12:00:00,10884.0
-2011-12-03 13:00:00,10882.0
-2011-12-03 14:00:00,10786.0
-2011-12-03 15:00:00,10483.0
-2011-12-03 16:00:00,10304.0
-2011-12-03 17:00:00,10241.0
-2011-12-03 18:00:00,11142.0
-2011-12-03 19:00:00,11710.0
-2011-12-03 20:00:00,11689.0
-2011-12-03 21:00:00,11542.0
-2011-12-03 22:00:00,11358.0
-2011-12-03 23:00:00,11018.0
-2011-12-04 00:00:00,10488.0
-2011-12-02 01:00:00,10471.0
-2011-12-02 02:00:00,9923.0
-2011-12-02 03:00:00,9631.0
-2011-12-02 04:00:00,9434.0
-2011-12-02 05:00:00,9421.0
-2011-12-02 06:00:00,9650.0
-2011-12-02 07:00:00,10371.0
-2011-12-02 08:00:00,11618.0
-2011-12-02 09:00:00,12095.0
-2011-12-02 10:00:00,12174.0
-2011-12-02 11:00:00,12216.0
-2011-12-02 12:00:00,12172.0
-2011-12-02 13:00:00,12100.0
-2011-12-02 14:00:00,11925.0
-2011-12-02 15:00:00,11909.0
-2011-12-02 16:00:00,11811.0
-2011-12-02 17:00:00,11830.0
-2011-12-02 18:00:00,12647.0
-2011-12-02 19:00:00,13239.0
-2011-12-02 20:00:00,13121.0
-2011-12-02 21:00:00,12910.0
-2011-12-02 22:00:00,12627.0
-2011-12-02 23:00:00,12242.0
-2011-12-03 00:00:00,11475.0
-2011-12-01 01:00:00,10543.0
-2011-12-01 02:00:00,9986.0
-2011-12-01 03:00:00,9688.0
-2011-12-01 04:00:00,9476.0
-2011-12-01 05:00:00,9466.0
-2011-12-01 06:00:00,9742.0
-2011-12-01 07:00:00,10479.0
-2011-12-01 08:00:00,11728.0
-2011-12-01 09:00:00,12176.0
-2011-12-01 10:00:00,12288.0
-2011-12-01 11:00:00,12291.0
-2011-12-01 12:00:00,12286.0
-2011-12-01 13:00:00,12130.0
-2011-12-01 14:00:00,12038.0
-2011-12-01 15:00:00,11984.0
-2011-12-01 16:00:00,11982.0
-2011-12-01 17:00:00,12204.0
-2011-12-01 18:00:00,12906.0
-2011-12-01 19:00:00,13361.0
-2011-12-01 20:00:00,13269.0
-2011-12-01 21:00:00,13053.0
-2011-12-01 22:00:00,12740.0
-2011-12-01 23:00:00,12219.0
-2011-12-02 00:00:00,11298.0
-2011-11-30 01:00:00,10646.0
-2011-11-30 02:00:00,10080.0
-2011-11-30 03:00:00,9803.0
-2011-11-30 04:00:00,9658.0
-2011-11-30 05:00:00,9636.0
-2011-11-30 06:00:00,9908.0
-2011-11-30 07:00:00,10679.0
-2011-11-30 08:00:00,11919.0
-2011-11-30 09:00:00,12374.0
-2011-11-30 10:00:00,12448.0
-2011-11-30 11:00:00,12412.0
-2011-11-30 12:00:00,12356.0
-2011-11-30 13:00:00,12286.0
-2011-11-30 14:00:00,12118.0
-2011-11-30 15:00:00,12028.0
-2011-11-30 16:00:00,11901.0
-2011-11-30 17:00:00,11987.0
-2011-11-30 18:00:00,12831.0
-2011-11-30 19:00:00,13499.0
-2011-11-30 20:00:00,13379.0
-2011-11-30 21:00:00,13200.0
-2011-11-30 22:00:00,12912.0
-2011-11-30 23:00:00,12346.0
-2011-12-01 00:00:00,11408.0
-2011-11-29 01:00:00,10470.0
-2011-11-29 02:00:00,9879.0
-2011-11-29 03:00:00,9541.0
-2011-11-29 04:00:00,9353.0
-2011-11-29 05:00:00,9347.0
-2011-11-29 06:00:00,9572.0
-2011-11-29 07:00:00,10335.0
-2011-11-29 08:00:00,11618.0
-2011-11-29 09:00:00,12253.0
-2011-11-29 10:00:00,12387.0
-2011-11-29 11:00:00,12505.0
-2011-11-29 12:00:00,12568.0
-2011-11-29 13:00:00,12555.0
-2011-11-29 14:00:00,12458.0
-2011-11-29 15:00:00,12477.0
-2011-11-29 16:00:00,12430.0
-2011-11-29 17:00:00,12454.0
-2011-11-29 18:00:00,13153.0
-2011-11-29 19:00:00,13678.0
-2011-11-29 20:00:00,13531.0
-2011-11-29 21:00:00,13327.0
-2011-11-29 22:00:00,12984.0
-2011-11-29 23:00:00,12419.0
-2011-11-30 00:00:00,11519.0
-2011-11-28 01:00:00,9555.0
-2011-11-28 02:00:00,9090.0
-2011-11-28 03:00:00,8902.0
-2011-11-28 04:00:00,8741.0
-2011-11-28 05:00:00,8812.0
-2011-11-28 06:00:00,9075.0
-2011-11-28 07:00:00,9963.0
-2011-11-28 08:00:00,11258.0
-2011-11-28 09:00:00,11894.0
-2011-11-28 10:00:00,12029.0
-2011-11-28 11:00:00,12145.0
-2011-11-28 12:00:00,12166.0
-2011-11-28 13:00:00,12232.0
-2011-11-28 14:00:00,12206.0
-2011-11-28 15:00:00,12284.0
-2011-11-28 16:00:00,12265.0
-2011-11-28 17:00:00,12329.0
-2011-11-28 18:00:00,13027.0
-2011-11-28 19:00:00,13486.0
-2011-11-28 20:00:00,13326.0
-2011-11-28 21:00:00,13117.0
-2011-11-28 22:00:00,12824.0
-2011-11-28 23:00:00,12248.0
-2011-11-29 00:00:00,11322.0
-2011-11-27 01:00:00,9110.0
-2011-11-27 02:00:00,8628.0
-2011-11-27 03:00:00,8262.0
-2011-11-27 04:00:00,8068.0
-2011-11-27 05:00:00,7987.0
-2011-11-27 06:00:00,8064.0
-2011-11-27 07:00:00,8182.0
-2011-11-27 08:00:00,8525.0
-2011-11-27 09:00:00,8720.0
-2011-11-27 10:00:00,9128.0
-2011-11-27 11:00:00,9530.0
-2011-11-27 12:00:00,9822.0
-2011-11-27 13:00:00,9991.0
-2011-11-27 14:00:00,10132.0
-2011-11-27 15:00:00,10172.0
-2011-11-27 16:00:00,10262.0
-2011-11-27 17:00:00,10454.0
-2011-11-27 18:00:00,11161.0
-2011-11-27 19:00:00,11606.0
-2011-11-27 20:00:00,11574.0
-2011-11-27 21:00:00,11477.0
-2011-11-27 22:00:00,11219.0
-2011-11-27 23:00:00,10789.0
-2011-11-28 00:00:00,10146.0
-2011-11-26 01:00:00,8970.0
-2011-11-26 02:00:00,8441.0
-2011-11-26 03:00:00,8162.0
-2011-11-26 04:00:00,7919.0
-2011-11-26 05:00:00,7873.0
-2011-11-26 06:00:00,7873.0
-2011-11-26 07:00:00,8106.0
-2011-11-26 08:00:00,8501.0
-2011-11-26 09:00:00,8792.0
-2011-11-26 10:00:00,9253.0
-2011-11-26 11:00:00,9601.0
-2011-11-26 12:00:00,9920.0
-2011-11-26 13:00:00,10030.0
-2011-11-26 14:00:00,10085.0
-2011-11-26 15:00:00,10006.0
-2011-11-26 16:00:00,9962.0
-2011-11-26 17:00:00,10058.0
-2011-11-26 18:00:00,10590.0
-2011-11-26 19:00:00,10903.0
-2011-11-26 20:00:00,10838.0
-2011-11-26 21:00:00,10764.0
-2011-11-26 22:00:00,10505.0
-2011-11-26 23:00:00,10258.0
-2011-11-27 00:00:00,9763.0
-2011-11-25 01:00:00,8804.0
-2011-11-25 02:00:00,8450.0
-2011-11-25 03:00:00,8242.0
-2011-11-25 04:00:00,8110.0
-2011-11-25 05:00:00,8108.0
-2011-11-25 06:00:00,8284.0
-2011-11-25 07:00:00,8704.0
-2011-11-25 08:00:00,9181.0
-2011-11-25 09:00:00,9246.0
-2011-11-25 10:00:00,9427.0
-2011-11-25 11:00:00,9587.0
-2011-11-25 12:00:00,9636.0
-2011-11-25 13:00:00,9650.0
-2011-11-25 14:00:00,9568.0
-2011-11-25 15:00:00,9486.0
-2011-11-25 16:00:00,9548.0
-2011-11-25 17:00:00,9658.0
-2011-11-25 18:00:00,10523.0
-2011-11-25 19:00:00,10991.0
-2011-11-25 20:00:00,10843.0
-2011-11-25 21:00:00,10673.0
-2011-11-25 22:00:00,10409.0
-2011-11-25 23:00:00,10120.0
-2011-11-26 00:00:00,9556.0
-2011-11-24 01:00:00,9766.0
-2011-11-24 02:00:00,9161.0
-2011-11-24 03:00:00,8802.0
-2011-11-24 04:00:00,8542.0
-2011-11-24 05:00:00,8382.0
-2011-11-24 06:00:00,8395.0
-2011-11-24 07:00:00,8547.0
-2011-11-24 08:00:00,8774.0
-2011-11-24 09:00:00,8827.0
-2011-11-24 10:00:00,9096.0
-2011-11-24 11:00:00,9436.0
-2011-11-24 12:00:00,9659.0
-2011-11-24 13:00:00,9752.0
-2011-11-24 14:00:00,9673.0
-2011-11-24 15:00:00,9513.0
-2011-11-24 16:00:00,9299.0
-2011-11-24 17:00:00,9195.0
-2011-11-24 18:00:00,9571.0
-2011-11-24 19:00:00,9883.0
-2011-11-24 20:00:00,9777.0
-2011-11-24 21:00:00,9716.0
-2011-11-24 22:00:00,9640.0
-2011-11-24 23:00:00,9520.0
-2011-11-25 00:00:00,9223.0
-2011-11-23 01:00:00,10065.0
-2011-11-23 02:00:00,9524.0
-2011-11-23 03:00:00,9181.0
-2011-11-23 04:00:00,8995.0
-2011-11-23 05:00:00,8969.0
-2011-11-23 06:00:00,9226.0
-2011-11-23 07:00:00,9936.0
-2011-11-23 08:00:00,10926.0
-2011-11-23 09:00:00,11383.0
-2011-11-23 10:00:00,11672.0
-2011-11-23 11:00:00,11819.0
-2011-11-23 12:00:00,11847.0
-2011-11-23 13:00:00,11754.0
-2011-11-23 14:00:00,11551.0
-2011-11-23 15:00:00,11451.0
-2011-11-23 16:00:00,11291.0
-2011-11-23 17:00:00,11176.0
-2011-11-23 18:00:00,11737.0
-2011-11-23 19:00:00,12366.0
-2011-11-23 20:00:00,12178.0
-2011-11-23 21:00:00,11925.0
-2011-11-23 22:00:00,11677.0
-2011-11-23 23:00:00,11211.0
-2011-11-24 00:00:00,10557.0
-2011-11-22 01:00:00,9879.0
-2011-11-22 02:00:00,9363.0
-2011-11-22 03:00:00,9033.0
-2011-11-22 04:00:00,8832.0
-2011-11-22 05:00:00,8793.0
-2011-11-22 06:00:00,9032.0
-2011-11-22 07:00:00,9747.0
-2011-11-22 08:00:00,10938.0
-2011-11-22 09:00:00,11712.0
-2011-11-22 10:00:00,12020.0
-2011-11-22 11:00:00,12179.0
-2011-11-22 12:00:00,12323.0
-2011-11-22 13:00:00,12268.0
-2011-11-22 14:00:00,12290.0
-2011-11-22 15:00:00,12292.0
-2011-11-22 16:00:00,12252.0
-2011-11-22 17:00:00,12294.0
-2011-11-22 18:00:00,12773.0
-2011-11-22 19:00:00,13016.0
-2011-11-22 20:00:00,12774.0
-2011-11-22 21:00:00,12494.0
-2011-11-22 22:00:00,12144.0
-2011-11-22 23:00:00,11641.0
-2011-11-23 00:00:00,10862.0
-2011-11-21 01:00:00,9393.0
-2011-11-21 02:00:00,8975.0
-2011-11-21 03:00:00,8760.0
-2011-11-21 04:00:00,8660.0
-2011-11-21 05:00:00,8691.0
-2011-11-21 06:00:00,8971.0
-2011-11-21 07:00:00,9775.0
-2011-11-21 08:00:00,10939.0
-2011-11-21 09:00:00,11529.0
-2011-11-21 10:00:00,11796.0
-2011-11-21 11:00:00,11882.0
-2011-11-21 12:00:00,11938.0
-2011-11-21 13:00:00,11850.0
-2011-11-21 14:00:00,11709.0
-2011-11-21 15:00:00,11702.0
-2011-11-21 16:00:00,11618.0
-2011-11-21 17:00:00,11710.0
-2011-11-21 18:00:00,12370.0
-2011-11-21 19:00:00,12812.0
-2011-11-21 20:00:00,12604.0
-2011-11-21 21:00:00,12358.0
-2011-11-21 22:00:00,12054.0
-2011-11-21 23:00:00,11503.0
-2011-11-22 00:00:00,10693.0
-2011-11-20 01:00:00,9203.0
-2011-11-20 02:00:00,8709.0
-2011-11-20 03:00:00,8418.0
-2011-11-20 04:00:00,8272.0
-2011-11-20 05:00:00,8139.0
-2011-11-20 06:00:00,8160.0
-2011-11-20 07:00:00,8347.0
-2011-11-20 08:00:00,8614.0
-2011-11-20 09:00:00,8630.0
-2011-11-20 10:00:00,8980.0
-2011-11-20 11:00:00,9330.0
-2011-11-20 12:00:00,9599.0
-2011-11-20 13:00:00,9643.0
-2011-11-20 14:00:00,9789.0
-2011-11-20 15:00:00,9855.0
-2011-11-20 16:00:00,9919.0
-2011-11-20 17:00:00,10051.0
-2011-11-20 18:00:00,10739.0
-2011-11-20 19:00:00,11243.0
-2011-11-20 20:00:00,11244.0
-2011-11-20 21:00:00,11107.0
-2011-11-20 22:00:00,10891.0
-2011-11-20 23:00:00,10508.0
-2011-11-21 00:00:00,9950.0
-2011-11-19 01:00:00,10117.0
-2011-11-19 02:00:00,9514.0
-2011-11-19 03:00:00,9149.0
-2011-11-19 04:00:00,8903.0
-2011-11-19 05:00:00,8788.0
-2011-11-19 06:00:00,8873.0
-2011-11-19 07:00:00,9133.0
-2011-11-19 08:00:00,9646.0
-2011-11-19 09:00:00,9946.0
-2011-11-19 10:00:00,10383.0
-2011-11-19 11:00:00,10691.0
-2011-11-19 12:00:00,10784.0
-2011-11-19 13:00:00,10571.0
-2011-11-19 14:00:00,10388.0
-2011-11-19 15:00:00,10376.0
-2011-11-19 16:00:00,10290.0
-2011-11-19 17:00:00,10287.0
-2011-11-19 18:00:00,10794.0
-2011-11-19 19:00:00,11209.0
-2011-11-19 20:00:00,11118.0
-2011-11-19 21:00:00,10886.0
-2011-11-19 22:00:00,10693.0
-2011-11-19 23:00:00,10330.0
-2011-11-20 00:00:00,9766.0
-2011-11-18 01:00:00,10613.0
-2011-11-18 02:00:00,10120.0
-2011-11-18 03:00:00,9835.0
-2011-11-18 04:00:00,9655.0
-2011-11-18 05:00:00,9656.0
-2011-11-18 06:00:00,9886.0
-2011-11-18 07:00:00,10629.0
-2011-11-18 08:00:00,11720.0
-2011-11-18 09:00:00,12129.0
-2011-11-18 10:00:00,12220.0
-2011-11-18 11:00:00,12206.0
-2011-11-18 12:00:00,12231.0
-2011-11-18 13:00:00,12130.0
-2011-11-18 14:00:00,11998.0
-2011-11-18 15:00:00,11921.0
-2011-11-18 16:00:00,11706.0
-2011-11-18 17:00:00,11648.0
-2011-11-18 18:00:00,12170.0
-2011-11-18 19:00:00,12700.0
-2011-11-18 20:00:00,12528.0
-2011-11-18 21:00:00,12237.0
-2011-11-18 22:00:00,11929.0
-2011-11-18 23:00:00,11497.0
-2011-11-19 00:00:00,10812.0
-2011-11-17 01:00:00,10279.0
-2011-11-17 02:00:00,9795.0
-2011-11-17 03:00:00,9545.0
-2011-11-17 04:00:00,9367.0
-2011-11-17 05:00:00,9379.0
-2011-11-17 06:00:00,9658.0
-2011-11-17 07:00:00,10459.0
-2011-11-17 08:00:00,11604.0
-2011-11-17 09:00:00,12056.0
-2011-11-17 10:00:00,12195.0
-2011-11-17 11:00:00,12285.0
-2011-11-17 12:00:00,12331.0
-2011-11-17 13:00:00,12280.0
-2011-11-17 14:00:00,12196.0
-2011-11-17 15:00:00,12191.0
-2011-11-17 16:00:00,12073.0
-2011-11-17 17:00:00,12060.0
-2011-11-17 18:00:00,12638.0
-2011-11-17 19:00:00,13235.0
-2011-11-17 20:00:00,13171.0
-2011-11-17 21:00:00,12982.0
-2011-11-17 22:00:00,12704.0
-2011-11-17 23:00:00,12186.0
-2011-11-18 00:00:00,11400.0
-2011-11-16 01:00:00,9626.0
-2011-11-16 02:00:00,9160.0
-2011-11-16 03:00:00,8902.0
-2011-11-16 04:00:00,8745.0
-2011-11-16 05:00:00,8749.0
-2011-11-16 06:00:00,9050.0
-2011-11-16 07:00:00,9850.0
-2011-11-16 08:00:00,11063.0
-2011-11-16 09:00:00,11563.0
-2011-11-16 10:00:00,11783.0
-2011-11-16 11:00:00,11937.0
-2011-11-16 12:00:00,11990.0
-2011-11-16 13:00:00,11966.0
-2011-11-16 14:00:00,11925.0
-2011-11-16 15:00:00,11892.0
-2011-11-16 16:00:00,11790.0
-2011-11-16 17:00:00,11786.0
-2011-11-16 18:00:00,12336.0
-2011-11-16 19:00:00,12978.0
-2011-11-16 20:00:00,12810.0
-2011-11-16 21:00:00,12622.0
-2011-11-16 22:00:00,12329.0
-2011-11-16 23:00:00,11825.0
-2011-11-17 00:00:00,11040.0
-2011-11-15 01:00:00,9605.0
-2011-11-15 02:00:00,9095.0
-2011-11-15 03:00:00,8841.0
-2011-11-15 04:00:00,8689.0
-2011-11-15 05:00:00,8691.0
-2011-11-15 06:00:00,8978.0
-2011-11-15 07:00:00,9740.0
-2011-11-15 08:00:00,10898.0
-2011-11-15 09:00:00,11339.0
-2011-11-15 10:00:00,11455.0
-2011-11-15 11:00:00,11533.0
-2011-11-15 12:00:00,11588.0
-2011-11-15 13:00:00,11598.0
-2011-11-15 14:00:00,11536.0
-2011-11-15 15:00:00,11513.0
-2011-11-15 16:00:00,11427.0
-2011-11-15 17:00:00,11351.0
-2011-11-15 18:00:00,11733.0
-2011-11-15 19:00:00,12318.0
-2011-11-15 20:00:00,12200.0
-2011-11-15 21:00:00,11986.0
-2011-11-15 22:00:00,11677.0
-2011-11-15 23:00:00,11141.0
-2011-11-16 00:00:00,10349.0
-2011-11-14 01:00:00,8792.0
-2011-11-14 02:00:00,8423.0
-2011-11-14 03:00:00,8243.0
-2011-11-14 04:00:00,8129.0
-2011-11-14 05:00:00,8215.0
-2011-11-14 06:00:00,8498.0
-2011-11-14 07:00:00,9383.0
-2011-11-14 08:00:00,10601.0
-2011-11-14 09:00:00,11202.0
-2011-11-14 10:00:00,11485.0
-2011-11-14 11:00:00,11673.0
-2011-11-14 12:00:00,11841.0
-2011-11-14 13:00:00,11829.0
-2011-11-14 14:00:00,11791.0
-2011-11-14 15:00:00,11718.0
-2011-11-14 16:00:00,11528.0
-2011-11-14 17:00:00,11433.0
-2011-11-14 18:00:00,11954.0
-2011-11-14 19:00:00,12513.0
-2011-11-14 20:00:00,12333.0
-2011-11-14 21:00:00,12100.0
-2011-11-14 22:00:00,11754.0
-2011-11-14 23:00:00,11235.0
-2011-11-15 00:00:00,10404.0
-2011-11-13 01:00:00,9151.0
-2011-11-13 02:00:00,8673.0
-2011-11-13 03:00:00,8419.0
-2011-11-13 04:00:00,8140.0
-2011-11-13 05:00:00,8067.0
-2011-11-13 06:00:00,8054.0
-2011-11-13 07:00:00,8162.0
-2011-11-13 08:00:00,8341.0
-2011-11-13 09:00:00,8402.0
-2011-11-13 10:00:00,8767.0
-2011-11-13 11:00:00,9058.0
-2011-11-13 12:00:00,9306.0
-2011-11-13 13:00:00,9455.0
-2011-11-13 14:00:00,9415.0
-2011-11-13 15:00:00,9399.0
-2011-11-13 16:00:00,9329.0
-2011-11-13 17:00:00,9377.0
-2011-11-13 18:00:00,9850.0
-2011-11-13 19:00:00,10672.0
-2011-11-13 20:00:00,10682.0
-2011-11-13 21:00:00,10545.0
-2011-11-13 22:00:00,10337.0
-2011-11-13 23:00:00,9937.0
-2011-11-14 00:00:00,9376.0
-2011-11-12 01:00:00,10047.0
-2011-11-12 02:00:00,9577.0
-2011-11-12 03:00:00,9214.0
-2011-11-12 04:00:00,9021.0
-2011-11-12 05:00:00,8917.0
-2011-11-12 06:00:00,8979.0
-2011-11-12 07:00:00,9287.0
-2011-11-12 08:00:00,9641.0
-2011-11-12 09:00:00,9817.0
-2011-11-12 10:00:00,10042.0
-2011-11-12 11:00:00,10253.0
-2011-11-12 12:00:00,10255.0
-2011-11-12 13:00:00,10202.0
-2011-11-12 14:00:00,10013.0
-2011-11-12 15:00:00,9877.0
-2011-11-12 16:00:00,9732.0
-2011-11-12 17:00:00,9816.0
-2011-11-12 18:00:00,10399.0
-2011-11-12 19:00:00,11033.0
-2011-11-12 20:00:00,10958.0
-2011-11-12 21:00:00,10786.0
-2011-11-12 22:00:00,10523.0
-2011-11-12 23:00:00,10218.0
-2011-11-13 00:00:00,9703.0
-2011-11-11 01:00:00,10312.0
-2011-11-11 02:00:00,9799.0
-2011-11-11 03:00:00,9527.0
-2011-11-11 04:00:00,9325.0
-2011-11-11 05:00:00,9305.0
-2011-11-11 06:00:00,9536.0
-2011-11-11 07:00:00,10192.0
-2011-11-11 08:00:00,11116.0
-2011-11-11 09:00:00,11555.0
-2011-11-11 10:00:00,11908.0
-2011-11-11 11:00:00,12108.0
-2011-11-11 12:00:00,12178.0
-2011-11-11 13:00:00,12109.0
-2011-11-11 14:00:00,11929.0
-2011-11-11 15:00:00,11839.0
-2011-11-11 16:00:00,11623.0
-2011-11-11 17:00:00,11480.0
-2011-11-11 18:00:00,11896.0
-2011-11-11 19:00:00,12590.0
-2011-11-11 20:00:00,12400.0
-2011-11-11 21:00:00,12176.0
-2011-11-11 22:00:00,11854.0
-2011-11-11 23:00:00,11388.0
-2011-11-12 00:00:00,10785.0
-2011-11-10 01:00:00,10075.0
-2011-11-10 02:00:00,9549.0
-2011-11-10 03:00:00,9277.0
-2011-11-10 04:00:00,9117.0
-2011-11-10 05:00:00,9126.0
-2011-11-10 06:00:00,9404.0
-2011-11-10 07:00:00,10155.0
-2011-11-10 08:00:00,11312.0
-2011-11-10 09:00:00,11843.0
-2011-11-10 10:00:00,12105.0
-2011-11-10 11:00:00,12185.0
-2011-11-10 12:00:00,12407.0
-2011-11-10 13:00:00,12406.0
-2011-11-10 14:00:00,12346.0
-2011-11-10 15:00:00,12326.0
-2011-11-10 16:00:00,12215.0
-2011-11-10 17:00:00,12192.0
-2011-11-10 18:00:00,12588.0
-2011-11-10 19:00:00,13088.0
-2011-11-10 20:00:00,12886.0
-2011-11-10 21:00:00,12650.0
-2011-11-10 22:00:00,12298.0
-2011-11-10 23:00:00,11801.0
-2011-11-11 00:00:00,11024.0
-2011-11-09 01:00:00,9667.0
-2011-11-09 02:00:00,9169.0
-2011-11-09 03:00:00,8853.0
-2011-11-09 04:00:00,8678.0
-2011-11-09 05:00:00,8588.0
-2011-11-09 06:00:00,8834.0
-2011-11-09 07:00:00,9578.0
-2011-11-09 08:00:00,10867.0
-2011-11-09 09:00:00,11617.0
-2011-11-09 10:00:00,11770.0
-2011-11-09 11:00:00,11749.0
-2011-11-09 12:00:00,11831.0
-2011-11-09 13:00:00,11916.0
-2011-11-09 14:00:00,11905.0
-2011-11-09 15:00:00,11994.0
-2011-11-09 16:00:00,11969.0
-2011-11-09 17:00:00,12062.0
-2011-11-09 18:00:00,12579.0
-2011-11-09 19:00:00,13026.0
-2011-11-09 20:00:00,12809.0
-2011-11-09 21:00:00,12537.0
-2011-11-09 22:00:00,12177.0
-2011-11-09 23:00:00,11641.0
-2011-11-10 00:00:00,10838.0
-2011-11-08 01:00:00,9508.0
-2011-11-08 02:00:00,8967.0
-2011-11-08 03:00:00,8724.0
-2011-11-08 04:00:00,8544.0
-2011-11-08 05:00:00,8498.0
-2011-11-08 06:00:00,8724.0
-2011-11-08 07:00:00,9462.0
-2011-11-08 08:00:00,10670.0
-2011-11-08 09:00:00,11440.0
-2011-11-08 10:00:00,11905.0
-2011-11-08 11:00:00,12043.0
-2011-11-08 12:00:00,12146.0
-2011-11-08 13:00:00,12078.0
-2011-11-08 14:00:00,12041.0
-2011-11-08 15:00:00,12093.0
-2011-11-08 16:00:00,11967.0
-2011-11-08 17:00:00,12031.0
-2011-11-08 18:00:00,12477.0
-2011-11-08 19:00:00,12731.0
-2011-11-08 20:00:00,12483.0
-2011-11-08 21:00:00,12205.0
-2011-11-08 22:00:00,11848.0
-2011-11-08 23:00:00,11272.0
-2011-11-09 00:00:00,10424.0
-2011-11-07 01:00:00,8737.0
-2011-11-07 02:00:00,8366.0
-2011-11-07 03:00:00,8186.0
-2011-11-07 04:00:00,8058.0
-2011-11-07 05:00:00,8101.0
-2011-11-07 06:00:00,8358.0
-2011-11-07 07:00:00,9158.0
-2011-11-07 08:00:00,10396.0
-2011-11-07 09:00:00,11054.0
-2011-11-07 10:00:00,11349.0
-2011-11-07 11:00:00,11485.0
-2011-11-07 12:00:00,11663.0
-2011-11-07 13:00:00,11633.0
-2011-11-07 14:00:00,11596.0
-2011-11-07 15:00:00,11672.0
-2011-11-07 16:00:00,11550.0
-2011-11-07 17:00:00,11579.0
-2011-11-07 18:00:00,11985.0
-2011-11-07 19:00:00,12391.0
-2011-11-07 20:00:00,12198.0
-2011-11-07 21:00:00,11971.0
-2011-11-07 22:00:00,11591.0
-2011-11-07 23:00:00,11067.0
-2011-11-08 00:00:00,10276.0
-2011-11-06 01:00:00,9164.0
-2011-11-06 03:00:00,8298.0
-2011-11-06 04:00:00,8061.0
-2011-11-06 05:00:00,8045.0
-2011-11-06 06:00:00,8041.0
-2011-11-06 07:00:00,8266.0
-2011-11-06 08:00:00,8366.0
-2011-11-06 09:00:00,8574.0
-2011-11-06 10:00:00,8888.0
-2011-11-06 11:00:00,9126.0
-2011-11-06 12:00:00,9236.0
-2011-11-06 13:00:00,9403.0
-2011-11-06 14:00:00,9453.0
-2011-11-06 15:00:00,9534.0
-2011-11-06 16:00:00,9484.0
-2011-11-06 17:00:00,9588.0
-2011-11-06 18:00:00,10071.0
-2011-11-06 19:00:00,10750.0
-2011-11-06 20:00:00,10707.0
-2011-11-06 21:00:00,10597.0
-2011-11-06 22:00:00,10296.0
-2011-11-06 23:00:00,9861.0
-2011-11-07 00:00:00,9262.0
-2011-11-05 01:00:00,9781.0
-2011-11-05 02:00:00,9206.0
-2011-11-05 03:00:00,8922.0
-2011-11-05 04:00:00,8672.0
-2011-11-05 05:00:00,8600.0
-2011-11-05 06:00:00,8602.0
-2011-11-05 07:00:00,8945.0
-2011-11-05 08:00:00,9444.0
-2011-11-05 09:00:00,9879.0
-2011-11-05 10:00:00,10040.0
-2011-11-05 11:00:00,10199.0
-2011-11-05 12:00:00,10206.0
-2011-11-05 13:00:00,10171.0
-2011-11-05 14:00:00,9988.0
-2011-11-05 15:00:00,9792.0
-2011-11-05 16:00:00,9616.0
-2011-11-05 17:00:00,9522.0
-2011-11-05 18:00:00,9528.0
-2011-11-05 19:00:00,9857.0
-2011-11-05 20:00:00,10621.0
-2011-11-05 21:00:00,10539.0
-2011-11-05 22:00:00,10413.0
-2011-11-05 23:00:00,10124.0
-2011-11-06 00:00:00,9685.0
-2011-11-04 01:00:00,9861.0
-2011-11-04 02:00:00,9316.0
-2011-11-04 03:00:00,9008.0
-2011-11-04 04:00:00,8778.0
-2011-11-04 05:00:00,8752.0
-2011-11-04 06:00:00,8960.0
-2011-11-04 07:00:00,9648.0
-2011-11-04 08:00:00,10917.0
-2011-11-04 09:00:00,11612.0
-2011-11-04 10:00:00,11653.0
-2011-11-04 11:00:00,11658.0
-2011-11-04 12:00:00,11691.0
-2011-11-04 13:00:00,11626.0
-2011-11-04 14:00:00,11491.0
-2011-11-04 15:00:00,11468.0
-2011-11-04 16:00:00,11243.0
-2011-11-04 17:00:00,11088.0
-2011-11-04 18:00:00,11002.0
-2011-11-04 19:00:00,11137.0
-2011-11-04 20:00:00,11824.0
-2011-11-04 21:00:00,11727.0
-2011-11-04 22:00:00,11456.0
-2011-11-04 23:00:00,11107.0
-2011-11-05 00:00:00,10461.0
-2011-11-03 01:00:00,9509.0
-2011-11-03 02:00:00,9001.0
-2011-11-03 03:00:00,8690.0
-2011-11-03 04:00:00,8518.0
-2011-11-03 05:00:00,8452.0
-2011-11-03 06:00:00,8693.0
-2011-11-03 07:00:00,9405.0
-2011-11-03 08:00:00,10637.0
-2011-11-03 09:00:00,11661.0
-2011-11-03 10:00:00,11943.0
-2011-11-03 11:00:00,12106.0
-2011-11-03 12:00:00,12189.0
-2011-11-03 13:00:00,12192.0
-2011-11-03 14:00:00,12188.0
-2011-11-03 15:00:00,12192.0
-2011-11-03 16:00:00,12085.0
-2011-11-03 17:00:00,12021.0
-2011-11-03 18:00:00,12006.0
-2011-11-03 19:00:00,12247.0
-2011-11-03 20:00:00,12465.0
-2011-11-03 21:00:00,12283.0
-2011-11-03 22:00:00,11955.0
-2011-11-03 23:00:00,11418.0
-2011-11-04 00:00:00,10612.0
-2011-11-02 01:00:00,9496.0
-2011-11-02 02:00:00,8940.0
-2011-11-02 03:00:00,8623.0
-2011-11-02 04:00:00,8406.0
-2011-11-02 05:00:00,8362.0
-2011-11-02 06:00:00,8522.0
-2011-11-02 07:00:00,9224.0
-2011-11-02 08:00:00,10556.0
-2011-11-02 09:00:00,11270.0
-2011-11-02 10:00:00,11330.0
-2011-11-02 11:00:00,11454.0
-2011-11-02 12:00:00,11593.0
-2011-11-02 13:00:00,11638.0
-2011-11-02 14:00:00,11564.0
-2011-11-02 15:00:00,11596.0
-2011-11-02 16:00:00,11516.0
-2011-11-02 17:00:00,11411.0
-2011-11-02 18:00:00,11366.0
-2011-11-02 19:00:00,11637.0
-2011-11-02 20:00:00,12152.0
-2011-11-02 21:00:00,11981.0
-2011-11-02 22:00:00,11626.0
-2011-11-02 23:00:00,11101.0
-2011-11-03 00:00:00,10258.0
-2011-11-01 01:00:00,9614.0
-2011-11-01 02:00:00,9123.0
-2011-11-01 03:00:00,8842.0
-2011-11-01 04:00:00,8669.0
-2011-11-01 05:00:00,8655.0
-2011-11-01 06:00:00,8887.0
-2011-11-01 07:00:00,9605.0
-2011-11-01 08:00:00,10940.0
-2011-11-01 09:00:00,11670.0
-2011-11-01 10:00:00,11648.0
-2011-11-01 11:00:00,11627.0
-2011-11-01 12:00:00,11660.0
-2011-11-01 13:00:00,11587.0
-2011-11-01 14:00:00,11549.0
-2011-11-01 15:00:00,11549.0
-2011-11-01 16:00:00,11528.0
-2011-11-01 17:00:00,11459.0
-2011-11-01 18:00:00,11381.0
-2011-11-01 19:00:00,11535.0
-2011-11-01 20:00:00,12155.0
-2011-11-01 21:00:00,12044.0
-2011-11-01 22:00:00,11758.0
-2011-11-01 23:00:00,11178.0
-2011-11-02 00:00:00,10325.0
-2011-10-31 01:00:00,9009.0
-2011-10-31 02:00:00,8598.0
-2011-10-31 03:00:00,8367.0
-2011-10-31 04:00:00,8262.0
-2011-10-31 05:00:00,8281.0
-2011-10-31 06:00:00,8586.0
-2011-10-31 07:00:00,9371.0
-2011-10-31 08:00:00,10776.0
-2011-10-31 09:00:00,11477.0
-2011-10-31 10:00:00,11525.0
-2011-10-31 11:00:00,11482.0
-2011-10-31 12:00:00,11516.0
-2011-10-31 13:00:00,11493.0
-2011-10-31 14:00:00,11408.0
-2011-10-31 15:00:00,11465.0
-2011-10-31 16:00:00,11306.0
-2011-10-31 17:00:00,11233.0
-2011-10-31 18:00:00,11162.0
-2011-10-31 19:00:00,11338.0
-2011-10-31 20:00:00,11826.0
-2011-10-31 21:00:00,11782.0
-2011-10-31 22:00:00,11561.0
-2011-10-31 23:00:00,11116.0
-2011-11-01 00:00:00,10369.0
-2011-10-30 01:00:00,9158.0
-2011-10-30 02:00:00,8790.0
-2011-10-30 03:00:00,8515.0
-2011-10-30 04:00:00,8365.0
-2011-10-30 05:00:00,8218.0
-2011-10-30 06:00:00,8252.0
-2011-10-30 07:00:00,8333.0
-2011-10-30 08:00:00,8647.0
-2011-10-30 09:00:00,8841.0
-2011-10-30 10:00:00,9067.0
-2011-10-30 11:00:00,9288.0
-2011-10-30 12:00:00,9384.0
-2011-10-30 13:00:00,9346.0
-2011-10-30 14:00:00,9385.0
-2011-10-30 15:00:00,9391.0
-2011-10-30 16:00:00,9407.0
-2011-10-30 17:00:00,9627.0
-2011-10-30 18:00:00,9945.0
-2011-10-30 19:00:00,10322.0
-2011-10-30 20:00:00,10761.0
-2011-10-30 21:00:00,10718.0
-2011-10-30 22:00:00,10498.0
-2011-10-30 23:00:00,10160.0
-2011-10-31 00:00:00,9595.0
-2011-10-29 01:00:00,9577.0
-2011-10-29 02:00:00,9015.0
-2011-10-29 03:00:00,8694.0
-2011-10-29 04:00:00,8506.0
-2011-10-29 05:00:00,8426.0
-2011-10-29 06:00:00,8475.0
-2011-10-29 07:00:00,8757.0
-2011-10-29 08:00:00,9315.0
-2011-10-29 09:00:00,9636.0
-2011-10-29 10:00:00,9880.0
-2011-10-29 11:00:00,10033.0
-2011-10-29 12:00:00,10099.0
-2011-10-29 13:00:00,10054.0
-2011-10-29 14:00:00,9907.0
-2011-10-29 15:00:00,9742.0
-2011-10-29 16:00:00,9574.0
-2011-10-29 17:00:00,9544.0
-2011-10-29 18:00:00,9511.0
-2011-10-29 19:00:00,9814.0
-2011-10-29 20:00:00,10580.0
-2011-10-29 21:00:00,10629.0
-2011-10-29 22:00:00,10426.0
-2011-10-29 23:00:00,10206.0
-2011-10-30 00:00:00,9697.0
-2011-10-28 01:00:00,9791.0
-2011-10-28 02:00:00,9301.0
-2011-10-28 03:00:00,8972.0
-2011-10-28 04:00:00,8764.0
-2011-10-28 05:00:00,8719.0
-2011-10-28 06:00:00,8935.0
-2011-10-28 07:00:00,9645.0
-2011-10-28 08:00:00,10871.0
-2011-10-28 09:00:00,11574.0
-2011-10-28 10:00:00,11574.0
-2011-10-28 11:00:00,11530.0
-2011-10-28 12:00:00,11562.0
-2011-10-28 13:00:00,11466.0
-2011-10-28 14:00:00,11397.0
-2011-10-28 15:00:00,11323.0
-2011-10-28 16:00:00,11158.0
-2011-10-28 17:00:00,10988.0
-2011-10-28 18:00:00,10911.0
-2011-10-28 19:00:00,11080.0
-2011-10-28 20:00:00,11674.0
-2011-10-28 21:00:00,11576.0
-2011-10-28 22:00:00,11295.0
-2011-10-28 23:00:00,10939.0
-2011-10-29 00:00:00,10290.0
-2011-10-27 01:00:00,9546.0
-2011-10-27 02:00:00,9012.0
-2011-10-27 03:00:00,8747.0
-2011-10-27 04:00:00,8543.0
-2011-10-27 05:00:00,8452.0
-2011-10-27 06:00:00,8658.0
-2011-10-27 07:00:00,9380.0
-2011-10-27 08:00:00,10654.0
-2011-10-27 09:00:00,11467.0
-2011-10-27 10:00:00,11577.0
-2011-10-27 11:00:00,11609.0
-2011-10-27 12:00:00,11651.0
-2011-10-27 13:00:00,11565.0
-2011-10-27 14:00:00,11485.0
-2011-10-27 15:00:00,11497.0
-2011-10-27 16:00:00,11373.0
-2011-10-27 17:00:00,11255.0
-2011-10-27 18:00:00,11203.0
-2011-10-27 19:00:00,11394.0
-2011-10-27 20:00:00,12074.0
-2011-10-27 21:00:00,12080.0
-2011-10-27 22:00:00,11746.0
-2011-10-27 23:00:00,11327.0
-2011-10-28 00:00:00,10479.0
-2011-10-26 01:00:00,9381.0
-2011-10-26 02:00:00,8830.0
-2011-10-26 03:00:00,8512.0
-2011-10-26 04:00:00,8278.0
-2011-10-26 05:00:00,8242.0
-2011-10-26 06:00:00,8427.0
-2011-10-26 07:00:00,9065.0
-2011-10-26 08:00:00,10265.0
-2011-10-26 09:00:00,11182.0
-2011-10-26 10:00:00,11411.0
-2011-10-26 11:00:00,11545.0
-2011-10-26 12:00:00,11726.0
-2011-10-26 13:00:00,11731.0
-2011-10-26 14:00:00,11715.0
-2011-10-26 15:00:00,11776.0
-2011-10-26 16:00:00,11658.0
-2011-10-26 17:00:00,11648.0
-2011-10-26 18:00:00,11691.0
-2011-10-26 19:00:00,11898.0
-2011-10-26 20:00:00,12149.0
-2011-10-26 21:00:00,11978.0
-2011-10-26 22:00:00,11689.0
-2011-10-26 23:00:00,11168.0
-2011-10-27 00:00:00,10330.0
-2011-10-25 01:00:00,9413.0
-2011-10-25 02:00:00,8882.0
-2011-10-25 03:00:00,8580.0
-2011-10-25 04:00:00,8383.0
-2011-10-25 05:00:00,8326.0
-2011-10-25 06:00:00,8521.0
-2011-10-25 07:00:00,9213.0
-2011-10-25 08:00:00,10489.0
-2011-10-25 09:00:00,11217.0
-2011-10-25 10:00:00,11322.0
-2011-10-25 11:00:00,11479.0
-2011-10-25 12:00:00,11691.0
-2011-10-25 13:00:00,11760.0
-2011-10-25 14:00:00,11773.0
-2011-10-25 15:00:00,11797.0
-2011-10-25 16:00:00,11730.0
-2011-10-25 17:00:00,11627.0
-2011-10-25 18:00:00,11568.0
-2011-10-25 19:00:00,11836.0
-2011-10-25 20:00:00,12266.0
-2011-10-25 21:00:00,12140.0
-2011-10-25 22:00:00,11707.0
-2011-10-25 23:00:00,11106.0
-2011-10-26 00:00:00,10206.0
-2011-10-24 01:00:00,8684.0
-2011-10-24 02:00:00,8338.0
-2011-10-24 03:00:00,8081.0
-2011-10-24 04:00:00,7956.0
-2011-10-24 05:00:00,7922.0
-2011-10-24 06:00:00,8197.0
-2011-10-24 07:00:00,8888.0
-2011-10-24 08:00:00,10289.0
-2011-10-24 09:00:00,10924.0
-2011-10-24 10:00:00,11093.0
-2011-10-24 11:00:00,11250.0
-2011-10-24 12:00:00,11388.0
-2011-10-24 13:00:00,11449.0
-2011-10-24 14:00:00,11514.0
-2011-10-24 15:00:00,11540.0
-2011-10-24 16:00:00,11455.0
-2011-10-24 17:00:00,11335.0
-2011-10-24 18:00:00,11207.0
-2011-10-24 19:00:00,11242.0
-2011-10-24 20:00:00,11891.0
-2011-10-24 21:00:00,11845.0
-2011-10-24 22:00:00,11556.0
-2011-10-24 23:00:00,11035.0
-2011-10-25 00:00:00,10191.0
-2011-10-23 01:00:00,9083.0
-2011-10-23 02:00:00,8543.0
-2011-10-23 03:00:00,8234.0
-2011-10-23 04:00:00,8042.0
-2011-10-23 05:00:00,7979.0
-2011-10-23 06:00:00,7975.0
-2011-10-23 07:00:00,8239.0
-2011-10-23 08:00:00,8509.0
-2011-10-23 09:00:00,8603.0
-2011-10-23 10:00:00,8743.0
-2011-10-23 11:00:00,8934.0
-2011-10-23 12:00:00,9102.0
-2011-10-23 13:00:00,9257.0
-2011-10-23 14:00:00,9199.0
-2011-10-23 15:00:00,9274.0
-2011-10-23 16:00:00,9229.0
-2011-10-23 17:00:00,9246.0
-2011-10-23 18:00:00,9207.0
-2011-10-23 19:00:00,9489.0
-2011-10-23 20:00:00,10248.0
-2011-10-23 21:00:00,10430.0
-2011-10-23 22:00:00,10198.0
-2011-10-23 23:00:00,9817.0
-2011-10-24 00:00:00,9281.0
-2011-10-22 01:00:00,9773.0
-2011-10-22 02:00:00,9198.0
-2011-10-22 03:00:00,8753.0
-2011-10-22 04:00:00,8680.0
-2011-10-22 05:00:00,8576.0
-2011-10-22 06:00:00,8620.0
-2011-10-22 07:00:00,8890.0
-2011-10-22 08:00:00,9385.0
-2011-10-22 09:00:00,9580.0
-2011-10-22 10:00:00,9874.0
-2011-10-22 11:00:00,10075.0
-2011-10-22 12:00:00,10095.0
-2011-10-22 13:00:00,10097.0
-2011-10-22 14:00:00,9947.0
-2011-10-22 15:00:00,9848.0
-2011-10-22 16:00:00,9711.0
-2011-10-22 17:00:00,9638.0
-2011-10-22 18:00:00,9582.0
-2011-10-22 19:00:00,9671.0
-2011-10-22 20:00:00,10324.0
-2011-10-22 21:00:00,10351.0
-2011-10-22 22:00:00,10353.0
-2011-10-22 23:00:00,9995.0
-2011-10-23 00:00:00,9566.0
-2011-10-21 01:00:00,9851.0
-2011-10-21 02:00:00,9414.0
-2011-10-21 03:00:00,9078.0
-2011-10-21 04:00:00,8854.0
-2011-10-21 05:00:00,8803.0
-2011-10-21 06:00:00,9025.0
-2011-10-21 07:00:00,9731.0
-2011-10-21 08:00:00,11011.0
-2011-10-21 09:00:00,11539.0
-2011-10-21 10:00:00,11594.0
-2011-10-21 11:00:00,11594.0
-2011-10-21 12:00:00,11573.0
-2011-10-21 13:00:00,11554.0
-2011-10-21 14:00:00,11472.0
-2011-10-21 15:00:00,11384.0
-2011-10-21 16:00:00,11257.0
-2011-10-21 17:00:00,11036.0
-2011-10-21 18:00:00,10952.0
-2011-10-21 19:00:00,10908.0
-2011-10-21 20:00:00,11539.0
-2011-10-21 21:00:00,11555.0
-2011-10-21 22:00:00,11329.0
-2011-10-21 23:00:00,11054.0
-2011-10-22 00:00:00,10425.0
-2011-10-20 01:00:00,9825.0
-2011-10-20 02:00:00,9273.0
-2011-10-20 03:00:00,8987.0
-2011-10-20 04:00:00,8799.0
-2011-10-20 05:00:00,8725.0
-2011-10-20 06:00:00,8976.0
-2011-10-20 07:00:00,9676.0
-2011-10-20 08:00:00,10955.0
-2011-10-20 09:00:00,11743.0
-2011-10-20 10:00:00,11840.0
-2011-10-20 11:00:00,11983.0
-2011-10-20 12:00:00,12101.0
-2011-10-20 13:00:00,12098.0
-2011-10-20 14:00:00,12051.0
-2011-10-20 15:00:00,12024.0
-2011-10-20 16:00:00,11891.0
-2011-10-20 17:00:00,11766.0
-2011-10-20 18:00:00,11750.0
-2011-10-20 19:00:00,11916.0
-2011-10-20 20:00:00,12354.0
-2011-10-20 21:00:00,12281.0
-2011-10-20 22:00:00,11925.0
-2011-10-20 23:00:00,11443.0
-2011-10-21 00:00:00,10666.0
-2011-10-19 01:00:00,9554.0
-2011-10-19 02:00:00,9007.0
-2011-10-19 03:00:00,8693.0
-2011-10-19 04:00:00,8528.0
-2011-10-19 05:00:00,8460.0
-2011-10-19 06:00:00,8651.0
-2011-10-19 07:00:00,9391.0
-2011-10-19 08:00:00,10680.0
-2011-10-19 09:00:00,11436.0
-2011-10-19 10:00:00,11708.0
-2011-10-19 11:00:00,11763.0
-2011-10-19 12:00:00,11961.0
-2011-10-19 13:00:00,11953.0
-2011-10-19 14:00:00,11862.0
-2011-10-19 15:00:00,11888.0
-2011-10-19 16:00:00,11887.0
-2011-10-19 17:00:00,11919.0
-2011-10-19 18:00:00,12035.0
-2011-10-19 19:00:00,12215.0
-2011-10-19 20:00:00,12469.0
-2011-10-19 21:00:00,12328.0
-2011-10-19 22:00:00,12015.0
-2011-10-19 23:00:00,11490.0
-2011-10-20 00:00:00,10643.0
-2011-10-18 01:00:00,9402.0
-2011-10-18 02:00:00,8897.0
-2011-10-18 03:00:00,8599.0
-2011-10-18 04:00:00,8432.0
-2011-10-18 05:00:00,8390.0
-2011-10-18 06:00:00,8590.0
-2011-10-18 07:00:00,9289.0
-2011-10-18 08:00:00,10648.0
-2011-10-18 09:00:00,11329.0
-2011-10-18 10:00:00,11442.0
-2011-10-18 11:00:00,11566.0
-2011-10-18 12:00:00,11604.0
-2011-10-18 13:00:00,11576.0
-2011-10-18 14:00:00,11526.0
-2011-10-18 15:00:00,11512.0
-2011-10-18 16:00:00,11401.0
-2011-10-18 17:00:00,11536.0
-2011-10-18 18:00:00,11582.0
-2011-10-18 19:00:00,11731.0
-2011-10-18 20:00:00,12090.0
-2011-10-18 21:00:00,12019.0
-2011-10-18 22:00:00,11713.0
-2011-10-18 23:00:00,11165.0
-2011-10-19 00:00:00,10334.0
-2011-10-17 01:00:00,8596.0
-2011-10-17 02:00:00,8191.0
-2011-10-17 03:00:00,8027.0
-2011-10-17 04:00:00,7896.0
-2011-10-17 05:00:00,7934.0
-2011-10-17 06:00:00,8147.0
-2011-10-17 07:00:00,8958.0
-2011-10-17 08:00:00,10252.0
-2011-10-17 09:00:00,10939.0
-2011-10-17 10:00:00,11109.0
-2011-10-17 11:00:00,11202.0
-2011-10-17 12:00:00,11326.0
-2011-10-17 13:00:00,11385.0
-2011-10-17 14:00:00,11384.0
-2011-10-17 15:00:00,11410.0
-2011-10-17 16:00:00,11289.0
-2011-10-17 17:00:00,11153.0
-2011-10-17 18:00:00,11067.0
-2011-10-17 19:00:00,11183.0
-2011-10-17 20:00:00,11795.0
-2011-10-17 21:00:00,11853.0
-2011-10-17 22:00:00,11589.0
-2011-10-17 23:00:00,11037.0
-2011-10-18 00:00:00,10193.0
-2011-10-16 01:00:00,8785.0
-2011-10-16 02:00:00,8247.0
-2011-10-16 03:00:00,7950.0
-2011-10-16 04:00:00,7764.0
-2011-10-16 05:00:00,7645.0
-2011-10-16 06:00:00,7645.0
-2011-10-16 07:00:00,7746.0
-2011-10-16 08:00:00,8022.0
-2011-10-16 09:00:00,8291.0
-2011-10-16 10:00:00,8553.0
-2011-10-16 11:00:00,8847.0
-2011-10-16 12:00:00,9063.0
-2011-10-16 13:00:00,9128.0
-2011-10-16 14:00:00,9190.0
-2011-10-16 15:00:00,9108.0
-2011-10-16 16:00:00,9121.0
-2011-10-16 17:00:00,9050.0
-2011-10-16 18:00:00,9137.0
-2011-10-16 19:00:00,9173.0
-2011-10-16 20:00:00,9946.0
-2011-10-16 21:00:00,10259.0
-2011-10-16 22:00:00,10060.0
-2011-10-16 23:00:00,9753.0
-2011-10-17 00:00:00,9139.0
-2011-10-15 01:00:00,9383.0
-2011-10-15 02:00:00,8827.0
-2011-10-15 03:00:00,8433.0
-2011-10-15 04:00:00,8229.0
-2011-10-15 05:00:00,8101.0
-2011-10-15 06:00:00,8113.0
-2011-10-15 07:00:00,8366.0
-2011-10-15 08:00:00,8807.0
-2011-10-15 09:00:00,8972.0
-2011-10-15 10:00:00,9386.0
-2011-10-15 11:00:00,9619.0
-2011-10-15 12:00:00,9775.0
-2011-10-15 13:00:00,9784.0
-2011-10-15 14:00:00,9735.0
-2011-10-15 15:00:00,9619.0
-2011-10-15 16:00:00,9469.0
-2011-10-15 17:00:00,9430.0
-2011-10-15 18:00:00,9405.0
-2011-10-15 19:00:00,9463.0
-2011-10-15 20:00:00,10075.0
-2011-10-15 21:00:00,10240.0
-2011-10-15 22:00:00,10140.0
-2011-10-15 23:00:00,9827.0
-2011-10-16 00:00:00,9339.0
-2011-10-14 01:00:00,9500.0
-2011-10-14 02:00:00,8866.0
-2011-10-14 03:00:00,8543.0
-2011-10-14 04:00:00,8304.0
-2011-10-14 05:00:00,8270.0
-2011-10-14 06:00:00,8391.0
-2011-10-14 07:00:00,9027.0
-2011-10-14 08:00:00,10222.0
-2011-10-14 09:00:00,10754.0
-2011-10-14 10:00:00,10948.0
-2011-10-14 11:00:00,11095.0
-2011-10-14 12:00:00,11288.0
-2011-10-14 13:00:00,11311.0
-2011-10-14 14:00:00,11320.0
-2011-10-14 15:00:00,11332.0
-2011-10-14 16:00:00,11227.0
-2011-10-14 17:00:00,11058.0
-2011-10-14 18:00:00,10906.0
-2011-10-14 19:00:00,10840.0
-2011-10-14 20:00:00,11334.0
-2011-10-14 21:00:00,11468.0
-2011-10-14 22:00:00,11195.0
-2011-10-14 23:00:00,10773.0
-2011-10-15 00:00:00,10081.0
-2011-10-13 01:00:00,9804.0
-2011-10-13 02:00:00,9208.0
-2011-10-13 03:00:00,8836.0
-2011-10-13 04:00:00,8591.0
-2011-10-13 05:00:00,8560.0
-2011-10-13 06:00:00,8690.0
-2011-10-13 07:00:00,9314.0
-2011-10-13 08:00:00,10564.0
-2011-10-13 09:00:00,11387.0
-2011-10-13 10:00:00,11713.0
-2011-10-13 11:00:00,11912.0
-2011-10-13 12:00:00,12118.0
-2011-10-13 13:00:00,12173.0
-2011-10-13 14:00:00,12159.0
-2011-10-13 15:00:00,12197.0
-2011-10-13 16:00:00,12044.0
-2011-10-13 17:00:00,11905.0
-2011-10-13 18:00:00,11834.0
-2011-10-13 19:00:00,11812.0
-2011-10-13 20:00:00,12038.0
-2011-10-13 21:00:00,12140.0
-2011-10-13 22:00:00,11792.0
-2011-10-13 23:00:00,11250.0
-2011-10-14 00:00:00,10321.0
-2011-10-12 01:00:00,9865.0
-2011-10-12 02:00:00,9248.0
-2011-10-12 03:00:00,8832.0
-2011-10-12 04:00:00,8536.0
-2011-10-12 05:00:00,8428.0
-2011-10-12 06:00:00,8579.0
-2011-10-12 07:00:00,9154.0
-2011-10-12 08:00:00,10412.0
-2011-10-12 09:00:00,11010.0
-2011-10-12 10:00:00,11379.0
-2011-10-12 11:00:00,11800.0
-2011-10-12 12:00:00,12246.0
-2011-10-12 13:00:00,12554.0
-2011-10-12 14:00:00,12748.0
-2011-10-12 15:00:00,12951.0
-2011-10-12 16:00:00,12875.0
-2011-10-12 17:00:00,12758.0
-2011-10-12 18:00:00,12480.0
-2011-10-12 19:00:00,12287.0
-2011-10-12 20:00:00,12581.0
-2011-10-12 21:00:00,12649.0
-2011-10-12 22:00:00,12282.0
-2011-10-12 23:00:00,11671.0
-2011-10-13 00:00:00,10726.0
-2011-10-11 01:00:00,9740.0
-2011-10-11 02:00:00,9103.0
-2011-10-11 03:00:00,8750.0
-2011-10-11 04:00:00,8494.0
-2011-10-11 05:00:00,8387.0
-2011-10-11 06:00:00,8540.0
-2011-10-11 07:00:00,9193.0
-2011-10-11 08:00:00,10424.0
-2011-10-11 09:00:00,10981.0
-2011-10-11 10:00:00,11469.0
-2011-10-11 11:00:00,11949.0
-2011-10-11 12:00:00,12415.0
-2011-10-11 13:00:00,12696.0
-2011-10-11 14:00:00,12859.0
-2011-10-11 15:00:00,13015.0
-2011-10-11 16:00:00,12903.0
-2011-10-11 17:00:00,12807.0
-2011-10-11 18:00:00,12660.0
-2011-10-11 19:00:00,12428.0
-2011-10-11 20:00:00,12639.0
-2011-10-11 21:00:00,12778.0
-2011-10-11 22:00:00,12391.0
-2011-10-11 23:00:00,11770.0
-2011-10-12 00:00:00,10790.0
-2011-10-10 01:00:00,9126.0
-2011-10-10 02:00:00,8596.0
-2011-10-10 03:00:00,8311.0
-2011-10-10 04:00:00,8090.0
-2011-10-10 05:00:00,8074.0
-2011-10-10 06:00:00,8202.0
-2011-10-10 07:00:00,8816.0
-2011-10-10 08:00:00,9819.0
-2011-10-10 09:00:00,10417.0
-2011-10-10 10:00:00,10897.0
-2011-10-10 11:00:00,11432.0
-2011-10-10 12:00:00,11770.0
-2011-10-10 13:00:00,12008.0
-2011-10-10 14:00:00,12182.0
-2011-10-10 15:00:00,12388.0
-2011-10-10 16:00:00,12420.0
-2011-10-10 17:00:00,12400.0
-2011-10-10 18:00:00,12282.0
-2011-10-10 19:00:00,12078.0
-2011-10-10 20:00:00,12342.0
-2011-10-10 21:00:00,12464.0
-2011-10-10 22:00:00,12085.0
-2011-10-10 23:00:00,11498.0
-2011-10-11 00:00:00,10628.0
-2011-10-09 01:00:00,9490.0
-2011-10-09 02:00:00,8919.0
-2011-10-09 03:00:00,8468.0
-2011-10-09 04:00:00,8191.0
-2011-10-09 05:00:00,7945.0
-2011-10-09 06:00:00,7887.0
-2011-10-09 07:00:00,7890.0
-2011-10-09 08:00:00,8082.0
-2011-10-09 09:00:00,8020.0
-2011-10-09 10:00:00,8518.0
-2011-10-09 11:00:00,9031.0
-2011-10-09 12:00:00,9542.0
-2011-10-09 13:00:00,9909.0
-2011-10-09 14:00:00,10182.0
-2011-10-09 15:00:00,10395.0
-2011-10-09 16:00:00,10504.0
-2011-10-09 17:00:00,10595.0
-2011-10-09 18:00:00,10579.0
-2011-10-09 19:00:00,10509.0
-2011-10-09 20:00:00,10756.0
-2011-10-09 21:00:00,11034.0
-2011-10-09 22:00:00,10728.0
-2011-10-09 23:00:00,10355.0
-2011-10-10 00:00:00,9747.0
-2011-10-08 01:00:00,10140.0
-2011-10-08 02:00:00,9476.0
-2011-10-08 03:00:00,8962.0
-2011-10-08 04:00:00,8654.0
-2011-10-08 05:00:00,8447.0
-2011-10-08 06:00:00,8444.0
-2011-10-08 07:00:00,8593.0
-2011-10-08 08:00:00,9002.0
-2011-10-08 09:00:00,9139.0
-2011-10-08 10:00:00,9775.0
-2011-10-08 11:00:00,10304.0
-2011-10-08 12:00:00,10822.0
-2011-10-08 13:00:00,11145.0
-2011-10-08 14:00:00,11306.0
-2011-10-08 15:00:00,11404.0
-2011-10-08 16:00:00,11552.0
-2011-10-08 17:00:00,11623.0
-2011-10-08 18:00:00,11485.0
-2011-10-08 19:00:00,11319.0
-2011-10-08 20:00:00,11424.0
-2011-10-08 21:00:00,11580.0
-2011-10-08 22:00:00,11320.0
-2011-10-08 23:00:00,10862.0
-2011-10-09 00:00:00,10212.0
-2011-10-07 01:00:00,9784.0
-2011-10-07 02:00:00,9169.0
-2011-10-07 03:00:00,8753.0
-2011-10-07 04:00:00,8459.0
-2011-10-07 05:00:00,8356.0
-2011-10-07 06:00:00,8500.0
-2011-10-07 07:00:00,9127.0
-2011-10-07 08:00:00,10205.0
-2011-10-07 09:00:00,10821.0
-2011-10-07 10:00:00,11345.0
-2011-10-07 11:00:00,11798.0
-2011-10-07 12:00:00,12295.0
-2011-10-07 13:00:00,12638.0
-2011-10-07 14:00:00,12882.0
-2011-10-07 15:00:00,13047.0
-2011-10-07 16:00:00,13100.0
-2011-10-07 17:00:00,13091.0
-2011-10-07 18:00:00,12922.0
-2011-10-07 19:00:00,12554.0
-2011-10-07 20:00:00,12604.0
-2011-10-07 21:00:00,12714.0
-2011-10-07 22:00:00,12371.0
-2011-10-07 23:00:00,11823.0
-2011-10-08 00:00:00,11010.0
-2011-10-06 01:00:00,9555.0
-2011-10-06 02:00:00,8940.0
-2011-10-06 03:00:00,8552.0
-2011-10-06 04:00:00,8322.0
-2011-10-06 05:00:00,8230.0
-2011-10-06 06:00:00,8398.0
-2011-10-06 07:00:00,8984.0
-2011-10-06 08:00:00,10198.0
-2011-10-06 09:00:00,10805.0
-2011-10-06 10:00:00,11250.0
-2011-10-06 11:00:00,11641.0
-2011-10-06 12:00:00,12117.0
-2011-10-06 13:00:00,12349.0
-2011-10-06 14:00:00,12574.0
-2011-10-06 15:00:00,12762.0
-2011-10-06 16:00:00,12782.0
-2011-10-06 17:00:00,12786.0
-2011-10-06 18:00:00,12626.0
-2011-10-06 19:00:00,12356.0
-2011-10-06 20:00:00,12407.0
-2011-10-06 21:00:00,12593.0
-2011-10-06 22:00:00,12270.0
-2011-10-06 23:00:00,11624.0
-2011-10-07 00:00:00,10712.0
-2011-10-05 01:00:00,9311.0
-2011-10-05 02:00:00,8763.0
-2011-10-05 03:00:00,8435.0
-2011-10-05 04:00:00,8196.0
-2011-10-05 05:00:00,8112.0
-2011-10-05 06:00:00,8299.0
-2011-10-05 07:00:00,8937.0
-2011-10-05 08:00:00,10075.0
-2011-10-05 09:00:00,10658.0
-2011-10-05 10:00:00,11052.0
-2011-10-05 11:00:00,11400.0
-2011-10-05 12:00:00,11760.0
-2011-10-05 13:00:00,12020.0
-2011-10-05 14:00:00,12139.0
-2011-10-05 15:00:00,12360.0
-2011-10-05 16:00:00,12342.0
-2011-10-05 17:00:00,12292.0
-2011-10-05 18:00:00,12191.0
-2011-10-05 19:00:00,11941.0
-2011-10-05 20:00:00,11976.0
-2011-10-05 21:00:00,12264.0
-2011-10-05 22:00:00,11922.0
-2011-10-05 23:00:00,11302.0
-2011-10-06 00:00:00,10413.0
-2011-10-04 01:00:00,9201.0
-2011-10-04 02:00:00,8660.0
-2011-10-04 03:00:00,8356.0
-2011-10-04 04:00:00,8163.0
-2011-10-04 05:00:00,8105.0
-2011-10-04 06:00:00,8295.0
-2011-10-04 07:00:00,8955.0
-2011-10-04 08:00:00,10157.0
-2011-10-04 09:00:00,10670.0
-2011-10-04 10:00:00,11008.0
-2011-10-04 11:00:00,11279.0
-2011-10-04 12:00:00,11571.0
-2011-10-04 13:00:00,11711.0
-2011-10-04 14:00:00,11812.0
-2011-10-04 15:00:00,11937.0
-2011-10-04 16:00:00,11947.0
-2011-10-04 17:00:00,11863.0
-2011-10-04 18:00:00,11732.0
-2011-10-04 19:00:00,11519.0
-2011-10-04 20:00:00,11626.0
-2011-10-04 21:00:00,11981.0
-2011-10-04 22:00:00,11663.0
-2011-10-04 23:00:00,11068.0
-2011-10-05 00:00:00,10150.0
-2011-10-03 01:00:00,8532.0
-2011-10-03 02:00:00,8093.0
-2011-10-03 03:00:00,7916.0
-2011-10-03 04:00:00,7746.0
-2011-10-03 05:00:00,7797.0
-2011-10-03 06:00:00,8034.0
-2011-10-03 07:00:00,8736.0
-2011-10-03 08:00:00,9985.0
-2011-10-03 09:00:00,10593.0
-2011-10-03 10:00:00,10914.0
-2011-10-03 11:00:00,11130.0
-2011-10-03 12:00:00,11430.0
-2011-10-03 13:00:00,11555.0
-2011-10-03 14:00:00,11618.0
-2011-10-03 15:00:00,11682.0
-2011-10-03 16:00:00,11658.0
-2011-10-03 17:00:00,11500.0
-2011-10-03 18:00:00,11328.0
-2011-10-03 19:00:00,11145.0
-2011-10-03 20:00:00,11277.0
-2011-10-03 21:00:00,11684.0
-2011-10-03 22:00:00,11373.0
-2011-10-03 23:00:00,10863.0
-2011-10-04 00:00:00,10036.0
-2011-10-02 01:00:00,8769.0
-2011-10-02 02:00:00,8287.0
-2011-10-02 03:00:00,7997.0
-2011-10-02 04:00:00,7833.0
-2011-10-02 05:00:00,7730.0
-2011-10-02 06:00:00,7777.0
-2011-10-02 07:00:00,7867.0
-2011-10-02 08:00:00,8113.0
-2011-10-02 09:00:00,8140.0
-2011-10-02 10:00:00,8484.0
-2011-10-02 11:00:00,8700.0
-2011-10-02 12:00:00,8944.0
-2011-10-02 13:00:00,9024.0
-2011-10-02 14:00:00,9084.0
-2011-10-02 15:00:00,9058.0
-2011-10-02 16:00:00,9032.0
-2011-10-02 17:00:00,9025.0
-2011-10-02 18:00:00,9075.0
-2011-10-02 19:00:00,9155.0
-2011-10-02 20:00:00,9523.0
-2011-10-02 21:00:00,10175.0
-2011-10-02 22:00:00,10017.0
-2011-10-02 23:00:00,9672.0
-2011-10-03 00:00:00,9069.0
-2011-10-01 01:00:00,9365.0
-2011-10-01 02:00:00,8821.0
-2011-10-01 03:00:00,8481.0
-2011-10-01 04:00:00,8236.0
-2011-10-01 05:00:00,8143.0
-2011-10-01 06:00:00,8112.0
-2011-10-01 07:00:00,8382.0
-2011-10-01 08:00:00,8797.0
-2011-10-01 09:00:00,9005.0
-2011-10-01 10:00:00,9384.0
-2011-10-01 11:00:00,9654.0
-2011-10-01 12:00:00,9774.0
-2011-10-01 13:00:00,9739.0
-2011-10-01 14:00:00,9661.0
-2011-10-01 15:00:00,9517.0
-2011-10-01 16:00:00,9399.0
-2011-10-01 17:00:00,9307.0
-2011-10-01 18:00:00,9285.0
-2011-10-01 19:00:00,9282.0
-2011-10-01 20:00:00,9585.0
-2011-10-01 21:00:00,10149.0
-2011-10-01 22:00:00,10058.0
-2011-10-01 23:00:00,9785.0
-2011-10-02 00:00:00,9321.0
-2011-09-30 01:00:00,9380.0
-2011-09-30 02:00:00,8846.0
-2011-09-30 03:00:00,8532.0
-2011-09-30 04:00:00,8318.0
-2011-09-30 05:00:00,8279.0
-2011-09-30 06:00:00,8436.0
-2011-09-30 07:00:00,9075.0
-2011-09-30 08:00:00,10224.0
-2011-09-30 09:00:00,10810.0
-2011-09-30 10:00:00,10998.0
-2011-09-30 11:00:00,11104.0
-2011-09-30 12:00:00,11232.0
-2011-09-30 13:00:00,11214.0
-2011-09-30 14:00:00,11247.0
-2011-09-30 15:00:00,11270.0
-2011-09-30 16:00:00,11127.0
-2011-09-30 17:00:00,10950.0
-2011-09-30 18:00:00,10839.0
-2011-09-30 19:00:00,10734.0
-2011-09-30 20:00:00,11025.0
-2011-09-30 21:00:00,11305.0
-2011-09-30 22:00:00,11111.0
-2011-09-30 23:00:00,10746.0
-2011-10-01 00:00:00,10068.0
-2011-09-29 01:00:00,9352.0
-2011-09-29 02:00:00,8807.0
-2011-09-29 03:00:00,8483.0
-2011-09-29 04:00:00,8272.0
-2011-09-29 05:00:00,8241.0
-2011-09-29 06:00:00,8399.0
-2011-09-29 07:00:00,9050.0
-2011-09-29 08:00:00,10168.0
-2011-09-29 09:00:00,10735.0
-2011-09-29 10:00:00,11095.0
-2011-09-29 11:00:00,11369.0
-2011-09-29 12:00:00,11585.0
-2011-09-29 13:00:00,11750.0
-2011-09-29 14:00:00,11814.0
-2011-09-29 15:00:00,11863.0
-2011-09-29 16:00:00,11670.0
-2011-09-29 17:00:00,11510.0
-2011-09-29 18:00:00,11431.0
-2011-09-29 19:00:00,11365.0
-2011-09-29 20:00:00,11465.0
-2011-09-29 21:00:00,11800.0
-2011-09-29 22:00:00,11497.0
-2011-09-29 23:00:00,11023.0
-2011-09-30 00:00:00,10150.0
-2011-09-28 01:00:00,9295.0
-2011-09-28 02:00:00,8822.0
-2011-09-28 03:00:00,8503.0
-2011-09-28 04:00:00,8275.0
-2011-09-28 05:00:00,8226.0
-2011-09-28 06:00:00,8388.0
-2011-09-28 07:00:00,8994.0
-2011-09-28 08:00:00,10169.0
-2011-09-28 09:00:00,10845.0
-2011-09-28 10:00:00,11191.0
-2011-09-28 11:00:00,11393.0
-2011-09-28 12:00:00,11575.0
-2011-09-28 13:00:00,11661.0
-2011-09-28 14:00:00,11625.0
-2011-09-28 15:00:00,11707.0
-2011-09-28 16:00:00,11569.0
-2011-09-28 17:00:00,11505.0
-2011-09-28 18:00:00,11392.0
-2011-09-28 19:00:00,11325.0
-2011-09-28 20:00:00,11522.0
-2011-09-28 21:00:00,11822.0
-2011-09-28 22:00:00,11545.0
-2011-09-28 23:00:00,11018.0
-2011-09-29 00:00:00,10177.0
-2011-09-27 01:00:00,9300.0
-2011-09-27 02:00:00,8776.0
-2011-09-27 03:00:00,8477.0
-2011-09-27 04:00:00,8263.0
-2011-09-27 05:00:00,8199.0
-2011-09-27 06:00:00,8369.0
-2011-09-27 07:00:00,9039.0
-2011-09-27 08:00:00,10255.0
-2011-09-27 09:00:00,10931.0
-2011-09-27 10:00:00,11208.0
-2011-09-27 11:00:00,11459.0
-2011-09-27 12:00:00,11596.0
-2011-09-27 13:00:00,11647.0
-2011-09-27 14:00:00,11615.0
-2011-09-27 15:00:00,11639.0
-2011-09-27 16:00:00,11553.0
-2011-09-27 17:00:00,11413.0
-2011-09-27 18:00:00,11308.0
-2011-09-27 19:00:00,11260.0
-2011-09-27 20:00:00,11449.0
-2011-09-27 21:00:00,11779.0
-2011-09-27 22:00:00,11522.0
-2011-09-27 23:00:00,10968.0
-2011-09-28 00:00:00,10119.0
-2011-09-26 01:00:00,8581.0
-2011-09-26 02:00:00,8192.0
-2011-09-26 03:00:00,8007.0
-2011-09-26 04:00:00,7935.0
-2011-09-26 05:00:00,7931.0
-2011-09-26 06:00:00,8205.0
-2011-09-26 07:00:00,8897.0
-2011-09-26 08:00:00,10070.0
-2011-09-26 09:00:00,10824.0
-2011-09-26 10:00:00,11113.0
-2011-09-26 11:00:00,11314.0
-2011-09-26 12:00:00,11553.0
-2011-09-26 13:00:00,11576.0
-2011-09-26 14:00:00,11590.0
-2011-09-26 15:00:00,11610.0
-2011-09-26 16:00:00,11535.0
-2011-09-26 17:00:00,11362.0
-2011-09-26 18:00:00,11293.0
-2011-09-26 19:00:00,11254.0
-2011-09-26 20:00:00,11404.0
-2011-09-26 21:00:00,11765.0
-2011-09-26 22:00:00,11515.0
-2011-09-26 23:00:00,10971.0
-2011-09-27 00:00:00,10107.0
-2011-09-25 01:00:00,8712.0
-2011-09-25 02:00:00,8183.0
-2011-09-25 03:00:00,7925.0
-2011-09-25 04:00:00,7682.0
-2011-09-25 05:00:00,7575.0
-2011-09-25 06:00:00,7527.0
-2011-09-25 07:00:00,7630.0
-2011-09-25 08:00:00,7797.0
-2011-09-25 09:00:00,7960.0
-2011-09-25 10:00:00,8391.0
-2011-09-25 11:00:00,8786.0
-2011-09-25 12:00:00,9041.0
-2011-09-25 13:00:00,9211.0
-2011-09-25 14:00:00,9222.0
-2011-09-25 15:00:00,9284.0
-2011-09-25 16:00:00,9233.0
-2011-09-25 17:00:00,9221.0
-2011-09-25 18:00:00,9241.0
-2011-09-25 19:00:00,9312.0
-2011-09-25 20:00:00,9594.0
-2011-09-25 21:00:00,10235.0
-2011-09-25 22:00:00,10073.0
-2011-09-25 23:00:00,9716.0
-2011-09-26 00:00:00,9142.0
-2011-09-24 01:00:00,9181.0
-2011-09-24 02:00:00,8609.0
-2011-09-24 03:00:00,8252.0
-2011-09-24 04:00:00,8019.0
-2011-09-24 05:00:00,7871.0
-2011-09-24 06:00:00,7938.0
-2011-09-24 07:00:00,8134.0
-2011-09-24 08:00:00,8546.0
-2011-09-24 09:00:00,8740.0
-2011-09-24 10:00:00,9228.0
-2011-09-24 11:00:00,9580.0
-2011-09-24 12:00:00,9804.0
-2011-09-24 13:00:00,9865.0
-2011-09-24 14:00:00,9740.0
-2011-09-24 15:00:00,9639.0
-2011-09-24 16:00:00,9526.0
-2011-09-24 17:00:00,9461.0
-2011-09-24 18:00:00,9451.0
-2011-09-24 19:00:00,9449.0
-2011-09-24 20:00:00,9613.0
-2011-09-24 21:00:00,10093.0
-2011-09-24 22:00:00,10023.0
-2011-09-24 23:00:00,9755.0
-2011-09-25 00:00:00,9230.0
-2011-09-23 01:00:00,9294.0
-2011-09-23 02:00:00,8760.0
-2011-09-23 03:00:00,8435.0
-2011-09-23 04:00:00,8187.0
-2011-09-23 05:00:00,8131.0
-2011-09-23 06:00:00,8287.0
-2011-09-23 07:00:00,8875.0
-2011-09-23 08:00:00,9935.0
-2011-09-23 09:00:00,10535.0
-2011-09-23 10:00:00,10811.0
-2011-09-23 11:00:00,11014.0
-2011-09-23 12:00:00,11198.0
-2011-09-23 13:00:00,11243.0
-2011-09-23 14:00:00,11295.0
-2011-09-23 15:00:00,11336.0
-2011-09-23 16:00:00,11222.0
-2011-09-23 17:00:00,11017.0
-2011-09-23 18:00:00,10857.0
-2011-09-23 19:00:00,10742.0
-2011-09-23 20:00:00,10894.0
-2011-09-23 21:00:00,11205.0
-2011-09-23 22:00:00,10936.0
-2011-09-23 23:00:00,10571.0
-2011-09-24 00:00:00,9875.0
-2011-09-22 01:00:00,9397.0
-2011-09-22 02:00:00,8865.0
-2011-09-22 03:00:00,8511.0
-2011-09-22 04:00:00,8284.0
-2011-09-22 05:00:00,8245.0
-2011-09-22 06:00:00,8392.0
-2011-09-22 07:00:00,8971.0
-2011-09-22 08:00:00,10037.0
-2011-09-22 09:00:00,10596.0
-2011-09-22 10:00:00,11001.0
-2011-09-22 11:00:00,11290.0
-2011-09-22 12:00:00,11503.0
-2011-09-22 13:00:00,11534.0
-2011-09-22 14:00:00,11510.0
-2011-09-22 15:00:00,11551.0
-2011-09-22 16:00:00,11478.0
-2011-09-22 17:00:00,11368.0
-2011-09-22 18:00:00,11273.0
-2011-09-22 19:00:00,11086.0
-2011-09-22 20:00:00,11123.0
-2011-09-22 21:00:00,11649.0
-2011-09-22 22:00:00,11456.0
-2011-09-22 23:00:00,10936.0
-2011-09-23 00:00:00,10079.0
-2011-09-21 01:00:00,9723.0
-2011-09-21 02:00:00,9154.0
-2011-09-21 03:00:00,8753.0
-2011-09-21 04:00:00,8547.0
-2011-09-21 05:00:00,8433.0
-2011-09-21 06:00:00,8584.0
-2011-09-21 07:00:00,9206.0
-2011-09-21 08:00:00,10358.0
-2011-09-21 09:00:00,10989.0
-2011-09-21 10:00:00,11379.0
-2011-09-21 11:00:00,11683.0
-2011-09-21 12:00:00,11953.0
-2011-09-21 13:00:00,12100.0
-2011-09-21 14:00:00,12202.0
-2011-09-21 15:00:00,12307.0
-2011-09-21 16:00:00,12239.0
-2011-09-21 17:00:00,12130.0
-2011-09-21 18:00:00,11941.0
-2011-09-21 19:00:00,11654.0
-2011-09-21 20:00:00,11523.0
-2011-09-21 21:00:00,11987.0
-2011-09-21 22:00:00,11733.0
-2011-09-21 23:00:00,11153.0
-2011-09-22 00:00:00,10259.0
-2011-09-20 01:00:00,9425.0
-2011-09-20 02:00:00,8855.0
-2011-09-20 03:00:00,8513.0
-2011-09-20 04:00:00,8290.0
-2011-09-20 05:00:00,8209.0
-2011-09-20 06:00:00,8380.0
-2011-09-20 07:00:00,9004.0
-2011-09-20 08:00:00,10084.0
-2011-09-20 09:00:00,10679.0
-2011-09-20 10:00:00,11161.0
-2011-09-20 11:00:00,11515.0
-2011-09-20 12:00:00,11865.0
-2011-09-20 13:00:00,12069.0
-2011-09-20 14:00:00,12178.0
-2011-09-20 15:00:00,12319.0
-2011-09-20 16:00:00,12353.0
-2011-09-20 17:00:00,12313.0
-2011-09-20 18:00:00,12214.0
-2011-09-20 19:00:00,11980.0
-2011-09-20 20:00:00,11771.0
-2011-09-20 21:00:00,12264.0
-2011-09-20 22:00:00,12077.0
-2011-09-20 23:00:00,11464.0
-2011-09-21 00:00:00,10567.0
-2011-09-19 01:00:00,8809.0
-2011-09-19 02:00:00,8468.0
-2011-09-19 03:00:00,8208.0
-2011-09-19 04:00:00,8163.0
-2011-09-19 05:00:00,8122.0
-2011-09-19 06:00:00,8368.0
-2011-09-19 07:00:00,9027.0
-2011-09-19 08:00:00,10316.0
-2011-09-19 09:00:00,11165.0
-2011-09-19 10:00:00,11599.0
-2011-09-19 11:00:00,11793.0
-2011-09-19 12:00:00,12002.0
-2011-09-19 13:00:00,12072.0
-2011-09-19 14:00:00,12055.0
-2011-09-19 15:00:00,12087.0
-2011-09-19 16:00:00,11999.0
-2011-09-19 17:00:00,11859.0
-2011-09-19 18:00:00,11772.0
-2011-09-19 19:00:00,11608.0
-2011-09-19 20:00:00,11447.0
-2011-09-19 21:00:00,11958.0
-2011-09-19 22:00:00,11751.0
-2011-09-19 23:00:00,11164.0
-2011-09-20 00:00:00,10270.0
-2011-09-18 01:00:00,8712.0
-2011-09-18 02:00:00,8263.0
-2011-09-18 03:00:00,7921.0
-2011-09-18 04:00:00,7718.0
-2011-09-18 05:00:00,7582.0
-2011-09-18 06:00:00,7523.0
-2011-09-18 07:00:00,7651.0
-2011-09-18 08:00:00,7834.0
-2011-09-18 09:00:00,7977.0
-2011-09-18 10:00:00,8416.0
-2011-09-18 11:00:00,8769.0
-2011-09-18 12:00:00,9063.0
-2011-09-18 13:00:00,9258.0
-2011-09-18 14:00:00,9355.0
-2011-09-18 15:00:00,9391.0
-2011-09-18 16:00:00,9440.0
-2011-09-18 17:00:00,9490.0
-2011-09-18 18:00:00,9573.0
-2011-09-18 19:00:00,9730.0
-2011-09-18 20:00:00,10022.0
-2011-09-18 21:00:00,10448.0
-2011-09-18 22:00:00,10322.0
-2011-09-18 23:00:00,9963.0
-2011-09-19 00:00:00,9428.0
-2011-09-17 01:00:00,9223.0
-2011-09-17 02:00:00,8622.0
-2011-09-17 03:00:00,8320.0
-2011-09-17 04:00:00,8061.0
-2011-09-17 05:00:00,7976.0
-2011-09-17 06:00:00,7987.0
-2011-09-17 07:00:00,8213.0
-2011-09-17 08:00:00,8537.0
-2011-09-17 09:00:00,8765.0
-2011-09-17 10:00:00,9280.0
-2011-09-17 11:00:00,9620.0
-2011-09-17 12:00:00,9878.0
-2011-09-17 13:00:00,9941.0
-2011-09-17 14:00:00,9863.0
-2011-09-17 15:00:00,9815.0
-2011-09-17 16:00:00,9727.0
-2011-09-17 17:00:00,9738.0
-2011-09-17 18:00:00,9647.0
-2011-09-17 19:00:00,9552.0
-2011-09-17 20:00:00,9580.0
-2011-09-17 21:00:00,10152.0
-2011-09-17 22:00:00,10151.0
-2011-09-17 23:00:00,9817.0
-2011-09-18 00:00:00,9289.0
-2011-09-16 01:00:00,9233.0
-2011-09-16 02:00:00,8760.0
-2011-09-16 03:00:00,8437.0
-2011-09-16 04:00:00,8224.0
-2011-09-16 05:00:00,8139.0
-2011-09-16 06:00:00,8338.0
-2011-09-16 07:00:00,8957.0
-2011-09-16 08:00:00,10023.0
-2011-09-16 09:00:00,10667.0
-2011-09-16 10:00:00,11021.0
-2011-09-16 11:00:00,11241.0
-2011-09-16 12:00:00,11359.0
-2011-09-16 13:00:00,11417.0
-2011-09-16 14:00:00,11359.0
-2011-09-16 15:00:00,11311.0
-2011-09-16 16:00:00,11208.0
-2011-09-16 17:00:00,11058.0
-2011-09-16 18:00:00,10941.0
-2011-09-16 19:00:00,10804.0
-2011-09-16 20:00:00,10828.0
-2011-09-16 21:00:00,11216.0
-2011-09-16 22:00:00,11031.0
-2011-09-16 23:00:00,10650.0
-2011-09-17 00:00:00,9926.0
-2011-09-15 01:00:00,9257.0
-2011-09-15 02:00:00,8704.0
-2011-09-15 03:00:00,8377.0
-2011-09-15 04:00:00,8172.0
-2011-09-15 05:00:00,8116.0
-2011-09-15 06:00:00,8286.0
-2011-09-15 07:00:00,8914.0
-2011-09-15 08:00:00,9965.0
-2011-09-15 09:00:00,10548.0
-2011-09-15 10:00:00,10925.0
-2011-09-15 11:00:00,11084.0
-2011-09-15 12:00:00,11255.0
-2011-09-15 13:00:00,11304.0
-2011-09-15 14:00:00,11321.0
-2011-09-15 15:00:00,11384.0
-2011-09-15 16:00:00,11299.0
-2011-09-15 17:00:00,11191.0
-2011-09-15 18:00:00,11062.0
-2011-09-15 19:00:00,10864.0
-2011-09-15 20:00:00,10816.0
-2011-09-15 21:00:00,11388.0
-2011-09-15 22:00:00,11300.0
-2011-09-15 23:00:00,10864.0
-2011-09-16 00:00:00,9957.0
-2011-09-14 01:00:00,10012.0
-2011-09-14 02:00:00,9363.0
-2011-09-14 03:00:00,8959.0
-2011-09-14 04:00:00,8707.0
-2011-09-14 05:00:00,8590.0
-2011-09-14 06:00:00,8720.0
-2011-09-14 07:00:00,9334.0
-2011-09-14 08:00:00,10379.0
-2011-09-14 09:00:00,11023.0
-2011-09-14 10:00:00,11538.0
-2011-09-14 11:00:00,11731.0
-2011-09-14 12:00:00,11851.0
-2011-09-14 13:00:00,11887.0
-2011-09-14 14:00:00,11802.0
-2011-09-14 15:00:00,11781.0
-2011-09-14 16:00:00,11615.0
-2011-09-14 17:00:00,11396.0
-2011-09-14 18:00:00,11259.0
-2011-09-14 19:00:00,11060.0
-2011-09-14 20:00:00,10877.0
-2011-09-14 21:00:00,11395.0
-2011-09-14 22:00:00,11393.0
-2011-09-14 23:00:00,10876.0
-2011-09-15 00:00:00,10042.0
-2011-09-13 01:00:00,11723.0
-2011-09-13 02:00:00,10848.0
-2011-09-13 03:00:00,10265.0
-2011-09-13 04:00:00,9872.0
-2011-09-13 05:00:00,9667.0
-2011-09-13 06:00:00,9755.0
-2011-09-13 07:00:00,10402.0
-2011-09-13 08:00:00,11474.0
-2011-09-13 09:00:00,12120.0
-2011-09-13 10:00:00,12754.0
-2011-09-13 11:00:00,13169.0
-2011-09-13 12:00:00,13574.0
-2011-09-13 13:00:00,13757.0
-2011-09-13 14:00:00,13872.0
-2011-09-13 15:00:00,14058.0
-2011-09-13 16:00:00,14053.0
-2011-09-13 17:00:00,13987.0
-2011-09-13 18:00:00,13738.0
-2011-09-13 19:00:00,13266.0
-2011-09-13 20:00:00,12715.0
-2011-09-13 21:00:00,12909.0
-2011-09-13 22:00:00,12706.0
-2011-09-13 23:00:00,11989.0
-2011-09-14 00:00:00,10956.0
-2011-09-12 01:00:00,10448.0
-2011-09-12 02:00:00,9781.0
-2011-09-12 03:00:00,9372.0
-2011-09-12 04:00:00,9057.0
-2011-09-12 05:00:00,8948.0
-2011-09-12 06:00:00,9140.0
-2011-09-12 07:00:00,9910.0
-2011-09-12 08:00:00,11025.0
-2011-09-12 09:00:00,11901.0
-2011-09-12 10:00:00,12695.0
-2011-09-12 11:00:00,13490.0
-2011-09-12 12:00:00,14160.0
-2011-09-12 13:00:00,14782.0
-2011-09-12 14:00:00,15382.0
-2011-09-12 15:00:00,15931.0
-2011-09-12 16:00:00,16158.0
-2011-09-12 17:00:00,16325.0
-2011-09-12 18:00:00,16278.0
-2011-09-12 19:00:00,15891.0
-2011-09-12 20:00:00,15171.0
-2011-09-12 21:00:00,15253.0
-2011-09-12 22:00:00,15049.0
-2011-09-12 23:00:00,14173.0
-2011-09-13 00:00:00,12935.0
-2011-09-11 01:00:00,9860.0
-2011-09-11 02:00:00,9274.0
-2011-09-11 03:00:00,8798.0
-2011-09-11 04:00:00,8523.0
-2011-09-11 05:00:00,8308.0
-2011-09-11 06:00:00,8245.0
-2011-09-11 07:00:00,8232.0
-2011-09-11 08:00:00,8261.0
-2011-09-11 09:00:00,8429.0
-2011-09-11 10:00:00,9095.0
-2011-09-11 11:00:00,9756.0
-2011-09-11 12:00:00,10379.0
-2011-09-11 13:00:00,10933.0
-2011-09-11 14:00:00,11462.0
-2011-09-11 15:00:00,11794.0
-2011-09-11 16:00:00,12128.0
-2011-09-11 17:00:00,12333.0
-2011-09-11 18:00:00,12538.0
-2011-09-11 19:00:00,12554.0
-2011-09-11 20:00:00,12381.0
-2011-09-11 21:00:00,12644.0
-2011-09-11 22:00:00,12666.0
-2011-09-11 23:00:00,12146.0
-2011-09-12 00:00:00,11317.0
-2011-09-10 01:00:00,10144.0
-2011-09-10 02:00:00,9458.0
-2011-09-10 03:00:00,9055.0
-2011-09-10 04:00:00,8729.0
-2011-09-10 05:00:00,8587.0
-2011-09-10 06:00:00,8525.0
-2011-09-10 07:00:00,8687.0
-2011-09-10 08:00:00,8963.0
-2011-09-10 09:00:00,9314.0
-2011-09-10 10:00:00,9958.0
-2011-09-10 11:00:00,10509.0
-2011-09-10 12:00:00,10965.0
-2011-09-10 13:00:00,11270.0
-2011-09-10 14:00:00,11487.0
-2011-09-10 15:00:00,11508.0
-2011-09-10 16:00:00,11464.0
-2011-09-10 17:00:00,11448.0
-2011-09-10 18:00:00,11458.0
-2011-09-10 19:00:00,11416.0
-2011-09-10 20:00:00,11233.0
-2011-09-10 21:00:00,11569.0
-2011-09-10 22:00:00,11569.0
-2011-09-10 23:00:00,11169.0
-2011-09-11 00:00:00,10561.0
-2011-09-09 01:00:00,9973.0
-2011-09-09 02:00:00,9393.0
-2011-09-09 03:00:00,9089.0
-2011-09-09 04:00:00,8792.0
-2011-09-09 05:00:00,8713.0
-2011-09-09 06:00:00,8902.0
-2011-09-09 07:00:00,9558.0
-2011-09-09 08:00:00,10690.0
-2011-09-09 09:00:00,11363.0
-2011-09-09 10:00:00,11835.0
-2011-09-09 11:00:00,12199.0
-2011-09-09 12:00:00,12426.0
-2011-09-09 13:00:00,12487.0
-2011-09-09 14:00:00,12484.0
-2011-09-09 15:00:00,12538.0
-2011-09-09 16:00:00,12486.0
-2011-09-09 17:00:00,12453.0
-2011-09-09 18:00:00,12272.0
-2011-09-09 19:00:00,12001.0
-2011-09-09 20:00:00,11856.0
-2011-09-09 21:00:00,12193.0
-2011-09-09 22:00:00,12141.0
-2011-09-09 23:00:00,11680.0
-2011-09-10 00:00:00,10882.0
-2011-09-08 01:00:00,9527.0
-2011-09-08 02:00:00,8986.0
-2011-09-08 03:00:00,8641.0
-2011-09-08 04:00:00,8432.0
-2011-09-08 05:00:00,8361.0
-2011-09-08 06:00:00,8551.0
-2011-09-08 07:00:00,9189.0
-2011-09-08 08:00:00,10245.0
-2011-09-08 09:00:00,10942.0
-2011-09-08 10:00:00,11493.0
-2011-09-08 11:00:00,11895.0
-2011-09-08 12:00:00,12282.0
-2011-09-08 13:00:00,12461.0
-2011-09-08 14:00:00,12523.0
-2011-09-08 15:00:00,12625.0
-2011-09-08 16:00:00,12460.0
-2011-09-08 17:00:00,12304.0
-2011-09-08 18:00:00,12131.0
-2011-09-08 19:00:00,11971.0
-2011-09-08 20:00:00,11896.0
-2011-09-08 21:00:00,12279.0
-2011-09-08 22:00:00,12173.0
-2011-09-08 23:00:00,11659.0
-2011-09-09 00:00:00,10782.0
-2011-09-07 01:00:00,9429.0
-2011-09-07 02:00:00,8880.0
-2011-09-07 03:00:00,8545.0
-2011-09-07 04:00:00,8317.0
-2011-09-07 05:00:00,8244.0
-2011-09-07 06:00:00,8415.0
-2011-09-07 07:00:00,9032.0
-2011-09-07 08:00:00,9971.0
-2011-09-07 09:00:00,10667.0
-2011-09-07 10:00:00,11219.0
-2011-09-07 11:00:00,11604.0
-2011-09-07 12:00:00,11909.0
-2011-09-07 13:00:00,11999.0
-2011-09-07 14:00:00,12045.0
-2011-09-07 15:00:00,12185.0
-2011-09-07 16:00:00,12129.0
-2011-09-07 17:00:00,12085.0
-2011-09-07 18:00:00,11980.0
-2011-09-07 19:00:00,11756.0
-2011-09-07 20:00:00,11385.0
-2011-09-07 21:00:00,11681.0
-2011-09-07 22:00:00,11780.0
-2011-09-07 23:00:00,11225.0
-2011-09-08 00:00:00,10351.0
-2011-09-06 01:00:00,8437.0
-2011-09-06 02:00:00,8015.0
-2011-09-06 03:00:00,7803.0
-2011-09-06 04:00:00,7675.0
-2011-09-06 05:00:00,7686.0
-2011-09-06 06:00:00,7930.0
-2011-09-06 07:00:00,8655.0
-2011-09-06 08:00:00,9669.0
-2011-09-06 09:00:00,10399.0
-2011-09-06 10:00:00,10934.0
-2011-09-06 11:00:00,11272.0
-2011-09-06 12:00:00,11396.0
-2011-09-06 13:00:00,11754.0
-2011-09-06 14:00:00,11781.0
-2011-09-06 15:00:00,11940.0
-2011-09-06 16:00:00,11918.0
-2011-09-06 17:00:00,11838.0
-2011-09-06 18:00:00,11757.0
-2011-09-06 19:00:00,11522.0
-2011-09-06 20:00:00,11217.0
-2011-09-06 21:00:00,11533.0
-2011-09-06 22:00:00,11645.0
-2011-09-06 23:00:00,11078.0
-2011-09-07 00:00:00,10248.0
-2011-09-05 01:00:00,9270.0
-2011-09-05 02:00:00,8683.0
-2011-09-05 03:00:00,8324.0
-2011-09-05 04:00:00,8013.0
-2011-09-05 05:00:00,7891.0
-2011-09-05 06:00:00,7815.0
-2011-09-05 07:00:00,7948.0
-2011-09-05 08:00:00,7896.0
-2011-09-05 09:00:00,8012.0
-2011-09-05 10:00:00,8375.0
-2011-09-05 11:00:00,8834.0
-2011-09-05 12:00:00,9184.0
-2011-09-05 13:00:00,9350.0
-2011-09-05 14:00:00,9378.0
-2011-09-05 15:00:00,9345.0
-2011-09-05 16:00:00,9274.0
-2011-09-05 17:00:00,9255.0
-2011-09-05 18:00:00,9267.0
-2011-09-05 19:00:00,9311.0
-2011-09-05 20:00:00,9304.0
-2011-09-05 21:00:00,9718.0
-2011-09-05 22:00:00,9983.0
-2011-09-05 23:00:00,9650.0
-2011-09-06 00:00:00,9032.0
-2011-09-04 01:00:00,11655.0
-2011-09-04 02:00:00,10938.0
-2011-09-04 03:00:00,10275.0
-2011-09-04 04:00:00,9872.0
-2011-09-04 05:00:00,9593.0
-2011-09-04 06:00:00,9440.0
-2011-09-04 07:00:00,9429.0
-2011-09-04 08:00:00,9305.0
-2011-09-04 09:00:00,9317.0
-2011-09-04 10:00:00,9662.0
-2011-09-04 11:00:00,10095.0
-2011-09-04 12:00:00,10473.0
-2011-09-04 13:00:00,10883.0
-2011-09-04 14:00:00,11000.0
-2011-09-04 15:00:00,11139.0
-2011-09-04 16:00:00,11131.0
-2011-09-04 17:00:00,11073.0
-2011-09-04 18:00:00,10922.0
-2011-09-04 19:00:00,10697.0
-2011-09-04 20:00:00,10369.0
-2011-09-04 21:00:00,10486.0
-2011-09-04 22:00:00,10617.0
-2011-09-04 23:00:00,10363.0
-2011-09-05 00:00:00,9804.0
-2011-09-03 01:00:00,15121.0
-2011-09-03 02:00:00,13948.0
-2011-09-03 03:00:00,13139.0
-2011-09-03 04:00:00,12445.0
-2011-09-03 05:00:00,12002.0
-2011-09-03 06:00:00,11710.0
-2011-09-03 07:00:00,11721.0
-2011-09-03 08:00:00,11782.0
-2011-09-03 09:00:00,12271.0
-2011-09-03 10:00:00,13242.0
-2011-09-03 11:00:00,14440.0
-2011-09-03 12:00:00,15616.0
-2011-09-03 13:00:00,16476.0
-2011-09-03 14:00:00,17088.0
-2011-09-03 15:00:00,17126.0
-2011-09-03 16:00:00,16496.0
-2011-09-03 17:00:00,15421.0
-2011-09-03 18:00:00,14895.0
-2011-09-03 19:00:00,14456.0
-2011-09-03 20:00:00,14137.0
-2011-09-03 21:00:00,14017.0
-2011-09-03 22:00:00,13823.0
-2011-09-03 23:00:00,13233.0
-2011-09-04 00:00:00,12485.0
-2011-09-02 01:00:00,16524.0
-2011-09-02 02:00:00,15381.0
-2011-09-02 03:00:00,14539.0
-2011-09-02 04:00:00,13879.0
-2011-09-02 05:00:00,13445.0
-2011-09-02 06:00:00,13312.0
-2011-09-02 07:00:00,13841.0
-2011-09-02 08:00:00,14830.0
-2011-09-02 09:00:00,15591.0
-2011-09-02 10:00:00,16350.0
-2011-09-02 11:00:00,17170.0
-2011-09-02 12:00:00,18099.0
-2011-09-02 13:00:00,19109.0
-2011-09-02 14:00:00,20033.0
-2011-09-02 15:00:00,20745.0
-2011-09-02 16:00:00,21055.0
-2011-09-02 17:00:00,21169.0
-2011-09-02 18:00:00,21028.0
-2011-09-02 19:00:00,20567.0
-2011-09-02 20:00:00,19704.0
-2011-09-02 21:00:00,19148.0
-2011-09-02 22:00:00,18731.0
-2011-09-02 23:00:00,17808.0
-2011-09-03 00:00:00,16435.0
-2011-09-01 01:00:00,14098.0
-2011-09-01 02:00:00,13024.0
-2011-09-01 03:00:00,12219.0
-2011-09-01 04:00:00,11616.0
-2011-09-01 05:00:00,11343.0
-2011-09-01 06:00:00,11394.0
-2011-09-01 07:00:00,12029.0
-2011-09-01 08:00:00,13119.0
-2011-09-01 09:00:00,14253.0
-2011-09-01 10:00:00,15354.0
-2011-09-01 11:00:00,16552.0
-2011-09-01 12:00:00,17751.0
-2011-09-01 13:00:00,18772.0
-2011-09-01 14:00:00,19786.0
-2011-09-01 15:00:00,20587.0
-2011-09-01 16:00:00,20937.0
-2011-09-01 17:00:00,21525.0
-2011-09-01 18:00:00,21900.0
-2011-09-01 19:00:00,21635.0
-2011-09-01 20:00:00,21014.0
-2011-09-01 21:00:00,20666.0
-2011-09-01 22:00:00,20436.0
-2011-09-01 23:00:00,19448.0
-2011-09-02 00:00:00,17900.0
-2011-08-31 01:00:00,10992.0
-2011-08-31 02:00:00,10284.0
-2011-08-31 03:00:00,9811.0
-2011-08-31 04:00:00,9461.0
-2011-08-31 05:00:00,9322.0
-2011-08-31 06:00:00,9482.0
-2011-08-31 07:00:00,10201.0
-2011-08-31 08:00:00,11255.0
-2011-08-31 09:00:00,12091.0
-2011-08-31 10:00:00,12800.0
-2011-08-31 11:00:00,13490.0
-2011-08-31 12:00:00,14277.0
-2011-08-31 13:00:00,14937.0
-2011-08-31 14:00:00,15593.0
-2011-08-31 15:00:00,16422.0
-2011-08-31 16:00:00,17129.0
-2011-08-31 17:00:00,17823.0
-2011-08-31 18:00:00,18299.0
-2011-08-31 19:00:00,18358.0
-2011-08-31 20:00:00,17944.0
-2011-08-31 21:00:00,17767.0
-2011-08-31 22:00:00,17747.0
-2011-08-31 23:00:00,16902.0
-2011-09-01 00:00:00,15468.0
-2011-08-30 01:00:00,10971.0
-2011-08-30 02:00:00,10228.0
-2011-08-30 03:00:00,9712.0
-2011-08-30 04:00:00,9352.0
-2011-08-30 05:00:00,9181.0
-2011-08-30 06:00:00,9331.0
-2011-08-30 07:00:00,9966.0
-2011-08-30 08:00:00,10917.0
-2011-08-30 09:00:00,11685.0
-2011-08-30 10:00:00,12244.0
-2011-08-30 11:00:00,12775.0
-2011-08-30 12:00:00,13254.0
-2011-08-30 13:00:00,13497.0
-2011-08-30 14:00:00,13772.0
-2011-08-30 15:00:00,13912.0
-2011-08-30 16:00:00,13953.0
-2011-08-30 17:00:00,14001.0
-2011-08-30 18:00:00,13875.0
-2011-08-30 19:00:00,13571.0
-2011-08-30 20:00:00,13320.0
-2011-08-30 21:00:00,13549.0
-2011-08-30 22:00:00,13615.0
-2011-08-30 23:00:00,12992.0
-2011-08-31 00:00:00,11980.0
-2011-08-29 01:00:00,10043.0
-2011-08-29 02:00:00,9501.0
-2011-08-29 03:00:00,9115.0
-2011-08-29 04:00:00,8875.0
-2011-08-29 05:00:00,8799.0
-2011-08-29 06:00:00,8994.0
-2011-08-29 07:00:00,9668.0
-2011-08-29 08:00:00,10588.0
-2011-08-29 09:00:00,11579.0
-2011-08-29 10:00:00,12433.0
-2011-08-29 11:00:00,13052.0
-2011-08-29 12:00:00,13628.0
-2011-08-29 13:00:00,13952.0
-2011-08-29 14:00:00,14223.0
-2011-08-29 15:00:00,14558.0
-2011-08-29 16:00:00,14818.0
-2011-08-29 17:00:00,15033.0
-2011-08-29 18:00:00,15071.0
-2011-08-29 19:00:00,14859.0
-2011-08-29 20:00:00,14306.0
-2011-08-29 21:00:00,14047.0
-2011-08-29 22:00:00,14002.0
-2011-08-29 23:00:00,13222.0
-2011-08-30 00:00:00,12066.0
-2011-08-28 01:00:00,10578.0
-2011-08-28 02:00:00,9878.0
-2011-08-28 03:00:00,9381.0
-2011-08-28 04:00:00,8920.0
-2011-08-28 05:00:00,8770.0
-2011-08-28 06:00:00,8641.0
-2011-08-28 07:00:00,8682.0
-2011-08-28 08:00:00,8539.0
-2011-08-28 09:00:00,8872.0
-2011-08-28 10:00:00,9575.0
-2011-08-28 11:00:00,10260.0
-2011-08-28 12:00:00,10854.0
-2011-08-28 13:00:00,11223.0
-2011-08-28 14:00:00,11558.0
-2011-08-28 15:00:00,11792.0
-2011-08-28 16:00:00,12032.0
-2011-08-28 17:00:00,12129.0
-2011-08-28 18:00:00,12139.0
-2011-08-28 19:00:00,11924.0
-2011-08-28 20:00:00,11679.0
-2011-08-28 21:00:00,11726.0
-2011-08-28 22:00:00,11991.0
-2011-08-28 23:00:00,11585.0
-2011-08-29 00:00:00,10819.0
-2011-08-27 01:00:00,11769.0
-2011-08-27 02:00:00,10975.0
-2011-08-27 03:00:00,10383.0
-2011-08-27 04:00:00,9915.0
-2011-08-27 05:00:00,9733.0
-2011-08-27 06:00:00,9638.0
-2011-08-27 07:00:00,9810.0
-2011-08-27 08:00:00,9955.0
-2011-08-27 09:00:00,10663.0
-2011-08-27 10:00:00,11749.0
-2011-08-27 11:00:00,12858.0
-2011-08-27 12:00:00,13801.0
-2011-08-27 13:00:00,14423.0
-2011-08-27 14:00:00,14898.0
-2011-08-27 15:00:00,15026.0
-2011-08-27 16:00:00,15119.0
-2011-08-27 17:00:00,15062.0
-2011-08-27 18:00:00,14896.0
-2011-08-27 19:00:00,14442.0
-2011-08-27 20:00:00,13608.0
-2011-08-27 21:00:00,12989.0
-2011-08-27 22:00:00,12848.0
-2011-08-27 23:00:00,12273.0
-2011-08-28 00:00:00,11421.0
-2011-08-26 01:00:00,11554.0
-2011-08-26 02:00:00,10694.0
-2011-08-26 03:00:00,10059.0
-2011-08-26 04:00:00,9680.0
-2011-08-26 05:00:00,9460.0
-2011-08-26 06:00:00,9585.0
-2011-08-26 07:00:00,10102.0
-2011-08-26 08:00:00,10914.0
-2011-08-26 09:00:00,11832.0
-2011-08-26 10:00:00,12703.0
-2011-08-26 11:00:00,13393.0
-2011-08-26 12:00:00,14027.0
-2011-08-26 13:00:00,14490.0
-2011-08-26 14:00:00,14949.0
-2011-08-26 15:00:00,15461.0
-2011-08-26 16:00:00,15815.0
-2011-08-26 17:00:00,15863.0
-2011-08-26 18:00:00,15634.0
-2011-08-26 19:00:00,15223.0
-2011-08-26 20:00:00,14569.0
-2011-08-26 21:00:00,14264.0
-2011-08-26 22:00:00,14318.0
-2011-08-26 23:00:00,13745.0
-2011-08-27 00:00:00,12799.0
-2011-08-25 01:00:00,12677.0
-2011-08-25 02:00:00,11541.0
-2011-08-25 03:00:00,10758.0
-2011-08-25 04:00:00,10231.0
-2011-08-25 05:00:00,9968.0
-2011-08-25 06:00:00,10018.0
-2011-08-25 07:00:00,10568.0
-2011-08-25 08:00:00,11412.0
-2011-08-25 09:00:00,12361.0
-2011-08-25 10:00:00,13141.0
-2011-08-25 11:00:00,13843.0
-2011-08-25 12:00:00,14538.0
-2011-08-25 13:00:00,14984.0
-2011-08-25 14:00:00,15411.0
-2011-08-25 15:00:00,15882.0
-2011-08-25 16:00:00,16235.0
-2011-08-25 17:00:00,16534.0
-2011-08-25 18:00:00,16676.0
-2011-08-25 19:00:00,16392.0
-2011-08-25 20:00:00,15578.0
-2011-08-25 21:00:00,14944.0
-2011-08-25 22:00:00,14839.0
-2011-08-25 23:00:00,13987.0
-2011-08-26 00:00:00,12745.0
-2011-08-24 01:00:00,11252.0
-2011-08-24 02:00:00,10598.0
-2011-08-24 03:00:00,10154.0
-2011-08-24 04:00:00,9880.0
-2011-08-24 05:00:00,9774.0
-2011-08-24 06:00:00,9988.0
-2011-08-24 07:00:00,10719.0
-2011-08-24 08:00:00,11838.0
-2011-08-24 09:00:00,13031.0
-2011-08-24 10:00:00,14017.0
-2011-08-24 11:00:00,15213.0
-2011-08-24 12:00:00,16452.0
-2011-08-24 13:00:00,17490.0
-2011-08-24 14:00:00,18425.0
-2011-08-24 15:00:00,19367.0
-2011-08-24 16:00:00,20080.0
-2011-08-24 17:00:00,20495.0
-2011-08-24 18:00:00,20515.0
-2011-08-24 19:00:00,19966.0
-2011-08-24 20:00:00,18971.0
-2011-08-24 21:00:00,18029.0
-2011-08-24 22:00:00,17394.0
-2011-08-24 23:00:00,16033.0
-2011-08-25 00:00:00,14285.0
-2011-08-23 01:00:00,11787.0
-2011-08-23 02:00:00,10838.0
-2011-08-23 03:00:00,10205.0
-2011-08-23 04:00:00,9791.0
-2011-08-23 05:00:00,9568.0
-2011-08-23 06:00:00,9703.0
-2011-08-23 07:00:00,10304.0
-2011-08-23 08:00:00,11185.0
-2011-08-23 09:00:00,12069.0
-2011-08-23 10:00:00,12737.0
-2011-08-23 11:00:00,13219.0
-2011-08-23 12:00:00,13586.0
-2011-08-23 13:00:00,13637.0
-2011-08-23 14:00:00,13494.0
-2011-08-23 15:00:00,13480.0
-2011-08-23 16:00:00,13513.0
-2011-08-23 17:00:00,13500.0
-2011-08-23 18:00:00,13660.0
-2011-08-23 19:00:00,13788.0
-2011-08-23 20:00:00,13463.0
-2011-08-23 21:00:00,13456.0
-2011-08-23 22:00:00,13678.0
-2011-08-23 23:00:00,13191.0
-2011-08-24 00:00:00,12237.0
-2011-08-22 01:00:00,10750.0
-2011-08-22 02:00:00,10022.0
-2011-08-22 03:00:00,9529.0
-2011-08-22 04:00:00,9221.0
-2011-08-22 05:00:00,9128.0
-2011-08-22 06:00:00,9306.0
-2011-08-22 07:00:00,9934.0
-2011-08-22 08:00:00,10913.0
-2011-08-22 09:00:00,11862.0
-2011-08-22 10:00:00,12797.0
-2011-08-22 11:00:00,13518.0
-2011-08-22 12:00:00,14138.0
-2011-08-22 13:00:00,14604.0
-2011-08-22 14:00:00,15122.0
-2011-08-22 15:00:00,15565.0
-2011-08-22 16:00:00,15860.0
-2011-08-22 17:00:00,15991.0
-2011-08-22 18:00:00,16129.0
-2011-08-22 19:00:00,15977.0
-2011-08-22 20:00:00,15422.0
-2011-08-22 21:00:00,14964.0
-2011-08-22 22:00:00,14931.0
-2011-08-22 23:00:00,14136.0
-2011-08-23 00:00:00,12970.0
-2011-08-21 01:00:00,11719.0
-2011-08-21 02:00:00,10975.0
-2011-08-21 03:00:00,10319.0
-2011-08-21 04:00:00,9910.0
-2011-08-21 05:00:00,9650.0
-2011-08-21 06:00:00,9416.0
-2011-08-21 07:00:00,9367.0
-2011-08-21 08:00:00,9214.0
-2011-08-21 09:00:00,9559.0
-2011-08-21 10:00:00,10240.0
-2011-08-21 11:00:00,11087.0
-2011-08-21 12:00:00,11862.0
-2011-08-21 13:00:00,12485.0
-2011-08-21 14:00:00,12916.0
-2011-08-21 15:00:00,13219.0
-2011-08-21 16:00:00,13514.0
-2011-08-21 17:00:00,13745.0
-2011-08-21 18:00:00,13891.0
-2011-08-21 19:00:00,13692.0
-2011-08-21 20:00:00,13302.0
-2011-08-21 21:00:00,12903.0
-2011-08-21 22:00:00,13035.0
-2011-08-21 23:00:00,12573.0
-2011-08-22 00:00:00,11707.0
-2011-08-20 01:00:00,13582.0
-2011-08-20 02:00:00,12579.0
-2011-08-20 03:00:00,11838.0
-2011-08-20 04:00:00,11269.0
-2011-08-20 05:00:00,10911.0
-2011-08-20 06:00:00,10786.0
-2011-08-20 07:00:00,10931.0
-2011-08-20 08:00:00,11088.0
-2011-08-20 09:00:00,11564.0
-2011-08-20 10:00:00,12343.0
-2011-08-20 11:00:00,12902.0
-2011-08-20 12:00:00,13354.0
-2011-08-20 13:00:00,13175.0
-2011-08-20 14:00:00,13021.0
-2011-08-20 15:00:00,12963.0
-2011-08-20 16:00:00,13379.0
-2011-08-20 17:00:00,13832.0
-2011-08-20 18:00:00,14164.0
-2011-08-20 19:00:00,14251.0
-2011-08-20 20:00:00,13906.0
-2011-08-20 21:00:00,13569.0
-2011-08-20 22:00:00,13711.0
-2011-08-20 23:00:00,13251.0
-2011-08-21 00:00:00,12559.0
-2011-08-19 01:00:00,12340.0
-2011-08-19 02:00:00,11442.0
-2011-08-19 03:00:00,10762.0
-2011-08-19 04:00:00,10350.0
-2011-08-19 05:00:00,10130.0
-2011-08-19 06:00:00,10194.0
-2011-08-19 07:00:00,10697.0
-2011-08-19 08:00:00,11498.0
-2011-08-19 09:00:00,12416.0
-2011-08-19 10:00:00,13339.0
-2011-08-19 11:00:00,14287.0
-2011-08-19 12:00:00,15312.0
-2011-08-19 13:00:00,16205.0
-2011-08-19 14:00:00,16963.0
-2011-08-19 15:00:00,17590.0
-2011-08-19 16:00:00,18023.0
-2011-08-19 17:00:00,18344.0
-2011-08-19 18:00:00,18391.0
-2011-08-19 19:00:00,18122.0
-2011-08-19 20:00:00,17444.0
-2011-08-19 21:00:00,16840.0
-2011-08-19 22:00:00,16684.0
-2011-08-19 23:00:00,15947.0
-2011-08-20 00:00:00,14831.0
-2011-08-18 01:00:00,13137.0
-2011-08-18 02:00:00,12169.0
-2011-08-18 03:00:00,11543.0
-2011-08-18 04:00:00,11003.0
-2011-08-18 05:00:00,10733.0
-2011-08-18 06:00:00,10772.0
-2011-08-18 07:00:00,11289.0
-2011-08-18 08:00:00,12002.0
-2011-08-18 09:00:00,13061.0
-2011-08-18 10:00:00,14060.0
-2011-08-18 11:00:00,14924.0
-2011-08-18 12:00:00,15843.0
-2011-08-18 13:00:00,16430.0
-2011-08-18 14:00:00,16961.0
-2011-08-18 15:00:00,17513.0
-2011-08-18 16:00:00,17615.0
-2011-08-18 17:00:00,17609.0
-2011-08-18 18:00:00,17455.0
-2011-08-18 19:00:00,17221.0
-2011-08-18 20:00:00,16544.0
-2011-08-18 21:00:00,15848.0
-2011-08-18 22:00:00,15716.0
-2011-08-18 23:00:00,14857.0
-2011-08-19 00:00:00,13561.0
-2011-08-17 01:00:00,11885.0
-2011-08-17 02:00:00,10983.0
-2011-08-17 03:00:00,10345.0
-2011-08-17 04:00:00,9952.0
-2011-08-17 05:00:00,9734.0
-2011-08-17 06:00:00,9850.0
-2011-08-17 07:00:00,10459.0
-2011-08-17 08:00:00,11233.0
-2011-08-17 09:00:00,12099.0
-2011-08-17 10:00:00,13037.0
-2011-08-17 11:00:00,13936.0
-2011-08-17 12:00:00,14773.0
-2011-08-17 13:00:00,15377.0
-2011-08-17 14:00:00,15696.0
-2011-08-17 15:00:00,16097.0
-2011-08-17 16:00:00,16592.0
-2011-08-17 17:00:00,17113.0
-2011-08-17 18:00:00,17117.0
-2011-08-17 19:00:00,16834.0
-2011-08-17 20:00:00,16373.0
-2011-08-17 21:00:00,16066.0
-2011-08-17 22:00:00,16208.0
-2011-08-17 23:00:00,15609.0
-2011-08-18 00:00:00,14397.0
-2011-08-16 01:00:00,11249.0
-2011-08-16 02:00:00,10451.0
-2011-08-16 03:00:00,9933.0
-2011-08-16 04:00:00,9541.0
-2011-08-16 05:00:00,9388.0
-2011-08-16 06:00:00,9522.0
-2011-08-16 07:00:00,10082.0
-2011-08-16 08:00:00,10834.0
-2011-08-16 09:00:00,11830.0
-2011-08-16 10:00:00,12837.0
-2011-08-16 11:00:00,13659.0
-2011-08-16 12:00:00,14405.0
-2011-08-16 13:00:00,14931.0
-2011-08-16 14:00:00,15439.0
-2011-08-16 15:00:00,15894.0
-2011-08-16 16:00:00,16170.0
-2011-08-16 17:00:00,16376.0
-2011-08-16 18:00:00,16451.0
-2011-08-16 19:00:00,16230.0
-2011-08-16 20:00:00,15631.0
-2011-08-16 21:00:00,15037.0
-2011-08-16 22:00:00,14972.0
-2011-08-16 23:00:00,14315.0
-2011-08-17 00:00:00,13102.0
-2011-08-15 01:00:00,10033.0
-2011-08-15 02:00:00,9460.0
-2011-08-15 03:00:00,9032.0
-2011-08-15 04:00:00,8832.0
-2011-08-15 05:00:00,8768.0
-2011-08-15 06:00:00,8968.0
-2011-08-15 07:00:00,9542.0
-2011-08-15 08:00:00,10352.0
-2011-08-15 09:00:00,11362.0
-2011-08-15 10:00:00,12210.0
-2011-08-15 11:00:00,12969.0
-2011-08-15 12:00:00,13568.0
-2011-08-15 13:00:00,13969.0
-2011-08-15 14:00:00,14322.0
-2011-08-15 15:00:00,14696.0
-2011-08-15 16:00:00,14954.0
-2011-08-15 17:00:00,15134.0
-2011-08-15 18:00:00,15199.0
-2011-08-15 19:00:00,15057.0
-2011-08-15 20:00:00,14560.0
-2011-08-15 21:00:00,14065.0
-2011-08-15 22:00:00,14032.0
-2011-08-15 23:00:00,13380.0
-2011-08-16 00:00:00,12330.0
-2011-08-14 01:00:00,10680.0
-2011-08-14 02:00:00,9976.0
-2011-08-14 03:00:00,9531.0
-2011-08-14 04:00:00,9130.0
-2011-08-14 05:00:00,8955.0
-2011-08-14 06:00:00,8806.0
-2011-08-14 07:00:00,8865.0
-2011-08-14 08:00:00,8735.0
-2011-08-14 09:00:00,9019.0
-2011-08-14 10:00:00,9569.0
-2011-08-14 11:00:00,10123.0
-2011-08-14 12:00:00,10499.0
-2011-08-14 13:00:00,10758.0
-2011-08-14 14:00:00,10860.0
-2011-08-14 15:00:00,11029.0
-2011-08-14 16:00:00,11205.0
-2011-08-14 17:00:00,11447.0
-2011-08-14 18:00:00,11631.0
-2011-08-14 19:00:00,11729.0
-2011-08-14 20:00:00,11552.0
-2011-08-14 21:00:00,11397.0
-2011-08-14 22:00:00,11661.0
-2011-08-14 23:00:00,11436.0
-2011-08-15 00:00:00,10799.0
-2011-08-13 01:00:00,12027.0
-2011-08-13 02:00:00,11194.0
-2011-08-13 03:00:00,10671.0
-2011-08-13 04:00:00,10211.0
-2011-08-13 05:00:00,9993.0
-2011-08-13 06:00:00,9895.0
-2011-08-13 07:00:00,10053.0
-2011-08-13 08:00:00,10150.0
-2011-08-13 09:00:00,10680.0
-2011-08-13 10:00:00,11630.0
-2011-08-13 11:00:00,12761.0
-2011-08-13 12:00:00,13887.0
-2011-08-13 13:00:00,14579.0
-2011-08-13 14:00:00,15010.0
-2011-08-13 15:00:00,14668.0
-2011-08-13 16:00:00,13874.0
-2011-08-13 17:00:00,13447.0
-2011-08-13 18:00:00,13084.0
-2011-08-13 19:00:00,12684.0
-2011-08-13 20:00:00,12298.0
-2011-08-13 21:00:00,12142.0
-2011-08-13 22:00:00,12321.0
-2011-08-13 23:00:00,12052.0
-2011-08-14 00:00:00,11414.0
-2011-08-12 01:00:00,11619.0
-2011-08-12 02:00:00,10761.0
-2011-08-12 03:00:00,10179.0
-2011-08-12 04:00:00,9767.0
-2011-08-12 05:00:00,9544.0
-2011-08-12 06:00:00,9631.0
-2011-08-12 07:00:00,10180.0
-2011-08-12 08:00:00,10834.0
-2011-08-12 09:00:00,11790.0
-2011-08-12 10:00:00,12663.0
-2011-08-12 11:00:00,13378.0
-2011-08-12 12:00:00,13945.0
-2011-08-12 13:00:00,14417.0
-2011-08-12 14:00:00,14745.0
-2011-08-12 15:00:00,15090.0
-2011-08-12 16:00:00,15393.0
-2011-08-12 17:00:00,15579.0
-2011-08-12 18:00:00,15490.0
-2011-08-12 19:00:00,15190.0
-2011-08-12 20:00:00,14623.0
-2011-08-12 21:00:00,14270.0
-2011-08-12 22:00:00,14342.0
-2011-08-12 23:00:00,13897.0
-2011-08-13 00:00:00,12936.0
-2011-08-11 01:00:00,10965.0
-2011-08-11 02:00:00,10251.0
-2011-08-11 03:00:00,9752.0
-2011-08-11 04:00:00,9406.0
-2011-08-11 05:00:00,9287.0
-2011-08-11 06:00:00,9402.0
-2011-08-11 07:00:00,9887.0
-2011-08-11 08:00:00,10533.0
-2011-08-11 09:00:00,11546.0
-2011-08-11 10:00:00,12420.0
-2011-08-11 11:00:00,13038.0
-2011-08-11 12:00:00,13615.0
-2011-08-11 13:00:00,14042.0
-2011-08-11 14:00:00,14411.0
-2011-08-11 15:00:00,14814.0
-2011-08-11 16:00:00,15111.0
-2011-08-11 17:00:00,15325.0
-2011-08-11 18:00:00,15399.0
-2011-08-11 19:00:00,15256.0
-2011-08-11 20:00:00,14734.0
-2011-08-11 21:00:00,14237.0
-2011-08-11 22:00:00,14145.0
-2011-08-11 23:00:00,13697.0
-2011-08-12 00:00:00,12660.0
-2011-08-10 01:00:00,11932.0
-2011-08-10 02:00:00,11050.0
-2011-08-10 03:00:00,10373.0
-2011-08-10 04:00:00,9936.0
-2011-08-10 05:00:00,9684.0
-2011-08-10 06:00:00,9757.0
-2011-08-10 07:00:00,10235.0
-2011-08-10 08:00:00,10911.0
-2011-08-10 09:00:00,11867.0
-2011-08-10 10:00:00,12658.0
-2011-08-10 11:00:00,13238.0
-2011-08-10 12:00:00,13694.0
-2011-08-10 13:00:00,13967.0
-2011-08-10 14:00:00,14284.0
-2011-08-10 15:00:00,14560.0
-2011-08-10 16:00:00,14694.0
-2011-08-10 17:00:00,14697.0
-2011-08-10 18:00:00,14643.0
-2011-08-10 19:00:00,14397.0
-2011-08-10 20:00:00,13834.0
-2011-08-10 21:00:00,13345.0
-2011-08-10 22:00:00,13453.0
-2011-08-10 23:00:00,12977.0
-2011-08-11 00:00:00,12012.0
-2011-08-09 01:00:00,12158.0
-2011-08-09 02:00:00,11335.0
-2011-08-09 03:00:00,10707.0
-2011-08-09 04:00:00,10283.0
-2011-08-09 05:00:00,10082.0
-2011-08-09 06:00:00,10194.0
-2011-08-09 07:00:00,10717.0
-2011-08-09 08:00:00,11480.0
-2011-08-09 09:00:00,12541.0
-2011-08-09 10:00:00,13560.0
-2011-08-09 11:00:00,14480.0
-2011-08-09 12:00:00,15395.0
-2011-08-09 13:00:00,16007.0
-2011-08-09 14:00:00,16354.0
-2011-08-09 15:00:00,16496.0
-2011-08-09 16:00:00,16481.0
-2011-08-09 17:00:00,16507.0
-2011-08-09 18:00:00,16416.0
-2011-08-09 19:00:00,16052.0
-2011-08-09 20:00:00,15402.0
-2011-08-09 21:00:00,14702.0
-2011-08-09 22:00:00,14717.0
-2011-08-09 23:00:00,14196.0
-2011-08-10 00:00:00,13112.0
-2011-08-08 01:00:00,12546.0
-2011-08-08 02:00:00,11742.0
-2011-08-08 03:00:00,11111.0
-2011-08-08 04:00:00,10727.0
-2011-08-08 05:00:00,10515.0
-2011-08-08 06:00:00,10701.0
-2011-08-08 07:00:00,11220.0
-2011-08-08 08:00:00,12092.0
-2011-08-08 09:00:00,13273.0
-2011-08-08 10:00:00,14426.0
-2011-08-08 11:00:00,15204.0
-2011-08-08 12:00:00,16003.0
-2011-08-08 13:00:00,16665.0
-2011-08-08 14:00:00,17144.0
-2011-08-08 15:00:00,17590.0
-2011-08-08 16:00:00,17640.0
-2011-08-08 17:00:00,16955.0
-2011-08-08 18:00:00,16355.0
-2011-08-08 19:00:00,15765.0
-2011-08-08 20:00:00,15161.0
-2011-08-08 21:00:00,14749.0
-2011-08-08 22:00:00,14693.0
-2011-08-08 23:00:00,14194.0
-2011-08-09 00:00:00,13246.0
-2011-08-07 01:00:00,13210.0
-2011-08-07 02:00:00,12314.0
-2011-08-07 03:00:00,11624.0
-2011-08-07 04:00:00,10994.0
-2011-08-07 05:00:00,10726.0
-2011-08-07 06:00:00,10620.0
-2011-08-07 07:00:00,10565.0
-2011-08-07 08:00:00,10522.0
-2011-08-07 09:00:00,10842.0
-2011-08-07 10:00:00,11532.0
-2011-08-07 11:00:00,12254.0
-2011-08-07 12:00:00,12725.0
-2011-08-07 13:00:00,13745.0
-2011-08-07 14:00:00,14798.0
-2011-08-07 15:00:00,15700.0
-2011-08-07 16:00:00,16469.0
-2011-08-07 17:00:00,16957.0
-2011-08-07 18:00:00,16982.0
-2011-08-07 19:00:00,16387.0
-2011-08-07 20:00:00,15574.0
-2011-08-07 21:00:00,14943.0
-2011-08-07 22:00:00,14874.0
-2011-08-07 23:00:00,14436.0
-2011-08-08 00:00:00,13581.0
-2011-08-06 01:00:00,13984.0
-2011-08-06 02:00:00,13085.0
-2011-08-06 03:00:00,12380.0
-2011-08-06 04:00:00,11879.0
-2011-08-06 05:00:00,11474.0
-2011-08-06 06:00:00,11420.0
-2011-08-06 07:00:00,11519.0
-2011-08-06 08:00:00,11765.0
-2011-08-06 09:00:00,12207.0
-2011-08-06 10:00:00,12961.0
-2011-08-06 11:00:00,13674.0
-2011-08-06 12:00:00,14440.0
-2011-08-06 13:00:00,15397.0
-2011-08-06 14:00:00,16165.0
-2011-08-06 15:00:00,16423.0
-2011-08-06 16:00:00,16605.0
-2011-08-06 17:00:00,16718.0
-2011-08-06 18:00:00,16732.0
-2011-08-06 19:00:00,16609.0
-2011-08-06 20:00:00,16250.0
-2011-08-06 21:00:00,15742.0
-2011-08-06 22:00:00,15554.0
-2011-08-06 23:00:00,15122.0
-2011-08-07 00:00:00,14181.0
-2011-08-05 01:00:00,13331.0
-2011-08-05 02:00:00,12357.0
-2011-08-05 03:00:00,11686.0
-2011-08-05 04:00:00,11180.0
-2011-08-05 05:00:00,10936.0
-2011-08-05 06:00:00,11028.0
-2011-08-05 07:00:00,11523.0
-2011-08-05 08:00:00,12297.0
-2011-08-05 09:00:00,13484.0
-2011-08-05 10:00:00,14533.0
-2011-08-05 11:00:00,15370.0
-2011-08-05 12:00:00,16281.0
-2011-08-05 13:00:00,17039.0
-2011-08-05 14:00:00,17645.0
-2011-08-05 15:00:00,18013.0
-2011-08-05 16:00:00,18099.0
-2011-08-05 17:00:00,18216.0
-2011-08-05 18:00:00,18302.0
-2011-08-05 19:00:00,18025.0
-2011-08-05 20:00:00,17173.0
-2011-08-05 21:00:00,16493.0
-2011-08-05 22:00:00,16394.0
-2011-08-05 23:00:00,15959.0
-2011-08-06 00:00:00,14935.0
-2011-08-04 01:00:00,13615.0
-2011-08-04 02:00:00,12555.0
-2011-08-04 03:00:00,11826.0
-2011-08-04 04:00:00,11295.0
-2011-08-04 05:00:00,11018.0
-2011-08-04 06:00:00,11066.0
-2011-08-04 07:00:00,11573.0
-2011-08-04 08:00:00,12329.0
-2011-08-04 09:00:00,13520.0
-2011-08-04 10:00:00,14551.0
-2011-08-04 11:00:00,15317.0
-2011-08-04 12:00:00,16029.0
-2011-08-04 13:00:00,16725.0
-2011-08-04 14:00:00,17427.0
-2011-08-04 15:00:00,18059.0
-2011-08-04 16:00:00,18380.0
-2011-08-04 17:00:00,18588.0
-2011-08-04 18:00:00,18618.0
-2011-08-04 19:00:00,18317.0
-2011-08-04 20:00:00,17581.0
-2011-08-04 21:00:00,16686.0
-2011-08-04 22:00:00,16378.0
-2011-08-04 23:00:00,15770.0
-2011-08-05 00:00:00,14573.0
-2011-08-03 01:00:00,15308.0
-2011-08-03 02:00:00,14163.0
-2011-08-03 03:00:00,13418.0
-2011-08-03 04:00:00,12948.0
-2011-08-03 05:00:00,12688.0
-2011-08-03 06:00:00,12806.0
-2011-08-03 07:00:00,13355.0
-2011-08-03 08:00:00,14117.0
-2011-08-03 09:00:00,15069.0
-2011-08-03 10:00:00,15874.0
-2011-08-03 11:00:00,16489.0
-2011-08-03 12:00:00,17380.0
-2011-08-03 13:00:00,18212.0
-2011-08-03 14:00:00,18821.0
-2011-08-03 15:00:00,19354.0
-2011-08-03 16:00:00,19615.0
-2011-08-03 17:00:00,19670.0
-2011-08-03 18:00:00,19530.0
-2011-08-03 19:00:00,19157.0
-2011-08-03 20:00:00,18430.0
-2011-08-03 21:00:00,17499.0
-2011-08-03 22:00:00,17036.0
-2011-08-03 23:00:00,16343.0
-2011-08-04 00:00:00,14974.0
-2011-08-02 01:00:00,15873.0
-2011-08-02 02:00:00,14789.0
-2011-08-02 03:00:00,14048.0
-2011-08-02 04:00:00,13524.0
-2011-08-02 05:00:00,13224.0
-2011-08-02 06:00:00,13311.0
-2011-08-02 07:00:00,13844.0
-2011-08-02 08:00:00,14674.0
-2011-08-02 09:00:00,15751.0
-2011-08-02 10:00:00,16954.0
-2011-08-02 11:00:00,18132.0
-2011-08-02 12:00:00,19191.0
-2011-08-02 13:00:00,20073.0
-2011-08-02 14:00:00,20807.0
-2011-08-02 15:00:00,21481.0
-2011-08-02 16:00:00,22044.0
-2011-08-02 17:00:00,22409.0
-2011-08-02 18:00:00,22576.0
-2011-08-02 19:00:00,22343.0
-2011-08-02 20:00:00,21567.0
-2011-08-02 21:00:00,20767.0
-2011-08-02 22:00:00,20244.0
-2011-08-02 23:00:00,19164.0
-2011-08-03 00:00:00,16834.0
-2011-08-01 01:00:00,15079.0
-2011-08-01 02:00:00,14026.0
-2011-08-01 03:00:00,13313.0
-2011-08-01 04:00:00,12742.0
-2011-08-01 05:00:00,12432.0
-2011-08-01 06:00:00,12471.0
-2011-08-01 07:00:00,12912.0
-2011-08-01 08:00:00,13791.0
-2011-08-01 09:00:00,15173.0
-2011-08-01 10:00:00,16563.0
-2011-08-01 11:00:00,17876.0
-2011-08-01 12:00:00,19019.0
-2011-08-01 13:00:00,19779.0
-2011-08-01 14:00:00,20515.0
-2011-08-01 15:00:00,21091.0
-2011-08-01 16:00:00,21435.0
-2011-08-01 17:00:00,21472.0
-2011-08-01 18:00:00,21053.0
-2011-08-01 19:00:00,20550.0
-2011-08-01 20:00:00,19977.0
-2011-08-01 21:00:00,19413.0
-2011-08-01 22:00:00,19335.0
-2011-08-01 23:00:00,18632.0
-2011-08-02 00:00:00,17213.0
-2011-07-31 01:00:00,13847.0
-2011-07-31 02:00:00,12792.0
-2011-07-31 03:00:00,12031.0
-2011-07-31 04:00:00,11352.0
-2011-07-31 05:00:00,10954.0
-2011-07-31 06:00:00,10647.0
-2011-07-31 07:00:00,10449.0
-2011-07-31 08:00:00,10363.0
-2011-07-31 09:00:00,11235.0
-2011-07-31 10:00:00,12510.0
-2011-07-31 11:00:00,13948.0
-2011-07-31 12:00:00,15271.0
-2011-07-31 13:00:00,16413.0
-2011-07-31 14:00:00,17189.0
-2011-07-31 15:00:00,17862.0
-2011-07-31 16:00:00,18285.0
-2011-07-31 17:00:00,18606.0
-2011-07-31 18:00:00,18876.0
-2011-07-31 19:00:00,18945.0
-2011-07-31 20:00:00,18653.0
-2011-07-31 21:00:00,18116.0
-2011-07-31 22:00:00,17853.0
-2011-07-31 23:00:00,17460.0
-2011-08-01 00:00:00,16342.0
-2011-07-30 01:00:00,13493.0
-2011-07-30 02:00:00,12434.0
-2011-07-30 03:00:00,11647.0
-2011-07-30 04:00:00,11078.0
-2011-07-30 05:00:00,10665.0
-2011-07-30 06:00:00,10543.0
-2011-07-30 07:00:00,10537.0
-2011-07-30 08:00:00,10771.0
-2011-07-30 09:00:00,11693.0
-2011-07-30 10:00:00,12909.0
-2011-07-30 11:00:00,14077.0
-2011-07-30 12:00:00,15248.0
-2011-07-30 13:00:00,16086.0
-2011-07-30 14:00:00,16769.0
-2011-07-30 15:00:00,17180.0
-2011-07-30 16:00:00,17615.0
-2011-07-30 17:00:00,17960.0
-2011-07-30 18:00:00,18202.0
-2011-07-30 19:00:00,18154.0
-2011-07-30 20:00:00,17710.0
-2011-07-30 21:00:00,17005.0
-2011-07-30 22:00:00,16497.0
-2011-07-30 23:00:00,15994.0
-2011-07-31 00:00:00,14933.0
-2011-07-29 01:00:00,14641.0
-2011-07-29 02:00:00,13644.0
-2011-07-29 03:00:00,12869.0
-2011-07-29 04:00:00,12303.0
-2011-07-29 05:00:00,11991.0
-2011-07-29 06:00:00,12055.0
-2011-07-29 07:00:00,12547.0
-2011-07-29 08:00:00,13314.0
-2011-07-29 09:00:00,14220.0
-2011-07-29 10:00:00,15126.0
-2011-07-29 11:00:00,15752.0
-2011-07-29 12:00:00,16337.0
-2011-07-29 13:00:00,16863.0
-2011-07-29 14:00:00,17323.0
-2011-07-29 15:00:00,17789.0
-2011-07-29 16:00:00,18273.0
-2011-07-29 17:00:00,18811.0
-2011-07-29 18:00:00,19052.0
-2011-07-29 19:00:00,18840.0
-2011-07-29 20:00:00,18187.0
-2011-07-29 21:00:00,17160.0
-2011-07-29 22:00:00,16613.0
-2011-07-29 23:00:00,16004.0
-2011-07-30 00:00:00,14791.0
-2011-07-28 01:00:00,15063.0
-2011-07-28 02:00:00,13652.0
-2011-07-28 03:00:00,12608.0
-2011-07-28 04:00:00,12084.0
-2011-07-28 05:00:00,11778.0
-2011-07-28 06:00:00,11838.0
-2011-07-28 07:00:00,12433.0
-2011-07-28 08:00:00,13355.0
-2011-07-28 09:00:00,14200.0
-2011-07-28 10:00:00,14835.0
-2011-07-28 11:00:00,15349.0
-2011-07-28 12:00:00,15875.0
-2011-07-28 13:00:00,16129.0
-2011-07-28 14:00:00,16297.0
-2011-07-28 15:00:00,16572.0
-2011-07-28 16:00:00,17187.0
-2011-07-28 17:00:00,17833.0
-2011-07-28 18:00:00,18313.0
-2011-07-28 19:00:00,18327.0
-2011-07-28 20:00:00,17969.0
-2011-07-28 21:00:00,17521.0
-2011-07-28 22:00:00,17517.0
-2011-07-28 23:00:00,17052.0
-2011-07-29 00:00:00,15874.0
-2011-07-27 01:00:00,12864.0
-2011-07-27 02:00:00,11973.0
-2011-07-27 03:00:00,11361.0
-2011-07-27 04:00:00,10941.0
-2011-07-27 05:00:00,10740.0
-2011-07-27 06:00:00,10851.0
-2011-07-27 07:00:00,11325.0
-2011-07-27 08:00:00,12156.0
-2011-07-27 09:00:00,12998.0
-2011-07-27 10:00:00,13579.0
-2011-07-27 11:00:00,14088.0
-2011-07-27 12:00:00,14476.0
-2011-07-27 13:00:00,14820.0
-2011-07-27 14:00:00,15703.0
-2011-07-27 15:00:00,16553.0
-2011-07-27 16:00:00,17401.0
-2011-07-27 17:00:00,18288.0
-2011-07-27 18:00:00,18825.0
-2011-07-27 19:00:00,19011.0
-2011-07-27 20:00:00,18789.0
-2011-07-27 21:00:00,18406.0
-2011-07-27 22:00:00,18540.0
-2011-07-27 23:00:00,18036.0
-2011-07-28 00:00:00,16762.0
-2011-07-26 01:00:00,13991.0
-2011-07-26 02:00:00,12857.0
-2011-07-26 03:00:00,12052.0
-2011-07-26 04:00:00,11519.0
-2011-07-26 05:00:00,11266.0
-2011-07-26 06:00:00,11345.0
-2011-07-26 07:00:00,11701.0
-2011-07-26 08:00:00,12558.0
-2011-07-26 09:00:00,13990.0
-2011-07-26 10:00:00,15207.0
-2011-07-26 11:00:00,16277.0
-2011-07-26 12:00:00,17276.0
-2011-07-26 13:00:00,17982.0
-2011-07-26 14:00:00,18422.0
-2011-07-26 15:00:00,18832.0
-2011-07-26 16:00:00,18992.0
-2011-07-26 17:00:00,19041.0
-2011-07-26 18:00:00,18900.0
-2011-07-26 19:00:00,18432.0
-2011-07-26 20:00:00,17491.0
-2011-07-26 21:00:00,16472.0
-2011-07-26 22:00:00,15843.0
-2011-07-26 23:00:00,15308.0
-2011-07-27 00:00:00,14094.0
-2011-07-25 01:00:00,13275.0
-2011-07-25 02:00:00,12481.0
-2011-07-25 03:00:00,11884.0
-2011-07-25 04:00:00,11437.0
-2011-07-25 05:00:00,11293.0
-2011-07-25 06:00:00,11455.0
-2011-07-25 07:00:00,11955.0
-2011-07-25 08:00:00,12888.0
-2011-07-25 09:00:00,14144.0
-2011-07-25 10:00:00,15276.0
-2011-07-25 11:00:00,16117.0
-2011-07-25 12:00:00,16954.0
-2011-07-25 13:00:00,17529.0
-2011-07-25 14:00:00,18051.0
-2011-07-25 15:00:00,18503.0
-2011-07-25 16:00:00,18915.0
-2011-07-25 17:00:00,19249.0
-2011-07-25 18:00:00,19457.0
-2011-07-25 19:00:00,19422.0
-2011-07-25 20:00:00,18928.0
-2011-07-25 21:00:00,18168.0
-2011-07-25 22:00:00,17557.0
-2011-07-25 23:00:00,16918.0
-2011-07-26 00:00:00,15479.0
-2011-07-24 01:00:00,13905.0
-2011-07-24 02:00:00,12967.0
-2011-07-24 03:00:00,12183.0
-2011-07-24 04:00:00,11519.0
-2011-07-24 05:00:00,11197.0
-2011-07-24 06:00:00,11033.0
-2011-07-24 07:00:00,10955.0
-2011-07-24 08:00:00,11030.0
-2011-07-24 09:00:00,11463.0
-2011-07-24 10:00:00,12029.0
-2011-07-24 11:00:00,12297.0
-2011-07-24 12:00:00,12690.0
-2011-07-24 13:00:00,13192.0
-2011-07-24 14:00:00,13858.0
-2011-07-24 15:00:00,14701.0
-2011-07-24 16:00:00,15363.0
-2011-07-24 17:00:00,15539.0
-2011-07-24 18:00:00,15889.0
-2011-07-24 19:00:00,16252.0
-2011-07-24 20:00:00,16103.0
-2011-07-24 21:00:00,15600.0
-2011-07-24 22:00:00,15372.0
-2011-07-24 23:00:00,15155.0
-2011-07-25 00:00:00,14318.0
-2011-07-23 01:00:00,15569.0
-2011-07-23 02:00:00,14490.0
-2011-07-23 03:00:00,13337.0
-2011-07-23 04:00:00,12458.0
-2011-07-23 05:00:00,11959.0
-2011-07-23 06:00:00,11621.0
-2011-07-23 07:00:00,11611.0
-2011-07-23 08:00:00,11683.0
-2011-07-23 09:00:00,12211.0
-2011-07-23 10:00:00,12773.0
-2011-07-23 11:00:00,13400.0
-2011-07-23 12:00:00,13994.0
-2011-07-23 13:00:00,14538.0
-2011-07-23 14:00:00,14855.0
-2011-07-23 15:00:00,15161.0
-2011-07-23 16:00:00,15554.0
-2011-07-23 17:00:00,16039.0
-2011-07-23 18:00:00,16519.0
-2011-07-23 19:00:00,16591.0
-2011-07-23 20:00:00,16483.0
-2011-07-23 21:00:00,16209.0
-2011-07-23 22:00:00,15968.0
-2011-07-23 23:00:00,15720.0
-2011-07-24 00:00:00,14918.0
-2011-07-22 01:00:00,17671.0
-2011-07-22 02:00:00,16259.0
-2011-07-22 03:00:00,15164.0
-2011-07-22 04:00:00,14314.0
-2011-07-22 05:00:00,13798.0
-2011-07-22 06:00:00,13705.0
-2011-07-22 07:00:00,14039.0
-2011-07-22 08:00:00,14700.0
-2011-07-22 09:00:00,15529.0
-2011-07-22 10:00:00,16185.0
-2011-07-22 11:00:00,16511.0
-2011-07-22 12:00:00,16288.0
-2011-07-22 13:00:00,16099.0
-2011-07-22 14:00:00,16446.0
-2011-07-22 15:00:00,17205.0
-2011-07-22 16:00:00,17932.0
-2011-07-22 17:00:00,18677.0
-2011-07-22 18:00:00,19309.0
-2011-07-22 19:00:00,19551.0
-2011-07-22 20:00:00,19317.0
-2011-07-22 21:00:00,18811.0
-2011-07-22 22:00:00,18326.0
-2011-07-22 23:00:00,17829.0
-2011-07-23 00:00:00,16698.0
-2011-07-21 01:00:00,18510.0
-2011-07-21 02:00:00,17311.0
-2011-07-21 03:00:00,16438.0
-2011-07-21 04:00:00,15702.0
-2011-07-21 05:00:00,15201.0
-2011-07-21 06:00:00,15081.0
-2011-07-21 07:00:00,15341.0
-2011-07-21 08:00:00,16237.0
-2011-07-21 09:00:00,17725.0
-2011-07-21 10:00:00,19091.0
-2011-07-21 11:00:00,20346.0
-2011-07-21 12:00:00,21622.0
-2011-07-21 13:00:00,22510.0
-2011-07-21 14:00:00,23119.0
-2011-07-21 15:00:00,23446.0
-2011-07-21 16:00:00,23587.0
-2011-07-21 17:00:00,23670.0
-2011-07-21 18:00:00,23542.0
-2011-07-21 19:00:00,23160.0
-2011-07-21 20:00:00,22596.0
-2011-07-21 21:00:00,21843.0
-2011-07-21 22:00:00,21320.0
-2011-07-21 23:00:00,20673.0
-2011-07-22 00:00:00,19229.0
-2011-07-20 01:00:00,16669.0
-2011-07-20 02:00:00,15488.0
-2011-07-20 03:00:00,14599.0
-2011-07-20 04:00:00,13998.0
-2011-07-20 05:00:00,13630.0
-2011-07-20 06:00:00,13505.0
-2011-07-20 07:00:00,13902.0
-2011-07-20 08:00:00,14668.0
-2011-07-20 09:00:00,16041.0
-2011-07-20 10:00:00,17411.0
-2011-07-20 11:00:00,18980.0
-2011-07-20 12:00:00,20550.0
-2011-07-20 13:00:00,21773.0
-2011-07-20 14:00:00,22543.0
-2011-07-20 15:00:00,23194.0
-2011-07-20 16:00:00,23524.0
-2011-07-20 17:00:00,23713.0
-2011-07-20 18:00:00,23753.0
-2011-07-20 19:00:00,23582.0
-2011-07-20 20:00:00,23089.0
-2011-07-20 21:00:00,22458.0
-2011-07-20 22:00:00,22012.0
-2011-07-20 23:00:00,21407.0
-2011-07-21 00:00:00,20016.0
-2011-07-19 01:00:00,17146.0
-2011-07-19 02:00:00,16064.0
-2011-07-19 03:00:00,15301.0
-2011-07-19 04:00:00,14670.0
-2011-07-19 05:00:00,14287.0
-2011-07-19 06:00:00,14182.0
-2011-07-19 07:00:00,14420.0
-2011-07-19 08:00:00,15250.0
-2011-07-19 09:00:00,16672.0
-2011-07-19 10:00:00,18034.0
-2011-07-19 11:00:00,19274.0
-2011-07-19 12:00:00,20429.0
-2011-07-19 13:00:00,21191.0
-2011-07-19 14:00:00,21768.0
-2011-07-19 15:00:00,22278.0
-2011-07-19 16:00:00,22429.0
-2011-07-19 17:00:00,22463.0
-2011-07-19 18:00:00,22330.0
-2011-07-19 19:00:00,21969.0
-2011-07-19 20:00:00,21281.0
-2011-07-19 21:00:00,20584.0
-2011-07-19 22:00:00,20155.0
-2011-07-19 23:00:00,19599.0
-2011-07-20 00:00:00,18164.0
-2011-07-18 01:00:00,16257.0
-2011-07-18 02:00:00,15301.0
-2011-07-18 03:00:00,14622.0
-2011-07-18 04:00:00,14125.0
-2011-07-18 05:00:00,13933.0
-2011-07-18 06:00:00,13968.0
-2011-07-18 07:00:00,14500.0
-2011-07-18 08:00:00,15382.0
-2011-07-18 09:00:00,16669.0
-2011-07-18 10:00:00,17483.0
-2011-07-18 11:00:00,18443.0
-2011-07-18 12:00:00,19065.0
-2011-07-18 13:00:00,19535.0
-2011-07-18 14:00:00,20122.0
-2011-07-18 15:00:00,20650.0
-2011-07-18 16:00:00,20844.0
-2011-07-18 17:00:00,21037.0
-2011-07-18 18:00:00,21294.0
-2011-07-18 19:00:00,21278.0
-2011-07-18 20:00:00,20951.0
-2011-07-18 21:00:00,20461.0
-2011-07-18 22:00:00,20239.0
-2011-07-18 23:00:00,19866.0
-2011-07-19 00:00:00,18514.0
-2011-07-17 01:00:00,13153.0
-2011-07-17 02:00:00,12262.0
-2011-07-17 03:00:00,11504.0
-2011-07-17 04:00:00,11007.0
-2011-07-17 05:00:00,10582.0
-2011-07-17 06:00:00,10336.0
-2011-07-17 07:00:00,10133.0
-2011-07-17 08:00:00,10262.0
-2011-07-17 09:00:00,11105.0
-2011-07-17 10:00:00,12434.0
-2011-07-17 11:00:00,13928.0
-2011-07-17 12:00:00,15305.0
-2011-07-17 13:00:00,16467.0
-2011-07-17 14:00:00,17435.0
-2011-07-17 15:00:00,18224.0
-2011-07-17 16:00:00,18788.0
-2011-07-17 17:00:00,19225.0
-2011-07-17 18:00:00,19524.0
-2011-07-17 19:00:00,19566.0
-2011-07-17 20:00:00,19353.0
-2011-07-17 21:00:00,18862.0
-2011-07-17 22:00:00,18670.0
-2011-07-17 23:00:00,18448.0
-2011-07-18 00:00:00,17431.0
-2011-07-16 01:00:00,13141.0
-2011-07-16 02:00:00,12168.0
-2011-07-16 03:00:00,11417.0
-2011-07-16 04:00:00,10880.0
-2011-07-16 05:00:00,10677.0
-2011-07-16 06:00:00,10554.0
-2011-07-16 07:00:00,10666.0
-2011-07-16 08:00:00,10900.0
-2011-07-16 09:00:00,11506.0
-2011-07-16 10:00:00,12303.0
-2011-07-16 11:00:00,13012.0
-2011-07-16 12:00:00,13639.0
-2011-07-16 13:00:00,14143.0
-2011-07-16 14:00:00,14825.0
-2011-07-16 15:00:00,15460.0
-2011-07-16 16:00:00,15990.0
-2011-07-16 17:00:00,16365.0
-2011-07-16 18:00:00,16711.0
-2011-07-16 19:00:00,16682.0
-2011-07-16 20:00:00,16484.0
-2011-07-16 21:00:00,15920.0
-2011-07-16 22:00:00,15493.0
-2011-07-16 23:00:00,15153.0
-2011-07-17 00:00:00,14243.0
-2011-07-15 01:00:00,11911.0
-2011-07-15 02:00:00,11065.0
-2011-07-15 03:00:00,10472.0
-2011-07-15 04:00:00,10092.0
-2011-07-15 05:00:00,9949.0
-2011-07-15 06:00:00,10061.0
-2011-07-15 07:00:00,10559.0
-2011-07-15 08:00:00,11405.0
-2011-07-15 09:00:00,12623.0
-2011-07-15 10:00:00,13780.0
-2011-07-15 11:00:00,14837.0
-2011-07-15 12:00:00,15759.0
-2011-07-15 13:00:00,16480.0
-2011-07-15 14:00:00,17031.0
-2011-07-15 15:00:00,17573.0
-2011-07-15 16:00:00,17850.0
-2011-07-15 17:00:00,17810.0
-2011-07-15 18:00:00,17562.0
-2011-07-15 19:00:00,17314.0
-2011-07-15 20:00:00,16681.0
-2011-07-15 21:00:00,15839.0
-2011-07-15 22:00:00,15565.0
-2011-07-15 23:00:00,15249.0
-2011-07-16 00:00:00,14245.0
-2011-07-14 01:00:00,10980.0
-2011-07-14 02:00:00,10206.0
-2011-07-14 03:00:00,9694.0
-2011-07-14 04:00:00,9359.0
-2011-07-14 05:00:00,9225.0
-2011-07-14 06:00:00,9371.0
-2011-07-14 07:00:00,9784.0
-2011-07-14 08:00:00,10655.0
-2011-07-14 09:00:00,11683.0
-2011-07-14 10:00:00,12495.0
-2011-07-14 11:00:00,13226.0
-2011-07-14 12:00:00,13887.0
-2011-07-14 13:00:00,14354.0
-2011-07-14 14:00:00,14777.0
-2011-07-14 15:00:00,15251.0
-2011-07-14 16:00:00,15587.0
-2011-07-14 17:00:00,15821.0
-2011-07-14 18:00:00,15908.0
-2011-07-14 19:00:00,15634.0
-2011-07-14 20:00:00,14883.0
-2011-07-14 21:00:00,14235.0
-2011-07-14 22:00:00,13984.0
-2011-07-14 23:00:00,13855.0
-2011-07-15 00:00:00,12958.0
-2011-07-13 01:00:00,12527.0
-2011-07-13 02:00:00,11535.0
-2011-07-13 03:00:00,10899.0
-2011-07-13 04:00:00,10437.0
-2011-07-13 05:00:00,10194.0
-2011-07-13 06:00:00,10263.0
-2011-07-13 07:00:00,10636.0
-2011-07-13 08:00:00,11510.0
-2011-07-13 09:00:00,12471.0
-2011-07-13 10:00:00,13029.0
-2011-07-13 11:00:00,13446.0
-2011-07-13 12:00:00,13909.0
-2011-07-13 13:00:00,14255.0
-2011-07-13 14:00:00,14498.0
-2011-07-13 15:00:00,14660.0
-2011-07-13 16:00:00,14751.0
-2011-07-13 17:00:00,14780.0
-2011-07-13 18:00:00,14727.0
-2011-07-13 19:00:00,14426.0
-2011-07-13 20:00:00,13825.0
-2011-07-13 21:00:00,13254.0
-2011-07-13 22:00:00,12991.0
-2011-07-13 23:00:00,12817.0
-2011-07-14 00:00:00,11949.0
-2011-07-12 01:00:00,14050.0
-2011-07-12 02:00:00,12935.0
-2011-07-12 03:00:00,12146.0
-2011-07-12 04:00:00,11544.0
-2011-07-12 05:00:00,11188.0
-2011-07-12 06:00:00,11133.0
-2011-07-12 07:00:00,11363.0
-2011-07-12 08:00:00,12318.0
-2011-07-12 09:00:00,13732.0
-2011-07-12 10:00:00,14944.0
-2011-07-12 11:00:00,15977.0
-2011-07-12 12:00:00,16892.0
-2011-07-12 13:00:00,17421.0
-2011-07-12 14:00:00,17784.0
-2011-07-12 15:00:00,18194.0
-2011-07-12 16:00:00,18519.0
-2011-07-12 17:00:00,18644.0
-2011-07-12 18:00:00,18447.0
-2011-07-12 19:00:00,18021.0
-2011-07-12 20:00:00,17047.0
-2011-07-12 21:00:00,16275.0
-2011-07-12 22:00:00,15754.0
-2011-07-12 23:00:00,15015.0
-2011-07-13 00:00:00,13788.0
-2011-07-11 01:00:00,14707.0
-2011-07-11 02:00:00,13777.0
-2011-07-11 03:00:00,13115.0
-2011-07-11 04:00:00,12697.0
-2011-07-11 05:00:00,12536.0
-2011-07-11 06:00:00,12683.0
-2011-07-11 07:00:00,13218.0
-2011-07-11 08:00:00,14257.0
-2011-07-11 09:00:00,15368.0
-2011-07-11 10:00:00,13866.0
-2011-07-11 11:00:00,13831.0
-2011-07-11 12:00:00,14016.0
-2011-07-11 13:00:00,14366.0
-2011-07-11 14:00:00,14808.0
-2011-07-11 15:00:00,15813.0
-2011-07-11 16:00:00,16715.0
-2011-07-11 17:00:00,17321.0
-2011-07-11 18:00:00,17804.0
-2011-07-11 19:00:00,18023.0
-2011-07-11 20:00:00,17748.0
-2011-07-11 21:00:00,17258.0
-2011-07-11 22:00:00,16972.0
-2011-07-11 23:00:00,16630.0
-2011-07-12 00:00:00,15432.0
-2011-07-10 01:00:00,13861.0
-2011-07-10 02:00:00,12946.0
-2011-07-10 03:00:00,12245.0
-2011-07-10 04:00:00,11623.0
-2011-07-10 05:00:00,11198.0
-2011-07-10 06:00:00,10950.0
-2011-07-10 07:00:00,10642.0
-2011-07-10 08:00:00,10783.0
-2011-07-10 09:00:00,11641.0
-2011-07-10 10:00:00,12978.0
-2011-07-10 11:00:00,14349.0
-2011-07-10 12:00:00,15488.0
-2011-07-10 13:00:00,16345.0
-2011-07-10 14:00:00,16989.0
-2011-07-10 15:00:00,17488.0
-2011-07-10 16:00:00,17795.0
-2011-07-10 17:00:00,18001.0
-2011-07-10 18:00:00,18073.0
-2011-07-10 19:00:00,17833.0
-2011-07-10 20:00:00,17350.0
-2011-07-10 21:00:00,16982.0
-2011-07-10 22:00:00,16781.0
-2011-07-10 23:00:00,16700.0
-2011-07-11 00:00:00,15795.0
-2011-07-09 01:00:00,12393.0
-2011-07-09 02:00:00,11387.0
-2011-07-09 03:00:00,10628.0
-2011-07-09 04:00:00,10083.0
-2011-07-09 05:00:00,9782.0
-2011-07-09 06:00:00,9610.0
-2011-07-09 07:00:00,9524.0
-2011-07-09 08:00:00,9838.0
-2011-07-09 09:00:00,10771.0
-2011-07-09 10:00:00,11921.0
-2011-07-09 11:00:00,13075.0
-2011-07-09 12:00:00,14194.0
-2011-07-09 13:00:00,15066.0
-2011-07-09 14:00:00,15737.0
-2011-07-09 15:00:00,16221.0
-2011-07-09 16:00:00,16618.0
-2011-07-09 17:00:00,16978.0
-2011-07-09 18:00:00,17273.0
-2011-07-09 19:00:00,17278.0
-2011-07-09 20:00:00,16947.0
-2011-07-09 21:00:00,16399.0
-2011-07-09 22:00:00,16000.0
-2011-07-09 23:00:00,15770.0
-2011-07-10 00:00:00,14868.0
-2011-07-08 01:00:00,11595.0
-2011-07-08 02:00:00,10758.0
-2011-07-08 03:00:00,10185.0
-2011-07-08 04:00:00,9782.0
-2011-07-08 05:00:00,9574.0
-2011-07-08 06:00:00,9663.0
-2011-07-08 07:00:00,10006.0
-2011-07-08 08:00:00,10875.0
-2011-07-08 09:00:00,12037.0
-2011-07-08 10:00:00,13100.0
-2011-07-08 11:00:00,13991.0
-2011-07-08 12:00:00,14760.0
-2011-07-08 13:00:00,15374.0
-2011-07-08 14:00:00,15889.0
-2011-07-08 15:00:00,16440.0
-2011-07-08 16:00:00,16802.0
-2011-07-08 17:00:00,17098.0
-2011-07-08 18:00:00,17227.0
-2011-07-08 19:00:00,17053.0
-2011-07-08 20:00:00,16487.0
-2011-07-08 21:00:00,15730.0
-2011-07-08 22:00:00,15060.0
-2011-07-08 23:00:00,14711.0
-2011-07-09 00:00:00,13586.0
-2011-07-07 01:00:00,12381.0
-2011-07-07 02:00:00,11440.0
-2011-07-07 03:00:00,10792.0
-2011-07-07 04:00:00,10357.0
-2011-07-07 05:00:00,10158.0
-2011-07-07 06:00:00,10188.0
-2011-07-07 07:00:00,10606.0
-2011-07-07 08:00:00,11423.0
-2011-07-07 09:00:00,12392.0
-2011-07-07 10:00:00,13292.0
-2011-07-07 11:00:00,13884.0
-2011-07-07 12:00:00,14535.0
-2011-07-07 13:00:00,14895.0
-2011-07-07 14:00:00,15163.0
-2011-07-07 15:00:00,15435.0
-2011-07-07 16:00:00,15512.0
-2011-07-07 17:00:00,15476.0
-2011-07-07 18:00:00,15385.0
-2011-07-07 19:00:00,15363.0
-2011-07-07 20:00:00,14899.0
-2011-07-07 21:00:00,14342.0
-2011-07-07 22:00:00,13963.0
-2011-07-07 23:00:00,13749.0
-2011-07-08 00:00:00,12756.0
-2011-07-06 01:00:00,14566.0
-2011-07-06 02:00:00,13436.0
-2011-07-06 03:00:00,12596.0
-2011-07-06 04:00:00,11996.0
-2011-07-06 05:00:00,11660.0
-2011-07-06 06:00:00,11607.0
-2011-07-06 07:00:00,11868.0
-2011-07-06 08:00:00,12827.0
-2011-07-06 09:00:00,14194.0
-2011-07-06 10:00:00,15437.0
-2011-07-06 11:00:00,16547.0
-2011-07-06 12:00:00,17562.0
-2011-07-06 13:00:00,18207.0
-2011-07-06 14:00:00,18636.0
-2011-07-06 15:00:00,18950.0
-2011-07-06 16:00:00,19027.0
-2011-07-06 17:00:00,18936.0
-2011-07-06 18:00:00,18711.0
-2011-07-06 19:00:00,18288.0
-2011-07-06 20:00:00,17362.0
-2011-07-06 21:00:00,16267.0
-2011-07-06 22:00:00,15493.0
-2011-07-06 23:00:00,14943.0
-2011-07-07 00:00:00,13689.0
-2011-07-05 01:00:00,11997.0
-2011-07-05 02:00:00,11042.0
-2011-07-05 03:00:00,10338.0
-2011-07-05 04:00:00,9847.0
-2011-07-05 05:00:00,9640.0
-2011-07-05 06:00:00,9712.0
-2011-07-05 07:00:00,10088.0
-2011-07-05 08:00:00,11178.0
-2011-07-05 09:00:00,12691.0
-2011-07-05 10:00:00,14055.0
-2011-07-05 11:00:00,15300.0
-2011-07-05 12:00:00,16439.0
-2011-07-05 13:00:00,17334.0
-2011-07-05 14:00:00,18031.0
-2011-07-05 15:00:00,18712.0
-2011-07-05 16:00:00,19220.0
-2011-07-05 17:00:00,19570.0
-2011-07-05 18:00:00,19759.0
-2011-07-05 19:00:00,19593.0
-2011-07-05 20:00:00,18940.0
-2011-07-05 21:00:00,18158.0
-2011-07-05 22:00:00,17867.0
-2011-07-05 23:00:00,17371.0
-2011-07-06 00:00:00,16030.0
-2011-07-04 01:00:00,11163.0
-2011-07-04 02:00:00,10477.0
-2011-07-04 03:00:00,9855.0
-2011-07-04 04:00:00,9410.0
-2011-07-04 05:00:00,9161.0
-2011-07-04 06:00:00,9086.0
-2011-07-04 07:00:00,8938.0
-2011-07-04 08:00:00,9088.0
-2011-07-04 09:00:00,9739.0
-2011-07-04 10:00:00,10717.0
-2011-07-04 11:00:00,11779.0
-2011-07-04 12:00:00,12733.0
-2011-07-04 13:00:00,13517.0
-2011-07-04 14:00:00,14088.0
-2011-07-04 15:00:00,14515.0
-2011-07-04 16:00:00,14923.0
-2011-07-04 17:00:00,15290.0
-2011-07-04 18:00:00,15550.0
-2011-07-04 19:00:00,15553.0
-2011-07-04 20:00:00,15226.0
-2011-07-04 21:00:00,14657.0
-2011-07-04 22:00:00,14009.0
-2011-07-04 23:00:00,13531.0
-2011-07-05 00:00:00,12833.0
-2011-07-03 01:00:00,13038.0
-2011-07-03 02:00:00,11994.0
-2011-07-03 03:00:00,11183.0
-2011-07-03 04:00:00,10561.0
-2011-07-03 05:00:00,10183.0
-2011-07-03 06:00:00,9875.0
-2011-07-03 07:00:00,9604.0
-2011-07-03 08:00:00,9688.0
-2011-07-03 09:00:00,10446.0
-2011-07-03 10:00:00,11448.0
-2011-07-03 11:00:00,12395.0
-2011-07-03 12:00:00,13359.0
-2011-07-03 13:00:00,14095.0
-2011-07-03 14:00:00,14476.0
-2011-07-03 15:00:00,14564.0
-2011-07-03 16:00:00,14497.0
-2011-07-03 17:00:00,14513.0
-2011-07-03 18:00:00,14443.0
-2011-07-03 19:00:00,14234.0
-2011-07-03 20:00:00,13461.0
-2011-07-03 21:00:00,12838.0
-2011-07-03 22:00:00,12599.0
-2011-07-03 23:00:00,12463.0
-2011-07-04 00:00:00,11921.0
-2011-07-02 01:00:00,13191.0
-2011-07-02 02:00:00,12256.0
-2011-07-02 03:00:00,11640.0
-2011-07-02 04:00:00,11185.0
-2011-07-02 05:00:00,10931.0
-2011-07-02 06:00:00,10794.0
-2011-07-02 07:00:00,10756.0
-2011-07-02 08:00:00,11194.0
-2011-07-02 09:00:00,12398.0
-2011-07-02 10:00:00,13991.0
-2011-07-02 11:00:00,15398.0
-2011-07-02 12:00:00,16528.0
-2011-07-02 13:00:00,17292.0
-2011-07-02 14:00:00,17865.0
-2011-07-02 15:00:00,18082.0
-2011-07-02 16:00:00,18338.0
-2011-07-02 17:00:00,18387.0
-2011-07-02 18:00:00,18186.0
-2011-07-02 19:00:00,17823.0
-2011-07-02 20:00:00,17239.0
-2011-07-02 21:00:00,16377.0
-2011-07-02 22:00:00,15668.0
-2011-07-02 23:00:00,15182.0
-2011-07-03 00:00:00,14123.0
-2011-07-01 01:00:00,13174.0
-2011-07-01 02:00:00,12170.0
-2011-07-01 03:00:00,11461.0
-2011-07-01 04:00:00,10959.0
-2011-07-01 05:00:00,10726.0
-2011-07-01 06:00:00,10808.0
-2011-07-01 07:00:00,11245.0
-2011-07-01 08:00:00,12044.0
-2011-07-01 09:00:00,13198.0
-2011-07-01 10:00:00,13899.0
-2011-07-01 11:00:00,14275.0
-2011-07-01 12:00:00,14553.0
-2011-07-01 13:00:00,14711.0
-2011-07-01 14:00:00,14858.0
-2011-07-01 15:00:00,14924.0
-2011-07-01 16:00:00,15003.0
-2011-07-01 17:00:00,15316.0
-2011-07-01 18:00:00,15812.0
-2011-07-01 19:00:00,16202.0
-2011-07-01 20:00:00,16132.0
-2011-07-01 21:00:00,15697.0
-2011-07-01 22:00:00,15332.0
-2011-07-01 23:00:00,15177.0
-2011-07-02 00:00:00,14255.0
-2011-06-30 01:00:00,11474.0
-2011-06-30 02:00:00,10564.0
-2011-06-30 03:00:00,9929.0
-2011-06-30 04:00:00,9532.0
-2011-06-30 05:00:00,9320.0
-2011-06-30 06:00:00,9432.0
-2011-06-30 07:00:00,9798.0
-2011-06-30 08:00:00,10921.0
-2011-06-30 09:00:00,12166.0
-2011-06-30 10:00:00,13218.0
-2011-06-30 11:00:00,14210.0
-2011-06-30 12:00:00,15153.0
-2011-06-30 13:00:00,15858.0
-2011-06-30 14:00:00,16575.0
-2011-06-30 15:00:00,17272.0
-2011-06-30 16:00:00,17810.0
-2011-06-30 17:00:00,18276.0
-2011-06-30 18:00:00,18435.0
-2011-06-30 19:00:00,18178.0
-2011-06-30 20:00:00,17797.0
-2011-06-30 21:00:00,17257.0
-2011-06-30 22:00:00,16754.0
-2011-06-30 23:00:00,15669.0
-2011-07-01 00:00:00,14323.0
-2011-06-29 01:00:00,11468.0
-2011-06-29 02:00:00,10509.0
-2011-06-29 03:00:00,9877.0
-2011-06-29 04:00:00,9458.0
-2011-06-29 05:00:00,9265.0
-2011-06-29 06:00:00,9355.0
-2011-06-29 07:00:00,9654.0
-2011-06-29 08:00:00,10658.0
-2011-06-29 09:00:00,11860.0
-2011-06-29 10:00:00,12800.0
-2011-06-29 11:00:00,13522.0
-2011-06-29 12:00:00,14164.0
-2011-06-29 13:00:00,14653.0
-2011-06-29 14:00:00,15071.0
-2011-06-29 15:00:00,15519.0
-2011-06-29 16:00:00,15817.0
-2011-06-29 17:00:00,15991.0
-2011-06-29 18:00:00,16049.0
-2011-06-29 19:00:00,15874.0
-2011-06-29 20:00:00,15259.0
-2011-06-29 21:00:00,14531.0
-2011-06-29 22:00:00,14019.0
-2011-06-29 23:00:00,13716.0
-2011-06-30 00:00:00,12632.0
-2011-06-28 01:00:00,12421.0
-2011-06-28 02:00:00,11256.0
-2011-06-28 03:00:00,10454.0
-2011-06-28 04:00:00,9864.0
-2011-06-28 05:00:00,9562.0
-2011-06-28 06:00:00,9597.0
-2011-06-28 07:00:00,9915.0
-2011-06-28 08:00:00,10847.0
-2011-06-28 09:00:00,11874.0
-2011-06-28 10:00:00,12627.0
-2011-06-28 11:00:00,13207.0
-2011-06-28 12:00:00,13773.0
-2011-06-28 13:00:00,14140.0
-2011-06-28 14:00:00,14449.0
-2011-06-28 15:00:00,14807.0
-2011-06-28 16:00:00,15105.0
-2011-06-28 17:00:00,15349.0
-2011-06-28 18:00:00,15523.0
-2011-06-28 19:00:00,15417.0
-2011-06-28 20:00:00,15044.0
-2011-06-28 21:00:00,14465.0
-2011-06-28 22:00:00,14042.0
-2011-06-28 23:00:00,13781.0
-2011-06-29 00:00:00,12681.0
-2011-06-27 01:00:00,10363.0
-2011-06-27 02:00:00,9730.0
-2011-06-27 03:00:00,9331.0
-2011-06-27 04:00:00,9072.0
-2011-06-27 05:00:00,9030.0
-2011-06-27 06:00:00,9279.0
-2011-06-27 07:00:00,9859.0
-2011-06-27 08:00:00,10884.0
-2011-06-27 09:00:00,11894.0
-2011-06-27 10:00:00,12551.0
-2011-06-27 11:00:00,13048.0
-2011-06-27 12:00:00,13724.0
-2011-06-27 13:00:00,14240.0
-2011-06-27 14:00:00,14620.0
-2011-06-27 15:00:00,15212.0
-2011-06-27 16:00:00,15548.0
-2011-06-27 17:00:00,15612.0
-2011-06-27 18:00:00,15802.0
-2011-06-27 19:00:00,15811.0
-2011-06-27 20:00:00,15546.0
-2011-06-27 21:00:00,15210.0
-2011-06-27 22:00:00,14918.0
-2011-06-27 23:00:00,14836.0
-2011-06-28 00:00:00,13793.0
-2011-06-26 01:00:00,9961.0
-2011-06-26 02:00:00,9297.0
-2011-06-26 03:00:00,8862.0
-2011-06-26 04:00:00,8443.0
-2011-06-26 05:00:00,8302.0
-2011-06-26 06:00:00,8222.0
-2011-06-26 07:00:00,8052.0
-2011-06-26 08:00:00,8114.0
-2011-06-26 09:00:00,8651.0
-2011-06-26 10:00:00,9390.0
-2011-06-26 11:00:00,10114.0
-2011-06-26 12:00:00,10768.0
-2011-06-26 13:00:00,11177.0
-2011-06-26 14:00:00,11513.0
-2011-06-26 15:00:00,11789.0
-2011-06-26 16:00:00,12047.0
-2011-06-26 17:00:00,12287.0
-2011-06-26 18:00:00,12454.0
-2011-06-26 19:00:00,12421.0
-2011-06-26 20:00:00,12240.0
-2011-06-26 21:00:00,11900.0
-2011-06-26 22:00:00,11883.0
-2011-06-26 23:00:00,11881.0
-2011-06-27 00:00:00,11281.0
-2011-06-25 01:00:00,10039.0
-2011-06-25 02:00:00,9349.0
-2011-06-25 03:00:00,8948.0
-2011-06-25 04:00:00,8641.0
-2011-06-25 05:00:00,8510.0
-2011-06-25 06:00:00,8469.0
-2011-06-25 07:00:00,8406.0
-2011-06-25 08:00:00,8714.0
-2011-06-25 09:00:00,9489.0
-2011-06-25 10:00:00,10247.0
-2011-06-25 11:00:00,10942.0
-2011-06-25 12:00:00,11463.0
-2011-06-25 13:00:00,11794.0
-2011-06-25 14:00:00,11997.0
-2011-06-25 15:00:00,12032.0
-2011-06-25 16:00:00,12002.0
-2011-06-25 17:00:00,11834.0
-2011-06-25 18:00:00,11753.0
-2011-06-25 19:00:00,11465.0
-2011-06-25 20:00:00,11232.0
-2011-06-25 21:00:00,11068.0
-2011-06-25 22:00:00,11242.0
-2011-06-25 23:00:00,11236.0
-2011-06-26 00:00:00,10654.0
-2011-06-24 01:00:00,10105.0
-2011-06-24 02:00:00,9470.0
-2011-06-24 03:00:00,9055.0
-2011-06-24 04:00:00,8782.0
-2011-06-24 05:00:00,8663.0
-2011-06-24 06:00:00,8781.0
-2011-06-24 07:00:00,9224.0
-2011-06-24 08:00:00,9973.0
-2011-06-24 09:00:00,10777.0
-2011-06-24 10:00:00,11336.0
-2011-06-24 11:00:00,11716.0
-2011-06-24 12:00:00,11999.0
-2011-06-24 13:00:00,12069.0
-2011-06-24 14:00:00,12088.0
-2011-06-24 15:00:00,12117.0
-2011-06-24 16:00:00,11996.0
-2011-06-24 17:00:00,11811.0
-2011-06-24 18:00:00,11687.0
-2011-06-24 19:00:00,11483.0
-2011-06-24 20:00:00,11213.0
-2011-06-24 21:00:00,11212.0
-2011-06-24 22:00:00,11474.0
-2011-06-24 23:00:00,11336.0
-2011-06-25 00:00:00,10729.0
-2011-06-23 01:00:00,10455.0
-2011-06-23 02:00:00,9775.0
-2011-06-23 03:00:00,9297.0
-2011-06-23 04:00:00,9019.0
-2011-06-23 05:00:00,8896.0
-2011-06-23 06:00:00,9076.0
-2011-06-23 07:00:00,9602.0
-2011-06-23 08:00:00,10475.0
-2011-06-23 09:00:00,11416.0
-2011-06-23 10:00:00,12022.0
-2011-06-23 11:00:00,12374.0
-2011-06-23 12:00:00,12698.0
-2011-06-23 13:00:00,12938.0
-2011-06-23 14:00:00,13052.0
-2011-06-23 15:00:00,13078.0
-2011-06-23 16:00:00,12964.0
-2011-06-23 17:00:00,12790.0
-2011-06-23 18:00:00,12560.0
-2011-06-23 19:00:00,12287.0
-2011-06-23 20:00:00,11900.0
-2011-06-23 21:00:00,11773.0
-2011-06-23 22:00:00,11979.0
-2011-06-23 23:00:00,11798.0
-2011-06-24 00:00:00,10990.0
-2011-06-22 01:00:00,11919.0
-2011-06-22 02:00:00,11031.0
-2011-06-22 03:00:00,10446.0
-2011-06-22 04:00:00,10013.0
-2011-06-22 05:00:00,9797.0
-2011-06-22 06:00:00,9909.0
-2011-06-22 07:00:00,10317.0
-2011-06-22 08:00:00,11186.0
-2011-06-22 09:00:00,12148.0
-2011-06-22 10:00:00,12905.0
-2011-06-22 11:00:00,13361.0
-2011-06-22 12:00:00,13535.0
-2011-06-22 13:00:00,13595.0
-2011-06-22 14:00:00,13570.0
-2011-06-22 15:00:00,13668.0
-2011-06-22 16:00:00,13501.0
-2011-06-22 17:00:00,13241.0
-2011-06-22 18:00:00,13018.0
-2011-06-22 19:00:00,12694.0
-2011-06-22 20:00:00,12290.0
-2011-06-22 21:00:00,12130.0
-2011-06-22 22:00:00,12226.0
-2011-06-22 23:00:00,12103.0
-2011-06-23 00:00:00,11335.0
-2011-06-21 01:00:00,12172.0
-2011-06-21 02:00:00,11331.0
-2011-06-21 03:00:00,10774.0
-2011-06-21 04:00:00,10405.0
-2011-06-21 05:00:00,10277.0
-2011-06-21 06:00:00,10450.0
-2011-06-21 07:00:00,11010.0
-2011-06-21 08:00:00,12141.0
-2011-06-21 09:00:00,13635.0
-2011-06-21 10:00:00,14965.0
-2011-06-21 11:00:00,16119.0
-2011-06-21 12:00:00,17222.0
-2011-06-21 13:00:00,18048.0
-2011-06-21 14:00:00,18653.0
-2011-06-21 15:00:00,19140.0
-2011-06-21 16:00:00,19123.0
-2011-06-21 17:00:00,19225.0
-2011-06-21 18:00:00,19183.0
-2011-06-21 19:00:00,18971.0
-2011-06-21 20:00:00,18208.0
-2011-06-21 21:00:00,17719.0
-2011-06-21 22:00:00,16713.0
-2011-06-21 23:00:00,14233.0
-2011-06-22 00:00:00,13065.0
-2011-06-20 01:00:00,11629.0
-2011-06-20 02:00:00,10873.0
-2011-06-20 03:00:00,10259.0
-2011-06-20 04:00:00,9925.0
-2011-06-20 05:00:00,9732.0
-2011-06-20 06:00:00,9930.0
-2011-06-20 07:00:00,10538.0
-2011-06-20 08:00:00,11747.0
-2011-06-20 09:00:00,12620.0
-2011-06-20 10:00:00,13032.0
-2011-06-20 11:00:00,13438.0
-2011-06-20 12:00:00,13829.0
-2011-06-20 13:00:00,14013.0
-2011-06-20 14:00:00,14142.0
-2011-06-20 15:00:00,14556.0
-2011-06-20 16:00:00,14990.0
-2011-06-20 17:00:00,15331.0
-2011-06-20 18:00:00,15493.0
-2011-06-20 19:00:00,15327.0
-2011-06-20 20:00:00,14878.0
-2011-06-20 21:00:00,14487.0
-2011-06-20 22:00:00,14492.0
-2011-06-20 23:00:00,14311.0
-2011-06-21 00:00:00,13290.0
-2011-06-19 01:00:00,11001.0
-2011-06-19 02:00:00,10179.0
-2011-06-19 03:00:00,9598.0
-2011-06-19 04:00:00,9085.0
-2011-06-19 05:00:00,8881.0
-2011-06-19 06:00:00,8737.0
-2011-06-19 07:00:00,8516.0
-2011-06-19 08:00:00,8629.0
-2011-06-19 09:00:00,9155.0
-2011-06-19 10:00:00,9963.0
-2011-06-19 11:00:00,10719.0
-2011-06-19 12:00:00,11527.0
-2011-06-19 13:00:00,12359.0
-2011-06-19 14:00:00,12896.0
-2011-06-19 15:00:00,13247.0
-2011-06-19 16:00:00,13525.0
-2011-06-19 17:00:00,13674.0
-2011-06-19 18:00:00,13692.0
-2011-06-19 19:00:00,13714.0
-2011-06-19 20:00:00,13555.0
-2011-06-19 21:00:00,13308.0
-2011-06-19 22:00:00,13310.0
-2011-06-19 23:00:00,13417.0
-2011-06-20 00:00:00,12729.0
-2011-06-18 01:00:00,11166.0
-2011-06-18 02:00:00,10311.0
-2011-06-18 03:00:00,9736.0
-2011-06-18 04:00:00,9315.0
-2011-06-18 05:00:00,9076.0
-2011-06-18 06:00:00,8947.0
-2011-06-18 07:00:00,8895.0
-2011-06-18 08:00:00,9093.0
-2011-06-18 09:00:00,9835.0
-2011-06-18 10:00:00,10751.0
-2011-06-18 11:00:00,11774.0
-2011-06-18 12:00:00,12742.0
-2011-06-18 13:00:00,13389.0
-2011-06-18 14:00:00,13782.0
-2011-06-18 15:00:00,13999.0
-2011-06-18 16:00:00,14297.0
-2011-06-18 17:00:00,14473.0
-2011-06-18 18:00:00,14444.0
-2011-06-18 19:00:00,13907.0
-2011-06-18 20:00:00,13321.0
-2011-06-18 21:00:00,12847.0
-2011-06-18 22:00:00,12745.0
-2011-06-18 23:00:00,12583.0
-2011-06-19 00:00:00,11854.0
-2011-06-17 01:00:00,11021.0
-2011-06-17 02:00:00,10158.0
-2011-06-17 03:00:00,9623.0
-2011-06-17 04:00:00,9278.0
-2011-06-17 05:00:00,9115.0
-2011-06-17 06:00:00,9195.0
-2011-06-17 07:00:00,9499.0
-2011-06-17 08:00:00,10491.0
-2011-06-17 09:00:00,11673.0
-2011-06-17 10:00:00,12673.0
-2011-06-17 11:00:00,13493.0
-2011-06-17 12:00:00,14262.0
-2011-06-17 13:00:00,14821.0
-2011-06-17 14:00:00,15232.0
-2011-06-17 15:00:00,15629.0
-2011-06-17 16:00:00,15824.0
-2011-06-17 17:00:00,15868.0
-2011-06-17 18:00:00,15733.0
-2011-06-17 19:00:00,15293.0
-2011-06-17 20:00:00,14443.0
-2011-06-17 21:00:00,13675.0
-2011-06-17 22:00:00,13456.0
-2011-06-17 23:00:00,13146.0
-2011-06-18 00:00:00,12169.0
-2011-06-16 01:00:00,10240.0
-2011-06-16 02:00:00,9560.0
-2011-06-16 03:00:00,9119.0
-2011-06-16 04:00:00,8834.0
-2011-06-16 05:00:00,8724.0
-2011-06-16 06:00:00,8865.0
-2011-06-16 07:00:00,9327.0
-2011-06-16 08:00:00,10223.0
-2011-06-16 09:00:00,11069.0
-2011-06-16 10:00:00,11761.0
-2011-06-16 11:00:00,12366.0
-2011-06-16 12:00:00,12854.0
-2011-06-16 13:00:00,13107.0
-2011-06-16 14:00:00,13341.0
-2011-06-16 15:00:00,13679.0
-2011-06-16 16:00:00,13845.0
-2011-06-16 17:00:00,13975.0
-2011-06-16 18:00:00,14037.0
-2011-06-16 19:00:00,13925.0
-2011-06-16 20:00:00,13575.0
-2011-06-16 21:00:00,13254.0
-2011-06-16 22:00:00,13137.0
-2011-06-16 23:00:00,13014.0
-2011-06-17 00:00:00,12090.0
-2011-06-15 01:00:00,10171.0
-2011-06-15 02:00:00,9527.0
-2011-06-15 03:00:00,9096.0
-2011-06-15 04:00:00,8775.0
-2011-06-15 05:00:00,8669.0
-2011-06-15 06:00:00,8797.0
-2011-06-15 07:00:00,9329.0
-2011-06-15 08:00:00,10161.0
-2011-06-15 09:00:00,10826.0
-2011-06-15 10:00:00,11334.0
-2011-06-15 11:00:00,11800.0
-2011-06-15 12:00:00,12244.0
-2011-06-15 13:00:00,12527.0
-2011-06-15 14:00:00,12619.0
-2011-06-15 15:00:00,12687.0
-2011-06-15 16:00:00,12573.0
-2011-06-15 17:00:00,12438.0
-2011-06-15 18:00:00,12337.0
-2011-06-15 19:00:00,12243.0
-2011-06-15 20:00:00,11974.0
-2011-06-15 21:00:00,11903.0
-2011-06-15 22:00:00,12078.0
-2011-06-15 23:00:00,11932.0
-2011-06-16 00:00:00,11139.0
-2011-06-14 01:00:00,9683.0
-2011-06-14 02:00:00,9045.0
-2011-06-14 03:00:00,8638.0
-2011-06-14 04:00:00,8380.0
-2011-06-14 05:00:00,8289.0
-2011-06-14 06:00:00,8442.0
-2011-06-14 07:00:00,8775.0
-2011-06-14 08:00:00,9655.0
-2011-06-14 09:00:00,10576.0
-2011-06-14 10:00:00,11266.0
-2011-06-14 11:00:00,11662.0
-2011-06-14 12:00:00,12096.0
-2011-06-14 13:00:00,12397.0
-2011-06-14 14:00:00,12595.0
-2011-06-14 15:00:00,12863.0
-2011-06-14 16:00:00,12995.0
-2011-06-14 17:00:00,12981.0
-2011-06-14 18:00:00,12808.0
-2011-06-14 19:00:00,12517.0
-2011-06-14 20:00:00,12068.0
-2011-06-14 21:00:00,11791.0
-2011-06-14 22:00:00,12010.0
-2011-06-14 23:00:00,11891.0
-2011-06-15 00:00:00,11082.0
-2011-06-13 01:00:00,8795.0
-2011-06-13 02:00:00,8357.0
-2011-06-13 03:00:00,8065.0
-2011-06-13 04:00:00,7922.0
-2011-06-13 05:00:00,7892.0
-2011-06-13 06:00:00,8169.0
-2011-06-13 07:00:00,8641.0
-2011-06-13 08:00:00,9452.0
-2011-06-13 09:00:00,10451.0
-2011-06-13 10:00:00,11110.0
-2011-06-13 11:00:00,11630.0
-2011-06-13 12:00:00,12001.0
-2011-06-13 13:00:00,12157.0
-2011-06-13 14:00:00,12275.0
-2011-06-13 15:00:00,12439.0
-2011-06-13 16:00:00,12449.0
-2011-06-13 17:00:00,12425.0
-2011-06-13 18:00:00,12342.0
-2011-06-13 19:00:00,12118.0
-2011-06-13 20:00:00,11644.0
-2011-06-13 21:00:00,11334.0
-2011-06-13 22:00:00,11521.0
-2011-06-13 23:00:00,11425.0
-2011-06-14 00:00:00,10596.0
-2011-06-12 01:00:00,9038.0
-2011-06-12 02:00:00,8501.0
-2011-06-12 03:00:00,8193.0
-2011-06-12 04:00:00,7909.0
-2011-06-12 05:00:00,7774.0
-2011-06-12 06:00:00,7757.0
-2011-06-12 07:00:00,7583.0
-2011-06-12 08:00:00,7584.0
-2011-06-12 09:00:00,7857.0
-2011-06-12 10:00:00,8368.0
-2011-06-12 11:00:00,8811.0
-2011-06-12 12:00:00,9139.0
-2011-06-12 13:00:00,9256.0
-2011-06-12 14:00:00,9327.0
-2011-06-12 15:00:00,9316.0
-2011-06-12 16:00:00,9336.0
-2011-06-12 17:00:00,9325.0
-2011-06-12 18:00:00,9381.0
-2011-06-12 19:00:00,9440.0
-2011-06-12 20:00:00,9394.0
-2011-06-12 21:00:00,9416.0
-2011-06-12 22:00:00,9812.0
-2011-06-12 23:00:00,9868.0
-2011-06-13 00:00:00,9412.0
-2011-06-11 01:00:00,9726.0
-2011-06-11 02:00:00,9065.0
-2011-06-11 03:00:00,8639.0
-2011-06-11 04:00:00,8388.0
-2011-06-11 05:00:00,8243.0
-2011-06-11 06:00:00,8301.0
-2011-06-11 07:00:00,8346.0
-2011-06-11 08:00:00,8591.0
-2011-06-11 09:00:00,9044.0
-2011-06-11 10:00:00,9656.0
-2011-06-11 11:00:00,10043.0
-2011-06-11 12:00:00,10366.0
-2011-06-11 13:00:00,10324.0
-2011-06-11 14:00:00,10265.0
-2011-06-11 15:00:00,10163.0
-2011-06-11 16:00:00,10055.0
-2011-06-11 17:00:00,9996.0
-2011-06-11 18:00:00,9918.0
-2011-06-11 19:00:00,9813.0
-2011-06-11 20:00:00,9761.0
-2011-06-11 21:00:00,9779.0
-2011-06-11 22:00:00,10082.0
-2011-06-11 23:00:00,10079.0
-2011-06-12 00:00:00,9587.0
-2011-06-10 01:00:00,9533.0
-2011-06-10 02:00:00,8943.0
-2011-06-10 03:00:00,8572.0
-2011-06-10 04:00:00,8341.0
-2011-06-10 05:00:00,8215.0
-2011-06-10 06:00:00,8435.0
-2011-06-10 07:00:00,8857.0
-2011-06-10 08:00:00,9580.0
-2011-06-10 09:00:00,10466.0
-2011-06-10 10:00:00,11004.0
-2011-06-10 11:00:00,11408.0
-2011-06-10 12:00:00,11783.0
-2011-06-10 13:00:00,12033.0
-2011-06-10 14:00:00,12108.0
-2011-06-10 15:00:00,12210.0
-2011-06-10 16:00:00,12191.0
-2011-06-10 17:00:00,12112.0
-2011-06-10 18:00:00,11980.0
-2011-06-10 19:00:00,11686.0
-2011-06-10 20:00:00,11331.0
-2011-06-10 21:00:00,11196.0
-2011-06-10 22:00:00,11350.0
-2011-06-10 23:00:00,11270.0
-2011-06-11 00:00:00,10556.0
-2011-06-09 01:00:00,14194.0
-2011-06-09 02:00:00,12627.0
-2011-06-09 03:00:00,11723.0
-2011-06-09 04:00:00,11120.0
-2011-06-09 05:00:00,10661.0
-2011-06-09 06:00:00,10639.0
-2011-06-09 07:00:00,11131.0
-2011-06-09 08:00:00,12069.0
-2011-06-09 09:00:00,12958.0
-2011-06-09 10:00:00,13359.0
-2011-06-09 11:00:00,13269.0
-2011-06-09 12:00:00,13153.0
-2011-06-09 13:00:00,12956.0
-2011-06-09 14:00:00,12715.0
-2011-06-09 15:00:00,12535.0
-2011-06-09 16:00:00,12223.0
-2011-06-09 17:00:00,11909.0
-2011-06-09 18:00:00,11659.0
-2011-06-09 19:00:00,11388.0
-2011-06-09 20:00:00,11091.0
-2011-06-09 21:00:00,10966.0
-2011-06-09 22:00:00,11208.0
-2011-06-09 23:00:00,11075.0
-2011-06-10 00:00:00,10380.0
-2011-06-08 01:00:00,15690.0
-2011-06-08 02:00:00,14493.0
-2011-06-08 03:00:00,13656.0
-2011-06-08 04:00:00,13069.0
-2011-06-08 05:00:00,12727.0
-2011-06-08 06:00:00,12737.0
-2011-06-08 07:00:00,13101.0
-2011-06-08 08:00:00,14162.0
-2011-06-08 09:00:00,15637.0
-2011-06-08 10:00:00,16915.0
-2011-06-08 11:00:00,18064.0
-2011-06-08 12:00:00,19190.0
-2011-06-08 13:00:00,19908.0
-2011-06-08 14:00:00,20328.0
-2011-06-08 15:00:00,20707.0
-2011-06-08 16:00:00,21036.0
-2011-06-08 17:00:00,21236.0
-2011-06-08 18:00:00,21174.0
-2011-06-08 19:00:00,20819.0
-2011-06-08 20:00:00,20033.0
-2011-06-08 21:00:00,19268.0
-2011-06-08 22:00:00,19079.0
-2011-06-08 23:00:00,18361.0
-2011-06-09 00:00:00,16400.0
-2011-06-07 01:00:00,14996.0
-2011-06-07 02:00:00,13851.0
-2011-06-07 03:00:00,13007.0
-2011-06-07 04:00:00,12388.0
-2011-06-07 05:00:00,12046.0
-2011-06-07 06:00:00,12040.0
-2011-06-07 07:00:00,12426.0
-2011-06-07 08:00:00,13607.0
-2011-06-07 09:00:00,15152.0
-2011-06-07 10:00:00,16511.0
-2011-06-07 11:00:00,17573.0
-2011-06-07 12:00:00,18667.0
-2011-06-07 13:00:00,19608.0
-2011-06-07 14:00:00,20330.0
-2011-06-07 15:00:00,20722.0
-2011-06-07 16:00:00,21429.0
-2011-06-07 17:00:00,21423.0
-2011-06-07 18:00:00,21455.0
-2011-06-07 19:00:00,21218.0
-2011-06-07 20:00:00,20660.0
-2011-06-07 21:00:00,19600.0
-2011-06-07 22:00:00,19201.0
-2011-06-07 23:00:00,18713.0
-2011-06-08 00:00:00,17202.0
-2011-06-06 01:00:00,10123.0
-2011-06-06 02:00:00,9468.0
-2011-06-06 03:00:00,9023.0
-2011-06-06 04:00:00,8790.0
-2011-06-06 05:00:00,8718.0
-2011-06-06 06:00:00,8980.0
-2011-06-06 07:00:00,9424.0
-2011-06-06 08:00:00,10631.0
-2011-06-06 09:00:00,11907.0
-2011-06-06 10:00:00,12816.0
-2011-06-06 11:00:00,13441.0
-2011-06-06 12:00:00,14231.0
-2011-06-06 13:00:00,15057.0
-2011-06-06 14:00:00,16200.0
-2011-06-06 15:00:00,17245.0
-2011-06-06 16:00:00,18124.0
-2011-06-06 17:00:00,18810.0
-2011-06-06 18:00:00,19287.0
-2011-06-06 19:00:00,19375.0
-2011-06-06 20:00:00,19074.0
-2011-06-06 21:00:00,18573.0
-2011-06-06 22:00:00,18358.0
-2011-06-06 23:00:00,17972.0
-2011-06-07 00:00:00,16559.0
-2011-06-05 01:00:00,11140.0
-2011-06-05 02:00:00,10245.0
-2011-06-05 03:00:00,9663.0
-2011-06-05 04:00:00,9200.0
-2011-06-05 05:00:00,8943.0
-2011-06-05 06:00:00,8814.0
-2011-06-05 07:00:00,8531.0
-2011-06-05 08:00:00,8710.0
-2011-06-05 09:00:00,9213.0
-2011-06-05 10:00:00,9797.0
-2011-06-05 11:00:00,10318.0
-2011-06-05 12:00:00,10832.0
-2011-06-05 13:00:00,11516.0
-2011-06-05 14:00:00,12212.0
-2011-06-05 15:00:00,12681.0
-2011-06-05 16:00:00,13074.0
-2011-06-05 17:00:00,13423.0
-2011-06-05 18:00:00,13686.0
-2011-06-05 19:00:00,13663.0
-2011-06-05 20:00:00,13299.0
-2011-06-05 21:00:00,12704.0
-2011-06-05 22:00:00,12338.0
-2011-06-05 23:00:00,12028.0
-2011-06-06 00:00:00,11093.0
-2011-06-04 01:00:00,13157.0
-2011-06-04 02:00:00,12136.0
-2011-06-04 03:00:00,11352.0
-2011-06-04 04:00:00,10815.0
-2011-06-04 05:00:00,10475.0
-2011-06-04 06:00:00,10372.0
-2011-06-04 07:00:00,10347.0
-2011-06-04 08:00:00,10839.0
-2011-06-04 09:00:00,11989.0
-2011-06-04 10:00:00,13430.0
-2011-06-04 11:00:00,14804.0
-2011-06-04 12:00:00,15873.0
-2011-06-04 13:00:00,16624.0
-2011-06-04 14:00:00,17062.0
-2011-06-04 15:00:00,17272.0
-2011-06-04 16:00:00,17154.0
-2011-06-04 17:00:00,16392.0
-2011-06-04 18:00:00,15302.0
-2011-06-04 19:00:00,14651.0
-2011-06-04 20:00:00,14253.0
-2011-06-04 21:00:00,13560.0
-2011-06-04 22:00:00,13207.0
-2011-06-04 23:00:00,12968.0
-2011-06-05 00:00:00,12066.0
-2011-06-03 01:00:00,9798.0
-2011-06-03 02:00:00,9125.0
-2011-06-03 03:00:00,8764.0
-2011-06-03 04:00:00,8524.0
-2011-06-03 05:00:00,8492.0
-2011-06-03 06:00:00,8697.0
-2011-06-03 07:00:00,9174.0
-2011-06-03 08:00:00,10195.0
-2011-06-03 09:00:00,11197.0
-2011-06-03 10:00:00,11968.0
-2011-06-03 11:00:00,12579.0
-2011-06-03 12:00:00,13217.0
-2011-06-03 13:00:00,13786.0
-2011-06-03 14:00:00,14361.0
-2011-06-03 15:00:00,15060.0
-2011-06-03 16:00:00,15631.0
-2011-06-03 17:00:00,16134.0
-2011-06-03 18:00:00,16446.0
-2011-06-03 19:00:00,16454.0
-2011-06-03 20:00:00,16104.0
-2011-06-03 21:00:00,15652.0
-2011-06-03 22:00:00,15523.0
-2011-06-03 23:00:00,15343.0
-2011-06-04 00:00:00,14316.0
-2011-06-02 01:00:00,11020.0
-2011-06-02 02:00:00,10146.0
-2011-06-02 03:00:00,9520.0
-2011-06-02 04:00:00,9147.0
-2011-06-02 05:00:00,8883.0
-2011-06-02 06:00:00,8919.0
-2011-06-02 07:00:00,9132.0
-2011-06-02 08:00:00,10003.0
-2011-06-02 09:00:00,10945.0
-2011-06-02 10:00:00,11465.0
-2011-06-02 11:00:00,11790.0
-2011-06-02 12:00:00,12062.0
-2011-06-02 13:00:00,12270.0
-2011-06-02 14:00:00,12426.0
-2011-06-02 15:00:00,12596.0
-2011-06-02 16:00:00,12611.0
-2011-06-02 17:00:00,12599.0
-2011-06-02 18:00:00,12500.0
-2011-06-02 19:00:00,12152.0
-2011-06-02 20:00:00,11673.0
-2011-06-02 21:00:00,11489.0
-2011-06-02 22:00:00,11768.0
-2011-06-02 23:00:00,11565.0
-2011-06-03 00:00:00,10727.0
-2011-06-01 01:00:00,11714.0
-2011-06-01 02:00:00,10886.0
-2011-06-01 03:00:00,10325.0
-2011-06-01 04:00:00,9773.0
-2011-06-01 05:00:00,9330.0
-2011-06-01 06:00:00,9347.0
-2011-06-01 07:00:00,9644.0
-2011-06-01 08:00:00,10627.0
-2011-06-01 09:00:00,11710.0
-2011-06-01 10:00:00,12365.0
-2011-06-01 11:00:00,12871.0
-2011-06-01 12:00:00,13300.0
-2011-06-01 13:00:00,13592.0
-2011-06-01 14:00:00,13820.0
-2011-06-01 15:00:00,14106.0
-2011-06-01 16:00:00,14288.0
-2011-06-01 17:00:00,14521.0
-2011-06-01 18:00:00,14690.0
-2011-06-01 19:00:00,14628.0
-2011-06-01 20:00:00,14250.0
-2011-06-01 21:00:00,13742.0
-2011-06-01 22:00:00,13612.0
-2011-06-01 23:00:00,13347.0
-2011-06-02 00:00:00,12225.0
-2011-05-31 01:00:00,11692.0
-2011-05-31 02:00:00,10897.0
-2011-05-31 03:00:00,10328.0
-2011-05-31 04:00:00,9972.0
-2011-05-31 05:00:00,9796.0
-2011-05-31 06:00:00,9950.0
-2011-05-31 07:00:00,10407.0
-2011-05-31 08:00:00,11664.0
-2011-05-31 09:00:00,13261.0
-2011-05-31 10:00:00,14448.0
-2011-05-31 11:00:00,15194.0
-2011-05-31 12:00:00,15868.0
-2011-05-31 13:00:00,16224.0
-2011-05-31 14:00:00,16593.0
-2011-05-31 15:00:00,16753.0
-2011-05-31 16:00:00,16740.0
-2011-05-31 17:00:00,16324.0
-2011-05-31 18:00:00,16076.0
-2011-05-31 19:00:00,15862.0
-2011-05-31 20:00:00,15614.0
-2011-05-31 21:00:00,15162.0
-2011-05-31 22:00:00,14843.0
-2011-05-31 23:00:00,14397.0
-2011-06-01 00:00:00,13058.0
-2011-05-30 01:00:00,8938.0
-2011-05-30 02:00:00,8419.0
-2011-05-30 03:00:00,8072.0
-2011-05-30 04:00:00,7862.0
-2011-05-30 05:00:00,7758.0
-2011-05-30 06:00:00,7817.0
-2011-05-30 07:00:00,7786.0
-2011-05-30 08:00:00,7970.0
-2011-05-30 09:00:00,8462.0
-2011-05-30 10:00:00,9207.0
-2011-05-30 11:00:00,9992.0
-2011-05-30 12:00:00,10772.0
-2011-05-30 13:00:00,11465.0
-2011-05-30 14:00:00,11989.0
-2011-05-30 15:00:00,12471.0
-2011-05-30 16:00:00,12918.0
-2011-05-30 17:00:00,13315.0
-2011-05-30 18:00:00,13649.0
-2011-05-30 19:00:00,13835.0
-2011-05-30 20:00:00,13740.0
-2011-05-30 21:00:00,13493.0
-2011-05-30 22:00:00,13684.0
-2011-05-30 23:00:00,13608.0
-2011-05-31 00:00:00,12730.0
-2011-05-29 01:00:00,8730.0
-2011-05-29 02:00:00,8232.0
-2011-05-29 03:00:00,7912.0
-2011-05-29 04:00:00,7687.0
-2011-05-29 05:00:00,7544.0
-2011-05-29 06:00:00,7611.0
-2011-05-29 07:00:00,7504.0
-2011-05-29 08:00:00,7533.0
-2011-05-29 09:00:00,7859.0
-2011-05-29 10:00:00,8319.0
-2011-05-29 11:00:00,8734.0
-2011-05-29 12:00:00,9068.0
-2011-05-29 13:00:00,9593.0
-2011-05-29 14:00:00,9809.0
-2011-05-29 15:00:00,9931.0
-2011-05-29 16:00:00,9745.0
-2011-05-29 17:00:00,9491.0
-2011-05-29 18:00:00,9366.0
-2011-05-29 19:00:00,9329.0
-2011-05-29 20:00:00,9293.0
-2011-05-29 21:00:00,9362.0
-2011-05-29 22:00:00,9758.0
-2011-05-29 23:00:00,9897.0
-2011-05-30 00:00:00,9493.0
-2011-05-28 01:00:00,9099.0
-2011-05-28 02:00:00,8549.0
-2011-05-28 03:00:00,8180.0
-2011-05-28 04:00:00,7969.0
-2011-05-28 05:00:00,7849.0
-2011-05-28 06:00:00,7881.0
-2011-05-28 07:00:00,7899.0
-2011-05-28 08:00:00,8047.0
-2011-05-28 09:00:00,8496.0
-2011-05-28 10:00:00,9024.0
-2011-05-28 11:00:00,9398.0
-2011-05-28 12:00:00,9645.0
-2011-05-28 13:00:00,9671.0
-2011-05-28 14:00:00,9694.0
-2011-05-28 15:00:00,9579.0
-2011-05-28 16:00:00,9585.0
-2011-05-28 17:00:00,9542.0
-2011-05-28 18:00:00,9599.0
-2011-05-28 19:00:00,9615.0
-2011-05-28 20:00:00,9509.0
-2011-05-28 21:00:00,9565.0
-2011-05-28 22:00:00,9882.0
-2011-05-28 23:00:00,9756.0
-2011-05-29 00:00:00,9273.0
-2011-05-27 01:00:00,9690.0
-2011-05-27 02:00:00,9109.0
-2011-05-27 03:00:00,8801.0
-2011-05-27 04:00:00,8573.0
-2011-05-27 05:00:00,8519.0
-2011-05-27 06:00:00,8707.0
-2011-05-27 07:00:00,9129.0
-2011-05-27 08:00:00,9919.0
-2011-05-27 09:00:00,10688.0
-2011-05-27 10:00:00,11039.0
-2011-05-27 11:00:00,11126.0
-2011-05-27 12:00:00,11242.0
-2011-05-27 13:00:00,11228.0
-2011-05-27 14:00:00,11225.0
-2011-05-27 15:00:00,11224.0
-2011-05-27 16:00:00,11078.0
-2011-05-27 17:00:00,10891.0
-2011-05-27 18:00:00,10695.0
-2011-05-27 19:00:00,10562.0
-2011-05-27 20:00:00,10341.0
-2011-05-27 21:00:00,10410.0
-2011-05-27 22:00:00,10681.0
-2011-05-27 23:00:00,10504.0
-2011-05-28 00:00:00,9857.0
-2011-05-26 01:00:00,9527.0
-2011-05-26 02:00:00,8961.0
-2011-05-26 03:00:00,8626.0
-2011-05-26 04:00:00,8454.0
-2011-05-26 05:00:00,8426.0
-2011-05-26 06:00:00,8619.0
-2011-05-26 07:00:00,9194.0
-2011-05-26 08:00:00,10115.0
-2011-05-26 09:00:00,10958.0
-2011-05-26 10:00:00,11405.0
-2011-05-26 11:00:00,11597.0
-2011-05-26 12:00:00,11778.0
-2011-05-26 13:00:00,11778.0
-2011-05-26 14:00:00,11737.0
-2011-05-26 15:00:00,11710.0
-2011-05-26 16:00:00,11534.0
-2011-05-26 17:00:00,11410.0
-2011-05-26 18:00:00,11352.0
-2011-05-26 19:00:00,11228.0
-2011-05-26 20:00:00,11064.0
-2011-05-26 21:00:00,11126.0
-2011-05-26 22:00:00,11381.0
-2011-05-26 23:00:00,11276.0
-2011-05-27 00:00:00,10490.0
-2011-05-25 01:00:00,9318.0
-2011-05-25 02:00:00,8752.0
-2011-05-25 03:00:00,8408.0
-2011-05-25 04:00:00,8201.0
-2011-05-25 05:00:00,8152.0
-2011-05-25 06:00:00,8321.0
-2011-05-25 07:00:00,8822.0
-2011-05-25 08:00:00,9794.0
-2011-05-25 09:00:00,10998.0
-2011-05-25 10:00:00,11648.0
-2011-05-25 11:00:00,11931.0
-2011-05-25 12:00:00,12003.0
-2011-05-25 13:00:00,11980.0
-2011-05-25 14:00:00,11997.0
-2011-05-25 15:00:00,12128.0
-2011-05-25 16:00:00,12089.0
-2011-05-25 17:00:00,12041.0
-2011-05-25 18:00:00,11946.0
-2011-05-25 19:00:00,11678.0
-2011-05-25 20:00:00,11288.0
-2011-05-25 21:00:00,11277.0
-2011-05-25 22:00:00,11541.0
-2011-05-25 23:00:00,11182.0
-2011-05-26 00:00:00,10371.0
-2011-05-24 01:00:00,10556.0
-2011-05-24 02:00:00,9790.0
-2011-05-24 03:00:00,9285.0
-2011-05-24 04:00:00,8923.0
-2011-05-24 05:00:00,8774.0
-2011-05-24 06:00:00,8860.0
-2011-05-24 07:00:00,9183.0
-2011-05-24 08:00:00,10068.0
-2011-05-24 09:00:00,11063.0
-2011-05-24 10:00:00,11564.0
-2011-05-24 11:00:00,11867.0
-2011-05-24 12:00:00,12079.0
-2011-05-24 13:00:00,12167.0
-2011-05-24 14:00:00,12143.0
-2011-05-24 15:00:00,12144.0
-2011-05-24 16:00:00,11995.0
-2011-05-24 17:00:00,11849.0
-2011-05-24 18:00:00,11666.0
-2011-05-24 19:00:00,11365.0
-2011-05-24 20:00:00,10955.0
-2011-05-24 21:00:00,10813.0
-2011-05-24 22:00:00,11184.0
-2011-05-24 23:00:00,10927.0
-2011-05-25 00:00:00,10143.0
-2011-05-23 01:00:00,9658.0
-2011-05-23 02:00:00,9067.0
-2011-05-23 03:00:00,8690.0
-2011-05-23 04:00:00,8475.0
-2011-05-23 05:00:00,8521.0
-2011-05-23 06:00:00,8709.0
-2011-05-23 07:00:00,9264.0
-2011-05-23 08:00:00,10289.0
-2011-05-23 09:00:00,11487.0
-2011-05-23 10:00:00,12074.0
-2011-05-23 11:00:00,12460.0
-2011-05-23 12:00:00,12961.0
-2011-05-23 13:00:00,13328.0
-2011-05-23 14:00:00,13516.0
-2011-05-23 15:00:00,13735.0
-2011-05-23 16:00:00,13821.0
-2011-05-23 17:00:00,13836.0
-2011-05-23 18:00:00,13788.0
-2011-05-23 19:00:00,13505.0
-2011-05-23 20:00:00,12970.0
-2011-05-23 21:00:00,12631.0
-2011-05-23 22:00:00,12859.0
-2011-05-23 23:00:00,12626.0
-2011-05-24 00:00:00,11638.0
-2011-05-22 01:00:00,9532.0
-2011-05-22 02:00:00,8906.0
-2011-05-22 03:00:00,8511.0
-2011-05-22 04:00:00,8183.0
-2011-05-22 05:00:00,8065.0
-2011-05-22 06:00:00,7909.0
-2011-05-22 07:00:00,7816.0
-2011-05-22 08:00:00,7859.0
-2011-05-22 09:00:00,8318.0
-2011-05-22 10:00:00,8960.0
-2011-05-22 11:00:00,9548.0
-2011-05-22 12:00:00,10132.0
-2011-05-22 13:00:00,10698.0
-2011-05-22 14:00:00,11131.0
-2011-05-22 15:00:00,11571.0
-2011-05-22 16:00:00,11878.0
-2011-05-22 17:00:00,12039.0
-2011-05-22 18:00:00,11933.0
-2011-05-22 19:00:00,11557.0
-2011-05-22 20:00:00,11102.0
-2011-05-22 21:00:00,10900.0
-2011-05-22 22:00:00,11154.0
-2011-05-22 23:00:00,11016.0
-2011-05-23 00:00:00,10486.0
-2011-05-21 01:00:00,9565.0
-2011-05-21 02:00:00,8924.0
-2011-05-21 03:00:00,8531.0
-2011-05-21 04:00:00,8247.0
-2011-05-21 05:00:00,8085.0
-2011-05-21 06:00:00,8149.0
-2011-05-21 07:00:00,8158.0
-2011-05-21 08:00:00,8388.0
-2011-05-21 09:00:00,8943.0
-2011-05-21 10:00:00,9571.0
-2011-05-21 11:00:00,10043.0
-2011-05-21 12:00:00,10354.0
-2011-05-21 13:00:00,10446.0
-2011-05-21 14:00:00,10499.0
-2011-05-21 15:00:00,10373.0
-2011-05-21 16:00:00,10284.0
-2011-05-21 17:00:00,10252.0
-2011-05-21 18:00:00,10333.0
-2011-05-21 19:00:00,10342.0
-2011-05-21 20:00:00,10333.0
-2011-05-21 21:00:00,10302.0
-2011-05-21 22:00:00,10698.0
-2011-05-21 23:00:00,10630.0
-2011-05-22 00:00:00,10135.0
-2011-05-20 01:00:00,9516.0
-2011-05-20 02:00:00,8972.0
-2011-05-20 03:00:00,8575.0
-2011-05-20 04:00:00,8359.0
-2011-05-20 05:00:00,8307.0
-2011-05-20 06:00:00,8423.0
-2011-05-20 07:00:00,8854.0
-2011-05-20 08:00:00,9682.0
-2011-05-20 09:00:00,10676.0
-2011-05-20 10:00:00,11189.0
-2011-05-20 11:00:00,11609.0
-2011-05-20 12:00:00,11963.0
-2011-05-20 13:00:00,12064.0
-2011-05-20 14:00:00,12140.0
-2011-05-20 15:00:00,12302.0
-2011-05-20 16:00:00,12339.0
-2011-05-20 17:00:00,12289.0
-2011-05-20 18:00:00,12156.0
-2011-05-20 19:00:00,11880.0
-2011-05-20 20:00:00,11429.0
-2011-05-20 21:00:00,11177.0
-2011-05-20 22:00:00,11442.0
-2011-05-20 23:00:00,11232.0
-2011-05-21 00:00:00,10458.0
-2011-05-19 01:00:00,9371.0
-2011-05-19 02:00:00,8819.0
-2011-05-19 03:00:00,8484.0
-2011-05-19 04:00:00,8312.0
-2011-05-19 05:00:00,8252.0
-2011-05-19 06:00:00,8442.0
-2011-05-19 07:00:00,8980.0
-2011-05-19 08:00:00,9885.0
-2011-05-19 09:00:00,10693.0
-2011-05-19 10:00:00,11111.0
-2011-05-19 11:00:00,11381.0
-2011-05-19 12:00:00,11627.0
-2011-05-19 13:00:00,11735.0
-2011-05-19 14:00:00,11784.0
-2011-05-19 15:00:00,11883.0
-2011-05-19 16:00:00,11890.0
-2011-05-19 17:00:00,11828.0
-2011-05-19 18:00:00,11697.0
-2011-05-19 19:00:00,11495.0
-2011-05-19 20:00:00,11227.0
-2011-05-19 21:00:00,11135.0
-2011-05-19 22:00:00,11486.0
-2011-05-19 23:00:00,11267.0
-2011-05-20 00:00:00,10406.0
-2011-05-18 01:00:00,9336.0
-2011-05-18 02:00:00,8792.0
-2011-05-18 03:00:00,8466.0
-2011-05-18 04:00:00,8267.0
-2011-05-18 05:00:00,8230.0
-2011-05-18 06:00:00,8420.0
-2011-05-18 07:00:00,8968.0
-2011-05-18 08:00:00,9843.0
-2011-05-18 09:00:00,10687.0
-2011-05-18 10:00:00,11128.0
-2011-05-18 11:00:00,11333.0
-2011-05-18 12:00:00,11458.0
-2011-05-18 13:00:00,11500.0
-2011-05-18 14:00:00,11464.0
-2011-05-18 15:00:00,11490.0
-2011-05-18 16:00:00,11380.0
-2011-05-18 17:00:00,11268.0
-2011-05-18 18:00:00,11130.0
-2011-05-18 19:00:00,10978.0
-2011-05-18 20:00:00,10786.0
-2011-05-18 21:00:00,10862.0
-2011-05-18 22:00:00,11285.0
-2011-05-18 23:00:00,10994.0
-2011-05-19 00:00:00,10188.0
-2011-05-17 01:00:00,9438.0
-2011-05-17 02:00:00,8960.0
-2011-05-17 03:00:00,8667.0
-2011-05-17 04:00:00,8502.0
-2011-05-17 05:00:00,8486.0
-2011-05-17 06:00:00,8710.0
-2011-05-17 07:00:00,9238.0
-2011-05-17 08:00:00,10092.0
-2011-05-17 09:00:00,10858.0
-2011-05-17 10:00:00,11172.0
-2011-05-17 11:00:00,11297.0
-2011-05-17 12:00:00,11433.0
-2011-05-17 13:00:00,11405.0
-2011-05-17 14:00:00,11393.0
-2011-05-17 15:00:00,11406.0
-2011-05-17 16:00:00,11282.0
-2011-05-17 17:00:00,11144.0
-2011-05-17 18:00:00,11002.0
-2011-05-17 19:00:00,10806.0
-2011-05-17 20:00:00,10577.0
-2011-05-17 21:00:00,10552.0
-2011-05-17 22:00:00,11120.0
-2011-05-17 23:00:00,10965.0
-2011-05-18 00:00:00,10152.0
-2011-05-16 01:00:00,8957.0
-2011-05-16 02:00:00,8560.0
-2011-05-16 03:00:00,8354.0
-2011-05-16 04:00:00,8229.0
-2011-05-16 05:00:00,8269.0
-2011-05-16 06:00:00,8542.0
-2011-05-16 07:00:00,9170.0
-2011-05-16 08:00:00,10020.0
-2011-05-16 09:00:00,10843.0
-2011-05-16 10:00:00,11190.0
-2011-05-16 11:00:00,11330.0
-2011-05-16 12:00:00,11425.0
-2011-05-16 13:00:00,11406.0
-2011-05-16 14:00:00,11371.0
-2011-05-16 15:00:00,11350.0
-2011-05-16 16:00:00,11202.0
-2011-05-16 17:00:00,11058.0
-2011-05-16 18:00:00,10924.0
-2011-05-16 19:00:00,10775.0
-2011-05-16 20:00:00,10561.0
-2011-05-16 21:00:00,10620.0
-2011-05-16 22:00:00,11192.0
-2011-05-16 23:00:00,11040.0
-2011-05-17 00:00:00,10242.0
-2011-05-15 01:00:00,8871.0
-2011-05-15 02:00:00,8452.0
-2011-05-15 03:00:00,8141.0
-2011-05-15 04:00:00,7897.0
-2011-05-15 05:00:00,7852.0
-2011-05-15 06:00:00,7804.0
-2011-05-15 07:00:00,7912.0
-2011-05-15 08:00:00,7921.0
-2011-05-15 09:00:00,8248.0
-2011-05-15 10:00:00,8682.0
-2011-05-15 11:00:00,9048.0
-2011-05-15 12:00:00,9309.0
-2011-05-15 13:00:00,9396.0
-2011-05-15 14:00:00,9489.0
-2011-05-15 15:00:00,9432.0
-2011-05-15 16:00:00,9422.0
-2011-05-15 17:00:00,9389.0
-2011-05-15 18:00:00,9435.0
-2011-05-15 19:00:00,9532.0
-2011-05-15 20:00:00,9588.0
-2011-05-15 21:00:00,9765.0
-2011-05-15 22:00:00,10172.0
-2011-05-15 23:00:00,10008.0
-2011-05-16 00:00:00,9497.0
-2011-05-14 01:00:00,9326.0
-2011-05-14 02:00:00,8692.0
-2011-05-14 03:00:00,8353.0
-2011-05-14 04:00:00,8103.0
-2011-05-14 05:00:00,7992.0
-2011-05-14 06:00:00,8000.0
-2011-05-14 07:00:00,8175.0
-2011-05-14 08:00:00,8371.0
-2011-05-14 09:00:00,8856.0
-2011-05-14 10:00:00,9328.0
-2011-05-14 11:00:00,9744.0
-2011-05-14 12:00:00,9911.0
-2011-05-14 13:00:00,9930.0
-2011-05-14 14:00:00,9852.0
-2011-05-14 15:00:00,9735.0
-2011-05-14 16:00:00,9636.0
-2011-05-14 17:00:00,9606.0
-2011-05-14 18:00:00,9626.0
-2011-05-14 19:00:00,9723.0
-2011-05-14 20:00:00,9748.0
-2011-05-14 21:00:00,9921.0
-2011-05-14 22:00:00,10194.0
-2011-05-14 23:00:00,9962.0
-2011-05-15 00:00:00,9444.0
-2011-05-13 01:00:00,11525.0
-2011-05-13 02:00:00,10616.0
-2011-05-13 03:00:00,9999.0
-2011-05-13 04:00:00,9547.0
-2011-05-13 05:00:00,9394.0
-2011-05-13 06:00:00,9423.0
-2011-05-13 07:00:00,9865.0
-2011-05-13 08:00:00,10732.0
-2011-05-13 09:00:00,11944.0
-2011-05-13 10:00:00,12740.0
-2011-05-13 11:00:00,13357.0
-2011-05-13 12:00:00,13626.0
-2011-05-13 13:00:00,13433.0
-2011-05-13 14:00:00,13242.0
-2011-05-13 15:00:00,12878.0
-2011-05-13 16:00:00,12326.0
-2011-05-13 17:00:00,11911.0
-2011-05-13 18:00:00,11544.0
-2011-05-13 19:00:00,11257.0
-2011-05-13 20:00:00,10989.0
-2011-05-13 21:00:00,10929.0
-2011-05-13 22:00:00,11166.0
-2011-05-13 23:00:00,10839.0
-2011-05-14 00:00:00,10081.0
-2011-05-12 01:00:00,11143.0
-2011-05-12 02:00:00,10282.0
-2011-05-12 03:00:00,9688.0
-2011-05-12 04:00:00,9283.0
-2011-05-12 05:00:00,9089.0
-2011-05-12 06:00:00,9178.0
-2011-05-12 07:00:00,9699.0
-2011-05-12 08:00:00,10622.0
-2011-05-12 09:00:00,11650.0
-2011-05-12 10:00:00,12425.0
-2011-05-12 11:00:00,13079.0
-2011-05-12 12:00:00,13647.0
-2011-05-12 13:00:00,14098.0
-2011-05-12 14:00:00,14679.0
-2011-05-12 15:00:00,15278.0
-2011-05-12 16:00:00,15632.0
-2011-05-12 17:00:00,15951.0
-2011-05-12 18:00:00,16049.0
-2011-05-12 19:00:00,15883.0
-2011-05-12 20:00:00,15309.0
-2011-05-12 21:00:00,14855.0
-2011-05-12 22:00:00,14820.0
-2011-05-12 23:00:00,14145.0
-2011-05-13 00:00:00,12843.0
-2011-05-11 01:00:00,11618.0
-2011-05-11 02:00:00,10767.0
-2011-05-11 03:00:00,10175.0
-2011-05-11 04:00:00,9733.0
-2011-05-11 05:00:00,9486.0
-2011-05-11 06:00:00,9573.0
-2011-05-11 07:00:00,10061.0
-2011-05-11 08:00:00,11036.0
-2011-05-11 09:00:00,12254.0
-2011-05-11 10:00:00,13172.0
-2011-05-11 11:00:00,13921.0
-2011-05-11 12:00:00,14705.0
-2011-05-11 13:00:00,15356.0
-2011-05-11 14:00:00,15851.0
-2011-05-11 15:00:00,16127.0
-2011-05-11 16:00:00,16223.0
-2011-05-11 17:00:00,16169.0
-2011-05-11 18:00:00,15926.0
-2011-05-11 19:00:00,15539.0
-2011-05-11 20:00:00,14840.0
-2011-05-11 21:00:00,14377.0
-2011-05-11 22:00:00,14298.0
-2011-05-11 23:00:00,13619.0
-2011-05-12 00:00:00,12359.0
-2011-05-10 01:00:00,9288.0
-2011-05-10 02:00:00,8723.0
-2011-05-10 03:00:00,8373.0
-2011-05-10 04:00:00,8116.0
-2011-05-10 05:00:00,8065.0
-2011-05-10 06:00:00,8235.0
-2011-05-10 07:00:00,8801.0
-2011-05-10 08:00:00,9720.0
-2011-05-10 09:00:00,10680.0
-2011-05-10 10:00:00,11309.0
-2011-05-10 11:00:00,11796.0
-2011-05-10 12:00:00,12321.0
-2011-05-10 13:00:00,12711.0
-2011-05-10 14:00:00,13114.0
-2011-05-10 15:00:00,13524.0
-2011-05-10 16:00:00,13725.0
-2011-05-10 17:00:00,13954.0
-2011-05-10 18:00:00,14077.0
-2011-05-10 19:00:00,14072.0
-2011-05-10 20:00:00,13835.0
-2011-05-10 21:00:00,13732.0
-2011-05-10 22:00:00,14134.0
-2011-05-10 23:00:00,13773.0
-2011-05-11 00:00:00,12722.0
-2011-05-09 01:00:00,8378.0
-2011-05-09 02:00:00,8015.0
-2011-05-09 03:00:00,7787.0
-2011-05-09 04:00:00,7690.0
-2011-05-09 05:00:00,7696.0
-2011-05-09 06:00:00,7957.0
-2011-05-09 07:00:00,8537.0
-2011-05-09 08:00:00,9456.0
-2011-05-09 09:00:00,10391.0
-2011-05-09 10:00:00,10939.0
-2011-05-09 11:00:00,11123.0
-2011-05-09 12:00:00,11354.0
-2011-05-09 13:00:00,11459.0
-2011-05-09 14:00:00,11475.0
-2011-05-09 15:00:00,11531.0
-2011-05-09 16:00:00,11453.0
-2011-05-09 17:00:00,11371.0
-2011-05-09 18:00:00,11211.0
-2011-05-09 19:00:00,11049.0
-2011-05-09 20:00:00,10816.0
-2011-05-09 21:00:00,10944.0
-2011-05-09 22:00:00,11393.0
-2011-05-09 23:00:00,11026.0
-2011-05-10 00:00:00,10138.0
-2011-05-08 01:00:00,8749.0
-2011-05-08 02:00:00,8272.0
-2011-05-08 03:00:00,7982.0
-2011-05-08 04:00:00,7768.0
-2011-05-08 05:00:00,7626.0
-2011-05-08 06:00:00,7698.0
-2011-05-08 07:00:00,7719.0
-2011-05-08 08:00:00,7692.0
-2011-05-08 09:00:00,7932.0
-2011-05-08 10:00:00,8304.0
-2011-05-08 11:00:00,8582.0
-2011-05-08 12:00:00,8743.0
-2011-05-08 13:00:00,8801.0
-2011-05-08 14:00:00,8808.0
-2011-05-08 15:00:00,8759.0
-2011-05-08 16:00:00,8756.0
-2011-05-08 17:00:00,8679.0
-2011-05-08 18:00:00,8696.0
-2011-05-08 19:00:00,8694.0
-2011-05-08 20:00:00,8819.0
-2011-05-08 21:00:00,9034.0
-2011-05-08 22:00:00,9627.0
-2011-05-08 23:00:00,9510.0
-2011-05-09 00:00:00,8998.0
-2011-05-07 01:00:00,9209.0
-2011-05-07 02:00:00,8646.0
-2011-05-07 03:00:00,8206.0
-2011-05-07 04:00:00,8010.0
-2011-05-07 05:00:00,7931.0
-2011-05-07 06:00:00,7928.0
-2011-05-07 07:00:00,8116.0
-2011-05-07 08:00:00,8313.0
-2011-05-07 09:00:00,8754.0
-2011-05-07 10:00:00,9276.0
-2011-05-07 11:00:00,9584.0
-2011-05-07 12:00:00,9762.0
-2011-05-07 13:00:00,9710.0
-2011-05-07 14:00:00,9668.0
-2011-05-07 15:00:00,9508.0
-2011-05-07 16:00:00,9456.0
-2011-05-07 17:00:00,9370.0
-2011-05-07 18:00:00,9326.0
-2011-05-07 19:00:00,9277.0
-2011-05-07 20:00:00,9219.0
-2011-05-07 21:00:00,9312.0
-2011-05-07 22:00:00,9836.0
-2011-05-07 23:00:00,9741.0
-2011-05-08 00:00:00,9324.0
-2011-05-06 01:00:00,9424.0
-2011-05-06 02:00:00,8889.0
-2011-05-06 03:00:00,8551.0
-2011-05-06 04:00:00,8410.0
-2011-05-06 05:00:00,8369.0
-2011-05-06 06:00:00,8473.0
-2011-05-06 07:00:00,8997.0
-2011-05-06 08:00:00,9815.0
-2011-05-06 09:00:00,10559.0
-2011-05-06 10:00:00,10953.0
-2011-05-06 11:00:00,11115.0
-2011-05-06 12:00:00,11275.0
-2011-05-06 13:00:00,11298.0
-2011-05-06 14:00:00,11263.0
-2011-05-06 15:00:00,11267.0
-2011-05-06 16:00:00,11127.0
-2011-05-06 17:00:00,10935.0
-2011-05-06 18:00:00,10762.0
-2011-05-06 19:00:00,10525.0
-2011-05-06 20:00:00,10342.0
-2011-05-06 21:00:00,10429.0
-2011-05-06 22:00:00,10857.0
-2011-05-06 23:00:00,10628.0
-2011-05-07 00:00:00,9911.0
-2011-05-05 01:00:00,9403.0
-2011-05-05 02:00:00,8888.0
-2011-05-05 03:00:00,8565.0
-2011-05-05 04:00:00,8400.0
-2011-05-05 05:00:00,8406.0
-2011-05-05 06:00:00,8645.0
-2011-05-05 07:00:00,9233.0
-2011-05-05 08:00:00,10069.0
-2011-05-05 09:00:00,10835.0
-2011-05-05 10:00:00,11180.0
-2011-05-05 11:00:00,11317.0
-2011-05-05 12:00:00,11439.0
-2011-05-05 13:00:00,11325.0
-2011-05-05 14:00:00,11320.0
-2011-05-05 15:00:00,11330.0
-2011-05-05 16:00:00,11265.0
-2011-05-05 17:00:00,11235.0
-2011-05-05 18:00:00,11089.0
-2011-05-05 19:00:00,10934.0
-2011-05-05 20:00:00,10828.0
-2011-05-05 21:00:00,11079.0
-2011-05-05 22:00:00,11403.0
-2011-05-05 23:00:00,11010.0
-2011-05-06 00:00:00,10206.0
-2011-05-04 01:00:00,9652.0
-2011-05-04 02:00:00,9167.0
-2011-05-04 03:00:00,8871.0
-2011-05-04 04:00:00,8649.0
-2011-05-04 05:00:00,8603.0
-2011-05-04 06:00:00,8851.0
-2011-05-04 07:00:00,9505.0
-2011-05-04 08:00:00,10459.0
-2011-05-04 09:00:00,11158.0
-2011-05-04 10:00:00,11343.0
-2011-05-04 11:00:00,11383.0
-2011-05-04 12:00:00,11449.0
-2011-05-04 13:00:00,11381.0
-2011-05-04 14:00:00,11314.0
-2011-05-04 15:00:00,11316.0
-2011-05-04 16:00:00,11189.0
-2011-05-04 17:00:00,11071.0
-2011-05-04 18:00:00,10880.0
-2011-05-04 19:00:00,10727.0
-2011-05-04 20:00:00,10490.0
-2011-05-04 21:00:00,10608.0
-2011-05-04 22:00:00,11212.0
-2011-05-04 23:00:00,10938.0
-2011-05-05 00:00:00,10147.0
-2011-05-03 01:00:00,9334.0
-2011-05-03 02:00:00,8877.0
-2011-05-03 03:00:00,8594.0
-2011-05-03 04:00:00,8410.0
-2011-05-03 05:00:00,8395.0
-2011-05-03 06:00:00,8613.0
-2011-05-03 07:00:00,9259.0
-2011-05-03 08:00:00,10107.0
-2011-05-03 09:00:00,10785.0
-2011-05-03 10:00:00,11061.0
-2011-05-03 11:00:00,11173.0
-2011-05-03 12:00:00,11268.0
-2011-05-03 13:00:00,11286.0
-2011-05-03 14:00:00,11310.0
-2011-05-03 15:00:00,11397.0
-2011-05-03 16:00:00,11336.0
-2011-05-03 17:00:00,11282.0
-2011-05-03 18:00:00,11338.0
-2011-05-03 19:00:00,11412.0
-2011-05-03 20:00:00,11394.0
-2011-05-03 21:00:00,11532.0
-2011-05-03 22:00:00,11716.0
-2011-05-03 23:00:00,11274.0
-2011-05-04 00:00:00,10435.0
-2011-05-02 01:00:00,8621.0
-2011-05-02 02:00:00,8209.0
-2011-05-02 03:00:00,8001.0
-2011-05-02 04:00:00,7831.0
-2011-05-02 05:00:00,7848.0
-2011-05-02 06:00:00,8124.0
-2011-05-02 07:00:00,8790.0
-2011-05-02 08:00:00,9725.0
-2011-05-02 09:00:00,10484.0
-2011-05-02 10:00:00,10893.0
-2011-05-02 11:00:00,11045.0
-2011-05-02 12:00:00,11152.0
-2011-05-02 13:00:00,11164.0
-2011-05-02 14:00:00,11166.0
-2011-05-02 15:00:00,11201.0
-2011-05-02 16:00:00,11112.0
-2011-05-02 17:00:00,10954.0
-2011-05-02 18:00:00,10792.0
-2011-05-02 19:00:00,10661.0
-2011-05-02 20:00:00,10515.0
-2011-05-02 21:00:00,10718.0
-2011-05-02 22:00:00,11250.0
-2011-05-02 23:00:00,10859.0
-2011-05-03 00:00:00,10090.0
-2011-05-01 01:00:00,8829.0
-2011-05-01 02:00:00,8373.0
-2011-05-01 03:00:00,7993.0
-2011-05-01 04:00:00,7802.0
-2011-05-01 05:00:00,7637.0
-2011-05-01 06:00:00,7630.0
-2011-05-01 07:00:00,7698.0
-2011-05-01 08:00:00,7556.0
-2011-05-01 09:00:00,7854.0
-2011-05-01 10:00:00,8272.0
-2011-05-01 11:00:00,8597.0
-2011-05-01 12:00:00,8794.0
-2011-05-01 13:00:00,8892.0
-2011-05-01 14:00:00,8941.0
-2011-05-01 15:00:00,8904.0
-2011-05-01 16:00:00,8883.0
-2011-05-01 17:00:00,8835.0
-2011-05-01 18:00:00,8913.0
-2011-05-01 19:00:00,8973.0
-2011-05-01 20:00:00,9107.0
-2011-05-01 21:00:00,9420.0
-2011-05-01 22:00:00,9872.0
-2011-05-01 23:00:00,9643.0
-2011-05-02 00:00:00,9101.0
-2011-04-30 01:00:00,9360.0
-2011-04-30 02:00:00,8767.0
-2011-04-30 03:00:00,8434.0
-2011-04-30 04:00:00,8207.0
-2011-04-30 05:00:00,8137.0
-2011-04-30 06:00:00,8131.0
-2011-04-30 07:00:00,8418.0
-2011-04-30 08:00:00,8580.0
-2011-04-30 09:00:00,9028.0
-2011-04-30 10:00:00,9500.0
-2011-04-30 11:00:00,9704.0
-2011-04-30 12:00:00,9783.0
-2011-04-30 13:00:00,9796.0
-2011-04-30 14:00:00,9711.0
-2011-04-30 15:00:00,9592.0
-2011-04-30 16:00:00,9486.0
-2011-04-30 17:00:00,9466.0
-2011-04-30 18:00:00,9502.0
-2011-04-30 19:00:00,9598.0
-2011-04-30 20:00:00,9668.0
-2011-04-30 21:00:00,9910.0
-2011-04-30 22:00:00,10178.0
-2011-04-30 23:00:00,9939.0
-2011-05-01 00:00:00,9428.0
-2011-04-29 01:00:00,9745.0
-2011-04-29 02:00:00,9225.0
-2011-04-29 03:00:00,8895.0
-2011-04-29 04:00:00,8716.0
-2011-04-29 05:00:00,8648.0
-2011-04-29 06:00:00,8980.0
-2011-04-29 07:00:00,9591.0
-2011-04-29 08:00:00,10386.0
-2011-04-29 09:00:00,10965.0
-2011-04-29 10:00:00,11151.0
-2011-04-29 11:00:00,11207.0
-2011-04-29 12:00:00,11286.0
-2011-04-29 13:00:00,11279.0
-2011-04-29 14:00:00,11213.0
-2011-04-29 15:00:00,11203.0
-2011-04-29 16:00:00,11057.0
-2011-04-29 17:00:00,10846.0
-2011-04-29 18:00:00,10678.0
-2011-04-29 19:00:00,10472.0
-2011-04-29 20:00:00,10299.0
-2011-04-29 21:00:00,10551.0
-2011-04-29 22:00:00,10923.0
-2011-04-29 23:00:00,10676.0
-2011-04-30 00:00:00,10003.0
-2011-04-28 01:00:00,9508.0
-2011-04-28 02:00:00,9003.0
-2011-04-28 03:00:00,8709.0
-2011-04-28 04:00:00,8527.0
-2011-04-28 05:00:00,8506.0
-2011-04-28 06:00:00,8725.0
-2011-04-28 07:00:00,9380.0
-2011-04-28 08:00:00,10320.0
-2011-04-28 09:00:00,11103.0
-2011-04-28 10:00:00,11437.0
-2011-04-28 11:00:00,11573.0
-2011-04-28 12:00:00,11704.0
-2011-04-28 13:00:00,11730.0
-2011-04-28 14:00:00,11693.0
-2011-04-28 15:00:00,11661.0
-2011-04-28 16:00:00,11590.0
-2011-04-28 17:00:00,11486.0
-2011-04-28 18:00:00,11423.0
-2011-04-28 19:00:00,11369.0
-2011-04-28 20:00:00,11298.0
-2011-04-28 21:00:00,11522.0
-2011-04-28 22:00:00,11692.0
-2011-04-28 23:00:00,11342.0
-2011-04-29 00:00:00,10552.0
-2011-04-27 01:00:00,9475.0
-2011-04-27 02:00:00,8896.0
-2011-04-27 03:00:00,8574.0
-2011-04-27 04:00:00,8370.0
-2011-04-27 05:00:00,8287.0
-2011-04-27 06:00:00,8448.0
-2011-04-27 07:00:00,9086.0
-2011-04-27 08:00:00,10112.0
-2011-04-27 09:00:00,10964.0
-2011-04-27 10:00:00,11362.0
-2011-04-27 11:00:00,11514.0
-2011-04-27 12:00:00,11548.0
-2011-04-27 13:00:00,11523.0
-2011-04-27 14:00:00,11498.0
-2011-04-27 15:00:00,11551.0
-2011-04-27 16:00:00,11428.0
-2011-04-27 17:00:00,11261.0
-2011-04-27 18:00:00,11162.0
-2011-04-27 19:00:00,11152.0
-2011-04-27 20:00:00,11097.0
-2011-04-27 21:00:00,11302.0
-2011-04-27 22:00:00,11497.0
-2011-04-27 23:00:00,11075.0
-2011-04-28 00:00:00,10268.0
-2011-04-26 01:00:00,9584.0
-2011-04-26 02:00:00,9050.0
-2011-04-26 03:00:00,8744.0
-2011-04-26 04:00:00,8552.0
-2011-04-26 05:00:00,8511.0
-2011-04-26 06:00:00,8692.0
-2011-04-26 07:00:00,9366.0
-2011-04-26 08:00:00,10327.0
-2011-04-26 09:00:00,11041.0
-2011-04-26 10:00:00,11354.0
-2011-04-26 11:00:00,11528.0
-2011-04-26 12:00:00,11711.0
-2011-04-26 13:00:00,11736.0
-2011-04-26 14:00:00,11719.0
-2011-04-26 15:00:00,11726.0
-2011-04-26 16:00:00,11596.0
-2011-04-26 17:00:00,11450.0
-2011-04-26 18:00:00,11339.0
-2011-04-26 19:00:00,11181.0
-2011-04-26 20:00:00,11024.0
-2011-04-26 21:00:00,11196.0
-2011-04-26 22:00:00,11465.0
-2011-04-26 23:00:00,11004.0
-2011-04-27 00:00:00,10232.0
-2011-04-25 01:00:00,8418.0
-2011-04-25 02:00:00,8089.0
-2011-04-25 03:00:00,7886.0
-2011-04-25 04:00:00,7826.0
-2011-04-25 05:00:00,7827.0
-2011-04-25 06:00:00,8131.0
-2011-04-25 07:00:00,8868.0
-2011-04-25 08:00:00,9854.0
-2011-04-25 09:00:00,10699.0
-2011-04-25 10:00:00,11163.0
-2011-04-25 11:00:00,11353.0
-2011-04-25 12:00:00,11501.0
-2011-04-25 13:00:00,11449.0
-2011-04-25 14:00:00,11397.0
-2011-04-25 15:00:00,11351.0
-2011-04-25 16:00:00,11222.0
-2011-04-25 17:00:00,11104.0
-2011-04-25 18:00:00,11117.0
-2011-04-25 19:00:00,11160.0
-2011-04-25 20:00:00,11172.0
-2011-04-25 21:00:00,11467.0
-2011-04-25 22:00:00,11538.0
-2011-04-25 23:00:00,11068.0
-2011-04-26 00:00:00,10322.0
-2011-04-24 01:00:00,8678.0
-2011-04-24 02:00:00,8162.0
-2011-04-24 03:00:00,7893.0
-2011-04-24 04:00:00,7647.0
-2011-04-24 05:00:00,7570.0
-2011-04-24 06:00:00,7539.0
-2011-04-24 07:00:00,7671.0
-2011-04-24 08:00:00,7605.0
-2011-04-24 09:00:00,7875.0
-2011-04-24 10:00:00,8186.0
-2011-04-24 11:00:00,8407.0
-2011-04-24 12:00:00,8452.0
-2011-04-24 13:00:00,8530.0
-2011-04-24 14:00:00,8490.0
-2011-04-24 15:00:00,8429.0
-2011-04-24 16:00:00,8310.0
-2011-04-24 17:00:00,8246.0
-2011-04-24 18:00:00,8188.0
-2011-04-24 19:00:00,8267.0
-2011-04-24 20:00:00,8486.0
-2011-04-24 21:00:00,8977.0
-2011-04-24 22:00:00,9479.0
-2011-04-24 23:00:00,9341.0
-2011-04-25 00:00:00,8927.0
-2011-04-23 01:00:00,9243.0
-2011-04-23 02:00:00,8708.0
-2011-04-23 03:00:00,8372.0
-2011-04-23 04:00:00,8150.0
-2011-04-23 05:00:00,8044.0
-2011-04-23 06:00:00,8070.0
-2011-04-23 07:00:00,8260.0
-2011-04-23 08:00:00,8485.0
-2011-04-23 09:00:00,8709.0
-2011-04-23 10:00:00,9139.0
-2011-04-23 11:00:00,9466.0
-2011-04-23 12:00:00,9506.0
-2011-04-23 13:00:00,9519.0
-2011-04-23 14:00:00,9412.0
-2011-04-23 15:00:00,9271.0
-2011-04-23 16:00:00,9116.0
-2011-04-23 17:00:00,8991.0
-2011-04-23 18:00:00,8955.0
-2011-04-23 19:00:00,8932.0
-2011-04-23 20:00:00,8955.0
-2011-04-23 21:00:00,9295.0
-2011-04-23 22:00:00,9822.0
-2011-04-23 23:00:00,9671.0
-2011-04-24 00:00:00,9203.0
-2011-04-22 01:00:00,9713.0
-2011-04-22 02:00:00,9118.0
-2011-04-22 03:00:00,8857.0
-2011-04-22 04:00:00,8625.0
-2011-04-22 05:00:00,8591.0
-2011-04-22 06:00:00,8737.0
-2011-04-22 07:00:00,9247.0
-2011-04-22 08:00:00,9912.0
-2011-04-22 09:00:00,10399.0
-2011-04-22 10:00:00,10848.0
-2011-04-22 11:00:00,11102.0
-2011-04-22 12:00:00,11324.0
-2011-04-22 13:00:00,11425.0
-2011-04-22 14:00:00,11458.0
-2011-04-22 15:00:00,11309.0
-2011-04-22 16:00:00,11026.0
-2011-04-22 17:00:00,10754.0
-2011-04-22 18:00:00,10672.0
-2011-04-22 19:00:00,10743.0
-2011-04-22 20:00:00,10831.0
-2011-04-22 21:00:00,10966.0
-2011-04-22 22:00:00,10931.0
-2011-04-22 23:00:00,10597.0
-2011-04-23 00:00:00,9915.0
-2011-04-21 01:00:00,10013.0
-2011-04-21 02:00:00,9519.0
-2011-04-21 03:00:00,9229.0
-2011-04-21 04:00:00,9066.0
-2011-04-21 05:00:00,9067.0
-2011-04-21 06:00:00,9307.0
-2011-04-21 07:00:00,9962.0
-2011-04-21 08:00:00,10778.0
-2011-04-21 09:00:00,11350.0
-2011-04-21 10:00:00,11541.0
-2011-04-21 11:00:00,11525.0
-2011-04-21 12:00:00,11575.0
-2011-04-21 13:00:00,11519.0
-2011-04-21 14:00:00,11427.0
-2011-04-21 15:00:00,11396.0
-2011-04-21 16:00:00,11234.0
-2011-04-21 17:00:00,11052.0
-2011-04-21 18:00:00,10929.0
-2011-04-21 19:00:00,10939.0
-2011-04-21 20:00:00,10956.0
-2011-04-21 21:00:00,11309.0
-2011-04-21 22:00:00,11521.0
-2011-04-21 23:00:00,11200.0
-2011-04-22 00:00:00,10487.0
-2011-04-20 01:00:00,10279.0
-2011-04-20 02:00:00,9772.0
-2011-04-20 03:00:00,9479.0
-2011-04-20 04:00:00,9255.0
-2011-04-20 05:00:00,9238.0
-2011-04-20 06:00:00,9429.0
-2011-04-20 07:00:00,10128.0
-2011-04-20 08:00:00,11173.0
-2011-04-20 09:00:00,11832.0
-2011-04-20 10:00:00,12119.0
-2011-04-20 11:00:00,12226.0
-2011-04-20 12:00:00,12272.0
-2011-04-20 13:00:00,12176.0
-2011-04-20 14:00:00,12065.0
-2011-04-20 15:00:00,12029.0
-2011-04-20 16:00:00,11961.0
-2011-04-20 17:00:00,11917.0
-2011-04-20 18:00:00,11878.0
-2011-04-20 19:00:00,11800.0
-2011-04-20 20:00:00,11634.0
-2011-04-20 21:00:00,11801.0
-2011-04-20 22:00:00,12049.0
-2011-04-20 23:00:00,11611.0
-2011-04-21 00:00:00,10770.0
-2011-04-19 01:00:00,10136.0
-2011-04-19 02:00:00,9621.0
-2011-04-19 03:00:00,9312.0
-2011-04-19 04:00:00,9131.0
-2011-04-19 05:00:00,9123.0
-2011-04-19 06:00:00,9335.0
-2011-04-19 07:00:00,9985.0
-2011-04-19 08:00:00,11082.0
-2011-04-19 09:00:00,11887.0
-2011-04-19 10:00:00,12253.0
-2011-04-19 11:00:00,12468.0
-2011-04-19 12:00:00,12745.0
-2011-04-19 13:00:00,12726.0
-2011-04-19 14:00:00,12673.0
-2011-04-19 15:00:00,12676.0
-2011-04-19 16:00:00,12632.0
-2011-04-19 17:00:00,12562.0
-2011-04-19 18:00:00,12480.0
-2011-04-19 19:00:00,12452.0
-2011-04-19 20:00:00,12386.0
-2011-04-19 21:00:00,12674.0
-2011-04-19 22:00:00,12600.0
-2011-04-19 23:00:00,12074.0
-2011-04-20 00:00:00,11144.0
-2011-04-18 01:00:00,8922.0
-2011-04-18 02:00:00,8594.0
-2011-04-18 03:00:00,8489.0
-2011-04-18 04:00:00,8453.0
-2011-04-18 05:00:00,8587.0
-2011-04-18 06:00:00,8932.0
-2011-04-18 07:00:00,9739.0
-2011-04-18 08:00:00,10876.0
-2011-04-18 09:00:00,11618.0
-2011-04-18 10:00:00,11995.0
-2011-04-18 11:00:00,12082.0
-2011-04-18 12:00:00,12248.0
-2011-04-18 13:00:00,12166.0
-2011-04-18 14:00:00,12051.0
-2011-04-18 15:00:00,11957.0
-2011-04-18 16:00:00,11722.0
-2011-04-18 17:00:00,11450.0
-2011-04-18 18:00:00,11353.0
-2011-04-18 19:00:00,11349.0
-2011-04-18 20:00:00,11378.0
-2011-04-18 21:00:00,11839.0
-2011-04-18 22:00:00,12071.0
-2011-04-18 23:00:00,11636.0
-2011-04-19 00:00:00,10885.0
-2011-04-17 01:00:00,9542.0
-2011-04-17 02:00:00,9081.0
-2011-04-17 03:00:00,8710.0
-2011-04-17 04:00:00,8581.0
-2011-04-17 05:00:00,8510.0
-2011-04-17 06:00:00,8511.0
-2011-04-17 07:00:00,8696.0
-2011-04-17 08:00:00,8674.0
-2011-04-17 09:00:00,8886.0
-2011-04-17 10:00:00,9196.0
-2011-04-17 11:00:00,9375.0
-2011-04-17 12:00:00,9373.0
-2011-04-17 13:00:00,9304.0
-2011-04-17 14:00:00,9282.0
-2011-04-17 15:00:00,9195.0
-2011-04-17 16:00:00,9098.0
-2011-04-17 17:00:00,9022.0
-2011-04-17 18:00:00,9066.0
-2011-04-17 19:00:00,9142.0
-2011-04-17 20:00:00,9296.0
-2011-04-17 21:00:00,9893.0
-2011-04-17 22:00:00,10251.0
-2011-04-17 23:00:00,9964.0
-2011-04-18 00:00:00,9438.0
-2011-04-16 01:00:00,9712.0
-2011-04-16 02:00:00,9084.0
-2011-04-16 03:00:00,8728.0
-2011-04-16 04:00:00,8434.0
-2011-04-16 05:00:00,8338.0
-2011-04-16 06:00:00,8376.0
-2011-04-16 07:00:00,8641.0
-2011-04-16 08:00:00,8965.0
-2011-04-16 09:00:00,9366.0
-2011-04-16 10:00:00,9818.0
-2011-04-16 11:00:00,10166.0
-2011-04-16 12:00:00,10301.0
-2011-04-16 13:00:00,10331.0
-2011-04-16 14:00:00,10269.0
-2011-04-16 15:00:00,10285.0
-2011-04-16 16:00:00,10258.0
-2011-04-16 17:00:00,10288.0
-2011-04-16 18:00:00,10308.0
-2011-04-16 19:00:00,10438.0
-2011-04-16 20:00:00,10499.0
-2011-04-16 21:00:00,10800.0
-2011-04-16 22:00:00,10915.0
-2011-04-16 23:00:00,10607.0
-2011-04-17 00:00:00,10153.0
-2011-04-15 01:00:00,9751.0
-2011-04-15 02:00:00,9197.0
-2011-04-15 03:00:00,8923.0
-2011-04-15 04:00:00,8730.0
-2011-04-15 05:00:00,8732.0
-2011-04-15 06:00:00,8966.0
-2011-04-15 07:00:00,9678.0
-2011-04-15 08:00:00,10626.0
-2011-04-15 09:00:00,11215.0
-2011-04-15 10:00:00,11487.0
-2011-04-15 11:00:00,11562.0
-2011-04-15 12:00:00,11717.0
-2011-04-15 13:00:00,11675.0
-2011-04-15 14:00:00,11626.0
-2011-04-15 15:00:00,11604.0
-2011-04-15 16:00:00,11565.0
-2011-04-15 17:00:00,11532.0
-2011-04-15 18:00:00,11593.0
-2011-04-15 19:00:00,11617.0
-2011-04-15 20:00:00,11588.0
-2011-04-15 21:00:00,11712.0
-2011-04-15 22:00:00,11586.0
-2011-04-15 23:00:00,11215.0
-2011-04-16 00:00:00,10461.0
-2011-04-14 01:00:00,9276.0
-2011-04-14 02:00:00,8742.0
-2011-04-14 03:00:00,8379.0
-2011-04-14 04:00:00,8204.0
-2011-04-14 05:00:00,8166.0
-2011-04-14 06:00:00,8366.0
-2011-04-14 07:00:00,9050.0
-2011-04-14 08:00:00,10085.0
-2011-04-14 09:00:00,10830.0
-2011-04-14 10:00:00,11174.0
-2011-04-14 11:00:00,11310.0
-2011-04-14 12:00:00,11447.0
-2011-04-14 13:00:00,11424.0
-2011-04-14 14:00:00,11353.0
-2011-04-14 15:00:00,11357.0
-2011-04-14 16:00:00,11223.0
-2011-04-14 17:00:00,11085.0
-2011-04-14 18:00:00,10988.0
-2011-04-14 19:00:00,10931.0
-2011-04-14 20:00:00,11006.0
-2011-04-14 21:00:00,11545.0
-2011-04-14 22:00:00,11790.0
-2011-04-14 23:00:00,11353.0
-2011-04-15 00:00:00,10511.0
-2011-04-13 01:00:00,9429.0
-2011-04-13 02:00:00,8918.0
-2011-04-13 03:00:00,8622.0
-2011-04-13 04:00:00,8449.0
-2011-04-13 05:00:00,8414.0
-2011-04-13 06:00:00,8648.0
-2011-04-13 07:00:00,9350.0
-2011-04-13 08:00:00,10212.0
-2011-04-13 09:00:00,10855.0
-2011-04-13 10:00:00,11110.0
-2011-04-13 11:00:00,11169.0
-2011-04-13 12:00:00,11315.0
-2011-04-13 13:00:00,11333.0
-2011-04-13 14:00:00,11333.0
-2011-04-13 15:00:00,11405.0
-2011-04-13 16:00:00,11326.0
-2011-04-13 17:00:00,11240.0
-2011-04-13 18:00:00,11102.0
-2011-04-13 19:00:00,10913.0
-2011-04-13 20:00:00,10749.0
-2011-04-13 21:00:00,11091.0
-2011-04-13 22:00:00,11428.0
-2011-04-13 23:00:00,11008.0
-2011-04-14 00:00:00,10151.0
-2011-04-12 01:00:00,9274.0
-2011-04-12 02:00:00,8705.0
-2011-04-12 03:00:00,8412.0
-2011-04-12 04:00:00,8246.0
-2011-04-12 05:00:00,8188.0
-2011-04-12 06:00:00,8432.0
-2011-04-12 07:00:00,9120.0
-2011-04-12 08:00:00,10117.0
-2011-04-12 09:00:00,10781.0
-2011-04-12 10:00:00,11083.0
-2011-04-12 11:00:00,11185.0
-2011-04-12 12:00:00,11307.0
-2011-04-12 13:00:00,11288.0
-2011-04-12 14:00:00,11283.0
-2011-04-12 15:00:00,11314.0
-2011-04-12 16:00:00,11180.0
-2011-04-12 17:00:00,11028.0
-2011-04-12 18:00:00,10874.0
-2011-04-12 19:00:00,10719.0
-2011-04-12 20:00:00,10590.0
-2011-04-12 21:00:00,11003.0
-2011-04-12 22:00:00,11433.0
-2011-04-12 23:00:00,11007.0
-2011-04-13 00:00:00,10232.0
-2011-04-11 01:00:00,9607.0
-2011-04-11 02:00:00,9043.0
-2011-04-11 03:00:00,8582.0
-2011-04-11 04:00:00,8302.0
-2011-04-11 05:00:00,8105.0
-2011-04-11 06:00:00,8269.0
-2011-04-11 07:00:00,8866.0
-2011-04-11 08:00:00,9783.0
-2011-04-11 09:00:00,10449.0
-2011-04-11 10:00:00,10908.0
-2011-04-11 11:00:00,11099.0
-2011-04-11 12:00:00,11203.0
-2011-04-11 13:00:00,11298.0
-2011-04-11 14:00:00,11319.0
-2011-04-11 15:00:00,11374.0
-2011-04-11 16:00:00,11325.0
-2011-04-11 17:00:00,11241.0
-2011-04-11 18:00:00,11126.0
-2011-04-11 19:00:00,10989.0
-2011-04-11 20:00:00,10955.0
-2011-04-11 21:00:00,11332.0
-2011-04-11 22:00:00,11407.0
-2011-04-11 23:00:00,10907.0
-2011-04-12 00:00:00,10072.0
-2011-04-10 01:00:00,8934.0
-2011-04-10 02:00:00,8495.0
-2011-04-10 03:00:00,8168.0
-2011-04-10 04:00:00,7972.0
-2011-04-10 05:00:00,7793.0
-2011-04-10 06:00:00,7833.0
-2011-04-10 07:00:00,7923.0
-2011-04-10 08:00:00,7981.0
-2011-04-10 09:00:00,8099.0
-2011-04-10 10:00:00,8578.0
-2011-04-10 11:00:00,8959.0
-2011-04-10 12:00:00,9352.0
-2011-04-10 13:00:00,9561.0
-2011-04-10 14:00:00,9787.0
-2011-04-10 15:00:00,9924.0
-2011-04-10 16:00:00,10027.0
-2011-04-10 17:00:00,10128.0
-2011-04-10 18:00:00,10176.0
-2011-04-10 19:00:00,10423.0
-2011-04-10 20:00:00,10520.0
-2011-04-10 21:00:00,11012.0
-2011-04-10 22:00:00,11324.0
-2011-04-10 23:00:00,11001.0
-2011-04-11 00:00:00,10357.0
-2011-04-09 01:00:00,9695.0
-2011-04-09 02:00:00,9132.0
-2011-04-09 03:00:00,8807.0
-2011-04-09 04:00:00,8626.0
-2011-04-09 05:00:00,8478.0
-2011-04-09 06:00:00,8554.0
-2011-04-09 07:00:00,8779.0
-2011-04-09 08:00:00,9203.0
-2011-04-09 09:00:00,9534.0
-2011-04-09 10:00:00,9934.0
-2011-04-09 11:00:00,10110.0
-2011-04-09 12:00:00,10162.0
-2011-04-09 13:00:00,10038.0
-2011-04-09 14:00:00,9900.0
-2011-04-09 15:00:00,9682.0
-2011-04-09 16:00:00,9593.0
-2011-04-09 17:00:00,9445.0
-2011-04-09 18:00:00,9432.0
-2011-04-09 19:00:00,9383.0
-2011-04-09 20:00:00,9420.0
-2011-04-09 21:00:00,9848.0
-2011-04-09 22:00:00,10259.0
-2011-04-09 23:00:00,9983.0
-2011-04-10 00:00:00,9502.0
-2011-04-08 01:00:00,9944.0
-2011-04-08 02:00:00,9377.0
-2011-04-08 03:00:00,9067.0
-2011-04-08 04:00:00,8909.0
-2011-04-08 05:00:00,8947.0
-2011-04-08 06:00:00,9092.0
-2011-04-08 07:00:00,9768.0
-2011-04-08 08:00:00,10886.0
-2011-04-08 09:00:00,11611.0
-2011-04-08 10:00:00,11774.0
-2011-04-08 11:00:00,11882.0
-2011-04-08 12:00:00,11960.0
-2011-04-08 13:00:00,11970.0
-2011-04-08 14:00:00,11898.0
-2011-04-08 15:00:00,11851.0
-2011-04-08 16:00:00,11717.0
-2011-04-08 17:00:00,11558.0
-2011-04-08 18:00:00,11399.0
-2011-04-08 19:00:00,11234.0
-2011-04-08 20:00:00,11207.0
-2011-04-08 21:00:00,11548.0
-2011-04-08 22:00:00,11543.0
-2011-04-08 23:00:00,11184.0
-2011-04-09 00:00:00,10491.0
-2011-04-07 01:00:00,9661.0
-2011-04-07 02:00:00,9185.0
-2011-04-07 03:00:00,8884.0
-2011-04-07 04:00:00,8711.0
-2011-04-07 05:00:00,8687.0
-2011-04-07 06:00:00,8896.0
-2011-04-07 07:00:00,9573.0
-2011-04-07 08:00:00,10637.0
-2011-04-07 09:00:00,11331.0
-2011-04-07 10:00:00,11617.0
-2011-04-07 11:00:00,11712.0
-2011-04-07 12:00:00,11761.0
-2011-04-07 13:00:00,11698.0
-2011-04-07 14:00:00,11594.0
-2011-04-07 15:00:00,11621.0
-2011-04-07 16:00:00,11523.0
-2011-04-07 17:00:00,11401.0
-2011-04-07 18:00:00,11332.0
-2011-04-07 19:00:00,11383.0
-2011-04-07 20:00:00,11543.0
-2011-04-07 21:00:00,12019.0
-2011-04-07 22:00:00,11940.0
-2011-04-07 23:00:00,11513.0
-2011-04-08 00:00:00,10733.0
-2011-04-06 01:00:00,9757.0
-2011-04-06 02:00:00,9231.0
-2011-04-06 03:00:00,8909.0
-2011-04-06 04:00:00,8692.0
-2011-04-06 05:00:00,8616.0
-2011-04-06 06:00:00,8818.0
-2011-04-06 07:00:00,9519.0
-2011-04-06 08:00:00,10609.0
-2011-04-06 09:00:00,11245.0
-2011-04-06 10:00:00,11528.0
-2011-04-06 11:00:00,11674.0
-2011-04-06 12:00:00,11742.0
-2011-04-06 13:00:00,11646.0
-2011-04-06 14:00:00,11543.0
-2011-04-06 15:00:00,11545.0
-2011-04-06 16:00:00,11441.0
-2011-04-06 17:00:00,11305.0
-2011-04-06 18:00:00,11155.0
-2011-04-06 19:00:00,11016.0
-2011-04-06 20:00:00,10913.0
-2011-04-06 21:00:00,11417.0
-2011-04-06 22:00:00,11655.0
-2011-04-06 23:00:00,11225.0
-2011-04-07 00:00:00,10438.0
-2011-04-05 01:00:00,9839.0
-2011-04-05 02:00:00,9343.0
-2011-04-05 03:00:00,9026.0
-2011-04-05 04:00:00,8853.0
-2011-04-05 05:00:00,8866.0
-2011-04-05 06:00:00,9131.0
-2011-04-05 07:00:00,9915.0
-2011-04-05 08:00:00,10957.0
-2011-04-05 09:00:00,11460.0
-2011-04-05 10:00:00,11613.0
-2011-04-05 11:00:00,11635.0
-2011-04-05 12:00:00,11700.0
-2011-04-05 13:00:00,11693.0
-2011-04-05 14:00:00,11641.0
-2011-04-05 15:00:00,11560.0
-2011-04-05 16:00:00,11400.0
-2011-04-05 17:00:00,11202.0
-2011-04-05 18:00:00,11063.0
-2011-04-05 19:00:00,10960.0
-2011-04-05 20:00:00,10957.0
-2011-04-05 21:00:00,11491.0
-2011-04-05 22:00:00,11713.0
-2011-04-05 23:00:00,11321.0
-2011-04-06 00:00:00,10535.0
-2011-04-04 01:00:00,8802.0
-2011-04-04 02:00:00,8402.0
-2011-04-04 03:00:00,8035.0
-2011-04-04 04:00:00,8057.0
-2011-04-04 05:00:00,8059.0
-2011-04-04 06:00:00,8214.0
-2011-04-04 07:00:00,8910.0
-2011-04-04 08:00:00,10096.0
-2011-04-04 09:00:00,10908.0
-2011-04-04 10:00:00,11266.0
-2011-04-04 11:00:00,11593.0
-2011-04-04 12:00:00,11578.0
-2011-04-04 13:00:00,11582.0
-2011-04-04 14:00:00,11625.0
-2011-04-04 15:00:00,11676.0
-2011-04-04 16:00:00,11572.0
-2011-04-04 17:00:00,11413.0
-2011-04-04 18:00:00,11389.0
-2011-04-04 19:00:00,11446.0
-2011-04-04 20:00:00,11456.0
-2011-04-04 21:00:00,11893.0
-2011-04-04 22:00:00,11905.0
-2011-04-04 23:00:00,11442.0
-2011-04-05 00:00:00,10646.0
-2011-04-03 01:00:00,9318.0
-2011-04-03 02:00:00,8851.0
-2011-04-03 03:00:00,8539.0
-2011-04-03 04:00:00,8392.0
-2011-04-03 05:00:00,8263.0
-2011-04-03 06:00:00,8290.0
-2011-04-03 07:00:00,8416.0
-2011-04-03 08:00:00,8526.0
-2011-04-03 09:00:00,8755.0
-2011-04-03 10:00:00,9080.0
-2011-04-03 11:00:00,9345.0
-2011-04-03 12:00:00,9567.0
-2011-04-03 13:00:00,9633.0
-2011-04-03 14:00:00,9448.0
-2011-04-03 15:00:00,9482.0
-2011-04-03 16:00:00,9481.0
-2011-04-03 17:00:00,9453.0
-2011-04-03 18:00:00,9407.0
-2011-04-03 19:00:00,9465.0
-2011-04-03 20:00:00,9578.0
-2011-04-03 21:00:00,10151.0
-2011-04-03 22:00:00,10235.0
-2011-04-03 23:00:00,9908.0
-2011-04-04 00:00:00,9418.0
-2011-04-02 01:00:00,10059.0
-2011-04-02 02:00:00,9498.0
-2011-04-02 03:00:00,9143.0
-2011-04-02 04:00:00,8916.0
-2011-04-02 05:00:00,8833.0
-2011-04-02 06:00:00,8890.0
-2011-04-02 07:00:00,9106.0
-2011-04-02 08:00:00,9566.0
-2011-04-02 09:00:00,9727.0
-2011-04-02 10:00:00,10016.0
-2011-04-02 11:00:00,10122.0
-2011-04-02 12:00:00,10202.0
-2011-04-02 13:00:00,10157.0
-2011-04-02 14:00:00,10076.0
-2011-04-02 15:00:00,9857.0
-2011-04-02 16:00:00,9667.0
-2011-04-02 17:00:00,9514.0
-2011-04-02 18:00:00,9457.0
-2011-04-02 19:00:00,9402.0
-2011-04-02 20:00:00,9501.0
-2011-04-02 21:00:00,10145.0
-2011-04-02 22:00:00,10509.0
-2011-04-02 23:00:00,10345.0
-2011-04-03 00:00:00,9855.0
-2011-04-01 01:00:00,10059.0
-2011-04-01 02:00:00,9592.0
-2011-04-01 03:00:00,9317.0
-2011-04-01 04:00:00,9159.0
-2011-04-01 05:00:00,9134.0
-2011-04-01 06:00:00,9351.0
-2011-04-01 07:00:00,9980.0
-2011-04-01 08:00:00,10915.0
-2011-04-01 09:00:00,11441.0
-2011-04-01 10:00:00,11686.0
-2011-04-01 11:00:00,11796.0
-2011-04-01 12:00:00,11915.0
-2011-04-01 13:00:00,11927.0
-2011-04-01 14:00:00,12000.0
-2011-04-01 15:00:00,12110.0
-2011-04-01 16:00:00,11993.0
-2011-04-01 17:00:00,11790.0
-2011-04-01 18:00:00,11632.0
-2011-04-01 19:00:00,11562.0
-2011-04-01 20:00:00,11463.0
-2011-04-01 21:00:00,11800.0
-2011-04-01 22:00:00,11763.0
-2011-04-01 23:00:00,11403.0
-2011-04-02 00:00:00,10760.0
-2011-03-31 01:00:00,10220.0
-2011-03-31 02:00:00,9737.0
-2011-03-31 03:00:00,9466.0
-2011-03-31 04:00:00,9320.0
-2011-03-31 05:00:00,9347.0
-2011-03-31 06:00:00,9598.0
-2011-03-31 07:00:00,10289.0
-2011-03-31 08:00:00,11293.0
-2011-03-31 09:00:00,11744.0
-2011-03-31 10:00:00,11899.0
-2011-03-31 11:00:00,11899.0
-2011-03-31 12:00:00,11860.0
-2011-03-31 13:00:00,11740.0
-2011-03-31 14:00:00,11621.0
-2011-03-31 15:00:00,11557.0
-2011-03-31 16:00:00,11401.0
-2011-03-31 17:00:00,11211.0
-2011-03-31 18:00:00,11073.0
-2011-03-31 19:00:00,10972.0
-2011-03-31 20:00:00,10933.0
-2011-03-31 21:00:00,11557.0
-2011-03-31 22:00:00,11708.0
-2011-03-31 23:00:00,11398.0
-2011-04-01 00:00:00,10737.0
-2011-03-30 01:00:00,10374.0
-2011-03-30 02:00:00,9845.0
-2011-03-30 03:00:00,9508.0
-2011-03-30 04:00:00,9324.0
-2011-03-30 05:00:00,9309.0
-2011-03-30 06:00:00,9523.0
-2011-03-30 07:00:00,10196.0
-2011-03-30 08:00:00,11222.0
-2011-03-30 09:00:00,11771.0
-2011-03-30 10:00:00,12044.0
-2011-03-30 11:00:00,12060.0
-2011-03-30 12:00:00,12015.0
-2011-03-30 13:00:00,11905.0
-2011-03-30 14:00:00,11743.0
-2011-03-30 15:00:00,11649.0
-2011-03-30 16:00:00,11509.0
-2011-03-30 17:00:00,11307.0
-2011-03-30 18:00:00,11176.0
-2011-03-30 19:00:00,11085.0
-2011-03-30 20:00:00,11062.0
-2011-03-30 21:00:00,11680.0
-2011-03-30 22:00:00,11906.0
-2011-03-30 23:00:00,11547.0
-2011-03-31 00:00:00,10897.0
-2011-03-29 01:00:00,10480.0
-2011-03-29 02:00:00,9978.0
-2011-03-29 03:00:00,9712.0
-2011-03-29 04:00:00,9532.0
-2011-03-29 05:00:00,9530.0
-2011-03-29 06:00:00,9731.0
-2011-03-29 07:00:00,10419.0
-2011-03-29 08:00:00,11452.0
-2011-03-29 09:00:00,11952.0
-2011-03-29 10:00:00,12177.0
-2011-03-29 11:00:00,12153.0
-2011-03-29 12:00:00,12121.0
-2011-03-29 13:00:00,12024.0
-2011-03-29 14:00:00,11917.0
-2011-03-29 15:00:00,11821.0
-2011-03-29 16:00:00,11694.0
-2011-03-29 17:00:00,11524.0
-2011-03-29 18:00:00,11355.0
-2011-03-29 19:00:00,11323.0
-2011-03-29 20:00:00,11346.0
-2011-03-29 21:00:00,12047.0
-2011-03-29 22:00:00,12177.0
-2011-03-29 23:00:00,11769.0
-2011-03-30 00:00:00,11089.0
-2011-03-28 01:00:00,10056.0
-2011-03-28 02:00:00,9706.0
-2011-03-28 03:00:00,9501.0
-2011-03-28 04:00:00,9452.0
-2011-03-28 05:00:00,9499.0
-2011-03-28 06:00:00,9810.0
-2011-03-28 07:00:00,10558.0
-2011-03-28 08:00:00,11609.0
-2011-03-28 09:00:00,12104.0
-2011-03-28 10:00:00,12284.0
-2011-03-28 11:00:00,12263.0
-2011-03-28 12:00:00,12297.0
-2011-03-28 13:00:00,12201.0
-2011-03-28 14:00:00,12095.0
-2011-03-28 15:00:00,12035.0
-2011-03-28 16:00:00,11854.0
-2011-03-28 17:00:00,11612.0
-2011-03-28 18:00:00,11499.0
-2011-03-28 19:00:00,11444.0
-2011-03-28 20:00:00,11460.0
-2011-03-28 21:00:00,12202.0
-2011-03-28 22:00:00,12340.0
-2011-03-28 23:00:00,11940.0
-2011-03-29 00:00:00,11190.0
-2011-03-27 01:00:00,10244.0
-2011-03-27 02:00:00,9751.0
-2011-03-27 03:00:00,9484.0
-2011-03-27 04:00:00,9288.0
-2011-03-27 05:00:00,9195.0
-2011-03-27 06:00:00,9274.0
-2011-03-27 07:00:00,9402.0
-2011-03-27 08:00:00,9632.0
-2011-03-27 09:00:00,9561.0
-2011-03-27 10:00:00,9784.0
-2011-03-27 11:00:00,9948.0
-2011-03-27 12:00:00,10049.0
-2011-03-27 13:00:00,10066.0
-2011-03-27 14:00:00,9967.0
-2011-03-27 15:00:00,9895.0
-2011-03-27 16:00:00,9819.0
-2011-03-27 17:00:00,9786.0
-2011-03-27 18:00:00,9797.0
-2011-03-27 19:00:00,9916.0
-2011-03-27 20:00:00,10128.0
-2011-03-27 21:00:00,11042.0
-2011-03-27 22:00:00,11247.0
-2011-03-27 23:00:00,11032.0
-2011-03-28 00:00:00,10561.0
-2011-03-26 01:00:00,10695.0
-2011-03-26 02:00:00,10131.0
-2011-03-26 03:00:00,9841.0
-2011-03-26 04:00:00,9615.0
-2011-03-26 05:00:00,9572.0
-2011-03-26 06:00:00,9661.0
-2011-03-26 07:00:00,9947.0
-2011-03-26 08:00:00,10422.0
-2011-03-26 09:00:00,10657.0
-2011-03-26 10:00:00,11005.0
-2011-03-26 11:00:00,11285.0
-2011-03-26 12:00:00,11302.0
-2011-03-26 13:00:00,11221.0
-2011-03-26 14:00:00,10976.0
-2011-03-26 15:00:00,10759.0
-2011-03-26 16:00:00,10551.0
-2011-03-26 17:00:00,10405.0
-2011-03-26 18:00:00,10352.0
-2011-03-26 19:00:00,10461.0
-2011-03-26 20:00:00,10660.0
-2011-03-26 21:00:00,11394.0
-2011-03-26 22:00:00,11507.0
-2011-03-26 23:00:00,11247.0
-2011-03-27 00:00:00,10778.0
-2011-03-25 01:00:00,10608.0
-2011-03-25 02:00:00,10068.0
-2011-03-25 03:00:00,9801.0
-2011-03-25 04:00:00,9621.0
-2011-03-25 05:00:00,9607.0
-2011-03-25 06:00:00,9831.0
-2011-03-25 07:00:00,10498.0
-2011-03-25 08:00:00,11586.0
-2011-03-25 09:00:00,12127.0
-2011-03-25 10:00:00,12377.0
-2011-03-25 11:00:00,12453.0
-2011-03-25 12:00:00,12505.0
-2011-03-25 13:00:00,12305.0
-2011-03-25 14:00:00,12126.0
-2011-03-25 15:00:00,12039.0
-2011-03-25 16:00:00,11843.0
-2011-03-25 17:00:00,11639.0
-2011-03-25 18:00:00,11509.0
-2011-03-25 19:00:00,11400.0
-2011-03-25 20:00:00,11486.0
-2011-03-25 21:00:00,12158.0
-2011-03-25 22:00:00,12211.0
-2011-03-25 23:00:00,11899.0
-2011-03-26 00:00:00,11276.0
-2011-03-24 01:00:00,10575.0
-2011-03-24 02:00:00,10076.0
-2011-03-24 03:00:00,9788.0
-2011-03-24 04:00:00,9615.0
-2011-03-24 05:00:00,9613.0
-2011-03-24 06:00:00,9841.0
-2011-03-24 07:00:00,10523.0
-2011-03-24 08:00:00,11721.0
-2011-03-24 09:00:00,12234.0
-2011-03-24 10:00:00,12436.0
-2011-03-24 11:00:00,12451.0
-2011-03-24 12:00:00,12508.0
-2011-03-24 13:00:00,12395.0
-2011-03-24 14:00:00,12301.0
-2011-03-24 15:00:00,12189.0
-2011-03-24 16:00:00,12067.0
-2011-03-24 17:00:00,11898.0
-2011-03-24 18:00:00,11758.0
-2011-03-24 19:00:00,11689.0
-2011-03-24 20:00:00,11686.0
-2011-03-24 21:00:00,12381.0
-2011-03-24 22:00:00,12477.0
-2011-03-24 23:00:00,12067.0
-2011-03-25 00:00:00,11331.0
-2011-03-23 01:00:00,10228.0
-2011-03-23 02:00:00,9690.0
-2011-03-23 03:00:00,9351.0
-2011-03-23 04:00:00,9181.0
-2011-03-23 05:00:00,9133.0
-2011-03-23 06:00:00,9365.0
-2011-03-23 07:00:00,10052.0
-2011-03-23 08:00:00,11208.0
-2011-03-23 09:00:00,11879.0
-2011-03-23 10:00:00,12196.0
-2011-03-23 11:00:00,12285.0
-2011-03-23 12:00:00,12337.0
-2011-03-23 13:00:00,12197.0
-2011-03-23 14:00:00,12102.0
-2011-03-23 15:00:00,12047.0
-2011-03-23 16:00:00,12031.0
-2011-03-23 17:00:00,12025.0
-2011-03-23 18:00:00,12077.0
-2011-03-23 19:00:00,12148.0
-2011-03-23 20:00:00,12205.0
-2011-03-23 21:00:00,12646.0
-2011-03-23 22:00:00,12558.0
-2011-03-23 23:00:00,12125.0
-2011-03-24 00:00:00,11353.0
-2011-03-22 01:00:00,9767.0
-2011-03-22 02:00:00,9284.0
-2011-03-22 03:00:00,8986.0
-2011-03-22 04:00:00,8832.0
-2011-03-22 05:00:00,8797.0
-2011-03-22 06:00:00,9027.0
-2011-03-22 07:00:00,9694.0
-2011-03-22 08:00:00,10924.0
-2011-03-22 09:00:00,11789.0
-2011-03-22 10:00:00,12044.0
-2011-03-22 11:00:00,12202.0
-2011-03-22 12:00:00,12298.0
-2011-03-22 13:00:00,12269.0
-2011-03-22 14:00:00,12226.0
-2011-03-22 15:00:00,12291.0
-2011-03-22 16:00:00,12258.0
-2011-03-22 17:00:00,12282.0
-2011-03-22 18:00:00,12284.0
-2011-03-22 19:00:00,12308.0
-2011-03-22 20:00:00,12314.0
-2011-03-22 21:00:00,12593.0
-2011-03-22 22:00:00,12374.0
-2011-03-22 23:00:00,11829.0
-2011-03-23 00:00:00,11042.0
-2011-03-21 01:00:00,8971.0
-2011-03-21 02:00:00,8569.0
-2011-03-21 03:00:00,8303.0
-2011-03-21 04:00:00,8198.0
-2011-03-21 05:00:00,8215.0
-2011-03-21 06:00:00,8460.0
-2011-03-21 07:00:00,9226.0
-2011-03-21 08:00:00,10467.0
-2011-03-21 09:00:00,11198.0
-2011-03-21 10:00:00,11439.0
-2011-03-21 11:00:00,11567.0
-2011-03-21 12:00:00,11612.0
-2011-03-21 13:00:00,11531.0
-2011-03-21 14:00:00,11413.0
-2011-03-21 15:00:00,11389.0
-2011-03-21 16:00:00,11259.0
-2011-03-21 17:00:00,11104.0
-2011-03-21 18:00:00,10986.0
-2011-03-21 19:00:00,10953.0
-2011-03-21 20:00:00,11092.0
-2011-03-21 21:00:00,11757.0
-2011-03-21 22:00:00,11719.0
-2011-03-21 23:00:00,11266.0
-2011-03-22 00:00:00,10492.0
-2011-03-20 01:00:00,9400.0
-2011-03-20 02:00:00,8919.0
-2011-03-20 03:00:00,8573.0
-2011-03-20 04:00:00,8347.0
-2011-03-20 05:00:00,8267.0
-2011-03-20 06:00:00,8224.0
-2011-03-20 07:00:00,8363.0
-2011-03-20 08:00:00,8645.0
-2011-03-20 09:00:00,8807.0
-2011-03-20 10:00:00,9174.0
-2011-03-20 11:00:00,9563.0
-2011-03-20 12:00:00,9864.0
-2011-03-20 13:00:00,10145.0
-2011-03-20 14:00:00,10192.0
-2011-03-20 15:00:00,10066.0
-2011-03-20 16:00:00,9942.0
-2011-03-20 17:00:00,9863.0
-2011-03-20 18:00:00,9734.0
-2011-03-20 19:00:00,9685.0
-2011-03-20 20:00:00,9902.0
-2011-03-20 21:00:00,10559.0
-2011-03-20 22:00:00,10513.0
-2011-03-20 23:00:00,10149.0
-2011-03-21 00:00:00,9580.0
-2011-03-19 01:00:00,9751.0
-2011-03-19 02:00:00,9199.0
-2011-03-19 03:00:00,8905.0
-2011-03-19 04:00:00,8719.0
-2011-03-19 05:00:00,8640.0
-2011-03-19 06:00:00,8732.0
-2011-03-19 07:00:00,8988.0
-2011-03-19 08:00:00,9510.0
-2011-03-19 09:00:00,9715.0
-2011-03-19 10:00:00,10018.0
-2011-03-19 11:00:00,10164.0
-2011-03-19 12:00:00,10247.0
-2011-03-19 13:00:00,10128.0
-2011-03-19 14:00:00,9961.0
-2011-03-19 15:00:00,9754.0
-2011-03-19 16:00:00,9568.0
-2011-03-19 17:00:00,9445.0
-2011-03-19 18:00:00,9411.0
-2011-03-19 19:00:00,9495.0
-2011-03-19 20:00:00,9751.0
-2011-03-19 21:00:00,10500.0
-2011-03-19 22:00:00,10594.0
-2011-03-19 23:00:00,10385.0
-2011-03-20 00:00:00,9927.0
-2011-03-18 01:00:00,9529.0
-2011-03-18 02:00:00,8931.0
-2011-03-18 03:00:00,8585.0
-2011-03-18 04:00:00,8374.0
-2011-03-18 05:00:00,8343.0
-2011-03-18 06:00:00,8563.0
-2011-03-18 07:00:00,9204.0
-2011-03-18 08:00:00,10453.0
-2011-03-18 09:00:00,11043.0
-2011-03-18 10:00:00,11293.0
-2011-03-18 11:00:00,11361.0
-2011-03-18 12:00:00,11479.0
-2011-03-18 13:00:00,11387.0
-2011-03-18 14:00:00,11329.0
-2011-03-18 15:00:00,11284.0
-2011-03-18 16:00:00,11166.0
-2011-03-18 17:00:00,10967.0
-2011-03-18 18:00:00,10827.0
-2011-03-18 19:00:00,10703.0
-2011-03-18 20:00:00,10740.0
-2011-03-18 21:00:00,11349.0
-2011-03-18 22:00:00,11331.0
-2011-03-18 23:00:00,11034.0
-2011-03-19 00:00:00,10433.0
-2011-03-17 01:00:00,9770.0
-2011-03-17 02:00:00,9235.0
-2011-03-17 03:00:00,8912.0
-2011-03-17 04:00:00,8729.0
-2011-03-17 05:00:00,8670.0
-2011-03-17 06:00:00,8865.0
-2011-03-17 07:00:00,9530.0
-2011-03-17 08:00:00,10778.0
-2011-03-17 09:00:00,11420.0
-2011-03-17 10:00:00,11547.0
-2011-03-17 11:00:00,11572.0
-2011-03-17 12:00:00,11687.0
-2011-03-17 13:00:00,11697.0
-2011-03-17 14:00:00,11701.0
-2011-03-17 15:00:00,11744.0
-2011-03-17 16:00:00,11681.0
-2011-03-17 17:00:00,11577.0
-2011-03-17 18:00:00,11527.0
-2011-03-17 19:00:00,11430.0
-2011-03-17 20:00:00,11511.0
-2011-03-17 21:00:00,11879.0
-2011-03-17 22:00:00,11708.0
-2011-03-17 23:00:00,11203.0
-2011-03-18 00:00:00,10334.0
-2011-03-16 01:00:00,10377.0
-2011-03-16 02:00:00,9853.0
-2011-03-16 03:00:00,9534.0
-2011-03-16 04:00:00,9351.0
-2011-03-16 05:00:00,9327.0
-2011-03-16 06:00:00,9576.0
-2011-03-16 07:00:00,10281.0
-2011-03-16 08:00:00,11516.0
-2011-03-16 09:00:00,12053.0
-2011-03-16 10:00:00,12070.0
-2011-03-16 11:00:00,11986.0
-2011-03-16 12:00:00,11916.0
-2011-03-16 13:00:00,11849.0
-2011-03-16 14:00:00,11719.0
-2011-03-16 15:00:00,11684.0
-2011-03-16 16:00:00,11564.0
-2011-03-16 17:00:00,11380.0
-2011-03-16 18:00:00,11228.0
-2011-03-16 19:00:00,11042.0
-2011-03-16 20:00:00,11050.0
-2011-03-16 21:00:00,11707.0
-2011-03-16 22:00:00,11646.0
-2011-03-16 23:00:00,11259.0
-2011-03-17 00:00:00,10547.0
-2011-03-15 01:00:00,10527.0
-2011-03-15 02:00:00,9944.0
-2011-03-15 03:00:00,9644.0
-2011-03-15 04:00:00,9458.0
-2011-03-15 05:00:00,9448.0
-2011-03-15 06:00:00,9651.0
-2011-03-15 07:00:00,10372.0
-2011-03-15 08:00:00,11624.0
-2011-03-15 09:00:00,12340.0
-2011-03-15 10:00:00,12438.0
-2011-03-15 11:00:00,12432.0
-2011-03-15 12:00:00,12478.0
-2011-03-15 13:00:00,12481.0
-2011-03-15 14:00:00,12430.0
-2011-03-15 15:00:00,12462.0
-2011-03-15 16:00:00,12341.0
-2011-03-15 17:00:00,12183.0
-2011-03-15 18:00:00,12139.0
-2011-03-15 19:00:00,12202.0
-2011-03-15 20:00:00,12365.0
-2011-03-15 21:00:00,12706.0
-2011-03-15 22:00:00,12504.0
-2011-03-15 23:00:00,11978.0
-2011-03-16 00:00:00,11115.0
-2011-03-14 01:00:00,9943.0
-2011-03-14 02:00:00,9580.0
-2011-03-14 03:00:00,9349.0
-2011-03-14 04:00:00,9252.0
-2011-03-14 05:00:00,9298.0
-2011-03-14 06:00:00,9582.0
-2011-03-14 07:00:00,10345.0
-2011-03-14 08:00:00,11524.0
-2011-03-14 09:00:00,12226.0
-2011-03-14 10:00:00,12470.0
-2011-03-14 11:00:00,12480.0
-2011-03-14 12:00:00,12400.0
-2011-03-14 13:00:00,12218.0
-2011-03-14 14:00:00,12084.0
-2011-03-14 15:00:00,12000.0
-2011-03-14 16:00:00,11827.0
-2011-03-14 17:00:00,11638.0
-2011-03-14 18:00:00,11545.0
-2011-03-14 19:00:00,11502.0
-2011-03-14 20:00:00,11593.0
-2011-03-14 21:00:00,12458.0
-2011-03-14 22:00:00,12458.0
-2011-03-14 23:00:00,12039.0
-2011-03-15 00:00:00,11298.0
-2011-03-13 01:00:00,10149.0
-2011-03-13 02:00:00,9719.0
-2011-03-13 04:00:00,9477.0
-2011-03-13 05:00:00,9266.0
-2011-03-13 06:00:00,9290.0
-2011-03-13 07:00:00,9332.0
-2011-03-13 08:00:00,9621.0
-2011-03-13 09:00:00,9626.0
-2011-03-13 10:00:00,9831.0
-2011-03-13 11:00:00,10028.0
-2011-03-13 12:00:00,10079.0
-2011-03-13 13:00:00,10063.0
-2011-03-13 14:00:00,10006.0
-2011-03-13 15:00:00,9881.0
-2011-03-13 16:00:00,9842.0
-2011-03-13 17:00:00,9798.0
-2011-03-13 18:00:00,9929.0
-2011-03-13 19:00:00,10165.0
-2011-03-13 20:00:00,10505.0
-2011-03-13 21:00:00,11250.0
-2011-03-13 22:00:00,11262.0
-2011-03-13 23:00:00,11028.0
-2011-03-14 00:00:00,10529.0
-2011-03-12 01:00:00,10256.0
-2011-03-12 02:00:00,9653.0
-2011-03-12 03:00:00,9274.0
-2011-03-12 04:00:00,9098.0
-2011-03-12 05:00:00,9030.0
-2011-03-12 06:00:00,9091.0
-2011-03-12 07:00:00,9396.0
-2011-03-12 08:00:00,9779.0
-2011-03-12 09:00:00,10169.0
-2011-03-12 10:00:00,10653.0
-2011-03-12 11:00:00,11014.0
-2011-03-12 12:00:00,11200.0
-2011-03-12 13:00:00,11204.0
-2011-03-12 14:00:00,11078.0
-2011-03-12 15:00:00,10914.0
-2011-03-12 16:00:00,10757.0
-2011-03-12 17:00:00,10732.0
-2011-03-12 18:00:00,10795.0
-2011-03-12 19:00:00,11154.0
-2011-03-12 20:00:00,11704.0
-2011-03-12 21:00:00,11664.0
-2011-03-12 22:00:00,11477.0
-2011-03-12 23:00:00,11163.0
-2011-03-13 00:00:00,10650.0
-2011-03-11 01:00:00,10811.0
-2011-03-11 02:00:00,10288.0
-2011-03-11 03:00:00,10017.0
-2011-03-11 04:00:00,9844.0
-2011-03-11 05:00:00,9873.0
-2011-03-11 06:00:00,10151.0
-2011-03-11 07:00:00,10838.0
-2011-03-11 08:00:00,11679.0
-2011-03-11 09:00:00,12125.0
-2011-03-11 10:00:00,12206.0
-2011-03-11 11:00:00,12156.0
-2011-03-11 12:00:00,12154.0
-2011-03-11 13:00:00,12004.0
-2011-03-11 14:00:00,11851.0
-2011-03-11 15:00:00,11724.0
-2011-03-11 16:00:00,11523.0
-2011-03-11 17:00:00,11330.0
-2011-03-11 18:00:00,11323.0
-2011-03-11 19:00:00,11653.0
-2011-03-11 20:00:00,12272.0
-2011-03-11 21:00:00,12240.0
-2011-03-11 22:00:00,11964.0
-2011-03-11 23:00:00,11555.0
-2011-03-12 00:00:00,10931.0
-2011-03-10 01:00:00,10482.0
-2011-03-10 02:00:00,10003.0
-2011-03-10 03:00:00,9716.0
-2011-03-10 04:00:00,9588.0
-2011-03-10 05:00:00,9625.0
-2011-03-10 06:00:00,9913.0
-2011-03-10 07:00:00,10646.0
-2011-03-10 08:00:00,11751.0
-2011-03-10 09:00:00,12400.0
-2011-03-10 10:00:00,12683.0
-2011-03-10 11:00:00,12796.0
-2011-03-10 12:00:00,12897.0
-2011-03-10 13:00:00,12865.0
-2011-03-10 14:00:00,12805.0
-2011-03-10 15:00:00,12774.0
-2011-03-10 16:00:00,12678.0
-2011-03-10 17:00:00,12511.0
-2011-03-10 18:00:00,12383.0
-2011-03-10 19:00:00,12497.0
-2011-03-10 20:00:00,13189.0
-2011-03-10 21:00:00,13156.0
-2011-03-10 22:00:00,12839.0
-2011-03-10 23:00:00,12369.0
-2011-03-11 00:00:00,11533.0
-2011-03-09 01:00:00,10325.0
-2011-03-09 02:00:00,9796.0
-2011-03-09 03:00:00,9537.0
-2011-03-09 04:00:00,9420.0
-2011-03-09 05:00:00,9421.0
-2011-03-09 06:00:00,9723.0
-2011-03-09 07:00:00,10440.0
-2011-03-09 08:00:00,11487.0
-2011-03-09 09:00:00,12138.0
-2011-03-09 10:00:00,12321.0
-2011-03-09 11:00:00,12405.0
-2011-03-09 12:00:00,12455.0
-2011-03-09 13:00:00,12346.0
-2011-03-09 14:00:00,12250.0
-2011-03-09 15:00:00,12254.0
-2011-03-09 16:00:00,12217.0
-2011-03-09 17:00:00,12261.0
-2011-03-09 18:00:00,12409.0
-2011-03-09 19:00:00,12824.0
-2011-03-09 20:00:00,13007.0
-2011-03-09 21:00:00,12838.0
-2011-03-09 22:00:00,12542.0
-2011-03-09 23:00:00,12034.0
-2011-03-10 00:00:00,11250.0
-2011-03-08 01:00:00,10596.0
-2011-03-08 02:00:00,10116.0
-2011-03-08 03:00:00,9859.0
-2011-03-08 04:00:00,9691.0
-2011-03-08 05:00:00,9659.0
-2011-03-08 06:00:00,9923.0
-2011-03-08 07:00:00,10662.0
-2011-03-08 08:00:00,11599.0
-2011-03-08 09:00:00,12137.0
-2011-03-08 10:00:00,12247.0
-2011-03-08 11:00:00,12162.0
-2011-03-08 12:00:00,12161.0
-2011-03-08 13:00:00,12083.0
-2011-03-08 14:00:00,12020.0
-2011-03-08 15:00:00,12012.0
-2011-03-08 16:00:00,11943.0
-2011-03-08 17:00:00,11973.0
-2011-03-08 18:00:00,12292.0
-2011-03-08 19:00:00,12707.0
-2011-03-08 20:00:00,13144.0
-2011-03-08 21:00:00,12850.0
-2011-03-08 22:00:00,12529.0
-2011-03-08 23:00:00,11942.0
-2011-03-09 00:00:00,11073.0
-2011-03-07 01:00:00,10241.0
-2011-03-07 02:00:00,9882.0
-2011-03-07 03:00:00,9726.0
-2011-03-07 04:00:00,9626.0
-2011-03-07 05:00:00,9673.0
-2011-03-07 06:00:00,9989.0
-2011-03-07 07:00:00,10742.0
-2011-03-07 08:00:00,11687.0
-2011-03-07 09:00:00,12234.0
-2011-03-07 10:00:00,12547.0
-2011-03-07 11:00:00,12677.0
-2011-03-07 12:00:00,12770.0
-2011-03-07 13:00:00,12652.0
-2011-03-07 14:00:00,12610.0
-2011-03-07 15:00:00,12613.0
-2011-03-07 16:00:00,12553.0
-2011-03-07 17:00:00,12449.0
-2011-03-07 18:00:00,12511.0
-2011-03-07 19:00:00,12836.0
-2011-03-07 20:00:00,13273.0
-2011-03-07 21:00:00,13099.0
-2011-03-07 22:00:00,12800.0
-2011-03-07 23:00:00,12225.0
-2011-03-08 00:00:00,11337.0
-2011-03-06 01:00:00,10482.0
-2011-03-06 02:00:00,10075.0
-2011-03-06 03:00:00,9711.0
-2011-03-06 04:00:00,9564.0
-2011-03-06 05:00:00,9429.0
-2011-03-06 06:00:00,9519.0
-2011-03-06 07:00:00,9645.0
-2011-03-06 08:00:00,9745.0
-2011-03-06 09:00:00,9889.0
-2011-03-06 10:00:00,10247.0
-2011-03-06 11:00:00,10428.0
-2011-03-06 12:00:00,10549.0
-2011-03-06 13:00:00,10551.0
-2011-03-06 14:00:00,10431.0
-2011-03-06 15:00:00,10329.0
-2011-03-06 16:00:00,10204.0
-2011-03-06 17:00:00,10189.0
-2011-03-06 18:00:00,10379.0
-2011-03-06 19:00:00,10902.0
-2011-03-06 20:00:00,11816.0
-2011-03-06 21:00:00,11826.0
-2011-03-06 22:00:00,11681.0
-2011-03-06 23:00:00,11333.0
-2011-03-07 00:00:00,10783.0
-2011-03-05 01:00:00,10480.0
-2011-03-05 02:00:00,10000.0
-2011-03-05 03:00:00,9696.0
-2011-03-05 04:00:00,9506.0
-2011-03-05 05:00:00,9451.0
-2011-03-05 06:00:00,9505.0
-2011-03-05 07:00:00,9839.0
-2011-03-05 08:00:00,10234.0
-2011-03-05 09:00:00,10671.0
-2011-03-05 10:00:00,11082.0
-2011-03-05 11:00:00,11463.0
-2011-03-05 12:00:00,11585.0
-2011-03-05 13:00:00,11578.0
-2011-03-05 14:00:00,11500.0
-2011-03-05 15:00:00,11439.0
-2011-03-05 16:00:00,11320.0
-2011-03-05 17:00:00,11306.0
-2011-03-05 18:00:00,11377.0
-2011-03-05 19:00:00,11745.0
-2011-03-05 20:00:00,12180.0
-2011-03-05 21:00:00,12086.0
-2011-03-05 22:00:00,11854.0
-2011-03-05 23:00:00,11565.0
-2011-03-06 00:00:00,11025.0
-2011-03-04 01:00:00,10416.0
-2011-03-04 02:00:00,9909.0
-2011-03-04 03:00:00,9622.0
-2011-03-04 04:00:00,9418.0
-2011-03-04 05:00:00,9391.0
-2011-03-04 06:00:00,9596.0
-2011-03-04 07:00:00,10226.0
-2011-03-04 08:00:00,11347.0
-2011-03-04 09:00:00,11976.0
-2011-03-04 10:00:00,12190.0
-2011-03-04 11:00:00,12271.0
-2011-03-04 12:00:00,12166.0
-2011-03-04 13:00:00,11981.0
-2011-03-04 14:00:00,11830.0
-2011-03-04 15:00:00,11793.0
-2011-03-04 16:00:00,11765.0
-2011-03-04 17:00:00,11871.0
-2011-03-04 18:00:00,12206.0
-2011-03-04 19:00:00,12527.0
-2011-03-04 20:00:00,12606.0
-2011-03-04 21:00:00,12478.0
-2011-03-04 22:00:00,12300.0
-2011-03-04 23:00:00,11912.0
-2011-03-05 00:00:00,11180.0
-2011-03-03 01:00:00,11021.0
-2011-03-03 02:00:00,10536.0
-2011-03-03 03:00:00,10256.0
-2011-03-03 04:00:00,10098.0
-2011-03-03 05:00:00,10089.0
-2011-03-03 06:00:00,10333.0
-2011-03-03 07:00:00,11043.0
-2011-03-03 08:00:00,12099.0
-2011-03-03 09:00:00,12609.0
-2011-03-03 10:00:00,12742.0
-2011-03-03 11:00:00,12748.0
-2011-03-03 12:00:00,12705.0
-2011-03-03 13:00:00,12598.0
-2011-03-03 14:00:00,12429.0
-2011-03-03 15:00:00,12308.0
-2011-03-03 16:00:00,12170.0
-2011-03-03 17:00:00,12118.0
-2011-03-03 18:00:00,12231.0
-2011-03-03 19:00:00,12592.0
-2011-03-03 20:00:00,13092.0
-2011-03-03 21:00:00,12919.0
-2011-03-03 22:00:00,12565.0
-2011-03-03 23:00:00,12033.0
-2011-03-04 00:00:00,11166.0
-2011-03-02 01:00:00,10505.0
-2011-03-02 02:00:00,10043.0
-2011-03-02 03:00:00,9790.0
-2011-03-02 04:00:00,9649.0
-2011-03-02 05:00:00,9672.0
-2011-03-02 06:00:00,9965.0
-2011-03-02 07:00:00,10764.0
-2011-03-02 08:00:00,11779.0
-2011-03-02 09:00:00,12269.0
-2011-03-02 10:00:00,12412.0
-2011-03-02 11:00:00,12475.0
-2011-03-02 12:00:00,12527.0
-2011-03-02 13:00:00,12437.0
-2011-03-02 14:00:00,12362.0
-2011-03-02 15:00:00,12306.0
-2011-03-02 16:00:00,12166.0
-2011-03-02 17:00:00,12118.0
-2011-03-02 18:00:00,12224.0
-2011-03-02 19:00:00,12694.0
-2011-03-02 20:00:00,13402.0
-2011-03-02 21:00:00,13350.0
-2011-03-02 22:00:00,13090.0
-2011-03-02 23:00:00,12595.0
-2011-03-03 00:00:00,11750.0
-2011-03-01 01:00:00,10795.0
-2011-03-01 02:00:00,10351.0
-2011-03-01 03:00:00,10131.0
-2011-03-01 04:00:00,10005.0
-2011-03-01 05:00:00,10026.0
-2011-03-01 06:00:00,10314.0
-2011-03-01 07:00:00,11036.0
-2011-03-01 08:00:00,12041.0
-2011-03-01 09:00:00,12508.0
-2011-03-01 10:00:00,12621.0
-2011-03-01 11:00:00,12618.0
-2011-03-01 12:00:00,12581.0
-2011-03-01 13:00:00,12462.0
-2011-03-01 14:00:00,12307.0
-2011-03-01 15:00:00,12229.0
-2011-03-01 16:00:00,12086.0
-2011-03-01 17:00:00,12058.0
-2011-03-01 18:00:00,12128.0
-2011-03-01 19:00:00,12409.0
-2011-03-01 20:00:00,12987.0
-2011-03-01 21:00:00,12871.0
-2011-03-01 22:00:00,12587.0
-2011-03-01 23:00:00,12074.0
-2011-03-02 00:00:00,11278.0
-2011-02-28 01:00:00,10288.0
-2011-02-28 02:00:00,9917.0
-2011-02-28 03:00:00,9707.0
-2011-02-28 04:00:00,9652.0
-2011-02-28 05:00:00,9694.0
-2011-02-28 06:00:00,9998.0
-2011-02-28 07:00:00,10809.0
-2011-02-28 08:00:00,11976.0
-2011-02-28 09:00:00,12620.0
-2011-02-28 10:00:00,12764.0
-2011-02-28 11:00:00,12752.0
-2011-02-28 12:00:00,12769.0
-2011-02-28 13:00:00,12635.0
-2011-02-28 14:00:00,12479.0
-2011-02-28 15:00:00,12373.0
-2011-02-28 16:00:00,12198.0
-2011-02-28 17:00:00,12059.0
-2011-02-28 18:00:00,12126.0
-2011-02-28 19:00:00,12583.0
-2011-02-28 20:00:00,13257.0
-2011-02-28 21:00:00,13169.0
-2011-02-28 22:00:00,12900.0
-2011-02-28 23:00:00,12400.0
-2011-03-01 00:00:00,11527.0
-2011-02-27 01:00:00,10356.0
-2011-02-27 02:00:00,9890.0
-2011-02-27 03:00:00,9518.0
-2011-02-27 04:00:00,9372.0
-2011-02-27 05:00:00,9313.0
-2011-02-27 06:00:00,9371.0
-2011-02-27 07:00:00,9525.0
-2011-02-27 08:00:00,9664.0
-2011-02-27 09:00:00,9681.0
-2011-02-27 10:00:00,9917.0
-2011-02-27 11:00:00,9984.0
-2011-02-27 12:00:00,10072.0
-2011-02-27 13:00:00,10149.0
-2011-02-27 14:00:00,10307.0
-2011-02-27 15:00:00,10367.0
-2011-02-27 16:00:00,10516.0
-2011-02-27 17:00:00,10624.0
-2011-02-27 18:00:00,11018.0
-2011-02-27 19:00:00,11594.0
-2011-02-27 20:00:00,11941.0
-2011-02-27 21:00:00,11836.0
-2011-02-27 22:00:00,11679.0
-2011-02-27 23:00:00,11366.0
-2011-02-28 00:00:00,10878.0
-2011-02-26 01:00:00,10806.0
-2011-02-26 02:00:00,10280.0
-2011-02-26 03:00:00,9972.0
-2011-02-26 04:00:00,9785.0
-2011-02-26 05:00:00,9739.0
-2011-02-26 06:00:00,9779.0
-2011-02-26 07:00:00,10096.0
-2011-02-26 08:00:00,10466.0
-2011-02-26 09:00:00,10751.0
-2011-02-26 10:00:00,11216.0
-2011-02-26 11:00:00,11411.0
-2011-02-26 12:00:00,11588.0
-2011-02-26 13:00:00,11574.0
-2011-02-26 14:00:00,11458.0
-2011-02-26 15:00:00,11428.0
-2011-02-26 16:00:00,11267.0
-2011-02-26 17:00:00,11314.0
-2011-02-26 18:00:00,11456.0
-2011-02-26 19:00:00,11925.0
-2011-02-26 20:00:00,12181.0
-2011-02-26 21:00:00,12039.0
-2011-02-26 22:00:00,11845.0
-2011-02-26 23:00:00,11478.0
-2011-02-27 00:00:00,10967.0
-2011-02-25 01:00:00,10975.0
-2011-02-25 02:00:00,10444.0
-2011-02-25 03:00:00,10195.0
-2011-02-25 04:00:00,10064.0
-2011-02-25 05:00:00,10048.0
-2011-02-25 06:00:00,10286.0
-2011-02-25 07:00:00,10965.0
-2011-02-25 08:00:00,11942.0
-2011-02-25 09:00:00,12381.0
-2011-02-25 10:00:00,12623.0
-2011-02-25 11:00:00,12673.0
-2011-02-25 12:00:00,12689.0
-2011-02-25 13:00:00,12518.0
-2011-02-25 14:00:00,12428.0
-2011-02-25 15:00:00,12336.0
-2011-02-25 16:00:00,12122.0
-2011-02-25 17:00:00,11994.0
-2011-02-25 18:00:00,12124.0
-2011-02-25 19:00:00,12655.0
-2011-02-25 20:00:00,12977.0
-2011-02-25 21:00:00,12770.0
-2011-02-25 22:00:00,12495.0
-2011-02-25 23:00:00,12048.0
-2011-02-26 00:00:00,11438.0
-2011-02-24 01:00:00,10890.0
-2011-02-24 02:00:00,10336.0
-2011-02-24 03:00:00,9989.0
-2011-02-24 04:00:00,9817.0
-2011-02-24 05:00:00,9793.0
-2011-02-24 06:00:00,10042.0
-2011-02-24 07:00:00,10771.0
-2011-02-24 08:00:00,11901.0
-2011-02-24 09:00:00,12468.0
-2011-02-24 10:00:00,12683.0
-2011-02-24 11:00:00,12683.0
-2011-02-24 12:00:00,12651.0
-2011-02-24 13:00:00,12566.0
-2011-02-24 14:00:00,12544.0
-2011-02-24 15:00:00,12576.0
-2011-02-24 16:00:00,12525.0
-2011-02-24 17:00:00,12603.0
-2011-02-24 18:00:00,12851.0
-2011-02-24 19:00:00,13392.0
-2011-02-24 20:00:00,13584.0
-2011-02-24 21:00:00,13386.0
-2011-02-24 22:00:00,13015.0
-2011-02-24 23:00:00,12538.0
-2011-02-25 00:00:00,11757.0
-2011-02-23 01:00:00,11079.0
-2011-02-23 02:00:00,10578.0
-2011-02-23 03:00:00,10264.0
-2011-02-23 04:00:00,10095.0
-2011-02-23 05:00:00,10112.0
-2011-02-23 06:00:00,10394.0
-2011-02-23 07:00:00,11156.0
-2011-02-23 08:00:00,12316.0
-2011-02-23 09:00:00,12882.0
-2011-02-23 10:00:00,13108.0
-2011-02-23 11:00:00,13194.0
-2011-02-23 12:00:00,13226.0
-2011-02-23 13:00:00,13142.0
-2011-02-23 14:00:00,13020.0
-2011-02-23 15:00:00,12917.0
-2011-02-23 16:00:00,12754.0
-2011-02-23 17:00:00,12730.0
-2011-02-23 18:00:00,12925.0
-2011-02-23 19:00:00,13327.0
-2011-02-23 20:00:00,13616.0
-2011-02-23 21:00:00,13432.0
-2011-02-23 22:00:00,13122.0
-2011-02-23 23:00:00,12578.0
-2011-02-24 00:00:00,11699.0
-2011-02-22 01:00:00,11016.0
-2011-02-22 02:00:00,10550.0
-2011-02-22 03:00:00,10234.0
-2011-02-22 04:00:00,10073.0
-2011-02-22 05:00:00,10069.0
-2011-02-22 06:00:00,10349.0
-2011-02-22 07:00:00,11137.0
-2011-02-22 08:00:00,12262.0
-2011-02-22 09:00:00,12768.0
-2011-02-22 10:00:00,12965.0
-2011-02-22 11:00:00,13040.0
-2011-02-22 12:00:00,13126.0
-2011-02-22 13:00:00,13102.0
-2011-02-22 14:00:00,13082.0
-2011-02-22 15:00:00,13066.0
-2011-02-22 16:00:00,12950.0
-2011-02-22 17:00:00,12927.0
-2011-02-22 18:00:00,13020.0
-2011-02-22 19:00:00,13538.0
-2011-02-22 20:00:00,13823.0
-2011-02-22 21:00:00,13625.0
-2011-02-22 22:00:00,13283.0
-2011-02-22 23:00:00,12719.0
-2011-02-23 00:00:00,11855.0
-2011-02-21 01:00:00,10270.0
-2011-02-21 02:00:00,9838.0
-2011-02-21 03:00:00,9598.0
-2011-02-21 04:00:00,9514.0
-2011-02-21 05:00:00,9545.0
-2011-02-21 06:00:00,9809.0
-2011-02-21 07:00:00,10483.0
-2011-02-21 08:00:00,11411.0
-2011-02-21 09:00:00,12031.0
-2011-02-21 10:00:00,12446.0
-2011-02-21 11:00:00,12777.0
-2011-02-21 12:00:00,13026.0
-2011-02-21 13:00:00,13101.0
-2011-02-21 14:00:00,13086.0
-2011-02-21 15:00:00,13083.0
-2011-02-21 16:00:00,12988.0
-2011-02-21 17:00:00,12907.0
-2011-02-21 18:00:00,13085.0
-2011-02-21 19:00:00,13568.0
-2011-02-21 20:00:00,13721.0
-2011-02-21 21:00:00,13444.0
-2011-02-21 22:00:00,13137.0
-2011-02-21 23:00:00,12577.0
-2011-02-22 00:00:00,11764.0
-2011-02-20 01:00:00,10311.0
-2011-02-20 02:00:00,9854.0
-2011-02-20 03:00:00,9622.0
-2011-02-20 04:00:00,9338.0
-2011-02-20 05:00:00,9306.0
-2011-02-20 06:00:00,9277.0
-2011-02-20 07:00:00,9427.0
-2011-02-20 08:00:00,9682.0
-2011-02-20 09:00:00,9872.0
-2011-02-20 10:00:00,10207.0
-2011-02-20 11:00:00,10676.0
-2011-02-20 12:00:00,10794.0
-2011-02-20 13:00:00,10988.0
-2011-02-20 14:00:00,11006.0
-2011-02-20 15:00:00,11008.0
-2011-02-20 16:00:00,10978.0
-2011-02-20 17:00:00,11047.0
-2011-02-20 18:00:00,11370.0
-2011-02-20 19:00:00,11884.0
-2011-02-20 20:00:00,12027.0
-2011-02-20 21:00:00,11886.0
-2011-02-20 22:00:00,11679.0
-2011-02-20 23:00:00,11310.0
-2011-02-21 00:00:00,10815.0
-2011-02-19 01:00:00,10439.0
-2011-02-19 02:00:00,9912.0
-2011-02-19 03:00:00,9646.0
-2011-02-19 04:00:00,9447.0
-2011-02-19 05:00:00,9392.0
-2011-02-19 06:00:00,9506.0
-2011-02-19 07:00:00,9836.0
-2011-02-19 08:00:00,10269.0
-2011-02-19 09:00:00,10461.0
-2011-02-19 10:00:00,10772.0
-2011-02-19 11:00:00,10944.0
-2011-02-19 12:00:00,10990.0
-2011-02-19 13:00:00,10914.0
-2011-02-19 14:00:00,10760.0
-2011-02-19 15:00:00,10533.0
-2011-02-19 16:00:00,10317.0
-2011-02-19 17:00:00,10290.0
-2011-02-19 18:00:00,10442.0
-2011-02-19 19:00:00,11119.0
-2011-02-19 20:00:00,11738.0
-2011-02-19 21:00:00,11743.0
-2011-02-19 22:00:00,11595.0
-2011-02-19 23:00:00,11341.0
-2011-02-20 00:00:00,10810.0
-2011-02-18 01:00:00,9948.0
-2011-02-18 02:00:00,9394.0
-2011-02-18 03:00:00,9186.0
-2011-02-18 04:00:00,9024.0
-2011-02-18 05:00:00,9068.0
-2011-02-18 06:00:00,9361.0
-2011-02-18 07:00:00,10083.0
-2011-02-18 08:00:00,11179.0
-2011-02-18 09:00:00,11715.0
-2011-02-18 10:00:00,11836.0
-2011-02-18 11:00:00,11918.0
-2011-02-18 12:00:00,11963.0
-2011-02-18 13:00:00,11900.0
-2011-02-18 14:00:00,11803.0
-2011-02-18 15:00:00,11729.0
-2011-02-18 16:00:00,11549.0
-2011-02-18 17:00:00,11411.0
-2011-02-18 18:00:00,11480.0
-2011-02-18 19:00:00,11948.0
-2011-02-18 20:00:00,12402.0
-2011-02-18 21:00:00,12224.0
-2011-02-18 22:00:00,11979.0
-2011-02-18 23:00:00,11673.0
-2011-02-19 00:00:00,11026.0
-2011-02-17 01:00:00,9997.0
-2011-02-17 02:00:00,9511.0
-2011-02-17 03:00:00,9195.0
-2011-02-17 04:00:00,9008.0
-2011-02-17 05:00:00,8935.0
-2011-02-17 06:00:00,9178.0
-2011-02-17 07:00:00,9904.0
-2011-02-17 08:00:00,11017.0
-2011-02-17 09:00:00,11690.0
-2011-02-17 10:00:00,11886.0
-2011-02-17 11:00:00,12054.0
-2011-02-17 12:00:00,12139.0
-2011-02-17 13:00:00,12095.0
-2011-02-17 14:00:00,12058.0
-2011-02-17 15:00:00,12068.0
-2011-02-17 16:00:00,11983.0
-2011-02-17 17:00:00,11947.0
-2011-02-17 18:00:00,12042.0
-2011-02-17 19:00:00,12353.0
-2011-02-17 20:00:00,12627.0
-2011-02-17 21:00:00,12427.0
-2011-02-17 22:00:00,12067.0
-2011-02-17 23:00:00,11560.0
-2011-02-18 00:00:00,10722.0
-2011-02-16 01:00:00,10678.0
-2011-02-16 02:00:00,10103.0
-2011-02-16 03:00:00,9777.0
-2011-02-16 04:00:00,9614.0
-2011-02-16 05:00:00,9568.0
-2011-02-16 06:00:00,9811.0
-2011-02-16 07:00:00,10513.0
-2011-02-16 08:00:00,11607.0
-2011-02-16 09:00:00,12080.0
-2011-02-16 10:00:00,12232.0
-2011-02-16 11:00:00,12183.0
-2011-02-16 12:00:00,12120.0
-2011-02-16 13:00:00,12025.0
-2011-02-16 14:00:00,11858.0
-2011-02-16 15:00:00,11810.0
-2011-02-16 16:00:00,11724.0
-2011-02-16 17:00:00,11650.0
-2011-02-16 18:00:00,11629.0
-2011-02-16 19:00:00,12300.0
-2011-02-16 20:00:00,12697.0
-2011-02-16 21:00:00,12535.0
-2011-02-16 22:00:00,12185.0
-2011-02-16 23:00:00,11633.0
-2011-02-17 00:00:00,10814.0
-2011-02-15 01:00:00,10697.0
-2011-02-15 02:00:00,10233.0
-2011-02-15 03:00:00,9959.0
-2011-02-15 04:00:00,9814.0
-2011-02-15 05:00:00,9844.0
-2011-02-15 06:00:00,10132.0
-2011-02-15 07:00:00,10945.0
-2011-02-15 08:00:00,12091.0
-2011-02-15 09:00:00,12596.0
-2011-02-15 10:00:00,12666.0
-2011-02-15 11:00:00,12610.0
-2011-02-15 12:00:00,12697.0
-2011-02-15 13:00:00,12684.0
-2011-02-15 14:00:00,12608.0
-2011-02-15 15:00:00,12579.0
-2011-02-15 16:00:00,12505.0
-2011-02-15 17:00:00,12442.0
-2011-02-15 18:00:00,12617.0
-2011-02-15 19:00:00,13184.0
-2011-02-15 20:00:00,13472.0
-2011-02-15 21:00:00,13251.0
-2011-02-15 22:00:00,12919.0
-2011-02-15 23:00:00,12337.0
-2011-02-16 00:00:00,11480.0
-2011-02-14 01:00:00,9986.0
-2011-02-14 02:00:00,9583.0
-2011-02-14 03:00:00,9442.0
-2011-02-14 04:00:00,9387.0
-2011-02-14 05:00:00,9428.0
-2011-02-14 06:00:00,9704.0
-2011-02-14 07:00:00,10469.0
-2011-02-14 08:00:00,11676.0
-2011-02-14 09:00:00,12253.0
-2011-02-14 10:00:00,12492.0
-2011-02-14 11:00:00,12589.0
-2011-02-14 12:00:00,12503.0
-2011-02-14 13:00:00,12409.0
-2011-02-14 14:00:00,12295.0
-2011-02-14 15:00:00,12149.0
-2011-02-14 16:00:00,11980.0
-2011-02-14 17:00:00,11846.0
-2011-02-14 18:00:00,11941.0
-2011-02-14 19:00:00,12581.0
-2011-02-14 20:00:00,13013.0
-2011-02-14 21:00:00,12874.0
-2011-02-14 22:00:00,12629.0
-2011-02-14 23:00:00,12180.0
-2011-02-15 00:00:00,11431.0
-2011-02-13 01:00:00,10424.0
-2011-02-13 02:00:00,9944.0
-2011-02-13 03:00:00,9685.0
-2011-02-13 04:00:00,9497.0
-2011-02-13 05:00:00,9396.0
-2011-02-13 06:00:00,9490.0
-2011-02-13 07:00:00,9618.0
-2011-02-13 08:00:00,9878.0
-2011-02-13 09:00:00,9852.0
-2011-02-13 10:00:00,10175.0
-2011-02-13 11:00:00,10283.0
-2011-02-13 12:00:00,10300.0
-2011-02-13 13:00:00,10181.0
-2011-02-13 14:00:00,10128.0
-2011-02-13 15:00:00,9988.0
-2011-02-13 16:00:00,9912.0
-2011-02-13 17:00:00,9896.0
-2011-02-13 18:00:00,10164.0
-2011-02-13 19:00:00,11022.0
-2011-02-13 20:00:00,11726.0
-2011-02-13 21:00:00,11670.0
-2011-02-13 22:00:00,11499.0
-2011-02-13 23:00:00,11138.0
-2011-02-14 00:00:00,10560.0
-2011-02-12 01:00:00,11532.0
-2011-02-12 02:00:00,10968.0
-2011-02-12 03:00:00,10562.0
-2011-02-12 04:00:00,10299.0
-2011-02-12 05:00:00,10260.0
-2011-02-12 06:00:00,10302.0
-2011-02-12 07:00:00,10638.0
-2011-02-12 08:00:00,11059.0
-2011-02-12 09:00:00,11229.0
-2011-02-12 10:00:00,11430.0
-2011-02-12 11:00:00,11568.0
-2011-02-12 12:00:00,11533.0
-2011-02-12 13:00:00,11429.0
-2011-02-12 14:00:00,11213.0
-2011-02-12 15:00:00,11074.0
-2011-02-12 16:00:00,10984.0
-2011-02-12 17:00:00,11032.0
-2011-02-12 18:00:00,11221.0
-2011-02-12 19:00:00,11975.0
-2011-02-12 20:00:00,12212.0
-2011-02-12 21:00:00,12119.0
-2011-02-12 22:00:00,11923.0
-2011-02-12 23:00:00,11551.0
-2011-02-13 00:00:00,10995.0
-2011-02-11 01:00:00,12311.0
-2011-02-11 02:00:00,11892.0
-2011-02-11 03:00:00,11588.0
-2011-02-11 04:00:00,11482.0
-2011-02-11 05:00:00,11446.0
-2011-02-11 06:00:00,11669.0
-2011-02-11 07:00:00,12287.0
-2011-02-11 08:00:00,13296.0
-2011-02-11 09:00:00,13682.0
-2011-02-11 10:00:00,13832.0
-2011-02-11 11:00:00,13944.0
-2011-02-11 12:00:00,13971.0
-2011-02-11 13:00:00,13810.0
-2011-02-11 14:00:00,13674.0
-2011-02-11 15:00:00,13688.0
-2011-02-11 16:00:00,13620.0
-2011-02-11 17:00:00,13433.0
-2011-02-11 18:00:00,13524.0
-2011-02-11 19:00:00,14076.0
-2011-02-11 20:00:00,14173.0
-2011-02-11 21:00:00,13887.0
-2011-02-11 22:00:00,13513.0
-2011-02-11 23:00:00,13069.0
-2011-02-12 00:00:00,12302.0
-2011-02-10 01:00:00,12685.0
-2011-02-10 02:00:00,12249.0
-2011-02-10 03:00:00,12031.0
-2011-02-10 04:00:00,11918.0
-2011-02-10 05:00:00,11957.0
-2011-02-10 06:00:00,12206.0
-2011-02-10 07:00:00,12838.0
-2011-02-10 08:00:00,13973.0
-2011-02-10 09:00:00,14371.0
-2011-02-10 10:00:00,14402.0
-2011-02-10 11:00:00,14328.0
-2011-02-10 12:00:00,14259.0
-2011-02-10 13:00:00,14140.0
-2011-02-10 14:00:00,13991.0
-2011-02-10 15:00:00,13899.0
-2011-02-10 16:00:00,13758.0
-2011-02-10 17:00:00,13662.0
-2011-02-10 18:00:00,13821.0
-2011-02-10 19:00:00,14582.0
-2011-02-10 20:00:00,14965.0
-2011-02-10 21:00:00,14831.0
-2011-02-10 22:00:00,14469.0
-2011-02-10 23:00:00,13965.0
-2011-02-11 00:00:00,13120.0
-2011-02-09 01:00:00,12435.0
-2011-02-09 02:00:00,11947.0
-2011-02-09 03:00:00,11720.0
-2011-02-09 04:00:00,11593.0
-2011-02-09 05:00:00,11615.0
-2011-02-09 06:00:00,11848.0
-2011-02-09 07:00:00,12548.0
-2011-02-09 08:00:00,13669.0
-2011-02-09 09:00:00,14098.0
-2011-02-09 10:00:00,14219.0
-2011-02-09 11:00:00,14226.0
-2011-02-09 12:00:00,14162.0
-2011-02-09 13:00:00,14025.0
-2011-02-09 14:00:00,13860.0
-2011-02-09 15:00:00,13807.0
-2011-02-09 16:00:00,13681.0
-2011-02-09 17:00:00,13677.0
-2011-02-09 18:00:00,13873.0
-2011-02-09 19:00:00,14705.0
-2011-02-09 20:00:00,15052.0
-2011-02-09 21:00:00,14978.0
-2011-02-09 22:00:00,14728.0
-2011-02-09 23:00:00,14230.0
-2011-02-10 00:00:00,13420.0
-2011-02-08 01:00:00,11387.0
-2011-02-08 02:00:00,10950.0
-2011-02-08 03:00:00,10715.0
-2011-02-08 04:00:00,10628.0
-2011-02-08 05:00:00,10698.0
-2011-02-08 06:00:00,11005.0
-2011-02-08 07:00:00,11794.0
-2011-02-08 08:00:00,12997.0
-2011-02-08 09:00:00,13470.0
-2011-02-08 10:00:00,13618.0
-2011-02-08 11:00:00,13580.0
-2011-02-08 12:00:00,13547.0
-2011-02-08 13:00:00,13445.0
-2011-02-08 14:00:00,13335.0
-2011-02-08 15:00:00,13294.0
-2011-02-08 16:00:00,13191.0
-2011-02-08 17:00:00,13203.0
-2011-02-08 18:00:00,13503.0
-2011-02-08 19:00:00,14294.0
-2011-02-08 20:00:00,14795.0
-2011-02-08 21:00:00,14726.0
-2011-02-08 22:00:00,14527.0
-2011-02-08 23:00:00,13998.0
-2011-02-09 00:00:00,13195.0
-2011-02-07 01:00:00,10486.0
-2011-02-07 02:00:00,10087.0
-2011-02-07 03:00:00,9919.0
-2011-02-07 04:00:00,9782.0
-2011-02-07 05:00:00,9841.0
-2011-02-07 06:00:00,10185.0
-2011-02-07 07:00:00,11003.0
-2011-02-07 08:00:00,12238.0
-2011-02-07 09:00:00,12714.0
-2011-02-07 10:00:00,12851.0
-2011-02-07 11:00:00,12834.0
-2011-02-07 12:00:00,12803.0
-2011-02-07 13:00:00,12717.0
-2011-02-07 14:00:00,12667.0
-2011-02-07 15:00:00,12788.0
-2011-02-07 16:00:00,12809.0
-2011-02-07 17:00:00,12875.0
-2011-02-07 18:00:00,13095.0
-2011-02-07 19:00:00,13756.0
-2011-02-07 20:00:00,13894.0
-2011-02-07 21:00:00,13701.0
-2011-02-07 22:00:00,13445.0
-2011-02-07 23:00:00,12913.0
-2011-02-08 00:00:00,12116.0
-2011-02-06 01:00:00,10900.0
-2011-02-06 02:00:00,10404.0
-2011-02-06 03:00:00,10150.0
-2011-02-06 04:00:00,9912.0
-2011-02-06 05:00:00,9827.0
-2011-02-06 06:00:00,9818.0
-2011-02-06 07:00:00,9988.0
-2011-02-06 08:00:00,10253.0
-2011-02-06 09:00:00,10348.0
-2011-02-06 10:00:00,10571.0
-2011-02-06 11:00:00,10854.0
-2011-02-06 12:00:00,10988.0
-2011-02-06 13:00:00,11075.0
-2011-02-06 14:00:00,11088.0
-2011-02-06 15:00:00,11099.0
-2011-02-06 16:00:00,11144.0
-2011-02-06 17:00:00,11193.0
-2011-02-06 18:00:00,11487.0
-2011-02-06 19:00:00,12069.0
-2011-02-06 20:00:00,12143.0
-2011-02-06 21:00:00,11957.0
-2011-02-06 22:00:00,11795.0
-2011-02-06 23:00:00,11564.0
-2011-02-07 00:00:00,11071.0
-2011-02-05 01:00:00,11902.0
-2011-02-05 02:00:00,11404.0
-2011-02-05 03:00:00,11067.0
-2011-02-05 04:00:00,10888.0
-2011-02-05 05:00:00,10778.0
-2011-02-05 06:00:00,10879.0
-2011-02-05 07:00:00,11138.0
-2011-02-05 08:00:00,11600.0
-2011-02-05 09:00:00,11731.0
-2011-02-05 10:00:00,12002.0
-2011-02-05 11:00:00,12101.0
-2011-02-05 12:00:00,12126.0
-2011-02-05 13:00:00,11979.0
-2011-02-05 14:00:00,11747.0
-2011-02-05 15:00:00,11517.0
-2011-02-05 16:00:00,11296.0
-2011-02-05 17:00:00,11227.0
-2011-02-05 18:00:00,11512.0
-2011-02-05 19:00:00,12335.0
-2011-02-05 20:00:00,12675.0
-2011-02-05 21:00:00,12555.0
-2011-02-05 22:00:00,12337.0
-2011-02-05 23:00:00,12027.0
-2011-02-06 00:00:00,11457.0
-2011-02-04 01:00:00,12319.0
-2011-02-04 02:00:00,11865.0
-2011-02-04 03:00:00,11604.0
-2011-02-04 04:00:00,11428.0
-2011-02-04 05:00:00,11467.0
-2011-02-04 06:00:00,11642.0
-2011-02-04 07:00:00,12302.0
-2011-02-04 08:00:00,13349.0
-2011-02-04 09:00:00,13767.0
-2011-02-04 10:00:00,13739.0
-2011-02-04 11:00:00,13744.0
-2011-02-04 12:00:00,13671.0
-2011-02-04 13:00:00,13528.0
-2011-02-04 14:00:00,13364.0
-2011-02-04 15:00:00,13216.0
-2011-02-04 16:00:00,13014.0
-2011-02-04 17:00:00,12875.0
-2011-02-04 18:00:00,13047.0
-2011-02-04 19:00:00,13838.0
-2011-02-04 20:00:00,14093.0
-2011-02-04 21:00:00,13924.0
-2011-02-04 22:00:00,13619.0
-2011-02-04 23:00:00,13278.0
-2011-02-05 00:00:00,12631.0
-2011-02-03 01:00:00,11068.0
-2011-02-03 02:00:00,10773.0
-2011-02-03 03:00:00,10667.0
-2011-02-03 04:00:00,10618.0
-2011-02-03 05:00:00,10716.0
-2011-02-03 06:00:00,11028.0
-2011-02-03 07:00:00,11709.0
-2011-02-03 08:00:00,12649.0
-2011-02-03 09:00:00,13098.0
-2011-02-03 10:00:00,13350.0
-2011-02-03 11:00:00,13510.0
-2011-02-03 12:00:00,13592.0
-2011-02-03 13:00:00,13559.0
-2011-02-03 14:00:00,13518.0
-2011-02-03 15:00:00,13458.0
-2011-02-03 16:00:00,13356.0
-2011-02-03 17:00:00,13212.0
-2011-02-03 18:00:00,13445.0
-2011-02-03 19:00:00,14378.0
-2011-02-03 20:00:00,14721.0
-2011-02-03 21:00:00,14654.0
-2011-02-03 22:00:00,14382.0
-2011-02-03 23:00:00,13889.0
-2011-02-04 00:00:00,13072.0
-2011-02-02 01:00:00,11056.0
-2011-02-02 02:00:00,10554.0
-2011-02-02 03:00:00,10295.0
-2011-02-02 04:00:00,10153.0
-2011-02-02 05:00:00,10116.0
-2011-02-02 06:00:00,10207.0
-2011-02-02 07:00:00,10475.0
-2011-02-02 08:00:00,11086.0
-2011-02-02 09:00:00,11147.0
-2011-02-02 10:00:00,11352.0
-2011-02-02 11:00:00,11439.0
-2011-02-02 12:00:00,11394.0
-2011-02-02 13:00:00,11318.0
-2011-02-02 14:00:00,11176.0
-2011-02-02 15:00:00,11045.0
-2011-02-02 16:00:00,10999.0
-2011-02-02 17:00:00,11179.0
-2011-02-02 18:00:00,11605.0
-2011-02-02 19:00:00,12666.0
-2011-02-02 20:00:00,12960.0
-2011-02-02 21:00:00,12810.0
-2011-02-02 22:00:00,12552.0
-2011-02-02 23:00:00,12182.0
-2011-02-03 00:00:00,11580.0
-2011-02-01 01:00:00,11665.0
-2011-02-01 02:00:00,11152.0
-2011-02-01 03:00:00,10883.0
-2011-02-01 04:00:00,10762.0
-2011-02-01 05:00:00,10776.0
-2011-02-01 06:00:00,11058.0
-2011-02-01 07:00:00,11786.0
-2011-02-01 08:00:00,12961.0
-2011-02-01 09:00:00,13502.0
-2011-02-01 10:00:00,13695.0
-2011-02-01 11:00:00,13811.0
-2011-02-01 12:00:00,13937.0
-2011-02-01 13:00:00,13944.0
-2011-02-01 14:00:00,13892.0
-2011-02-01 15:00:00,13847.0
-2011-02-01 16:00:00,13629.0
-2011-02-01 17:00:00,13314.0
-2011-02-01 18:00:00,13517.0
-2011-02-01 19:00:00,14175.0
-2011-02-01 20:00:00,13967.0
-2011-02-01 21:00:00,13467.0
-2011-02-01 22:00:00,12972.0
-2011-02-01 23:00:00,12462.0
-2011-02-02 00:00:00,11754.0
-2011-01-31 01:00:00,10565.0
-2011-01-31 02:00:00,10175.0
-2011-01-31 03:00:00,10056.0
-2011-01-31 04:00:00,9992.0
-2011-01-31 05:00:00,10089.0
-2011-01-31 06:00:00,10470.0
-2011-01-31 07:00:00,11255.0
-2011-01-31 08:00:00,12599.0
-2011-01-31 09:00:00,13226.0
-2011-01-31 10:00:00,13447.0
-2011-01-31 11:00:00,13488.0
-2011-01-31 12:00:00,13521.0
-2011-01-31 13:00:00,13316.0
-2011-01-31 14:00:00,13210.0
-2011-01-31 15:00:00,13273.0
-2011-01-31 16:00:00,13249.0
-2011-01-31 17:00:00,13324.0
-2011-01-31 18:00:00,13631.0
-2011-01-31 19:00:00,14332.0
-2011-01-31 20:00:00,14390.0
-2011-01-31 21:00:00,14165.0
-2011-01-31 22:00:00,13907.0
-2011-01-31 23:00:00,13332.0
-2011-02-01 00:00:00,12453.0
-2011-01-30 01:00:00,10436.0
-2011-01-30 02:00:00,9949.0
-2011-01-30 03:00:00,9611.0
-2011-01-30 04:00:00,9433.0
-2011-01-30 05:00:00,9361.0
-2011-01-30 06:00:00,9339.0
-2011-01-30 07:00:00,9520.0
-2011-01-30 08:00:00,9816.0
-2011-01-30 09:00:00,9959.0
-2011-01-30 10:00:00,10282.0
-2011-01-30 11:00:00,10607.0
-2011-01-30 12:00:00,10829.0
-2011-01-30 13:00:00,10946.0
-2011-01-30 14:00:00,10953.0
-2011-01-30 15:00:00,10947.0
-2011-01-30 16:00:00,10923.0
-2011-01-30 17:00:00,10985.0
-2011-01-30 18:00:00,11351.0
-2011-01-30 19:00:00,12239.0
-2011-01-30 20:00:00,12435.0
-2011-01-30 21:00:00,12346.0
-2011-01-30 22:00:00,12140.0
-2011-01-30 23:00:00,11759.0
-2011-01-31 00:00:00,11165.0
-2011-01-29 01:00:00,11256.0
-2011-01-29 02:00:00,10679.0
-2011-01-29 03:00:00,10336.0
-2011-01-29 04:00:00,10057.0
-2011-01-29 05:00:00,10005.0
-2011-01-29 06:00:00,10013.0
-2011-01-29 07:00:00,10299.0
-2011-01-29 08:00:00,10750.0
-2011-01-29 09:00:00,11031.0
-2011-01-29 10:00:00,11375.0
-2011-01-29 11:00:00,11658.0
-2011-01-29 12:00:00,11704.0
-2011-01-29 13:00:00,11665.0
-2011-01-29 14:00:00,11464.0
-2011-01-29 15:00:00,11254.0
-2011-01-29 16:00:00,11073.0
-2011-01-29 17:00:00,11093.0
-2011-01-29 18:00:00,11382.0
-2011-01-29 19:00:00,12161.0
-2011-01-29 20:00:00,12223.0
-2011-01-29 21:00:00,12045.0
-2011-01-29 22:00:00,11866.0
-2011-01-29 23:00:00,11542.0
-2011-01-30 00:00:00,11001.0
-2011-01-28 01:00:00,11462.0
-2011-01-28 02:00:00,10937.0
-2011-01-28 03:00:00,10668.0
-2011-01-28 04:00:00,10445.0
-2011-01-28 05:00:00,10493.0
-2011-01-28 06:00:00,10737.0
-2011-01-28 07:00:00,11451.0
-2011-01-28 08:00:00,12591.0
-2011-01-28 09:00:00,13023.0
-2011-01-28 10:00:00,13058.0
-2011-01-28 11:00:00,13017.0
-2011-01-28 12:00:00,12893.0
-2011-01-28 13:00:00,12773.0
-2011-01-28 14:00:00,12650.0
-2011-01-28 15:00:00,12693.0
-2011-01-28 16:00:00,12619.0
-2011-01-28 17:00:00,12632.0
-2011-01-28 18:00:00,12966.0
-2011-01-28 19:00:00,13631.0
-2011-01-28 20:00:00,13557.0
-2011-01-28 21:00:00,13348.0
-2011-01-28 22:00:00,13073.0
-2011-01-28 23:00:00,12705.0
-2011-01-29 00:00:00,11965.0
-2011-01-27 01:00:00,11531.0
-2011-01-27 02:00:00,11061.0
-2011-01-27 03:00:00,10814.0
-2011-01-27 04:00:00,10643.0
-2011-01-27 05:00:00,10685.0
-2011-01-27 06:00:00,10967.0
-2011-01-27 07:00:00,11637.0
-2011-01-27 08:00:00,12812.0
-2011-01-27 09:00:00,13477.0
-2011-01-27 10:00:00,13580.0
-2011-01-27 11:00:00,13673.0
-2011-01-27 12:00:00,13743.0
-2011-01-27 13:00:00,13657.0
-2011-01-27 14:00:00,13504.0
-2011-01-27 15:00:00,13466.0
-2011-01-27 16:00:00,13365.0
-2011-01-27 17:00:00,13296.0
-2011-01-27 18:00:00,13541.0
-2011-01-27 19:00:00,14227.0
-2011-01-27 20:00:00,14222.0
-2011-01-27 21:00:00,14007.0
-2011-01-27 22:00:00,13644.0
-2011-01-27 23:00:00,13124.0
-2011-01-28 00:00:00,12248.0
-2011-01-26 01:00:00,11092.0
-2011-01-26 02:00:00,10603.0
-2011-01-26 03:00:00,10318.0
-2011-01-26 04:00:00,10146.0
-2011-01-26 05:00:00,10165.0
-2011-01-26 06:00:00,10425.0
-2011-01-26 07:00:00,11150.0
-2011-01-26 08:00:00,12347.0
-2011-01-26 09:00:00,13025.0
-2011-01-26 10:00:00,13166.0
-2011-01-26 11:00:00,13274.0
-2011-01-26 12:00:00,13423.0
-2011-01-26 13:00:00,13406.0
-2011-01-26 14:00:00,13391.0
-2011-01-26 15:00:00,13431.0
-2011-01-26 16:00:00,13385.0
-2011-01-26 17:00:00,13413.0
-2011-01-26 18:00:00,13796.0
-2011-01-26 19:00:00,14383.0
-2011-01-26 20:00:00,14267.0
-2011-01-26 21:00:00,14032.0
-2011-01-26 22:00:00,13722.0
-2011-01-26 23:00:00,13186.0
-2011-01-27 00:00:00,12318.0
-2011-01-25 01:00:00,11544.0
-2011-01-25 02:00:00,11034.0
-2011-01-25 03:00:00,10705.0
-2011-01-25 04:00:00,10515.0
-2011-01-25 05:00:00,10522.0
-2011-01-25 06:00:00,10784.0
-2011-01-25 07:00:00,11434.0
-2011-01-25 08:00:00,12621.0
-2011-01-25 09:00:00,13226.0
-2011-01-25 10:00:00,13318.0
-2011-01-25 11:00:00,13371.0
-2011-01-25 12:00:00,13459.0
-2011-01-25 13:00:00,13374.0
-2011-01-25 14:00:00,13195.0
-2011-01-25 15:00:00,13083.0
-2011-01-25 16:00:00,12981.0
-2011-01-25 17:00:00,13039.0
-2011-01-25 18:00:00,13386.0
-2011-01-25 19:00:00,14043.0
-2011-01-25 20:00:00,13949.0
-2011-01-25 21:00:00,13713.0
-2011-01-25 22:00:00,13393.0
-2011-01-25 23:00:00,12804.0
-2011-01-26 00:00:00,11914.0
-2011-01-24 01:00:00,11401.0
-2011-01-24 02:00:00,11005.0
-2011-01-24 03:00:00,10828.0
-2011-01-24 04:00:00,10756.0
-2011-01-24 05:00:00,10804.0
-2011-01-24 06:00:00,11059.0
-2011-01-24 07:00:00,11725.0
-2011-01-24 08:00:00,12900.0
-2011-01-24 09:00:00,13516.0
-2011-01-24 10:00:00,13630.0
-2011-01-24 11:00:00,13684.0
-2011-01-24 12:00:00,13740.0
-2011-01-24 13:00:00,13643.0
-2011-01-24 14:00:00,13576.0
-2011-01-24 15:00:00,13562.0
-2011-01-24 16:00:00,13469.0
-2011-01-24 17:00:00,13477.0
-2011-01-24 18:00:00,13763.0
-2011-01-24 19:00:00,14411.0
-2011-01-24 20:00:00,14334.0
-2011-01-24 21:00:00,14121.0
-2011-01-24 22:00:00,13799.0
-2011-01-24 23:00:00,13249.0
-2011-01-25 00:00:00,12371.0
-2011-01-23 01:00:00,11908.0
-2011-01-23 02:00:00,11503.0
-2011-01-23 03:00:00,11280.0
-2011-01-23 04:00:00,11068.0
-2011-01-23 05:00:00,11044.0
-2011-01-23 06:00:00,11026.0
-2011-01-23 07:00:00,11195.0
-2011-01-23 08:00:00,11471.0
-2011-01-23 09:00:00,11505.0
-2011-01-23 10:00:00,11715.0
-2011-01-23 11:00:00,11728.0
-2011-01-23 12:00:00,11728.0
-2011-01-23 13:00:00,11652.0
-2011-01-23 14:00:00,11635.0
-2011-01-23 15:00:00,11498.0
-2011-01-23 16:00:00,11373.0
-2011-01-23 17:00:00,11383.0
-2011-01-23 18:00:00,11847.0
-2011-01-23 19:00:00,12869.0
-2011-01-23 20:00:00,13215.0
-2011-01-23 21:00:00,13188.0
-2011-01-23 22:00:00,12980.0
-2011-01-23 23:00:00,12591.0
-2011-01-24 00:00:00,11924.0
-2011-01-22 01:00:00,12449.0
-2011-01-22 02:00:00,11964.0
-2011-01-22 03:00:00,11630.0
-2011-01-22 04:00:00,11388.0
-2011-01-22 05:00:00,11341.0
-2011-01-22 06:00:00,11402.0
-2011-01-22 07:00:00,11709.0
-2011-01-22 08:00:00,12111.0
-2011-01-22 09:00:00,12392.0
-2011-01-22 10:00:00,12665.0
-2011-01-22 11:00:00,12888.0
-2011-01-22 12:00:00,12900.0
-2011-01-22 13:00:00,12727.0
-2011-01-22 14:00:00,12459.0
-2011-01-22 15:00:00,12224.0
-2011-01-22 16:00:00,12165.0
-2011-01-22 17:00:00,12301.0
-2011-01-22 18:00:00,12693.0
-2011-01-22 19:00:00,13544.0
-2011-01-22 20:00:00,13573.0
-2011-01-22 21:00:00,13491.0
-2011-01-22 22:00:00,13287.0
-2011-01-22 23:00:00,12995.0
-2011-01-23 00:00:00,12447.0
-2011-01-21 01:00:00,12417.0
-2011-01-21 02:00:00,11993.0
-2011-01-21 03:00:00,11757.0
-2011-01-21 04:00:00,11632.0
-2011-01-21 05:00:00,11666.0
-2011-01-21 06:00:00,11953.0
-2011-01-21 07:00:00,12580.0
-2011-01-21 08:00:00,13734.0
-2011-01-21 09:00:00,14255.0
-2011-01-21 10:00:00,14292.0
-2011-01-21 11:00:00,14289.0
-2011-01-21 12:00:00,14262.0
-2011-01-21 13:00:00,14148.0
-2011-01-21 14:00:00,14030.0
-2011-01-21 15:00:00,13941.0
-2011-01-21 16:00:00,13802.0
-2011-01-21 17:00:00,13784.0
-2011-01-21 18:00:00,14153.0
-2011-01-21 19:00:00,14949.0
-2011-01-21 20:00:00,14945.0
-2011-01-21 21:00:00,14717.0
-2011-01-21 22:00:00,14449.0
-2011-01-21 23:00:00,13973.0
-2011-01-22 00:00:00,13245.0
-2011-01-20 01:00:00,11651.0
-2011-01-20 02:00:00,11176.0
-2011-01-20 03:00:00,10892.0
-2011-01-20 04:00:00,10713.0
-2011-01-20 05:00:00,10690.0
-2011-01-20 06:00:00,10952.0
-2011-01-20 07:00:00,11659.0
-2011-01-20 08:00:00,12925.0
-2011-01-20 09:00:00,13577.0
-2011-01-20 10:00:00,13719.0
-2011-01-20 11:00:00,13779.0
-2011-01-20 12:00:00,13836.0
-2011-01-20 13:00:00,13692.0
-2011-01-20 14:00:00,13573.0
-2011-01-20 15:00:00,13550.0
-2011-01-20 16:00:00,13418.0
-2011-01-20 17:00:00,13364.0
-2011-01-20 18:00:00,13766.0
-2011-01-20 19:00:00,14702.0
-2011-01-20 20:00:00,14725.0
-2011-01-20 21:00:00,14598.0
-2011-01-20 22:00:00,14363.0
-2011-01-20 23:00:00,13882.0
-2011-01-21 00:00:00,13108.0
-2011-01-19 01:00:00,11359.0
-2011-01-19 02:00:00,10884.0
-2011-01-19 03:00:00,10628.0
-2011-01-19 04:00:00,10469.0
-2011-01-19 05:00:00,10506.0
-2011-01-19 06:00:00,10780.0
-2011-01-19 07:00:00,11515.0
-2011-01-19 08:00:00,12736.0
-2011-01-19 09:00:00,13406.0
-2011-01-19 10:00:00,13477.0
-2011-01-19 11:00:00,13499.0
-2011-01-19 12:00:00,13511.0
-2011-01-19 13:00:00,13358.0
-2011-01-19 14:00:00,13185.0
-2011-01-19 15:00:00,13056.0
-2011-01-19 16:00:00,12943.0
-2011-01-19 17:00:00,12909.0
-2011-01-19 18:00:00,13370.0
-2011-01-19 19:00:00,14307.0
-2011-01-19 20:00:00,14311.0
-2011-01-19 21:00:00,14111.0
-2011-01-19 22:00:00,13821.0
-2011-01-19 23:00:00,13251.0
-2011-01-20 00:00:00,12420.0
-2011-01-18 01:00:00,10988.0
-2011-01-18 02:00:00,10481.0
-2011-01-18 03:00:00,10163.0
-2011-01-18 04:00:00,9974.0
-2011-01-18 05:00:00,9949.0
-2011-01-18 06:00:00,10203.0
-2011-01-18 07:00:00,10945.0
-2011-01-18 08:00:00,12172.0
-2011-01-18 09:00:00,12909.0
-2011-01-18 10:00:00,13043.0
-2011-01-18 11:00:00,13128.0
-2011-01-18 12:00:00,13213.0
-2011-01-18 13:00:00,13219.0
-2011-01-18 14:00:00,13204.0
-2011-01-18 15:00:00,13273.0
-2011-01-18 16:00:00,13295.0
-2011-01-18 17:00:00,13392.0
-2011-01-18 18:00:00,13830.0
-2011-01-18 19:00:00,14339.0
-2011-01-18 20:00:00,14155.0
-2011-01-18 21:00:00,13937.0
-2011-01-18 22:00:00,13648.0
-2011-01-18 23:00:00,13053.0
-2011-01-19 00:00:00,12164.0
-2011-01-17 01:00:00,11005.0
-2011-01-17 02:00:00,10594.0
-2011-01-17 03:00:00,10438.0
-2011-01-17 04:00:00,10329.0
-2011-01-17 05:00:00,10378.0
-2011-01-17 06:00:00,10642.0
-2011-01-17 07:00:00,11288.0
-2011-01-17 08:00:00,12217.0
-2011-01-17 09:00:00,12790.0
-2011-01-17 10:00:00,13115.0
-2011-01-17 11:00:00,13330.0
-2011-01-17 12:00:00,13451.0
-2011-01-17 13:00:00,13363.0
-2011-01-17 14:00:00,13213.0
-2011-01-17 15:00:00,13205.0
-2011-01-17 16:00:00,13142.0
-2011-01-17 17:00:00,13088.0
-2011-01-17 18:00:00,13531.0
-2011-01-17 19:00:00,14075.0
-2011-01-17 20:00:00,13871.0
-2011-01-17 21:00:00,13596.0
-2011-01-17 22:00:00,13231.0
-2011-01-17 23:00:00,12637.0
-2011-01-18 00:00:00,11764.0
-2011-01-16 01:00:00,11200.0
-2011-01-16 02:00:00,10725.0
-2011-01-16 03:00:00,10485.0
-2011-01-16 04:00:00,10306.0
-2011-01-16 05:00:00,10249.0
-2011-01-16 06:00:00,10362.0
-2011-01-16 07:00:00,10495.0
-2011-01-16 08:00:00,10836.0
-2011-01-16 09:00:00,10878.0
-2011-01-16 10:00:00,11154.0
-2011-01-16 11:00:00,11288.0
-2011-01-16 12:00:00,11423.0
-2011-01-16 13:00:00,11429.0
-2011-01-16 14:00:00,11411.0
-2011-01-16 15:00:00,11336.0
-2011-01-16 16:00:00,11257.0
-2011-01-16 17:00:00,11299.0
-2011-01-16 18:00:00,11847.0
-2011-01-16 19:00:00,12647.0
-2011-01-16 20:00:00,12667.0
-2011-01-16 21:00:00,12569.0
-2011-01-16 22:00:00,12332.0
-2011-01-16 23:00:00,12048.0
-2011-01-17 00:00:00,11518.0
-2011-01-15 01:00:00,11449.0
-2011-01-15 02:00:00,10892.0
-2011-01-15 03:00:00,10573.0
-2011-01-15 04:00:00,10343.0
-2011-01-15 05:00:00,10264.0
-2011-01-15 06:00:00,10317.0
-2011-01-15 07:00:00,10610.0
-2011-01-15 08:00:00,11076.0
-2011-01-15 09:00:00,11458.0
-2011-01-15 10:00:00,11750.0
-2011-01-15 11:00:00,11993.0
-2011-01-15 12:00:00,12001.0
-2011-01-15 13:00:00,12004.0
-2011-01-15 14:00:00,11787.0
-2011-01-15 15:00:00,11730.0
-2011-01-15 16:00:00,11633.0
-2011-01-15 17:00:00,11725.0
-2011-01-15 18:00:00,12095.0
-2011-01-15 19:00:00,12899.0
-2011-01-15 20:00:00,12841.0
-2011-01-15 21:00:00,12730.0
-2011-01-15 22:00:00,12555.0
-2011-01-15 23:00:00,12279.0
-2011-01-16 00:00:00,11734.0
-2011-01-14 01:00:00,11643.0
-2011-01-14 02:00:00,11173.0
-2011-01-14 03:00:00,10881.0
-2011-01-14 04:00:00,10703.0
-2011-01-14 05:00:00,10707.0
-2011-01-14 06:00:00,10916.0
-2011-01-14 07:00:00,11582.0
-2011-01-14 08:00:00,12694.0
-2011-01-14 09:00:00,13254.0
-2011-01-14 10:00:00,13345.0
-2011-01-14 11:00:00,13390.0
-2011-01-14 12:00:00,13386.0
-2011-01-14 13:00:00,13250.0
-2011-01-14 14:00:00,13114.0
-2011-01-14 15:00:00,13068.0
-2011-01-14 16:00:00,13000.0
-2011-01-14 17:00:00,12967.0
-2011-01-14 18:00:00,13336.0
-2011-01-14 19:00:00,13980.0
-2011-01-14 20:00:00,13812.0
-2011-01-14 21:00:00,13553.0
-2011-01-14 22:00:00,13231.0
-2011-01-14 23:00:00,12833.0
-2011-01-15 00:00:00,12120.0
-2011-01-13 01:00:00,11348.0
-2011-01-13 02:00:00,10848.0
-2011-01-13 03:00:00,10574.0
-2011-01-13 04:00:00,10405.0
-2011-01-13 05:00:00,10450.0
-2011-01-13 06:00:00,10711.0
-2011-01-13 07:00:00,11419.0
-2011-01-13 08:00:00,12626.0
-2011-01-13 09:00:00,13262.0
-2011-01-13 10:00:00,13315.0
-2011-01-13 11:00:00,13358.0
-2011-01-13 12:00:00,13324.0
-2011-01-13 13:00:00,13268.0
-2011-01-13 14:00:00,13098.0
-2011-01-13 15:00:00,13302.0
-2011-01-13 16:00:00,13310.0
-2011-01-13 17:00:00,13318.0
-2011-01-13 18:00:00,13767.0
-2011-01-13 19:00:00,14455.0
-2011-01-13 20:00:00,14322.0
-2011-01-13 21:00:00,14137.0
-2011-01-13 22:00:00,13850.0
-2011-01-13 23:00:00,13300.0
-2011-01-14 00:00:00,12455.0
-2011-01-12 01:00:00,11510.0
-2011-01-12 02:00:00,11043.0
-2011-01-12 03:00:00,10736.0
-2011-01-12 04:00:00,10593.0
-2011-01-12 05:00:00,10589.0
-2011-01-12 06:00:00,10853.0
-2011-01-12 07:00:00,11551.0
-2011-01-12 08:00:00,12726.0
-2011-01-12 09:00:00,13311.0
-2011-01-12 10:00:00,13364.0
-2011-01-12 11:00:00,13318.0
-2011-01-12 12:00:00,13293.0
-2011-01-12 13:00:00,13135.0
-2011-01-12 14:00:00,13083.0
-2011-01-12 15:00:00,13132.0
-2011-01-12 16:00:00,13154.0
-2011-01-12 17:00:00,13189.0
-2011-01-12 18:00:00,13615.0
-2011-01-12 19:00:00,14272.0
-2011-01-12 20:00:00,14129.0
-2011-01-12 21:00:00,13921.0
-2011-01-12 22:00:00,13606.0
-2011-01-12 23:00:00,13048.0
-2011-01-13 00:00:00,12149.0
-2011-01-11 01:00:00,11263.0
-2011-01-11 02:00:00,10747.0
-2011-01-11 03:00:00,10457.0
-2011-01-11 04:00:00,10320.0
-2011-01-11 05:00:00,10339.0
-2011-01-11 06:00:00,10630.0
-2011-01-11 07:00:00,11359.0
-2011-01-11 08:00:00,12537.0
-2011-01-11 09:00:00,13201.0
-2011-01-11 10:00:00,13279.0
-2011-01-11 11:00:00,13380.0
-2011-01-11 12:00:00,13468.0
-2011-01-11 13:00:00,13369.0
-2011-01-11 14:00:00,13317.0
-2011-01-11 15:00:00,13295.0
-2011-01-11 16:00:00,13226.0
-2011-01-11 17:00:00,13256.0
-2011-01-11 18:00:00,13699.0
-2011-01-11 19:00:00,14402.0
-2011-01-11 20:00:00,14278.0
-2011-01-11 21:00:00,14043.0
-2011-01-11 22:00:00,13739.0
-2011-01-11 23:00:00,13141.0
-2011-01-12 00:00:00,12275.0
-2011-01-10 01:00:00,10817.0
-2011-01-10 02:00:00,10462.0
-2011-01-10 03:00:00,10274.0
-2011-01-10 04:00:00,10202.0
-2011-01-10 05:00:00,10285.0
-2011-01-10 06:00:00,10606.0
-2011-01-10 07:00:00,11369.0
-2011-01-10 08:00:00,12574.0
-2011-01-10 09:00:00,13321.0
-2011-01-10 10:00:00,13208.0
-2011-01-10 11:00:00,13159.0
-2011-01-10 12:00:00,13089.0
-2011-01-10 13:00:00,13036.0
-2011-01-10 14:00:00,12909.0
-2011-01-10 15:00:00,12901.0
-2011-01-10 16:00:00,12871.0
-2011-01-10 17:00:00,13011.0
-2011-01-10 18:00:00,13620.0
-2011-01-10 19:00:00,14197.0
-2011-01-10 20:00:00,14018.0
-2011-01-10 21:00:00,13818.0
-2011-01-10 22:00:00,13482.0
-2011-01-10 23:00:00,12949.0
-2011-01-11 00:00:00,12073.0
-2011-01-09 01:00:00,11469.0
-2011-01-09 02:00:00,10936.0
-2011-01-09 03:00:00,10634.0
-2011-01-09 04:00:00,10531.0
-2011-01-09 05:00:00,10478.0
-2011-01-09 06:00:00,10499.0
-2011-01-09 07:00:00,10670.0
-2011-01-09 08:00:00,10955.0
-2011-01-09 09:00:00,11053.0
-2011-01-09 10:00:00,11113.0
-2011-01-09 11:00:00,11179.0
-2011-01-09 12:00:00,11154.0
-2011-01-09 13:00:00,11116.0
-2011-01-09 14:00:00,11028.0
-2011-01-09 15:00:00,10959.0
-2011-01-09 16:00:00,10880.0
-2011-01-09 17:00:00,11105.0
-2011-01-09 18:00:00,11772.0
-2011-01-09 19:00:00,12671.0
-2011-01-09 20:00:00,12716.0
-2011-01-09 21:00:00,12619.0
-2011-01-09 22:00:00,12368.0
-2011-01-09 23:00:00,11975.0
-2011-01-10 00:00:00,11382.0
-2011-01-08 01:00:00,12044.0
-2011-01-08 02:00:00,11494.0
-2011-01-08 03:00:00,11218.0
-2011-01-08 04:00:00,11035.0
-2011-01-08 05:00:00,10989.0
-2011-01-08 06:00:00,11025.0
-2011-01-08 07:00:00,11326.0
-2011-01-08 08:00:00,11757.0
-2011-01-08 09:00:00,11991.0
-2011-01-08 10:00:00,12164.0
-2011-01-08 11:00:00,12315.0
-2011-01-08 12:00:00,12376.0
-2011-01-08 13:00:00,12308.0
-2011-01-08 14:00:00,12151.0
-2011-01-08 15:00:00,11919.0
-2011-01-08 16:00:00,11717.0
-2011-01-08 17:00:00,11750.0
-2011-01-08 18:00:00,12316.0
-2011-01-08 19:00:00,13212.0
-2011-01-08 20:00:00,13196.0
-2011-01-08 21:00:00,13104.0
-2011-01-08 22:00:00,12897.0
-2011-01-08 23:00:00,12607.0
-2011-01-09 00:00:00,12011.0
-2011-01-07 01:00:00,11582.0
-2011-01-07 02:00:00,11132.0
-2011-01-07 03:00:00,10833.0
-2011-01-07 04:00:00,10653.0
-2011-01-07 05:00:00,10652.0
-2011-01-07 06:00:00,10913.0
-2011-01-07 07:00:00,11538.0
-2011-01-07 08:00:00,12665.0
-2011-01-07 09:00:00,13414.0
-2011-01-07 10:00:00,13499.0
-2011-01-07 11:00:00,13552.0
-2011-01-07 12:00:00,13553.0
-2011-01-07 13:00:00,13441.0
-2011-01-07 14:00:00,13323.0
-2011-01-07 15:00:00,13415.0
-2011-01-07 16:00:00,13504.0
-2011-01-07 17:00:00,13558.0
-2011-01-07 18:00:00,14028.0
-2011-01-07 19:00:00,14500.0
-2011-01-07 20:00:00,14361.0
-2011-01-07 21:00:00,14143.0
-2011-01-07 22:00:00,13832.0
-2011-01-07 23:00:00,13438.0
-2011-01-08 00:00:00,12724.0
-2011-01-06 01:00:00,11268.0
-2011-01-06 02:00:00,10736.0
-2011-01-06 03:00:00,10418.0
-2011-01-06 04:00:00,10252.0
-2011-01-06 05:00:00,10254.0
-2011-01-06 06:00:00,10522.0
-2011-01-06 07:00:00,11221.0
-2011-01-06 08:00:00,12410.0
-2011-01-06 09:00:00,13236.0
-2011-01-06 10:00:00,13349.0
-2011-01-06 11:00:00,13440.0
-2011-01-06 12:00:00,13426.0
-2011-01-06 13:00:00,13377.0
-2011-01-06 14:00:00,13247.0
-2011-01-06 15:00:00,13112.0
-2011-01-06 16:00:00,12965.0
-2011-01-06 17:00:00,12993.0
-2011-01-06 18:00:00,13607.0
-2011-01-06 19:00:00,14420.0
-2011-01-06 20:00:00,14296.0
-2011-01-06 21:00:00,14099.0
-2011-01-06 22:00:00,13771.0
-2011-01-06 23:00:00,13253.0
-2011-01-07 00:00:00,12388.0
-2011-01-05 01:00:00,11829.0
-2011-01-05 02:00:00,11324.0
-2011-01-05 03:00:00,11062.0
-2011-01-05 04:00:00,10908.0
-2011-01-05 05:00:00,10930.0
-2011-01-05 06:00:00,11194.0
-2011-01-05 07:00:00,11868.0
-2011-01-05 08:00:00,13012.0
-2011-01-05 09:00:00,13580.0
-2011-01-05 10:00:00,13579.0
-2011-01-05 11:00:00,13561.0
-2011-01-05 12:00:00,13584.0
-2011-01-05 13:00:00,13530.0
-2011-01-05 14:00:00,13442.0
-2011-01-05 15:00:00,13374.0
-2011-01-05 16:00:00,13244.0
-2011-01-05 17:00:00,13265.0
-2011-01-05 18:00:00,13826.0
-2011-01-05 19:00:00,14335.0
-2011-01-05 20:00:00,14122.0
-2011-01-05 21:00:00,13861.0
-2011-01-05 22:00:00,13526.0
-2011-01-05 23:00:00,12968.0
-2011-01-06 00:00:00,12062.0
-2011-01-04 01:00:00,10941.0
-2011-01-04 02:00:00,10426.0
-2011-01-04 03:00:00,10171.0
-2011-01-04 04:00:00,10044.0
-2011-01-04 05:00:00,10065.0
-2011-01-04 06:00:00,10370.0
-2011-01-04 07:00:00,11063.0
-2011-01-04 08:00:00,12341.0
-2011-01-04 09:00:00,13040.0
-2011-01-04 10:00:00,13114.0
-2011-01-04 11:00:00,13194.0
-2011-01-04 12:00:00,13257.0
-2011-01-04 13:00:00,13223.0
-2011-01-04 14:00:00,13173.0
-2011-01-04 15:00:00,13144.0
-2011-01-04 16:00:00,13049.0
-2011-01-04 17:00:00,13070.0
-2011-01-04 18:00:00,13705.0
-2011-01-04 19:00:00,14527.0
-2011-01-04 20:00:00,14466.0
-2011-01-04 21:00:00,14312.0
-2011-01-04 22:00:00,14038.0
-2011-01-04 23:00:00,13498.0
-2011-01-05 00:00:00,12600.0
-2011-01-03 01:00:00,10897.0
-2011-01-03 02:00:00,10494.0
-2011-01-03 03:00:00,10279.0
-2011-01-03 04:00:00,10165.0
-2011-01-03 05:00:00,10199.0
-2011-01-03 06:00:00,10440.0
-2011-01-03 07:00:00,11096.0
-2011-01-03 08:00:00,12125.0
-2011-01-03 09:00:00,12687.0
-2011-01-03 10:00:00,12682.0
-2011-01-03 11:00:00,12707.0
-2011-01-03 12:00:00,12662.0
-2011-01-03 13:00:00,12573.0
-2011-01-03 14:00:00,12514.0
-2011-01-03 15:00:00,12463.0
-2011-01-03 16:00:00,12500.0
-2011-01-03 17:00:00,12594.0
-2011-01-03 18:00:00,13206.0
-2011-01-03 19:00:00,13873.0
-2011-01-03 20:00:00,13712.0
-2011-01-03 21:00:00,13505.0
-2011-01-03 22:00:00,13175.0
-2011-01-03 23:00:00,12613.0
-2011-01-04 00:00:00,11763.0
-2011-01-02 01:00:00,11199.0
-2011-01-02 02:00:00,10682.0
-2011-01-02 03:00:00,10376.0
-2011-01-02 04:00:00,10247.0
-2011-01-02 05:00:00,10161.0
-2011-01-02 06:00:00,10220.0
-2011-01-02 07:00:00,10346.0
-2011-01-02 08:00:00,10651.0
-2011-01-02 09:00:00,10710.0
-2011-01-02 10:00:00,10834.0
-2011-01-02 11:00:00,10945.0
-2011-01-02 12:00:00,11078.0
-2011-01-02 13:00:00,11127.0
-2011-01-02 14:00:00,11141.0
-2011-01-02 15:00:00,11057.0
-2011-01-02 16:00:00,10973.0
-2011-01-02 17:00:00,11074.0
-2011-01-02 18:00:00,11929.0
-2011-01-02 19:00:00,12841.0
-2011-01-02 20:00:00,12956.0
-2011-01-02 21:00:00,12849.0
-2011-01-02 22:00:00,12689.0
-2011-01-02 23:00:00,12274.0
-2011-01-03 00:00:00,11662.0
-2011-01-01 01:00:00,9631.0
-2011-01-01 02:00:00,9273.0
-2011-01-01 03:00:00,9011.0
-2011-01-01 04:00:00,8741.0
-2011-01-01 05:00:00,8694.0
-2011-01-01 06:00:00,8711.0
-2011-01-01 07:00:00,8943.0
-2011-01-01 08:00:00,9222.0
-2011-01-01 09:00:00,9430.0
-2011-01-01 10:00:00,9670.0
-2011-01-01 11:00:00,10125.0
-2011-01-01 12:00:00,10538.0
-2011-01-01 13:00:00,10782.0
-2011-01-01 14:00:00,10861.0
-2011-01-01 15:00:00,10784.0
-2011-01-01 16:00:00,10928.0
-2011-01-01 17:00:00,11133.0
-2011-01-01 18:00:00,11924.0
-2011-01-01 19:00:00,12665.0
-2011-01-01 20:00:00,12701.0
-2011-01-01 21:00:00,12630.0
-2011-01-01 22:00:00,12513.0
-2011-01-01 23:00:00,12252.0
-2011-01-02 00:00:00,11778.0
-2012-12-31 01:00:00,10445.0
-2012-12-31 02:00:00,9897.0
-2012-12-31 03:00:00,9538.0
-2012-12-31 04:00:00,9333.0
-2012-12-31 05:00:00,9275.0
-2012-12-31 06:00:00,9463.0
-2012-12-31 07:00:00,9830.0
-2012-12-31 08:00:00,10443.0
-2012-12-31 09:00:00,10713.0
-2012-12-31 10:00:00,10845.0
-2012-12-31 11:00:00,11044.0
-2012-12-31 12:00:00,11269.0
-2012-12-31 13:00:00,11311.0
-2012-12-31 14:00:00,11349.0
-2012-12-31 15:00:00,11372.0
-2012-12-31 16:00:00,11297.0
-2012-12-31 17:00:00,11378.0
-2012-12-31 18:00:00,12062.0
-2012-12-31 19:00:00,12779.0
-2012-12-31 20:00:00,12508.0
-2012-12-31 21:00:00,12154.0
-2012-12-31 22:00:00,11812.0
-2012-12-31 23:00:00,11437.0
-2013-01-01 00:00:00,11009.0
-2012-12-30 01:00:00,10857.0
-2012-12-30 02:00:00,10294.0
-2012-12-30 03:00:00,10002.0
-2012-12-30 04:00:00,9823.0
-2012-12-30 05:00:00,9768.0
-2012-12-30 06:00:00,9810.0
-2012-12-30 07:00:00,9986.0
-2012-12-30 08:00:00,10244.0
-2012-12-30 09:00:00,10289.0
-2012-12-30 10:00:00,10399.0
-2012-12-30 11:00:00,10452.0
-2012-12-30 12:00:00,10528.0
-2012-12-30 13:00:00,10498.0
-2012-12-30 14:00:00,10459.0
-2012-12-30 15:00:00,10346.0
-2012-12-30 16:00:00,10337.0
-2012-12-30 17:00:00,10446.0
-2012-12-30 18:00:00,11412.0
-2012-12-30 19:00:00,12278.0
-2012-12-30 20:00:00,12309.0
-2012-12-30 21:00:00,12257.0
-2012-12-30 22:00:00,12031.0
-2012-12-30 23:00:00,11690.0
-2012-12-31 00:00:00,11071.0
-2012-12-29 01:00:00,10594.0
-2012-12-29 02:00:00,9985.0
-2012-12-29 03:00:00,9602.0
-2012-12-29 04:00:00,9378.0
-2012-12-29 05:00:00,9292.0
-2012-12-29 06:00:00,9357.0
-2012-12-29 07:00:00,9608.0
-2012-12-29 08:00:00,10059.0
-2012-12-29 09:00:00,10394.0
-2012-12-29 10:00:00,10587.0
-2012-12-29 11:00:00,10901.0
-2012-12-29 12:00:00,11107.0
-2012-12-29 13:00:00,11208.0
-2012-12-29 14:00:00,11146.0
-2012-12-29 15:00:00,11078.0
-2012-12-29 16:00:00,11051.0
-2012-12-29 17:00:00,11219.0
-2012-12-29 18:00:00,11992.0
-2012-12-29 19:00:00,12591.0
-2012-12-29 20:00:00,12579.0
-2012-12-29 21:00:00,12462.0
-2012-12-29 22:00:00,12320.0
-2012-12-29 23:00:00,12037.0
-2012-12-30 00:00:00,11455.0
-2012-12-28 01:00:00,10617.0
-2012-12-28 02:00:00,10002.0
-2012-12-28 03:00:00,9629.0
-2012-12-28 04:00:00,9443.0
-2012-12-28 05:00:00,9405.0
-2012-12-28 06:00:00,9593.0
-2012-12-28 07:00:00,10160.0
-2012-12-28 08:00:00,10999.0
-2012-12-28 09:00:00,11566.0
-2012-12-28 10:00:00,11845.0
-2012-12-28 11:00:00,12091.0
-2012-12-28 12:00:00,12193.0
-2012-12-28 13:00:00,12277.0
-2012-12-28 14:00:00,12265.0
-2012-12-28 15:00:00,12279.0
-2012-12-28 16:00:00,12223.0
-2012-12-28 17:00:00,12287.0
-2012-12-28 18:00:00,12946.0
-2012-12-28 19:00:00,13325.0
-2012-12-28 20:00:00,13075.0
-2012-12-28 21:00:00,12833.0
-2012-12-28 22:00:00,12498.0
-2012-12-28 23:00:00,12071.0
-2012-12-29 00:00:00,11339.0
-2012-12-27 01:00:00,10736.0
-2012-12-27 02:00:00,10073.0
-2012-12-27 03:00:00,9741.0
-2012-12-27 04:00:00,9534.0
-2012-12-27 05:00:00,9493.0
-2012-12-27 06:00:00,9726.0
-2012-12-27 07:00:00,10306.0
-2012-12-27 08:00:00,11186.0
-2012-12-27 09:00:00,11802.0
-2012-12-27 10:00:00,12050.0
-2012-12-27 11:00:00,12276.0
-2012-12-27 12:00:00,12469.0
-2012-12-27 13:00:00,12432.0
-2012-12-27 14:00:00,12318.0
-2012-12-27 15:00:00,12343.0
-2012-12-27 16:00:00,12293.0
-2012-12-27 17:00:00,12300.0
-2012-12-27 18:00:00,12986.0
-2012-12-27 19:00:00,13521.0
-2012-12-27 20:00:00,13300.0
-2012-12-27 21:00:00,13057.0
-2012-12-27 22:00:00,12749.0
-2012-12-27 23:00:00,12229.0
-2012-12-28 00:00:00,11425.0
-2012-12-26 01:00:00,9966.0
-2012-12-26 02:00:00,9487.0
-2012-12-26 03:00:00,9209.0
-2012-12-26 04:00:00,9093.0
-2012-12-26 05:00:00,9090.0
-2012-12-26 06:00:00,9342.0
-2012-12-26 07:00:00,10001.0
-2012-12-26 08:00:00,10954.0
-2012-12-26 09:00:00,11603.0
-2012-12-26 10:00:00,11908.0
-2012-12-26 11:00:00,12192.0
-2012-12-26 12:00:00,12418.0
-2012-12-26 13:00:00,12533.0
-2012-12-26 14:00:00,12558.0
-2012-12-26 15:00:00,12562.0
-2012-12-26 16:00:00,12511.0
-2012-12-26 17:00:00,12576.0
-2012-12-26 18:00:00,13239.0
-2012-12-26 19:00:00,13715.0
-2012-12-26 20:00:00,13449.0
-2012-12-26 21:00:00,13181.0
-2012-12-26 22:00:00,12881.0
-2012-12-26 23:00:00,12411.0
-2012-12-27 00:00:00,11588.0
-2012-12-25 01:00:00,10158.0
-2012-12-25 02:00:00,9654.0
-2012-12-25 03:00:00,9313.0
-2012-12-25 04:00:00,9095.0
-2012-12-25 05:00:00,9030.0
-2012-12-25 06:00:00,9073.0
-2012-12-25 07:00:00,9267.0
-2012-12-25 08:00:00,9571.0
-2012-12-25 09:00:00,9689.0
-2012-12-25 10:00:00,9813.0
-2012-12-25 11:00:00,10021.0
-2012-12-25 12:00:00,10109.0
-2012-12-25 13:00:00,10208.0
-2012-12-25 14:00:00,10227.0
-2012-12-25 15:00:00,10203.0
-2012-12-25 16:00:00,10185.0
-2012-12-25 17:00:00,10296.0
-2012-12-25 18:00:00,10957.0
-2012-12-25 19:00:00,11354.0
-2012-12-25 20:00:00,11309.0
-2012-12-25 21:00:00,11247.0
-2012-12-25 22:00:00,11198.0
-2012-12-25 23:00:00,10993.0
-2012-12-26 00:00:00,10547.0
-2012-12-24 01:00:00,10345.0
-2012-12-24 02:00:00,9777.0
-2012-12-24 03:00:00,9356.0
-2012-12-24 04:00:00,9180.0
-2012-12-24 05:00:00,9123.0
-2012-12-24 06:00:00,9291.0
-2012-12-24 07:00:00,9618.0
-2012-12-24 08:00:00,10155.0
-2012-12-24 09:00:00,10424.0
-2012-12-24 10:00:00,10616.0
-2012-12-24 11:00:00,10922.0
-2012-12-24 12:00:00,11133.0
-2012-12-24 13:00:00,11238.0
-2012-12-24 14:00:00,11227.0
-2012-12-24 15:00:00,11210.0
-2012-12-24 16:00:00,11195.0
-2012-12-24 17:00:00,11311.0
-2012-12-24 18:00:00,11934.0
-2012-12-24 19:00:00,12183.0
-2012-12-24 20:00:00,11808.0
-2012-12-24 21:00:00,11537.0
-2012-12-24 22:00:00,11336.0
-2012-12-24 23:00:00,11109.0
-2012-12-25 00:00:00,10695.0
-2012-12-23 01:00:00,10824.0
-2012-12-23 02:00:00,10248.0
-2012-12-23 03:00:00,9802.0
-2012-12-23 04:00:00,9627.0
-2012-12-23 05:00:00,9531.0
-2012-12-23 06:00:00,9618.0
-2012-12-23 07:00:00,9752.0
-2012-12-23 08:00:00,10079.0
-2012-12-23 09:00:00,10133.0
-2012-12-23 10:00:00,10276.0
-2012-12-23 11:00:00,10408.0
-2012-12-23 12:00:00,10470.0
-2012-12-23 13:00:00,10491.0
-2012-12-23 14:00:00,10465.0
-2012-12-23 15:00:00,10406.0
-2012-12-23 16:00:00,10458.0
-2012-12-23 17:00:00,10600.0
-2012-12-23 18:00:00,11498.0
-2012-12-23 19:00:00,12194.0
-2012-12-23 20:00:00,12223.0
-2012-12-23 21:00:00,12146.0
-2012-12-23 22:00:00,12003.0
-2012-12-23 23:00:00,11695.0
-2012-12-24 00:00:00,11114.0
-2012-12-22 01:00:00,11473.0
-2012-12-22 02:00:00,10813.0
-2012-12-22 03:00:00,10434.0
-2012-12-22 04:00:00,10210.0
-2012-12-22 05:00:00,10137.0
-2012-12-22 06:00:00,10178.0
-2012-12-22 07:00:00,10472.0
-2012-12-22 08:00:00,10970.0
-2012-12-22 09:00:00,11139.0
-2012-12-22 10:00:00,11337.0
-2012-12-22 11:00:00,11422.0
-2012-12-22 12:00:00,11360.0
-2012-12-22 13:00:00,11229.0
-2012-12-22 14:00:00,10978.0
-2012-12-22 15:00:00,10773.0
-2012-12-22 16:00:00,10691.0
-2012-12-22 17:00:00,10780.0
-2012-12-22 18:00:00,11662.0
-2012-12-22 19:00:00,12522.0
-2012-12-22 20:00:00,12564.0
-2012-12-22 21:00:00,12448.0
-2012-12-22 22:00:00,12338.0
-2012-12-22 23:00:00,12044.0
-2012-12-23 00:00:00,11528.0
-2012-12-21 01:00:00,11018.0
-2012-12-21 02:00:00,10378.0
-2012-12-21 03:00:00,10002.0
-2012-12-21 04:00:00,9849.0
-2012-12-21 05:00:00,9878.0
-2012-12-21 06:00:00,10136.0
-2012-12-21 07:00:00,10854.0
-2012-12-21 08:00:00,12041.0
-2012-12-21 09:00:00,12679.0
-2012-12-21 10:00:00,12802.0
-2012-12-21 11:00:00,12889.0
-2012-12-21 12:00:00,12826.0
-2012-12-21 13:00:00,12699.0
-2012-12-21 14:00:00,12553.0
-2012-12-21 15:00:00,12528.0
-2012-12-21 16:00:00,12449.0
-2012-12-21 17:00:00,12472.0
-2012-12-21 18:00:00,13387.0
-2012-12-21 19:00:00,14173.0
-2012-12-21 20:00:00,14040.0
-2012-12-21 21:00:00,13796.0
-2012-12-21 22:00:00,13510.0
-2012-12-21 23:00:00,13121.0
-2012-12-22 00:00:00,12345.0
-2012-12-20 01:00:00,10772.0
-2012-12-20 02:00:00,10101.0
-2012-12-20 03:00:00,9678.0
-2012-12-20 04:00:00,9469.0
-2012-12-20 05:00:00,9459.0
-2012-12-20 06:00:00,9717.0
-2012-12-20 07:00:00,10381.0
-2012-12-20 08:00:00,11518.0
-2012-12-20 09:00:00,12305.0
-2012-12-20 10:00:00,12462.0
-2012-12-20 11:00:00,12478.0
-2012-12-20 12:00:00,12520.0
-2012-12-20 13:00:00,12528.0
-2012-12-20 14:00:00,12505.0
-2012-12-20 15:00:00,12567.0
-2012-12-20 16:00:00,12477.0
-2012-12-20 17:00:00,12590.0
-2012-12-20 18:00:00,13306.0
-2012-12-20 19:00:00,13752.0
-2012-12-20 20:00:00,13708.0
-2012-12-20 21:00:00,13509.0
-2012-12-20 22:00:00,13284.0
-2012-12-20 23:00:00,12798.0
-2012-12-21 00:00:00,11915.0
-2012-12-19 01:00:00,10638.0
-2012-12-19 02:00:00,9997.0
-2012-12-19 03:00:00,9611.0
-2012-12-19 04:00:00,9410.0
-2012-12-19 05:00:00,9396.0
-2012-12-19 06:00:00,9627.0
-2012-12-19 07:00:00,10354.0
-2012-12-19 08:00:00,11581.0
-2012-12-19 09:00:00,12244.0
-2012-12-19 10:00:00,12322.0
-2012-12-19 11:00:00,12365.0
-2012-12-19 12:00:00,12395.0
-2012-12-19 13:00:00,12298.0
-2012-12-19 14:00:00,12184.0
-2012-12-19 15:00:00,12270.0
-2012-12-19 16:00:00,12250.0
-2012-12-19 17:00:00,12413.0
-2012-12-19 18:00:00,13260.0
-2012-12-19 19:00:00,13750.0
-2012-12-19 20:00:00,13593.0
-2012-12-19 21:00:00,13420.0
-2012-12-19 22:00:00,13175.0
-2012-12-19 23:00:00,12644.0
-2012-12-20 00:00:00,11696.0
-2012-12-18 01:00:00,10622.0
-2012-12-18 02:00:00,9948.0
-2012-12-18 03:00:00,9609.0
-2012-12-18 04:00:00,9405.0
-2012-12-18 05:00:00,9388.0
-2012-12-18 06:00:00,9600.0
-2012-12-18 07:00:00,10320.0
-2012-12-18 08:00:00,11614.0
-2012-12-18 09:00:00,12281.0
-2012-12-18 10:00:00,12412.0
-2012-12-18 11:00:00,12500.0
-2012-12-18 12:00:00,12590.0
-2012-12-18 13:00:00,12620.0
-2012-12-18 14:00:00,12514.0
-2012-12-18 15:00:00,12551.0
-2012-12-18 16:00:00,12544.0
-2012-12-18 17:00:00,12817.0
-2012-12-18 18:00:00,13556.0
-2012-12-18 19:00:00,13823.0
-2012-12-18 20:00:00,13555.0
-2012-12-18 21:00:00,13321.0
-2012-12-18 22:00:00,13027.0
-2012-12-18 23:00:00,12498.0
-2012-12-19 00:00:00,11558.0
-2012-12-17 01:00:00,9776.0
-2012-12-17 02:00:00,9225.0
-2012-12-17 03:00:00,8918.0
-2012-12-17 04:00:00,8837.0
-2012-12-17 05:00:00,8841.0
-2012-12-17 06:00:00,9163.0
-2012-12-17 07:00:00,9924.0
-2012-12-17 08:00:00,11258.0
-2012-12-17 09:00:00,12018.0
-2012-12-17 10:00:00,12135.0
-2012-12-17 11:00:00,12190.0
-2012-12-17 12:00:00,12236.0
-2012-12-17 13:00:00,12203.0
-2012-12-17 14:00:00,12167.0
-2012-12-17 15:00:00,12181.0
-2012-12-17 16:00:00,12126.0
-2012-12-17 17:00:00,12157.0
-2012-12-17 18:00:00,12978.0
-2012-12-17 19:00:00,13596.0
-2012-12-17 20:00:00,13517.0
-2012-12-17 21:00:00,13331.0
-2012-12-17 22:00:00,13059.0
-2012-12-17 23:00:00,12539.0
-2012-12-18 00:00:00,11566.0
-2012-12-16 01:00:00,9816.0
-2012-12-16 02:00:00,9147.0
-2012-12-16 03:00:00,8679.0
-2012-12-16 04:00:00,8470.0
-2012-12-16 05:00:00,8299.0
-2012-12-16 06:00:00,8356.0
-2012-12-16 07:00:00,8460.0
-2012-12-16 08:00:00,8799.0
-2012-12-16 09:00:00,9040.0
-2012-12-16 10:00:00,9404.0
-2012-12-16 11:00:00,9666.0
-2012-12-16 12:00:00,9879.0
-2012-12-16 13:00:00,10016.0
-2012-12-16 14:00:00,10124.0
-2012-12-16 15:00:00,10174.0
-2012-12-16 16:00:00,10275.0
-2012-12-16 17:00:00,10525.0
-2012-12-16 18:00:00,11410.0
-2012-12-16 19:00:00,11860.0
-2012-12-16 20:00:00,11920.0
-2012-12-16 21:00:00,11785.0
-2012-12-16 22:00:00,11671.0
-2012-12-16 23:00:00,11213.0
-2012-12-17 00:00:00,10556.0
-2012-12-15 01:00:00,10466.0
-2012-12-15 02:00:00,9743.0
-2012-12-15 03:00:00,9298.0
-2012-12-15 04:00:00,9085.0
-2012-12-15 05:00:00,8948.0
-2012-12-15 06:00:00,9020.0
-2012-12-15 07:00:00,9318.0
-2012-12-15 08:00:00,9868.0
-2012-12-15 09:00:00,10325.0
-2012-12-15 10:00:00,10811.0
-2012-12-15 11:00:00,11122.0
-2012-12-15 12:00:00,11337.0
-2012-12-15 13:00:00,11381.0
-2012-12-15 14:00:00,11328.0
-2012-12-15 15:00:00,11118.0
-2012-12-15 16:00:00,11089.0
-2012-12-15 17:00:00,11221.0
-2012-12-15 18:00:00,11779.0
-2012-12-15 19:00:00,12045.0
-2012-12-15 20:00:00,11964.0
-2012-12-15 21:00:00,11729.0
-2012-12-15 22:00:00,11498.0
-2012-12-15 23:00:00,11140.0
-2012-12-16 00:00:00,10546.0
-2012-12-14 01:00:00,10539.0
-2012-12-14 02:00:00,9931.0
-2012-12-14 03:00:00,9588.0
-2012-12-14 04:00:00,9404.0
-2012-12-14 05:00:00,9406.0
-2012-12-14 06:00:00,9687.0
-2012-12-14 07:00:00,10430.0
-2012-12-14 08:00:00,11687.0
-2012-12-14 09:00:00,12143.0
-2012-12-14 10:00:00,12169.0
-2012-12-14 11:00:00,12058.0
-2012-12-14 12:00:00,11963.0
-2012-12-14 13:00:00,11800.0
-2012-12-14 14:00:00,11618.0
-2012-12-14 15:00:00,11621.0
-2012-12-14 16:00:00,11538.0
-2012-12-14 17:00:00,11626.0
-2012-12-14 18:00:00,12626.0
-2012-12-14 19:00:00,13242.0
-2012-12-14 20:00:00,13108.0
-2012-12-14 21:00:00,12838.0
-2012-12-14 22:00:00,12515.0
-2012-12-14 23:00:00,12159.0
-2012-12-15 00:00:00,11313.0
-2012-12-13 01:00:00,10825.0
-2012-12-13 02:00:00,10195.0
-2012-12-13 03:00:00,9822.0
-2012-12-13 04:00:00,9627.0
-2012-12-13 05:00:00,9647.0
-2012-12-13 06:00:00,9895.0
-2012-12-13 07:00:00,10632.0
-2012-12-13 08:00:00,11862.0
-2012-12-13 09:00:00,12351.0
-2012-12-13 10:00:00,12347.0
-2012-12-13 11:00:00,12274.0
-2012-12-13 12:00:00,12163.0
-2012-12-13 13:00:00,12077.0
-2012-12-13 14:00:00,11962.0
-2012-12-13 15:00:00,11892.0
-2012-12-13 16:00:00,11800.0
-2012-12-13 17:00:00,11822.0
-2012-12-13 18:00:00,12784.0
-2012-12-13 19:00:00,13581.0
-2012-12-13 20:00:00,13427.0
-2012-12-13 21:00:00,13252.0
-2012-12-13 22:00:00,12952.0
-2012-12-13 23:00:00,12424.0
-2012-12-14 00:00:00,11468.0
-2012-12-12 01:00:00,11029.0
-2012-12-12 02:00:00,10428.0
-2012-12-12 03:00:00,10047.0
-2012-12-12 04:00:00,9866.0
-2012-12-12 05:00:00,9884.0
-2012-12-12 06:00:00,10166.0
-2012-12-12 07:00:00,10866.0
-2012-12-12 08:00:00,12122.0
-2012-12-12 09:00:00,12599.0
-2012-12-12 10:00:00,12543.0
-2012-12-12 11:00:00,12457.0
-2012-12-12 12:00:00,12413.0
-2012-12-12 13:00:00,12283.0
-2012-12-12 14:00:00,12109.0
-2012-12-12 15:00:00,12047.0
-2012-12-12 16:00:00,11909.0
-2012-12-12 17:00:00,11916.0
-2012-12-12 18:00:00,12838.0
-2012-12-12 19:00:00,13669.0
-2012-12-12 20:00:00,13626.0
-2012-12-12 21:00:00,13482.0
-2012-12-12 22:00:00,13230.0
-2012-12-12 23:00:00,12718.0
-2012-12-13 00:00:00,11742.0
-2012-12-11 01:00:00,10837.0
-2012-12-11 02:00:00,10219.0
-2012-12-11 03:00:00,9889.0
-2012-12-11 04:00:00,9695.0
-2012-12-11 05:00:00,9717.0
-2012-12-11 06:00:00,10007.0
-2012-12-11 07:00:00,10777.0
-2012-12-11 08:00:00,12082.0
-2012-12-11 09:00:00,12597.0
-2012-12-11 10:00:00,12586.0
-2012-12-11 11:00:00,12560.0
-2012-12-11 12:00:00,12564.0
-2012-12-11 13:00:00,12503.0
-2012-12-11 14:00:00,12383.0
-2012-12-11 15:00:00,12360.0
-2012-12-11 16:00:00,12263.0
-2012-12-11 17:00:00,12342.0
-2012-12-11 18:00:00,13265.0
-2012-12-11 19:00:00,14096.0
-2012-12-11 20:00:00,13929.0
-2012-12-11 21:00:00,13763.0
-2012-12-11 22:00:00,13496.0
-2012-12-11 23:00:00,12936.0
-2012-12-12 00:00:00,11990.0
-2012-12-10 01:00:00,9854.0
-2012-12-10 02:00:00,9334.0
-2012-12-10 03:00:00,9129.0
-2012-12-10 04:00:00,9067.0
-2012-12-10 05:00:00,9137.0
-2012-12-10 06:00:00,9471.0
-2012-12-10 07:00:00,10364.0
-2012-12-10 08:00:00,11637.0
-2012-12-10 09:00:00,12443.0
-2012-12-10 10:00:00,12528.0
-2012-12-10 11:00:00,12669.0
-2012-12-10 12:00:00,12782.0
-2012-12-10 13:00:00,12741.0
-2012-12-10 14:00:00,12696.0
-2012-12-10 15:00:00,12624.0
-2012-12-10 16:00:00,12559.0
-2012-12-10 17:00:00,12689.0
-2012-12-10 18:00:00,13495.0
-2012-12-10 19:00:00,14040.0
-2012-12-10 20:00:00,13873.0
-2012-12-10 21:00:00,13731.0
-2012-12-10 22:00:00,13407.0
-2012-12-10 23:00:00,12841.0
-2012-12-11 00:00:00,11797.0
-2012-12-09 01:00:00,10063.0
-2012-12-09 02:00:00,9464.0
-2012-12-09 03:00:00,9110.0
-2012-12-09 04:00:00,8933.0
-2012-12-09 05:00:00,8809.0
-2012-12-09 06:00:00,8814.0
-2012-12-09 07:00:00,8946.0
-2012-12-09 08:00:00,9257.0
-2012-12-09 09:00:00,9424.0
-2012-12-09 10:00:00,9749.0
-2012-12-09 11:00:00,10131.0
-2012-12-09 12:00:00,10410.0
-2012-12-09 13:00:00,10552.0
-2012-12-09 14:00:00,10607.0
-2012-12-09 15:00:00,10582.0
-2012-12-09 16:00:00,10618.0
-2012-12-09 17:00:00,10778.0
-2012-12-09 18:00:00,11508.0
-2012-12-09 19:00:00,12002.0
-2012-12-09 20:00:00,11976.0
-2012-12-09 21:00:00,11930.0
-2012-12-09 22:00:00,11685.0
-2012-12-09 23:00:00,11321.0
-2012-12-10 00:00:00,10576.0
-2012-12-08 01:00:00,10249.0
-2012-12-08 02:00:00,9634.0
-2012-12-08 03:00:00,9272.0
-2012-12-08 04:00:00,9021.0
-2012-12-08 05:00:00,8971.0
-2012-12-08 06:00:00,9006.0
-2012-12-08 07:00:00,9280.0
-2012-12-08 08:00:00,9820.0
-2012-12-08 09:00:00,10200.0
-2012-12-08 10:00:00,10517.0
-2012-12-08 11:00:00,10763.0
-2012-12-08 12:00:00,10898.0
-2012-12-08 13:00:00,10865.0
-2012-12-08 14:00:00,10709.0
-2012-12-08 15:00:00,10527.0
-2012-12-08 16:00:00,10462.0
-2012-12-08 17:00:00,10635.0
-2012-12-08 18:00:00,11526.0
-2012-12-08 19:00:00,12120.0
-2012-12-08 20:00:00,12060.0
-2012-12-08 21:00:00,11936.0
-2012-12-08 22:00:00,11726.0
-2012-12-08 23:00:00,11374.0
-2012-12-09 00:00:00,10765.0
-2012-12-07 01:00:00,10117.0
-2012-12-07 02:00:00,9506.0
-2012-12-07 03:00:00,9157.0
-2012-12-07 04:00:00,8999.0
-2012-12-07 05:00:00,8956.0
-2012-12-07 06:00:00,9185.0
-2012-12-07 07:00:00,9907.0
-2012-12-07 08:00:00,11073.0
-2012-12-07 09:00:00,11695.0
-2012-12-07 10:00:00,11794.0
-2012-12-07 11:00:00,11858.0
-2012-12-07 12:00:00,11903.0
-2012-12-07 13:00:00,11877.0
-2012-12-07 14:00:00,11899.0
-2012-12-07 15:00:00,11934.0
-2012-12-07 16:00:00,11892.0
-2012-12-07 17:00:00,12025.0
-2012-12-07 18:00:00,12807.0
-2012-12-07 19:00:00,13177.0
-2012-12-07 20:00:00,12971.0
-2012-12-07 21:00:00,12674.0
-2012-12-07 22:00:00,12361.0
-2012-12-07 23:00:00,11929.0
-2012-12-08 00:00:00,11106.0
-2012-12-06 01:00:00,10550.0
-2012-12-06 02:00:00,9929.0
-2012-12-06 03:00:00,9606.0
-2012-12-06 04:00:00,9427.0
-2012-12-06 05:00:00,9407.0
-2012-12-06 06:00:00,9655.0
-2012-12-06 07:00:00,10402.0
-2012-12-06 08:00:00,11641.0
-2012-12-06 09:00:00,12179.0
-2012-12-06 10:00:00,12299.0
-2012-12-06 11:00:00,12330.0
-2012-12-06 12:00:00,12320.0
-2012-12-06 13:00:00,12203.0
-2012-12-06 14:00:00,12082.0
-2012-12-06 15:00:00,12091.0
-2012-12-06 16:00:00,12053.0
-2012-12-06 17:00:00,12216.0
-2012-12-06 18:00:00,13058.0
-2012-12-06 19:00:00,13451.0
-2012-12-06 20:00:00,13239.0
-2012-12-06 21:00:00,13022.0
-2012-12-06 22:00:00,12670.0
-2012-12-06 23:00:00,12045.0
-2012-12-07 00:00:00,11080.0
-2012-12-05 01:00:00,9987.0
-2012-12-05 02:00:00,9448.0
-2012-12-05 03:00:00,9158.0
-2012-12-05 04:00:00,9055.0
-2012-12-05 05:00:00,9098.0
-2012-12-05 06:00:00,9413.0
-2012-12-05 07:00:00,10196.0
-2012-12-05 08:00:00,11519.0
-2012-12-05 09:00:00,11971.0
-2012-12-05 10:00:00,12009.0
-2012-12-05 11:00:00,12017.0
-2012-12-05 12:00:00,11999.0
-2012-12-05 13:00:00,11837.0
-2012-12-05 14:00:00,11825.0
-2012-12-05 15:00:00,11800.0
-2012-12-05 16:00:00,11735.0
-2012-12-05 17:00:00,11852.0
-2012-12-05 18:00:00,12826.0
-2012-12-05 19:00:00,13567.0
-2012-12-05 20:00:00,13451.0
-2012-12-05 21:00:00,13257.0
-2012-12-05 22:00:00,13011.0
-2012-12-05 23:00:00,12431.0
-2012-12-06 00:00:00,11446.0
-2012-12-04 01:00:00,9665.0
-2012-12-04 02:00:00,9016.0
-2012-12-04 03:00:00,8616.0
-2012-12-04 04:00:00,8441.0
-2012-12-04 05:00:00,8388.0
-2012-12-04 06:00:00,8581.0
-2012-12-04 07:00:00,9284.0
-2012-12-04 08:00:00,10506.0
-2012-12-04 09:00:00,11111.0
-2012-12-04 10:00:00,11281.0
-2012-12-04 11:00:00,11314.0
-2012-12-04 12:00:00,11357.0
-2012-12-04 13:00:00,11311.0
-2012-12-04 14:00:00,11278.0
-2012-12-04 15:00:00,11348.0
-2012-12-04 16:00:00,11241.0
-2012-12-04 17:00:00,11231.0
-2012-12-04 18:00:00,12030.0
-2012-12-04 19:00:00,12802.0
-2012-12-04 20:00:00,12732.0
-2012-12-04 21:00:00,12560.0
-2012-12-04 22:00:00,12289.0
-2012-12-04 23:00:00,11784.0
-2012-12-05 00:00:00,10851.0
-2012-12-03 01:00:00,9058.0
-2012-12-03 02:00:00,8655.0
-2012-12-03 03:00:00,8389.0
-2012-12-03 04:00:00,8254.0
-2012-12-03 05:00:00,8285.0
-2012-12-03 06:00:00,8512.0
-2012-12-03 07:00:00,9286.0
-2012-12-03 08:00:00,10530.0
-2012-12-03 09:00:00,11280.0
-2012-12-03 10:00:00,11551.0
-2012-12-03 11:00:00,11649.0
-2012-12-03 12:00:00,11799.0
-2012-12-03 13:00:00,11829.0
-2012-12-03 14:00:00,11801.0
-2012-12-03 15:00:00,11814.0
-2012-12-03 16:00:00,11726.0
-2012-12-03 17:00:00,11732.0
-2012-12-03 18:00:00,12544.0
-2012-12-03 19:00:00,13095.0
-2012-12-03 20:00:00,12963.0
-2012-12-03 21:00:00,12686.0
-2012-12-03 22:00:00,12317.0
-2012-12-03 23:00:00,11709.0
-2012-12-04 00:00:00,10689.0
-2012-12-02 01:00:00,9299.0
-2012-12-02 02:00:00,8724.0
-2012-12-02 03:00:00,8389.0
-2012-12-02 04:00:00,8080.0
-2012-12-02 05:00:00,7984.0
-2012-12-02 06:00:00,7932.0
-2012-12-02 07:00:00,8035.0
-2012-12-02 08:00:00,8362.0
-2012-12-02 09:00:00,8443.0
-2012-12-02 10:00:00,8702.0
-2012-12-02 11:00:00,8959.0
-2012-12-02 12:00:00,9171.0
-2012-12-02 13:00:00,9227.0
-2012-12-02 14:00:00,9295.0
-2012-12-02 15:00:00,9257.0
-2012-12-02 16:00:00,9230.0
-2012-12-02 17:00:00,9318.0
-2012-12-02 18:00:00,10329.0
-2012-12-02 19:00:00,11089.0
-2012-12-02 20:00:00,11190.0
-2012-12-02 21:00:00,11055.0
-2012-12-02 22:00:00,10873.0
-2012-12-02 23:00:00,10437.0
-2012-12-03 00:00:00,9762.0
-2012-12-01 01:00:00,10037.0
-2012-12-01 02:00:00,9512.0
-2012-12-01 03:00:00,9103.0
-2012-12-01 04:00:00,8918.0
-2012-12-01 05:00:00,8847.0
-2012-12-01 06:00:00,8936.0
-2012-12-01 07:00:00,9216.0
-2012-12-01 08:00:00,9740.0
-2012-12-01 09:00:00,9943.0
-2012-12-01 10:00:00,10198.0
-2012-12-01 11:00:00,10321.0
-2012-12-01 12:00:00,10316.0
-2012-12-01 13:00:00,10277.0
-2012-12-01 14:00:00,10174.0
-2012-12-01 15:00:00,10163.0
-2012-12-01 16:00:00,10084.0
-2012-12-01 17:00:00,10188.0
-2012-12-01 18:00:00,11054.0
-2012-12-01 19:00:00,11450.0
-2012-12-01 20:00:00,11331.0
-2012-12-01 21:00:00,11170.0
-2012-12-01 22:00:00,10966.0
-2012-12-01 23:00:00,10593.0
-2012-12-02 00:00:00,9988.0
-2012-11-30 01:00:00,10065.0
-2012-11-30 02:00:00,9537.0
-2012-11-30 03:00:00,9169.0
-2012-11-30 04:00:00,8979.0
-2012-11-30 05:00:00,8931.0
-2012-11-30 06:00:00,9171.0
-2012-11-30 07:00:00,9857.0
-2012-11-30 08:00:00,10987.0
-2012-11-30 09:00:00,11479.0
-2012-11-30 10:00:00,11524.0
-2012-11-30 11:00:00,11531.0
-2012-11-30 12:00:00,11582.0
-2012-11-30 13:00:00,11481.0
-2012-11-30 14:00:00,11336.0
-2012-11-30 15:00:00,11324.0
-2012-11-30 16:00:00,11217.0
-2012-11-30 17:00:00,11254.0
-2012-11-30 18:00:00,12091.0
-2012-11-30 19:00:00,12644.0
-2012-11-30 20:00:00,12488.0
-2012-11-30 21:00:00,12262.0
-2012-11-30 22:00:00,12005.0
-2012-11-30 23:00:00,11564.0
-2012-12-01 00:00:00,10861.0
-2012-11-29 01:00:00,10540.0
-2012-11-29 02:00:00,9960.0
-2012-11-29 03:00:00,9625.0
-2012-11-29 04:00:00,9468.0
-2012-11-29 05:00:00,9455.0
-2012-11-29 06:00:00,9747.0
-2012-11-29 07:00:00,10467.0
-2012-11-29 08:00:00,11650.0
-2012-11-29 09:00:00,12059.0
-2012-11-29 10:00:00,12063.0
-2012-11-29 11:00:00,12018.0
-2012-11-29 12:00:00,11976.0
-2012-11-29 13:00:00,11877.0
-2012-11-29 14:00:00,11727.0
-2012-11-29 15:00:00,11660.0
-2012-11-29 16:00:00,11587.0
-2012-11-29 17:00:00,11618.0
-2012-11-29 18:00:00,12463.0
-2012-11-29 19:00:00,13012.0
-2012-11-29 20:00:00,12855.0
-2012-11-29 21:00:00,12681.0
-2012-11-29 22:00:00,12322.0
-2012-11-29 23:00:00,11782.0
-2012-11-30 00:00:00,10900.0
-2012-11-28 01:00:00,10731.0
-2012-11-28 02:00:00,10158.0
-2012-11-28 03:00:00,9844.0
-2012-11-28 04:00:00,9663.0
-2012-11-28 05:00:00,9676.0
-2012-11-28 06:00:00,9936.0
-2012-11-28 07:00:00,10686.0
-2012-11-28 08:00:00,11900.0
-2012-11-28 09:00:00,12311.0
-2012-11-28 10:00:00,12308.0
-2012-11-28 11:00:00,12258.0
-2012-11-28 12:00:00,12226.0
-2012-11-28 13:00:00,12094.0
-2012-11-28 14:00:00,11974.0
-2012-11-28 15:00:00,11886.0
-2012-11-28 16:00:00,11784.0
-2012-11-28 17:00:00,11812.0
-2012-11-28 18:00:00,12588.0
-2012-11-28 19:00:00,13338.0
-2012-11-28 20:00:00,13265.0
-2012-11-28 21:00:00,13119.0
-2012-11-28 22:00:00,12857.0
-2012-11-28 23:00:00,12336.0
-2012-11-29 00:00:00,11423.0
-2012-11-27 01:00:00,10734.0
-2012-11-27 02:00:00,10260.0
-2012-11-27 03:00:00,9995.0
-2012-11-27 04:00:00,9880.0
-2012-11-27 05:00:00,9927.0
-2012-11-27 06:00:00,10238.0
-2012-11-27 07:00:00,11012.0
-2012-11-27 08:00:00,12220.0
-2012-11-27 09:00:00,12594.0
-2012-11-27 10:00:00,12609.0
-2012-11-27 11:00:00,12560.0
-2012-11-27 12:00:00,12535.0
-2012-11-27 13:00:00,12484.0
-2012-11-27 14:00:00,12352.0
-2012-11-27 15:00:00,12293.0
-2012-11-27 16:00:00,12156.0
-2012-11-27 17:00:00,12257.0
-2012-11-27 18:00:00,13103.0
-2012-11-27 19:00:00,13782.0
-2012-11-27 20:00:00,13648.0
-2012-11-27 21:00:00,13447.0
-2012-11-27 22:00:00,13138.0
-2012-11-27 23:00:00,12549.0
-2012-11-28 00:00:00,11625.0
-2012-11-26 01:00:00,9626.0
-2012-11-26 02:00:00,9259.0
-2012-11-26 03:00:00,9086.0
-2012-11-26 04:00:00,9043.0
-2012-11-26 05:00:00,9144.0
-2012-11-26 06:00:00,9530.0
-2012-11-26 07:00:00,10367.0
-2012-11-26 08:00:00,11620.0
-2012-11-26 09:00:00,12122.0
-2012-11-26 10:00:00,12329.0
-2012-11-26 11:00:00,12380.0
-2012-11-26 12:00:00,12421.0
-2012-11-26 13:00:00,12314.0
-2012-11-26 14:00:00,12228.0
-2012-11-26 15:00:00,12305.0
-2012-11-26 16:00:00,12309.0
-2012-11-26 17:00:00,12402.0
-2012-11-26 18:00:00,13150.0
-2012-11-26 19:00:00,13635.0
-2012-11-26 20:00:00,13491.0
-2012-11-26 21:00:00,13298.0
-2012-11-26 22:00:00,13012.0
-2012-11-26 23:00:00,12454.0
-2012-11-27 00:00:00,11547.0
-2012-11-25 01:00:00,9950.0
-2012-11-25 02:00:00,9397.0
-2012-11-25 03:00:00,9075.0
-2012-11-25 04:00:00,8825.0
-2012-11-25 05:00:00,8774.0
-2012-11-25 06:00:00,8781.0
-2012-11-25 07:00:00,8986.0
-2012-11-25 08:00:00,9233.0
-2012-11-25 09:00:00,9277.0
-2012-11-25 10:00:00,9461.0
-2012-11-25 11:00:00,9641.0
-2012-11-25 12:00:00,9716.0
-2012-11-25 13:00:00,9756.0
-2012-11-25 14:00:00,9727.0
-2012-11-25 15:00:00,9695.0
-2012-11-25 16:00:00,9724.0
-2012-11-25 17:00:00,9921.0
-2012-11-25 18:00:00,10917.0
-2012-11-25 19:00:00,11658.0
-2012-11-25 20:00:00,11772.0
-2012-11-25 21:00:00,11671.0
-2012-11-25 22:00:00,11421.0
-2012-11-25 23:00:00,10971.0
-2012-11-26 00:00:00,10302.0
-2012-11-24 01:00:00,9728.0
-2012-11-24 02:00:00,9221.0
-2012-11-24 03:00:00,8957.0
-2012-11-24 04:00:00,8786.0
-2012-11-24 05:00:00,8752.0
-2012-11-24 06:00:00,8864.0
-2012-11-24 07:00:00,9163.0
-2012-11-24 08:00:00,9618.0
-2012-11-24 09:00:00,9804.0
-2012-11-24 10:00:00,10231.0
-2012-11-24 11:00:00,10593.0
-2012-11-24 12:00:00,10713.0
-2012-11-24 13:00:00,10637.0
-2012-11-24 14:00:00,10479.0
-2012-11-24 15:00:00,10253.0
-2012-11-24 16:00:00,10149.0
-2012-11-24 17:00:00,10255.0
-2012-11-24 18:00:00,11162.0
-2012-11-24 19:00:00,11786.0
-2012-11-24 20:00:00,11761.0
-2012-11-24 21:00:00,11688.0
-2012-11-24 22:00:00,11469.0
-2012-11-24 23:00:00,11131.0
-2012-11-25 00:00:00,10603.0
-2012-11-23 01:00:00,8316.0
-2012-11-23 02:00:00,8014.0
-2012-11-23 03:00:00,7841.0
-2012-11-23 04:00:00,7742.0
-2012-11-23 05:00:00,7759.0
-2012-11-23 06:00:00,8010.0
-2012-11-23 07:00:00,8477.0
-2012-11-23 08:00:00,9154.0
-2012-11-23 09:00:00,9494.0
-2012-11-23 10:00:00,9845.0
-2012-11-23 11:00:00,10172.0
-2012-11-23 12:00:00,10367.0
-2012-11-23 13:00:00,10474.0
-2012-11-23 14:00:00,10446.0
-2012-11-23 15:00:00,10376.0
-2012-11-23 16:00:00,10446.0
-2012-11-23 17:00:00,10632.0
-2012-11-23 18:00:00,11328.0
-2012-11-23 19:00:00,11850.0
-2012-11-23 20:00:00,11714.0
-2012-11-23 21:00:00,11527.0
-2012-11-23 22:00:00,11247.0
-2012-11-23 23:00:00,10914.0
-2012-11-24 00:00:00,10365.0
-2012-11-22 01:00:00,9212.0
-2012-11-22 02:00:00,8624.0
-2012-11-22 03:00:00,8217.0
-2012-11-22 04:00:00,7970.0
-2012-11-22 05:00:00,7836.0
-2012-11-22 06:00:00,7869.0
-2012-11-22 07:00:00,8041.0
-2012-11-22 08:00:00,8249.0
-2012-11-22 09:00:00,8177.0
-2012-11-22 10:00:00,8389.0
-2012-11-22 11:00:00,8621.0
-2012-11-22 12:00:00,8792.0
-2012-11-22 13:00:00,8870.0
-2012-11-22 14:00:00,8817.0
-2012-11-22 15:00:00,8708.0
-2012-11-22 16:00:00,8593.0
-2012-11-22 17:00:00,8612.0
-2012-11-22 18:00:00,9226.0
-2012-11-22 19:00:00,9362.0
-2012-11-22 20:00:00,9271.0
-2012-11-22 21:00:00,9170.0
-2012-11-22 22:00:00,9081.0
-2012-11-22 23:00:00,8951.0
-2012-11-23 00:00:00,8666.0
-2012-11-21 01:00:00,9772.0
-2012-11-21 02:00:00,9238.0
-2012-11-21 03:00:00,8900.0
-2012-11-21 04:00:00,8717.0
-2012-11-21 05:00:00,8684.0
-2012-11-21 06:00:00,8938.0
-2012-11-21 07:00:00,9631.0
-2012-11-21 08:00:00,10635.0
-2012-11-21 09:00:00,11174.0
-2012-11-21 10:00:00,11515.0
-2012-11-21 11:00:00,11657.0
-2012-11-21 12:00:00,11697.0
-2012-11-21 13:00:00,11611.0
-2012-11-21 14:00:00,11532.0
-2012-11-21 15:00:00,11417.0
-2012-11-21 16:00:00,11243.0
-2012-11-21 17:00:00,11097.0
-2012-11-21 18:00:00,11562.0
-2012-11-21 19:00:00,12151.0
-2012-11-21 20:00:00,11961.0
-2012-11-21 21:00:00,11654.0
-2012-11-21 22:00:00,11377.0
-2012-11-21 23:00:00,10924.0
-2012-11-22 00:00:00,10071.0
-2012-11-20 01:00:00,9548.0
-2012-11-20 02:00:00,9035.0
-2012-11-20 03:00:00,8741.0
-2012-11-20 04:00:00,8496.0
-2012-11-20 05:00:00,8474.0
-2012-11-20 06:00:00,8737.0
-2012-11-20 07:00:00,9464.0
-2012-11-20 08:00:00,10577.0
-2012-11-20 09:00:00,11221.0
-2012-11-20 10:00:00,11456.0
-2012-11-20 11:00:00,11589.0
-2012-11-20 12:00:00,11637.0
-2012-11-20 13:00:00,11628.0
-2012-11-20 14:00:00,11599.0
-2012-11-20 15:00:00,11546.0
-2012-11-20 16:00:00,11438.0
-2012-11-20 17:00:00,11421.0
-2012-11-20 18:00:00,11911.0
-2012-11-20 19:00:00,12412.0
-2012-11-20 20:00:00,12239.0
-2012-11-20 21:00:00,12050.0
-2012-11-20 22:00:00,11791.0
-2012-11-20 23:00:00,11367.0
-2012-11-21 00:00:00,10596.0
-2012-11-19 01:00:00,9179.0
-2012-11-19 02:00:00,8771.0
-2012-11-19 03:00:00,8586.0
-2012-11-19 04:00:00,8498.0
-2012-11-19 05:00:00,8526.0
-2012-11-19 06:00:00,8808.0
-2012-11-19 07:00:00,9603.0
-2012-11-19 08:00:00,10772.0
-2012-11-19 09:00:00,11320.0
-2012-11-19 10:00:00,11591.0
-2012-11-19 11:00:00,11595.0
-2012-11-19 12:00:00,11582.0
-2012-11-19 13:00:00,11489.0
-2012-11-19 14:00:00,11404.0
-2012-11-19 15:00:00,11397.0
-2012-11-19 16:00:00,11323.0
-2012-11-19 17:00:00,11433.0
-2012-11-19 18:00:00,12143.0
-2012-11-19 19:00:00,12465.0
-2012-11-19 20:00:00,12211.0
-2012-11-19 21:00:00,12004.0
-2012-11-19 22:00:00,11710.0
-2012-11-19 23:00:00,11194.0
-2012-11-20 00:00:00,10372.0
-2012-11-18 01:00:00,9388.0
-2012-11-18 02:00:00,9023.0
-2012-11-18 03:00:00,8711.0
-2012-11-18 04:00:00,8524.0
-2012-11-18 05:00:00,8499.0
-2012-11-18 06:00:00,8560.0
-2012-11-18 07:00:00,8700.0
-2012-11-18 08:00:00,8897.0
-2012-11-18 09:00:00,8968.0
-2012-11-18 10:00:00,9135.0
-2012-11-18 11:00:00,9291.0
-2012-11-18 12:00:00,9324.0
-2012-11-18 13:00:00,9388.0
-2012-11-18 14:00:00,9351.0
-2012-11-18 15:00:00,9360.0
-2012-11-18 16:00:00,9300.0
-2012-11-18 17:00:00,9448.0
-2012-11-18 18:00:00,10151.0
-2012-11-18 19:00:00,10921.0
-2012-11-18 20:00:00,10910.0
-2012-11-18 21:00:00,10838.0
-2012-11-18 22:00:00,10587.0
-2012-11-18 23:00:00,10265.0
-2012-11-19 00:00:00,9701.0
-2012-11-17 01:00:00,9894.0
-2012-11-17 02:00:00,9415.0
-2012-11-17 03:00:00,9122.0
-2012-11-17 04:00:00,8931.0
-2012-11-17 05:00:00,8849.0
-2012-11-17 06:00:00,8954.0
-2012-11-17 07:00:00,9286.0
-2012-11-17 08:00:00,9723.0
-2012-11-17 09:00:00,9931.0
-2012-11-17 10:00:00,10177.0
-2012-11-17 11:00:00,10296.0
-2012-11-17 12:00:00,10307.0
-2012-11-17 13:00:00,10192.0
-2012-11-17 14:00:00,10074.0
-2012-11-17 15:00:00,9824.0
-2012-11-17 16:00:00,9741.0
-2012-11-17 17:00:00,9770.0
-2012-11-17 18:00:00,10395.0
-2012-11-17 19:00:00,11007.0
-2012-11-17 20:00:00,10973.0
-2012-11-17 21:00:00,10807.0
-2012-11-17 22:00:00,10673.0
-2012-11-17 23:00:00,10366.0
-2012-11-18 00:00:00,9939.0
-2012-11-16 01:00:00,10098.0
-2012-11-16 02:00:00,9600.0
-2012-11-16 03:00:00,9333.0
-2012-11-16 04:00:00,9152.0
-2012-11-16 05:00:00,9149.0
-2012-11-16 06:00:00,9429.0
-2012-11-16 07:00:00,10135.0
-2012-11-16 08:00:00,11223.0
-2012-11-16 09:00:00,11605.0
-2012-11-16 10:00:00,11638.0
-2012-11-16 11:00:00,11601.0
-2012-11-16 12:00:00,11584.0
-2012-11-16 13:00:00,11464.0
-2012-11-16 14:00:00,11371.0
-2012-11-16 15:00:00,11332.0
-2012-11-16 16:00:00,11214.0
-2012-11-16 17:00:00,11157.0
-2012-11-16 18:00:00,11675.0
-2012-11-16 19:00:00,12276.0
-2012-11-16 20:00:00,12144.0
-2012-11-16 21:00:00,11912.0
-2012-11-16 22:00:00,11613.0
-2012-11-16 23:00:00,11257.0
-2012-11-17 00:00:00,10543.0
-2012-11-15 01:00:00,10218.0
-2012-11-15 02:00:00,9736.0
-2012-11-15 03:00:00,9474.0
-2012-11-15 04:00:00,9299.0
-2012-11-15 05:00:00,9325.0
-2012-11-15 06:00:00,9562.0
-2012-11-15 07:00:00,10328.0
-2012-11-15 08:00:00,11406.0
-2012-11-15 09:00:00,11883.0
-2012-11-15 10:00:00,12028.0
-2012-11-15 11:00:00,12059.0
-2012-11-15 12:00:00,11994.0
-2012-11-15 13:00:00,11857.0
-2012-11-15 14:00:00,11697.0
-2012-11-15 15:00:00,11646.0
-2012-11-15 16:00:00,11517.0
-2012-11-15 17:00:00,11467.0
-2012-11-15 18:00:00,12015.0
-2012-11-15 19:00:00,12711.0
-2012-11-15 20:00:00,12581.0
-2012-11-15 21:00:00,12371.0
-2012-11-15 22:00:00,12101.0
-2012-11-15 23:00:00,11608.0
-2012-11-16 00:00:00,10803.0
-2012-11-14 01:00:00,10308.0
-2012-11-14 02:00:00,9854.0
-2012-11-14 03:00:00,9589.0
-2012-11-14 04:00:00,9431.0
-2012-11-14 05:00:00,9396.0
-2012-11-14 06:00:00,9654.0
-2012-11-14 07:00:00,10369.0
-2012-11-14 08:00:00,11468.0
-2012-11-14 09:00:00,11932.0
-2012-11-14 10:00:00,12005.0
-2012-11-14 11:00:00,12010.0
-2012-11-14 12:00:00,12027.0
-2012-11-14 13:00:00,11924.0
-2012-11-14 14:00:00,11776.0
-2012-11-14 15:00:00,11712.0
-2012-11-14 16:00:00,11626.0
-2012-11-14 17:00:00,11555.0
-2012-11-14 18:00:00,12108.0
-2012-11-14 19:00:00,12819.0
-2012-11-14 20:00:00,12721.0
-2012-11-14 21:00:00,12540.0
-2012-11-14 22:00:00,12274.0
-2012-11-14 23:00:00,11739.0
-2012-11-15 00:00:00,10955.0
-2012-11-13 01:00:00,10288.0
-2012-11-13 02:00:00,9824.0
-2012-11-13 03:00:00,9565.0
-2012-11-13 04:00:00,9455.0
-2012-11-13 05:00:00,9466.0
-2012-11-13 06:00:00,9749.0
-2012-11-13 07:00:00,10521.0
-2012-11-13 08:00:00,11625.0
-2012-11-13 09:00:00,12031.0
-2012-11-13 10:00:00,12130.0
-2012-11-13 11:00:00,12129.0
-2012-11-13 12:00:00,12115.0
-2012-11-13 13:00:00,12028.0
-2012-11-13 14:00:00,11914.0
-2012-11-13 15:00:00,11888.0
-2012-11-13 16:00:00,11696.0
-2012-11-13 17:00:00,11709.0
-2012-11-13 18:00:00,12245.0
-2012-11-13 19:00:00,12969.0
-2012-11-13 20:00:00,12880.0
-2012-11-13 21:00:00,12732.0
-2012-11-13 22:00:00,12415.0
-2012-11-13 23:00:00,11889.0
-2012-11-14 00:00:00,11064.0
-2012-11-12 01:00:00,8874.0
-2012-11-12 02:00:00,8564.0
-2012-11-12 03:00:00,8381.0
-2012-11-12 04:00:00,8358.0
-2012-11-12 05:00:00,8428.0
-2012-11-12 06:00:00,8788.0
-2012-11-12 07:00:00,9582.0
-2012-11-12 08:00:00,10806.0
-2012-11-12 09:00:00,11338.0
-2012-11-12 10:00:00,11560.0
-2012-11-12 11:00:00,11763.0
-2012-11-12 12:00:00,11884.0
-2012-11-12 13:00:00,11903.0
-2012-11-12 14:00:00,11863.0
-2012-11-12 15:00:00,11896.0
-2012-11-12 16:00:00,11942.0
-2012-11-12 17:00:00,12107.0
-2012-11-12 18:00:00,12731.0
-2012-11-12 19:00:00,13208.0
-2012-11-12 20:00:00,13005.0
-2012-11-12 21:00:00,12746.0
-2012-11-12 22:00:00,12402.0
-2012-11-12 23:00:00,11839.0
-2012-11-13 00:00:00,11014.0
-2012-11-11 01:00:00,8980.0
-2012-11-11 02:00:00,8486.0
-2012-11-11 03:00:00,8165.0
-2012-11-11 04:00:00,7922.0
-2012-11-11 05:00:00,7851.0
-2012-11-11 06:00:00,7787.0
-2012-11-11 07:00:00,7969.0
-2012-11-11 08:00:00,8121.0
-2012-11-11 09:00:00,8274.0
-2012-11-11 10:00:00,8605.0
-2012-11-11 11:00:00,8905.0
-2012-11-11 12:00:00,9126.0
-2012-11-11 13:00:00,9222.0
-2012-11-11 14:00:00,9278.0
-2012-11-11 15:00:00,9253.0
-2012-11-11 16:00:00,9325.0
-2012-11-11 17:00:00,9619.0
-2012-11-11 18:00:00,10343.0
-2012-11-11 19:00:00,10695.0
-2012-11-11 20:00:00,10640.0
-2012-11-11 21:00:00,10449.0
-2012-11-11 22:00:00,10199.0
-2012-11-11 23:00:00,9909.0
-2012-11-12 00:00:00,9432.0
-2012-11-10 01:00:00,9446.0
-2012-11-10 02:00:00,8948.0
-2012-11-10 03:00:00,8585.0
-2012-11-10 04:00:00,8381.0
-2012-11-10 05:00:00,8260.0
-2012-11-10 06:00:00,8362.0
-2012-11-10 07:00:00,8610.0
-2012-11-10 08:00:00,8957.0
-2012-11-10 09:00:00,9242.0
-2012-11-10 10:00:00,9660.0
-2012-11-10 11:00:00,9914.0
-2012-11-10 12:00:00,10031.0
-2012-11-10 13:00:00,10143.0
-2012-11-10 14:00:00,10158.0
-2012-11-10 15:00:00,10077.0
-2012-11-10 16:00:00,9872.0
-2012-11-10 17:00:00,9784.0
-2012-11-10 18:00:00,10265.0
-2012-11-10 19:00:00,10863.0
-2012-11-10 20:00:00,10790.0
-2012-11-10 21:00:00,10536.0
-2012-11-10 22:00:00,10400.0
-2012-11-10 23:00:00,10041.0
-2012-11-11 00:00:00,9521.0
-2012-11-09 01:00:00,9911.0
-2012-11-09 02:00:00,9436.0
-2012-11-09 03:00:00,9140.0
-2012-11-09 04:00:00,8970.0
-2012-11-09 05:00:00,8974.0
-2012-11-09 06:00:00,9197.0
-2012-11-09 07:00:00,9900.0
-2012-11-09 08:00:00,10930.0
-2012-11-09 09:00:00,11320.0
-2012-11-09 10:00:00,11481.0
-2012-11-09 11:00:00,11549.0
-2012-11-09 12:00:00,11514.0
-2012-11-09 13:00:00,11415.0
-2012-11-09 14:00:00,11359.0
-2012-11-09 15:00:00,11350.0
-2012-11-09 16:00:00,11264.0
-2012-11-09 17:00:00,11211.0
-2012-11-09 18:00:00,11608.0
-2012-11-09 19:00:00,12110.0
-2012-11-09 20:00:00,11899.0
-2012-11-09 21:00:00,11610.0
-2012-11-09 22:00:00,11299.0
-2012-11-09 23:00:00,10890.0
-2012-11-10 00:00:00,10196.0
-2012-11-08 01:00:00,9749.0
-2012-11-08 02:00:00,9277.0
-2012-11-08 03:00:00,8978.0
-2012-11-08 04:00:00,8783.0
-2012-11-08 05:00:00,8763.0
-2012-11-08 06:00:00,9007.0
-2012-11-08 07:00:00,9716.0
-2012-11-08 08:00:00,10868.0
-2012-11-08 09:00:00,11467.0
-2012-11-08 10:00:00,11677.0
-2012-11-08 11:00:00,11770.0
-2012-11-08 12:00:00,11909.0
-2012-11-08 13:00:00,11867.0
-2012-11-08 14:00:00,11814.0
-2012-11-08 15:00:00,11755.0
-2012-11-08 16:00:00,11673.0
-2012-11-08 17:00:00,11581.0
-2012-11-08 18:00:00,11909.0
-2012-11-08 19:00:00,12615.0
-2012-11-08 20:00:00,12511.0
-2012-11-08 21:00:00,12315.0
-2012-11-08 22:00:00,12006.0
-2012-11-08 23:00:00,11503.0
-2012-11-09 00:00:00,10662.0
-2012-11-07 01:00:00,10021.0
-2012-11-07 02:00:00,9546.0
-2012-11-07 03:00:00,9204.0
-2012-11-07 04:00:00,8984.0
-2012-11-07 05:00:00,8949.0
-2012-11-07 06:00:00,9194.0
-2012-11-07 07:00:00,9886.0
-2012-11-07 08:00:00,11064.0
-2012-11-07 09:00:00,11627.0
-2012-11-07 10:00:00,11851.0
-2012-11-07 11:00:00,11909.0
-2012-11-07 12:00:00,11892.0
-2012-11-07 13:00:00,11890.0
-2012-11-07 14:00:00,11814.0
-2012-11-07 15:00:00,11815.0
-2012-11-07 16:00:00,11749.0
-2012-11-07 17:00:00,11808.0
-2012-11-07 18:00:00,12282.0
-2012-11-07 19:00:00,12688.0
-2012-11-07 20:00:00,12471.0
-2012-11-07 21:00:00,12231.0
-2012-11-07 22:00:00,11888.0
-2012-11-07 23:00:00,11341.0
-2012-11-08 00:00:00,10530.0
-2012-11-06 01:00:00,9941.0
-2012-11-06 02:00:00,9487.0
-2012-11-06 03:00:00,9247.0
-2012-11-06 04:00:00,9117.0
-2012-11-06 05:00:00,9111.0
-2012-11-06 06:00:00,9422.0
-2012-11-06 07:00:00,10227.0
-2012-11-06 08:00:00,11213.0
-2012-11-06 09:00:00,11590.0
-2012-11-06 10:00:00,11776.0
-2012-11-06 11:00:00,11912.0
-2012-11-06 12:00:00,12104.0
-2012-11-06 13:00:00,12150.0
-2012-11-06 14:00:00,12109.0
-2012-11-06 15:00:00,12148.0
-2012-11-06 16:00:00,12077.0
-2012-11-06 17:00:00,12044.0
-2012-11-06 18:00:00,12537.0
-2012-11-06 19:00:00,12946.0
-2012-11-06 20:00:00,12730.0
-2012-11-06 21:00:00,12520.0
-2012-11-06 22:00:00,12171.0
-2012-11-06 23:00:00,11558.0
-2012-11-07 00:00:00,10753.0
-2012-11-05 01:00:00,9100.0
-2012-11-05 02:00:00,8797.0
-2012-11-05 03:00:00,8665.0
-2012-11-05 04:00:00,8600.0
-2012-11-05 05:00:00,8678.0
-2012-11-05 06:00:00,9003.0
-2012-11-05 07:00:00,9840.0
-2012-11-05 08:00:00,11004.0
-2012-11-05 09:00:00,11603.0
-2012-11-05 10:00:00,11777.0
-2012-11-05 11:00:00,11875.0
-2012-11-05 12:00:00,11907.0
-2012-11-05 13:00:00,11894.0
-2012-11-05 14:00:00,11848.0
-2012-11-05 15:00:00,11851.0
-2012-11-05 16:00:00,11776.0
-2012-11-05 17:00:00,11777.0
-2012-11-05 18:00:00,12182.0
-2012-11-05 19:00:00,12771.0
-2012-11-05 20:00:00,12599.0
-2012-11-05 21:00:00,12364.0
-2012-11-05 22:00:00,12052.0
-2012-11-05 23:00:00,11489.0
-2012-11-06 00:00:00,10660.0
-2012-11-04 01:00:00,9382.0
-2012-11-04 03:00:00,8546.0
-2012-11-04 04:00:00,8495.0
-2012-11-04 05:00:00,8424.0
-2012-11-04 06:00:00,8412.0
-2012-11-04 07:00:00,8621.0
-2012-11-04 08:00:00,8817.0
-2012-11-04 09:00:00,9009.0
-2012-11-04 10:00:00,9186.0
-2012-11-04 11:00:00,9106.0
-2012-11-04 12:00:00,9324.0
-2012-11-04 13:00:00,9331.0
-2012-11-04 14:00:00,9272.0
-2012-11-04 15:00:00,9223.0
-2012-11-04 16:00:00,9211.0
-2012-11-04 17:00:00,9260.0
-2012-11-04 18:00:00,9864.0
-2012-11-04 19:00:00,10779.0
-2012-11-04 20:00:00,10868.0
-2012-11-04 21:00:00,10808.0
-2012-11-04 22:00:00,10566.0
-2012-11-04 23:00:00,10240.0
-2012-11-05 00:00:00,9541.0
-2012-11-03 01:00:00,9726.0
-2012-11-03 02:00:00,9140.0
-2012-11-03 03:00:00,8827.0
-2012-11-03 04:00:00,8623.0
-2012-11-03 05:00:00,8537.0
-2012-11-03 06:00:00,8577.0
-2012-11-03 07:00:00,8830.0
-2012-11-03 08:00:00,9388.0
-2012-11-03 09:00:00,9839.0
-2012-11-03 10:00:00,10104.0
-2012-11-03 11:00:00,10347.0
-2012-11-03 12:00:00,10464.0
-2012-11-03 13:00:00,10415.0
-2012-11-03 14:00:00,10290.0
-2012-11-03 15:00:00,10078.0
-2012-11-03 16:00:00,9995.0
-2012-11-03 17:00:00,9915.0
-2012-11-03 18:00:00,10072.0
-2012-11-03 19:00:00,10411.0
-2012-11-03 20:00:00,10881.0
-2012-11-03 21:00:00,10775.0
-2012-11-03 22:00:00,10629.0
-2012-11-03 23:00:00,10337.0
-2012-11-04 00:00:00,9948.0
-2012-11-02 01:00:00,9729.0
-2012-11-02 02:00:00,9211.0
-2012-11-02 03:00:00,8924.0
-2012-11-02 04:00:00,8767.0
-2012-11-02 05:00:00,8779.0
-2012-11-02 06:00:00,9010.0
-2012-11-02 07:00:00,9729.0
-2012-11-02 08:00:00,10978.0
-2012-11-02 09:00:00,11704.0
-2012-11-02 10:00:00,11676.0
-2012-11-02 11:00:00,11664.0
-2012-11-02 12:00:00,11612.0
-2012-11-02 13:00:00,11493.0
-2012-11-02 14:00:00,11354.0
-2012-11-02 15:00:00,11282.0
-2012-11-02 16:00:00,11120.0
-2012-11-02 17:00:00,10948.0
-2012-11-02 18:00:00,10933.0
-2012-11-02 19:00:00,11280.0
-2012-11-02 20:00:00,11873.0
-2012-11-02 21:00:00,11744.0
-2012-11-02 22:00:00,11491.0
-2012-11-02 23:00:00,11093.0
-2012-11-03 00:00:00,10405.0
-2012-11-01 01:00:00,9753.0
-2012-11-01 02:00:00,9314.0
-2012-11-01 03:00:00,9054.0
-2012-11-01 04:00:00,8913.0
-2012-11-01 05:00:00,8912.0
-2012-11-01 06:00:00,9131.0
-2012-11-01 07:00:00,9891.0
-2012-11-01 08:00:00,11179.0
-2012-11-01 09:00:00,11863.0
-2012-11-01 10:00:00,11841.0
-2012-11-01 11:00:00,11785.0
-2012-11-01 12:00:00,11777.0
-2012-11-01 13:00:00,11687.0
-2012-11-01 14:00:00,11570.0
-2012-11-01 15:00:00,11497.0
-2012-11-01 16:00:00,11400.0
-2012-11-01 17:00:00,11262.0
-2012-11-01 18:00:00,11209.0
-2012-11-01 19:00:00,11494.0
-2012-11-01 20:00:00,12105.0
-2012-11-01 21:00:00,12023.0
-2012-11-01 22:00:00,11772.0
-2012-11-01 23:00:00,11288.0
-2012-11-02 00:00:00,10500.0
-2012-10-31 01:00:00,9878.0
-2012-10-31 02:00:00,9347.0
-2012-10-31 03:00:00,9032.0
-2012-10-31 04:00:00,8878.0
-2012-10-31 05:00:00,8856.0
-2012-10-31 06:00:00,9095.0
-2012-10-31 07:00:00,9852.0
-2012-10-31 08:00:00,11163.0
-2012-10-31 09:00:00,11931.0
-2012-10-31 10:00:00,11956.0
-2012-10-31 11:00:00,11951.0
-2012-10-31 12:00:00,11885.0
-2012-10-31 13:00:00,11764.0
-2012-10-31 14:00:00,11659.0
-2012-10-31 15:00:00,11620.0
-2012-10-31 16:00:00,11397.0
-2012-10-31 17:00:00,11302.0
-2012-10-31 18:00:00,11216.0
-2012-10-31 19:00:00,11463.0
-2012-10-31 20:00:00,11962.0
-2012-10-31 21:00:00,11878.0
-2012-10-31 22:00:00,11655.0
-2012-10-31 23:00:00,11228.0
-2012-11-01 00:00:00,10466.0
-2012-10-30 01:00:00,9739.0
-2012-10-30 02:00:00,9232.0
-2012-10-30 03:00:00,8913.0
-2012-10-30 04:00:00,8786.0
-2012-10-30 05:00:00,8756.0
-2012-10-30 06:00:00,9012.0
-2012-10-30 07:00:00,9745.0
-2012-10-30 08:00:00,11067.0
-2012-10-30 09:00:00,11890.0
-2012-10-30 10:00:00,11909.0
-2012-10-30 11:00:00,11998.0
-2012-10-30 12:00:00,12055.0
-2012-10-30 13:00:00,11915.0
-2012-10-30 14:00:00,11768.0
-2012-10-30 15:00:00,11724.0
-2012-10-30 16:00:00,11672.0
-2012-10-30 17:00:00,11546.0
-2012-10-30 18:00:00,11581.0
-2012-10-30 19:00:00,11873.0
-2012-10-30 20:00:00,12359.0
-2012-10-30 21:00:00,12275.0
-2012-10-30 22:00:00,11994.0
-2012-10-30 23:00:00,11507.0
-2012-10-31 00:00:00,10672.0
-2012-10-29 01:00:00,9084.0
-2012-10-29 02:00:00,8749.0
-2012-10-29 03:00:00,8525.0
-2012-10-29 04:00:00,8458.0
-2012-10-29 05:00:00,8412.0
-2012-10-29 06:00:00,8738.0
-2012-10-29 07:00:00,9544.0
-2012-10-29 08:00:00,10865.0
-2012-10-29 09:00:00,11656.0
-2012-10-29 10:00:00,11595.0
-2012-10-29 11:00:00,11566.0
-2012-10-29 12:00:00,11598.0
-2012-10-29 13:00:00,11545.0
-2012-10-29 14:00:00,11471.0
-2012-10-29 15:00:00,11427.0
-2012-10-29 16:00:00,11279.0
-2012-10-29 17:00:00,11170.0
-2012-10-29 18:00:00,11149.0
-2012-10-29 19:00:00,11396.0
-2012-10-29 20:00:00,12132.0
-2012-10-29 21:00:00,12076.0
-2012-10-29 22:00:00,11807.0
-2012-10-29 23:00:00,11315.0
-2012-10-30 00:00:00,10506.0
-2012-10-28 01:00:00,9182.0
-2012-10-28 02:00:00,8771.0
-2012-10-28 03:00:00,8454.0
-2012-10-28 04:00:00,8325.0
-2012-10-28 05:00:00,8218.0
-2012-10-28 06:00:00,8207.0
-2012-10-28 07:00:00,8329.0
-2012-10-28 08:00:00,8590.0
-2012-10-28 09:00:00,8826.0
-2012-10-28 10:00:00,8986.0
-2012-10-28 11:00:00,9201.0
-2012-10-28 12:00:00,9299.0
-2012-10-28 13:00:00,9366.0
-2012-10-28 14:00:00,9345.0
-2012-10-28 15:00:00,9319.0
-2012-10-28 16:00:00,9239.0
-2012-10-28 17:00:00,9220.0
-2012-10-28 18:00:00,9301.0
-2012-10-28 19:00:00,9715.0
-2012-10-28 20:00:00,10519.0
-2012-10-28 21:00:00,10636.0
-2012-10-28 22:00:00,10526.0
-2012-10-28 23:00:00,10193.0
-2012-10-29 00:00:00,9676.0
-2012-10-27 01:00:00,9576.0
-2012-10-27 02:00:00,9056.0
-2012-10-27 03:00:00,8752.0
-2012-10-27 04:00:00,8554.0
-2012-10-27 05:00:00,8471.0
-2012-10-27 06:00:00,8463.0
-2012-10-27 07:00:00,8796.0
-2012-10-27 08:00:00,9280.0
-2012-10-27 09:00:00,9666.0
-2012-10-27 10:00:00,9846.0
-2012-10-27 11:00:00,10028.0
-2012-10-27 12:00:00,10068.0
-2012-10-27 13:00:00,9997.0
-2012-10-27 14:00:00,9829.0
-2012-10-27 15:00:00,9664.0
-2012-10-27 16:00:00,9479.0
-2012-10-27 17:00:00,9413.0
-2012-10-27 18:00:00,9469.0
-2012-10-27 19:00:00,9814.0
-2012-10-27 20:00:00,10599.0
-2012-10-27 21:00:00,10625.0
-2012-10-27 22:00:00,10484.0
-2012-10-27 23:00:00,10196.0
-2012-10-28 00:00:00,9705.0
-2012-10-26 01:00:00,9283.0
-2012-10-26 02:00:00,8760.0
-2012-10-26 03:00:00,8406.0
-2012-10-26 04:00:00,8247.0
-2012-10-26 05:00:00,8183.0
-2012-10-26 06:00:00,8423.0
-2012-10-26 07:00:00,9150.0
-2012-10-26 08:00:00,10386.0
-2012-10-26 09:00:00,11115.0
-2012-10-26 10:00:00,11251.0
-2012-10-26 11:00:00,11374.0
-2012-10-26 12:00:00,11426.0
-2012-10-26 13:00:00,11373.0
-2012-10-26 14:00:00,11272.0
-2012-10-26 15:00:00,11209.0
-2012-10-26 16:00:00,11034.0
-2012-10-26 17:00:00,10867.0
-2012-10-26 18:00:00,10778.0
-2012-10-26 19:00:00,11022.0
-2012-10-26 20:00:00,11573.0
-2012-10-26 21:00:00,11499.0
-2012-10-26 22:00:00,11252.0
-2012-10-26 23:00:00,10894.0
-2012-10-27 00:00:00,10224.0
-2012-10-25 01:00:00,9989.0
-2012-10-25 02:00:00,9437.0
-2012-10-25 03:00:00,8881.0
-2012-10-25 04:00:00,8645.0
-2012-10-25 05:00:00,8515.0
-2012-10-25 06:00:00,8667.0
-2012-10-25 07:00:00,9334.0
-2012-10-25 08:00:00,10624.0
-2012-10-25 09:00:00,11290.0
-2012-10-25 10:00:00,11567.0
-2012-10-25 11:00:00,11860.0
-2012-10-25 12:00:00,12190.0
-2012-10-25 13:00:00,12315.0
-2012-10-25 14:00:00,12425.0
-2012-10-25 15:00:00,12527.0
-2012-10-25 16:00:00,12468.0
-2012-10-25 17:00:00,12397.0
-2012-10-25 18:00:00,12372.0
-2012-10-25 19:00:00,12365.0
-2012-10-25 20:00:00,12328.0
-2012-10-25 21:00:00,11938.0
-2012-10-25 22:00:00,11503.0
-2012-10-25 23:00:00,10935.0
-2012-10-26 00:00:00,10059.0
-2012-10-24 01:00:00,9549.0
-2012-10-24 02:00:00,8999.0
-2012-10-24 03:00:00,8582.0
-2012-10-24 04:00:00,8367.0
-2012-10-24 05:00:00,8286.0
-2012-10-24 06:00:00,8487.0
-2012-10-24 07:00:00,9120.0
-2012-10-24 08:00:00,10382.0
-2012-10-24 09:00:00,11094.0
-2012-10-24 10:00:00,11311.0
-2012-10-24 11:00:00,11562.0
-2012-10-24 12:00:00,11862.0
-2012-10-24 13:00:00,12032.0
-2012-10-24 14:00:00,12181.0
-2012-10-24 15:00:00,12405.0
-2012-10-24 16:00:00,12421.0
-2012-10-24 17:00:00,12409.0
-2012-10-24 18:00:00,12350.0
-2012-10-24 19:00:00,12377.0
-2012-10-24 20:00:00,12831.0
-2012-10-24 21:00:00,12778.0
-2012-10-24 22:00:00,12412.0
-2012-10-24 23:00:00,11794.0
-2012-10-25 00:00:00,10849.0
-2012-10-23 01:00:00,9507.0
-2012-10-23 02:00:00,8902.0
-2012-10-23 03:00:00,8502.0
-2012-10-23 04:00:00,8287.0
-2012-10-23 05:00:00,8224.0
-2012-10-23 06:00:00,8355.0
-2012-10-23 07:00:00,9028.0
-2012-10-23 08:00:00,10314.0
-2012-10-23 09:00:00,11175.0
-2012-10-23 10:00:00,11474.0
-2012-10-23 11:00:00,11608.0
-2012-10-23 12:00:00,11771.0
-2012-10-23 13:00:00,11809.0
-2012-10-23 14:00:00,11880.0
-2012-10-23 15:00:00,11961.0
-2012-10-23 16:00:00,11894.0
-2012-10-23 17:00:00,11796.0
-2012-10-23 18:00:00,11696.0
-2012-10-23 19:00:00,11643.0
-2012-10-23 20:00:00,12149.0
-2012-10-23 21:00:00,12083.0
-2012-10-23 22:00:00,11765.0
-2012-10-23 23:00:00,11181.0
-2012-10-24 00:00:00,10384.0
-2012-10-22 01:00:00,8576.0
-2012-10-22 02:00:00,8167.0
-2012-10-22 03:00:00,7931.0
-2012-10-22 04:00:00,7786.0
-2012-10-22 05:00:00,7800.0
-2012-10-22 06:00:00,8089.0
-2012-10-22 07:00:00,8797.0
-2012-10-22 08:00:00,10082.0
-2012-10-22 09:00:00,10834.0
-2012-10-22 10:00:00,11143.0
-2012-10-22 11:00:00,11345.0
-2012-10-22 12:00:00,11635.0
-2012-10-22 13:00:00,11845.0
-2012-10-22 14:00:00,11843.0
-2012-10-22 15:00:00,11784.0
-2012-10-22 16:00:00,11643.0
-2012-10-22 17:00:00,11569.0
-2012-10-22 18:00:00,11611.0
-2012-10-22 19:00:00,11842.0
-2012-10-22 20:00:00,12164.0
-2012-10-22 21:00:00,12048.0
-2012-10-22 22:00:00,11682.0
-2012-10-22 23:00:00,11155.0
-2012-10-23 00:00:00,10368.0
-2012-10-21 01:00:00,8914.0
-2012-10-21 02:00:00,8458.0
-2012-10-21 03:00:00,8208.0
-2012-10-21 04:00:00,7976.0
-2012-10-21 05:00:00,7909.0
-2012-10-21 06:00:00,7919.0
-2012-10-21 07:00:00,8102.0
-2012-10-21 08:00:00,8343.0
-2012-10-21 09:00:00,8420.0
-2012-10-21 10:00:00,8607.0
-2012-10-21 11:00:00,8799.0
-2012-10-21 12:00:00,8896.0
-2012-10-21 13:00:00,8988.0
-2012-10-21 14:00:00,8994.0
-2012-10-21 15:00:00,9019.0
-2012-10-21 16:00:00,8990.0
-2012-10-21 17:00:00,8998.0
-2012-10-21 18:00:00,9059.0
-2012-10-21 19:00:00,9280.0
-2012-10-21 20:00:00,10091.0
-2012-10-21 21:00:00,10311.0
-2012-10-21 22:00:00,10108.0
-2012-10-21 23:00:00,9746.0
-2012-10-22 00:00:00,9149.0
-2012-10-20 01:00:00,9426.0
-2012-10-20 02:00:00,8895.0
-2012-10-20 03:00:00,8599.0
-2012-10-20 04:00:00,8384.0
-2012-10-20 05:00:00,8285.0
-2012-10-20 06:00:00,8286.0
-2012-10-20 07:00:00,8628.0
-2012-10-20 08:00:00,9140.0
-2012-10-20 09:00:00,9415.0
-2012-10-20 10:00:00,9694.0
-2012-10-20 11:00:00,9821.0
-2012-10-20 12:00:00,9879.0
-2012-10-20 13:00:00,9806.0
-2012-10-20 14:00:00,9713.0
-2012-10-20 15:00:00,9519.0
-2012-10-20 16:00:00,9401.0
-2012-10-20 17:00:00,9283.0
-2012-10-20 18:00:00,9274.0
-2012-10-20 19:00:00,9400.0
-2012-10-20 20:00:00,10107.0
-2012-10-20 21:00:00,10266.0
-2012-10-20 22:00:00,10122.0
-2012-10-20 23:00:00,9885.0
-2012-10-21 00:00:00,9380.0
-2012-10-19 01:00:00,9530.0
-2012-10-19 02:00:00,8985.0
-2012-10-19 03:00:00,8646.0
-2012-10-19 04:00:00,8465.0
-2012-10-19 05:00:00,8403.0
-2012-10-19 06:00:00,8592.0
-2012-10-19 07:00:00,9252.0
-2012-10-19 08:00:00,10413.0
-2012-10-19 09:00:00,11165.0
-2012-10-19 10:00:00,11316.0
-2012-10-19 11:00:00,11384.0
-2012-10-19 12:00:00,11444.0
-2012-10-19 13:00:00,11401.0
-2012-10-19 14:00:00,11321.0
-2012-10-19 15:00:00,11277.0
-2012-10-19 16:00:00,11118.0
-2012-10-19 17:00:00,10997.0
-2012-10-19 18:00:00,10922.0
-2012-10-19 19:00:00,11058.0
-2012-10-19 20:00:00,11522.0
-2012-10-19 21:00:00,11443.0
-2012-10-19 22:00:00,11114.0
-2012-10-19 23:00:00,10751.0
-2012-10-20 00:00:00,10141.0
-2012-10-18 01:00:00,9271.0
-2012-10-18 02:00:00,8750.0
-2012-10-18 03:00:00,8416.0
-2012-10-18 04:00:00,8227.0
-2012-10-18 05:00:00,8161.0
-2012-10-18 06:00:00,8346.0
-2012-10-18 07:00:00,9050.0
-2012-10-18 08:00:00,10290.0
-2012-10-18 09:00:00,10968.0
-2012-10-18 10:00:00,11110.0
-2012-10-18 11:00:00,11200.0
-2012-10-18 12:00:00,11312.0
-2012-10-18 13:00:00,11397.0
-2012-10-18 14:00:00,11380.0
-2012-10-18 15:00:00,11407.0
-2012-10-18 16:00:00,11338.0
-2012-10-18 17:00:00,11279.0
-2012-10-18 18:00:00,11313.0
-2012-10-18 19:00:00,11509.0
-2012-10-18 20:00:00,11902.0
-2012-10-18 21:00:00,11875.0
-2012-10-18 22:00:00,11608.0
-2012-10-18 23:00:00,11116.0
-2012-10-19 00:00:00,10306.0
-2012-10-17 01:00:00,9445.0
-2012-10-17 02:00:00,8910.0
-2012-10-17 03:00:00,8575.0
-2012-10-17 04:00:00,8349.0
-2012-10-17 05:00:00,8252.0
-2012-10-17 06:00:00,8424.0
-2012-10-17 07:00:00,9063.0
-2012-10-17 08:00:00,10288.0
-2012-10-17 09:00:00,10819.0
-2012-10-17 10:00:00,11072.0
-2012-10-17 11:00:00,11284.0
-2012-10-17 12:00:00,11533.0
-2012-10-17 13:00:00,11592.0
-2012-10-17 14:00:00,11631.0
-2012-10-17 15:00:00,11669.0
-2012-10-17 16:00:00,11605.0
-2012-10-17 17:00:00,11595.0
-2012-10-17 18:00:00,11813.0
-2012-10-17 19:00:00,11887.0
-2012-10-17 20:00:00,12090.0
-2012-10-17 21:00:00,12005.0
-2012-10-17 22:00:00,11648.0
-2012-10-17 23:00:00,11041.0
-2012-10-18 00:00:00,10081.0
-2012-10-16 01:00:00,9420.0
-2012-10-16 02:00:00,8870.0
-2012-10-16 03:00:00,8564.0
-2012-10-16 04:00:00,8429.0
-2012-10-16 05:00:00,8413.0
-2012-10-16 06:00:00,8646.0
-2012-10-16 07:00:00,9344.0
-2012-10-16 08:00:00,10565.0
-2012-10-16 09:00:00,11131.0
-2012-10-16 10:00:00,11242.0
-2012-10-16 11:00:00,11290.0
-2012-10-16 12:00:00,11373.0
-2012-10-16 13:00:00,11422.0
-2012-10-16 14:00:00,11430.0
-2012-10-16 15:00:00,11531.0
-2012-10-16 16:00:00,11481.0
-2012-10-16 17:00:00,11367.0
-2012-10-16 18:00:00,11277.0
-2012-10-16 19:00:00,11277.0
-2012-10-16 20:00:00,11820.0
-2012-10-16 21:00:00,11945.0
-2012-10-16 22:00:00,11599.0
-2012-10-16 23:00:00,11080.0
-2012-10-17 00:00:00,10239.0
-2012-10-15 01:00:00,8624.0
-2012-10-15 02:00:00,8237.0
-2012-10-15 03:00:00,8030.0
-2012-10-15 04:00:00,7953.0
-2012-10-15 05:00:00,7962.0
-2012-10-15 06:00:00,8198.0
-2012-10-15 07:00:00,8975.0
-2012-10-15 08:00:00,10252.0
-2012-10-15 09:00:00,10889.0
-2012-10-15 10:00:00,11145.0
-2012-10-15 11:00:00,11185.0
-2012-10-15 12:00:00,11275.0
-2012-10-15 13:00:00,11244.0
-2012-10-15 14:00:00,11193.0
-2012-10-15 15:00:00,11225.0
-2012-10-15 16:00:00,11133.0
-2012-10-15 17:00:00,10996.0
-2012-10-15 18:00:00,10896.0
-2012-10-15 19:00:00,10927.0
-2012-10-15 20:00:00,11522.0
-2012-10-15 21:00:00,11678.0
-2012-10-15 22:00:00,11448.0
-2012-10-15 23:00:00,10959.0
-2012-10-16 00:00:00,10153.0
-2012-10-14 01:00:00,8972.0
-2012-10-14 02:00:00,8543.0
-2012-10-14 03:00:00,8160.0
-2012-10-14 04:00:00,8017.0
-2012-10-14 05:00:00,7911.0
-2012-10-14 06:00:00,7847.0
-2012-10-14 07:00:00,7969.0
-2012-10-14 08:00:00,8171.0
-2012-10-14 09:00:00,8341.0
-2012-10-14 10:00:00,8604.0
-2012-10-14 11:00:00,9037.0
-2012-10-14 12:00:00,9299.0
-2012-10-14 13:00:00,9549.0
-2012-10-14 14:00:00,9507.0
-2012-10-14 15:00:00,9508.0
-2012-10-14 16:00:00,9544.0
-2012-10-14 17:00:00,9567.0
-2012-10-14 18:00:00,9641.0
-2012-10-14 19:00:00,9882.0
-2012-10-14 20:00:00,10262.0
-2012-10-14 21:00:00,10339.0
-2012-10-14 22:00:00,10119.0
-2012-10-14 23:00:00,9776.0
-2012-10-15 00:00:00,9191.0
-2012-10-13 01:00:00,9508.0
-2012-10-13 02:00:00,8946.0
-2012-10-13 03:00:00,8593.0
-2012-10-13 04:00:00,8369.0
-2012-10-13 05:00:00,8271.0
-2012-10-13 06:00:00,8291.0
-2012-10-13 07:00:00,8538.0
-2012-10-13 08:00:00,8956.0
-2012-10-13 09:00:00,9256.0
-2012-10-13 10:00:00,9564.0
-2012-10-13 11:00:00,9894.0
-2012-10-13 12:00:00,10158.0
-2012-10-13 13:00:00,10321.0
-2012-10-13 14:00:00,10229.0
-2012-10-13 15:00:00,10057.0
-2012-10-13 16:00:00,9918.0
-2012-10-13 17:00:00,9956.0
-2012-10-13 18:00:00,10023.0
-2012-10-13 19:00:00,10221.0
-2012-10-13 20:00:00,10545.0
-2012-10-13 21:00:00,10534.0
-2012-10-13 22:00:00,10375.0
-2012-10-13 23:00:00,10074.0
-2012-10-14 00:00:00,9558.0
-2012-10-12 01:00:00,9413.0
-2012-10-12 02:00:00,8906.0
-2012-10-12 03:00:00,8554.0
-2012-10-12 04:00:00,8405.0
-2012-10-12 05:00:00,8397.0
-2012-10-12 06:00:00,8615.0
-2012-10-12 07:00:00,9360.0
-2012-10-12 08:00:00,10567.0
-2012-10-12 09:00:00,11098.0
-2012-10-12 10:00:00,11249.0
-2012-10-12 11:00:00,11274.0
-2012-10-12 12:00:00,11366.0
-2012-10-12 13:00:00,11283.0
-2012-10-12 14:00:00,11208.0
-2012-10-12 15:00:00,11166.0
-2012-10-12 16:00:00,11012.0
-2012-10-12 17:00:00,10854.0
-2012-10-12 18:00:00,10734.0
-2012-10-12 19:00:00,10694.0
-2012-10-12 20:00:00,11211.0
-2012-10-12 21:00:00,11401.0
-2012-10-12 22:00:00,11180.0
-2012-10-12 23:00:00,10847.0
-2012-10-13 00:00:00,10176.0
-2012-10-11 01:00:00,9656.0
-2012-10-11 02:00:00,9183.0
-2012-10-11 03:00:00,8883.0
-2012-10-11 04:00:00,8746.0
-2012-10-11 05:00:00,8708.0
-2012-10-11 06:00:00,8888.0
-2012-10-11 07:00:00,9626.0
-2012-10-11 08:00:00,10821.0
-2012-10-11 09:00:00,11337.0
-2012-10-11 10:00:00,11435.0
-2012-10-11 11:00:00,11462.0
-2012-10-11 12:00:00,11531.0
-2012-10-11 13:00:00,11524.0
-2012-10-11 14:00:00,11505.0
-2012-10-11 15:00:00,11522.0
-2012-10-11 16:00:00,11438.0
-2012-10-11 17:00:00,11312.0
-2012-10-11 18:00:00,11213.0
-2012-10-11 19:00:00,11207.0
-2012-10-11 20:00:00,11680.0
-2012-10-11 21:00:00,11790.0
-2012-10-11 22:00:00,11521.0
-2012-10-11 23:00:00,11013.0
-2012-10-12 00:00:00,10221.0
-2012-10-10 01:00:00,9445.0
-2012-10-10 02:00:00,8920.0
-2012-10-10 03:00:00,8598.0
-2012-10-10 04:00:00,8479.0
-2012-10-10 05:00:00,8455.0
-2012-10-10 06:00:00,8675.0
-2012-10-10 07:00:00,9413.0
-2012-10-10 08:00:00,10750.0
-2012-10-10 09:00:00,11293.0
-2012-10-10 10:00:00,11426.0
-2012-10-10 11:00:00,11486.0
-2012-10-10 12:00:00,11556.0
-2012-10-10 13:00:00,11493.0
-2012-10-10 14:00:00,11448.0
-2012-10-10 15:00:00,11405.0
-2012-10-10 16:00:00,11323.0
-2012-10-10 17:00:00,11182.0
-2012-10-10 18:00:00,11088.0
-2012-10-10 19:00:00,11084.0
-2012-10-10 20:00:00,11594.0
-2012-10-10 21:00:00,11883.0
-2012-10-10 22:00:00,11683.0
-2012-10-10 23:00:00,11219.0
-2012-10-11 00:00:00,10400.0
-2012-10-09 01:00:00,9368.0
-2012-10-09 02:00:00,8886.0
-2012-10-09 03:00:00,8571.0
-2012-10-09 04:00:00,8394.0
-2012-10-09 05:00:00,8380.0
-2012-10-09 06:00:00,8554.0
-2012-10-09 07:00:00,9283.0
-2012-10-09 08:00:00,10540.0
-2012-10-09 09:00:00,11022.0
-2012-10-09 10:00:00,11219.0
-2012-10-09 11:00:00,11339.0
-2012-10-09 12:00:00,11435.0
-2012-10-09 13:00:00,11436.0
-2012-10-09 14:00:00,11502.0
-2012-10-09 15:00:00,11496.0
-2012-10-09 16:00:00,11441.0
-2012-10-09 17:00:00,11312.0
-2012-10-09 18:00:00,11202.0
-2012-10-09 19:00:00,11234.0
-2012-10-09 20:00:00,11749.0
-2012-10-09 21:00:00,11910.0
-2012-10-09 22:00:00,11571.0
-2012-10-09 23:00:00,11018.0
-2012-10-10 00:00:00,10213.0
-2012-10-08 01:00:00,8961.0
-2012-10-08 02:00:00,8595.0
-2012-10-08 03:00:00,8423.0
-2012-10-08 04:00:00,8341.0
-2012-10-08 05:00:00,8378.0
-2012-10-08 06:00:00,8641.0
-2012-10-08 07:00:00,9401.0
-2012-10-08 08:00:00,10380.0
-2012-10-08 09:00:00,10924.0
-2012-10-08 10:00:00,11174.0
-2012-10-08 11:00:00,11326.0
-2012-10-08 12:00:00,11407.0
-2012-10-08 13:00:00,11367.0
-2012-10-08 14:00:00,11334.0
-2012-10-08 15:00:00,11299.0
-2012-10-08 16:00:00,11184.0
-2012-10-08 17:00:00,11032.0
-2012-10-08 18:00:00,10932.0
-2012-10-08 19:00:00,10956.0
-2012-10-08 20:00:00,11449.0
-2012-10-08 21:00:00,11753.0
-2012-10-08 22:00:00,11489.0
-2012-10-08 23:00:00,11014.0
-2012-10-09 00:00:00,10157.0
-2012-10-07 01:00:00,8960.0
-2012-10-07 02:00:00,8479.0
-2012-10-07 03:00:00,8189.0
-2012-10-07 04:00:00,8010.0
-2012-10-07 05:00:00,7902.0
-2012-10-07 06:00:00,7941.0
-2012-10-07 07:00:00,8061.0
-2012-10-07 08:00:00,8351.0
-2012-10-07 09:00:00,8410.0
-2012-10-07 10:00:00,8716.0
-2012-10-07 11:00:00,8943.0
-2012-10-07 12:00:00,9064.0
-2012-10-07 13:00:00,9090.0
-2012-10-07 14:00:00,9121.0
-2012-10-07 15:00:00,9048.0
-2012-10-07 16:00:00,9010.0
-2012-10-07 17:00:00,8966.0
-2012-10-07 18:00:00,8952.0
-2012-10-07 19:00:00,9127.0
-2012-10-07 20:00:00,9744.0
-2012-10-07 21:00:00,10279.0
-2012-10-07 22:00:00,10151.0
-2012-10-07 23:00:00,9924.0
-2012-10-08 00:00:00,9433.0
-2012-10-06 01:00:00,9488.0
-2012-10-06 02:00:00,8969.0
-2012-10-06 03:00:00,8600.0
-2012-10-06 04:00:00,8435.0
-2012-10-06 05:00:00,8260.0
-2012-10-06 06:00:00,8406.0
-2012-10-06 07:00:00,8627.0
-2012-10-06 08:00:00,9124.0
-2012-10-06 09:00:00,9310.0
-2012-10-06 10:00:00,9634.0
-2012-10-06 11:00:00,9866.0
-2012-10-06 12:00:00,9905.0
-2012-10-06 13:00:00,9880.0
-2012-10-06 14:00:00,9712.0
-2012-10-06 15:00:00,9597.0
-2012-10-06 16:00:00,9492.0
-2012-10-06 17:00:00,9476.0
-2012-10-06 18:00:00,9570.0
-2012-10-06 19:00:00,9736.0
-2012-10-06 20:00:00,10252.0
-2012-10-06 21:00:00,10449.0
-2012-10-06 22:00:00,10267.0
-2012-10-06 23:00:00,9961.0
-2012-10-07 00:00:00,9516.0
-2012-10-05 01:00:00,9277.0
-2012-10-05 02:00:00,8726.0
-2012-10-05 03:00:00,8376.0
-2012-10-05 04:00:00,8165.0
-2012-10-05 05:00:00,8082.0
-2012-10-05 06:00:00,8252.0
-2012-10-05 07:00:00,8877.0
-2012-10-05 08:00:00,9991.0
-2012-10-05 09:00:00,10582.0
-2012-10-05 10:00:00,10829.0
-2012-10-05 11:00:00,11019.0
-2012-10-05 12:00:00,11193.0
-2012-10-05 13:00:00,11235.0
-2012-10-05 14:00:00,11235.0
-2012-10-05 15:00:00,11259.0
-2012-10-05 16:00:00,11177.0
-2012-10-05 17:00:00,11053.0
-2012-10-05 18:00:00,10992.0
-2012-10-05 19:00:00,11025.0
-2012-10-05 20:00:00,11383.0
-2012-10-05 21:00:00,11385.0
-2012-10-05 22:00:00,11195.0
-2012-10-05 23:00:00,10789.0
-2012-10-06 00:00:00,10117.0
-2012-10-04 01:00:00,9520.0
-2012-10-04 02:00:00,8934.0
-2012-10-04 03:00:00,8572.0
-2012-10-04 04:00:00,8346.0
-2012-10-04 05:00:00,8264.0
-2012-10-04 06:00:00,8443.0
-2012-10-04 07:00:00,9034.0
-2012-10-04 08:00:00,10210.0
-2012-10-04 09:00:00,10790.0
-2012-10-04 10:00:00,11193.0
-2012-10-04 11:00:00,11538.0
-2012-10-04 12:00:00,11954.0
-2012-10-04 13:00:00,12191.0
-2012-10-04 14:00:00,12363.0
-2012-10-04 15:00:00,12545.0
-2012-10-04 16:00:00,12432.0
-2012-10-04 17:00:00,12161.0
-2012-10-04 18:00:00,11891.0
-2012-10-04 19:00:00,11794.0
-2012-10-04 20:00:00,11799.0
-2012-10-04 21:00:00,11784.0
-2012-10-04 22:00:00,11420.0
-2012-10-04 23:00:00,10890.0
-2012-10-05 00:00:00,10058.0
-2012-10-03 01:00:00,9366.0
-2012-10-03 02:00:00,8860.0
-2012-10-03 03:00:00,8536.0
-2012-10-03 04:00:00,8355.0
-2012-10-03 05:00:00,8277.0
-2012-10-03 06:00:00,8492.0
-2012-10-03 07:00:00,9151.0
-2012-10-03 08:00:00,10401.0
-2012-10-03 09:00:00,11202.0
-2012-10-03 10:00:00,11543.0
-2012-10-03 11:00:00,11743.0
-2012-10-03 12:00:00,11931.0
-2012-10-03 13:00:00,11971.0
-2012-10-03 14:00:00,11956.0
-2012-10-03 15:00:00,11972.0
-2012-10-03 16:00:00,11886.0
-2012-10-03 17:00:00,11821.0
-2012-10-03 18:00:00,11750.0
-2012-10-03 19:00:00,11688.0
-2012-10-03 20:00:00,11958.0
-2012-10-03 21:00:00,12132.0
-2012-10-03 22:00:00,11824.0
-2012-10-03 23:00:00,11230.0
-2012-10-04 00:00:00,10366.0
-2012-10-02 01:00:00,9190.0
-2012-10-02 02:00:00,8670.0
-2012-10-02 03:00:00,8332.0
-2012-10-02 04:00:00,8165.0
-2012-10-02 05:00:00,8086.0
-2012-10-02 06:00:00,8279.0
-2012-10-02 07:00:00,8940.0
-2012-10-02 08:00:00,10091.0
-2012-10-02 09:00:00,10646.0
-2012-10-02 10:00:00,11047.0
-2012-10-02 11:00:00,11362.0
-2012-10-02 12:00:00,11623.0
-2012-10-02 13:00:00,11769.0
-2012-10-02 14:00:00,11806.0
-2012-10-02 15:00:00,11909.0
-2012-10-02 16:00:00,11833.0
-2012-10-02 17:00:00,11734.0
-2012-10-02 18:00:00,11568.0
-2012-10-02 19:00:00,11345.0
-2012-10-02 20:00:00,11464.0
-2012-10-02 21:00:00,11838.0
-2012-10-02 22:00:00,11617.0
-2012-10-02 23:00:00,11054.0
-2012-10-03 00:00:00,10195.0
-2012-10-01 01:00:00,8452.0
-2012-10-01 02:00:00,8086.0
-2012-10-01 03:00:00,7870.0
-2012-10-01 04:00:00,7774.0
-2012-10-01 05:00:00,7773.0
-2012-10-01 06:00:00,8012.0
-2012-10-01 07:00:00,8722.0
-2012-10-01 08:00:00,9910.0
-2012-10-01 09:00:00,10512.0
-2012-10-01 10:00:00,10858.0
-2012-10-01 11:00:00,11055.0
-2012-10-01 12:00:00,11302.0
-2012-10-01 13:00:00,11426.0
-2012-10-01 14:00:00,11522.0
-2012-10-01 15:00:00,11574.0
-2012-10-01 16:00:00,11489.0
-2012-10-01 17:00:00,11309.0
-2012-10-01 18:00:00,11174.0
-2012-10-01 19:00:00,11082.0
-2012-10-01 20:00:00,11396.0
-2012-10-01 21:00:00,11710.0
-2012-10-01 22:00:00,11407.0
-2012-10-01 23:00:00,10843.0
-2012-10-02 00:00:00,9995.0
-2012-09-30 01:00:00,8746.0
-2012-09-30 02:00:00,8249.0
-2012-09-30 03:00:00,7882.0
-2012-09-30 04:00:00,7689.0
-2012-09-30 05:00:00,7555.0
-2012-09-30 06:00:00,7558.0
-2012-09-30 07:00:00,7636.0
-2012-09-30 08:00:00,7804.0
-2012-09-30 09:00:00,7844.0
-2012-09-30 10:00:00,8261.0
-2012-09-30 11:00:00,8636.0
-2012-09-30 12:00:00,8893.0
-2012-09-30 13:00:00,9064.0
-2012-09-30 14:00:00,9134.0
-2012-09-30 15:00:00,9182.0
-2012-09-30 16:00:00,9196.0
-2012-09-30 17:00:00,9194.0
-2012-09-30 18:00:00,9252.0
-2012-09-30 19:00:00,9273.0
-2012-09-30 20:00:00,9670.0
-2012-09-30 21:00:00,10132.0
-2012-09-30 22:00:00,10003.0
-2012-09-30 23:00:00,9598.0
-2012-10-01 00:00:00,9042.0
-2012-09-29 01:00:00,9115.0
-2012-09-29 02:00:00,8581.0
-2012-09-29 03:00:00,8187.0
-2012-09-29 04:00:00,7989.0
-2012-09-29 05:00:00,7850.0
-2012-09-29 06:00:00,7904.0
-2012-09-29 07:00:00,8121.0
-2012-09-29 08:00:00,8513.0
-2012-09-29 09:00:00,8670.0
-2012-09-29 10:00:00,9166.0
-2012-09-29 11:00:00,9521.0
-2012-09-29 12:00:00,9830.0
-2012-09-29 13:00:00,9941.0
-2012-09-29 14:00:00,10010.0
-2012-09-29 15:00:00,9951.0
-2012-09-29 16:00:00,10020.0
-2012-09-29 17:00:00,9955.0
-2012-09-29 18:00:00,9984.0
-2012-09-29 19:00:00,9844.0
-2012-09-29 20:00:00,9995.0
-2012-09-29 21:00:00,10364.0
-2012-09-29 22:00:00,10252.0
-2012-09-29 23:00:00,9868.0
-2012-09-30 00:00:00,9356.0
-2012-09-28 01:00:00,9272.0
-2012-09-28 02:00:00,8732.0
-2012-09-28 03:00:00,8418.0
-2012-09-28 04:00:00,8172.0
-2012-09-28 05:00:00,8095.0
-2012-09-28 06:00:00,8272.0
-2012-09-28 07:00:00,8923.0
-2012-09-28 08:00:00,9971.0
-2012-09-28 09:00:00,10516.0
-2012-09-28 10:00:00,10867.0
-2012-09-28 11:00:00,11140.0
-2012-09-28 12:00:00,11395.0
-2012-09-28 13:00:00,11473.0
-2012-09-28 14:00:00,11474.0
-2012-09-28 15:00:00,11537.0
-2012-09-28 16:00:00,11453.0
-2012-09-28 17:00:00,11325.0
-2012-09-28 18:00:00,11176.0
-2012-09-28 19:00:00,10993.0
-2012-09-28 20:00:00,11023.0
-2012-09-28 21:00:00,11307.0
-2012-09-28 22:00:00,11075.0
-2012-09-28 23:00:00,10574.0
-2012-09-29 00:00:00,9871.0
-2012-09-27 01:00:00,9302.0
-2012-09-27 02:00:00,8745.0
-2012-09-27 03:00:00,8406.0
-2012-09-27 04:00:00,8215.0
-2012-09-27 05:00:00,8134.0
-2012-09-27 06:00:00,8300.0
-2012-09-27 07:00:00,8893.0
-2012-09-27 08:00:00,10003.0
-2012-09-27 09:00:00,10551.0
-2012-09-27 10:00:00,10856.0
-2012-09-27 11:00:00,11160.0
-2012-09-27 12:00:00,11438.0
-2012-09-27 13:00:00,11535.0
-2012-09-27 14:00:00,11597.0
-2012-09-27 15:00:00,11601.0
-2012-09-27 16:00:00,11551.0
-2012-09-27 17:00:00,11407.0
-2012-09-27 18:00:00,11303.0
-2012-09-27 19:00:00,11090.0
-2012-09-27 20:00:00,11187.0
-2012-09-27 21:00:00,11702.0
-2012-09-27 22:00:00,11459.0
-2012-09-27 23:00:00,10932.0
-2012-09-28 00:00:00,10069.0
-2012-09-26 01:00:00,9728.0
-2012-09-26 02:00:00,9143.0
-2012-09-26 03:00:00,8728.0
-2012-09-26 04:00:00,8505.0
-2012-09-26 05:00:00,8396.0
-2012-09-26 06:00:00,8533.0
-2012-09-26 07:00:00,9120.0
-2012-09-26 08:00:00,10268.0
-2012-09-26 09:00:00,10808.0
-2012-09-26 10:00:00,11251.0
-2012-09-26 11:00:00,11527.0
-2012-09-26 12:00:00,11752.0
-2012-09-26 13:00:00,11868.0
-2012-09-26 14:00:00,11948.0
-2012-09-26 15:00:00,12056.0
-2012-09-26 16:00:00,11997.0
-2012-09-26 17:00:00,11857.0
-2012-09-26 18:00:00,11699.0
-2012-09-26 19:00:00,11459.0
-2012-09-26 20:00:00,11411.0
-2012-09-26 21:00:00,11805.0
-2012-09-26 22:00:00,11541.0
-2012-09-26 23:00:00,10986.0
-2012-09-27 00:00:00,10107.0
-2012-09-25 01:00:00,9253.0
-2012-09-25 02:00:00,8660.0
-2012-09-25 03:00:00,8295.0
-2012-09-25 04:00:00,8140.0
-2012-09-25 05:00:00,8063.0
-2012-09-25 06:00:00,8246.0
-2012-09-25 07:00:00,8914.0
-2012-09-25 08:00:00,10014.0
-2012-09-25 09:00:00,10619.0
-2012-09-25 10:00:00,11038.0
-2012-09-25 11:00:00,11262.0
-2012-09-25 12:00:00,11518.0
-2012-09-25 13:00:00,11716.0
-2012-09-25 14:00:00,11921.0
-2012-09-25 15:00:00,12149.0
-2012-09-25 16:00:00,12159.0
-2012-09-25 17:00:00,12156.0
-2012-09-25 18:00:00,12108.0
-2012-09-25 19:00:00,11969.0
-2012-09-25 20:00:00,11937.0
-2012-09-25 21:00:00,12390.0
-2012-09-25 22:00:00,12108.0
-2012-09-25 23:00:00,11519.0
-2012-09-26 00:00:00,10594.0
-2012-09-24 01:00:00,8435.0
-2012-09-24 02:00:00,8062.0
-2012-09-24 03:00:00,7867.0
-2012-09-24 04:00:00,7775.0
-2012-09-24 05:00:00,7806.0
-2012-09-24 06:00:00,8023.0
-2012-09-24 07:00:00,8804.0
-2012-09-24 08:00:00,10004.0
-2012-09-24 09:00:00,10597.0
-2012-09-24 10:00:00,10918.0
-2012-09-24 11:00:00,11067.0
-2012-09-24 12:00:00,11353.0
-2012-09-24 13:00:00,11378.0
-2012-09-24 14:00:00,11366.0
-2012-09-24 15:00:00,11465.0
-2012-09-24 16:00:00,11446.0
-2012-09-24 17:00:00,11401.0
-2012-09-24 18:00:00,11298.0
-2012-09-24 19:00:00,11205.0
-2012-09-24 20:00:00,11176.0
-2012-09-24 21:00:00,11745.0
-2012-09-24 22:00:00,11505.0
-2012-09-24 23:00:00,10945.0
-2012-09-25 00:00:00,10075.0
-2012-09-23 01:00:00,8680.0
-2012-09-23 02:00:00,8211.0
-2012-09-23 03:00:00,7906.0
-2012-09-23 04:00:00,7724.0
-2012-09-23 05:00:00,7604.0
-2012-09-23 06:00:00,7599.0
-2012-09-23 07:00:00,7669.0
-2012-09-23 08:00:00,7837.0
-2012-09-23 09:00:00,7910.0
-2012-09-23 10:00:00,8307.0
-2012-09-23 11:00:00,8558.0
-2012-09-23 12:00:00,8785.0
-2012-09-23 13:00:00,8918.0
-2012-09-23 14:00:00,8982.0
-2012-09-23 15:00:00,8981.0
-2012-09-23 16:00:00,8921.0
-2012-09-23 17:00:00,8948.0
-2012-09-23 18:00:00,8940.0
-2012-09-23 19:00:00,9080.0
-2012-09-23 20:00:00,9263.0
-2012-09-23 21:00:00,10002.0
-2012-09-23 22:00:00,9910.0
-2012-09-23 23:00:00,9584.0
-2012-09-24 00:00:00,8987.0
-2012-09-22 01:00:00,9164.0
-2012-09-22 02:00:00,8645.0
-2012-09-22 03:00:00,8258.0
-2012-09-22 04:00:00,8023.0
-2012-09-22 05:00:00,7894.0
-2012-09-22 06:00:00,7941.0
-2012-09-22 07:00:00,8149.0
-2012-09-22 08:00:00,8522.0
-2012-09-22 09:00:00,8762.0
-2012-09-22 10:00:00,9258.0
-2012-09-22 11:00:00,9570.0
-2012-09-22 12:00:00,9727.0
-2012-09-22 13:00:00,9775.0
-2012-09-22 14:00:00,9667.0
-2012-09-22 15:00:00,9501.0
-2012-09-22 16:00:00,9388.0
-2012-09-22 17:00:00,9354.0
-2012-09-22 18:00:00,9334.0
-2012-09-22 19:00:00,9346.0
-2012-09-22 20:00:00,9481.0
-2012-09-22 21:00:00,10089.0
-2012-09-22 22:00:00,10033.0
-2012-09-22 23:00:00,9755.0
-2012-09-23 00:00:00,9230.0
-2012-09-21 01:00:00,9239.0
-2012-09-21 02:00:00,8715.0
-2012-09-21 03:00:00,8409.0
-2012-09-21 04:00:00,8166.0
-2012-09-21 05:00:00,8145.0
-2012-09-21 06:00:00,8288.0
-2012-09-21 07:00:00,8874.0
-2012-09-21 08:00:00,9897.0
-2012-09-21 09:00:00,10495.0
-2012-09-21 10:00:00,10867.0
-2012-09-21 11:00:00,11214.0
-2012-09-21 12:00:00,11314.0
-2012-09-21 13:00:00,11375.0
-2012-09-21 14:00:00,11368.0
-2012-09-21 15:00:00,11369.0
-2012-09-21 16:00:00,11215.0
-2012-09-21 17:00:00,11086.0
-2012-09-21 18:00:00,11012.0
-2012-09-21 19:00:00,11025.0
-2012-09-21 20:00:00,11103.0
-2012-09-21 21:00:00,11212.0
-2012-09-21 22:00:00,11000.0
-2012-09-21 23:00:00,10557.0
-2012-09-22 00:00:00,9908.0
-2012-09-20 01:00:00,9368.0
-2012-09-20 02:00:00,8836.0
-2012-09-20 03:00:00,8488.0
-2012-09-20 04:00:00,8261.0
-2012-09-20 05:00:00,8156.0
-2012-09-20 06:00:00,8308.0
-2012-09-20 07:00:00,8953.0
-2012-09-20 08:00:00,10057.0
-2012-09-20 09:00:00,10592.0
-2012-09-20 10:00:00,11007.0
-2012-09-20 11:00:00,11418.0
-2012-09-20 12:00:00,11731.0
-2012-09-20 13:00:00,11910.0
-2012-09-20 14:00:00,11974.0
-2012-09-20 15:00:00,12030.0
-2012-09-20 16:00:00,11940.0
-2012-09-20 17:00:00,11861.0
-2012-09-20 18:00:00,11649.0
-2012-09-20 19:00:00,11405.0
-2012-09-20 20:00:00,11324.0
-2012-09-20 21:00:00,11805.0
-2012-09-20 22:00:00,11584.0
-2012-09-20 23:00:00,10965.0
-2012-09-21 00:00:00,10060.0
-2012-09-19 01:00:00,9164.0
-2012-09-19 02:00:00,8635.0
-2012-09-19 03:00:00,8294.0
-2012-09-19 04:00:00,8117.0
-2012-09-19 05:00:00,8072.0
-2012-09-19 06:00:00,8241.0
-2012-09-19 07:00:00,8880.0
-2012-09-19 08:00:00,9931.0
-2012-09-19 09:00:00,10522.0
-2012-09-19 10:00:00,10859.0
-2012-09-19 11:00:00,11108.0
-2012-09-19 12:00:00,11374.0
-2012-09-19 13:00:00,11480.0
-2012-09-19 14:00:00,11555.0
-2012-09-19 15:00:00,11712.0
-2012-09-19 16:00:00,11710.0
-2012-09-19 17:00:00,11676.0
-2012-09-19 18:00:00,11605.0
-2012-09-19 19:00:00,11449.0
-2012-09-19 20:00:00,11328.0
-2012-09-19 21:00:00,11879.0
-2012-09-19 22:00:00,11678.0
-2012-09-19 23:00:00,11099.0
-2012-09-20 00:00:00,10212.0
-2012-09-18 01:00:00,9718.0
-2012-09-18 02:00:00,9085.0
-2012-09-18 03:00:00,8690.0
-2012-09-18 04:00:00,8411.0
-2012-09-18 05:00:00,8273.0
-2012-09-18 06:00:00,8395.0
-2012-09-18 07:00:00,8986.0
-2012-09-18 08:00:00,10018.0
-2012-09-18 09:00:00,10533.0
-2012-09-18 10:00:00,10932.0
-2012-09-18 11:00:00,11196.0
-2012-09-18 12:00:00,11435.0
-2012-09-18 13:00:00,11513.0
-2012-09-18 14:00:00,11578.0
-2012-09-18 15:00:00,11619.0
-2012-09-18 16:00:00,11546.0
-2012-09-18 17:00:00,11422.0
-2012-09-18 18:00:00,11260.0
-2012-09-18 19:00:00,11058.0
-2012-09-18 20:00:00,10938.0
-2012-09-18 21:00:00,11489.0
-2012-09-18 22:00:00,11349.0
-2012-09-18 23:00:00,10814.0
-2012-09-19 00:00:00,9943.0
-2012-09-17 01:00:00,9092.0
-2012-09-17 02:00:00,8608.0
-2012-09-17 03:00:00,8300.0
-2012-09-17 04:00:00,8177.0
-2012-09-17 05:00:00,8115.0
-2012-09-17 06:00:00,8349.0
-2012-09-17 07:00:00,9034.0
-2012-09-17 08:00:00,10152.0
-2012-09-17 09:00:00,10856.0
-2012-09-17 10:00:00,11520.0
-2012-09-17 11:00:00,12031.0
-2012-09-17 12:00:00,12492.0
-2012-09-17 13:00:00,12745.0
-2012-09-17 14:00:00,12936.0
-2012-09-17 15:00:00,13240.0
-2012-09-17 16:00:00,13319.0
-2012-09-17 17:00:00,13361.0
-2012-09-17 18:00:00,13257.0
-2012-09-17 19:00:00,13000.0
-2012-09-17 20:00:00,12847.0
-2012-09-17 21:00:00,12826.0
-2012-09-17 22:00:00,12446.0
-2012-09-17 23:00:00,11664.0
-2012-09-18 00:00:00,10658.0
-2012-09-16 01:00:00,9252.0
-2012-09-16 02:00:00,8650.0
-2012-09-16 03:00:00,8301.0
-2012-09-16 04:00:00,8003.0
-2012-09-16 05:00:00,7842.0
-2012-09-16 06:00:00,7798.0
-2012-09-16 07:00:00,7838.0
-2012-09-16 08:00:00,7872.0
-2012-09-16 09:00:00,7976.0
-2012-09-16 10:00:00,8506.0
-2012-09-16 11:00:00,9066.0
-2012-09-16 12:00:00,9530.0
-2012-09-16 13:00:00,9911.0
-2012-09-16 14:00:00,10130.0
-2012-09-16 15:00:00,10334.0
-2012-09-16 16:00:00,10462.0
-2012-09-16 17:00:00,10595.0
-2012-09-16 18:00:00,10613.0
-2012-09-16 19:00:00,10591.0
-2012-09-16 20:00:00,10595.0
-2012-09-16 21:00:00,11081.0
-2012-09-16 22:00:00,10958.0
-2012-09-16 23:00:00,10495.0
-2012-09-17 00:00:00,9805.0
-2012-09-15 01:00:00,9633.0
-2012-09-15 02:00:00,9022.0
-2012-09-15 03:00:00,8613.0
-2012-09-15 04:00:00,8306.0
-2012-09-15 05:00:00,8146.0
-2012-09-15 06:00:00,8097.0
-2012-09-15 07:00:00,8302.0
-2012-09-15 08:00:00,8515.0
-2012-09-15 09:00:00,8846.0
-2012-09-15 10:00:00,9441.0
-2012-09-15 11:00:00,10013.0
-2012-09-15 12:00:00,10464.0
-2012-09-15 13:00:00,10716.0
-2012-09-15 14:00:00,10884.0
-2012-09-15 15:00:00,10950.0
-2012-09-15 16:00:00,11120.0
-2012-09-15 17:00:00,11235.0
-2012-09-15 18:00:00,11306.0
-2012-09-15 19:00:00,11152.0
-2012-09-15 20:00:00,10855.0
-2012-09-15 21:00:00,11173.0
-2012-09-15 22:00:00,11019.0
-2012-09-15 23:00:00,10599.0
-2012-09-16 00:00:00,9900.0
-2012-09-14 01:00:00,9634.0
-2012-09-14 02:00:00,9098.0
-2012-09-14 03:00:00,8657.0
-2012-09-14 04:00:00,8501.0
-2012-09-14 05:00:00,8374.0
-2012-09-14 06:00:00,8537.0
-2012-09-14 07:00:00,9089.0
-2012-09-14 08:00:00,10076.0
-2012-09-14 09:00:00,10601.0
-2012-09-14 10:00:00,11114.0
-2012-09-14 11:00:00,11510.0
-2012-09-14 12:00:00,11941.0
-2012-09-14 13:00:00,12090.0
-2012-09-14 14:00:00,12228.0
-2012-09-14 15:00:00,12409.0
-2012-09-14 16:00:00,12486.0
-2012-09-14 17:00:00,12498.0
-2012-09-14 18:00:00,12418.0
-2012-09-14 19:00:00,12201.0
-2012-09-14 20:00:00,11806.0
-2012-09-14 21:00:00,11983.0
-2012-09-14 22:00:00,11857.0
-2012-09-14 23:00:00,11271.0
-2012-09-15 00:00:00,10512.0
-2012-09-13 01:00:00,11515.0
-2012-09-13 02:00:00,10639.0
-2012-09-13 03:00:00,10075.0
-2012-09-13 04:00:00,9656.0
-2012-09-13 05:00:00,9460.0
-2012-09-13 06:00:00,9531.0
-2012-09-13 07:00:00,10160.0
-2012-09-13 08:00:00,11170.0
-2012-09-13 09:00:00,11775.0
-2012-09-13 10:00:00,12182.0
-2012-09-13 11:00:00,12599.0
-2012-09-13 12:00:00,12977.0
-2012-09-13 13:00:00,13112.0
-2012-09-13 14:00:00,13190.0
-2012-09-13 15:00:00,13054.0
-2012-09-13 16:00:00,12732.0
-2012-09-13 17:00:00,12407.0
-2012-09-13 18:00:00,12173.0
-2012-09-13 19:00:00,12000.0
-2012-09-13 20:00:00,12020.0
-2012-09-13 21:00:00,12165.0
-2012-09-13 22:00:00,11883.0
-2012-09-13 23:00:00,11404.0
-2012-09-14 00:00:00,10525.0
-2012-09-12 01:00:00,10907.0
-2012-09-12 02:00:00,10119.0
-2012-09-12 03:00:00,9586.0
-2012-09-12 04:00:00,9228.0
-2012-09-12 05:00:00,9078.0
-2012-09-12 06:00:00,9220.0
-2012-09-12 07:00:00,9849.0
-2012-09-12 08:00:00,10858.0
-2012-09-12 09:00:00,11575.0
-2012-09-12 10:00:00,12332.0
-2012-09-12 11:00:00,12987.0
-2012-09-12 12:00:00,13731.0
-2012-09-12 13:00:00,14405.0
-2012-09-12 14:00:00,14993.0
-2012-09-12 15:00:00,15624.0
-2012-09-12 16:00:00,16000.0
-2012-09-12 17:00:00,16346.0
-2012-09-12 18:00:00,16481.0
-2012-09-12 19:00:00,16190.0
-2012-09-12 20:00:00,15474.0
-2012-09-12 21:00:00,15422.0
-2012-09-12 22:00:00,14999.0
-2012-09-12 23:00:00,14072.0
-2012-09-13 00:00:00,12774.0
-2012-09-11 01:00:00,9991.0
-2012-09-11 02:00:00,9338.0
-2012-09-11 03:00:00,8928.0
-2012-09-11 04:00:00,8624.0
-2012-09-11 05:00:00,8536.0
-2012-09-11 06:00:00,8677.0
-2012-09-11 07:00:00,9364.0
-2012-09-11 08:00:00,10304.0
-2012-09-11 09:00:00,10966.0
-2012-09-11 10:00:00,11650.0
-2012-09-11 11:00:00,12164.0
-2012-09-11 12:00:00,12788.0
-2012-09-11 13:00:00,13147.0
-2012-09-11 14:00:00,13480.0
-2012-09-11 15:00:00,13900.0
-2012-09-11 16:00:00,14189.0
-2012-09-11 17:00:00,14447.0
-2012-09-11 18:00:00,14582.0
-2012-09-11 19:00:00,14393.0
-2012-09-11 20:00:00,13867.0
-2012-09-11 21:00:00,14006.0
-2012-09-11 22:00:00,13831.0
-2012-09-11 23:00:00,13080.0
-2012-09-12 00:00:00,11972.0
-2012-09-10 01:00:00,8963.0
-2012-09-10 02:00:00,8487.0
-2012-09-10 03:00:00,8200.0
-2012-09-10 04:00:00,8085.0
-2012-09-10 05:00:00,8038.0
-2012-09-10 06:00:00,8282.0
-2012-09-10 07:00:00,8928.0
-2012-09-10 08:00:00,9904.0
-2012-09-10 09:00:00,10620.0
-2012-09-10 10:00:00,11353.0
-2012-09-10 11:00:00,11806.0
-2012-09-10 12:00:00,12296.0
-2012-09-10 13:00:00,12470.0
-2012-09-10 14:00:00,12646.0
-2012-09-10 15:00:00,12845.0
-2012-09-10 16:00:00,12985.0
-2012-09-10 17:00:00,13068.0
-2012-09-10 18:00:00,13087.0
-2012-09-10 19:00:00,12899.0
-2012-09-10 20:00:00,12524.0
-2012-09-10 21:00:00,12740.0
-2012-09-10 22:00:00,12638.0
-2012-09-10 23:00:00,11952.0
-2012-09-11 00:00:00,10912.0
-2012-09-09 01:00:00,9341.0
-2012-09-09 02:00:00,8761.0
-2012-09-09 03:00:00,8402.0
-2012-09-09 04:00:00,8147.0
-2012-09-09 05:00:00,8025.0
-2012-09-09 06:00:00,7884.0
-2012-09-09 07:00:00,7989.0
-2012-09-09 08:00:00,7960.0
-2012-09-09 09:00:00,8074.0
-2012-09-09 10:00:00,8631.0
-2012-09-09 11:00:00,9080.0
-2012-09-09 12:00:00,9538.0
-2012-09-09 13:00:00,9807.0
-2012-09-09 14:00:00,9999.0
-2012-09-09 15:00:00,10052.0
-2012-09-09 16:00:00,10169.0
-2012-09-09 17:00:00,10203.0
-2012-09-09 18:00:00,10302.0
-2012-09-09 19:00:00,10287.0
-2012-09-09 20:00:00,10217.0
-2012-09-09 21:00:00,10574.0
-2012-09-09 22:00:00,10696.0
-2012-09-09 23:00:00,10286.0
-2012-09-10 00:00:00,9645.0
-2012-09-08 01:00:00,10243.0
-2012-09-08 02:00:00,9504.0
-2012-09-08 03:00:00,9019.0
-2012-09-08 04:00:00,8587.0
-2012-09-08 05:00:00,8485.0
-2012-09-08 06:00:00,8438.0
-2012-09-08 07:00:00,8633.0
-2012-09-08 08:00:00,8778.0
-2012-09-08 09:00:00,9096.0
-2012-09-08 10:00:00,9657.0
-2012-09-08 11:00:00,10164.0
-2012-09-08 12:00:00,10570.0
-2012-09-08 13:00:00,10734.0
-2012-09-08 14:00:00,10805.0
-2012-09-08 15:00:00,10792.0
-2012-09-08 16:00:00,10829.0
-2012-09-08 17:00:00,10837.0
-2012-09-08 18:00:00,10920.0
-2012-09-08 19:00:00,10754.0
-2012-09-08 20:00:00,10588.0
-2012-09-08 21:00:00,10872.0
-2012-09-08 22:00:00,10925.0
-2012-09-08 23:00:00,10609.0
-2012-09-09 00:00:00,10029.0
-2012-09-07 01:00:00,12152.0
-2012-09-07 02:00:00,11204.0
-2012-09-07 03:00:00,10625.0
-2012-09-07 04:00:00,10228.0
-2012-09-07 05:00:00,10089.0
-2012-09-07 06:00:00,10196.0
-2012-09-07 07:00:00,10827.0
-2012-09-07 08:00:00,12045.0
-2012-09-07 09:00:00,12759.0
-2012-09-07 10:00:00,13168.0
-2012-09-07 11:00:00,13330.0
-2012-09-07 12:00:00,13818.0
-2012-09-07 13:00:00,14247.0
-2012-09-07 14:00:00,14579.0
-2012-09-07 15:00:00,14991.0
-2012-09-07 16:00:00,14909.0
-2012-09-07 17:00:00,14682.0
-2012-09-07 18:00:00,14337.0
-2012-09-07 19:00:00,13848.0
-2012-09-07 20:00:00,13035.0
-2012-09-07 21:00:00,12979.0
-2012-09-07 22:00:00,12708.0
-2012-09-07 23:00:00,12097.0
-2012-09-08 00:00:00,11151.0
-2012-09-06 01:00:00,12918.0
-2012-09-06 02:00:00,11904.0
-2012-09-06 03:00:00,11206.0
-2012-09-06 04:00:00,10715.0
-2012-09-06 05:00:00,10441.0
-2012-09-06 06:00:00,10506.0
-2012-09-06 07:00:00,11121.0
-2012-09-06 08:00:00,12157.0
-2012-09-06 09:00:00,13029.0
-2012-09-06 10:00:00,13911.0
-2012-09-06 11:00:00,14814.0
-2012-09-06 12:00:00,15651.0
-2012-09-06 13:00:00,16202.0
-2012-09-06 14:00:00,16679.0
-2012-09-06 15:00:00,17177.0
-2012-09-06 16:00:00,17538.0
-2012-09-06 17:00:00,17828.0
-2012-09-06 18:00:00,17896.0
-2012-09-06 19:00:00,17514.0
-2012-09-06 20:00:00,16592.0
-2012-09-06 21:00:00,16204.0
-2012-09-06 22:00:00,15845.0
-2012-09-06 23:00:00,14850.0
-2012-09-07 00:00:00,13499.0
-2012-09-05 01:00:00,13087.0
-2012-09-05 02:00:00,11703.0
-2012-09-05 03:00:00,10892.0
-2012-09-05 04:00:00,10447.0
-2012-09-05 05:00:00,10219.0
-2012-09-05 06:00:00,10298.0
-2012-09-05 07:00:00,10962.0
-2012-09-05 08:00:00,12060.0
-2012-09-05 09:00:00,12807.0
-2012-09-05 10:00:00,13108.0
-2012-09-05 11:00:00,13422.0
-2012-09-05 12:00:00,14035.0
-2012-09-05 13:00:00,14731.0
-2012-09-05 14:00:00,15565.0
-2012-09-05 15:00:00,16403.0
-2012-09-05 16:00:00,16943.0
-2012-09-05 17:00:00,17294.0
-2012-09-05 18:00:00,17548.0
-2012-09-05 19:00:00,17512.0
-2012-09-05 20:00:00,16895.0
-2012-09-05 21:00:00,16758.0
-2012-09-05 22:00:00,16564.0
-2012-09-05 23:00:00,15651.0
-2012-09-06 00:00:00,14297.0
-2012-09-04 01:00:00,12910.0
-2012-09-04 02:00:00,12004.0
-2012-09-04 03:00:00,11415.0
-2012-09-04 04:00:00,11022.0
-2012-09-04 05:00:00,10850.0
-2012-09-04 06:00:00,10972.0
-2012-09-04 07:00:00,11728.0
-2012-09-04 08:00:00,12939.0
-2012-09-04 09:00:00,13904.0
-2012-09-04 10:00:00,14956.0
-2012-09-04 11:00:00,16023.0
-2012-09-04 12:00:00,17100.0
-2012-09-04 13:00:00,18011.0
-2012-09-04 14:00:00,18813.0
-2012-09-04 15:00:00,19496.0
-2012-09-04 16:00:00,19948.0
-2012-09-04 17:00:00,20216.0
-2012-09-04 18:00:00,20263.0
-2012-09-04 19:00:00,19827.0
-2012-09-04 20:00:00,18837.0
-2012-09-04 21:00:00,18335.0
-2012-09-04 22:00:00,17891.0
-2012-09-04 23:00:00,16773.0
-2012-09-05 00:00:00,15040.0
-2012-09-03 01:00:00,11668.0
-2012-09-03 02:00:00,10948.0
-2012-09-03 03:00:00,10401.0
-2012-09-03 04:00:00,9978.0
-2012-09-03 05:00:00,9746.0
-2012-09-03 06:00:00,9704.0
-2012-09-03 07:00:00,9825.0
-2012-09-03 08:00:00,9918.0
-2012-09-03 09:00:00,10258.0
-2012-09-03 10:00:00,11223.0
-2012-09-03 11:00:00,12367.0
-2012-09-03 12:00:00,13658.0
-2012-09-03 13:00:00,14737.0
-2012-09-03 14:00:00,15594.0
-2012-09-03 15:00:00,16268.0
-2012-09-03 16:00:00,16743.0
-2012-09-03 17:00:00,17052.0
-2012-09-03 18:00:00,17167.0
-2012-09-03 19:00:00,16970.0
-2012-09-03 20:00:00,16403.0
-2012-09-03 21:00:00,16240.0
-2012-09-03 22:00:00,16062.0
-2012-09-03 23:00:00,15224.0
-2012-09-04 00:00:00,14096.0
-2012-09-02 01:00:00,11262.0
-2012-09-02 02:00:00,10697.0
-2012-09-02 03:00:00,10231.0
-2012-09-02 04:00:00,9956.0
-2012-09-02 05:00:00,9748.0
-2012-09-02 06:00:00,9721.0
-2012-09-02 07:00:00,9777.0
-2012-09-02 08:00:00,9889.0
-2012-09-02 09:00:00,10078.0
-2012-09-02 10:00:00,10704.0
-2012-09-02 11:00:00,11303.0
-2012-09-02 12:00:00,11970.0
-2012-09-02 13:00:00,12526.0
-2012-09-02 14:00:00,13007.0
-2012-09-02 15:00:00,13464.0
-2012-09-02 16:00:00,13904.0
-2012-09-02 17:00:00,14088.0
-2012-09-02 18:00:00,14287.0
-2012-09-02 19:00:00,14157.0
-2012-09-02 20:00:00,13769.0
-2012-09-02 21:00:00,13642.0
-2012-09-02 22:00:00,13647.0
-2012-09-02 23:00:00,13191.0
-2012-09-03 00:00:00,12519.0
-2012-09-01 01:00:00,13371.0
-2012-09-01 02:00:00,12295.0
-2012-09-01 03:00:00,11555.0
-2012-09-01 04:00:00,11053.0
-2012-09-01 05:00:00,10723.0
-2012-09-01 06:00:00,10613.0
-2012-09-01 07:00:00,10744.0
-2012-09-01 08:00:00,10946.0
-2012-09-01 09:00:00,11251.0
-2012-09-01 10:00:00,11860.0
-2012-09-01 11:00:00,12362.0
-2012-09-01 12:00:00,12715.0
-2012-09-01 13:00:00,12904.0
-2012-09-01 14:00:00,12880.0
-2012-09-01 15:00:00,12780.0
-2012-09-01 16:00:00,12717.0
-2012-09-01 17:00:00,12618.0
-2012-09-01 18:00:00,12441.0
-2012-09-01 19:00:00,12253.0
-2012-09-01 20:00:00,12157.0
-2012-09-01 21:00:00,12460.0
-2012-09-01 22:00:00,12621.0
-2012-09-01 23:00:00,12394.0
-2012-09-02 00:00:00,11910.0
-2012-08-31 01:00:00,13461.0
-2012-08-31 02:00:00,12313.0
-2012-08-31 03:00:00,11473.0
-2012-08-31 04:00:00,10924.0
-2012-08-31 05:00:00,10603.0
-2012-08-31 06:00:00,10638.0
-2012-08-31 07:00:00,11237.0
-2012-08-31 08:00:00,12182.0
-2012-08-31 09:00:00,13212.0
-2012-08-31 10:00:00,14428.0
-2012-08-31 11:00:00,15821.0
-2012-08-31 12:00:00,17191.0
-2012-08-31 13:00:00,18392.0
-2012-08-31 14:00:00,19290.0
-2012-08-31 15:00:00,20015.0
-2012-08-31 16:00:00,20360.0
-2012-08-31 17:00:00,20190.0
-2012-08-31 18:00:00,19830.0
-2012-08-31 19:00:00,19181.0
-2012-08-31 20:00:00,18156.0
-2012-08-31 21:00:00,17598.0
-2012-08-31 22:00:00,17143.0
-2012-08-31 23:00:00,16076.0
-2012-09-01 00:00:00,14697.0
-2012-08-30 01:00:00,12639.0
-2012-08-30 02:00:00,11645.0
-2012-08-30 03:00:00,10929.0
-2012-08-30 04:00:00,10481.0
-2012-08-30 05:00:00,10202.0
-2012-08-30 06:00:00,10251.0
-2012-08-30 07:00:00,10877.0
-2012-08-30 08:00:00,11857.0
-2012-08-30 09:00:00,12767.0
-2012-08-30 10:00:00,13658.0
-2012-08-30 11:00:00,14608.0
-2012-08-30 12:00:00,15638.0
-2012-08-30 13:00:00,16488.0
-2012-08-30 14:00:00,17263.0
-2012-08-30 15:00:00,18074.0
-2012-08-30 16:00:00,18725.0
-2012-08-30 17:00:00,19199.0
-2012-08-30 18:00:00,19385.0
-2012-08-30 19:00:00,19110.0
-2012-08-30 20:00:00,18347.0
-2012-08-30 21:00:00,17755.0
-2012-08-30 22:00:00,17483.0
-2012-08-30 23:00:00,16457.0
-2012-08-31 00:00:00,14937.0
-2012-08-29 01:00:00,11909.0
-2012-08-29 02:00:00,11020.0
-2012-08-29 03:00:00,10413.0
-2012-08-29 04:00:00,10031.0
-2012-08-29 05:00:00,9856.0
-2012-08-29 06:00:00,9962.0
-2012-08-29 07:00:00,10631.0
-2012-08-29 08:00:00,11621.0
-2012-08-29 09:00:00,12524.0
-2012-08-29 10:00:00,13334.0
-2012-08-29 11:00:00,14061.0
-2012-08-29 12:00:00,14814.0
-2012-08-29 13:00:00,15498.0
-2012-08-29 14:00:00,16107.0
-2012-08-29 15:00:00,16784.0
-2012-08-29 16:00:00,17291.0
-2012-08-29 17:00:00,17645.0
-2012-08-29 18:00:00,17768.0
-2012-08-29 19:00:00,17480.0
-2012-08-29 20:00:00,16714.0
-2012-08-29 21:00:00,16210.0
-2012-08-29 22:00:00,16041.0
-2012-08-29 23:00:00,15182.0
-2012-08-30 00:00:00,13905.0
-2012-08-28 01:00:00,12077.0
-2012-08-28 02:00:00,11111.0
-2012-08-28 03:00:00,10445.0
-2012-08-28 04:00:00,10010.0
-2012-08-28 05:00:00,9798.0
-2012-08-28 06:00:00,9893.0
-2012-08-28 07:00:00,10533.0
-2012-08-28 08:00:00,11450.0
-2012-08-28 09:00:00,12438.0
-2012-08-28 10:00:00,13388.0
-2012-08-28 11:00:00,14224.0
-2012-08-28 12:00:00,15030.0
-2012-08-28 13:00:00,15735.0
-2012-08-28 14:00:00,16402.0
-2012-08-28 15:00:00,17045.0
-2012-08-28 16:00:00,17499.0
-2012-08-28 17:00:00,17793.0
-2012-08-28 18:00:00,17745.0
-2012-08-28 19:00:00,17197.0
-2012-08-28 20:00:00,16164.0
-2012-08-28 21:00:00,15557.0
-2012-08-28 22:00:00,15348.0
-2012-08-28 23:00:00,14439.0
-2012-08-29 00:00:00,13154.0
-2012-08-27 01:00:00,11064.0
-2012-08-27 02:00:00,10368.0
-2012-08-27 03:00:00,9977.0
-2012-08-27 04:00:00,9691.0
-2012-08-27 05:00:00,9697.0
-2012-08-27 06:00:00,9916.0
-2012-08-27 07:00:00,10704.0
-2012-08-27 08:00:00,11883.0
-2012-08-27 09:00:00,12881.0
-2012-08-27 10:00:00,13710.0
-2012-08-27 11:00:00,14599.0
-2012-08-27 12:00:00,15523.0
-2012-08-27 13:00:00,16277.0
-2012-08-27 14:00:00,16833.0
-2012-08-27 15:00:00,17278.0
-2012-08-27 16:00:00,17665.0
-2012-08-27 17:00:00,17947.0
-2012-08-27 18:00:00,18068.0
-2012-08-27 19:00:00,17746.0
-2012-08-27 20:00:00,16972.0
-2012-08-27 21:00:00,16228.0
-2012-08-27 22:00:00,15849.0
-2012-08-27 23:00:00,14815.0
-2012-08-28 00:00:00,13376.0
-2012-08-26 01:00:00,13151.0
-2012-08-26 02:00:00,12235.0
-2012-08-26 03:00:00,11474.0
-2012-08-26 04:00:00,10927.0
-2012-08-26 05:00:00,10509.0
-2012-08-26 06:00:00,10193.0
-2012-08-26 07:00:00,10157.0
-2012-08-26 08:00:00,10036.0
-2012-08-26 09:00:00,10462.0
-2012-08-26 10:00:00,11545.0
-2012-08-26 11:00:00,12407.0
-2012-08-26 12:00:00,12750.0
-2012-08-26 13:00:00,12792.0
-2012-08-26 14:00:00,12708.0
-2012-08-26 15:00:00,12730.0
-2012-08-26 16:00:00,12687.0
-2012-08-26 17:00:00,12710.0
-2012-08-26 18:00:00,12757.0
-2012-08-26 19:00:00,12867.0
-2012-08-26 20:00:00,13019.0
-2012-08-26 21:00:00,13245.0
-2012-08-26 22:00:00,13185.0
-2012-08-26 23:00:00,12680.0
-2012-08-27 00:00:00,11891.0
-2012-08-25 01:00:00,13708.0
-2012-08-25 02:00:00,12637.0
-2012-08-25 03:00:00,11836.0
-2012-08-25 04:00:00,11143.0
-2012-08-25 05:00:00,10685.0
-2012-08-25 06:00:00,10414.0
-2012-08-25 07:00:00,10483.0
-2012-08-25 08:00:00,10587.0
-2012-08-25 09:00:00,11273.0
-2012-08-25 10:00:00,12518.0
-2012-08-25 11:00:00,13910.0
-2012-08-25 12:00:00,15262.0
-2012-08-25 13:00:00,16400.0
-2012-08-25 14:00:00,17170.0
-2012-08-25 15:00:00,17545.0
-2012-08-25 16:00:00,17824.0
-2012-08-25 17:00:00,17940.0
-2012-08-25 18:00:00,17864.0
-2012-08-25 19:00:00,17553.0
-2012-08-25 20:00:00,16800.0
-2012-08-25 21:00:00,16317.0
-2012-08-25 22:00:00,16053.0
-2012-08-25 23:00:00,15346.0
-2012-08-26 00:00:00,14278.0
-2012-08-24 01:00:00,13198.0
-2012-08-24 02:00:00,12136.0
-2012-08-24 03:00:00,11373.0
-2012-08-24 04:00:00,10851.0
-2012-08-24 05:00:00,10521.0
-2012-08-24 06:00:00,10532.0
-2012-08-24 07:00:00,11088.0
-2012-08-24 08:00:00,11928.0
-2012-08-24 09:00:00,12881.0
-2012-08-24 10:00:00,13824.0
-2012-08-24 11:00:00,14855.0
-2012-08-24 12:00:00,16033.0
-2012-08-24 13:00:00,17075.0
-2012-08-24 14:00:00,17976.0
-2012-08-24 15:00:00,18804.0
-2012-08-24 16:00:00,19365.0
-2012-08-24 17:00:00,19602.0
-2012-08-24 18:00:00,19494.0
-2012-08-24 19:00:00,19045.0
-2012-08-24 20:00:00,18230.0
-2012-08-24 21:00:00,17644.0
-2012-08-24 22:00:00,17352.0
-2012-08-24 23:00:00,16445.0
-2012-08-25 00:00:00,15149.0
-2012-08-23 01:00:00,11522.0
-2012-08-23 02:00:00,10690.0
-2012-08-23 03:00:00,10142.0
-2012-08-23 04:00:00,9761.0
-2012-08-23 05:00:00,9582.0
-2012-08-23 06:00:00,9725.0
-2012-08-23 07:00:00,10369.0
-2012-08-23 08:00:00,11297.0
-2012-08-23 09:00:00,12240.0
-2012-08-23 10:00:00,12894.0
-2012-08-23 11:00:00,13412.0
-2012-08-23 12:00:00,14195.0
-2012-08-23 13:00:00,15089.0
-2012-08-23 14:00:00,16020.0
-2012-08-23 15:00:00,16915.0
-2012-08-23 16:00:00,17477.0
-2012-08-23 17:00:00,17881.0
-2012-08-23 18:00:00,18183.0
-2012-08-23 19:00:00,18082.0
-2012-08-23 20:00:00,17478.0
-2012-08-23 21:00:00,16990.0
-2012-08-23 22:00:00,16892.0
-2012-08-23 23:00:00,16027.0
-2012-08-24 00:00:00,14645.0
-2012-08-22 01:00:00,10440.0
-2012-08-22 02:00:00,9708.0
-2012-08-22 03:00:00,9229.0
-2012-08-22 04:00:00,8911.0
-2012-08-22 05:00:00,8774.0
-2012-08-22 06:00:00,8913.0
-2012-08-22 07:00:00,9517.0
-2012-08-22 08:00:00,10342.0
-2012-08-22 09:00:00,11205.0
-2012-08-22 10:00:00,11967.0
-2012-08-22 11:00:00,12664.0
-2012-08-22 12:00:00,13258.0
-2012-08-22 13:00:00,13721.0
-2012-08-22 14:00:00,14097.0
-2012-08-22 15:00:00,14588.0
-2012-08-22 16:00:00,14927.0
-2012-08-22 17:00:00,15269.0
-2012-08-22 18:00:00,15454.0
-2012-08-22 19:00:00,15373.0
-2012-08-22 20:00:00,14857.0
-2012-08-22 21:00:00,14505.0
-2012-08-22 22:00:00,14529.0
-2012-08-22 23:00:00,13856.0
-2012-08-23 00:00:00,12697.0
-2012-08-21 01:00:00,10283.0
-2012-08-21 02:00:00,9623.0
-2012-08-21 03:00:00,9170.0
-2012-08-21 04:00:00,8837.0
-2012-08-21 05:00:00,8694.0
-2012-08-21 06:00:00,8852.0
-2012-08-21 07:00:00,9437.0
-2012-08-21 08:00:00,10214.0
-2012-08-21 09:00:00,11074.0
-2012-08-21 10:00:00,11848.0
-2012-08-21 11:00:00,12438.0
-2012-08-21 12:00:00,12940.0
-2012-08-21 13:00:00,13264.0
-2012-08-21 14:00:00,13511.0
-2012-08-21 15:00:00,13837.0
-2012-08-21 16:00:00,14016.0
-2012-08-21 17:00:00,14091.0
-2012-08-21 18:00:00,14089.0
-2012-08-21 19:00:00,13906.0
-2012-08-21 20:00:00,13390.0
-2012-08-21 21:00:00,13054.0
-2012-08-21 22:00:00,13177.0
-2012-08-21 23:00:00,12584.0
-2012-08-22 00:00:00,11535.0
-2012-08-20 01:00:00,9900.0
-2012-08-20 02:00:00,9263.0
-2012-08-20 03:00:00,8899.0
-2012-08-20 04:00:00,8685.0
-2012-08-20 05:00:00,8615.0
-2012-08-20 06:00:00,8861.0
-2012-08-20 07:00:00,9474.0
-2012-08-20 08:00:00,10384.0
-2012-08-20 09:00:00,11218.0
-2012-08-20 10:00:00,12026.0
-2012-08-20 11:00:00,12567.0
-2012-08-20 12:00:00,13056.0
-2012-08-20 13:00:00,13245.0
-2012-08-20 14:00:00,13342.0
-2012-08-20 15:00:00,13439.0
-2012-08-20 16:00:00,13359.0
-2012-08-20 17:00:00,13344.0
-2012-08-20 18:00:00,13318.0
-2012-08-20 19:00:00,13120.0
-2012-08-20 20:00:00,12683.0
-2012-08-20 21:00:00,12514.0
-2012-08-20 22:00:00,12725.0
-2012-08-20 23:00:00,12191.0
-2012-08-21 00:00:00,11216.0
-2012-08-19 01:00:00,9753.0
-2012-08-19 02:00:00,9227.0
-2012-08-19 03:00:00,8726.0
-2012-08-19 04:00:00,8450.0
-2012-08-19 05:00:00,8238.0
-2012-08-19 06:00:00,8192.0
-2012-08-19 07:00:00,8228.0
-2012-08-19 08:00:00,8107.0
-2012-08-19 09:00:00,8306.0
-2012-08-19 10:00:00,8879.0
-2012-08-19 11:00:00,9394.0
-2012-08-19 12:00:00,9975.0
-2012-08-19 13:00:00,10522.0
-2012-08-19 14:00:00,10839.0
-2012-08-19 15:00:00,11087.0
-2012-08-19 16:00:00,11248.0
-2012-08-19 17:00:00,11429.0
-2012-08-19 18:00:00,11510.0
-2012-08-19 19:00:00,11543.0
-2012-08-19 20:00:00,11333.0
-2012-08-19 21:00:00,11294.0
-2012-08-19 22:00:00,11565.0
-2012-08-19 23:00:00,11305.0
-2012-08-20 00:00:00,10597.0
-2012-08-18 01:00:00,10202.0
-2012-08-18 02:00:00,9451.0
-2012-08-18 03:00:00,8970.0
-2012-08-18 04:00:00,8639.0
-2012-08-18 05:00:00,8506.0
-2012-08-18 06:00:00,8470.0
-2012-08-18 07:00:00,8611.0
-2012-08-18 08:00:00,8664.0
-2012-08-18 09:00:00,9200.0
-2012-08-18 10:00:00,9813.0
-2012-08-18 11:00:00,10409.0
-2012-08-18 12:00:00,10818.0
-2012-08-18 13:00:00,11061.0
-2012-08-18 14:00:00,11235.0
-2012-08-18 15:00:00,11255.0
-2012-08-18 16:00:00,11347.0
-2012-08-18 17:00:00,11503.0
-2012-08-18 18:00:00,11563.0
-2012-08-18 19:00:00,11508.0
-2012-08-18 20:00:00,11193.0
-2012-08-18 21:00:00,11057.0
-2012-08-18 22:00:00,11359.0
-2012-08-18 23:00:00,11025.0
-2012-08-19 00:00:00,10464.0
-2012-08-17 01:00:00,10575.0
-2012-08-17 02:00:00,9852.0
-2012-08-17 03:00:00,9323.0
-2012-08-17 04:00:00,8975.0
-2012-08-17 05:00:00,8822.0
-2012-08-17 06:00:00,8943.0
-2012-08-17 07:00:00,9461.0
-2012-08-17 08:00:00,10049.0
-2012-08-17 09:00:00,10832.0
-2012-08-17 10:00:00,11535.0
-2012-08-17 11:00:00,12055.0
-2012-08-17 12:00:00,12502.0
-2012-08-17 13:00:00,12723.0
-2012-08-17 14:00:00,12895.0
-2012-08-17 15:00:00,13087.0
-2012-08-17 16:00:00,13224.0
-2012-08-17 17:00:00,13315.0
-2012-08-17 18:00:00,13317.0
-2012-08-17 19:00:00,13077.0
-2012-08-17 20:00:00,12613.0
-2012-08-17 21:00:00,12196.0
-2012-08-17 22:00:00,12296.0
-2012-08-17 23:00:00,11879.0
-2012-08-18 00:00:00,11002.0
-2012-08-16 01:00:00,12420.0
-2012-08-16 02:00:00,11535.0
-2012-08-16 03:00:00,10868.0
-2012-08-16 04:00:00,10420.0
-2012-08-16 05:00:00,10177.0
-2012-08-16 06:00:00,10258.0
-2012-08-16 07:00:00,10867.0
-2012-08-16 08:00:00,11761.0
-2012-08-16 09:00:00,12710.0
-2012-08-16 10:00:00,13295.0
-2012-08-16 11:00:00,13470.0
-2012-08-16 12:00:00,13733.0
-2012-08-16 13:00:00,13843.0
-2012-08-16 14:00:00,14129.0
-2012-08-16 15:00:00,14349.0
-2012-08-16 16:00:00,14226.0
-2012-08-16 17:00:00,14064.0
-2012-08-16 18:00:00,13929.0
-2012-08-16 19:00:00,13714.0
-2012-08-16 20:00:00,13361.0
-2012-08-16 21:00:00,13034.0
-2012-08-16 22:00:00,13127.0
-2012-08-16 23:00:00,12590.0
-2012-08-17 00:00:00,11582.0
-2012-08-15 01:00:00,11240.0
-2012-08-15 02:00:00,10418.0
-2012-08-15 03:00:00,9865.0
-2012-08-15 04:00:00,9555.0
-2012-08-15 05:00:00,9402.0
-2012-08-15 06:00:00,9549.0
-2012-08-15 07:00:00,10167.0
-2012-08-15 08:00:00,11031.0
-2012-08-15 09:00:00,11823.0
-2012-08-15 10:00:00,12430.0
-2012-08-15 11:00:00,12935.0
-2012-08-15 12:00:00,13717.0
-2012-08-15 13:00:00,14524.0
-2012-08-15 14:00:00,15183.0
-2012-08-15 15:00:00,15795.0
-2012-08-15 16:00:00,16167.0
-2012-08-15 17:00:00,16479.0
-2012-08-15 18:00:00,16586.0
-2012-08-15 19:00:00,16425.0
-2012-08-15 20:00:00,15780.0
-2012-08-15 21:00:00,15352.0
-2012-08-15 22:00:00,15403.0
-2012-08-15 23:00:00,14765.0
-2012-08-16 00:00:00,13626.0
-2012-08-14 01:00:00,10175.0
-2012-08-14 02:00:00,9516.0
-2012-08-14 03:00:00,9118.0
-2012-08-14 04:00:00,8840.0
-2012-08-14 05:00:00,8733.0
-2012-08-14 06:00:00,8893.0
-2012-08-14 07:00:00,9435.0
-2012-08-14 08:00:00,10163.0
-2012-08-14 09:00:00,11060.0
-2012-08-14 10:00:00,11838.0
-2012-08-14 11:00:00,12523.0
-2012-08-14 12:00:00,13158.0
-2012-08-14 13:00:00,13659.0
-2012-08-14 14:00:00,14043.0
-2012-08-14 15:00:00,14408.0
-2012-08-14 16:00:00,14574.0
-2012-08-14 17:00:00,14655.0
-2012-08-14 18:00:00,14643.0
-2012-08-14 19:00:00,14419.0
-2012-08-14 20:00:00,13971.0
-2012-08-14 21:00:00,13712.0
-2012-08-14 22:00:00,13831.0
-2012-08-14 23:00:00,13317.0
-2012-08-15 00:00:00,12322.0
-2012-08-13 01:00:00,10021.0
-2012-08-13 02:00:00,9485.0
-2012-08-13 03:00:00,9147.0
-2012-08-13 04:00:00,8949.0
-2012-08-13 05:00:00,8882.0
-2012-08-13 06:00:00,9087.0
-2012-08-13 07:00:00,9784.0
-2012-08-13 08:00:00,10743.0
-2012-08-13 09:00:00,11467.0
-2012-08-13 10:00:00,11990.0
-2012-08-13 11:00:00,12418.0
-2012-08-13 12:00:00,12735.0
-2012-08-13 13:00:00,12793.0
-2012-08-13 14:00:00,12786.0
-2012-08-13 15:00:00,12769.0
-2012-08-13 16:00:00,12643.0
-2012-08-13 17:00:00,12495.0
-2012-08-13 18:00:00,12360.0
-2012-08-13 19:00:00,12200.0
-2012-08-13 20:00:00,11929.0
-2012-08-13 21:00:00,11895.0
-2012-08-13 22:00:00,12194.0
-2012-08-13 23:00:00,11825.0
-2012-08-14 00:00:00,11037.0
-2012-08-12 01:00:00,10015.0
-2012-08-12 02:00:00,9398.0
-2012-08-12 03:00:00,8901.0
-2012-08-12 04:00:00,8640.0
-2012-08-12 05:00:00,8429.0
-2012-08-12 06:00:00,8311.0
-2012-08-12 07:00:00,8283.0
-2012-08-12 08:00:00,8155.0
-2012-08-12 09:00:00,8438.0
-2012-08-12 10:00:00,8946.0
-2012-08-12 11:00:00,9442.0
-2012-08-12 12:00:00,9884.0
-2012-08-12 13:00:00,10249.0
-2012-08-12 14:00:00,10464.0
-2012-08-12 15:00:00,10630.0
-2012-08-12 16:00:00,10700.0
-2012-08-12 17:00:00,10766.0
-2012-08-12 18:00:00,10808.0
-2012-08-12 19:00:00,10879.0
-2012-08-12 20:00:00,10883.0
-2012-08-12 21:00:00,11058.0
-2012-08-12 22:00:00,11395.0
-2012-08-12 23:00:00,11231.0
-2012-08-13 00:00:00,10682.0
-2012-08-11 01:00:00,10244.0
-2012-08-11 02:00:00,9551.0
-2012-08-11 03:00:00,9081.0
-2012-08-11 04:00:00,8720.0
-2012-08-11 05:00:00,8549.0
-2012-08-11 06:00:00,8493.0
-2012-08-11 07:00:00,8618.0
-2012-08-11 08:00:00,8652.0
-2012-08-11 09:00:00,9117.0
-2012-08-11 10:00:00,9694.0
-2012-08-11 11:00:00,10323.0
-2012-08-11 12:00:00,10796.0
-2012-08-11 13:00:00,11112.0
-2012-08-11 14:00:00,11259.0
-2012-08-11 15:00:00,11409.0
-2012-08-11 16:00:00,11568.0
-2012-08-11 17:00:00,11750.0
-2012-08-11 18:00:00,11889.0
-2012-08-11 19:00:00,11916.0
-2012-08-11 20:00:00,11677.0
-2012-08-11 21:00:00,11437.0
-2012-08-11 22:00:00,11600.0
-2012-08-11 23:00:00,11382.0
-2012-08-12 00:00:00,10711.0
-2012-08-10 01:00:00,10817.0
-2012-08-10 02:00:00,10134.0
-2012-08-10 03:00:00,9680.0
-2012-08-10 04:00:00,9407.0
-2012-08-10 05:00:00,9252.0
-2012-08-10 06:00:00,9396.0
-2012-08-10 07:00:00,9925.0
-2012-08-10 08:00:00,10606.0
-2012-08-10 09:00:00,11320.0
-2012-08-10 10:00:00,11956.0
-2012-08-10 11:00:00,12409.0
-2012-08-10 12:00:00,12755.0
-2012-08-10 13:00:00,12990.0
-2012-08-10 14:00:00,13139.0
-2012-08-10 15:00:00,13271.0
-2012-08-10 16:00:00,13284.0
-2012-08-10 17:00:00,13220.0
-2012-08-10 18:00:00,12975.0
-2012-08-10 19:00:00,12654.0
-2012-08-10 20:00:00,12207.0
-2012-08-10 21:00:00,11885.0
-2012-08-10 22:00:00,12101.0
-2012-08-10 23:00:00,11840.0
-2012-08-11 00:00:00,11092.0
-2012-08-09 01:00:00,12192.0
-2012-08-09 02:00:00,11373.0
-2012-08-09 03:00:00,10823.0
-2012-08-09 04:00:00,10409.0
-2012-08-09 05:00:00,10246.0
-2012-08-09 06:00:00,10364.0
-2012-08-09 07:00:00,10982.0
-2012-08-09 08:00:00,11795.0
-2012-08-09 09:00:00,12613.0
-2012-08-09 10:00:00,13272.0
-2012-08-09 11:00:00,13744.0
-2012-08-09 12:00:00,14154.0
-2012-08-09 13:00:00,14386.0
-2012-08-09 14:00:00,14513.0
-2012-08-09 15:00:00,14649.0
-2012-08-09 16:00:00,14554.0
-2012-08-09 17:00:00,14268.0
-2012-08-09 18:00:00,13862.0
-2012-08-09 19:00:00,13454.0
-2012-08-09 20:00:00,13005.0
-2012-08-09 21:00:00,12848.0
-2012-08-09 22:00:00,12981.0
-2012-08-09 23:00:00,12586.0
-2012-08-10 00:00:00,11758.0
-2012-08-08 01:00:00,14792.0
-2012-08-08 02:00:00,13618.0
-2012-08-08 03:00:00,12801.0
-2012-08-08 04:00:00,12171.0
-2012-08-08 05:00:00,11787.0
-2012-08-08 06:00:00,11741.0
-2012-08-08 07:00:00,12197.0
-2012-08-08 08:00:00,12928.0
-2012-08-08 09:00:00,14077.0
-2012-08-08 10:00:00,15151.0
-2012-08-08 11:00:00,16024.0
-2012-08-08 12:00:00,16860.0
-2012-08-08 13:00:00,17359.0
-2012-08-08 14:00:00,17760.0
-2012-08-08 15:00:00,17803.0
-2012-08-08 16:00:00,17336.0
-2012-08-08 17:00:00,16692.0
-2012-08-08 18:00:00,15993.0
-2012-08-08 19:00:00,15387.0
-2012-08-08 20:00:00,14877.0
-2012-08-08 21:00:00,14516.0
-2012-08-08 22:00:00,14628.0
-2012-08-08 23:00:00,14159.0
-2012-08-09 00:00:00,13216.0
-2012-08-07 01:00:00,12471.0
-2012-08-07 02:00:00,11456.0
-2012-08-07 03:00:00,10762.0
-2012-08-07 04:00:00,10279.0
-2012-08-07 05:00:00,10028.0
-2012-08-07 06:00:00,10096.0
-2012-08-07 07:00:00,10606.0
-2012-08-07 08:00:00,11349.0
-2012-08-07 09:00:00,12414.0
-2012-08-07 10:00:00,13461.0
-2012-08-07 11:00:00,14499.0
-2012-08-07 12:00:00,15509.0
-2012-08-07 13:00:00,16429.0
-2012-08-07 14:00:00,17279.0
-2012-08-07 15:00:00,18395.0
-2012-08-07 16:00:00,19184.0
-2012-08-07 17:00:00,19659.0
-2012-08-07 18:00:00,19934.0
-2012-08-07 19:00:00,19989.0
-2012-08-07 20:00:00,19547.0
-2012-08-07 21:00:00,18835.0
-2012-08-07 22:00:00,18546.0
-2012-08-07 23:00:00,17784.0
-2012-08-08 00:00:00,16334.0
-2012-08-06 01:00:00,11568.0
-2012-08-06 02:00:00,10695.0
-2012-08-06 03:00:00,10157.0
-2012-08-06 04:00:00,9756.0
-2012-08-06 05:00:00,9630.0
-2012-08-06 06:00:00,9746.0
-2012-08-06 07:00:00,10297.0
-2012-08-06 08:00:00,11009.0
-2012-08-06 09:00:00,12210.0
-2012-08-06 10:00:00,13137.0
-2012-08-06 11:00:00,13960.0
-2012-08-06 12:00:00,14733.0
-2012-08-06 13:00:00,15364.0
-2012-08-06 14:00:00,15908.0
-2012-08-06 15:00:00,16497.0
-2012-08-06 16:00:00,16953.0
-2012-08-06 17:00:00,17338.0
-2012-08-06 18:00:00,17569.0
-2012-08-06 19:00:00,17571.0
-2012-08-06 20:00:00,17051.0
-2012-08-06 21:00:00,16282.0
-2012-08-06 22:00:00,15850.0
-2012-08-06 23:00:00,15088.0
-2012-08-07 00:00:00,13756.0
-2012-08-05 01:00:00,12357.0
-2012-08-05 02:00:00,11526.0
-2012-08-05 03:00:00,10995.0
-2012-08-05 04:00:00,10607.0
-2012-08-05 05:00:00,10290.0
-2012-08-05 06:00:00,10095.0
-2012-08-05 07:00:00,9889.0
-2012-08-05 08:00:00,9720.0
-2012-08-05 09:00:00,10223.0
-2012-08-05 10:00:00,11135.0
-2012-08-05 11:00:00,11982.0
-2012-08-05 12:00:00,12812.0
-2012-08-05 13:00:00,13373.0
-2012-08-05 14:00:00,13812.0
-2012-08-05 15:00:00,14172.0
-2012-08-05 16:00:00,14426.0
-2012-08-05 17:00:00,14705.0
-2012-08-05 18:00:00,14895.0
-2012-08-05 19:00:00,14916.0
-2012-08-05 20:00:00,14580.0
-2012-08-05 21:00:00,14027.0
-2012-08-05 22:00:00,13751.0
-2012-08-05 23:00:00,13419.0
-2012-08-06 00:00:00,12515.0
-2012-08-04 01:00:00,15392.0
-2012-08-04 02:00:00,14168.0
-2012-08-04 03:00:00,13303.0
-2012-08-04 04:00:00,12532.0
-2012-08-04 05:00:00,12077.0
-2012-08-04 06:00:00,11862.0
-2012-08-04 07:00:00,11874.0
-2012-08-04 08:00:00,11960.0
-2012-08-04 09:00:00,12894.0
-2012-08-04 10:00:00,14311.0
-2012-08-04 11:00:00,15831.0
-2012-08-04 12:00:00,17093.0
-2012-08-04 13:00:00,18070.0
-2012-08-04 14:00:00,18753.0
-2012-08-04 15:00:00,19271.0
-2012-08-04 16:00:00,19513.0
-2012-08-04 17:00:00,18617.0
-2012-08-04 18:00:00,16490.0
-2012-08-04 19:00:00,15274.0
-2012-08-04 20:00:00,14603.0
-2012-08-04 21:00:00,14148.0
-2012-08-04 22:00:00,14165.0
-2012-08-04 23:00:00,13945.0
-2012-08-05 00:00:00,13169.0
-2012-08-03 01:00:00,14335.0
-2012-08-03 02:00:00,13149.0
-2012-08-03 03:00:00,12336.0
-2012-08-03 04:00:00,11779.0
-2012-08-03 05:00:00,11486.0
-2012-08-03 06:00:00,11524.0
-2012-08-03 07:00:00,11985.0
-2012-08-03 08:00:00,12709.0
-2012-08-03 09:00:00,14045.0
-2012-08-03 10:00:00,15397.0
-2012-08-03 11:00:00,16684.0
-2012-08-03 12:00:00,17916.0
-2012-08-03 13:00:00,18951.0
-2012-08-03 14:00:00,19770.0
-2012-08-03 15:00:00,20415.0
-2012-08-03 16:00:00,20834.0
-2012-08-03 17:00:00,21053.0
-2012-08-03 18:00:00,21078.0
-2012-08-03 19:00:00,20709.0
-2012-08-03 20:00:00,20004.0
-2012-08-03 21:00:00,19116.0
-2012-08-03 22:00:00,18635.0
-2012-08-03 23:00:00,17957.0
-2012-08-04 00:00:00,16689.0
-2012-08-02 01:00:00,14139.0
-2012-08-02 02:00:00,12987.0
-2012-08-02 03:00:00,12191.0
-2012-08-02 04:00:00,11570.0
-2012-08-02 05:00:00,11255.0
-2012-08-02 06:00:00,11207.0
-2012-08-02 07:00:00,11622.0
-2012-08-02 08:00:00,12242.0
-2012-08-02 09:00:00,13413.0
-2012-08-02 10:00:00,14499.0
-2012-08-02 11:00:00,15359.0
-2012-08-02 12:00:00,16401.0
-2012-08-02 13:00:00,17559.0
-2012-08-02 14:00:00,18610.0
-2012-08-02 15:00:00,19603.0
-2012-08-02 16:00:00,20192.0
-2012-08-02 17:00:00,20240.0
-2012-08-02 18:00:00,19981.0
-2012-08-02 19:00:00,19800.0
-2012-08-02 20:00:00,19135.0
-2012-08-02 21:00:00,18288.0
-2012-08-02 22:00:00,17805.0
-2012-08-02 23:00:00,17333.0
-2012-08-03 00:00:00,15852.0
-2012-08-01 01:00:00,13303.0
-2012-08-01 02:00:00,12284.0
-2012-08-01 03:00:00,11497.0
-2012-08-01 04:00:00,10980.0
-2012-08-01 05:00:00,10707.0
-2012-08-01 06:00:00,10796.0
-2012-08-01 07:00:00,11314.0
-2012-08-01 08:00:00,12066.0
-2012-08-01 09:00:00,13280.0
-2012-08-01 10:00:00,14433.0
-2012-08-01 11:00:00,15381.0
-2012-08-01 12:00:00,16445.0
-2012-08-01 13:00:00,17277.0
-2012-08-01 14:00:00,17983.0
-2012-08-01 15:00:00,18601.0
-2012-08-01 16:00:00,19114.0
-2012-08-01 17:00:00,19507.0
-2012-08-01 18:00:00,19743.0
-2012-08-01 19:00:00,19632.0
-2012-08-01 20:00:00,19067.0
-2012-08-01 21:00:00,18215.0
-2012-08-01 22:00:00,17785.0
-2012-08-01 23:00:00,17029.0
-2012-08-02 00:00:00,15604.0
-2012-07-31 01:00:00,15400.0
-2012-07-31 02:00:00,14175.0
-2012-07-31 03:00:00,13299.0
-2012-07-31 04:00:00,12707.0
-2012-07-31 05:00:00,12107.0
-2012-07-31 06:00:00,11890.0
-2012-07-31 07:00:00,12251.0
-2012-07-31 08:00:00,12927.0
-2012-07-31 09:00:00,14120.0
-2012-07-31 10:00:00,15234.0
-2012-07-31 11:00:00,16237.0
-2012-07-31 12:00:00,17020.0
-2012-07-31 13:00:00,17713.0
-2012-07-31 14:00:00,18326.0
-2012-07-31 15:00:00,18953.0
-2012-07-31 16:00:00,19144.0
-2012-07-31 17:00:00,19258.0
-2012-07-31 18:00:00,19242.0
-2012-07-31 19:00:00,18940.0
-2012-07-31 20:00:00,18196.0
-2012-07-31 21:00:00,17174.0
-2012-07-31 22:00:00,16634.0
-2012-07-31 23:00:00,15963.0
-2012-08-01 00:00:00,14721.0
-2012-07-30 01:00:00,12343.0
-2012-07-30 02:00:00,11612.0
-2012-07-30 03:00:00,10946.0
-2012-07-30 04:00:00,10610.0
-2012-07-30 05:00:00,10446.0
-2012-07-30 06:00:00,10652.0
-2012-07-30 07:00:00,11182.0
-2012-07-30 08:00:00,11983.0
-2012-07-30 09:00:00,13123.0
-2012-07-30 10:00:00,14373.0
-2012-07-30 11:00:00,15638.0
-2012-07-30 12:00:00,16961.0
-2012-07-30 13:00:00,18111.0
-2012-07-30 14:00:00,18949.0
-2012-07-30 15:00:00,19635.0
-2012-07-30 16:00:00,20072.0
-2012-07-30 17:00:00,20295.0
-2012-07-30 18:00:00,20481.0
-2012-07-30 19:00:00,20473.0
-2012-07-30 20:00:00,20010.0
-2012-07-30 21:00:00,19329.0
-2012-07-30 22:00:00,19028.0
-2012-07-30 23:00:00,18307.0
-2012-07-31 00:00:00,16845.0
-2012-07-29 01:00:00,11669.0
-2012-07-29 02:00:00,10867.0
-2012-07-29 03:00:00,10235.0
-2012-07-29 04:00:00,9825.0
-2012-07-29 05:00:00,9467.0
-2012-07-29 06:00:00,9285.0
-2012-07-29 07:00:00,9176.0
-2012-07-29 08:00:00,9089.0
-2012-07-29 09:00:00,9625.0
-2012-07-29 10:00:00,10490.0
-2012-07-29 11:00:00,11511.0
-2012-07-29 12:00:00,12590.0
-2012-07-29 13:00:00,13546.0
-2012-07-29 14:00:00,14173.0
-2012-07-29 15:00:00,14611.0
-2012-07-29 16:00:00,14674.0
-2012-07-29 17:00:00,14438.0
-2012-07-29 18:00:00,14141.0
-2012-07-29 19:00:00,14022.0
-2012-07-29 20:00:00,13946.0
-2012-07-29 21:00:00,13790.0
-2012-07-29 22:00:00,14040.0
-2012-07-29 23:00:00,13908.0
-2012-07-30 00:00:00,13263.0
-2012-07-28 01:00:00,12442.0
-2012-07-28 02:00:00,11508.0
-2012-07-28 03:00:00,10857.0
-2012-07-28 04:00:00,10322.0
-2012-07-28 05:00:00,10074.0
-2012-07-28 06:00:00,9967.0
-2012-07-28 07:00:00,10029.0
-2012-07-28 08:00:00,10218.0
-2012-07-28 09:00:00,11073.0
-2012-07-28 10:00:00,12091.0
-2012-07-28 11:00:00,13012.0
-2012-07-28 12:00:00,13828.0
-2012-07-28 13:00:00,14341.0
-2012-07-28 14:00:00,14732.0
-2012-07-28 15:00:00,14988.0
-2012-07-28 16:00:00,15227.0
-2012-07-28 17:00:00,15421.0
-2012-07-28 18:00:00,15455.0
-2012-07-28 19:00:00,15206.0
-2012-07-28 20:00:00,14804.0
-2012-07-28 21:00:00,14109.0
-2012-07-28 22:00:00,13825.0
-2012-07-28 23:00:00,13472.0
-2012-07-29 00:00:00,12587.0
-2012-07-27 01:00:00,13604.0
-2012-07-27 02:00:00,12544.0
-2012-07-27 03:00:00,11768.0
-2012-07-27 04:00:00,11206.0
-2012-07-27 05:00:00,10948.0
-2012-07-27 06:00:00,10979.0
-2012-07-27 07:00:00,11429.0
-2012-07-27 08:00:00,12105.0
-2012-07-27 09:00:00,13030.0
-2012-07-27 10:00:00,13697.0
-2012-07-27 11:00:00,14428.0
-2012-07-27 12:00:00,15347.0
-2012-07-27 13:00:00,16216.0
-2012-07-27 14:00:00,16791.0
-2012-07-27 15:00:00,17244.0
-2012-07-27 16:00:00,17586.0
-2012-07-27 17:00:00,17674.0
-2012-07-27 18:00:00,17476.0
-2012-07-27 19:00:00,16929.0
-2012-07-27 20:00:00,16141.0
-2012-07-27 21:00:00,15308.0
-2012-07-27 22:00:00,14923.0
-2012-07-27 23:00:00,14531.0
-2012-07-28 00:00:00,13476.0
-2012-07-26 01:00:00,17368.0
-2012-07-26 02:00:00,16170.0
-2012-07-26 03:00:00,15370.0
-2012-07-26 04:00:00,14648.0
-2012-07-26 05:00:00,13951.0
-2012-07-26 06:00:00,13450.0
-2012-07-26 07:00:00,13652.0
-2012-07-26 08:00:00,14318.0
-2012-07-26 09:00:00,15015.0
-2012-07-26 10:00:00,15534.0
-2012-07-26 11:00:00,15920.0
-2012-07-26 12:00:00,16420.0
-2012-07-26 13:00:00,16860.0
-2012-07-26 14:00:00,17696.0
-2012-07-26 15:00:00,18362.0
-2012-07-26 16:00:00,18769.0
-2012-07-26 17:00:00,19293.0
-2012-07-26 18:00:00,19561.0
-2012-07-26 19:00:00,19046.0
-2012-07-26 20:00:00,18082.0
-2012-07-26 21:00:00,17272.0
-2012-07-26 22:00:00,16716.0
-2012-07-26 23:00:00,16256.0
-2012-07-27 00:00:00,14983.0
-2012-07-25 01:00:00,13388.0
-2012-07-25 02:00:00,12461.0
-2012-07-25 03:00:00,11800.0
-2012-07-25 04:00:00,11307.0
-2012-07-25 05:00:00,11081.0
-2012-07-25 06:00:00,11151.0
-2012-07-25 07:00:00,11642.0
-2012-07-25 08:00:00,12508.0
-2012-07-25 09:00:00,13478.0
-2012-07-25 10:00:00,14556.0
-2012-07-25 11:00:00,15656.0
-2012-07-25 12:00:00,17089.0
-2012-07-25 13:00:00,18377.0
-2012-07-25 14:00:00,19668.0
-2012-07-25 15:00:00,20855.0
-2012-07-25 16:00:00,21714.0
-2012-07-25 17:00:00,22311.0
-2012-07-25 18:00:00,22505.0
-2012-07-25 19:00:00,22431.0
-2012-07-25 20:00:00,21984.0
-2012-07-25 21:00:00,21264.0
-2012-07-25 22:00:00,20840.0
-2012-07-25 23:00:00,20259.0
-2012-07-26 00:00:00,18851.0
-2012-07-24 01:00:00,16872.0
-2012-07-24 02:00:00,15789.0
-2012-07-24 03:00:00,14908.0
-2012-07-24 04:00:00,14313.0
-2012-07-24 05:00:00,13947.0
-2012-07-24 06:00:00,13882.0
-2012-07-24 07:00:00,14229.0
-2012-07-24 08:00:00,14441.0
-2012-07-24 09:00:00,14537.0
-2012-07-24 10:00:00,14748.0
-2012-07-24 11:00:00,15223.0
-2012-07-24 12:00:00,15788.0
-2012-07-24 13:00:00,16325.0
-2012-07-24 14:00:00,16680.0
-2012-07-24 15:00:00,17217.0
-2012-07-24 16:00:00,17642.0
-2012-07-24 17:00:00,17794.0
-2012-07-24 18:00:00,17976.0
-2012-07-24 19:00:00,17872.0
-2012-07-24 20:00:00,17283.0
-2012-07-24 21:00:00,16406.0
-2012-07-24 22:00:00,16040.0
-2012-07-24 23:00:00,15655.0
-2012-07-25 00:00:00,14594.0
-2012-07-23 01:00:00,14096.0
-2012-07-23 02:00:00,13273.0
-2012-07-23 03:00:00,12710.0
-2012-07-23 04:00:00,12365.0
-2012-07-23 05:00:00,12162.0
-2012-07-23 06:00:00,12345.0
-2012-07-23 07:00:00,12977.0
-2012-07-23 08:00:00,13895.0
-2012-07-23 09:00:00,15244.0
-2012-07-23 10:00:00,16585.0
-2012-07-23 11:00:00,18014.0
-2012-07-23 12:00:00,19267.0
-2012-07-23 13:00:00,20194.0
-2012-07-23 14:00:00,20929.0
-2012-07-23 15:00:00,21273.0
-2012-07-23 16:00:00,21651.0
-2012-07-23 17:00:00,21876.0
-2012-07-23 18:00:00,21933.0
-2012-07-23 19:00:00,21611.0
-2012-07-23 20:00:00,20917.0
-2012-07-23 21:00:00,20423.0
-2012-07-23 22:00:00,20263.0
-2012-07-23 23:00:00,19640.0
-2012-07-24 00:00:00,18301.0
-2012-07-22 01:00:00,13711.0
-2012-07-22 02:00:00,12688.0
-2012-07-22 03:00:00,11983.0
-2012-07-22 04:00:00,11368.0
-2012-07-22 05:00:00,10945.0
-2012-07-22 06:00:00,10642.0
-2012-07-22 07:00:00,10341.0
-2012-07-22 08:00:00,10417.0
-2012-07-22 09:00:00,11080.0
-2012-07-22 10:00:00,11989.0
-2012-07-22 11:00:00,12980.0
-2012-07-22 12:00:00,13596.0
-2012-07-22 13:00:00,13976.0
-2012-07-22 14:00:00,14301.0
-2012-07-22 15:00:00,14650.0
-2012-07-22 16:00:00,14746.0
-2012-07-22 17:00:00,14989.0
-2012-07-22 18:00:00,15823.0
-2012-07-22 19:00:00,16407.0
-2012-07-22 20:00:00,16549.0
-2012-07-22 21:00:00,16189.0
-2012-07-22 22:00:00,16060.0
-2012-07-22 23:00:00,15892.0
-2012-07-23 00:00:00,15072.0
-2012-07-21 01:00:00,12120.0
-2012-07-21 02:00:00,11196.0
-2012-07-21 03:00:00,10539.0
-2012-07-21 04:00:00,10102.0
-2012-07-21 05:00:00,9864.0
-2012-07-21 06:00:00,9751.0
-2012-07-21 07:00:00,9772.0
-2012-07-21 08:00:00,10023.0
-2012-07-21 09:00:00,10870.0
-2012-07-21 10:00:00,11926.0
-2012-07-21 11:00:00,12995.0
-2012-07-21 12:00:00,14065.0
-2012-07-21 13:00:00,14963.0
-2012-07-21 14:00:00,15709.0
-2012-07-21 15:00:00,16274.0
-2012-07-21 16:00:00,16575.0
-2012-07-21 17:00:00,16619.0
-2012-07-21 18:00:00,16662.0
-2012-07-21 19:00:00,16425.0
-2012-07-21 20:00:00,16124.0
-2012-07-21 21:00:00,15816.0
-2012-07-21 22:00:00,15725.0
-2012-07-21 23:00:00,15572.0
-2012-07-22 00:00:00,14714.0
-2012-07-20 01:00:00,13141.0
-2012-07-20 02:00:00,12183.0
-2012-07-20 03:00:00,11581.0
-2012-07-20 04:00:00,11116.0
-2012-07-20 05:00:00,10913.0
-2012-07-20 06:00:00,11010.0
-2012-07-20 07:00:00,11534.0
-2012-07-20 08:00:00,12266.0
-2012-07-20 09:00:00,13041.0
-2012-07-20 10:00:00,13732.0
-2012-07-20 11:00:00,14473.0
-2012-07-20 12:00:00,15261.0
-2012-07-20 13:00:00,15785.0
-2012-07-20 14:00:00,16183.0
-2012-07-20 15:00:00,16519.0
-2012-07-20 16:00:00,16659.0
-2012-07-20 17:00:00,16856.0
-2012-07-20 18:00:00,16895.0
-2012-07-20 19:00:00,16601.0
-2012-07-20 20:00:00,15848.0
-2012-07-20 21:00:00,14987.0
-2012-07-20 22:00:00,14423.0
-2012-07-20 23:00:00,14090.0
-2012-07-21 00:00:00,13106.0
-2012-07-19 01:00:00,14568.0
-2012-07-19 02:00:00,13599.0
-2012-07-19 03:00:00,12741.0
-2012-07-19 04:00:00,12287.0
-2012-07-19 05:00:00,12046.0
-2012-07-19 06:00:00,12086.0
-2012-07-19 07:00:00,12651.0
-2012-07-19 08:00:00,13463.0
-2012-07-19 09:00:00,14308.0
-2012-07-19 10:00:00,15084.0
-2012-07-19 11:00:00,15734.0
-2012-07-19 12:00:00,16666.0
-2012-07-19 13:00:00,17319.0
-2012-07-19 14:00:00,17700.0
-2012-07-19 15:00:00,17982.0
-2012-07-19 16:00:00,18027.0
-2012-07-19 17:00:00,18213.0
-2012-07-19 18:00:00,18205.0
-2012-07-19 19:00:00,17725.0
-2012-07-19 20:00:00,16889.0
-2012-07-19 21:00:00,16190.0
-2012-07-19 22:00:00,15878.0
-2012-07-19 23:00:00,15419.0
-2012-07-20 00:00:00,14334.0
-2012-07-18 01:00:00,17414.0
-2012-07-18 02:00:00,16104.0
-2012-07-18 03:00:00,15210.0
-2012-07-18 04:00:00,14448.0
-2012-07-18 05:00:00,13940.0
-2012-07-18 06:00:00,13829.0
-2012-07-18 07:00:00,14131.0
-2012-07-18 08:00:00,14913.0
-2012-07-18 09:00:00,16194.0
-2012-07-18 10:00:00,17182.0
-2012-07-18 11:00:00,18058.0
-2012-07-18 12:00:00,18943.0
-2012-07-18 13:00:00,19767.0
-2012-07-18 14:00:00,20552.0
-2012-07-18 15:00:00,21034.0
-2012-07-18 16:00:00,21242.0
-2012-07-18 17:00:00,21434.0
-2012-07-18 18:00:00,21471.0
-2012-07-18 19:00:00,21149.0
-2012-07-18 20:00:00,20389.0
-2012-07-18 21:00:00,19451.0
-2012-07-18 22:00:00,18877.0
-2012-07-18 23:00:00,17931.0
-2012-07-19 00:00:00,15898.0
-2012-07-17 01:00:00,17035.0
-2012-07-17 02:00:00,15850.0
-2012-07-17 03:00:00,14963.0
-2012-07-17 04:00:00,14308.0
-2012-07-17 05:00:00,13882.0
-2012-07-17 06:00:00,13802.0
-2012-07-17 07:00:00,14121.0
-2012-07-17 08:00:00,15111.0
-2012-07-17 09:00:00,16691.0
-2012-07-17 10:00:00,18215.0
-2012-07-17 11:00:00,19653.0
-2012-07-17 12:00:00,20927.0
-2012-07-17 13:00:00,21883.0
-2012-07-17 14:00:00,22450.0
-2012-07-17 15:00:00,22915.0
-2012-07-17 16:00:00,23138.0
-2012-07-17 17:00:00,23269.0
-2012-07-17 18:00:00,23265.0
-2012-07-17 19:00:00,23064.0
-2012-07-17 20:00:00,22569.0
-2012-07-17 21:00:00,21902.0
-2012-07-17 22:00:00,21351.0
-2012-07-17 23:00:00,20605.0
-2012-07-18 00:00:00,19005.0
-2012-07-16 01:00:00,14692.0
-2012-07-16 02:00:00,13605.0
-2012-07-16 03:00:00,12892.0
-2012-07-16 04:00:00,12330.0
-2012-07-16 05:00:00,12035.0
-2012-07-16 06:00:00,12120.0
-2012-07-16 07:00:00,12552.0
-2012-07-16 08:00:00,13620.0
-2012-07-16 09:00:00,15209.0
-2012-07-16 10:00:00,16855.0
-2012-07-16 11:00:00,18204.0
-2012-07-16 12:00:00,19525.0
-2012-07-16 13:00:00,20504.0
-2012-07-16 14:00:00,21192.0
-2012-07-16 15:00:00,21695.0
-2012-07-16 16:00:00,22014.0
-2012-07-16 17:00:00,22301.0
-2012-07-16 18:00:00,22350.0
-2012-07-16 19:00:00,22233.0
-2012-07-16 20:00:00,21804.0
-2012-07-16 21:00:00,21051.0
-2012-07-16 22:00:00,20461.0
-2012-07-16 23:00:00,19914.0
-2012-07-17 00:00:00,18492.0
-2012-07-15 01:00:00,13066.0
-2012-07-15 02:00:00,12103.0
-2012-07-15 03:00:00,11448.0
-2012-07-15 04:00:00,10857.0
-2012-07-15 05:00:00,10456.0
-2012-07-15 06:00:00,10226.0
-2012-07-15 07:00:00,10002.0
-2012-07-15 08:00:00,10136.0
-2012-07-15 09:00:00,10984.0
-2012-07-15 10:00:00,12312.0
-2012-07-15 11:00:00,13778.0
-2012-07-15 12:00:00,15200.0
-2012-07-15 13:00:00,16275.0
-2012-07-15 14:00:00,16972.0
-2012-07-15 15:00:00,17544.0
-2012-07-15 16:00:00,18061.0
-2012-07-15 17:00:00,18404.0
-2012-07-15 18:00:00,18612.0
-2012-07-15 19:00:00,18659.0
-2012-07-15 20:00:00,18338.0
-2012-07-15 21:00:00,17735.0
-2012-07-15 22:00:00,17407.0
-2012-07-15 23:00:00,17034.0
-2012-07-16 00:00:00,15941.0
-2012-07-14 01:00:00,13413.0
-2012-07-14 02:00:00,12411.0
-2012-07-14 03:00:00,11738.0
-2012-07-14 04:00:00,11206.0
-2012-07-14 05:00:00,10888.0
-2012-07-14 06:00:00,10765.0
-2012-07-14 07:00:00,10782.0
-2012-07-14 08:00:00,11083.0
-2012-07-14 09:00:00,11951.0
-2012-07-14 10:00:00,13080.0
-2012-07-14 11:00:00,14250.0
-2012-07-14 12:00:00,15389.0
-2012-07-14 13:00:00,16279.0
-2012-07-14 14:00:00,16926.0
-2012-07-14 15:00:00,16852.0
-2012-07-14 16:00:00,16524.0
-2012-07-14 17:00:00,16380.0
-2012-07-14 18:00:00,16347.0
-2012-07-14 19:00:00,16379.0
-2012-07-14 20:00:00,16158.0
-2012-07-14 21:00:00,15703.0
-2012-07-14 22:00:00,15241.0
-2012-07-14 23:00:00,14986.0
-2012-07-15 00:00:00,14092.0
-2012-07-13 01:00:00,13981.0
-2012-07-13 02:00:00,12935.0
-2012-07-13 03:00:00,12125.0
-2012-07-13 04:00:00,11560.0
-2012-07-13 05:00:00,11236.0
-2012-07-13 06:00:00,11261.0
-2012-07-13 07:00:00,11594.0
-2012-07-13 08:00:00,12451.0
-2012-07-13 09:00:00,13806.0
-2012-07-13 10:00:00,15175.0
-2012-07-13 11:00:00,16463.0
-2012-07-13 12:00:00,17881.0
-2012-07-13 13:00:00,18898.0
-2012-07-13 14:00:00,19436.0
-2012-07-13 15:00:00,19407.0
-2012-07-13 16:00:00,18955.0
-2012-07-13 17:00:00,18555.0
-2012-07-13 18:00:00,18013.0
-2012-07-13 19:00:00,17160.0
-2012-07-13 20:00:00,16351.0
-2012-07-13 21:00:00,15809.0
-2012-07-13 22:00:00,15644.0
-2012-07-13 23:00:00,15460.0
-2012-07-14 00:00:00,14484.0
-2012-07-12 01:00:00,13168.0
-2012-07-12 02:00:00,12146.0
-2012-07-12 03:00:00,11376.0
-2012-07-12 04:00:00,10871.0
-2012-07-12 05:00:00,10550.0
-2012-07-12 06:00:00,10594.0
-2012-07-12 07:00:00,10960.0
-2012-07-12 08:00:00,11815.0
-2012-07-12 09:00:00,12969.0
-2012-07-12 10:00:00,14065.0
-2012-07-12 11:00:00,14987.0
-2012-07-12 12:00:00,16005.0
-2012-07-12 13:00:00,16667.0
-2012-07-12 14:00:00,17691.0
-2012-07-12 15:00:00,18299.0
-2012-07-12 16:00:00,18750.0
-2012-07-12 17:00:00,19004.0
-2012-07-12 18:00:00,19104.0
-2012-07-12 19:00:00,18909.0
-2012-07-12 20:00:00,18324.0
-2012-07-12 21:00:00,17523.0
-2012-07-12 22:00:00,16982.0
-2012-07-12 23:00:00,16568.0
-2012-07-13 00:00:00,15320.0
-2012-07-11 01:00:00,12119.0
-2012-07-11 02:00:00,11240.0
-2012-07-11 03:00:00,10616.0
-2012-07-11 04:00:00,10169.0
-2012-07-11 05:00:00,9981.0
-2012-07-11 06:00:00,10119.0
-2012-07-11 07:00:00,10476.0
-2012-07-11 08:00:00,11435.0
-2012-07-11 09:00:00,12626.0
-2012-07-11 10:00:00,13650.0
-2012-07-11 11:00:00,14511.0
-2012-07-11 12:00:00,15385.0
-2012-07-11 13:00:00,16109.0
-2012-07-11 14:00:00,16674.0
-2012-07-11 15:00:00,17264.0
-2012-07-11 16:00:00,17624.0
-2012-07-11 17:00:00,17896.0
-2012-07-11 18:00:00,18029.0
-2012-07-11 19:00:00,17874.0
-2012-07-11 20:00:00,17251.0
-2012-07-11 21:00:00,16528.0
-2012-07-11 22:00:00,15975.0
-2012-07-11 23:00:00,15587.0
-2012-07-12 00:00:00,14436.0
-2012-07-10 01:00:00,12978.0
-2012-07-10 02:00:00,12031.0
-2012-07-10 03:00:00,11354.0
-2012-07-10 04:00:00,10912.0
-2012-07-10 05:00:00,10628.0
-2012-07-10 06:00:00,10737.0
-2012-07-10 07:00:00,11150.0
-2012-07-10 08:00:00,12119.0
-2012-07-10 09:00:00,13261.0
-2012-07-10 10:00:00,14105.0
-2012-07-10 11:00:00,14879.0
-2012-07-10 12:00:00,15564.0
-2012-07-10 13:00:00,16107.0
-2012-07-10 14:00:00,16392.0
-2012-07-10 15:00:00,16548.0
-2012-07-10 16:00:00,16538.0
-2012-07-10 17:00:00,16535.0
-2012-07-10 18:00:00,16475.0
-2012-07-10 19:00:00,16289.0
-2012-07-10 20:00:00,15693.0
-2012-07-10 21:00:00,15016.0
-2012-07-10 22:00:00,14599.0
-2012-07-10 23:00:00,14367.0
-2012-07-11 00:00:00,13283.0
-2012-07-09 01:00:00,12154.0
-2012-07-09 02:00:00,11344.0
-2012-07-09 03:00:00,10736.0
-2012-07-09 04:00:00,10385.0
-2012-07-09 05:00:00,10193.0
-2012-07-09 06:00:00,10367.0
-2012-07-09 07:00:00,10701.0
-2012-07-09 08:00:00,11722.0
-2012-07-09 09:00:00,13045.0
-2012-07-09 10:00:00,14170.0
-2012-07-09 11:00:00,15220.0
-2012-07-09 12:00:00,16275.0
-2012-07-09 13:00:00,17194.0
-2012-07-09 14:00:00,17928.0
-2012-07-09 15:00:00,18492.0
-2012-07-09 16:00:00,18567.0
-2012-07-09 17:00:00,18425.0
-2012-07-09 18:00:00,18134.0
-2012-07-09 19:00:00,17533.0
-2012-07-09 20:00:00,16747.0
-2012-07-09 21:00:00,16121.0
-2012-07-09 22:00:00,15665.0
-2012-07-09 23:00:00,15339.0
-2012-07-10 00:00:00,14215.0
-2012-07-08 01:00:00,12912.0
-2012-07-08 02:00:00,12102.0
-2012-07-08 03:00:00,11518.0
-2012-07-08 04:00:00,11126.0
-2012-07-08 05:00:00,10788.0
-2012-07-08 06:00:00,10690.0
-2012-07-08 07:00:00,10527.0
-2012-07-08 08:00:00,10524.0
-2012-07-08 09:00:00,10920.0
-2012-07-08 10:00:00,11676.0
-2012-07-08 11:00:00,12497.0
-2012-07-08 12:00:00,13233.0
-2012-07-08 13:00:00,13738.0
-2012-07-08 14:00:00,14123.0
-2012-07-08 15:00:00,14378.0
-2012-07-08 16:00:00,14685.0
-2012-07-08 17:00:00,14988.0
-2012-07-08 18:00:00,15172.0
-2012-07-08 19:00:00,15180.0
-2012-07-08 20:00:00,14983.0
-2012-07-08 21:00:00,14443.0
-2012-07-08 22:00:00,14054.0
-2012-07-08 23:00:00,13932.0
-2012-07-09 00:00:00,13159.0
-2012-07-07 01:00:00,18165.0
-2012-07-07 02:00:00,16808.0
-2012-07-07 03:00:00,15853.0
-2012-07-07 04:00:00,15051.0
-2012-07-07 05:00:00,14511.0
-2012-07-07 06:00:00,14139.0
-2012-07-07 07:00:00,13916.0
-2012-07-07 08:00:00,14187.0
-2012-07-07 09:00:00,15446.0
-2012-07-07 10:00:00,16988.0
-2012-07-07 11:00:00,18441.0
-2012-07-07 12:00:00,19534.0
-2012-07-07 13:00:00,20109.0
-2012-07-07 14:00:00,20181.0
-2012-07-07 15:00:00,20056.0
-2012-07-07 16:00:00,19873.0
-2012-07-07 17:00:00,19603.0
-2012-07-07 18:00:00,19096.0
-2012-07-07 19:00:00,18075.0
-2012-07-07 20:00:00,16970.0
-2012-07-07 21:00:00,15852.0
-2012-07-07 22:00:00,15220.0
-2012-07-07 23:00:00,14728.0
-2012-07-08 00:00:00,13808.0
-2012-07-06 01:00:00,18076.0
-2012-07-06 02:00:00,16934.0
-2012-07-06 03:00:00,16045.0
-2012-07-06 04:00:00,15354.0
-2012-07-06 05:00:00,14876.0
-2012-07-06 06:00:00,14741.0
-2012-07-06 07:00:00,14903.0
-2012-07-06 08:00:00,15739.0
-2012-07-06 09:00:00,17176.0
-2012-07-06 10:00:00,18657.0
-2012-07-06 11:00:00,20078.0
-2012-07-06 12:00:00,21449.0
-2012-07-06 13:00:00,22430.0
-2012-07-06 14:00:00,23022.0
-2012-07-06 15:00:00,23376.0
-2012-07-06 16:00:00,23533.0
-2012-07-06 17:00:00,23603.0
-2012-07-06 18:00:00,23516.0
-2012-07-06 19:00:00,23230.0
-2012-07-06 20:00:00,22755.0
-2012-07-06 21:00:00,22117.0
-2012-07-06 22:00:00,21547.0
-2012-07-06 23:00:00,21011.0
-2012-07-07 00:00:00,19604.0
-2012-07-05 01:00:00,16796.0
-2012-07-05 02:00:00,15696.0
-2012-07-05 03:00:00,14751.0
-2012-07-05 04:00:00,14033.0
-2012-07-05 05:00:00,13546.0
-2012-07-05 06:00:00,13445.0
-2012-07-05 07:00:00,13637.0
-2012-07-05 08:00:00,14569.0
-2012-07-05 09:00:00,16119.0
-2012-07-05 10:00:00,17657.0
-2012-07-05 11:00:00,19115.0
-2012-07-05 12:00:00,20545.0
-2012-07-05 13:00:00,21708.0
-2012-07-05 14:00:00,22511.0
-2012-07-05 15:00:00,23046.0
-2012-07-05 16:00:00,23134.0
-2012-07-05 17:00:00,22647.0
-2012-07-05 18:00:00,22307.0
-2012-07-05 19:00:00,22213.0
-2012-07-05 20:00:00,22023.0
-2012-07-05 21:00:00,21413.0
-2012-07-05 22:00:00,21077.0
-2012-07-05 23:00:00,20684.0
-2012-07-06 00:00:00,19429.0
-2012-07-04 01:00:00,16751.0
-2012-07-04 02:00:00,15558.0
-2012-07-04 03:00:00,14594.0
-2012-07-04 04:00:00,13835.0
-2012-07-04 05:00:00,13330.0
-2012-07-04 06:00:00,13027.0
-2012-07-04 07:00:00,12770.0
-2012-07-04 08:00:00,12903.0
-2012-07-04 09:00:00,13794.0
-2012-07-04 10:00:00,15120.0
-2012-07-04 11:00:00,16659.0
-2012-07-04 12:00:00,18118.0
-2012-07-04 13:00:00,19219.0
-2012-07-04 14:00:00,19946.0
-2012-07-04 15:00:00,20355.0
-2012-07-04 16:00:00,20644.0
-2012-07-04 17:00:00,20769.0
-2012-07-04 18:00:00,20784.0
-2012-07-04 19:00:00,20646.0
-2012-07-04 20:00:00,20155.0
-2012-07-04 21:00:00,19534.0
-2012-07-04 22:00:00,19072.0
-2012-07-04 23:00:00,18661.0
-2012-07-05 00:00:00,17792.0
-2012-07-03 01:00:00,16861.0
-2012-07-03 02:00:00,15562.0
-2012-07-03 03:00:00,14516.0
-2012-07-03 04:00:00,13655.0
-2012-07-03 05:00:00,13132.0
-2012-07-03 06:00:00,12958.0
-2012-07-03 07:00:00,13123.0
-2012-07-03 08:00:00,13883.0
-2012-07-03 09:00:00,15026.0
-2012-07-03 10:00:00,16302.0
-2012-07-03 11:00:00,17422.0
-2012-07-03 12:00:00,18348.0
-2012-07-03 13:00:00,19266.0
-2012-07-03 14:00:00,20248.0
-2012-07-03 15:00:00,21101.0
-2012-07-03 16:00:00,21579.0
-2012-07-03 17:00:00,21837.0
-2012-07-03 18:00:00,21903.0
-2012-07-03 19:00:00,21721.0
-2012-07-03 20:00:00,21263.0
-2012-07-03 21:00:00,20526.0
-2012-07-03 22:00:00,19874.0
-2012-07-03 23:00:00,19313.0
-2012-07-04 00:00:00,18078.0
-2012-07-02 01:00:00,13413.0
-2012-07-02 02:00:00,12475.0
-2012-07-02 03:00:00,11815.0
-2012-07-02 04:00:00,11329.0
-2012-07-02 05:00:00,11088.0
-2012-07-02 06:00:00,11181.0
-2012-07-02 07:00:00,11558.0
-2012-07-02 08:00:00,12620.0
-2012-07-02 09:00:00,14114.0
-2012-07-02 10:00:00,15629.0
-2012-07-02 11:00:00,16926.0
-2012-07-02 12:00:00,18324.0
-2012-07-02 13:00:00,19402.0
-2012-07-02 14:00:00,20253.0
-2012-07-02 15:00:00,20891.0
-2012-07-02 16:00:00,21280.0
-2012-07-02 17:00:00,21537.0
-2012-07-02 18:00:00,21672.0
-2012-07-02 19:00:00,21567.0
-2012-07-02 20:00:00,21020.0
-2012-07-02 21:00:00,20345.0
-2012-07-02 22:00:00,19957.0
-2012-07-02 23:00:00,19540.0
-2012-07-03 00:00:00,18287.0
-2012-07-01 01:00:00,14048.0
-2012-07-01 02:00:00,12982.0
-2012-07-01 03:00:00,12215.0
-2012-07-01 04:00:00,11528.0
-2012-07-01 05:00:00,11105.0
-2012-07-01 06:00:00,10835.0
-2012-07-01 07:00:00,10509.0
-2012-07-01 08:00:00,10753.0
-2012-07-01 09:00:00,11684.0
-2012-07-01 10:00:00,12928.0
-2012-07-01 11:00:00,14225.0
-2012-07-01 12:00:00,15343.0
-2012-07-01 13:00:00,16127.0
-2012-07-01 14:00:00,15451.0
-2012-07-01 15:00:00,14084.0
-2012-07-01 16:00:00,14424.0
-2012-07-01 17:00:00,15323.0
-2012-07-01 18:00:00,15915.0
-2012-07-01 19:00:00,16247.0
-2012-07-01 20:00:00,16178.0
-2012-07-01 21:00:00,15827.0
-2012-07-01 22:00:00,15507.0
-2012-07-01 23:00:00,15351.0
-2012-07-02 00:00:00,14462.0
-2012-06-30 01:00:00,13421.0
-2012-06-30 02:00:00,12310.0
-2012-06-30 03:00:00,11507.0
-2012-06-30 04:00:00,10951.0
-2012-06-30 05:00:00,10637.0
-2012-06-30 06:00:00,10489.0
-2012-06-30 07:00:00,10395.0
-2012-06-30 08:00:00,10693.0
-2012-06-30 09:00:00,11605.0
-2012-06-30 10:00:00,12863.0
-2012-06-30 11:00:00,13996.0
-2012-06-30 12:00:00,15007.0
-2012-06-30 13:00:00,15619.0
-2012-06-30 14:00:00,16101.0
-2012-06-30 15:00:00,16761.0
-2012-06-30 16:00:00,17332.0
-2012-06-30 17:00:00,17719.0
-2012-06-30 18:00:00,17942.0
-2012-06-30 19:00:00,17970.0
-2012-06-30 20:00:00,17664.0
-2012-06-30 21:00:00,17039.0
-2012-06-30 22:00:00,16548.0
-2012-06-30 23:00:00,16149.0
-2012-07-01 00:00:00,15171.0
-2012-06-29 01:00:00,16987.0
-2012-06-29 02:00:00,15761.0
-2012-06-29 03:00:00,14838.0
-2012-06-29 04:00:00,14029.0
-2012-06-29 05:00:00,13350.0
-2012-06-29 06:00:00,13039.0
-2012-06-29 07:00:00,13055.0
-2012-06-29 08:00:00,13770.0
-2012-06-29 09:00:00,14997.0
-2012-06-29 10:00:00,16081.0
-2012-06-29 11:00:00,16980.0
-2012-06-29 12:00:00,17160.0
-2012-06-29 13:00:00,16526.0
-2012-06-29 14:00:00,15669.0
-2012-06-29 15:00:00,15598.0
-2012-06-29 16:00:00,16249.0
-2012-06-29 17:00:00,16895.0
-2012-06-29 18:00:00,17567.0
-2012-06-29 19:00:00,17901.0
-2012-06-29 20:00:00,17603.0
-2012-06-29 21:00:00,16823.0
-2012-06-29 22:00:00,16334.0
-2012-06-29 23:00:00,15837.0
-2012-06-30 00:00:00,14537.0
-2012-06-28 01:00:00,14449.0
-2012-06-28 02:00:00,13319.0
-2012-06-28 03:00:00,12520.0
-2012-06-28 04:00:00,11952.0
-2012-06-28 05:00:00,11615.0
-2012-06-28 06:00:00,11648.0
-2012-06-28 07:00:00,12052.0
-2012-06-28 08:00:00,13179.0
-2012-06-28 09:00:00,14774.0
-2012-06-28 10:00:00,16520.0
-2012-06-28 11:00:00,18159.0
-2012-06-28 12:00:00,19618.0
-2012-06-28 13:00:00,20637.0
-2012-06-28 14:00:00,21456.0
-2012-06-28 15:00:00,22187.0
-2012-06-28 16:00:00,22508.0
-2012-06-28 17:00:00,22749.0
-2012-06-28 18:00:00,22830.0
-2012-06-28 19:00:00,22363.0
-2012-06-28 20:00:00,21493.0
-2012-06-28 21:00:00,20729.0
-2012-06-28 22:00:00,20358.0
-2012-06-28 23:00:00,19889.0
-2012-06-29 00:00:00,18478.0
-2012-06-27 01:00:00,11590.0
-2012-06-27 02:00:00,10671.0
-2012-06-27 03:00:00,10062.0
-2012-06-27 04:00:00,9614.0
-2012-06-27 05:00:00,9417.0
-2012-06-27 06:00:00,9519.0
-2012-06-27 07:00:00,9849.0
-2012-06-27 08:00:00,10840.0
-2012-06-27 09:00:00,12024.0
-2012-06-27 10:00:00,13044.0
-2012-06-27 11:00:00,13892.0
-2012-06-27 12:00:00,14695.0
-2012-06-27 13:00:00,15299.0
-2012-06-27 14:00:00,16061.0
-2012-06-27 15:00:00,16894.0
-2012-06-27 16:00:00,17555.0
-2012-06-27 17:00:00,18153.0
-2012-06-27 18:00:00,18565.0
-2012-06-27 19:00:00,18790.0
-2012-06-27 20:00:00,18473.0
-2012-06-27 21:00:00,17917.0
-2012-06-27 22:00:00,17442.0
-2012-06-27 23:00:00,17129.0
-2012-06-28 00:00:00,15892.0
-2012-06-26 01:00:00,10452.0
-2012-06-26 02:00:00,9773.0
-2012-06-26 03:00:00,9315.0
-2012-06-26 04:00:00,9017.0
-2012-06-26 05:00:00,8876.0
-2012-06-26 06:00:00,9054.0
-2012-06-26 07:00:00,9348.0
-2012-06-26 08:00:00,10308.0
-2012-06-26 09:00:00,11369.0
-2012-06-26 10:00:00,12209.0
-2012-06-26 11:00:00,12815.0
-2012-06-26 12:00:00,13367.0
-2012-06-26 13:00:00,13775.0
-2012-06-26 14:00:00,14141.0
-2012-06-26 15:00:00,14661.0
-2012-06-26 16:00:00,15018.0
-2012-06-26 17:00:00,15283.0
-2012-06-26 18:00:00,15490.0
-2012-06-26 19:00:00,15401.0
-2012-06-26 20:00:00,14952.0
-2012-06-26 21:00:00,14415.0
-2012-06-26 22:00:00,14067.0
-2012-06-26 23:00:00,13828.0
-2012-06-27 00:00:00,12816.0
-2012-06-25 01:00:00,12228.0
-2012-06-25 02:00:00,11280.0
-2012-06-25 03:00:00,10571.0
-2012-06-25 04:00:00,10139.0
-2012-06-25 05:00:00,9837.0
-2012-06-25 06:00:00,9868.0
-2012-06-25 07:00:00,10072.0
-2012-06-25 08:00:00,11060.0
-2012-06-25 09:00:00,12032.0
-2012-06-25 10:00:00,12795.0
-2012-06-25 11:00:00,13263.0
-2012-06-25 12:00:00,13697.0
-2012-06-25 13:00:00,13893.0
-2012-06-25 14:00:00,14039.0
-2012-06-25 15:00:00,14142.0
-2012-06-25 16:00:00,14164.0
-2012-06-25 17:00:00,14142.0
-2012-06-25 18:00:00,14052.0
-2012-06-25 19:00:00,13778.0
-2012-06-25 20:00:00,13191.0
-2012-06-25 21:00:00,12612.0
-2012-06-25 22:00:00,12333.0
-2012-06-25 23:00:00,12241.0
-2012-06-26 00:00:00,11406.0
-2012-06-24 01:00:00,11654.0
-2012-06-24 02:00:00,10857.0
-2012-06-24 03:00:00,10301.0
-2012-06-24 04:00:00,9773.0
-2012-06-24 05:00:00,9502.0
-2012-06-24 06:00:00,9356.0
-2012-06-24 07:00:00,9154.0
-2012-06-24 08:00:00,9201.0
-2012-06-24 09:00:00,9947.0
-2012-06-24 10:00:00,10712.0
-2012-06-24 11:00:00,11609.0
-2012-06-24 12:00:00,12438.0
-2012-06-24 13:00:00,13371.0
-2012-06-24 14:00:00,14263.0
-2012-06-24 15:00:00,14986.0
-2012-06-24 16:00:00,15716.0
-2012-06-24 17:00:00,16197.0
-2012-06-24 18:00:00,16544.0
-2012-06-24 19:00:00,16395.0
-2012-06-24 20:00:00,15870.0
-2012-06-24 21:00:00,15142.0
-2012-06-24 22:00:00,14783.0
-2012-06-24 23:00:00,14422.0
-2012-06-25 00:00:00,13411.0
-2012-06-23 01:00:00,12037.0
-2012-06-23 02:00:00,11049.0
-2012-06-23 03:00:00,10385.0
-2012-06-23 04:00:00,9886.0
-2012-06-23 05:00:00,9591.0
-2012-06-23 06:00:00,9462.0
-2012-06-23 07:00:00,9347.0
-2012-06-23 08:00:00,9774.0
-2012-06-23 09:00:00,10633.0
-2012-06-23 10:00:00,11594.0
-2012-06-23 11:00:00,12542.0
-2012-06-23 12:00:00,13449.0
-2012-06-23 13:00:00,14168.0
-2012-06-23 14:00:00,14670.0
-2012-06-23 15:00:00,14924.0
-2012-06-23 16:00:00,15044.0
-2012-06-23 17:00:00,14795.0
-2012-06-23 18:00:00,14609.0
-2012-06-23 19:00:00,14271.0
-2012-06-23 20:00:00,13712.0
-2012-06-23 21:00:00,13357.0
-2012-06-23 22:00:00,13318.0
-2012-06-23 23:00:00,13166.0
-2012-06-24 00:00:00,12452.0
-2012-06-22 01:00:00,12617.0
-2012-06-22 02:00:00,11534.0
-2012-06-22 03:00:00,10733.0
-2012-06-22 04:00:00,10219.0
-2012-06-22 05:00:00,9899.0
-2012-06-22 06:00:00,9909.0
-2012-06-22 07:00:00,10175.0
-2012-06-22 08:00:00,11082.0
-2012-06-22 09:00:00,12322.0
-2012-06-22 10:00:00,13305.0
-2012-06-22 11:00:00,14039.0
-2012-06-22 12:00:00,14741.0
-2012-06-22 13:00:00,15190.0
-2012-06-22 14:00:00,15579.0
-2012-06-22 15:00:00,15976.0
-2012-06-22 16:00:00,16221.0
-2012-06-22 17:00:00,16414.0
-2012-06-22 18:00:00,16464.0
-2012-06-22 19:00:00,16233.0
-2012-06-22 20:00:00,15714.0
-2012-06-22 21:00:00,15041.0
-2012-06-22 22:00:00,14506.0
-2012-06-22 23:00:00,14234.0
-2012-06-23 00:00:00,13184.0
-2012-06-21 01:00:00,15398.0
-2012-06-21 02:00:00,14255.0
-2012-06-21 03:00:00,13447.0
-2012-06-21 04:00:00,12854.0
-2012-06-21 05:00:00,12551.0
-2012-06-21 06:00:00,12529.0
-2012-06-21 07:00:00,12769.0
-2012-06-21 08:00:00,13874.0
-2012-06-21 09:00:00,14991.0
-2012-06-21 10:00:00,15771.0
-2012-06-21 11:00:00,16281.0
-2012-06-21 12:00:00,16448.0
-2012-06-21 13:00:00,16284.0
-2012-06-21 14:00:00,16121.0
-2012-06-21 15:00:00,16170.0
-2012-06-21 16:00:00,16046.0
-2012-06-21 17:00:00,16384.0
-2012-06-21 18:00:00,16866.0
-2012-06-21 19:00:00,17030.0
-2012-06-21 20:00:00,16695.0
-2012-06-21 21:00:00,16107.0
-2012-06-21 22:00:00,15535.0
-2012-06-21 23:00:00,15151.0
-2012-06-22 00:00:00,13942.0
-2012-06-20 01:00:00,15974.0
-2012-06-20 02:00:00,14699.0
-2012-06-20 03:00:00,13765.0
-2012-06-20 04:00:00,13078.0
-2012-06-20 05:00:00,12635.0
-2012-06-20 06:00:00,12519.0
-2012-06-20 07:00:00,12778.0
-2012-06-20 08:00:00,13915.0
-2012-06-20 09:00:00,15276.0
-2012-06-20 10:00:00,16460.0
-2012-06-20 11:00:00,17542.0
-2012-06-20 12:00:00,18622.0
-2012-06-20 13:00:00,19469.0
-2012-06-20 14:00:00,20225.0
-2012-06-20 15:00:00,20861.0
-2012-06-20 16:00:00,21170.0
-2012-06-20 17:00:00,21303.0
-2012-06-20 18:00:00,21297.0
-2012-06-20 19:00:00,21027.0
-2012-06-20 20:00:00,20459.0
-2012-06-20 21:00:00,19617.0
-2012-06-20 22:00:00,18889.0
-2012-06-20 23:00:00,18358.0
-2012-06-21 00:00:00,16927.0
-2012-06-19 01:00:00,15494.0
-2012-06-19 02:00:00,14320.0
-2012-06-19 03:00:00,13399.0
-2012-06-19 04:00:00,12693.0
-2012-06-19 05:00:00,12319.0
-2012-06-19 06:00:00,12303.0
-2012-06-19 07:00:00,12591.0
-2012-06-19 08:00:00,13776.0
-2012-06-19 09:00:00,15230.0
-2012-06-19 10:00:00,16599.0
-2012-06-19 11:00:00,17733.0
-2012-06-19 12:00:00,18837.0
-2012-06-19 13:00:00,19704.0
-2012-06-19 14:00:00,20405.0
-2012-06-19 15:00:00,20969.0
-2012-06-19 16:00:00,21273.0
-2012-06-19 17:00:00,21368.0
-2012-06-19 18:00:00,21391.0
-2012-06-19 19:00:00,21165.0
-2012-06-19 20:00:00,20684.0
-2012-06-19 21:00:00,20034.0
-2012-06-19 22:00:00,19424.0
-2012-06-19 23:00:00,18944.0
-2012-06-20 00:00:00,17522.0
-2012-06-18 01:00:00,12279.0
-2012-06-18 02:00:00,11310.0
-2012-06-18 03:00:00,10742.0
-2012-06-18 04:00:00,10355.0
-2012-06-18 05:00:00,10280.0
-2012-06-18 06:00:00,10498.0
-2012-06-18 07:00:00,11101.0
-2012-06-18 08:00:00,12369.0
-2012-06-18 09:00:00,13742.0
-2012-06-18 10:00:00,14933.0
-2012-06-18 11:00:00,16253.0
-2012-06-18 12:00:00,17641.0
-2012-06-18 13:00:00,18686.0
-2012-06-18 14:00:00,19472.0
-2012-06-18 15:00:00,20156.0
-2012-06-18 16:00:00,20495.0
-2012-06-18 17:00:00,20633.0
-2012-06-18 18:00:00,20632.0
-2012-06-18 19:00:00,20458.0
-2012-06-18 20:00:00,19983.0
-2012-06-18 21:00:00,19299.0
-2012-06-18 22:00:00,18830.0
-2012-06-18 23:00:00,18431.0
-2012-06-19 00:00:00,17011.0
-2012-06-17 01:00:00,12564.0
-2012-06-17 02:00:00,11587.0
-2012-06-17 03:00:00,10804.0
-2012-06-17 04:00:00,10293.0
-2012-06-17 05:00:00,9906.0
-2012-06-17 06:00:00,9764.0
-2012-06-17 07:00:00,9563.0
-2012-06-17 08:00:00,9523.0
-2012-06-17 09:00:00,10085.0
-2012-06-17 10:00:00,10999.0
-2012-06-17 11:00:00,12144.0
-2012-06-17 12:00:00,13082.0
-2012-06-17 13:00:00,13809.0
-2012-06-17 14:00:00,14223.0
-2012-06-17 15:00:00,14482.0
-2012-06-17 16:00:00,14791.0
-2012-06-17 17:00:00,15179.0
-2012-06-17 18:00:00,15431.0
-2012-06-17 19:00:00,15521.0
-2012-06-17 20:00:00,15208.0
-2012-06-17 21:00:00,14726.0
-2012-06-17 22:00:00,14407.0
-2012-06-17 23:00:00,14267.0
-2012-06-18 00:00:00,13358.0
-2012-06-16 01:00:00,13163.0
-2012-06-16 02:00:00,12053.0
-2012-06-16 03:00:00,11158.0
-2012-06-16 04:00:00,10600.0
-2012-06-16 05:00:00,10211.0
-2012-06-16 06:00:00,10064.0
-2012-06-16 07:00:00,10059.0
-2012-06-16 08:00:00,10299.0
-2012-06-16 09:00:00,11097.0
-2012-06-16 10:00:00,12158.0
-2012-06-16 11:00:00,13327.0
-2012-06-16 12:00:00,14520.0
-2012-06-16 13:00:00,15395.0
-2012-06-16 14:00:00,16015.0
-2012-06-16 15:00:00,16319.0
-2012-06-16 16:00:00,16725.0
-2012-06-16 17:00:00,17135.0
-2012-06-16 18:00:00,17310.0
-2012-06-16 19:00:00,17229.0
-2012-06-16 20:00:00,16645.0
-2012-06-16 21:00:00,15912.0
-2012-06-16 22:00:00,15488.0
-2012-06-16 23:00:00,14899.0
-2012-06-17 00:00:00,13782.0
-2012-06-15 01:00:00,11436.0
-2012-06-15 02:00:00,10574.0
-2012-06-15 03:00:00,9954.0
-2012-06-15 04:00:00,9489.0
-2012-06-15 05:00:00,9203.0
-2012-06-15 06:00:00,9278.0
-2012-06-15 07:00:00,9563.0
-2012-06-15 08:00:00,10528.0
-2012-06-15 09:00:00,11762.0
-2012-06-15 10:00:00,12782.0
-2012-06-15 11:00:00,13677.0
-2012-06-15 12:00:00,14630.0
-2012-06-15 13:00:00,15389.0
-2012-06-15 14:00:00,16085.0
-2012-06-15 15:00:00,16830.0
-2012-06-15 16:00:00,17442.0
-2012-06-15 17:00:00,17860.0
-2012-06-15 18:00:00,18155.0
-2012-06-15 19:00:00,18054.0
-2012-06-15 20:00:00,17548.0
-2012-06-15 21:00:00,16804.0
-2012-06-15 22:00:00,16295.0
-2012-06-15 23:00:00,15798.0
-2012-06-16 00:00:00,14517.0
-2012-06-14 01:00:00,10049.0
-2012-06-14 02:00:00,9363.0
-2012-06-14 03:00:00,8959.0
-2012-06-14 04:00:00,8676.0
-2012-06-14 05:00:00,8605.0
-2012-06-14 06:00:00,8706.0
-2012-06-14 07:00:00,8989.0
-2012-06-14 08:00:00,9919.0
-2012-06-14 09:00:00,10956.0
-2012-06-14 10:00:00,11712.0
-2012-06-14 11:00:00,12279.0
-2012-06-14 12:00:00,12877.0
-2012-06-14 13:00:00,13355.0
-2012-06-14 14:00:00,13772.0
-2012-06-14 15:00:00,14238.0
-2012-06-14 16:00:00,14601.0
-2012-06-14 17:00:00,14835.0
-2012-06-14 18:00:00,14996.0
-2012-06-14 19:00:00,14899.0
-2012-06-14 20:00:00,14415.0
-2012-06-14 21:00:00,13954.0
-2012-06-14 22:00:00,13809.0
-2012-06-14 23:00:00,13594.0
-2012-06-15 00:00:00,12567.0
-2012-06-13 01:00:00,10395.0
-2012-06-13 02:00:00,9641.0
-2012-06-13 03:00:00,9132.0
-2012-06-13 04:00:00,8804.0
-2012-06-13 05:00:00,8667.0
-2012-06-13 06:00:00,8767.0
-2012-06-13 07:00:00,9062.0
-2012-06-13 08:00:00,10033.0
-2012-06-13 09:00:00,11079.0
-2012-06-13 10:00:00,11715.0
-2012-06-13 11:00:00,12188.0
-2012-06-13 12:00:00,12562.0
-2012-06-13 13:00:00,12775.0
-2012-06-13 14:00:00,12897.0
-2012-06-13 15:00:00,13023.0
-2012-06-13 16:00:00,12861.0
-2012-06-13 17:00:00,12757.0
-2012-06-13 18:00:00,12609.0
-2012-06-13 19:00:00,12291.0
-2012-06-13 20:00:00,11878.0
-2012-06-13 21:00:00,11621.0
-2012-06-13 22:00:00,11717.0
-2012-06-13 23:00:00,11720.0
-2012-06-14 00:00:00,10942.0
-2012-06-12 01:00:00,13461.0
-2012-06-12 02:00:00,12210.0
-2012-06-12 03:00:00,11294.0
-2012-06-12 04:00:00,10586.0
-2012-06-12 05:00:00,10167.0
-2012-06-12 06:00:00,10041.0
-2012-06-12 07:00:00,10171.0
-2012-06-12 08:00:00,11096.0
-2012-06-12 09:00:00,12102.0
-2012-06-12 10:00:00,12810.0
-2012-06-12 11:00:00,13268.0
-2012-06-12 12:00:00,13662.0
-2012-06-12 13:00:00,13829.0
-2012-06-12 14:00:00,14011.0
-2012-06-12 15:00:00,14289.0
-2012-06-12 16:00:00,14432.0
-2012-06-12 17:00:00,14519.0
-2012-06-12 18:00:00,14460.0
-2012-06-12 19:00:00,14149.0
-2012-06-12 20:00:00,13528.0
-2012-06-12 21:00:00,12873.0
-2012-06-12 22:00:00,12576.0
-2012-06-12 23:00:00,12381.0
-2012-06-13 00:00:00,11405.0
-2012-06-11 01:00:00,13223.0
-2012-06-11 02:00:00,12273.0
-2012-06-11 03:00:00,11588.0
-2012-06-11 04:00:00,11034.0
-2012-06-11 05:00:00,10757.0
-2012-06-11 06:00:00,10779.0
-2012-06-11 07:00:00,11136.0
-2012-06-11 08:00:00,12321.0
-2012-06-11 09:00:00,13566.0
-2012-06-11 10:00:00,14535.0
-2012-06-11 11:00:00,15665.0
-2012-06-11 12:00:00,16664.0
-2012-06-11 13:00:00,17239.0
-2012-06-11 14:00:00,17722.0
-2012-06-11 15:00:00,18282.0
-2012-06-11 16:00:00,18565.0
-2012-06-11 17:00:00,18762.0
-2012-06-11 18:00:00,18738.0
-2012-06-11 19:00:00,18313.0
-2012-06-11 20:00:00,17670.0
-2012-06-11 21:00:00,16987.0
-2012-06-11 22:00:00,16613.0
-2012-06-11 23:00:00,16220.0
-2012-06-12 00:00:00,14907.0
-2012-06-10 01:00:00,12206.0
-2012-06-10 02:00:00,11299.0
-2012-06-10 03:00:00,10570.0
-2012-06-10 04:00:00,10041.0
-2012-06-10 05:00:00,9635.0
-2012-06-10 06:00:00,9475.0
-2012-06-10 07:00:00,9107.0
-2012-06-10 08:00:00,9336.0
-2012-06-10 09:00:00,10104.0
-2012-06-10 10:00:00,11298.0
-2012-06-10 11:00:00,12558.0
-2012-06-10 12:00:00,13714.0
-2012-06-10 13:00:00,14616.0
-2012-06-10 14:00:00,15187.0
-2012-06-10 15:00:00,15615.0
-2012-06-10 16:00:00,15980.0
-2012-06-10 17:00:00,16296.0
-2012-06-10 18:00:00,16461.0
-2012-06-10 19:00:00,16494.0
-2012-06-10 20:00:00,16079.0
-2012-06-10 21:00:00,15504.0
-2012-06-10 22:00:00,15304.0
-2012-06-10 23:00:00,15194.0
-2012-06-11 00:00:00,14263.0
-2012-06-09 01:00:00,12061.0
-2012-06-09 02:00:00,11096.0
-2012-06-09 03:00:00,10302.0
-2012-06-09 04:00:00,9808.0
-2012-06-09 05:00:00,9489.0
-2012-06-09 06:00:00,9245.0
-2012-06-09 07:00:00,9107.0
-2012-06-09 08:00:00,9567.0
-2012-06-09 09:00:00,10470.0
-2012-06-09 10:00:00,11558.0
-2012-06-09 11:00:00,12648.0
-2012-06-09 12:00:00,13548.0
-2012-06-09 13:00:00,14125.0
-2012-06-09 14:00:00,14693.0
-2012-06-09 15:00:00,15054.0
-2012-06-09 16:00:00,15484.0
-2012-06-09 17:00:00,15844.0
-2012-06-09 18:00:00,16076.0
-2012-06-09 19:00:00,15993.0
-2012-06-09 20:00:00,15696.0
-2012-06-09 21:00:00,15091.0
-2012-06-09 22:00:00,14606.0
-2012-06-09 23:00:00,14253.0
-2012-06-10 00:00:00,13297.0
-2012-06-08 01:00:00,10424.0
-2012-06-08 02:00:00,9666.0
-2012-06-08 03:00:00,9161.0
-2012-06-08 04:00:00,8810.0
-2012-06-08 05:00:00,8633.0
-2012-06-08 06:00:00,8720.0
-2012-06-08 07:00:00,9035.0
-2012-06-08 08:00:00,9975.0
-2012-06-08 09:00:00,11116.0
-2012-06-08 10:00:00,12064.0
-2012-06-08 11:00:00,12799.0
-2012-06-08 12:00:00,13521.0
-2012-06-08 13:00:00,13992.0
-2012-06-08 14:00:00,14449.0
-2012-06-08 15:00:00,14958.0
-2012-06-08 16:00:00,15309.0
-2012-06-08 17:00:00,15638.0
-2012-06-08 18:00:00,15865.0
-2012-06-08 19:00:00,15815.0
-2012-06-08 20:00:00,15424.0
-2012-06-08 21:00:00,14873.0
-2012-06-08 22:00:00,14532.0
-2012-06-08 23:00:00,14277.0
-2012-06-09 00:00:00,13254.0
-2012-06-07 01:00:00,9898.0
-2012-06-07 02:00:00,9218.0
-2012-06-07 03:00:00,8762.0
-2012-06-07 04:00:00,8487.0
-2012-06-07 05:00:00,8352.0
-2012-06-07 06:00:00,8453.0
-2012-06-07 07:00:00,8762.0
-2012-06-07 08:00:00,9711.0
-2012-06-07 09:00:00,10756.0
-2012-06-07 10:00:00,11525.0
-2012-06-07 11:00:00,12080.0
-2012-06-07 12:00:00,12600.0
-2012-06-07 13:00:00,12883.0
-2012-06-07 14:00:00,13152.0
-2012-06-07 15:00:00,13443.0
-2012-06-07 16:00:00,13552.0
-2012-06-07 17:00:00,13639.0
-2012-06-07 18:00:00,13679.0
-2012-06-07 19:00:00,13563.0
-2012-06-07 20:00:00,13132.0
-2012-06-07 21:00:00,12715.0
-2012-06-07 22:00:00,12631.0
-2012-06-07 23:00:00,12459.0
-2012-06-08 00:00:00,11462.0
-2012-06-06 01:00:00,9682.0
-2012-06-06 02:00:00,9027.0
-2012-06-06 03:00:00,8615.0
-2012-06-06 04:00:00,8369.0
-2012-06-06 05:00:00,8254.0
-2012-06-06 06:00:00,8393.0
-2012-06-06 07:00:00,8735.0
-2012-06-06 08:00:00,9687.0
-2012-06-06 09:00:00,10707.0
-2012-06-06 10:00:00,11443.0
-2012-06-06 11:00:00,11961.0
-2012-06-06 12:00:00,12306.0
-2012-06-06 13:00:00,12539.0
-2012-06-06 14:00:00,12664.0
-2012-06-06 15:00:00,12827.0
-2012-06-06 16:00:00,12882.0
-2012-06-06 17:00:00,12880.0
-2012-06-06 18:00:00,12853.0
-2012-06-06 19:00:00,12666.0
-2012-06-06 20:00:00,12233.0
-2012-06-06 21:00:00,11892.0
-2012-06-06 22:00:00,11857.0
-2012-06-06 23:00:00,11725.0
-2012-06-07 00:00:00,10858.0
-2012-06-05 01:00:00,9863.0
-2012-06-05 02:00:00,9188.0
-2012-06-05 03:00:00,8767.0
-2012-06-05 04:00:00,8477.0
-2012-06-05 05:00:00,8346.0
-2012-06-05 06:00:00,8498.0
-2012-06-05 07:00:00,8847.0
-2012-06-05 08:00:00,9795.0
-2012-06-05 09:00:00,10846.0
-2012-06-05 10:00:00,11482.0
-2012-06-05 11:00:00,11885.0
-2012-06-05 12:00:00,12252.0
-2012-06-05 13:00:00,12388.0
-2012-06-05 14:00:00,12473.0
-2012-06-05 15:00:00,12545.0
-2012-06-05 16:00:00,12517.0
-2012-06-05 17:00:00,12484.0
-2012-06-05 18:00:00,12399.0
-2012-06-05 19:00:00,12182.0
-2012-06-05 20:00:00,11769.0
-2012-06-05 21:00:00,11426.0
-2012-06-05 22:00:00,11478.0
-2012-06-05 23:00:00,11400.0
-2012-06-06 00:00:00,10586.0
-2012-06-04 01:00:00,9667.0
-2012-06-04 02:00:00,9094.0
-2012-06-04 03:00:00,8724.0
-2012-06-04 04:00:00,8469.0
-2012-06-04 05:00:00,8388.0
-2012-06-04 06:00:00,8566.0
-2012-06-04 07:00:00,9083.0
-2012-06-04 08:00:00,9978.0
-2012-06-04 09:00:00,10958.0
-2012-06-04 10:00:00,11538.0
-2012-06-04 11:00:00,12021.0
-2012-06-04 12:00:00,12464.0
-2012-06-04 13:00:00,12744.0
-2012-06-04 14:00:00,12923.0
-2012-06-04 15:00:00,13135.0
-2012-06-04 16:00:00,13186.0
-2012-06-04 17:00:00,13192.0
-2012-06-04 18:00:00,13104.0
-2012-06-04 19:00:00,12816.0
-2012-06-04 20:00:00,12313.0
-2012-06-04 21:00:00,11836.0
-2012-06-04 22:00:00,11836.0
-2012-06-04 23:00:00,11697.0
-2012-06-05 00:00:00,10838.0
-2012-06-03 01:00:00,9089.0
-2012-06-03 02:00:00,8511.0
-2012-06-03 03:00:00,8135.0
-2012-06-03 04:00:00,7930.0
-2012-06-03 05:00:00,7731.0
-2012-06-03 06:00:00,7751.0
-2012-06-03 07:00:00,7521.0
-2012-06-03 08:00:00,7595.0
-2012-06-03 09:00:00,7989.0
-2012-06-03 10:00:00,8602.0
-2012-06-03 11:00:00,9161.0
-2012-06-03 12:00:00,9617.0
-2012-06-03 13:00:00,9966.0
-2012-06-03 14:00:00,10185.0
-2012-06-03 15:00:00,10368.0
-2012-06-03 16:00:00,10535.0
-2012-06-03 17:00:00,10717.0
-2012-06-03 18:00:00,10727.0
-2012-06-03 19:00:00,10686.0
-2012-06-03 20:00:00,10604.0
-2012-06-03 21:00:00,10599.0
-2012-06-03 22:00:00,10964.0
-2012-06-03 23:00:00,11017.0
-2012-06-04 00:00:00,10395.0
-2012-06-02 01:00:00,9239.0
-2012-06-02 02:00:00,8639.0
-2012-06-02 03:00:00,8310.0
-2012-06-02 04:00:00,8035.0
-2012-06-02 05:00:00,7948.0
-2012-06-02 06:00:00,7963.0
-2012-06-02 07:00:00,7930.0
-2012-06-02 08:00:00,8185.0
-2012-06-02 09:00:00,8651.0
-2012-06-02 10:00:00,9236.0
-2012-06-02 11:00:00,9655.0
-2012-06-02 12:00:00,10046.0
-2012-06-02 13:00:00,10157.0
-2012-06-02 14:00:00,10195.0
-2012-06-02 15:00:00,10093.0
-2012-06-02 16:00:00,10061.0
-2012-06-02 17:00:00,10032.0
-2012-06-02 18:00:00,10058.0
-2012-06-02 19:00:00,10011.0
-2012-06-02 20:00:00,9879.0
-2012-06-02 21:00:00,9783.0
-2012-06-02 22:00:00,10113.0
-2012-06-02 23:00:00,10218.0
-2012-06-03 00:00:00,9675.0
-2012-06-01 01:00:00,9341.0
-2012-06-01 02:00:00,8799.0
-2012-06-01 03:00:00,8451.0
-2012-06-01 04:00:00,8240.0
-2012-06-01 05:00:00,8139.0
-2012-06-01 06:00:00,8313.0
-2012-06-01 07:00:00,8788.0
-2012-06-01 08:00:00,9645.0
-2012-06-01 09:00:00,10415.0
-2012-06-01 10:00:00,10842.0
-2012-06-01 11:00:00,11055.0
-2012-06-01 12:00:00,11217.0
-2012-06-01 13:00:00,11267.0
-2012-06-01 14:00:00,11255.0
-2012-06-01 15:00:00,11275.0
-2012-06-01 16:00:00,11187.0
-2012-06-01 17:00:00,11052.0
-2012-06-01 18:00:00,10903.0
-2012-06-01 19:00:00,10723.0
-2012-06-01 20:00:00,10464.0
-2012-06-01 21:00:00,10325.0
-2012-06-01 22:00:00,10583.0
-2012-06-01 23:00:00,10621.0
-2012-06-02 00:00:00,9993.0
-2012-05-31 01:00:00,9385.0
-2012-05-31 02:00:00,8805.0
-2012-05-31 03:00:00,8455.0
-2012-05-31 04:00:00,8236.0
-2012-05-31 05:00:00,8113.0
-2012-05-31 06:00:00,8282.0
-2012-05-31 07:00:00,8750.0
-2012-05-31 08:00:00,9580.0
-2012-05-31 09:00:00,10466.0
-2012-05-31 10:00:00,10987.0
-2012-05-31 11:00:00,11258.0
-2012-05-31 12:00:00,11461.0
-2012-05-31 13:00:00,11547.0
-2012-05-31 14:00:00,11600.0
-2012-05-31 15:00:00,11583.0
-2012-05-31 16:00:00,11492.0
-2012-05-31 17:00:00,11336.0
-2012-05-31 18:00:00,11216.0
-2012-05-31 19:00:00,11086.0
-2012-05-31 20:00:00,10982.0
-2012-05-31 21:00:00,11101.0
-2012-05-31 22:00:00,11248.0
-2012-05-31 23:00:00,10900.0
-2012-06-01 00:00:00,10130.0
-2012-05-30 01:00:00,10738.0
-2012-05-30 02:00:00,9908.0
-2012-05-30 03:00:00,9352.0
-2012-05-30 04:00:00,8991.0
-2012-05-30 05:00:00,8794.0
-2012-05-30 06:00:00,8880.0
-2012-05-30 07:00:00,9188.0
-2012-05-30 08:00:00,10129.0
-2012-05-30 09:00:00,11102.0
-2012-05-30 10:00:00,11761.0
-2012-05-30 11:00:00,12110.0
-2012-05-30 12:00:00,12330.0
-2012-05-30 13:00:00,12369.0
-2012-05-30 14:00:00,12411.0
-2012-05-30 15:00:00,12427.0
-2012-05-30 16:00:00,12361.0
-2012-05-30 17:00:00,12177.0
-2012-05-30 18:00:00,11967.0
-2012-05-30 19:00:00,11718.0
-2012-05-30 20:00:00,11290.0
-2012-05-30 21:00:00,10962.0
-2012-05-30 22:00:00,11188.0
-2012-05-30 23:00:00,11026.0
-2012-05-31 00:00:00,10223.0
-2012-05-29 01:00:00,12803.0
-2012-05-29 02:00:00,11809.0
-2012-05-29 03:00:00,11115.0
-2012-05-29 04:00:00,10567.0
-2012-05-29 05:00:00,10171.0
-2012-05-29 06:00:00,10084.0
-2012-05-29 07:00:00,10296.0
-2012-05-29 08:00:00,11254.0
-2012-05-29 09:00:00,12362.0
-2012-05-29 10:00:00,13204.0
-2012-05-29 11:00:00,13925.0
-2012-05-29 12:00:00,14541.0
-2012-05-29 13:00:00,14951.0
-2012-05-29 14:00:00,15245.0
-2012-05-29 15:00:00,15703.0
-2012-05-29 16:00:00,15949.0
-2012-05-29 17:00:00,16074.0
-2012-05-29 18:00:00,16047.0
-2012-05-29 19:00:00,15677.0
-2012-05-29 20:00:00,14966.0
-2012-05-29 21:00:00,14075.0
-2012-05-29 22:00:00,13639.0
-2012-05-29 23:00:00,13112.0
-2012-05-30 00:00:00,11902.0
-2012-05-28 01:00:00,13087.0
-2012-05-28 02:00:00,12174.0
-2012-05-28 03:00:00,11411.0
-2012-05-28 04:00:00,10871.0
-2012-05-28 05:00:00,10465.0
-2012-05-28 06:00:00,10285.0
-2012-05-28 07:00:00,10133.0
-2012-05-28 08:00:00,10354.0
-2012-05-28 09:00:00,11200.0
-2012-05-28 10:00:00,12264.0
-2012-05-28 11:00:00,13464.0
-2012-05-28 12:00:00,14598.0
-2012-05-28 13:00:00,15291.0
-2012-05-28 14:00:00,15796.0
-2012-05-28 15:00:00,16069.0
-2012-05-28 16:00:00,16200.0
-2012-05-28 17:00:00,16494.0
-2012-05-28 18:00:00,16641.0
-2012-05-28 19:00:00,16518.0
-2012-05-28 20:00:00,16240.0
-2012-05-28 21:00:00,15828.0
-2012-05-28 22:00:00,15829.0
-2012-05-28 23:00:00,15418.0
-2012-05-29 00:00:00,14133.0
-2012-05-27 01:00:00,9942.0
-2012-05-27 02:00:00,9404.0
-2012-05-27 03:00:00,8914.0
-2012-05-27 04:00:00,8654.0
-2012-05-27 05:00:00,8579.0
-2012-05-27 06:00:00,8506.0
-2012-05-27 07:00:00,8419.0
-2012-05-27 08:00:00,8489.0
-2012-05-27 09:00:00,9246.0
-2012-05-27 10:00:00,10397.0
-2012-05-27 11:00:00,11669.0
-2012-05-27 12:00:00,12872.0
-2012-05-27 13:00:00,13944.0
-2012-05-27 14:00:00,14807.0
-2012-05-27 15:00:00,15516.0
-2012-05-27 16:00:00,15995.0
-2012-05-27 17:00:00,16343.0
-2012-05-27 18:00:00,16557.0
-2012-05-27 19:00:00,16547.0
-2012-05-27 20:00:00,16230.0
-2012-05-27 21:00:00,15665.0
-2012-05-27 22:00:00,15339.0
-2012-05-27 23:00:00,15014.0
-2012-05-28 00:00:00,14154.0
-2012-05-26 01:00:00,10261.0
-2012-05-26 02:00:00,9500.0
-2012-05-26 03:00:00,9070.0
-2012-05-26 04:00:00,8761.0
-2012-05-26 05:00:00,8597.0
-2012-05-26 06:00:00,8539.0
-2012-05-26 07:00:00,8599.0
-2012-05-26 08:00:00,8795.0
-2012-05-26 09:00:00,9143.0
-2012-05-26 10:00:00,9606.0
-2012-05-26 11:00:00,10149.0
-2012-05-26 12:00:00,10550.0
-2012-05-26 13:00:00,10869.0
-2012-05-26 14:00:00,11239.0
-2012-05-26 15:00:00,11603.0
-2012-05-26 16:00:00,12004.0
-2012-05-26 17:00:00,12431.0
-2012-05-26 18:00:00,12551.0
-2012-05-26 19:00:00,12176.0
-2012-05-26 20:00:00,11564.0
-2012-05-26 21:00:00,11112.0
-2012-05-26 22:00:00,11188.0
-2012-05-26 23:00:00,11089.0
-2012-05-27 00:00:00,10557.0
-2012-05-25 01:00:00,12937.0
-2012-05-25 02:00:00,12008.0
-2012-05-25 03:00:00,11333.0
-2012-05-25 04:00:00,10793.0
-2012-05-25 05:00:00,10360.0
-2012-05-25 06:00:00,10200.0
-2012-05-25 07:00:00,10381.0
-2012-05-25 08:00:00,11263.0
-2012-05-25 09:00:00,12318.0
-2012-05-25 10:00:00,13046.0
-2012-05-25 11:00:00,13596.0
-2012-05-25 12:00:00,14049.0
-2012-05-25 13:00:00,14321.0
-2012-05-25 14:00:00,14482.0
-2012-05-25 15:00:00,14659.0
-2012-05-25 16:00:00,14585.0
-2012-05-25 17:00:00,14445.0
-2012-05-25 18:00:00,14215.0
-2012-05-25 19:00:00,13697.0
-2012-05-25 20:00:00,12907.0
-2012-05-25 21:00:00,12351.0
-2012-05-25 22:00:00,12384.0
-2012-05-25 23:00:00,12017.0
-2012-05-26 00:00:00,11191.0
-2012-05-24 01:00:00,10316.0
-2012-05-24 02:00:00,9644.0
-2012-05-24 03:00:00,9199.0
-2012-05-24 04:00:00,8877.0
-2012-05-24 05:00:00,8751.0
-2012-05-24 06:00:00,8866.0
-2012-05-24 07:00:00,9278.0
-2012-05-24 08:00:00,10401.0
-2012-05-24 09:00:00,11563.0
-2012-05-24 10:00:00,12479.0
-2012-05-24 11:00:00,13128.0
-2012-05-24 12:00:00,13751.0
-2012-05-24 13:00:00,14211.0
-2012-05-24 14:00:00,14654.0
-2012-05-24 15:00:00,15184.0
-2012-05-24 16:00:00,15584.0
-2012-05-24 17:00:00,15984.0
-2012-05-24 18:00:00,16261.0
-2012-05-24 19:00:00,16186.0
-2012-05-24 20:00:00,15780.0
-2012-05-24 21:00:00,15409.0
-2012-05-24 22:00:00,15517.0
-2012-05-24 23:00:00,15212.0
-2012-05-25 00:00:00,14130.0
-2012-05-23 01:00:00,9457.0
-2012-05-23 02:00:00,8856.0
-2012-05-23 03:00:00,8449.0
-2012-05-23 04:00:00,8235.0
-2012-05-23 05:00:00,8166.0
-2012-05-23 06:00:00,8308.0
-2012-05-23 07:00:00,8678.0
-2012-05-23 08:00:00,9593.0
-2012-05-23 09:00:00,10551.0
-2012-05-23 10:00:00,11164.0
-2012-05-23 11:00:00,11655.0
-2012-05-23 12:00:00,12032.0
-2012-05-23 13:00:00,12302.0
-2012-05-23 14:00:00,12512.0
-2012-05-23 15:00:00,12819.0
-2012-05-23 16:00:00,12949.0
-2012-05-23 17:00:00,13091.0
-2012-05-23 18:00:00,13209.0
-2012-05-23 19:00:00,13055.0
-2012-05-23 20:00:00,12699.0
-2012-05-23 21:00:00,12353.0
-2012-05-23 22:00:00,12477.0
-2012-05-23 23:00:00,12234.0
-2012-05-24 00:00:00,11298.0
-2012-05-22 01:00:00,9363.0
-2012-05-22 02:00:00,8798.0
-2012-05-22 03:00:00,8443.0
-2012-05-22 04:00:00,8211.0
-2012-05-22 05:00:00,8126.0
-2012-05-22 06:00:00,8283.0
-2012-05-22 07:00:00,8674.0
-2012-05-22 08:00:00,9622.0
-2012-05-22 09:00:00,10571.0
-2012-05-22 10:00:00,11170.0
-2012-05-22 11:00:00,11545.0
-2012-05-22 12:00:00,11811.0
-2012-05-22 13:00:00,11958.0
-2012-05-22 14:00:00,12069.0
-2012-05-22 15:00:00,12164.0
-2012-05-22 16:00:00,12167.0
-2012-05-22 17:00:00,12161.0
-2012-05-22 18:00:00,12094.0
-2012-05-22 19:00:00,11944.0
-2012-05-22 20:00:00,11580.0
-2012-05-22 21:00:00,11308.0
-2012-05-22 22:00:00,11556.0
-2012-05-22 23:00:00,11257.0
-2012-05-23 00:00:00,10393.0
-2012-05-21 01:00:00,10758.0
-2012-05-21 02:00:00,9960.0
-2012-05-21 03:00:00,9413.0
-2012-05-21 04:00:00,9051.0
-2012-05-21 05:00:00,8850.0
-2012-05-21 06:00:00,8938.0
-2012-05-21 07:00:00,9312.0
-2012-05-21 08:00:00,10153.0
-2012-05-21 09:00:00,10895.0
-2012-05-21 10:00:00,11377.0
-2012-05-21 11:00:00,11596.0
-2012-05-21 12:00:00,11809.0
-2012-05-21 13:00:00,11846.0
-2012-05-21 14:00:00,11892.0
-2012-05-21 15:00:00,12008.0
-2012-05-21 16:00:00,11948.0
-2012-05-21 17:00:00,11893.0
-2012-05-21 18:00:00,11834.0
-2012-05-21 19:00:00,11650.0
-2012-05-21 20:00:00,11338.0
-2012-05-21 21:00:00,11102.0
-2012-05-21 22:00:00,11366.0
-2012-05-21 23:00:00,11106.0
-2012-05-22 00:00:00,10237.0
-2012-05-20 01:00:00,11200.0
-2012-05-20 02:00:00,10430.0
-2012-05-20 03:00:00,9895.0
-2012-05-20 04:00:00,9409.0
-2012-05-20 05:00:00,9101.0
-2012-05-20 06:00:00,8891.0
-2012-05-20 07:00:00,8683.0
-2012-05-20 08:00:00,8814.0
-2012-05-20 09:00:00,9470.0
-2012-05-20 10:00:00,10534.0
-2012-05-20 11:00:00,11600.0
-2012-05-20 12:00:00,12694.0
-2012-05-20 13:00:00,13484.0
-2012-05-20 14:00:00,14032.0
-2012-05-20 15:00:00,14431.0
-2012-05-20 16:00:00,14778.0
-2012-05-20 17:00:00,14981.0
-2012-05-20 18:00:00,14975.0
-2012-05-20 19:00:00,14384.0
-2012-05-20 20:00:00,13756.0
-2012-05-20 21:00:00,13334.0
-2012-05-20 22:00:00,13418.0
-2012-05-20 23:00:00,13003.0
-2012-05-21 00:00:00,11951.0
-2012-05-19 01:00:00,10155.0
-2012-05-19 02:00:00,9469.0
-2012-05-19 03:00:00,8955.0
-2012-05-19 04:00:00,8601.0
-2012-05-19 05:00:00,8424.0
-2012-05-19 06:00:00,8352.0
-2012-05-19 07:00:00,8376.0
-2012-05-19 08:00:00,8625.0
-2012-05-19 09:00:00,9329.0
-2012-05-19 10:00:00,10206.0
-2012-05-19 11:00:00,11062.0
-2012-05-19 12:00:00,11874.0
-2012-05-19 13:00:00,12478.0
-2012-05-19 14:00:00,12922.0
-2012-05-19 15:00:00,13195.0
-2012-05-19 16:00:00,13469.0
-2012-05-19 17:00:00,13696.0
-2012-05-19 18:00:00,13914.0
-2012-05-19 19:00:00,13917.0
-2012-05-19 20:00:00,13630.0
-2012-05-19 21:00:00,13242.0
-2012-05-19 22:00:00,13185.0
-2012-05-19 23:00:00,12879.0
-2012-05-20 00:00:00,12069.0
-2012-05-18 01:00:00,9444.0
-2012-05-18 02:00:00,8807.0
-2012-05-18 03:00:00,8449.0
-2012-05-18 04:00:00,8206.0
-2012-05-18 05:00:00,8113.0
-2012-05-18 06:00:00,8241.0
-2012-05-18 07:00:00,8612.0
-2012-05-18 08:00:00,9499.0
-2012-05-18 09:00:00,10499.0
-2012-05-18 10:00:00,11127.0
-2012-05-18 11:00:00,11572.0
-2012-05-18 12:00:00,11998.0
-2012-05-18 13:00:00,12222.0
-2012-05-18 14:00:00,12403.0
-2012-05-18 15:00:00,12641.0
-2012-05-18 16:00:00,12774.0
-2012-05-18 17:00:00,12867.0
-2012-05-18 18:00:00,12900.0
-2012-05-18 19:00:00,12780.0
-2012-05-18 20:00:00,12405.0
-2012-05-18 21:00:00,12069.0
-2012-05-18 22:00:00,12168.0
-2012-05-18 23:00:00,11912.0
-2012-05-19 00:00:00,11076.0
-2012-05-17 01:00:00,9211.0
-2012-05-17 02:00:00,8712.0
-2012-05-17 03:00:00,8353.0
-2012-05-17 04:00:00,8136.0
-2012-05-17 05:00:00,8068.0
-2012-05-17 06:00:00,8222.0
-2012-05-17 07:00:00,8655.0
-2012-05-17 08:00:00,9531.0
-2012-05-17 09:00:00,10403.0
-2012-05-17 10:00:00,10962.0
-2012-05-17 11:00:00,11335.0
-2012-05-17 12:00:00,11611.0
-2012-05-17 13:00:00,11758.0
-2012-05-17 14:00:00,11858.0
-2012-05-17 15:00:00,11996.0
-2012-05-17 16:00:00,12020.0
-2012-05-17 17:00:00,11992.0
-2012-05-17 18:00:00,11868.0
-2012-05-17 19:00:00,11606.0
-2012-05-17 20:00:00,11255.0
-2012-05-17 21:00:00,11111.0
-2012-05-17 22:00:00,11474.0
-2012-05-17 23:00:00,11171.0
-2012-05-18 00:00:00,10303.0
-2012-05-16 01:00:00,10315.0
-2012-05-16 02:00:00,9384.0
-2012-05-16 03:00:00,8812.0
-2012-05-16 04:00:00,8421.0
-2012-05-16 05:00:00,8263.0
-2012-05-16 06:00:00,8337.0
-2012-05-16 07:00:00,8753.0
-2012-05-16 08:00:00,9553.0
-2012-05-16 09:00:00,10439.0
-2012-05-16 10:00:00,10898.0
-2012-05-16 11:00:00,11224.0
-2012-05-16 12:00:00,11427.0
-2012-05-16 13:00:00,11525.0
-2012-05-16 14:00:00,11578.0
-2012-05-16 15:00:00,11643.0
-2012-05-16 16:00:00,11592.0
-2012-05-16 17:00:00,11527.0
-2012-05-16 18:00:00,11424.0
-2012-05-16 19:00:00,11230.0
-2012-05-16 20:00:00,10885.0
-2012-05-16 21:00:00,10760.0
-2012-05-16 22:00:00,11136.0
-2012-05-16 23:00:00,10883.0
-2012-05-17 00:00:00,10069.0
-2012-05-15 01:00:00,9568.0
-2012-05-15 02:00:00,8957.0
-2012-05-15 03:00:00,8580.0
-2012-05-15 04:00:00,8297.0
-2012-05-15 05:00:00,8195.0
-2012-05-15 06:00:00,8349.0
-2012-05-15 07:00:00,8775.0
-2012-05-15 08:00:00,9754.0
-2012-05-15 09:00:00,10758.0
-2012-05-15 10:00:00,11418.0
-2012-05-15 11:00:00,11929.0
-2012-05-15 12:00:00,12396.0
-2012-05-15 13:00:00,12667.0
-2012-05-15 14:00:00,12866.0
-2012-05-15 15:00:00,13130.0
-2012-05-15 16:00:00,13288.0
-2012-05-15 17:00:00,13442.0
-2012-05-15 18:00:00,13468.0
-2012-05-15 19:00:00,13378.0
-2012-05-15 20:00:00,12996.0
-2012-05-15 21:00:00,12935.0
-2012-05-15 22:00:00,12958.0
-2012-05-15 23:00:00,12342.0
-2012-05-16 00:00:00,11296.0
-2012-05-14 01:00:00,8333.0
-2012-05-14 02:00:00,7953.0
-2012-05-14 03:00:00,7678.0
-2012-05-14 04:00:00,7586.0
-2012-05-14 05:00:00,7550.0
-2012-05-14 06:00:00,7824.0
-2012-05-14 07:00:00,8367.0
-2012-05-14 08:00:00,9330.0
-2012-05-14 09:00:00,10219.0
-2012-05-14 10:00:00,10904.0
-2012-05-14 11:00:00,11326.0
-2012-05-14 12:00:00,11690.0
-2012-05-14 13:00:00,11917.0
-2012-05-14 14:00:00,12039.0
-2012-05-14 15:00:00,12233.0
-2012-05-14 16:00:00,12256.0
-2012-05-14 17:00:00,12234.0
-2012-05-14 18:00:00,12246.0
-2012-05-14 19:00:00,12103.0
-2012-05-14 20:00:00,11769.0
-2012-05-14 21:00:00,11559.0
-2012-05-14 22:00:00,11878.0
-2012-05-14 23:00:00,11464.0
-2012-05-15 00:00:00,10506.0
-2012-05-13 01:00:00,8556.0
-2012-05-13 02:00:00,8100.0
-2012-05-13 03:00:00,7702.0
-2012-05-13 04:00:00,7542.0
-2012-05-13 05:00:00,7445.0
-2012-05-13 06:00:00,7432.0
-2012-05-13 07:00:00,7411.0
-2012-05-13 08:00:00,7382.0
-2012-05-13 09:00:00,7707.0
-2012-05-13 10:00:00,8147.0
-2012-05-13 11:00:00,8503.0
-2012-05-13 12:00:00,8718.0
-2012-05-13 13:00:00,8851.0
-2012-05-13 14:00:00,8884.0
-2012-05-13 15:00:00,8867.0
-2012-05-13 16:00:00,8870.0
-2012-05-13 17:00:00,8883.0
-2012-05-13 18:00:00,8934.0
-2012-05-13 19:00:00,8954.0
-2012-05-13 20:00:00,8967.0
-2012-05-13 21:00:00,9010.0
-2012-05-13 22:00:00,9607.0
-2012-05-13 23:00:00,9506.0
-2012-05-14 00:00:00,8985.0
-2012-05-12 01:00:00,9654.0
-2012-05-12 02:00:00,8981.0
-2012-05-12 03:00:00,8575.0
-2012-05-12 04:00:00,8271.0
-2012-05-12 05:00:00,8139.0
-2012-05-12 06:00:00,8149.0
-2012-05-12 07:00:00,8237.0
-2012-05-12 08:00:00,8410.0
-2012-05-12 09:00:00,8858.0
-2012-05-12 10:00:00,9331.0
-2012-05-12 11:00:00,9603.0
-2012-05-12 12:00:00,9792.0
-2012-05-12 13:00:00,9783.0
-2012-05-12 14:00:00,9690.0
-2012-05-12 15:00:00,9542.0
-2012-05-12 16:00:00,9391.0
-2012-05-12 17:00:00,9280.0
-2012-05-12 18:00:00,9239.0
-2012-05-12 19:00:00,9190.0
-2012-05-12 20:00:00,9208.0
-2012-05-12 21:00:00,9386.0
-2012-05-12 22:00:00,9772.0
-2012-05-12 23:00:00,9610.0
-2012-05-13 00:00:00,9146.0
-2012-05-11 01:00:00,9255.0
-2012-05-11 02:00:00,8769.0
-2012-05-11 03:00:00,8417.0
-2012-05-11 04:00:00,8227.0
-2012-05-11 05:00:00,8134.0
-2012-05-11 06:00:00,8335.0
-2012-05-11 07:00:00,8763.0
-2012-05-11 08:00:00,9596.0
-2012-05-11 09:00:00,10436.0
-2012-05-11 10:00:00,10914.0
-2012-05-11 11:00:00,11260.0
-2012-05-11 12:00:00,11487.0
-2012-05-11 13:00:00,11648.0
-2012-05-11 14:00:00,11695.0
-2012-05-11 15:00:00,11821.0
-2012-05-11 16:00:00,11834.0
-2012-05-11 17:00:00,11764.0
-2012-05-11 18:00:00,11721.0
-2012-05-11 19:00:00,11506.0
-2012-05-11 20:00:00,11214.0
-2012-05-11 21:00:00,11135.0
-2012-05-11 22:00:00,11510.0
-2012-05-11 23:00:00,11242.0
-2012-05-12 00:00:00,10469.0
-2012-05-10 01:00:00,9208.0
-2012-05-10 02:00:00,8701.0
-2012-05-10 03:00:00,8368.0
-2012-05-10 04:00:00,8137.0
-2012-05-10 05:00:00,8112.0
-2012-05-10 06:00:00,8328.0
-2012-05-10 07:00:00,8860.0
-2012-05-10 08:00:00,9731.0
-2012-05-10 09:00:00,10533.0
-2012-05-10 10:00:00,10930.0
-2012-05-10 11:00:00,11186.0
-2012-05-10 12:00:00,11386.0
-2012-05-10 13:00:00,11422.0
-2012-05-10 14:00:00,11469.0
-2012-05-10 15:00:00,11574.0
-2012-05-10 16:00:00,11511.0
-2012-05-10 17:00:00,11379.0
-2012-05-10 18:00:00,11271.0
-2012-05-10 19:00:00,11085.0
-2012-05-10 20:00:00,10834.0
-2012-05-10 21:00:00,10801.0
-2012-05-10 22:00:00,11217.0
-2012-05-10 23:00:00,10931.0
-2012-05-11 00:00:00,10140.0
-2012-05-09 01:00:00,9321.0
-2012-05-09 02:00:00,8729.0
-2012-05-09 03:00:00,8341.0
-2012-05-09 04:00:00,8134.0
-2012-05-09 05:00:00,8050.0
-2012-05-09 06:00:00,8211.0
-2012-05-09 07:00:00,8642.0
-2012-05-09 08:00:00,9708.0
-2012-05-09 09:00:00,10432.0
-2012-05-09 10:00:00,10858.0
-2012-05-09 11:00:00,11084.0
-2012-05-09 12:00:00,11363.0
-2012-05-09 13:00:00,11352.0
-2012-05-09 14:00:00,11327.0
-2012-05-09 15:00:00,11320.0
-2012-05-09 16:00:00,11225.0
-2012-05-09 17:00:00,11088.0
-2012-05-09 18:00:00,10940.0
-2012-05-09 19:00:00,10740.0
-2012-05-09 20:00:00,10512.0
-2012-05-09 21:00:00,10554.0
-2012-05-09 22:00:00,11095.0
-2012-05-09 23:00:00,10779.0
-2012-05-10 00:00:00,10012.0
-2012-05-08 01:00:00,9248.0
-2012-05-08 02:00:00,8701.0
-2012-05-08 03:00:00,8376.0
-2012-05-08 04:00:00,8158.0
-2012-05-08 05:00:00,8077.0
-2012-05-08 06:00:00,8270.0
-2012-05-08 07:00:00,8799.0
-2012-05-08 08:00:00,9707.0
-2012-05-08 09:00:00,10572.0
-2012-05-08 10:00:00,11061.0
-2012-05-08 11:00:00,11392.0
-2012-05-08 12:00:00,11673.0
-2012-05-08 13:00:00,11771.0
-2012-05-08 14:00:00,11833.0
-2012-05-08 15:00:00,11887.0
-2012-05-08 16:00:00,11788.0
-2012-05-08 17:00:00,11671.0
-2012-05-08 18:00:00,11522.0
-2012-05-08 19:00:00,11314.0
-2012-05-08 20:00:00,11025.0
-2012-05-08 21:00:00,11029.0
-2012-05-08 22:00:00,11425.0
-2012-05-08 23:00:00,10984.0
-2012-05-09 00:00:00,10143.0
-2012-05-07 01:00:00,8609.0
-2012-05-07 02:00:00,8257.0
-2012-05-07 03:00:00,7981.0
-2012-05-07 04:00:00,7908.0
-2012-05-07 05:00:00,7802.0
-2012-05-07 06:00:00,8075.0
-2012-05-07 07:00:00,8708.0
-2012-05-07 08:00:00,9744.0
-2012-05-07 09:00:00,10625.0
-2012-05-07 10:00:00,11058.0
-2012-05-07 11:00:00,11312.0
-2012-05-07 12:00:00,11565.0
-2012-05-07 13:00:00,11525.0
-2012-05-07 14:00:00,11551.0
-2012-05-07 15:00:00,11601.0
-2012-05-07 16:00:00,11498.0
-2012-05-07 17:00:00,11387.0
-2012-05-07 18:00:00,11308.0
-2012-05-07 19:00:00,11194.0
-2012-05-07 20:00:00,10947.0
-2012-05-07 21:00:00,10926.0
-2012-05-07 22:00:00,11312.0
-2012-05-07 23:00:00,10924.0
-2012-05-08 00:00:00,10073.0
-2012-05-06 01:00:00,8636.0
-2012-05-06 02:00:00,8123.0
-2012-05-06 03:00:00,7850.0
-2012-05-06 04:00:00,7633.0
-2012-05-06 05:00:00,7545.0
-2012-05-06 06:00:00,7519.0
-2012-05-06 07:00:00,7478.0
-2012-05-06 08:00:00,7473.0
-2012-05-06 09:00:00,7719.0
-2012-05-06 10:00:00,8289.0
-2012-05-06 11:00:00,8635.0
-2012-05-06 12:00:00,9008.0
-2012-05-06 13:00:00,9351.0
-2012-05-06 14:00:00,9610.0
-2012-05-06 15:00:00,9482.0
-2012-05-06 16:00:00,9404.0
-2012-05-06 17:00:00,9346.0
-2012-05-06 18:00:00,9419.0
-2012-05-06 19:00:00,9555.0
-2012-05-06 20:00:00,9554.0
-2012-05-06 21:00:00,9582.0
-2012-05-06 22:00:00,10052.0
-2012-05-06 23:00:00,9778.0
-2012-05-07 00:00:00,9192.0
-2012-05-05 01:00:00,9329.0
-2012-05-05 02:00:00,8694.0
-2012-05-05 03:00:00,8253.0
-2012-05-05 04:00:00,7992.0
-2012-05-05 05:00:00,7880.0
-2012-05-05 06:00:00,7861.0
-2012-05-05 07:00:00,8068.0
-2012-05-05 08:00:00,8256.0
-2012-05-05 09:00:00,8699.0
-2012-05-05 10:00:00,9181.0
-2012-05-05 11:00:00,9565.0
-2012-05-05 12:00:00,9766.0
-2012-05-05 13:00:00,9754.0
-2012-05-05 14:00:00,9676.0
-2012-05-05 15:00:00,9520.0
-2012-05-05 16:00:00,9440.0
-2012-05-05 17:00:00,9382.0
-2012-05-05 18:00:00,9405.0
-2012-05-05 19:00:00,9362.0
-2012-05-05 20:00:00,9368.0
-2012-05-05 21:00:00,9483.0
-2012-05-05 22:00:00,9926.0
-2012-05-05 23:00:00,9734.0
-2012-05-06 00:00:00,9200.0
-2012-05-04 01:00:00,11447.0
-2012-05-04 02:00:00,10713.0
-2012-05-04 03:00:00,10202.0
-2012-05-04 04:00:00,9713.0
-2012-05-04 05:00:00,9406.0
-2012-05-04 06:00:00,9359.0
-2012-05-04 07:00:00,9881.0
-2012-05-04 08:00:00,10732.0
-2012-05-04 09:00:00,11528.0
-2012-05-04 10:00:00,11824.0
-2012-05-04 11:00:00,12066.0
-2012-05-04 12:00:00,12307.0
-2012-05-04 13:00:00,12448.0
-2012-05-04 14:00:00,12566.0
-2012-05-04 15:00:00,12691.0
-2012-05-04 16:00:00,12649.0
-2012-05-04 17:00:00,12510.0
-2012-05-04 18:00:00,12185.0
-2012-05-04 19:00:00,11763.0
-2012-05-04 20:00:00,11203.0
-2012-05-04 21:00:00,11036.0
-2012-05-04 22:00:00,11269.0
-2012-05-04 23:00:00,10856.0
-2012-05-05 00:00:00,10112.0
-2012-05-03 01:00:00,10067.0
-2012-05-03 02:00:00,9442.0
-2012-05-03 03:00:00,9011.0
-2012-05-03 04:00:00,8768.0
-2012-05-03 05:00:00,8664.0
-2012-05-03 06:00:00,8858.0
-2012-05-03 07:00:00,9498.0
-2012-05-03 08:00:00,10411.0
-2012-05-03 09:00:00,11460.0
-2012-05-03 10:00:00,12181.0
-2012-05-03 11:00:00,12805.0
-2012-05-03 12:00:00,13365.0
-2012-05-03 13:00:00,13676.0
-2012-05-03 14:00:00,13900.0
-2012-05-03 15:00:00,14171.0
-2012-05-03 16:00:00,14368.0
-2012-05-03 17:00:00,14566.0
-2012-05-03 18:00:00,14630.0
-2012-05-03 19:00:00,14496.0
-2012-05-03 20:00:00,14161.0
-2012-05-03 21:00:00,14137.0
-2012-05-03 22:00:00,14304.0
-2012-05-03 23:00:00,13820.0
-2012-05-04 00:00:00,12673.0
-2012-05-02 01:00:00,9269.0
-2012-05-02 02:00:00,8729.0
-2012-05-02 03:00:00,8428.0
-2012-05-02 04:00:00,8213.0
-2012-05-02 05:00:00,8159.0
-2012-05-02 06:00:00,8364.0
-2012-05-02 07:00:00,9014.0
-2012-05-02 08:00:00,9937.0
-2012-05-02 09:00:00,10941.0
-2012-05-02 10:00:00,11445.0
-2012-05-02 11:00:00,11735.0
-2012-05-02 12:00:00,12031.0
-2012-05-02 13:00:00,12103.0
-2012-05-02 14:00:00,12097.0
-2012-05-02 15:00:00,12142.0
-2012-05-02 16:00:00,12111.0
-2012-05-02 17:00:00,12094.0
-2012-05-02 18:00:00,12077.0
-2012-05-02 19:00:00,11981.0
-2012-05-02 20:00:00,11731.0
-2012-05-02 21:00:00,11890.0
-2012-05-02 22:00:00,12272.0
-2012-05-02 23:00:00,11845.0
-2012-05-03 00:00:00,10937.0
-2012-05-01 01:00:00,9214.0
-2012-05-01 02:00:00,8678.0
-2012-05-01 03:00:00,8350.0
-2012-05-01 04:00:00,8153.0
-2012-05-01 05:00:00,8083.0
-2012-05-01 06:00:00,8272.0
-2012-05-01 07:00:00,8866.0
-2012-05-01 08:00:00,9759.0
-2012-05-01 09:00:00,10548.0
-2012-05-01 10:00:00,10892.0
-2012-05-01 11:00:00,11106.0
-2012-05-01 12:00:00,11247.0
-2012-05-01 13:00:00,11305.0
-2012-05-01 14:00:00,11357.0
-2012-05-01 15:00:00,11374.0
-2012-05-01 16:00:00,11261.0
-2012-05-01 17:00:00,11196.0
-2012-05-01 18:00:00,11147.0
-2012-05-01 19:00:00,11103.0
-2012-05-01 20:00:00,10995.0
-2012-05-01 21:00:00,11165.0
-2012-05-01 22:00:00,11396.0
-2012-05-01 23:00:00,10893.0
-2012-05-02 00:00:00,10074.0
-2012-04-30 01:00:00,8563.0
-2012-04-30 02:00:00,8194.0
-2012-04-30 03:00:00,7956.0
-2012-04-30 04:00:00,7851.0
-2012-04-30 05:00:00,7865.0
-2012-04-30 06:00:00,8101.0
-2012-04-30 07:00:00,8850.0
-2012-04-30 08:00:00,9852.0
-2012-04-30 09:00:00,10634.0
-2012-04-30 10:00:00,10976.0
-2012-04-30 11:00:00,11247.0
-2012-04-30 12:00:00,11413.0
-2012-04-30 13:00:00,11558.0
-2012-04-30 14:00:00,11584.0
-2012-04-30 15:00:00,11600.0
-2012-04-30 16:00:00,11405.0
-2012-04-30 17:00:00,11262.0
-2012-04-30 18:00:00,11137.0
-2012-04-30 19:00:00,11071.0
-2012-04-30 20:00:00,11004.0
-2012-04-30 21:00:00,11240.0
-2012-04-30 22:00:00,11296.0
-2012-04-30 23:00:00,10790.0
-2012-05-01 00:00:00,9993.0
-2012-04-29 01:00:00,8937.0
-2012-04-29 02:00:00,8511.0
-2012-04-29 03:00:00,8157.0
-2012-04-29 04:00:00,8040.0
-2012-04-29 05:00:00,7939.0
-2012-04-29 06:00:00,7951.0
-2012-04-29 07:00:00,8034.0
-2012-04-29 08:00:00,7901.0
-2012-04-29 09:00:00,8150.0
-2012-04-29 10:00:00,8490.0
-2012-04-29 11:00:00,8714.0
-2012-04-29 12:00:00,8806.0
-2012-04-29 13:00:00,8917.0
-2012-04-29 14:00:00,8912.0
-2012-04-29 15:00:00,8879.0
-2012-04-29 16:00:00,8849.0
-2012-04-29 17:00:00,8933.0
-2012-04-29 18:00:00,9127.0
-2012-04-29 19:00:00,9326.0
-2012-04-29 20:00:00,9521.0
-2012-04-29 21:00:00,9834.0
-2012-04-29 22:00:00,10041.0
-2012-04-29 23:00:00,9716.0
-2012-04-30 00:00:00,9156.0
-2012-04-28 01:00:00,9435.0
-2012-04-28 02:00:00,8890.0
-2012-04-28 03:00:00,8507.0
-2012-04-28 04:00:00,8324.0
-2012-04-28 05:00:00,8179.0
-2012-04-28 06:00:00,8247.0
-2012-04-28 07:00:00,8481.0
-2012-04-28 08:00:00,8909.0
-2012-04-28 09:00:00,9271.0
-2012-04-28 10:00:00,9773.0
-2012-04-28 11:00:00,10111.0
-2012-04-28 12:00:00,10276.0
-2012-04-28 13:00:00,10235.0
-2012-04-28 14:00:00,10137.0
-2012-04-28 15:00:00,9886.0
-2012-04-28 16:00:00,9709.0
-2012-04-28 17:00:00,9563.0
-2012-04-28 18:00:00,9551.0
-2012-04-28 19:00:00,9424.0
-2012-04-28 20:00:00,9430.0
-2012-04-28 21:00:00,9688.0
-2012-04-28 22:00:00,10189.0
-2012-04-28 23:00:00,9967.0
-2012-04-29 00:00:00,9512.0
-2012-04-27 01:00:00,9470.0
-2012-04-27 02:00:00,8972.0
-2012-04-27 03:00:00,8707.0
-2012-04-27 04:00:00,8525.0
-2012-04-27 05:00:00,8504.0
-2012-04-27 06:00:00,8753.0
-2012-04-27 07:00:00,9389.0
-2012-04-27 08:00:00,10213.0
-2012-04-27 09:00:00,10840.0
-2012-04-27 10:00:00,11121.0
-2012-04-27 11:00:00,11197.0
-2012-04-27 12:00:00,11249.0
-2012-04-27 13:00:00,11201.0
-2012-04-27 14:00:00,11090.0
-2012-04-27 15:00:00,11078.0
-2012-04-27 16:00:00,10929.0
-2012-04-27 17:00:00,10768.0
-2012-04-27 18:00:00,10702.0
-2012-04-27 19:00:00,10667.0
-2012-04-27 20:00:00,10601.0
-2012-04-27 21:00:00,10748.0
-2012-04-27 22:00:00,11117.0
-2012-04-27 23:00:00,10833.0
-2012-04-28 00:00:00,10155.0
-2012-04-26 01:00:00,9239.0
-2012-04-26 02:00:00,8712.0
-2012-04-26 03:00:00,8410.0
-2012-04-26 04:00:00,8213.0
-2012-04-26 05:00:00,8167.0
-2012-04-26 06:00:00,8373.0
-2012-04-26 07:00:00,9028.0
-2012-04-26 08:00:00,9856.0
-2012-04-26 09:00:00,10588.0
-2012-04-26 10:00:00,10942.0
-2012-04-26 11:00:00,11077.0
-2012-04-26 12:00:00,11304.0
-2012-04-26 13:00:00,11302.0
-2012-04-26 14:00:00,11242.0
-2012-04-26 15:00:00,11157.0
-2012-04-26 16:00:00,11004.0
-2012-04-26 17:00:00,10851.0
-2012-04-26 18:00:00,10732.0
-2012-04-26 19:00:00,10566.0
-2012-04-26 20:00:00,10390.0
-2012-04-26 21:00:00,10652.0
-2012-04-26 22:00:00,11228.0
-2012-04-26 23:00:00,10897.0
-2012-04-27 00:00:00,10193.0
-2012-04-25 01:00:00,9186.0
-2012-04-25 02:00:00,8687.0
-2012-04-25 03:00:00,8387.0
-2012-04-25 04:00:00,8215.0
-2012-04-25 05:00:00,8156.0
-2012-04-25 06:00:00,8356.0
-2012-04-25 07:00:00,9026.0
-2012-04-25 08:00:00,9913.0
-2012-04-25 09:00:00,10739.0
-2012-04-25 10:00:00,11169.0
-2012-04-25 11:00:00,11206.0
-2012-04-25 12:00:00,11384.0
-2012-04-25 13:00:00,11449.0
-2012-04-25 14:00:00,11451.0
-2012-04-25 15:00:00,11447.0
-2012-04-25 16:00:00,11319.0
-2012-04-25 17:00:00,11223.0
-2012-04-25 18:00:00,11084.0
-2012-04-25 19:00:00,10927.0
-2012-04-25 20:00:00,10676.0
-2012-04-25 21:00:00,10930.0
-2012-04-25 22:00:00,11256.0
-2012-04-25 23:00:00,10804.0
-2012-04-26 00:00:00,9981.0
-2012-04-24 01:00:00,9296.0
-2012-04-24 02:00:00,8823.0
-2012-04-24 03:00:00,8565.0
-2012-04-24 04:00:00,8380.0
-2012-04-24 05:00:00,8397.0
-2012-04-24 06:00:00,8614.0
-2012-04-24 07:00:00,9301.0
-2012-04-24 08:00:00,10175.0
-2012-04-24 09:00:00,10795.0
-2012-04-24 10:00:00,11038.0
-2012-04-24 11:00:00,11155.0
-2012-04-24 12:00:00,11252.0
-2012-04-24 13:00:00,11286.0
-2012-04-24 14:00:00,11269.0
-2012-04-24 15:00:00,11294.0
-2012-04-24 16:00:00,11179.0
-2012-04-24 17:00:00,11024.0
-2012-04-24 18:00:00,10873.0
-2012-04-24 19:00:00,10730.0
-2012-04-24 20:00:00,10515.0
-2012-04-24 21:00:00,10694.0
-2012-04-24 22:00:00,11153.0
-2012-04-24 23:00:00,10770.0
-2012-04-25 00:00:00,9958.0
-2012-04-23 01:00:00,8800.0
-2012-04-23 02:00:00,8469.0
-2012-04-23 03:00:00,8267.0
-2012-04-23 04:00:00,8198.0
-2012-04-23 05:00:00,8243.0
-2012-04-23 06:00:00,8546.0
-2012-04-23 07:00:00,9307.0
-2012-04-23 08:00:00,10229.0
-2012-04-23 09:00:00,10883.0
-2012-04-23 10:00:00,11157.0
-2012-04-23 11:00:00,11210.0
-2012-04-23 12:00:00,11362.0
-2012-04-23 13:00:00,11329.0
-2012-04-23 14:00:00,11284.0
-2012-04-23 15:00:00,11269.0
-2012-04-23 16:00:00,11173.0
-2012-04-23 17:00:00,11002.0
-2012-04-23 18:00:00,10866.0
-2012-04-23 19:00:00,10728.0
-2012-04-23 20:00:00,10576.0
-2012-04-23 21:00:00,10793.0
-2012-04-23 22:00:00,11224.0
-2012-04-23 23:00:00,10836.0
-2012-04-24 00:00:00,10079.0
-2012-04-22 01:00:00,8930.0
-2012-04-22 02:00:00,8480.0
-2012-04-22 03:00:00,8127.0
-2012-04-22 04:00:00,8011.0
-2012-04-22 05:00:00,7897.0
-2012-04-22 06:00:00,7913.0
-2012-04-22 07:00:00,8050.0
-2012-04-22 08:00:00,8039.0
-2012-04-22 09:00:00,8227.0
-2012-04-22 10:00:00,8576.0
-2012-04-22 11:00:00,8760.0
-2012-04-22 12:00:00,8946.0
-2012-04-22 13:00:00,8990.0
-2012-04-22 14:00:00,9000.0
-2012-04-22 15:00:00,8939.0
-2012-04-22 16:00:00,8888.0
-2012-04-22 17:00:00,8859.0
-2012-04-22 18:00:00,8913.0
-2012-04-22 19:00:00,9015.0
-2012-04-22 20:00:00,9109.0
-2012-04-22 21:00:00,9501.0
-2012-04-22 22:00:00,10072.0
-2012-04-22 23:00:00,9894.0
-2012-04-23 00:00:00,9341.0
-2012-04-21 01:00:00,9543.0
-2012-04-21 02:00:00,8987.0
-2012-04-21 03:00:00,8647.0
-2012-04-21 04:00:00,8406.0
-2012-04-21 05:00:00,8357.0
-2012-04-21 06:00:00,8398.0
-2012-04-21 07:00:00,8668.0
-2012-04-21 08:00:00,8800.0
-2012-04-21 09:00:00,9190.0
-2012-04-21 10:00:00,9534.0
-2012-04-21 11:00:00,9762.0
-2012-04-21 12:00:00,9827.0
-2012-04-21 13:00:00,9780.0
-2012-04-21 14:00:00,9603.0
-2012-04-21 15:00:00,9426.0
-2012-04-21 16:00:00,9248.0
-2012-04-21 17:00:00,9171.0
-2012-04-21 18:00:00,9113.0
-2012-04-21 19:00:00,9142.0
-2012-04-21 20:00:00,9213.0
-2012-04-21 21:00:00,9645.0
-2012-04-21 22:00:00,10078.0
-2012-04-21 23:00:00,9905.0
-2012-04-22 00:00:00,9452.0
-2012-04-20 01:00:00,9268.0
-2012-04-20 02:00:00,8766.0
-2012-04-20 03:00:00,8438.0
-2012-04-20 04:00:00,8235.0
-2012-04-20 05:00:00,8160.0
-2012-04-20 06:00:00,8367.0
-2012-04-20 07:00:00,9050.0
-2012-04-20 08:00:00,10103.0
-2012-04-20 09:00:00,10926.0
-2012-04-20 10:00:00,11297.0
-2012-04-20 11:00:00,11523.0
-2012-04-20 12:00:00,11672.0
-2012-04-20 13:00:00,11626.0
-2012-04-20 14:00:00,11536.0
-2012-04-20 15:00:00,11550.0
-2012-04-20 16:00:00,11407.0
-2012-04-20 17:00:00,11309.0
-2012-04-20 18:00:00,11192.0
-2012-04-20 19:00:00,11065.0
-2012-04-20 20:00:00,10926.0
-2012-04-20 21:00:00,11078.0
-2012-04-20 22:00:00,11312.0
-2012-04-20 23:00:00,11007.0
-2012-04-21 00:00:00,10287.0
-2012-04-19 01:00:00,9332.0
-2012-04-19 02:00:00,8755.0
-2012-04-19 03:00:00,8385.0
-2012-04-19 04:00:00,8159.0
-2012-04-19 05:00:00,8086.0
-2012-04-19 06:00:00,8262.0
-2012-04-19 07:00:00,8898.0
-2012-04-19 08:00:00,9829.0
-2012-04-19 09:00:00,10630.0
-2012-04-19 10:00:00,10986.0
-2012-04-19 11:00:00,11140.0
-2012-04-19 12:00:00,11303.0
-2012-04-19 13:00:00,11324.0
-2012-04-19 14:00:00,11363.0
-2012-04-19 15:00:00,11396.0
-2012-04-19 16:00:00,11279.0
-2012-04-19 17:00:00,11145.0
-2012-04-19 18:00:00,11037.0
-2012-04-19 19:00:00,10879.0
-2012-04-19 20:00:00,10844.0
-2012-04-19 21:00:00,11121.0
-2012-04-19 22:00:00,11316.0
-2012-04-19 23:00:00,10845.0
-2012-04-20 00:00:00,10042.0
-2012-04-18 01:00:00,9340.0
-2012-04-18 02:00:00,8840.0
-2012-04-18 03:00:00,8537.0
-2012-04-18 04:00:00,8350.0
-2012-04-18 05:00:00,8326.0
-2012-04-18 06:00:00,8533.0
-2012-04-18 07:00:00,9197.0
-2012-04-18 08:00:00,10107.0
-2012-04-18 09:00:00,10725.0
-2012-04-18 10:00:00,11030.0
-2012-04-18 11:00:00,11207.0
-2012-04-18 12:00:00,11384.0
-2012-04-18 13:00:00,11468.0
-2012-04-18 14:00:00,11508.0
-2012-04-18 15:00:00,11605.0
-2012-04-18 16:00:00,11540.0
-2012-04-18 17:00:00,11430.0
-2012-04-18 18:00:00,11302.0
-2012-04-18 19:00:00,11184.0
-2012-04-18 20:00:00,11025.0
-2012-04-18 21:00:00,11324.0
-2012-04-18 22:00:00,11543.0
-2012-04-18 23:00:00,11027.0
-2012-04-19 00:00:00,10148.0
-2012-04-17 01:00:00,9234.0
-2012-04-17 02:00:00,8751.0
-2012-04-17 03:00:00,8445.0
-2012-04-17 04:00:00,8259.0
-2012-04-17 05:00:00,8209.0
-2012-04-17 06:00:00,8449.0
-2012-04-17 07:00:00,9209.0
-2012-04-17 08:00:00,10115.0
-2012-04-17 09:00:00,10751.0
-2012-04-17 10:00:00,11037.0
-2012-04-17 11:00:00,11098.0
-2012-04-17 12:00:00,11226.0
-2012-04-17 13:00:00,11211.0
-2012-04-17 14:00:00,11162.0
-2012-04-17 15:00:00,11204.0
-2012-04-17 16:00:00,11111.0
-2012-04-17 17:00:00,10951.0
-2012-04-17 18:00:00,10827.0
-2012-04-17 19:00:00,10650.0
-2012-04-17 20:00:00,10476.0
-2012-04-17 21:00:00,10791.0
-2012-04-17 22:00:00,11238.0
-2012-04-17 23:00:00,10868.0
-2012-04-18 00:00:00,10092.0
-2012-04-16 01:00:00,9038.0
-2012-04-16 02:00:00,8581.0
-2012-04-16 03:00:00,8290.0
-2012-04-16 04:00:00,8035.0
-2012-04-16 05:00:00,7987.0
-2012-04-16 06:00:00,8110.0
-2012-04-16 07:00:00,8781.0
-2012-04-16 08:00:00,9685.0
-2012-04-16 09:00:00,10548.0
-2012-04-16 10:00:00,10946.0
-2012-04-16 11:00:00,11163.0
-2012-04-16 12:00:00,11337.0
-2012-04-16 13:00:00,11331.0
-2012-04-16 14:00:00,11309.0
-2012-04-16 15:00:00,11338.0
-2012-04-16 16:00:00,11219.0
-2012-04-16 17:00:00,11031.0
-2012-04-16 18:00:00,10861.0
-2012-04-16 19:00:00,10727.0
-2012-04-16 20:00:00,10578.0
-2012-04-16 21:00:00,10860.0
-2012-04-16 22:00:00,11262.0
-2012-04-16 23:00:00,10832.0
-2012-04-17 00:00:00,10027.0
-2012-04-15 01:00:00,8905.0
-2012-04-15 02:00:00,8438.0
-2012-04-15 03:00:00,8136.0
-2012-04-15 04:00:00,7836.0
-2012-04-15 05:00:00,7732.0
-2012-04-15 06:00:00,7631.0
-2012-04-15 07:00:00,7756.0
-2012-04-15 08:00:00,7751.0
-2012-04-15 09:00:00,7928.0
-2012-04-15 10:00:00,8361.0
-2012-04-15 11:00:00,8770.0
-2012-04-15 12:00:00,9104.0
-2012-04-15 13:00:00,9360.0
-2012-04-15 14:00:00,9428.0
-2012-04-15 15:00:00,9552.0
-2012-04-15 16:00:00,9526.0
-2012-04-15 17:00:00,9585.0
-2012-04-15 18:00:00,9622.0
-2012-04-15 19:00:00,9810.0
-2012-04-15 20:00:00,10058.0
-2012-04-15 21:00:00,10430.0
-2012-04-15 22:00:00,10549.0
-2012-04-15 23:00:00,10262.0
-2012-04-16 00:00:00,9700.0
-2012-04-14 01:00:00,9249.0
-2012-04-14 02:00:00,8679.0
-2012-04-14 03:00:00,8341.0
-2012-04-14 04:00:00,8102.0
-2012-04-14 05:00:00,8006.0
-2012-04-14 06:00:00,8005.0
-2012-04-14 07:00:00,8267.0
-2012-04-14 08:00:00,8489.0
-2012-04-14 09:00:00,8859.0
-2012-04-14 10:00:00,9313.0
-2012-04-14 11:00:00,9651.0
-2012-04-14 12:00:00,9838.0
-2012-04-14 13:00:00,9831.0
-2012-04-14 14:00:00,9818.0
-2012-04-14 15:00:00,9675.0
-2012-04-14 16:00:00,9613.0
-2012-04-14 17:00:00,9592.0
-2012-04-14 18:00:00,9565.0
-2012-04-14 19:00:00,9600.0
-2012-04-14 20:00:00,9551.0
-2012-04-14 21:00:00,9989.0
-2012-04-14 22:00:00,10207.0
-2012-04-14 23:00:00,9968.0
-2012-04-15 00:00:00,9490.0
-2012-04-13 01:00:00,9423.0
-2012-04-13 02:00:00,8883.0
-2012-04-13 03:00:00,8569.0
-2012-04-13 04:00:00,8381.0
-2012-04-13 05:00:00,8367.0
-2012-04-13 06:00:00,8550.0
-2012-04-13 07:00:00,9239.0
-2012-04-13 08:00:00,10081.0
-2012-04-13 09:00:00,10695.0
-2012-04-13 10:00:00,11021.0
-2012-04-13 11:00:00,11049.0
-2012-04-13 12:00:00,11229.0
-2012-04-13 13:00:00,11234.0
-2012-04-13 14:00:00,11232.0
-2012-04-13 15:00:00,11240.0
-2012-04-13 16:00:00,11097.0
-2012-04-13 17:00:00,10923.0
-2012-04-13 18:00:00,10769.0
-2012-04-13 19:00:00,10655.0
-2012-04-13 20:00:00,10521.0
-2012-04-13 21:00:00,10812.0
-2012-04-13 22:00:00,11036.0
-2012-04-13 23:00:00,10676.0
-2012-04-14 00:00:00,9969.0
-2012-04-12 01:00:00,9556.0
-2012-04-12 02:00:00,9090.0
-2012-04-12 03:00:00,8801.0
-2012-04-12 04:00:00,8647.0
-2012-04-12 05:00:00,8641.0
-2012-04-12 06:00:00,8867.0
-2012-04-12 07:00:00,9612.0
-2012-04-12 08:00:00,10538.0
-2012-04-12 09:00:00,11046.0
-2012-04-12 10:00:00,11228.0
-2012-04-12 11:00:00,11311.0
-2012-04-12 12:00:00,11372.0
-2012-04-12 13:00:00,11334.0
-2012-04-12 14:00:00,11305.0
-2012-04-12 15:00:00,11295.0
-2012-04-12 16:00:00,11204.0
-2012-04-12 17:00:00,11063.0
-2012-04-12 18:00:00,10907.0
-2012-04-12 19:00:00,10732.0
-2012-04-12 20:00:00,10636.0
-2012-04-12 21:00:00,11053.0
-2012-04-12 22:00:00,11312.0
-2012-04-12 23:00:00,10899.0
-2012-04-13 00:00:00,10110.0
-2012-04-11 01:00:00,9702.0
-2012-04-11 02:00:00,9256.0
-2012-04-11 03:00:00,8973.0
-2012-04-11 04:00:00,8795.0
-2012-04-11 05:00:00,8819.0
-2012-04-11 06:00:00,9025.0
-2012-04-11 07:00:00,9769.0
-2012-04-11 08:00:00,10709.0
-2012-04-11 09:00:00,11256.0
-2012-04-11 10:00:00,11446.0
-2012-04-11 11:00:00,11486.0
-2012-04-11 12:00:00,11493.0
-2012-04-11 13:00:00,11428.0
-2012-04-11 14:00:00,11365.0
-2012-04-11 15:00:00,11318.0
-2012-04-11 16:00:00,11171.0
-2012-04-11 17:00:00,11002.0
-2012-04-11 18:00:00,10849.0
-2012-04-11 19:00:00,10729.0
-2012-04-11 20:00:00,10617.0
-2012-04-11 21:00:00,11070.0
-2012-04-11 22:00:00,11462.0
-2012-04-11 23:00:00,11081.0
-2012-04-12 00:00:00,10311.0
-2012-04-10 01:00:00,9179.0
-2012-04-10 02:00:00,8733.0
-2012-04-10 03:00:00,8487.0
-2012-04-10 04:00:00,8323.0
-2012-04-10 05:00:00,8351.0
-2012-04-10 06:00:00,8609.0
-2012-04-10 07:00:00,9358.0
-2012-04-10 08:00:00,10374.0
-2012-04-10 09:00:00,11009.0
-2012-04-10 10:00:00,11317.0
-2012-04-10 11:00:00,11446.0
-2012-04-10 12:00:00,11522.0
-2012-04-10 13:00:00,11482.0
-2012-04-10 14:00:00,11466.0
-2012-04-10 15:00:00,11467.0
-2012-04-10 16:00:00,11325.0
-2012-04-10 17:00:00,11143.0
-2012-04-10 18:00:00,10998.0
-2012-04-10 19:00:00,10950.0
-2012-04-10 20:00:00,10859.0
-2012-04-10 21:00:00,11314.0
-2012-04-10 22:00:00,11638.0
-2012-04-10 23:00:00,11214.0
-2012-04-11 00:00:00,10451.0
-2012-04-09 01:00:00,8222.0
-2012-04-09 02:00:00,7858.0
-2012-04-09 03:00:00,7683.0
-2012-04-09 04:00:00,7564.0
-2012-04-09 05:00:00,7626.0
-2012-04-09 06:00:00,7895.0
-2012-04-09 07:00:00,8609.0
-2012-04-09 08:00:00,9610.0
-2012-04-09 09:00:00,10236.0
-2012-04-09 10:00:00,10624.0
-2012-04-09 11:00:00,10899.0
-2012-04-09 12:00:00,11087.0
-2012-04-09 13:00:00,11154.0
-2012-04-09 14:00:00,11153.0
-2012-04-09 15:00:00,11180.0
-2012-04-09 16:00:00,11096.0
-2012-04-09 17:00:00,10918.0
-2012-04-09 18:00:00,10775.0
-2012-04-09 19:00:00,10624.0
-2012-04-09 20:00:00,10484.0
-2012-04-09 21:00:00,10884.0
-2012-04-09 22:00:00,11170.0
-2012-04-09 23:00:00,10720.0
-2012-04-10 00:00:00,9924.0
-2012-04-08 01:00:00,8536.0
-2012-04-08 02:00:00,8012.0
-2012-04-08 03:00:00,7706.0
-2012-04-08 04:00:00,7557.0
-2012-04-08 05:00:00,7413.0
-2012-04-08 06:00:00,7471.0
-2012-04-08 07:00:00,7585.0
-2012-04-08 08:00:00,7679.0
-2012-04-08 09:00:00,7771.0
-2012-04-08 10:00:00,8092.0
-2012-04-08 11:00:00,8301.0
-2012-04-08 12:00:00,8411.0
-2012-04-08 13:00:00,8482.0
-2012-04-08 14:00:00,8448.0
-2012-04-08 15:00:00,8419.0
-2012-04-08 16:00:00,8291.0
-2012-04-08 17:00:00,8246.0
-2012-04-08 18:00:00,8200.0
-2012-04-08 19:00:00,8258.0
-2012-04-08 20:00:00,8509.0
-2012-04-08 21:00:00,9024.0
-2012-04-08 22:00:00,9366.0
-2012-04-08 23:00:00,9153.0
-2012-04-09 00:00:00,8699.0
-2012-04-07 01:00:00,8967.0
-2012-04-07 02:00:00,8480.0
-2012-04-07 03:00:00,8240.0
-2012-04-07 04:00:00,8039.0
-2012-04-07 05:00:00,7997.0
-2012-04-07 06:00:00,8040.0
-2012-04-07 07:00:00,8305.0
-2012-04-07 08:00:00,8480.0
-2012-04-07 09:00:00,8687.0
-2012-04-07 10:00:00,9011.0
-2012-04-07 11:00:00,9239.0
-2012-04-07 12:00:00,9351.0
-2012-04-07 13:00:00,9369.0
-2012-04-07 14:00:00,9285.0
-2012-04-07 15:00:00,9165.0
-2012-04-07 16:00:00,9065.0
-2012-04-07 17:00:00,9031.0
-2012-04-07 18:00:00,9001.0
-2012-04-07 19:00:00,9057.0
-2012-04-07 20:00:00,9220.0
-2012-04-07 21:00:00,9706.0
-2012-04-07 22:00:00,9773.0
-2012-04-07 23:00:00,9538.0
-2012-04-08 00:00:00,9059.0
-2012-04-06 01:00:00,9564.0
-2012-04-06 02:00:00,9050.0
-2012-04-06 03:00:00,8693.0
-2012-04-06 04:00:00,8531.0
-2012-04-06 05:00:00,8440.0
-2012-04-06 06:00:00,8645.0
-2012-04-06 07:00:00,9140.0
-2012-04-06 08:00:00,9718.0
-2012-04-06 09:00:00,9979.0
-2012-04-06 10:00:00,10215.0
-2012-04-06 11:00:00,10359.0
-2012-04-06 12:00:00,10429.0
-2012-04-06 13:00:00,10362.0
-2012-04-06 14:00:00,10254.0
-2012-04-06 15:00:00,10167.0
-2012-04-06 16:00:00,10023.0
-2012-04-06 17:00:00,9852.0
-2012-04-06 18:00:00,9776.0
-2012-04-06 19:00:00,9701.0
-2012-04-06 20:00:00,9630.0
-2012-04-06 21:00:00,10068.0
-2012-04-06 22:00:00,10375.0
-2012-04-06 23:00:00,10131.0
-2012-04-07 00:00:00,9618.0
-2012-04-05 01:00:00,9356.0
-2012-04-05 02:00:00,8837.0
-2012-04-05 03:00:00,8547.0
-2012-04-05 04:00:00,8349.0
-2012-04-05 05:00:00,8330.0
-2012-04-05 06:00:00,8573.0
-2012-04-05 07:00:00,9286.0
-2012-04-05 08:00:00,10237.0
-2012-04-05 09:00:00,10771.0
-2012-04-05 10:00:00,11066.0
-2012-04-05 11:00:00,11191.0
-2012-04-05 12:00:00,11239.0
-2012-04-05 13:00:00,11187.0
-2012-04-05 14:00:00,11132.0
-2012-04-05 15:00:00,11142.0
-2012-04-05 16:00:00,11010.0
-2012-04-05 17:00:00,10831.0
-2012-04-05 18:00:00,10701.0
-2012-04-05 19:00:00,10579.0
-2012-04-05 20:00:00,10587.0
-2012-04-05 21:00:00,11119.0
-2012-04-05 22:00:00,11355.0
-2012-04-05 23:00:00,11060.0
-2012-04-06 00:00:00,10307.0
-2012-04-04 01:00:00,9223.0
-2012-04-04 02:00:00,8717.0
-2012-04-04 03:00:00,8415.0
-2012-04-04 04:00:00,8185.0
-2012-04-04 05:00:00,8172.0
-2012-04-04 06:00:00,8382.0
-2012-04-04 07:00:00,9075.0
-2012-04-04 08:00:00,10047.0
-2012-04-04 09:00:00,10560.0
-2012-04-04 10:00:00,10823.0
-2012-04-04 11:00:00,10989.0
-2012-04-04 12:00:00,11115.0
-2012-04-04 13:00:00,11152.0
-2012-04-04 14:00:00,11109.0
-2012-04-04 15:00:00,11144.0
-2012-04-04 16:00:00,11039.0
-2012-04-04 17:00:00,10866.0
-2012-04-04 18:00:00,10732.0
-2012-04-04 19:00:00,10593.0
-2012-04-04 20:00:00,10484.0
-2012-04-04 21:00:00,11032.0
-2012-04-04 22:00:00,11274.0
-2012-04-04 23:00:00,10864.0
-2012-04-05 00:00:00,10094.0
-2012-04-03 01:00:00,9151.0
-2012-04-03 02:00:00,8607.0
-2012-04-03 03:00:00,8289.0
-2012-04-03 04:00:00,8093.0
-2012-04-03 05:00:00,8033.0
-2012-04-03 06:00:00,8207.0
-2012-04-03 07:00:00,8836.0
-2012-04-03 08:00:00,9832.0
-2012-04-03 09:00:00,10352.0
-2012-04-03 10:00:00,10753.0
-2012-04-03 11:00:00,10989.0
-2012-04-03 12:00:00,11229.0
-2012-04-03 13:00:00,11370.0
-2012-04-03 14:00:00,11472.0
-2012-04-03 15:00:00,11621.0
-2012-04-03 16:00:00,11504.0
-2012-04-03 17:00:00,11308.0
-2012-04-03 18:00:00,11008.0
-2012-04-03 19:00:00,10757.0
-2012-04-03 20:00:00,10617.0
-2012-04-03 21:00:00,11108.0
-2012-04-03 22:00:00,11250.0
-2012-04-03 23:00:00,10766.0
-2012-04-04 00:00:00,9988.0
-2012-04-02 01:00:00,8685.0
-2012-04-02 02:00:00,8339.0
-2012-04-02 03:00:00,8086.0
-2012-04-02 04:00:00,8011.0
-2012-04-02 05:00:00,8002.0
-2012-04-02 06:00:00,8327.0
-2012-04-02 07:00:00,9018.0
-2012-04-02 08:00:00,10074.0
-2012-04-02 09:00:00,10650.0
-2012-04-02 10:00:00,10841.0
-2012-04-02 11:00:00,10969.0
-2012-04-02 12:00:00,11082.0
-2012-04-02 13:00:00,11091.0
-2012-04-02 14:00:00,11083.0
-2012-04-02 15:00:00,11098.0
-2012-04-02 16:00:00,11010.0
-2012-04-02 17:00:00,10863.0
-2012-04-02 18:00:00,10739.0
-2012-04-02 19:00:00,10603.0
-2012-04-02 20:00:00,10463.0
-2012-04-02 21:00:00,10980.0
-2012-04-02 22:00:00,11183.0
-2012-04-02 23:00:00,10736.0
-2012-04-03 00:00:00,9928.0
-2012-04-01 01:00:00,8982.0
-2012-04-01 02:00:00,8533.0
-2012-04-01 03:00:00,8210.0
-2012-04-01 04:00:00,8022.0
-2012-04-01 05:00:00,7910.0
-2012-04-01 06:00:00,7868.0
-2012-04-01 07:00:00,7984.0
-2012-04-01 08:00:00,8143.0
-2012-04-01 09:00:00,8184.0
-2012-04-01 10:00:00,8415.0
-2012-04-01 11:00:00,8729.0
-2012-04-01 12:00:00,8862.0
-2012-04-01 13:00:00,8939.0
-2012-04-01 14:00:00,8915.0
-2012-04-01 15:00:00,8949.0
-2012-04-01 16:00:00,8871.0
-2012-04-01 17:00:00,8819.0
-2012-04-01 18:00:00,8864.0
-2012-04-01 19:00:00,9003.0
-2012-04-01 20:00:00,9213.0
-2012-04-01 21:00:00,9834.0
-2012-04-01 22:00:00,10031.0
-2012-04-01 23:00:00,9733.0
-2012-04-02 00:00:00,9249.0
-2012-03-31 01:00:00,9464.0
-2012-03-31 02:00:00,8962.0
-2012-03-31 03:00:00,8660.0
-2012-03-31 04:00:00,8407.0
-2012-03-31 05:00:00,8343.0
-2012-03-31 06:00:00,8336.0
-2012-03-31 07:00:00,8635.0
-2012-03-31 08:00:00,9073.0
-2012-03-31 09:00:00,9391.0
-2012-03-31 10:00:00,9785.0
-2012-03-31 11:00:00,10111.0
-2012-03-31 12:00:00,10237.0
-2012-03-31 13:00:00,10194.0
-2012-03-31 14:00:00,10018.0
-2012-03-31 15:00:00,9697.0
-2012-03-31 16:00:00,9502.0
-2012-03-31 17:00:00,9326.0
-2012-03-31 18:00:00,9310.0
-2012-03-31 19:00:00,9320.0
-2012-03-31 20:00:00,9436.0
-2012-03-31 21:00:00,10010.0
-2012-03-31 22:00:00,10220.0
-2012-03-31 23:00:00,9984.0
-2012-04-01 00:00:00,9531.0
-2012-03-30 01:00:00,9493.0
-2012-03-30 02:00:00,8977.0
-2012-03-30 03:00:00,8669.0
-2012-03-30 04:00:00,8446.0
-2012-03-30 05:00:00,8383.0
-2012-03-30 06:00:00,8531.0
-2012-03-30 07:00:00,9126.0
-2012-03-30 08:00:00,10159.0
-2012-03-30 09:00:00,10786.0
-2012-03-30 10:00:00,11079.0
-2012-03-30 11:00:00,11170.0
-2012-03-30 12:00:00,11253.0
-2012-03-30 13:00:00,11265.0
-2012-03-30 14:00:00,11117.0
-2012-03-30 15:00:00,11100.0
-2012-03-30 16:00:00,10912.0
-2012-03-30 17:00:00,10752.0
-2012-03-30 18:00:00,10677.0
-2012-03-30 19:00:00,10636.0
-2012-03-30 20:00:00,10703.0
-2012-03-30 21:00:00,11170.0
-2012-03-30 22:00:00,11074.0
-2012-03-30 23:00:00,10799.0
-2012-03-31 00:00:00,10149.0
-2012-03-29 01:00:00,9180.0
-2012-03-29 02:00:00,8656.0
-2012-03-29 03:00:00,8374.0
-2012-03-29 04:00:00,8182.0
-2012-03-29 05:00:00,8163.0
-2012-03-29 06:00:00,8372.0
-2012-03-29 07:00:00,9031.0
-2012-03-29 08:00:00,10044.0
-2012-03-29 09:00:00,10461.0
-2012-03-29 10:00:00,10837.0
-2012-03-29 11:00:00,10976.0
-2012-03-29 12:00:00,11123.0
-2012-03-29 13:00:00,11072.0
-2012-03-29 14:00:00,11014.0
-2012-03-29 15:00:00,11046.0
-2012-03-29 16:00:00,10903.0
-2012-03-29 17:00:00,10759.0
-2012-03-29 18:00:00,10673.0
-2012-03-29 19:00:00,10633.0
-2012-03-29 20:00:00,10671.0
-2012-03-29 21:00:00,11202.0
-2012-03-29 22:00:00,11304.0
-2012-03-29 23:00:00,10909.0
-2012-03-30 00:00:00,10202.0
-2012-03-28 01:00:00,9383.0
-2012-03-28 02:00:00,8782.0
-2012-03-28 03:00:00,8436.0
-2012-03-28 04:00:00,8221.0
-2012-03-28 05:00:00,8138.0
-2012-03-28 06:00:00,8283.0
-2012-03-28 07:00:00,8877.0
-2012-03-28 08:00:00,9817.0
-2012-03-28 09:00:00,10296.0
-2012-03-28 10:00:00,10717.0
-2012-03-28 11:00:00,10982.0
-2012-03-28 12:00:00,11295.0
-2012-03-28 13:00:00,11320.0
-2012-03-28 14:00:00,11321.0
-2012-03-28 15:00:00,11424.0
-2012-03-28 16:00:00,11324.0
-2012-03-28 17:00:00,11192.0
-2012-03-28 18:00:00,10978.0
-2012-03-28 19:00:00,10762.0
-2012-03-28 20:00:00,10541.0
-2012-03-28 21:00:00,10969.0
-2012-03-28 22:00:00,11052.0
-2012-03-28 23:00:00,10596.0
-2012-03-29 00:00:00,9886.0
-2012-03-27 01:00:00,9546.0
-2012-03-27 02:00:00,9065.0
-2012-03-27 03:00:00,8722.0
-2012-03-27 04:00:00,8536.0
-2012-03-27 05:00:00,8499.0
-2012-03-27 06:00:00,8720.0
-2012-03-27 07:00:00,9406.0
-2012-03-27 08:00:00,10495.0
-2012-03-27 09:00:00,10964.0
-2012-03-27 10:00:00,11183.0
-2012-03-27 11:00:00,11309.0
-2012-03-27 12:00:00,11380.0
-2012-03-27 13:00:00,11355.0
-2012-03-27 14:00:00,11337.0
-2012-03-27 15:00:00,11325.0
-2012-03-27 16:00:00,11265.0
-2012-03-27 17:00:00,11144.0
-2012-03-27 18:00:00,11039.0
-2012-03-27 19:00:00,10958.0
-2012-03-27 20:00:00,10836.0
-2012-03-27 21:00:00,11360.0
-2012-03-27 22:00:00,11415.0
-2012-03-27 23:00:00,10947.0
-2012-03-28 00:00:00,10143.0
-2012-03-26 01:00:00,8522.0
-2012-03-26 02:00:00,8170.0
-2012-03-26 03:00:00,7962.0
-2012-03-26 04:00:00,7886.0
-2012-03-26 05:00:00,7889.0
-2012-03-26 06:00:00,8200.0
-2012-03-26 07:00:00,8889.0
-2012-03-26 08:00:00,10102.0
-2012-03-26 09:00:00,10765.0
-2012-03-26 10:00:00,11197.0
-2012-03-26 11:00:00,11420.0
-2012-03-26 12:00:00,11464.0
-2012-03-26 13:00:00,11360.0
-2012-03-26 14:00:00,11282.0
-2012-03-26 15:00:00,11243.0
-2012-03-26 16:00:00,11104.0
-2012-03-26 17:00:00,10917.0
-2012-03-26 18:00:00,10854.0
-2012-03-26 19:00:00,10873.0
-2012-03-26 20:00:00,10997.0
-2012-03-26 21:00:00,11565.0
-2012-03-26 22:00:00,11544.0
-2012-03-26 23:00:00,11044.0
-2012-03-27 00:00:00,10324.0
-2012-03-25 01:00:00,8681.0
-2012-03-25 02:00:00,8239.0
-2012-03-25 03:00:00,7841.0
-2012-03-25 04:00:00,7722.0
-2012-03-25 05:00:00,7563.0
-2012-03-25 06:00:00,7569.0
-2012-03-25 07:00:00,7623.0
-2012-03-25 08:00:00,7862.0
-2012-03-25 09:00:00,7883.0
-2012-03-25 10:00:00,8243.0
-2012-03-25 11:00:00,8576.0
-2012-03-25 12:00:00,8857.0
-2012-03-25 13:00:00,9046.0
-2012-03-25 14:00:00,9146.0
-2012-03-25 15:00:00,9185.0
-2012-03-25 16:00:00,9176.0
-2012-03-25 17:00:00,9110.0
-2012-03-25 18:00:00,9092.0
-2012-03-25 19:00:00,9066.0
-2012-03-25 20:00:00,9122.0
-2012-03-25 21:00:00,9697.0
-2012-03-25 22:00:00,9825.0
-2012-03-25 23:00:00,9528.0
-2012-03-26 00:00:00,9053.0
-2012-03-24 01:00:00,9288.0
-2012-03-24 02:00:00,8664.0
-2012-03-24 03:00:00,8323.0
-2012-03-24 04:00:00,8043.0
-2012-03-24 05:00:00,7937.0
-2012-03-24 06:00:00,7958.0
-2012-03-24 07:00:00,8163.0
-2012-03-24 08:00:00,8564.0
-2012-03-24 09:00:00,8801.0
-2012-03-24 10:00:00,9255.0
-2012-03-24 11:00:00,9594.0
-2012-03-24 12:00:00,9833.0
-2012-03-24 13:00:00,9857.0
-2012-03-24 14:00:00,9781.0
-2012-03-24 15:00:00,9639.0
-2012-03-24 16:00:00,9508.0
-2012-03-24 17:00:00,9434.0
-2012-03-24 18:00:00,9434.0
-2012-03-24 19:00:00,9382.0
-2012-03-24 20:00:00,9450.0
-2012-03-24 21:00:00,9958.0
-2012-03-24 22:00:00,9954.0
-2012-03-24 23:00:00,9669.0
-2012-03-25 00:00:00,9256.0
-2012-03-23 01:00:00,10170.0
-2012-03-23 02:00:00,9446.0
-2012-03-23 03:00:00,8985.0
-2012-03-23 04:00:00,8611.0
-2012-03-23 05:00:00,8513.0
-2012-03-23 06:00:00,8711.0
-2012-03-23 07:00:00,9273.0
-2012-03-23 08:00:00,10453.0
-2012-03-23 09:00:00,10985.0
-2012-03-23 10:00:00,11400.0
-2012-03-23 11:00:00,11639.0
-2012-03-23 12:00:00,11850.0
-2012-03-23 13:00:00,11937.0
-2012-03-23 14:00:00,11862.0
-2012-03-23 15:00:00,11925.0
-2012-03-23 16:00:00,11775.0
-2012-03-23 17:00:00,11555.0
-2012-03-23 18:00:00,11337.0
-2012-03-23 19:00:00,11128.0
-2012-03-23 20:00:00,11036.0
-2012-03-23 21:00:00,11419.0
-2012-03-23 22:00:00,11164.0
-2012-03-23 23:00:00,10719.0
-2012-03-24 00:00:00,9996.0
-2012-03-22 01:00:00,10360.0
-2012-03-22 02:00:00,9689.0
-2012-03-22 03:00:00,9215.0
-2012-03-22 04:00:00,8975.0
-2012-03-22 05:00:00,8848.0
-2012-03-22 06:00:00,8949.0
-2012-03-22 07:00:00,9567.0
-2012-03-22 08:00:00,10721.0
-2012-03-22 09:00:00,11261.0
-2012-03-22 10:00:00,11842.0
-2012-03-22 11:00:00,12302.0
-2012-03-22 12:00:00,12807.0
-2012-03-22 13:00:00,13112.0
-2012-03-22 14:00:00,13420.0
-2012-03-22 15:00:00,13680.0
-2012-03-22 16:00:00,13583.0
-2012-03-22 17:00:00,13230.0
-2012-03-22 18:00:00,13013.0
-2012-03-22 19:00:00,12750.0
-2012-03-22 20:00:00,12631.0
-2012-03-22 21:00:00,13033.0
-2012-03-22 22:00:00,12716.0
-2012-03-22 23:00:00,12060.0
-2012-03-23 00:00:00,11079.0
-2012-03-21 01:00:00,10341.0
-2012-03-21 02:00:00,9641.0
-2012-03-21 03:00:00,9215.0
-2012-03-21 04:00:00,8910.0
-2012-03-21 05:00:00,8773.0
-2012-03-21 06:00:00,8903.0
-2012-03-21 07:00:00,9559.0
-2012-03-21 08:00:00,10766.0
-2012-03-21 09:00:00,11361.0
-2012-03-21 10:00:00,11941.0
-2012-03-21 11:00:00,12440.0
-2012-03-21 12:00:00,12915.0
-2012-03-21 13:00:00,13317.0
-2012-03-21 14:00:00,13618.0
-2012-03-21 15:00:00,13878.0
-2012-03-21 16:00:00,13958.0
-2012-03-21 17:00:00,13962.0
-2012-03-21 18:00:00,13819.0
-2012-03-21 19:00:00,13519.0
-2012-03-21 20:00:00,13089.0
-2012-03-21 21:00:00,13360.0
-2012-03-21 22:00:00,13149.0
-2012-03-21 23:00:00,12394.0
-2012-03-22 00:00:00,11331.0
-2012-03-20 01:00:00,10035.0
-2012-03-20 02:00:00,9383.0
-2012-03-20 03:00:00,8949.0
-2012-03-20 04:00:00,8683.0
-2012-03-20 05:00:00,8540.0
-2012-03-20 06:00:00,8708.0
-2012-03-20 07:00:00,9329.0
-2012-03-20 08:00:00,10505.0
-2012-03-20 09:00:00,11124.0
-2012-03-20 10:00:00,11537.0
-2012-03-20 11:00:00,11966.0
-2012-03-20 12:00:00,12429.0
-2012-03-20 13:00:00,12718.0
-2012-03-20 14:00:00,12926.0
-2012-03-20 15:00:00,13168.0
-2012-03-20 16:00:00,13287.0
-2012-03-20 17:00:00,13323.0
-2012-03-20 18:00:00,13266.0
-2012-03-20 19:00:00,13084.0
-2012-03-20 20:00:00,12729.0
-2012-03-20 21:00:00,13097.0
-2012-03-20 22:00:00,12996.0
-2012-03-20 23:00:00,12339.0
-2012-03-21 00:00:00,11318.0
-2012-03-19 01:00:00,9303.0
-2012-03-19 02:00:00,8823.0
-2012-03-19 03:00:00,8485.0
-2012-03-19 04:00:00,8264.0
-2012-03-19 05:00:00,8246.0
-2012-03-19 06:00:00,8421.0
-2012-03-19 07:00:00,9171.0
-2012-03-19 08:00:00,10427.0
-2012-03-19 09:00:00,11090.0
-2012-03-19 10:00:00,11553.0
-2012-03-19 11:00:00,11889.0
-2012-03-19 12:00:00,12116.0
-2012-03-19 13:00:00,12170.0
-2012-03-19 14:00:00,12187.0
-2012-03-19 15:00:00,12185.0
-2012-03-19 16:00:00,12151.0
-2012-03-19 17:00:00,12312.0
-2012-03-19 18:00:00,12375.0
-2012-03-19 19:00:00,12203.0
-2012-03-19 20:00:00,11957.0
-2012-03-19 21:00:00,12476.0
-2012-03-19 22:00:00,12383.0
-2012-03-19 23:00:00,11834.0
-2012-03-20 00:00:00,10936.0
-2012-03-18 01:00:00,9258.0
-2012-03-18 02:00:00,8718.0
-2012-03-18 03:00:00,8270.0
-2012-03-18 04:00:00,7947.0
-2012-03-18 05:00:00,7748.0
-2012-03-18 06:00:00,7774.0
-2012-03-18 07:00:00,7824.0
-2012-03-18 08:00:00,8000.0
-2012-03-18 09:00:00,8053.0
-2012-03-18 10:00:00,8412.0
-2012-03-18 11:00:00,8914.0
-2012-03-18 12:00:00,9346.0
-2012-03-18 13:00:00,9683.0
-2012-03-18 14:00:00,9903.0
-2012-03-18 15:00:00,10059.0
-2012-03-18 16:00:00,10197.0
-2012-03-18 17:00:00,10257.0
-2012-03-18 18:00:00,10328.0
-2012-03-18 19:00:00,10328.0
-2012-03-18 20:00:00,10323.0
-2012-03-18 21:00:00,10932.0
-2012-03-18 22:00:00,10981.0
-2012-03-18 23:00:00,10631.0
-2012-03-19 00:00:00,9975.0
-2012-03-17 01:00:00,9701.0
-2012-03-17 02:00:00,9005.0
-2012-03-17 03:00:00,8565.0
-2012-03-17 04:00:00,8294.0
-2012-03-17 05:00:00,8116.0
-2012-03-17 06:00:00,8114.0
-2012-03-17 07:00:00,8253.0
-2012-03-17 08:00:00,8676.0
-2012-03-17 09:00:00,8860.0
-2012-03-17 10:00:00,9429.0
-2012-03-17 11:00:00,9919.0
-2012-03-17 12:00:00,10288.0
-2012-03-17 13:00:00,10499.0
-2012-03-17 14:00:00,10554.0
-2012-03-17 15:00:00,10571.0
-2012-03-17 16:00:00,10542.0
-2012-03-17 17:00:00,10587.0
-2012-03-17 18:00:00,10583.0
-2012-03-17 19:00:00,10522.0
-2012-03-17 20:00:00,10430.0
-2012-03-17 21:00:00,10899.0
-2012-03-17 22:00:00,10849.0
-2012-03-17 23:00:00,10490.0
-2012-03-18 00:00:00,9923.0
-2012-03-16 01:00:00,9545.0
-2012-03-16 02:00:00,8921.0
-2012-03-16 03:00:00,8542.0
-2012-03-16 04:00:00,8303.0
-2012-03-16 05:00:00,8192.0
-2012-03-16 06:00:00,8347.0
-2012-03-16 07:00:00,8911.0
-2012-03-16 08:00:00,10084.0
-2012-03-16 09:00:00,10604.0
-2012-03-16 10:00:00,10911.0
-2012-03-16 11:00:00,11164.0
-2012-03-16 12:00:00,11471.0
-2012-03-16 13:00:00,11700.0
-2012-03-16 14:00:00,11827.0
-2012-03-16 15:00:00,12073.0
-2012-03-16 16:00:00,12094.0
-2012-03-16 17:00:00,12011.0
-2012-03-16 18:00:00,11846.0
-2012-03-16 19:00:00,11606.0
-2012-03-16 20:00:00,11392.0
-2012-03-16 21:00:00,11855.0
-2012-03-16 22:00:00,11721.0
-2012-03-16 23:00:00,11319.0
-2012-03-17 00:00:00,10518.0
-2012-03-15 01:00:00,9757.0
-2012-03-15 02:00:00,9139.0
-2012-03-15 03:00:00,8764.0
-2012-03-15 04:00:00,8504.0
-2012-03-15 05:00:00,8413.0
-2012-03-15 06:00:00,8538.0
-2012-03-15 07:00:00,9137.0
-2012-03-15 08:00:00,10355.0
-2012-03-15 09:00:00,10965.0
-2012-03-15 10:00:00,11337.0
-2012-03-15 11:00:00,11629.0
-2012-03-15 12:00:00,11940.0
-2012-03-15 13:00:00,12111.0
-2012-03-15 14:00:00,12291.0
-2012-03-15 15:00:00,12480.0
-2012-03-15 16:00:00,12550.0
-2012-03-15 17:00:00,12508.0
-2012-03-15 18:00:00,12384.0
-2012-03-15 19:00:00,12126.0
-2012-03-15 20:00:00,11858.0
-2012-03-15 21:00:00,12233.0
-2012-03-15 22:00:00,11960.0
-2012-03-15 23:00:00,11347.0
-2012-03-16 00:00:00,10352.0
-2012-03-14 01:00:00,9327.0
-2012-03-14 02:00:00,8760.0
-2012-03-14 03:00:00,8448.0
-2012-03-14 04:00:00,8240.0
-2012-03-14 05:00:00,8218.0
-2012-03-14 06:00:00,8372.0
-2012-03-14 07:00:00,9040.0
-2012-03-14 08:00:00,10292.0
-2012-03-14 09:00:00,10843.0
-2012-03-14 10:00:00,11104.0
-2012-03-14 11:00:00,11306.0
-2012-03-14 12:00:00,11528.0
-2012-03-14 13:00:00,11634.0
-2012-03-14 14:00:00,11807.0
-2012-03-14 15:00:00,11928.0
-2012-03-14 16:00:00,11955.0
-2012-03-14 17:00:00,11884.0
-2012-03-14 18:00:00,11798.0
-2012-03-14 19:00:00,11612.0
-2012-03-14 20:00:00,11465.0
-2012-03-14 21:00:00,12062.0
-2012-03-14 22:00:00,11966.0
-2012-03-14 23:00:00,11462.0
-2012-03-15 00:00:00,10625.0
-2012-03-13 01:00:00,9401.0
-2012-03-13 02:00:00,8844.0
-2012-03-13 03:00:00,8531.0
-2012-03-13 04:00:00,8305.0
-2012-03-13 05:00:00,8244.0
-2012-03-13 06:00:00,8444.0
-2012-03-13 07:00:00,9086.0
-2012-03-13 08:00:00,10347.0
-2012-03-13 09:00:00,10910.0
-2012-03-13 10:00:00,11055.0
-2012-03-13 11:00:00,11100.0
-2012-03-13 12:00:00,11266.0
-2012-03-13 13:00:00,11328.0
-2012-03-13 14:00:00,11322.0
-2012-03-13 15:00:00,11358.0
-2012-03-13 16:00:00,11257.0
-2012-03-13 17:00:00,11134.0
-2012-03-13 18:00:00,10995.0
-2012-03-13 19:00:00,10854.0
-2012-03-13 20:00:00,10780.0
-2012-03-13 21:00:00,11465.0
-2012-03-13 22:00:00,11368.0
-2012-03-13 23:00:00,10889.0
-2012-03-14 00:00:00,10109.0
-2012-03-12 01:00:00,8814.0
-2012-03-12 02:00:00,8387.0
-2012-03-12 03:00:00,8195.0
-2012-03-12 04:00:00,8070.0
-2012-03-12 05:00:00,8074.0
-2012-03-12 06:00:00,8256.0
-2012-03-12 07:00:00,8934.0
-2012-03-12 08:00:00,10179.0
-2012-03-12 09:00:00,11120.0
-2012-03-12 10:00:00,11246.0
-2012-03-12 11:00:00,11377.0
-2012-03-12 12:00:00,11550.0
-2012-03-12 13:00:00,11581.0
-2012-03-12 14:00:00,11569.0
-2012-03-12 15:00:00,11593.0
-2012-03-12 16:00:00,11454.0
-2012-03-12 17:00:00,11312.0
-2012-03-12 18:00:00,11159.0
-2012-03-12 19:00:00,10972.0
-2012-03-12 20:00:00,10919.0
-2012-03-12 21:00:00,11563.0
-2012-03-12 22:00:00,11475.0
-2012-03-12 23:00:00,10996.0
-2012-03-13 00:00:00,10167.0
-2012-03-11 01:00:00,9158.0
-2012-03-11 02:00:00,8773.0
-2012-03-11 04:00:00,8502.0
-2012-03-11 05:00:00,8387.0
-2012-03-11 06:00:00,8293.0
-2012-03-11 07:00:00,8428.0
-2012-03-11 08:00:00,8674.0
-2012-03-11 09:00:00,8684.0
-2012-03-11 10:00:00,8808.0
-2012-03-11 11:00:00,8953.0
-2012-03-11 12:00:00,9006.0
-2012-03-11 13:00:00,9116.0
-2012-03-11 14:00:00,9068.0
-2012-03-11 15:00:00,9041.0
-2012-03-11 16:00:00,8948.0
-2012-03-11 17:00:00,8944.0
-2012-03-11 18:00:00,8934.0
-2012-03-11 19:00:00,9145.0
-2012-03-11 20:00:00,9452.0
-2012-03-11 21:00:00,10199.0
-2012-03-11 22:00:00,10173.0
-2012-03-11 23:00:00,9925.0
-2012-03-12 00:00:00,9348.0
-2012-03-10 01:00:00,10302.0
-2012-03-10 02:00:00,9838.0
-2012-03-10 03:00:00,9530.0
-2012-03-10 04:00:00,9318.0
-2012-03-10 05:00:00,9257.0
-2012-03-10 06:00:00,9351.0
-2012-03-10 07:00:00,9625.0
-2012-03-10 08:00:00,9819.0
-2012-03-10 09:00:00,10168.0
-2012-03-10 10:00:00,10426.0
-2012-03-10 11:00:00,10597.0
-2012-03-10 12:00:00,10598.0
-2012-03-10 13:00:00,10442.0
-2012-03-10 14:00:00,10209.0
-2012-03-10 15:00:00,9919.0
-2012-03-10 16:00:00,9676.0
-2012-03-10 17:00:00,9523.0
-2012-03-10 18:00:00,9542.0
-2012-03-10 19:00:00,9745.0
-2012-03-10 20:00:00,10601.0
-2012-03-10 21:00:00,10553.0
-2012-03-10 22:00:00,10412.0
-2012-03-10 23:00:00,10106.0
-2012-03-11 00:00:00,9652.0
-2012-03-09 01:00:00,10103.0
-2012-03-09 02:00:00,9609.0
-2012-03-09 03:00:00,9343.0
-2012-03-09 04:00:00,9193.0
-2012-03-09 05:00:00,9213.0
-2012-03-09 06:00:00,9493.0
-2012-03-09 07:00:00,10265.0
-2012-03-09 08:00:00,11179.0
-2012-03-09 09:00:00,11671.0
-2012-03-09 10:00:00,11962.0
-2012-03-09 11:00:00,12024.0
-2012-03-09 12:00:00,12088.0
-2012-03-09 13:00:00,12018.0
-2012-03-09 14:00:00,11902.0
-2012-03-09 15:00:00,11779.0
-2012-03-09 16:00:00,11584.0
-2012-03-09 17:00:00,11394.0
-2012-03-09 18:00:00,11370.0
-2012-03-09 19:00:00,11592.0
-2012-03-09 20:00:00,12328.0
-2012-03-09 21:00:00,12300.0
-2012-03-09 22:00:00,12003.0
-2012-03-09 23:00:00,11671.0
-2012-03-10 00:00:00,11007.0
-2012-03-08 01:00:00,9414.0
-2012-03-08 02:00:00,8935.0
-2012-03-08 03:00:00,8678.0
-2012-03-08 04:00:00,8486.0
-2012-03-08 05:00:00,8454.0
-2012-03-08 06:00:00,8682.0
-2012-03-08 07:00:00,9428.0
-2012-03-08 08:00:00,10664.0
-2012-03-08 09:00:00,11413.0
-2012-03-08 10:00:00,11702.0
-2012-03-08 11:00:00,11756.0
-2012-03-08 12:00:00,11750.0
-2012-03-08 13:00:00,11679.0
-2012-03-08 14:00:00,11584.0
-2012-03-08 15:00:00,11490.0
-2012-03-08 16:00:00,11367.0
-2012-03-08 17:00:00,11330.0
-2012-03-08 18:00:00,11333.0
-2012-03-08 19:00:00,11599.0
-2012-03-08 20:00:00,12314.0
-2012-03-08 21:00:00,12325.0
-2012-03-08 22:00:00,12079.0
-2012-03-08 23:00:00,11588.0
-2012-03-09 00:00:00,10803.0
-2012-03-07 01:00:00,9534.0
-2012-03-07 02:00:00,9040.0
-2012-03-07 03:00:00,8762.0
-2012-03-07 04:00:00,8595.0
-2012-03-07 05:00:00,8574.0
-2012-03-07 06:00:00,8806.0
-2012-03-07 07:00:00,9495.0
-2012-03-07 08:00:00,10507.0
-2012-03-07 09:00:00,11072.0
-2012-03-07 10:00:00,11313.0
-2012-03-07 11:00:00,11408.0
-2012-03-07 12:00:00,11488.0
-2012-03-07 13:00:00,11490.0
-2012-03-07 14:00:00,11456.0
-2012-03-07 15:00:00,11416.0
-2012-03-07 16:00:00,11349.0
-2012-03-07 17:00:00,11248.0
-2012-03-07 18:00:00,11398.0
-2012-03-07 19:00:00,11695.0
-2012-03-07 20:00:00,12044.0
-2012-03-07 21:00:00,11884.0
-2012-03-07 22:00:00,11538.0
-2012-03-07 23:00:00,10952.0
-2012-03-08 00:00:00,10162.0
-2012-03-06 01:00:00,10473.0
-2012-03-06 02:00:00,9989.0
-2012-03-06 03:00:00,9716.0
-2012-03-06 04:00:00,9537.0
-2012-03-06 05:00:00,9524.0
-2012-03-06 06:00:00,9774.0
-2012-03-06 07:00:00,10538.0
-2012-03-06 08:00:00,11516.0
-2012-03-06 09:00:00,11931.0
-2012-03-06 10:00:00,11997.0
-2012-03-06 11:00:00,11915.0
-2012-03-06 12:00:00,11857.0
-2012-03-06 13:00:00,11723.0
-2012-03-06 14:00:00,11644.0
-2012-03-06 15:00:00,11573.0
-2012-03-06 16:00:00,11424.0
-2012-03-06 17:00:00,11210.0
-2012-03-06 18:00:00,11161.0
-2012-03-06 19:00:00,11379.0
-2012-03-06 20:00:00,12001.0
-2012-03-06 21:00:00,11886.0
-2012-03-06 22:00:00,11588.0
-2012-03-06 23:00:00,11007.0
-2012-03-07 00:00:00,10188.0
-2012-03-05 01:00:00,10100.0
-2012-03-05 02:00:00,9792.0
-2012-03-05 03:00:00,9602.0
-2012-03-05 04:00:00,9570.0
-2012-03-05 05:00:00,9625.0
-2012-03-05 06:00:00,9966.0
-2012-03-05 07:00:00,10787.0
-2012-03-05 08:00:00,11750.0
-2012-03-05 09:00:00,12153.0
-2012-03-05 10:00:00,12296.0
-2012-03-05 11:00:00,12336.0
-2012-03-05 12:00:00,12440.0
-2012-03-05 13:00:00,12396.0
-2012-03-05 14:00:00,12252.0
-2012-03-05 15:00:00,12148.0
-2012-03-05 16:00:00,11945.0
-2012-03-05 17:00:00,11839.0
-2012-03-05 18:00:00,11952.0
-2012-03-05 19:00:00,12411.0
-2012-03-05 20:00:00,12930.0
-2012-03-05 21:00:00,12836.0
-2012-03-05 22:00:00,12573.0
-2012-03-05 23:00:00,12058.0
-2012-03-06 00:00:00,11222.0
-2012-03-04 01:00:00,10086.0
-2012-03-04 02:00:00,9643.0
-2012-03-04 03:00:00,9329.0
-2012-03-04 04:00:00,9146.0
-2012-03-04 05:00:00,9065.0
-2012-03-04 06:00:00,8997.0
-2012-03-04 07:00:00,9229.0
-2012-03-04 08:00:00,9364.0
-2012-03-04 09:00:00,9465.0
-2012-03-04 10:00:00,9842.0
-2012-03-04 11:00:00,10071.0
-2012-03-04 12:00:00,10160.0
-2012-03-04 13:00:00,10146.0
-2012-03-04 14:00:00,10153.0
-2012-03-04 15:00:00,10032.0
-2012-03-04 16:00:00,10075.0
-2012-03-04 17:00:00,10158.0
-2012-03-04 18:00:00,10477.0
-2012-03-04 19:00:00,11124.0
-2012-03-04 20:00:00,11721.0
-2012-03-04 21:00:00,11695.0
-2012-03-04 22:00:00,11530.0
-2012-03-04 23:00:00,11161.0
-2012-03-05 00:00:00,10635.0
-2012-03-03 01:00:00,10466.0
-2012-03-03 02:00:00,9897.0
-2012-03-03 03:00:00,9661.0
-2012-03-03 04:00:00,9453.0
-2012-03-03 05:00:00,9374.0
-2012-03-03 06:00:00,9429.0
-2012-03-03 07:00:00,9724.0
-2012-03-03 08:00:00,10122.0
-2012-03-03 09:00:00,10386.0
-2012-03-03 10:00:00,10878.0
-2012-03-03 11:00:00,11174.0
-2012-03-03 12:00:00,11362.0
-2012-03-03 13:00:00,11259.0
-2012-03-03 14:00:00,11159.0
-2012-03-03 15:00:00,11014.0
-2012-03-03 16:00:00,10915.0
-2012-03-03 17:00:00,10828.0
-2012-03-03 18:00:00,10989.0
-2012-03-03 19:00:00,11386.0
-2012-03-03 20:00:00,11831.0
-2012-03-03 21:00:00,11714.0
-2012-03-03 22:00:00,11521.0
-2012-03-03 23:00:00,11197.0
-2012-03-04 00:00:00,10672.0
-2012-03-02 01:00:00,10192.0
-2012-03-02 02:00:00,9686.0
-2012-03-02 03:00:00,9411.0
-2012-03-02 04:00:00,9262.0
-2012-03-02 05:00:00,9192.0
-2012-03-02 06:00:00,9459.0
-2012-03-02 07:00:00,10181.0
-2012-03-02 08:00:00,11203.0
-2012-03-02 09:00:00,11793.0
-2012-03-02 10:00:00,12094.0
-2012-03-02 11:00:00,12294.0
-2012-03-02 12:00:00,12375.0
-2012-03-02 13:00:00,12406.0
-2012-03-02 14:00:00,12331.0
-2012-03-02 15:00:00,12225.0
-2012-03-02 16:00:00,12217.0
-2012-03-02 17:00:00,12322.0
-2012-03-02 18:00:00,12417.0
-2012-03-02 19:00:00,12664.0
-2012-03-02 20:00:00,12878.0
-2012-03-02 21:00:00,12683.0
-2012-03-02 22:00:00,12349.0
-2012-03-02 23:00:00,11825.0
-2012-03-03 00:00:00,11165.0
-2012-03-01 01:00:00,10241.0
-2012-03-01 02:00:00,9707.0
-2012-03-01 03:00:00,9419.0
-2012-03-01 04:00:00,9225.0
-2012-03-01 05:00:00,9199.0
-2012-03-01 06:00:00,9428.0
-2012-03-01 07:00:00,10145.0
-2012-03-01 08:00:00,11342.0
-2012-03-01 09:00:00,11939.0
-2012-03-01 10:00:00,12197.0
-2012-03-01 11:00:00,12315.0
-2012-03-01 12:00:00,12382.0
-2012-03-01 13:00:00,12325.0
-2012-03-01 14:00:00,12295.0
-2012-03-01 15:00:00,12331.0
-2012-03-01 16:00:00,12230.0
-2012-03-01 17:00:00,12112.0
-2012-03-01 18:00:00,12185.0
-2012-03-01 19:00:00,12550.0
-2012-03-01 20:00:00,12771.0
-2012-03-01 21:00:00,12587.0
-2012-03-01 22:00:00,12288.0
-2012-03-01 23:00:00,11757.0
-2012-03-02 00:00:00,10947.0
-2012-02-29 01:00:00,10327.0
-2012-02-29 02:00:00,9826.0
-2012-02-29 03:00:00,9513.0
-2012-02-29 04:00:00,9290.0
-2012-02-29 05:00:00,9243.0
-2012-02-29 06:00:00,9434.0
-2012-02-29 07:00:00,10100.0
-2012-02-29 08:00:00,11176.0
-2012-02-29 09:00:00,11482.0
-2012-02-29 10:00:00,11521.0
-2012-02-29 11:00:00,11541.0
-2012-02-29 12:00:00,11599.0
-2012-02-29 13:00:00,11598.0
-2012-02-29 14:00:00,11504.0
-2012-02-29 15:00:00,11518.0
-2012-02-29 16:00:00,11392.0
-2012-02-29 17:00:00,11425.0
-2012-02-29 18:00:00,11789.0
-2012-02-29 19:00:00,12303.0
-2012-02-29 20:00:00,12665.0
-2012-02-29 21:00:00,12535.0
-2012-02-29 22:00:00,12276.0
-2012-02-29 23:00:00,11809.0
-2012-03-01 00:00:00,10983.0
-2012-02-28 01:00:00,10571.0
-2012-02-28 02:00:00,10115.0
-2012-02-28 03:00:00,9888.0
-2012-02-28 04:00:00,9753.0
-2012-02-28 05:00:00,9739.0
-2012-02-28 06:00:00,9988.0
-2012-02-28 07:00:00,10758.0
-2012-02-28 08:00:00,11837.0
-2012-02-28 09:00:00,12293.0
-2012-02-28 10:00:00,12444.0
-2012-02-28 11:00:00,12519.0
-2012-02-28 12:00:00,12483.0
-2012-02-28 13:00:00,12310.0
-2012-02-28 14:00:00,12288.0
-2012-02-28 15:00:00,12219.0
-2012-02-28 16:00:00,12046.0
-2012-02-28 17:00:00,12009.0
-2012-02-28 18:00:00,12237.0
-2012-02-28 19:00:00,12684.0
-2012-02-28 20:00:00,12947.0
-2012-02-28 21:00:00,12772.0
-2012-02-28 22:00:00,12477.0
-2012-02-28 23:00:00,11921.0
-2012-02-29 00:00:00,11083.0
-2012-02-27 01:00:00,9564.0
-2012-02-27 02:00:00,9196.0
-2012-02-27 03:00:00,9042.0
-2012-02-27 04:00:00,8943.0
-2012-02-27 05:00:00,9075.0
-2012-02-27 06:00:00,9475.0
-2012-02-27 07:00:00,10321.0
-2012-02-27 08:00:00,11495.0
-2012-02-27 09:00:00,12105.0
-2012-02-27 10:00:00,12360.0
-2012-02-27 11:00:00,12532.0
-2012-02-27 12:00:00,12427.0
-2012-02-27 13:00:00,12341.0
-2012-02-27 14:00:00,12224.0
-2012-02-27 15:00:00,12097.0
-2012-02-27 16:00:00,11938.0
-2012-02-27 17:00:00,11839.0
-2012-02-27 18:00:00,11910.0
-2012-02-27 19:00:00,12409.0
-2012-02-27 20:00:00,13003.0
-2012-02-27 21:00:00,12920.0
-2012-02-27 22:00:00,12654.0
-2012-02-27 23:00:00,12133.0
-2012-02-28 00:00:00,11298.0
-2012-02-26 01:00:00,10482.0
-2012-02-26 02:00:00,10102.0
-2012-02-26 03:00:00,9740.0
-2012-02-26 04:00:00,9638.0
-2012-02-26 05:00:00,9570.0
-2012-02-26 06:00:00,9561.0
-2012-02-26 07:00:00,9760.0
-2012-02-26 08:00:00,9868.0
-2012-02-26 09:00:00,9864.0
-2012-02-26 10:00:00,10118.0
-2012-02-26 11:00:00,10184.0
-2012-02-26 12:00:00,10212.0
-2012-02-26 13:00:00,10188.0
-2012-02-26 14:00:00,10059.0
-2012-02-26 15:00:00,9888.0
-2012-02-26 16:00:00,9769.0
-2012-02-26 17:00:00,9679.0
-2012-02-26 18:00:00,9839.0
-2012-02-26 19:00:00,10431.0
-2012-02-26 20:00:00,11252.0
-2012-02-26 21:00:00,11162.0
-2012-02-26 22:00:00,10948.0
-2012-02-26 23:00:00,10605.0
-2012-02-27 00:00:00,10042.0
-2012-02-25 01:00:00,10882.0
-2012-02-25 02:00:00,10356.0
-2012-02-25 03:00:00,10046.0
-2012-02-25 04:00:00,9850.0
-2012-02-25 05:00:00,9859.0
-2012-02-25 06:00:00,9997.0
-2012-02-25 07:00:00,10290.0
-2012-02-25 08:00:00,10678.0
-2012-02-25 09:00:00,10924.0
-2012-02-25 10:00:00,11146.0
-2012-02-25 11:00:00,11287.0
-2012-02-25 12:00:00,11310.0
-2012-02-25 13:00:00,11229.0
-2012-02-25 14:00:00,11003.0
-2012-02-25 15:00:00,10775.0
-2012-02-25 16:00:00,10533.0
-2012-02-25 17:00:00,10485.0
-2012-02-25 18:00:00,10612.0
-2012-02-25 19:00:00,11223.0
-2012-02-25 20:00:00,11985.0
-2012-02-25 21:00:00,11936.0
-2012-02-25 22:00:00,11823.0
-2012-02-25 23:00:00,11496.0
-2012-02-26 00:00:00,11040.0
-2012-02-24 01:00:00,10532.0
-2012-02-24 02:00:00,10029.0
-2012-02-24 03:00:00,9758.0
-2012-02-24 04:00:00,9635.0
-2012-02-24 05:00:00,9635.0
-2012-02-24 06:00:00,9894.0
-2012-02-24 07:00:00,10547.0
-2012-02-24 08:00:00,11608.0
-2012-02-24 09:00:00,12135.0
-2012-02-24 10:00:00,12377.0
-2012-02-24 11:00:00,12463.0
-2012-02-24 12:00:00,12559.0
-2012-02-24 13:00:00,12511.0
-2012-02-24 14:00:00,12454.0
-2012-02-24 15:00:00,12368.0
-2012-02-24 16:00:00,12265.0
-2012-02-24 17:00:00,12256.0
-2012-02-24 18:00:00,12426.0
-2012-02-24 19:00:00,12913.0
-2012-02-24 20:00:00,13154.0
-2012-02-24 21:00:00,12935.0
-2012-02-24 22:00:00,12664.0
-2012-02-24 23:00:00,12215.0
-2012-02-25 00:00:00,11538.0
-2012-02-23 01:00:00,10182.0
-2012-02-23 02:00:00,9700.0
-2012-02-23 03:00:00,9404.0
-2012-02-23 04:00:00,9271.0
-2012-02-23 05:00:00,9259.0
-2012-02-23 06:00:00,9529.0
-2012-02-23 07:00:00,10331.0
-2012-02-23 08:00:00,11490.0
-2012-02-23 09:00:00,11989.0
-2012-02-23 10:00:00,12255.0
-2012-02-23 11:00:00,12330.0
-2012-02-23 12:00:00,12461.0
-2012-02-23 13:00:00,12446.0
-2012-02-23 14:00:00,12495.0
-2012-02-23 15:00:00,12552.0
-2012-02-23 16:00:00,12483.0
-2012-02-23 17:00:00,12496.0
-2012-02-23 18:00:00,12709.0
-2012-02-23 19:00:00,13144.0
-2012-02-23 20:00:00,13159.0
-2012-02-23 21:00:00,12925.0
-2012-02-23 22:00:00,12620.0
-2012-02-23 23:00:00,12085.0
-2012-02-24 00:00:00,11293.0
-2012-02-22 01:00:00,10331.0
-2012-02-22 02:00:00,9828.0
-2012-02-22 03:00:00,9547.0
-2012-02-22 04:00:00,9377.0
-2012-02-22 05:00:00,9357.0
-2012-02-22 06:00:00,9547.0
-2012-02-22 07:00:00,10251.0
-2012-02-22 08:00:00,11530.0
-2012-02-22 09:00:00,12048.0
-2012-02-22 10:00:00,12197.0
-2012-02-22 11:00:00,12266.0
-2012-02-22 12:00:00,12296.0
-2012-02-22 13:00:00,12194.0
-2012-02-22 14:00:00,12021.0
-2012-02-22 15:00:00,11982.0
-2012-02-22 16:00:00,11875.0
-2012-02-22 17:00:00,11825.0
-2012-02-22 18:00:00,11986.0
-2012-02-22 19:00:00,12433.0
-2012-02-22 20:00:00,12674.0
-2012-02-22 21:00:00,12475.0
-2012-02-22 22:00:00,12194.0
-2012-02-22 23:00:00,11714.0
-2012-02-23 00:00:00,10911.0
-2012-02-21 01:00:00,10264.0
-2012-02-21 02:00:00,9768.0
-2012-02-21 03:00:00,9479.0
-2012-02-21 04:00:00,9327.0
-2012-02-21 05:00:00,9330.0
-2012-02-21 06:00:00,9631.0
-2012-02-21 07:00:00,10431.0
-2012-02-21 08:00:00,11632.0
-2012-02-21 09:00:00,12170.0
-2012-02-21 10:00:00,12395.0
-2012-02-21 11:00:00,12467.0
-2012-02-21 12:00:00,12537.0
-2012-02-21 13:00:00,12550.0
-2012-02-21 14:00:00,12514.0
-2012-02-21 15:00:00,12603.0
-2012-02-21 16:00:00,12493.0
-2012-02-21 17:00:00,12301.0
-2012-02-21 18:00:00,12244.0
-2012-02-21 19:00:00,12670.0
-2012-02-21 20:00:00,12967.0
-2012-02-21 21:00:00,12795.0
-2012-02-21 22:00:00,12493.0
-2012-02-21 23:00:00,11978.0
-2012-02-22 00:00:00,11103.0
-2012-02-20 01:00:00,9966.0
-2012-02-20 02:00:00,9663.0
-2012-02-20 03:00:00,9461.0
-2012-02-20 04:00:00,9403.0
-2012-02-20 05:00:00,9443.0
-2012-02-20 06:00:00,9744.0
-2012-02-20 07:00:00,10389.0
-2012-02-20 08:00:00,11305.0
-2012-02-20 09:00:00,11678.0
-2012-02-20 10:00:00,11925.0
-2012-02-20 11:00:00,12015.0
-2012-02-20 12:00:00,12060.0
-2012-02-20 13:00:00,11970.0
-2012-02-20 14:00:00,11835.0
-2012-02-20 15:00:00,11752.0
-2012-02-20 16:00:00,11592.0
-2012-02-20 17:00:00,11536.0
-2012-02-20 18:00:00,11755.0
-2012-02-20 19:00:00,12490.0
-2012-02-20 20:00:00,12783.0
-2012-02-20 21:00:00,12633.0
-2012-02-20 22:00:00,12339.0
-2012-02-20 23:00:00,11836.0
-2012-02-21 00:00:00,11031.0
-2012-02-19 01:00:00,9976.0
-2012-02-19 02:00:00,9549.0
-2012-02-19 03:00:00,9289.0
-2012-02-19 04:00:00,9176.0
-2012-02-19 05:00:00,9084.0
-2012-02-19 06:00:00,9146.0
-2012-02-19 07:00:00,9297.0
-2012-02-19 08:00:00,9559.0
-2012-02-19 09:00:00,9519.0
-2012-02-19 10:00:00,9681.0
-2012-02-19 11:00:00,9809.0
-2012-02-19 12:00:00,9903.0
-2012-02-19 13:00:00,9879.0
-2012-02-19 14:00:00,9872.0
-2012-02-19 15:00:00,9738.0
-2012-02-19 16:00:00,9682.0
-2012-02-19 17:00:00,9618.0
-2012-02-19 18:00:00,9862.0
-2012-02-19 19:00:00,10616.0
-2012-02-19 20:00:00,11381.0
-2012-02-19 21:00:00,11321.0
-2012-02-19 22:00:00,11200.0
-2012-02-19 23:00:00,10899.0
-2012-02-20 00:00:00,10447.0
-2012-02-18 01:00:00,10155.0
-2012-02-18 02:00:00,9654.0
-2012-02-18 03:00:00,9390.0
-2012-02-18 04:00:00,9204.0
-2012-02-18 05:00:00,9178.0
-2012-02-18 06:00:00,9208.0
-2012-02-18 07:00:00,9554.0
-2012-02-18 08:00:00,10047.0
-2012-02-18 09:00:00,10213.0
-2012-02-18 10:00:00,10539.0
-2012-02-18 11:00:00,10687.0
-2012-02-18 12:00:00,10737.0
-2012-02-18 13:00:00,10661.0
-2012-02-18 14:00:00,10496.0
-2012-02-18 15:00:00,10271.0
-2012-02-18 16:00:00,10064.0
-2012-02-18 17:00:00,9985.0
-2012-02-18 18:00:00,10168.0
-2012-02-18 19:00:00,10833.0
-2012-02-18 20:00:00,11439.0
-2012-02-18 21:00:00,11353.0
-2012-02-18 22:00:00,11245.0
-2012-02-18 23:00:00,10955.0
-2012-02-19 00:00:00,10473.0
-2012-02-17 01:00:00,10429.0
-2012-02-17 02:00:00,9962.0
-2012-02-17 03:00:00,9629.0
-2012-02-17 04:00:00,9498.0
-2012-02-17 05:00:00,9506.0
-2012-02-17 06:00:00,9778.0
-2012-02-17 07:00:00,10505.0
-2012-02-17 08:00:00,11702.0
-2012-02-17 09:00:00,12051.0
-2012-02-17 10:00:00,12125.0
-2012-02-17 11:00:00,12073.0
-2012-02-17 12:00:00,12133.0
-2012-02-17 13:00:00,12016.0
-2012-02-17 14:00:00,11907.0
-2012-02-17 15:00:00,11785.0
-2012-02-17 16:00:00,11601.0
-2012-02-17 17:00:00,11455.0
-2012-02-17 18:00:00,11580.0
-2012-02-17 19:00:00,12086.0
-2012-02-17 20:00:00,12332.0
-2012-02-17 21:00:00,12133.0
-2012-02-17 22:00:00,11823.0
-2012-02-17 23:00:00,11488.0
-2012-02-18 00:00:00,10815.0
-2012-02-16 01:00:00,10323.0
-2012-02-16 02:00:00,9800.0
-2012-02-16 03:00:00,9489.0
-2012-02-16 04:00:00,9249.0
-2012-02-16 05:00:00,9243.0
-2012-02-16 06:00:00,9483.0
-2012-02-16 07:00:00,10216.0
-2012-02-16 08:00:00,11442.0
-2012-02-16 09:00:00,11946.0
-2012-02-16 10:00:00,12167.0
-2012-02-16 11:00:00,12138.0
-2012-02-16 12:00:00,12125.0
-2012-02-16 13:00:00,11993.0
-2012-02-16 14:00:00,11901.0
-2012-02-16 15:00:00,11886.0
-2012-02-16 16:00:00,11714.0
-2012-02-16 17:00:00,11573.0
-2012-02-16 18:00:00,11654.0
-2012-02-16 19:00:00,12290.0
-2012-02-16 20:00:00,12769.0
-2012-02-16 21:00:00,12700.0
-2012-02-16 22:00:00,12438.0
-2012-02-16 23:00:00,11987.0
-2012-02-17 00:00:00,11189.0
-2012-02-15 01:00:00,10558.0
-2012-02-15 02:00:00,10022.0
-2012-02-15 03:00:00,9769.0
-2012-02-15 04:00:00,9606.0
-2012-02-15 05:00:00,9580.0
-2012-02-15 06:00:00,9837.0
-2012-02-15 07:00:00,10575.0
-2012-02-15 08:00:00,11766.0
-2012-02-15 09:00:00,12206.0
-2012-02-15 10:00:00,12308.0
-2012-02-15 11:00:00,12189.0
-2012-02-15 12:00:00,12232.0
-2012-02-15 13:00:00,12239.0
-2012-02-15 14:00:00,12211.0
-2012-02-15 15:00:00,12304.0
-2012-02-15 16:00:00,12245.0
-2012-02-15 17:00:00,12295.0
-2012-02-15 18:00:00,12539.0
-2012-02-15 19:00:00,13010.0
-2012-02-15 20:00:00,13010.0
-2012-02-15 21:00:00,12810.0
-2012-02-15 22:00:00,12539.0
-2012-02-15 23:00:00,12047.0
-2012-02-16 00:00:00,11167.0
-2012-02-14 01:00:00,10952.0
-2012-02-14 02:00:00,10435.0
-2012-02-14 03:00:00,10085.0
-2012-02-14 04:00:00,9926.0
-2012-02-14 05:00:00,9896.0
-2012-02-14 06:00:00,10144.0
-2012-02-14 07:00:00,10870.0
-2012-02-14 08:00:00,12085.0
-2012-02-14 09:00:00,12565.0
-2012-02-14 10:00:00,12730.0
-2012-02-14 11:00:00,12794.0
-2012-02-14 12:00:00,12835.0
-2012-02-14 13:00:00,12780.0
-2012-02-14 14:00:00,12658.0
-2012-02-14 15:00:00,12651.0
-2012-02-14 16:00:00,12577.0
-2012-02-14 17:00:00,12570.0
-2012-02-14 18:00:00,12773.0
-2012-02-14 19:00:00,13235.0
-2012-02-14 20:00:00,13211.0
-2012-02-14 21:00:00,13001.0
-2012-02-14 22:00:00,12695.0
-2012-02-14 23:00:00,12128.0
-2012-02-15 00:00:00,11291.0
-2012-02-13 01:00:00,10471.0
-2012-02-13 02:00:00,10098.0
-2012-02-13 03:00:00,9944.0
-2012-02-13 04:00:00,9945.0
-2012-02-13 05:00:00,9940.0
-2012-02-13 06:00:00,10279.0
-2012-02-13 07:00:00,11144.0
-2012-02-13 08:00:00,12344.0
-2012-02-13 09:00:00,12883.0
-2012-02-13 10:00:00,13114.0
-2012-02-13 11:00:00,13186.0
-2012-02-13 12:00:00,13221.0
-2012-02-13 13:00:00,13144.0
-2012-02-13 14:00:00,13049.0
-2012-02-13 15:00:00,12993.0
-2012-02-13 16:00:00,12835.0
-2012-02-13 17:00:00,12720.0
-2012-02-13 18:00:00,12890.0
-2012-02-13 19:00:00,13513.0
-2012-02-13 20:00:00,13595.0
-2012-02-13 21:00:00,13435.0
-2012-02-13 22:00:00,13132.0
-2012-02-13 23:00:00,12596.0
-2012-02-14 00:00:00,11762.0
-2012-02-12 01:00:00,11294.0
-2012-02-12 02:00:00,10869.0
-2012-02-12 03:00:00,10548.0
-2012-02-12 04:00:00,10354.0
-2012-02-12 05:00:00,10323.0
-2012-02-12 06:00:00,10305.0
-2012-02-12 07:00:00,10479.0
-2012-02-12 08:00:00,10705.0
-2012-02-12 09:00:00,10670.0
-2012-02-12 10:00:00,10788.0
-2012-02-12 11:00:00,10852.0
-2012-02-12 12:00:00,10942.0
-2012-02-12 13:00:00,10885.0
-2012-02-12 14:00:00,10792.0
-2012-02-12 15:00:00,10611.0
-2012-02-12 16:00:00,10474.0
-2012-02-12 17:00:00,10419.0
-2012-02-12 18:00:00,10636.0
-2012-02-12 19:00:00,11546.0
-2012-02-12 20:00:00,12080.0
-2012-02-12 21:00:00,12060.0
-2012-02-12 22:00:00,11865.0
-2012-02-12 23:00:00,11548.0
-2012-02-13 00:00:00,11004.0
-2012-02-11 01:00:00,11664.0
-2012-02-11 02:00:00,11258.0
-2012-02-11 03:00:00,10932.0
-2012-02-11 04:00:00,10797.0
-2012-02-11 05:00:00,10684.0
-2012-02-11 06:00:00,10822.0
-2012-02-11 07:00:00,11134.0
-2012-02-11 08:00:00,11629.0
-2012-02-11 09:00:00,11773.0
-2012-02-11 10:00:00,12031.0
-2012-02-11 11:00:00,12144.0
-2012-02-11 12:00:00,12211.0
-2012-02-11 13:00:00,12077.0
-2012-02-11 14:00:00,11970.0
-2012-02-11 15:00:00,11733.0
-2012-02-11 16:00:00,11571.0
-2012-02-11 17:00:00,11510.0
-2012-02-11 18:00:00,11708.0
-2012-02-11 19:00:00,12525.0
-2012-02-11 20:00:00,12957.0
-2012-02-11 21:00:00,12874.0
-2012-02-11 22:00:00,12679.0
-2012-02-11 23:00:00,12373.0
-2012-02-12 00:00:00,11830.0
-2012-02-10 01:00:00,10717.0
-2012-02-10 02:00:00,10223.0
-2012-02-10 03:00:00,9924.0
-2012-02-10 04:00:00,9765.0
-2012-02-10 05:00:00,9721.0
-2012-02-10 06:00:00,9945.0
-2012-02-10 07:00:00,10624.0
-2012-02-10 08:00:00,11864.0
-2012-02-10 09:00:00,12538.0
-2012-02-10 10:00:00,12700.0
-2012-02-10 11:00:00,12756.0
-2012-02-10 12:00:00,12868.0
-2012-02-10 13:00:00,12870.0
-2012-02-10 14:00:00,12832.0
-2012-02-10 15:00:00,12882.0
-2012-02-10 16:00:00,12861.0
-2012-02-10 17:00:00,12866.0
-2012-02-10 18:00:00,13118.0
-2012-02-10 19:00:00,13716.0
-2012-02-10 20:00:00,13890.0
-2012-02-10 21:00:00,13737.0
-2012-02-10 22:00:00,13484.0
-2012-02-10 23:00:00,13089.0
-2012-02-11 00:00:00,12403.0
-2012-02-09 01:00:00,10875.0
-2012-02-09 02:00:00,10395.0
-2012-02-09 03:00:00,10161.0
-2012-02-09 04:00:00,10005.0
-2012-02-09 05:00:00,10045.0
-2012-02-09 06:00:00,10328.0
-2012-02-09 07:00:00,11119.0
-2012-02-09 08:00:00,12382.0
-2012-02-09 09:00:00,12790.0
-2012-02-09 10:00:00,12806.0
-2012-02-09 11:00:00,12740.0
-2012-02-09 12:00:00,12727.0
-2012-02-09 13:00:00,12622.0
-2012-02-09 14:00:00,12532.0
-2012-02-09 15:00:00,12432.0
-2012-02-09 16:00:00,12230.0
-2012-02-09 17:00:00,12157.0
-2012-02-09 18:00:00,12361.0
-2012-02-09 19:00:00,13182.0
-2012-02-09 20:00:00,13415.0
-2012-02-09 21:00:00,13247.0
-2012-02-09 22:00:00,12916.0
-2012-02-09 23:00:00,12365.0
-2012-02-10 00:00:00,11484.0
-2012-02-08 01:00:00,10778.0
-2012-02-08 02:00:00,10279.0
-2012-02-08 03:00:00,9995.0
-2012-02-08 04:00:00,9833.0
-2012-02-08 05:00:00,9814.0
-2012-02-08 06:00:00,10089.0
-2012-02-08 07:00:00,10840.0
-2012-02-08 08:00:00,12095.0
-2012-02-08 09:00:00,12616.0
-2012-02-08 10:00:00,12818.0
-2012-02-08 11:00:00,12800.0
-2012-02-08 12:00:00,12700.0
-2012-02-08 13:00:00,12544.0
-2012-02-08 14:00:00,12365.0
-2012-02-08 15:00:00,12337.0
-2012-02-08 16:00:00,12141.0
-2012-02-08 17:00:00,12068.0
-2012-02-08 18:00:00,12220.0
-2012-02-08 19:00:00,13022.0
-2012-02-08 20:00:00,13297.0
-2012-02-08 21:00:00,13170.0
-2012-02-08 22:00:00,12917.0
-2012-02-08 23:00:00,12432.0
-2012-02-09 00:00:00,11631.0
-2012-02-07 01:00:00,10613.0
-2012-02-07 02:00:00,10090.0
-2012-02-07 03:00:00,9807.0
-2012-02-07 04:00:00,9633.0
-2012-02-07 05:00:00,9618.0
-2012-02-07 06:00:00,9870.0
-2012-02-07 07:00:00,10593.0
-2012-02-07 08:00:00,11825.0
-2012-02-07 09:00:00,12442.0
-2012-02-07 10:00:00,12653.0
-2012-02-07 11:00:00,12830.0
-2012-02-07 12:00:00,12944.0
-2012-02-07 13:00:00,12947.0
-2012-02-07 14:00:00,12875.0
-2012-02-07 15:00:00,12895.0
-2012-02-07 16:00:00,12782.0
-2012-02-07 17:00:00,12832.0
-2012-02-07 18:00:00,13040.0
-2012-02-07 19:00:00,13599.0
-2012-02-07 20:00:00,13536.0
-2012-02-07 21:00:00,13296.0
-2012-02-07 22:00:00,12963.0
-2012-02-07 23:00:00,12421.0
-2012-02-08 00:00:00,11543.0
-2012-02-06 01:00:00,9696.0
-2012-02-06 02:00:00,9333.0
-2012-02-06 03:00:00,9158.0
-2012-02-06 04:00:00,9062.0
-2012-02-06 05:00:00,9209.0
-2012-02-06 06:00:00,9510.0
-2012-02-06 07:00:00,10360.0
-2012-02-06 08:00:00,11600.0
-2012-02-06 09:00:00,12341.0
-2012-02-06 10:00:00,12534.0
-2012-02-06 11:00:00,12660.0
-2012-02-06 12:00:00,12752.0
-2012-02-06 13:00:00,12704.0
-2012-02-06 14:00:00,12606.0
-2012-02-06 15:00:00,12619.0
-2012-02-06 16:00:00,12514.0
-2012-02-06 17:00:00,12515.0
-2012-02-06 18:00:00,12778.0
-2012-02-06 19:00:00,13422.0
-2012-02-06 20:00:00,13453.0
-2012-02-06 21:00:00,13252.0
-2012-02-06 22:00:00,12884.0
-2012-02-06 23:00:00,12294.0
-2012-02-07 00:00:00,11411.0
-2012-02-05 01:00:00,9831.0
-2012-02-05 02:00:00,9460.0
-2012-02-05 03:00:00,9142.0
-2012-02-05 04:00:00,8975.0
-2012-02-05 05:00:00,8962.0
-2012-02-05 06:00:00,8985.0
-2012-02-05 07:00:00,9124.0
-2012-02-05 08:00:00,9338.0
-2012-02-05 09:00:00,9385.0
-2012-02-05 10:00:00,9622.0
-2012-02-05 11:00:00,9825.0
-2012-02-05 12:00:00,9932.0
-2012-02-05 13:00:00,9988.0
-2012-02-05 14:00:00,9963.0
-2012-02-05 15:00:00,9833.0
-2012-02-05 16:00:00,9757.0
-2012-02-05 17:00:00,9653.0
-2012-02-05 18:00:00,9907.0
-2012-02-05 19:00:00,10811.0
-2012-02-05 20:00:00,11068.0
-2012-02-05 21:00:00,11021.0
-2012-02-05 22:00:00,10887.0
-2012-02-05 23:00:00,10699.0
-2012-02-06 00:00:00,10234.0
-2012-02-04 01:00:00,10328.0
-2012-02-04 02:00:00,9812.0
-2012-02-04 03:00:00,9455.0
-2012-02-04 04:00:00,9257.0
-2012-02-04 05:00:00,9139.0
-2012-02-04 06:00:00,9156.0
-2012-02-04 07:00:00,9396.0
-2012-02-04 08:00:00,9913.0
-2012-02-04 09:00:00,10216.0
-2012-02-04 10:00:00,10595.0
-2012-02-04 11:00:00,10858.0
-2012-02-04 12:00:00,10966.0
-2012-02-04 13:00:00,10823.0
-2012-02-04 14:00:00,10634.0
-2012-02-04 15:00:00,10411.0
-2012-02-04 16:00:00,10319.0
-2012-02-04 17:00:00,10287.0
-2012-02-04 18:00:00,10585.0
-2012-02-04 19:00:00,11329.0
-2012-02-04 20:00:00,11520.0
-2012-02-04 21:00:00,11342.0
-2012-02-04 22:00:00,11200.0
-2012-02-04 23:00:00,10880.0
-2012-02-05 00:00:00,10425.0
-2012-02-03 01:00:00,10174.0
-2012-02-03 02:00:00,9658.0
-2012-02-03 03:00:00,9393.0
-2012-02-03 04:00:00,9217.0
-2012-02-03 05:00:00,9189.0
-2012-02-03 06:00:00,9446.0
-2012-02-03 07:00:00,10164.0
-2012-02-03 08:00:00,11370.0
-2012-02-03 09:00:00,11981.0
-2012-02-03 10:00:00,12190.0
-2012-02-03 11:00:00,12285.0
-2012-02-03 12:00:00,12338.0
-2012-02-03 13:00:00,12265.0
-2012-02-03 14:00:00,12168.0
-2012-02-03 15:00:00,12158.0
-2012-02-03 16:00:00,12059.0
-2012-02-03 17:00:00,12052.0
-2012-02-03 18:00:00,12311.0
-2012-02-03 19:00:00,12879.0
-2012-02-03 20:00:00,12758.0
-2012-02-03 21:00:00,12470.0
-2012-02-03 22:00:00,12189.0
-2012-02-03 23:00:00,11716.0
-2012-02-04 00:00:00,11052.0
-2012-02-02 01:00:00,10167.0
-2012-02-02 02:00:00,9675.0
-2012-02-02 03:00:00,9425.0
-2012-02-02 04:00:00,9268.0
-2012-02-02 05:00:00,9244.0
-2012-02-02 06:00:00,9459.0
-2012-02-02 07:00:00,10192.0
-2012-02-02 08:00:00,11407.0
-2012-02-02 09:00:00,12032.0
-2012-02-02 10:00:00,12170.0
-2012-02-02 11:00:00,12234.0
-2012-02-02 12:00:00,12272.0
-2012-02-02 13:00:00,12142.0
-2012-02-02 14:00:00,12033.0
-2012-02-02 15:00:00,11926.0
-2012-02-02 16:00:00,11765.0
-2012-02-02 17:00:00,11710.0
-2012-02-02 18:00:00,11941.0
-2012-02-02 19:00:00,12676.0
-2012-02-02 20:00:00,12721.0
-2012-02-02 21:00:00,12562.0
-2012-02-02 22:00:00,12234.0
-2012-02-02 23:00:00,11770.0
-2012-02-03 00:00:00,10941.0
-2012-02-01 01:00:00,9792.0
-2012-02-01 02:00:00,9338.0
-2012-02-01 03:00:00,9077.0
-2012-02-01 04:00:00,8916.0
-2012-02-01 05:00:00,8944.0
-2012-02-01 06:00:00,9208.0
-2012-02-01 07:00:00,9977.0
-2012-02-01 08:00:00,11279.0
-2012-02-01 09:00:00,11918.0
-2012-02-01 10:00:00,12082.0
-2012-02-01 11:00:00,12114.0
-2012-02-01 12:00:00,12057.0
-2012-02-01 13:00:00,11919.0
-2012-02-01 14:00:00,11741.0
-2012-02-01 15:00:00,11690.0
-2012-02-01 16:00:00,11557.0
-2012-02-01 17:00:00,11524.0
-2012-02-01 18:00:00,11768.0
-2012-02-01 19:00:00,12617.0
-2012-02-01 20:00:00,12684.0
-2012-02-01 21:00:00,12539.0
-2012-02-01 22:00:00,12262.0
-2012-02-01 23:00:00,11755.0
-2012-02-02 00:00:00,10923.0
-2012-01-31 01:00:00,10155.0
-2012-01-31 02:00:00,9649.0
-2012-01-31 03:00:00,9333.0
-2012-01-31 04:00:00,9177.0
-2012-01-31 05:00:00,9148.0
-2012-01-31 06:00:00,9380.0
-2012-01-31 07:00:00,10108.0
-2012-01-31 08:00:00,11375.0
-2012-01-31 09:00:00,11778.0
-2012-01-31 10:00:00,11821.0
-2012-01-31 11:00:00,11793.0
-2012-01-31 12:00:00,11792.0
-2012-01-31 13:00:00,11787.0
-2012-01-31 14:00:00,11727.0
-2012-01-31 15:00:00,11751.0
-2012-01-31 16:00:00,11674.0
-2012-01-31 17:00:00,11686.0
-2012-01-31 18:00:00,11962.0
-2012-01-31 19:00:00,12531.0
-2012-01-31 20:00:00,12407.0
-2012-01-31 21:00:00,12194.0
-2012-01-31 22:00:00,11843.0
-2012-01-31 23:00:00,11323.0
-2012-02-01 00:00:00,10515.0
-2012-01-30 01:00:00,10430.0
-2012-01-30 02:00:00,10059.0
-2012-01-30 03:00:00,9865.0
-2012-01-30 04:00:00,9752.0
-2012-01-30 05:00:00,9770.0
-2012-01-30 06:00:00,10084.0
-2012-01-30 07:00:00,10863.0
-2012-01-30 08:00:00,12167.0
-2012-01-30 09:00:00,12845.0
-2012-01-30 10:00:00,13019.0
-2012-01-30 11:00:00,12996.0
-2012-01-30 12:00:00,12936.0
-2012-01-30 13:00:00,12744.0
-2012-01-30 14:00:00,12516.0
-2012-01-30 15:00:00,12295.0
-2012-01-30 16:00:00,11988.0
-2012-01-30 17:00:00,11862.0
-2012-01-30 18:00:00,12009.0
-2012-01-30 19:00:00,12834.0
-2012-01-30 20:00:00,12920.0
-2012-01-30 21:00:00,12701.0
-2012-01-30 22:00:00,12381.0
-2012-01-30 23:00:00,11834.0
-2012-01-31 00:00:00,10923.0
-2012-01-29 01:00:00,10382.0
-2012-01-29 02:00:00,9925.0
-2012-01-29 03:00:00,9666.0
-2012-01-29 04:00:00,9413.0
-2012-01-29 05:00:00,9391.0
-2012-01-29 06:00:00,9377.0
-2012-01-29 07:00:00,9522.0
-2012-01-29 08:00:00,9828.0
-2012-01-29 09:00:00,9977.0
-2012-01-29 10:00:00,10254.0
-2012-01-29 11:00:00,10534.0
-2012-01-29 12:00:00,10606.0
-2012-01-29 13:00:00,10652.0
-2012-01-29 14:00:00,10561.0
-2012-01-29 15:00:00,10435.0
-2012-01-29 16:00:00,10338.0
-2012-01-29 17:00:00,10386.0
-2012-01-29 18:00:00,10787.0
-2012-01-29 19:00:00,11904.0
-2012-01-29 20:00:00,12157.0
-2012-01-29 21:00:00,12125.0
-2012-01-29 22:00:00,11942.0
-2012-01-29 23:00:00,11594.0
-2012-01-30 00:00:00,11020.0
-2012-01-28 01:00:00,10522.0
-2012-01-28 02:00:00,9983.0
-2012-01-28 03:00:00,9702.0
-2012-01-28 04:00:00,9478.0
-2012-01-28 05:00:00,9413.0
-2012-01-28 06:00:00,9482.0
-2012-01-28 07:00:00,9824.0
-2012-01-28 08:00:00,10406.0
-2012-01-28 09:00:00,10653.0
-2012-01-28 10:00:00,10931.0
-2012-01-28 11:00:00,11085.0
-2012-01-28 12:00:00,11205.0
-2012-01-28 13:00:00,11163.0
-2012-01-28 14:00:00,11081.0
-2012-01-28 15:00:00,10842.0
-2012-01-28 16:00:00,10701.0
-2012-01-28 17:00:00,10657.0
-2012-01-28 18:00:00,11006.0
-2012-01-28 19:00:00,11938.0
-2012-01-28 20:00:00,12103.0
-2012-01-28 21:00:00,11969.0
-2012-01-28 22:00:00,11746.0
-2012-01-28 23:00:00,11432.0
-2012-01-29 00:00:00,10903.0
-2012-01-27 01:00:00,10551.0
-2012-01-27 02:00:00,10086.0
-2012-01-27 03:00:00,9775.0
-2012-01-27 04:00:00,9595.0
-2012-01-27 05:00:00,9560.0
-2012-01-27 06:00:00,9812.0
-2012-01-27 07:00:00,10471.0
-2012-01-27 08:00:00,11731.0
-2012-01-27 09:00:00,12148.0
-2012-01-27 10:00:00,12186.0
-2012-01-27 11:00:00,12172.0
-2012-01-27 12:00:00,12160.0
-2012-01-27 13:00:00,12049.0
-2012-01-27 14:00:00,11907.0
-2012-01-27 15:00:00,11849.0
-2012-01-27 16:00:00,11658.0
-2012-01-27 17:00:00,11621.0
-2012-01-27 18:00:00,12004.0
-2012-01-27 19:00:00,12716.0
-2012-01-27 20:00:00,12666.0
-2012-01-27 21:00:00,12411.0
-2012-01-27 22:00:00,12138.0
-2012-01-27 23:00:00,11798.0
-2012-01-28 00:00:00,11125.0
-2012-01-26 01:00:00,10694.0
-2012-01-26 02:00:00,10187.0
-2012-01-26 03:00:00,9897.0
-2012-01-26 04:00:00,9703.0
-2012-01-26 05:00:00,9698.0
-2012-01-26 06:00:00,9932.0
-2012-01-26 07:00:00,10636.0
-2012-01-26 08:00:00,11906.0
-2012-01-26 09:00:00,12512.0
-2012-01-26 10:00:00,12597.0
-2012-01-26 11:00:00,12692.0
-2012-01-26 12:00:00,12787.0
-2012-01-26 13:00:00,12730.0
-2012-01-26 14:00:00,12638.0
-2012-01-26 15:00:00,12580.0
-2012-01-26 16:00:00,12466.0
-2012-01-26 17:00:00,12475.0
-2012-01-26 18:00:00,12796.0
-2012-01-26 19:00:00,13337.0
-2012-01-26 20:00:00,13299.0
-2012-01-26 21:00:00,13044.0
-2012-01-26 22:00:00,12668.0
-2012-01-26 23:00:00,12160.0
-2012-01-27 00:00:00,11346.0
-2012-01-25 01:00:00,10894.0
-2012-01-25 02:00:00,10410.0
-2012-01-25 03:00:00,10174.0
-2012-01-25 04:00:00,10023.0
-2012-01-25 05:00:00,10019.0
-2012-01-25 06:00:00,10300.0
-2012-01-25 07:00:00,11026.0
-2012-01-25 08:00:00,12274.0
-2012-01-25 09:00:00,12819.0
-2012-01-25 10:00:00,12850.0
-2012-01-25 11:00:00,12831.0
-2012-01-25 12:00:00,12845.0
-2012-01-25 13:00:00,12840.0
-2012-01-25 14:00:00,12781.0
-2012-01-25 15:00:00,12811.0
-2012-01-25 16:00:00,12716.0
-2012-01-25 17:00:00,12720.0
-2012-01-25 18:00:00,13064.0
-2012-01-25 19:00:00,13611.0
-2012-01-25 20:00:00,13486.0
-2012-01-25 21:00:00,13299.0
-2012-01-25 22:00:00,12970.0
-2012-01-25 23:00:00,12397.0
-2012-01-26 00:00:00,11501.0
-2012-01-24 01:00:00,10977.0
-2012-01-24 02:00:00,10479.0
-2012-01-24 03:00:00,10181.0
-2012-01-24 04:00:00,10012.0
-2012-01-24 05:00:00,9990.0
-2012-01-24 06:00:00,10269.0
-2012-01-24 07:00:00,11093.0
-2012-01-24 08:00:00,12370.0
-2012-01-24 09:00:00,12941.0
-2012-01-24 10:00:00,12918.0
-2012-01-24 11:00:00,12860.0
-2012-01-24 12:00:00,12778.0
-2012-01-24 13:00:00,12642.0
-2012-01-24 14:00:00,12510.0
-2012-01-24 15:00:00,12430.0
-2012-01-24 16:00:00,12273.0
-2012-01-24 17:00:00,12225.0
-2012-01-24 18:00:00,12583.0
-2012-01-24 19:00:00,13472.0
-2012-01-24 20:00:00,13451.0
-2012-01-24 21:00:00,13266.0
-2012-01-24 22:00:00,12999.0
-2012-01-24 23:00:00,12489.0
-2012-01-25 00:00:00,11641.0
-2012-01-23 01:00:00,10192.0
-2012-01-23 02:00:00,9742.0
-2012-01-23 03:00:00,9466.0
-2012-01-23 04:00:00,9293.0
-2012-01-23 05:00:00,9313.0
-2012-01-23 06:00:00,9565.0
-2012-01-23 07:00:00,10308.0
-2012-01-23 08:00:00,11570.0
-2012-01-23 09:00:00,12327.0
-2012-01-23 10:00:00,12447.0
-2012-01-23 11:00:00,12642.0
-2012-01-23 12:00:00,12847.0
-2012-01-23 13:00:00,12929.0
-2012-01-23 14:00:00,12989.0
-2012-01-23 15:00:00,13049.0
-2012-01-23 16:00:00,13054.0
-2012-01-23 17:00:00,13172.0
-2012-01-23 18:00:00,13582.0
-2012-01-23 19:00:00,14074.0
-2012-01-23 20:00:00,13851.0
-2012-01-23 21:00:00,13571.0
-2012-01-23 22:00:00,13240.0
-2012-01-23 23:00:00,12666.0
-2012-01-24 00:00:00,11787.0
-2012-01-22 01:00:00,11098.0
-2012-01-22 02:00:00,10670.0
-2012-01-22 03:00:00,10396.0
-2012-01-22 04:00:00,10262.0
-2012-01-22 05:00:00,10107.0
-2012-01-22 06:00:00,10166.0
-2012-01-22 07:00:00,10246.0
-2012-01-22 08:00:00,10522.0
-2012-01-22 09:00:00,10604.0
-2012-01-22 10:00:00,10837.0
-2012-01-22 11:00:00,11095.0
-2012-01-22 12:00:00,11242.0
-2012-01-22 13:00:00,11302.0
-2012-01-22 14:00:00,11318.0
-2012-01-22 15:00:00,11248.0
-2012-01-22 16:00:00,11270.0
-2012-01-22 17:00:00,11343.0
-2012-01-22 18:00:00,11707.0
-2012-01-22 19:00:00,12403.0
-2012-01-22 20:00:00,12429.0
-2012-01-22 21:00:00,12202.0
-2012-01-22 22:00:00,11930.0
-2012-01-22 23:00:00,11479.0
-2012-01-23 00:00:00,10872.0
-2012-01-21 01:00:00,11578.0
-2012-01-21 02:00:00,11009.0
-2012-01-21 03:00:00,10693.0
-2012-01-21 04:00:00,10480.0
-2012-01-21 05:00:00,10418.0
-2012-01-21 06:00:00,10491.0
-2012-01-21 07:00:00,10746.0
-2012-01-21 08:00:00,11191.0
-2012-01-21 09:00:00,11471.0
-2012-01-21 10:00:00,11785.0
-2012-01-21 11:00:00,11993.0
-2012-01-21 12:00:00,12161.0
-2012-01-21 13:00:00,12091.0
-2012-01-21 14:00:00,11964.0
-2012-01-21 15:00:00,11728.0
-2012-01-21 16:00:00,11558.0
-2012-01-21 17:00:00,11524.0
-2012-01-21 18:00:00,11813.0
-2012-01-21 19:00:00,12698.0
-2012-01-21 20:00:00,12764.0
-2012-01-21 21:00:00,12638.0
-2012-01-21 22:00:00,12391.0
-2012-01-21 23:00:00,12132.0
-2012-01-22 00:00:00,11657.0
-2012-01-20 01:00:00,12316.0
-2012-01-20 02:00:00,11848.0
-2012-01-20 03:00:00,11541.0
-2012-01-20 04:00:00,11355.0
-2012-01-20 05:00:00,11321.0
-2012-01-20 06:00:00,11572.0
-2012-01-20 07:00:00,12183.0
-2012-01-20 08:00:00,13348.0
-2012-01-20 09:00:00,13978.0
-2012-01-20 10:00:00,13997.0
-2012-01-20 11:00:00,13981.0
-2012-01-20 12:00:00,14092.0
-2012-01-20 13:00:00,14083.0
-2012-01-20 14:00:00,14064.0
-2012-01-20 15:00:00,13977.0
-2012-01-20 16:00:00,13812.0
-2012-01-20 17:00:00,13660.0
-2012-01-20 18:00:00,13948.0
-2012-01-20 19:00:00,14536.0
-2012-01-20 20:00:00,14429.0
-2012-01-20 21:00:00,14093.0
-2012-01-20 22:00:00,13664.0
-2012-01-20 23:00:00,13160.0
-2012-01-21 00:00:00,12327.0
-2012-01-19 01:00:00,11487.0
-2012-01-19 02:00:00,10963.0
-2012-01-19 03:00:00,10617.0
-2012-01-19 04:00:00,10406.0
-2012-01-19 05:00:00,10382.0
-2012-01-19 06:00:00,10652.0
-2012-01-19 07:00:00,11383.0
-2012-01-19 08:00:00,12631.0
-2012-01-19 09:00:00,13353.0
-2012-01-19 10:00:00,13539.0
-2012-01-19 11:00:00,13698.0
-2012-01-19 12:00:00,13788.0
-2012-01-19 13:00:00,13717.0
-2012-01-19 14:00:00,13589.0
-2012-01-19 15:00:00,13503.0
-2012-01-19 16:00:00,13336.0
-2012-01-19 17:00:00,13298.0
-2012-01-19 18:00:00,13794.0
-2012-01-19 19:00:00,14721.0
-2012-01-19 20:00:00,14813.0
-2012-01-19 21:00:00,14649.0
-2012-01-19 22:00:00,14389.0
-2012-01-19 23:00:00,13864.0
-2012-01-20 00:00:00,13064.0
-2012-01-18 01:00:00,11441.0
-2012-01-18 02:00:00,10975.0
-2012-01-18 03:00:00,10736.0
-2012-01-18 04:00:00,10615.0
-2012-01-18 05:00:00,10619.0
-2012-01-18 06:00:00,10945.0
-2012-01-18 07:00:00,11662.0
-2012-01-18 08:00:00,12902.0
-2012-01-18 09:00:00,13448.0
-2012-01-18 10:00:00,13397.0
-2012-01-18 11:00:00,13377.0
-2012-01-18 12:00:00,13341.0
-2012-01-18 13:00:00,13209.0
-2012-01-18 14:00:00,13104.0
-2012-01-18 15:00:00,13042.0
-2012-01-18 16:00:00,12994.0
-2012-01-18 17:00:00,13061.0
-2012-01-18 18:00:00,13490.0
-2012-01-18 19:00:00,14249.0
-2012-01-18 20:00:00,14178.0
-2012-01-18 21:00:00,13964.0
-2012-01-18 22:00:00,13654.0
-2012-01-18 23:00:00,13136.0
-2012-01-19 00:00:00,12257.0
-2012-01-17 01:00:00,10209.0
-2012-01-17 02:00:00,9747.0
-2012-01-17 03:00:00,9476.0
-2012-01-17 04:00:00,9330.0
-2012-01-17 05:00:00,9355.0
-2012-01-17 06:00:00,9623.0
-2012-01-17 07:00:00,10393.0
-2012-01-17 08:00:00,11626.0
-2012-01-17 09:00:00,12493.0
-2012-01-17 10:00:00,12769.0
-2012-01-17 11:00:00,12914.0
-2012-01-17 12:00:00,13047.0
-2012-01-17 13:00:00,13145.0
-2012-01-17 14:00:00,13142.0
-2012-01-17 15:00:00,13177.0
-2012-01-17 16:00:00,13037.0
-2012-01-17 17:00:00,13045.0
-2012-01-17 18:00:00,13462.0
-2012-01-17 19:00:00,14080.0
-2012-01-17 20:00:00,13951.0
-2012-01-17 21:00:00,13787.0
-2012-01-17 22:00:00,13517.0
-2012-01-17 23:00:00,13009.0
-2012-01-18 00:00:00,12191.0
-2012-01-16 01:00:00,10603.0
-2012-01-16 02:00:00,10162.0
-2012-01-16 03:00:00,9958.0
-2012-01-16 04:00:00,9817.0
-2012-01-16 05:00:00,9805.0
-2012-01-16 06:00:00,10048.0
-2012-01-16 07:00:00,10626.0
-2012-01-16 08:00:00,11593.0
-2012-01-16 09:00:00,11988.0
-2012-01-16 10:00:00,12100.0
-2012-01-16 11:00:00,12106.0
-2012-01-16 12:00:00,12295.0
-2012-01-16 13:00:00,12208.0
-2012-01-16 14:00:00,12251.0
-2012-01-16 15:00:00,12333.0
-2012-01-16 16:00:00,12312.0
-2012-01-16 17:00:00,12348.0
-2012-01-16 18:00:00,12727.0
-2012-01-16 19:00:00,13161.0
-2012-01-16 20:00:00,12971.0
-2012-01-16 21:00:00,12709.0
-2012-01-16 22:00:00,12352.0
-2012-01-16 23:00:00,11823.0
-2012-01-17 00:00:00,10981.0
-2012-01-15 01:00:00,11051.0
-2012-01-15 02:00:00,10573.0
-2012-01-15 03:00:00,10319.0
-2012-01-15 04:00:00,10098.0
-2012-01-15 05:00:00,10079.0
-2012-01-15 06:00:00,10057.0
-2012-01-15 07:00:00,10157.0
-2012-01-15 08:00:00,10447.0
-2012-01-15 09:00:00,10493.0
-2012-01-15 10:00:00,10719.0
-2012-01-15 11:00:00,10788.0
-2012-01-15 12:00:00,10970.0
-2012-01-15 13:00:00,10928.0
-2012-01-15 14:00:00,10821.0
-2012-01-15 15:00:00,10667.0
-2012-01-15 16:00:00,10626.0
-2012-01-15 17:00:00,10718.0
-2012-01-15 18:00:00,11236.0
-2012-01-15 19:00:00,12311.0
-2012-01-15 20:00:00,12448.0
-2012-01-15 21:00:00,12339.0
-2012-01-15 22:00:00,12062.0
-2012-01-15 23:00:00,11726.0
-2012-01-16 00:00:00,11143.0
-2012-01-14 01:00:00,11423.0
-2012-01-14 02:00:00,10865.0
-2012-01-14 03:00:00,10604.0
-2012-01-14 04:00:00,10344.0
-2012-01-14 05:00:00,10299.0
-2012-01-14 06:00:00,10363.0
-2012-01-14 07:00:00,10674.0
-2012-01-14 08:00:00,11150.0
-2012-01-14 09:00:00,11482.0
-2012-01-14 10:00:00,11755.0
-2012-01-14 11:00:00,12014.0
-2012-01-14 12:00:00,11982.0
-2012-01-14 13:00:00,11915.0
-2012-01-14 14:00:00,11683.0
-2012-01-14 15:00:00,11397.0
-2012-01-14 16:00:00,11226.0
-2012-01-14 17:00:00,11292.0
-2012-01-14 18:00:00,11706.0
-2012-01-14 19:00:00,12710.0
-2012-01-14 20:00:00,12797.0
-2012-01-14 21:00:00,12651.0
-2012-01-14 22:00:00,12511.0
-2012-01-14 23:00:00,12148.0
-2012-01-15 00:00:00,11627.0
-2012-01-13 01:00:00,11291.0
-2012-01-13 02:00:00,10843.0
-2012-01-13 03:00:00,10582.0
-2012-01-13 04:00:00,10489.0
-2012-01-13 05:00:00,10496.0
-2012-01-13 06:00:00,10752.0
-2012-01-13 07:00:00,11449.0
-2012-01-13 08:00:00,12606.0
-2012-01-13 09:00:00,13108.0
-2012-01-13 10:00:00,13188.0
-2012-01-13 11:00:00,13249.0
-2012-01-13 12:00:00,13343.0
-2012-01-13 13:00:00,13291.0
-2012-01-13 14:00:00,13158.0
-2012-01-13 15:00:00,13121.0
-2012-01-13 16:00:00,13041.0
-2012-01-13 17:00:00,13000.0
-2012-01-13 18:00:00,13384.0
-2012-01-13 19:00:00,14011.0
-2012-01-13 20:00:00,13883.0
-2012-01-13 21:00:00,13611.0
-2012-01-13 22:00:00,13280.0
-2012-01-13 23:00:00,12837.0
-2012-01-14 00:00:00,12124.0
-2012-01-12 01:00:00,10139.0
-2012-01-12 02:00:00,9669.0
-2012-01-12 03:00:00,9385.0
-2012-01-12 04:00:00,9229.0
-2012-01-12 05:00:00,9227.0
-2012-01-12 06:00:00,9501.0
-2012-01-12 07:00:00,10291.0
-2012-01-12 08:00:00,11551.0
-2012-01-12 09:00:00,12310.0
-2012-01-12 10:00:00,12524.0
-2012-01-12 11:00:00,12649.0
-2012-01-12 12:00:00,12854.0
-2012-01-12 13:00:00,12887.0
-2012-01-12 14:00:00,12838.0
-2012-01-12 15:00:00,12852.0
-2012-01-12 16:00:00,12819.0
-2012-01-12 17:00:00,12812.0
-2012-01-12 18:00:00,13274.0
-2012-01-12 19:00:00,13983.0
-2012-01-12 20:00:00,13927.0
-2012-01-12 21:00:00,13760.0
-2012-01-12 22:00:00,13444.0
-2012-01-12 23:00:00,12919.0
-2012-01-13 00:00:00,12110.0
-2012-01-11 01:00:00,10106.0
-2012-01-11 02:00:00,9593.0
-2012-01-11 03:00:00,9328.0
-2012-01-11 04:00:00,9169.0
-2012-01-11 05:00:00,9188.0
-2012-01-11 06:00:00,9449.0
-2012-01-11 07:00:00,10221.0
-2012-01-11 08:00:00,11476.0
-2012-01-11 09:00:00,12140.0
-2012-01-11 10:00:00,12083.0
-2012-01-11 11:00:00,12021.0
-2012-01-11 12:00:00,11974.0
-2012-01-11 13:00:00,11864.0
-2012-01-11 14:00:00,11709.0
-2012-01-11 15:00:00,11661.0
-2012-01-11 16:00:00,11529.0
-2012-01-11 17:00:00,11485.0
-2012-01-11 18:00:00,11858.0
-2012-01-11 19:00:00,12685.0
-2012-01-11 20:00:00,12639.0
-2012-01-11 21:00:00,12475.0
-2012-01-11 22:00:00,12182.0
-2012-01-11 23:00:00,11703.0
-2012-01-12 00:00:00,10918.0
-2012-01-10 01:00:00,10354.0
-2012-01-10 02:00:00,9801.0
-2012-01-10 03:00:00,9524.0
-2012-01-10 04:00:00,9350.0
-2012-01-10 05:00:00,9321.0
-2012-01-10 06:00:00,9607.0
-2012-01-10 07:00:00,10353.0
-2012-01-10 08:00:00,11621.0
-2012-01-10 09:00:00,12214.0
-2012-01-10 10:00:00,12173.0
-2012-01-10 11:00:00,12137.0
-2012-01-10 12:00:00,12117.0
-2012-01-10 13:00:00,11940.0
-2012-01-10 14:00:00,11833.0
-2012-01-10 15:00:00,11784.0
-2012-01-10 16:00:00,11617.0
-2012-01-10 17:00:00,11530.0
-2012-01-10 18:00:00,11940.0
-2012-01-10 19:00:00,12771.0
-2012-01-10 20:00:00,12660.0
-2012-01-10 21:00:00,12466.0
-2012-01-10 22:00:00,12228.0
-2012-01-10 23:00:00,11689.0
-2012-01-11 00:00:00,10864.0
-2012-01-09 01:00:00,9786.0
-2012-01-09 02:00:00,9494.0
-2012-01-09 03:00:00,9301.0
-2012-01-09 04:00:00,9212.0
-2012-01-09 05:00:00,9268.0
-2012-01-09 06:00:00,9620.0
-2012-01-09 07:00:00,10395.0
-2012-01-09 08:00:00,11740.0
-2012-01-09 09:00:00,12435.0
-2012-01-09 10:00:00,12487.0
-2012-01-09 11:00:00,12611.0
-2012-01-09 12:00:00,12617.0
-2012-01-09 13:00:00,12516.0
-2012-01-09 14:00:00,12307.0
-2012-01-09 15:00:00,12195.0
-2012-01-09 16:00:00,11998.0
-2012-01-09 17:00:00,11965.0
-2012-01-09 18:00:00,12407.0
-2012-01-09 19:00:00,13192.0
-2012-01-09 20:00:00,13091.0
-2012-01-09 21:00:00,12882.0
-2012-01-09 22:00:00,12590.0
-2012-01-09 23:00:00,12022.0
-2012-01-10 00:00:00,11171.0
-2012-01-08 01:00:00,9926.0
-2012-01-08 02:00:00,9441.0
-2012-01-08 03:00:00,9182.0
-2012-01-08 04:00:00,9056.0
-2012-01-08 05:00:00,8965.0
-2012-01-08 06:00:00,9049.0
-2012-01-08 07:00:00,9187.0
-2012-01-08 08:00:00,9475.0
-2012-01-08 09:00:00,9528.0
-2012-01-08 10:00:00,9661.0
-2012-01-08 11:00:00,9790.0
-2012-01-08 12:00:00,9825.0
-2012-01-08 13:00:00,9887.0
-2012-01-08 14:00:00,9913.0
-2012-01-08 15:00:00,9838.0
-2012-01-08 16:00:00,9897.0
-2012-01-08 17:00:00,10162.0
-2012-01-08 18:00:00,10869.0
-2012-01-08 19:00:00,11529.0
-2012-01-08 20:00:00,11573.0
-2012-01-08 21:00:00,11454.0
-2012-01-08 22:00:00,11319.0
-2012-01-08 23:00:00,10952.0
-2012-01-09 00:00:00,10352.0
-2012-01-07 01:00:00,10120.0
-2012-01-07 02:00:00,9538.0
-2012-01-07 03:00:00,9199.0
-2012-01-07 04:00:00,8992.0
-2012-01-07 05:00:00,8937.0
-2012-01-07 06:00:00,9031.0
-2012-01-07 07:00:00,9346.0
-2012-01-07 08:00:00,9869.0
-2012-01-07 09:00:00,10100.0
-2012-01-07 10:00:00,10306.0
-2012-01-07 11:00:00,10463.0
-2012-01-07 12:00:00,10543.0
-2012-01-07 13:00:00,10515.0
-2012-01-07 14:00:00,10377.0
-2012-01-07 15:00:00,10172.0
-2012-01-07 16:00:00,9981.0
-2012-01-07 17:00:00,10039.0
-2012-01-07 18:00:00,10688.0
-2012-01-07 19:00:00,11534.0
-2012-01-07 20:00:00,11511.0
-2012-01-07 21:00:00,11426.0
-2012-01-07 22:00:00,11220.0
-2012-01-07 23:00:00,10990.0
-2012-01-08 00:00:00,10443.0
-2012-01-06 01:00:00,10301.0
-2012-01-06 02:00:00,9755.0
-2012-01-06 03:00:00,9393.0
-2012-01-06 04:00:00,9196.0
-2012-01-06 05:00:00,9170.0
-2012-01-06 06:00:00,9391.0
-2012-01-06 07:00:00,10031.0
-2012-01-06 08:00:00,11147.0
-2012-01-06 09:00:00,11787.0
-2012-01-06 10:00:00,11855.0
-2012-01-06 11:00:00,11821.0
-2012-01-06 12:00:00,11795.0
-2012-01-06 13:00:00,11702.0
-2012-01-06 14:00:00,11603.0
-2012-01-06 15:00:00,11526.0
-2012-01-06 16:00:00,11352.0
-2012-01-06 17:00:00,11248.0
-2012-01-06 18:00:00,11805.0
-2012-01-06 19:00:00,12473.0
-2012-01-06 20:00:00,12359.0
-2012-01-06 21:00:00,12134.0
-2012-01-06 22:00:00,11845.0
-2012-01-06 23:00:00,11500.0
-2012-01-07 00:00:00,10802.0
-2012-01-05 01:00:00,10877.0
-2012-01-05 02:00:00,10326.0
-2012-01-05 03:00:00,10003.0
-2012-01-05 04:00:00,9803.0
-2012-01-05 05:00:00,9804.0
-2012-01-05 06:00:00,10055.0
-2012-01-05 07:00:00,10742.0
-2012-01-05 08:00:00,11893.0
-2012-01-05 09:00:00,12431.0
-2012-01-05 10:00:00,12460.0
-2012-01-05 11:00:00,12373.0
-2012-01-05 12:00:00,12309.0
-2012-01-05 13:00:00,12245.0
-2012-01-05 14:00:00,12111.0
-2012-01-05 15:00:00,12067.0
-2012-01-05 16:00:00,11874.0
-2012-01-05 17:00:00,11756.0
-2012-01-05 18:00:00,12304.0
-2012-01-05 19:00:00,13126.0
-2012-01-05 20:00:00,13087.0
-2012-01-05 21:00:00,12861.0
-2012-01-05 22:00:00,12514.0
-2012-01-05 23:00:00,11971.0
-2012-01-06 00:00:00,11141.0
-2012-01-04 01:00:00,11391.0
-2012-01-04 02:00:00,10810.0
-2012-01-04 03:00:00,10471.0
-2012-01-04 04:00:00,10253.0
-2012-01-04 05:00:00,10166.0
-2012-01-04 06:00:00,10406.0
-2012-01-04 07:00:00,11046.0
-2012-01-04 08:00:00,12155.0
-2012-01-04 09:00:00,12692.0
-2012-01-04 10:00:00,12660.0
-2012-01-04 11:00:00,12598.0
-2012-01-04 12:00:00,12575.0
-2012-01-04 13:00:00,12472.0
-2012-01-04 14:00:00,12356.0
-2012-01-04 15:00:00,12404.0
-2012-01-04 16:00:00,12418.0
-2012-01-04 17:00:00,12450.0
-2012-01-04 18:00:00,13102.0
-2012-01-04 19:00:00,13701.0
-2012-01-04 20:00:00,13553.0
-2012-01-04 21:00:00,13362.0
-2012-01-04 22:00:00,13045.0
-2012-01-04 23:00:00,12501.0
-2012-01-05 00:00:00,11664.0
-2012-01-03 01:00:00,11130.0
-2012-01-03 02:00:00,10698.0
-2012-01-03 03:00:00,10440.0
-2012-01-03 04:00:00,10315.0
-2012-01-03 05:00:00,10348.0
-2012-01-03 06:00:00,10620.0
-2012-01-03 07:00:00,11331.0
-2012-01-03 08:00:00,12475.0
-2012-01-03 09:00:00,13078.0
-2012-01-03 10:00:00,13169.0
-2012-01-03 11:00:00,13180.0
-2012-01-03 12:00:00,13205.0
-2012-01-03 13:00:00,13140.0
-2012-01-03 14:00:00,13083.0
-2012-01-03 15:00:00,13062.0
-2012-01-03 16:00:00,12815.0
-2012-01-03 17:00:00,12811.0
-2012-01-03 18:00:00,13523.0
-2012-01-03 19:00:00,14300.0
-2012-01-03 20:00:00,14226.0
-2012-01-03 21:00:00,14046.0
-2012-01-03 22:00:00,13751.0
-2012-01-03 23:00:00,13152.0
-2012-01-04 00:00:00,12282.0
-2012-01-02 01:00:00,10170.0
-2012-01-02 02:00:00,9731.0
-2012-01-02 03:00:00,9459.0
-2012-01-02 04:00:00,9297.0
-2012-01-02 05:00:00,9323.0
-2012-01-02 06:00:00,9451.0
-2012-01-02 07:00:00,9880.0
-2012-01-02 08:00:00,10399.0
-2012-01-02 09:00:00,10675.0
-2012-01-02 10:00:00,10873.0
-2012-01-02 11:00:00,11237.0
-2012-01-02 12:00:00,11503.0
-2012-01-02 13:00:00,11639.0
-2012-01-02 14:00:00,11675.0
-2012-01-02 15:00:00,11673.0
-2012-01-02 16:00:00,11686.0
-2012-01-02 17:00:00,11855.0
-2012-01-02 18:00:00,12670.0
-2012-01-02 19:00:00,13332.0
-2012-01-02 20:00:00,13308.0
-2012-01-02 21:00:00,13179.0
-2012-01-02 22:00:00,12956.0
-2012-01-02 23:00:00,12536.0
-2012-01-03 00:00:00,11810.0
-2012-01-01 01:00:00,9906.0
-2012-01-01 02:00:00,9407.0
-2012-01-01 03:00:00,9086.0
-2012-01-01 04:00:00,8758.0
-2012-01-01 05:00:00,8483.0
-2012-01-01 06:00:00,8432.0
-2012-01-01 07:00:00,8487.0
-2012-01-01 08:00:00,8686.0
-2012-01-01 09:00:00,8953.0
-2012-01-01 10:00:00,9050.0
-2012-01-01 11:00:00,9366.0
-2012-01-01 12:00:00,9387.0
-2012-01-01 13:00:00,9597.0
-2012-01-01 14:00:00,9924.0
-2012-01-01 15:00:00,10089.0
-2012-01-01 16:00:00,10130.0
-2012-01-01 17:00:00,10363.0
-2012-01-01 18:00:00,11132.0
-2012-01-01 19:00:00,11757.0
-2012-01-01 20:00:00,11799.0
-2012-01-01 21:00:00,11681.0
-2012-01-01 22:00:00,11490.0
-2012-01-01 23:00:00,11158.0
-2012-01-02 00:00:00,10721.0
-2013-12-31 01:00:00,11979.0
-2013-12-31 02:00:00,11438.0
-2013-12-31 03:00:00,11113.0
-2013-12-31 04:00:00,10928.0
-2013-12-31 05:00:00,10926.0
-2013-12-31 06:00:00,11078.0
-2013-12-31 07:00:00,11492.0
-2013-12-31 08:00:00,12172.0
-2013-12-31 09:00:00,12473.0
-2013-12-31 10:00:00,12597.0
-2013-12-31 11:00:00,12732.0
-2013-12-31 12:00:00,12828.0
-2013-12-31 13:00:00,12902.0
-2013-12-31 14:00:00,12832.0
-2013-12-31 15:00:00,12794.0
-2013-12-31 16:00:00,12768.0
-2013-12-31 17:00:00,12735.0
-2013-12-31 18:00:00,13383.0
-2013-12-31 19:00:00,14041.0
-2013-12-31 20:00:00,13768.0
-2013-12-31 21:00:00,13358.0
-2013-12-31 22:00:00,12922.0
-2013-12-31 23:00:00,12503.0
-2014-01-01 00:00:00,12035.0
-2013-12-30 01:00:00,11183.0
-2013-12-30 02:00:00,10850.0
-2013-12-30 03:00:00,10682.0
-2013-12-30 04:00:00,10640.0
-2013-12-30 05:00:00,10702.0
-2013-12-30 06:00:00,10971.0
-2013-12-30 07:00:00,11538.0
-2013-12-30 08:00:00,12475.0
-2013-12-30 09:00:00,12903.0
-2013-12-30 10:00:00,13042.0
-2013-12-30 11:00:00,13193.0
-2013-12-30 12:00:00,13307.0
-2013-12-30 13:00:00,13328.0
-2013-12-30 14:00:00,13221.0
-2013-12-30 15:00:00,13127.0
-2013-12-30 16:00:00,13062.0
-2013-12-30 17:00:00,13069.0
-2013-12-30 18:00:00,13834.0
-2013-12-30 19:00:00,14525.0
-2013-12-30 20:00:00,14427.0
-2013-12-30 21:00:00,14260.0
-2013-12-30 22:00:00,14018.0
-2013-12-30 23:00:00,13530.0
-2013-12-31 00:00:00,12756.0
-2013-12-29 01:00:00,10088.0
-2013-12-29 02:00:00,9621.0
-2013-12-29 03:00:00,9309.0
-2013-12-29 04:00:00,9074.0
-2013-12-29 05:00:00,8998.0
-2013-12-29 06:00:00,8997.0
-2013-12-29 07:00:00,9180.0
-2013-12-29 08:00:00,9457.0
-2013-12-29 09:00:00,9634.0
-2013-12-29 10:00:00,9874.0
-2013-12-29 11:00:00,10336.0
-2013-12-29 12:00:00,10678.0
-2013-12-29 13:00:00,10933.0
-2013-12-29 14:00:00,11032.0
-2013-12-29 15:00:00,11157.0
-2013-12-29 16:00:00,11267.0
-2013-12-29 17:00:00,11444.0
-2013-12-29 18:00:00,12134.0
-2013-12-29 19:00:00,12695.0
-2013-12-29 20:00:00,12741.0
-2013-12-29 21:00:00,12694.0
-2013-12-29 22:00:00,12569.0
-2013-12-29 23:00:00,12273.0
-2013-12-30 00:00:00,11754.0
-2013-12-28 01:00:00,10643.0
-2013-12-28 02:00:00,10069.0
-2013-12-28 03:00:00,9710.0
-2013-12-28 04:00:00,9477.0
-2013-12-28 05:00:00,9404.0
-2013-12-28 06:00:00,9469.0
-2013-12-28 07:00:00,9699.0
-2013-12-28 08:00:00,10157.0
-2013-12-28 09:00:00,10341.0
-2013-12-28 10:00:00,10451.0
-2013-12-28 11:00:00,10541.0
-2013-12-28 12:00:00,10577.0
-2013-12-28 13:00:00,10531.0
-2013-12-28 14:00:00,10354.0
-2013-12-28 15:00:00,10112.0
-2013-12-28 16:00:00,9979.0
-2013-12-28 17:00:00,10070.0
-2013-12-28 18:00:00,10796.0
-2013-12-28 19:00:00,11684.0
-2013-12-28 20:00:00,11678.0
-2013-12-28 21:00:00,11598.0
-2013-12-28 22:00:00,11456.0
-2013-12-28 23:00:00,11176.0
-2013-12-29 00:00:00,10687.0
-2013-12-27 01:00:00,10909.0
-2013-12-27 02:00:00,10319.0
-2013-12-27 03:00:00,9958.0
-2013-12-27 04:00:00,9749.0
-2013-12-27 05:00:00,9732.0
-2013-12-27 06:00:00,9975.0
-2013-12-27 07:00:00,10572.0
-2013-12-27 08:00:00,11436.0
-2013-12-27 09:00:00,11814.0
-2013-12-27 10:00:00,11965.0
-2013-12-27 11:00:00,11983.0
-2013-12-27 12:00:00,12002.0
-2013-12-27 13:00:00,11917.0
-2013-12-27 14:00:00,11794.0
-2013-12-27 15:00:00,11712.0
-2013-12-27 16:00:00,11619.0
-2013-12-27 17:00:00,11583.0
-2013-12-27 18:00:00,12311.0
-2013-12-27 19:00:00,13092.0
-2013-12-27 20:00:00,12973.0
-2013-12-27 21:00:00,12770.0
-2013-12-27 22:00:00,12476.0
-2013-12-27 23:00:00,12116.0
-2013-12-28 00:00:00,11410.0
-2013-12-26 01:00:00,10587.0
-2013-12-26 02:00:00,10159.0
-2013-12-26 03:00:00,9979.0
-2013-12-26 04:00:00,9928.0
-2013-12-26 05:00:00,10002.0
-2013-12-26 06:00:00,10259.0
-2013-12-26 07:00:00,10883.0
-2013-12-26 08:00:00,11772.0
-2013-12-26 09:00:00,12194.0
-2013-12-26 10:00:00,12431.0
-2013-12-26 11:00:00,12706.0
-2013-12-26 12:00:00,12845.0
-2013-12-26 13:00:00,12885.0
-2013-12-26 14:00:00,12799.0
-2013-12-26 15:00:00,12628.0
-2013-12-26 16:00:00,12462.0
-2013-12-26 17:00:00,12487.0
-2013-12-26 18:00:00,13261.0
-2013-12-26 19:00:00,13895.0
-2013-12-26 20:00:00,13646.0
-2013-12-26 21:00:00,13345.0
-2013-12-26 22:00:00,13076.0
-2013-12-26 23:00:00,12530.0
-2013-12-27 00:00:00,11718.0
-2013-12-25 01:00:00,11426.0
-2013-12-25 02:00:00,10915.0
-2013-12-25 03:00:00,10537.0
-2013-12-25 04:00:00,10316.0
-2013-12-25 05:00:00,10204.0
-2013-12-25 06:00:00,10210.0
-2013-12-25 07:00:00,10359.0
-2013-12-25 08:00:00,10586.0
-2013-12-25 09:00:00,10732.0
-2013-12-25 10:00:00,10843.0
-2013-12-25 11:00:00,11057.0
-2013-12-25 12:00:00,11162.0
-2013-12-25 13:00:00,11176.0
-2013-12-25 14:00:00,11173.0
-2013-12-25 15:00:00,11078.0
-2013-12-25 16:00:00,11020.0
-2013-12-25 17:00:00,11045.0
-2013-12-25 18:00:00,11627.0
-2013-12-25 19:00:00,11996.0
-2013-12-25 20:00:00,11953.0
-2013-12-25 21:00:00,11874.0
-2013-12-25 22:00:00,11788.0
-2013-12-25 23:00:00,11603.0
-2013-12-26 00:00:00,11152.0
-2013-12-24 01:00:00,12691.0
-2013-12-24 02:00:00,12058.0
-2013-12-24 03:00:00,11664.0
-2013-12-24 04:00:00,11421.0
-2013-12-24 05:00:00,11370.0
-2013-12-24 06:00:00,11437.0
-2013-12-24 07:00:00,11794.0
-2013-12-24 08:00:00,12318.0
-2013-12-24 09:00:00,12609.0
-2013-12-24 10:00:00,12785.0
-2013-12-24 11:00:00,12924.0
-2013-12-24 12:00:00,12885.0
-2013-12-24 13:00:00,12695.0
-2013-12-24 14:00:00,12413.0
-2013-12-24 15:00:00,12162.0
-2013-12-24 16:00:00,11966.0
-2013-12-24 17:00:00,12003.0
-2013-12-24 18:00:00,12855.0
-2013-12-24 19:00:00,13438.0
-2013-12-24 20:00:00,13158.0
-2013-12-24 21:00:00,12857.0
-2013-12-24 22:00:00,12660.0
-2013-12-24 23:00:00,12396.0
-2013-12-25 00:00:00,11944.0
-2013-12-23 01:00:00,10968.0
-2013-12-23 02:00:00,10424.0
-2013-12-23 03:00:00,10161.0
-2013-12-23 04:00:00,10020.0
-2013-12-23 05:00:00,10013.0
-2013-12-23 06:00:00,10285.0
-2013-12-23 07:00:00,10938.0
-2013-12-23 08:00:00,11847.0
-2013-12-23 09:00:00,12478.0
-2013-12-23 10:00:00,12717.0
-2013-12-23 11:00:00,12896.0
-2013-12-23 12:00:00,12894.0
-2013-12-23 13:00:00,12894.0
-2013-12-23 14:00:00,12831.0
-2013-12-23 15:00:00,12831.0
-2013-12-23 16:00:00,12814.0
-2013-12-23 17:00:00,12931.0
-2013-12-23 18:00:00,13879.0
-2013-12-23 19:00:00,14828.0
-2013-12-23 20:00:00,14817.0
-2013-12-23 21:00:00,14733.0
-2013-12-23 22:00:00,14577.0
-2013-12-23 23:00:00,14239.0
-2013-12-24 00:00:00,13487.0
-2013-12-22 01:00:00,10813.0
-2013-12-22 02:00:00,10257.0
-2013-12-22 03:00:00,9913.0
-2013-12-22 04:00:00,9659.0
-2013-12-22 05:00:00,9572.0
-2013-12-22 06:00:00,9562.0
-2013-12-22 07:00:00,9722.0
-2013-12-22 08:00:00,10012.0
-2013-12-22 09:00:00,10226.0
-2013-12-22 10:00:00,10408.0
-2013-12-22 11:00:00,10597.0
-2013-12-22 12:00:00,10794.0
-2013-12-22 13:00:00,10844.0
-2013-12-22 14:00:00,10867.0
-2013-12-22 15:00:00,10885.0
-2013-12-22 16:00:00,10942.0
-2013-12-22 17:00:00,11150.0
-2013-12-22 18:00:00,12025.0
-2013-12-22 19:00:00,12727.0
-2013-12-22 20:00:00,12748.0
-2013-12-22 21:00:00,12734.0
-2013-12-22 22:00:00,12574.0
-2013-12-22 23:00:00,12263.0
-2013-12-23 00:00:00,11657.0
-2013-12-21 01:00:00,10950.0
-2013-12-21 02:00:00,10359.0
-2013-12-21 03:00:00,9949.0
-2013-12-21 04:00:00,9692.0
-2013-12-21 05:00:00,9646.0
-2013-12-21 06:00:00,9695.0
-2013-12-21 07:00:00,9975.0
-2013-12-21 08:00:00,10500.0
-2013-12-21 09:00:00,10969.0
-2013-12-21 10:00:00,11251.0
-2013-12-21 11:00:00,11551.0
-2013-12-21 12:00:00,11731.0
-2013-12-21 13:00:00,11762.0
-2013-12-21 14:00:00,11686.0
-2013-12-21 15:00:00,11587.0
-2013-12-21 16:00:00,11518.0
-2013-12-21 17:00:00,11724.0
-2013-12-21 18:00:00,12439.0
-2013-12-21 19:00:00,12815.0
-2013-12-21 20:00:00,12751.0
-2013-12-21 21:00:00,12628.0
-2013-12-21 22:00:00,12410.0
-2013-12-21 23:00:00,12083.0
-2013-12-22 00:00:00,11486.0
-2013-12-20 01:00:00,10932.0
-2013-12-20 02:00:00,10322.0
-2013-12-20 03:00:00,9925.0
-2013-12-20 04:00:00,9735.0
-2013-12-20 05:00:00,9712.0
-2013-12-20 06:00:00,9968.0
-2013-12-20 07:00:00,10664.0
-2013-12-20 08:00:00,11853.0
-2013-12-20 09:00:00,12618.0
-2013-12-20 10:00:00,12777.0
-2013-12-20 11:00:00,12880.0
-2013-12-20 12:00:00,12983.0
-2013-12-20 13:00:00,12933.0
-2013-12-20 14:00:00,12839.0
-2013-12-20 15:00:00,12826.0
-2013-12-20 16:00:00,12775.0
-2013-12-20 17:00:00,12808.0
-2013-12-20 18:00:00,13509.0
-2013-12-20 19:00:00,13792.0
-2013-12-20 20:00:00,13586.0
-2013-12-20 21:00:00,13353.0
-2013-12-20 22:00:00,12973.0
-2013-12-20 23:00:00,12526.0
-2013-12-21 00:00:00,11818.0
-2013-12-19 01:00:00,11438.0
-2013-12-19 02:00:00,10791.0
-2013-12-19 03:00:00,10401.0
-2013-12-19 04:00:00,10176.0
-2013-12-19 05:00:00,10146.0
-2013-12-19 06:00:00,10355.0
-2013-12-19 07:00:00,11099.0
-2013-12-19 08:00:00,12245.0
-2013-12-19 09:00:00,12766.0
-2013-12-19 10:00:00,12777.0
-2013-12-19 11:00:00,12676.0
-2013-12-19 12:00:00,12628.0
-2013-12-19 13:00:00,12538.0
-2013-12-19 14:00:00,12498.0
-2013-12-19 15:00:00,12573.0
-2013-12-19 16:00:00,12551.0
-2013-12-19 17:00:00,12677.0
-2013-12-19 18:00:00,13535.0
-2013-12-19 19:00:00,13984.0
-2013-12-19 20:00:00,13779.0
-2013-12-19 21:00:00,13570.0
-2013-12-19 22:00:00,13312.0
-2013-12-19 23:00:00,12818.0
-2013-12-20 00:00:00,11879.0
-2013-12-18 01:00:00,11688.0
-2013-12-18 02:00:00,11110.0
-2013-12-18 03:00:00,10896.0
-2013-12-18 04:00:00,10624.0
-2013-12-18 05:00:00,10731.0
-2013-12-18 06:00:00,11036.0
-2013-12-18 07:00:00,11825.0
-2013-12-18 08:00:00,12895.0
-2013-12-18 09:00:00,13473.0
-2013-12-18 10:00:00,13451.0
-2013-12-18 11:00:00,13476.0
-2013-12-18 12:00:00,13358.0
-2013-12-18 13:00:00,13114.0
-2013-12-18 14:00:00,12928.0
-2013-12-18 15:00:00,12892.0
-2013-12-18 16:00:00,12844.0
-2013-12-18 17:00:00,12923.0
-2013-12-18 18:00:00,13835.0
-2013-12-18 19:00:00,14588.0
-2013-12-18 20:00:00,14429.0
-2013-12-18 21:00:00,14212.0
-2013-12-18 22:00:00,13933.0
-2013-12-18 23:00:00,13339.0
-2013-12-19 00:00:00,12406.0
-2013-12-17 01:00:00,12083.0
-2013-12-17 02:00:00,11488.0
-2013-12-17 03:00:00,11213.0
-2013-12-17 04:00:00,11068.0
-2013-12-17 05:00:00,11037.0
-2013-12-17 06:00:00,11254.0
-2013-12-17 07:00:00,11975.0
-2013-12-17 08:00:00,13162.0
-2013-12-17 09:00:00,13650.0
-2013-12-17 10:00:00,13700.0
-2013-12-17 11:00:00,13637.0
-2013-12-17 12:00:00,13707.0
-2013-12-17 13:00:00,13445.0
-2013-12-17 14:00:00,13183.0
-2013-12-17 15:00:00,13052.0
-2013-12-17 16:00:00,12911.0
-2013-12-17 17:00:00,13027.0
-2013-12-17 18:00:00,13861.0
-2013-12-17 19:00:00,14629.0
-2013-12-17 20:00:00,14538.0
-2013-12-17 21:00:00,14362.0
-2013-12-17 22:00:00,14075.0
-2013-12-17 23:00:00,13519.0
-2013-12-18 00:00:00,12609.0
-2013-12-16 01:00:00,11707.0
-2013-12-16 02:00:00,11261.0
-2013-12-16 03:00:00,11018.0
-2013-12-16 04:00:00,10917.0
-2013-12-16 05:00:00,10932.0
-2013-12-16 06:00:00,11282.0
-2013-12-16 07:00:00,11989.0
-2013-12-16 08:00:00,13276.0
-2013-12-16 09:00:00,13740.0
-2013-12-16 10:00:00,13819.0
-2013-12-16 11:00:00,13841.0
-2013-12-16 12:00:00,13752.0
-2013-12-16 13:00:00,13717.0
-2013-12-16 14:00:00,13633.0
-2013-12-16 15:00:00,13614.0
-2013-12-16 16:00:00,13567.0
-2013-12-16 17:00:00,13728.0
-2013-12-16 18:00:00,14565.0
-2013-12-16 19:00:00,15091.0
-2013-12-16 20:00:00,14944.0
-2013-12-16 21:00:00,14743.0
-2013-12-16 22:00:00,14495.0
-2013-12-16 23:00:00,13932.0
-2013-12-17 00:00:00,13022.0
-2013-12-15 01:00:00,11178.0
-2013-12-15 02:00:00,10710.0
-2013-12-15 03:00:00,10360.0
-2013-12-15 04:00:00,10226.0
-2013-12-15 05:00:00,10186.0
-2013-12-15 06:00:00,10262.0
-2013-12-15 07:00:00,10442.0
-2013-12-15 08:00:00,10854.0
-2013-12-15 09:00:00,10967.0
-2013-12-15 10:00:00,11367.0
-2013-12-15 11:00:00,11580.0
-2013-12-15 12:00:00,11771.0
-2013-12-15 13:00:00,11831.0
-2013-12-15 14:00:00,11874.0
-2013-12-15 15:00:00,11821.0
-2013-12-15 16:00:00,11750.0
-2013-12-15 17:00:00,11886.0
-2013-12-15 18:00:00,12856.0
-2013-12-15 19:00:00,13755.0
-2013-12-15 20:00:00,13821.0
-2013-12-15 21:00:00,13811.0
-2013-12-15 22:00:00,13574.0
-2013-12-15 23:00:00,13188.0
-2013-12-16 00:00:00,12442.0
-2013-12-14 01:00:00,11618.0
-2013-12-14 02:00:00,10961.0
-2013-12-14 03:00:00,10516.0
-2013-12-14 04:00:00,10314.0
-2013-12-14 05:00:00,10212.0
-2013-12-14 06:00:00,10302.0
-2013-12-14 07:00:00,10587.0
-2013-12-14 08:00:00,11158.0
-2013-12-14 09:00:00,11452.0
-2013-12-14 10:00:00,11805.0
-2013-12-14 11:00:00,12055.0
-2013-12-14 12:00:00,12152.0
-2013-12-14 13:00:00,12118.0
-2013-12-14 14:00:00,11972.0
-2013-12-14 15:00:00,11900.0
-2013-12-14 16:00:00,11787.0
-2013-12-14 17:00:00,11929.0
-2013-12-14 18:00:00,12725.0
-2013-12-14 19:00:00,13352.0
-2013-12-14 20:00:00,13217.0
-2013-12-14 21:00:00,13058.0
-2013-12-14 22:00:00,12854.0
-2013-12-14 23:00:00,12468.0
-2013-12-15 00:00:00,11921.0
-2013-12-13 01:00:00,12245.0
-2013-12-13 02:00:00,11606.0
-2013-12-13 03:00:00,11239.0
-2013-12-13 04:00:00,11038.0
-2013-12-13 05:00:00,10978.0
-2013-12-13 06:00:00,11196.0
-2013-12-13 07:00:00,11833.0
-2013-12-13 08:00:00,12998.0
-2013-12-13 09:00:00,13416.0
-2013-12-13 10:00:00,13450.0
-2013-12-13 11:00:00,13370.0
-2013-12-13 12:00:00,13257.0
-2013-12-13 13:00:00,13037.0
-2013-12-13 14:00:00,12840.0
-2013-12-13 15:00:00,12852.0
-2013-12-13 16:00:00,12861.0
-2013-12-13 17:00:00,13039.0
-2013-12-13 18:00:00,13905.0
-2013-12-13 19:00:00,14309.0
-2013-12-13 20:00:00,14112.0
-2013-12-13 21:00:00,13897.0
-2013-12-13 22:00:00,13577.0
-2013-12-13 23:00:00,13203.0
-2013-12-14 00:00:00,12436.0
-2013-12-12 01:00:00,12870.0
-2013-12-12 02:00:00,12306.0
-2013-12-12 03:00:00,12005.0
-2013-12-12 04:00:00,11870.0
-2013-12-12 05:00:00,11901.0
-2013-12-12 06:00:00,12154.0
-2013-12-12 07:00:00,12827.0
-2013-12-12 08:00:00,13972.0
-2013-12-12 09:00:00,14507.0
-2013-12-12 10:00:00,14574.0
-2013-12-12 11:00:00,14634.0
-2013-12-12 12:00:00,14507.0
-2013-12-12 13:00:00,14257.0
-2013-12-12 14:00:00,14049.0
-2013-12-12 15:00:00,13882.0
-2013-12-12 16:00:00,13709.0
-2013-12-12 17:00:00,13782.0
-2013-12-12 18:00:00,14668.0
-2013-12-12 19:00:00,15346.0
-2013-12-12 20:00:00,15165.0
-2013-12-12 21:00:00,14976.0
-2013-12-12 22:00:00,14721.0
-2013-12-12 23:00:00,14108.0
-2013-12-13 00:00:00,13170.0
-2013-12-11 01:00:00,12299.0
-2013-12-11 02:00:00,11680.0
-2013-12-11 03:00:00,11391.0
-2013-12-11 04:00:00,11215.0
-2013-12-11 05:00:00,11111.0
-2013-12-11 06:00:00,11339.0
-2013-12-11 07:00:00,12027.0
-2013-12-11 08:00:00,13152.0
-2013-12-11 09:00:00,13612.0
-2013-12-11 10:00:00,13692.0
-2013-12-11 11:00:00,13410.0
-2013-12-11 12:00:00,13641.0
-2013-12-11 13:00:00,13611.0
-2013-12-11 14:00:00,13488.0
-2013-12-11 15:00:00,13488.0
-2013-12-11 16:00:00,13408.0
-2013-12-11 17:00:00,13549.0
-2013-12-11 18:00:00,14552.0
-2013-12-11 19:00:00,15443.0
-2013-12-11 20:00:00,15428.0
-2013-12-11 21:00:00,15310.0
-2013-12-11 22:00:00,15096.0
-2013-12-11 23:00:00,14608.0
-2013-12-12 00:00:00,13749.0
-2013-12-10 01:00:00,12568.0
-2013-12-10 02:00:00,12013.0
-2013-12-10 03:00:00,11736.0
-2013-12-10 04:00:00,11588.0
-2013-12-10 05:00:00,11608.0
-2013-12-10 06:00:00,11834.0
-2013-12-10 07:00:00,12521.0
-2013-12-10 08:00:00,13720.0
-2013-12-10 09:00:00,14239.0
-2013-12-10 10:00:00,14343.0
-2013-12-10 11:00:00,14299.0
-2013-12-10 12:00:00,14105.0
-2013-12-10 13:00:00,13928.0
-2013-12-10 14:00:00,13811.0
-2013-12-10 15:00:00,13736.0
-2013-12-10 16:00:00,13557.0
-2013-12-10 17:00:00,13627.0
-2013-12-10 18:00:00,14619.0
-2013-12-10 19:00:00,15372.0
-2013-12-10 20:00:00,15304.0
-2013-12-10 21:00:00,15126.0
-2013-12-10 22:00:00,14818.0
-2013-12-10 23:00:00,14180.0
-2013-12-11 00:00:00,13258.0
-2013-12-09 01:00:00,10946.0
-2013-12-09 02:00:00,10487.0
-2013-12-09 03:00:00,10323.0
-2013-12-09 04:00:00,10205.0
-2013-12-09 05:00:00,10333.0
-2013-12-09 06:00:00,10653.0
-2013-12-09 07:00:00,11396.0
-2013-12-09 08:00:00,12662.0
-2013-12-09 09:00:00,13265.0
-2013-12-09 10:00:00,13356.0
-2013-12-09 11:00:00,13440.0
-2013-12-09 12:00:00,13376.0
-2013-12-09 13:00:00,13272.0
-2013-12-09 14:00:00,13224.0
-2013-12-09 15:00:00,13277.0
-2013-12-09 16:00:00,13385.0
-2013-12-09 17:00:00,13608.0
-2013-12-09 18:00:00,14595.0
-2013-12-09 19:00:00,15338.0
-2013-12-09 20:00:00,15288.0
-2013-12-09 21:00:00,15147.0
-2013-12-09 22:00:00,14916.0
-2013-12-09 23:00:00,14399.0
-2013-12-10 00:00:00,13530.0
-2013-12-08 01:00:00,11575.0
-2013-12-08 02:00:00,11001.0
-2013-12-08 03:00:00,10691.0
-2013-12-08 04:00:00,10421.0
-2013-12-08 05:00:00,10366.0
-2013-12-08 06:00:00,10343.0
-2013-12-08 07:00:00,10483.0
-2013-12-08 08:00:00,10721.0
-2013-12-08 09:00:00,10836.0
-2013-12-08 10:00:00,11098.0
-2013-12-08 11:00:00,11362.0
-2013-12-08 12:00:00,11593.0
-2013-12-08 13:00:00,11718.0
-2013-12-08 14:00:00,11753.0
-2013-12-08 15:00:00,11739.0
-2013-12-08 16:00:00,11784.0
-2013-12-08 17:00:00,11960.0
-2013-12-08 18:00:00,12828.0
-2013-12-08 19:00:00,13421.0
-2013-12-08 20:00:00,13437.0
-2013-12-08 21:00:00,13332.0
-2013-12-08 22:00:00,13084.0
-2013-12-08 23:00:00,12550.0
-2013-12-09 00:00:00,11699.0
-2013-12-07 01:00:00,12003.0
-2013-12-07 02:00:00,11365.0
-2013-12-07 03:00:00,11057.0
-2013-12-07 04:00:00,10855.0
-2013-12-07 05:00:00,10798.0
-2013-12-07 06:00:00,10859.0
-2013-12-07 07:00:00,11212.0
-2013-12-07 08:00:00,11770.0
-2013-12-07 09:00:00,11987.0
-2013-12-07 10:00:00,12205.0
-2013-12-07 11:00:00,12345.0
-2013-12-07 12:00:00,12344.0
-2013-12-07 13:00:00,12209.0
-2013-12-07 14:00:00,12013.0
-2013-12-07 15:00:00,11757.0
-2013-12-07 16:00:00,11663.0
-2013-12-07 17:00:00,11763.0
-2013-12-07 18:00:00,12726.0
-2013-12-07 19:00:00,13504.0
-2013-12-07 20:00:00,13456.0
-2013-12-07 21:00:00,13366.0
-2013-12-07 22:00:00,13144.0
-2013-12-07 23:00:00,12923.0
-2013-12-08 00:00:00,12268.0
-2013-12-06 01:00:00,11360.0
-2013-12-06 02:00:00,10732.0
-2013-12-06 03:00:00,10413.0
-2013-12-06 04:00:00,10240.0
-2013-12-06 05:00:00,10257.0
-2013-12-06 06:00:00,10539.0
-2013-12-06 07:00:00,11254.0
-2013-12-06 08:00:00,12427.0
-2013-12-06 09:00:00,13115.0
-2013-12-06 10:00:00,13215.0
-2013-12-06 11:00:00,13358.0
-2013-12-06 12:00:00,13436.0
-2013-12-06 13:00:00,13365.0
-2013-12-06 14:00:00,13277.0
-2013-12-06 15:00:00,13234.0
-2013-12-06 16:00:00,13160.0
-2013-12-06 17:00:00,13078.0
-2013-12-06 18:00:00,13812.0
-2013-12-06 19:00:00,14435.0
-2013-12-06 20:00:00,14287.0
-2013-12-06 21:00:00,14088.0
-2013-12-06 22:00:00,13822.0
-2013-12-06 23:00:00,13517.0
-2013-12-07 00:00:00,12761.0
-2013-12-05 01:00:00,10095.0
-2013-12-05 02:00:00,9549.0
-2013-12-05 03:00:00,9312.0
-2013-12-05 04:00:00,9190.0
-2013-12-05 05:00:00,9256.0
-2013-12-05 06:00:00,9563.0
-2013-12-05 07:00:00,10413.0
-2013-12-05 08:00:00,11699.0
-2013-12-05 09:00:00,12413.0
-2013-12-05 10:00:00,12535.0
-2013-12-05 11:00:00,12558.0
-2013-12-05 12:00:00,12540.0
-2013-12-05 13:00:00,12518.0
-2013-12-05 14:00:00,12537.0
-2013-12-05 15:00:00,12651.0
-2013-12-05 16:00:00,12708.0
-2013-12-05 17:00:00,12854.0
-2013-12-05 18:00:00,13716.0
-2013-12-05 19:00:00,14206.0
-2013-12-05 20:00:00,14067.0
-2013-12-05 21:00:00,13867.0
-2013-12-05 22:00:00,13587.0
-2013-12-05 23:00:00,13064.0
-2013-12-06 00:00:00,12225.0
-2013-12-04 01:00:00,9944.0
-2013-12-04 02:00:00,9365.0
-2013-12-04 03:00:00,9020.0
-2013-12-04 04:00:00,8816.0
-2013-12-04 05:00:00,8779.0
-2013-12-04 06:00:00,8998.0
-2013-12-04 07:00:00,9730.0
-2013-12-04 08:00:00,10944.0
-2013-12-04 09:00:00,11581.0
-2013-12-04 10:00:00,11753.0
-2013-12-04 11:00:00,11894.0
-2013-12-04 12:00:00,11970.0
-2013-12-04 13:00:00,11961.0
-2013-12-04 14:00:00,11927.0
-2013-12-04 15:00:00,11959.0
-2013-12-04 16:00:00,11975.0
-2013-12-04 17:00:00,12122.0
-2013-12-04 18:00:00,12734.0
-2013-12-04 19:00:00,13002.0
-2013-12-04 20:00:00,12782.0
-2013-12-04 21:00:00,12573.0
-2013-12-04 22:00:00,12230.0
-2013-12-04 23:00:00,11659.0
-2013-12-05 00:00:00,10847.0
-2013-12-03 01:00:00,10426.0
-2013-12-03 02:00:00,9856.0
-2013-12-03 03:00:00,9505.0
-2013-12-03 04:00:00,9317.0
-2013-12-03 05:00:00,9312.0
-2013-12-03 06:00:00,9554.0
-2013-12-03 07:00:00,10241.0
-2013-12-03 08:00:00,11425.0
-2013-12-03 09:00:00,12088.0
-2013-12-03 10:00:00,12153.0
-2013-12-03 11:00:00,12221.0
-2013-12-03 12:00:00,12235.0
-2013-12-03 13:00:00,12135.0
-2013-12-03 14:00:00,12109.0
-2013-12-03 15:00:00,12132.0
-2013-12-03 16:00:00,12100.0
-2013-12-03 17:00:00,12188.0
-2013-12-03 18:00:00,12847.0
-2013-12-03 19:00:00,13131.0
-2013-12-03 20:00:00,12945.0
-2013-12-03 21:00:00,12661.0
-2013-12-03 22:00:00,12345.0
-2013-12-03 23:00:00,11738.0
-2013-12-04 00:00:00,10861.0
-2013-12-02 01:00:00,9790.0
-2013-12-02 02:00:00,9414.0
-2013-12-02 03:00:00,9163.0
-2013-12-02 04:00:00,9114.0
-2013-12-02 05:00:00,9130.0
-2013-12-02 06:00:00,9510.0
-2013-12-02 07:00:00,10313.0
-2013-12-02 08:00:00,11479.0
-2013-12-02 09:00:00,12066.0
-2013-12-02 10:00:00,12181.0
-2013-12-02 11:00:00,12145.0
-2013-12-02 12:00:00,12152.0
-2013-12-02 13:00:00,12081.0
-2013-12-02 14:00:00,12021.0
-2013-12-02 15:00:00,12056.0
-2013-12-02 16:00:00,12068.0
-2013-12-02 17:00:00,12142.0
-2013-12-02 18:00:00,12949.0
-2013-12-02 19:00:00,13467.0
-2013-12-02 20:00:00,13307.0
-2013-12-02 21:00:00,13108.0
-2013-12-02 22:00:00,12806.0
-2013-12-02 23:00:00,12243.0
-2013-12-03 00:00:00,11332.0
-2013-12-01 01:00:00,9777.0
-2013-12-01 02:00:00,9258.0
-2013-12-01 03:00:00,8953.0
-2013-12-01 04:00:00,8776.0
-2013-12-01 05:00:00,8788.0
-2013-12-01 06:00:00,8762.0
-2013-12-01 07:00:00,8978.0
-2013-12-01 08:00:00,9207.0
-2013-12-01 09:00:00,9312.0
-2013-12-01 10:00:00,9512.0
-2013-12-01 11:00:00,9634.0
-2013-12-01 12:00:00,9699.0
-2013-12-01 13:00:00,9721.0
-2013-12-01 14:00:00,9680.0
-2013-12-01 15:00:00,9676.0
-2013-12-01 16:00:00,9699.0
-2013-12-01 17:00:00,9868.0
-2013-12-01 18:00:00,10884.0
-2013-12-01 19:00:00,11655.0
-2013-12-01 20:00:00,11735.0
-2013-12-01 21:00:00,11650.0
-2013-12-01 22:00:00,11449.0
-2013-12-01 23:00:00,11035.0
-2013-12-02 00:00:00,10435.0
-2013-11-30 01:00:00,10135.0
-2013-11-30 02:00:00,9652.0
-2013-11-30 03:00:00,9366.0
-2013-11-30 04:00:00,9159.0
-2013-11-30 05:00:00,9105.0
-2013-11-30 06:00:00,9198.0
-2013-11-30 07:00:00,9492.0
-2013-11-30 08:00:00,9894.0
-2013-11-30 09:00:00,10134.0
-2013-11-30 10:00:00,10309.0
-2013-11-30 11:00:00,10405.0
-2013-11-30 12:00:00,10378.0
-2013-11-30 13:00:00,10300.0
-2013-11-30 14:00:00,10135.0
-2013-11-30 15:00:00,9884.0
-2013-11-30 16:00:00,9757.0
-2013-11-30 17:00:00,9835.0
-2013-11-30 18:00:00,10628.0
-2013-11-30 19:00:00,11272.0
-2013-11-30 20:00:00,11277.0
-2013-11-30 21:00:00,11162.0
-2013-11-30 22:00:00,11081.0
-2013-11-30 23:00:00,10774.0
-2013-12-01 00:00:00,10290.0
-2013-11-29 01:00:00,9938.0
-2013-11-29 02:00:00,9643.0
-2013-11-29 03:00:00,9476.0
-2013-11-29 04:00:00,9382.0
-2013-11-29 05:00:00,9429.0
-2013-11-29 06:00:00,9637.0
-2013-11-29 07:00:00,10076.0
-2013-11-29 08:00:00,10602.0
-2013-11-29 09:00:00,10730.0
-2013-11-29 10:00:00,10786.0
-2013-11-29 11:00:00,10847.0
-2013-11-29 12:00:00,10823.0
-2013-11-29 13:00:00,10761.0
-2013-11-29 14:00:00,10658.0
-2013-11-29 15:00:00,10563.0
-2013-11-29 16:00:00,10536.0
-2013-11-29 17:00:00,10691.0
-2013-11-29 18:00:00,11547.0
-2013-11-29 19:00:00,12098.0
-2013-11-29 20:00:00,11950.0
-2013-11-29 21:00:00,11816.0
-2013-11-29 22:00:00,11584.0
-2013-11-29 23:00:00,11271.0
-2013-11-30 00:00:00,10705.0
-2013-11-28 01:00:00,10886.0
-2013-11-28 02:00:00,10326.0
-2013-11-28 03:00:00,9965.0
-2013-11-28 04:00:00,9756.0
-2013-11-28 05:00:00,9649.0
-2013-11-28 06:00:00,9688.0
-2013-11-28 07:00:00,9858.0
-2013-11-28 08:00:00,10142.0
-2013-11-28 09:00:00,10171.0
-2013-11-28 10:00:00,10315.0
-2013-11-28 11:00:00,10490.0
-2013-11-28 12:00:00,10539.0
-2013-11-28 13:00:00,10458.0
-2013-11-28 14:00:00,10268.0
-2013-11-28 15:00:00,10049.0
-2013-11-28 16:00:00,9906.0
-2013-11-28 17:00:00,9911.0
-2013-11-28 18:00:00,10365.0
-2013-11-28 19:00:00,10763.0
-2013-11-28 20:00:00,10717.0
-2013-11-28 21:00:00,10702.0
-2013-11-28 22:00:00,10681.0
-2013-11-28 23:00:00,10572.0
-2013-11-29 00:00:00,10283.0
-2013-11-27 01:00:00,11324.0
-2013-11-27 02:00:00,10837.0
-2013-11-27 03:00:00,10588.0
-2013-11-27 04:00:00,10451.0
-2013-11-27 05:00:00,10454.0
-2013-11-27 06:00:00,10734.0
-2013-11-27 07:00:00,11456.0
-2013-11-27 08:00:00,12408.0
-2013-11-27 09:00:00,12816.0
-2013-11-27 10:00:00,12993.0
-2013-11-27 11:00:00,13071.0
-2013-11-27 12:00:00,13059.0
-2013-11-27 13:00:00,12946.0
-2013-11-27 14:00:00,12789.0
-2013-11-27 15:00:00,12636.0
-2013-11-27 16:00:00,12467.0
-2013-11-27 17:00:00,12433.0
-2013-11-27 18:00:00,13132.0
-2013-11-27 19:00:00,13696.0
-2013-11-27 20:00:00,13435.0
-2013-11-27 21:00:00,13193.0
-2013-11-27 22:00:00,12882.0
-2013-11-27 23:00:00,12410.0
-2013-11-28 00:00:00,11659.0
-2013-11-26 01:00:00,10842.0
-2013-11-26 02:00:00,10344.0
-2013-11-26 03:00:00,10022.0
-2013-11-26 04:00:00,9852.0
-2013-11-26 05:00:00,9846.0
-2013-11-26 06:00:00,10089.0
-2013-11-26 07:00:00,10830.0
-2013-11-26 08:00:00,11940.0
-2013-11-26 09:00:00,12515.0
-2013-11-26 10:00:00,12714.0
-2013-11-26 11:00:00,12833.0
-2013-11-26 12:00:00,12872.0
-2013-11-26 13:00:00,12825.0
-2013-11-26 14:00:00,12785.0
-2013-11-26 15:00:00,12899.0
-2013-11-26 16:00:00,12916.0
-2013-11-26 17:00:00,12963.0
-2013-11-26 18:00:00,13441.0
-2013-11-26 19:00:00,13791.0
-2013-11-26 20:00:00,13575.0
-2013-11-26 21:00:00,13452.0
-2013-11-26 22:00:00,13217.0
-2013-11-26 23:00:00,12780.0
-2013-11-27 00:00:00,12034.0
-2013-11-25 01:00:00,10800.0
-2013-11-25 02:00:00,10420.0
-2013-11-25 03:00:00,10207.0
-2013-11-25 04:00:00,10094.0
-2013-11-25 05:00:00,10087.0
-2013-11-25 06:00:00,10386.0
-2013-11-25 07:00:00,11167.0
-2013-11-25 08:00:00,12323.0
-2013-11-25 09:00:00,12899.0
-2013-11-25 10:00:00,13085.0
-2013-11-25 11:00:00,13193.0
-2013-11-25 12:00:00,13275.0
-2013-11-25 13:00:00,13254.0
-2013-11-25 14:00:00,13196.0
-2013-11-25 15:00:00,13221.0
-2013-11-25 16:00:00,13144.0
-2013-11-25 17:00:00,13116.0
-2013-11-25 18:00:00,13660.0
-2013-11-25 19:00:00,13928.0
-2013-11-25 20:00:00,13710.0
-2013-11-25 21:00:00,13429.0
-2013-11-25 22:00:00,13067.0
-2013-11-25 23:00:00,12455.0
-2013-11-26 00:00:00,11620.0
-2013-11-24 01:00:00,10971.0
-2013-11-24 02:00:00,10542.0
-2013-11-24 03:00:00,10311.0
-2013-11-24 04:00:00,10140.0
-2013-11-24 05:00:00,10118.0
-2013-11-24 06:00:00,10150.0
-2013-11-24 07:00:00,10304.0
-2013-11-24 08:00:00,10551.0
-2013-11-24 09:00:00,10567.0
-2013-11-24 10:00:00,10767.0
-2013-11-24 11:00:00,10883.0
-2013-11-24 12:00:00,10958.0
-2013-11-24 13:00:00,10973.0
-2013-11-24 14:00:00,10873.0
-2013-11-24 15:00:00,10792.0
-2013-11-24 16:00:00,10730.0
-2013-11-24 17:00:00,10881.0
-2013-11-24 18:00:00,11713.0
-2013-11-24 19:00:00,12513.0
-2013-11-24 20:00:00,12531.0
-2013-11-24 21:00:00,12489.0
-2013-11-24 22:00:00,12253.0
-2013-11-24 23:00:00,11939.0
-2013-11-25 00:00:00,11364.0
-2013-11-23 01:00:00,10590.0
-2013-11-23 02:00:00,10120.0
-2013-11-23 03:00:00,9881.0
-2013-11-23 04:00:00,9626.0
-2013-11-23 05:00:00,9603.0
-2013-11-23 06:00:00,9723.0
-2013-11-23 07:00:00,10072.0
-2013-11-23 08:00:00,10576.0
-2013-11-23 09:00:00,10801.0
-2013-11-23 10:00:00,11209.0
-2013-11-23 11:00:00,11453.0
-2013-11-23 12:00:00,11549.0
-2013-11-23 13:00:00,11516.0
-2013-11-23 14:00:00,11379.0
-2013-11-23 15:00:00,11158.0
-2013-11-23 16:00:00,11126.0
-2013-11-23 17:00:00,11215.0
-2013-11-23 18:00:00,11967.0
-2013-11-23 19:00:00,12658.0
-2013-11-23 20:00:00,12636.0
-2013-11-23 21:00:00,12514.0
-2013-11-23 22:00:00,12346.0
-2013-11-23 23:00:00,12067.0
-2013-11-24 00:00:00,11512.0
-2013-11-22 01:00:00,9797.0
-2013-11-22 02:00:00,9292.0
-2013-11-22 03:00:00,9011.0
-2013-11-22 04:00:00,8817.0
-2013-11-22 05:00:00,8842.0
-2013-11-22 06:00:00,9124.0
-2013-11-22 07:00:00,9875.0
-2013-11-22 08:00:00,11050.0
-2013-11-22 09:00:00,11854.0
-2013-11-22 10:00:00,12047.0
-2013-11-22 11:00:00,12195.0
-2013-11-22 12:00:00,12290.0
-2013-11-22 13:00:00,12134.0
-2013-11-22 14:00:00,11937.0
-2013-11-22 15:00:00,11963.0
-2013-11-22 16:00:00,11938.0
-2013-11-22 17:00:00,11932.0
-2013-11-22 18:00:00,12520.0
-2013-11-22 19:00:00,12961.0
-2013-11-22 20:00:00,12776.0
-2013-11-22 21:00:00,12548.0
-2013-11-22 22:00:00,12265.0
-2013-11-22 23:00:00,11903.0
-2013-11-23 00:00:00,11317.0
-2013-11-21 01:00:00,10007.0
-2013-11-21 02:00:00,9462.0
-2013-11-21 03:00:00,9161.0
-2013-11-21 04:00:00,8964.0
-2013-11-21 05:00:00,8919.0
-2013-11-21 06:00:00,9178.0
-2013-11-21 07:00:00,9913.0
-2013-11-21 08:00:00,11069.0
-2013-11-21 09:00:00,11545.0
-2013-11-21 10:00:00,11671.0
-2013-11-21 11:00:00,11710.0
-2013-11-21 12:00:00,11714.0
-2013-11-21 13:00:00,11793.0
-2013-11-21 14:00:00,11772.0
-2013-11-21 15:00:00,11838.0
-2013-11-21 16:00:00,11745.0
-2013-11-21 17:00:00,11857.0
-2013-11-21 18:00:00,12427.0
-2013-11-21 19:00:00,12634.0
-2013-11-21 20:00:00,12384.0
-2013-11-21 21:00:00,12134.0
-2013-11-21 22:00:00,11843.0
-2013-11-21 23:00:00,11283.0
-2013-11-22 00:00:00,10530.0
-2013-11-20 01:00:00,10235.0
-2013-11-20 02:00:00,9728.0
-2013-11-20 03:00:00,9447.0
-2013-11-20 04:00:00,9295.0
-2013-11-20 05:00:00,9329.0
-2013-11-20 06:00:00,9587.0
-2013-11-20 07:00:00,10388.0
-2013-11-20 08:00:00,11547.0
-2013-11-20 09:00:00,12017.0
-2013-11-20 10:00:00,12123.0
-2013-11-20 11:00:00,12103.0
-2013-11-20 12:00:00,12061.0
-2013-11-20 13:00:00,11968.0
-2013-11-20 14:00:00,11822.0
-2013-11-20 15:00:00,11843.0
-2013-11-20 16:00:00,11886.0
-2013-11-20 17:00:00,11983.0
-2013-11-20 18:00:00,12629.0
-2013-11-20 19:00:00,12990.0
-2013-11-20 20:00:00,12760.0
-2013-11-20 21:00:00,12502.0
-2013-11-20 22:00:00,12189.0
-2013-11-20 23:00:00,11615.0
-2013-11-21 00:00:00,10791.0
-2013-11-19 01:00:00,10190.0
-2013-11-19 02:00:00,9740.0
-2013-11-19 03:00:00,9497.0
-2013-11-19 04:00:00,9365.0
-2013-11-19 05:00:00,9385.0
-2013-11-19 06:00:00,9668.0
-2013-11-19 07:00:00,10489.0
-2013-11-19 08:00:00,11625.0
-2013-11-19 09:00:00,12004.0
-2013-11-19 10:00:00,12013.0
-2013-11-19 11:00:00,11987.0
-2013-11-19 12:00:00,11980.0
-2013-11-19 13:00:00,11891.0
-2013-11-19 14:00:00,11767.0
-2013-11-19 15:00:00,11763.0
-2013-11-19 16:00:00,11664.0
-2013-11-19 17:00:00,11696.0
-2013-11-19 18:00:00,12366.0
-2013-11-19 19:00:00,12964.0
-2013-11-19 20:00:00,12827.0
-2013-11-19 21:00:00,12630.0
-2013-11-19 22:00:00,12326.0
-2013-11-19 23:00:00,11795.0
-2013-11-20 00:00:00,11004.0
-2013-11-18 01:00:00,9016.0
-2013-11-18 02:00:00,8731.0
-2013-11-18 03:00:00,8564.0
-2013-11-18 04:00:00,8510.0
-2013-11-18 05:00:00,8587.0
-2013-11-18 06:00:00,8956.0
-2013-11-18 07:00:00,9790.0
-2013-11-18 08:00:00,11064.0
-2013-11-18 09:00:00,11554.0
-2013-11-18 10:00:00,11814.0
-2013-11-18 11:00:00,11890.0
-2013-11-18 12:00:00,11880.0
-2013-11-18 13:00:00,11818.0
-2013-11-18 14:00:00,11726.0
-2013-11-18 15:00:00,11693.0
-2013-11-18 16:00:00,11617.0
-2013-11-18 17:00:00,11599.0
-2013-11-18 18:00:00,12184.0
-2013-11-18 19:00:00,12887.0
-2013-11-18 20:00:00,12719.0
-2013-11-18 21:00:00,12520.0
-2013-11-18 22:00:00,12233.0
-2013-11-18 23:00:00,11716.0
-2013-11-19 00:00:00,10935.0
-2013-11-17 01:00:00,9072.0
-2013-11-17 02:00:00,8622.0
-2013-11-17 03:00:00,8293.0
-2013-11-17 04:00:00,8021.0
-2013-11-17 05:00:00,7942.0
-2013-11-17 06:00:00,7917.0
-2013-11-17 07:00:00,8040.0
-2013-11-17 08:00:00,8338.0
-2013-11-17 09:00:00,8439.0
-2013-11-17 10:00:00,8773.0
-2013-11-17 11:00:00,9122.0
-2013-11-17 12:00:00,9305.0
-2013-11-17 13:00:00,9726.0
-2013-11-17 14:00:00,9935.0
-2013-11-17 15:00:00,9693.0
-2013-11-17 16:00:00,9369.0
-2013-11-17 17:00:00,9622.0
-2013-11-17 18:00:00,10164.0
-2013-11-17 19:00:00,10692.0
-2013-11-17 20:00:00,10707.0
-2013-11-17 21:00:00,10631.0
-2013-11-17 22:00:00,10399.0
-2013-11-17 23:00:00,10034.0
-2013-11-18 00:00:00,9538.0
-2013-11-16 01:00:00,9975.0
-2013-11-16 02:00:00,9479.0
-2013-11-16 03:00:00,9097.0
-2013-11-16 04:00:00,8904.0
-2013-11-16 05:00:00,8768.0
-2013-11-16 06:00:00,8844.0
-2013-11-16 07:00:00,9131.0
-2013-11-16 08:00:00,9592.0
-2013-11-16 09:00:00,9939.0
-2013-11-16 10:00:00,10311.0
-2013-11-16 11:00:00,10612.0
-2013-11-16 12:00:00,10800.0
-2013-11-16 13:00:00,10780.0
-2013-11-16 14:00:00,10640.0
-2013-11-16 15:00:00,10499.0
-2013-11-16 16:00:00,10360.0
-2013-11-16 17:00:00,10398.0
-2013-11-16 18:00:00,10907.0
-2013-11-16 19:00:00,11181.0
-2013-11-16 20:00:00,11046.0
-2013-11-16 21:00:00,10876.0
-2013-11-16 22:00:00,10610.0
-2013-11-16 23:00:00,10204.0
-2013-11-17 00:00:00,9701.0
-2013-11-15 01:00:00,10100.0
-2013-11-15 02:00:00,9639.0
-2013-11-15 03:00:00,9361.0
-2013-11-15 04:00:00,9176.0
-2013-11-15 05:00:00,9184.0
-2013-11-15 06:00:00,9470.0
-2013-11-15 07:00:00,10198.0
-2013-11-15 08:00:00,11252.0
-2013-11-15 09:00:00,11724.0
-2013-11-15 10:00:00,11873.0
-2013-11-15 11:00:00,11873.0
-2013-11-15 12:00:00,11845.0
-2013-11-15 13:00:00,11770.0
-2013-11-15 14:00:00,11633.0
-2013-11-15 15:00:00,11648.0
-2013-11-15 16:00:00,11451.0
-2013-11-15 17:00:00,11404.0
-2013-11-15 18:00:00,11943.0
-2013-11-15 19:00:00,12488.0
-2013-11-15 20:00:00,12315.0
-2013-11-15 21:00:00,12056.0
-2013-11-15 22:00:00,11741.0
-2013-11-15 23:00:00,11344.0
-2013-11-16 00:00:00,10670.0
-2013-11-14 01:00:00,10659.0
-2013-11-14 02:00:00,10196.0
-2013-11-14 03:00:00,9889.0
-2013-11-14 04:00:00,9734.0
-2013-11-14 05:00:00,9744.0
-2013-11-14 06:00:00,10003.0
-2013-11-14 07:00:00,10725.0
-2013-11-14 08:00:00,11768.0
-2013-11-14 09:00:00,12138.0
-2013-11-14 10:00:00,12189.0
-2013-11-14 11:00:00,12170.0
-2013-11-14 12:00:00,12144.0
-2013-11-14 13:00:00,12007.0
-2013-11-14 14:00:00,11882.0
-2013-11-14 15:00:00,11850.0
-2013-11-14 16:00:00,11739.0
-2013-11-14 17:00:00,11774.0
-2013-11-14 18:00:00,12329.0
-2013-11-14 19:00:00,12909.0
-2013-11-14 20:00:00,12724.0
-2013-11-14 21:00:00,12506.0
-2013-11-14 22:00:00,12210.0
-2013-11-14 23:00:00,11643.0
-2013-11-15 00:00:00,10848.0
-2013-11-13 01:00:00,10786.0
-2013-11-13 02:00:00,10365.0
-2013-11-13 03:00:00,10132.0
-2013-11-13 04:00:00,10010.0
-2013-11-13 05:00:00,10020.0
-2013-11-13 06:00:00,10316.0
-2013-11-13 07:00:00,11085.0
-2013-11-13 08:00:00,12128.0
-2013-11-13 09:00:00,12495.0
-2013-11-13 10:00:00,12562.0
-2013-11-13 11:00:00,12564.0
-2013-11-13 12:00:00,12551.0
-2013-11-13 13:00:00,12473.0
-2013-11-13 14:00:00,12364.0
-2013-11-13 15:00:00,12292.0
-2013-11-13 16:00:00,12145.0
-2013-11-13 17:00:00,12174.0
-2013-11-13 18:00:00,12777.0
-2013-11-13 19:00:00,13513.0
-2013-11-13 20:00:00,13343.0
-2013-11-13 21:00:00,13107.0
-2013-11-13 22:00:00,12824.0
-2013-11-13 23:00:00,12281.0
-2013-11-14 00:00:00,11474.0
-2013-11-12 01:00:00,10494.0
-2013-11-12 02:00:00,10099.0
-2013-11-12 03:00:00,9840.0
-2013-11-12 04:00:00,9671.0
-2013-11-12 05:00:00,9731.0
-2013-11-12 06:00:00,10037.0
-2013-11-12 07:00:00,10797.0
-2013-11-12 08:00:00,11913.0
-2013-11-12 09:00:00,12294.0
-2013-11-12 10:00:00,12368.0
-2013-11-12 11:00:00,12381.0
-2013-11-12 12:00:00,12387.0
-2013-11-12 13:00:00,12324.0
-2013-11-12 14:00:00,12238.0
-2013-11-12 15:00:00,12189.0
-2013-11-12 16:00:00,12076.0
-2013-11-12 17:00:00,12088.0
-2013-11-12 18:00:00,12663.0
-2013-11-12 19:00:00,13432.0
-2013-11-12 20:00:00,13319.0
-2013-11-12 21:00:00,13111.0
-2013-11-12 22:00:00,12805.0
-2013-11-12 23:00:00,12275.0
-2013-11-13 00:00:00,11526.0
-2013-11-11 01:00:00,9042.0
-2013-11-11 02:00:00,8706.0
-2013-11-11 03:00:00,8521.0
-2013-11-11 04:00:00,8413.0
-2013-11-11 05:00:00,8432.0
-2013-11-11 06:00:00,8735.0
-2013-11-11 07:00:00,9487.0
-2013-11-11 08:00:00,10523.0
-2013-11-11 09:00:00,11068.0
-2013-11-11 10:00:00,11462.0
-2013-11-11 11:00:00,11682.0
-2013-11-11 12:00:00,11875.0
-2013-11-11 13:00:00,11993.0
-2013-11-11 14:00:00,12129.0
-2013-11-11 15:00:00,12243.0
-2013-11-11 16:00:00,12262.0
-2013-11-11 17:00:00,12441.0
-2013-11-11 18:00:00,12918.0
-2013-11-11 19:00:00,13326.0
-2013-11-11 20:00:00,13094.0
-2013-11-11 21:00:00,12877.0
-2013-11-11 22:00:00,12568.0
-2013-11-11 23:00:00,12027.0
-2013-11-12 00:00:00,11213.0
-2013-11-10 01:00:00,9226.0
-2013-11-10 02:00:00,8833.0
-2013-11-10 03:00:00,8590.0
-2013-11-10 04:00:00,8424.0
-2013-11-10 05:00:00,8376.0
-2013-11-10 06:00:00,8434.0
-2013-11-10 07:00:00,8618.0
-2013-11-10 08:00:00,8778.0
-2013-11-10 09:00:00,8792.0
-2013-11-10 10:00:00,9006.0
-2013-11-10 11:00:00,9173.0
-2013-11-10 12:00:00,9198.0
-2013-11-10 13:00:00,9246.0
-2013-11-10 14:00:00,9205.0
-2013-11-10 15:00:00,9144.0
-2013-11-10 16:00:00,9076.0
-2013-11-10 17:00:00,9172.0
-2013-11-10 18:00:00,9745.0
-2013-11-10 19:00:00,10618.0
-2013-11-10 20:00:00,10669.0
-2013-11-10 21:00:00,10582.0
-2013-11-10 22:00:00,10362.0
-2013-11-10 23:00:00,10029.0
-2013-11-11 00:00:00,9543.0
-2013-11-09 01:00:00,9836.0
-2013-11-09 02:00:00,9286.0
-2013-11-09 03:00:00,8954.0
-2013-11-09 04:00:00,8732.0
-2013-11-09 05:00:00,8644.0
-2013-11-09 06:00:00,8711.0
-2013-11-09 07:00:00,9033.0
-2013-11-09 08:00:00,9389.0
-2013-11-09 09:00:00,9561.0
-2013-11-09 10:00:00,9867.0
-2013-11-09 11:00:00,10023.0
-2013-11-09 12:00:00,10063.0
-2013-11-09 13:00:00,10024.0
-2013-11-09 14:00:00,9888.0
-2013-11-09 15:00:00,9741.0
-2013-11-09 16:00:00,9612.0
-2013-11-09 17:00:00,9635.0
-2013-11-09 18:00:00,10064.0
-2013-11-09 19:00:00,10796.0
-2013-11-09 20:00:00,10775.0
-2013-11-09 21:00:00,10622.0
-2013-11-09 22:00:00,10439.0
-2013-11-09 23:00:00,10158.0
-2013-11-10 00:00:00,9726.0
-2013-11-08 01:00:00,10170.0
-2013-11-08 02:00:00,9687.0
-2013-11-08 03:00:00,9361.0
-2013-11-08 04:00:00,9266.0
-2013-11-08 05:00:00,9252.0
-2013-11-08 06:00:00,9574.0
-2013-11-08 07:00:00,10312.0
-2013-11-08 08:00:00,11285.0
-2013-11-08 09:00:00,11724.0
-2013-11-08 10:00:00,11848.0
-2013-11-08 11:00:00,11835.0
-2013-11-08 12:00:00,11840.0
-2013-11-08 13:00:00,11733.0
-2013-11-08 14:00:00,11584.0
-2013-11-08 15:00:00,11549.0
-2013-11-08 16:00:00,11470.0
-2013-11-08 17:00:00,11530.0
-2013-11-08 18:00:00,11982.0
-2013-11-08 19:00:00,12534.0
-2013-11-08 20:00:00,12288.0
-2013-11-08 21:00:00,12041.0
-2013-11-08 22:00:00,11698.0
-2013-11-08 23:00:00,11238.0
-2013-11-09 00:00:00,10538.0
-2013-11-07 01:00:00,9889.0
-2013-11-07 02:00:00,9456.0
-2013-11-07 03:00:00,9211.0
-2013-11-07 04:00:00,9085.0
-2013-11-07 05:00:00,9095.0
-2013-11-07 06:00:00,9366.0
-2013-11-07 07:00:00,10141.0
-2013-11-07 08:00:00,11212.0
-2013-11-07 09:00:00,11624.0
-2013-11-07 10:00:00,11781.0
-2013-11-07 11:00:00,11789.0
-2013-11-07 12:00:00,11794.0
-2013-11-07 13:00:00,11781.0
-2013-11-07 14:00:00,11844.0
-2013-11-07 15:00:00,12005.0
-2013-11-07 16:00:00,11961.0
-2013-11-07 17:00:00,11908.0
-2013-11-07 18:00:00,12268.0
-2013-11-07 19:00:00,12917.0
-2013-11-07 20:00:00,12719.0
-2013-11-07 21:00:00,12512.0
-2013-11-07 22:00:00,12156.0
-2013-11-07 23:00:00,11617.0
-2013-11-08 00:00:00,10860.0
-2013-11-06 01:00:00,9526.0
-2013-11-06 02:00:00,9093.0
-2013-11-06 03:00:00,8775.0
-2013-11-06 04:00:00,8616.0
-2013-11-06 05:00:00,8550.0
-2013-11-06 06:00:00,8833.0
-2013-11-06 07:00:00,9533.0
-2013-11-06 08:00:00,10666.0
-2013-11-06 09:00:00,11392.0
-2013-11-06 10:00:00,11617.0
-2013-11-06 11:00:00,11712.0
-2013-11-06 12:00:00,11842.0
-2013-11-06 13:00:00,11871.0
-2013-11-06 14:00:00,11782.0
-2013-11-06 15:00:00,11815.0
-2013-11-06 16:00:00,11776.0
-2013-11-06 17:00:00,11791.0
-2013-11-06 18:00:00,12157.0
-2013-11-06 19:00:00,12607.0
-2013-11-06 20:00:00,12414.0
-2013-11-06 21:00:00,12158.0
-2013-11-06 22:00:00,11849.0
-2013-11-06 23:00:00,11342.0
-2013-11-07 00:00:00,10578.0
-2013-11-05 01:00:00,9494.0
-2013-11-05 02:00:00,8998.0
-2013-11-05 03:00:00,8728.0
-2013-11-05 04:00:00,8520.0
-2013-11-05 05:00:00,8500.0
-2013-11-05 06:00:00,8718.0
-2013-11-05 07:00:00,9435.0
-2013-11-05 08:00:00,10512.0
-2013-11-05 09:00:00,11055.0
-2013-11-05 10:00:00,11229.0
-2013-11-05 11:00:00,11360.0
-2013-11-05 12:00:00,11516.0
-2013-11-05 13:00:00,11585.0
-2013-11-05 14:00:00,11615.0
-2013-11-05 15:00:00,11650.0
-2013-11-05 16:00:00,11606.0
-2013-11-05 17:00:00,11622.0
-2013-11-05 18:00:00,12018.0
-2013-11-05 19:00:00,12444.0
-2013-11-05 20:00:00,12245.0
-2013-11-05 21:00:00,12003.0
-2013-11-05 22:00:00,11665.0
-2013-11-05 23:00:00,11049.0
-2013-11-06 00:00:00,10289.0
-2013-11-04 01:00:00,9005.0
-2013-11-04 02:00:00,8692.0
-2013-11-04 03:00:00,8546.0
-2013-11-04 04:00:00,8492.0
-2013-11-04 05:00:00,8536.0
-2013-11-04 06:00:00,8837.0
-2013-11-04 07:00:00,9681.0
-2013-11-04 08:00:00,10753.0
-2013-11-04 09:00:00,11343.0
-2013-11-04 10:00:00,11596.0
-2013-11-04 11:00:00,11612.0
-2013-11-04 12:00:00,11612.0
-2013-11-04 13:00:00,11581.0
-2013-11-04 14:00:00,11546.0
-2013-11-04 15:00:00,11475.0
-2013-11-04 16:00:00,11368.0
-2013-11-04 17:00:00,11295.0
-2013-11-04 18:00:00,11539.0
-2013-11-04 19:00:00,12224.0
-2013-11-04 20:00:00,12061.0
-2013-11-04 21:00:00,12011.0
-2013-11-04 22:00:00,11607.0
-2013-11-04 23:00:00,11047.0
-2013-11-05 00:00:00,10252.0
-2013-11-03 01:00:00,9230.0
-2013-11-03 03:00:00,8459.0
-2013-11-03 04:00:00,8336.0
-2013-11-03 05:00:00,8372.0
-2013-11-03 06:00:00,8386.0
-2013-11-03 07:00:00,8659.0
-2013-11-03 08:00:00,8813.0
-2013-11-03 09:00:00,8945.0
-2013-11-03 10:00:00,9137.0
-2013-11-03 11:00:00,9247.0
-2013-11-03 12:00:00,9287.0
-2013-11-03 13:00:00,9315.0
-2013-11-03 14:00:00,9300.0
-2013-11-03 15:00:00,9252.0
-2013-11-03 16:00:00,9227.0
-2013-11-03 17:00:00,9332.0
-2013-11-03 18:00:00,9861.0
-2013-11-03 19:00:00,10722.0
-2013-11-03 20:00:00,10819.0
-2013-11-03 21:00:00,10759.0
-2013-11-03 22:00:00,10525.0
-2013-11-03 23:00:00,10110.0
-2013-11-04 00:00:00,9555.0
-2013-11-02 01:00:00,9622.0
-2013-11-02 02:00:00,9090.0
-2013-11-02 03:00:00,8797.0
-2013-11-02 04:00:00,8577.0
-2013-11-02 05:00:00,8526.0
-2013-11-02 06:00:00,8559.0
-2013-11-02 07:00:00,8834.0
-2013-11-02 08:00:00,9358.0
-2013-11-02 09:00:00,9777.0
-2013-11-02 10:00:00,10019.0
-2013-11-02 11:00:00,10242.0
-2013-11-02 12:00:00,10343.0
-2013-11-02 13:00:00,10313.0
-2013-11-02 14:00:00,10153.0
-2013-11-02 15:00:00,10020.0
-2013-11-02 16:00:00,9888.0
-2013-11-02 17:00:00,9829.0
-2013-11-02 18:00:00,9936.0
-2013-11-02 19:00:00,10307.0
-2013-11-02 20:00:00,10768.0
-2013-11-02 21:00:00,10644.0
-2013-11-02 22:00:00,10495.0
-2013-11-02 23:00:00,10174.0
-2013-11-03 00:00:00,9726.0
-2013-11-01 01:00:00,9408.0
-2013-11-01 02:00:00,8925.0
-2013-11-01 03:00:00,8665.0
-2013-11-01 04:00:00,8475.0
-2013-11-01 05:00:00,8458.0
-2013-11-01 06:00:00,8680.0
-2013-11-01 07:00:00,9359.0
-2013-11-01 08:00:00,10526.0
-2013-11-01 09:00:00,11355.0
-2013-11-01 10:00:00,11523.0
-2013-11-01 11:00:00,11601.0
-2013-11-01 12:00:00,11703.0
-2013-11-01 13:00:00,11679.0
-2013-11-01 14:00:00,11590.0
-2013-11-01 15:00:00,11581.0
-2013-11-01 16:00:00,11508.0
-2013-11-01 17:00:00,11433.0
-2013-11-01 18:00:00,11541.0
-2013-11-01 19:00:00,11757.0
-2013-11-01 20:00:00,11920.0
-2013-11-01 21:00:00,11714.0
-2013-11-01 22:00:00,11390.0
-2013-11-01 23:00:00,10995.0
-2013-11-02 00:00:00,10317.0
-2013-10-31 01:00:00,9601.0
-2013-10-31 02:00:00,9058.0
-2013-10-31 03:00:00,8733.0
-2013-10-31 04:00:00,8580.0
-2013-10-31 05:00:00,8509.0
-2013-10-31 06:00:00,8715.0
-2013-10-31 07:00:00,9321.0
-2013-10-31 08:00:00,10494.0
-2013-10-31 09:00:00,11442.0
-2013-10-31 10:00:00,11710.0
-2013-10-31 11:00:00,11791.0
-2013-10-31 12:00:00,11870.0
-2013-10-31 13:00:00,11878.0
-2013-10-31 14:00:00,11879.0
-2013-10-31 15:00:00,11907.0
-2013-10-31 16:00:00,11840.0
-2013-10-31 17:00:00,11740.0
-2013-10-31 18:00:00,11715.0
-2013-10-31 19:00:00,11718.0
-2013-10-31 20:00:00,11879.0
-2013-10-31 21:00:00,11603.0
-2013-10-31 22:00:00,11275.0
-2013-10-31 23:00:00,10822.0
-2013-11-01 00:00:00,10119.0
-2013-10-30 01:00:00,9497.0
-2013-10-30 02:00:00,8988.0
-2013-10-30 03:00:00,8635.0
-2013-10-30 04:00:00,8457.0
-2013-10-30 05:00:00,8432.0
-2013-10-30 06:00:00,8637.0
-2013-10-30 07:00:00,9336.0
-2013-10-30 08:00:00,10556.0
-2013-10-30 09:00:00,11310.0
-2013-10-30 10:00:00,11358.0
-2013-10-30 11:00:00,11452.0
-2013-10-30 12:00:00,11550.0
-2013-10-30 13:00:00,11542.0
-2013-10-30 14:00:00,11326.0
-2013-10-30 15:00:00,11545.0
-2013-10-30 16:00:00,11495.0
-2013-10-30 17:00:00,11522.0
-2013-10-30 18:00:00,11636.0
-2013-10-30 19:00:00,12053.0
-2013-10-30 20:00:00,12189.0
-2013-10-30 21:00:00,11984.0
-2013-10-30 22:00:00,11667.0
-2013-10-30 23:00:00,11069.0
-2013-10-31 00:00:00,10300.0
-2013-10-29 01:00:00,9727.0
-2013-10-29 02:00:00,9226.0
-2013-10-29 03:00:00,8950.0
-2013-10-29 04:00:00,8779.0
-2013-10-29 05:00:00,8736.0
-2013-10-29 06:00:00,8973.0
-2013-10-29 07:00:00,9686.0
-2013-10-29 08:00:00,10846.0
-2013-10-29 09:00:00,11556.0
-2013-10-29 10:00:00,11590.0
-2013-10-29 11:00:00,11649.0
-2013-10-29 12:00:00,11701.0
-2013-10-29 13:00:00,11619.0
-2013-10-29 14:00:00,11505.0
-2013-10-29 15:00:00,11417.0
-2013-10-29 16:00:00,11275.0
-2013-10-29 17:00:00,11148.0
-2013-10-29 18:00:00,11129.0
-2013-10-29 19:00:00,11455.0
-2013-10-29 20:00:00,11981.0
-2013-10-29 21:00:00,11870.0
-2013-10-29 22:00:00,11568.0
-2013-10-29 23:00:00,11034.0
-2013-10-30 00:00:00,10263.0
-2013-10-28 01:00:00,9016.0
-2013-10-28 02:00:00,8655.0
-2013-10-28 03:00:00,8463.0
-2013-10-28 04:00:00,8369.0
-2013-10-28 05:00:00,8438.0
-2013-10-28 06:00:00,8764.0
-2013-10-28 07:00:00,9612.0
-2013-10-28 08:00:00,10893.0
-2013-10-28 09:00:00,11600.0
-2013-10-28 10:00:00,11574.0
-2013-10-28 11:00:00,11560.0
-2013-10-28 12:00:00,11625.0
-2013-10-28 13:00:00,11551.0
-2013-10-28 14:00:00,11494.0
-2013-10-28 15:00:00,11445.0
-2013-10-28 16:00:00,11314.0
-2013-10-28 17:00:00,11188.0
-2013-10-28 18:00:00,11239.0
-2013-10-28 19:00:00,11567.0
-2013-10-28 20:00:00,12153.0
-2013-10-28 21:00:00,12053.0
-2013-10-28 22:00:00,11783.0
-2013-10-28 23:00:00,11259.0
-2013-10-29 00:00:00,10491.0
-2013-10-27 01:00:00,9213.0
-2013-10-27 02:00:00,8802.0
-2013-10-27 03:00:00,8527.0
-2013-10-27 04:00:00,8425.0
-2013-10-27 05:00:00,8337.0
-2013-10-27 06:00:00,8406.0
-2013-10-27 07:00:00,8529.0
-2013-10-27 08:00:00,8883.0
-2013-10-27 09:00:00,8954.0
-2013-10-27 10:00:00,9154.0
-2013-10-27 11:00:00,9227.0
-2013-10-27 12:00:00,9297.0
-2013-10-27 13:00:00,9288.0
-2013-10-27 14:00:00,9292.0
-2013-10-27 15:00:00,9186.0
-2013-10-27 16:00:00,9131.0
-2013-10-27 17:00:00,9069.0
-2013-10-27 18:00:00,9201.0
-2013-10-27 19:00:00,9534.0
-2013-10-27 20:00:00,10409.0
-2013-10-27 21:00:00,10547.0
-2013-10-27 22:00:00,10438.0
-2013-10-27 23:00:00,10111.0
-2013-10-28 00:00:00,9607.0
-2013-10-26 01:00:00,9829.0
-2013-10-26 02:00:00,9340.0
-2013-10-26 03:00:00,8986.0
-2013-10-26 04:00:00,8823.0
-2013-10-26 05:00:00,8654.0
-2013-10-26 06:00:00,8753.0
-2013-10-26 07:00:00,8959.0
-2013-10-26 08:00:00,9471.0
-2013-10-26 09:00:00,9861.0
-2013-10-26 10:00:00,10013.0
-2013-10-26 11:00:00,10191.0
-2013-10-26 12:00:00,10206.0
-2013-10-26 13:00:00,10099.0
-2013-10-26 14:00:00,9969.0
-2013-10-26 15:00:00,9855.0
-2013-10-26 16:00:00,9731.0
-2013-10-26 17:00:00,9679.0
-2013-10-26 18:00:00,9761.0
-2013-10-26 19:00:00,9910.0
-2013-10-26 20:00:00,10571.0
-2013-10-26 21:00:00,10566.0
-2013-10-26 22:00:00,10470.0
-2013-10-26 23:00:00,10168.0
-2013-10-27 00:00:00,9711.0
-2013-10-25 01:00:00,10059.0
-2013-10-25 02:00:00,9579.0
-2013-10-25 03:00:00,9293.0
-2013-10-25 04:00:00,9204.0
-2013-10-25 05:00:00,9193.0
-2013-10-25 06:00:00,9395.0
-2013-10-25 07:00:00,10169.0
-2013-10-25 08:00:00,11397.0
-2013-10-25 09:00:00,11951.0
-2013-10-25 10:00:00,11954.0
-2013-10-25 11:00:00,11910.0
-2013-10-25 12:00:00,11841.0
-2013-10-25 13:00:00,11708.0
-2013-10-25 14:00:00,11585.0
-2013-10-25 15:00:00,11532.0
-2013-10-25 16:00:00,11354.0
-2013-10-25 17:00:00,11133.0
-2013-10-25 18:00:00,11039.0
-2013-10-25 19:00:00,11166.0
-2013-10-25 20:00:00,11781.0
-2013-10-25 21:00:00,11788.0
-2013-10-25 22:00:00,11544.0
-2013-10-25 23:00:00,11221.0
-2013-10-26 00:00:00,10559.0
-2013-10-24 01:00:00,9888.0
-2013-10-24 02:00:00,9376.0
-2013-10-24 03:00:00,9077.0
-2013-10-24 04:00:00,8916.0
-2013-10-24 05:00:00,8912.0
-2013-10-24 06:00:00,9164.0
-2013-10-24 07:00:00,9915.0
-2013-10-24 08:00:00,11183.0
-2013-10-24 09:00:00,11841.0
-2013-10-24 10:00:00,11916.0
-2013-10-24 11:00:00,11865.0
-2013-10-24 12:00:00,11849.0
-2013-10-24 13:00:00,11792.0
-2013-10-24 14:00:00,11759.0
-2013-10-24 15:00:00,11744.0
-2013-10-24 16:00:00,11613.0
-2013-10-24 17:00:00,11590.0
-2013-10-24 18:00:00,11693.0
-2013-10-24 19:00:00,11952.0
-2013-10-24 20:00:00,12355.0
-2013-10-24 21:00:00,12264.0
-2013-10-24 22:00:00,12027.0
-2013-10-24 23:00:00,11534.0
-2013-10-25 00:00:00,10789.0
-2013-10-23 01:00:00,9902.0
-2013-10-23 02:00:00,9409.0
-2013-10-23 03:00:00,9156.0
-2013-10-23 04:00:00,9010.0
-2013-10-23 05:00:00,9019.0
-2013-10-23 06:00:00,9267.0
-2013-10-23 07:00:00,10031.0
-2013-10-23 08:00:00,11247.0
-2013-10-23 09:00:00,11876.0
-2013-10-23 10:00:00,11848.0
-2013-10-23 11:00:00,11806.0
-2013-10-23 12:00:00,11791.0
-2013-10-23 13:00:00,11712.0
-2013-10-23 14:00:00,11616.0
-2013-10-23 15:00:00,11600.0
-2013-10-23 16:00:00,11609.0
-2013-10-23 17:00:00,11604.0
-2013-10-23 18:00:00,11651.0
-2013-10-23 19:00:00,11891.0
-2013-10-23 20:00:00,12345.0
-2013-10-23 21:00:00,12225.0
-2013-10-23 22:00:00,11961.0
-2013-10-23 23:00:00,11453.0
-2013-10-24 00:00:00,10634.0
-2013-10-22 01:00:00,9702.0
-2013-10-22 02:00:00,9252.0
-2013-10-22 03:00:00,9003.0
-2013-10-22 04:00:00,8831.0
-2013-10-22 05:00:00,8857.0
-2013-10-22 06:00:00,9126.0
-2013-10-22 07:00:00,9894.0
-2013-10-22 08:00:00,11176.0
-2013-10-22 09:00:00,11751.0
-2013-10-22 10:00:00,11785.0
-2013-10-22 11:00:00,11830.0
-2013-10-22 12:00:00,11821.0
-2013-10-22 13:00:00,11820.0
-2013-10-22 14:00:00,11830.0
-2013-10-22 15:00:00,11903.0
-2013-10-22 16:00:00,11863.0
-2013-10-22 17:00:00,11746.0
-2013-10-22 18:00:00,11744.0
-2013-10-22 19:00:00,11940.0
-2013-10-22 20:00:00,12374.0
-2013-10-22 21:00:00,12255.0
-2013-10-22 22:00:00,11970.0
-2013-10-22 23:00:00,11413.0
-2013-10-23 00:00:00,10639.0
-2013-10-21 01:00:00,8691.0
-2013-10-21 02:00:00,8327.0
-2013-10-21 03:00:00,8058.0
-2013-10-21 04:00:00,7974.0
-2013-10-21 05:00:00,7984.0
-2013-10-21 06:00:00,8255.0
-2013-10-21 07:00:00,9012.0
-2013-10-21 08:00:00,10315.0
-2013-10-21 09:00:00,11072.0
-2013-10-21 10:00:00,11244.0
-2013-10-21 11:00:00,11331.0
-2013-10-21 12:00:00,11434.0
-2013-10-21 13:00:00,11408.0
-2013-10-21 14:00:00,11388.0
-2013-10-21 15:00:00,11377.0
-2013-10-21 16:00:00,11268.0
-2013-10-21 17:00:00,11130.0
-2013-10-21 18:00:00,11086.0
-2013-10-21 19:00:00,11257.0
-2013-10-21 20:00:00,11929.0
-2013-10-21 21:00:00,12028.0
-2013-10-21 22:00:00,11795.0
-2013-10-21 23:00:00,11264.0
-2013-10-22 00:00:00,10479.0
-2013-10-20 01:00:00,9014.0
-2013-10-20 02:00:00,8542.0
-2013-10-20 03:00:00,8275.0
-2013-10-20 04:00:00,8078.0
-2013-10-20 05:00:00,8000.0
-2013-10-20 06:00:00,7991.0
-2013-10-20 07:00:00,8151.0
-2013-10-20 08:00:00,8435.0
-2013-10-20 09:00:00,8512.0
-2013-10-20 10:00:00,8783.0
-2013-10-20 11:00:00,8952.0
-2013-10-20 12:00:00,9090.0
-2013-10-20 13:00:00,9169.0
-2013-10-20 14:00:00,9199.0
-2013-10-20 15:00:00,9160.0
-2013-10-20 16:00:00,9146.0
-2013-10-20 17:00:00,9125.0
-2013-10-20 18:00:00,9233.0
-2013-10-20 19:00:00,9641.0
-2013-10-20 20:00:00,10336.0
-2013-10-20 21:00:00,10387.0
-2013-10-20 22:00:00,10198.0
-2013-10-20 23:00:00,9816.0
-2013-10-21 00:00:00,9250.0
-2013-10-19 01:00:00,9552.0
-2013-10-19 02:00:00,9023.0
-2013-10-19 03:00:00,8679.0
-2013-10-19 04:00:00,8468.0
-2013-10-19 05:00:00,8368.0
-2013-10-19 06:00:00,8367.0
-2013-10-19 07:00:00,8640.0
-2013-10-19 08:00:00,9163.0
-2013-10-19 09:00:00,9440.0
-2013-10-19 10:00:00,9649.0
-2013-10-19 11:00:00,9872.0
-2013-10-19 12:00:00,9881.0
-2013-10-19 13:00:00,9819.0
-2013-10-19 14:00:00,9725.0
-2013-10-19 15:00:00,9610.0
-2013-10-19 16:00:00,9546.0
-2013-10-19 17:00:00,9467.0
-2013-10-19 18:00:00,9603.0
-2013-10-19 19:00:00,9872.0
-2013-10-19 20:00:00,10457.0
-2013-10-19 21:00:00,10461.0
-2013-10-19 22:00:00,10282.0
-2013-10-19 23:00:00,10038.0
-2013-10-20 00:00:00,9513.0
-2013-10-18 01:00:00,9500.0
-2013-10-18 02:00:00,8995.0
-2013-10-18 03:00:00,8676.0
-2013-10-18 04:00:00,8468.0
-2013-10-18 05:00:00,8429.0
-2013-10-18 06:00:00,8669.0
-2013-10-18 07:00:00,9335.0
-2013-10-18 08:00:00,10513.0
-2013-10-18 09:00:00,11078.0
-2013-10-18 10:00:00,11241.0
-2013-10-18 11:00:00,11426.0
-2013-10-18 12:00:00,11573.0
-2013-10-18 13:00:00,11602.0
-2013-10-18 14:00:00,11524.0
-2013-10-18 15:00:00,11497.0
-2013-10-18 16:00:00,11353.0
-2013-10-18 17:00:00,11257.0
-2013-10-18 18:00:00,11248.0
-2013-10-18 19:00:00,11394.0
-2013-10-18 20:00:00,11764.0
-2013-10-18 21:00:00,11603.0
-2013-10-18 22:00:00,11337.0
-2013-10-18 23:00:00,10928.0
-2013-10-19 00:00:00,10273.0
-2013-10-17 01:00:00,9329.0
-2013-10-17 02:00:00,8811.0
-2013-10-17 03:00:00,8515.0
-2013-10-17 04:00:00,8311.0
-2013-10-17 05:00:00,8257.0
-2013-10-17 06:00:00,8468.0
-2013-10-17 07:00:00,9131.0
-2013-10-17 08:00:00,10306.0
-2013-10-17 09:00:00,11093.0
-2013-10-17 10:00:00,11287.0
-2013-10-17 11:00:00,11403.0
-2013-10-17 12:00:00,11519.0
-2013-10-17 13:00:00,11500.0
-2013-10-17 14:00:00,11386.0
-2013-10-17 15:00:00,11350.0
-2013-10-17 16:00:00,11283.0
-2013-10-17 17:00:00,11177.0
-2013-10-17 18:00:00,11115.0
-2013-10-17 19:00:00,11069.0
-2013-10-17 20:00:00,11620.0
-2013-10-17 21:00:00,11743.0
-2013-10-17 22:00:00,11497.0
-2013-10-17 23:00:00,10977.0
-2013-10-18 00:00:00,10268.0
-2013-10-16 01:00:00,9286.0
-2013-10-16 02:00:00,8747.0
-2013-10-16 03:00:00,8421.0
-2013-10-16 04:00:00,8238.0
-2013-10-16 05:00:00,8200.0
-2013-10-16 06:00:00,8414.0
-2013-10-16 07:00:00,9056.0
-2013-10-16 08:00:00,10223.0
-2013-10-16 09:00:00,10935.0
-2013-10-16 10:00:00,11120.0
-2013-10-16 11:00:00,11264.0
-2013-10-16 12:00:00,11386.0
-2013-10-16 13:00:00,11360.0
-2013-10-16 14:00:00,11277.0
-2013-10-16 15:00:00,11331.0
-2013-10-16 16:00:00,11281.0
-2013-10-16 17:00:00,11210.0
-2013-10-16 18:00:00,11198.0
-2013-10-16 19:00:00,11394.0
-2013-10-16 20:00:00,11846.0
-2013-10-16 21:00:00,11777.0
-2013-10-16 22:00:00,11467.0
-2013-10-16 23:00:00,10898.0
-2013-10-17 00:00:00,10086.0
-2013-10-15 01:00:00,9308.0
-2013-10-15 02:00:00,8785.0
-2013-10-15 03:00:00,8461.0
-2013-10-15 04:00:00,8242.0
-2013-10-15 05:00:00,8195.0
-2013-10-15 06:00:00,8372.0
-2013-10-15 07:00:00,9024.0
-2013-10-15 08:00:00,10175.0
-2013-10-15 09:00:00,10905.0
-2013-10-15 10:00:00,11131.0
-2013-10-15 11:00:00,11282.0
-2013-10-15 12:00:00,11529.0
-2013-10-15 13:00:00,11627.0
-2013-10-15 14:00:00,11715.0
-2013-10-15 15:00:00,11848.0
-2013-10-15 16:00:00,11794.0
-2013-10-15 17:00:00,11723.0
-2013-10-15 18:00:00,11673.0
-2013-10-15 19:00:00,11627.0
-2013-10-15 20:00:00,11998.0
-2013-10-15 21:00:00,12055.0
-2013-10-15 22:00:00,11667.0
-2013-10-15 23:00:00,10940.0
-2013-10-16 00:00:00,10066.0
-2013-10-14 01:00:00,8467.0
-2013-10-14 02:00:00,8100.0
-2013-10-14 03:00:00,7931.0
-2013-10-14 04:00:00,7806.0
-2013-10-14 05:00:00,7809.0
-2013-10-14 06:00:00,8016.0
-2013-10-14 07:00:00,8681.0
-2013-10-14 08:00:00,9650.0
-2013-10-14 09:00:00,10225.0
-2013-10-14 10:00:00,10569.0
-2013-10-14 11:00:00,10811.0
-2013-10-14 12:00:00,11108.0
-2013-10-14 13:00:00,11188.0
-2013-10-14 14:00:00,11189.0
-2013-10-14 15:00:00,11273.0
-2013-10-14 16:00:00,11215.0
-2013-10-14 17:00:00,11139.0
-2013-10-14 18:00:00,11063.0
-2013-10-14 19:00:00,11009.0
-2013-10-14 20:00:00,11487.0
-2013-10-14 21:00:00,11648.0
-2013-10-14 22:00:00,11345.0
-2013-10-14 23:00:00,10861.0
-2013-10-15 00:00:00,10081.0
-2013-10-13 01:00:00,8721.0
-2013-10-13 02:00:00,8300.0
-2013-10-13 03:00:00,7916.0
-2013-10-13 04:00:00,7742.0
-2013-10-13 05:00:00,7604.0
-2013-10-13 06:00:00,7618.0
-2013-10-13 07:00:00,7676.0
-2013-10-13 08:00:00,7910.0
-2013-10-13 09:00:00,7874.0
-2013-10-13 10:00:00,8207.0
-2013-10-13 11:00:00,8519.0
-2013-10-13 12:00:00,8779.0
-2013-10-13 13:00:00,8874.0
-2013-10-13 14:00:00,8911.0
-2013-10-13 15:00:00,8919.0
-2013-10-13 16:00:00,8984.0
-2013-10-13 17:00:00,8951.0
-2013-10-13 18:00:00,9002.0
-2013-10-13 19:00:00,9165.0
-2013-10-13 20:00:00,9705.0
-2013-10-13 21:00:00,9998.0
-2013-10-13 22:00:00,9804.0
-2013-10-13 23:00:00,9492.0
-2013-10-14 00:00:00,9013.0
-2013-10-12 01:00:00,9558.0
-2013-10-12 02:00:00,8901.0
-2013-10-12 03:00:00,8558.0
-2013-10-12 04:00:00,8281.0
-2013-10-12 05:00:00,8216.0
-2013-10-12 06:00:00,8180.0
-2013-10-12 07:00:00,8426.0
-2013-10-12 08:00:00,8816.0
-2013-10-12 09:00:00,9046.0
-2013-10-12 10:00:00,9529.0
-2013-10-12 11:00:00,9991.0
-2013-10-12 12:00:00,10378.0
-2013-10-12 13:00:00,10516.0
-2013-10-12 14:00:00,10465.0
-2013-10-12 15:00:00,10406.0
-2013-10-12 16:00:00,10275.0
-2013-10-12 17:00:00,10184.0
-2013-10-12 18:00:00,10202.0
-2013-10-12 19:00:00,10144.0
-2013-10-12 20:00:00,10521.0
-2013-10-12 21:00:00,10641.0
-2013-10-12 22:00:00,10358.0
-2013-10-12 23:00:00,9931.0
-2013-10-13 00:00:00,9366.0
-2013-10-11 01:00:00,9537.0
-2013-10-11 02:00:00,8944.0
-2013-10-11 03:00:00,8575.0
-2013-10-11 04:00:00,8323.0
-2013-10-11 05:00:00,8260.0
-2013-10-11 06:00:00,8398.0
-2013-10-11 07:00:00,8989.0
-2013-10-11 08:00:00,10052.0
-2013-10-11 09:00:00,10619.0
-2013-10-11 10:00:00,11022.0
-2013-10-11 11:00:00,11398.0
-2013-10-11 12:00:00,11771.0
-2013-10-11 13:00:00,11995.0
-2013-10-11 14:00:00,12179.0
-2013-10-11 15:00:00,12348.0
-2013-10-11 16:00:00,12323.0
-2013-10-11 17:00:00,12192.0
-2013-10-11 18:00:00,12016.0
-2013-10-11 19:00:00,11716.0
-2013-10-11 20:00:00,11833.0
-2013-10-11 21:00:00,11900.0
-2013-10-11 22:00:00,11549.0
-2013-10-11 23:00:00,11079.0
-2013-10-12 00:00:00,10288.0
-2013-10-10 01:00:00,9374.0
-2013-10-10 02:00:00,8822.0
-2013-10-10 03:00:00,8477.0
-2013-10-10 04:00:00,8271.0
-2013-10-10 05:00:00,8184.0
-2013-10-10 06:00:00,8349.0
-2013-10-10 07:00:00,9005.0
-2013-10-10 08:00:00,10099.0
-2013-10-10 09:00:00,10621.0
-2013-10-10 10:00:00,10939.0
-2013-10-10 11:00:00,11294.0
-2013-10-10 12:00:00,11693.0
-2013-10-10 13:00:00,11921.0
-2013-10-10 14:00:00,12054.0
-2013-10-10 15:00:00,12211.0
-2013-10-10 16:00:00,12252.0
-2013-10-10 17:00:00,12187.0
-2013-10-10 18:00:00,12061.0
-2013-10-10 19:00:00,11860.0
-2013-10-10 20:00:00,11992.0
-2013-10-10 21:00:00,12173.0
-2013-10-10 22:00:00,11812.0
-2013-10-10 23:00:00,11208.0
-2013-10-11 00:00:00,10354.0
-2013-10-09 01:00:00,9527.0
-2013-10-09 02:00:00,8928.0
-2013-10-09 03:00:00,8552.0
-2013-10-09 04:00:00,8340.0
-2013-10-09 05:00:00,8285.0
-2013-10-09 06:00:00,8430.0
-2013-10-09 07:00:00,9057.0
-2013-10-09 08:00:00,10125.0
-2013-10-09 09:00:00,10634.0
-2013-10-09 10:00:00,10987.0
-2013-10-09 11:00:00,11294.0
-2013-10-09 12:00:00,11620.0
-2013-10-09 13:00:00,11781.0
-2013-10-09 14:00:00,11887.0
-2013-10-09 15:00:00,12058.0
-2013-10-09 16:00:00,12059.0
-2013-10-09 17:00:00,11992.0
-2013-10-09 18:00:00,11897.0
-2013-10-09 19:00:00,11696.0
-2013-10-09 20:00:00,11816.0
-2013-10-09 21:00:00,11999.0
-2013-10-09 22:00:00,11645.0
-2013-10-09 23:00:00,11061.0
-2013-10-10 00:00:00,10217.0
-2013-10-08 01:00:00,9259.0
-2013-10-08 02:00:00,8724.0
-2013-10-08 03:00:00,8429.0
-2013-10-08 04:00:00,8218.0
-2013-10-08 05:00:00,8170.0
-2013-10-08 06:00:00,8367.0
-2013-10-08 07:00:00,9048.0
-2013-10-08 08:00:00,10167.0
-2013-10-08 09:00:00,10693.0
-2013-10-08 10:00:00,10952.0
-2013-10-08 11:00:00,11240.0
-2013-10-08 12:00:00,11572.0
-2013-10-08 13:00:00,11787.0
-2013-10-08 14:00:00,11945.0
-2013-10-08 15:00:00,12149.0
-2013-10-08 16:00:00,12207.0
-2013-10-08 17:00:00,12182.0
-2013-10-08 18:00:00,12112.0
-2013-10-08 19:00:00,11919.0
-2013-10-08 20:00:00,12038.0
-2013-10-08 21:00:00,12213.0
-2013-10-08 22:00:00,11850.0
-2013-10-08 23:00:00,11218.0
-2013-10-09 00:00:00,10339.0
-2013-10-07 01:00:00,8547.0
-2013-10-07 02:00:00,8169.0
-2013-10-07 03:00:00,7957.0
-2013-10-07 04:00:00,7901.0
-2013-10-07 05:00:00,7883.0
-2013-10-07 06:00:00,8135.0
-2013-10-07 07:00:00,8840.0
-2013-10-07 08:00:00,10020.0
-2013-10-07 09:00:00,10698.0
-2013-10-07 10:00:00,10978.0
-2013-10-07 11:00:00,11057.0
-2013-10-07 12:00:00,11143.0
-2013-10-07 13:00:00,11252.0
-2013-10-07 14:00:00,11337.0
-2013-10-07 15:00:00,11451.0
-2013-10-07 16:00:00,11489.0
-2013-10-07 17:00:00,11428.0
-2013-10-07 18:00:00,11372.0
-2013-10-07 19:00:00,11285.0
-2013-10-07 20:00:00,11506.0
-2013-10-07 21:00:00,11774.0
-2013-10-07 22:00:00,11468.0
-2013-10-07 23:00:00,10888.0
-2013-10-08 00:00:00,10074.0
-2013-10-06 01:00:00,10248.0
-2013-10-06 02:00:00,9543.0
-2013-10-06 03:00:00,8908.0
-2013-10-06 04:00:00,8463.0
-2013-10-06 05:00:00,8201.0
-2013-10-06 06:00:00,8046.0
-2013-10-06 07:00:00,8073.0
-2013-10-06 08:00:00,8241.0
-2013-10-06 09:00:00,8245.0
-2013-10-06 10:00:00,8579.0
-2013-10-06 11:00:00,8890.0
-2013-10-06 12:00:00,9148.0
-2013-10-06 13:00:00,9354.0
-2013-10-06 14:00:00,9499.0
-2013-10-06 15:00:00,9492.0
-2013-10-06 16:00:00,9421.0
-2013-10-06 17:00:00,9369.0
-2013-10-06 18:00:00,9483.0
-2013-10-06 19:00:00,9708.0
-2013-10-06 20:00:00,10082.0
-2013-10-06 21:00:00,10209.0
-2013-10-06 22:00:00,10015.0
-2013-10-06 23:00:00,9623.0
-2013-10-07 00:00:00,9118.0
-2013-10-05 01:00:00,10570.0
-2013-10-05 02:00:00,9832.0
-2013-10-05 03:00:00,9392.0
-2013-10-05 04:00:00,9098.0
-2013-10-05 05:00:00,8973.0
-2013-10-05 06:00:00,8978.0
-2013-10-05 07:00:00,9206.0
-2013-10-05 08:00:00,9692.0
-2013-10-05 09:00:00,9989.0
-2013-10-05 10:00:00,10718.0
-2013-10-05 11:00:00,11288.0
-2013-10-05 12:00:00,11799.0
-2013-10-05 13:00:00,12175.0
-2013-10-05 14:00:00,12474.0
-2013-10-05 15:00:00,12662.0
-2013-10-05 16:00:00,12851.0
-2013-10-05 17:00:00,12796.0
-2013-10-05 18:00:00,12621.0
-2013-10-05 19:00:00,12316.0
-2013-10-05 20:00:00,12389.0
-2013-10-05 21:00:00,12385.0
-2013-10-05 22:00:00,12102.0
-2013-10-05 23:00:00,11665.0
-2013-10-06 00:00:00,11037.0
-2013-10-04 01:00:00,10702.0
-2013-10-04 02:00:00,10067.0
-2013-10-04 03:00:00,9486.0
-2013-10-04 04:00:00,9179.0
-2013-10-04 05:00:00,9030.0
-2013-10-04 06:00:00,9211.0
-2013-10-04 07:00:00,9900.0
-2013-10-04 08:00:00,11114.0
-2013-10-04 09:00:00,11797.0
-2013-10-04 10:00:00,12364.0
-2013-10-04 11:00:00,12838.0
-2013-10-04 12:00:00,13181.0
-2013-10-04 13:00:00,13272.0
-2013-10-04 14:00:00,13381.0
-2013-10-04 15:00:00,13563.0
-2013-10-04 16:00:00,13494.0
-2013-10-04 17:00:00,13387.0
-2013-10-04 18:00:00,13254.0
-2013-10-04 19:00:00,13104.0
-2013-10-04 20:00:00,13186.0
-2013-10-04 21:00:00,13275.0
-2013-10-04 22:00:00,12836.0
-2013-10-04 23:00:00,12255.0
-2013-10-05 00:00:00,11422.0
-2013-10-03 01:00:00,10141.0
-2013-10-03 02:00:00,9463.0
-2013-10-03 03:00:00,9083.0
-2013-10-03 04:00:00,8874.0
-2013-10-03 05:00:00,8814.0
-2013-10-03 06:00:00,9025.0
-2013-10-03 07:00:00,9775.0
-2013-10-03 08:00:00,11126.0
-2013-10-03 09:00:00,11912.0
-2013-10-03 10:00:00,12412.0
-2013-10-03 11:00:00,12755.0
-2013-10-03 12:00:00,13019.0
-2013-10-03 13:00:00,12985.0
-2013-10-03 14:00:00,13065.0
-2013-10-03 15:00:00,13293.0
-2013-10-03 16:00:00,13539.0
-2013-10-03 17:00:00,13689.0
-2013-10-03 18:00:00,13595.0
-2013-10-03 19:00:00,13451.0
-2013-10-03 20:00:00,13457.0
-2013-10-03 21:00:00,13650.0
-2013-10-03 22:00:00,13321.0
-2013-10-03 23:00:00,12582.0
-2013-10-04 00:00:00,11610.0
-2013-10-02 01:00:00,10453.0
-2013-10-02 02:00:00,9818.0
-2013-10-02 03:00:00,9349.0
-2013-10-02 04:00:00,9055.0
-2013-10-02 05:00:00,8943.0
-2013-10-02 06:00:00,9128.0
-2013-10-02 07:00:00,9758.0
-2013-10-02 08:00:00,10864.0
-2013-10-02 09:00:00,11438.0
-2013-10-02 10:00:00,11870.0
-2013-10-02 11:00:00,12318.0
-2013-10-02 12:00:00,12668.0
-2013-10-02 13:00:00,12893.0
-2013-10-02 14:00:00,13080.0
-2013-10-02 15:00:00,13347.0
-2013-10-02 16:00:00,13483.0
-2013-10-02 17:00:00,13521.0
-2013-10-02 18:00:00,13357.0
-2013-10-02 19:00:00,12987.0
-2013-10-02 20:00:00,12748.0
-2013-10-02 21:00:00,12956.0
-2013-10-02 22:00:00,12606.0
-2013-10-02 23:00:00,11937.0
-2013-10-03 00:00:00,11001.0
-2013-10-01 01:00:00,9678.0
-2013-10-01 02:00:00,9126.0
-2013-10-01 03:00:00,8750.0
-2013-10-01 04:00:00,8577.0
-2013-10-01 05:00:00,8499.0
-2013-10-01 06:00:00,8701.0
-2013-10-01 07:00:00,9387.0
-2013-10-01 08:00:00,10613.0
-2013-10-01 09:00:00,11353.0
-2013-10-01 10:00:00,11779.0
-2013-10-01 11:00:00,12050.0
-2013-10-01 12:00:00,12296.0
-2013-10-01 13:00:00,12374.0
-2013-10-01 14:00:00,12483.0
-2013-10-01 15:00:00,12800.0
-2013-10-01 16:00:00,13034.0
-2013-10-01 17:00:00,13189.0
-2013-10-01 18:00:00,13243.0
-2013-10-01 19:00:00,13104.0
-2013-10-01 20:00:00,12974.0
-2013-10-01 21:00:00,13295.0
-2013-10-01 22:00:00,12986.0
-2013-10-01 23:00:00,12290.0
-2013-10-02 00:00:00,11387.0
-2013-09-30 01:00:00,8653.0
-2013-09-30 02:00:00,8268.0
-2013-09-30 03:00:00,8039.0
-2013-09-30 04:00:00,7947.0
-2013-09-30 05:00:00,7891.0
-2013-09-30 06:00:00,8137.0
-2013-09-30 07:00:00,8815.0
-2013-09-30 08:00:00,9966.0
-2013-09-30 09:00:00,10560.0
-2013-09-30 10:00:00,10977.0
-2013-09-30 11:00:00,11356.0
-2013-09-30 12:00:00,11750.0
-2013-09-30 13:00:00,11894.0
-2013-09-30 14:00:00,11997.0
-2013-09-30 15:00:00,12201.0
-2013-09-30 16:00:00,12262.0
-2013-09-30 17:00:00,12272.0
-2013-09-30 18:00:00,12205.0
-2013-09-30 19:00:00,12040.0
-2013-09-30 20:00:00,11968.0
-2013-09-30 21:00:00,12275.0
-2013-09-30 22:00:00,11930.0
-2013-09-30 23:00:00,11368.0
-2013-10-01 00:00:00,10513.0
-2013-09-29 01:00:00,10212.0
-2013-09-29 02:00:00,9600.0
-2013-09-29 03:00:00,9045.0
-2013-09-29 04:00:00,8533.0
-2013-09-29 05:00:00,8158.0
-2013-09-29 06:00:00,8041.0
-2013-09-29 07:00:00,8029.0
-2013-09-29 08:00:00,8112.0
-2013-09-29 09:00:00,8095.0
-2013-09-29 10:00:00,8567.0
-2013-09-29 11:00:00,8960.0
-2013-09-29 12:00:00,9360.0
-2013-09-29 13:00:00,9545.0
-2013-09-29 14:00:00,9787.0
-2013-09-29 15:00:00,9802.0
-2013-09-29 16:00:00,9915.0
-2013-09-29 17:00:00,9897.0
-2013-09-29 18:00:00,9948.0
-2013-09-29 19:00:00,9887.0
-2013-09-29 20:00:00,10061.0
-2013-09-29 21:00:00,10481.0
-2013-09-29 22:00:00,10277.0
-2013-09-29 23:00:00,9845.0
-2013-09-30 00:00:00,9298.0
-2013-09-28 01:00:00,9803.0
-2013-09-28 02:00:00,9175.0
-2013-09-28 03:00:00,8708.0
-2013-09-28 04:00:00,8455.0
-2013-09-28 05:00:00,8261.0
-2013-09-28 06:00:00,8283.0
-2013-09-28 07:00:00,8454.0
-2013-09-28 08:00:00,8806.0
-2013-09-28 09:00:00,9053.0
-2013-09-28 10:00:00,9628.0
-2013-09-28 11:00:00,10219.0
-2013-09-28 12:00:00,10671.0
-2013-09-28 13:00:00,11046.0
-2013-09-28 14:00:00,11366.0
-2013-09-28 15:00:00,11628.0
-2013-09-28 16:00:00,11809.0
-2013-09-28 17:00:00,11801.0
-2013-09-28 18:00:00,11743.0
-2013-09-28 19:00:00,11503.0
-2013-09-28 20:00:00,11724.0
-2013-09-28 21:00:00,11995.0
-2013-09-28 22:00:00,11895.0
-2013-09-28 23:00:00,11537.0
-2013-09-29 00:00:00,10948.0
-2013-09-27 01:00:00,9646.0
-2013-09-27 02:00:00,9007.0
-2013-09-27 03:00:00,8630.0
-2013-09-27 04:00:00,8377.0
-2013-09-27 05:00:00,8275.0
-2013-09-27 06:00:00,8415.0
-2013-09-27 07:00:00,9036.0
-2013-09-27 08:00:00,10032.0
-2013-09-27 09:00:00,10580.0
-2013-09-27 10:00:00,11098.0
-2013-09-27 11:00:00,11582.0
-2013-09-27 12:00:00,12008.0
-2013-09-27 13:00:00,12342.0
-2013-09-27 14:00:00,12610.0
-2013-09-27 15:00:00,12908.0
-2013-09-27 16:00:00,13035.0
-2013-09-27 17:00:00,13100.0
-2013-09-27 18:00:00,13021.0
-2013-09-27 19:00:00,12667.0
-2013-09-27 20:00:00,12308.0
-2013-09-27 21:00:00,12475.0
-2013-09-27 22:00:00,12055.0
-2013-09-27 23:00:00,11471.0
-2013-09-28 00:00:00,10689.0
-2013-09-26 01:00:00,9471.0
-2013-09-26 02:00:00,8916.0
-2013-09-26 03:00:00,8588.0
-2013-09-26 04:00:00,8354.0
-2013-09-26 05:00:00,8274.0
-2013-09-26 06:00:00,8430.0
-2013-09-26 07:00:00,9080.0
-2013-09-26 08:00:00,10108.0
-2013-09-26 09:00:00,10632.0
-2013-09-26 10:00:00,11132.0
-2013-09-26 11:00:00,11522.0
-2013-09-26 12:00:00,11882.0
-2013-09-26 13:00:00,12077.0
-2013-09-26 14:00:00,12223.0
-2013-09-26 15:00:00,12411.0
-2013-09-26 16:00:00,12521.0
-2013-09-26 17:00:00,12577.0
-2013-09-26 18:00:00,12509.0
-2013-09-26 19:00:00,12241.0
-2013-09-26 20:00:00,12013.0
-2013-09-26 21:00:00,12330.0
-2013-09-26 22:00:00,11989.0
-2013-09-26 23:00:00,11384.0
-2013-09-27 00:00:00,10459.0
-2013-09-25 01:00:00,9379.0
-2013-09-25 02:00:00,8810.0
-2013-09-25 03:00:00,8456.0
-2013-09-25 04:00:00,8266.0
-2013-09-25 05:00:00,8181.0
-2013-09-25 06:00:00,8385.0
-2013-09-25 07:00:00,9012.0
-2013-09-25 08:00:00,10038.0
-2013-09-25 09:00:00,10574.0
-2013-09-25 10:00:00,11011.0
-2013-09-25 11:00:00,11416.0
-2013-09-25 12:00:00,11730.0
-2013-09-25 13:00:00,11862.0
-2013-09-25 14:00:00,11954.0
-2013-09-25 15:00:00,12098.0
-2013-09-25 16:00:00,12145.0
-2013-09-25 17:00:00,12122.0
-2013-09-25 18:00:00,12027.0
-2013-09-25 19:00:00,11791.0
-2013-09-25 20:00:00,11576.0
-2013-09-25 21:00:00,11992.0
-2013-09-25 22:00:00,11699.0
-2013-09-25 23:00:00,11091.0
-2013-09-26 00:00:00,10260.0
-2013-09-24 01:00:00,9297.0
-2013-09-24 02:00:00,8749.0
-2013-09-24 03:00:00,8399.0
-2013-09-24 04:00:00,8203.0
-2013-09-24 05:00:00,8137.0
-2013-09-24 06:00:00,8281.0
-2013-09-24 07:00:00,8903.0
-2013-09-24 08:00:00,9938.0
-2013-09-24 09:00:00,10454.0
-2013-09-24 10:00:00,10829.0
-2013-09-24 11:00:00,11137.0
-2013-09-24 12:00:00,11489.0
-2013-09-24 13:00:00,11702.0
-2013-09-24 14:00:00,11781.0
-2013-09-24 15:00:00,11949.0
-2013-09-24 16:00:00,12002.0
-2013-09-24 17:00:00,11936.0
-2013-09-24 18:00:00,11851.0
-2013-09-24 19:00:00,11598.0
-2013-09-24 20:00:00,11422.0
-2013-09-24 21:00:00,11844.0
-2013-09-24 22:00:00,11600.0
-2013-09-24 23:00:00,10997.0
-2013-09-25 00:00:00,10156.0
-2013-09-23 01:00:00,8578.0
-2013-09-23 02:00:00,8152.0
-2013-09-23 03:00:00,7940.0
-2013-09-23 04:00:00,7830.0
-2013-09-23 05:00:00,7862.0
-2013-09-23 06:00:00,8062.0
-2013-09-23 07:00:00,8777.0
-2013-09-23 08:00:00,9842.0
-2013-09-23 09:00:00,10385.0
-2013-09-23 10:00:00,10706.0
-2013-09-23 11:00:00,11008.0
-2013-09-23 12:00:00,11273.0
-2013-09-23 13:00:00,11437.0
-2013-09-23 14:00:00,11519.0
-2013-09-23 15:00:00,11657.0
-2013-09-23 16:00:00,11698.0
-2013-09-23 17:00:00,11664.0
-2013-09-23 18:00:00,11589.0
-2013-09-23 19:00:00,11422.0
-2013-09-23 20:00:00,11314.0
-2013-09-23 21:00:00,11757.0
-2013-09-23 22:00:00,11502.0
-2013-09-23 23:00:00,10923.0
-2013-09-24 00:00:00,10113.0
-2013-09-22 01:00:00,8727.0
-2013-09-22 02:00:00,8215.0
-2013-09-22 03:00:00,7925.0
-2013-09-22 04:00:00,7686.0
-2013-09-22 05:00:00,7580.0
-2013-09-22 06:00:00,7549.0
-2013-09-22 07:00:00,7650.0
-2013-09-22 08:00:00,7722.0
-2013-09-22 09:00:00,7837.0
-2013-09-22 10:00:00,8270.0
-2013-09-22 11:00:00,8704.0
-2013-09-22 12:00:00,8998.0
-2013-09-22 13:00:00,9205.0
-2013-09-22 14:00:00,9291.0
-2013-09-22 15:00:00,9378.0
-2013-09-22 16:00:00,9387.0
-2013-09-22 17:00:00,9481.0
-2013-09-22 18:00:00,9490.0
-2013-09-22 19:00:00,9555.0
-2013-09-22 20:00:00,9660.0
-2013-09-22 21:00:00,10262.0
-2013-09-22 22:00:00,10137.0
-2013-09-22 23:00:00,9741.0
-2013-09-23 00:00:00,9186.0
-2013-09-21 01:00:00,9809.0
-2013-09-21 02:00:00,9237.0
-2013-09-21 03:00:00,8773.0
-2013-09-21 04:00:00,8512.0
-2013-09-21 05:00:00,8346.0
-2013-09-21 06:00:00,8336.0
-2013-09-21 07:00:00,8545.0
-2013-09-21 08:00:00,8799.0
-2013-09-21 09:00:00,8976.0
-2013-09-21 10:00:00,9484.0
-2013-09-21 11:00:00,9899.0
-2013-09-21 12:00:00,10151.0
-2013-09-21 13:00:00,10245.0
-2013-09-21 14:00:00,10258.0
-2013-09-21 15:00:00,10140.0
-2013-09-21 16:00:00,10073.0
-2013-09-21 17:00:00,9979.0
-2013-09-21 18:00:00,9947.0
-2013-09-21 19:00:00,9826.0
-2013-09-21 20:00:00,9808.0
-2013-09-21 21:00:00,10269.0
-2013-09-21 22:00:00,10152.0
-2013-09-21 23:00:00,9827.0
-2013-09-22 00:00:00,9287.0
-2013-09-20 01:00:00,12274.0
-2013-09-20 02:00:00,11342.0
-2013-09-20 03:00:00,10579.0
-2013-09-20 04:00:00,10017.0
-2013-09-20 05:00:00,9801.0
-2013-09-20 06:00:00,9883.0
-2013-09-20 07:00:00,10564.0
-2013-09-20 08:00:00,11762.0
-2013-09-20 09:00:00,12435.0
-2013-09-20 10:00:00,12855.0
-2013-09-20 11:00:00,13151.0
-2013-09-20 12:00:00,13455.0
-2013-09-20 13:00:00,13727.0
-2013-09-20 14:00:00,13929.0
-2013-09-20 15:00:00,14082.0
-2013-09-20 16:00:00,13866.0
-2013-09-20 17:00:00,13646.0
-2013-09-20 18:00:00,13223.0
-2013-09-20 19:00:00,12648.0
-2013-09-20 20:00:00,12229.0
-2013-09-20 21:00:00,12370.0
-2013-09-20 22:00:00,11953.0
-2013-09-20 23:00:00,11447.0
-2013-09-21 00:00:00,10624.0
-2013-09-19 01:00:00,10498.0
-2013-09-19 02:00:00,9864.0
-2013-09-19 03:00:00,9518.0
-2013-09-19 04:00:00,9270.0
-2013-09-19 05:00:00,9211.0
-2013-09-19 06:00:00,9350.0
-2013-09-19 07:00:00,10148.0
-2013-09-19 08:00:00,11439.0
-2013-09-19 09:00:00,12376.0
-2013-09-19 10:00:00,12843.0
-2013-09-19 11:00:00,13223.0
-2013-09-19 12:00:00,13596.0
-2013-09-19 13:00:00,13863.0
-2013-09-19 14:00:00,14264.0
-2013-09-19 15:00:00,14976.0
-2013-09-19 16:00:00,15499.0
-2013-09-19 17:00:00,15943.0
-2013-09-19 18:00:00,16253.0
-2013-09-19 19:00:00,16112.0
-2013-09-19 20:00:00,15648.0
-2013-09-19 21:00:00,15824.0
-2013-09-19 22:00:00,15466.0
-2013-09-19 23:00:00,14574.0
-2013-09-20 00:00:00,13429.0
-2013-09-18 01:00:00,9483.0
-2013-09-18 02:00:00,8920.0
-2013-09-18 03:00:00,8561.0
-2013-09-18 04:00:00,8371.0
-2013-09-18 05:00:00,8283.0
-2013-09-18 06:00:00,8465.0
-2013-09-18 07:00:00,9107.0
-2013-09-18 08:00:00,10252.0
-2013-09-18 09:00:00,10975.0
-2013-09-18 10:00:00,11406.0
-2013-09-18 11:00:00,11710.0
-2013-09-18 12:00:00,12216.0
-2013-09-18 13:00:00,12629.0
-2013-09-18 14:00:00,12985.0
-2013-09-18 15:00:00,13367.0
-2013-09-18 16:00:00,13439.0
-2013-09-18 17:00:00,13436.0
-2013-09-18 18:00:00,13380.0
-2013-09-18 19:00:00,13206.0
-2013-09-18 20:00:00,12938.0
-2013-09-18 21:00:00,13180.0
-2013-09-18 22:00:00,12975.0
-2013-09-18 23:00:00,12359.0
-2013-09-19 00:00:00,11469.0
-2013-09-17 01:00:00,9159.0
-2013-09-17 02:00:00,8622.0
-2013-09-17 03:00:00,8338.0
-2013-09-17 04:00:00,8154.0
-2013-09-17 05:00:00,8099.0
-2013-09-17 06:00:00,8290.0
-2013-09-17 07:00:00,8928.0
-2013-09-17 08:00:00,9865.0
-2013-09-17 09:00:00,10444.0
-2013-09-17 10:00:00,10829.0
-2013-09-17 11:00:00,11120.0
-2013-09-17 12:00:00,11440.0
-2013-09-17 13:00:00,11581.0
-2013-09-17 14:00:00,11688.0
-2013-09-17 15:00:00,11795.0
-2013-09-17 16:00:00,11856.0
-2013-09-17 17:00:00,11746.0
-2013-09-17 18:00:00,11593.0
-2013-09-17 19:00:00,11448.0
-2013-09-17 20:00:00,11436.0
-2013-09-17 21:00:00,11930.0
-2013-09-17 22:00:00,11747.0
-2013-09-17 23:00:00,11153.0
-2013-09-18 00:00:00,10334.0
-2013-09-16 01:00:00,8718.0
-2013-09-16 02:00:00,8353.0
-2013-09-16 03:00:00,8139.0
-2013-09-16 04:00:00,8003.0
-2013-09-16 05:00:00,7999.0
-2013-09-16 06:00:00,8250.0
-2013-09-16 07:00:00,8896.0
-2013-09-16 08:00:00,9970.0
-2013-09-16 09:00:00,10548.0
-2013-09-16 10:00:00,10843.0
-2013-09-16 11:00:00,11028.0
-2013-09-16 12:00:00,11275.0
-2013-09-16 13:00:00,11409.0
-2013-09-16 14:00:00,11480.0
-2013-09-16 15:00:00,11577.0
-2013-09-16 16:00:00,11536.0
-2013-09-16 17:00:00,11455.0
-2013-09-16 18:00:00,11344.0
-2013-09-16 19:00:00,11140.0
-2013-09-16 20:00:00,10973.0
-2013-09-16 21:00:00,11466.0
-2013-09-16 22:00:00,11346.0
-2013-09-16 23:00:00,10796.0
-2013-09-17 00:00:00,9966.0
-2013-09-15 01:00:00,8916.0
-2013-09-15 02:00:00,8468.0
-2013-09-15 03:00:00,8105.0
-2013-09-15 04:00:00,7868.0
-2013-09-15 05:00:00,7802.0
-2013-09-15 06:00:00,7734.0
-2013-09-15 07:00:00,7816.0
-2013-09-15 08:00:00,7939.0
-2013-09-15 09:00:00,8131.0
-2013-09-15 10:00:00,8505.0
-2013-09-15 11:00:00,8957.0
-2013-09-15 12:00:00,9215.0
-2013-09-15 13:00:00,9444.0
-2013-09-15 14:00:00,9475.0
-2013-09-15 15:00:00,9497.0
-2013-09-15 16:00:00,9543.0
-2013-09-15 17:00:00,9573.0
-2013-09-15 18:00:00,9683.0
-2013-09-15 19:00:00,9771.0
-2013-09-15 20:00:00,9943.0
-2013-09-15 21:00:00,10297.0
-2013-09-15 22:00:00,10196.0
-2013-09-15 23:00:00,9796.0
-2013-09-16 00:00:00,9290.0
-2013-09-14 01:00:00,9375.0
-2013-09-14 02:00:00,8764.0
-2013-09-14 03:00:00,8398.0
-2013-09-14 04:00:00,8136.0
-2013-09-14 05:00:00,8025.0
-2013-09-14 06:00:00,8020.0
-2013-09-14 07:00:00,8230.0
-2013-09-14 08:00:00,8488.0
-2013-09-14 09:00:00,8738.0
-2013-09-14 10:00:00,9270.0
-2013-09-14 11:00:00,9628.0
-2013-09-14 12:00:00,10007.0
-2013-09-14 13:00:00,10133.0
-2013-09-14 14:00:00,10192.0
-2013-09-14 15:00:00,10187.0
-2013-09-14 16:00:00,10215.0
-2013-09-14 17:00:00,10232.0
-2013-09-14 18:00:00,10216.0
-2013-09-14 19:00:00,10123.0
-2013-09-14 20:00:00,10053.0
-2013-09-14 21:00:00,10452.0
-2013-09-14 22:00:00,10388.0
-2013-09-14 23:00:00,10038.0
-2013-09-15 00:00:00,9477.0
-2013-09-13 01:00:00,10599.0
-2013-09-13 02:00:00,9892.0
-2013-09-13 03:00:00,9404.0
-2013-09-13 04:00:00,9064.0
-2013-09-13 05:00:00,8877.0
-2013-09-13 06:00:00,8910.0
-2013-09-13 07:00:00,9376.0
-2013-09-13 08:00:00,10149.0
-2013-09-13 09:00:00,10636.0
-2013-09-13 10:00:00,11013.0
-2013-09-13 11:00:00,11308.0
-2013-09-13 12:00:00,11644.0
-2013-09-13 13:00:00,11801.0
-2013-09-13 14:00:00,11881.0
-2013-09-13 15:00:00,11941.0
-2013-09-13 16:00:00,11921.0
-2013-09-13 17:00:00,11842.0
-2013-09-13 18:00:00,11687.0
-2013-09-13 19:00:00,11431.0
-2013-09-13 20:00:00,11022.0
-2013-09-13 21:00:00,11353.0
-2013-09-13 22:00:00,11236.0
-2013-09-13 23:00:00,10804.0
-2013-09-14 00:00:00,10103.0
-2013-09-12 01:00:00,13327.0
-2013-09-12 02:00:00,12402.0
-2013-09-12 03:00:00,11653.0
-2013-09-12 04:00:00,11146.0
-2013-09-12 05:00:00,10876.0
-2013-09-12 06:00:00,10887.0
-2013-09-12 07:00:00,11473.0
-2013-09-12 08:00:00,12439.0
-2013-09-12 09:00:00,13086.0
-2013-09-12 10:00:00,13786.0
-2013-09-12 11:00:00,14566.0
-2013-09-12 12:00:00,15326.0
-2013-09-12 13:00:00,15834.0
-2013-09-12 14:00:00,16183.0
-2013-09-12 15:00:00,16376.0
-2013-09-12 16:00:00,16407.0
-2013-09-12 17:00:00,16162.0
-2013-09-12 18:00:00,15621.0
-2013-09-12 19:00:00,14818.0
-2013-09-12 20:00:00,13902.0
-2013-09-12 21:00:00,13835.0
-2013-09-12 22:00:00,13512.0
-2013-09-12 23:00:00,12719.0
-2013-09-13 00:00:00,11663.0
-2013-09-11 01:00:00,15302.0
-2013-09-11 02:00:00,14159.0
-2013-09-11 03:00:00,13380.0
-2013-09-11 04:00:00,12808.0
-2013-09-11 05:00:00,12403.0
-2013-09-11 06:00:00,12347.0
-2013-09-11 07:00:00,12926.0
-2013-09-11 08:00:00,13897.0
-2013-09-11 09:00:00,14750.0
-2013-09-11 10:00:00,15625.0
-2013-09-11 11:00:00,16506.0
-2013-09-11 12:00:00,17509.0
-2013-09-11 13:00:00,18412.0
-2013-09-11 14:00:00,19157.0
-2013-09-11 15:00:00,19649.0
-2013-09-11 16:00:00,19353.0
-2013-09-11 17:00:00,18743.0
-2013-09-11 18:00:00,18227.0
-2013-09-11 19:00:00,17860.0
-2013-09-11 20:00:00,17315.0
-2013-09-11 21:00:00,17363.0
-2013-09-11 22:00:00,16984.0
-2013-09-11 23:00:00,16015.0
-2013-09-12 00:00:00,14666.0
-2013-09-10 01:00:00,15941.0
-2013-09-10 02:00:00,14771.0
-2013-09-10 03:00:00,13945.0
-2013-09-10 04:00:00,13288.0
-2013-09-10 05:00:00,12824.0
-2013-09-10 06:00:00,12736.0
-2013-09-10 07:00:00,13244.0
-2013-09-10 08:00:00,14154.0
-2013-09-10 09:00:00,14941.0
-2013-09-10 10:00:00,15985.0
-2013-09-10 11:00:00,17169.0
-2013-09-10 12:00:00,18369.0
-2013-09-10 13:00:00,19398.0
-2013-09-10 14:00:00,20215.0
-2013-09-10 15:00:00,20888.0
-2013-09-10 16:00:00,21315.0
-2013-09-10 17:00:00,21572.0
-2013-09-10 18:00:00,21550.0
-2013-09-10 19:00:00,21132.0
-2013-09-10 20:00:00,20319.0
-2013-09-10 21:00:00,20046.0
-2013-09-10 22:00:00,19489.0
-2013-09-10 23:00:00,18321.0
-2013-09-11 00:00:00,16762.0
-2013-09-09 01:00:00,11147.0
-2013-09-09 02:00:00,10479.0
-2013-09-09 03:00:00,10090.0
-2013-09-09 04:00:00,9848.0
-2013-09-09 05:00:00,9693.0
-2013-09-09 06:00:00,9984.0
-2013-09-09 07:00:00,10829.0
-2013-09-09 08:00:00,12035.0
-2013-09-09 09:00:00,12975.0
-2013-09-09 10:00:00,13908.0
-2013-09-09 11:00:00,14980.0
-2013-09-09 12:00:00,16187.0
-2013-09-09 13:00:00,17377.0
-2013-09-09 14:00:00,18455.0
-2013-09-09 15:00:00,19483.0
-2013-09-09 16:00:00,20246.0
-2013-09-09 17:00:00,20883.0
-2013-09-09 18:00:00,21256.0
-2013-09-09 19:00:00,21081.0
-2013-09-09 20:00:00,20478.0
-2013-09-09 21:00:00,20381.0
-2013-09-09 22:00:00,19974.0
-2013-09-09 23:00:00,18939.0
-2013-09-10 00:00:00,17422.0
-2013-09-08 01:00:00,12014.0
-2013-09-08 02:00:00,11330.0
-2013-09-08 03:00:00,10759.0
-2013-09-08 04:00:00,10294.0
-2013-09-08 05:00:00,10001.0
-2013-09-08 06:00:00,9808.0
-2013-09-08 07:00:00,9836.0
-2013-09-08 08:00:00,10020.0
-2013-09-08 09:00:00,10173.0
-2013-09-08 10:00:00,10709.0
-2013-09-08 11:00:00,11295.0
-2013-09-08 12:00:00,11870.0
-2013-09-08 13:00:00,12629.0
-2013-09-08 14:00:00,13072.0
-2013-09-08 15:00:00,13235.0
-2013-09-08 16:00:00,13278.0
-2013-09-08 17:00:00,13288.0
-2013-09-08 18:00:00,13360.0
-2013-09-08 19:00:00,13252.0
-2013-09-08 20:00:00,12968.0
-2013-09-08 21:00:00,13243.0
-2013-09-08 22:00:00,13299.0
-2013-09-08 23:00:00,12844.0
-2013-09-09 00:00:00,11988.0
-2013-09-07 01:00:00,12200.0
-2013-09-07 02:00:00,11266.0
-2013-09-07 03:00:00,10587.0
-2013-09-07 04:00:00,10101.0
-2013-09-07 05:00:00,9785.0
-2013-09-07 06:00:00,9688.0
-2013-09-07 07:00:00,9867.0
-2013-09-07 08:00:00,10094.0
-2013-09-07 09:00:00,10518.0
-2013-09-07 10:00:00,11408.0
-2013-09-07 11:00:00,12215.0
-2013-09-07 12:00:00,13189.0
-2013-09-07 13:00:00,14161.0
-2013-09-07 14:00:00,14849.0
-2013-09-07 15:00:00,15116.0
-2013-09-07 16:00:00,15133.0
-2013-09-07 17:00:00,15279.0
-2013-09-07 18:00:00,15206.0
-2013-09-07 19:00:00,15088.0
-2013-09-07 20:00:00,14633.0
-2013-09-07 21:00:00,14592.0
-2013-09-07 22:00:00,14446.0
-2013-09-07 23:00:00,13829.0
-2013-09-08 00:00:00,12960.0
-2013-09-06 01:00:00,10292.0
-2013-09-06 02:00:00,9634.0
-2013-09-06 03:00:00,9222.0
-2013-09-06 04:00:00,8955.0
-2013-09-06 05:00:00,8844.0
-2013-09-06 06:00:00,8997.0
-2013-09-06 07:00:00,9615.0
-2013-09-06 08:00:00,10516.0
-2013-09-06 09:00:00,11230.0
-2013-09-06 10:00:00,11776.0
-2013-09-06 11:00:00,12266.0
-2013-09-06 12:00:00,12862.0
-2013-09-06 13:00:00,13376.0
-2013-09-06 14:00:00,13933.0
-2013-09-06 15:00:00,14651.0
-2013-09-06 16:00:00,15187.0
-2013-09-06 17:00:00,15681.0
-2013-09-06 18:00:00,15973.0
-2013-09-06 19:00:00,15878.0
-2013-09-06 20:00:00,15410.0
-2013-09-06 21:00:00,15263.0
-2013-09-06 22:00:00,14993.0
-2013-09-06 23:00:00,14366.0
-2013-09-07 00:00:00,13311.0
-2013-09-05 01:00:00,11224.0
-2013-09-05 02:00:00,10450.0
-2013-09-05 03:00:00,9976.0
-2013-09-05 04:00:00,9722.0
-2013-09-05 05:00:00,9587.0
-2013-09-05 06:00:00,9796.0
-2013-09-05 07:00:00,10459.0
-2013-09-05 08:00:00,11551.0
-2013-09-05 09:00:00,12256.0
-2013-09-05 10:00:00,12639.0
-2013-09-05 11:00:00,12900.0
-2013-09-05 12:00:00,13208.0
-2013-09-05 13:00:00,13430.0
-2013-09-05 14:00:00,13642.0
-2013-09-05 15:00:00,13943.0
-2013-09-05 16:00:00,14079.0
-2013-09-05 17:00:00,14138.0
-2013-09-05 18:00:00,14046.0
-2013-09-05 19:00:00,13686.0
-2013-09-05 20:00:00,13049.0
-2013-09-05 21:00:00,12927.0
-2013-09-05 22:00:00,12831.0
-2013-09-05 23:00:00,12099.0
-2013-09-06 00:00:00,11184.0
-2013-09-04 01:00:00,10231.0
-2013-09-04 02:00:00,9584.0
-2013-09-04 03:00:00,9119.0
-2013-09-04 04:00:00,8856.0
-2013-09-04 05:00:00,8740.0
-2013-09-04 06:00:00,8914.0
-2013-09-04 07:00:00,9538.0
-2013-09-04 08:00:00,10419.0
-2013-09-04 09:00:00,11198.0
-2013-09-04 10:00:00,11874.0
-2013-09-04 11:00:00,12478.0
-2013-09-04 12:00:00,13020.0
-2013-09-04 13:00:00,13447.0
-2013-09-04 14:00:00,13785.0
-2013-09-04 15:00:00,14313.0
-2013-09-04 16:00:00,14705.0
-2013-09-04 17:00:00,15032.0
-2013-09-04 18:00:00,15259.0
-2013-09-04 19:00:00,15135.0
-2013-09-04 20:00:00,14563.0
-2013-09-04 21:00:00,14487.0
-2013-09-04 22:00:00,14348.0
-2013-09-04 23:00:00,13516.0
-2013-09-05 00:00:00,12373.0
-2013-09-03 01:00:00,9599.0
-2013-09-03 02:00:00,8996.0
-2013-09-03 03:00:00,8637.0
-2013-09-03 04:00:00,8435.0
-2013-09-03 05:00:00,8370.0
-2013-09-03 06:00:00,8565.0
-2013-09-03 07:00:00,9215.0
-2013-09-03 08:00:00,10172.0
-2013-09-03 09:00:00,10965.0
-2013-09-03 10:00:00,11689.0
-2013-09-03 11:00:00,12259.0
-2013-09-03 12:00:00,12653.0
-2013-09-03 13:00:00,12965.0
-2013-09-03 14:00:00,13186.0
-2013-09-03 15:00:00,13527.0
-2013-09-03 16:00:00,13771.0
-2013-09-03 17:00:00,13974.0
-2013-09-03 18:00:00,13843.0
-2013-09-03 19:00:00,13535.0
-2013-09-03 20:00:00,13028.0
-2013-09-03 21:00:00,13063.0
-2013-09-03 22:00:00,13045.0
-2013-09-03 23:00:00,12310.0
-2013-09-04 00:00:00,11242.0
-2013-09-02 01:00:00,11495.0
-2013-09-02 02:00:00,10670.0
-2013-09-02 03:00:00,10011.0
-2013-09-02 04:00:00,9607.0
-2013-09-02 05:00:00,9301.0
-2013-09-02 06:00:00,9192.0
-2013-09-02 07:00:00,9282.0
-2013-09-02 08:00:00,9243.0
-2013-09-02 09:00:00,9504.0
-2013-09-02 10:00:00,10216.0
-2013-09-02 11:00:00,10945.0
-2013-09-02 12:00:00,11604.0
-2013-09-02 13:00:00,12007.0
-2013-09-02 14:00:00,12378.0
-2013-09-02 15:00:00,12620.0
-2013-09-02 16:00:00,12747.0
-2013-09-02 17:00:00,12734.0
-2013-09-02 18:00:00,12620.0
-2013-09-02 19:00:00,12323.0
-2013-09-02 20:00:00,11835.0
-2013-09-02 21:00:00,11783.0
-2013-09-02 22:00:00,11849.0
-2013-09-02 23:00:00,11312.0
-2013-09-03 00:00:00,10439.0
-2013-09-01 01:00:00,11161.0
-2013-09-01 02:00:00,10435.0
-2013-09-01 03:00:00,9946.0
-2013-09-01 04:00:00,9542.0
-2013-09-01 05:00:00,9248.0
-2013-09-01 06:00:00,9181.0
-2013-09-01 07:00:00,9149.0
-2013-09-01 08:00:00,9148.0
-2013-09-01 09:00:00,9433.0
-2013-09-01 10:00:00,10348.0
-2013-09-01 11:00:00,11279.0
-2013-09-01 12:00:00,12227.0
-2013-09-01 13:00:00,12862.0
-2013-09-01 14:00:00,13526.0
-2013-09-01 15:00:00,14169.0
-2013-09-01 16:00:00,14690.0
-2013-09-01 17:00:00,15099.0
-2013-09-01 18:00:00,15172.0
-2013-09-01 19:00:00,15055.0
-2013-09-01 20:00:00,14590.0
-2013-09-01 21:00:00,14444.0
-2013-09-01 22:00:00,14446.0
-2013-09-01 23:00:00,13687.0
-2013-09-02 00:00:00,12527.0
-2013-08-31 01:00:00,12789.0
-2013-08-31 02:00:00,11898.0
-2013-08-31 03:00:00,11190.0
-2013-08-31 04:00:00,10634.0
-2013-08-31 05:00:00,10395.0
-2013-08-31 06:00:00,10251.0
-2013-08-31 07:00:00,10440.0
-2013-08-31 08:00:00,10578.0
-2013-08-31 09:00:00,10974.0
-2013-08-31 10:00:00,11712.0
-2013-08-31 11:00:00,12326.0
-2013-08-31 12:00:00,12665.0
-2013-08-31 13:00:00,12834.0
-2013-08-31 14:00:00,12895.0
-2013-08-31 15:00:00,13057.0
-2013-08-31 16:00:00,13276.0
-2013-08-31 17:00:00,13409.0
-2013-08-31 18:00:00,13262.0
-2013-08-31 19:00:00,13034.0
-2013-08-31 20:00:00,12685.0
-2013-08-31 21:00:00,12801.0
-2013-08-31 22:00:00,12895.0
-2013-08-31 23:00:00,12565.0
-2013-09-01 00:00:00,11921.0
-2013-08-30 01:00:00,13268.0
-2013-08-30 02:00:00,12223.0
-2013-08-30 03:00:00,11518.0
-2013-08-30 04:00:00,10991.0
-2013-08-30 05:00:00,10729.0
-2013-08-30 06:00:00,10823.0
-2013-08-30 07:00:00,11509.0
-2013-08-30 08:00:00,12460.0
-2013-08-30 09:00:00,13579.0
-2013-08-30 10:00:00,14740.0
-2013-08-30 11:00:00,16010.0
-2013-08-30 12:00:00,17298.0
-2013-08-30 13:00:00,18561.0
-2013-08-30 14:00:00,19688.0
-2013-08-30 15:00:00,20637.0
-2013-08-30 16:00:00,21204.0
-2013-08-30 17:00:00,21488.0
-2013-08-30 18:00:00,21519.0
-2013-08-30 19:00:00,20372.0
-2013-08-30 20:00:00,17922.0
-2013-08-30 21:00:00,16861.0
-2013-08-30 22:00:00,16081.0
-2013-08-30 23:00:00,15281.0
-2013-08-31 00:00:00,14093.0
-2013-08-29 01:00:00,12887.0
-2013-08-29 02:00:00,11977.0
-2013-08-29 03:00:00,11350.0
-2013-08-29 04:00:00,10933.0
-2013-08-29 05:00:00,10703.0
-2013-08-29 06:00:00,10797.0
-2013-08-29 07:00:00,11492.0
-2013-08-29 08:00:00,12542.0
-2013-08-29 09:00:00,13425.0
-2013-08-29 10:00:00,14197.0
-2013-08-29 11:00:00,15287.0
-2013-08-29 12:00:00,16446.0
-2013-08-29 13:00:00,17320.0
-2013-08-29 14:00:00,18108.0
-2013-08-29 15:00:00,18813.0
-2013-08-29 16:00:00,19274.0
-2013-08-29 17:00:00,19592.0
-2013-08-29 18:00:00,19702.0
-2013-08-29 19:00:00,19322.0
-2013-08-29 20:00:00,18404.0
-2013-08-29 21:00:00,17694.0
-2013-08-29 22:00:00,17357.0
-2013-08-29 23:00:00,16203.0
-2013-08-30 00:00:00,14684.0
-2013-08-28 01:00:00,15993.0
-2013-08-28 02:00:00,14782.0
-2013-08-28 03:00:00,13974.0
-2013-08-28 04:00:00,13326.0
-2013-08-28 05:00:00,12961.0
-2013-08-28 06:00:00,12883.0
-2013-08-28 07:00:00,13387.0
-2013-08-28 08:00:00,14317.0
-2013-08-28 09:00:00,15183.0
-2013-08-28 10:00:00,15948.0
-2013-08-28 11:00:00,16408.0
-2013-08-28 12:00:00,16820.0
-2013-08-28 13:00:00,17183.0
-2013-08-28 14:00:00,17505.0
-2013-08-28 15:00:00,18019.0
-2013-08-28 16:00:00,18323.0
-2013-08-28 17:00:00,18507.0
-2013-08-28 18:00:00,18388.0
-2013-08-28 19:00:00,17998.0
-2013-08-28 20:00:00,17308.0
-2013-08-28 21:00:00,16733.0
-2013-08-28 22:00:00,16483.0
-2013-08-28 23:00:00,15543.0
-2013-08-29 00:00:00,14178.0
-2013-08-27 01:00:00,14682.0
-2013-08-27 02:00:00,13609.0
-2013-08-27 03:00:00,12934.0
-2013-08-27 04:00:00,12440.0
-2013-08-27 05:00:00,12165.0
-2013-08-27 06:00:00,12292.0
-2013-08-27 07:00:00,12985.0
-2013-08-27 08:00:00,14026.0
-2013-08-27 09:00:00,14942.0
-2013-08-27 10:00:00,15780.0
-2013-08-27 11:00:00,16944.0
-2013-08-27 12:00:00,18057.0
-2013-08-27 13:00:00,19119.0
-2013-08-27 14:00:00,20112.0
-2013-08-27 15:00:00,20953.0
-2013-08-27 16:00:00,21495.0
-2013-08-27 17:00:00,21843.0
-2013-08-27 18:00:00,21960.0
-2013-08-27 19:00:00,21716.0
-2013-08-27 20:00:00,21076.0
-2013-08-27 21:00:00,20613.0
-2013-08-27 22:00:00,20392.0
-2013-08-27 23:00:00,19281.0
-2013-08-28 00:00:00,17580.0
-2013-08-26 01:00:00,13027.0
-2013-08-26 02:00:00,12011.0
-2013-08-26 03:00:00,11373.0
-2013-08-26 04:00:00,10955.0
-2013-08-26 05:00:00,10656.0
-2013-08-26 06:00:00,10718.0
-2013-08-26 07:00:00,11463.0
-2013-08-26 08:00:00,12509.0
-2013-08-26 09:00:00,13462.0
-2013-08-26 10:00:00,14287.0
-2013-08-26 11:00:00,14969.0
-2013-08-26 12:00:00,16171.0
-2013-08-26 13:00:00,17241.0
-2013-08-26 14:00:00,18364.0
-2013-08-26 15:00:00,19327.0
-2013-08-26 16:00:00,19882.0
-2013-08-26 17:00:00,20351.0
-2013-08-26 18:00:00,20460.0
-2013-08-26 19:00:00,20154.0
-2013-08-26 20:00:00,19611.0
-2013-08-26 21:00:00,19145.0
-2013-08-26 22:00:00,18888.0
-2013-08-26 23:00:00,17775.0
-2013-08-27 00:00:00,16212.0
-2013-08-25 01:00:00,11543.0
-2013-08-25 02:00:00,10704.0
-2013-08-25 03:00:00,10032.0
-2013-08-25 04:00:00,9577.0
-2013-08-25 05:00:00,9261.0
-2013-08-25 06:00:00,9134.0
-2013-08-25 07:00:00,9075.0
-2013-08-25 08:00:00,9024.0
-2013-08-25 09:00:00,9419.0
-2013-08-25 10:00:00,10308.0
-2013-08-25 11:00:00,11441.0
-2013-08-25 12:00:00,12708.0
-2013-08-25 13:00:00,13862.0
-2013-08-25 14:00:00,14854.0
-2013-08-25 15:00:00,15705.0
-2013-08-25 16:00:00,16409.0
-2013-08-25 17:00:00,16914.0
-2013-08-25 18:00:00,17236.0
-2013-08-25 19:00:00,17170.0
-2013-08-25 20:00:00,16726.0
-2013-08-25 21:00:00,16243.0
-2013-08-25 22:00:00,16232.0
-2013-08-25 23:00:00,15439.0
-2013-08-26 00:00:00,14307.0
-2013-08-24 01:00:00,11084.0
-2013-08-24 02:00:00,10234.0
-2013-08-24 03:00:00,9686.0
-2013-08-24 04:00:00,9306.0
-2013-08-24 05:00:00,9087.0
-2013-08-24 06:00:00,9002.0
-2013-08-24 07:00:00,9170.0
-2013-08-24 08:00:00,9259.0
-2013-08-24 09:00:00,9881.0
-2013-08-24 10:00:00,10735.0
-2013-08-24 11:00:00,11596.0
-2013-08-24 12:00:00,12432.0
-2013-08-24 13:00:00,13085.0
-2013-08-24 14:00:00,13797.0
-2013-08-24 15:00:00,14321.0
-2013-08-24 16:00:00,14804.0
-2013-08-24 17:00:00,15244.0
-2013-08-24 18:00:00,15387.0
-2013-08-24 19:00:00,15270.0
-2013-08-24 20:00:00,14771.0
-2013-08-24 21:00:00,14232.0
-2013-08-24 22:00:00,14140.0
-2013-08-24 23:00:00,13509.0
-2013-08-25 00:00:00,12546.0
-2013-08-23 01:00:00,11369.0
-2013-08-23 02:00:00,10539.0
-2013-08-23 03:00:00,10019.0
-2013-08-23 04:00:00,9636.0
-2013-08-23 05:00:00,9451.0
-2013-08-23 06:00:00,9595.0
-2013-08-23 07:00:00,10222.0
-2013-08-23 08:00:00,11059.0
-2013-08-23 09:00:00,12033.0
-2013-08-23 10:00:00,12871.0
-2013-08-23 11:00:00,13600.0
-2013-08-23 12:00:00,14192.0
-2013-08-23 13:00:00,14622.0
-2013-08-23 14:00:00,14962.0
-2013-08-23 15:00:00,15342.0
-2013-08-23 16:00:00,15602.0
-2013-08-23 17:00:00,15797.0
-2013-08-23 18:00:00,15772.0
-2013-08-23 19:00:00,15452.0
-2013-08-23 20:00:00,14697.0
-2013-08-23 21:00:00,13947.0
-2013-08-23 22:00:00,13721.0
-2013-08-23 23:00:00,13098.0
-2013-08-24 00:00:00,12075.0
-2013-08-22 01:00:00,14215.0
-2013-08-22 02:00:00,13111.0
-2013-08-22 03:00:00,12215.0
-2013-08-22 04:00:00,11595.0
-2013-08-22 05:00:00,11306.0
-2013-08-22 06:00:00,11379.0
-2013-08-22 07:00:00,12052.0
-2013-08-22 08:00:00,13085.0
-2013-08-22 09:00:00,13973.0
-2013-08-22 10:00:00,14370.0
-2013-08-22 11:00:00,14591.0
-2013-08-22 12:00:00,14841.0
-2013-08-22 13:00:00,14734.0
-2013-08-22 14:00:00,14502.0
-2013-08-22 15:00:00,14415.0
-2013-08-22 16:00:00,14255.0
-2013-08-22 17:00:00,14280.0
-2013-08-22 18:00:00,14221.0
-2013-08-22 19:00:00,14159.0
-2013-08-22 20:00:00,14016.0
-2013-08-22 21:00:00,13869.0
-2013-08-22 22:00:00,14078.0
-2013-08-22 23:00:00,13453.0
-2013-08-23 00:00:00,12413.0
-2013-08-21 01:00:00,12995.0
-2013-08-21 02:00:00,11993.0
-2013-08-21 03:00:00,11247.0
-2013-08-21 04:00:00,10795.0
-2013-08-21 05:00:00,10533.0
-2013-08-21 06:00:00,10607.0
-2013-08-21 07:00:00,11266.0
-2013-08-21 08:00:00,12202.0
-2013-08-21 09:00:00,13210.0
-2013-08-21 10:00:00,14196.0
-2013-08-21 11:00:00,15356.0
-2013-08-21 12:00:00,16523.0
-2013-08-21 13:00:00,17506.0
-2013-08-21 14:00:00,18210.0
-2013-08-21 15:00:00,18839.0
-2013-08-21 16:00:00,19354.0
-2013-08-21 17:00:00,19674.0
-2013-08-21 18:00:00,19741.0
-2013-08-21 19:00:00,19430.0
-2013-08-21 20:00:00,18700.0
-2013-08-21 21:00:00,18201.0
-2013-08-21 22:00:00,18057.0
-2013-08-21 23:00:00,17124.0
-2013-08-22 00:00:00,15627.0
-2013-08-20 01:00:00,12193.0
-2013-08-20 02:00:00,11261.0
-2013-08-20 03:00:00,10600.0
-2013-08-20 04:00:00,10207.0
-2013-08-20 05:00:00,9971.0
-2013-08-20 06:00:00,10089.0
-2013-08-20 07:00:00,10714.0
-2013-08-20 08:00:00,11568.0
-2013-08-20 09:00:00,12633.0
-2013-08-20 10:00:00,13703.0
-2013-08-20 11:00:00,14649.0
-2013-08-20 12:00:00,15593.0
-2013-08-20 13:00:00,16313.0
-2013-08-20 14:00:00,16887.0
-2013-08-20 15:00:00,17535.0
-2013-08-20 16:00:00,17866.0
-2013-08-20 17:00:00,18095.0
-2013-08-20 18:00:00,18187.0
-2013-08-20 19:00:00,18018.0
-2013-08-20 20:00:00,17436.0
-2013-08-20 21:00:00,16831.0
-2013-08-20 22:00:00,16713.0
-2013-08-20 23:00:00,15802.0
-2013-08-21 00:00:00,14428.0
-2013-08-19 01:00:00,10605.0
-2013-08-19 02:00:00,9901.0
-2013-08-19 03:00:00,9418.0
-2013-08-19 04:00:00,9088.0
-2013-08-19 05:00:00,9025.0
-2013-08-19 06:00:00,9166.0
-2013-08-19 07:00:00,9872.0
-2013-08-19 08:00:00,10671.0
-2013-08-19 09:00:00,11742.0
-2013-08-19 10:00:00,12638.0
-2013-08-19 11:00:00,13461.0
-2013-08-19 12:00:00,14338.0
-2013-08-19 13:00:00,14985.0
-2013-08-19 14:00:00,15535.0
-2013-08-19 15:00:00,16086.0
-2013-08-19 16:00:00,16487.0
-2013-08-19 17:00:00,16609.0
-2013-08-19 18:00:00,16441.0
-2013-08-19 19:00:00,16212.0
-2013-08-19 20:00:00,15752.0
-2013-08-19 21:00:00,15398.0
-2013-08-19 22:00:00,15484.0
-2013-08-19 23:00:00,14731.0
-2013-08-20 00:00:00,13440.0
-2013-08-18 01:00:00,10258.0
-2013-08-18 02:00:00,9597.0
-2013-08-18 03:00:00,9120.0
-2013-08-18 04:00:00,8792.0
-2013-08-18 05:00:00,8540.0
-2013-08-18 06:00:00,8453.0
-2013-08-18 07:00:00,8442.0
-2013-08-18 08:00:00,8269.0
-2013-08-18 09:00:00,8645.0
-2013-08-18 10:00:00,9416.0
-2013-08-18 11:00:00,10201.0
-2013-08-18 12:00:00,10967.0
-2013-08-18 13:00:00,11536.0
-2013-08-18 14:00:00,12043.0
-2013-08-18 15:00:00,12416.0
-2013-08-18 16:00:00,12853.0
-2013-08-18 17:00:00,13102.0
-2013-08-18 18:00:00,13324.0
-2013-08-18 19:00:00,13317.0
-2013-08-18 20:00:00,13032.0
-2013-08-18 21:00:00,12686.0
-2013-08-18 22:00:00,12848.0
-2013-08-18 23:00:00,12340.0
-2013-08-19 00:00:00,11567.0
-2013-08-17 01:00:00,10604.0
-2013-08-17 02:00:00,9831.0
-2013-08-17 03:00:00,9283.0
-2013-08-17 04:00:00,8967.0
-2013-08-17 05:00:00,8800.0
-2013-08-17 06:00:00,8774.0
-2013-08-17 07:00:00,8908.0
-2013-08-17 08:00:00,8963.0
-2013-08-17 09:00:00,9556.0
-2013-08-17 10:00:00,10405.0
-2013-08-17 11:00:00,11101.0
-2013-08-17 12:00:00,11712.0
-2013-08-17 13:00:00,12073.0
-2013-08-17 14:00:00,12343.0
-2013-08-17 15:00:00,12520.0
-2013-08-17 16:00:00,12712.0
-2013-08-17 17:00:00,12862.0
-2013-08-17 18:00:00,12993.0
-2013-08-17 19:00:00,12863.0
-2013-08-17 20:00:00,12447.0
-2013-08-17 21:00:00,12035.0
-2013-08-17 22:00:00,12115.0
-2013-08-17 23:00:00,11715.0
-2013-08-18 00:00:00,10998.0
-2013-08-16 01:00:00,10152.0
-2013-08-16 02:00:00,9502.0
-2013-08-16 03:00:00,9059.0
-2013-08-16 04:00:00,8750.0
-2013-08-16 05:00:00,8683.0
-2013-08-16 06:00:00,8766.0
-2013-08-16 07:00:00,9272.0
-2013-08-16 08:00:00,9953.0
-2013-08-16 09:00:00,10807.0
-2013-08-16 10:00:00,11541.0
-2013-08-16 11:00:00,12192.0
-2013-08-16 12:00:00,12782.0
-2013-08-16 13:00:00,13186.0
-2013-08-16 14:00:00,13433.0
-2013-08-16 15:00:00,13770.0
-2013-08-16 16:00:00,13957.0
-2013-08-16 17:00:00,14090.0
-2013-08-16 18:00:00,14092.0
-2013-08-16 19:00:00,13865.0
-2013-08-16 20:00:00,13378.0
-2013-08-16 21:00:00,12867.0
-2013-08-16 22:00:00,12895.0
-2013-08-16 23:00:00,12427.0
-2013-08-17 00:00:00,11551.0
-2013-08-15 01:00:00,9936.0
-2013-08-15 02:00:00,9296.0
-2013-08-15 03:00:00,8893.0
-2013-08-15 04:00:00,8600.0
-2013-08-15 05:00:00,8476.0
-2013-08-15 06:00:00,8651.0
-2013-08-15 07:00:00,9179.0
-2013-08-15 08:00:00,9812.0
-2013-08-15 09:00:00,10672.0
-2013-08-15 10:00:00,11330.0
-2013-08-15 11:00:00,11824.0
-2013-08-15 12:00:00,12286.0
-2013-08-15 13:00:00,12601.0
-2013-08-15 14:00:00,12784.0
-2013-08-15 15:00:00,12894.0
-2013-08-15 16:00:00,12833.0
-2013-08-15 17:00:00,12722.0
-2013-08-15 18:00:00,12599.0
-2013-08-15 19:00:00,12392.0
-2013-08-15 20:00:00,12086.0
-2013-08-15 21:00:00,12010.0
-2013-08-15 22:00:00,12309.0
-2013-08-15 23:00:00,11900.0
-2013-08-16 00:00:00,11064.0
-2013-08-14 01:00:00,10009.0
-2013-08-14 02:00:00,9375.0
-2013-08-14 03:00:00,8953.0
-2013-08-14 04:00:00,8680.0
-2013-08-14 05:00:00,8548.0
-2013-08-14 06:00:00,8716.0
-2013-08-14 07:00:00,9284.0
-2013-08-14 08:00:00,9920.0
-2013-08-14 09:00:00,10757.0
-2013-08-14 10:00:00,11360.0
-2013-08-14 11:00:00,11799.0
-2013-08-14 12:00:00,12172.0
-2013-08-14 13:00:00,12377.0
-2013-08-14 14:00:00,12503.0
-2013-08-14 15:00:00,12651.0
-2013-08-14 16:00:00,12712.0
-2013-08-14 17:00:00,12682.0
-2013-08-14 18:00:00,12653.0
-2013-08-14 19:00:00,12510.0
-2013-08-14 20:00:00,12125.0
-2013-08-14 21:00:00,11892.0
-2013-08-14 22:00:00,12138.0
-2013-08-14 23:00:00,11666.0
-2013-08-15 00:00:00,10836.0
-2013-08-13 01:00:00,11966.0
-2013-08-13 02:00:00,11076.0
-2013-08-13 03:00:00,10374.0
-2013-08-13 04:00:00,9911.0
-2013-08-13 05:00:00,9599.0
-2013-08-13 06:00:00,9622.0
-2013-08-13 07:00:00,10042.0
-2013-08-13 08:00:00,10625.0
-2013-08-13 09:00:00,11365.0
-2013-08-13 10:00:00,11976.0
-2013-08-13 11:00:00,12398.0
-2013-08-13 12:00:00,12766.0
-2013-08-13 13:00:00,12930.0
-2013-08-13 14:00:00,12979.0
-2013-08-13 15:00:00,13120.0
-2013-08-13 16:00:00,13108.0
-2013-08-13 17:00:00,12977.0
-2013-08-13 18:00:00,12806.0
-2013-08-13 19:00:00,12573.0
-2013-08-13 20:00:00,12167.0
-2013-08-13 21:00:00,11870.0
-2013-08-13 22:00:00,12113.0
-2013-08-13 23:00:00,11728.0
-2013-08-14 00:00:00,10907.0
-2013-08-12 01:00:00,11236.0
-2013-08-12 02:00:00,10540.0
-2013-08-12 03:00:00,10050.0
-2013-08-12 04:00:00,9758.0
-2013-08-12 05:00:00,9613.0
-2013-08-12 06:00:00,9831.0
-2013-08-12 07:00:00,10572.0
-2013-08-12 08:00:00,11471.0
-2013-08-12 09:00:00,12381.0
-2013-08-12 10:00:00,13264.0
-2013-08-12 11:00:00,14089.0
-2013-08-12 12:00:00,14961.0
-2013-08-12 13:00:00,15605.0
-2013-08-12 14:00:00,16185.0
-2013-08-12 15:00:00,16687.0
-2013-08-12 16:00:00,16649.0
-2013-08-12 17:00:00,16367.0
-2013-08-12 18:00:00,16221.0
-2013-08-12 19:00:00,16084.0
-2013-08-12 20:00:00,15621.0
-2013-08-12 21:00:00,15071.0
-2013-08-12 22:00:00,15032.0
-2013-08-12 23:00:00,14379.0
-2013-08-13 00:00:00,13191.0
-2013-08-11 01:00:00,10710.0
-2013-08-11 02:00:00,9986.0
-2013-08-11 03:00:00,9443.0
-2013-08-11 04:00:00,9091.0
-2013-08-11 05:00:00,8808.0
-2013-08-11 06:00:00,8677.0
-2013-08-11 07:00:00,8630.0
-2013-08-11 08:00:00,8482.0
-2013-08-11 09:00:00,8887.0
-2013-08-11 10:00:00,9675.0
-2013-08-11 11:00:00,10455.0
-2013-08-11 12:00:00,11093.0
-2013-08-11 13:00:00,11685.0
-2013-08-11 14:00:00,12014.0
-2013-08-11 15:00:00,12299.0
-2013-08-11 16:00:00,12755.0
-2013-08-11 17:00:00,13033.0
-2013-08-11 18:00:00,13145.0
-2013-08-11 19:00:00,12982.0
-2013-08-11 20:00:00,12823.0
-2013-08-11 21:00:00,12723.0
-2013-08-11 22:00:00,13024.0
-2013-08-11 23:00:00,12784.0
-2013-08-12 00:00:00,12093.0
-2013-08-10 01:00:00,12112.0
-2013-08-10 02:00:00,11246.0
-2013-08-10 03:00:00,10566.0
-2013-08-10 04:00:00,10065.0
-2013-08-10 05:00:00,9716.0
-2013-08-10 06:00:00,9590.0
-2013-08-10 07:00:00,9650.0
-2013-08-10 08:00:00,9691.0
-2013-08-10 09:00:00,10422.0
-2013-08-10 10:00:00,11439.0
-2013-08-10 11:00:00,12335.0
-2013-08-10 12:00:00,13019.0
-2013-08-10 13:00:00,13432.0
-2013-08-10 14:00:00,13733.0
-2013-08-10 15:00:00,13825.0
-2013-08-10 16:00:00,13941.0
-2013-08-10 17:00:00,13923.0
-2013-08-10 18:00:00,13852.0
-2013-08-10 19:00:00,13588.0
-2013-08-10 20:00:00,13042.0
-2013-08-10 21:00:00,12538.0
-2013-08-10 22:00:00,12570.0
-2013-08-10 23:00:00,12250.0
-2013-08-11 00:00:00,11523.0
-2013-08-09 01:00:00,11056.0
-2013-08-09 02:00:00,10329.0
-2013-08-09 03:00:00,9803.0
-2013-08-09 04:00:00,9441.0
-2013-08-09 05:00:00,9242.0
-2013-08-09 06:00:00,9334.0
-2013-08-09 07:00:00,9835.0
-2013-08-09 08:00:00,10405.0
-2013-08-09 09:00:00,11442.0
-2013-08-09 10:00:00,12271.0
-2013-08-09 11:00:00,13022.0
-2013-08-09 12:00:00,13844.0
-2013-08-09 13:00:00,14481.0
-2013-08-09 14:00:00,14934.0
-2013-08-09 15:00:00,15425.0
-2013-08-09 16:00:00,15675.0
-2013-08-09 17:00:00,15703.0
-2013-08-09 18:00:00,15635.0
-2013-08-09 19:00:00,15322.0
-2013-08-09 20:00:00,14854.0
-2013-08-09 21:00:00,14491.0
-2013-08-09 22:00:00,14553.0
-2013-08-09 23:00:00,14165.0
-2013-08-10 00:00:00,13184.0
-2013-08-08 01:00:00,12245.0
-2013-08-08 02:00:00,11238.0
-2013-08-08 03:00:00,10568.0
-2013-08-08 04:00:00,10132.0
-2013-08-08 05:00:00,9886.0
-2013-08-08 06:00:00,9964.0
-2013-08-08 07:00:00,10511.0
-2013-08-08 08:00:00,11251.0
-2013-08-08 09:00:00,12211.0
-2013-08-08 10:00:00,12933.0
-2013-08-08 11:00:00,13558.0
-2013-08-08 12:00:00,14118.0
-2013-08-08 13:00:00,14505.0
-2013-08-08 14:00:00,14836.0
-2013-08-08 15:00:00,15102.0
-2013-08-08 16:00:00,15224.0
-2013-08-08 17:00:00,15262.0
-2013-08-08 18:00:00,15180.0
-2013-08-08 19:00:00,14777.0
-2013-08-08 20:00:00,13974.0
-2013-08-08 21:00:00,13434.0
-2013-08-08 22:00:00,13517.0
-2013-08-08 23:00:00,13000.0
-2013-08-09 00:00:00,12062.0
-2013-08-07 01:00:00,12823.0
-2013-08-07 02:00:00,11875.0
-2013-08-07 03:00:00,11234.0
-2013-08-07 04:00:00,10764.0
-2013-08-07 05:00:00,10578.0
-2013-08-07 06:00:00,10718.0
-2013-08-07 07:00:00,11306.0
-2013-08-07 08:00:00,12194.0
-2013-08-07 09:00:00,13326.0
-2013-08-07 10:00:00,14528.0
-2013-08-07 11:00:00,15711.0
-2013-08-07 12:00:00,16791.0
-2013-08-07 13:00:00,17553.0
-2013-08-07 14:00:00,18003.0
-2013-08-07 15:00:00,18483.0
-2013-08-07 16:00:00,18613.0
-2013-08-07 17:00:00,18514.0
-2013-08-07 18:00:00,18497.0
-2013-08-07 19:00:00,18230.0
-2013-08-07 20:00:00,17324.0
-2013-08-07 21:00:00,16211.0
-2013-08-07 22:00:00,15672.0
-2013-08-07 23:00:00,14792.0
-2013-08-08 00:00:00,13537.0
-2013-08-06 01:00:00,10596.0
-2013-08-06 02:00:00,10023.0
-2013-08-06 03:00:00,9589.0
-2013-08-06 04:00:00,9339.0
-2013-08-06 05:00:00,9237.0
-2013-08-06 06:00:00,9441.0
-2013-08-06 07:00:00,10043.0
-2013-08-06 08:00:00,10909.0
-2013-08-06 09:00:00,11722.0
-2013-08-06 10:00:00,12423.0
-2013-08-06 11:00:00,12964.0
-2013-08-06 12:00:00,13521.0
-2013-08-06 13:00:00,14022.0
-2013-08-06 14:00:00,14570.0
-2013-08-06 15:00:00,15170.0
-2013-08-06 16:00:00,15467.0
-2013-08-06 17:00:00,15863.0
-2013-08-06 18:00:00,16307.0
-2013-08-06 19:00:00,16188.0
-2013-08-06 20:00:00,15773.0
-2013-08-06 21:00:00,15492.0
-2013-08-06 22:00:00,15549.0
-2013-08-06 23:00:00,15059.0
-2013-08-07 00:00:00,13993.0
-2013-08-05 01:00:00,9880.0
-2013-08-05 02:00:00,9292.0
-2013-08-05 03:00:00,8953.0
-2013-08-05 04:00:00,8713.0
-2013-08-05 05:00:00,8606.0
-2013-08-05 06:00:00,8796.0
-2013-08-05 07:00:00,9379.0
-2013-08-05 08:00:00,10051.0
-2013-08-05 09:00:00,10968.0
-2013-08-05 10:00:00,11572.0
-2013-08-05 11:00:00,11953.0
-2013-08-05 12:00:00,12337.0
-2013-08-05 13:00:00,12608.0
-2013-08-05 14:00:00,12803.0
-2013-08-05 15:00:00,13053.0
-2013-08-05 16:00:00,13156.0
-2013-08-05 17:00:00,12959.0
-2013-08-05 18:00:00,12688.0
-2013-08-05 19:00:00,12469.0
-2013-08-05 20:00:00,12155.0
-2013-08-05 21:00:00,12122.0
-2013-08-05 22:00:00,12453.0
-2013-08-05 23:00:00,12173.0
-2013-08-06 00:00:00,11468.0
-2013-08-04 01:00:00,10248.0
-2013-08-04 02:00:00,9636.0
-2013-08-04 03:00:00,9098.0
-2013-08-04 04:00:00,8805.0
-2013-08-04 05:00:00,8489.0
-2013-08-04 06:00:00,8398.0
-2013-08-04 07:00:00,8298.0
-2013-08-04 08:00:00,8228.0
-2013-08-04 09:00:00,8661.0
-2013-08-04 10:00:00,9366.0
-2013-08-04 11:00:00,9978.0
-2013-08-04 12:00:00,10499.0
-2013-08-04 13:00:00,10894.0
-2013-08-04 14:00:00,11153.0
-2013-08-04 15:00:00,11385.0
-2013-08-04 16:00:00,11509.0
-2013-08-04 17:00:00,11700.0
-2013-08-04 18:00:00,11708.0
-2013-08-04 19:00:00,11483.0
-2013-08-04 20:00:00,11132.0
-2013-08-04 21:00:00,10989.0
-2013-08-04 22:00:00,11277.0
-2013-08-04 23:00:00,11144.0
-2013-08-05 00:00:00,10555.0
-2013-08-03 01:00:00,11838.0
-2013-08-03 02:00:00,10880.0
-2013-08-03 03:00:00,10275.0
-2013-08-03 04:00:00,9736.0
-2013-08-03 05:00:00,9464.0
-2013-08-03 06:00:00,9244.0
-2013-08-03 07:00:00,9273.0
-2013-08-03 08:00:00,9379.0
-2013-08-03 09:00:00,10130.0
-2013-08-03 10:00:00,11006.0
-2013-08-03 11:00:00,11846.0
-2013-08-03 12:00:00,12433.0
-2013-08-03 13:00:00,12795.0
-2013-08-03 14:00:00,12949.0
-2013-08-03 15:00:00,12991.0
-2013-08-03 16:00:00,13092.0
-2013-08-03 17:00:00,13160.0
-2013-08-03 18:00:00,13136.0
-2013-08-03 19:00:00,12919.0
-2013-08-03 20:00:00,12542.0
-2013-08-03 21:00:00,11997.0
-2013-08-03 22:00:00,12005.0
-2013-08-03 23:00:00,11723.0
-2013-08-04 00:00:00,11055.0
-2013-08-02 01:00:00,10840.0
-2013-08-02 02:00:00,10101.0
-2013-08-02 03:00:00,9632.0
-2013-08-02 04:00:00,9376.0
-2013-08-02 05:00:00,9193.0
-2013-08-02 06:00:00,9321.0
-2013-08-02 07:00:00,9862.0
-2013-08-02 08:00:00,10566.0
-2013-08-02 09:00:00,11318.0
-2013-08-02 10:00:00,11983.0
-2013-08-02 11:00:00,12620.0
-2013-08-02 12:00:00,13363.0
-2013-08-02 13:00:00,14111.0
-2013-08-02 14:00:00,14795.0
-2013-08-02 15:00:00,15456.0
-2013-08-02 16:00:00,15668.0
-2013-08-02 17:00:00,15734.0
-2013-08-02 18:00:00,15515.0
-2013-08-02 19:00:00,15092.0
-2013-08-02 20:00:00,14576.0
-2013-08-02 21:00:00,14225.0
-2013-08-02 22:00:00,14246.0
-2013-08-02 23:00:00,13796.0
-2013-08-03 00:00:00,12826.0
-2013-08-01 01:00:00,10640.0
-2013-08-01 02:00:00,9914.0
-2013-08-01 03:00:00,9405.0
-2013-08-01 04:00:00,9077.0
-2013-08-01 05:00:00,8934.0
-2013-08-01 06:00:00,9055.0
-2013-08-01 07:00:00,9499.0
-2013-08-01 08:00:00,10217.0
-2013-08-01 09:00:00,11221.0
-2013-08-01 10:00:00,12023.0
-2013-08-01 11:00:00,12667.0
-2013-08-01 12:00:00,13264.0
-2013-08-01 13:00:00,13558.0
-2013-08-01 14:00:00,13671.0
-2013-08-01 15:00:00,14041.0
-2013-08-01 16:00:00,14232.0
-2013-08-01 17:00:00,14322.0
-2013-08-01 18:00:00,14320.0
-2013-08-01 19:00:00,14176.0
-2013-08-01 20:00:00,13718.0
-2013-08-01 21:00:00,13219.0
-2013-08-01 22:00:00,13149.0
-2013-08-01 23:00:00,12821.0
-2013-08-02 00:00:00,11841.0
-2013-07-31 01:00:00,10361.0
-2013-07-31 02:00:00,9721.0
-2013-07-31 03:00:00,9348.0
-2013-07-31 04:00:00,9108.0
-2013-07-31 05:00:00,9045.0
-2013-07-31 06:00:00,9208.0
-2013-07-31 07:00:00,9800.0
-2013-07-31 08:00:00,10713.0
-2013-07-31 09:00:00,11432.0
-2013-07-31 10:00:00,12020.0
-2013-07-31 11:00:00,12360.0
-2013-07-31 12:00:00,12705.0
-2013-07-31 13:00:00,12870.0
-2013-07-31 14:00:00,12976.0
-2013-07-31 15:00:00,13085.0
-2013-07-31 16:00:00,13067.0
-2013-07-31 17:00:00,13022.0
-2013-07-31 18:00:00,12984.0
-2013-07-31 19:00:00,12961.0
-2013-07-31 20:00:00,12808.0
-2013-07-31 21:00:00,12620.0
-2013-07-31 22:00:00,12847.0
-2013-07-31 23:00:00,12537.0
-2013-08-01 00:00:00,11619.0
-2013-07-30 01:00:00,10221.0
-2013-07-30 02:00:00,9534.0
-2013-07-30 03:00:00,9126.0
-2013-07-30 04:00:00,8833.0
-2013-07-30 05:00:00,8710.0
-2013-07-30 06:00:00,8832.0
-2013-07-30 07:00:00,9291.0
-2013-07-30 08:00:00,9964.0
-2013-07-30 09:00:00,10909.0
-2013-07-30 10:00:00,11584.0
-2013-07-30 11:00:00,12045.0
-2013-07-30 12:00:00,12465.0
-2013-07-30 13:00:00,12666.0
-2013-07-30 14:00:00,12674.0
-2013-07-30 15:00:00,12716.0
-2013-07-30 16:00:00,12641.0
-2013-07-30 17:00:00,12507.0
-2013-07-30 18:00:00,12396.0
-2013-07-30 19:00:00,12239.0
-2013-07-30 20:00:00,11983.0
-2013-07-30 21:00:00,11947.0
-2013-07-30 22:00:00,12238.0
-2013-07-30 23:00:00,11951.0
-2013-07-31 00:00:00,11160.0
-2013-07-29 01:00:00,8981.0
-2013-07-29 02:00:00,8474.0
-2013-07-29 03:00:00,8218.0
-2013-07-29 04:00:00,8023.0
-2013-07-29 05:00:00,8027.0
-2013-07-29 06:00:00,8222.0
-2013-07-29 07:00:00,8738.0
-2013-07-29 08:00:00,9450.0
-2013-07-29 09:00:00,10454.0
-2013-07-29 10:00:00,11099.0
-2013-07-29 11:00:00,11622.0
-2013-07-29 12:00:00,12032.0
-2013-07-29 13:00:00,12284.0
-2013-07-29 14:00:00,12472.0
-2013-07-29 15:00:00,12754.0
-2013-07-29 16:00:00,12883.0
-2013-07-29 17:00:00,12962.0
-2013-07-29 18:00:00,12958.0
-2013-07-29 19:00:00,12853.0
-2013-07-29 20:00:00,12488.0
-2013-07-29 21:00:00,12133.0
-2013-07-29 22:00:00,12229.0
-2013-07-29 23:00:00,11970.0
-2013-07-30 00:00:00,11148.0
-2013-07-28 01:00:00,8870.0
-2013-07-28 02:00:00,8371.0
-2013-07-28 03:00:00,8043.0
-2013-07-28 04:00:00,7814.0
-2013-07-28 05:00:00,7643.0
-2013-07-28 06:00:00,7664.0
-2013-07-28 07:00:00,7652.0
-2013-07-28 08:00:00,7607.0
-2013-07-28 09:00:00,7779.0
-2013-07-28 10:00:00,8219.0
-2013-07-28 11:00:00,8637.0
-2013-07-28 12:00:00,8930.0
-2013-07-28 13:00:00,9109.0
-2013-07-28 14:00:00,9229.0
-2013-07-28 15:00:00,9269.0
-2013-07-28 16:00:00,9387.0
-2013-07-28 17:00:00,9395.0
-2013-07-28 18:00:00,9500.0
-2013-07-28 19:00:00,9558.0
-2013-07-28 20:00:00,9576.0
-2013-07-28 21:00:00,9575.0
-2013-07-28 22:00:00,9900.0
-2013-07-28 23:00:00,9976.0
-2013-07-29 00:00:00,9489.0
-2013-07-27 01:00:00,10449.0
-2013-07-27 02:00:00,9696.0
-2013-07-27 03:00:00,9218.0
-2013-07-27 04:00:00,8841.0
-2013-07-27 05:00:00,8677.0
-2013-07-27 06:00:00,8601.0
-2013-07-27 07:00:00,8751.0
-2013-07-27 08:00:00,8807.0
-2013-07-27 09:00:00,9243.0
-2013-07-27 10:00:00,9667.0
-2013-07-27 11:00:00,10039.0
-2013-07-27 12:00:00,10280.0
-2013-07-27 13:00:00,10418.0
-2013-07-27 14:00:00,10428.0
-2013-07-27 15:00:00,10218.0
-2013-07-27 16:00:00,10000.0
-2013-07-27 17:00:00,9873.0
-2013-07-27 18:00:00,9787.0
-2013-07-27 19:00:00,9669.0
-2013-07-27 20:00:00,9533.0
-2013-07-27 21:00:00,9518.0
-2013-07-27 22:00:00,9840.0
-2013-07-27 23:00:00,9851.0
-2013-07-28 00:00:00,9393.0
-2013-07-26 01:00:00,11399.0
-2013-07-26 02:00:00,10588.0
-2013-07-26 03:00:00,10024.0
-2013-07-26 04:00:00,9676.0
-2013-07-26 05:00:00,9491.0
-2013-07-26 06:00:00,9581.0
-2013-07-26 07:00:00,10128.0
-2013-07-26 08:00:00,10877.0
-2013-07-26 09:00:00,11556.0
-2013-07-26 10:00:00,12145.0
-2013-07-26 11:00:00,12431.0
-2013-07-26 12:00:00,12687.0
-2013-07-26 13:00:00,12821.0
-2013-07-26 14:00:00,12801.0
-2013-07-26 15:00:00,12837.0
-2013-07-26 16:00:00,12764.0
-2013-07-26 17:00:00,12639.0
-2013-07-26 18:00:00,12522.0
-2013-07-26 19:00:00,12339.0
-2013-07-26 20:00:00,12104.0
-2013-07-26 21:00:00,11927.0
-2013-07-26 22:00:00,12025.0
-2013-07-26 23:00:00,11970.0
-2013-07-27 00:00:00,11285.0
-2013-07-25 01:00:00,10329.0
-2013-07-25 02:00:00,9625.0
-2013-07-25 03:00:00,9170.0
-2013-07-25 04:00:00,8879.0
-2013-07-25 05:00:00,8742.0
-2013-07-25 06:00:00,8913.0
-2013-07-25 07:00:00,9347.0
-2013-07-25 08:00:00,10015.0
-2013-07-25 09:00:00,11030.0
-2013-07-25 10:00:00,11751.0
-2013-07-25 11:00:00,12296.0
-2013-07-25 12:00:00,12819.0
-2013-07-25 13:00:00,13227.0
-2013-07-25 14:00:00,13615.0
-2013-07-25 15:00:00,13997.0
-2013-07-25 16:00:00,14264.0
-2013-07-25 17:00:00,14485.0
-2013-07-25 18:00:00,14549.0
-2013-07-25 19:00:00,14324.0
-2013-07-25 20:00:00,13791.0
-2013-07-25 21:00:00,13410.0
-2013-07-25 22:00:00,13524.0
-2013-07-25 23:00:00,13273.0
-2013-07-26 00:00:00,12403.0
-2013-07-24 01:00:00,10753.0
-2013-07-24 02:00:00,10038.0
-2013-07-24 03:00:00,9525.0
-2013-07-24 04:00:00,9196.0
-2013-07-24 05:00:00,9025.0
-2013-07-24 06:00:00,9140.0
-2013-07-24 07:00:00,9514.0
-2013-07-24 08:00:00,10188.0
-2013-07-24 09:00:00,11190.0
-2013-07-24 10:00:00,11855.0
-2013-07-24 11:00:00,12265.0
-2013-07-24 12:00:00,12644.0
-2013-07-24 13:00:00,12903.0
-2013-07-24 14:00:00,13104.0
-2013-07-24 15:00:00,13331.0
-2013-07-24 16:00:00,13428.0
-2013-07-24 17:00:00,13489.0
-2013-07-24 18:00:00,13458.0
-2013-07-24 19:00:00,13253.0
-2013-07-24 20:00:00,12807.0
-2013-07-24 21:00:00,12355.0
-2013-07-24 22:00:00,12264.0
-2013-07-24 23:00:00,12134.0
-2013-07-25 00:00:00,11259.0
-2013-07-23 01:00:00,14400.0
-2013-07-23 02:00:00,12938.0
-2013-07-23 03:00:00,11878.0
-2013-07-23 04:00:00,11366.0
-2013-07-23 05:00:00,11081.0
-2013-07-23 06:00:00,11036.0
-2013-07-23 07:00:00,11389.0
-2013-07-23 08:00:00,12103.0
-2013-07-23 09:00:00,13212.0
-2013-07-23 10:00:00,14067.0
-2013-07-23 11:00:00,14696.0
-2013-07-23 12:00:00,15133.0
-2013-07-23 13:00:00,15453.0
-2013-07-23 14:00:00,15711.0
-2013-07-23 15:00:00,16017.0
-2013-07-23 16:00:00,16107.0
-2013-07-23 17:00:00,16067.0
-2013-07-23 18:00:00,15818.0
-2013-07-23 19:00:00,15240.0
-2013-07-23 20:00:00,14336.0
-2013-07-23 21:00:00,13410.0
-2013-07-23 22:00:00,13052.0
-2013-07-23 23:00:00,12686.0
-2013-07-24 00:00:00,11778.0
-2013-07-22 01:00:00,12281.0
-2013-07-22 02:00:00,11530.0
-2013-07-22 03:00:00,11058.0
-2013-07-22 04:00:00,10738.0
-2013-07-22 05:00:00,10613.0
-2013-07-22 06:00:00,10804.0
-2013-07-22 07:00:00,11354.0
-2013-07-22 08:00:00,12169.0
-2013-07-22 09:00:00,13309.0
-2013-07-22 10:00:00,14422.0
-2013-07-22 11:00:00,15348.0
-2013-07-22 12:00:00,16404.0
-2013-07-22 13:00:00,17253.0
-2013-07-22 14:00:00,17927.0
-2013-07-22 15:00:00,18568.0
-2013-07-22 16:00:00,19018.0
-2013-07-22 17:00:00,19227.0
-2013-07-22 18:00:00,19427.0
-2013-07-22 19:00:00,19362.0
-2013-07-22 20:00:00,18901.0
-2013-07-22 21:00:00,18163.0
-2013-07-22 22:00:00,17696.0
-2013-07-22 23:00:00,17084.0
-2013-07-23 00:00:00,15773.0
-2013-07-21 01:00:00,12795.0
-2013-07-21 02:00:00,11936.0
-2013-07-21 03:00:00,11221.0
-2013-07-21 04:00:00,10655.0
-2013-07-21 05:00:00,10323.0
-2013-07-21 06:00:00,10097.0
-2013-07-21 07:00:00,9897.0
-2013-07-21 08:00:00,9892.0
-2013-07-21 09:00:00,10620.0
-2013-07-21 10:00:00,11541.0
-2013-07-21 11:00:00,12511.0
-2013-07-21 12:00:00,13470.0
-2013-07-21 13:00:00,14456.0
-2013-07-21 14:00:00,15280.0
-2013-07-21 15:00:00,15865.0
-2013-07-21 16:00:00,16269.0
-2013-07-21 17:00:00,16433.0
-2013-07-21 18:00:00,16311.0
-2013-07-21 19:00:00,16037.0
-2013-07-21 20:00:00,15509.0
-2013-07-21 21:00:00,14914.0
-2013-07-21 22:00:00,14687.0
-2013-07-21 23:00:00,14084.0
-2013-07-22 00:00:00,13190.0
-2013-07-20 01:00:00,15356.0
-2013-07-20 02:00:00,14217.0
-2013-07-20 03:00:00,13335.0
-2013-07-20 04:00:00,12631.0
-2013-07-20 05:00:00,12166.0
-2013-07-20 06:00:00,11758.0
-2013-07-20 07:00:00,11606.0
-2013-07-20 08:00:00,11732.0
-2013-07-20 09:00:00,12680.0
-2013-07-20 10:00:00,13771.0
-2013-07-20 11:00:00,14884.0
-2013-07-20 12:00:00,15833.0
-2013-07-20 13:00:00,16443.0
-2013-07-20 14:00:00,16874.0
-2013-07-20 15:00:00,17116.0
-2013-07-20 16:00:00,17381.0
-2013-07-20 17:00:00,17610.0
-2013-07-20 18:00:00,17702.0
-2013-07-20 19:00:00,17459.0
-2013-07-20 20:00:00,16856.0
-2013-07-20 21:00:00,15966.0
-2013-07-20 22:00:00,15600.0
-2013-07-20 23:00:00,14941.0
-2013-07-21 00:00:00,13944.0
-2013-07-19 01:00:00,17044.0
-2013-07-19 02:00:00,15856.0
-2013-07-19 03:00:00,14971.0
-2013-07-19 04:00:00,14315.0
-2013-07-19 05:00:00,13917.0
-2013-07-19 06:00:00,13858.0
-2013-07-19 07:00:00,14174.0
-2013-07-19 08:00:00,15013.0
-2013-07-19 09:00:00,16496.0
-2013-07-19 10:00:00,17839.0
-2013-07-19 11:00:00,19035.0
-2013-07-19 12:00:00,20165.0
-2013-07-19 13:00:00,20951.0
-2013-07-19 14:00:00,21469.0
-2013-07-19 15:00:00,21875.0
-2013-07-19 16:00:00,22032.0
-2013-07-19 17:00:00,22038.0
-2013-07-19 18:00:00,21955.0
-2013-07-19 19:00:00,21675.0
-2013-07-19 20:00:00,21177.0
-2013-07-19 21:00:00,20387.0
-2013-07-19 22:00:00,19788.0
-2013-07-19 23:00:00,18814.0
-2013-07-20 00:00:00,16805.0
-2013-07-18 01:00:00,16696.0
-2013-07-18 02:00:00,15428.0
-2013-07-18 03:00:00,14533.0
-2013-07-18 04:00:00,13888.0
-2013-07-18 05:00:00,13503.0
-2013-07-18 06:00:00,13438.0
-2013-07-18 07:00:00,13777.0
-2013-07-18 08:00:00,14740.0
-2013-07-18 09:00:00,16283.0
-2013-07-18 10:00:00,17764.0
-2013-07-18 11:00:00,19076.0
-2013-07-18 12:00:00,20267.0
-2013-07-18 13:00:00,20978.0
-2013-07-18 14:00:00,21501.0
-2013-07-18 15:00:00,21949.0
-2013-07-18 16:00:00,22208.0
-2013-07-18 17:00:00,22269.0
-2013-07-18 18:00:00,21989.0
-2013-07-18 19:00:00,21464.0
-2013-07-18 20:00:00,20961.0
-2013-07-18 21:00:00,20458.0
-2013-07-18 22:00:00,20082.0
-2013-07-18 23:00:00,19710.0
-2013-07-19 00:00:00,18424.0
-2013-07-17 01:00:00,16249.0
-2013-07-17 02:00:00,14982.0
-2013-07-17 03:00:00,14054.0
-2013-07-17 04:00:00,13381.0
-2013-07-17 05:00:00,12971.0
-2013-07-17 06:00:00,12919.0
-2013-07-17 07:00:00,13260.0
-2013-07-17 08:00:00,14244.0
-2013-07-17 09:00:00,15780.0
-2013-07-17 10:00:00,17126.0
-2013-07-17 11:00:00,18425.0
-2013-07-17 12:00:00,19601.0
-2013-07-17 13:00:00,20293.0
-2013-07-17 14:00:00,20883.0
-2013-07-17 15:00:00,21383.0
-2013-07-17 16:00:00,21616.0
-2013-07-17 17:00:00,21778.0
-2013-07-17 18:00:00,21801.0
-2013-07-17 19:00:00,21664.0
-2013-07-17 20:00:00,21262.0
-2013-07-17 21:00:00,20720.0
-2013-07-17 22:00:00,20250.0
-2013-07-17 23:00:00,19695.0
-2013-07-18 00:00:00,18244.0
-2013-07-16 01:00:00,14922.0
-2013-07-16 02:00:00,13818.0
-2013-07-16 03:00:00,13068.0
-2013-07-16 04:00:00,12490.0
-2013-07-16 05:00:00,12169.0
-2013-07-16 06:00:00,12219.0
-2013-07-16 07:00:00,12643.0
-2013-07-16 08:00:00,13665.0
-2013-07-16 09:00:00,15173.0
-2013-07-16 10:00:00,16577.0
-2013-07-16 11:00:00,17747.0
-2013-07-16 12:00:00,18778.0
-2013-07-16 13:00:00,19540.0
-2013-07-16 14:00:00,20146.0
-2013-07-16 15:00:00,20733.0
-2013-07-16 16:00:00,21088.0
-2013-07-16 17:00:00,21287.0
-2013-07-16 18:00:00,21381.0
-2013-07-16 19:00:00,21210.0
-2013-07-16 20:00:00,20802.0
-2013-07-16 21:00:00,20188.0
-2013-07-16 22:00:00,19727.0
-2013-07-16 23:00:00,19216.0
-2013-07-17 00:00:00,17810.0
-2013-07-15 01:00:00,13349.0
-2013-07-15 02:00:00,12419.0
-2013-07-15 03:00:00,11737.0
-2013-07-15 04:00:00,11291.0
-2013-07-15 05:00:00,11094.0
-2013-07-15 06:00:00,11209.0
-2013-07-15 07:00:00,11685.0
-2013-07-15 08:00:00,12841.0
-2013-07-15 09:00:00,14478.0
-2013-07-15 10:00:00,15936.0
-2013-07-15 11:00:00,17309.0
-2013-07-15 12:00:00,18522.0
-2013-07-15 13:00:00,19221.0
-2013-07-15 14:00:00,19550.0
-2013-07-15 15:00:00,19759.0
-2013-07-15 16:00:00,19781.0
-2013-07-15 17:00:00,19751.0
-2013-07-15 18:00:00,19536.0
-2013-07-15 19:00:00,19153.0
-2013-07-15 20:00:00,18745.0
-2013-07-15 21:00:00,18261.0
-2013-07-15 22:00:00,17989.0
-2013-07-15 23:00:00,17573.0
-2013-07-16 00:00:00,16347.0
-2013-07-14 01:00:00,11922.0
-2013-07-14 02:00:00,11095.0
-2013-07-14 03:00:00,10489.0
-2013-07-14 04:00:00,10113.0
-2013-07-14 05:00:00,9835.0
-2013-07-14 06:00:00,9674.0
-2013-07-14 07:00:00,9481.0
-2013-07-14 08:00:00,9664.0
-2013-07-14 09:00:00,10443.0
-2013-07-14 10:00:00,11526.0
-2013-07-14 11:00:00,12723.0
-2013-07-14 12:00:00,13924.0
-2013-07-14 13:00:00,14842.0
-2013-07-14 14:00:00,15528.0
-2013-07-14 15:00:00,16047.0
-2013-07-14 16:00:00,16399.0
-2013-07-14 17:00:00,16703.0
-2013-07-14 18:00:00,16933.0
-2013-07-14 19:00:00,16998.0
-2013-07-14 20:00:00,16774.0
-2013-07-14 21:00:00,16242.0
-2013-07-14 22:00:00,15862.0
-2013-07-14 23:00:00,15575.0
-2013-07-15 00:00:00,14535.0
-2013-07-13 01:00:00,11765.0
-2013-07-13 02:00:00,10844.0
-2013-07-13 03:00:00,10181.0
-2013-07-13 04:00:00,9735.0
-2013-07-13 05:00:00,9422.0
-2013-07-13 06:00:00,9301.0
-2013-07-13 07:00:00,9214.0
-2013-07-13 08:00:00,9570.0
-2013-07-13 09:00:00,10384.0
-2013-07-13 10:00:00,11388.0
-2013-07-13 11:00:00,12271.0
-2013-07-13 12:00:00,13084.0
-2013-07-13 13:00:00,13686.0
-2013-07-13 14:00:00,14110.0
-2013-07-13 15:00:00,14442.0
-2013-07-13 16:00:00,14781.0
-2013-07-13 17:00:00,15105.0
-2013-07-13 18:00:00,15321.0
-2013-07-13 19:00:00,15292.0
-2013-07-13 20:00:00,14918.0
-2013-07-13 21:00:00,14347.0
-2013-07-13 22:00:00,13887.0
-2013-07-13 23:00:00,13637.0
-2013-07-14 00:00:00,12815.0
-2013-07-12 01:00:00,11374.0
-2013-07-12 02:00:00,10470.0
-2013-07-12 03:00:00,9802.0
-2013-07-12 04:00:00,9360.0
-2013-07-12 05:00:00,9235.0
-2013-07-12 06:00:00,9245.0
-2013-07-12 07:00:00,9550.0
-2013-07-12 08:00:00,10351.0
-2013-07-12 09:00:00,11521.0
-2013-07-12 10:00:00,12453.0
-2013-07-12 11:00:00,13150.0
-2013-07-12 12:00:00,13806.0
-2013-07-12 13:00:00,14322.0
-2013-07-12 14:00:00,14733.0
-2013-07-12 15:00:00,15254.0
-2013-07-12 16:00:00,15687.0
-2013-07-12 17:00:00,15985.0
-2013-07-12 18:00:00,16185.0
-2013-07-12 19:00:00,16045.0
-2013-07-12 20:00:00,15559.0
-2013-07-12 21:00:00,14784.0
-2013-07-12 22:00:00,14165.0
-2013-07-12 23:00:00,13808.0
-2013-07-13 00:00:00,12806.0
-2013-07-11 01:00:00,11984.0
-2013-07-11 02:00:00,11016.0
-2013-07-11 03:00:00,10383.0
-2013-07-11 04:00:00,9991.0
-2013-07-11 05:00:00,9778.0
-2013-07-11 06:00:00,9840.0
-2013-07-11 07:00:00,10160.0
-2013-07-11 08:00:00,10994.0
-2013-07-11 09:00:00,12128.0
-2013-07-11 10:00:00,13069.0
-2013-07-11 11:00:00,13766.0
-2013-07-11 12:00:00,14375.0
-2013-07-11 13:00:00,14790.0
-2013-07-11 14:00:00,15104.0
-2013-07-11 15:00:00,15468.0
-2013-07-11 16:00:00,15724.0
-2013-07-11 17:00:00,15950.0
-2013-07-11 18:00:00,16049.0
-2013-07-11 19:00:00,15866.0
-2013-07-11 20:00:00,15275.0
-2013-07-11 21:00:00,14555.0
-2013-07-11 22:00:00,13956.0
-2013-07-11 23:00:00,13620.0
-2013-07-12 00:00:00,12555.0
-2013-07-10 01:00:00,14662.0
-2013-07-10 02:00:00,13599.0
-2013-07-10 03:00:00,12915.0
-2013-07-10 04:00:00,12366.0
-2013-07-10 05:00:00,12070.0
-2013-07-10 06:00:00,12142.0
-2013-07-10 07:00:00,12545.0
-2013-07-10 08:00:00,13616.0
-2013-07-10 09:00:00,14929.0
-2013-07-10 10:00:00,16060.0
-2013-07-10 11:00:00,16920.0
-2013-07-10 12:00:00,17676.0
-2013-07-10 13:00:00,18130.0
-2013-07-10 14:00:00,18381.0
-2013-07-10 15:00:00,18538.0
-2013-07-10 16:00:00,18477.0
-2013-07-10 17:00:00,18339.0
-2013-07-10 18:00:00,18109.0
-2013-07-10 19:00:00,17613.0
-2013-07-10 20:00:00,16797.0
-2013-07-10 21:00:00,15751.0
-2013-07-10 22:00:00,15059.0
-2013-07-10 23:00:00,14531.0
-2013-07-11 00:00:00,13326.0
-2013-07-09 01:00:00,14054.0
-2013-07-09 02:00:00,12955.0
-2013-07-09 03:00:00,12177.0
-2013-07-09 04:00:00,11638.0
-2013-07-09 05:00:00,11315.0
-2013-07-09 06:00:00,11353.0
-2013-07-09 07:00:00,11765.0
-2013-07-09 08:00:00,12824.0
-2013-07-09 09:00:00,14203.0
-2013-07-09 10:00:00,15322.0
-2013-07-09 11:00:00,16274.0
-2013-07-09 12:00:00,17352.0
-2013-07-09 13:00:00,17787.0
-2013-07-09 14:00:00,17623.0
-2013-07-09 15:00:00,17470.0
-2013-07-09 16:00:00,17415.0
-2013-07-09 17:00:00,17199.0
-2013-07-09 18:00:00,17536.0
-2013-07-09 19:00:00,17992.0
-2013-07-09 20:00:00,17861.0
-2013-07-09 21:00:00,17533.0
-2013-07-09 22:00:00,17342.0
-2013-07-09 23:00:00,17128.0
-2013-07-10 00:00:00,15957.0
-2013-07-08 01:00:00,13514.0
-2013-07-08 02:00:00,12587.0
-2013-07-08 03:00:00,11939.0
-2013-07-08 04:00:00,11582.0
-2013-07-08 05:00:00,11366.0
-2013-07-08 06:00:00,11485.0
-2013-07-08 07:00:00,12025.0
-2013-07-08 08:00:00,13047.0
-2013-07-08 09:00:00,13964.0
-2013-07-08 10:00:00,14382.0
-2013-07-08 11:00:00,14694.0
-2013-07-08 12:00:00,14899.0
-2013-07-08 13:00:00,15038.0
-2013-07-08 14:00:00,15305.0
-2013-07-08 15:00:00,16172.0
-2013-07-08 16:00:00,17111.0
-2013-07-08 17:00:00,17786.0
-2013-07-08 18:00:00,18074.0
-2013-07-08 19:00:00,18244.0
-2013-07-08 20:00:00,18029.0
-2013-07-08 21:00:00,17569.0
-2013-07-08 22:00:00,17171.0
-2013-07-08 23:00:00,16709.0
-2013-07-09 00:00:00,15462.0
-2013-07-07 01:00:00,11669.0
-2013-07-07 02:00:00,10920.0
-2013-07-07 03:00:00,10309.0
-2013-07-07 04:00:00,9906.0
-2013-07-07 05:00:00,9611.0
-2013-07-07 06:00:00,9486.0
-2013-07-07 07:00:00,9283.0
-2013-07-07 08:00:00,9197.0
-2013-07-07 09:00:00,9761.0
-2013-07-07 10:00:00,10709.0
-2013-07-07 11:00:00,11771.0
-2013-07-07 12:00:00,12745.0
-2013-07-07 13:00:00,13640.0
-2013-07-07 14:00:00,14522.0
-2013-07-07 15:00:00,15234.0
-2013-07-07 16:00:00,15805.0
-2013-07-07 17:00:00,16179.0
-2013-07-07 18:00:00,16194.0
-2013-07-07 19:00:00,16258.0
-2013-07-07 20:00:00,16051.0
-2013-07-07 21:00:00,15753.0
-2013-07-07 22:00:00,15674.0
-2013-07-07 23:00:00,15483.0
-2013-07-08 00:00:00,14605.0
-2013-07-06 01:00:00,11780.0
-2013-07-06 02:00:00,10849.0
-2013-07-06 03:00:00,10232.0
-2013-07-06 04:00:00,9730.0
-2013-07-06 05:00:00,9431.0
-2013-07-06 06:00:00,9273.0
-2013-07-06 07:00:00,9177.0
-2013-07-06 08:00:00,9397.0
-2013-07-06 09:00:00,10264.0
-2013-07-06 10:00:00,11325.0
-2013-07-06 11:00:00,12426.0
-2013-07-06 12:00:00,13324.0
-2013-07-06 13:00:00,13995.0
-2013-07-06 14:00:00,14361.0
-2013-07-06 15:00:00,14437.0
-2013-07-06 16:00:00,14415.0
-2013-07-06 17:00:00,14296.0
-2013-07-06 18:00:00,14174.0
-2013-07-06 19:00:00,13948.0
-2013-07-06 20:00:00,13613.0
-2013-07-06 21:00:00,13224.0
-2013-07-06 22:00:00,13205.0
-2013-07-06 23:00:00,13075.0
-2013-07-07 00:00:00,12449.0
-2013-07-05 01:00:00,10426.0
-2013-07-05 02:00:00,9718.0
-2013-07-05 03:00:00,9157.0
-2013-07-05 04:00:00,8741.0
-2013-07-05 05:00:00,8509.0
-2013-07-05 06:00:00,8538.0
-2013-07-05 07:00:00,8716.0
-2013-07-05 08:00:00,9309.0
-2013-07-05 09:00:00,10277.0
-2013-07-05 10:00:00,11327.0
-2013-07-05 11:00:00,12371.0
-2013-07-05 12:00:00,13285.0
-2013-07-05 13:00:00,14017.0
-2013-07-05 14:00:00,14535.0
-2013-07-05 15:00:00,14946.0
-2013-07-05 16:00:00,15228.0
-2013-07-05 17:00:00,15475.0
-2013-07-05 18:00:00,15638.0
-2013-07-05 19:00:00,15498.0
-2013-07-05 20:00:00,14992.0
-2013-07-05 21:00:00,14362.0
-2013-07-05 22:00:00,13971.0
-2013-07-05 23:00:00,13774.0
-2013-07-06 00:00:00,12795.0
-2013-07-04 01:00:00,9828.0
-2013-07-04 02:00:00,9197.0
-2013-07-04 03:00:00,8751.0
-2013-07-04 04:00:00,8399.0
-2013-07-04 05:00:00,8197.0
-2013-07-04 06:00:00,8139.0
-2013-07-04 07:00:00,7991.0
-2013-07-04 08:00:00,8005.0
-2013-07-04 09:00:00,8357.0
-2013-07-04 10:00:00,8921.0
-2013-07-04 11:00:00,9605.0
-2013-07-04 12:00:00,10273.0
-2013-07-04 13:00:00,10861.0
-2013-07-04 14:00:00,11348.0
-2013-07-04 15:00:00,11729.0
-2013-07-04 16:00:00,11982.0
-2013-07-04 17:00:00,12136.0
-2013-07-04 18:00:00,12282.0
-2013-07-04 19:00:00,12276.0
-2013-07-04 20:00:00,12017.0
-2013-07-04 21:00:00,11574.0
-2013-07-04 22:00:00,11405.0
-2013-07-04 23:00:00,11303.0
-2013-07-05 00:00:00,10952.0
-2013-07-03 01:00:00,9654.0
-2013-07-03 02:00:00,9066.0
-2013-07-03 03:00:00,8695.0
-2013-07-03 04:00:00,8454.0
-2013-07-03 05:00:00,8389.0
-2013-07-03 06:00:00,8522.0
-2013-07-03 07:00:00,9004.0
-2013-07-03 08:00:00,9805.0
-2013-07-03 09:00:00,10605.0
-2013-07-03 10:00:00,11157.0
-2013-07-03 11:00:00,11538.0
-2013-07-03 12:00:00,11845.0
-2013-07-03 13:00:00,11967.0
-2013-07-03 14:00:00,12023.0
-2013-07-03 15:00:00,12170.0
-2013-07-03 16:00:00,12184.0
-2013-07-03 17:00:00,12096.0
-2013-07-03 18:00:00,11941.0
-2013-07-03 19:00:00,11800.0
-2013-07-03 20:00:00,11458.0
-2013-07-03 21:00:00,11225.0
-2013-07-03 22:00:00,11284.0
-2013-07-03 23:00:00,11270.0
-2013-07-04 00:00:00,10596.0
-2013-07-02 01:00:00,10081.0
-2013-07-02 02:00:00,9380.0
-2013-07-02 03:00:00,8934.0
-2013-07-02 04:00:00,8637.0
-2013-07-02 05:00:00,8504.0
-2013-07-02 06:00:00,8637.0
-2013-07-02 07:00:00,9019.0
-2013-07-02 08:00:00,9735.0
-2013-07-02 09:00:00,10573.0
-2013-07-02 10:00:00,11148.0
-2013-07-02 11:00:00,11557.0
-2013-07-02 12:00:00,11850.0
-2013-07-02 13:00:00,11930.0
-2013-07-02 14:00:00,12030.0
-2013-07-02 15:00:00,12192.0
-2013-07-02 16:00:00,12154.0
-2013-07-02 17:00:00,12012.0
-2013-07-02 18:00:00,11793.0
-2013-07-02 19:00:00,11580.0
-2013-07-02 20:00:00,11224.0
-2013-07-02 21:00:00,11050.0
-2013-07-02 22:00:00,11237.0
-2013-07-02 23:00:00,11195.0
-2013-07-03 00:00:00,10445.0
-2013-07-01 01:00:00,9372.0
-2013-07-01 02:00:00,8872.0
-2013-07-01 03:00:00,8576.0
-2013-07-01 04:00:00,8392.0
-2013-07-01 05:00:00,8339.0
-2013-07-01 06:00:00,8515.0
-2013-07-01 07:00:00,8923.0
-2013-07-01 08:00:00,9744.0
-2013-07-01 09:00:00,10765.0
-2013-07-01 10:00:00,11473.0
-2013-07-01 11:00:00,11995.0
-2013-07-01 12:00:00,12430.0
-2013-07-01 13:00:00,12651.0
-2013-07-01 14:00:00,12845.0
-2013-07-01 15:00:00,13037.0
-2013-07-01 16:00:00,13115.0
-2013-07-01 17:00:00,13140.0
-2013-07-01 18:00:00,13050.0
-2013-07-01 19:00:00,12836.0
-2013-07-01 20:00:00,12410.0
-2013-07-01 21:00:00,11971.0
-2013-07-01 22:00:00,11861.0
-2013-07-01 23:00:00,11833.0
-2013-07-02 00:00:00,10997.0
-2013-06-30 01:00:00,9582.0
-2013-06-30 02:00:00,9065.0
-2013-06-30 03:00:00,8641.0
-2013-06-30 04:00:00,8464.0
-2013-06-30 05:00:00,8266.0
-2013-06-30 06:00:00,8215.0
-2013-06-30 07:00:00,8093.0
-2013-06-30 08:00:00,8067.0
-2013-06-30 09:00:00,8447.0
-2013-06-30 10:00:00,9020.0
-2013-06-30 11:00:00,9634.0
-2013-06-30 12:00:00,10174.0
-2013-06-30 13:00:00,10600.0
-2013-06-30 14:00:00,10929.0
-2013-06-30 15:00:00,11139.0
-2013-06-30 16:00:00,11341.0
-2013-06-30 17:00:00,11427.0
-2013-06-30 18:00:00,11457.0
-2013-06-30 19:00:00,11371.0
-2013-06-30 20:00:00,11030.0
-2013-06-30 21:00:00,10613.0
-2013-06-30 22:00:00,10600.0
-2013-06-30 23:00:00,10668.0
-2013-07-01 00:00:00,10116.0
-2013-06-29 01:00:00,11434.0
-2013-06-29 02:00:00,10570.0
-2013-06-29 03:00:00,9979.0
-2013-06-29 04:00:00,9519.0
-2013-06-29 05:00:00,9280.0
-2013-06-29 06:00:00,9173.0
-2013-06-29 07:00:00,9261.0
-2013-06-29 08:00:00,9425.0
-2013-06-29 09:00:00,9928.0
-2013-06-29 10:00:00,10466.0
-2013-06-29 11:00:00,10921.0
-2013-06-29 12:00:00,11187.0
-2013-06-29 13:00:00,11321.0
-2013-06-29 14:00:00,11284.0
-2013-06-29 15:00:00,11166.0
-2013-06-29 16:00:00,11121.0
-2013-06-29 17:00:00,11118.0
-2013-06-29 18:00:00,11126.0
-2013-06-29 19:00:00,11074.0
-2013-06-29 20:00:00,10769.0
-2013-06-29 21:00:00,10544.0
-2013-06-29 22:00:00,10650.0
-2013-06-29 23:00:00,10704.0
-2013-06-30 00:00:00,10228.0
-2013-06-28 01:00:00,13005.0
-2013-06-28 02:00:00,11860.0
-2013-06-28 03:00:00,11075.0
-2013-06-28 04:00:00,10529.0
-2013-06-28 05:00:00,10253.0
-2013-06-28 06:00:00,10220.0
-2013-06-28 07:00:00,10501.0
-2013-06-28 08:00:00,11497.0
-2013-06-28 09:00:00,12682.0
-2013-06-28 10:00:00,13653.0
-2013-06-28 11:00:00,14539.0
-2013-06-28 12:00:00,15290.0
-2013-06-28 13:00:00,15816.0
-2013-06-28 14:00:00,16115.0
-2013-06-28 15:00:00,16406.0
-2013-06-28 16:00:00,16253.0
-2013-06-28 17:00:00,15666.0
-2013-06-28 18:00:00,15296.0
-2013-06-28 19:00:00,15054.0
-2013-06-28 20:00:00,14489.0
-2013-06-28 21:00:00,13862.0
-2013-06-28 22:00:00,13506.0
-2013-06-28 23:00:00,13308.0
-2013-06-29 00:00:00,12472.0
-2013-06-27 01:00:00,11982.0
-2013-06-27 02:00:00,10981.0
-2013-06-27 03:00:00,10324.0
-2013-06-27 04:00:00,9896.0
-2013-06-27 05:00:00,9729.0
-2013-06-27 06:00:00,9840.0
-2013-06-27 07:00:00,10197.0
-2013-06-27 08:00:00,11337.0
-2013-06-27 09:00:00,12637.0
-2013-06-27 10:00:00,13878.0
-2013-06-27 11:00:00,15041.0
-2013-06-27 12:00:00,16195.0
-2013-06-27 13:00:00,17064.0
-2013-06-27 14:00:00,17784.0
-2013-06-27 15:00:00,18418.0
-2013-06-27 16:00:00,18832.0
-2013-06-27 17:00:00,19173.0
-2013-06-27 18:00:00,19232.0
-2013-06-27 19:00:00,18539.0
-2013-06-27 20:00:00,17337.0
-2013-06-27 21:00:00,16644.0
-2013-06-27 22:00:00,15994.0
-2013-06-27 23:00:00,15619.0
-2013-06-28 00:00:00,14434.0
-2013-06-26 01:00:00,12543.0
-2013-06-26 02:00:00,11561.0
-2013-06-26 03:00:00,10848.0
-2013-06-26 04:00:00,10389.0
-2013-06-26 05:00:00,10177.0
-2013-06-26 06:00:00,10313.0
-2013-06-26 07:00:00,10856.0
-2013-06-26 08:00:00,11843.0
-2013-06-26 09:00:00,12641.0
-2013-06-26 10:00:00,13026.0
-2013-06-26 11:00:00,13362.0
-2013-06-26 12:00:00,13690.0
-2013-06-26 13:00:00,14032.0
-2013-06-26 14:00:00,14488.0
-2013-06-26 15:00:00,15092.0
-2013-06-26 16:00:00,15294.0
-2013-06-26 17:00:00,15422.0
-2013-06-26 18:00:00,15554.0
-2013-06-26 19:00:00,15599.0
-2013-06-26 20:00:00,15268.0
-2013-06-26 21:00:00,14877.0
-2013-06-26 22:00:00,14607.0
-2013-06-26 23:00:00,14335.0
-2013-06-27 00:00:00,13272.0
-2013-06-25 01:00:00,11589.0
-2013-06-25 02:00:00,10745.0
-2013-06-25 03:00:00,10202.0
-2013-06-25 04:00:00,9907.0
-2013-06-25 05:00:00,9836.0
-2013-06-25 06:00:00,9904.0
-2013-06-25 07:00:00,10404.0
-2013-06-25 08:00:00,11331.0
-2013-06-25 09:00:00,12348.0
-2013-06-25 10:00:00,13091.0
-2013-06-25 11:00:00,13718.0
-2013-06-25 12:00:00,14214.0
-2013-06-25 13:00:00,14473.0
-2013-06-25 14:00:00,15080.0
-2013-06-25 15:00:00,16056.0
-2013-06-25 16:00:00,16647.0
-2013-06-25 17:00:00,16814.0
-2013-06-25 18:00:00,16985.0
-2013-06-25 19:00:00,16614.0
-2013-06-25 20:00:00,16134.0
-2013-06-25 21:00:00,15735.0
-2013-06-25 22:00:00,15462.0
-2013-06-25 23:00:00,15024.0
-2013-06-26 00:00:00,13858.0
-2013-06-24 01:00:00,12095.0
-2013-06-24 02:00:00,11312.0
-2013-06-24 03:00:00,10788.0
-2013-06-24 04:00:00,10388.0
-2013-06-24 05:00:00,10214.0
-2013-06-24 06:00:00,10370.0
-2013-06-24 07:00:00,10908.0
-2013-06-24 08:00:00,11965.0
-2013-06-24 09:00:00,12906.0
-2013-06-24 10:00:00,13416.0
-2013-06-24 11:00:00,13744.0
-2013-06-24 12:00:00,13989.0
-2013-06-24 13:00:00,14477.0
-2013-06-24 14:00:00,15128.0
-2013-06-24 15:00:00,16017.0
-2013-06-24 16:00:00,16747.0
-2013-06-24 17:00:00,17370.0
-2013-06-24 18:00:00,17702.0
-2013-06-24 19:00:00,17257.0
-2013-06-24 20:00:00,15189.0
-2013-06-24 21:00:00,14263.0
-2013-06-24 22:00:00,13899.0
-2013-06-24 23:00:00,13476.0
-2013-06-25 00:00:00,12618.0
-2013-06-23 01:00:00,11289.0
-2013-06-23 02:00:00,10483.0
-2013-06-23 03:00:00,9831.0
-2013-06-23 04:00:00,9414.0
-2013-06-23 05:00:00,9173.0
-2013-06-23 06:00:00,9074.0
-2013-06-23 07:00:00,8933.0
-2013-06-23 08:00:00,8904.0
-2013-06-23 09:00:00,9545.0
-2013-06-23 10:00:00,10616.0
-2013-06-23 11:00:00,11722.0
-2013-06-23 12:00:00,12687.0
-2013-06-23 13:00:00,13604.0
-2013-06-23 14:00:00,14347.0
-2013-06-23 15:00:00,15067.0
-2013-06-23 16:00:00,15655.0
-2013-06-23 17:00:00,16017.0
-2013-06-23 18:00:00,15918.0
-2013-06-23 19:00:00,15361.0
-2013-06-23 20:00:00,14565.0
-2013-06-23 21:00:00,14065.0
-2013-06-23 22:00:00,13926.0
-2013-06-23 23:00:00,13836.0
-2013-06-24 00:00:00,13044.0
-2013-06-22 01:00:00,11614.0
-2013-06-22 02:00:00,10911.0
-2013-06-22 03:00:00,10370.0
-2013-06-22 04:00:00,10021.0
-2013-06-22 05:00:00,9684.0
-2013-06-22 06:00:00,9666.0
-2013-06-22 07:00:00,9772.0
-2013-06-22 08:00:00,10039.0
-2013-06-22 09:00:00,10559.0
-2013-06-22 10:00:00,11233.0
-2013-06-22 11:00:00,11971.0
-2013-06-22 12:00:00,12548.0
-2013-06-22 13:00:00,13117.0
-2013-06-22 14:00:00,13444.0
-2013-06-22 15:00:00,13393.0
-2013-06-22 16:00:00,13255.0
-2013-06-22 17:00:00,13294.0
-2013-06-22 18:00:00,13368.0
-2013-06-22 19:00:00,13440.0
-2013-06-22 20:00:00,13404.0
-2013-06-22 21:00:00,13129.0
-2013-06-22 22:00:00,13037.0
-2013-06-22 23:00:00,12937.0
-2013-06-23 00:00:00,12140.0
-2013-06-21 01:00:00,12415.0
-2013-06-21 02:00:00,11432.0
-2013-06-21 03:00:00,10729.0
-2013-06-21 04:00:00,10298.0
-2013-06-21 05:00:00,10056.0
-2013-06-21 06:00:00,10102.0
-2013-06-21 07:00:00,10435.0
-2013-06-21 08:00:00,11517.0
-2013-06-21 09:00:00,12801.0
-2013-06-21 10:00:00,13971.0
-2013-06-21 11:00:00,14879.0
-2013-06-21 12:00:00,15551.0
-2013-06-21 13:00:00,15800.0
-2013-06-21 14:00:00,15592.0
-2013-06-21 15:00:00,14999.0
-2013-06-21 16:00:00,14374.0
-2013-06-21 17:00:00,13850.0
-2013-06-21 18:00:00,13641.0
-2013-06-21 19:00:00,13444.0
-2013-06-21 20:00:00,13169.0
-2013-06-21 21:00:00,12950.0
-2013-06-21 22:00:00,13061.0
-2013-06-21 23:00:00,13124.0
-2013-06-22 00:00:00,12464.0
-2013-06-20 01:00:00,10216.0
-2013-06-20 02:00:00,9476.0
-2013-06-20 03:00:00,8996.0
-2013-06-20 04:00:00,8729.0
-2013-06-20 05:00:00,8606.0
-2013-06-20 06:00:00,8760.0
-2013-06-20 07:00:00,9069.0
-2013-06-20 08:00:00,10033.0
-2013-06-20 09:00:00,11153.0
-2013-06-20 10:00:00,11918.0
-2013-06-20 11:00:00,12740.0
-2013-06-20 12:00:00,13574.0
-2013-06-20 13:00:00,14281.0
-2013-06-20 14:00:00,14830.0
-2013-06-20 15:00:00,15399.0
-2013-06-20 16:00:00,15797.0
-2013-06-20 17:00:00,16140.0
-2013-06-20 18:00:00,16336.0
-2013-06-20 19:00:00,16321.0
-2013-06-20 20:00:00,15906.0
-2013-06-20 21:00:00,15367.0
-2013-06-20 22:00:00,15022.0
-2013-06-20 23:00:00,14686.0
-2013-06-21 00:00:00,13638.0
-2013-06-19 01:00:00,9838.0
-2013-06-19 02:00:00,9169.0
-2013-06-19 03:00:00,8739.0
-2013-06-19 04:00:00,8466.0
-2013-06-19 05:00:00,8369.0
-2013-06-19 06:00:00,8493.0
-2013-06-19 07:00:00,8839.0
-2013-06-19 08:00:00,9711.0
-2013-06-19 09:00:00,10658.0
-2013-06-19 10:00:00,11351.0
-2013-06-19 11:00:00,11858.0
-2013-06-19 12:00:00,12308.0
-2013-06-19 13:00:00,12645.0
-2013-06-19 14:00:00,12848.0
-2013-06-19 15:00:00,13084.0
-2013-06-19 16:00:00,13208.0
-2013-06-19 17:00:00,13311.0
-2013-06-19 18:00:00,13316.0
-2013-06-19 19:00:00,13211.0
-2013-06-19 20:00:00,12842.0
-2013-06-19 21:00:00,12428.0
-2013-06-19 22:00:00,12215.0
-2013-06-19 23:00:00,12027.0
-2013-06-20 00:00:00,11209.0
-2013-06-18 01:00:00,11067.0
-2013-06-18 02:00:00,10154.0
-2013-06-18 03:00:00,9532.0
-2013-06-18 04:00:00,9088.0
-2013-06-18 05:00:00,8918.0
-2013-06-18 06:00:00,8949.0
-2013-06-18 07:00:00,9275.0
-2013-06-18 08:00:00,10057.0
-2013-06-18 09:00:00,10858.0
-2013-06-18 10:00:00,11387.0
-2013-06-18 11:00:00,11718.0
-2013-06-18 12:00:00,12007.0
-2013-06-18 13:00:00,12259.0
-2013-06-18 14:00:00,12461.0
-2013-06-18 15:00:00,12673.0
-2013-06-18 16:00:00,12753.0
-2013-06-18 17:00:00,12790.0
-2013-06-18 18:00:00,12753.0
-2013-06-18 19:00:00,12552.0
-2013-06-18 20:00:00,12074.0
-2013-06-18 21:00:00,11641.0
-2013-06-18 22:00:00,11552.0
-2013-06-18 23:00:00,11460.0
-2013-06-19 00:00:00,10689.0
-2013-06-17 01:00:00,11355.0
-2013-06-17 02:00:00,10500.0
-2013-06-17 03:00:00,9863.0
-2013-06-17 04:00:00,9449.0
-2013-06-17 05:00:00,9233.0
-2013-06-17 06:00:00,9352.0
-2013-06-17 07:00:00,9684.0
-2013-06-17 08:00:00,10860.0
-2013-06-17 09:00:00,12215.0
-2013-06-17 10:00:00,13368.0
-2013-06-17 11:00:00,14258.0
-2013-06-17 12:00:00,15087.0
-2013-06-17 13:00:00,15769.0
-2013-06-17 14:00:00,16312.0
-2013-06-17 15:00:00,16846.0
-2013-06-17 16:00:00,17160.0
-2013-06-17 17:00:00,17401.0
-2013-06-17 18:00:00,17430.0
-2013-06-17 19:00:00,17089.0
-2013-06-17 20:00:00,16384.0
-2013-06-17 21:00:00,15511.0
-2013-06-17 22:00:00,14683.0
-2013-06-17 23:00:00,13863.0
-2013-06-18 00:00:00,12375.0
-2013-06-16 01:00:00,10923.0
-2013-06-16 02:00:00,10221.0
-2013-06-16 03:00:00,9463.0
-2013-06-16 04:00:00,9068.0
-2013-06-16 05:00:00,8780.0
-2013-06-16 06:00:00,8584.0
-2013-06-16 07:00:00,8370.0
-2013-06-16 08:00:00,8489.0
-2013-06-16 09:00:00,9114.0
-2013-06-16 10:00:00,10003.0
-2013-06-16 11:00:00,10854.0
-2013-06-16 12:00:00,11682.0
-2013-06-16 13:00:00,12363.0
-2013-06-16 14:00:00,12812.0
-2013-06-16 15:00:00,13192.0
-2013-06-16 16:00:00,13528.0
-2013-06-16 17:00:00,13842.0
-2013-06-16 18:00:00,14011.0
-2013-06-16 19:00:00,14062.0
-2013-06-16 20:00:00,13857.0
-2013-06-16 21:00:00,13480.0
-2013-06-16 22:00:00,13291.0
-2013-06-16 23:00:00,13245.0
-2013-06-17 00:00:00,12424.0
-2013-06-15 01:00:00,9841.0
-2013-06-15 02:00:00,9119.0
-2013-06-15 03:00:00,8653.0
-2013-06-15 04:00:00,8444.0
-2013-06-15 05:00:00,8334.0
-2013-06-15 06:00:00,8353.0
-2013-06-15 07:00:00,8439.0
-2013-06-15 08:00:00,8664.0
-2013-06-15 09:00:00,9190.0
-2013-06-15 10:00:00,9798.0
-2013-06-15 11:00:00,10333.0
-2013-06-15 12:00:00,10641.0
-2013-06-15 13:00:00,10811.0
-2013-06-15 14:00:00,10959.0
-2013-06-15 15:00:00,11027.0
-2013-06-15 16:00:00,11152.0
-2013-06-15 17:00:00,11409.0
-2013-06-15 18:00:00,11785.0
-2013-06-15 19:00:00,12057.0
-2013-06-15 20:00:00,11994.0
-2013-06-15 21:00:00,11907.0
-2013-06-15 22:00:00,12132.0
-2013-06-15 23:00:00,12210.0
-2013-06-16 00:00:00,11701.0
-2013-06-14 01:00:00,9964.0
-2013-06-14 02:00:00,9270.0
-2013-06-14 03:00:00,8784.0
-2013-06-14 04:00:00,8554.0
-2013-06-14 05:00:00,8401.0
-2013-06-14 06:00:00,8535.0
-2013-06-14 07:00:00,8785.0
-2013-06-14 08:00:00,9606.0
-2013-06-14 09:00:00,10586.0
-2013-06-14 10:00:00,11241.0
-2013-06-14 11:00:00,11743.0
-2013-06-14 12:00:00,12162.0
-2013-06-14 13:00:00,12425.0
-2013-06-14 14:00:00,12605.0
-2013-06-14 15:00:00,12891.0
-2013-06-14 16:00:00,13071.0
-2013-06-14 17:00:00,13193.0
-2013-06-14 18:00:00,13207.0
-2013-06-14 19:00:00,13008.0
-2013-06-14 20:00:00,12492.0
-2013-06-14 21:00:00,11812.0
-2013-06-14 22:00:00,11644.0
-2013-06-14 23:00:00,11502.0
-2013-06-15 00:00:00,10722.0
-2013-06-13 01:00:00,10963.0
-2013-06-13 02:00:00,10085.0
-2013-06-13 03:00:00,9504.0
-2013-06-13 04:00:00,9172.0
-2013-06-13 05:00:00,9017.0
-2013-06-13 06:00:00,9121.0
-2013-06-13 07:00:00,9471.0
-2013-06-13 08:00:00,10220.0
-2013-06-13 09:00:00,11240.0
-2013-06-13 10:00:00,11987.0
-2013-06-13 11:00:00,12479.0
-2013-06-13 12:00:00,12875.0
-2013-06-13 13:00:00,13100.0
-2013-06-13 14:00:00,13270.0
-2013-06-13 15:00:00,13495.0
-2013-06-13 16:00:00,13563.0
-2013-06-13 17:00:00,13512.0
-2013-06-13 18:00:00,13447.0
-2013-06-13 19:00:00,13215.0
-2013-06-13 20:00:00,12648.0
-2013-06-13 21:00:00,12097.0
-2013-06-13 22:00:00,11939.0
-2013-06-13 23:00:00,11826.0
-2013-06-14 00:00:00,10966.0
-2013-06-12 01:00:00,12011.0
-2013-06-12 02:00:00,11036.0
-2013-06-12 03:00:00,10383.0
-2013-06-12 04:00:00,9943.0
-2013-06-12 05:00:00,9755.0
-2013-06-12 06:00:00,9800.0
-2013-06-12 07:00:00,10276.0
-2013-06-12 08:00:00,11203.0
-2013-06-12 09:00:00,12172.0
-2013-06-12 10:00:00,12788.0
-2013-06-12 11:00:00,13272.0
-2013-06-12 12:00:00,13761.0
-2013-06-12 13:00:00,14148.0
-2013-06-12 14:00:00,14643.0
-2013-06-12 15:00:00,15405.0
-2013-06-12 16:00:00,15863.0
-2013-06-12 17:00:00,15890.0
-2013-06-12 18:00:00,15698.0
-2013-06-12 19:00:00,15149.0
-2013-06-12 20:00:00,14590.0
-2013-06-12 21:00:00,14176.0
-2013-06-12 22:00:00,13842.0
-2013-06-12 23:00:00,13047.0
-2013-06-13 00:00:00,11989.0
-2013-06-11 01:00:00,10567.0
-2013-06-11 02:00:00,9813.0
-2013-06-11 03:00:00,9321.0
-2013-06-11 04:00:00,8989.0
-2013-06-11 05:00:00,8860.0
-2013-06-11 06:00:00,8978.0
-2013-06-11 07:00:00,9345.0
-2013-06-11 08:00:00,10421.0
-2013-06-11 09:00:00,11617.0
-2013-06-11 10:00:00,12561.0
-2013-06-11 11:00:00,13305.0
-2013-06-11 12:00:00,14022.0
-2013-06-11 13:00:00,14569.0
-2013-06-11 14:00:00,15005.0
-2013-06-11 15:00:00,15483.0
-2013-06-11 16:00:00,15712.0
-2013-06-11 17:00:00,15735.0
-2013-06-11 18:00:00,15290.0
-2013-06-11 19:00:00,15182.0
-2013-06-11 20:00:00,14971.0
-2013-06-11 21:00:00,14588.0
-2013-06-11 22:00:00,14573.0
-2013-06-11 23:00:00,14280.0
-2013-06-12 00:00:00,13244.0
-2013-06-10 01:00:00,9803.0
-2013-06-10 02:00:00,9244.0
-2013-06-10 03:00:00,8870.0
-2013-06-10 04:00:00,8618.0
-2013-06-10 05:00:00,8531.0
-2013-06-10 06:00:00,8715.0
-2013-06-10 07:00:00,9207.0
-2013-06-10 08:00:00,10173.0
-2013-06-10 09:00:00,11274.0
-2013-06-10 10:00:00,12020.0
-2013-06-10 11:00:00,12667.0
-2013-06-10 12:00:00,13173.0
-2013-06-10 13:00:00,13490.0
-2013-06-10 14:00:00,13636.0
-2013-06-10 15:00:00,13804.0
-2013-06-10 16:00:00,13892.0
-2013-06-10 17:00:00,13847.0
-2013-06-10 18:00:00,13712.0
-2013-06-10 19:00:00,13562.0
-2013-06-10 20:00:00,13239.0
-2013-06-10 21:00:00,12861.0
-2013-06-10 22:00:00,12814.0
-2013-06-10 23:00:00,12561.0
-2013-06-11 00:00:00,11586.0
-2013-06-09 01:00:00,8935.0
-2013-06-09 02:00:00,8350.0
-2013-06-09 03:00:00,8036.0
-2013-06-09 04:00:00,7803.0
-2013-06-09 05:00:00,7672.0
-2013-06-09 06:00:00,7632.0
-2013-06-09 07:00:00,7485.0
-2013-06-09 08:00:00,7523.0
-2013-06-09 09:00:00,7959.0
-2013-06-09 10:00:00,8519.0
-2013-06-09 11:00:00,9154.0
-2013-06-09 12:00:00,9694.0
-2013-06-09 13:00:00,10089.0
-2013-06-09 14:00:00,10358.0
-2013-06-09 15:00:00,10529.0
-2013-06-09 16:00:00,10625.0
-2013-06-09 17:00:00,10593.0
-2013-06-09 18:00:00,10705.0
-2013-06-09 19:00:00,10687.0
-2013-06-09 20:00:00,10634.0
-2013-06-09 21:00:00,10642.0
-2013-06-09 22:00:00,11029.0
-2013-06-09 23:00:00,11061.0
-2013-06-10 00:00:00,10546.0
-2013-06-08 01:00:00,9252.0
-2013-06-08 02:00:00,8636.0
-2013-06-08 03:00:00,8264.0
-2013-06-08 04:00:00,8008.0
-2013-06-08 05:00:00,7867.0
-2013-06-08 06:00:00,7908.0
-2013-06-08 07:00:00,7846.0
-2013-06-08 08:00:00,8120.0
-2013-06-08 09:00:00,8662.0
-2013-06-08 10:00:00,9246.0
-2013-06-08 11:00:00,9688.0
-2013-06-08 12:00:00,10017.0
-2013-06-08 13:00:00,10232.0
-2013-06-08 14:00:00,10271.0
-2013-06-08 15:00:00,10260.0
-2013-06-08 16:00:00,10204.0
-2013-06-08 17:00:00,10201.0
-2013-06-08 18:00:00,10160.0
-2013-06-08 19:00:00,10056.0
-2013-06-08 20:00:00,9903.0
-2013-06-08 21:00:00,9747.0
-2013-06-08 22:00:00,10024.0
-2013-06-08 23:00:00,10016.0
-2013-06-09 00:00:00,9542.0
-2013-06-07 01:00:00,9408.0
-2013-06-07 02:00:00,8785.0
-2013-06-07 03:00:00,8440.0
-2013-06-07 04:00:00,8208.0
-2013-06-07 05:00:00,8135.0
-2013-06-07 06:00:00,8283.0
-2013-06-07 07:00:00,8641.0
-2013-06-07 08:00:00,9412.0
-2013-06-07 09:00:00,10254.0
-2013-06-07 10:00:00,10728.0
-2013-06-07 11:00:00,11034.0
-2013-06-07 12:00:00,11310.0
-2013-06-07 13:00:00,11422.0
-2013-06-07 14:00:00,11461.0
-2013-06-07 15:00:00,11515.0
-2013-06-07 16:00:00,11477.0
-2013-06-07 17:00:00,11344.0
-2013-06-07 18:00:00,11252.0
-2013-06-07 19:00:00,11077.0
-2013-06-07 20:00:00,10818.0
-2013-06-07 21:00:00,10556.0
-2013-06-07 22:00:00,10649.0
-2013-06-07 23:00:00,10685.0
-2013-06-08 00:00:00,10000.0
-2013-06-06 01:00:00,9480.0
-2013-06-06 02:00:00,8869.0
-2013-06-06 03:00:00,8500.0
-2013-06-06 04:00:00,8298.0
-2013-06-06 05:00:00,8235.0
-2013-06-06 06:00:00,8377.0
-2013-06-06 07:00:00,8870.0
-2013-06-06 08:00:00,9710.0
-2013-06-06 09:00:00,10573.0
-2013-06-06 10:00:00,11058.0
-2013-06-06 11:00:00,11393.0
-2013-06-06 12:00:00,11589.0
-2013-06-06 13:00:00,11589.0
-2013-06-06 14:00:00,11584.0
-2013-06-06 15:00:00,11631.0
-2013-06-06 16:00:00,11518.0
-2013-06-06 17:00:00,11406.0
-2013-06-06 18:00:00,11289.0
-2013-06-06 19:00:00,11094.0
-2013-06-06 20:00:00,10813.0
-2013-06-06 21:00:00,10633.0
-2013-06-06 22:00:00,10901.0
-2013-06-06 23:00:00,10850.0
-2013-06-07 00:00:00,10245.0
-2013-06-05 01:00:00,9496.0
-2013-06-05 02:00:00,8902.0
-2013-06-05 03:00:00,8507.0
-2013-06-05 04:00:00,8276.0
-2013-06-05 05:00:00,8209.0
-2013-06-05 06:00:00,8353.0
-2013-06-05 07:00:00,8826.0
-2013-06-05 08:00:00,9620.0
-2013-06-05 09:00:00,10574.0
-2013-06-05 10:00:00,11177.0
-2013-06-05 11:00:00,11577.0
-2013-06-05 12:00:00,11842.0
-2013-06-05 13:00:00,12048.0
-2013-06-05 14:00:00,12081.0
-2013-06-05 15:00:00,12196.0
-2013-06-05 16:00:00,12128.0
-2013-06-05 17:00:00,11887.0
-2013-06-05 18:00:00,11682.0
-2013-06-05 19:00:00,11445.0
-2013-06-05 20:00:00,11172.0
-2013-06-05 21:00:00,11153.0
-2013-06-05 22:00:00,11391.0
-2013-06-05 23:00:00,11076.0
-2013-06-06 00:00:00,10286.0
-2013-06-04 01:00:00,9343.0
-2013-06-04 02:00:00,8763.0
-2013-06-04 03:00:00,8399.0
-2013-06-04 04:00:00,8172.0
-2013-06-04 05:00:00,8120.0
-2013-06-04 06:00:00,8314.0
-2013-06-04 07:00:00,8680.0
-2013-06-04 08:00:00,9547.0
-2013-06-04 09:00:00,10444.0
-2013-06-04 10:00:00,10971.0
-2013-06-04 11:00:00,11325.0
-2013-06-04 12:00:00,11617.0
-2013-06-04 13:00:00,11798.0
-2013-06-04 14:00:00,11939.0
-2013-06-04 15:00:00,12052.0
-2013-06-04 16:00:00,12044.0
-2013-06-04 17:00:00,11888.0
-2013-06-04 18:00:00,11733.0
-2013-06-04 19:00:00,11591.0
-2013-06-04 20:00:00,11237.0
-2013-06-04 21:00:00,11008.0
-2013-06-04 22:00:00,11275.0
-2013-06-04 23:00:00,11148.0
-2013-06-05 00:00:00,10371.0
-2013-06-03 01:00:00,8612.0
-2013-06-03 02:00:00,8209.0
-2013-06-03 03:00:00,7983.0
-2013-06-03 04:00:00,7857.0
-2013-06-03 05:00:00,7844.0
-2013-06-03 06:00:00,8093.0
-2013-06-03 07:00:00,8508.0
-2013-06-03 08:00:00,9439.0
-2013-06-03 09:00:00,10325.0
-2013-06-03 10:00:00,10845.0
-2013-06-03 11:00:00,11074.0
-2013-06-03 12:00:00,11362.0
-2013-06-03 13:00:00,11485.0
-2013-06-03 14:00:00,11547.0
-2013-06-03 15:00:00,11680.0
-2013-06-03 16:00:00,11643.0
-2013-06-03 17:00:00,11583.0
-2013-06-03 18:00:00,11476.0
-2013-06-03 19:00:00,11318.0
-2013-06-03 20:00:00,11005.0
-2013-06-03 21:00:00,10871.0
-2013-06-03 22:00:00,11070.0
-2013-06-03 23:00:00,10977.0
-2013-06-04 00:00:00,10207.0
-2013-06-02 01:00:00,9731.0
-2013-06-02 02:00:00,9078.0
-2013-06-02 03:00:00,8639.0
-2013-06-02 04:00:00,8329.0
-2013-06-02 05:00:00,8160.0
-2013-06-02 06:00:00,8103.0
-2013-06-02 07:00:00,7950.0
-2013-06-02 08:00:00,7967.0
-2013-06-02 09:00:00,8220.0
-2013-06-02 10:00:00,8569.0
-2013-06-02 11:00:00,8856.0
-2013-06-02 12:00:00,9075.0
-2013-06-02 13:00:00,9165.0
-2013-06-02 14:00:00,9185.0
-2013-06-02 15:00:00,9147.0
-2013-06-02 16:00:00,9109.0
-2013-06-02 17:00:00,9064.0
-2013-06-02 18:00:00,9102.0
-2013-06-02 19:00:00,9155.0
-2013-06-02 20:00:00,9197.0
-2013-06-02 21:00:00,9326.0
-2013-06-02 22:00:00,9672.0
-2013-06-02 23:00:00,9665.0
-2013-06-03 00:00:00,9173.0
-2013-06-01 01:00:00,11378.0
-2013-06-01 02:00:00,10584.0
-2013-06-01 03:00:00,9973.0
-2013-06-01 04:00:00,9451.0
-2013-06-01 05:00:00,9184.0
-2013-06-01 06:00:00,9043.0
-2013-06-01 07:00:00,9054.0
-2013-06-01 08:00:00,9290.0
-2013-06-01 09:00:00,9980.0
-2013-06-01 10:00:00,10590.0
-2013-06-01 11:00:00,11143.0
-2013-06-01 12:00:00,11598.0
-2013-06-01 13:00:00,11855.0
-2013-06-01 14:00:00,11909.0
-2013-06-01 15:00:00,11805.0
-2013-06-01 16:00:00,11751.0
-2013-06-01 17:00:00,11794.0
-2013-06-01 18:00:00,11760.0
-2013-06-01 19:00:00,11579.0
-2013-06-01 20:00:00,11278.0
-2013-06-01 21:00:00,11156.0
-2013-06-01 22:00:00,11137.0
-2013-06-01 23:00:00,11044.0
-2013-06-02 00:00:00,10395.0
-2013-05-31 01:00:00,11208.0
-2013-05-31 02:00:00,10317.0
-2013-05-31 03:00:00,9797.0
-2013-05-31 04:00:00,9503.0
-2013-05-31 05:00:00,9312.0
-2013-05-31 06:00:00,9446.0
-2013-05-31 07:00:00,9905.0
-2013-05-31 08:00:00,10872.0
-2013-05-31 09:00:00,11928.0
-2013-05-31 10:00:00,12755.0
-2013-05-31 11:00:00,13255.0
-2013-05-31 12:00:00,13845.0
-2013-05-31 13:00:00,14197.0
-2013-05-31 14:00:00,14289.0
-2013-05-31 15:00:00,14462.0
-2013-05-31 16:00:00,14456.0
-2013-05-31 17:00:00,14168.0
-2013-05-31 18:00:00,13916.0
-2013-05-31 19:00:00,13689.0
-2013-05-31 20:00:00,13392.0
-2013-05-31 21:00:00,13088.0
-2013-05-31 22:00:00,13059.0
-2013-05-31 23:00:00,12992.0
-2013-06-01 00:00:00,12220.0
-2013-05-30 01:00:00,11907.0
-2013-05-30 02:00:00,11005.0
-2013-05-30 03:00:00,10374.0
-2013-05-30 04:00:00,9976.0
-2013-05-30 05:00:00,9799.0
-2013-05-30 06:00:00,9897.0
-2013-05-30 07:00:00,10362.0
-2013-05-30 08:00:00,11432.0
-2013-05-30 09:00:00,12770.0
-2013-05-30 10:00:00,13696.0
-2013-05-30 11:00:00,14433.0
-2013-05-30 12:00:00,15085.0
-2013-05-30 13:00:00,15577.0
-2013-05-30 14:00:00,15899.0
-2013-05-30 15:00:00,16093.0
-2013-05-30 16:00:00,16018.0
-2013-05-30 17:00:00,15837.0
-2013-05-30 18:00:00,15532.0
-2013-05-30 19:00:00,15239.0
-2013-05-30 20:00:00,14903.0
-2013-05-30 21:00:00,14529.0
-2013-05-30 22:00:00,14447.0
-2013-05-30 23:00:00,13743.0
-2013-05-31 00:00:00,12451.0
-2013-05-29 01:00:00,10207.0
-2013-05-29 02:00:00,9575.0
-2013-05-29 03:00:00,9150.0
-2013-05-29 04:00:00,8899.0
-2013-05-29 05:00:00,8801.0
-2013-05-29 06:00:00,8948.0
-2013-05-29 07:00:00,9470.0
-2013-05-29 08:00:00,10451.0
-2013-05-29 09:00:00,11319.0
-2013-05-29 10:00:00,11906.0
-2013-05-29 11:00:00,12290.0
-2013-05-29 12:00:00,12668.0
-2013-05-29 13:00:00,13056.0
-2013-05-29 14:00:00,13461.0
-2013-05-29 15:00:00,13991.0
-2013-05-29 16:00:00,14340.0
-2013-05-29 17:00:00,14643.0
-2013-05-29 18:00:00,14840.0
-2013-05-29 19:00:00,14842.0
-2013-05-29 20:00:00,14599.0
-2013-05-29 21:00:00,14345.0
-2013-05-29 22:00:00,14409.0
-2013-05-29 23:00:00,14117.0
-2013-05-30 00:00:00,13111.0
-2013-05-28 01:00:00,8407.0
-2013-05-28 02:00:00,7977.0
-2013-05-28 03:00:00,7779.0
-2013-05-28 04:00:00,7660.0
-2013-05-28 05:00:00,7662.0
-2013-05-28 06:00:00,7936.0
-2013-05-28 07:00:00,8582.0
-2013-05-28 08:00:00,9642.0
-2013-05-28 09:00:00,10745.0
-2013-05-28 10:00:00,11332.0
-2013-05-28 11:00:00,11676.0
-2013-05-28 12:00:00,12049.0
-2013-05-28 13:00:00,12242.0
-2013-05-28 14:00:00,12417.0
-2013-05-28 15:00:00,12604.0
-2013-05-28 16:00:00,12585.0
-2013-05-28 17:00:00,12577.0
-2013-05-28 18:00:00,12557.0
-2013-05-28 19:00:00,12455.0
-2013-05-28 20:00:00,12283.0
-2013-05-28 21:00:00,12618.0
-2013-05-28 22:00:00,12760.0
-2013-05-28 23:00:00,12097.0
-2013-05-29 00:00:00,11156.0
-2013-05-27 01:00:00,8380.0
-2013-05-27 02:00:00,7966.0
-2013-05-27 03:00:00,7664.0
-2013-05-27 04:00:00,7492.0
-2013-05-27 05:00:00,7394.0
-2013-05-27 06:00:00,7480.0
-2013-05-27 07:00:00,7561.0
-2013-05-27 08:00:00,7654.0
-2013-05-27 09:00:00,7904.0
-2013-05-27 10:00:00,8239.0
-2013-05-27 11:00:00,8542.0
-2013-05-27 12:00:00,8835.0
-2013-05-27 13:00:00,8978.0
-2013-05-27 14:00:00,8997.0
-2013-05-27 15:00:00,8983.0
-2013-05-27 16:00:00,8946.0
-2013-05-27 17:00:00,8906.0
-2013-05-27 18:00:00,8962.0
-2013-05-27 19:00:00,9056.0
-2013-05-27 20:00:00,9066.0
-2013-05-27 21:00:00,9133.0
-2013-05-27 22:00:00,9546.0
-2013-05-27 23:00:00,9504.0
-2013-05-28 00:00:00,8988.0
-2013-05-26 01:00:00,8642.0
-2013-05-26 02:00:00,8173.0
-2013-05-26 03:00:00,7915.0
-2013-05-26 04:00:00,7727.0
-2013-05-26 05:00:00,7641.0
-2013-05-26 06:00:00,7643.0
-2013-05-26 07:00:00,7503.0
-2013-05-26 08:00:00,7506.0
-2013-05-26 09:00:00,7782.0
-2013-05-26 10:00:00,8110.0
-2013-05-26 11:00:00,8435.0
-2013-05-26 12:00:00,8661.0
-2013-05-26 13:00:00,8791.0
-2013-05-26 14:00:00,8788.0
-2013-05-26 15:00:00,8827.0
-2013-05-26 16:00:00,8784.0
-2013-05-26 17:00:00,8743.0
-2013-05-26 18:00:00,8718.0
-2013-05-26 19:00:00,8819.0
-2013-05-26 20:00:00,8852.0
-2013-05-26 21:00:00,9015.0
-2013-05-26 22:00:00,9331.0
-2013-05-26 23:00:00,9284.0
-2013-05-27 00:00:00,8889.0
-2013-05-25 01:00:00,9110.0
-2013-05-25 02:00:00,8591.0
-2013-05-25 03:00:00,8242.0
-2013-05-25 04:00:00,8076.0
-2013-05-25 05:00:00,7919.0
-2013-05-25 06:00:00,7986.0
-2013-05-25 07:00:00,7969.0
-2013-05-25 08:00:00,8100.0
-2013-05-25 09:00:00,8541.0
-2013-05-25 10:00:00,8982.0
-2013-05-25 11:00:00,9326.0
-2013-05-25 12:00:00,9474.0
-2013-05-25 13:00:00,9581.0
-2013-05-25 14:00:00,9488.0
-2013-05-25 15:00:00,9324.0
-2013-05-25 16:00:00,9196.0
-2013-05-25 17:00:00,9099.0
-2013-05-25 18:00:00,9096.0
-2013-05-25 19:00:00,9068.0
-2013-05-25 20:00:00,9141.0
-2013-05-25 21:00:00,9209.0
-2013-05-25 22:00:00,9631.0
-2013-05-25 23:00:00,9590.0
-2013-05-26 00:00:00,9140.0
-2013-05-24 01:00:00,9262.0
-2013-05-24 02:00:00,8763.0
-2013-05-24 03:00:00,8455.0
-2013-05-24 04:00:00,8297.0
-2013-05-24 05:00:00,8247.0
-2013-05-24 06:00:00,8431.0
-2013-05-24 07:00:00,8893.0
-2013-05-24 08:00:00,9679.0
-2013-05-24 09:00:00,10426.0
-2013-05-24 10:00:00,10791.0
-2013-05-24 11:00:00,10926.0
-2013-05-24 12:00:00,11058.0
-2013-05-24 13:00:00,11021.0
-2013-05-24 14:00:00,11001.0
-2013-05-24 15:00:00,11031.0
-2013-05-24 16:00:00,10888.0
-2013-05-24 17:00:00,10714.0
-2013-05-24 18:00:00,10542.0
-2013-05-24 19:00:00,10397.0
-2013-05-24 20:00:00,10177.0
-2013-05-24 21:00:00,10082.0
-2013-05-24 22:00:00,10450.0
-2013-05-24 23:00:00,10412.0
-2013-05-25 00:00:00,9801.0
-2013-05-23 01:00:00,9922.0
-2013-05-23 02:00:00,9243.0
-2013-05-23 03:00:00,8813.0
-2013-05-23 04:00:00,8515.0
-2013-05-23 05:00:00,8397.0
-2013-05-23 06:00:00,8527.0
-2013-05-23 07:00:00,9071.0
-2013-05-23 08:00:00,9914.0
-2013-05-23 09:00:00,10717.0
-2013-05-23 10:00:00,11134.0
-2013-05-23 11:00:00,11301.0
-2013-05-23 12:00:00,11410.0
-2013-05-23 13:00:00,11372.0
-2013-05-23 14:00:00,11336.0
-2013-05-23 15:00:00,11285.0
-2013-05-23 16:00:00,11110.0
-2013-05-23 17:00:00,10927.0
-2013-05-23 18:00:00,10782.0
-2013-05-23 19:00:00,10638.0
-2013-05-23 20:00:00,10423.0
-2013-05-23 21:00:00,10379.0
-2013-05-23 22:00:00,10842.0
-2013-05-23 23:00:00,10743.0
-2013-05-24 00:00:00,10015.0
-2013-05-22 01:00:00,11472.0
-2013-05-22 02:00:00,10625.0
-2013-05-22 03:00:00,10018.0
-2013-05-22 04:00:00,9616.0
-2013-05-22 05:00:00,9490.0
-2013-05-22 06:00:00,9620.0
-2013-05-22 07:00:00,10239.0
-2013-05-22 08:00:00,11298.0
-2013-05-22 09:00:00,12157.0
-2013-05-22 10:00:00,12596.0
-2013-05-22 11:00:00,12998.0
-2013-05-22 12:00:00,13497.0
-2013-05-22 13:00:00,13541.0
-2013-05-22 14:00:00,13290.0
-2013-05-22 15:00:00,13122.0
-2013-05-22 16:00:00,13158.0
-2013-05-22 17:00:00,13302.0
-2013-05-22 18:00:00,13286.0
-2013-05-22 19:00:00,12972.0
-2013-05-22 20:00:00,12484.0
-2013-05-22 21:00:00,12199.0
-2013-05-22 22:00:00,12342.0
-2013-05-22 23:00:00,11877.0
-2013-05-23 00:00:00,10883.0
-2013-05-21 01:00:00,12197.0
-2013-05-21 02:00:00,11155.0
-2013-05-21 03:00:00,10461.0
-2013-05-21 04:00:00,9979.0
-2013-05-21 05:00:00,9718.0
-2013-05-21 06:00:00,9758.0
-2013-05-21 07:00:00,10193.0
-2013-05-21 08:00:00,11081.0
-2013-05-21 09:00:00,12189.0
-2013-05-21 10:00:00,12926.0
-2013-05-21 11:00:00,13491.0
-2013-05-21 12:00:00,13906.0
-2013-05-21 13:00:00,14147.0
-2013-05-21 14:00:00,14585.0
-2013-05-21 15:00:00,15100.0
-2013-05-21 16:00:00,15329.0
-2013-05-21 17:00:00,15478.0
-2013-05-21 18:00:00,15539.0
-2013-05-21 19:00:00,15351.0
-2013-05-21 20:00:00,14837.0
-2013-05-21 21:00:00,14297.0
-2013-05-21 22:00:00,14249.0
-2013-05-21 23:00:00,13874.0
-2013-05-22 00:00:00,12666.0
-2013-05-20 01:00:00,11070.0
-2013-05-20 02:00:00,10542.0
-2013-05-20 03:00:00,10172.0
-2013-05-20 04:00:00,9918.0
-2013-05-20 05:00:00,9769.0
-2013-05-20 06:00:00,9936.0
-2013-05-20 07:00:00,10562.0
-2013-05-20 08:00:00,11703.0
-2013-05-20 09:00:00,13021.0
-2013-05-20 10:00:00,13520.0
-2013-05-20 11:00:00,13880.0
-2013-05-20 12:00:00,14379.0
-2013-05-20 13:00:00,14861.0
-2013-05-20 14:00:00,15291.0
-2013-05-20 15:00:00,15842.0
-2013-05-20 16:00:00,16260.0
-2013-05-20 17:00:00,16563.0
-2013-05-20 18:00:00,16629.0
-2013-05-20 19:00:00,16537.0
-2013-05-20 20:00:00,16161.0
-2013-05-20 21:00:00,15574.0
-2013-05-20 22:00:00,15492.0
-2013-05-20 23:00:00,15123.0
-2013-05-21 00:00:00,13871.0
-2013-05-19 01:00:00,9585.0
-2013-05-19 02:00:00,8950.0
-2013-05-19 03:00:00,8529.0
-2013-05-19 04:00:00,8219.0
-2013-05-19 05:00:00,8022.0
-2013-05-19 06:00:00,7977.0
-2013-05-19 07:00:00,7859.0
-2013-05-19 08:00:00,7915.0
-2013-05-19 09:00:00,8445.0
-2013-05-19 10:00:00,9096.0
-2013-05-19 11:00:00,9836.0
-2013-05-19 12:00:00,10553.0
-2013-05-19 13:00:00,11189.0
-2013-05-19 14:00:00,11618.0
-2013-05-19 15:00:00,11981.0
-2013-05-19 16:00:00,12281.0
-2013-05-19 17:00:00,12630.0
-2013-05-19 18:00:00,12897.0
-2013-05-19 19:00:00,13030.0
-2013-05-19 20:00:00,12860.0
-2013-05-19 21:00:00,12668.0
-2013-05-19 22:00:00,12824.0
-2013-05-19 23:00:00,12641.0
-2013-05-20 00:00:00,11935.0
-2013-05-18 01:00:00,9376.0
-2013-05-18 02:00:00,8799.0
-2013-05-18 03:00:00,8451.0
-2013-05-18 04:00:00,8222.0
-2013-05-18 05:00:00,8088.0
-2013-05-18 06:00:00,8044.0
-2013-05-18 07:00:00,8120.0
-2013-05-18 08:00:00,8323.0
-2013-05-18 09:00:00,8865.0
-2013-05-18 10:00:00,9579.0
-2013-05-18 11:00:00,10061.0
-2013-05-18 12:00:00,10556.0
-2013-05-18 13:00:00,10827.0
-2013-05-18 14:00:00,11027.0
-2013-05-18 15:00:00,11045.0
-2013-05-18 16:00:00,11061.0
-2013-05-18 17:00:00,11180.0
-2013-05-18 18:00:00,11320.0
-2013-05-18 19:00:00,11337.0
-2013-05-18 20:00:00,11114.0
-2013-05-18 21:00:00,10858.0
-2013-05-18 22:00:00,11109.0
-2013-05-18 23:00:00,10932.0
-2013-05-19 00:00:00,10286.0
-2013-05-17 01:00:00,9666.0
-2013-05-17 02:00:00,9024.0
-2013-05-17 03:00:00,8664.0
-2013-05-17 04:00:00,8418.0
-2013-05-17 05:00:00,8332.0
-2013-05-17 06:00:00,8440.0
-2013-05-17 07:00:00,8935.0
-2013-05-17 08:00:00,9713.0
-2013-05-17 09:00:00,10645.0
-2013-05-17 10:00:00,11218.0
-2013-05-17 11:00:00,11617.0
-2013-05-17 12:00:00,11938.0
-2013-05-17 13:00:00,12052.0
-2013-05-17 14:00:00,11975.0
-2013-05-17 15:00:00,11968.0
-2013-05-17 16:00:00,11904.0
-2013-05-17 17:00:00,11782.0
-2013-05-17 18:00:00,11600.0
-2013-05-17 19:00:00,11324.0
-2013-05-17 20:00:00,11063.0
-2013-05-17 21:00:00,10965.0
-2013-05-17 22:00:00,11157.0
-2013-05-17 23:00:00,10873.0
-2013-05-18 00:00:00,10137.0
-2013-05-16 01:00:00,10087.0
-2013-05-16 02:00:00,9344.0
-2013-05-16 03:00:00,8838.0
-2013-05-16 04:00:00,8587.0
-2013-05-16 05:00:00,8468.0
-2013-05-16 06:00:00,8567.0
-2013-05-16 07:00:00,9007.0
-2013-05-16 08:00:00,9873.0
-2013-05-16 09:00:00,10971.0
-2013-05-16 10:00:00,11655.0
-2013-05-16 11:00:00,12155.0
-2013-05-16 12:00:00,12603.0
-2013-05-16 13:00:00,12875.0
-2013-05-16 14:00:00,13203.0
-2013-05-16 15:00:00,13478.0
-2013-05-16 16:00:00,13683.0
-2013-05-16 17:00:00,13825.0
-2013-05-16 18:00:00,13808.0
-2013-05-16 19:00:00,13466.0
-2013-05-16 20:00:00,12866.0
-2013-05-16 21:00:00,12192.0
-2013-05-16 22:00:00,12180.0
-2013-05-16 23:00:00,11624.0
-2013-05-17 00:00:00,10603.0
-2013-05-15 01:00:00,10844.0
-2013-05-15 02:00:00,10161.0
-2013-05-15 03:00:00,9723.0
-2013-05-15 04:00:00,9384.0
-2013-05-15 05:00:00,9224.0
-2013-05-15 06:00:00,9292.0
-2013-05-15 07:00:00,9781.0
-2013-05-15 08:00:00,10621.0
-2013-05-15 09:00:00,11657.0
-2013-05-15 10:00:00,12272.0
-2013-05-15 11:00:00,12753.0
-2013-05-15 12:00:00,13164.0
-2013-05-15 13:00:00,13452.0
-2013-05-15 14:00:00,13627.0
-2013-05-15 15:00:00,13861.0
-2013-05-15 16:00:00,13898.0
-2013-05-15 17:00:00,13893.0
-2013-05-15 18:00:00,13774.0
-2013-05-15 19:00:00,13495.0
-2013-05-15 20:00:00,12919.0
-2013-05-15 21:00:00,12538.0
-2013-05-15 22:00:00,12629.0
-2013-05-15 23:00:00,12203.0
-2013-05-16 00:00:00,11128.0
-2013-05-14 01:00:00,9160.0
-2013-05-14 02:00:00,8636.0
-2013-05-14 03:00:00,8329.0
-2013-05-14 04:00:00,8142.0
-2013-05-14 05:00:00,8091.0
-2013-05-14 06:00:00,8281.0
-2013-05-14 07:00:00,8855.0
-2013-05-14 08:00:00,9700.0
-2013-05-14 09:00:00,10542.0
-2013-05-14 10:00:00,11038.0
-2013-05-14 11:00:00,11392.0
-2013-05-14 12:00:00,11697.0
-2013-05-14 13:00:00,11995.0
-2013-05-14 14:00:00,12288.0
-2013-05-14 15:00:00,12623.0
-2013-05-14 16:00:00,12914.0
-2013-05-14 17:00:00,13002.0
-2013-05-14 18:00:00,13085.0
-2013-05-14 19:00:00,13013.0
-2013-05-14 20:00:00,12759.0
-2013-05-14 21:00:00,12668.0
-2013-05-14 22:00:00,13024.0
-2013-05-14 23:00:00,12726.0
-2013-05-15 00:00:00,11783.0
-2013-05-13 01:00:00,8573.0
-2013-05-13 02:00:00,8196.0
-2013-05-13 03:00:00,8027.0
-2013-05-13 04:00:00,7951.0
-2013-05-13 05:00:00,8021.0
-2013-05-13 06:00:00,8313.0
-2013-05-13 07:00:00,9041.0
-2013-05-13 08:00:00,9864.0
-2013-05-13 09:00:00,10593.0
-2013-05-13 10:00:00,10858.0
-2013-05-13 11:00:00,11011.0
-2013-05-13 12:00:00,11159.0
-2013-05-13 13:00:00,11187.0
-2013-05-13 14:00:00,11219.0
-2013-05-13 15:00:00,11270.0
-2013-05-13 16:00:00,11164.0
-2013-05-13 17:00:00,11006.0
-2013-05-13 18:00:00,10879.0
-2013-05-13 19:00:00,10690.0
-2013-05-13 20:00:00,10548.0
-2013-05-13 21:00:00,10719.0
-2013-05-13 22:00:00,11147.0
-2013-05-13 23:00:00,10743.0
-2013-05-14 00:00:00,9922.0
-2013-05-12 01:00:00,8813.0
-2013-05-12 02:00:00,8373.0
-2013-05-12 03:00:00,8084.0
-2013-05-12 04:00:00,7929.0
-2013-05-12 05:00:00,7819.0
-2013-05-12 06:00:00,7865.0
-2013-05-12 07:00:00,7823.0
-2013-05-12 08:00:00,7829.0
-2013-05-12 09:00:00,8086.0
-2013-05-12 10:00:00,8430.0
-2013-05-12 11:00:00,8575.0
-2013-05-12 12:00:00,8743.0
-2013-05-12 13:00:00,8728.0
-2013-05-12 14:00:00,8695.0
-2013-05-12 15:00:00,8612.0
-2013-05-12 16:00:00,8556.0
-2013-05-12 17:00:00,8506.0
-2013-05-12 18:00:00,8529.0
-2013-05-12 19:00:00,8600.0
-2013-05-12 20:00:00,8606.0
-2013-05-12 21:00:00,8850.0
-2013-05-12 22:00:00,9535.0
-2013-05-12 23:00:00,9535.0
-2013-05-13 00:00:00,9038.0
-2013-05-11 01:00:00,9247.0
-2013-05-11 02:00:00,8729.0
-2013-05-11 03:00:00,8382.0
-2013-05-11 04:00:00,8189.0
-2013-05-11 05:00:00,8066.0
-2013-05-11 06:00:00,8127.0
-2013-05-11 07:00:00,8270.0
-2013-05-11 08:00:00,8424.0
-2013-05-11 09:00:00,8874.0
-2013-05-11 10:00:00,9277.0
-2013-05-11 11:00:00,9570.0
-2013-05-11 12:00:00,9788.0
-2013-05-11 13:00:00,9786.0
-2013-05-11 14:00:00,9648.0
-2013-05-11 15:00:00,9420.0
-2013-05-11 16:00:00,9260.0
-2013-05-11 17:00:00,9171.0
-2013-05-11 18:00:00,9146.0
-2013-05-11 19:00:00,9123.0
-2013-05-11 20:00:00,9079.0
-2013-05-11 21:00:00,9237.0
-2013-05-11 22:00:00,9778.0
-2013-05-11 23:00:00,9789.0
-2013-05-12 00:00:00,9321.0
-2013-05-10 01:00:00,9218.0
-2013-05-10 02:00:00,8672.0
-2013-05-10 03:00:00,8293.0
-2013-05-10 04:00:00,8097.0
-2013-05-10 05:00:00,8035.0
-2013-05-10 06:00:00,8219.0
-2013-05-10 07:00:00,8777.0
-2013-05-10 08:00:00,9690.0
-2013-05-10 09:00:00,10504.0
-2013-05-10 10:00:00,10870.0
-2013-05-10 11:00:00,11064.0
-2013-05-10 12:00:00,11190.0
-2013-05-10 13:00:00,11210.0
-2013-05-10 14:00:00,11171.0
-2013-05-10 15:00:00,11155.0
-2013-05-10 16:00:00,11016.0
-2013-05-10 17:00:00,10865.0
-2013-05-10 18:00:00,10748.0
-2013-05-10 19:00:00,10661.0
-2013-05-10 20:00:00,10553.0
-2013-05-10 21:00:00,10697.0
-2013-05-10 22:00:00,10972.0
-2013-05-10 23:00:00,10653.0
-2013-05-11 00:00:00,10007.0
-2013-05-09 01:00:00,9444.0
-2013-05-09 02:00:00,8847.0
-2013-05-09 03:00:00,8492.0
-2013-05-09 04:00:00,8246.0
-2013-05-09 05:00:00,8193.0
-2013-05-09 06:00:00,8316.0
-2013-05-09 07:00:00,8818.0
-2013-05-09 08:00:00,9638.0
-2013-05-09 09:00:00,10576.0
-2013-05-09 10:00:00,11089.0
-2013-05-09 11:00:00,11422.0
-2013-05-09 12:00:00,11605.0
-2013-05-09 13:00:00,11748.0
-2013-05-09 14:00:00,11873.0
-2013-05-09 15:00:00,11973.0
-2013-05-09 16:00:00,11917.0
-2013-05-09 17:00:00,11777.0
-2013-05-09 18:00:00,11648.0
-2013-05-09 19:00:00,11478.0
-2013-05-09 20:00:00,11240.0
-2013-05-09 21:00:00,11263.0
-2013-05-09 22:00:00,11460.0
-2013-05-09 23:00:00,10985.0
-2013-05-10 00:00:00,10113.0
-2013-05-08 01:00:00,9264.0
-2013-05-08 02:00:00,8695.0
-2013-05-08 03:00:00,8318.0
-2013-05-08 04:00:00,8134.0
-2013-05-08 05:00:00,8042.0
-2013-05-08 06:00:00,8227.0
-2013-05-08 07:00:00,8762.0
-2013-05-08 08:00:00,9534.0
-2013-05-08 09:00:00,10480.0
-2013-05-08 10:00:00,11053.0
-2013-05-08 11:00:00,11443.0
-2013-05-08 12:00:00,11816.0
-2013-05-08 13:00:00,11956.0
-2013-05-08 14:00:00,12118.0
-2013-05-08 15:00:00,12289.0
-2013-05-08 16:00:00,12358.0
-2013-05-08 17:00:00,12291.0
-2013-05-08 18:00:00,12193.0
-2013-05-08 19:00:00,11968.0
-2013-05-08 20:00:00,11539.0
-2013-05-08 21:00:00,11417.0
-2013-05-08 22:00:00,11742.0
-2013-05-08 23:00:00,11279.0
-2013-05-09 00:00:00,10349.0
-2013-05-07 01:00:00,9046.0
-2013-05-07 02:00:00,8529.0
-2013-05-07 03:00:00,8186.0
-2013-05-07 04:00:00,8027.0
-2013-05-07 05:00:00,7995.0
-2013-05-07 06:00:00,8177.0
-2013-05-07 07:00:00,8757.0
-2013-05-07 08:00:00,9569.0
-2013-05-07 09:00:00,10392.0
-2013-05-07 10:00:00,10846.0
-2013-05-07 11:00:00,11154.0
-2013-05-07 12:00:00,11436.0
-2013-05-07 13:00:00,11610.0
-2013-05-07 14:00:00,11733.0
-2013-05-07 15:00:00,11873.0
-2013-05-07 16:00:00,11931.0
-2013-05-07 17:00:00,11856.0
-2013-05-07 18:00:00,11767.0
-2013-05-07 19:00:00,11583.0
-2013-05-07 20:00:00,11231.0
-2013-05-07 21:00:00,11124.0
-2013-05-07 22:00:00,11523.0
-2013-05-07 23:00:00,11109.0
-2013-05-08 00:00:00,10174.0
-2013-05-06 01:00:00,8392.0
-2013-05-06 02:00:00,8022.0
-2013-05-06 03:00:00,7775.0
-2013-05-06 04:00:00,7683.0
-2013-05-06 05:00:00,7681.0
-2013-05-06 06:00:00,7909.0
-2013-05-06 07:00:00,8578.0
-2013-05-06 08:00:00,9497.0
-2013-05-06 09:00:00,10439.0
-2013-05-06 10:00:00,10766.0
-2013-05-06 11:00:00,10976.0
-2013-05-06 12:00:00,11209.0
-2013-05-06 13:00:00,11317.0
-2013-05-06 14:00:00,11356.0
-2013-05-06 15:00:00,11469.0
-2013-05-06 16:00:00,11410.0
-2013-05-06 17:00:00,11279.0
-2013-05-06 18:00:00,11202.0
-2013-05-06 19:00:00,11008.0
-2013-05-06 20:00:00,10723.0
-2013-05-06 21:00:00,10743.0
-2013-05-06 22:00:00,11234.0
-2013-05-06 23:00:00,10756.0
-2013-05-07 00:00:00,9887.0
-2013-05-05 01:00:00,8600.0
-2013-05-05 02:00:00,8167.0
-2013-05-05 03:00:00,7846.0
-2013-05-05 04:00:00,7656.0
-2013-05-05 05:00:00,7538.0
-2013-05-05 06:00:00,7578.0
-2013-05-05 07:00:00,7587.0
-2013-05-05 08:00:00,7512.0
-2013-05-05 09:00:00,7791.0
-2013-05-05 10:00:00,8202.0
-2013-05-05 11:00:00,8483.0
-2013-05-05 12:00:00,8739.0
-2013-05-05 13:00:00,8830.0
-2013-05-05 14:00:00,8939.0
-2013-05-05 15:00:00,8958.0
-2013-05-05 16:00:00,8963.0
-2013-05-05 17:00:00,8980.0
-2013-05-05 18:00:00,9021.0
-2013-05-05 19:00:00,9041.0
-2013-05-05 20:00:00,9066.0
-2013-05-05 21:00:00,9207.0
-2013-05-05 22:00:00,9788.0
-2013-05-05 23:00:00,9550.0
-2013-05-06 00:00:00,8973.0
-2013-05-04 01:00:00,9402.0
-2013-05-04 02:00:00,8804.0
-2013-05-04 03:00:00,8461.0
-2013-05-04 04:00:00,8249.0
-2013-05-04 05:00:00,8144.0
-2013-05-04 06:00:00,8165.0
-2013-05-04 07:00:00,8303.0
-2013-05-04 08:00:00,8476.0
-2013-05-04 09:00:00,8865.0
-2013-05-04 10:00:00,9322.0
-2013-05-04 11:00:00,9546.0
-2013-05-04 12:00:00,9672.0
-2013-05-04 13:00:00,9638.0
-2013-05-04 14:00:00,9545.0
-2013-05-04 15:00:00,9439.0
-2013-05-04 16:00:00,9345.0
-2013-05-04 17:00:00,9280.0
-2013-05-04 18:00:00,9257.0
-2013-05-04 19:00:00,9204.0
-2013-05-04 20:00:00,9197.0
-2013-05-04 21:00:00,9369.0
-2013-05-04 22:00:00,9835.0
-2013-05-04 23:00:00,9659.0
-2013-05-05 00:00:00,9155.0
-2013-05-03 01:00:00,9187.0
-2013-05-03 02:00:00,8691.0
-2013-05-03 03:00:00,8427.0
-2013-05-03 04:00:00,8256.0
-2013-05-03 05:00:00,8198.0
-2013-05-03 06:00:00,8416.0
-2013-05-03 07:00:00,9091.0
-2013-05-03 08:00:00,9986.0
-2013-05-03 09:00:00,10815.0
-2013-05-03 10:00:00,11199.0
-2013-05-03 11:00:00,11334.0
-2013-05-03 12:00:00,11425.0
-2013-05-03 13:00:00,11358.0
-2013-05-03 14:00:00,11264.0
-2013-05-03 15:00:00,11234.0
-2013-05-03 16:00:00,11166.0
-2013-05-03 17:00:00,11025.0
-2013-05-03 18:00:00,10860.0
-2013-05-03 19:00:00,10753.0
-2013-05-03 20:00:00,10690.0
-2013-05-03 21:00:00,10903.0
-2013-05-03 22:00:00,11121.0
-2013-05-03 23:00:00,10799.0
-2013-05-04 00:00:00,10119.0
-2013-05-02 01:00:00,10221.0
-2013-05-02 02:00:00,9439.0
-2013-05-02 03:00:00,8848.0
-2013-05-02 04:00:00,8478.0
-2013-05-02 05:00:00,8270.0
-2013-05-02 06:00:00,8344.0
-2013-05-02 07:00:00,8891.0
-2013-05-02 08:00:00,9564.0
-2013-05-02 09:00:00,10380.0
-2013-05-02 10:00:00,10704.0
-2013-05-02 11:00:00,10595.0
-2013-05-02 12:00:00,10958.0
-2013-05-02 13:00:00,11164.0
-2013-05-02 14:00:00,11075.0
-2013-05-02 15:00:00,11136.0
-2013-05-02 16:00:00,11021.0
-2013-05-02 17:00:00,10870.0
-2013-05-02 18:00:00,10752.0
-2013-05-02 19:00:00,10660.0
-2013-05-02 20:00:00,10595.0
-2013-05-02 21:00:00,10893.0
-2013-05-02 22:00:00,11124.0
-2013-05-02 23:00:00,10684.0
-2013-05-03 00:00:00,9974.0
-2013-05-01 01:00:00,10247.0
-2013-05-01 02:00:00,9575.0
-2013-05-01 03:00:00,9122.0
-2013-05-01 04:00:00,8795.0
-2013-05-01 05:00:00,8631.0
-2013-05-01 06:00:00,8729.0
-2013-05-01 07:00:00,9304.0
-2013-05-01 08:00:00,10121.0
-2013-05-01 09:00:00,11108.0
-2013-05-01 10:00:00,11741.0
-2013-05-01 11:00:00,12206.0
-2013-05-01 12:00:00,12699.0
-2013-05-01 13:00:00,12937.0
-2013-05-01 14:00:00,13133.0
-2013-05-01 15:00:00,13322.0
-2013-05-01 16:00:00,13421.0
-2013-05-01 17:00:00,13461.0
-2013-05-01 18:00:00,13409.0
-2013-05-01 19:00:00,13194.0
-2013-05-01 20:00:00,12763.0
-2013-05-01 21:00:00,12566.0
-2013-05-01 22:00:00,12859.0
-2013-05-01 23:00:00,12318.0
-2013-05-02 00:00:00,11269.0
-2013-04-30 01:00:00,9056.0
-2013-04-30 02:00:00,8534.0
-2013-04-30 03:00:00,8221.0
-2013-04-30 04:00:00,8184.0
-2013-04-30 05:00:00,8104.0
-2013-04-30 06:00:00,8282.0
-2013-04-30 07:00:00,8923.0
-2013-04-30 08:00:00,9737.0
-2013-04-30 09:00:00,10571.0
-2013-04-30 10:00:00,11015.0
-2013-04-30 11:00:00,11298.0
-2013-04-30 12:00:00,11622.0
-2013-04-30 13:00:00,11864.0
-2013-04-30 14:00:00,12064.0
-2013-04-30 15:00:00,12266.0
-2013-04-30 16:00:00,12416.0
-2013-04-30 17:00:00,12453.0
-2013-04-30 18:00:00,12445.0
-2013-04-30 19:00:00,12310.0
-2013-04-30 20:00:00,12014.0
-2013-04-30 21:00:00,12034.0
-2013-04-30 22:00:00,12474.0
-2013-04-30 23:00:00,12056.0
-2013-05-01 00:00:00,11139.0
-2013-04-29 01:00:00,8415.0
-2013-04-29 02:00:00,8061.0
-2013-04-29 03:00:00,7772.0
-2013-04-29 04:00:00,7678.0
-2013-04-29 05:00:00,7700.0
-2013-04-29 06:00:00,7931.0
-2013-04-29 07:00:00,8661.0
-2013-04-29 08:00:00,9447.0
-2013-04-29 09:00:00,10282.0
-2013-04-29 10:00:00,10733.0
-2013-04-29 11:00:00,10943.0
-2013-04-29 12:00:00,11193.0
-2013-04-29 13:00:00,11294.0
-2013-04-29 14:00:00,11382.0
-2013-04-29 15:00:00,11482.0
-2013-04-29 16:00:00,11432.0
-2013-04-29 17:00:00,11270.0
-2013-04-29 18:00:00,11141.0
-2013-04-29 19:00:00,11017.0
-2013-04-29 20:00:00,10784.0
-2013-04-29 21:00:00,10881.0
-2013-04-29 22:00:00,11370.0
-2013-04-29 23:00:00,10922.0
-2013-04-30 00:00:00,9868.0
-2013-04-28 01:00:00,8566.0
-2013-04-28 02:00:00,8140.0
-2013-04-28 03:00:00,7813.0
-2013-04-28 04:00:00,7638.0
-2013-04-28 05:00:00,7544.0
-2013-04-28 06:00:00,7535.0
-2013-04-28 07:00:00,7666.0
-2013-04-28 08:00:00,7656.0
-2013-04-28 09:00:00,7881.0
-2013-04-28 10:00:00,8235.0
-2013-04-28 11:00:00,8556.0
-2013-04-28 12:00:00,8789.0
-2013-04-28 13:00:00,8870.0
-2013-04-28 14:00:00,8878.0
-2013-04-28 15:00:00,8838.0
-2013-04-28 16:00:00,8820.0
-2013-04-28 17:00:00,8781.0
-2013-04-28 18:00:00,8836.0
-2013-04-28 19:00:00,8899.0
-2013-04-28 20:00:00,9036.0
-2013-04-28 21:00:00,9272.0
-2013-04-28 22:00:00,9806.0
-2013-04-28 23:00:00,9578.0
-2013-04-29 00:00:00,9001.0
-2013-04-27 01:00:00,9066.0
-2013-04-27 02:00:00,8537.0
-2013-04-27 03:00:00,8219.0
-2013-04-27 04:00:00,8010.0
-2013-04-27 05:00:00,7947.0
-2013-04-27 06:00:00,7995.0
-2013-04-27 07:00:00,8258.0
-2013-04-27 08:00:00,8354.0
-2013-04-27 09:00:00,8739.0
-2013-04-27 10:00:00,9102.0
-2013-04-27 11:00:00,9366.0
-2013-04-27 12:00:00,9505.0
-2013-04-27 13:00:00,9478.0
-2013-04-27 14:00:00,9439.0
-2013-04-27 15:00:00,9273.0
-2013-04-27 16:00:00,9187.0
-2013-04-27 17:00:00,9155.0
-2013-04-27 18:00:00,9093.0
-2013-04-27 19:00:00,9091.0
-2013-04-27 20:00:00,9076.0
-2013-04-27 21:00:00,9430.0
-2013-04-27 22:00:00,9762.0
-2013-04-27 23:00:00,9571.0
-2013-04-28 00:00:00,9075.0
-2013-04-26 01:00:00,9576.0
-2013-04-26 02:00:00,9113.0
-2013-04-26 03:00:00,8805.0
-2013-04-26 04:00:00,8661.0
-2013-04-26 05:00:00,8662.0
-2013-04-26 06:00:00,8898.0
-2013-04-26 07:00:00,9657.0
-2013-04-26 08:00:00,10404.0
-2013-04-26 09:00:00,10967.0
-2013-04-26 10:00:00,11067.0
-2013-04-26 11:00:00,11210.0
-2013-04-26 12:00:00,11275.0
-2013-04-26 13:00:00,11239.0
-2013-04-26 14:00:00,11201.0
-2013-04-26 15:00:00,11177.0
-2013-04-26 16:00:00,11012.0
-2013-04-26 17:00:00,10825.0
-2013-04-26 18:00:00,10649.0
-2013-04-26 19:00:00,10448.0
-2013-04-26 20:00:00,10228.0
-2013-04-26 21:00:00,10331.0
-2013-04-26 22:00:00,10744.0
-2013-04-26 23:00:00,10474.0
-2013-04-27 00:00:00,9861.0
-2013-04-25 01:00:00,9666.0
-2013-04-25 02:00:00,9194.0
-2013-04-25 03:00:00,8924.0
-2013-04-25 04:00:00,8755.0
-2013-04-25 05:00:00,8751.0
-2013-04-25 06:00:00,8994.0
-2013-04-25 07:00:00,9686.0
-2013-04-25 08:00:00,10515.0
-2013-04-25 09:00:00,11152.0
-2013-04-25 10:00:00,11383.0
-2013-04-25 11:00:00,11510.0
-2013-04-25 12:00:00,11585.0
-2013-04-25 13:00:00,11559.0
-2013-04-25 14:00:00,11454.0
-2013-04-25 15:00:00,11378.0
-2013-04-25 16:00:00,11238.0
-2013-04-25 17:00:00,11075.0
-2013-04-25 18:00:00,10904.0
-2013-04-25 19:00:00,10731.0
-2013-04-25 20:00:00,10592.0
-2013-04-25 21:00:00,10825.0
-2013-04-25 22:00:00,11376.0
-2013-04-25 23:00:00,11073.0
-2013-04-26 00:00:00,10328.0
-2013-04-24 01:00:00,9638.0
-2013-04-24 02:00:00,9177.0
-2013-04-24 03:00:00,8894.0
-2013-04-24 04:00:00,8735.0
-2013-04-24 05:00:00,8728.0
-2013-04-24 06:00:00,8948.0
-2013-04-24 07:00:00,9667.0
-2013-04-24 08:00:00,10653.0
-2013-04-24 09:00:00,11403.0
-2013-04-24 10:00:00,11751.0
-2013-04-24 11:00:00,11829.0
-2013-04-24 12:00:00,11747.0
-2013-04-24 13:00:00,11607.0
-2013-04-24 14:00:00,11484.0
-2013-04-24 15:00:00,11424.0
-2013-04-24 16:00:00,11268.0
-2013-04-24 17:00:00,11094.0
-2013-04-24 18:00:00,10955.0
-2013-04-24 19:00:00,10803.0
-2013-04-24 20:00:00,10595.0
-2013-04-24 21:00:00,10886.0
-2013-04-24 22:00:00,11415.0
-2013-04-24 23:00:00,11102.0
-2013-04-25 00:00:00,10372.0
-2013-04-23 01:00:00,9188.0
-2013-04-23 02:00:00,8680.0
-2013-04-23 03:00:00,8360.0
-2013-04-23 04:00:00,8190.0
-2013-04-23 05:00:00,8152.0
-2013-04-23 06:00:00,8356.0
-2013-04-23 07:00:00,9084.0
-2013-04-23 08:00:00,9988.0
-2013-04-23 09:00:00,10652.0
-2013-04-23 10:00:00,11000.0
-2013-04-23 11:00:00,11151.0
-2013-04-23 12:00:00,11313.0
-2013-04-23 13:00:00,11391.0
-2013-04-23 14:00:00,11450.0
-2013-04-23 15:00:00,11587.0
-2013-04-23 16:00:00,11478.0
-2013-04-23 17:00:00,11414.0
-2013-04-23 18:00:00,11488.0
-2013-04-23 19:00:00,11579.0
-2013-04-23 20:00:00,11573.0
-2013-04-23 21:00:00,11724.0
-2013-04-23 22:00:00,11691.0
-2013-04-23 23:00:00,11201.0
-2013-04-24 00:00:00,10356.0
-2013-04-22 01:00:00,8938.0
-2013-04-22 02:00:00,8613.0
-2013-04-22 03:00:00,8407.0
-2013-04-22 04:00:00,8350.0
-2013-04-22 05:00:00,8353.0
-2013-04-22 06:00:00,8677.0
-2013-04-22 07:00:00,9493.0
-2013-04-22 08:00:00,10332.0
-2013-04-22 09:00:00,10942.0
-2013-04-22 10:00:00,11117.0
-2013-04-22 11:00:00,11138.0
-2013-04-22 12:00:00,11200.0
-2013-04-22 13:00:00,11216.0
-2013-04-22 14:00:00,11139.0
-2013-04-22 15:00:00,11180.0
-2013-04-22 16:00:00,11100.0
-2013-04-22 17:00:00,10916.0
-2013-04-22 18:00:00,10769.0
-2013-04-22 19:00:00,10636.0
-2013-04-22 20:00:00,10454.0
-2013-04-22 21:00:00,10760.0
-2013-04-22 22:00:00,11179.0
-2013-04-22 23:00:00,10755.0
-2013-04-23 00:00:00,9955.0
-2013-04-21 01:00:00,9481.0
-2013-04-21 02:00:00,9126.0
-2013-04-21 03:00:00,8851.0
-2013-04-21 04:00:00,8697.0
-2013-04-21 05:00:00,8610.0
-2013-04-21 06:00:00,8683.0
-2013-04-21 07:00:00,8791.0
-2013-04-21 08:00:00,8764.0
-2013-04-21 09:00:00,8934.0
-2013-04-21 10:00:00,9213.0
-2013-04-21 11:00:00,9252.0
-2013-04-21 12:00:00,9366.0
-2013-04-21 13:00:00,9349.0
-2013-04-21 14:00:00,9284.0
-2013-04-21 15:00:00,9235.0
-2013-04-21 16:00:00,9126.0
-2013-04-21 17:00:00,9047.0
-2013-04-21 18:00:00,9058.0
-2013-04-21 19:00:00,9103.0
-2013-04-21 20:00:00,9249.0
-2013-04-21 21:00:00,9662.0
-2013-04-21 22:00:00,10228.0
-2013-04-21 23:00:00,10027.0
-2013-04-22 00:00:00,9502.0
-2013-04-20 01:00:00,10280.0
-2013-04-20 02:00:00,9729.0
-2013-04-20 03:00:00,9393.0
-2013-04-20 04:00:00,9181.0
-2013-04-20 05:00:00,9081.0
-2013-04-20 06:00:00,9146.0
-2013-04-20 07:00:00,9381.0
-2013-04-20 08:00:00,9561.0
-2013-04-20 09:00:00,9823.0
-2013-04-20 10:00:00,10133.0
-2013-04-20 11:00:00,10290.0
-2013-04-20 12:00:00,10349.0
-2013-04-20 13:00:00,10281.0
-2013-04-20 14:00:00,10118.0
-2013-04-20 15:00:00,9916.0
-2013-04-20 16:00:00,9689.0
-2013-04-20 17:00:00,9577.0
-2013-04-20 18:00:00,9514.0
-2013-04-20 19:00:00,9551.0
-2013-04-20 20:00:00,9581.0
-2013-04-20 21:00:00,9991.0
-2013-04-20 22:00:00,10576.0
-2013-04-20 23:00:00,10403.0
-2013-04-21 00:00:00,10006.0
-2013-04-19 01:00:00,9836.0
-2013-04-19 02:00:00,9304.0
-2013-04-19 03:00:00,9073.0
-2013-04-19 04:00:00,8938.0
-2013-04-19 05:00:00,8930.0
-2013-04-19 06:00:00,9161.0
-2013-04-19 07:00:00,9857.0
-2013-04-19 08:00:00,10879.0
-2013-04-19 09:00:00,11623.0
-2013-04-19 10:00:00,11949.0
-2013-04-19 11:00:00,12057.0
-2013-04-19 12:00:00,12261.0
-2013-04-19 13:00:00,12245.0
-2013-04-19 14:00:00,12186.0
-2013-04-19 15:00:00,12166.0
-2013-04-19 16:00:00,12068.0
-2013-04-19 17:00:00,11953.0
-2013-04-19 18:00:00,11915.0
-2013-04-19 19:00:00,11758.0
-2013-04-19 20:00:00,11695.0
-2013-04-19 21:00:00,11928.0
-2013-04-19 22:00:00,12012.0
-2013-04-19 23:00:00,11665.0
-2013-04-20 00:00:00,10939.0
-2013-04-18 01:00:00,9869.0
-2013-04-18 02:00:00,9372.0
-2013-04-18 03:00:00,9091.0
-2013-04-18 04:00:00,8916.0
-2013-04-18 05:00:00,8880.0
-2013-04-18 06:00:00,9118.0
-2013-04-18 07:00:00,9762.0
-2013-04-18 08:00:00,10783.0
-2013-04-18 09:00:00,11556.0
-2013-04-18 10:00:00,11694.0
-2013-04-18 11:00:00,11876.0
-2013-04-18 12:00:00,12003.0
-2013-04-18 13:00:00,11924.0
-2013-04-18 14:00:00,11924.0
-2013-04-18 15:00:00,11917.0
-2013-04-18 16:00:00,11778.0
-2013-04-18 17:00:00,11658.0
-2013-04-18 18:00:00,11612.0
-2013-04-18 19:00:00,11660.0
-2013-04-18 20:00:00,11601.0
-2013-04-18 21:00:00,11844.0
-2013-04-18 22:00:00,11847.0
-2013-04-18 23:00:00,11323.0
-2013-04-19 00:00:00,10542.0
-2013-04-17 01:00:00,9544.0
-2013-04-17 02:00:00,9050.0
-2013-04-17 03:00:00,8768.0
-2013-04-17 04:00:00,8600.0
-2013-04-17 05:00:00,8600.0
-2013-04-17 06:00:00,8826.0
-2013-04-17 07:00:00,9539.0
-2013-04-17 08:00:00,10470.0
-2013-04-17 09:00:00,11186.0
-2013-04-17 10:00:00,11566.0
-2013-04-17 11:00:00,11829.0
-2013-04-17 12:00:00,11950.0
-2013-04-17 13:00:00,12021.0
-2013-04-17 14:00:00,12070.0
-2013-04-17 15:00:00,12124.0
-2013-04-17 16:00:00,12097.0
-2013-04-17 17:00:00,12196.0
-2013-04-17 18:00:00,12255.0
-2013-04-17 19:00:00,12236.0
-2013-04-17 20:00:00,11978.0
-2013-04-17 21:00:00,12073.0
-2013-04-17 22:00:00,11901.0
-2013-04-17 23:00:00,11389.0
-2013-04-18 00:00:00,10584.0
-2013-04-16 01:00:00,9337.0
-2013-04-16 02:00:00,8816.0
-2013-04-16 03:00:00,8545.0
-2013-04-16 04:00:00,8416.0
-2013-04-16 05:00:00,8385.0
-2013-04-16 06:00:00,8593.0
-2013-04-16 07:00:00,9331.0
-2013-04-16 08:00:00,10287.0
-2013-04-16 09:00:00,10939.0
-2013-04-16 10:00:00,11073.0
-2013-04-16 11:00:00,11171.0
-2013-04-16 12:00:00,11241.0
-2013-04-16 13:00:00,11223.0
-2013-04-16 14:00:00,11192.0
-2013-04-16 15:00:00,11176.0
-2013-04-16 16:00:00,11091.0
-2013-04-16 17:00:00,10937.0
-2013-04-16 18:00:00,10848.0
-2013-04-16 19:00:00,10830.0
-2013-04-16 20:00:00,10805.0
-2013-04-16 21:00:00,11260.0
-2013-04-16 22:00:00,11472.0
-2013-04-16 23:00:00,11020.0
-2013-04-17 00:00:00,10287.0
-2013-04-15 01:00:00,8757.0
-2013-04-15 02:00:00,8397.0
-2013-04-15 03:00:00,8136.0
-2013-04-15 04:00:00,7992.0
-2013-04-15 05:00:00,7997.0
-2013-04-15 06:00:00,8148.0
-2013-04-15 07:00:00,8924.0
-2013-04-15 08:00:00,9982.0
-2013-04-15 09:00:00,10687.0
-2013-04-15 10:00:00,11062.0
-2013-04-15 11:00:00,11198.0
-2013-04-15 12:00:00,11311.0
-2013-04-15 13:00:00,11328.0
-2013-04-15 14:00:00,11329.0
-2013-04-15 15:00:00,11370.0
-2013-04-15 16:00:00,11264.0
-2013-04-15 17:00:00,11193.0
-2013-04-15 18:00:00,11252.0
-2013-04-15 19:00:00,11246.0
-2013-04-15 20:00:00,11230.0
-2013-04-15 21:00:00,11497.0
-2013-04-15 22:00:00,11400.0
-2013-04-15 23:00:00,10895.0
-2013-04-16 00:00:00,10063.0
-2013-04-14 01:00:00,9397.0
-2013-04-14 02:00:00,8930.0
-2013-04-14 03:00:00,8686.0
-2013-04-14 04:00:00,8460.0
-2013-04-14 05:00:00,8456.0
-2013-04-14 06:00:00,8466.0
-2013-04-14 07:00:00,8661.0
-2013-04-14 08:00:00,8756.0
-2013-04-14 09:00:00,8863.0
-2013-04-14 10:00:00,9146.0
-2013-04-14 11:00:00,9489.0
-2013-04-14 12:00:00,9537.0
-2013-04-14 13:00:00,9425.0
-2013-04-14 14:00:00,9329.0
-2013-04-14 15:00:00,9231.0
-2013-04-14 16:00:00,9128.0
-2013-04-14 17:00:00,9059.0
-2013-04-14 18:00:00,9074.0
-2013-04-14 19:00:00,9185.0
-2013-04-14 20:00:00,9266.0
-2013-04-14 21:00:00,9827.0
-2013-04-14 22:00:00,10213.0
-2013-04-14 23:00:00,9925.0
-2013-04-15 00:00:00,9331.0
-2013-04-13 01:00:00,10025.0
-2013-04-13 02:00:00,9471.0
-2013-04-13 03:00:00,9139.0
-2013-04-13 04:00:00,8948.0
-2013-04-13 05:00:00,8916.0
-2013-04-13 06:00:00,8927.0
-2013-04-13 07:00:00,9227.0
-2013-04-13 08:00:00,9592.0
-2013-04-13 09:00:00,9905.0
-2013-04-13 10:00:00,10392.0
-2013-04-13 11:00:00,10603.0
-2013-04-13 12:00:00,10699.0
-2013-04-13 13:00:00,10667.0
-2013-04-13 14:00:00,10504.0
-2013-04-13 15:00:00,10208.0
-2013-04-13 16:00:00,10026.0
-2013-04-13 17:00:00,9848.0
-2013-04-13 18:00:00,9720.0
-2013-04-13 19:00:00,9710.0
-2013-04-13 20:00:00,9800.0
-2013-04-13 21:00:00,10227.0
-2013-04-13 22:00:00,10608.0
-2013-04-13 23:00:00,10435.0
-2013-04-14 00:00:00,9905.0
-2013-04-12 01:00:00,9949.0
-2013-04-12 02:00:00,9407.0
-2013-04-12 03:00:00,9103.0
-2013-04-12 04:00:00,8931.0
-2013-04-12 05:00:00,8972.0
-2013-04-12 06:00:00,9241.0
-2013-04-12 07:00:00,9924.0
-2013-04-12 08:00:00,11012.0
-2013-04-12 09:00:00,11620.0
-2013-04-12 10:00:00,11945.0
-2013-04-12 11:00:00,12023.0
-2013-04-12 12:00:00,12057.0
-2013-04-12 13:00:00,11915.0
-2013-04-12 14:00:00,11799.0
-2013-04-12 15:00:00,11823.0
-2013-04-12 16:00:00,11658.0
-2013-04-12 17:00:00,11658.0
-2013-04-12 18:00:00,11675.0
-2013-04-12 19:00:00,11643.0
-2013-04-12 20:00:00,11663.0
-2013-04-12 21:00:00,11852.0
-2013-04-12 22:00:00,11794.0
-2013-04-12 23:00:00,11468.0
-2013-04-13 00:00:00,10734.0
-2013-04-11 01:00:00,10222.0
-2013-04-11 02:00:00,9787.0
-2013-04-11 03:00:00,9466.0
-2013-04-11 04:00:00,9229.0
-2013-04-11 05:00:00,9139.0
-2013-04-11 06:00:00,9315.0
-2013-04-11 07:00:00,10013.0
-2013-04-11 08:00:00,11122.0
-2013-04-11 09:00:00,11767.0
-2013-04-11 10:00:00,12001.0
-2013-04-11 11:00:00,12128.0
-2013-04-11 12:00:00,12204.0
-2013-04-11 13:00:00,12119.0
-2013-04-11 14:00:00,12058.0
-2013-04-11 15:00:00,11997.0
-2013-04-11 16:00:00,11856.0
-2013-04-11 17:00:00,11729.0
-2013-04-11 18:00:00,11724.0
-2013-04-11 19:00:00,11732.0
-2013-04-11 20:00:00,11742.0
-2013-04-11 21:00:00,11928.0
-2013-04-11 22:00:00,11908.0
-2013-04-11 23:00:00,11467.0
-2013-04-12 00:00:00,10687.0
-2013-04-10 01:00:00,9710.0
-2013-04-10 02:00:00,9233.0
-2013-04-10 03:00:00,8933.0
-2013-04-10 04:00:00,8743.0
-2013-04-10 05:00:00,8743.0
-2013-04-10 06:00:00,9011.0
-2013-04-10 07:00:00,9776.0
-2013-04-10 08:00:00,10985.0
-2013-04-10 09:00:00,11812.0
-2013-04-10 10:00:00,12083.0
-2013-04-10 11:00:00,11936.0
-2013-04-10 12:00:00,12113.0
-2013-04-10 13:00:00,12078.0
-2013-04-10 14:00:00,12060.0
-2013-04-10 15:00:00,12133.0
-2013-04-10 16:00:00,12016.0
-2013-04-10 17:00:00,11936.0
-2013-04-10 18:00:00,11923.0
-2013-04-10 19:00:00,11955.0
-2013-04-10 20:00:00,11874.0
-2013-04-10 21:00:00,12184.0
-2013-04-10 22:00:00,12153.0
-2013-04-10 23:00:00,11675.0
-2013-04-11 00:00:00,10911.0
-2013-04-09 01:00:00,9322.0
-2013-04-09 02:00:00,8838.0
-2013-04-09 03:00:00,8595.0
-2013-04-09 04:00:00,8462.0
-2013-04-09 05:00:00,8473.0
-2013-04-09 06:00:00,8701.0
-2013-04-09 07:00:00,9425.0
-2013-04-09 08:00:00,10477.0
-2013-04-09 09:00:00,11227.0
-2013-04-09 10:00:00,11576.0
-2013-04-09 11:00:00,11730.0
-2013-04-09 12:00:00,11808.0
-2013-04-09 13:00:00,11742.0
-2013-04-09 14:00:00,11571.0
-2013-04-09 15:00:00,11531.0
-2013-04-09 16:00:00,11364.0
-2013-04-09 17:00:00,11241.0
-2013-04-09 18:00:00,11178.0
-2013-04-09 19:00:00,11182.0
-2013-04-09 20:00:00,11219.0
-2013-04-09 21:00:00,11719.0
-2013-04-09 22:00:00,11801.0
-2013-04-09 23:00:00,11332.0
-2013-04-10 00:00:00,10504.0
-2013-04-08 01:00:00,8857.0
-2013-04-08 02:00:00,8448.0
-2013-04-08 03:00:00,8275.0
-2013-04-08 04:00:00,8172.0
-2013-04-08 05:00:00,8204.0
-2013-04-08 06:00:00,8457.0
-2013-04-08 07:00:00,9244.0
-2013-04-08 08:00:00,10483.0
-2013-04-08 09:00:00,11205.0
-2013-04-08 10:00:00,11391.0
-2013-04-08 11:00:00,11480.0
-2013-04-08 12:00:00,11482.0
-2013-04-08 13:00:00,11408.0
-2013-04-08 14:00:00,11328.0
-2013-04-08 15:00:00,11247.0
-2013-04-08 16:00:00,11090.0
-2013-04-08 17:00:00,10959.0
-2013-04-08 18:00:00,10829.0
-2013-04-08 19:00:00,10673.0
-2013-04-08 20:00:00,10551.0
-2013-04-08 21:00:00,11038.0
-2013-04-08 22:00:00,11225.0
-2013-04-08 23:00:00,10793.0
-2013-04-09 00:00:00,10038.0
-2013-04-07 01:00:00,8869.0
-2013-04-07 02:00:00,8452.0
-2013-04-07 03:00:00,8119.0
-2013-04-07 04:00:00,7969.0
-2013-04-07 05:00:00,7850.0
-2013-04-07 06:00:00,7891.0
-2013-04-07 07:00:00,7974.0
-2013-04-07 08:00:00,8145.0
-2013-04-07 09:00:00,8227.0
-2013-04-07 10:00:00,8495.0
-2013-04-07 11:00:00,8715.0
-2013-04-07 12:00:00,8830.0
-2013-04-07 13:00:00,8852.0
-2013-04-07 14:00:00,8890.0
-2013-04-07 15:00:00,8814.0
-2013-04-07 16:00:00,8792.0
-2013-04-07 17:00:00,8769.0
-2013-04-07 18:00:00,8819.0
-2013-04-07 19:00:00,8907.0
-2013-04-07 20:00:00,9097.0
-2013-04-07 21:00:00,9701.0
-2013-04-07 22:00:00,10148.0
-2013-04-07 23:00:00,9894.0
-2013-04-08 00:00:00,9369.0
-2013-04-06 01:00:00,9854.0
-2013-04-06 02:00:00,9408.0
-2013-04-06 03:00:00,9102.0
-2013-04-06 04:00:00,8945.0
-2013-04-06 05:00:00,8866.0
-2013-04-06 06:00:00,8880.0
-2013-04-06 07:00:00,9164.0
-2013-04-06 08:00:00,9521.0
-2013-04-06 09:00:00,9763.0
-2013-04-06 10:00:00,10151.0
-2013-04-06 11:00:00,10269.0
-2013-04-06 12:00:00,10354.0
-2013-04-06 13:00:00,10238.0
-2013-04-06 14:00:00,10020.0
-2013-04-06 15:00:00,9809.0
-2013-04-06 16:00:00,9635.0
-2013-04-06 17:00:00,9523.0
-2013-04-06 18:00:00,9597.0
-2013-04-06 19:00:00,9659.0
-2013-04-06 20:00:00,9737.0
-2013-04-06 21:00:00,10210.0
-2013-04-06 22:00:00,10226.0
-2013-04-06 23:00:00,9978.0
-2013-04-07 00:00:00,9454.0
-2013-04-05 01:00:00,9694.0
-2013-04-05 02:00:00,9167.0
-2013-04-05 03:00:00,8923.0
-2013-04-05 04:00:00,8719.0
-2013-04-05 05:00:00,8782.0
-2013-04-05 06:00:00,9034.0
-2013-04-05 07:00:00,9772.0
-2013-04-05 08:00:00,10730.0
-2013-04-05 09:00:00,11229.0
-2013-04-05 10:00:00,11433.0
-2013-04-05 11:00:00,11444.0
-2013-04-05 12:00:00,11463.0
-2013-04-05 13:00:00,11371.0
-2013-04-05 14:00:00,11317.0
-2013-04-05 15:00:00,11241.0
-2013-04-05 16:00:00,11055.0
-2013-04-05 17:00:00,10815.0
-2013-04-05 18:00:00,10685.0
-2013-04-05 19:00:00,10619.0
-2013-04-05 20:00:00,10783.0
-2013-04-05 21:00:00,11374.0
-2013-04-05 22:00:00,11539.0
-2013-04-05 23:00:00,11275.0
-2013-04-06 00:00:00,10613.0
-2013-04-04 01:00:00,10172.0
-2013-04-04 02:00:00,9691.0
-2013-04-04 03:00:00,9415.0
-2013-04-04 04:00:00,9292.0
-2013-04-04 05:00:00,9310.0
-2013-04-04 06:00:00,9569.0
-2013-04-04 07:00:00,10325.0
-2013-04-04 08:00:00,11330.0
-2013-04-04 09:00:00,11742.0
-2013-04-04 10:00:00,11836.0
-2013-04-04 11:00:00,11681.0
-2013-04-04 12:00:00,11732.0
-2013-04-04 13:00:00,11601.0
-2013-04-04 14:00:00,11434.0
-2013-04-04 15:00:00,11395.0
-2013-04-04 16:00:00,11205.0
-2013-04-04 17:00:00,11024.0
-2013-04-04 18:00:00,10847.0
-2013-04-04 19:00:00,10719.0
-2013-04-04 20:00:00,10753.0
-2013-04-04 21:00:00,11273.0
-2013-04-04 22:00:00,11427.0
-2013-04-04 23:00:00,11059.0
-2013-04-05 00:00:00,10389.0
-2013-04-03 01:00:00,10157.0
-2013-04-03 02:00:00,9689.0
-2013-04-03 03:00:00,9431.0
-2013-04-03 04:00:00,9312.0
-2013-04-03 05:00:00,9351.0
-2013-04-03 06:00:00,9608.0
-2013-04-03 07:00:00,10323.0
-2013-04-03 08:00:00,11373.0
-2013-04-03 09:00:00,11810.0
-2013-04-03 10:00:00,11859.0
-2013-04-03 11:00:00,11820.0
-2013-04-03 12:00:00,11805.0
-2013-04-03 13:00:00,11717.0
-2013-04-03 14:00:00,11620.0
-2013-04-03 15:00:00,11552.0
-2013-04-03 16:00:00,11407.0
-2013-04-03 17:00:00,11224.0
-2013-04-03 18:00:00,11073.0
-2013-04-03 19:00:00,11085.0
-2013-04-03 20:00:00,11128.0
-2013-04-03 21:00:00,11755.0
-2013-04-03 22:00:00,11973.0
-2013-04-03 23:00:00,11606.0
-2013-04-04 00:00:00,10884.0
-2013-04-02 01:00:00,10171.0
-2013-04-02 02:00:00,9729.0
-2013-04-02 03:00:00,9469.0
-2013-04-02 04:00:00,9366.0
-2013-04-02 05:00:00,9379.0
-2013-04-02 06:00:00,9648.0
-2013-04-02 07:00:00,10372.0
-2013-04-02 08:00:00,11449.0
-2013-04-02 09:00:00,11854.0
-2013-04-02 10:00:00,11954.0
-2013-04-02 11:00:00,11925.0
-2013-04-02 12:00:00,11901.0
-2013-04-02 13:00:00,11818.0
-2013-04-02 14:00:00,11732.0
-2013-04-02 15:00:00,11656.0
-2013-04-02 16:00:00,11486.0
-2013-04-02 17:00:00,11297.0
-2013-04-02 18:00:00,11217.0
-2013-04-02 19:00:00,11152.0
-2013-04-02 20:00:00,11128.0
-2013-04-02 21:00:00,11741.0
-2013-04-02 22:00:00,11956.0
-2013-04-02 23:00:00,11586.0
-2013-04-03 00:00:00,10869.0
-2013-04-01 01:00:00,8983.0
-2013-04-01 02:00:00,8663.0
-2013-04-01 03:00:00,8503.0
-2013-04-01 04:00:00,8451.0
-2013-04-01 05:00:00,8542.0
-2013-04-01 06:00:00,8861.0
-2013-04-01 07:00:00,9688.0
-2013-04-01 08:00:00,10744.0
-2013-04-01 09:00:00,11325.0
-2013-04-01 10:00:00,11601.0
-2013-04-01 11:00:00,11732.0
-2013-04-01 12:00:00,11854.0
-2013-04-01 13:00:00,11774.0
-2013-04-01 14:00:00,11702.0
-2013-04-01 15:00:00,11648.0
-2013-04-01 16:00:00,11482.0
-2013-04-01 17:00:00,11236.0
-2013-04-01 18:00:00,11153.0
-2013-04-01 19:00:00,11112.0
-2013-04-01 20:00:00,11136.0
-2013-04-01 21:00:00,11761.0
-2013-04-01 22:00:00,11992.0
-2013-04-01 23:00:00,11575.0
-2013-04-02 00:00:00,10865.0
-2013-03-31 01:00:00,8918.0
-2013-03-31 02:00:00,8477.0
-2013-03-31 03:00:00,8140.0
-2013-03-31 04:00:00,7990.0
-2013-03-31 05:00:00,7907.0
-2013-03-31 06:00:00,7923.0
-2013-03-31 07:00:00,8006.0
-2013-03-31 08:00:00,8235.0
-2013-03-31 09:00:00,8298.0
-2013-03-31 10:00:00,8596.0
-2013-03-31 11:00:00,8729.0
-2013-03-31 12:00:00,8787.0
-2013-03-31 13:00:00,8723.0
-2013-03-31 14:00:00,8707.0
-2013-03-31 15:00:00,8585.0
-2013-03-31 16:00:00,8517.0
-2013-03-31 17:00:00,8409.0
-2013-03-31 18:00:00,8437.0
-2013-03-31 19:00:00,8511.0
-2013-03-31 20:00:00,8759.0
-2013-03-31 21:00:00,9561.0
-2013-03-31 22:00:00,9923.0
-2013-03-31 23:00:00,9799.0
-2013-04-01 00:00:00,9403.0
-2013-03-30 01:00:00,9361.0
-2013-03-30 02:00:00,8931.0
-2013-03-30 03:00:00,8749.0
-2013-03-30 04:00:00,8557.0
-2013-03-30 05:00:00,8542.0
-2013-03-30 06:00:00,8591.0
-2013-03-30 07:00:00,8829.0
-2013-03-30 08:00:00,9223.0
-2013-03-30 09:00:00,9318.0
-2013-03-30 10:00:00,9636.0
-2013-03-30 11:00:00,9671.0
-2013-03-30 12:00:00,9700.0
-2013-03-30 13:00:00,9605.0
-2013-03-30 14:00:00,9477.0
-2013-03-30 15:00:00,9335.0
-2013-03-30 16:00:00,9242.0
-2013-03-30 17:00:00,9155.0
-2013-03-30 18:00:00,9170.0
-2013-03-30 19:00:00,9307.0
-2013-03-30 20:00:00,9516.0
-2013-03-30 21:00:00,10072.0
-2013-03-30 22:00:00,10049.0
-2013-03-30 23:00:00,9831.0
-2013-03-31 00:00:00,9447.0
-2013-03-29 01:00:00,9776.0
-2013-03-29 02:00:00,9282.0
-2013-03-29 03:00:00,8986.0
-2013-03-29 04:00:00,8800.0
-2013-03-29 05:00:00,8757.0
-2013-03-29 06:00:00,8956.0
-2013-03-29 07:00:00,9471.0
-2013-03-29 08:00:00,10121.0
-2013-03-29 09:00:00,10359.0
-2013-03-29 10:00:00,10522.0
-2013-03-29 11:00:00,10588.0
-2013-03-29 12:00:00,10569.0
-2013-03-29 13:00:00,10483.0
-2013-03-29 14:00:00,10367.0
-2013-03-29 15:00:00,10254.0
-2013-03-29 16:00:00,10082.0
-2013-03-29 17:00:00,9925.0
-2013-03-29 18:00:00,9840.0
-2013-03-29 19:00:00,9823.0
-2013-03-29 20:00:00,9854.0
-2013-03-29 21:00:00,10438.0
-2013-03-29 22:00:00,10629.0
-2013-03-29 23:00:00,10454.0
-2013-03-30 00:00:00,9949.0
-2013-03-28 01:00:00,10296.0
-2013-03-28 02:00:00,9818.0
-2013-03-28 03:00:00,9577.0
-2013-03-28 04:00:00,9447.0
-2013-03-28 05:00:00,9449.0
-2013-03-28 06:00:00,9702.0
-2013-03-28 07:00:00,10389.0
-2013-03-28 08:00:00,11258.0
-2013-03-28 09:00:00,11612.0
-2013-03-28 10:00:00,11735.0
-2013-03-28 11:00:00,11687.0
-2013-03-28 12:00:00,11613.0
-2013-03-28 13:00:00,11508.0
-2013-03-28 14:00:00,11407.0
-2013-03-28 15:00:00,11342.0
-2013-03-28 16:00:00,11109.0
-2013-03-28 17:00:00,10900.0
-2013-03-28 18:00:00,10753.0
-2013-03-28 19:00:00,10667.0
-2013-03-28 20:00:00,10630.0
-2013-03-28 21:00:00,11266.0
-2013-03-28 22:00:00,11360.0
-2013-03-28 23:00:00,11046.0
-2013-03-29 00:00:00,10412.0
-2013-03-27 01:00:00,10279.0
-2013-03-27 02:00:00,9803.0
-2013-03-27 03:00:00,9497.0
-2013-03-27 04:00:00,9348.0
-2013-03-27 05:00:00,9346.0
-2013-03-27 06:00:00,9583.0
-2013-03-27 07:00:00,10237.0
-2013-03-27 08:00:00,11198.0
-2013-03-27 09:00:00,11641.0
-2013-03-27 10:00:00,11926.0
-2013-03-27 11:00:00,11926.0
-2013-03-27 12:00:00,11944.0
-2013-03-27 13:00:00,11885.0
-2013-03-27 14:00:00,11897.0
-2013-03-27 15:00:00,11864.0
-2013-03-27 16:00:00,11740.0
-2013-03-27 17:00:00,11595.0
-2013-03-27 18:00:00,11527.0
-2013-03-27 19:00:00,11491.0
-2013-03-27 20:00:00,11512.0
-2013-03-27 21:00:00,12006.0
-2013-03-27 22:00:00,11971.0
-2013-03-27 23:00:00,11592.0
-2013-03-28 00:00:00,10944.0
-2013-03-26 01:00:00,10469.0
-2013-03-26 02:00:00,10002.0
-2013-03-26 03:00:00,9686.0
-2013-03-26 04:00:00,9528.0
-2013-03-26 05:00:00,9527.0
-2013-03-26 06:00:00,9751.0
-2013-03-26 07:00:00,10399.0
-2013-03-26 08:00:00,11396.0
-2013-03-26 09:00:00,11801.0
-2013-03-26 10:00:00,12074.0
-2013-03-26 11:00:00,12113.0
-2013-03-26 12:00:00,12034.0
-2013-03-26 13:00:00,11955.0
-2013-03-26 14:00:00,11925.0
-2013-03-26 15:00:00,11871.0
-2013-03-26 16:00:00,11773.0
-2013-03-26 17:00:00,11664.0
-2013-03-26 18:00:00,11637.0
-2013-03-26 19:00:00,11629.0
-2013-03-26 20:00:00,11600.0
-2013-03-26 21:00:00,12059.0
-2013-03-26 22:00:00,12007.0
-2013-03-26 23:00:00,11641.0
-2013-03-27 00:00:00,10934.0
-2013-03-25 01:00:00,10037.0
-2013-03-25 02:00:00,9682.0
-2013-03-25 03:00:00,9474.0
-2013-03-25 04:00:00,9398.0
-2013-03-25 05:00:00,9415.0
-2013-03-25 06:00:00,9713.0
-2013-03-25 07:00:00,10392.0
-2013-03-25 08:00:00,11478.0
-2013-03-25 09:00:00,11990.0
-2013-03-25 10:00:00,12369.0
-2013-03-25 11:00:00,12512.0
-2013-03-25 12:00:00,12554.0
-2013-03-25 13:00:00,12514.0
-2013-03-25 14:00:00,12431.0
-2013-03-25 15:00:00,12402.0
-2013-03-25 16:00:00,12310.0
-2013-03-25 17:00:00,12219.0
-2013-03-25 18:00:00,12176.0
-2013-03-25 19:00:00,12225.0
-2013-03-25 20:00:00,12222.0
-2013-03-25 21:00:00,12598.0
-2013-03-25 22:00:00,12388.0
-2013-03-25 23:00:00,11932.0
-2013-03-26 00:00:00,11190.0
-2013-03-24 01:00:00,9799.0
-2013-03-24 02:00:00,9293.0
-2013-03-24 03:00:00,9102.0
-2013-03-24 04:00:00,8916.0
-2013-03-24 05:00:00,8860.0
-2013-03-24 06:00:00,8874.0
-2013-03-24 07:00:00,9046.0
-2013-03-24 08:00:00,9298.0
-2013-03-24 09:00:00,9443.0
-2013-03-24 10:00:00,9740.0
-2013-03-24 11:00:00,9986.0
-2013-03-24 12:00:00,10033.0
-2013-03-24 13:00:00,10203.0
-2013-03-24 14:00:00,10152.0
-2013-03-24 15:00:00,10200.0
-2013-03-24 16:00:00,10254.0
-2013-03-24 17:00:00,10373.0
-2013-03-24 18:00:00,10476.0
-2013-03-24 19:00:00,10732.0
-2013-03-24 20:00:00,11062.0
-2013-03-24 21:00:00,11448.0
-2013-03-24 22:00:00,11369.0
-2013-03-24 23:00:00,11089.0
-2013-03-25 00:00:00,10584.0
-2013-03-23 01:00:00,10376.0
-2013-03-23 02:00:00,9850.0
-2013-03-23 03:00:00,9554.0
-2013-03-23 04:00:00,9357.0
-2013-03-23 05:00:00,9333.0
-2013-03-23 06:00:00,9385.0
-2013-03-23 07:00:00,9697.0
-2013-03-23 08:00:00,10153.0
-2013-03-23 09:00:00,10330.0
-2013-03-23 10:00:00,10538.0
-2013-03-23 11:00:00,10634.0
-2013-03-23 12:00:00,10599.0
-2013-03-23 13:00:00,10505.0
-2013-03-23 14:00:00,10314.0
-2013-03-23 15:00:00,10087.0
-2013-03-23 16:00:00,9859.0
-2013-03-23 17:00:00,9750.0
-2013-03-23 18:00:00,9681.0
-2013-03-23 19:00:00,9835.0
-2013-03-23 20:00:00,10094.0
-2013-03-23 21:00:00,10906.0
-2013-03-23 22:00:00,10981.0
-2013-03-23 23:00:00,10815.0
-2013-03-24 00:00:00,10324.0
-2013-03-22 01:00:00,10777.0
-2013-03-22 02:00:00,10305.0
-2013-03-22 03:00:00,10036.0
-2013-03-22 04:00:00,9900.0
-2013-03-22 05:00:00,9928.0
-2013-03-22 06:00:00,10191.0
-2013-03-22 07:00:00,10891.0
-2013-03-22 08:00:00,12081.0
-2013-03-22 09:00:00,12457.0
-2013-03-22 10:00:00,12459.0
-2013-03-22 11:00:00,12421.0
-2013-03-22 12:00:00,12344.0
-2013-03-22 13:00:00,12176.0
-2013-03-22 14:00:00,12003.0
-2013-03-22 15:00:00,11884.0
-2013-03-22 16:00:00,11603.0
-2013-03-22 17:00:00,11359.0
-2013-03-22 18:00:00,11189.0
-2013-03-22 19:00:00,11112.0
-2013-03-22 20:00:00,11184.0
-2013-03-22 21:00:00,11869.0
-2013-03-22 22:00:00,11899.0
-2013-03-22 23:00:00,11658.0
-2013-03-23 00:00:00,11042.0
-2013-03-21 01:00:00,11351.0
-2013-03-21 02:00:00,10797.0
-2013-03-21 03:00:00,10542.0
-2013-03-21 04:00:00,10395.0
-2013-03-21 05:00:00,10398.0
-2013-03-21 06:00:00,10649.0
-2013-03-21 07:00:00,11360.0
-2013-03-21 08:00:00,12559.0
-2013-03-21 09:00:00,12973.0
-2013-03-21 10:00:00,13002.0
-2013-03-21 11:00:00,12912.0
-2013-03-21 12:00:00,12866.0
-2013-03-21 13:00:00,12660.0
-2013-03-21 14:00:00,12498.0
-2013-03-21 15:00:00,12394.0
-2013-03-21 16:00:00,12152.0
-2013-03-21 17:00:00,11916.0
-2013-03-21 18:00:00,11786.0
-2013-03-21 19:00:00,11715.0
-2013-03-21 20:00:00,11790.0
-2013-03-21 21:00:00,12526.0
-2013-03-21 22:00:00,12616.0
-2013-03-21 23:00:00,12237.0
-2013-03-22 00:00:00,11501.0
-2013-03-20 01:00:00,11116.0
-2013-03-20 02:00:00,10633.0
-2013-03-20 03:00:00,10383.0
-2013-03-20 04:00:00,10295.0
-2013-03-20 05:00:00,10341.0
-2013-03-20 06:00:00,10631.0
-2013-03-20 07:00:00,11436.0
-2013-03-20 08:00:00,12681.0
-2013-03-20 09:00:00,13146.0
-2013-03-20 10:00:00,13230.0
-2013-03-20 11:00:00,13255.0
-2013-03-20 12:00:00,13249.0
-2013-03-20 13:00:00,13150.0
-2013-03-20 14:00:00,13077.0
-2013-03-20 15:00:00,12998.0
-2013-03-20 16:00:00,12838.0
-2013-03-20 17:00:00,12730.0
-2013-03-20 18:00:00,12708.0
-2013-03-20 19:00:00,12799.0
-2013-03-20 20:00:00,12997.0
-2013-03-20 21:00:00,13514.0
-2013-03-20 22:00:00,13353.0
-2013-03-20 23:00:00,12885.0
-2013-03-21 00:00:00,12085.0
-2013-03-19 01:00:00,11261.0
-2013-03-19 02:00:00,10780.0
-2013-03-19 03:00:00,10545.0
-2013-03-19 04:00:00,10406.0
-2013-03-19 05:00:00,10421.0
-2013-03-19 06:00:00,10699.0
-2013-03-19 07:00:00,11437.0
-2013-03-19 08:00:00,12684.0
-2013-03-19 09:00:00,13214.0
-2013-03-19 10:00:00,13276.0
-2013-03-19 11:00:00,13227.0
-2013-03-19 12:00:00,13209.0
-2013-03-19 13:00:00,13074.0
-2013-03-19 14:00:00,12960.0
-2013-03-19 15:00:00,12863.0
-2013-03-19 16:00:00,12626.0
-2013-03-19 17:00:00,12368.0
-2013-03-19 18:00:00,12239.0
-2013-03-19 19:00:00,12189.0
-2013-03-19 20:00:00,12276.0
-2013-03-19 21:00:00,13007.0
-2013-03-19 22:00:00,13074.0
-2013-03-19 23:00:00,12639.0
-2013-03-20 00:00:00,11841.0
-2013-03-18 01:00:00,10168.0
-2013-03-18 02:00:00,9774.0
-2013-03-18 03:00:00,9602.0
-2013-03-18 04:00:00,9480.0
-2013-03-18 05:00:00,9529.0
-2013-03-18 06:00:00,9811.0
-2013-03-18 07:00:00,10583.0
-2013-03-18 08:00:00,11827.0
-2013-03-18 09:00:00,12555.0
-2013-03-18 10:00:00,12661.0
-2013-03-18 11:00:00,12790.0
-2013-03-18 12:00:00,12908.0
-2013-03-18 13:00:00,12890.0
-2013-03-18 14:00:00,12763.0
-2013-03-18 15:00:00,12723.0
-2013-03-18 16:00:00,12628.0
-2013-03-18 17:00:00,12532.0
-2013-03-18 18:00:00,12518.0
-2013-03-18 19:00:00,12639.0
-2013-03-18 20:00:00,12874.0
-2013-03-18 21:00:00,13244.0
-2013-03-18 22:00:00,13118.0
-2013-03-18 23:00:00,12721.0
-2013-03-19 00:00:00,11997.0
-2013-03-17 01:00:00,10139.0
-2013-03-17 02:00:00,9736.0
-2013-03-17 03:00:00,9452.0
-2013-03-17 04:00:00,9334.0
-2013-03-17 05:00:00,9282.0
-2013-03-17 06:00:00,9328.0
-2013-03-17 07:00:00,9435.0
-2013-03-17 08:00:00,9728.0
-2013-03-17 09:00:00,9786.0
-2013-03-17 10:00:00,10062.0
-2013-03-17 11:00:00,10297.0
-2013-03-17 12:00:00,10409.0
-2013-03-17 13:00:00,10447.0
-2013-03-17 14:00:00,10392.0
-2013-03-17 15:00:00,10282.0
-2013-03-17 16:00:00,10164.0
-2013-03-17 17:00:00,10060.0
-2013-03-17 18:00:00,10128.0
-2013-03-17 19:00:00,10295.0
-2013-03-17 20:00:00,10691.0
-2013-03-17 21:00:00,11466.0
-2013-03-17 22:00:00,11510.0
-2013-03-17 23:00:00,11220.0
-2013-03-18 00:00:00,10724.0
-2013-03-16 01:00:00,10512.0
-2013-03-16 02:00:00,9993.0
-2013-03-16 03:00:00,9618.0
-2013-03-16 04:00:00,9447.0
-2013-03-16 05:00:00,9281.0
-2013-03-16 06:00:00,9372.0
-2013-03-16 07:00:00,9657.0
-2013-03-16 08:00:00,10161.0
-2013-03-16 09:00:00,10627.0
-2013-03-16 10:00:00,10982.0
-2013-03-16 11:00:00,11381.0
-2013-03-16 12:00:00,11545.0
-2013-03-16 13:00:00,11494.0
-2013-03-16 14:00:00,11278.0
-2013-03-16 15:00:00,11089.0
-2013-03-16 16:00:00,10917.0
-2013-03-16 17:00:00,10772.0
-2013-03-16 18:00:00,10722.0
-2013-03-16 19:00:00,10837.0
-2013-03-16 20:00:00,11041.0
-2013-03-16 21:00:00,11538.0
-2013-03-16 22:00:00,11408.0
-2013-03-16 23:00:00,11190.0
-2013-03-17 00:00:00,10715.0
-2013-03-15 01:00:00,10790.0
-2013-03-15 02:00:00,10248.0
-2013-03-15 03:00:00,9967.0
-2013-03-15 04:00:00,9798.0
-2013-03-15 05:00:00,9802.0
-2013-03-15 06:00:00,9976.0
-2013-03-15 07:00:00,10652.0
-2013-03-15 08:00:00,11858.0
-2013-03-15 09:00:00,12293.0
-2013-03-15 10:00:00,12319.0
-2013-03-15 11:00:00,12320.0
-2013-03-15 12:00:00,12210.0
-2013-03-15 13:00:00,12081.0
-2013-03-15 14:00:00,12020.0
-2013-03-15 15:00:00,12040.0
-2013-03-15 16:00:00,11946.0
-2013-03-15 17:00:00,11826.0
-2013-03-15 18:00:00,11860.0
-2013-03-15 19:00:00,11952.0
-2013-03-15 20:00:00,12128.0
-2013-03-15 21:00:00,12382.0
-2013-03-15 22:00:00,12175.0
-2013-03-15 23:00:00,11818.0
-2013-03-16 00:00:00,11223.0
-2013-03-14 01:00:00,10927.0
-2013-03-14 02:00:00,10442.0
-2013-03-14 03:00:00,10160.0
-2013-03-14 04:00:00,9994.0
-2013-03-14 05:00:00,10006.0
-2013-03-14 06:00:00,10266.0
-2013-03-14 07:00:00,10976.0
-2013-03-14 08:00:00,12220.0
-2013-03-14 09:00:00,12715.0
-2013-03-14 10:00:00,12666.0
-2013-03-14 11:00:00,12629.0
-2013-03-14 12:00:00,12619.0
-2013-03-14 13:00:00,12537.0
-2013-03-14 14:00:00,12475.0
-2013-03-14 15:00:00,12468.0
-2013-03-14 16:00:00,12386.0
-2013-03-14 17:00:00,12236.0
-2013-03-14 18:00:00,12014.0
-2013-03-14 19:00:00,11995.0
-2013-03-14 20:00:00,12348.0
-2013-03-14 21:00:00,12833.0
-2013-03-14 22:00:00,12682.0
-2013-03-14 23:00:00,12280.0
-2013-03-15 00:00:00,11525.0
-2013-03-13 01:00:00,11072.0
-2013-03-13 02:00:00,10538.0
-2013-03-13 03:00:00,10256.0
-2013-03-13 04:00:00,10068.0
-2013-03-13 05:00:00,10048.0
-2013-03-13 06:00:00,10302.0
-2013-03-13 07:00:00,11076.0
-2013-03-13 08:00:00,12334.0
-2013-03-13 09:00:00,12810.0
-2013-03-13 10:00:00,12864.0
-2013-03-13 11:00:00,12847.0
-2013-03-13 12:00:00,12908.0
-2013-03-13 13:00:00,12792.0
-2013-03-13 14:00:00,12693.0
-2013-03-13 15:00:00,12569.0
-2013-03-13 16:00:00,12370.0
-2013-03-13 17:00:00,12165.0
-2013-03-13 18:00:00,12018.0
-2013-03-13 19:00:00,12019.0
-2013-03-13 20:00:00,12178.0
-2013-03-13 21:00:00,12897.0
-2013-03-13 22:00:00,12878.0
-2013-03-13 23:00:00,12455.0
-2013-03-14 00:00:00,11704.0
-2013-03-12 01:00:00,10707.0
-2013-03-12 02:00:00,10196.0
-2013-03-12 03:00:00,9889.0
-2013-03-12 04:00:00,9733.0
-2013-03-12 05:00:00,9698.0
-2013-03-12 06:00:00,9963.0
-2013-03-12 07:00:00,10684.0
-2013-03-12 08:00:00,11934.0
-2013-03-12 09:00:00,12578.0
-2013-03-12 10:00:00,12640.0
-2013-03-12 11:00:00,12625.0
-2013-03-12 12:00:00,12523.0
-2013-03-12 13:00:00,12492.0
-2013-03-12 14:00:00,12413.0
-2013-03-12 15:00:00,12497.0
-2013-03-12 16:00:00,12451.0
-2013-03-12 17:00:00,12420.0
-2013-03-12 18:00:00,12498.0
-2013-03-12 19:00:00,12455.0
-2013-03-12 20:00:00,12689.0
-2013-03-12 21:00:00,13197.0
-2013-03-12 22:00:00,13091.0
-2013-03-12 23:00:00,12637.0
-2013-03-13 00:00:00,11819.0
-2013-03-11 01:00:00,9498.0
-2013-03-11 02:00:00,9092.0
-2013-03-11 03:00:00,8810.0
-2013-03-11 04:00:00,8736.0
-2013-03-11 05:00:00,8743.0
-2013-03-11 06:00:00,9013.0
-2013-03-11 07:00:00,9723.0
-2013-03-11 08:00:00,11062.0
-2013-03-11 09:00:00,11895.0
-2013-03-11 10:00:00,12067.0
-2013-03-11 11:00:00,12142.0
-2013-03-11 12:00:00,12278.0
-2013-03-11 13:00:00,12323.0
-2013-03-11 14:00:00,12435.0
-2013-03-11 15:00:00,12467.0
-2013-03-11 16:00:00,12390.0
-2013-03-11 17:00:00,12329.0
-2013-03-11 18:00:00,12372.0
-2013-03-11 19:00:00,12467.0
-2013-03-11 20:00:00,12677.0
-2013-03-11 21:00:00,12917.0
-2013-03-11 22:00:00,12707.0
-2013-03-11 23:00:00,12225.0
-2013-03-12 00:00:00,11446.0
-2013-03-10 01:00:00,9739.0
-2013-03-10 02:00:00,9334.0
-2013-03-10 04:00:00,9060.0
-2013-03-10 05:00:00,8992.0
-2013-03-10 06:00:00,8927.0
-2013-03-10 07:00:00,9042.0
-2013-03-10 08:00:00,9218.0
-2013-03-10 09:00:00,9374.0
-2013-03-10 10:00:00,9468.0
-2013-03-10 11:00:00,9786.0
-2013-03-10 12:00:00,9896.0
-2013-03-10 13:00:00,10004.0
-2013-03-10 14:00:00,10012.0
-2013-03-10 15:00:00,10125.0
-2013-03-10 16:00:00,10140.0
-2013-03-10 17:00:00,10245.0
-2013-03-10 18:00:00,10387.0
-2013-03-10 19:00:00,10601.0
-2013-03-10 20:00:00,10784.0
-2013-03-10 21:00:00,11162.0
-2013-03-10 22:00:00,10998.0
-2013-03-10 23:00:00,10644.0
-2013-03-11 00:00:00,10084.0
-2013-03-09 01:00:00,10589.0
-2013-03-09 02:00:00,10076.0
-2013-03-09 03:00:00,9745.0
-2013-03-09 04:00:00,9619.0
-2013-03-09 05:00:00,9502.0
-2013-03-09 06:00:00,9582.0
-2013-03-09 07:00:00,9867.0
-2013-03-09 08:00:00,10275.0
-2013-03-09 09:00:00,10564.0
-2013-03-09 10:00:00,10990.0
-2013-03-09 11:00:00,11164.0
-2013-03-09 12:00:00,11222.0
-2013-03-09 13:00:00,11137.0
-2013-03-09 14:00:00,10955.0
-2013-03-09 15:00:00,10723.0
-2013-03-09 16:00:00,10532.0
-2013-03-09 17:00:00,10472.0
-2013-03-09 18:00:00,10693.0
-2013-03-09 19:00:00,11022.0
-2013-03-09 20:00:00,11559.0
-2013-03-09 21:00:00,11427.0
-2013-03-09 22:00:00,11253.0
-2013-03-09 23:00:00,10837.0
-2013-03-10 00:00:00,10314.0
-2013-03-08 01:00:00,10722.0
-2013-03-08 02:00:00,10298.0
-2013-03-08 03:00:00,10065.0
-2013-03-08 04:00:00,9887.0
-2013-03-08 05:00:00,9930.0
-2013-03-08 06:00:00,10212.0
-2013-03-08 07:00:00,11013.0
-2013-03-08 08:00:00,11855.0
-2013-03-08 09:00:00,12214.0
-2013-03-08 10:00:00,12227.0
-2013-03-08 11:00:00,12228.0
-2013-03-08 12:00:00,12139.0
-2013-03-08 13:00:00,12063.0
-2013-03-08 14:00:00,11891.0
-2013-03-08 15:00:00,11817.0
-2013-03-08 16:00:00,11572.0
-2013-03-08 17:00:00,11461.0
-2013-03-08 18:00:00,11502.0
-2013-03-08 19:00:00,11806.0
-2013-03-08 20:00:00,12549.0
-2013-03-08 21:00:00,12535.0
-2013-03-08 22:00:00,12249.0
-2013-03-08 23:00:00,11859.0
-2013-03-09 00:00:00,11246.0
-2013-03-07 01:00:00,10729.0
-2013-03-07 02:00:00,10228.0
-2013-03-07 03:00:00,9977.0
-2013-03-07 04:00:00,9825.0
-2013-03-07 05:00:00,9826.0
-2013-03-07 06:00:00,10100.0
-2013-03-07 07:00:00,10817.0
-2013-03-07 08:00:00,11707.0
-2013-03-07 09:00:00,12178.0
-2013-03-07 10:00:00,12228.0
-2013-03-07 11:00:00,12222.0
-2013-03-07 12:00:00,12259.0
-2013-03-07 13:00:00,12174.0
-2013-03-07 14:00:00,12028.0
-2013-03-07 15:00:00,11982.0
-2013-03-07 16:00:00,11841.0
-2013-03-07 17:00:00,11759.0
-2013-03-07 18:00:00,11863.0
-2013-03-07 19:00:00,12194.0
-2013-03-07 20:00:00,13028.0
-2013-03-07 21:00:00,12967.0
-2013-03-07 22:00:00,12695.0
-2013-03-07 23:00:00,12230.0
-2013-03-08 00:00:00,11422.0
-2013-03-06 01:00:00,10737.0
-2013-03-06 02:00:00,10286.0
-2013-03-06 03:00:00,10032.0
-2013-03-06 04:00:00,9890.0
-2013-03-06 05:00:00,9937.0
-2013-03-06 06:00:00,10230.0
-2013-03-06 07:00:00,11005.0
-2013-03-06 08:00:00,11974.0
-2013-03-06 09:00:00,12452.0
-2013-03-06 10:00:00,12712.0
-2013-03-06 11:00:00,12796.0
-2013-03-06 12:00:00,12835.0
-2013-03-06 13:00:00,12638.0
-2013-03-06 14:00:00,12516.0
-2013-03-06 15:00:00,12538.0
-2013-03-06 16:00:00,12479.0
-2013-03-06 17:00:00,12446.0
-2013-03-06 18:00:00,12558.0
-2013-03-06 19:00:00,12869.0
-2013-03-06 20:00:00,13293.0
-2013-03-06 21:00:00,13136.0
-2013-03-06 22:00:00,12833.0
-2013-03-06 23:00:00,12290.0
-2013-03-07 00:00:00,11471.0
-2013-03-05 01:00:00,10762.0
-2013-03-05 02:00:00,10296.0
-2013-03-05 03:00:00,10035.0
-2013-03-05 04:00:00,9836.0
-2013-03-05 05:00:00,9846.0
-2013-03-05 06:00:00,10088.0
-2013-03-05 07:00:00,10786.0
-2013-03-05 08:00:00,11728.0
-2013-03-05 09:00:00,12323.0
-2013-03-05 10:00:00,12641.0
-2013-03-05 11:00:00,12822.0
-2013-03-05 12:00:00,12924.0
-2013-03-05 13:00:00,13052.0
-2013-03-05 14:00:00,13049.0
-2013-03-05 15:00:00,12980.0
-2013-03-05 16:00:00,12805.0
-2013-03-05 17:00:00,12687.0
-2013-03-05 18:00:00,12746.0
-2013-03-05 19:00:00,13124.0
-2013-03-05 20:00:00,13556.0
-2013-03-05 21:00:00,13344.0
-2013-03-05 22:00:00,12979.0
-2013-03-05 23:00:00,12398.0
-2013-03-06 00:00:00,11522.0
-2013-03-04 01:00:00,10425.0
-2013-03-04 02:00:00,10079.0
-2013-03-04 03:00:00,9958.0
-2013-03-04 04:00:00,9919.0
-2013-03-04 05:00:00,10039.0
-2013-03-04 06:00:00,10340.0
-2013-03-04 07:00:00,11133.0
-2013-03-04 08:00:00,12058.0
-2013-03-04 09:00:00,12584.0
-2013-03-04 10:00:00,12742.0
-2013-03-04 11:00:00,12813.0
-2013-03-04 12:00:00,12834.0
-2013-03-04 13:00:00,12763.0
-2013-03-04 14:00:00,12682.0
-2013-03-04 15:00:00,12729.0
-2013-03-04 16:00:00,12669.0
-2013-03-04 17:00:00,12603.0
-2013-03-04 18:00:00,12653.0
-2013-03-04 19:00:00,12984.0
-2013-03-04 20:00:00,13452.0
-2013-03-04 21:00:00,13257.0
-2013-03-04 22:00:00,12870.0
-2013-03-04 23:00:00,12319.0
-2013-03-05 00:00:00,11520.0
-2013-03-03 01:00:00,10702.0
-2013-03-03 02:00:00,10336.0
-2013-03-03 03:00:00,10064.0
-2013-03-03 04:00:00,9970.0
-2013-03-03 05:00:00,9906.0
-2013-03-03 06:00:00,9956.0
-2013-03-03 07:00:00,10125.0
-2013-03-03 08:00:00,10203.0
-2013-03-03 09:00:00,10168.0
-2013-03-03 10:00:00,10244.0
-2013-03-03 11:00:00,10301.0
-2013-03-03 12:00:00,10298.0
-2013-03-03 13:00:00,10284.0
-2013-03-03 14:00:00,10217.0
-2013-03-03 15:00:00,10171.0
-2013-03-03 16:00:00,10062.0
-2013-03-03 17:00:00,10081.0
-2013-03-03 18:00:00,10245.0
-2013-03-03 19:00:00,10888.0
-2013-03-03 20:00:00,11786.0
-2013-03-03 21:00:00,11897.0
-2013-03-03 22:00:00,11728.0
-2013-03-03 23:00:00,11451.0
-2013-03-04 00:00:00,10874.0
-2013-03-02 01:00:00,10992.0
-2013-03-02 02:00:00,10553.0
-2013-03-02 03:00:00,10209.0
-2013-03-02 04:00:00,10026.0
-2013-03-02 05:00:00,9970.0
-2013-03-02 06:00:00,10039.0
-2013-03-02 07:00:00,10285.0
-2013-03-02 08:00:00,10645.0
-2013-03-02 09:00:00,10900.0
-2013-03-02 10:00:00,11260.0
-2013-03-02 11:00:00,11327.0
-2013-03-02 12:00:00,11294.0
-2013-03-02 13:00:00,11196.0
-2013-03-02 14:00:00,11001.0
-2013-03-02 15:00:00,10776.0
-2013-03-02 16:00:00,10664.0
-2013-03-02 17:00:00,10609.0
-2013-03-02 18:00:00,10801.0
-2013-03-02 19:00:00,11228.0
-2013-03-02 20:00:00,12039.0
-2013-03-02 21:00:00,11998.0
-2013-03-02 22:00:00,11902.0
-2013-03-02 23:00:00,11608.0
-2013-03-03 00:00:00,11171.0
-2013-03-01 01:00:00,10818.0
-2013-03-01 02:00:00,10340.0
-2013-03-01 03:00:00,10056.0
-2013-03-01 04:00:00,9948.0
-2013-03-01 05:00:00,9932.0
-2013-03-01 06:00:00,10210.0
-2013-03-01 07:00:00,10930.0
-2013-03-01 08:00:00,11949.0
-2013-03-01 09:00:00,12479.0
-2013-03-01 10:00:00,12728.0
-2013-03-01 11:00:00,12830.0
-2013-03-01 12:00:00,12899.0
-2013-03-01 13:00:00,12884.0
-2013-03-01 14:00:00,12784.0
-2013-03-01 15:00:00,12795.0
-2013-03-01 16:00:00,12773.0
-2013-03-01 17:00:00,12745.0
-2013-03-01 18:00:00,12884.0
-2013-03-01 19:00:00,13215.0
-2013-03-01 20:00:00,13367.0
-2013-03-01 21:00:00,13131.0
-2013-03-01 22:00:00,12880.0
-2013-03-01 23:00:00,12453.0
-2013-03-02 00:00:00,11765.0
-2013-02-28 01:00:00,10794.0
-2013-02-28 02:00:00,10298.0
-2013-02-28 03:00:00,10017.0
-2013-02-28 04:00:00,9885.0
-2013-02-28 05:00:00,9892.0
-2013-02-28 06:00:00,10107.0
-2013-02-28 07:00:00,10837.0
-2013-02-28 08:00:00,11901.0
-2013-02-28 09:00:00,12395.0
-2013-02-28 10:00:00,12510.0
-2013-02-28 11:00:00,12620.0
-2013-02-28 12:00:00,12630.0
-2013-02-28 13:00:00,12607.0
-2013-02-28 14:00:00,12489.0
-2013-02-28 15:00:00,12547.0
-2013-02-28 16:00:00,12459.0
-2013-02-28 17:00:00,12505.0
-2013-02-28 18:00:00,12648.0
-2013-02-28 19:00:00,13021.0
-2013-02-28 20:00:00,13253.0
-2013-02-28 21:00:00,13053.0
-2013-02-28 22:00:00,12831.0
-2013-02-28 23:00:00,12331.0
-2013-03-01 00:00:00,11525.0
-2013-02-27 01:00:00,10811.0
-2013-02-27 02:00:00,10287.0
-2013-02-27 03:00:00,10026.0
-2013-02-27 04:00:00,9855.0
-2013-02-27 05:00:00,9814.0
-2013-02-27 06:00:00,10097.0
-2013-02-27 07:00:00,10854.0
-2013-02-27 08:00:00,11920.0
-2013-02-27 09:00:00,12431.0
-2013-02-27 10:00:00,12577.0
-2013-02-27 11:00:00,12662.0
-2013-02-27 12:00:00,12714.0
-2013-02-27 13:00:00,12662.0
-2013-02-27 14:00:00,12635.0
-2013-02-27 15:00:00,12644.0
-2013-02-27 16:00:00,12563.0
-2013-02-27 17:00:00,12507.0
-2013-02-27 18:00:00,12661.0
-2013-02-27 19:00:00,13114.0
-2013-02-27 20:00:00,13440.0
-2013-02-27 21:00:00,13232.0
-2013-02-27 22:00:00,12952.0
-2013-02-27 23:00:00,12427.0
-2013-02-28 00:00:00,11514.0
-2013-02-26 01:00:00,10539.0
-2013-02-26 02:00:00,10089.0
-2013-02-26 03:00:00,9832.0
-2013-02-26 04:00:00,9733.0
-2013-02-26 05:00:00,9758.0
-2013-02-26 06:00:00,10069.0
-2013-02-26 07:00:00,10857.0
-2013-02-26 08:00:00,11969.0
-2013-02-26 09:00:00,12519.0
-2013-02-26 10:00:00,12766.0
-2013-02-26 11:00:00,12884.0
-2013-02-26 12:00:00,13080.0
-2013-02-26 13:00:00,13205.0
-2013-02-26 14:00:00,13264.0
-2013-02-26 15:00:00,13261.0
-2013-02-26 16:00:00,13104.0
-2013-02-26 17:00:00,12942.0
-2013-02-26 18:00:00,13045.0
-2013-02-26 19:00:00,13532.0
-2013-02-26 20:00:00,13801.0
-2013-02-26 21:00:00,13520.0
-2013-02-26 22:00:00,13102.0
-2013-02-26 23:00:00,12460.0
-2013-02-27 00:00:00,11566.0
-2013-02-25 01:00:00,10100.0
-2013-02-25 02:00:00,9780.0
-2013-02-25 03:00:00,9667.0
-2013-02-25 04:00:00,9590.0
-2013-02-25 05:00:00,9693.0
-2013-02-25 06:00:00,10027.0
-2013-02-25 07:00:00,10864.0
-2013-02-25 08:00:00,11915.0
-2013-02-25 09:00:00,12322.0
-2013-02-25 10:00:00,12298.0
-2013-02-25 11:00:00,12245.0
-2013-02-25 12:00:00,12205.0
-2013-02-25 13:00:00,12065.0
-2013-02-25 14:00:00,11947.0
-2013-02-25 15:00:00,11863.0
-2013-02-25 16:00:00,11723.0
-2013-02-25 17:00:00,11638.0
-2013-02-25 18:00:00,11801.0
-2013-02-25 19:00:00,12492.0
-2013-02-25 20:00:00,12935.0
-2013-02-25 21:00:00,12849.0
-2013-02-25 22:00:00,12576.0
-2013-02-25 23:00:00,12095.0
-2013-02-26 00:00:00,11267.0
-2013-02-24 01:00:00,10603.0
-2013-02-24 02:00:00,10201.0
-2013-02-24 03:00:00,9951.0
-2013-02-24 04:00:00,9849.0
-2013-02-24 05:00:00,9763.0
-2013-02-24 06:00:00,9838.0
-2013-02-24 07:00:00,9985.0
-2013-02-24 08:00:00,10103.0
-2013-02-24 09:00:00,10095.0
-2013-02-24 10:00:00,10192.0
-2013-02-24 11:00:00,10219.0
-2013-02-24 12:00:00,10245.0
-2013-02-24 13:00:00,10175.0
-2013-02-24 14:00:00,10089.0
-2013-02-24 15:00:00,9979.0
-2013-02-24 16:00:00,9875.0
-2013-02-24 17:00:00,9838.0
-2013-02-24 18:00:00,10123.0
-2013-02-24 19:00:00,10812.0
-2013-02-24 20:00:00,11651.0
-2013-02-24 21:00:00,11603.0
-2013-02-24 22:00:00,11490.0
-2013-02-24 23:00:00,11156.0
-2013-02-25 00:00:00,10683.0
-2013-02-23 01:00:00,11017.0
-2013-02-23 02:00:00,10496.0
-2013-02-23 03:00:00,10170.0
-2013-02-23 04:00:00,10013.0
-2013-02-23 05:00:00,9938.0
-2013-02-23 06:00:00,9951.0
-2013-02-23 07:00:00,10288.0
-2013-02-23 08:00:00,10610.0
-2013-02-23 09:00:00,10834.0
-2013-02-23 10:00:00,11163.0
-2013-02-23 11:00:00,11310.0
-2013-02-23 12:00:00,11484.0
-2013-02-23 13:00:00,11411.0
-2013-02-23 14:00:00,11244.0
-2013-02-23 15:00:00,11042.0
-2013-02-23 16:00:00,10991.0
-2013-02-23 17:00:00,10987.0
-2013-02-23 18:00:00,11121.0
-2013-02-23 19:00:00,11664.0
-2013-02-23 20:00:00,12193.0
-2013-02-23 21:00:00,12080.0
-2013-02-23 22:00:00,11886.0
-2013-02-23 23:00:00,11620.0
-2013-02-24 00:00:00,11129.0
-2013-02-22 01:00:00,11515.0
-2013-02-22 02:00:00,10992.0
-2013-02-22 03:00:00,10708.0
-2013-02-22 04:00:00,10531.0
-2013-02-22 05:00:00,10566.0
-2013-02-22 06:00:00,10782.0
-2013-02-22 07:00:00,11423.0
-2013-02-22 08:00:00,12316.0
-2013-02-22 09:00:00,12681.0
-2013-02-22 10:00:00,12889.0
-2013-02-22 11:00:00,13048.0
-2013-02-22 12:00:00,13117.0
-2013-02-22 13:00:00,13065.0
-2013-02-22 14:00:00,12914.0
-2013-02-22 15:00:00,12849.0
-2013-02-22 16:00:00,12788.0
-2013-02-22 17:00:00,12773.0
-2013-02-22 18:00:00,12859.0
-2013-02-22 19:00:00,13259.0
-2013-02-22 20:00:00,13440.0
-2013-02-22 21:00:00,13191.0
-2013-02-22 22:00:00,12787.0
-2013-02-22 23:00:00,12392.0
-2013-02-23 00:00:00,11684.0
-2013-02-21 01:00:00,11566.0
-2013-02-21 02:00:00,11102.0
-2013-02-21 03:00:00,10831.0
-2013-02-21 04:00:00,10661.0
-2013-02-21 05:00:00,10622.0
-2013-02-21 06:00:00,10823.0
-2013-02-21 07:00:00,11523.0
-2013-02-21 08:00:00,12655.0
-2013-02-21 09:00:00,13156.0
-2013-02-21 10:00:00,13229.0
-2013-02-21 11:00:00,13312.0
-2013-02-21 12:00:00,13362.0
-2013-02-21 13:00:00,13326.0
-2013-02-21 14:00:00,13329.0
-2013-02-21 15:00:00,13345.0
-2013-02-21 16:00:00,13317.0
-2013-02-21 17:00:00,13302.0
-2013-02-21 18:00:00,13509.0
-2013-02-21 19:00:00,13956.0
-2013-02-21 20:00:00,14129.0
-2013-02-21 21:00:00,13924.0
-2013-02-21 22:00:00,13621.0
-2013-02-21 23:00:00,13095.0
-2013-02-22 00:00:00,12220.0
-2013-02-20 01:00:00,12086.0
-2013-02-20 02:00:00,11642.0
-2013-02-20 03:00:00,11407.0
-2013-02-20 04:00:00,11283.0
-2013-02-20 05:00:00,11251.0
-2013-02-20 06:00:00,11496.0
-2013-02-20 07:00:00,12265.0
-2013-02-20 08:00:00,13286.0
-2013-02-20 09:00:00,13596.0
-2013-02-20 10:00:00,13567.0
-2013-02-20 11:00:00,13528.0
-2013-02-20 12:00:00,13478.0
-2013-02-20 13:00:00,13343.0
-2013-02-20 14:00:00,13191.0
-2013-02-20 15:00:00,13090.0
-2013-02-20 16:00:00,12866.0
-2013-02-20 17:00:00,12786.0
-2013-02-20 18:00:00,12955.0
-2013-02-20 19:00:00,13614.0
-2013-02-20 20:00:00,14077.0
-2013-02-20 21:00:00,13942.0
-2013-02-20 22:00:00,13651.0
-2013-02-20 23:00:00,13159.0
-2013-02-21 00:00:00,12330.0
-2013-02-19 01:00:00,10578.0
-2013-02-19 02:00:00,10238.0
-2013-02-19 03:00:00,10124.0
-2013-02-19 04:00:00,10109.0
-2013-02-19 05:00:00,10243.0
-2013-02-19 06:00:00,10617.0
-2013-02-19 07:00:00,11447.0
-2013-02-19 08:00:00,12740.0
-2013-02-19 09:00:00,13295.0
-2013-02-19 10:00:00,13519.0
-2013-02-19 11:00:00,13644.0
-2013-02-19 12:00:00,13710.0
-2013-02-19 13:00:00,13782.0
-2013-02-19 14:00:00,13754.0
-2013-02-19 15:00:00,13830.0
-2013-02-19 16:00:00,13806.0
-2013-02-19 17:00:00,13788.0
-2013-02-19 18:00:00,13945.0
-2013-02-19 19:00:00,14472.0
-2013-02-19 20:00:00,14716.0
-2013-02-19 21:00:00,14549.0
-2013-02-19 22:00:00,14260.0
-2013-02-19 23:00:00,13723.0
-2013-02-20 00:00:00,12859.0
-2013-02-18 01:00:00,10620.0
-2013-02-18 02:00:00,10221.0
-2013-02-18 03:00:00,10052.0
-2013-02-18 04:00:00,9903.0
-2013-02-18 05:00:00,9955.0
-2013-02-18 06:00:00,10161.0
-2013-02-18 07:00:00,10867.0
-2013-02-18 08:00:00,11726.0
-2013-02-18 09:00:00,12026.0
-2013-02-18 10:00:00,12129.0
-2013-02-18 11:00:00,12217.0
-2013-02-18 12:00:00,12201.0
-2013-02-18 13:00:00,12054.0
-2013-02-18 14:00:00,11955.0
-2013-02-18 15:00:00,12108.0
-2013-02-18 16:00:00,12103.0
-2013-02-18 17:00:00,12110.0
-2013-02-18 18:00:00,12443.0
-2013-02-18 19:00:00,12920.0
-2013-02-18 20:00:00,12890.0
-2013-02-18 21:00:00,12758.0
-2013-02-18 22:00:00,12383.0
-2013-02-18 23:00:00,11842.0
-2013-02-19 00:00:00,11118.0
-2013-02-17 01:00:00,11221.0
-2013-02-17 02:00:00,10789.0
-2013-02-17 03:00:00,10563.0
-2013-02-17 04:00:00,10392.0
-2013-02-17 05:00:00,10387.0
-2013-02-17 06:00:00,10384.0
-2013-02-17 07:00:00,10559.0
-2013-02-17 08:00:00,10740.0
-2013-02-17 09:00:00,10691.0
-2013-02-17 10:00:00,10768.0
-2013-02-17 11:00:00,10785.0
-2013-02-17 12:00:00,10831.0
-2013-02-17 13:00:00,10798.0
-2013-02-17 14:00:00,10696.0
-2013-02-17 15:00:00,10563.0
-2013-02-17 16:00:00,10420.0
-2013-02-17 17:00:00,10455.0
-2013-02-17 18:00:00,10749.0
-2013-02-17 19:00:00,11600.0
-2013-02-17 20:00:00,12174.0
-2013-02-17 21:00:00,12189.0
-2013-02-17 22:00:00,11997.0
-2013-02-17 23:00:00,11710.0
-2013-02-18 00:00:00,11167.0
-2013-02-16 01:00:00,11105.0
-2013-02-16 02:00:00,10672.0
-2013-02-16 03:00:00,10416.0
-2013-02-16 04:00:00,10267.0
-2013-02-16 05:00:00,10257.0
-2013-02-16 06:00:00,10326.0
-2013-02-16 07:00:00,10653.0
-2013-02-16 08:00:00,11041.0
-2013-02-16 09:00:00,11139.0
-2013-02-16 10:00:00,11367.0
-2013-02-16 11:00:00,11547.0
-2013-02-16 12:00:00,11793.0
-2013-02-16 13:00:00,11862.0
-2013-02-16 14:00:00,11776.0
-2013-02-16 15:00:00,11627.0
-2013-02-16 16:00:00,11559.0
-2013-02-16 17:00:00,11531.0
-2013-02-16 18:00:00,11757.0
-2013-02-16 19:00:00,12310.0
-2013-02-16 20:00:00,12666.0
-2013-02-16 21:00:00,12586.0
-2013-02-16 22:00:00,12477.0
-2013-02-16 23:00:00,12224.0
-2013-02-17 00:00:00,11696.0
-2013-02-15 01:00:00,10677.0
-2013-02-15 02:00:00,10170.0
-2013-02-15 03:00:00,9879.0
-2013-02-15 04:00:00,9750.0
-2013-02-15 05:00:00,9740.0
-2013-02-15 06:00:00,10074.0
-2013-02-15 07:00:00,10822.0
-2013-02-15 08:00:00,11964.0
-2013-02-15 09:00:00,12436.0
-2013-02-15 10:00:00,12520.0
-2013-02-15 11:00:00,12497.0
-2013-02-15 12:00:00,12467.0
-2013-02-15 13:00:00,12360.0
-2013-02-15 14:00:00,12213.0
-2013-02-15 15:00:00,12157.0
-2013-02-15 16:00:00,11985.0
-2013-02-15 17:00:00,11925.0
-2013-02-15 18:00:00,12135.0
-2013-02-15 19:00:00,12802.0
-2013-02-15 20:00:00,13095.0
-2013-02-15 21:00:00,12930.0
-2013-02-15 22:00:00,12666.0
-2013-02-15 23:00:00,12331.0
-2013-02-16 00:00:00,11690.0
-2013-02-14 01:00:00,10457.0
-2013-02-14 02:00:00,9943.0
-2013-02-14 03:00:00,9682.0
-2013-02-14 04:00:00,9514.0
-2013-02-14 05:00:00,9524.0
-2013-02-14 06:00:00,9772.0
-2013-02-14 07:00:00,10529.0
-2013-02-14 08:00:00,11691.0
-2013-02-14 09:00:00,12081.0
-2013-02-14 10:00:00,12232.0
-2013-02-14 11:00:00,12435.0
-2013-02-14 12:00:00,12566.0
-2013-02-14 13:00:00,12579.0
-2013-02-14 14:00:00,12577.0
-2013-02-14 15:00:00,12582.0
-2013-02-14 16:00:00,12453.0
-2013-02-14 17:00:00,12390.0
-2013-02-14 18:00:00,12530.0
-2013-02-14 19:00:00,13074.0
-2013-02-14 20:00:00,13218.0
-2013-02-14 21:00:00,12988.0
-2013-02-14 22:00:00,12609.0
-2013-02-14 23:00:00,12136.0
-2013-02-15 00:00:00,11387.0
-2013-02-13 01:00:00,11046.0
-2013-02-13 02:00:00,10571.0
-2013-02-13 03:00:00,10276.0
-2013-02-13 04:00:00,10129.0
-2013-02-13 05:00:00,10142.0
-2013-02-13 06:00:00,10385.0
-2013-02-13 07:00:00,11143.0
-2013-02-13 08:00:00,12296.0
-2013-02-13 09:00:00,12581.0
-2013-02-13 10:00:00,12539.0
-2013-02-13 11:00:00,12435.0
-2013-02-13 12:00:00,12367.0
-2013-02-13 13:00:00,12208.0
-2013-02-13 14:00:00,12065.0
-2013-02-13 15:00:00,11979.0
-2013-02-13 16:00:00,11824.0
-2013-02-13 17:00:00,11748.0
-2013-02-13 18:00:00,11895.0
-2013-02-13 19:00:00,12523.0
-2013-02-13 20:00:00,12932.0
-2013-02-13 21:00:00,12795.0
-2013-02-13 22:00:00,12542.0
-2013-02-13 23:00:00,12051.0
-2013-02-14 00:00:00,11234.0
-2013-02-12 01:00:00,10864.0
-2013-02-12 02:00:00,10391.0
-2013-02-12 03:00:00,10123.0
-2013-02-12 04:00:00,10009.0
-2013-02-12 05:00:00,10049.0
-2013-02-12 06:00:00,10337.0
-2013-02-12 07:00:00,11083.0
-2013-02-12 08:00:00,12204.0
-2013-02-12 09:00:00,12675.0
-2013-02-12 10:00:00,12855.0
-2013-02-12 11:00:00,12954.0
-2013-02-12 12:00:00,13024.0
-2013-02-12 13:00:00,13015.0
-2013-02-12 14:00:00,12947.0
-2013-02-12 15:00:00,12948.0
-2013-02-12 16:00:00,12840.0
-2013-02-12 17:00:00,12741.0
-2013-02-12 18:00:00,12823.0
-2013-02-12 19:00:00,13393.0
-2013-02-12 20:00:00,13584.0
-2013-02-12 21:00:00,13438.0
-2013-02-12 22:00:00,13148.0
-2013-02-12 23:00:00,12653.0
-2013-02-13 00:00:00,11829.0
-2013-02-11 01:00:00,9747.0
-2013-02-11 02:00:00,9383.0
-2013-02-11 03:00:00,9264.0
-2013-02-11 04:00:00,9268.0
-2013-02-11 05:00:00,9402.0
-2013-02-11 06:00:00,9740.0
-2013-02-11 07:00:00,10671.0
-2013-02-11 08:00:00,11918.0
-2013-02-11 09:00:00,12622.0
-2013-02-11 10:00:00,12845.0
-2013-02-11 11:00:00,12917.0
-2013-02-11 12:00:00,13015.0
-2013-02-11 13:00:00,13051.0
-2013-02-11 14:00:00,13053.0
-2013-02-11 15:00:00,13099.0
-2013-02-11 16:00:00,12976.0
-2013-02-11 17:00:00,12937.0
-2013-02-11 18:00:00,13122.0
-2013-02-11 19:00:00,13648.0
-2013-02-11 20:00:00,13645.0
-2013-02-11 21:00:00,13419.0
-2013-02-11 22:00:00,13067.0
-2013-02-11 23:00:00,12469.0
-2013-02-12 00:00:00,11620.0
-2013-02-10 01:00:00,10410.0
-2013-02-10 02:00:00,9902.0
-2013-02-10 03:00:00,9619.0
-2013-02-10 04:00:00,9401.0
-2013-02-10 05:00:00,9368.0
-2013-02-10 06:00:00,9297.0
-2013-02-10 07:00:00,9434.0
-2013-02-10 08:00:00,9698.0
-2013-02-10 09:00:00,9671.0
-2013-02-10 10:00:00,10115.0
-2013-02-10 11:00:00,10441.0
-2013-02-10 12:00:00,10737.0
-2013-02-10 13:00:00,10844.0
-2013-02-10 14:00:00,10858.0
-2013-02-10 15:00:00,10797.0
-2013-02-10 16:00:00,10692.0
-2013-02-10 17:00:00,10806.0
-2013-02-10 18:00:00,11166.0
-2013-02-10 19:00:00,11671.0
-2013-02-10 20:00:00,11752.0
-2013-02-10 21:00:00,11578.0
-2013-02-10 22:00:00,11284.0
-2013-02-10 23:00:00,10884.0
-2013-02-11 00:00:00,10267.0
-2013-02-09 01:00:00,11084.0
-2013-02-09 02:00:00,10556.0
-2013-02-09 03:00:00,10234.0
-2013-02-09 04:00:00,10044.0
-2013-02-09 05:00:00,9951.0
-2013-02-09 06:00:00,10010.0
-2013-02-09 07:00:00,10263.0
-2013-02-09 08:00:00,10759.0
-2013-02-09 09:00:00,10927.0
-2013-02-09 10:00:00,11308.0
-2013-02-09 11:00:00,11510.0
-2013-02-09 12:00:00,11537.0
-2013-02-09 13:00:00,11416.0
-2013-02-09 14:00:00,11183.0
-2013-02-09 15:00:00,10945.0
-2013-02-09 16:00:00,10775.0
-2013-02-09 17:00:00,10666.0
-2013-02-09 18:00:00,10865.0
-2013-02-09 19:00:00,11696.0
-2013-02-09 20:00:00,12060.0
-2013-02-09 21:00:00,11961.0
-2013-02-09 22:00:00,11743.0
-2013-02-09 23:00:00,11497.0
-2013-02-10 00:00:00,10956.0
-2013-02-08 01:00:00,11015.0
-2013-02-08 02:00:00,10524.0
-2013-02-08 03:00:00,10290.0
-2013-02-08 04:00:00,10211.0
-2013-02-08 05:00:00,10245.0
-2013-02-08 06:00:00,10573.0
-2013-02-08 07:00:00,11246.0
-2013-02-08 08:00:00,12397.0
-2013-02-08 09:00:00,12853.0
-2013-02-08 10:00:00,13043.0
-2013-02-08 11:00:00,13107.0
-2013-02-08 12:00:00,13127.0
-2013-02-08 13:00:00,12989.0
-2013-02-08 14:00:00,12878.0
-2013-02-08 15:00:00,12781.0
-2013-02-08 16:00:00,12685.0
-2013-02-08 17:00:00,12593.0
-2013-02-08 18:00:00,12751.0
-2013-02-08 19:00:00,13390.0
-2013-02-08 20:00:00,13492.0
-2013-02-08 21:00:00,13229.0
-2013-02-08 22:00:00,12905.0
-2013-02-08 23:00:00,12499.0
-2013-02-09 00:00:00,11755.0
-2013-02-07 01:00:00,10846.0
-2013-02-07 02:00:00,10293.0
-2013-02-07 03:00:00,10022.0
-2013-02-07 04:00:00,9814.0
-2013-02-07 05:00:00,9835.0
-2013-02-07 06:00:00,10152.0
-2013-02-07 07:00:00,10880.0
-2013-02-07 08:00:00,12073.0
-2013-02-07 09:00:00,12640.0
-2013-02-07 10:00:00,12687.0
-2013-02-07 11:00:00,12848.0
-2013-02-07 12:00:00,12956.0
-2013-02-07 13:00:00,12994.0
-2013-02-07 14:00:00,12967.0
-2013-02-07 15:00:00,12963.0
-2013-02-07 16:00:00,12938.0
-2013-02-07 17:00:00,12912.0
-2013-02-07 18:00:00,13159.0
-2013-02-07 19:00:00,13614.0
-2013-02-07 20:00:00,13639.0
-2013-02-07 21:00:00,13441.0
-2013-02-07 22:00:00,13082.0
-2013-02-07 23:00:00,12548.0
-2013-02-08 00:00:00,11718.0
-2013-02-06 01:00:00,11113.0
-2013-02-06 02:00:00,10615.0
-2013-02-06 03:00:00,10342.0
-2013-02-06 04:00:00,10243.0
-2013-02-06 05:00:00,10283.0
-2013-02-06 06:00:00,10584.0
-2013-02-06 07:00:00,11375.0
-2013-02-06 08:00:00,12545.0
-2013-02-06 09:00:00,12899.0
-2013-02-06 10:00:00,12902.0
-2013-02-06 11:00:00,12787.0
-2013-02-06 12:00:00,12728.0
-2013-02-06 13:00:00,12592.0
-2013-02-06 14:00:00,12436.0
-2013-02-06 15:00:00,12419.0
-2013-02-06 16:00:00,12325.0
-2013-02-06 17:00:00,12309.0
-2013-02-06 18:00:00,12571.0
-2013-02-06 19:00:00,13273.0
-2013-02-06 20:00:00,13386.0
-2013-02-06 21:00:00,13224.0
-2013-02-06 22:00:00,12935.0
-2013-02-06 23:00:00,12405.0
-2013-02-07 00:00:00,11604.0
-2013-02-05 01:00:00,11494.0
-2013-02-05 02:00:00,11039.0
-2013-02-05 03:00:00,10814.0
-2013-02-05 04:00:00,10681.0
-2013-02-05 05:00:00,10689.0
-2013-02-05 06:00:00,10932.0
-2013-02-05 07:00:00,11623.0
-2013-02-05 08:00:00,12810.0
-2013-02-05 09:00:00,13196.0
-2013-02-05 10:00:00,13353.0
-2013-02-05 11:00:00,13308.0
-2013-02-05 12:00:00,13337.0
-2013-02-05 13:00:00,13287.0
-2013-02-05 14:00:00,13254.0
-2013-02-05 15:00:00,13307.0
-2013-02-05 16:00:00,13157.0
-2013-02-05 17:00:00,13028.0
-2013-02-05 18:00:00,13237.0
-2013-02-05 19:00:00,13868.0
-2013-02-05 20:00:00,13874.0
-2013-02-05 21:00:00,13638.0
-2013-02-05 22:00:00,13272.0
-2013-02-05 23:00:00,12711.0
-2013-02-06 00:00:00,11875.0
-2013-02-04 01:00:00,11078.0
-2013-02-04 02:00:00,10665.0
-2013-02-04 03:00:00,10412.0
-2013-02-04 04:00:00,10318.0
-2013-02-04 05:00:00,10356.0
-2013-02-04 06:00:00,10640.0
-2013-02-04 07:00:00,11294.0
-2013-02-04 08:00:00,12454.0
-2013-02-04 09:00:00,12941.0
-2013-02-04 10:00:00,13096.0
-2013-02-04 11:00:00,13238.0
-2013-02-04 12:00:00,13301.0
-2013-02-04 13:00:00,13243.0
-2013-02-04 14:00:00,13164.0
-2013-02-04 15:00:00,13173.0
-2013-02-04 16:00:00,13123.0
-2013-02-04 17:00:00,13056.0
-2013-02-04 18:00:00,13240.0
-2013-02-04 19:00:00,13919.0
-2013-02-04 20:00:00,14030.0
-2013-02-04 21:00:00,13830.0
-2013-02-04 22:00:00,13552.0
-2013-02-04 23:00:00,13045.0
-2013-02-05 00:00:00,12215.0
-2013-02-03 01:00:00,11609.0
-2013-02-03 02:00:00,11151.0
-2013-02-03 03:00:00,10777.0
-2013-02-03 04:00:00,10664.0
-2013-02-03 05:00:00,10582.0
-2013-02-03 06:00:00,10624.0
-2013-02-03 07:00:00,10716.0
-2013-02-03 08:00:00,11034.0
-2013-02-03 09:00:00,11067.0
-2013-02-03 10:00:00,11314.0
-2013-02-03 11:00:00,11558.0
-2013-02-03 12:00:00,11637.0
-2013-02-03 13:00:00,11518.0
-2013-02-03 14:00:00,11441.0
-2013-02-03 15:00:00,11352.0
-2013-02-03 16:00:00,11329.0
-2013-02-03 17:00:00,11412.0
-2013-02-03 18:00:00,11719.0
-2013-02-03 19:00:00,12535.0
-2013-02-03 20:00:00,12674.0
-2013-02-03 21:00:00,12545.0
-2013-02-03 22:00:00,12334.0
-2013-02-03 23:00:00,12050.0
-2013-02-04 00:00:00,11582.0
-2013-02-02 01:00:00,12204.0
-2013-02-02 02:00:00,11675.0
-2013-02-02 03:00:00,11299.0
-2013-02-02 04:00:00,11013.0
-2013-02-02 05:00:00,10837.0
-2013-02-02 06:00:00,10865.0
-2013-02-02 07:00:00,11061.0
-2013-02-02 08:00:00,11441.0
-2013-02-02 09:00:00,11675.0
-2013-02-02 10:00:00,11928.0
-2013-02-02 11:00:00,12203.0
-2013-02-02 12:00:00,12355.0
-2013-02-02 13:00:00,12419.0
-2013-02-02 14:00:00,12199.0
-2013-02-02 15:00:00,12074.0
-2013-02-02 16:00:00,11936.0
-2013-02-02 17:00:00,11967.0
-2013-02-02 18:00:00,12227.0
-2013-02-02 19:00:00,13065.0
-2013-02-02 20:00:00,13284.0
-2013-02-02 21:00:00,13173.0
-2013-02-02 22:00:00,13007.0
-2013-02-02 23:00:00,12681.0
-2013-02-03 00:00:00,12171.0
-2013-02-01 01:00:00,12514.0
-2013-02-01 02:00:00,12084.0
-2013-02-01 03:00:00,11823.0
-2013-02-01 04:00:00,11695.0
-2013-02-01 05:00:00,11713.0
-2013-02-01 06:00:00,11939.0
-2013-02-01 07:00:00,12596.0
-2013-02-01 08:00:00,13693.0
-2013-02-01 09:00:00,14098.0
-2013-02-01 10:00:00,14109.0
-2013-02-01 11:00:00,14158.0
-2013-02-01 12:00:00,14176.0
-2013-02-01 13:00:00,14053.0
-2013-02-01 14:00:00,13944.0
-2013-02-01 15:00:00,13841.0
-2013-02-01 16:00:00,13659.0
-2013-02-01 17:00:00,13525.0
-2013-02-01 18:00:00,13709.0
-2013-02-01 19:00:00,14555.0
-2013-02-01 20:00:00,14689.0
-2013-02-01 21:00:00,14444.0
-2013-02-01 22:00:00,14110.0
-2013-02-01 23:00:00,13692.0
-2013-02-02 00:00:00,12926.0
-2013-01-31 01:00:00,11346.0
-2013-01-31 02:00:00,10916.0
-2013-01-31 03:00:00,10630.0
-2013-01-31 04:00:00,10533.0
-2013-01-31 05:00:00,10590.0
-2013-01-31 06:00:00,10882.0
-2013-01-31 07:00:00,11608.0
-2013-01-31 08:00:00,12878.0
-2013-01-31 09:00:00,13421.0
-2013-01-31 10:00:00,13562.0
-2013-01-31 11:00:00,13615.0
-2013-01-31 12:00:00,13639.0
-2013-01-31 13:00:00,13641.0
-2013-01-31 14:00:00,13652.0
-2013-01-31 15:00:00,13746.0
-2013-01-31 16:00:00,13698.0
-2013-01-31 17:00:00,13732.0
-2013-01-31 18:00:00,14033.0
-2013-01-31 19:00:00,14753.0
-2013-01-31 20:00:00,14918.0
-2013-01-31 21:00:00,14748.0
-2013-01-31 22:00:00,14537.0
-2013-01-31 23:00:00,14065.0
-2013-02-01 00:00:00,13227.0
-2013-01-30 01:00:00,9826.0
-2013-01-30 02:00:00,9341.0
-2013-01-30 03:00:00,9084.0
-2013-01-30 04:00:00,8946.0
-2013-01-30 05:00:00,8956.0
-2013-01-30 06:00:00,9227.0
-2013-01-30 07:00:00,10001.0
-2013-01-30 08:00:00,11303.0
-2013-01-30 09:00:00,12098.0
-2013-01-30 10:00:00,12238.0
-2013-01-30 11:00:00,12376.0
-2013-01-30 12:00:00,12544.0
-2013-01-30 13:00:00,12534.0
-2013-01-30 14:00:00,12457.0
-2013-01-30 15:00:00,12571.0
-2013-01-30 16:00:00,12600.0
-2013-01-30 17:00:00,12705.0
-2013-01-30 18:00:00,13090.0
-2013-01-30 19:00:00,13652.0
-2013-01-30 20:00:00,13599.0
-2013-01-30 21:00:00,13429.0
-2013-01-30 22:00:00,13246.0
-2013-01-30 23:00:00,12779.0
-2013-01-31 00:00:00,12024.0
-2013-01-29 01:00:00,10329.0
-2013-01-29 02:00:00,9785.0
-2013-01-29 03:00:00,9414.0
-2013-01-29 04:00:00,9179.0
-2013-01-29 05:00:00,9048.0
-2013-01-29 06:00:00,9190.0
-2013-01-29 07:00:00,9816.0
-2013-01-29 08:00:00,11015.0
-2013-01-29 09:00:00,11686.0
-2013-01-29 10:00:00,11749.0
-2013-01-29 11:00:00,11796.0
-2013-01-29 12:00:00,11951.0
-2013-01-29 13:00:00,11931.0
-2013-01-29 14:00:00,11939.0
-2013-01-29 15:00:00,11883.0
-2013-01-29 16:00:00,11929.0
-2013-01-29 17:00:00,11932.0
-2013-01-29 18:00:00,12292.0
-2013-01-29 19:00:00,12691.0
-2013-01-29 20:00:00,12559.0
-2013-01-29 21:00:00,12257.0
-2013-01-29 22:00:00,11911.0
-2013-01-29 23:00:00,11370.0
-2013-01-30 00:00:00,10604.0
-2013-01-28 01:00:00,10369.0
-2013-01-28 02:00:00,9926.0
-2013-01-28 03:00:00,9581.0
-2013-01-28 04:00:00,9490.0
-2013-01-28 05:00:00,9450.0
-2013-01-28 06:00:00,9712.0
-2013-01-28 07:00:00,10351.0
-2013-01-28 08:00:00,11551.0
-2013-01-28 09:00:00,12167.0
-2013-01-28 10:00:00,12211.0
-2013-01-28 11:00:00,12260.0
-2013-01-28 12:00:00,12253.0
-2013-01-28 13:00:00,12178.0
-2013-01-28 14:00:00,12050.0
-2013-01-28 15:00:00,11990.0
-2013-01-28 16:00:00,11785.0
-2013-01-28 17:00:00,11704.0
-2013-01-28 18:00:00,12012.0
-2013-01-28 19:00:00,12830.0
-2013-01-28 20:00:00,12828.0
-2013-01-28 21:00:00,12651.0
-2013-01-28 22:00:00,12356.0
-2013-01-28 23:00:00,11834.0
-2013-01-29 00:00:00,11084.0
-2013-01-27 01:00:00,10753.0
-2013-01-27 02:00:00,10331.0
-2013-01-27 03:00:00,10081.0
-2013-01-27 04:00:00,9880.0
-2013-01-27 05:00:00,9852.0
-2013-01-27 06:00:00,9863.0
-2013-01-27 07:00:00,10028.0
-2013-01-27 08:00:00,10250.0
-2013-01-27 09:00:00,10364.0
-2013-01-27 10:00:00,10611.0
-2013-01-27 11:00:00,10927.0
-2013-01-27 12:00:00,11065.0
-2013-01-27 13:00:00,11203.0
-2013-01-27 14:00:00,11212.0
-2013-01-27 15:00:00,11322.0
-2013-01-27 16:00:00,11352.0
-2013-01-27 17:00:00,11614.0
-2013-01-27 18:00:00,12143.0
-2013-01-27 19:00:00,12706.0
-2013-01-27 20:00:00,12613.0
-2013-01-27 21:00:00,12443.0
-2013-01-27 22:00:00,12079.0
-2013-01-27 23:00:00,11634.0
-2013-01-28 00:00:00,10950.0
-2013-01-26 01:00:00,11497.0
-2013-01-26 02:00:00,11026.0
-2013-01-26 03:00:00,10731.0
-2013-01-26 04:00:00,10568.0
-2013-01-26 05:00:00,10551.0
-2013-01-26 06:00:00,10661.0
-2013-01-26 07:00:00,10978.0
-2013-01-26 08:00:00,11478.0
-2013-01-26 09:00:00,11684.0
-2013-01-26 10:00:00,11887.0
-2013-01-26 11:00:00,11952.0
-2013-01-26 12:00:00,11896.0
-2013-01-26 13:00:00,11742.0
-2013-01-26 14:00:00,11538.0
-2013-01-26 15:00:00,11270.0
-2013-01-26 16:00:00,11016.0
-2013-01-26 17:00:00,10997.0
-2013-01-26 18:00:00,11306.0
-2013-01-26 19:00:00,12327.0
-2013-01-26 20:00:00,12531.0
-2013-01-26 21:00:00,12378.0
-2013-01-26 22:00:00,12183.0
-2013-01-26 23:00:00,11828.0
-2013-01-27 00:00:00,11313.0
-2013-01-25 01:00:00,11850.0
-2013-01-25 02:00:00,11352.0
-2013-01-25 03:00:00,11065.0
-2013-01-25 04:00:00,10877.0
-2013-01-25 05:00:00,10842.0
-2013-01-25 06:00:00,11102.0
-2013-01-25 07:00:00,11767.0
-2013-01-25 08:00:00,12848.0
-2013-01-25 09:00:00,13324.0
-2013-01-25 10:00:00,13411.0
-2013-01-25 11:00:00,13591.0
-2013-01-25 12:00:00,13661.0
-2013-01-25 13:00:00,13577.0
-2013-01-25 14:00:00,13473.0
-2013-01-25 15:00:00,13425.0
-2013-01-25 16:00:00,13313.0
-2013-01-25 17:00:00,13213.0
-2013-01-25 18:00:00,13399.0
-2013-01-25 19:00:00,14005.0
-2013-01-25 20:00:00,13892.0
-2013-01-25 21:00:00,13699.0
-2013-01-25 22:00:00,13333.0
-2013-01-25 23:00:00,12933.0
-2013-01-26 00:00:00,12175.0
-2013-01-24 01:00:00,12231.0
-2013-01-24 02:00:00,11758.0
-2013-01-24 03:00:00,11513.0
-2013-01-24 04:00:00,11423.0
-2013-01-24 05:00:00,11436.0
-2013-01-24 06:00:00,11691.0
-2013-01-24 07:00:00,12382.0
-2013-01-24 08:00:00,13548.0
-2013-01-24 09:00:00,14077.0
-2013-01-24 10:00:00,14092.0
-2013-01-24 11:00:00,14104.0
-2013-01-24 12:00:00,14057.0
-2013-01-24 13:00:00,13934.0
-2013-01-24 14:00:00,13764.0
-2013-01-24 15:00:00,13637.0
-2013-01-24 16:00:00,13509.0
-2013-01-24 17:00:00,13482.0
-2013-01-24 18:00:00,13933.0
-2013-01-24 19:00:00,14623.0
-2013-01-24 20:00:00,14509.0
-2013-01-24 21:00:00,14337.0
-2013-01-24 22:00:00,14021.0
-2013-01-24 23:00:00,13508.0
-2013-01-25 00:00:00,12609.0
-2013-01-23 01:00:00,12327.0
-2013-01-23 02:00:00,11875.0
-2013-01-23 03:00:00,11572.0
-2013-01-23 04:00:00,11409.0
-2013-01-23 05:00:00,11399.0
-2013-01-23 06:00:00,11592.0
-2013-01-23 07:00:00,12200.0
-2013-01-23 08:00:00,13307.0
-2013-01-23 09:00:00,13933.0
-2013-01-23 10:00:00,13999.0
-2013-01-23 11:00:00,14074.0
-2013-01-23 12:00:00,14194.0
-2013-01-23 13:00:00,14138.0
-2013-01-23 14:00:00,14071.0
-2013-01-23 15:00:00,14001.0
-2013-01-23 16:00:00,13884.0
-2013-01-23 17:00:00,13844.0
-2013-01-23 18:00:00,14121.0
-2013-01-23 19:00:00,14777.0
-2013-01-23 20:00:00,14683.0
-2013-01-23 21:00:00,14543.0
-2013-01-23 22:00:00,14239.0
-2013-01-23 23:00:00,13800.0
-2013-01-24 00:00:00,12943.0
-2013-01-22 01:00:00,12472.0
-2013-01-22 02:00:00,11983.0
-2013-01-22 03:00:00,11744.0
-2013-01-22 04:00:00,11615.0
-2013-01-22 05:00:00,11629.0
-2013-01-22 06:00:00,11851.0
-2013-01-22 07:00:00,12557.0
-2013-01-22 08:00:00,13741.0
-2013-01-22 09:00:00,14229.0
-2013-01-22 10:00:00,14206.0
-2013-01-22 11:00:00,14274.0
-2013-01-22 12:00:00,14259.0
-2013-01-22 13:00:00,14169.0
-2013-01-22 14:00:00,14085.0
-2013-01-22 15:00:00,13951.0
-2013-01-22 16:00:00,13879.0
-2013-01-22 17:00:00,13901.0
-2013-01-22 18:00:00,14401.0
-2013-01-22 19:00:00,15139.0
-2013-01-22 20:00:00,15052.0
-2013-01-22 21:00:00,14849.0
-2013-01-22 22:00:00,14534.0
-2013-01-22 23:00:00,13977.0
-2013-01-23 00:00:00,13116.0
-2013-01-21 01:00:00,11200.0
-2013-01-21 02:00:00,10827.0
-2013-01-21 03:00:00,10670.0
-2013-01-21 04:00:00,10608.0
-2013-01-21 05:00:00,10673.0
-2013-01-21 06:00:00,10954.0
-2013-01-21 07:00:00,11581.0
-2013-01-21 08:00:00,12575.0
-2013-01-21 09:00:00,13122.0
-2013-01-21 10:00:00,13352.0
-2013-01-21 11:00:00,13544.0
-2013-01-21 12:00:00,13739.0
-2013-01-21 13:00:00,13776.0
-2013-01-21 14:00:00,13773.0
-2013-01-21 15:00:00,13697.0
-2013-01-21 16:00:00,13582.0
-2013-01-21 17:00:00,13558.0
-2013-01-21 18:00:00,13975.0
-2013-01-21 19:00:00,14914.0
-2013-01-21 20:00:00,14950.0
-2013-01-21 21:00:00,14789.0
-2013-01-21 22:00:00,14518.0
-2013-01-21 23:00:00,14025.0
-2013-01-22 00:00:00,13183.0
-2013-01-20 01:00:00,10358.0
-2013-01-20 02:00:00,10024.0
-2013-01-20 03:00:00,9926.0
-2013-01-20 04:00:00,9820.0
-2013-01-20 05:00:00,9854.0
-2013-01-20 06:00:00,9932.0
-2013-01-20 07:00:00,10148.0
-2013-01-20 08:00:00,10419.0
-2013-01-20 09:00:00,10539.0
-2013-01-20 10:00:00,10727.0
-2013-01-20 11:00:00,10876.0
-2013-01-20 12:00:00,10962.0
-2013-01-20 13:00:00,11023.0
-2013-01-20 14:00:00,11071.0
-2013-01-20 15:00:00,11054.0
-2013-01-20 16:00:00,11117.0
-2013-01-20 17:00:00,11217.0
-2013-01-20 18:00:00,11751.0
-2013-01-20 19:00:00,12641.0
-2013-01-20 20:00:00,12756.0
-2013-01-20 21:00:00,12658.0
-2013-01-20 22:00:00,12510.0
-2013-01-20 23:00:00,12207.0
-2013-01-21 00:00:00,11689.0
-2013-01-19 01:00:00,10622.0
-2013-01-19 02:00:00,10049.0
-2013-01-19 03:00:00,9705.0
-2013-01-19 04:00:00,9475.0
-2013-01-19 05:00:00,9415.0
-2013-01-19 06:00:00,9458.0
-2013-01-19 07:00:00,9743.0
-2013-01-19 08:00:00,10194.0
-2013-01-19 09:00:00,10513.0
-2013-01-19 10:00:00,10782.0
-2013-01-19 11:00:00,11063.0
-2013-01-19 12:00:00,11077.0
-2013-01-19 13:00:00,10896.0
-2013-01-19 14:00:00,10804.0
-2013-01-19 15:00:00,10715.0
-2013-01-19 16:00:00,10512.0
-2013-01-19 17:00:00,10381.0
-2013-01-19 18:00:00,10643.0
-2013-01-19 19:00:00,11509.0
-2013-01-19 20:00:00,11545.0
-2013-01-19 21:00:00,11452.0
-2013-01-19 22:00:00,11317.0
-2013-01-19 23:00:00,11099.0
-2013-01-20 00:00:00,10713.0
-2013-01-18 01:00:00,11199.0
-2013-01-18 02:00:00,10729.0
-2013-01-18 03:00:00,10444.0
-2013-01-18 04:00:00,10323.0
-2013-01-18 05:00:00,10297.0
-2013-01-18 06:00:00,10538.0
-2013-01-18 07:00:00,11254.0
-2013-01-18 08:00:00,12424.0
-2013-01-18 09:00:00,13064.0
-2013-01-18 10:00:00,13140.0
-2013-01-18 11:00:00,13165.0
-2013-01-18 12:00:00,13153.0
-2013-01-18 13:00:00,12952.0
-2013-01-18 14:00:00,12652.0
-2013-01-18 15:00:00,12498.0
-2013-01-18 16:00:00,12260.0
-2013-01-18 17:00:00,12162.0
-2013-01-18 18:00:00,12426.0
-2013-01-18 19:00:00,13240.0
-2013-01-18 20:00:00,13159.0
-2013-01-18 21:00:00,12889.0
-2013-01-18 22:00:00,12536.0
-2013-01-18 23:00:00,12063.0
-2013-01-19 00:00:00,11318.0
-2013-01-17 01:00:00,10738.0
-2013-01-17 02:00:00,10203.0
-2013-01-17 03:00:00,9910.0
-2013-01-17 04:00:00,9783.0
-2013-01-17 05:00:00,9804.0
-2013-01-17 06:00:00,10096.0
-2013-01-17 07:00:00,10910.0
-2013-01-17 08:00:00,12213.0
-2013-01-17 09:00:00,12809.0
-2013-01-17 10:00:00,12756.0
-2013-01-17 11:00:00,12742.0
-2013-01-17 12:00:00,12762.0
-2013-01-17 13:00:00,12709.0
-2013-01-17 14:00:00,12617.0
-2013-01-17 15:00:00,12571.0
-2013-01-17 16:00:00,12419.0
-2013-01-17 17:00:00,12414.0
-2013-01-17 18:00:00,12816.0
-2013-01-17 19:00:00,13724.0
-2013-01-17 20:00:00,13670.0
-2013-01-17 21:00:00,13486.0
-2013-01-17 22:00:00,13228.0
-2013-01-17 23:00:00,12717.0
-2013-01-18 00:00:00,11903.0
-2013-01-16 01:00:00,11160.0
-2013-01-16 02:00:00,10707.0
-2013-01-16 03:00:00,10466.0
-2013-01-16 04:00:00,10351.0
-2013-01-16 05:00:00,10376.0
-2013-01-16 06:00:00,10662.0
-2013-01-16 07:00:00,11414.0
-2013-01-16 08:00:00,12684.0
-2013-01-16 09:00:00,13210.0
-2013-01-16 10:00:00,13047.0
-2013-01-16 11:00:00,13054.0
-2013-01-16 12:00:00,13049.0
-2013-01-16 13:00:00,12916.0
-2013-01-16 14:00:00,12803.0
-2013-01-16 15:00:00,12809.0
-2013-01-16 16:00:00,12862.0
-2013-01-16 17:00:00,12947.0
-2013-01-16 18:00:00,13371.0
-2013-01-16 19:00:00,13873.0
-2013-01-16 20:00:00,13644.0
-2013-01-16 21:00:00,13364.0
-2013-01-16 22:00:00,12990.0
-2013-01-16 23:00:00,12401.0
-2013-01-17 00:00:00,11499.0
-2013-01-15 01:00:00,11382.0
-2013-01-15 02:00:00,10925.0
-2013-01-15 03:00:00,10633.0
-2013-01-15 04:00:00,10530.0
-2013-01-15 05:00:00,10547.0
-2013-01-15 06:00:00,10814.0
-2013-01-15 07:00:00,11546.0
-2013-01-15 08:00:00,12796.0
-2013-01-15 09:00:00,13323.0
-2013-01-15 10:00:00,13202.0
-2013-01-15 11:00:00,13096.0
-2013-01-15 12:00:00,12999.0
-2013-01-15 13:00:00,12908.0
-2013-01-15 14:00:00,12774.0
-2013-01-15 15:00:00,12768.0
-2013-01-15 16:00:00,12638.0
-2013-01-15 17:00:00,12589.0
-2013-01-15 18:00:00,12977.0
-2013-01-15 19:00:00,13851.0
-2013-01-15 20:00:00,13771.0
-2013-01-15 21:00:00,13592.0
-2013-01-15 22:00:00,13321.0
-2013-01-15 23:00:00,12765.0
-2013-01-16 00:00:00,11919.0
-2013-01-14 01:00:00,10871.0
-2013-01-14 02:00:00,10564.0
-2013-01-14 03:00:00,10337.0
-2013-01-14 04:00:00,10301.0
-2013-01-14 05:00:00,10363.0
-2013-01-14 06:00:00,10661.0
-2013-01-14 07:00:00,11432.0
-2013-01-14 08:00:00,12777.0
-2013-01-14 09:00:00,13402.0
-2013-01-14 10:00:00,13373.0
-2013-01-14 11:00:00,13299.0
-2013-01-14 12:00:00,13277.0
-2013-01-14 13:00:00,13252.0
-2013-01-14 14:00:00,13121.0
-2013-01-14 15:00:00,13041.0
-2013-01-14 16:00:00,12792.0
-2013-01-14 17:00:00,12712.0
-2013-01-14 18:00:00,13154.0
-2013-01-14 19:00:00,14041.0
-2013-01-14 20:00:00,14023.0
-2013-01-14 21:00:00,13857.0
-2013-01-14 22:00:00,13522.0
-2013-01-14 23:00:00,12993.0
-2013-01-15 00:00:00,12140.0
-2013-01-13 01:00:00,10076.0
-2013-01-13 02:00:00,9666.0
-2013-01-13 03:00:00,9312.0
-2013-01-13 04:00:00,9151.0
-2013-01-13 05:00:00,8997.0
-2013-01-13 06:00:00,9074.0
-2013-01-13 07:00:00,9197.0
-2013-01-13 08:00:00,9546.0
-2013-01-13 09:00:00,9805.0
-2013-01-13 10:00:00,10087.0
-2013-01-13 11:00:00,10367.0
-2013-01-13 12:00:00,10689.0
-2013-01-13 13:00:00,10826.0
-2013-01-13 14:00:00,10966.0
-2013-01-13 15:00:00,11011.0
-2013-01-13 16:00:00,11022.0
-2013-01-13 17:00:00,11185.0
-2013-01-13 18:00:00,11804.0
-2013-01-13 19:00:00,12507.0
-2013-01-13 20:00:00,12609.0
-2013-01-13 21:00:00,12504.0
-2013-01-13 22:00:00,12345.0
-2013-01-13 23:00:00,12005.0
-2013-01-14 00:00:00,11457.0
-2013-01-12 01:00:00,9962.0
-2013-01-12 02:00:00,9393.0
-2013-01-12 03:00:00,9031.0
-2013-01-12 04:00:00,8760.0
-2013-01-12 05:00:00,8659.0
-2013-01-12 06:00:00,8657.0
-2013-01-12 07:00:00,8897.0
-2013-01-12 08:00:00,9369.0
-2013-01-12 09:00:00,9676.0
-2013-01-12 10:00:00,9939.0
-2013-01-12 11:00:00,10227.0
-2013-01-12 12:00:00,10444.0
-2013-01-12 13:00:00,10480.0
-2013-01-12 14:00:00,10430.0
-2013-01-12 15:00:00,10328.0
-2013-01-12 16:00:00,10369.0
-2013-01-12 17:00:00,10511.0
-2013-01-12 18:00:00,11052.0
-2013-01-12 19:00:00,11628.0
-2013-01-12 20:00:00,11559.0
-2013-01-12 21:00:00,11427.0
-2013-01-12 22:00:00,11330.0
-2013-01-12 23:00:00,11069.0
-2013-01-13 00:00:00,10598.0
-2013-01-11 01:00:00,10377.0
-2013-01-11 02:00:00,9781.0
-2013-01-11 03:00:00,9452.0
-2013-01-11 04:00:00,9244.0
-2013-01-11 05:00:00,9162.0
-2013-01-11 06:00:00,9310.0
-2013-01-11 07:00:00,9931.0
-2013-01-11 08:00:00,11057.0
-2013-01-11 09:00:00,11711.0
-2013-01-11 10:00:00,11778.0
-2013-01-11 11:00:00,11856.0
-2013-01-11 12:00:00,11988.0
-2013-01-11 13:00:00,11952.0
-2013-01-11 14:00:00,11945.0
-2013-01-11 15:00:00,11900.0
-2013-01-11 16:00:00,11773.0
-2013-01-11 17:00:00,11700.0
-2013-01-11 18:00:00,12109.0
-2013-01-11 19:00:00,12559.0
-2013-01-11 20:00:00,12403.0
-2013-01-11 21:00:00,12116.0
-2013-01-11 22:00:00,11797.0
-2013-01-11 23:00:00,11384.0
-2013-01-12 00:00:00,10667.0
-2013-01-10 01:00:00,10495.0
-2013-01-10 02:00:00,10057.0
-2013-01-10 03:00:00,9792.0
-2013-01-10 04:00:00,9680.0
-2013-01-10 05:00:00,9692.0
-2013-01-10 06:00:00,9962.0
-2013-01-10 07:00:00,10707.0
-2013-01-10 08:00:00,11963.0
-2013-01-10 09:00:00,12658.0
-2013-01-10 10:00:00,12559.0
-2013-01-10 11:00:00,12494.0
-2013-01-10 12:00:00,12589.0
-2013-01-10 13:00:00,12510.0
-2013-01-10 14:00:00,12300.0
-2013-01-10 15:00:00,12297.0
-2013-01-10 16:00:00,12302.0
-2013-01-10 17:00:00,12414.0
-2013-01-10 18:00:00,12978.0
-2013-01-10 19:00:00,13430.0
-2013-01-10 20:00:00,13219.0
-2013-01-10 21:00:00,12967.0
-2013-01-10 22:00:00,12641.0
-2013-01-10 23:00:00,12084.0
-2013-01-11 00:00:00,11182.0
-2013-01-09 01:00:00,10617.0
-2013-01-09 02:00:00,10080.0
-2013-01-09 03:00:00,9749.0
-2013-01-09 04:00:00,9564.0
-2013-01-09 05:00:00,9587.0
-2013-01-09 06:00:00,9808.0
-2013-01-09 07:00:00,10562.0
-2013-01-09 08:00:00,11802.0
-2013-01-09 09:00:00,12376.0
-2013-01-09 10:00:00,12230.0
-2013-01-09 11:00:00,12187.0
-2013-01-09 12:00:00,12134.0
-2013-01-09 13:00:00,12078.0
-2013-01-09 14:00:00,12006.0
-2013-01-09 15:00:00,11950.0
-2013-01-09 16:00:00,11851.0
-2013-01-09 17:00:00,11799.0
-2013-01-09 18:00:00,12362.0
-2013-01-09 19:00:00,13144.0
-2013-01-09 20:00:00,13017.0
-2013-01-09 21:00:00,12858.0
-2013-01-09 22:00:00,12583.0
-2013-01-09 23:00:00,12068.0
-2013-01-10 00:00:00,11263.0
-2013-01-08 01:00:00,10806.0
-2013-01-08 02:00:00,10318.0
-2013-01-08 03:00:00,10031.0
-2013-01-08 04:00:00,9887.0
-2013-01-08 05:00:00,9877.0
-2013-01-08 06:00:00,10135.0
-2013-01-08 07:00:00,10855.0
-2013-01-08 08:00:00,12113.0
-2013-01-08 09:00:00,12684.0
-2013-01-08 10:00:00,12613.0
-2013-01-08 11:00:00,12590.0
-2013-01-08 12:00:00,12568.0
-2013-01-08 13:00:00,12374.0
-2013-01-08 14:00:00,12264.0
-2013-01-08 15:00:00,12244.0
-2013-01-08 16:00:00,12117.0
-2013-01-08 17:00:00,12085.0
-2013-01-08 18:00:00,12636.0
-2013-01-08 19:00:00,13467.0
-2013-01-08 20:00:00,13313.0
-2013-01-08 21:00:00,13119.0
-2013-01-08 22:00:00,12837.0
-2013-01-08 23:00:00,12286.0
-2013-01-09 00:00:00,11419.0
-2013-01-07 01:00:00,10612.0
-2013-01-07 02:00:00,10244.0
-2013-01-07 03:00:00,10072.0
-2013-01-07 04:00:00,9992.0
-2013-01-07 05:00:00,10095.0
-2013-01-07 06:00:00,10442.0
-2013-01-07 07:00:00,11264.0
-2013-01-07 08:00:00,12518.0
-2013-01-07 09:00:00,13104.0
-2013-01-07 10:00:00,12949.0
-2013-01-07 11:00:00,12937.0
-2013-01-07 12:00:00,12901.0
-2013-01-07 13:00:00,12751.0
-2013-01-07 14:00:00,12619.0
-2013-01-07 15:00:00,12546.0
-2013-01-07 16:00:00,12365.0
-2013-01-07 17:00:00,12348.0
-2013-01-07 18:00:00,12972.0
-2013-01-07 19:00:00,13747.0
-2013-01-07 20:00:00,13626.0
-2013-01-07 21:00:00,13382.0
-2013-01-07 22:00:00,13046.0
-2013-01-07 23:00:00,12452.0
-2013-01-08 00:00:00,11632.0
-2013-01-06 01:00:00,10533.0
-2013-01-06 02:00:00,9985.0
-2013-01-06 03:00:00,9639.0
-2013-01-06 04:00:00,9348.0
-2013-01-06 05:00:00,9275.0
-2013-01-06 06:00:00,9300.0
-2013-01-06 07:00:00,9547.0
-2013-01-06 08:00:00,9837.0
-2013-01-06 09:00:00,10050.0
-2013-01-06 10:00:00,10192.0
-2013-01-06 11:00:00,10452.0
-2013-01-06 12:00:00,10641.0
-2013-01-06 13:00:00,10677.0
-2013-01-06 14:00:00,10624.0
-2013-01-06 15:00:00,10514.0
-2013-01-06 16:00:00,10450.0
-2013-01-06 17:00:00,10582.0
-2013-01-06 18:00:00,11293.0
-2013-01-06 19:00:00,12373.0
-2013-01-06 20:00:00,12421.0
-2013-01-06 21:00:00,12396.0
-2013-01-06 22:00:00,12109.0
-2013-01-06 23:00:00,11775.0
-2013-01-07 00:00:00,11164.0
-2013-01-05 01:00:00,11261.0
-2013-01-05 02:00:00,10728.0
-2013-01-05 03:00:00,10307.0
-2013-01-05 04:00:00,10126.0
-2013-01-05 05:00:00,9997.0
-2013-01-05 06:00:00,10081.0
-2013-01-05 07:00:00,10348.0
-2013-01-05 08:00:00,10821.0
-2013-01-05 09:00:00,11064.0
-2013-01-05 10:00:00,11161.0
-2013-01-05 11:00:00,11275.0
-2013-01-05 12:00:00,11369.0
-2013-01-05 13:00:00,11346.0
-2013-01-05 14:00:00,11257.0
-2013-01-05 15:00:00,11289.0
-2013-01-05 16:00:00,11446.0
-2013-01-05 17:00:00,11459.0
-2013-01-05 18:00:00,12013.0
-2013-01-05 19:00:00,12557.0
-2013-01-05 20:00:00,12525.0
-2013-01-05 21:00:00,12330.0
-2013-01-05 22:00:00,12175.0
-2013-01-05 23:00:00,11806.0
-2013-01-06 00:00:00,11183.0
-2013-01-04 01:00:00,11528.0
-2013-01-04 02:00:00,11019.0
-2013-01-04 03:00:00,10708.0
-2013-01-04 04:00:00,10598.0
-2013-01-04 05:00:00,10648.0
-2013-01-04 06:00:00,10915.0
-2013-01-04 07:00:00,11604.0
-2013-01-04 08:00:00,12587.0
-2013-01-04 09:00:00,13111.0
-2013-01-04 10:00:00,13173.0
-2013-01-04 11:00:00,13165.0
-2013-01-04 12:00:00,13127.0
-2013-01-04 13:00:00,13000.0
-2013-01-04 14:00:00,12777.0
-2013-01-04 15:00:00,12650.0
-2013-01-04 16:00:00,12490.0
-2013-01-04 17:00:00,12391.0
-2013-01-04 18:00:00,12977.0
-2013-01-04 19:00:00,13784.0
-2013-01-04 20:00:00,13693.0
-2013-01-04 21:00:00,13383.0
-2013-01-04 22:00:00,13151.0
-2013-01-04 23:00:00,12716.0
-2013-01-05 00:00:00,12061.0
-2013-01-03 01:00:00,11443.0
-2013-01-03 02:00:00,10882.0
-2013-01-03 03:00:00,10526.0
-2013-01-03 04:00:00,10267.0
-2013-01-03 05:00:00,10213.0
-2013-01-03 06:00:00,10399.0
-2013-01-03 07:00:00,10982.0
-2013-01-03 08:00:00,11955.0
-2013-01-03 09:00:00,12607.0
-2013-01-03 10:00:00,12789.0
-2013-01-03 11:00:00,12968.0
-2013-01-03 12:00:00,13112.0
-2013-01-03 13:00:00,13178.0
-2013-01-03 14:00:00,13179.0
-2013-01-03 15:00:00,13182.0
-2013-01-03 16:00:00,13069.0
-2013-01-03 17:00:00,13001.0
-2013-01-03 18:00:00,13570.0
-2013-01-03 19:00:00,14201.0
-2013-01-03 20:00:00,14044.0
-2013-01-03 21:00:00,13833.0
-2013-01-03 22:00:00,13521.0
-2013-01-03 23:00:00,13076.0
-2013-01-04 00:00:00,12279.0
-2013-01-02 01:00:00,10780.0
-2013-01-02 02:00:00,10391.0
-2013-01-02 03:00:00,10157.0
-2013-01-02 04:00:00,10051.0
-2013-01-02 05:00:00,10087.0
-2013-01-02 06:00:00,10331.0
-2013-01-02 07:00:00,10980.0
-2013-01-02 08:00:00,12081.0
-2013-01-02 09:00:00,12656.0
-2013-01-02 10:00:00,12811.0
-2013-01-02 11:00:00,12887.0
-2013-01-02 12:00:00,12930.0
-2013-01-02 13:00:00,12900.0
-2013-01-02 14:00:00,12808.0
-2013-01-02 15:00:00,12705.0
-2013-01-02 16:00:00,12583.0
-2013-01-02 17:00:00,12562.0
-2013-01-02 18:00:00,13237.0
-2013-01-02 19:00:00,14138.0
-2013-01-02 20:00:00,14039.0
-2013-01-02 21:00:00,13857.0
-2013-01-02 22:00:00,13574.0
-2013-01-02 23:00:00,13098.0
-2013-01-03 00:00:00,12287.0
-2013-01-01 01:00:00,10581.0
-2013-01-01 02:00:00,10175.0
-2013-01-01 03:00:00,9866.0
-2013-01-01 04:00:00,9631.0
-2013-01-01 05:00:00,9536.0
-2013-01-01 06:00:00,9583.0
-2013-01-01 07:00:00,9778.0
-2013-01-01 08:00:00,10059.0
-2013-01-01 09:00:00,10047.0
-2013-01-01 10:00:00,9984.0
-2013-01-01 11:00:00,10102.0
-2013-01-01 12:00:00,10227.0
-2013-01-01 13:00:00,10262.0
-2013-01-01 14:00:00,10263.0
-2013-01-01 15:00:00,10216.0
-2013-01-01 16:00:00,10173.0
-2013-01-01 17:00:00,10339.0
-2013-01-01 18:00:00,11208.0
-2013-01-01 19:00:00,12355.0
-2013-01-01 20:00:00,12429.0
-2013-01-01 21:00:00,12364.0
-2013-01-01 22:00:00,12229.0
-2013-01-01 23:00:00,11909.0
-2013-01-02 00:00:00,11381.0
-2014-12-31 01:00:00,11633.0
-2014-12-31 02:00:00,11139.0
-2014-12-31 03:00:00,10871.0
-2014-12-31 04:00:00,10735.0
-2014-12-31 05:00:00,10714.0
-2014-12-31 06:00:00,10886.0
-2014-12-31 07:00:00,11404.0
-2014-12-31 08:00:00,12098.0
-2014-12-31 09:00:00,12409.0
-2014-12-31 10:00:00,12526.0
-2014-12-31 11:00:00,12620.0
-2014-12-31 12:00:00,12672.0
-2014-12-31 13:00:00,12608.0
-2014-12-31 14:00:00,12441.0
-2014-12-31 15:00:00,12281.0
-2014-12-31 16:00:00,12123.0
-2014-12-31 17:00:00,12081.0
-2014-12-31 18:00:00,12851.0
-2014-12-31 19:00:00,13663.0
-2014-12-31 20:00:00,13419.0
-2014-12-31 21:00:00,13067.0
-2014-12-31 22:00:00,12672.0
-2014-12-31 23:00:00,12244.0
-2015-01-01 00:00:00,11774.0
-2014-12-30 01:00:00,10988.0
-2014-12-30 02:00:00,10521.0
-2014-12-30 03:00:00,10264.0
-2014-12-30 04:00:00,10114.0
-2014-12-30 05:00:00,10150.0
-2014-12-30 06:00:00,10432.0
-2014-12-30 07:00:00,11105.0
-2014-12-30 08:00:00,12020.0
-2014-12-30 09:00:00,12496.0
-2014-12-30 10:00:00,12593.0
-2014-12-30 11:00:00,12687.0
-2014-12-30 12:00:00,12708.0
-2014-12-30 13:00:00,12651.0
-2014-12-30 14:00:00,12541.0
-2014-12-30 15:00:00,12490.0
-2014-12-30 16:00:00,12405.0
-2014-12-30 17:00:00,12460.0
-2014-12-30 18:00:00,13201.0
-2014-12-30 19:00:00,14012.0
-2014-12-30 20:00:00,13869.0
-2014-12-30 21:00:00,13705.0
-2014-12-30 22:00:00,13503.0
-2014-12-30 23:00:00,13083.0
-2014-12-31 00:00:00,12388.0
-2014-12-29 01:00:00,10290.0
-2014-12-29 02:00:00,9809.0
-2014-12-29 03:00:00,9606.0
-2014-12-29 04:00:00,9442.0
-2014-12-29 05:00:00,9491.0
-2014-12-29 06:00:00,9703.0
-2014-12-29 07:00:00,10364.0
-2014-12-29 08:00:00,11238.0
-2014-12-29 09:00:00,11754.0
-2014-12-29 10:00:00,11909.0
-2014-12-29 11:00:00,12058.0
-2014-12-29 12:00:00,12126.0
-2014-12-29 13:00:00,12088.0
-2014-12-29 14:00:00,12095.0
-2014-12-29 15:00:00,12114.0
-2014-12-29 16:00:00,12107.0
-2014-12-29 17:00:00,12162.0
-2014-12-29 18:00:00,12891.0
-2014-12-29 19:00:00,13514.0
-2014-12-29 20:00:00,13355.0
-2014-12-29 21:00:00,13105.0
-2014-12-29 22:00:00,12884.0
-2014-12-29 23:00:00,12414.0
-2014-12-30 00:00:00,11710.0
-2014-12-28 01:00:00,10030.0
-2014-12-28 02:00:00,9590.0
-2014-12-28 03:00:00,9225.0
-2014-12-28 04:00:00,9082.0
-2014-12-28 05:00:00,8985.0
-2014-12-28 06:00:00,9069.0
-2014-12-28 07:00:00,9246.0
-2014-12-28 08:00:00,9559.0
-2014-12-28 09:00:00,9707.0
-2014-12-28 10:00:00,9868.0
-2014-12-28 11:00:00,10041.0
-2014-12-28 12:00:00,10108.0
-2014-12-28 13:00:00,10165.0
-2014-12-28 14:00:00,10064.0
-2014-12-28 15:00:00,9957.0
-2014-12-28 16:00:00,9864.0
-2014-12-28 17:00:00,9984.0
-2014-12-28 18:00:00,10794.0
-2014-12-28 19:00:00,11746.0
-2014-12-28 20:00:00,11832.0
-2014-12-28 21:00:00,11807.0
-2014-12-28 22:00:00,11634.0
-2014-12-28 23:00:00,11395.0
-2014-12-29 00:00:00,10835.0
-2014-12-27 01:00:00,9464.0
-2014-12-27 02:00:00,8989.0
-2014-12-27 03:00:00,8591.0
-2014-12-27 04:00:00,8412.0
-2014-12-27 05:00:00,8301.0
-2014-12-27 06:00:00,8385.0
-2014-12-27 07:00:00,8587.0
-2014-12-27 08:00:00,9034.0
-2014-12-27 09:00:00,9334.0
-2014-12-27 10:00:00,9602.0
-2014-12-27 11:00:00,9948.0
-2014-12-27 12:00:00,10225.0
-2014-12-27 13:00:00,10397.0
-2014-12-27 14:00:00,10477.0
-2014-12-27 15:00:00,10354.0
-2014-12-27 16:00:00,10348.0
-2014-12-27 17:00:00,10522.0
-2014-12-27 18:00:00,11248.0
-2014-12-27 19:00:00,11691.0
-2014-12-27 20:00:00,11684.0
-2014-12-27 21:00:00,11523.0
-2014-12-27 22:00:00,11403.0
-2014-12-27 23:00:00,11107.0
-2014-12-28 00:00:00,10640.0
-2014-12-26 01:00:00,9388.0
-2014-12-26 02:00:00,8952.0
-2014-12-26 03:00:00,8688.0
-2014-12-26 04:00:00,8555.0
-2014-12-26 05:00:00,8566.0
-2014-12-26 06:00:00,8766.0
-2014-12-26 07:00:00,9258.0
-2014-12-26 08:00:00,9919.0
-2014-12-26 09:00:00,10180.0
-2014-12-26 10:00:00,10275.0
-2014-12-26 11:00:00,10399.0
-2014-12-26 12:00:00,10440.0
-2014-12-26 13:00:00,10394.0
-2014-12-26 14:00:00,10294.0
-2014-12-26 15:00:00,10187.0
-2014-12-26 16:00:00,10087.0
-2014-12-26 17:00:00,10114.0
-2014-12-26 18:00:00,10882.0
-2014-12-26 19:00:00,11661.0
-2014-12-26 20:00:00,11542.0
-2014-12-26 21:00:00,11346.0
-2014-12-26 22:00:00,11049.0
-2014-12-26 23:00:00,10730.0
-2014-12-27 00:00:00,10164.0
-2014-12-25 01:00:00,9681.0
-2014-12-25 02:00:00,9210.0
-2014-12-25 03:00:00,8851.0
-2014-12-25 04:00:00,8632.0
-2014-12-25 05:00:00,8526.0
-2014-12-25 06:00:00,8601.0
-2014-12-25 07:00:00,8798.0
-2014-12-25 08:00:00,9088.0
-2014-12-25 09:00:00,9251.0
-2014-12-25 10:00:00,9449.0
-2014-12-25 11:00:00,9696.0
-2014-12-25 12:00:00,9757.0
-2014-12-25 13:00:00,9640.0
-2014-12-25 14:00:00,9501.0
-2014-12-25 15:00:00,9310.0
-2014-12-25 16:00:00,9150.0
-2014-12-25 17:00:00,9218.0
-2014-12-25 18:00:00,9865.0
-2014-12-25 19:00:00,10499.0
-2014-12-25 20:00:00,10477.0
-2014-12-25 21:00:00,10491.0
-2014-12-25 22:00:00,10451.0
-2014-12-25 23:00:00,10272.0
-2014-12-26 00:00:00,9901.0
-2014-12-24 01:00:00,10159.0
-2014-12-24 02:00:00,9477.0
-2014-12-24 03:00:00,9055.0
-2014-12-24 04:00:00,8789.0
-2014-12-24 05:00:00,8735.0
-2014-12-24 06:00:00,8874.0
-2014-12-24 07:00:00,9265.0
-2014-12-24 08:00:00,9863.0
-2014-12-24 09:00:00,10291.0
-2014-12-24 10:00:00,10530.0
-2014-12-24 11:00:00,10824.0
-2014-12-24 12:00:00,10955.0
-2014-12-24 13:00:00,10948.0
-2014-12-24 14:00:00,10845.0
-2014-12-24 15:00:00,10790.0
-2014-12-24 16:00:00,10718.0
-2014-12-24 17:00:00,10835.0
-2014-12-24 18:00:00,11428.0
-2014-12-24 19:00:00,11655.0
-2014-12-24 20:00:00,11259.0
-2014-12-24 21:00:00,10963.0
-2014-12-24 22:00:00,10770.0
-2014-12-24 23:00:00,10549.0
-2014-12-25 00:00:00,10183.0
-2014-12-23 01:00:00,10667.0
-2014-12-23 02:00:00,10019.0
-2014-12-23 03:00:00,9584.0
-2014-12-23 04:00:00,9315.0
-2014-12-23 05:00:00,9215.0
-2014-12-23 06:00:00,9356.0
-2014-12-23 07:00:00,9926.0
-2014-12-23 08:00:00,10816.0
-2014-12-23 09:00:00,11427.0
-2014-12-23 10:00:00,11511.0
-2014-12-23 11:00:00,11566.0
-2014-12-23 12:00:00,11683.0
-2014-12-23 13:00:00,11589.0
-2014-12-23 14:00:00,11480.0
-2014-12-23 15:00:00,11448.0
-2014-12-23 16:00:00,11344.0
-2014-12-23 17:00:00,11303.0
-2014-12-23 18:00:00,12019.0
-2014-12-23 19:00:00,12710.0
-2014-12-23 20:00:00,12570.0
-2014-12-23 21:00:00,12353.0
-2014-12-23 22:00:00,12128.0
-2014-12-23 23:00:00,11727.0
-2014-12-24 00:00:00,10984.0
-2014-12-22 01:00:00,10467.0
-2014-12-22 02:00:00,10035.0
-2014-12-22 03:00:00,9735.0
-2014-12-22 04:00:00,9598.0
-2014-12-22 05:00:00,9617.0
-2014-12-22 06:00:00,9879.0
-2014-12-22 07:00:00,10577.0
-2014-12-22 08:00:00,11505.0
-2014-12-22 09:00:00,12200.0
-2014-12-22 10:00:00,12404.0
-2014-12-22 11:00:00,12544.0
-2014-12-22 12:00:00,12672.0
-2014-12-22 13:00:00,12631.0
-2014-12-22 14:00:00,12586.0
-2014-12-22 15:00:00,12578.0
-2014-12-22 16:00:00,12598.0
-2014-12-22 17:00:00,12731.0
-2014-12-22 18:00:00,13341.0
-2014-12-22 19:00:00,13590.0
-2014-12-22 20:00:00,13361.0
-2014-12-22 21:00:00,13088.0
-2014-12-22 22:00:00,12789.0
-2014-12-22 23:00:00,12323.0
-2014-12-23 00:00:00,11510.0
-2014-12-21 01:00:00,10568.0
-2014-12-21 02:00:00,9990.0
-2014-12-21 03:00:00,9606.0
-2014-12-21 04:00:00,9388.0
-2014-12-21 05:00:00,9319.0
-2014-12-21 06:00:00,9329.0
-2014-12-21 07:00:00,9521.0
-2014-12-21 08:00:00,9783.0
-2014-12-21 09:00:00,10085.0
-2014-12-21 10:00:00,10320.0
-2014-12-21 11:00:00,10600.0
-2014-12-21 12:00:00,10763.0
-2014-12-21 13:00:00,10869.0
-2014-12-21 14:00:00,10810.0
-2014-12-21 15:00:00,10729.0
-2014-12-21 16:00:00,10690.0
-2014-12-21 17:00:00,10792.0
-2014-12-21 18:00:00,11622.0
-2014-12-21 19:00:00,12251.0
-2014-12-21 20:00:00,12236.0
-2014-12-21 21:00:00,12193.0
-2014-12-21 22:00:00,12020.0
-2014-12-21 23:00:00,11733.0
-2014-12-22 00:00:00,11189.0
-2014-12-20 01:00:00,10977.0
-2014-12-20 02:00:00,10418.0
-2014-12-20 03:00:00,10012.0
-2014-12-20 04:00:00,9823.0
-2014-12-20 05:00:00,9677.0
-2014-12-20 06:00:00,9794.0
-2014-12-20 07:00:00,10039.0
-2014-12-20 08:00:00,10527.0
-2014-12-20 09:00:00,10887.0
-2014-12-20 10:00:00,11158.0
-2014-12-20 11:00:00,11480.0
-2014-12-20 12:00:00,11585.0
-2014-12-20 13:00:00,11567.0
-2014-12-20 14:00:00,11490.0
-2014-12-20 15:00:00,11263.0
-2014-12-20 16:00:00,11202.0
-2014-12-20 17:00:00,11265.0
-2014-12-20 18:00:00,12046.0
-2014-12-20 19:00:00,12439.0
-2014-12-20 20:00:00,12394.0
-2014-12-20 21:00:00,12269.0
-2014-12-20 22:00:00,12112.0
-2014-12-20 23:00:00,11745.0
-2014-12-21 00:00:00,11256.0
-2014-12-19 01:00:00,11185.0
-2014-12-19 02:00:00,10589.0
-2014-12-19 03:00:00,10237.0
-2014-12-19 04:00:00,10016.0
-2014-12-19 05:00:00,9998.0
-2014-12-19 06:00:00,10221.0
-2014-12-19 07:00:00,10933.0
-2014-12-19 08:00:00,12023.0
-2014-12-19 09:00:00,12665.0
-2014-12-19 10:00:00,12752.0
-2014-12-19 11:00:00,12837.0
-2014-12-19 12:00:00,12848.0
-2014-12-19 13:00:00,12802.0
-2014-12-19 14:00:00,12605.0
-2014-12-19 15:00:00,12561.0
-2014-12-19 16:00:00,12534.0
-2014-12-19 17:00:00,12690.0
-2014-12-19 18:00:00,13439.0
-2014-12-19 19:00:00,13775.0
-2014-12-19 20:00:00,13566.0
-2014-12-19 21:00:00,13325.0
-2014-12-19 22:00:00,12947.0
-2014-12-19 23:00:00,12560.0
-2014-12-20 00:00:00,11837.0
-2014-12-18 01:00:00,11283.0
-2014-12-18 02:00:00,10654.0
-2014-12-18 03:00:00,10355.0
-2014-12-18 04:00:00,10198.0
-2014-12-18 05:00:00,10170.0
-2014-12-18 06:00:00,10438.0
-2014-12-18 07:00:00,11228.0
-2014-12-18 08:00:00,12379.0
-2014-12-18 09:00:00,12865.0
-2014-12-18 10:00:00,12931.0
-2014-12-18 11:00:00,13040.0
-2014-12-18 12:00:00,13051.0
-2014-12-18 13:00:00,12966.0
-2014-12-18 14:00:00,12841.0
-2014-12-18 15:00:00,12829.0
-2014-12-18 16:00:00,12759.0
-2014-12-18 17:00:00,12840.0
-2014-12-18 18:00:00,13667.0
-2014-12-18 19:00:00,14095.0
-2014-12-18 20:00:00,13923.0
-2014-12-18 21:00:00,13716.0
-2014-12-18 22:00:00,13429.0
-2014-12-18 23:00:00,12907.0
-2014-12-19 00:00:00,12068.0
-2014-12-17 01:00:00,10849.0
-2014-12-17 02:00:00,10278.0
-2014-12-17 03:00:00,9950.0
-2014-12-17 04:00:00,9804.0
-2014-12-17 05:00:00,9827.0
-2014-12-17 06:00:00,10130.0
-2014-12-17 07:00:00,10919.0
-2014-12-17 08:00:00,12134.0
-2014-12-17 09:00:00,12784.0
-2014-12-17 10:00:00,12897.0
-2014-12-17 11:00:00,12974.0
-2014-12-17 12:00:00,13072.0
-2014-12-17 13:00:00,13040.0
-2014-12-17 14:00:00,12995.0
-2014-12-17 15:00:00,13053.0
-2014-12-17 16:00:00,13005.0
-2014-12-17 17:00:00,13117.0
-2014-12-17 18:00:00,13848.0
-2014-12-17 19:00:00,14310.0
-2014-12-17 20:00:00,14099.0
-2014-12-17 21:00:00,13856.0
-2014-12-17 22:00:00,13600.0
-2014-12-17 23:00:00,13054.0
-2014-12-18 00:00:00,12179.0
-2014-12-16 01:00:00,10292.0
-2014-12-16 02:00:00,9677.0
-2014-12-16 03:00:00,9295.0
-2014-12-16 04:00:00,9104.0
-2014-12-16 05:00:00,9071.0
-2014-12-16 06:00:00,9313.0
-2014-12-16 07:00:00,10013.0
-2014-12-16 08:00:00,11169.0
-2014-12-16 09:00:00,11849.0
-2014-12-16 10:00:00,12004.0
-2014-12-16 11:00:00,12091.0
-2014-12-16 12:00:00,12204.0
-2014-12-16 13:00:00,12230.0
-2014-12-16 14:00:00,12227.0
-2014-12-16 15:00:00,12323.0
-2014-12-16 16:00:00,12350.0
-2014-12-16 17:00:00,12556.0
-2014-12-16 18:00:00,13293.0
-2014-12-16 19:00:00,13705.0
-2014-12-16 20:00:00,13577.0
-2014-12-16 21:00:00,13388.0
-2014-12-16 22:00:00,13095.0
-2014-12-16 23:00:00,12580.0
-2014-12-17 00:00:00,11700.0
-2014-12-15 01:00:00,9637.0
-2014-12-15 02:00:00,9162.0
-2014-12-15 03:00:00,8892.0
-2014-12-15 04:00:00,8784.0
-2014-12-15 05:00:00,8800.0
-2014-12-15 06:00:00,9160.0
-2014-12-15 07:00:00,9926.0
-2014-12-15 08:00:00,11138.0
-2014-12-15 09:00:00,11787.0
-2014-12-15 10:00:00,11933.0
-2014-12-15 11:00:00,11966.0
-2014-12-15 12:00:00,12048.0
-2014-12-15 13:00:00,12060.0
-2014-12-15 14:00:00,12047.0
-2014-12-15 15:00:00,12059.0
-2014-12-15 16:00:00,11997.0
-2014-12-15 17:00:00,12156.0
-2014-12-15 18:00:00,12910.0
-2014-12-15 19:00:00,13317.0
-2014-12-15 20:00:00,13092.0
-2014-12-15 21:00:00,12928.0
-2014-12-15 22:00:00,12598.0
-2014-12-15 23:00:00,12050.0
-2014-12-16 00:00:00,11157.0
-2014-12-14 01:00:00,9871.0
-2014-12-14 02:00:00,9309.0
-2014-12-14 03:00:00,8941.0
-2014-12-14 04:00:00,8679.0
-2014-12-14 05:00:00,8546.0
-2014-12-14 06:00:00,8548.0
-2014-12-14 07:00:00,8662.0
-2014-12-14 08:00:00,8966.0
-2014-12-14 09:00:00,9147.0
-2014-12-14 10:00:00,9361.0
-2014-12-14 11:00:00,9640.0
-2014-12-14 12:00:00,9756.0
-2014-12-14 13:00:00,9824.0
-2014-12-14 14:00:00,9861.0
-2014-12-14 15:00:00,9878.0
-2014-12-14 16:00:00,9917.0
-2014-12-14 17:00:00,10101.0
-2014-12-14 18:00:00,10943.0
-2014-12-14 19:00:00,11478.0
-2014-12-14 20:00:00,11549.0
-2014-12-14 21:00:00,11519.0
-2014-12-14 22:00:00,11298.0
-2014-12-14 23:00:00,10940.0
-2014-12-15 00:00:00,10271.0
-2014-12-13 01:00:00,10850.0
-2014-12-13 02:00:00,10204.0
-2014-12-13 03:00:00,9774.0
-2014-12-13 04:00:00,9561.0
-2014-12-13 05:00:00,9444.0
-2014-12-13 06:00:00,9493.0
-2014-12-13 07:00:00,9785.0
-2014-12-13 08:00:00,10301.0
-2014-12-13 09:00:00,10627.0
-2014-12-13 10:00:00,10950.0
-2014-12-13 11:00:00,11142.0
-2014-12-13 12:00:00,11216.0
-2014-12-13 13:00:00,11126.0
-2014-12-13 14:00:00,11040.0
-2014-12-13 15:00:00,10850.0
-2014-12-13 16:00:00,10699.0
-2014-12-13 17:00:00,10761.0
-2014-12-13 18:00:00,11493.0
-2014-12-13 19:00:00,11930.0
-2014-12-13 20:00:00,11826.0
-2014-12-13 21:00:00,11653.0
-2014-12-13 22:00:00,11456.0
-2014-12-13 23:00:00,11104.0
-2014-12-14 00:00:00,10506.0
-2014-12-12 01:00:00,11201.0
-2014-12-12 02:00:00,10646.0
-2014-12-12 03:00:00,10351.0
-2014-12-12 04:00:00,10183.0
-2014-12-12 05:00:00,10217.0
-2014-12-12 06:00:00,10469.0
-2014-12-12 07:00:00,11195.0
-2014-12-12 08:00:00,12275.0
-2014-12-12 09:00:00,12839.0
-2014-12-12 10:00:00,12971.0
-2014-12-12 11:00:00,13012.0
-2014-12-12 12:00:00,13017.0
-2014-12-12 13:00:00,12947.0
-2014-12-12 14:00:00,12786.0
-2014-12-12 15:00:00,12696.0
-2014-12-12 16:00:00,12604.0
-2014-12-12 17:00:00,12670.0
-2014-12-12 18:00:00,13383.0
-2014-12-12 19:00:00,13693.0
-2014-12-12 20:00:00,13464.0
-2014-12-12 21:00:00,13168.0
-2014-12-12 22:00:00,12840.0
-2014-12-12 23:00:00,12428.0
-2014-12-13 00:00:00,11647.0
-2014-12-11 01:00:00,10971.0
-2014-12-11 02:00:00,10429.0
-2014-12-11 03:00:00,10125.0
-2014-12-11 04:00:00,9967.0
-2014-12-11 05:00:00,9939.0
-2014-12-11 06:00:00,10225.0
-2014-12-11 07:00:00,11011.0
-2014-12-11 08:00:00,12198.0
-2014-12-11 09:00:00,12762.0
-2014-12-11 10:00:00,12853.0
-2014-12-11 11:00:00,12845.0
-2014-12-11 12:00:00,12774.0
-2014-12-11 13:00:00,12665.0
-2014-12-11 14:00:00,12487.0
-2014-12-11 15:00:00,12421.0
-2014-12-11 16:00:00,12307.0
-2014-12-11 17:00:00,12373.0
-2014-12-11 18:00:00,13257.0
-2014-12-11 19:00:00,13900.0
-2014-12-11 20:00:00,13794.0
-2014-12-11 21:00:00,13600.0
-2014-12-11 22:00:00,13344.0
-2014-12-11 23:00:00,12872.0
-2014-12-12 00:00:00,12006.0
-2014-12-10 01:00:00,10838.0
-2014-12-10 02:00:00,10289.0
-2014-12-10 03:00:00,9969.0
-2014-12-10 04:00:00,9789.0
-2014-12-10 05:00:00,9810.0
-2014-12-10 06:00:00,10044.0
-2014-12-10 07:00:00,10811.0
-2014-12-10 08:00:00,11943.0
-2014-12-10 09:00:00,12548.0
-2014-12-10 10:00:00,12645.0
-2014-12-10 11:00:00,12740.0
-2014-12-10 12:00:00,12800.0
-2014-12-10 13:00:00,12747.0
-2014-12-10 14:00:00,12687.0
-2014-12-10 15:00:00,12695.0
-2014-12-10 16:00:00,12691.0
-2014-12-10 17:00:00,12842.0
-2014-12-10 18:00:00,13593.0
-2014-12-10 19:00:00,13963.0
-2014-12-10 20:00:00,13751.0
-2014-12-10 21:00:00,13530.0
-2014-12-10 22:00:00,13225.0
-2014-12-10 23:00:00,12705.0
-2014-12-11 00:00:00,11819.0
-2014-12-09 01:00:00,10740.0
-2014-12-09 02:00:00,10158.0
-2014-12-09 03:00:00,9819.0
-2014-12-09 04:00:00,9683.0
-2014-12-09 05:00:00,9675.0
-2014-12-09 06:00:00,9926.0
-2014-12-09 07:00:00,10651.0
-2014-12-09 08:00:00,11792.0
-2014-12-09 09:00:00,12465.0
-2014-12-09 10:00:00,12576.0
-2014-12-09 11:00:00,12591.0
-2014-12-09 12:00:00,12618.0
-2014-12-09 13:00:00,12567.0
-2014-12-09 14:00:00,12465.0
-2014-12-09 15:00:00,12505.0
-2014-12-09 16:00:00,12503.0
-2014-12-09 17:00:00,12637.0
-2014-12-09 18:00:00,13383.0
-2014-12-09 19:00:00,13747.0
-2014-12-09 20:00:00,13623.0
-2014-12-09 21:00:00,13441.0
-2014-12-09 22:00:00,13140.0
-2014-12-09 23:00:00,12573.0
-2014-12-10 00:00:00,11678.0
-2014-12-08 01:00:00,10345.0
-2014-12-08 02:00:00,9863.0
-2014-12-08 03:00:00,9641.0
-2014-12-08 04:00:00,9557.0
-2014-12-08 05:00:00,9579.0
-2014-12-08 06:00:00,9899.0
-2014-12-08 07:00:00,10734.0
-2014-12-08 08:00:00,11889.0
-2014-12-08 09:00:00,12623.0
-2014-12-08 10:00:00,12742.0
-2014-12-08 11:00:00,12859.0
-2014-12-08 12:00:00,12926.0
-2014-12-08 13:00:00,12891.0
-2014-12-08 14:00:00,12843.0
-2014-12-08 15:00:00,12809.0
-2014-12-08 16:00:00,12793.0
-2014-12-08 17:00:00,12963.0
-2014-12-08 18:00:00,13562.0
-2014-12-08 19:00:00,13812.0
-2014-12-08 20:00:00,13603.0
-2014-12-08 21:00:00,13360.0
-2014-12-08 22:00:00,13087.0
-2014-12-08 23:00:00,12522.0
-2014-12-09 00:00:00,11607.0
-2014-12-07 01:00:00,10463.0
-2014-12-07 02:00:00,9963.0
-2014-12-07 03:00:00,9581.0
-2014-12-07 04:00:00,9453.0
-2014-12-07 05:00:00,9372.0
-2014-12-07 06:00:00,9396.0
-2014-12-07 07:00:00,9604.0
-2014-12-07 08:00:00,9862.0
-2014-12-07 09:00:00,9976.0
-2014-12-07 10:00:00,10181.0
-2014-12-07 11:00:00,10432.0
-2014-12-07 12:00:00,10487.0
-2014-12-07 13:00:00,10473.0
-2014-12-07 14:00:00,10491.0
-2014-12-07 15:00:00,10507.0
-2014-12-07 16:00:00,10607.0
-2014-12-07 17:00:00,10861.0
-2014-12-07 18:00:00,11783.0
-2014-12-07 19:00:00,12348.0
-2014-12-07 20:00:00,12379.0
-2014-12-07 21:00:00,12351.0
-2014-12-07 22:00:00,12144.0
-2014-12-07 23:00:00,11733.0
-2014-12-08 00:00:00,11013.0
-2014-12-06 01:00:00,10541.0
-2014-12-06 02:00:00,9952.0
-2014-12-06 03:00:00,9587.0
-2014-12-06 04:00:00,9438.0
-2014-12-06 05:00:00,9383.0
-2014-12-06 06:00:00,9472.0
-2014-12-06 07:00:00,9783.0
-2014-12-06 08:00:00,10314.0
-2014-12-06 09:00:00,10756.0
-2014-12-06 10:00:00,11031.0
-2014-12-06 11:00:00,11251.0
-2014-12-06 12:00:00,11281.0
-2014-12-06 13:00:00,11125.0
-2014-12-06 14:00:00,10930.0
-2014-12-06 15:00:00,10719.0
-2014-12-06 16:00:00,10697.0
-2014-12-06 17:00:00,10752.0
-2014-12-06 18:00:00,11613.0
-2014-12-06 19:00:00,12233.0
-2014-12-06 20:00:00,12192.0
-2014-12-06 21:00:00,12063.0
-2014-12-06 22:00:00,11913.0
-2014-12-06 23:00:00,11619.0
-2014-12-07 00:00:00,11101.0
-2014-12-05 01:00:00,10859.0
-2014-12-05 02:00:00,10271.0
-2014-12-05 03:00:00,9934.0
-2014-12-05 04:00:00,9711.0
-2014-12-05 05:00:00,9676.0
-2014-12-05 06:00:00,9926.0
-2014-12-05 07:00:00,10619.0
-2014-12-05 08:00:00,11768.0
-2014-12-05 09:00:00,12346.0
-2014-12-05 10:00:00,12445.0
-2014-12-05 11:00:00,12579.0
-2014-12-05 12:00:00,12597.0
-2014-12-05 13:00:00,12525.0
-2014-12-05 14:00:00,12375.0
-2014-12-05 15:00:00,12218.0
-2014-12-05 16:00:00,12178.0
-2014-12-05 17:00:00,12149.0
-2014-12-05 18:00:00,12867.0
-2014-12-05 19:00:00,13207.0
-2014-12-05 20:00:00,13024.0
-2014-12-05 21:00:00,12801.0
-2014-12-05 22:00:00,12444.0
-2014-12-05 23:00:00,12077.0
-2014-12-06 00:00:00,11363.0
-2014-12-04 01:00:00,11043.0
-2014-12-04 02:00:00,10522.0
-2014-12-04 03:00:00,10226.0
-2014-12-04 04:00:00,10111.0
-2014-12-04 05:00:00,10118.0
-2014-12-04 06:00:00,10382.0
-2014-12-04 07:00:00,11142.0
-2014-12-04 08:00:00,12301.0
-2014-12-04 09:00:00,12756.0
-2014-12-04 10:00:00,12747.0
-2014-12-04 11:00:00,12617.0
-2014-12-04 12:00:00,12606.0
-2014-12-04 13:00:00,12539.0
-2014-12-04 14:00:00,12531.0
-2014-12-04 15:00:00,12612.0
-2014-12-04 16:00:00,12545.0
-2014-12-04 17:00:00,12661.0
-2014-12-04 18:00:00,13411.0
-2014-12-04 19:00:00,13770.0
-2014-12-04 20:00:00,13574.0
-2014-12-04 21:00:00,13367.0
-2014-12-04 22:00:00,13061.0
-2014-12-04 23:00:00,12504.0
-2014-12-05 00:00:00,11654.0
-2014-12-03 01:00:00,11000.0
-2014-12-03 02:00:00,10492.0
-2014-12-03 03:00:00,10205.0
-2014-12-03 04:00:00,10090.0
-2014-12-03 05:00:00,10106.0
-2014-12-03 06:00:00,10407.0
-2014-12-03 07:00:00,11168.0
-2014-12-03 08:00:00,12343.0
-2014-12-03 09:00:00,12778.0
-2014-12-03 10:00:00,12716.0
-2014-12-03 11:00:00,12670.0
-2014-12-03 12:00:00,12646.0
-2014-12-03 13:00:00,12504.0
-2014-12-03 14:00:00,12370.0
-2014-12-03 15:00:00,12323.0
-2014-12-03 16:00:00,12192.0
-2014-12-03 17:00:00,12242.0
-2014-12-03 18:00:00,13129.0
-2014-12-03 19:00:00,13763.0
-2014-12-03 20:00:00,13631.0
-2014-12-03 21:00:00,13469.0
-2014-12-03 22:00:00,13227.0
-2014-12-03 23:00:00,12657.0
-2014-12-04 00:00:00,11809.0
-2014-12-02 01:00:00,11384.0
-2014-12-02 02:00:00,10872.0
-2014-12-02 03:00:00,10546.0
-2014-12-02 04:00:00,10433.0
-2014-12-02 05:00:00,10418.0
-2014-12-02 06:00:00,10679.0
-2014-12-02 07:00:00,11449.0
-2014-12-02 08:00:00,12563.0
-2014-12-02 09:00:00,12991.0
-2014-12-02 10:00:00,12958.0
-2014-12-02 11:00:00,12836.0
-2014-12-02 12:00:00,12839.0
-2014-12-02 13:00:00,12730.0
-2014-12-02 14:00:00,12629.0
-2014-12-02 15:00:00,12660.0
-2014-12-02 16:00:00,12607.0
-2014-12-02 17:00:00,12770.0
-2014-12-02 18:00:00,13545.0
-2014-12-02 19:00:00,13958.0
-2014-12-02 20:00:00,13781.0
-2014-12-02 21:00:00,13560.0
-2014-12-02 22:00:00,13226.0
-2014-12-02 23:00:00,12704.0
-2014-12-03 00:00:00,11823.0
-2014-12-01 01:00:00,10074.0
-2014-12-01 02:00:00,9764.0
-2014-12-01 03:00:00,9646.0
-2014-12-01 04:00:00,9593.0
-2014-12-01 05:00:00,9689.0
-2014-12-01 06:00:00,10089.0
-2014-12-01 07:00:00,10905.0
-2014-12-01 08:00:00,12188.0
-2014-12-01 09:00:00,12824.0
-2014-12-01 10:00:00,12999.0
-2014-12-01 11:00:00,13032.0
-2014-12-01 12:00:00,13082.0
-2014-12-01 13:00:00,13097.0
-2014-12-01 14:00:00,13055.0
-2014-12-01 15:00:00,13168.0
-2014-12-01 16:00:00,13180.0
-2014-12-01 17:00:00,13289.0
-2014-12-01 18:00:00,14029.0
-2014-12-01 19:00:00,14494.0
-2014-12-01 20:00:00,14378.0
-2014-12-01 21:00:00,14155.0
-2014-12-01 22:00:00,13828.0
-2014-12-01 23:00:00,13199.0
-2014-12-02 00:00:00,12238.0
-2014-11-30 01:00:00,9460.0
-2014-11-30 02:00:00,8953.0
-2014-11-30 03:00:00,8641.0
-2014-11-30 04:00:00,8407.0
-2014-11-30 05:00:00,8310.0
-2014-11-30 06:00:00,8303.0
-2014-11-30 07:00:00,8508.0
-2014-11-30 08:00:00,8725.0
-2014-11-30 09:00:00,8725.0
-2014-11-30 10:00:00,8943.0
-2014-11-30 11:00:00,9188.0
-2014-11-30 12:00:00,9383.0
-2014-11-30 13:00:00,9544.0
-2014-11-30 14:00:00,9793.0
-2014-11-30 15:00:00,10044.0
-2014-11-30 16:00:00,10280.0
-2014-11-30 17:00:00,10570.0
-2014-11-30 18:00:00,11324.0
-2014-11-30 19:00:00,11788.0
-2014-11-30 20:00:00,11835.0
-2014-11-30 21:00:00,11737.0
-2014-11-30 22:00:00,11523.0
-2014-11-30 23:00:00,11176.0
-2014-12-01 00:00:00,10582.0
-2014-11-29 01:00:00,10104.0
-2014-11-29 02:00:00,9661.0
-2014-11-29 03:00:00,9382.0
-2014-11-29 04:00:00,9205.0
-2014-11-29 05:00:00,9123.0
-2014-11-29 06:00:00,9180.0
-2014-11-29 07:00:00,9425.0
-2014-11-29 08:00:00,9819.0
-2014-11-29 09:00:00,9964.0
-2014-11-29 10:00:00,10137.0
-2014-11-29 11:00:00,10259.0
-2014-11-29 12:00:00,10258.0
-2014-11-29 13:00:00,10210.0
-2014-11-29 14:00:00,10083.0
-2014-11-29 15:00:00,9868.0
-2014-11-29 16:00:00,9781.0
-2014-11-29 17:00:00,9896.0
-2014-11-29 18:00:00,10664.0
-2014-11-29 19:00:00,11211.0
-2014-11-29 20:00:00,11117.0
-2014-11-29 21:00:00,10965.0
-2014-11-29 22:00:00,10768.0
-2014-11-29 23:00:00,10486.0
-2014-11-30 00:00:00,10018.0
-2014-11-28 01:00:00,10309.0
-2014-11-28 02:00:00,10002.0
-2014-11-28 03:00:00,9778.0
-2014-11-28 04:00:00,9653.0
-2014-11-28 05:00:00,9653.0
-2014-11-28 06:00:00,9804.0
-2014-11-28 07:00:00,10215.0
-2014-11-28 08:00:00,10757.0
-2014-11-28 09:00:00,10984.0
-2014-11-28 10:00:00,11167.0
-2014-11-28 11:00:00,11373.0
-2014-11-28 12:00:00,11390.0
-2014-11-28 13:00:00,11290.0
-2014-11-28 14:00:00,11323.0
-2014-11-28 15:00:00,11240.0
-2014-11-28 16:00:00,11199.0
-2014-11-28 17:00:00,11347.0
-2014-11-28 18:00:00,12007.0
-2014-11-28 19:00:00,12366.0
-2014-11-28 20:00:00,12111.0
-2014-11-28 21:00:00,11884.0
-2014-11-28 22:00:00,11595.0
-2014-11-28 23:00:00,11266.0
-2014-11-29 00:00:00,10710.0
-2014-11-27 01:00:00,10691.0
-2014-11-27 02:00:00,10138.0
-2014-11-27 03:00:00,9845.0
-2014-11-27 04:00:00,9680.0
-2014-11-27 05:00:00,9579.0
-2014-11-27 06:00:00,9615.0
-2014-11-27 07:00:00,9789.0
-2014-11-27 08:00:00,10029.0
-2014-11-27 09:00:00,10059.0
-2014-11-27 10:00:00,10271.0
-2014-11-27 11:00:00,10435.0
-2014-11-27 12:00:00,10640.0
-2014-11-27 13:00:00,10747.0
-2014-11-27 14:00:00,10696.0
-2014-11-27 15:00:00,10623.0
-2014-11-27 16:00:00,10510.0
-2014-11-27 17:00:00,10476.0
-2014-11-27 18:00:00,10913.0
-2014-11-27 19:00:00,11178.0
-2014-11-27 20:00:00,11120.0
-2014-11-27 21:00:00,11078.0
-2014-11-27 22:00:00,11057.0
-2014-11-27 23:00:00,10972.0
-2014-11-28 00:00:00,10681.0
-2014-11-26 01:00:00,11240.0
-2014-11-26 02:00:00,10720.0
-2014-11-26 03:00:00,10449.0
-2014-11-26 04:00:00,10285.0
-2014-11-26 05:00:00,10285.0
-2014-11-26 06:00:00,10523.0
-2014-11-26 07:00:00,11164.0
-2014-11-26 08:00:00,12046.0
-2014-11-26 09:00:00,12480.0
-2014-11-26 10:00:00,12782.0
-2014-11-26 11:00:00,12910.0
-2014-11-26 12:00:00,13009.0
-2014-11-26 13:00:00,12937.0
-2014-11-26 14:00:00,12857.0
-2014-11-26 15:00:00,12831.0
-2014-11-26 16:00:00,12749.0
-2014-11-26 17:00:00,12680.0
-2014-11-26 18:00:00,13191.0
-2014-11-26 19:00:00,13455.0
-2014-11-26 20:00:00,13179.0
-2014-11-26 21:00:00,12904.0
-2014-11-26 22:00:00,12567.0
-2014-11-26 23:00:00,12120.0
-2014-11-27 00:00:00,11416.0
-2014-11-25 01:00:00,10967.0
-2014-11-25 02:00:00,10474.0
-2014-11-25 03:00:00,10204.0
-2014-11-25 04:00:00,10071.0
-2014-11-25 05:00:00,10093.0
-2014-11-25 06:00:00,10380.0
-2014-11-25 07:00:00,11092.0
-2014-11-25 08:00:00,12174.0
-2014-11-25 09:00:00,12641.0
-2014-11-25 10:00:00,12841.0
-2014-11-25 11:00:00,12807.0
-2014-11-25 12:00:00,12701.0
-2014-11-25 13:00:00,12590.0
-2014-11-25 14:00:00,12486.0
-2014-11-25 15:00:00,12487.0
-2014-11-25 16:00:00,12467.0
-2014-11-25 17:00:00,12569.0
-2014-11-25 18:00:00,13241.0
-2014-11-25 19:00:00,13790.0
-2014-11-25 20:00:00,13655.0
-2014-11-25 21:00:00,13449.0
-2014-11-25 22:00:00,13179.0
-2014-11-25 23:00:00,12683.0
-2014-11-26 00:00:00,11947.0
-2014-11-24 01:00:00,9230.0
-2014-11-24 02:00:00,8822.0
-2014-11-24 03:00:00,8645.0
-2014-11-24 04:00:00,8512.0
-2014-11-24 05:00:00,8581.0
-2014-11-24 06:00:00,8838.0
-2014-11-24 07:00:00,9618.0
-2014-11-24 08:00:00,10800.0
-2014-11-24 09:00:00,11578.0
-2014-11-24 10:00:00,11837.0
-2014-11-24 11:00:00,12095.0
-2014-11-24 12:00:00,12435.0
-2014-11-24 13:00:00,12633.0
-2014-11-24 14:00:00,12633.0
-2014-11-24 15:00:00,12685.0
-2014-11-24 16:00:00,12767.0
-2014-11-24 17:00:00,12856.0
-2014-11-24 18:00:00,13485.0
-2014-11-24 19:00:00,13818.0
-2014-11-24 20:00:00,13650.0
-2014-11-24 21:00:00,13446.0
-2014-11-24 22:00:00,13124.0
-2014-11-24 23:00:00,12597.0
-2014-11-25 00:00:00,11773.0
-2014-11-23 01:00:00,9513.0
-2014-11-23 02:00:00,9078.0
-2014-11-23 03:00:00,8748.0
-2014-11-23 04:00:00,8560.0
-2014-11-23 05:00:00,8442.0
-2014-11-23 06:00:00,8461.0
-2014-11-23 07:00:00,8591.0
-2014-11-23 08:00:00,8808.0
-2014-11-23 09:00:00,8961.0
-2014-11-23 10:00:00,9306.0
-2014-11-23 11:00:00,9558.0
-2014-11-23 12:00:00,9692.0
-2014-11-23 13:00:00,9753.0
-2014-11-23 14:00:00,9846.0
-2014-11-23 15:00:00,9899.0
-2014-11-23 16:00:00,10011.0
-2014-11-23 17:00:00,10231.0
-2014-11-23 18:00:00,10888.0
-2014-11-23 19:00:00,11174.0
-2014-11-23 20:00:00,11068.0
-2014-11-23 21:00:00,10961.0
-2014-11-23 22:00:00,10690.0
-2014-11-23 23:00:00,10366.0
-2014-11-24 00:00:00,9756.0
-2014-11-22 01:00:00,10973.0
-2014-11-22 02:00:00,10412.0
-2014-11-22 03:00:00,10131.0
-2014-11-22 04:00:00,9911.0
-2014-11-22 05:00:00,9845.0
-2014-11-22 06:00:00,9910.0
-2014-11-22 07:00:00,10161.0
-2014-11-22 08:00:00,10566.0
-2014-11-22 09:00:00,10851.0
-2014-11-22 10:00:00,11163.0
-2014-11-22 11:00:00,11389.0
-2014-11-22 12:00:00,11470.0
-2014-11-22 13:00:00,11408.0
-2014-11-22 14:00:00,11246.0
-2014-11-22 15:00:00,10954.0
-2014-11-22 16:00:00,10831.0
-2014-11-22 17:00:00,10863.0
-2014-11-22 18:00:00,11259.0
-2014-11-22 19:00:00,11554.0
-2014-11-22 20:00:00,11424.0
-2014-11-22 21:00:00,11202.0
-2014-11-22 22:00:00,10967.0
-2014-11-22 23:00:00,10607.0
-2014-11-23 00:00:00,10069.0
-2014-11-21 01:00:00,11469.0
-2014-11-21 02:00:00,11073.0
-2014-11-21 03:00:00,10819.0
-2014-11-21 04:00:00,10711.0
-2014-11-21 05:00:00,10755.0
-2014-11-21 06:00:00,11055.0
-2014-11-21 07:00:00,11818.0
-2014-11-21 08:00:00,12856.0
-2014-11-21 09:00:00,13116.0
-2014-11-21 10:00:00,13135.0
-2014-11-21 11:00:00,13009.0
-2014-11-21 12:00:00,12947.0
-2014-11-21 13:00:00,12790.0
-2014-11-21 14:00:00,12670.0
-2014-11-21 15:00:00,12518.0
-2014-11-21 16:00:00,12359.0
-2014-11-21 17:00:00,12335.0
-2014-11-21 18:00:00,13006.0
-2014-11-21 19:00:00,13525.0
-2014-11-21 20:00:00,13402.0
-2014-11-21 21:00:00,13149.0
-2014-11-21 22:00:00,12770.0
-2014-11-21 23:00:00,12378.0
-2014-11-22 00:00:00,11655.0
-2014-11-20 01:00:00,11345.0
-2014-11-20 02:00:00,10942.0
-2014-11-20 03:00:00,10700.0
-2014-11-20 04:00:00,10614.0
-2014-11-20 05:00:00,10628.0
-2014-11-20 06:00:00,10941.0
-2014-11-20 07:00:00,11664.0
-2014-11-20 08:00:00,12713.0
-2014-11-20 09:00:00,13019.0
-2014-11-20 10:00:00,13025.0
-2014-11-20 11:00:00,12999.0
-2014-11-20 12:00:00,13001.0
-2014-11-20 13:00:00,12933.0
-2014-11-20 14:00:00,12826.0
-2014-11-20 15:00:00,12793.0
-2014-11-20 16:00:00,12698.0
-2014-11-20 17:00:00,12739.0
-2014-11-20 18:00:00,13383.0
-2014-11-20 19:00:00,13997.0
-2014-11-20 20:00:00,13876.0
-2014-11-20 21:00:00,13695.0
-2014-11-20 22:00:00,13425.0
-2014-11-20 23:00:00,12946.0
-2014-11-21 00:00:00,12168.0
-2014-11-19 01:00:00,11668.0
-2014-11-19 02:00:00,11225.0
-2014-11-19 03:00:00,10974.0
-2014-11-19 04:00:00,10818.0
-2014-11-19 05:00:00,10808.0
-2014-11-19 06:00:00,11025.0
-2014-11-19 07:00:00,11706.0
-2014-11-19 08:00:00,12744.0
-2014-11-19 09:00:00,13146.0
-2014-11-19 10:00:00,13196.0
-2014-11-19 11:00:00,13080.0
-2014-11-19 12:00:00,13068.0
-2014-11-19 13:00:00,13111.0
-2014-11-19 14:00:00,13155.0
-2014-11-19 15:00:00,13314.0
-2014-11-19 16:00:00,13346.0
-2014-11-19 17:00:00,13384.0
-2014-11-19 18:00:00,13969.0
-2014-11-19 19:00:00,14310.0
-2014-11-19 20:00:00,14087.0
-2014-11-19 21:00:00,13855.0
-2014-11-19 22:00:00,13503.0
-2014-11-19 23:00:00,12856.0
-2014-11-20 00:00:00,12089.0
-2014-11-18 01:00:00,11859.0
-2014-11-18 02:00:00,11458.0
-2014-11-18 03:00:00,11205.0
-2014-11-18 04:00:00,11102.0
-2014-11-18 05:00:00,11115.0
-2014-11-18 06:00:00,11363.0
-2014-11-18 07:00:00,12098.0
-2014-11-18 08:00:00,13146.0
-2014-11-18 09:00:00,13527.0
-2014-11-18 10:00:00,13590.0
-2014-11-18 11:00:00,13621.0
-2014-11-18 12:00:00,13687.0
-2014-11-18 13:00:00,13654.0
-2014-11-18 14:00:00,13615.0
-2014-11-18 15:00:00,13633.0
-2014-11-18 16:00:00,13537.0
-2014-11-18 17:00:00,13699.0
-2014-11-18 18:00:00,14299.0
-2014-11-18 19:00:00,14653.0
-2014-11-18 20:00:00,14441.0
-2014-11-18 21:00:00,14204.0
-2014-11-18 22:00:00,13848.0
-2014-11-18 23:00:00,13246.0
-2014-11-19 00:00:00,12418.0
-2014-11-17 01:00:00,10263.0
-2014-11-17 02:00:00,10002.0
-2014-11-17 03:00:00,9922.0
-2014-11-17 04:00:00,9880.0
-2014-11-17 05:00:00,10080.0
-2014-11-17 06:00:00,10431.0
-2014-11-17 07:00:00,11302.0
-2014-11-17 08:00:00,12420.0
-2014-11-17 09:00:00,12958.0
-2014-11-17 10:00:00,13041.0
-2014-11-17 11:00:00,13071.0
-2014-11-17 12:00:00,13064.0
-2014-11-17 13:00:00,13125.0
-2014-11-17 14:00:00,13235.0
-2014-11-17 15:00:00,13399.0
-2014-11-17 16:00:00,13419.0
-2014-11-17 17:00:00,13548.0
-2014-11-17 18:00:00,14166.0
-2014-11-17 19:00:00,14623.0
-2014-11-17 20:00:00,14507.0
-2014-11-17 21:00:00,14339.0
-2014-11-17 22:00:00,14006.0
-2014-11-17 23:00:00,13429.0
-2014-11-18 00:00:00,12606.0
-2014-11-16 01:00:00,10153.0
-2014-11-16 02:00:00,9749.0
-2014-11-16 03:00:00,9497.0
-2014-11-16 04:00:00,9322.0
-2014-11-16 05:00:00,9275.0
-2014-11-16 06:00:00,9320.0
-2014-11-16 07:00:00,9467.0
-2014-11-16 08:00:00,9709.0
-2014-11-16 09:00:00,9767.0
-2014-11-16 10:00:00,10139.0
-2014-11-16 11:00:00,10408.0
-2014-11-16 12:00:00,10563.0
-2014-11-16 13:00:00,10645.0
-2014-11-16 14:00:00,10673.0
-2014-11-16 15:00:00,10714.0
-2014-11-16 16:00:00,10801.0
-2014-11-16 17:00:00,10985.0
-2014-11-16 18:00:00,11523.0
-2014-11-16 19:00:00,11938.0
-2014-11-16 20:00:00,11866.0
-2014-11-16 21:00:00,11782.0
-2014-11-16 22:00:00,11539.0
-2014-11-16 23:00:00,11223.0
-2014-11-17 00:00:00,10669.0
-2014-11-15 01:00:00,10650.0
-2014-11-15 02:00:00,10243.0
-2014-11-15 03:00:00,10036.0
-2014-11-15 04:00:00,9834.0
-2014-11-15 05:00:00,9794.0
-2014-11-15 06:00:00,9914.0
-2014-11-15 07:00:00,10255.0
-2014-11-15 08:00:00,10662.0
-2014-11-15 09:00:00,10860.0
-2014-11-15 10:00:00,11029.0
-2014-11-15 11:00:00,11125.0
-2014-11-15 12:00:00,11148.0
-2014-11-15 13:00:00,11128.0
-2014-11-15 14:00:00,10951.0
-2014-11-15 15:00:00,10847.0
-2014-11-15 16:00:00,10792.0
-2014-11-15 17:00:00,10981.0
-2014-11-15 18:00:00,11581.0
-2014-11-15 19:00:00,11975.0
-2014-11-15 20:00:00,11857.0
-2014-11-15 21:00:00,11779.0
-2014-11-15 22:00:00,11541.0
-2014-11-15 23:00:00,11228.0
-2014-11-16 00:00:00,10689.0
-2014-11-14 01:00:00,10712.0
-2014-11-14 02:00:00,10238.0
-2014-11-14 03:00:00,9953.0
-2014-11-14 04:00:00,9845.0
-2014-11-14 05:00:00,9814.0
-2014-11-14 06:00:00,10094.0
-2014-11-14 07:00:00,10838.0
-2014-11-14 08:00:00,11843.0
-2014-11-14 09:00:00,12284.0
-2014-11-14 10:00:00,12457.0
-2014-11-14 11:00:00,12449.0
-2014-11-14 12:00:00,12490.0
-2014-11-14 13:00:00,12551.0
-2014-11-14 14:00:00,12510.0
-2014-11-14 15:00:00,12519.0
-2014-11-14 16:00:00,12454.0
-2014-11-14 17:00:00,12440.0
-2014-11-14 18:00:00,12929.0
-2014-11-14 19:00:00,13257.0
-2014-11-14 20:00:00,13053.0
-2014-11-14 21:00:00,12780.0
-2014-11-14 22:00:00,12479.0
-2014-11-14 23:00:00,12050.0
-2014-11-15 00:00:00,11298.0
-2014-11-13 01:00:00,10551.0
-2014-11-13 02:00:00,10117.0
-2014-11-13 03:00:00,9838.0
-2014-11-13 04:00:00,9706.0
-2014-11-13 05:00:00,9696.0
-2014-11-13 06:00:00,9987.0
-2014-11-13 07:00:00,10775.0
-2014-11-13 08:00:00,11881.0
-2014-11-13 09:00:00,12287.0
-2014-11-13 10:00:00,12423.0
-2014-11-13 11:00:00,12498.0
-2014-11-13 12:00:00,12630.0
-2014-11-13 13:00:00,12694.0
-2014-11-13 14:00:00,12655.0
-2014-11-13 15:00:00,12664.0
-2014-11-13 16:00:00,12656.0
-2014-11-13 17:00:00,12602.0
-2014-11-13 18:00:00,13062.0
-2014-11-13 19:00:00,13464.0
-2014-11-13 20:00:00,13317.0
-2014-11-13 21:00:00,13087.0
-2014-11-13 22:00:00,12736.0
-2014-11-13 23:00:00,12184.0
-2014-11-14 00:00:00,11408.0
-2014-11-12 01:00:00,10207.0
-2014-11-12 02:00:00,9685.0
-2014-11-12 03:00:00,9439.0
-2014-11-12 04:00:00,9309.0
-2014-11-12 05:00:00,9335.0
-2014-11-12 06:00:00,9643.0
-2014-11-12 07:00:00,10396.0
-2014-11-12 08:00:00,11476.0
-2014-11-12 09:00:00,11860.0
-2014-11-12 10:00:00,12006.0
-2014-11-12 11:00:00,12216.0
-2014-11-12 12:00:00,12387.0
-2014-11-12 13:00:00,12316.0
-2014-11-12 14:00:00,12126.0
-2014-11-12 15:00:00,12188.0
-2014-11-12 16:00:00,12190.0
-2014-11-12 17:00:00,12335.0
-2014-11-12 18:00:00,12860.0
-2014-11-12 19:00:00,13380.0
-2014-11-12 20:00:00,13181.0
-2014-11-12 21:00:00,12936.0
-2014-11-12 22:00:00,12626.0
-2014-11-12 23:00:00,12014.0
-2014-11-13 00:00:00,11292.0
-2014-11-11 01:00:00,9376.0
-2014-11-11 02:00:00,8891.0
-2014-11-11 03:00:00,8578.0
-2014-11-11 04:00:00,8353.0
-2014-11-11 05:00:00,8342.0
-2014-11-11 06:00:00,8558.0
-2014-11-11 07:00:00,9213.0
-2014-11-11 08:00:00,10235.0
-2014-11-11 09:00:00,10854.0
-2014-11-11 10:00:00,11327.0
-2014-11-11 11:00:00,11709.0
-2014-11-11 12:00:00,11807.0
-2014-11-11 13:00:00,11808.0
-2014-11-11 14:00:00,11790.0
-2014-11-11 15:00:00,11847.0
-2014-11-11 16:00:00,11831.0
-2014-11-11 17:00:00,11936.0
-2014-11-11 18:00:00,12417.0
-2014-11-11 19:00:00,12810.0
-2014-11-11 20:00:00,12633.0
-2014-11-11 21:00:00,12428.0
-2014-11-11 22:00:00,12109.0
-2014-11-11 23:00:00,11563.0
-2014-11-12 00:00:00,10859.0
-2014-11-10 01:00:00,8898.0
-2014-11-10 02:00:00,8568.0
-2014-11-10 03:00:00,8359.0
-2014-11-10 04:00:00,8297.0
-2014-11-10 05:00:00,8303.0
-2014-11-10 06:00:00,8676.0
-2014-11-10 07:00:00,9482.0
-2014-11-10 08:00:00,10611.0
-2014-11-10 09:00:00,11098.0
-2014-11-10 10:00:00,11366.0
-2014-11-10 11:00:00,11441.0
-2014-11-10 12:00:00,11425.0
-2014-11-10 13:00:00,11358.0
-2014-11-10 14:00:00,11324.0
-2014-11-10 15:00:00,11305.0
-2014-11-10 16:00:00,11208.0
-2014-11-10 17:00:00,11121.0
-2014-11-10 18:00:00,11482.0
-2014-11-10 19:00:00,12159.0
-2014-11-10 20:00:00,11991.0
-2014-11-10 21:00:00,11728.0
-2014-11-10 22:00:00,11392.0
-2014-11-10 23:00:00,10814.0
-2014-11-11 00:00:00,10095.0
-2014-11-09 01:00:00,9279.0
-2014-11-09 02:00:00,8886.0
-2014-11-09 03:00:00,8627.0
-2014-11-09 04:00:00,8478.0
-2014-11-09 05:00:00,8465.0
-2014-11-09 06:00:00,8461.0
-2014-11-09 07:00:00,8662.0
-2014-11-09 08:00:00,8832.0
-2014-11-09 09:00:00,8943.0
-2014-11-09 10:00:00,9248.0
-2014-11-09 11:00:00,9504.0
-2014-11-09 12:00:00,9507.0
-2014-11-09 13:00:00,9538.0
-2014-11-09 14:00:00,9452.0
-2014-11-09 15:00:00,9414.0
-2014-11-09 16:00:00,9347.0
-2014-11-09 17:00:00,9349.0
-2014-11-09 18:00:00,10018.0
-2014-11-09 19:00:00,10717.0
-2014-11-09 20:00:00,10698.0
-2014-11-09 21:00:00,10539.0
-2014-11-09 22:00:00,10310.0
-2014-11-09 23:00:00,9914.0
-2014-11-10 00:00:00,9410.0
-2014-11-08 01:00:00,9790.0
-2014-11-08 02:00:00,9296.0
-2014-11-08 03:00:00,8978.0
-2014-11-08 04:00:00,8764.0
-2014-11-08 05:00:00,8679.0
-2014-11-08 06:00:00,8741.0
-2014-11-08 07:00:00,9044.0
-2014-11-08 08:00:00,9521.0
-2014-11-08 09:00:00,9873.0
-2014-11-08 10:00:00,10270.0
-2014-11-08 11:00:00,10455.0
-2014-11-08 12:00:00,10507.0
-2014-11-08 13:00:00,10462.0
-2014-11-08 14:00:00,10340.0
-2014-11-08 15:00:00,10122.0
-2014-11-08 16:00:00,9971.0
-2014-11-08 17:00:00,9875.0
-2014-11-08 18:00:00,10411.0
-2014-11-08 19:00:00,10997.0
-2014-11-08 20:00:00,10942.0
-2014-11-08 21:00:00,10700.0
-2014-11-08 22:00:00,10563.0
-2014-11-08 23:00:00,10252.0
-2014-11-09 00:00:00,9780.0
-2014-11-07 01:00:00,9717.0
-2014-11-07 02:00:00,9313.0
-2014-11-07 03:00:00,9069.0
-2014-11-07 04:00:00,8919.0
-2014-11-07 05:00:00,8922.0
-2014-11-07 06:00:00,9199.0
-2014-11-07 07:00:00,9956.0
-2014-11-07 08:00:00,10942.0
-2014-11-07 09:00:00,11348.0
-2014-11-07 10:00:00,11475.0
-2014-11-07 11:00:00,11473.0
-2014-11-07 12:00:00,11510.0
-2014-11-07 13:00:00,11417.0
-2014-11-07 14:00:00,11320.0
-2014-11-07 15:00:00,11328.0
-2014-11-07 16:00:00,11314.0
-2014-11-07 17:00:00,11324.0
-2014-11-07 18:00:00,11754.0
-2014-11-07 19:00:00,12263.0
-2014-11-07 20:00:00,12080.0
-2014-11-07 21:00:00,11849.0
-2014-11-07 22:00:00,11513.0
-2014-11-07 23:00:00,11083.0
-2014-11-08 00:00:00,10407.0
-2014-11-06 01:00:00,9376.0
-2014-11-06 02:00:00,8910.0
-2014-11-06 03:00:00,8631.0
-2014-11-06 04:00:00,8510.0
-2014-11-06 05:00:00,8481.0
-2014-11-06 06:00:00,8706.0
-2014-11-06 07:00:00,9464.0
-2014-11-06 08:00:00,10582.0
-2014-11-06 09:00:00,11179.0
-2014-11-06 10:00:00,11513.0
-2014-11-06 11:00:00,11685.0
-2014-11-06 12:00:00,11772.0
-2014-11-06 13:00:00,11752.0
-2014-11-06 14:00:00,11742.0
-2014-11-06 15:00:00,11830.0
-2014-11-06 16:00:00,11806.0
-2014-11-06 17:00:00,11886.0
-2014-11-06 18:00:00,12280.0
-2014-11-06 19:00:00,12639.0
-2014-11-06 20:00:00,12399.0
-2014-11-06 21:00:00,12154.0
-2014-11-06 22:00:00,11776.0
-2014-11-06 23:00:00,11207.0
-2014-11-07 00:00:00,10438.0
-2014-11-05 01:00:00,9517.0
-2014-11-05 02:00:00,9075.0
-2014-11-05 03:00:00,8836.0
-2014-11-05 04:00:00,8662.0
-2014-11-05 05:00:00,8653.0
-2014-11-05 06:00:00,8918.0
-2014-11-05 07:00:00,9707.0
-2014-11-05 08:00:00,10734.0
-2014-11-05 09:00:00,11117.0
-2014-11-05 10:00:00,11217.0
-2014-11-05 11:00:00,11244.0
-2014-11-05 12:00:00,11306.0
-2014-11-05 13:00:00,11287.0
-2014-11-05 14:00:00,11248.0
-2014-11-05 15:00:00,11272.0
-2014-11-05 16:00:00,11203.0
-2014-11-05 17:00:00,11179.0
-2014-11-05 18:00:00,11684.0
-2014-11-05 19:00:00,12177.0
-2014-11-05 20:00:00,11970.0
-2014-11-05 21:00:00,11732.0
-2014-11-05 22:00:00,11359.0
-2014-11-05 23:00:00,10799.0
-2014-11-06 00:00:00,10072.0
-2014-11-04 01:00:00,9324.0
-2014-11-04 02:00:00,8867.0
-2014-11-04 03:00:00,8564.0
-2014-11-04 04:00:00,8370.0
-2014-11-04 05:00:00,8407.0
-2014-11-04 06:00:00,8647.0
-2014-11-04 07:00:00,9362.0
-2014-11-04 08:00:00,10414.0
-2014-11-04 09:00:00,10966.0
-2014-11-04 10:00:00,11295.0
-2014-11-04 11:00:00,11384.0
-2014-11-04 12:00:00,11448.0
-2014-11-04 13:00:00,11383.0
-2014-11-04 14:00:00,11362.0
-2014-11-04 15:00:00,11351.0
-2014-11-04 16:00:00,11272.0
-2014-11-04 17:00:00,11272.0
-2014-11-04 18:00:00,11628.0
-2014-11-04 19:00:00,12209.0
-2014-11-04 20:00:00,12098.0
-2014-11-04 21:00:00,11883.0
-2014-11-04 22:00:00,11520.0
-2014-11-04 23:00:00,10952.0
-2014-11-05 00:00:00,10176.0
-2014-11-03 01:00:00,9009.0
-2014-11-03 02:00:00,8707.0
-2014-11-03 03:00:00,8510.0
-2014-11-03 04:00:00,8448.0
-2014-11-03 05:00:00,8560.0
-2014-11-03 06:00:00,8865.0
-2014-11-03 07:00:00,9760.0
-2014-11-03 08:00:00,10725.0
-2014-11-03 09:00:00,11259.0
-2014-11-03 10:00:00,11415.0
-2014-11-03 11:00:00,11466.0
-2014-11-03 12:00:00,11492.0
-2014-11-03 13:00:00,11478.0
-2014-11-03 14:00:00,11377.0
-2014-11-03 15:00:00,11374.0
-2014-11-03 16:00:00,11298.0
-2014-11-03 17:00:00,11323.0
-2014-11-03 18:00:00,11616.0
-2014-11-03 19:00:00,12221.0
-2014-11-03 20:00:00,12050.0
-2014-11-03 21:00:00,11812.0
-2014-11-03 22:00:00,11443.0
-2014-11-03 23:00:00,10824.0
-2014-11-04 00:00:00,10018.0
-2014-11-02 01:00:00,9573.0
-2014-11-02 02:00:00,8869.0
-2014-11-02 02:00:00,9184.0
-2014-11-02 03:00:00,8788.0
-2014-11-02 04:00:00,8678.0
-2014-11-02 05:00:00,8693.0
-2014-11-02 06:00:00,8725.0
-2014-11-02 07:00:00,8995.0
-2014-11-02 08:00:00,9110.0
-2014-11-02 09:00:00,9237.0
-2014-11-02 10:00:00,9445.0
-2014-11-02 11:00:00,9536.0
-2014-11-02 12:00:00,9501.0
-2014-11-02 13:00:00,9465.0
-2014-11-02 14:00:00,9417.0
-2014-11-02 15:00:00,9392.0
-2014-11-02 16:00:00,9365.0
-2014-11-02 17:00:00,9496.0
-2014-11-02 18:00:00,9927.0
-2014-11-02 19:00:00,10831.0
-2014-11-02 20:00:00,10868.0
-2014-11-02 21:00:00,10725.0
-2014-11-02 22:00:00,10441.0
-2014-11-02 23:00:00,10064.0
-2014-11-03 00:00:00,9472.0
-2014-11-01 01:00:00,9970.0
-2014-11-01 02:00:00,9413.0
-2014-11-01 03:00:00,9114.0
-2014-11-01 04:00:00,8907.0
-2014-11-01 05:00:00,8821.0
-2014-11-01 06:00:00,8852.0
-2014-11-01 07:00:00,9212.0
-2014-11-01 08:00:00,9694.0
-2014-11-01 09:00:00,10105.0
-2014-11-01 10:00:00,10312.0
-2014-11-01 11:00:00,10594.0
-2014-11-01 12:00:00,10614.0
-2014-11-01 13:00:00,10536.0
-2014-11-01 14:00:00,10349.0
-2014-11-01 15:00:00,10069.0
-2014-11-01 16:00:00,9878.0
-2014-11-01 17:00:00,9736.0
-2014-11-01 18:00:00,9767.0
-2014-11-01 19:00:00,10106.0
-2014-11-01 20:00:00,10900.0
-2014-11-01 21:00:00,10900.0
-2014-11-01 22:00:00,10797.0
-2014-11-01 23:00:00,10522.0
-2014-11-02 00:00:00,10105.0
-2014-10-31 01:00:00,9627.0
-2014-10-31 02:00:00,9049.0
-2014-10-31 03:00:00,8739.0
-2014-10-31 04:00:00,8607.0
-2014-10-31 05:00:00,8610.0
-2014-10-31 06:00:00,8831.0
-2014-10-31 07:00:00,9579.0
-2014-10-31 08:00:00,10826.0
-2014-10-31 09:00:00,11629.0
-2014-10-31 10:00:00,11717.0
-2014-10-31 11:00:00,11820.0
-2014-10-31 12:00:00,11928.0
-2014-10-31 13:00:00,11964.0
-2014-10-31 14:00:00,11892.0
-2014-10-31 15:00:00,11779.0
-2014-10-31 16:00:00,11672.0
-2014-10-31 17:00:00,11598.0
-2014-10-31 18:00:00,11603.0
-2014-10-31 19:00:00,11801.0
-2014-10-31 20:00:00,12211.0
-2014-10-31 21:00:00,12055.0
-2014-10-31 22:00:00,11735.0
-2014-10-31 23:00:00,11311.0
-2014-11-01 00:00:00,10676.0
-2014-10-30 01:00:00,9566.0
-2014-10-30 02:00:00,9099.0
-2014-10-30 03:00:00,8783.0
-2014-10-30 04:00:00,8659.0
-2014-10-30 05:00:00,8644.0
-2014-10-30 06:00:00,8859.0
-2014-10-30 07:00:00,9579.0
-2014-10-30 08:00:00,10823.0
-2014-10-30 09:00:00,11430.0
-2014-10-30 10:00:00,11400.0
-2014-10-30 11:00:00,11404.0
-2014-10-30 12:00:00,11392.0
-2014-10-30 13:00:00,11310.0
-2014-10-30 14:00:00,11275.0
-2014-10-30 15:00:00,11335.0
-2014-10-30 16:00:00,11210.0
-2014-10-30 17:00:00,11149.0
-2014-10-30 18:00:00,11201.0
-2014-10-30 19:00:00,11524.0
-2014-10-30 20:00:00,11968.0
-2014-10-30 21:00:00,11857.0
-2014-10-30 22:00:00,11586.0
-2014-10-30 23:00:00,11046.0
-2014-10-31 00:00:00,10297.0
-2014-10-29 01:00:00,9213.0
-2014-10-29 02:00:00,8728.0
-2014-10-29 03:00:00,8436.0
-2014-10-29 04:00:00,8319.0
-2014-10-29 05:00:00,8256.0
-2014-10-29 06:00:00,8489.0
-2014-10-29 07:00:00,9207.0
-2014-10-29 08:00:00,10403.0
-2014-10-29 09:00:00,11172.0
-2014-10-29 10:00:00,11254.0
-2014-10-29 11:00:00,11360.0
-2014-10-29 12:00:00,11462.0
-2014-10-29 13:00:00,11422.0
-2014-10-29 14:00:00,11365.0
-2014-10-29 15:00:00,11401.0
-2014-10-29 16:00:00,11279.0
-2014-10-29 17:00:00,11137.0
-2014-10-29 18:00:00,11090.0
-2014-10-29 19:00:00,11315.0
-2014-10-29 20:00:00,11871.0
-2014-10-29 21:00:00,11815.0
-2014-10-29 22:00:00,11547.0
-2014-10-29 23:00:00,11039.0
-2014-10-30 00:00:00,10304.0
-2014-10-28 01:00:00,9439.0
-2014-10-28 02:00:00,8887.0
-2014-10-28 03:00:00,8522.0
-2014-10-28 04:00:00,8315.0
-2014-10-28 05:00:00,8231.0
-2014-10-28 06:00:00,8349.0
-2014-10-28 07:00:00,8968.0
-2014-10-28 08:00:00,10073.0
-2014-10-28 09:00:00,10858.0
-2014-10-28 10:00:00,10975.0
-2014-10-28 11:00:00,11081.0
-2014-10-28 12:00:00,11194.0
-2014-10-28 13:00:00,11245.0
-2014-10-28 14:00:00,11216.0
-2014-10-28 15:00:00,11228.0
-2014-10-28 16:00:00,11134.0
-2014-10-28 17:00:00,11025.0
-2014-10-28 18:00:00,10947.0
-2014-10-28 19:00:00,11068.0
-2014-10-28 20:00:00,11584.0
-2014-10-28 21:00:00,11483.0
-2014-10-28 22:00:00,11182.0
-2014-10-28 23:00:00,10671.0
-2014-10-29 00:00:00,9952.0
-2014-10-27 01:00:00,8492.0
-2014-10-27 02:00:00,8101.0
-2014-10-27 03:00:00,7885.0
-2014-10-27 04:00:00,7777.0
-2014-10-27 05:00:00,7753.0
-2014-10-27 06:00:00,8030.0
-2014-10-27 07:00:00,8795.0
-2014-10-27 08:00:00,10055.0
-2014-10-27 09:00:00,10816.0
-2014-10-27 10:00:00,10929.0
-2014-10-27 11:00:00,11166.0
-2014-10-27 12:00:00,11502.0
-2014-10-27 13:00:00,11631.0
-2014-10-27 14:00:00,11715.0
-2014-10-27 15:00:00,11847.0
-2014-10-27 16:00:00,11899.0
-2014-10-27 17:00:00,11774.0
-2014-10-27 18:00:00,11631.0
-2014-10-27 19:00:00,11717.0
-2014-10-27 20:00:00,12201.0
-2014-10-27 21:00:00,12105.0
-2014-10-27 22:00:00,11741.0
-2014-10-27 23:00:00,11119.0
-2014-10-28 00:00:00,10237.0
-2014-10-26 01:00:00,8504.0
-2014-10-26 02:00:00,8027.0
-2014-10-26 03:00:00,7835.0
-2014-10-26 04:00:00,7644.0
-2014-10-26 05:00:00,7579.0
-2014-10-26 06:00:00,7578.0
-2014-10-26 07:00:00,7757.0
-2014-10-26 08:00:00,8006.0
-2014-10-26 09:00:00,8171.0
-2014-10-26 10:00:00,8368.0
-2014-10-26 11:00:00,8626.0
-2014-10-26 12:00:00,8754.0
-2014-10-26 13:00:00,8883.0
-2014-10-26 14:00:00,8889.0
-2014-10-26 15:00:00,8953.0
-2014-10-26 16:00:00,8899.0
-2014-10-26 17:00:00,8893.0
-2014-10-26 18:00:00,8925.0
-2014-10-26 19:00:00,9166.0
-2014-10-26 20:00:00,9953.0
-2014-10-26 21:00:00,10144.0
-2014-10-26 22:00:00,9933.0
-2014-10-26 23:00:00,9597.0
-2014-10-27 00:00:00,9074.0
-2014-10-25 01:00:00,9098.0
-2014-10-25 02:00:00,8608.0
-2014-10-25 03:00:00,8229.0
-2014-10-25 04:00:00,8041.0
-2014-10-25 05:00:00,7916.0
-2014-10-25 06:00:00,7980.0
-2014-10-25 07:00:00,8197.0
-2014-10-25 08:00:00,8698.0
-2014-10-25 09:00:00,8987.0
-2014-10-25 10:00:00,9308.0
-2014-10-25 11:00:00,9619.0
-2014-10-25 12:00:00,9818.0
-2014-10-25 13:00:00,9849.0
-2014-10-25 14:00:00,9835.0
-2014-10-25 15:00:00,9710.0
-2014-10-25 16:00:00,9608.0
-2014-10-25 17:00:00,9531.0
-2014-10-25 18:00:00,9483.0
-2014-10-25 19:00:00,9538.0
-2014-10-25 20:00:00,10079.0
-2014-10-25 21:00:00,10112.0
-2014-10-25 22:00:00,9900.0
-2014-10-25 23:00:00,9580.0
-2014-10-26 00:00:00,9019.0
-2014-10-24 01:00:00,9159.0
-2014-10-24 02:00:00,8684.0
-2014-10-24 03:00:00,8402.0
-2014-10-24 04:00:00,8186.0
-2014-10-24 05:00:00,8142.0
-2014-10-24 06:00:00,8337.0
-2014-10-24 07:00:00,9018.0
-2014-10-24 08:00:00,10152.0
-2014-10-24 09:00:00,10818.0
-2014-10-24 10:00:00,10947.0
-2014-10-24 11:00:00,10991.0
-2014-10-24 12:00:00,11180.0
-2014-10-24 13:00:00,11264.0
-2014-10-24 14:00:00,11167.0
-2014-10-24 15:00:00,11188.0
-2014-10-24 16:00:00,11145.0
-2014-10-24 17:00:00,11018.0
-2014-10-24 18:00:00,10844.0
-2014-10-24 19:00:00,10831.0
-2014-10-24 20:00:00,11324.0
-2014-10-24 21:00:00,11203.0
-2014-10-24 22:00:00,10847.0
-2014-10-24 23:00:00,10441.0
-2014-10-25 00:00:00,9822.0
-2014-10-23 01:00:00,9367.0
-2014-10-23 02:00:00,8905.0
-2014-10-23 03:00:00,8627.0
-2014-10-23 04:00:00,8463.0
-2014-10-23 05:00:00,8475.0
-2014-10-23 06:00:00,8698.0
-2014-10-23 07:00:00,9399.0
-2014-10-23 08:00:00,10625.0
-2014-10-23 09:00:00,11092.0
-2014-10-23 10:00:00,11162.0
-2014-10-23 11:00:00,11140.0
-2014-10-23 12:00:00,11202.0
-2014-10-23 13:00:00,10889.0
-2014-10-23 14:00:00,10916.0
-2014-10-23 15:00:00,11160.0
-2014-10-23 16:00:00,11066.0
-2014-10-23 17:00:00,10947.0
-2014-10-23 18:00:00,10917.0
-2014-10-23 19:00:00,11166.0
-2014-10-23 20:00:00,11611.0
-2014-10-23 21:00:00,11549.0
-2014-10-23 22:00:00,11251.0
-2014-10-23 23:00:00,10729.0
-2014-10-24 00:00:00,9944.0
-2014-10-22 01:00:00,9342.0
-2014-10-22 02:00:00,8854.0
-2014-10-22 03:00:00,8604.0
-2014-10-22 04:00:00,8445.0
-2014-10-22 05:00:00,8413.0
-2014-10-22 06:00:00,8650.0
-2014-10-22 07:00:00,9323.0
-2014-10-22 08:00:00,10530.0
-2014-10-22 09:00:00,11163.0
-2014-10-22 10:00:00,11187.0
-2014-10-22 11:00:00,11228.0
-2014-10-22 12:00:00,11217.0
-2014-10-22 13:00:00,11222.0
-2014-10-22 14:00:00,11166.0
-2014-10-22 15:00:00,11166.0
-2014-10-22 16:00:00,11075.0
-2014-10-22 17:00:00,10945.0
-2014-10-22 18:00:00,10859.0
-2014-10-22 19:00:00,10907.0
-2014-10-22 20:00:00,11519.0
-2014-10-22 21:00:00,11590.0
-2014-10-22 22:00:00,11328.0
-2014-10-22 23:00:00,10833.0
-2014-10-23 00:00:00,10093.0
-2014-10-21 01:00:00,9110.0
-2014-10-21 02:00:00,8618.0
-2014-10-21 03:00:00,8364.0
-2014-10-21 04:00:00,8194.0
-2014-10-21 05:00:00,8159.0
-2014-10-21 06:00:00,8374.0
-2014-10-21 07:00:00,9050.0
-2014-10-21 08:00:00,10256.0
-2014-10-21 09:00:00,10858.0
-2014-10-21 10:00:00,10997.0
-2014-10-21 11:00:00,11064.0
-2014-10-21 12:00:00,11174.0
-2014-10-21 13:00:00,11211.0
-2014-10-21 14:00:00,11177.0
-2014-10-21 15:00:00,11207.0
-2014-10-21 16:00:00,11147.0
-2014-10-21 17:00:00,11123.0
-2014-10-21 18:00:00,11148.0
-2014-10-21 19:00:00,11344.0
-2014-10-21 20:00:00,11766.0
-2014-10-21 21:00:00,11682.0
-2014-10-21 22:00:00,11424.0
-2014-10-21 23:00:00,10919.0
-2014-10-22 00:00:00,10114.0
-2014-10-20 01:00:00,8638.0
-2014-10-20 02:00:00,8332.0
-2014-10-20 03:00:00,8073.0
-2014-10-20 04:00:00,7997.0
-2014-10-20 05:00:00,7991.0
-2014-10-20 06:00:00,8272.0
-2014-10-20 07:00:00,9040.0
-2014-10-20 08:00:00,10335.0
-2014-10-20 09:00:00,10910.0
-2014-10-20 10:00:00,11040.0
-2014-10-20 11:00:00,11007.0
-2014-10-20 12:00:00,11110.0
-2014-10-20 13:00:00,11163.0
-2014-10-20 14:00:00,11204.0
-2014-10-20 15:00:00,11248.0
-2014-10-20 16:00:00,11179.0
-2014-10-20 17:00:00,11036.0
-2014-10-20 18:00:00,10955.0
-2014-10-20 19:00:00,11012.0
-2014-10-20 20:00:00,11461.0
-2014-10-20 21:00:00,11468.0
-2014-10-20 22:00:00,11164.0
-2014-10-20 23:00:00,10621.0
-2014-10-21 00:00:00,9847.0
-2014-10-19 01:00:00,8944.0
-2014-10-19 02:00:00,8513.0
-2014-10-19 03:00:00,8282.0
-2014-10-19 04:00:00,8080.0
-2014-10-19 05:00:00,8023.0
-2014-10-19 06:00:00,8033.0
-2014-10-19 07:00:00,8209.0
-2014-10-19 08:00:00,8453.0
-2014-10-19 09:00:00,8567.0
-2014-10-19 10:00:00,8765.0
-2014-10-19 11:00:00,8947.0
-2014-10-19 12:00:00,9007.0
-2014-10-19 13:00:00,9060.0
-2014-10-19 14:00:00,9026.0
-2014-10-19 15:00:00,8984.0
-2014-10-19 16:00:00,8902.0
-2014-10-19 17:00:00,8917.0
-2014-10-19 18:00:00,8972.0
-2014-10-19 19:00:00,9335.0
-2014-10-19 20:00:00,10084.0
-2014-10-19 21:00:00,10241.0
-2014-10-19 22:00:00,10018.0
-2014-10-19 23:00:00,9726.0
-2014-10-20 00:00:00,9184.0
-2014-10-18 01:00:00,9142.0
-2014-10-18 02:00:00,8648.0
-2014-10-18 03:00:00,8269.0
-2014-10-18 04:00:00,8120.0
-2014-10-18 05:00:00,8003.0
-2014-10-18 06:00:00,8054.0
-2014-10-18 07:00:00,8292.0
-2014-10-18 08:00:00,8807.0
-2014-10-18 09:00:00,9142.0
-2014-10-18 10:00:00,9505.0
-2014-10-18 11:00:00,9799.0
-2014-10-18 12:00:00,9934.0
-2014-10-18 13:00:00,9906.0
-2014-10-18 14:00:00,9842.0
-2014-10-18 15:00:00,9604.0
-2014-10-18 16:00:00,9455.0
-2014-10-18 17:00:00,9397.0
-2014-10-18 18:00:00,9479.0
-2014-10-18 19:00:00,9514.0
-2014-10-18 20:00:00,10091.0
-2014-10-18 21:00:00,10241.0
-2014-10-18 22:00:00,10095.0
-2014-10-18 23:00:00,9859.0
-2014-10-19 00:00:00,9409.0
-2014-10-17 01:00:00,9252.0
-2014-10-17 02:00:00,8769.0
-2014-10-17 03:00:00,8472.0
-2014-10-17 04:00:00,8274.0
-2014-10-17 05:00:00,8205.0
-2014-10-17 06:00:00,8386.0
-2014-10-17 07:00:00,9055.0
-2014-10-17 08:00:00,10142.0
-2014-10-17 09:00:00,10613.0
-2014-10-17 10:00:00,10781.0
-2014-10-17 11:00:00,10875.0
-2014-10-17 12:00:00,11038.0
-2014-10-17 13:00:00,11067.0
-2014-10-17 14:00:00,11020.0
-2014-10-17 15:00:00,11072.0
-2014-10-17 16:00:00,11013.0
-2014-10-17 17:00:00,10925.0
-2014-10-17 18:00:00,10978.0
-2014-10-17 19:00:00,11105.0
-2014-10-17 20:00:00,11311.0
-2014-10-17 21:00:00,11143.0
-2014-10-17 22:00:00,10874.0
-2014-10-17 23:00:00,10412.0
-2014-10-18 00:00:00,9821.0
-2014-10-16 01:00:00,9166.0
-2014-10-16 02:00:00,8654.0
-2014-10-16 03:00:00,8353.0
-2014-10-16 04:00:00,8172.0
-2014-10-16 05:00:00,8105.0
-2014-10-16 06:00:00,8303.0
-2014-10-16 07:00:00,8985.0
-2014-10-16 08:00:00,10176.0
-2014-10-16 09:00:00,10775.0
-2014-10-16 10:00:00,10888.0
-2014-10-16 11:00:00,11021.0
-2014-10-16 12:00:00,11141.0
-2014-10-16 13:00:00,11130.0
-2014-10-16 14:00:00,11078.0
-2014-10-16 15:00:00,11085.0
-2014-10-16 16:00:00,11079.0
-2014-10-16 17:00:00,11074.0
-2014-10-16 18:00:00,11199.0
-2014-10-16 19:00:00,11182.0
-2014-10-16 20:00:00,11403.0
-2014-10-16 21:00:00,11434.0
-2014-10-16 22:00:00,11194.0
-2014-10-16 23:00:00,10729.0
-2014-10-17 00:00:00,9982.0
-2014-10-15 01:00:00,9150.0
-2014-10-15 02:00:00,8658.0
-2014-10-15 03:00:00,8331.0
-2014-10-15 04:00:00,8129.0
-2014-10-15 05:00:00,8076.0
-2014-10-15 06:00:00,8312.0
-2014-10-15 07:00:00,8948.0
-2014-10-15 08:00:00,10114.0
-2014-10-15 09:00:00,10804.0
-2014-10-15 10:00:00,11010.0
-2014-10-15 11:00:00,11116.0
-2014-10-15 12:00:00,11260.0
-2014-10-15 13:00:00,11269.0
-2014-10-15 14:00:00,11206.0
-2014-10-15 15:00:00,11230.0
-2014-10-15 16:00:00,11148.0
-2014-10-15 17:00:00,11017.0
-2014-10-15 18:00:00,11006.0
-2014-10-15 19:00:00,11133.0
-2014-10-15 20:00:00,11513.0
-2014-10-15 21:00:00,11465.0
-2014-10-15 22:00:00,11152.0
-2014-10-15 23:00:00,10657.0
-2014-10-16 00:00:00,9902.0
-2014-10-14 01:00:00,9391.0
-2014-10-14 02:00:00,8837.0
-2014-10-14 03:00:00,8498.0
-2014-10-14 04:00:00,8269.0
-2014-10-14 05:00:00,8185.0
-2014-10-14 06:00:00,8337.0
-2014-10-14 07:00:00,9052.0
-2014-10-14 08:00:00,10223.0
-2014-10-14 09:00:00,11067.0
-2014-10-14 10:00:00,11364.0
-2014-10-14 11:00:00,11487.0
-2014-10-14 12:00:00,11572.0
-2014-10-14 13:00:00,11591.0
-2014-10-14 14:00:00,11551.0
-2014-10-14 15:00:00,11564.0
-2014-10-14 16:00:00,11474.0
-2014-10-14 17:00:00,11398.0
-2014-10-14 18:00:00,11425.0
-2014-10-14 19:00:00,11544.0
-2014-10-14 20:00:00,11735.0
-2014-10-14 21:00:00,11659.0
-2014-10-14 22:00:00,11297.0
-2014-10-14 23:00:00,10709.0
-2014-10-15 00:00:00,9889.0
-2014-10-13 01:00:00,8425.0
-2014-10-13 02:00:00,8054.0
-2014-10-13 03:00:00,7831.0
-2014-10-13 04:00:00,7694.0
-2014-10-13 05:00:00,7720.0
-2014-10-13 06:00:00,7927.0
-2014-10-13 07:00:00,8629.0
-2014-10-13 08:00:00,9599.0
-2014-10-13 09:00:00,10248.0
-2014-10-13 10:00:00,10584.0
-2014-10-13 11:00:00,10865.0
-2014-10-13 12:00:00,11129.0
-2014-10-13 13:00:00,11232.0
-2014-10-13 14:00:00,11275.0
-2014-10-13 15:00:00,11363.0
-2014-10-13 16:00:00,11394.0
-2014-10-13 17:00:00,11393.0
-2014-10-13 18:00:00,11504.0
-2014-10-13 19:00:00,11667.0
-2014-10-13 20:00:00,11916.0
-2014-10-13 21:00:00,11851.0
-2014-10-13 22:00:00,11504.0
-2014-10-13 23:00:00,10941.0
-2014-10-14 00:00:00,10170.0
-2014-10-12 01:00:00,8587.0
-2014-10-12 02:00:00,8210.0
-2014-10-12 03:00:00,7919.0
-2014-10-12 04:00:00,7747.0
-2014-10-12 05:00:00,7697.0
-2014-10-12 06:00:00,7718.0
-2014-10-12 07:00:00,7871.0
-2014-10-12 08:00:00,8145.0
-2014-10-12 09:00:00,8169.0
-2014-10-12 10:00:00,8392.0
-2014-10-12 11:00:00,8573.0
-2014-10-12 12:00:00,8706.0
-2014-10-12 13:00:00,8797.0
-2014-10-12 14:00:00,8813.0
-2014-10-12 15:00:00,8829.0
-2014-10-12 16:00:00,8773.0
-2014-10-12 17:00:00,8829.0
-2014-10-12 18:00:00,8898.0
-2014-10-12 19:00:00,9138.0
-2014-10-12 20:00:00,9713.0
-2014-10-12 21:00:00,9896.0
-2014-10-12 22:00:00,9628.0
-2014-10-12 23:00:00,9349.0
-2014-10-13 00:00:00,8880.0
-2014-10-11 01:00:00,9140.0
-2014-10-11 02:00:00,8642.0
-2014-10-11 03:00:00,8346.0
-2014-10-11 04:00:00,8160.0
-2014-10-11 05:00:00,8084.0
-2014-10-11 06:00:00,8158.0
-2014-10-11 07:00:00,8411.0
-2014-10-11 08:00:00,8926.0
-2014-10-11 09:00:00,9120.0
-2014-10-11 10:00:00,9432.0
-2014-10-11 11:00:00,9585.0
-2014-10-11 12:00:00,9654.0
-2014-10-11 13:00:00,9610.0
-2014-10-11 14:00:00,9470.0
-2014-10-11 15:00:00,9341.0
-2014-10-11 16:00:00,9201.0
-2014-10-11 17:00:00,9149.0
-2014-10-11 18:00:00,9096.0
-2014-10-11 19:00:00,9138.0
-2014-10-11 20:00:00,9640.0
-2014-10-11 21:00:00,9922.0
-2014-10-11 22:00:00,9758.0
-2014-10-11 23:00:00,9497.0
-2014-10-12 00:00:00,9116.0
-2014-10-10 01:00:00,9053.0
-2014-10-10 02:00:00,8602.0
-2014-10-10 03:00:00,8315.0
-2014-10-10 04:00:00,8125.0
-2014-10-10 05:00:00,8103.0
-2014-10-10 06:00:00,8327.0
-2014-10-10 07:00:00,8995.0
-2014-10-10 08:00:00,10119.0
-2014-10-10 09:00:00,10560.0
-2014-10-10 10:00:00,10761.0
-2014-10-10 11:00:00,10884.0
-2014-10-10 12:00:00,10991.0
-2014-10-10 13:00:00,10997.0
-2014-10-10 14:00:00,10915.0
-2014-10-10 15:00:00,10904.0
-2014-10-10 16:00:00,10799.0
-2014-10-10 17:00:00,10620.0
-2014-10-10 18:00:00,10504.0
-2014-10-10 19:00:00,10463.0
-2014-10-10 20:00:00,10931.0
-2014-10-10 21:00:00,11047.0
-2014-10-10 22:00:00,10744.0
-2014-10-10 23:00:00,10407.0
-2014-10-11 00:00:00,9738.0
-2014-10-09 01:00:00,9057.0
-2014-10-09 02:00:00,8565.0
-2014-10-09 03:00:00,8265.0
-2014-10-09 04:00:00,8083.0
-2014-10-09 05:00:00,8052.0
-2014-10-09 06:00:00,8233.0
-2014-10-09 07:00:00,8886.0
-2014-10-09 08:00:00,10070.0
-2014-10-09 09:00:00,10605.0
-2014-10-09 10:00:00,10769.0
-2014-10-09 11:00:00,10867.0
-2014-10-09 12:00:00,10996.0
-2014-10-09 13:00:00,11001.0
-2014-10-09 14:00:00,10996.0
-2014-10-09 15:00:00,11078.0
-2014-10-09 16:00:00,11052.0
-2014-10-09 17:00:00,10940.0
-2014-10-09 18:00:00,10806.0
-2014-10-09 19:00:00,10691.0
-2014-10-09 20:00:00,11025.0
-2014-10-09 21:00:00,11282.0
-2014-10-09 22:00:00,11011.0
-2014-10-09 23:00:00,10519.0
-2014-10-10 00:00:00,9826.0
-2014-10-08 01:00:00,9045.0
-2014-10-08 02:00:00,8560.0
-2014-10-08 03:00:00,8260.0
-2014-10-08 04:00:00,8081.0
-2014-10-08 05:00:00,8088.0
-2014-10-08 06:00:00,8282.0
-2014-10-08 07:00:00,8985.0
-2014-10-08 08:00:00,10153.0
-2014-10-08 09:00:00,10653.0
-2014-10-08 10:00:00,10803.0
-2014-10-08 11:00:00,10867.0
-2014-10-08 12:00:00,11133.0
-2014-10-08 13:00:00,11104.0
-2014-10-08 14:00:00,11122.0
-2014-10-08 15:00:00,11171.0
-2014-10-08 16:00:00,11121.0
-2014-10-08 17:00:00,11051.0
-2014-10-08 18:00:00,10937.0
-2014-10-08 19:00:00,10840.0
-2014-10-08 20:00:00,11154.0
-2014-10-08 21:00:00,11381.0
-2014-10-08 22:00:00,11101.0
-2014-10-08 23:00:00,10552.0
-2014-10-09 00:00:00,9780.0
-2014-10-07 01:00:00,9095.0
-2014-10-07 02:00:00,8621.0
-2014-10-07 03:00:00,8340.0
-2014-10-07 04:00:00,8165.0
-2014-10-07 05:00:00,8117.0
-2014-10-07 06:00:00,8337.0
-2014-10-07 07:00:00,9010.0
-2014-10-07 08:00:00,10155.0
-2014-10-07 09:00:00,10620.0
-2014-10-07 10:00:00,10840.0
-2014-10-07 11:00:00,10981.0
-2014-10-07 12:00:00,11120.0
-2014-10-07 13:00:00,11178.0
-2014-10-07 14:00:00,11219.0
-2014-10-07 15:00:00,11268.0
-2014-10-07 16:00:00,11186.0
-2014-10-07 17:00:00,11039.0
-2014-10-07 18:00:00,10959.0
-2014-10-07 19:00:00,10835.0
-2014-10-07 20:00:00,11128.0
-2014-10-07 21:00:00,11417.0
-2014-10-07 22:00:00,11129.0
-2014-10-07 23:00:00,10561.0
-2014-10-08 00:00:00,9807.0
-2014-10-06 01:00:00,8439.0
-2014-10-06 02:00:00,8143.0
-2014-10-06 03:00:00,7943.0
-2014-10-06 04:00:00,7867.0
-2014-10-06 05:00:00,7836.0
-2014-10-06 06:00:00,8187.0
-2014-10-06 07:00:00,8896.0
-2014-10-06 08:00:00,10154.0
-2014-10-06 09:00:00,10800.0
-2014-10-06 10:00:00,10969.0
-2014-10-06 11:00:00,11011.0
-2014-10-06 12:00:00,11119.0
-2014-10-06 13:00:00,11141.0
-2014-10-06 14:00:00,11083.0
-2014-10-06 15:00:00,11136.0
-2014-10-06 16:00:00,10997.0
-2014-10-06 17:00:00,10862.0
-2014-10-06 18:00:00,10778.0
-2014-10-06 19:00:00,10719.0
-2014-10-06 20:00:00,11092.0
-2014-10-06 21:00:00,11469.0
-2014-10-06 22:00:00,11171.0
-2014-10-06 23:00:00,10621.0
-2014-10-07 00:00:00,9864.0
-2014-10-05 01:00:00,8749.0
-2014-10-05 02:00:00,8334.0
-2014-10-05 03:00:00,8047.0
-2014-10-05 04:00:00,7920.0
-2014-10-05 05:00:00,7832.0
-2014-10-05 06:00:00,7834.0
-2014-10-05 07:00:00,7925.0
-2014-10-05 08:00:00,8138.0
-2014-10-05 09:00:00,8202.0
-2014-10-05 10:00:00,8454.0
-2014-10-05 11:00:00,8691.0
-2014-10-05 12:00:00,8790.0
-2014-10-05 13:00:00,8889.0
-2014-10-05 14:00:00,8869.0
-2014-10-05 15:00:00,8870.0
-2014-10-05 16:00:00,8774.0
-2014-10-05 17:00:00,8779.0
-2014-10-05 18:00:00,8873.0
-2014-10-05 19:00:00,9197.0
-2014-10-05 20:00:00,9755.0
-2014-10-05 21:00:00,10003.0
-2014-10-05 22:00:00,9882.0
-2014-10-05 23:00:00,9495.0
-2014-10-06 00:00:00,9007.0
-2014-10-04 01:00:00,9105.0
-2014-10-04 02:00:00,8575.0
-2014-10-04 03:00:00,8270.0
-2014-10-04 04:00:00,8101.0
-2014-10-04 05:00:00,7979.0
-2014-10-04 06:00:00,8052.0
-2014-10-04 07:00:00,8304.0
-2014-10-04 08:00:00,8769.0
-2014-10-04 09:00:00,9049.0
-2014-10-04 10:00:00,9564.0
-2014-10-04 11:00:00,9943.0
-2014-10-04 12:00:00,10141.0
-2014-10-04 13:00:00,10066.0
-2014-10-04 14:00:00,10010.0
-2014-10-04 15:00:00,9818.0
-2014-10-04 16:00:00,9701.0
-2014-10-04 17:00:00,9583.0
-2014-10-04 18:00:00,9583.0
-2014-10-04 19:00:00,9588.0
-2014-10-04 20:00:00,9949.0
-2014-10-04 21:00:00,10240.0
-2014-10-04 22:00:00,10060.0
-2014-10-04 23:00:00,9785.0
-2014-10-05 00:00:00,9341.0
-2014-10-03 01:00:00,9903.0
-2014-10-03 02:00:00,9336.0
-2014-10-03 03:00:00,8979.0
-2014-10-03 04:00:00,8684.0
-2014-10-03 05:00:00,8690.0
-2014-10-03 06:00:00,8869.0
-2014-10-03 07:00:00,9366.0
-2014-10-03 08:00:00,10300.0
-2014-10-03 09:00:00,10966.0
-2014-10-03 10:00:00,11124.0
-2014-10-03 11:00:00,11263.0
-2014-10-03 12:00:00,11316.0
-2014-10-03 13:00:00,11315.0
-2014-10-03 14:00:00,11252.0
-2014-10-03 15:00:00,11180.0
-2014-10-03 16:00:00,10989.0
-2014-10-03 17:00:00,10789.0
-2014-10-03 18:00:00,10697.0
-2014-10-03 19:00:00,10643.0
-2014-10-03 20:00:00,10929.0
-2014-10-03 21:00:00,11031.0
-2014-10-03 22:00:00,10790.0
-2014-10-03 23:00:00,10452.0
-2014-10-04 00:00:00,9783.0
-2014-10-02 01:00:00,9308.0
-2014-10-02 02:00:00,8776.0
-2014-10-02 03:00:00,8479.0
-2014-10-02 04:00:00,8260.0
-2014-10-02 05:00:00,8219.0
-2014-10-02 06:00:00,8424.0
-2014-10-02 07:00:00,9081.0
-2014-10-02 08:00:00,10328.0
-2014-10-02 09:00:00,11008.0
-2014-10-02 10:00:00,11369.0
-2014-10-02 11:00:00,11717.0
-2014-10-02 12:00:00,12023.0
-2014-10-02 13:00:00,12223.0
-2014-10-02 14:00:00,12342.0
-2014-10-02 15:00:00,12366.0
-2014-10-02 16:00:00,12318.0
-2014-10-02 17:00:00,12259.0
-2014-10-02 18:00:00,12195.0
-2014-10-02 19:00:00,12097.0
-2014-10-02 20:00:00,12375.0
-2014-10-02 21:00:00,12538.0
-2014-10-02 22:00:00,12185.0
-2014-10-02 23:00:00,11561.0
-2014-10-03 00:00:00,10701.0
-2014-10-01 01:00:00,9024.0
-2014-10-01 02:00:00,8517.0
-2014-10-01 03:00:00,8223.0
-2014-10-01 04:00:00,8039.0
-2014-10-01 05:00:00,7982.0
-2014-10-01 06:00:00,8172.0
-2014-10-01 07:00:00,8830.0
-2014-10-01 08:00:00,9930.0
-2014-10-01 09:00:00,10403.0
-2014-10-01 10:00:00,10688.0
-2014-10-01 11:00:00,10934.0
-2014-10-01 12:00:00,11106.0
-2014-10-01 13:00:00,11264.0
-2014-10-01 14:00:00,11412.0
-2014-10-01 15:00:00,11567.0
-2014-10-01 16:00:00,11578.0
-2014-10-01 17:00:00,11496.0
-2014-10-01 18:00:00,11452.0
-2014-10-01 19:00:00,11312.0
-2014-10-01 20:00:00,11442.0
-2014-10-01 21:00:00,11783.0
-2014-10-01 22:00:00,11496.0
-2014-10-01 23:00:00,10932.0
-2014-10-02 00:00:00,10117.0
-2014-09-30 01:00:00,9333.0
-2014-09-30 02:00:00,8736.0
-2014-09-30 03:00:00,8387.0
-2014-09-30 04:00:00,8167.0
-2014-09-30 05:00:00,8061.0
-2014-09-30 06:00:00,8221.0
-2014-09-30 07:00:00,8844.0
-2014-09-30 08:00:00,9951.0
-2014-09-30 09:00:00,10501.0
-2014-09-30 10:00:00,10750.0
-2014-09-30 11:00:00,10921.0
-2014-09-30 12:00:00,11040.0
-2014-09-30 13:00:00,11060.0
-2014-09-30 14:00:00,11041.0
-2014-09-30 15:00:00,11094.0
-2014-09-30 16:00:00,11014.0
-2014-09-30 17:00:00,10912.0
-2014-09-30 18:00:00,10802.0
-2014-09-30 19:00:00,10777.0
-2014-09-30 20:00:00,11084.0
-2014-09-30 21:00:00,11387.0
-2014-09-30 22:00:00,11105.0
-2014-09-30 23:00:00,10554.0
-2014-10-01 00:00:00,9762.0
-2014-09-29 01:00:00,8922.0
-2014-09-29 02:00:00,8460.0
-2014-09-29 03:00:00,8214.0
-2014-09-29 04:00:00,8034.0
-2014-09-29 05:00:00,8047.0
-2014-09-29 06:00:00,8227.0
-2014-09-29 07:00:00,8979.0
-2014-09-29 08:00:00,10098.0
-2014-09-29 09:00:00,10735.0
-2014-09-29 10:00:00,11204.0
-2014-09-29 11:00:00,11771.0
-2014-09-29 12:00:00,12261.0
-2014-09-29 13:00:00,12700.0
-2014-09-29 14:00:00,13076.0
-2014-09-29 15:00:00,13447.0
-2014-09-29 16:00:00,13644.0
-2014-09-29 17:00:00,13699.0
-2014-09-29 18:00:00,13600.0
-2014-09-29 19:00:00,13217.0
-2014-09-29 20:00:00,12691.0
-2014-09-29 21:00:00,12603.0
-2014-09-29 22:00:00,11968.0
-2014-09-29 23:00:00,11170.0
-2014-09-30 00:00:00,10210.0
-2014-09-28 01:00:00,9114.0
-2014-09-28 02:00:00,8623.0
-2014-09-28 03:00:00,8241.0
-2014-09-28 04:00:00,8023.0
-2014-09-28 05:00:00,7839.0
-2014-09-28 06:00:00,7839.0
-2014-09-28 07:00:00,7830.0
-2014-09-28 08:00:00,8026.0
-2014-09-28 09:00:00,8039.0
-2014-09-28 10:00:00,8625.0
-2014-09-28 11:00:00,9111.0
-2014-09-28 12:00:00,9603.0
-2014-09-28 13:00:00,10029.0
-2014-09-28 14:00:00,10310.0
-2014-09-28 15:00:00,10514.0
-2014-09-28 16:00:00,10727.0
-2014-09-28 17:00:00,10856.0
-2014-09-28 18:00:00,10826.0
-2014-09-28 19:00:00,10799.0
-2014-09-28 20:00:00,10792.0
-2014-09-28 21:00:00,11183.0
-2014-09-28 22:00:00,10862.0
-2014-09-28 23:00:00,10324.0
-2014-09-29 00:00:00,9595.0
-2014-09-27 01:00:00,9687.0
-2014-09-27 02:00:00,9036.0
-2014-09-27 03:00:00,8622.0
-2014-09-27 04:00:00,8277.0
-2014-09-27 05:00:00,8175.0
-2014-09-27 06:00:00,8172.0
-2014-09-27 07:00:00,8385.0
-2014-09-27 08:00:00,8707.0
-2014-09-27 09:00:00,8978.0
-2014-09-27 10:00:00,9628.0
-2014-09-27 11:00:00,10151.0
-2014-09-27 12:00:00,10580.0
-2014-09-27 13:00:00,10869.0
-2014-09-27 14:00:00,11068.0
-2014-09-27 15:00:00,11066.0
-2014-09-27 16:00:00,11151.0
-2014-09-27 17:00:00,11079.0
-2014-09-27 18:00:00,11012.0
-2014-09-27 19:00:00,10755.0
-2014-09-27 20:00:00,10749.0
-2014-09-27 21:00:00,11029.0
-2014-09-27 22:00:00,10810.0
-2014-09-27 23:00:00,10375.0
-2014-09-28 00:00:00,9793.0
-2014-09-26 01:00:00,9456.0
-2014-09-26 02:00:00,8881.0
-2014-09-26 03:00:00,8521.0
-2014-09-26 04:00:00,8290.0
-2014-09-26 05:00:00,8201.0
-2014-09-26 06:00:00,8361.0
-2014-09-26 07:00:00,8982.0
-2014-09-26 08:00:00,9957.0
-2014-09-26 09:00:00,10458.0
-2014-09-26 10:00:00,11023.0
-2014-09-26 11:00:00,11509.0
-2014-09-26 12:00:00,11959.0
-2014-09-26 13:00:00,12254.0
-2014-09-26 14:00:00,12458.0
-2014-09-26 15:00:00,12659.0
-2014-09-26 16:00:00,12750.0
-2014-09-26 17:00:00,12721.0
-2014-09-26 18:00:00,12580.0
-2014-09-26 19:00:00,12195.0
-2014-09-26 20:00:00,11912.0
-2014-09-26 21:00:00,12126.0
-2014-09-26 22:00:00,11749.0
-2014-09-26 23:00:00,11257.0
-2014-09-27 00:00:00,10460.0
-2014-09-25 01:00:00,9306.0
-2014-09-25 02:00:00,8749.0
-2014-09-25 03:00:00,8402.0
-2014-09-25 04:00:00,8213.0
-2014-09-25 05:00:00,8117.0
-2014-09-25 06:00:00,8279.0
-2014-09-25 07:00:00,8941.0
-2014-09-25 08:00:00,9999.0
-2014-09-25 09:00:00,10589.0
-2014-09-25 10:00:00,10977.0
-2014-09-25 11:00:00,11278.0
-2014-09-25 12:00:00,11547.0
-2014-09-25 13:00:00,11705.0
-2014-09-25 14:00:00,11848.0
-2014-09-25 15:00:00,12066.0
-2014-09-25 16:00:00,12135.0
-2014-09-25 17:00:00,12062.0
-2014-09-25 18:00:00,11962.0
-2014-09-25 19:00:00,11732.0
-2014-09-25 20:00:00,11622.0
-2014-09-25 21:00:00,12042.0
-2014-09-25 22:00:00,11745.0
-2014-09-25 23:00:00,11123.0
-2014-09-26 00:00:00,10294.0
-2014-09-24 01:00:00,9202.0
-2014-09-24 02:00:00,8681.0
-2014-09-24 03:00:00,8341.0
-2014-09-24 04:00:00,8143.0
-2014-09-24 05:00:00,8071.0
-2014-09-24 06:00:00,8247.0
-2014-09-24 07:00:00,8890.0
-2014-09-24 08:00:00,9888.0
-2014-09-24 09:00:00,10419.0
-2014-09-24 10:00:00,10866.0
-2014-09-24 11:00:00,11197.0
-2014-09-24 12:00:00,11523.0
-2014-09-24 13:00:00,11728.0
-2014-09-24 14:00:00,11887.0
-2014-09-24 15:00:00,12005.0
-2014-09-24 16:00:00,12023.0
-2014-09-24 17:00:00,11987.0
-2014-09-24 18:00:00,11924.0
-2014-09-24 19:00:00,11660.0
-2014-09-24 20:00:00,11560.0
-2014-09-24 21:00:00,11908.0
-2014-09-24 22:00:00,11588.0
-2014-09-24 23:00:00,10966.0
-2014-09-25 00:00:00,10124.0
-2014-09-23 01:00:00,8982.0
-2014-09-23 02:00:00,8463.0
-2014-09-23 03:00:00,8155.0
-2014-09-23 04:00:00,7978.0
-2014-09-23 05:00:00,7910.0
-2014-09-23 06:00:00,8110.0
-2014-09-23 07:00:00,8712.0
-2014-09-23 08:00:00,9768.0
-2014-09-23 09:00:00,10319.0
-2014-09-23 10:00:00,10675.0
-2014-09-23 11:00:00,10955.0
-2014-09-23 12:00:00,11302.0
-2014-09-23 13:00:00,11509.0
-2014-09-23 14:00:00,11643.0
-2014-09-23 15:00:00,11845.0
-2014-09-23 16:00:00,11896.0
-2014-09-23 17:00:00,11853.0
-2014-09-23 18:00:00,11820.0
-2014-09-23 19:00:00,11633.0
-2014-09-23 20:00:00,11473.0
-2014-09-23 21:00:00,11805.0
-2014-09-23 22:00:00,11502.0
-2014-09-23 23:00:00,10867.0
-2014-09-24 00:00:00,10020.0
-2014-09-22 01:00:00,8306.0
-2014-09-22 02:00:00,7942.0
-2014-09-22 03:00:00,7720.0
-2014-09-22 04:00:00,7549.0
-2014-09-22 05:00:00,7617.0
-2014-09-22 06:00:00,7861.0
-2014-09-22 07:00:00,8565.0
-2014-09-22 08:00:00,9689.0
-2014-09-22 09:00:00,10248.0
-2014-09-22 10:00:00,10565.0
-2014-09-22 11:00:00,10767.0
-2014-09-22 12:00:00,11014.0
-2014-09-22 13:00:00,11111.0
-2014-09-22 14:00:00,11175.0
-2014-09-22 15:00:00,11318.0
-2014-09-22 16:00:00,11315.0
-2014-09-22 17:00:00,11291.0
-2014-09-22 18:00:00,11225.0
-2014-09-22 19:00:00,11060.0
-2014-09-22 20:00:00,10972.0
-2014-09-22 21:00:00,11429.0
-2014-09-22 22:00:00,11153.0
-2014-09-22 23:00:00,10560.0
-2014-09-23 00:00:00,9816.0
-2014-09-21 01:00:00,9651.0
-2014-09-21 02:00:00,9102.0
-2014-09-21 03:00:00,8618.0
-2014-09-21 04:00:00,8301.0
-2014-09-21 05:00:00,7992.0
-2014-09-21 06:00:00,7858.0
-2014-09-21 07:00:00,7865.0
-2014-09-21 08:00:00,7910.0
-2014-09-21 09:00:00,7946.0
-2014-09-21 10:00:00,8409.0
-2014-09-21 11:00:00,8715.0
-2014-09-21 12:00:00,8971.0
-2014-09-21 13:00:00,9052.0
-2014-09-21 14:00:00,9175.0
-2014-09-21 15:00:00,9215.0
-2014-09-21 16:00:00,9235.0
-2014-09-21 17:00:00,9215.0
-2014-09-21 18:00:00,9288.0
-2014-09-21 19:00:00,9344.0
-2014-09-21 20:00:00,9467.0
-2014-09-21 21:00:00,10010.0
-2014-09-21 22:00:00,9863.0
-2014-09-21 23:00:00,9463.0
-2014-09-22 00:00:00,8914.0
-2014-09-20 01:00:00,9427.0
-2014-09-20 02:00:00,8761.0
-2014-09-20 03:00:00,8423.0
-2014-09-20 04:00:00,8130.0
-2014-09-20 05:00:00,8006.0
-2014-09-20 06:00:00,7986.0
-2014-09-20 07:00:00,8287.0
-2014-09-20 08:00:00,8659.0
-2014-09-20 09:00:00,8907.0
-2014-09-20 10:00:00,9442.0
-2014-09-20 11:00:00,9917.0
-2014-09-20 12:00:00,10358.0
-2014-09-20 13:00:00,10721.0
-2014-09-20 14:00:00,10931.0
-2014-09-20 15:00:00,10920.0
-2014-09-20 16:00:00,10918.0
-2014-09-20 17:00:00,10855.0
-2014-09-20 18:00:00,10863.0
-2014-09-20 19:00:00,10905.0
-2014-09-20 20:00:00,10847.0
-2014-09-20 21:00:00,11259.0
-2014-09-20 22:00:00,11112.0
-2014-09-20 23:00:00,10750.0
-2014-09-21 00:00:00,10231.0
-2014-09-19 01:00:00,9365.0
-2014-09-19 02:00:00,8837.0
-2014-09-19 03:00:00,8505.0
-2014-09-19 04:00:00,8331.0
-2014-09-19 05:00:00,8241.0
-2014-09-19 06:00:00,8396.0
-2014-09-19 07:00:00,8982.0
-2014-09-19 08:00:00,9900.0
-2014-09-19 09:00:00,10471.0
-2014-09-19 10:00:00,10873.0
-2014-09-19 11:00:00,11175.0
-2014-09-19 12:00:00,11499.0
-2014-09-19 13:00:00,11709.0
-2014-09-19 14:00:00,11787.0
-2014-09-19 15:00:00,11927.0
-2014-09-19 16:00:00,11932.0
-2014-09-19 17:00:00,11845.0
-2014-09-19 18:00:00,11721.0
-2014-09-19 19:00:00,11422.0
-2014-09-19 20:00:00,11150.0
-2014-09-19 21:00:00,11508.0
-2014-09-19 22:00:00,11288.0
-2014-09-19 23:00:00,10873.0
-2014-09-20 00:00:00,10112.0
-2014-09-18 01:00:00,9128.0
-2014-09-18 02:00:00,8616.0
-2014-09-18 03:00:00,8296.0
-2014-09-18 04:00:00,8092.0
-2014-09-18 05:00:00,8013.0
-2014-09-18 06:00:00,8208.0
-2014-09-18 07:00:00,8843.0
-2014-09-18 08:00:00,9850.0
-2014-09-18 09:00:00,10422.0
-2014-09-18 10:00:00,10755.0
-2014-09-18 11:00:00,11117.0
-2014-09-18 12:00:00,11437.0
-2014-09-18 13:00:00,11575.0
-2014-09-18 14:00:00,11657.0
-2014-09-18 15:00:00,11781.0
-2014-09-18 16:00:00,11773.0
-2014-09-18 17:00:00,11698.0
-2014-09-18 18:00:00,11588.0
-2014-09-18 19:00:00,11344.0
-2014-09-18 20:00:00,11153.0
-2014-09-18 21:00:00,11648.0
-2014-09-18 22:00:00,11443.0
-2014-09-18 23:00:00,10960.0
-2014-09-19 00:00:00,10153.0
-2014-09-17 01:00:00,9054.0
-2014-09-17 02:00:00,8540.0
-2014-09-17 03:00:00,8208.0
-2014-09-17 04:00:00,8032.0
-2014-09-17 05:00:00,7996.0
-2014-09-17 06:00:00,8184.0
-2014-09-17 07:00:00,8848.0
-2014-09-17 08:00:00,9829.0
-2014-09-17 09:00:00,10359.0
-2014-09-17 10:00:00,10702.0
-2014-09-17 11:00:00,10967.0
-2014-09-17 12:00:00,11220.0
-2014-09-17 13:00:00,11362.0
-2014-09-17 14:00:00,11458.0
-2014-09-17 15:00:00,11559.0
-2014-09-17 16:00:00,11583.0
-2014-09-17 17:00:00,11510.0
-2014-09-17 18:00:00,11421.0
-2014-09-17 19:00:00,11259.0
-2014-09-17 20:00:00,11058.0
-2014-09-17 21:00:00,11496.0
-2014-09-17 22:00:00,11315.0
-2014-09-17 23:00:00,10729.0
-2014-09-18 00:00:00,9941.0
-2014-09-16 01:00:00,9035.0
-2014-09-16 02:00:00,8538.0
-2014-09-16 03:00:00,8253.0
-2014-09-16 04:00:00,8101.0
-2014-09-16 05:00:00,8065.0
-2014-09-16 06:00:00,8261.0
-2014-09-16 07:00:00,8921.0
-2014-09-16 08:00:00,9934.0
-2014-09-16 09:00:00,10445.0
-2014-09-16 10:00:00,10719.0
-2014-09-16 11:00:00,10942.0
-2014-09-16 12:00:00,11160.0
-2014-09-16 13:00:00,11233.0
-2014-09-16 14:00:00,11231.0
-2014-09-16 15:00:00,11354.0
-2014-09-16 16:00:00,11341.0
-2014-09-16 17:00:00,11267.0
-2014-09-16 18:00:00,11186.0
-2014-09-16 19:00:00,11028.0
-2014-09-16 20:00:00,10844.0
-2014-09-16 21:00:00,11326.0
-2014-09-16 22:00:00,11185.0
-2014-09-16 23:00:00,10625.0
-2014-09-17 00:00:00,9809.0
-2014-09-15 01:00:00,8413.0
-2014-09-15 02:00:00,8021.0
-2014-09-15 03:00:00,7827.0
-2014-09-15 04:00:00,7691.0
-2014-09-15 05:00:00,7695.0
-2014-09-15 06:00:00,7948.0
-2014-09-15 07:00:00,8652.0
-2014-09-15 08:00:00,9752.0
-2014-09-15 09:00:00,10439.0
-2014-09-15 10:00:00,10704.0
-2014-09-15 11:00:00,10999.0
-2014-09-15 12:00:00,11253.0
-2014-09-15 13:00:00,11273.0
-2014-09-15 14:00:00,11246.0
-2014-09-15 15:00:00,11282.0
-2014-09-15 16:00:00,11208.0
-2014-09-15 17:00:00,11095.0
-2014-09-15 18:00:00,11031.0
-2014-09-15 19:00:00,10966.0
-2014-09-15 20:00:00,10982.0
-2014-09-15 21:00:00,11315.0
-2014-09-15 22:00:00,11100.0
-2014-09-15 23:00:00,10556.0
-2014-09-16 00:00:00,9781.0
-2014-09-14 01:00:00,8534.0
-2014-09-14 02:00:00,8157.0
-2014-09-14 03:00:00,7850.0
-2014-09-14 04:00:00,7690.0
-2014-09-14 05:00:00,7533.0
-2014-09-14 06:00:00,7583.0
-2014-09-14 07:00:00,7690.0
-2014-09-14 08:00:00,7824.0
-2014-09-14 09:00:00,7888.0
-2014-09-14 10:00:00,8267.0
-2014-09-14 11:00:00,8501.0
-2014-09-14 12:00:00,8762.0
-2014-09-14 13:00:00,8833.0
-2014-09-14 14:00:00,8926.0
-2014-09-14 15:00:00,8935.0
-2014-09-14 16:00:00,8977.0
-2014-09-14 17:00:00,8979.0
-2014-09-14 18:00:00,9080.0
-2014-09-14 19:00:00,9116.0
-2014-09-14 20:00:00,9248.0
-2014-09-14 21:00:00,9848.0
-2014-09-14 22:00:00,9857.0
-2014-09-14 23:00:00,9562.0
-2014-09-15 00:00:00,8991.0
-2014-09-13 01:00:00,9152.0
-2014-09-13 02:00:00,8620.0
-2014-09-13 03:00:00,8332.0
-2014-09-13 04:00:00,8041.0
-2014-09-13 05:00:00,8006.0
-2014-09-13 06:00:00,8037.0
-2014-09-13 07:00:00,8351.0
-2014-09-13 08:00:00,8637.0
-2014-09-13 09:00:00,8947.0
-2014-09-13 10:00:00,9311.0
-2014-09-13 11:00:00,9586.0
-2014-09-13 12:00:00,9740.0
-2014-09-13 13:00:00,9680.0
-2014-09-13 14:00:00,9540.0
-2014-09-13 15:00:00,9437.0
-2014-09-13 16:00:00,9366.0
-2014-09-13 17:00:00,9254.0
-2014-09-13 18:00:00,9228.0
-2014-09-13 19:00:00,9177.0
-2014-09-13 20:00:00,9235.0
-2014-09-13 21:00:00,9734.0
-2014-09-13 22:00:00,9843.0
-2014-09-13 23:00:00,9540.0
-2014-09-14 00:00:00,9102.0
-2014-09-12 01:00:00,9119.0
-2014-09-12 02:00:00,8605.0
-2014-09-12 03:00:00,8318.0
-2014-09-12 04:00:00,8146.0
-2014-09-12 05:00:00,8071.0
-2014-09-12 06:00:00,8279.0
-2014-09-12 07:00:00,8856.0
-2014-09-12 08:00:00,9897.0
-2014-09-12 09:00:00,10468.0
-2014-09-12 10:00:00,10800.0
-2014-09-12 11:00:00,10930.0
-2014-09-12 12:00:00,11058.0
-2014-09-12 13:00:00,11080.0
-2014-09-12 14:00:00,10979.0
-2014-09-12 15:00:00,11028.0
-2014-09-12 16:00:00,10955.0
-2014-09-12 17:00:00,10855.0
-2014-09-12 18:00:00,10802.0
-2014-09-12 19:00:00,10791.0
-2014-09-12 20:00:00,10790.0
-2014-09-12 21:00:00,11058.0
-2014-09-12 22:00:00,10908.0
-2014-09-12 23:00:00,10481.0
-2014-09-13 00:00:00,9808.0
-2014-09-11 01:00:00,9837.0
-2014-09-11 02:00:00,9178.0
-2014-09-11 03:00:00,8775.0
-2014-09-11 04:00:00,8519.0
-2014-09-11 05:00:00,8389.0
-2014-09-11 06:00:00,8474.0
-2014-09-11 07:00:00,9063.0
-2014-09-11 08:00:00,10014.0
-2014-09-11 09:00:00,10602.0
-2014-09-11 10:00:00,10882.0
-2014-09-11 11:00:00,11011.0
-2014-09-11 12:00:00,11100.0
-2014-09-11 13:00:00,11089.0
-2014-09-11 14:00:00,11043.0
-2014-09-11 15:00:00,11045.0
-2014-09-11 16:00:00,10965.0
-2014-09-11 17:00:00,10870.0
-2014-09-11 18:00:00,10824.0
-2014-09-11 19:00:00,10766.0
-2014-09-11 20:00:00,10839.0
-2014-09-11 21:00:00,11237.0
-2014-09-11 22:00:00,11099.0
-2014-09-11 23:00:00,10614.0
-2014-09-12 00:00:00,9882.0
-2014-09-10 01:00:00,11516.0
-2014-09-10 02:00:00,10768.0
-2014-09-10 03:00:00,10190.0
-2014-09-10 04:00:00,9813.0
-2014-09-10 05:00:00,9704.0
-2014-09-10 06:00:00,9869.0
-2014-09-10 07:00:00,10604.0
-2014-09-10 08:00:00,11824.0
-2014-09-10 09:00:00,12692.0
-2014-09-10 10:00:00,13214.0
-2014-09-10 11:00:00,13543.0
-2014-09-10 12:00:00,13829.0
-2014-09-10 13:00:00,14062.0
-2014-09-10 14:00:00,14350.0
-2014-09-10 15:00:00,14795.0
-2014-09-10 16:00:00,15094.0
-2014-09-10 17:00:00,15094.0
-2014-09-10 18:00:00,15013.0
-2014-09-10 19:00:00,14647.0
-2014-09-10 20:00:00,13967.0
-2014-09-10 21:00:00,13662.0
-2014-09-10 22:00:00,12975.0
-2014-09-10 23:00:00,11995.0
-2014-09-11 00:00:00,10870.0
-2014-09-09 01:00:00,10484.0
-2014-09-09 02:00:00,9806.0
-2014-09-09 03:00:00,9348.0
-2014-09-09 04:00:00,9077.0
-2014-09-09 05:00:00,8966.0
-2014-09-09 06:00:00,9151.0
-2014-09-09 07:00:00,9834.0
-2014-09-09 08:00:00,10952.0
-2014-09-09 09:00:00,11645.0
-2014-09-09 10:00:00,12127.0
-2014-09-09 11:00:00,12570.0
-2014-09-09 12:00:00,12947.0
-2014-09-09 13:00:00,13442.0
-2014-09-09 14:00:00,13984.0
-2014-09-09 15:00:00,14538.0
-2014-09-09 16:00:00,14750.0
-2014-09-09 17:00:00,15078.0
-2014-09-09 18:00:00,15181.0
-2014-09-09 19:00:00,14783.0
-2014-09-09 20:00:00,14391.0
-2014-09-09 21:00:00,14708.0
-2014-09-09 22:00:00,14524.0
-2014-09-09 23:00:00,13753.0
-2014-09-10 00:00:00,12658.0
-2014-09-08 01:00:00,9476.0
-2014-09-08 02:00:00,8918.0
-2014-09-08 03:00:00,8601.0
-2014-09-08 04:00:00,8476.0
-2014-09-08 05:00:00,8431.0
-2014-09-08 06:00:00,8586.0
-2014-09-08 07:00:00,9263.0
-2014-09-08 08:00:00,10251.0
-2014-09-08 09:00:00,11013.0
-2014-09-08 10:00:00,11624.0
-2014-09-08 11:00:00,12200.0
-2014-09-08 12:00:00,12710.0
-2014-09-08 13:00:00,13004.0
-2014-09-08 14:00:00,13247.0
-2014-09-08 15:00:00,13606.0
-2014-09-08 16:00:00,13789.0
-2014-09-08 17:00:00,13893.0
-2014-09-08 18:00:00,13930.0
-2014-09-08 19:00:00,13646.0
-2014-09-08 20:00:00,13132.0
-2014-09-08 21:00:00,13273.0
-2014-09-08 22:00:00,13136.0
-2014-09-08 23:00:00,12452.0
-2014-09-09 00:00:00,11442.0
-2014-09-07 01:00:00,9453.0
-2014-09-07 02:00:00,8879.0
-2014-09-07 03:00:00,8463.0
-2014-09-07 04:00:00,8204.0
-2014-09-07 05:00:00,8032.0
-2014-09-07 06:00:00,7963.0
-2014-09-07 07:00:00,8036.0
-2014-09-07 08:00:00,8000.0
-2014-09-07 09:00:00,8196.0
-2014-09-07 10:00:00,8843.0
-2014-09-07 11:00:00,9441.0
-2014-09-07 12:00:00,9976.0
-2014-09-07 13:00:00,10510.0
-2014-09-07 14:00:00,10868.0
-2014-09-07 15:00:00,11174.0
-2014-09-07 16:00:00,11415.0
-2014-09-07 17:00:00,11631.0
-2014-09-07 18:00:00,11758.0
-2014-09-07 19:00:00,11736.0
-2014-09-07 20:00:00,11448.0
-2014-09-07 21:00:00,11554.0
-2014-09-07 22:00:00,11539.0
-2014-09-07 23:00:00,10966.0
-2014-09-08 00:00:00,10220.0
-2014-09-06 01:00:00,10941.0
-2014-09-06 02:00:00,10168.0
-2014-09-06 03:00:00,9586.0
-2014-09-06 04:00:00,9175.0
-2014-09-06 05:00:00,8963.0
-2014-09-06 06:00:00,8912.0
-2014-09-06 07:00:00,9061.0
-2014-09-06 08:00:00,9223.0
-2014-09-06 09:00:00,9424.0
-2014-09-06 10:00:00,10030.0
-2014-09-06 11:00:00,10568.0
-2014-09-06 12:00:00,11041.0
-2014-09-06 13:00:00,11233.0
-2014-09-06 14:00:00,11312.0
-2014-09-06 15:00:00,11382.0
-2014-09-06 16:00:00,11499.0
-2014-09-06 17:00:00,11674.0
-2014-09-06 18:00:00,11741.0
-2014-09-06 19:00:00,11656.0
-2014-09-06 20:00:00,11300.0
-2014-09-06 21:00:00,11305.0
-2014-09-06 22:00:00,11280.0
-2014-09-06 23:00:00,10794.0
-2014-09-07 00:00:00,10157.0
-2014-09-05 01:00:00,13672.0
-2014-09-05 02:00:00,12826.0
-2014-09-05 03:00:00,12239.0
-2014-09-05 04:00:00,11831.0
-2014-09-05 05:00:00,11579.0
-2014-09-05 06:00:00,11706.0
-2014-09-05 07:00:00,12331.0
-2014-09-05 08:00:00,13461.0
-2014-09-05 09:00:00,14530.0
-2014-09-05 10:00:00,15700.0
-2014-09-05 11:00:00,16700.0
-2014-09-05 12:00:00,17624.0
-2014-09-05 13:00:00,18097.0
-2014-09-05 14:00:00,18434.0
-2014-09-05 15:00:00,19016.0
-2014-09-05 16:00:00,18974.0
-2014-09-05 17:00:00,17453.0
-2014-09-05 18:00:00,16558.0
-2014-09-05 19:00:00,15659.0
-2014-09-05 20:00:00,14528.0
-2014-09-05 21:00:00,13901.0
-2014-09-05 22:00:00,13434.0
-2014-09-05 23:00:00,12850.0
-2014-09-06 00:00:00,11915.0
-2014-09-04 01:00:00,12596.0
-2014-09-04 02:00:00,11660.0
-2014-09-04 03:00:00,11090.0
-2014-09-04 04:00:00,10777.0
-2014-09-04 05:00:00,10598.0
-2014-09-04 06:00:00,10738.0
-2014-09-04 07:00:00,11508.0
-2014-09-04 08:00:00,12745.0
-2014-09-04 09:00:00,13558.0
-2014-09-04 10:00:00,13896.0
-2014-09-04 11:00:00,14179.0
-2014-09-04 12:00:00,14315.0
-2014-09-04 13:00:00,14312.0
-2014-09-04 14:00:00,14203.0
-2014-09-04 15:00:00,14336.0
-2014-09-04 16:00:00,14764.0
-2014-09-04 17:00:00,15583.0
-2014-09-04 18:00:00,16440.0
-2014-09-04 19:00:00,16774.0
-2014-09-04 20:00:00,16614.0
-2014-09-04 21:00:00,16616.0
-2014-09-04 22:00:00,16626.0
-2014-09-04 23:00:00,16009.0
-2014-09-05 00:00:00,14885.0
-2014-09-03 01:00:00,11632.0
-2014-09-03 02:00:00,10764.0
-2014-09-03 03:00:00,10193.0
-2014-09-03 04:00:00,9810.0
-2014-09-03 05:00:00,9605.0
-2014-09-03 06:00:00,9711.0
-2014-09-03 07:00:00,10279.0
-2014-09-03 08:00:00,11211.0
-2014-09-03 09:00:00,12099.0
-2014-09-03 10:00:00,12994.0
-2014-09-03 11:00:00,13782.0
-2014-09-03 12:00:00,14555.0
-2014-09-03 13:00:00,15167.0
-2014-09-03 14:00:00,15723.0
-2014-09-03 15:00:00,16446.0
-2014-09-03 16:00:00,17003.0
-2014-09-03 17:00:00,17473.0
-2014-09-03 18:00:00,17697.0
-2014-09-03 19:00:00,17527.0
-2014-09-03 20:00:00,16896.0
-2014-09-03 21:00:00,16472.0
-2014-09-03 22:00:00,16169.0
-2014-09-03 23:00:00,15201.0
-2014-09-04 00:00:00,13827.0
-2014-09-02 01:00:00,11443.0
-2014-09-02 02:00:00,10721.0
-2014-09-02 03:00:00,10192.0
-2014-09-02 04:00:00,9816.0
-2014-09-02 05:00:00,9699.0
-2014-09-02 06:00:00,9892.0
-2014-09-02 07:00:00,10662.0
-2014-09-02 08:00:00,11741.0
-2014-09-02 09:00:00,12579.0
-2014-09-02 10:00:00,13411.0
-2014-09-02 11:00:00,14135.0
-2014-09-02 12:00:00,14899.0
-2014-09-02 13:00:00,15488.0
-2014-09-02 14:00:00,15958.0
-2014-09-02 15:00:00,16454.0
-2014-09-02 16:00:00,16765.0
-2014-09-02 17:00:00,16986.0
-2014-09-02 18:00:00,16962.0
-2014-09-02 19:00:00,16641.0
-2014-09-02 20:00:00,15827.0
-2014-09-02 21:00:00,15412.0
-2014-09-02 22:00:00,15197.0
-2014-09-02 23:00:00,14229.0
-2014-09-03 00:00:00,12900.0
-2014-09-01 01:00:00,12223.0
-2014-09-01 02:00:00,11421.0
-2014-09-01 03:00:00,10883.0
-2014-09-01 04:00:00,10455.0
-2014-09-01 05:00:00,10200.0
-2014-09-01 06:00:00,10100.0
-2014-09-01 07:00:00,10299.0
-2014-09-01 08:00:00,10408.0
-2014-09-01 09:00:00,10689.0
-2014-09-01 10:00:00,11343.0
-2014-09-01 11:00:00,12030.0
-2014-09-01 12:00:00,12492.0
-2014-09-01 13:00:00,12961.0
-2014-09-01 14:00:00,13622.0
-2014-09-01 15:00:00,14330.0
-2014-09-01 16:00:00,14869.0
-2014-09-01 17:00:00,15160.0
-2014-09-01 18:00:00,15270.0
-2014-09-01 19:00:00,15110.0
-2014-09-01 20:00:00,14639.0
-2014-09-01 21:00:00,14326.0
-2014-09-01 22:00:00,14236.0
-2014-09-01 23:00:00,13515.0
-2014-09-02 00:00:00,12511.0
-2014-08-31 01:00:00,11729.0
-2014-08-31 02:00:00,10952.0
-2014-08-31 03:00:00,10328.0
-2014-08-31 04:00:00,9900.0
-2014-08-31 05:00:00,9582.0
-2014-08-31 06:00:00,9486.0
-2014-08-31 07:00:00,9486.0
-2014-08-31 08:00:00,9476.0
-2014-08-31 09:00:00,9809.0
-2014-08-31 10:00:00,10735.0
-2014-08-31 11:00:00,11852.0
-2014-08-31 12:00:00,12905.0
-2014-08-31 13:00:00,13735.0
-2014-08-31 14:00:00,14393.0
-2014-08-31 15:00:00,14895.0
-2014-08-31 16:00:00,15363.0
-2014-08-31 17:00:00,15680.0
-2014-08-31 18:00:00,15774.0
-2014-08-31 19:00:00,15682.0
-2014-08-31 20:00:00,15154.0
-2014-08-31 21:00:00,14702.0
-2014-08-31 22:00:00,14516.0
-2014-08-31 23:00:00,13932.0
-2014-09-01 00:00:00,13051.0
-2014-08-30 01:00:00,13079.0
-2014-08-30 02:00:00,12107.0
-2014-08-30 03:00:00,11419.0
-2014-08-30 04:00:00,10912.0
-2014-08-30 05:00:00,10716.0
-2014-08-30 06:00:00,10548.0
-2014-08-30 07:00:00,10702.0
-2014-08-30 08:00:00,10835.0
-2014-08-30 09:00:00,11320.0
-2014-08-30 10:00:00,12084.0
-2014-08-30 11:00:00,12970.0
-2014-08-30 12:00:00,13522.0
-2014-08-30 13:00:00,13893.0
-2014-08-30 14:00:00,14359.0
-2014-08-30 15:00:00,14673.0
-2014-08-30 16:00:00,15004.0
-2014-08-30 17:00:00,15265.0
-2014-08-30 18:00:00,15323.0
-2014-08-30 19:00:00,15121.0
-2014-08-30 20:00:00,14622.0
-2014-08-30 21:00:00,14208.0
-2014-08-30 22:00:00,14057.0
-2014-08-30 23:00:00,13421.0
-2014-08-31 00:00:00,12616.0
-2014-08-29 01:00:00,11491.0
-2014-08-29 02:00:00,10778.0
-2014-08-29 03:00:00,10285.0
-2014-08-29 04:00:00,9965.0
-2014-08-29 05:00:00,9848.0
-2014-08-29 06:00:00,10007.0
-2014-08-29 07:00:00,10728.0
-2014-08-29 08:00:00,11803.0
-2014-08-29 09:00:00,12617.0
-2014-08-29 10:00:00,13266.0
-2014-08-29 11:00:00,14014.0
-2014-08-29 12:00:00,15063.0
-2014-08-29 13:00:00,15962.0
-2014-08-29 14:00:00,16606.0
-2014-08-29 15:00:00,17264.0
-2014-08-29 16:00:00,17629.0
-2014-08-29 17:00:00,17982.0
-2014-08-29 18:00:00,18139.0
-2014-08-29 19:00:00,17739.0
-2014-08-29 20:00:00,16957.0
-2014-08-29 21:00:00,16547.0
-2014-08-29 22:00:00,16153.0
-2014-08-29 23:00:00,15348.0
-2014-08-30 00:00:00,14213.0
-2014-08-28 01:00:00,11301.0
-2014-08-28 02:00:00,10511.0
-2014-08-28 03:00:00,9991.0
-2014-08-28 04:00:00,9673.0
-2014-08-28 05:00:00,9533.0
-2014-08-28 06:00:00,9646.0
-2014-08-28 07:00:00,10332.0
-2014-08-28 08:00:00,11216.0
-2014-08-28 09:00:00,11932.0
-2014-08-28 10:00:00,12639.0
-2014-08-28 11:00:00,13197.0
-2014-08-28 12:00:00,13750.0
-2014-08-28 13:00:00,14201.0
-2014-08-28 14:00:00,14550.0
-2014-08-28 15:00:00,15005.0
-2014-08-28 16:00:00,15231.0
-2014-08-28 17:00:00,15370.0
-2014-08-28 18:00:00,15247.0
-2014-08-28 19:00:00,14644.0
-2014-08-28 20:00:00,14024.0
-2014-08-28 21:00:00,14099.0
-2014-08-28 22:00:00,14072.0
-2014-08-28 23:00:00,13435.0
-2014-08-29 00:00:00,12478.0
-2014-08-27 01:00:00,12253.0
-2014-08-27 02:00:00,11365.0
-2014-08-27 03:00:00,10711.0
-2014-08-27 04:00:00,10315.0
-2014-08-27 05:00:00,10128.0
-2014-08-27 06:00:00,10249.0
-2014-08-27 07:00:00,10887.0
-2014-08-27 08:00:00,11818.0
-2014-08-27 09:00:00,12725.0
-2014-08-27 10:00:00,13600.0
-2014-08-27 11:00:00,14241.0
-2014-08-27 12:00:00,14906.0
-2014-08-27 13:00:00,15515.0
-2014-08-27 14:00:00,15993.0
-2014-08-27 15:00:00,16536.0
-2014-08-27 16:00:00,16837.0
-2014-08-27 17:00:00,16712.0
-2014-08-27 18:00:00,16279.0
-2014-08-27 19:00:00,15543.0
-2014-08-27 20:00:00,14695.0
-2014-08-27 21:00:00,14371.0
-2014-08-27 22:00:00,14309.0
-2014-08-27 23:00:00,13581.0
-2014-08-28 00:00:00,12427.0
-2014-08-26 01:00:00,12154.0
-2014-08-26 02:00:00,11317.0
-2014-08-26 03:00:00,10785.0
-2014-08-26 04:00:00,10400.0
-2014-08-26 05:00:00,10303.0
-2014-08-26 06:00:00,10455.0
-2014-08-26 07:00:00,11149.0
-2014-08-26 08:00:00,12207.0
-2014-08-26 09:00:00,13149.0
-2014-08-26 10:00:00,14022.0
-2014-08-26 11:00:00,14919.0
-2014-08-26 12:00:00,15347.0
-2014-08-26 13:00:00,15023.0
-2014-08-26 14:00:00,14954.0
-2014-08-26 15:00:00,15658.0
-2014-08-26 16:00:00,16398.0
-2014-08-26 17:00:00,17087.0
-2014-08-26 18:00:00,17515.0
-2014-08-26 19:00:00,17381.0
-2014-08-26 20:00:00,16782.0
-2014-08-26 21:00:00,16215.0
-2014-08-26 22:00:00,15959.0
-2014-08-26 23:00:00,14966.0
-2014-08-27 00:00:00,13604.0
-2014-08-25 01:00:00,13546.0
-2014-08-25 02:00:00,12667.0
-2014-08-25 03:00:00,12051.0
-2014-08-25 04:00:00,11774.0
-2014-08-25 05:00:00,11627.0
-2014-08-25 06:00:00,11845.0
-2014-08-25 07:00:00,12624.0
-2014-08-25 08:00:00,13750.0
-2014-08-25 09:00:00,14893.0
-2014-08-25 10:00:00,15974.0
-2014-08-25 11:00:00,17155.0
-2014-08-25 12:00:00,18276.0
-2014-08-25 13:00:00,18893.0
-2014-08-25 14:00:00,18476.0
-2014-08-25 15:00:00,17458.0
-2014-08-25 16:00:00,16526.0
-2014-08-25 17:00:00,16034.0
-2014-08-25 18:00:00,16040.0
-2014-08-25 19:00:00,15810.0
-2014-08-25 20:00:00,15413.0
-2014-08-25 21:00:00,15284.0
-2014-08-25 22:00:00,15247.0
-2014-08-25 23:00:00,14491.0
-2014-08-26 00:00:00,13360.0
-2014-08-24 01:00:00,11284.0
-2014-08-24 02:00:00,10606.0
-2014-08-24 03:00:00,10122.0
-2014-08-24 04:00:00,9794.0
-2014-08-24 05:00:00,9581.0
-2014-08-24 06:00:00,9545.0
-2014-08-24 07:00:00,9654.0
-2014-08-24 08:00:00,9659.0
-2014-08-24 09:00:00,9937.0
-2014-08-24 10:00:00,10795.0
-2014-08-24 11:00:00,11846.0
-2014-08-24 12:00:00,13042.0
-2014-08-24 13:00:00,14189.0
-2014-08-24 14:00:00,15108.0
-2014-08-24 15:00:00,15839.0
-2014-08-24 16:00:00,16502.0
-2014-08-24 17:00:00,16898.0
-2014-08-24 18:00:00,17129.0
-2014-08-24 19:00:00,17139.0
-2014-08-24 20:00:00,16767.0
-2014-08-24 21:00:00,16392.0
-2014-08-24 22:00:00,16362.0
-2014-08-24 23:00:00,15735.0
-2014-08-25 00:00:00,14626.0
-2014-08-23 01:00:00,13612.0
-2014-08-23 02:00:00,12593.0
-2014-08-23 03:00:00,11825.0
-2014-08-23 04:00:00,11331.0
-2014-08-23 05:00:00,10949.0
-2014-08-23 06:00:00,10824.0
-2014-08-23 07:00:00,10999.0
-2014-08-23 08:00:00,11209.0
-2014-08-23 09:00:00,11939.0
-2014-08-23 10:00:00,13124.0
-2014-08-23 11:00:00,14411.0
-2014-08-23 12:00:00,15389.0
-2014-08-23 13:00:00,16063.0
-2014-08-23 14:00:00,16148.0
-2014-08-23 15:00:00,15666.0
-2014-08-23 16:00:00,14642.0
-2014-08-23 17:00:00,13859.0
-2014-08-23 18:00:00,13389.0
-2014-08-23 19:00:00,13194.0
-2014-08-23 20:00:00,13004.0
-2014-08-23 21:00:00,12974.0
-2014-08-23 22:00:00,13203.0
-2014-08-23 23:00:00,12845.0
-2014-08-24 00:00:00,12099.0
-2014-08-22 01:00:00,12577.0
-2014-08-22 02:00:00,11745.0
-2014-08-22 03:00:00,11223.0
-2014-08-22 04:00:00,10848.0
-2014-08-22 05:00:00,10709.0
-2014-08-22 06:00:00,10840.0
-2014-08-22 07:00:00,11486.0
-2014-08-22 08:00:00,12440.0
-2014-08-22 09:00:00,13523.0
-2014-08-22 10:00:00,14468.0
-2014-08-22 11:00:00,15165.0
-2014-08-22 12:00:00,15747.0
-2014-08-22 13:00:00,15939.0
-2014-08-22 14:00:00,16391.0
-2014-08-22 15:00:00,17250.0
-2014-08-22 16:00:00,17732.0
-2014-08-22 17:00:00,18118.0
-2014-08-22 18:00:00,18253.0
-2014-08-22 19:00:00,17953.0
-2014-08-22 20:00:00,17290.0
-2014-08-22 21:00:00,16803.0
-2014-08-22 22:00:00,16603.0
-2014-08-22 23:00:00,15958.0
-2014-08-23 00:00:00,14843.0
-2014-08-21 01:00:00,13189.0
-2014-08-21 02:00:00,12169.0
-2014-08-21 03:00:00,11465.0
-2014-08-21 04:00:00,10958.0
-2014-08-21 05:00:00,10692.0
-2014-08-21 06:00:00,10852.0
-2014-08-21 07:00:00,11474.0
-2014-08-21 08:00:00,12576.0
-2014-08-21 09:00:00,13531.0
-2014-08-21 10:00:00,13913.0
-2014-08-21 11:00:00,14177.0
-2014-08-21 12:00:00,14619.0
-2014-08-21 13:00:00,15052.0
-2014-08-21 14:00:00,15264.0
-2014-08-21 15:00:00,15295.0
-2014-08-21 16:00:00,15437.0
-2014-08-21 17:00:00,15244.0
-2014-08-21 18:00:00,15437.0
-2014-08-21 19:00:00,15466.0
-2014-08-21 20:00:00,15258.0
-2014-08-21 21:00:00,15147.0
-2014-08-21 22:00:00,15284.0
-2014-08-21 23:00:00,14706.0
-2014-08-22 00:00:00,13736.0
-2014-08-20 01:00:00,12399.0
-2014-08-20 02:00:00,11390.0
-2014-08-20 03:00:00,10680.0
-2014-08-20 04:00:00,10228.0
-2014-08-20 05:00:00,9995.0
-2014-08-20 06:00:00,10067.0
-2014-08-20 07:00:00,10676.0
-2014-08-20 08:00:00,11495.0
-2014-08-20 09:00:00,12495.0
-2014-08-20 10:00:00,13452.0
-2014-08-20 11:00:00,14375.0
-2014-08-20 12:00:00,15378.0
-2014-08-20 13:00:00,16138.0
-2014-08-20 14:00:00,16729.0
-2014-08-20 15:00:00,17354.0
-2014-08-20 16:00:00,17759.0
-2014-08-20 17:00:00,18060.0
-2014-08-20 18:00:00,18150.0
-2014-08-20 19:00:00,17940.0
-2014-08-20 20:00:00,17337.0
-2014-08-20 21:00:00,16785.0
-2014-08-20 22:00:00,16731.0
-2014-08-20 23:00:00,15864.0
-2014-08-21 00:00:00,14496.0
-2014-08-19 01:00:00,12310.0
-2014-08-19 02:00:00,11404.0
-2014-08-19 03:00:00,10752.0
-2014-08-19 04:00:00,10363.0
-2014-08-19 05:00:00,10226.0
-2014-08-19 06:00:00,10374.0
-2014-08-19 07:00:00,11031.0
-2014-08-19 08:00:00,12055.0
-2014-08-19 09:00:00,12897.0
-2014-08-19 10:00:00,13809.0
-2014-08-19 11:00:00,14678.0
-2014-08-19 12:00:00,15387.0
-2014-08-19 13:00:00,15748.0
-2014-08-19 14:00:00,15791.0
-2014-08-19 15:00:00,16021.0
-2014-08-19 16:00:00,16456.0
-2014-08-19 17:00:00,16924.0
-2014-08-19 18:00:00,17227.0
-2014-08-19 19:00:00,17139.0
-2014-08-19 20:00:00,16528.0
-2014-08-19 21:00:00,15960.0
-2014-08-19 22:00:00,15920.0
-2014-08-19 23:00:00,15073.0
-2014-08-20 00:00:00,13754.0
-2014-08-18 01:00:00,9937.0
-2014-08-18 02:00:00,9435.0
-2014-08-18 03:00:00,9084.0
-2014-08-18 04:00:00,8909.0
-2014-08-18 05:00:00,8858.0
-2014-08-18 06:00:00,9109.0
-2014-08-18 07:00:00,9842.0
-2014-08-18 08:00:00,10797.0
-2014-08-18 09:00:00,11605.0
-2014-08-18 10:00:00,12192.0
-2014-08-18 11:00:00,12592.0
-2014-08-18 12:00:00,13027.0
-2014-08-18 13:00:00,13577.0
-2014-08-18 14:00:00,14357.0
-2014-08-18 15:00:00,15132.0
-2014-08-18 16:00:00,15731.0
-2014-08-18 17:00:00,16138.0
-2014-08-18 18:00:00,16344.0
-2014-08-18 19:00:00,16209.0
-2014-08-18 20:00:00,15745.0
-2014-08-18 21:00:00,15348.0
-2014-08-18 22:00:00,15392.0
-2014-08-18 23:00:00,14711.0
-2014-08-19 00:00:00,13542.0
-2014-08-17 01:00:00,10942.0
-2014-08-17 02:00:00,10200.0
-2014-08-17 03:00:00,9615.0
-2014-08-17 04:00:00,9201.0
-2014-08-17 05:00:00,8940.0
-2014-08-17 06:00:00,8814.0
-2014-08-17 07:00:00,8856.0
-2014-08-17 08:00:00,8792.0
-2014-08-17 09:00:00,9104.0
-2014-08-17 10:00:00,9659.0
-2014-08-17 11:00:00,10196.0
-2014-08-17 12:00:00,10627.0
-2014-08-17 13:00:00,10960.0
-2014-08-17 14:00:00,11253.0
-2014-08-17 15:00:00,11436.0
-2014-08-17 16:00:00,11534.0
-2014-08-17 17:00:00,11612.0
-2014-08-17 18:00:00,11697.0
-2014-08-17 19:00:00,11604.0
-2014-08-17 20:00:00,11435.0
-2014-08-17 21:00:00,11349.0
-2014-08-17 22:00:00,11595.0
-2014-08-17 23:00:00,11236.0
-2014-08-18 00:00:00,10616.0
-2014-08-16 01:00:00,10360.0
-2014-08-16 02:00:00,9726.0
-2014-08-16 03:00:00,9191.0
-2014-08-16 04:00:00,8860.0
-2014-08-16 05:00:00,8643.0
-2014-08-16 06:00:00,8626.0
-2014-08-16 07:00:00,8840.0
-2014-08-16 08:00:00,8941.0
-2014-08-16 09:00:00,9540.0
-2014-08-16 10:00:00,10378.0
-2014-08-16 11:00:00,11147.0
-2014-08-16 12:00:00,11827.0
-2014-08-16 13:00:00,12302.0
-2014-08-16 14:00:00,12662.0
-2014-08-16 15:00:00,12871.0
-2014-08-16 16:00:00,13167.0
-2014-08-16 17:00:00,13373.0
-2014-08-16 18:00:00,13511.0
-2014-08-16 19:00:00,13415.0
-2014-08-16 20:00:00,13061.0
-2014-08-16 21:00:00,12781.0
-2014-08-16 22:00:00,12916.0
-2014-08-16 23:00:00,12484.0
-2014-08-17 00:00:00,11738.0
-2014-08-15 01:00:00,9782.0
-2014-08-15 02:00:00,9186.0
-2014-08-15 03:00:00,8750.0
-2014-08-15 04:00:00,8475.0
-2014-08-15 05:00:00,8374.0
-2014-08-15 06:00:00,8500.0
-2014-08-15 07:00:00,9000.0
-2014-08-15 08:00:00,9546.0
-2014-08-15 09:00:00,10385.0
-2014-08-15 10:00:00,11072.0
-2014-08-15 11:00:00,11577.0
-2014-08-15 12:00:00,12001.0
-2014-08-15 13:00:00,12285.0
-2014-08-15 14:00:00,12541.0
-2014-08-15 15:00:00,12873.0
-2014-08-15 16:00:00,13084.0
-2014-08-15 17:00:00,13293.0
-2014-08-15 18:00:00,13404.0
-2014-08-15 19:00:00,13256.0
-2014-08-15 20:00:00,12830.0
-2014-08-15 21:00:00,12421.0
-2014-08-15 22:00:00,12520.0
-2014-08-15 23:00:00,12104.0
-2014-08-16 00:00:00,11267.0
-2014-08-14 01:00:00,10564.0
-2014-08-14 02:00:00,9855.0
-2014-08-14 03:00:00,9378.0
-2014-08-14 04:00:00,9049.0
-2014-08-14 05:00:00,8899.0
-2014-08-14 06:00:00,8988.0
-2014-08-14 07:00:00,9495.0
-2014-08-14 08:00:00,10123.0
-2014-08-14 09:00:00,10916.0
-2014-08-14 10:00:00,11579.0
-2014-08-14 11:00:00,12040.0
-2014-08-14 12:00:00,12456.0
-2014-08-14 13:00:00,12725.0
-2014-08-14 14:00:00,12882.0
-2014-08-14 15:00:00,13131.0
-2014-08-14 16:00:00,13241.0
-2014-08-14 17:00:00,13346.0
-2014-08-14 18:00:00,13268.0
-2014-08-14 19:00:00,12921.0
-2014-08-14 20:00:00,12295.0
-2014-08-14 21:00:00,11823.0
-2014-08-14 22:00:00,11974.0
-2014-08-14 23:00:00,11482.0
-2014-08-15 00:00:00,10679.0
-2014-08-13 01:00:00,9940.0
-2014-08-13 02:00:00,9318.0
-2014-08-13 03:00:00,8928.0
-2014-08-13 04:00:00,8639.0
-2014-08-13 05:00:00,8506.0
-2014-08-13 06:00:00,8640.0
-2014-08-13 07:00:00,9137.0
-2014-08-13 08:00:00,9791.0
-2014-08-13 09:00:00,10672.0
-2014-08-13 10:00:00,11393.0
-2014-08-13 11:00:00,11902.0
-2014-08-13 12:00:00,12414.0
-2014-08-13 13:00:00,12916.0
-2014-08-13 14:00:00,13359.0
-2014-08-13 15:00:00,13852.0
-2014-08-13 16:00:00,14102.0
-2014-08-13 17:00:00,14218.0
-2014-08-13 18:00:00,14194.0
-2014-08-13 19:00:00,13953.0
-2014-08-13 20:00:00,13423.0
-2014-08-13 21:00:00,12984.0
-2014-08-13 22:00:00,13056.0
-2014-08-13 23:00:00,12556.0
-2014-08-14 00:00:00,11559.0
-2014-08-12 01:00:00,11747.0
-2014-08-12 02:00:00,10829.0
-2014-08-12 03:00:00,10246.0
-2014-08-12 04:00:00,9858.0
-2014-08-12 05:00:00,9705.0
-2014-08-12 06:00:00,9756.0
-2014-08-12 07:00:00,10332.0
-2014-08-12 08:00:00,11105.0
-2014-08-12 09:00:00,11622.0
-2014-08-12 10:00:00,11949.0
-2014-08-12 11:00:00,12121.0
-2014-08-12 12:00:00,12271.0
-2014-08-12 13:00:00,12268.0
-2014-08-12 14:00:00,12259.0
-2014-08-12 15:00:00,12270.0
-2014-08-12 16:00:00,12158.0
-2014-08-12 17:00:00,12027.0
-2014-08-12 18:00:00,11948.0
-2014-08-12 19:00:00,11792.0
-2014-08-12 20:00:00,11627.0
-2014-08-12 21:00:00,11564.0
-2014-08-12 22:00:00,11869.0
-2014-08-12 23:00:00,11485.0
-2014-08-13 00:00:00,10753.0
-2014-08-11 01:00:00,11075.0
-2014-08-11 02:00:00,10450.0
-2014-08-11 03:00:00,9964.0
-2014-08-11 04:00:00,9685.0
-2014-08-11 05:00:00,9605.0
-2014-08-11 06:00:00,9864.0
-2014-08-11 07:00:00,10580.0
-2014-08-11 08:00:00,11469.0
-2014-08-11 09:00:00,12261.0
-2014-08-11 10:00:00,12899.0
-2014-08-11 11:00:00,13523.0
-2014-08-11 12:00:00,14158.0
-2014-08-11 13:00:00,14656.0
-2014-08-11 14:00:00,15064.0
-2014-08-11 15:00:00,15404.0
-2014-08-11 16:00:00,15733.0
-2014-08-11 17:00:00,16099.0
-2014-08-11 18:00:00,16294.0
-2014-08-11 19:00:00,16110.0
-2014-08-11 20:00:00,15398.0
-2014-08-11 21:00:00,14855.0
-2014-08-11 22:00:00,14771.0
-2014-08-11 23:00:00,14110.0
-2014-08-12 00:00:00,12966.0
-2014-08-10 01:00:00,10750.0
-2014-08-10 02:00:00,10139.0
-2014-08-10 03:00:00,9669.0
-2014-08-10 04:00:00,9312.0
-2014-08-10 05:00:00,9140.0
-2014-08-10 06:00:00,8975.0
-2014-08-10 07:00:00,8933.0
-2014-08-10 08:00:00,8860.0
-2014-08-10 09:00:00,9180.0
-2014-08-10 10:00:00,9910.0
-2014-08-10 11:00:00,10818.0
-2014-08-10 12:00:00,11605.0
-2014-08-10 13:00:00,12250.0
-2014-08-10 14:00:00,12741.0
-2014-08-10 15:00:00,13129.0
-2014-08-10 16:00:00,13340.0
-2014-08-10 17:00:00,13368.0
-2014-08-10 18:00:00,13287.0
-2014-08-10 19:00:00,13053.0
-2014-08-10 20:00:00,12754.0
-2014-08-10 21:00:00,12650.0
-2014-08-10 22:00:00,12889.0
-2014-08-10 23:00:00,12591.0
-2014-08-11 00:00:00,11903.0
-2014-08-09 01:00:00,11412.0
-2014-08-09 02:00:00,10628.0
-2014-08-09 03:00:00,10073.0
-2014-08-09 04:00:00,9579.0
-2014-08-09 05:00:00,9369.0
-2014-08-09 06:00:00,9209.0
-2014-08-09 07:00:00,9309.0
-2014-08-09 08:00:00,9396.0
-2014-08-09 09:00:00,10061.0
-2014-08-09 10:00:00,10971.0
-2014-08-09 11:00:00,11833.0
-2014-08-09 12:00:00,12612.0
-2014-08-09 13:00:00,13133.0
-2014-08-09 14:00:00,13450.0
-2014-08-09 15:00:00,13556.0
-2014-08-09 16:00:00,13699.0
-2014-08-09 17:00:00,13801.0
-2014-08-09 18:00:00,13852.0
-2014-08-09 19:00:00,13574.0
-2014-08-09 20:00:00,13116.0
-2014-08-09 21:00:00,12494.0
-2014-08-09 22:00:00,12533.0
-2014-08-09 23:00:00,12182.0
-2014-08-10 00:00:00,11475.0
-2014-08-08 01:00:00,11238.0
-2014-08-08 02:00:00,10441.0
-2014-08-08 03:00:00,9877.0
-2014-08-08 04:00:00,9514.0
-2014-08-08 05:00:00,9348.0
-2014-08-08 06:00:00,9456.0
-2014-08-08 07:00:00,10033.0
-2014-08-08 08:00:00,10803.0
-2014-08-08 09:00:00,11680.0
-2014-08-08 10:00:00,12512.0
-2014-08-08 11:00:00,13127.0
-2014-08-08 12:00:00,13728.0
-2014-08-08 13:00:00,14269.0
-2014-08-08 14:00:00,14679.0
-2014-08-08 15:00:00,15125.0
-2014-08-08 16:00:00,15441.0
-2014-08-08 17:00:00,15620.0
-2014-08-08 18:00:00,15541.0
-2014-08-08 19:00:00,15140.0
-2014-08-08 20:00:00,14405.0
-2014-08-08 21:00:00,13730.0
-2014-08-08 22:00:00,13684.0
-2014-08-08 23:00:00,13242.0
-2014-08-09 00:00:00,12376.0
-2014-08-07 01:00:00,10829.0
-2014-08-07 02:00:00,10056.0
-2014-08-07 03:00:00,9556.0
-2014-08-07 04:00:00,9244.0
-2014-08-07 05:00:00,9116.0
-2014-08-07 06:00:00,9273.0
-2014-08-07 07:00:00,9809.0
-2014-08-07 08:00:00,10517.0
-2014-08-07 09:00:00,11405.0
-2014-08-07 10:00:00,12199.0
-2014-08-07 11:00:00,12689.0
-2014-08-07 12:00:00,13367.0
-2014-08-07 13:00:00,13963.0
-2014-08-07 14:00:00,14376.0
-2014-08-07 15:00:00,14771.0
-2014-08-07 16:00:00,15120.0
-2014-08-07 17:00:00,15303.0
-2014-08-07 18:00:00,15256.0
-2014-08-07 19:00:00,15019.0
-2014-08-07 20:00:00,14427.0
-2014-08-07 21:00:00,13782.0
-2014-08-07 22:00:00,13697.0
-2014-08-07 23:00:00,13227.0
-2014-08-08 00:00:00,12237.0
-2014-08-06 01:00:00,11275.0
-2014-08-06 02:00:00,10447.0
-2014-08-06 03:00:00,9855.0
-2014-08-06 04:00:00,9495.0
-2014-08-06 05:00:00,9272.0
-2014-08-06 06:00:00,9402.0
-2014-08-06 07:00:00,9909.0
-2014-08-06 08:00:00,10615.0
-2014-08-06 09:00:00,11492.0
-2014-08-06 10:00:00,12274.0
-2014-08-06 11:00:00,12951.0
-2014-08-06 12:00:00,13687.0
-2014-08-06 13:00:00,14220.0
-2014-08-06 14:00:00,14676.0
-2014-08-06 15:00:00,15083.0
-2014-08-06 16:00:00,15291.0
-2014-08-06 17:00:00,15319.0
-2014-08-06 18:00:00,15059.0
-2014-08-06 19:00:00,14615.0
-2014-08-06 20:00:00,13819.0
-2014-08-06 21:00:00,13313.0
-2014-08-06 22:00:00,13317.0
-2014-08-06 23:00:00,12830.0
-2014-08-07 00:00:00,11849.0
-2014-08-05 01:00:00,11769.0
-2014-08-05 02:00:00,10900.0
-2014-08-05 03:00:00,10367.0
-2014-08-05 04:00:00,9957.0
-2014-08-05 05:00:00,9785.0
-2014-08-05 06:00:00,9904.0
-2014-08-05 07:00:00,10532.0
-2014-08-05 08:00:00,11322.0
-2014-08-05 09:00:00,12188.0
-2014-08-05 10:00:00,12788.0
-2014-08-05 11:00:00,13263.0
-2014-08-05 12:00:00,13744.0
-2014-08-05 13:00:00,14293.0
-2014-08-05 14:00:00,14826.0
-2014-08-05 15:00:00,15327.0
-2014-08-05 16:00:00,15689.0
-2014-08-05 17:00:00,15941.0
-2014-08-05 18:00:00,15913.0
-2014-08-05 19:00:00,15525.0
-2014-08-05 20:00:00,14845.0
-2014-08-05 21:00:00,14169.0
-2014-08-05 22:00:00,14052.0
-2014-08-05 23:00:00,13490.0
-2014-08-06 00:00:00,12423.0
-2014-08-04 01:00:00,11446.0
-2014-08-04 02:00:00,10595.0
-2014-08-04 03:00:00,10063.0
-2014-08-04 04:00:00,9710.0
-2014-08-04 05:00:00,9567.0
-2014-08-04 06:00:00,9703.0
-2014-08-04 07:00:00,10265.0
-2014-08-04 08:00:00,11051.0
-2014-08-04 09:00:00,12122.0
-2014-08-04 10:00:00,13015.0
-2014-08-04 11:00:00,13814.0
-2014-08-04 12:00:00,14774.0
-2014-08-04 13:00:00,15598.0
-2014-08-04 14:00:00,16237.0
-2014-08-04 15:00:00,16736.0
-2014-08-04 16:00:00,16994.0
-2014-08-04 17:00:00,17026.0
-2014-08-04 18:00:00,16792.0
-2014-08-04 19:00:00,16194.0
-2014-08-04 20:00:00,15418.0
-2014-08-04 21:00:00,14893.0
-2014-08-04 22:00:00,14698.0
-2014-08-04 23:00:00,14005.0
-2014-08-05 00:00:00,12876.0
-2014-08-03 01:00:00,10815.0
-2014-08-03 02:00:00,10007.0
-2014-08-03 03:00:00,9494.0
-2014-08-03 04:00:00,9056.0
-2014-08-03 05:00:00,8811.0
-2014-08-03 06:00:00,8640.0
-2014-08-03 07:00:00,8620.0
-2014-08-03 08:00:00,8495.0
-2014-08-03 09:00:00,9023.0
-2014-08-03 10:00:00,9891.0
-2014-08-03 11:00:00,10949.0
-2014-08-03 12:00:00,12014.0
-2014-08-03 13:00:00,12856.0
-2014-08-03 14:00:00,13474.0
-2014-08-03 15:00:00,13880.0
-2014-08-03 16:00:00,14206.0
-2014-08-03 17:00:00,14431.0
-2014-08-03 18:00:00,14589.0
-2014-08-03 19:00:00,14549.0
-2014-08-03 20:00:00,14256.0
-2014-08-03 21:00:00,13793.0
-2014-08-03 22:00:00,13781.0
-2014-08-03 23:00:00,13365.0
-2014-08-04 00:00:00,12437.0
-2014-08-02 01:00:00,10768.0
-2014-08-02 02:00:00,9992.0
-2014-08-02 03:00:00,9445.0
-2014-08-02 04:00:00,9063.0
-2014-08-02 05:00:00,8841.0
-2014-08-02 06:00:00,8768.0
-2014-08-02 07:00:00,8892.0
-2014-08-02 08:00:00,8964.0
-2014-08-02 09:00:00,9590.0
-2014-08-02 10:00:00,10328.0
-2014-08-02 11:00:00,11125.0
-2014-08-02 12:00:00,11786.0
-2014-08-02 13:00:00,12370.0
-2014-08-02 14:00:00,12766.0
-2014-08-02 15:00:00,13204.0
-2014-08-02 16:00:00,13467.0
-2014-08-02 17:00:00,13926.0
-2014-08-02 18:00:00,14174.0
-2014-08-02 19:00:00,14059.0
-2014-08-02 20:00:00,13645.0
-2014-08-02 21:00:00,12994.0
-2014-08-02 22:00:00,12790.0
-2014-08-02 23:00:00,12447.0
-2014-08-03 00:00:00,11624.0
-2014-08-01 01:00:00,11496.0
-2014-08-01 02:00:00,10634.0
-2014-08-01 03:00:00,10005.0
-2014-08-01 04:00:00,9620.0
-2014-08-01 05:00:00,9385.0
-2014-08-01 06:00:00,9439.0
-2014-08-01 07:00:00,9933.0
-2014-08-01 08:00:00,10578.0
-2014-08-01 09:00:00,11538.0
-2014-08-01 10:00:00,12335.0
-2014-08-01 11:00:00,13022.0
-2014-08-01 12:00:00,13875.0
-2014-08-01 13:00:00,14529.0
-2014-08-01 14:00:00,14889.0
-2014-08-01 15:00:00,15152.0
-2014-08-01 16:00:00,15230.0
-2014-08-01 17:00:00,15125.0
-2014-08-01 18:00:00,14836.0
-2014-08-01 19:00:00,14333.0
-2014-08-01 20:00:00,13732.0
-2014-08-01 21:00:00,13188.0
-2014-08-01 22:00:00,13035.0
-2014-08-01 23:00:00,12647.0
-2014-08-02 00:00:00,11696.0
-2014-07-31 01:00:00,10583.0
-2014-07-31 02:00:00,9832.0
-2014-07-31 03:00:00,9344.0
-2014-07-31 04:00:00,9014.0
-2014-07-31 05:00:00,8858.0
-2014-07-31 06:00:00,8988.0
-2014-07-31 07:00:00,9508.0
-2014-07-31 08:00:00,10150.0
-2014-07-31 09:00:00,10983.0
-2014-07-31 10:00:00,11729.0
-2014-07-31 11:00:00,12428.0
-2014-07-31 12:00:00,13149.0
-2014-07-31 13:00:00,13778.0
-2014-07-31 14:00:00,14339.0
-2014-07-31 15:00:00,14828.0
-2014-07-31 16:00:00,15095.0
-2014-07-31 17:00:00,15283.0
-2014-07-31 18:00:00,15322.0
-2014-07-31 19:00:00,15141.0
-2014-07-31 20:00:00,14632.0
-2014-07-31 21:00:00,14087.0
-2014-07-31 22:00:00,14048.0
-2014-07-31 23:00:00,13641.0
-2014-08-01 00:00:00,12625.0
-2014-07-30 01:00:00,10469.0
-2014-07-30 02:00:00,9747.0
-2014-07-30 03:00:00,9251.0
-2014-07-30 04:00:00,8927.0
-2014-07-30 05:00:00,8768.0
-2014-07-30 06:00:00,8890.0
-2014-07-30 07:00:00,9402.0
-2014-07-30 08:00:00,10079.0
-2014-07-30 09:00:00,10996.0
-2014-07-30 10:00:00,11714.0
-2014-07-30 11:00:00,12310.0
-2014-07-30 12:00:00,12905.0
-2014-07-30 13:00:00,13311.0
-2014-07-30 14:00:00,13677.0
-2014-07-30 15:00:00,14027.0
-2014-07-30 16:00:00,14231.0
-2014-07-30 17:00:00,14248.0
-2014-07-30 18:00:00,14143.0
-2014-07-30 19:00:00,13892.0
-2014-07-30 20:00:00,13347.0
-2014-07-30 21:00:00,12870.0
-2014-07-30 22:00:00,12817.0
-2014-07-30 23:00:00,12488.0
-2014-07-31 00:00:00,11575.0
-2014-07-29 01:00:00,9942.0
-2014-07-29 02:00:00,9331.0
-2014-07-29 03:00:00,8965.0
-2014-07-29 04:00:00,8710.0
-2014-07-29 05:00:00,8590.0
-2014-07-29 06:00:00,8759.0
-2014-07-29 07:00:00,9254.0
-2014-07-29 08:00:00,9910.0
-2014-07-29 09:00:00,10734.0
-2014-07-29 10:00:00,11450.0
-2014-07-29 11:00:00,11983.0
-2014-07-29 12:00:00,12585.0
-2014-07-29 13:00:00,12990.0
-2014-07-29 14:00:00,13356.0
-2014-07-29 15:00:00,13663.0
-2014-07-29 16:00:00,13806.0
-2014-07-29 17:00:00,13764.0
-2014-07-29 18:00:00,13644.0
-2014-07-29 19:00:00,13443.0
-2014-07-29 20:00:00,13057.0
-2014-07-29 21:00:00,12684.0
-2014-07-29 22:00:00,12783.0
-2014-07-29 23:00:00,12479.0
-2014-07-30 00:00:00,11525.0
-2014-07-28 01:00:00,10503.0
-2014-07-28 02:00:00,9798.0
-2014-07-28 03:00:00,9320.0
-2014-07-28 04:00:00,8949.0
-2014-07-28 05:00:00,8811.0
-2014-07-28 06:00:00,8945.0
-2014-07-28 07:00:00,9449.0
-2014-07-28 08:00:00,10015.0
-2014-07-28 09:00:00,10915.0
-2014-07-28 10:00:00,11473.0
-2014-07-28 11:00:00,11899.0
-2014-07-28 12:00:00,12245.0
-2014-07-28 13:00:00,12438.0
-2014-07-28 14:00:00,12545.0
-2014-07-28 15:00:00,12657.0
-2014-07-28 16:00:00,12716.0
-2014-07-28 17:00:00,12675.0
-2014-07-28 18:00:00,12567.0
-2014-07-28 19:00:00,12382.0
-2014-07-28 20:00:00,11997.0
-2014-07-28 21:00:00,11674.0
-2014-07-28 22:00:00,11840.0
-2014-07-28 23:00:00,11568.0
-2014-07-29 00:00:00,10830.0
-2014-07-27 01:00:00,12092.0
-2014-07-27 02:00:00,11332.0
-2014-07-27 03:00:00,10611.0
-2014-07-27 04:00:00,10141.0
-2014-07-27 05:00:00,9813.0
-2014-07-27 06:00:00,9680.0
-2014-07-27 07:00:00,9550.0
-2014-07-27 08:00:00,9578.0
-2014-07-27 09:00:00,10202.0
-2014-07-27 10:00:00,11360.0
-2014-07-27 11:00:00,12611.0
-2014-07-27 12:00:00,13779.0
-2014-07-27 13:00:00,14492.0
-2014-07-27 14:00:00,14763.0
-2014-07-27 15:00:00,14878.0
-2014-07-27 16:00:00,14808.0
-2014-07-27 17:00:00,14612.0
-2014-07-27 18:00:00,14283.0
-2014-07-27 19:00:00,13836.0
-2014-07-27 20:00:00,13284.0
-2014-07-27 21:00:00,12600.0
-2014-07-27 22:00:00,12421.0
-2014-07-27 23:00:00,12196.0
-2014-07-28 00:00:00,11434.0
-2014-07-26 01:00:00,10646.0
-2014-07-26 02:00:00,9925.0
-2014-07-26 03:00:00,9513.0
-2014-07-26 04:00:00,9176.0
-2014-07-26 05:00:00,9022.0
-2014-07-26 06:00:00,8978.0
-2014-07-26 07:00:00,9143.0
-2014-07-26 08:00:00,9339.0
-2014-07-26 09:00:00,9876.0
-2014-07-26 10:00:00,10642.0
-2014-07-26 11:00:00,11456.0
-2014-07-26 12:00:00,12311.0
-2014-07-26 13:00:00,12803.0
-2014-07-26 14:00:00,13344.0
-2014-07-26 15:00:00,13839.0
-2014-07-26 16:00:00,14116.0
-2014-07-26 17:00:00,14183.0
-2014-07-26 18:00:00,14274.0
-2014-07-26 19:00:00,14208.0
-2014-07-26 20:00:00,13946.0
-2014-07-26 21:00:00,13672.0
-2014-07-26 22:00:00,13814.0
-2014-07-26 23:00:00,13657.0
-2014-07-27 00:00:00,12997.0
-2014-07-25 01:00:00,10203.0
-2014-07-25 02:00:00,9576.0
-2014-07-25 03:00:00,9114.0
-2014-07-25 04:00:00,8813.0
-2014-07-25 05:00:00,8679.0
-2014-07-25 06:00:00,8802.0
-2014-07-25 07:00:00,9165.0
-2014-07-25 08:00:00,9839.0
-2014-07-25 09:00:00,10634.0
-2014-07-25 10:00:00,11260.0
-2014-07-25 11:00:00,11745.0
-2014-07-25 12:00:00,12050.0
-2014-07-25 13:00:00,12286.0
-2014-07-25 14:00:00,12441.0
-2014-07-25 15:00:00,12560.0
-2014-07-25 16:00:00,12664.0
-2014-07-25 17:00:00,12581.0
-2014-07-25 18:00:00,12491.0
-2014-07-25 19:00:00,12339.0
-2014-07-25 20:00:00,12248.0
-2014-07-25 21:00:00,11967.0
-2014-07-25 22:00:00,12126.0
-2014-07-25 23:00:00,12062.0
-2014-07-26 00:00:00,11404.0
-2014-07-24 01:00:00,10144.0
-2014-07-24 02:00:00,9509.0
-2014-07-24 03:00:00,9093.0
-2014-07-24 04:00:00,8814.0
-2014-07-24 05:00:00,8695.0
-2014-07-24 06:00:00,8807.0
-2014-07-24 07:00:00,9222.0
-2014-07-24 08:00:00,9920.0
-2014-07-24 09:00:00,10882.0
-2014-07-24 10:00:00,11608.0
-2014-07-24 11:00:00,12056.0
-2014-07-24 12:00:00,12468.0
-2014-07-24 13:00:00,12684.0
-2014-07-24 14:00:00,12911.0
-2014-07-24 15:00:00,13160.0
-2014-07-24 16:00:00,13318.0
-2014-07-24 17:00:00,13415.0
-2014-07-24 18:00:00,13463.0
-2014-07-24 19:00:00,13370.0
-2014-07-24 20:00:00,12910.0
-2014-07-24 21:00:00,12303.0
-2014-07-24 22:00:00,12259.0
-2014-07-24 23:00:00,11950.0
-2014-07-25 00:00:00,11116.0
-2014-07-23 01:00:00,15069.0
-2014-07-23 02:00:00,13577.0
-2014-07-23 03:00:00,12397.0
-2014-07-23 04:00:00,11391.0
-2014-07-23 05:00:00,10750.0
-2014-07-23 06:00:00,10575.0
-2014-07-23 07:00:00,10801.0
-2014-07-23 08:00:00,11342.0
-2014-07-23 09:00:00,12199.0
-2014-07-23 10:00:00,12875.0
-2014-07-23 11:00:00,13268.0
-2014-07-23 12:00:00,13629.0
-2014-07-23 13:00:00,13821.0
-2014-07-23 14:00:00,13899.0
-2014-07-23 15:00:00,14022.0
-2014-07-23 16:00:00,13998.0
-2014-07-23 17:00:00,14011.0
-2014-07-23 18:00:00,13915.0
-2014-07-23 19:00:00,13583.0
-2014-07-23 20:00:00,12919.0
-2014-07-23 21:00:00,12291.0
-2014-07-23 22:00:00,12120.0
-2014-07-23 23:00:00,11869.0
-2014-07-24 00:00:00,11051.0
-2014-07-22 01:00:00,13296.0
-2014-07-22 02:00:00,12233.0
-2014-07-22 03:00:00,11414.0
-2014-07-22 04:00:00,10850.0
-2014-07-22 05:00:00,10587.0
-2014-07-22 06:00:00,10628.0
-2014-07-22 07:00:00,11094.0
-2014-07-22 08:00:00,11921.0
-2014-07-22 09:00:00,13166.0
-2014-07-22 10:00:00,14300.0
-2014-07-22 11:00:00,15334.0
-2014-07-22 12:00:00,16404.0
-2014-07-22 13:00:00,17276.0
-2014-07-22 14:00:00,18019.0
-2014-07-22 15:00:00,18783.0
-2014-07-22 16:00:00,19359.0
-2014-07-22 17:00:00,19721.0
-2014-07-22 18:00:00,19673.0
-2014-07-22 19:00:00,19497.0
-2014-07-22 20:00:00,19145.0
-2014-07-22 21:00:00,18658.0
-2014-07-22 22:00:00,18486.0
-2014-07-22 23:00:00,17952.0
-2014-07-23 00:00:00,16665.0
-2014-07-21 01:00:00,11131.0
-2014-07-21 02:00:00,10343.0
-2014-07-21 03:00:00,9801.0
-2014-07-21 04:00:00,9464.0
-2014-07-21 05:00:00,9302.0
-2014-07-21 06:00:00,9508.0
-2014-07-21 07:00:00,10063.0
-2014-07-21 08:00:00,10948.0
-2014-07-21 09:00:00,12055.0
-2014-07-21 10:00:00,13068.0
-2014-07-21 11:00:00,13990.0
-2014-07-21 12:00:00,14857.0
-2014-07-21 13:00:00,15560.0
-2014-07-21 14:00:00,16254.0
-2014-07-21 15:00:00,16937.0
-2014-07-21 16:00:00,17468.0
-2014-07-21 17:00:00,17843.0
-2014-07-21 18:00:00,18066.0
-2014-07-21 19:00:00,18017.0
-2014-07-21 20:00:00,17570.0
-2014-07-21 21:00:00,16862.0
-2014-07-21 22:00:00,16426.0
-2014-07-21 23:00:00,15932.0
-2014-07-22 00:00:00,14677.0
-2014-07-20 01:00:00,10438.0
-2014-07-20 02:00:00,9711.0
-2014-07-20 03:00:00,9229.0
-2014-07-20 04:00:00,8842.0
-2014-07-20 05:00:00,8621.0
-2014-07-20 06:00:00,8516.0
-2014-07-20 07:00:00,8412.0
-2014-07-20 08:00:00,8342.0
-2014-07-20 09:00:00,8781.0
-2014-07-20 10:00:00,9500.0
-2014-07-20 11:00:00,10271.0
-2014-07-20 12:00:00,11134.0
-2014-07-20 13:00:00,11822.0
-2014-07-20 14:00:00,12308.0
-2014-07-20 15:00:00,12764.0
-2014-07-20 16:00:00,13072.0
-2014-07-20 17:00:00,13398.0
-2014-07-20 18:00:00,13611.0
-2014-07-20 19:00:00,13690.0
-2014-07-20 20:00:00,13478.0
-2014-07-20 21:00:00,13060.0
-2014-07-20 22:00:00,12968.0
-2014-07-20 23:00:00,12869.0
-2014-07-21 00:00:00,12082.0
-2014-07-19 01:00:00,10712.0
-2014-07-19 02:00:00,9964.0
-2014-07-19 03:00:00,9405.0
-2014-07-19 04:00:00,9025.0
-2014-07-19 05:00:00,8792.0
-2014-07-19 06:00:00,8715.0
-2014-07-19 07:00:00,8739.0
-2014-07-19 08:00:00,8854.0
-2014-07-19 09:00:00,9500.0
-2014-07-19 10:00:00,10325.0
-2014-07-19 11:00:00,11112.0
-2014-07-19 12:00:00,11732.0
-2014-07-19 13:00:00,12205.0
-2014-07-19 14:00:00,12469.0
-2014-07-19 15:00:00,12619.0
-2014-07-19 16:00:00,12777.0
-2014-07-19 17:00:00,12961.0
-2014-07-19 18:00:00,13023.0
-2014-07-19 19:00:00,12908.0
-2014-07-19 20:00:00,12484.0
-2014-07-19 21:00:00,12080.0
-2014-07-19 22:00:00,12004.0
-2014-07-19 23:00:00,11867.0
-2014-07-20 00:00:00,11195.0
-2014-07-18 01:00:00,10347.0
-2014-07-18 02:00:00,9684.0
-2014-07-18 03:00:00,9207.0
-2014-07-18 04:00:00,8951.0
-2014-07-18 05:00:00,8811.0
-2014-07-18 06:00:00,8936.0
-2014-07-18 07:00:00,9341.0
-2014-07-18 08:00:00,10010.0
-2014-07-18 09:00:00,10908.0
-2014-07-18 10:00:00,11680.0
-2014-07-18 11:00:00,12362.0
-2014-07-18 12:00:00,12968.0
-2014-07-18 13:00:00,13342.0
-2014-07-18 14:00:00,13601.0
-2014-07-18 15:00:00,13904.0
-2014-07-18 16:00:00,14080.0
-2014-07-18 17:00:00,14165.0
-2014-07-18 18:00:00,14128.0
-2014-07-18 19:00:00,13908.0
-2014-07-18 20:00:00,13387.0
-2014-07-18 21:00:00,12860.0
-2014-07-18 22:00:00,12703.0
-2014-07-18 23:00:00,12435.0
-2014-07-19 00:00:00,11623.0
-2014-07-17 01:00:00,9830.0
-2014-07-17 02:00:00,9185.0
-2014-07-17 03:00:00,8773.0
-2014-07-17 04:00:00,8499.0
-2014-07-17 05:00:00,8420.0
-2014-07-17 06:00:00,8538.0
-2014-07-17 07:00:00,8904.0
-2014-07-17 08:00:00,9671.0
-2014-07-17 09:00:00,10532.0
-2014-07-17 10:00:00,11227.0
-2014-07-17 11:00:00,11742.0
-2014-07-17 12:00:00,12205.0
-2014-07-17 13:00:00,12516.0
-2014-07-17 14:00:00,12765.0
-2014-07-17 15:00:00,13053.0
-2014-07-17 16:00:00,13151.0
-2014-07-17 17:00:00,13174.0
-2014-07-17 18:00:00,13221.0
-2014-07-17 19:00:00,13121.0
-2014-07-17 20:00:00,12787.0
-2014-07-17 21:00:00,12368.0
-2014-07-17 22:00:00,12398.0
-2014-07-17 23:00:00,12149.0
-2014-07-18 00:00:00,11299.0
-2014-07-16 01:00:00,9729.0
-2014-07-16 02:00:00,9163.0
-2014-07-16 03:00:00,8799.0
-2014-07-16 04:00:00,8545.0
-2014-07-16 05:00:00,8474.0
-2014-07-16 06:00:00,8602.0
-2014-07-16 07:00:00,8994.0
-2014-07-16 08:00:00,9692.0
-2014-07-16 09:00:00,10520.0
-2014-07-16 10:00:00,11184.0
-2014-07-16 11:00:00,11626.0
-2014-07-16 12:00:00,11991.0
-2014-07-16 13:00:00,12152.0
-2014-07-16 14:00:00,12258.0
-2014-07-16 15:00:00,12420.0
-2014-07-16 16:00:00,12438.0
-2014-07-16 17:00:00,12444.0
-2014-07-16 18:00:00,12412.0
-2014-07-16 19:00:00,12274.0
-2014-07-16 20:00:00,11896.0
-2014-07-16 21:00:00,11571.0
-2014-07-16 22:00:00,11598.0
-2014-07-16 23:00:00,11479.0
-2014-07-17 00:00:00,10710.0
-2014-07-15 01:00:00,10556.0
-2014-07-15 02:00:00,9790.0
-2014-07-15 03:00:00,9274.0
-2014-07-15 04:00:00,8909.0
-2014-07-15 05:00:00,8760.0
-2014-07-15 06:00:00,8868.0
-2014-07-15 07:00:00,9163.0
-2014-07-15 08:00:00,9808.0
-2014-07-15 09:00:00,10631.0
-2014-07-15 10:00:00,11202.0
-2014-07-15 11:00:00,11505.0
-2014-07-15 12:00:00,11842.0
-2014-07-15 13:00:00,12023.0
-2014-07-15 14:00:00,12136.0
-2014-07-15 15:00:00,12261.0
-2014-07-15 16:00:00,12263.0
-2014-07-15 17:00:00,12163.0
-2014-07-15 18:00:00,12061.0
-2014-07-15 19:00:00,11834.0
-2014-07-15 20:00:00,11491.0
-2014-07-15 21:00:00,11283.0
-2014-07-15 22:00:00,11439.0
-2014-07-15 23:00:00,11273.0
-2014-07-16 00:00:00,10569.0
-2014-07-14 01:00:00,11857.0
-2014-07-14 02:00:00,10809.0
-2014-07-14 03:00:00,10144.0
-2014-07-14 04:00:00,9683.0
-2014-07-14 05:00:00,9460.0
-2014-07-14 06:00:00,9552.0
-2014-07-14 07:00:00,10015.0
-2014-07-14 08:00:00,10828.0
-2014-07-14 09:00:00,11792.0
-2014-07-14 10:00:00,12437.0
-2014-07-14 11:00:00,13113.0
-2014-07-14 12:00:00,13622.0
-2014-07-14 13:00:00,14005.0
-2014-07-14 14:00:00,14268.0
-2014-07-14 15:00:00,14769.0
-2014-07-14 16:00:00,15097.0
-2014-07-14 17:00:00,15214.0
-2014-07-14 18:00:00,15161.0
-2014-07-14 19:00:00,14794.0
-2014-07-14 20:00:00,14030.0
-2014-07-14 21:00:00,13298.0
-2014-07-14 22:00:00,12933.0
-2014-07-14 23:00:00,12589.0
-2014-07-15 00:00:00,11572.0
-2014-07-13 01:00:00,12554.0
-2014-07-13 02:00:00,11423.0
-2014-07-13 03:00:00,10694.0
-2014-07-13 04:00:00,10151.0
-2014-07-13 05:00:00,9925.0
-2014-07-13 06:00:00,9687.0
-2014-07-13 07:00:00,9447.0
-2014-07-13 08:00:00,9401.0
-2014-07-13 09:00:00,9827.0
-2014-07-13 10:00:00,10406.0
-2014-07-13 11:00:00,11206.0
-2014-07-13 12:00:00,12113.0
-2014-07-13 13:00:00,12969.0
-2014-07-13 14:00:00,13587.0
-2014-07-13 15:00:00,14091.0
-2014-07-13 16:00:00,14573.0
-2014-07-13 17:00:00,15070.0
-2014-07-13 18:00:00,15316.0
-2014-07-13 19:00:00,15360.0
-2014-07-13 20:00:00,14974.0
-2014-07-13 21:00:00,14546.0
-2014-07-13 22:00:00,14413.0
-2014-07-13 23:00:00,14080.0
-2014-07-14 00:00:00,13095.0
-2014-07-12 01:00:00,11549.0
-2014-07-12 02:00:00,10810.0
-2014-07-12 03:00:00,10313.0
-2014-07-12 04:00:00,9945.0
-2014-07-12 05:00:00,9748.0
-2014-07-12 06:00:00,9691.0
-2014-07-12 07:00:00,9802.0
-2014-07-12 08:00:00,10061.0
-2014-07-12 09:00:00,10635.0
-2014-07-12 10:00:00,11381.0
-2014-07-12 11:00:00,12020.0
-2014-07-12 12:00:00,12426.0
-2014-07-12 13:00:00,12559.0
-2014-07-12 14:00:00,12910.0
-2014-07-12 15:00:00,13163.0
-2014-07-12 16:00:00,13258.0
-2014-07-12 17:00:00,13418.0
-2014-07-12 18:00:00,13639.0
-2014-07-12 19:00:00,13691.0
-2014-07-12 20:00:00,13563.0
-2014-07-12 21:00:00,13588.0
-2014-07-12 22:00:00,13837.0
-2014-07-12 23:00:00,13835.0
-2014-07-13 00:00:00,13386.0
-2014-07-11 01:00:00,10832.0
-2014-07-11 02:00:00,10051.0
-2014-07-11 03:00:00,9513.0
-2014-07-11 04:00:00,9171.0
-2014-07-11 05:00:00,9036.0
-2014-07-11 06:00:00,9099.0
-2014-07-11 07:00:00,9411.0
-2014-07-11 08:00:00,10215.0
-2014-07-11 09:00:00,11250.0
-2014-07-11 10:00:00,12159.0
-2014-07-11 11:00:00,12835.0
-2014-07-11 12:00:00,13495.0
-2014-07-11 13:00:00,13963.0
-2014-07-11 14:00:00,14353.0
-2014-07-11 15:00:00,14690.0
-2014-07-11 16:00:00,14712.0
-2014-07-11 17:00:00,14561.0
-2014-07-11 18:00:00,14233.0
-2014-07-11 19:00:00,13764.0
-2014-07-11 20:00:00,13389.0
-2014-07-11 21:00:00,13143.0
-2014-07-11 22:00:00,13262.0
-2014-07-11 23:00:00,13141.0
-2014-07-12 00:00:00,12400.0
-2014-07-10 01:00:00,10858.0
-2014-07-10 02:00:00,10063.0
-2014-07-10 03:00:00,9536.0
-2014-07-10 04:00:00,9155.0
-2014-07-10 05:00:00,9015.0
-2014-07-10 06:00:00,9115.0
-2014-07-10 07:00:00,9455.0
-2014-07-10 08:00:00,10317.0
-2014-07-10 09:00:00,11380.0
-2014-07-10 10:00:00,12183.0
-2014-07-10 11:00:00,12782.0
-2014-07-10 12:00:00,13326.0
-2014-07-10 13:00:00,13760.0
-2014-07-10 14:00:00,14099.0
-2014-07-10 15:00:00,14472.0
-2014-07-10 16:00:00,14715.0
-2014-07-10 17:00:00,14899.0
-2014-07-10 18:00:00,14942.0
-2014-07-10 19:00:00,14729.0
-2014-07-10 20:00:00,14197.0
-2014-07-10 21:00:00,13509.0
-2014-07-10 22:00:00,13172.0
-2014-07-10 23:00:00,12849.0
-2014-07-11 00:00:00,11894.0
-2014-07-09 01:00:00,11685.0
-2014-07-09 02:00:00,10753.0
-2014-07-09 03:00:00,10115.0
-2014-07-09 04:00:00,9698.0
-2014-07-09 05:00:00,9499.0
-2014-07-09 06:00:00,9566.0
-2014-07-09 07:00:00,9884.0
-2014-07-09 08:00:00,10678.0
-2014-07-09 09:00:00,11712.0
-2014-07-09 10:00:00,12561.0
-2014-07-09 11:00:00,13264.0
-2014-07-09 12:00:00,13869.0
-2014-07-09 13:00:00,14179.0
-2014-07-09 14:00:00,14410.0
-2014-07-09 15:00:00,14670.0
-2014-07-09 16:00:00,14839.0
-2014-07-09 17:00:00,14979.0
-2014-07-09 18:00:00,14999.0
-2014-07-09 19:00:00,14817.0
-2014-07-09 20:00:00,14263.0
-2014-07-09 21:00:00,13611.0
-2014-07-09 22:00:00,13184.0
-2014-07-09 23:00:00,12902.0
-2014-07-10 00:00:00,11927.0
-2014-07-08 01:00:00,13452.0
-2014-07-08 02:00:00,12421.0
-2014-07-08 03:00:00,11754.0
-2014-07-08 04:00:00,11227.0
-2014-07-08 05:00:00,11056.0
-2014-07-08 06:00:00,11133.0
-2014-07-08 07:00:00,11666.0
-2014-07-08 08:00:00,12341.0
-2014-07-08 09:00:00,13049.0
-2014-07-08 10:00:00,13820.0
-2014-07-08 11:00:00,14502.0
-2014-07-08 12:00:00,15219.0
-2014-07-08 13:00:00,15735.0
-2014-07-08 14:00:00,16003.0
-2014-07-08 15:00:00,16254.0
-2014-07-08 16:00:00,16413.0
-2014-07-08 17:00:00,16526.0
-2014-07-08 18:00:00,16502.0
-2014-07-08 19:00:00,16261.0
-2014-07-08 20:00:00,15631.0
-2014-07-08 21:00:00,14894.0
-2014-07-08 22:00:00,14349.0
-2014-07-08 23:00:00,13991.0
-2014-07-09 00:00:00,12895.0
-2014-07-07 01:00:00,12938.0
-2014-07-07 02:00:00,12128.0
-2014-07-07 03:00:00,11409.0
-2014-07-07 04:00:00,10815.0
-2014-07-07 05:00:00,10547.0
-2014-07-07 06:00:00,10583.0
-2014-07-07 07:00:00,11105.0
-2014-07-07 08:00:00,12125.0
-2014-07-07 09:00:00,13471.0
-2014-07-07 10:00:00,14494.0
-2014-07-07 11:00:00,15551.0
-2014-07-07 12:00:00,16483.0
-2014-07-07 13:00:00,17187.0
-2014-07-07 14:00:00,17695.0
-2014-07-07 15:00:00,18109.0
-2014-07-07 16:00:00,18342.0
-2014-07-07 17:00:00,18489.0
-2014-07-07 18:00:00,18544.0
-2014-07-07 19:00:00,18431.0
-2014-07-07 20:00:00,17887.0
-2014-07-07 21:00:00,17107.0
-2014-07-07 22:00:00,16563.0
-2014-07-07 23:00:00,16073.0
-2014-07-08 00:00:00,14783.0
-2014-07-06 01:00:00,9832.0
-2014-07-06 02:00:00,9225.0
-2014-07-06 03:00:00,8799.0
-2014-07-06 04:00:00,8490.0
-2014-07-06 05:00:00,8241.0
-2014-07-06 06:00:00,8214.0
-2014-07-06 07:00:00,8025.0
-2014-07-06 08:00:00,8042.0
-2014-07-06 09:00:00,8468.0
-2014-07-06 10:00:00,9002.0
-2014-07-06 11:00:00,9992.0
-2014-07-06 12:00:00,10948.0
-2014-07-06 13:00:00,11953.0
-2014-07-06 14:00:00,12550.0
-2014-07-06 15:00:00,13160.0
-2014-07-06 16:00:00,13943.0
-2014-07-06 17:00:00,14731.0
-2014-07-06 18:00:00,15167.0
-2014-07-06 19:00:00,15224.0
-2014-07-06 20:00:00,15006.0
-2014-07-06 21:00:00,14700.0
-2014-07-06 22:00:00,14598.0
-2014-07-06 23:00:00,14607.0
-2014-07-07 00:00:00,13860.0
-2014-07-05 01:00:00,9356.0
-2014-07-05 02:00:00,8816.0
-2014-07-05 03:00:00,8351.0
-2014-07-05 04:00:00,8067.0
-2014-07-05 05:00:00,7979.0
-2014-07-05 06:00:00,7918.0
-2014-07-05 07:00:00,7918.0
-2014-07-05 08:00:00,8038.0
-2014-07-05 09:00:00,8677.0
-2014-07-05 10:00:00,9373.0
-2014-07-05 11:00:00,10008.0
-2014-07-05 12:00:00,10608.0
-2014-07-05 13:00:00,10916.0
-2014-07-05 14:00:00,11147.0
-2014-07-05 15:00:00,11174.0
-2014-07-05 16:00:00,11240.0
-2014-07-05 17:00:00,11266.0
-2014-07-05 18:00:00,11314.0
-2014-07-05 19:00:00,11164.0
-2014-07-05 20:00:00,10904.0
-2014-07-05 21:00:00,10739.0
-2014-07-05 22:00:00,10938.0
-2014-07-05 23:00:00,10879.0
-2014-07-06 00:00:00,10441.0
-2014-07-04 01:00:00,9654.0
-2014-07-04 02:00:00,8972.0
-2014-07-04 03:00:00,8534.0
-2014-07-04 04:00:00,8232.0
-2014-07-04 05:00:00,8036.0
-2014-07-04 06:00:00,7992.0
-2014-07-04 07:00:00,7861.0
-2014-07-04 08:00:00,7925.0
-2014-07-04 09:00:00,8364.0
-2014-07-04 10:00:00,8906.0
-2014-07-04 11:00:00,9445.0
-2014-07-04 12:00:00,9927.0
-2014-07-04 13:00:00,10311.0
-2014-07-04 14:00:00,10606.0
-2014-07-04 15:00:00,10848.0
-2014-07-04 16:00:00,11040.0
-2014-07-04 17:00:00,11246.0
-2014-07-04 18:00:00,11364.0
-2014-07-04 19:00:00,11334.0
-2014-07-04 20:00:00,11103.0
-2014-07-04 21:00:00,10637.0
-2014-07-04 22:00:00,10262.0
-2014-07-04 23:00:00,10128.0
-2014-07-05 00:00:00,9767.0
-2014-07-03 01:00:00,9634.0
-2014-07-03 02:00:00,9086.0
-2014-07-03 03:00:00,8749.0
-2014-07-03 04:00:00,8523.0
-2014-07-03 05:00:00,8451.0
-2014-07-03 06:00:00,8542.0
-2014-07-03 07:00:00,8861.0
-2014-07-03 08:00:00,9460.0
-2014-07-03 09:00:00,10335.0
-2014-07-03 10:00:00,11057.0
-2014-07-03 11:00:00,11554.0
-2014-07-03 12:00:00,12001.0
-2014-07-03 13:00:00,12241.0
-2014-07-03 14:00:00,12293.0
-2014-07-03 15:00:00,12446.0
-2014-07-03 16:00:00,12493.0
-2014-07-03 17:00:00,12525.0
-2014-07-03 18:00:00,12501.0
-2014-07-03 19:00:00,12375.0
-2014-07-03 20:00:00,11983.0
-2014-07-03 21:00:00,11570.0
-2014-07-03 22:00:00,11321.0
-2014-07-03 23:00:00,11141.0
-2014-07-04 00:00:00,10443.0
-2014-07-02 01:00:00,11802.0
-2014-07-02 02:00:00,10843.0
-2014-07-02 03:00:00,10200.0
-2014-07-02 04:00:00,9682.0
-2014-07-02 05:00:00,9402.0
-2014-07-02 06:00:00,9383.0
-2014-07-02 07:00:00,9656.0
-2014-07-02 08:00:00,10400.0
-2014-07-02 09:00:00,11271.0
-2014-07-02 10:00:00,12007.0
-2014-07-02 11:00:00,12488.0
-2014-07-02 12:00:00,12863.0
-2014-07-02 13:00:00,13020.0
-2014-07-02 14:00:00,12939.0
-2014-07-02 15:00:00,12815.0
-2014-07-02 16:00:00,12486.0
-2014-07-02 17:00:00,12172.0
-2014-07-02 18:00:00,11887.0
-2014-07-02 19:00:00,11632.0
-2014-07-02 20:00:00,11281.0
-2014-07-02 21:00:00,11181.0
-2014-07-02 22:00:00,11346.0
-2014-07-02 23:00:00,11148.0
-2014-07-03 00:00:00,10453.0
-2014-07-01 01:00:00,11331.0
-2014-07-01 02:00:00,10522.0
-2014-07-01 03:00:00,10003.0
-2014-07-01 04:00:00,9670.0
-2014-07-01 05:00:00,9534.0
-2014-07-01 06:00:00,9609.0
-2014-07-01 07:00:00,10092.0
-2014-07-01 08:00:00,10921.0
-2014-07-01 09:00:00,11981.0
-2014-07-01 10:00:00,12967.0
-2014-07-01 11:00:00,13727.0
-2014-07-01 12:00:00,14367.0
-2014-07-01 13:00:00,14815.0
-2014-07-01 14:00:00,15187.0
-2014-07-01 15:00:00,15519.0
-2014-07-01 16:00:00,15584.0
-2014-07-01 17:00:00,15702.0
-2014-07-01 18:00:00,15686.0
-2014-07-01 19:00:00,15486.0
-2014-07-01 20:00:00,15028.0
-2014-07-01 21:00:00,14474.0
-2014-07-01 22:00:00,14115.0
-2014-07-01 23:00:00,13879.0
-2014-07-02 00:00:00,12931.0
-2014-06-30 01:00:00,13495.0
-2014-06-30 02:00:00,12544.0
-2014-06-30 03:00:00,11884.0
-2014-06-30 04:00:00,11405.0
-2014-06-30 05:00:00,11058.0
-2014-06-30 06:00:00,11123.0
-2014-06-30 07:00:00,11655.0
-2014-06-30 08:00:00,12498.0
-2014-06-30 09:00:00,13355.0
-2014-06-30 10:00:00,14256.0
-2014-06-30 11:00:00,15010.0
-2014-06-30 12:00:00,15593.0
-2014-06-30 13:00:00,15958.0
-2014-06-30 14:00:00,16591.0
-2014-06-30 15:00:00,17556.0
-2014-06-30 16:00:00,18422.0
-2014-06-30 17:00:00,18874.0
-2014-06-30 18:00:00,18483.0
-2014-06-30 19:00:00,18012.0
-2014-06-30 20:00:00,17542.0
-2014-06-30 21:00:00,16111.0
-2014-06-30 22:00:00,15059.0
-2014-06-30 23:00:00,14189.0
-2014-07-01 00:00:00,12568.0
-2014-06-29 01:00:00,12791.0
-2014-06-29 02:00:00,11989.0
-2014-06-29 03:00:00,11367.0
-2014-06-29 04:00:00,10897.0
-2014-06-29 05:00:00,10582.0
-2014-06-29 06:00:00,10261.0
-2014-06-29 07:00:00,9871.0
-2014-06-29 08:00:00,9814.0
-2014-06-29 09:00:00,10363.0
-2014-06-29 10:00:00,11095.0
-2014-06-29 11:00:00,12025.0
-2014-06-29 12:00:00,13015.0
-2014-06-29 13:00:00,13869.0
-2014-06-29 14:00:00,14463.0
-2014-06-29 15:00:00,15017.0
-2014-06-29 16:00:00,15447.0
-2014-06-29 17:00:00,15868.0
-2014-06-29 18:00:00,16230.0
-2014-06-29 19:00:00,16378.0
-2014-06-29 20:00:00,16231.0
-2014-06-29 21:00:00,15850.0
-2014-06-29 22:00:00,15497.0
-2014-06-29 23:00:00,15404.0
-2014-06-30 00:00:00,14515.0
-2014-06-28 01:00:00,13192.0
-2014-06-28 02:00:00,12136.0
-2014-06-28 03:00:00,11427.0
-2014-06-28 04:00:00,10780.0
-2014-06-28 05:00:00,10502.0
-2014-06-28 06:00:00,10339.0
-2014-06-28 07:00:00,10355.0
-2014-06-28 08:00:00,10691.0
-2014-06-28 09:00:00,11441.0
-2014-06-28 10:00:00,12491.0
-2014-06-28 11:00:00,13601.0
-2014-06-28 12:00:00,14514.0
-2014-06-28 13:00:00,15379.0
-2014-06-28 14:00:00,15935.0
-2014-06-28 15:00:00,16097.0
-2014-06-28 16:00:00,16357.0
-2014-06-28 17:00:00,16540.0
-2014-06-28 18:00:00,16687.0
-2014-06-28 19:00:00,16505.0
-2014-06-28 20:00:00,15902.0
-2014-06-28 21:00:00,15083.0
-2014-06-28 22:00:00,14614.0
-2014-06-28 23:00:00,14435.0
-2014-06-29 00:00:00,13655.0
-2014-06-27 01:00:00,10649.0
-2014-06-27 02:00:00,9886.0
-2014-06-27 03:00:00,9381.0
-2014-06-27 04:00:00,9125.0
-2014-06-27 05:00:00,8996.0
-2014-06-27 06:00:00,9137.0
-2014-06-27 07:00:00,9538.0
-2014-06-27 08:00:00,10320.0
-2014-06-27 09:00:00,11346.0
-2014-06-27 10:00:00,12345.0
-2014-06-27 11:00:00,13238.0
-2014-06-27 12:00:00,14211.0
-2014-06-27 13:00:00,15053.0
-2014-06-27 14:00:00,15760.0
-2014-06-27 15:00:00,16401.0
-2014-06-27 16:00:00,16888.0
-2014-06-27 17:00:00,17154.0
-2014-06-27 18:00:00,17251.0
-2014-06-27 19:00:00,17086.0
-2014-06-27 20:00:00,16507.0
-2014-06-27 21:00:00,15861.0
-2014-06-27 22:00:00,15567.0
-2014-06-27 23:00:00,15299.0
-2014-06-28 00:00:00,14323.0
-2014-06-26 01:00:00,10510.0
-2014-06-26 02:00:00,9817.0
-2014-06-26 03:00:00,9358.0
-2014-06-26 04:00:00,9106.0
-2014-06-26 05:00:00,8971.0
-2014-06-26 06:00:00,9088.0
-2014-06-26 07:00:00,9515.0
-2014-06-26 08:00:00,10249.0
-2014-06-26 09:00:00,11085.0
-2014-06-26 10:00:00,11578.0
-2014-06-26 11:00:00,11946.0
-2014-06-26 12:00:00,12386.0
-2014-06-26 13:00:00,12771.0
-2014-06-26 14:00:00,13199.0
-2014-06-26 15:00:00,13728.0
-2014-06-26 16:00:00,14150.0
-2014-06-26 17:00:00,14488.0
-2014-06-26 18:00:00,14658.0
-2014-06-26 19:00:00,14519.0
-2014-06-26 20:00:00,13925.0
-2014-06-26 21:00:00,13254.0
-2014-06-26 22:00:00,12925.0
-2014-06-26 23:00:00,12618.0
-2014-06-27 00:00:00,11644.0
-2014-06-25 01:00:00,12388.0
-2014-06-25 02:00:00,11385.0
-2014-06-25 03:00:00,10669.0
-2014-06-25 04:00:00,10189.0
-2014-06-25 05:00:00,9870.0
-2014-06-25 06:00:00,9909.0
-2014-06-25 07:00:00,10238.0
-2014-06-25 08:00:00,11000.0
-2014-06-25 09:00:00,11738.0
-2014-06-25 10:00:00,12398.0
-2014-06-25 11:00:00,12947.0
-2014-06-25 12:00:00,13778.0
-2014-06-25 13:00:00,14447.0
-2014-06-25 14:00:00,14970.0
-2014-06-25 15:00:00,15362.0
-2014-06-25 16:00:00,15130.0
-2014-06-25 17:00:00,14720.0
-2014-06-25 18:00:00,14271.0
-2014-06-25 19:00:00,13568.0
-2014-06-25 20:00:00,12895.0
-2014-06-25 21:00:00,12415.0
-2014-06-25 22:00:00,12199.0
-2014-06-25 23:00:00,12322.0
-2014-06-26 00:00:00,11434.0
-2014-06-24 01:00:00,12153.0
-2014-06-24 02:00:00,11247.0
-2014-06-24 03:00:00,10632.0
-2014-06-24 04:00:00,10263.0
-2014-06-24 05:00:00,10078.0
-2014-06-24 06:00:00,10224.0
-2014-06-24 07:00:00,10745.0
-2014-06-24 08:00:00,11683.0
-2014-06-24 09:00:00,12603.0
-2014-06-24 10:00:00,13325.0
-2014-06-24 11:00:00,14023.0
-2014-06-24 12:00:00,14951.0
-2014-06-24 13:00:00,15595.0
-2014-06-24 14:00:00,16245.0
-2014-06-24 15:00:00,16786.0
-2014-06-24 16:00:00,17241.0
-2014-06-24 17:00:00,17563.0
-2014-06-24 18:00:00,17684.0
-2014-06-24 19:00:00,17405.0
-2014-06-24 20:00:00,16585.0
-2014-06-24 21:00:00,15735.0
-2014-06-24 22:00:00,15262.0
-2014-06-24 23:00:00,14791.0
-2014-06-25 00:00:00,13646.0
-2014-06-23 01:00:00,10676.0
-2014-06-23 02:00:00,9951.0
-2014-06-23 03:00:00,9566.0
-2014-06-23 04:00:00,9267.0
-2014-06-23 05:00:00,9225.0
-2014-06-23 06:00:00,9470.0
-2014-06-23 07:00:00,10096.0
-2014-06-23 08:00:00,11072.0
-2014-06-23 09:00:00,12031.0
-2014-06-23 10:00:00,12643.0
-2014-06-23 11:00:00,13067.0
-2014-06-23 12:00:00,13519.0
-2014-06-23 13:00:00,13993.0
-2014-06-23 14:00:00,14316.0
-2014-06-23 15:00:00,14673.0
-2014-06-23 16:00:00,15165.0
-2014-06-23 17:00:00,15545.0
-2014-06-23 18:00:00,15754.0
-2014-06-23 19:00:00,15760.0
-2014-06-23 20:00:00,15387.0
-2014-06-23 21:00:00,14864.0
-2014-06-23 22:00:00,14636.0
-2014-06-23 23:00:00,14379.0
-2014-06-24 00:00:00,13362.0
-2014-06-22 01:00:00,10466.0
-2014-06-22 02:00:00,9845.0
-2014-06-22 03:00:00,9337.0
-2014-06-22 04:00:00,8977.0
-2014-06-22 05:00:00,8743.0
-2014-06-22 06:00:00,8654.0
-2014-06-22 07:00:00,8505.0
-2014-06-22 08:00:00,8566.0
-2014-06-22 09:00:00,8905.0
-2014-06-22 10:00:00,9554.0
-2014-06-22 11:00:00,10309.0
-2014-06-22 12:00:00,11246.0
-2014-06-22 13:00:00,11990.0
-2014-06-22 14:00:00,12690.0
-2014-06-22 15:00:00,13187.0
-2014-06-22 16:00:00,13583.0
-2014-06-22 17:00:00,13832.0
-2014-06-22 18:00:00,14060.0
-2014-06-22 19:00:00,13926.0
-2014-06-22 20:00:00,13457.0
-2014-06-22 21:00:00,12832.0
-2014-06-22 22:00:00,12687.0
-2014-06-22 23:00:00,12431.0
-2014-06-23 00:00:00,11619.0
-2014-06-21 01:00:00,11285.0
-2014-06-21 02:00:00,10430.0
-2014-06-21 03:00:00,9862.0
-2014-06-21 04:00:00,9449.0
-2014-06-21 05:00:00,9196.0
-2014-06-21 06:00:00,9120.0
-2014-06-21 07:00:00,9106.0
-2014-06-21 08:00:00,9248.0
-2014-06-21 09:00:00,9813.0
-2014-06-21 10:00:00,10361.0
-2014-06-21 11:00:00,11049.0
-2014-06-21 12:00:00,11714.0
-2014-06-21 13:00:00,12406.0
-2014-06-21 14:00:00,13124.0
-2014-06-21 15:00:00,13631.0
-2014-06-21 16:00:00,13847.0
-2014-06-21 17:00:00,14090.0
-2014-06-21 18:00:00,13909.0
-2014-06-21 19:00:00,13415.0
-2014-06-21 20:00:00,12933.0
-2014-06-21 21:00:00,12314.0
-2014-06-21 22:00:00,12073.0
-2014-06-21 23:00:00,11890.0
-2014-06-22 00:00:00,11263.0
-2014-06-20 01:00:00,11336.0
-2014-06-20 02:00:00,10639.0
-2014-06-20 03:00:00,10145.0
-2014-06-20 04:00:00,9832.0
-2014-06-20 05:00:00,9718.0
-2014-06-20 06:00:00,9869.0
-2014-06-20 07:00:00,10335.0
-2014-06-20 08:00:00,11246.0
-2014-06-20 09:00:00,12193.0
-2014-06-20 10:00:00,12996.0
-2014-06-20 11:00:00,13740.0
-2014-06-20 12:00:00,14511.0
-2014-06-20 13:00:00,15121.0
-2014-06-20 14:00:00,15590.0
-2014-06-20 15:00:00,16121.0
-2014-06-20 16:00:00,16487.0
-2014-06-20 17:00:00,16766.0
-2014-06-20 18:00:00,16775.0
-2014-06-20 19:00:00,16390.0
-2014-06-20 20:00:00,15590.0
-2014-06-20 21:00:00,14736.0
-2014-06-20 22:00:00,13918.0
-2014-06-20 23:00:00,13410.0
-2014-06-21 00:00:00,12333.0
-2014-06-19 01:00:00,10874.0
-2014-06-19 02:00:00,10162.0
-2014-06-19 03:00:00,9693.0
-2014-06-19 04:00:00,9361.0
-2014-06-19 05:00:00,9195.0
-2014-06-19 06:00:00,9290.0
-2014-06-19 07:00:00,9684.0
-2014-06-19 08:00:00,10466.0
-2014-06-19 09:00:00,11291.0
-2014-06-19 10:00:00,11909.0
-2014-06-19 11:00:00,12407.0
-2014-06-19 12:00:00,12847.0
-2014-06-19 13:00:00,13401.0
-2014-06-19 14:00:00,14069.0
-2014-06-19 15:00:00,14718.0
-2014-06-19 16:00:00,15164.0
-2014-06-19 17:00:00,15399.0
-2014-06-19 18:00:00,15282.0
-2014-06-19 19:00:00,14954.0
-2014-06-19 20:00:00,14254.0
-2014-06-19 21:00:00,13834.0
-2014-06-19 22:00:00,13848.0
-2014-06-19 23:00:00,13397.0
-2014-06-20 00:00:00,12470.0
-2014-06-18 01:00:00,14419.0
-2014-06-18 02:00:00,13445.0
-2014-06-18 03:00:00,12789.0
-2014-06-18 04:00:00,12346.0
-2014-06-18 05:00:00,12082.0
-2014-06-18 06:00:00,12098.0
-2014-06-18 07:00:00,12508.0
-2014-06-18 08:00:00,13404.0
-2014-06-18 09:00:00,14557.0
-2014-06-18 10:00:00,15428.0
-2014-06-18 11:00:00,15970.0
-2014-06-18 12:00:00,16361.0
-2014-06-18 13:00:00,15763.0
-2014-06-18 14:00:00,14905.0
-2014-06-18 15:00:00,15019.0
-2014-06-18 16:00:00,15348.0
-2014-06-18 17:00:00,15433.0
-2014-06-18 18:00:00,15440.0
-2014-06-18 19:00:00,15266.0
-2014-06-18 20:00:00,14651.0
-2014-06-18 21:00:00,14045.0
-2014-06-18 22:00:00,13528.0
-2014-06-18 23:00:00,12856.0
-2014-06-19 00:00:00,11893.0
-2014-06-17 01:00:00,13950.0
-2014-06-17 02:00:00,13012.0
-2014-06-17 03:00:00,12380.0
-2014-06-17 04:00:00,11882.0
-2014-06-17 05:00:00,11601.0
-2014-06-17 06:00:00,11641.0
-2014-06-17 07:00:00,12226.0
-2014-06-17 08:00:00,13152.0
-2014-06-17 09:00:00,14090.0
-2014-06-17 10:00:00,14702.0
-2014-06-17 11:00:00,15197.0
-2014-06-17 12:00:00,16061.0
-2014-06-17 13:00:00,16780.0
-2014-06-17 14:00:00,17387.0
-2014-06-17 15:00:00,18011.0
-2014-06-17 16:00:00,18592.0
-2014-06-17 17:00:00,19125.0
-2014-06-17 18:00:00,19412.0
-2014-06-17 19:00:00,19275.0
-2014-06-17 20:00:00,18758.0
-2014-06-17 21:00:00,18032.0
-2014-06-17 22:00:00,17563.0
-2014-06-17 23:00:00,17075.0
-2014-06-18 00:00:00,15732.0
-2014-06-16 01:00:00,11594.0
-2014-06-16 02:00:00,10759.0
-2014-06-16 03:00:00,10169.0
-2014-06-16 04:00:00,9752.0
-2014-06-16 05:00:00,9565.0
-2014-06-16 06:00:00,9598.0
-2014-06-16 07:00:00,10001.0
-2014-06-16 08:00:00,11092.0
-2014-06-16 09:00:00,12436.0
-2014-06-16 10:00:00,13642.0
-2014-06-16 11:00:00,14628.0
-2014-06-16 12:00:00,15505.0
-2014-06-16 13:00:00,16121.0
-2014-06-16 14:00:00,16650.0
-2014-06-16 15:00:00,17170.0
-2014-06-16 16:00:00,17621.0
-2014-06-16 17:00:00,17940.0
-2014-06-16 18:00:00,18122.0
-2014-06-16 19:00:00,17933.0
-2014-06-16 20:00:00,17159.0
-2014-06-16 21:00:00,16571.0
-2014-06-16 22:00:00,16499.0
-2014-06-16 23:00:00,16241.0
-2014-06-17 00:00:00,15188.0
-2014-06-15 01:00:00,9563.0
-2014-06-15 02:00:00,8943.0
-2014-06-15 03:00:00,8536.0
-2014-06-15 04:00:00,8223.0
-2014-06-15 05:00:00,8015.0
-2014-06-15 06:00:00,7934.0
-2014-06-15 07:00:00,7725.0
-2014-06-15 08:00:00,7861.0
-2014-06-15 09:00:00,8314.0
-2014-06-15 10:00:00,8967.0
-2014-06-15 11:00:00,9522.0
-2014-06-15 12:00:00,10078.0
-2014-06-15 13:00:00,10542.0
-2014-06-15 14:00:00,10937.0
-2014-06-15 15:00:00,11317.0
-2014-06-15 16:00:00,11784.0
-2014-06-15 17:00:00,12108.0
-2014-06-15 18:00:00,12461.0
-2014-06-15 19:00:00,12787.0
-2014-06-15 20:00:00,12966.0
-2014-06-15 21:00:00,12923.0
-2014-06-15 22:00:00,13049.0
-2014-06-15 23:00:00,13206.0
-2014-06-16 00:00:00,12570.0
-2014-06-14 01:00:00,9667.0
-2014-06-14 02:00:00,9013.0
-2014-06-14 03:00:00,8549.0
-2014-06-14 04:00:00,8287.0
-2014-06-14 05:00:00,8123.0
-2014-06-14 06:00:00,8127.0
-2014-06-14 07:00:00,8047.0
-2014-06-14 08:00:00,8385.0
-2014-06-14 09:00:00,8958.0
-2014-06-14 10:00:00,9596.0
-2014-06-14 11:00:00,10117.0
-2014-06-14 12:00:00,10564.0
-2014-06-14 13:00:00,10796.0
-2014-06-14 14:00:00,10941.0
-2014-06-14 15:00:00,10954.0
-2014-06-14 16:00:00,11068.0
-2014-06-14 17:00:00,11204.0
-2014-06-14 18:00:00,11362.0
-2014-06-14 19:00:00,11349.0
-2014-06-14 20:00:00,11152.0
-2014-06-14 21:00:00,10866.0
-2014-06-14 22:00:00,10780.0
-2014-06-14 23:00:00,10796.0
-2014-06-15 00:00:00,10234.0
-2014-06-13 01:00:00,10162.0
-2014-06-13 02:00:00,9404.0
-2014-06-13 03:00:00,8895.0
-2014-06-13 04:00:00,8588.0
-2014-06-13 05:00:00,8419.0
-2014-06-13 06:00:00,8515.0
-2014-06-13 07:00:00,8759.0
-2014-06-13 08:00:00,9527.0
-2014-06-13 09:00:00,10394.0
-2014-06-13 10:00:00,11009.0
-2014-06-13 11:00:00,11384.0
-2014-06-13 12:00:00,11742.0
-2014-06-13 13:00:00,11900.0
-2014-06-13 14:00:00,11995.0
-2014-06-13 15:00:00,12127.0
-2014-06-13 16:00:00,12128.0
-2014-06-13 17:00:00,12156.0
-2014-06-13 18:00:00,12148.0
-2014-06-13 19:00:00,12000.0
-2014-06-13 20:00:00,11687.0
-2014-06-13 21:00:00,11287.0
-2014-06-13 22:00:00,11238.0
-2014-06-13 23:00:00,11168.0
-2014-06-14 00:00:00,10416.0
-2014-06-12 01:00:00,9665.0
-2014-06-12 02:00:00,9116.0
-2014-06-12 03:00:00,8748.0
-2014-06-12 04:00:00,8510.0
-2014-06-12 05:00:00,8435.0
-2014-06-12 06:00:00,8609.0
-2014-06-12 07:00:00,9094.0
-2014-06-12 08:00:00,9937.0
-2014-06-12 09:00:00,10822.0
-2014-06-12 10:00:00,11544.0
-2014-06-12 11:00:00,12152.0
-2014-06-12 12:00:00,12760.0
-2014-06-12 13:00:00,13268.0
-2014-06-12 14:00:00,13625.0
-2014-06-12 15:00:00,13745.0
-2014-06-12 16:00:00,13656.0
-2014-06-12 17:00:00,13575.0
-2014-06-12 18:00:00,13507.0
-2014-06-12 19:00:00,13234.0
-2014-06-12 20:00:00,12717.0
-2014-06-12 21:00:00,12320.0
-2014-06-12 22:00:00,12270.0
-2014-06-12 23:00:00,12037.0
-2014-06-13 00:00:00,11146.0
-2014-06-11 01:00:00,9660.0
-2014-06-11 02:00:00,9133.0
-2014-06-11 03:00:00,8778.0
-2014-06-11 04:00:00,8570.0
-2014-06-11 05:00:00,8503.0
-2014-06-11 06:00:00,8645.0
-2014-06-11 07:00:00,9158.0
-2014-06-11 08:00:00,9934.0
-2014-06-11 09:00:00,10720.0
-2014-06-11 10:00:00,11204.0
-2014-06-11 11:00:00,11518.0
-2014-06-11 12:00:00,11761.0
-2014-06-11 13:00:00,11877.0
-2014-06-11 14:00:00,11922.0
-2014-06-11 15:00:00,11998.0
-2014-06-11 16:00:00,12008.0
-2014-06-11 17:00:00,11897.0
-2014-06-11 18:00:00,11759.0
-2014-06-11 19:00:00,11563.0
-2014-06-11 20:00:00,11276.0
-2014-06-11 21:00:00,11183.0
-2014-06-11 22:00:00,11484.0
-2014-06-11 23:00:00,11230.0
-2014-06-12 00:00:00,10491.0
-2014-06-10 01:00:00,9676.0
-2014-06-10 02:00:00,9071.0
-2014-06-10 03:00:00,8691.0
-2014-06-10 04:00:00,8482.0
-2014-06-10 05:00:00,8413.0
-2014-06-10 06:00:00,8562.0
-2014-06-10 07:00:00,9011.0
-2014-06-10 08:00:00,9845.0
-2014-06-10 09:00:00,10619.0
-2014-06-10 10:00:00,11075.0
-2014-06-10 11:00:00,11369.0
-2014-06-10 12:00:00,11672.0
-2014-06-10 13:00:00,11807.0
-2014-06-10 14:00:00,11873.0
-2014-06-10 15:00:00,11963.0
-2014-06-10 16:00:00,11728.0
-2014-06-10 17:00:00,11752.0
-2014-06-10 18:00:00,11630.0
-2014-06-10 19:00:00,11449.0
-2014-06-10 20:00:00,11375.0
-2014-06-10 21:00:00,11376.0
-2014-06-10 22:00:00,11477.0
-2014-06-10 23:00:00,11136.0
-2014-06-11 00:00:00,10460.0
-2014-06-09 01:00:00,8807.0
-2014-06-09 02:00:00,8365.0
-2014-06-09 03:00:00,8018.0
-2014-06-09 04:00:00,7848.0
-2014-06-09 05:00:00,7824.0
-2014-06-09 06:00:00,8028.0
-2014-06-09 07:00:00,8438.0
-2014-06-09 08:00:00,9375.0
-2014-06-09 09:00:00,10415.0
-2014-06-09 10:00:00,11126.0
-2014-06-09 11:00:00,11591.0
-2014-06-09 12:00:00,12077.0
-2014-06-09 13:00:00,12394.0
-2014-06-09 14:00:00,12701.0
-2014-06-09 15:00:00,13041.0
-2014-06-09 16:00:00,13217.0
-2014-06-09 17:00:00,13263.0
-2014-06-09 18:00:00,13153.0
-2014-06-09 19:00:00,12794.0
-2014-06-09 20:00:00,12237.0
-2014-06-09 21:00:00,11827.0
-2014-06-09 22:00:00,11809.0
-2014-06-09 23:00:00,11511.0
-2014-06-10 00:00:00,10601.0
-2014-06-08 01:00:00,9992.0
-2014-06-08 02:00:00,9294.0
-2014-06-08 03:00:00,8793.0
-2014-06-08 04:00:00,8343.0
-2014-06-08 05:00:00,8092.0
-2014-06-08 06:00:00,7971.0
-2014-06-08 07:00:00,7875.0
-2014-06-08 08:00:00,7758.0
-2014-06-08 09:00:00,8015.0
-2014-06-08 10:00:00,8538.0
-2014-06-08 11:00:00,9111.0
-2014-06-08 12:00:00,9462.0
-2014-06-08 13:00:00,9720.0
-2014-06-08 14:00:00,9795.0
-2014-06-08 15:00:00,9904.0
-2014-06-08 16:00:00,10036.0
-2014-06-08 17:00:00,10096.0
-2014-06-08 18:00:00,10102.0
-2014-06-08 19:00:00,10008.0
-2014-06-08 20:00:00,9763.0
-2014-06-08 21:00:00,9615.0
-2014-06-08 22:00:00,9897.0
-2014-06-08 23:00:00,9980.0
-2014-06-09 00:00:00,9496.0
-2014-06-07 01:00:00,10182.0
-2014-06-07 02:00:00,9442.0
-2014-06-07 03:00:00,8912.0
-2014-06-07 04:00:00,8556.0
-2014-06-07 05:00:00,8388.0
-2014-06-07 06:00:00,8368.0
-2014-06-07 07:00:00,8260.0
-2014-06-07 08:00:00,8670.0
-2014-06-07 09:00:00,9378.0
-2014-06-07 10:00:00,10271.0
-2014-06-07 11:00:00,11017.0
-2014-06-07 12:00:00,11639.0
-2014-06-07 13:00:00,12063.0
-2014-06-07 14:00:00,12456.0
-2014-06-07 15:00:00,12703.0
-2014-06-07 16:00:00,12863.0
-2014-06-07 17:00:00,12603.0
-2014-06-07 18:00:00,12306.0
-2014-06-07 19:00:00,11925.0
-2014-06-07 20:00:00,11643.0
-2014-06-07 21:00:00,11457.0
-2014-06-07 22:00:00,11609.0
-2014-06-07 23:00:00,11407.0
-2014-06-08 00:00:00,10775.0
-2014-06-06 01:00:00,9790.0
-2014-06-06 02:00:00,9174.0
-2014-06-06 03:00:00,8736.0
-2014-06-06 04:00:00,8501.0
-2014-06-06 05:00:00,8350.0
-2014-06-06 06:00:00,8514.0
-2014-06-06 07:00:00,8776.0
-2014-06-06 08:00:00,9638.0
-2014-06-06 09:00:00,10600.0
-2014-06-06 10:00:00,11303.0
-2014-06-06 11:00:00,11804.0
-2014-06-06 12:00:00,12325.0
-2014-06-06 13:00:00,12623.0
-2014-06-06 14:00:00,12911.0
-2014-06-06 15:00:00,13246.0
-2014-06-06 16:00:00,13494.0
-2014-06-06 17:00:00,13712.0
-2014-06-06 18:00:00,13816.0
-2014-06-06 19:00:00,13634.0
-2014-06-06 20:00:00,13146.0
-2014-06-06 21:00:00,12544.0
-2014-06-06 22:00:00,12173.0
-2014-06-06 23:00:00,11966.0
-2014-06-07 00:00:00,11120.0
-2014-06-05 01:00:00,9642.0
-2014-06-05 02:00:00,9038.0
-2014-06-05 03:00:00,8665.0
-2014-06-05 04:00:00,8392.0
-2014-06-05 05:00:00,8294.0
-2014-06-05 06:00:00,8421.0
-2014-06-05 07:00:00,8747.0
-2014-06-05 08:00:00,9648.0
-2014-06-05 09:00:00,10547.0
-2014-06-05 10:00:00,11119.0
-2014-06-05 11:00:00,11558.0
-2014-06-05 12:00:00,11964.0
-2014-06-05 13:00:00,12178.0
-2014-06-05 14:00:00,12289.0
-2014-06-05 15:00:00,12393.0
-2014-06-05 16:00:00,12574.0
-2014-06-05 17:00:00,12710.0
-2014-06-05 18:00:00,12758.0
-2014-06-05 19:00:00,12607.0
-2014-06-05 20:00:00,12213.0
-2014-06-05 21:00:00,11854.0
-2014-06-05 22:00:00,11785.0
-2014-06-05 23:00:00,11640.0
-2014-06-06 00:00:00,10782.0
-2014-06-04 01:00:00,11041.0
-2014-06-04 02:00:00,10273.0
-2014-06-04 03:00:00,9723.0
-2014-06-04 04:00:00,9412.0
-2014-06-04 05:00:00,9276.0
-2014-06-04 06:00:00,9349.0
-2014-06-04 07:00:00,9823.0
-2014-06-04 08:00:00,10610.0
-2014-06-04 09:00:00,11332.0
-2014-06-04 10:00:00,11808.0
-2014-06-04 11:00:00,12128.0
-2014-06-04 12:00:00,12231.0
-2014-06-04 13:00:00,12182.0
-2014-06-04 14:00:00,12096.0
-2014-06-04 15:00:00,12109.0
-2014-06-04 16:00:00,12055.0
-2014-06-04 17:00:00,11937.0
-2014-06-04 18:00:00,11786.0
-2014-06-04 19:00:00,11656.0
-2014-06-04 20:00:00,11458.0
-2014-06-04 21:00:00,11255.0
-2014-06-04 22:00:00,11366.0
-2014-06-04 23:00:00,11279.0
-2014-06-05 00:00:00,10497.0
-2014-06-03 01:00:00,12031.0
-2014-06-03 02:00:00,11100.0
-2014-06-03 03:00:00,10481.0
-2014-06-03 04:00:00,10064.0
-2014-06-03 05:00:00,9854.0
-2014-06-03 06:00:00,9896.0
-2014-06-03 07:00:00,10216.0
-2014-06-03 08:00:00,11252.0
-2014-06-03 09:00:00,12380.0
-2014-06-03 10:00:00,13118.0
-2014-06-03 11:00:00,13554.0
-2014-06-03 12:00:00,13964.0
-2014-06-03 13:00:00,14257.0
-2014-06-03 14:00:00,14532.0
-2014-06-03 15:00:00,14838.0
-2014-06-03 16:00:00,15127.0
-2014-06-03 17:00:00,15424.0
-2014-06-03 18:00:00,15563.0
-2014-06-03 19:00:00,15443.0
-2014-06-03 20:00:00,14912.0
-2014-06-03 21:00:00,14187.0
-2014-06-03 22:00:00,13797.0
-2014-06-03 23:00:00,13346.0
-2014-06-04 00:00:00,12221.0
-2014-06-02 01:00:00,11873.0
-2014-06-02 02:00:00,11082.0
-2014-06-02 03:00:00,10579.0
-2014-06-02 04:00:00,10202.0
-2014-06-02 05:00:00,10091.0
-2014-06-02 06:00:00,10305.0
-2014-06-02 07:00:00,10907.0
-2014-06-02 08:00:00,12168.0
-2014-06-02 09:00:00,13441.0
-2014-06-02 10:00:00,14274.0
-2014-06-02 11:00:00,14833.0
-2014-06-02 12:00:00,14938.0
-2014-06-02 13:00:00,15090.0
-2014-06-02 14:00:00,14828.0
-2014-06-02 15:00:00,15161.0
-2014-06-02 16:00:00,15585.0
-2014-06-02 17:00:00,15891.0
-2014-06-02 18:00:00,16121.0
-2014-06-02 19:00:00,16075.0
-2014-06-02 20:00:00,15635.0
-2014-06-02 21:00:00,15093.0
-2014-06-02 22:00:00,14760.0
-2014-06-02 23:00:00,14391.0
-2014-06-03 00:00:00,13293.0
-2014-06-01 01:00:00,10490.0
-2014-06-01 02:00:00,9741.0
-2014-06-01 03:00:00,9253.0
-2014-06-01 04:00:00,8880.0
-2014-06-01 05:00:00,8609.0
-2014-06-01 06:00:00,8513.0
-2014-06-01 07:00:00,8283.0
-2014-06-01 08:00:00,8413.0
-2014-06-01 09:00:00,9057.0
-2014-06-01 10:00:00,9938.0
-2014-06-01 11:00:00,10813.0
-2014-06-01 12:00:00,11739.0
-2014-06-01 13:00:00,12427.0
-2014-06-01 14:00:00,13310.0
-2014-06-01 15:00:00,13908.0
-2014-06-01 16:00:00,14345.0
-2014-06-01 17:00:00,14607.0
-2014-06-01 18:00:00,14858.0
-2014-06-01 19:00:00,15028.0
-2014-06-01 20:00:00,14665.0
-2014-06-01 21:00:00,14283.0
-2014-06-01 22:00:00,14041.0
-2014-06-01 23:00:00,13684.0
-2014-06-02 00:00:00,12867.0
-2014-05-31 01:00:00,10087.0
-2014-05-31 02:00:00,9316.0
-2014-05-31 03:00:00,8818.0
-2014-05-31 04:00:00,8506.0
-2014-05-31 05:00:00,8312.0
-2014-05-31 06:00:00,8307.0
-2014-05-31 07:00:00,8177.0
-2014-05-31 08:00:00,8479.0
-2014-05-31 09:00:00,9192.0
-2014-05-31 10:00:00,10007.0
-2014-05-31 11:00:00,10827.0
-2014-05-31 12:00:00,11511.0
-2014-05-31 13:00:00,12013.0
-2014-05-31 14:00:00,12549.0
-2014-05-31 15:00:00,12866.0
-2014-05-31 16:00:00,13214.0
-2014-05-31 17:00:00,13576.0
-2014-05-31 18:00:00,13752.0
-2014-05-31 19:00:00,13766.0
-2014-05-31 20:00:00,13426.0
-2014-05-31 21:00:00,12827.0
-2014-05-31 22:00:00,12522.0
-2014-05-31 23:00:00,12229.0
-2014-06-01 00:00:00,11425.0
-2014-05-30 01:00:00,9697.0
-2014-05-30 02:00:00,9054.0
-2014-05-30 03:00:00,8649.0
-2014-05-30 04:00:00,8357.0
-2014-05-30 05:00:00,8254.0
-2014-05-30 06:00:00,8403.0
-2014-05-30 07:00:00,8768.0
-2014-05-30 08:00:00,9696.0
-2014-05-30 09:00:00,10702.0
-2014-05-30 10:00:00,11362.0
-2014-05-30 11:00:00,11861.0
-2014-05-30 12:00:00,12349.0
-2014-05-30 13:00:00,12792.0
-2014-05-30 14:00:00,13071.0
-2014-05-30 15:00:00,13352.0
-2014-05-30 16:00:00,13559.0
-2014-05-30 17:00:00,13715.0
-2014-05-30 18:00:00,13757.0
-2014-05-30 19:00:00,13533.0
-2014-05-30 20:00:00,13066.0
-2014-05-30 21:00:00,12447.0
-2014-05-30 22:00:00,12211.0
-2014-05-30 23:00:00,11913.0
-2014-05-31 00:00:00,11015.0
-2014-05-29 01:00:00,9614.0
-2014-05-29 02:00:00,8962.0
-2014-05-29 03:00:00,8586.0
-2014-05-29 04:00:00,8356.0
-2014-05-29 05:00:00,8274.0
-2014-05-29 06:00:00,8435.0
-2014-05-29 07:00:00,8910.0
-2014-05-29 08:00:00,9789.0
-2014-05-29 09:00:00,10660.0
-2014-05-29 10:00:00,11272.0
-2014-05-29 11:00:00,11713.0
-2014-05-29 12:00:00,12191.0
-2014-05-29 13:00:00,12488.0
-2014-05-29 14:00:00,12755.0
-2014-05-29 15:00:00,13013.0
-2014-05-29 16:00:00,13066.0
-2014-05-29 17:00:00,13160.0
-2014-05-29 18:00:00,13231.0
-2014-05-29 19:00:00,13051.0
-2014-05-29 20:00:00,12595.0
-2014-05-29 21:00:00,12127.0
-2014-05-29 22:00:00,12009.0
-2014-05-29 23:00:00,11679.0
-2014-05-30 00:00:00,10705.0
-2014-05-28 01:00:00,10656.0
-2014-05-28 02:00:00,9877.0
-2014-05-28 03:00:00,9437.0
-2014-05-28 04:00:00,9189.0
-2014-05-28 05:00:00,9042.0
-2014-05-28 06:00:00,9131.0
-2014-05-28 07:00:00,9574.0
-2014-05-28 08:00:00,10351.0
-2014-05-28 09:00:00,11139.0
-2014-05-28 10:00:00,11606.0
-2014-05-28 11:00:00,11965.0
-2014-05-28 12:00:00,12331.0
-2014-05-28 13:00:00,12552.0
-2014-05-28 14:00:00,12757.0
-2014-05-28 15:00:00,13006.0
-2014-05-28 16:00:00,13113.0
-2014-05-28 17:00:00,13119.0
-2014-05-28 18:00:00,12999.0
-2014-05-28 19:00:00,12631.0
-2014-05-28 20:00:00,11998.0
-2014-05-28 21:00:00,11559.0
-2014-05-28 22:00:00,11610.0
-2014-05-28 23:00:00,11324.0
-2014-05-29 00:00:00,10488.0
-2014-05-27 01:00:00,10633.0
-2014-05-27 02:00:00,9994.0
-2014-05-27 03:00:00,9545.0
-2014-05-27 04:00:00,9253.0
-2014-05-27 05:00:00,9109.0
-2014-05-27 06:00:00,9307.0
-2014-05-27 07:00:00,9896.0
-2014-05-27 08:00:00,11027.0
-2014-05-27 09:00:00,12249.0
-2014-05-27 10:00:00,12982.0
-2014-05-27 11:00:00,13523.0
-2014-05-27 12:00:00,14264.0
-2014-05-27 13:00:00,14928.0
-2014-05-27 14:00:00,15475.0
-2014-05-27 15:00:00,15948.0
-2014-05-27 16:00:00,16141.0
-2014-05-27 17:00:00,16287.0
-2014-05-27 18:00:00,16122.0
-2014-05-27 19:00:00,15397.0
-2014-05-27 20:00:00,14514.0
-2014-05-27 21:00:00,13964.0
-2014-05-27 22:00:00,13809.0
-2014-05-27 23:00:00,13146.0
-2014-05-28 00:00:00,11891.0
-2014-05-26 01:00:00,9233.0
-2014-05-26 02:00:00,8690.0
-2014-05-26 03:00:00,8342.0
-2014-05-26 04:00:00,8081.0
-2014-05-26 05:00:00,7927.0
-2014-05-26 06:00:00,7912.0
-2014-05-26 07:00:00,7889.0
-2014-05-26 08:00:00,7981.0
-2014-05-26 09:00:00,8501.0
-2014-05-26 10:00:00,9135.0
-2014-05-26 11:00:00,9833.0
-2014-05-26 12:00:00,10600.0
-2014-05-26 13:00:00,11391.0
-2014-05-26 14:00:00,12104.0
-2014-05-26 15:00:00,12639.0
-2014-05-26 16:00:00,13032.0
-2014-05-26 17:00:00,13328.0
-2014-05-26 18:00:00,13371.0
-2014-05-26 19:00:00,13163.0
-2014-05-26 20:00:00,12797.0
-2014-05-26 21:00:00,12603.0
-2014-05-26 22:00:00,12726.0
-2014-05-26 23:00:00,12388.0
-2014-05-27 00:00:00,11530.0
-2014-05-25 01:00:00,8598.0
-2014-05-25 02:00:00,8119.0
-2014-05-25 03:00:00,7785.0
-2014-05-25 04:00:00,7600.0
-2014-05-25 05:00:00,7443.0
-2014-05-25 06:00:00,7447.0
-2014-05-25 07:00:00,7237.0
-2014-05-25 08:00:00,7269.0
-2014-05-25 09:00:00,7657.0
-2014-05-25 10:00:00,8239.0
-2014-05-25 11:00:00,8718.0
-2014-05-25 12:00:00,9203.0
-2014-05-25 13:00:00,9507.0
-2014-05-25 14:00:00,9775.0
-2014-05-25 15:00:00,9990.0
-2014-05-25 16:00:00,10260.0
-2014-05-25 17:00:00,10512.0
-2014-05-25 18:00:00,10728.0
-2014-05-25 19:00:00,10837.0
-2014-05-25 20:00:00,10600.0
-2014-05-25 21:00:00,10299.0
-2014-05-25 22:00:00,10421.0
-2014-05-25 23:00:00,10383.0
-2014-05-26 00:00:00,9816.0
-2014-05-24 01:00:00,9064.0
-2014-05-24 02:00:00,8532.0
-2014-05-24 03:00:00,8124.0
-2014-05-24 04:00:00,7951.0
-2014-05-24 05:00:00,7817.0
-2014-05-24 06:00:00,7815.0
-2014-05-24 07:00:00,7745.0
-2014-05-24 08:00:00,7940.0
-2014-05-24 09:00:00,8332.0
-2014-05-24 10:00:00,8894.0
-2014-05-24 11:00:00,9278.0
-2014-05-24 12:00:00,9567.0
-2014-05-24 13:00:00,9728.0
-2014-05-24 14:00:00,9799.0
-2014-05-24 15:00:00,9814.0
-2014-05-24 16:00:00,9812.0
-2014-05-24 17:00:00,9843.0
-2014-05-24 18:00:00,9785.0
-2014-05-24 19:00:00,9703.0
-2014-05-24 20:00:00,9525.0
-2014-05-24 21:00:00,9444.0
-2014-05-24 22:00:00,9764.0
-2014-05-24 23:00:00,9719.0
-2014-05-25 00:00:00,9215.0
-2014-05-23 01:00:00,9447.0
-2014-05-23 02:00:00,8880.0
-2014-05-23 03:00:00,8492.0
-2014-05-23 04:00:00,8282.0
-2014-05-23 05:00:00,8206.0
-2014-05-23 06:00:00,8347.0
-2014-05-23 07:00:00,8690.0
-2014-05-23 08:00:00,9512.0
-2014-05-23 09:00:00,10392.0
-2014-05-23 10:00:00,10915.0
-2014-05-23 11:00:00,11243.0
-2014-05-23 12:00:00,11497.0
-2014-05-23 13:00:00,11573.0
-2014-05-23 14:00:00,11601.0
-2014-05-23 15:00:00,11666.0
-2014-05-23 16:00:00,11644.0
-2014-05-23 17:00:00,11567.0
-2014-05-23 18:00:00,11460.0
-2014-05-23 19:00:00,11198.0
-2014-05-23 20:00:00,10852.0
-2014-05-23 21:00:00,10521.0
-2014-05-23 22:00:00,10696.0
-2014-05-23 23:00:00,10537.0
-2014-05-24 00:00:00,9847.0
-2014-05-22 01:00:00,11068.0
-2014-05-22 02:00:00,10127.0
-2014-05-22 03:00:00,9477.0
-2014-05-22 04:00:00,9080.0
-2014-05-22 05:00:00,8861.0
-2014-05-22 06:00:00,8926.0
-2014-05-22 07:00:00,9217.0
-2014-05-22 08:00:00,10065.0
-2014-05-22 09:00:00,10976.0
-2014-05-22 10:00:00,11590.0
-2014-05-22 11:00:00,11999.0
-2014-05-22 12:00:00,12282.0
-2014-05-22 13:00:00,12371.0
-2014-05-22 14:00:00,12421.0
-2014-05-22 15:00:00,12537.0
-2014-05-22 16:00:00,12501.0
-2014-05-22 17:00:00,12399.0
-2014-05-22 18:00:00,12172.0
-2014-05-22 19:00:00,11846.0
-2014-05-22 20:00:00,11501.0
-2014-05-22 21:00:00,11189.0
-2014-05-22 22:00:00,11357.0
-2014-05-22 23:00:00,11159.0
-2014-05-23 00:00:00,10301.0
-2014-05-21 01:00:00,11066.0
-2014-05-21 02:00:00,10344.0
-2014-05-21 03:00:00,9842.0
-2014-05-21 04:00:00,9465.0
-2014-05-21 05:00:00,9257.0
-2014-05-21 06:00:00,9351.0
-2014-05-21 07:00:00,9918.0
-2014-05-21 08:00:00,10884.0
-2014-05-21 09:00:00,11787.0
-2014-05-21 10:00:00,12357.0
-2014-05-21 11:00:00,12935.0
-2014-05-21 12:00:00,13556.0
-2014-05-21 13:00:00,14038.0
-2014-05-21 14:00:00,14435.0
-2014-05-21 15:00:00,14851.0
-2014-05-21 16:00:00,15107.0
-2014-05-21 17:00:00,15361.0
-2014-05-21 18:00:00,15512.0
-2014-05-21 19:00:00,15395.0
-2014-05-21 20:00:00,14993.0
-2014-05-21 21:00:00,14441.0
-2014-05-21 22:00:00,14299.0
-2014-05-21 23:00:00,13715.0
-2014-05-22 00:00:00,12376.0
-2014-05-20 01:00:00,9273.0
-2014-05-20 02:00:00,8759.0
-2014-05-20 03:00:00,8432.0
-2014-05-20 04:00:00,8237.0
-2014-05-20 05:00:00,8193.0
-2014-05-20 06:00:00,8360.0
-2014-05-20 07:00:00,8880.0
-2014-05-20 08:00:00,9775.0
-2014-05-20 09:00:00,10694.0
-2014-05-20 10:00:00,11314.0
-2014-05-20 11:00:00,11815.0
-2014-05-20 12:00:00,12289.0
-2014-05-20 13:00:00,12671.0
-2014-05-20 14:00:00,13041.0
-2014-05-20 15:00:00,13487.0
-2014-05-20 16:00:00,13753.0
-2014-05-20 17:00:00,14025.0
-2014-05-20 18:00:00,14202.0
-2014-05-20 19:00:00,14176.0
-2014-05-20 20:00:00,13903.0
-2014-05-20 21:00:00,14069.0
-2014-05-20 22:00:00,14008.0
-2014-05-20 23:00:00,13252.0
-2014-05-21 00:00:00,12137.0
-2014-05-19 01:00:00,8600.0
-2014-05-19 02:00:00,8141.0
-2014-05-19 03:00:00,7942.0
-2014-05-19 04:00:00,7857.0
-2014-05-19 05:00:00,7867.0
-2014-05-19 06:00:00,8119.0
-2014-05-19 07:00:00,8683.0
-2014-05-19 08:00:00,9569.0
-2014-05-19 09:00:00,10440.0
-2014-05-19 10:00:00,10853.0
-2014-05-19 11:00:00,11155.0
-2014-05-19 12:00:00,11412.0
-2014-05-19 13:00:00,11499.0
-2014-05-19 14:00:00,11504.0
-2014-05-19 15:00:00,11559.0
-2014-05-19 16:00:00,11495.0
-2014-05-19 17:00:00,11373.0
-2014-05-19 18:00:00,11197.0
-2014-05-19 19:00:00,11003.0
-2014-05-19 20:00:00,10864.0
-2014-05-19 21:00:00,11017.0
-2014-05-19 22:00:00,11205.0
-2014-05-19 23:00:00,10811.0
-2014-05-20 00:00:00,10005.0
-2014-05-18 01:00:00,8723.0
-2014-05-18 02:00:00,8309.0
-2014-05-18 03:00:00,8087.0
-2014-05-18 04:00:00,7904.0
-2014-05-18 05:00:00,7828.0
-2014-05-18 06:00:00,7821.0
-2014-05-18 07:00:00,7833.0
-2014-05-18 08:00:00,7760.0
-2014-05-18 09:00:00,8050.0
-2014-05-18 10:00:00,8306.0
-2014-05-18 11:00:00,8634.0
-2014-05-18 12:00:00,8792.0
-2014-05-18 13:00:00,8916.0
-2014-05-18 14:00:00,8957.0
-2014-05-18 15:00:00,8975.0
-2014-05-18 16:00:00,8979.0
-2014-05-18 17:00:00,9032.0
-2014-05-18 18:00:00,9048.0
-2014-05-18 19:00:00,9109.0
-2014-05-18 20:00:00,9135.0
-2014-05-18 21:00:00,9258.0
-2014-05-18 22:00:00,9766.0
-2014-05-18 23:00:00,9712.0
-2014-05-19 00:00:00,9188.0
-2014-05-17 01:00:00,9510.0
-2014-05-17 02:00:00,8952.0
-2014-05-17 03:00:00,8657.0
-2014-05-17 04:00:00,8476.0
-2014-05-17 05:00:00,8416.0
-2014-05-17 06:00:00,8490.0
-2014-05-17 07:00:00,8602.0
-2014-05-17 08:00:00,8834.0
-2014-05-17 09:00:00,9176.0
-2014-05-17 10:00:00,9500.0
-2014-05-17 11:00:00,9653.0
-2014-05-17 12:00:00,9787.0
-2014-05-17 13:00:00,9713.0
-2014-05-17 14:00:00,9592.0
-2014-05-17 15:00:00,9446.0
-2014-05-17 16:00:00,9315.0
-2014-05-17 17:00:00,9216.0
-2014-05-17 18:00:00,9177.0
-2014-05-17 19:00:00,9144.0
-2014-05-17 20:00:00,9089.0
-2014-05-17 21:00:00,9183.0
-2014-05-17 22:00:00,9681.0
-2014-05-17 23:00:00,9658.0
-2014-05-18 00:00:00,9207.0
-2014-05-16 01:00:00,9399.0
-2014-05-16 02:00:00,8909.0
-2014-05-16 03:00:00,8624.0
-2014-05-16 04:00:00,8454.0
-2014-05-16 05:00:00,8405.0
-2014-05-16 06:00:00,8639.0
-2014-05-16 07:00:00,9292.0
-2014-05-16 08:00:00,10227.0
-2014-05-16 09:00:00,10970.0
-2014-05-16 10:00:00,11354.0
-2014-05-16 11:00:00,11567.0
-2014-05-16 12:00:00,11616.0
-2014-05-16 13:00:00,11591.0
-2014-05-16 14:00:00,11454.0
-2014-05-16 15:00:00,11400.0
-2014-05-16 16:00:00,11285.0
-2014-05-16 17:00:00,11096.0
-2014-05-16 18:00:00,10981.0
-2014-05-16 19:00:00,10810.0
-2014-05-16 20:00:00,10737.0
-2014-05-16 21:00:00,10852.0
-2014-05-16 22:00:00,11114.0
-2014-05-16 23:00:00,10871.0
-2014-05-17 00:00:00,10208.0
-2014-05-15 01:00:00,9254.0
-2014-05-15 02:00:00,8781.0
-2014-05-15 03:00:00,8533.0
-2014-05-15 04:00:00,8321.0
-2014-05-15 05:00:00,8300.0
-2014-05-15 06:00:00,8511.0
-2014-05-15 07:00:00,9203.0
-2014-05-15 08:00:00,10144.0
-2014-05-15 09:00:00,10924.0
-2014-05-15 10:00:00,11342.0
-2014-05-15 11:00:00,11480.0
-2014-05-15 12:00:00,11497.0
-2014-05-15 13:00:00,11330.0
-2014-05-15 14:00:00,11167.0
-2014-05-15 15:00:00,11194.0
-2014-05-15 16:00:00,11100.0
-2014-05-15 17:00:00,10977.0
-2014-05-15 18:00:00,10851.0
-2014-05-15 19:00:00,10692.0
-2014-05-15 20:00:00,10563.0
-2014-05-15 21:00:00,10635.0
-2014-05-15 22:00:00,11096.0
-2014-05-15 23:00:00,10858.0
-2014-05-16 00:00:00,10116.0
-2014-05-14 01:00:00,9184.0
-2014-05-14 02:00:00,8651.0
-2014-05-14 03:00:00,8332.0
-2014-05-14 04:00:00,8147.0
-2014-05-14 05:00:00,8090.0
-2014-05-14 06:00:00,8257.0
-2014-05-14 07:00:00,8786.0
-2014-05-14 08:00:00,9576.0
-2014-05-14 09:00:00,10359.0
-2014-05-14 10:00:00,10700.0
-2014-05-14 11:00:00,10858.0
-2014-05-14 12:00:00,10994.0
-2014-05-14 13:00:00,11009.0
-2014-05-14 14:00:00,10997.0
-2014-05-14 15:00:00,11030.0
-2014-05-14 16:00:00,10914.0
-2014-05-14 17:00:00,10809.0
-2014-05-14 18:00:00,10723.0
-2014-05-14 19:00:00,10653.0
-2014-05-14 20:00:00,10614.0
-2014-05-14 21:00:00,10683.0
-2014-05-14 22:00:00,11029.0
-2014-05-14 23:00:00,10685.0
-2014-05-15 00:00:00,9919.0
-2014-05-13 01:00:00,11165.0
-2014-05-13 02:00:00,10160.0
-2014-05-13 03:00:00,9669.0
-2014-05-13 04:00:00,9360.0
-2014-05-13 05:00:00,9276.0
-2014-05-13 06:00:00,9368.0
-2014-05-13 07:00:00,9896.0
-2014-05-13 08:00:00,10741.0
-2014-05-13 09:00:00,11577.0
-2014-05-13 10:00:00,12002.0
-2014-05-13 11:00:00,12082.0
-2014-05-13 12:00:00,12132.0
-2014-05-13 13:00:00,12046.0
-2014-05-13 14:00:00,11988.0
-2014-05-13 15:00:00,11919.0
-2014-05-13 16:00:00,11682.0
-2014-05-13 17:00:00,11507.0
-2014-05-13 18:00:00,11282.0
-2014-05-13 19:00:00,11115.0
-2014-05-13 20:00:00,10923.0
-2014-05-13 21:00:00,10939.0
-2014-05-13 22:00:00,11168.0
-2014-05-13 23:00:00,10780.0
-2014-05-14 00:00:00,9999.0
-2014-05-12 01:00:00,9212.0
-2014-05-12 02:00:00,8708.0
-2014-05-12 03:00:00,8440.0
-2014-05-12 04:00:00,8248.0
-2014-05-12 05:00:00,8227.0
-2014-05-12 06:00:00,8500.0
-2014-05-12 07:00:00,9193.0
-2014-05-12 08:00:00,10247.0
-2014-05-12 09:00:00,11394.0
-2014-05-12 10:00:00,12154.0
-2014-05-12 11:00:00,12718.0
-2014-05-12 12:00:00,13281.0
-2014-05-12 13:00:00,13604.0
-2014-05-12 14:00:00,13843.0
-2014-05-12 15:00:00,14151.0
-2014-05-12 16:00:00,14299.0
-2014-05-12 17:00:00,14384.0
-2014-05-12 18:00:00,14494.0
-2014-05-12 19:00:00,14482.0
-2014-05-12 20:00:00,14172.0
-2014-05-12 21:00:00,14060.0
-2014-05-12 22:00:00,14135.0
-2014-05-12 23:00:00,13442.0
-2014-05-13 00:00:00,12363.0
-2014-05-11 01:00:00,8869.0
-2014-05-11 02:00:00,8353.0
-2014-05-11 03:00:00,8039.0
-2014-05-11 04:00:00,7787.0
-2014-05-11 05:00:00,7649.0
-2014-05-11 06:00:00,7583.0
-2014-05-11 07:00:00,7565.0
-2014-05-11 08:00:00,7506.0
-2014-05-11 09:00:00,8012.0
-2014-05-11 10:00:00,8411.0
-2014-05-11 11:00:00,8875.0
-2014-05-11 12:00:00,9245.0
-2014-05-11 13:00:00,9554.0
-2014-05-11 14:00:00,9841.0
-2014-05-11 15:00:00,10117.0
-2014-05-11 16:00:00,10401.0
-2014-05-11 17:00:00,10490.0
-2014-05-11 18:00:00,10516.0
-2014-05-11 19:00:00,10721.0
-2014-05-11 20:00:00,10721.0
-2014-05-11 21:00:00,10696.0
-2014-05-11 22:00:00,10768.0
-2014-05-11 23:00:00,10480.0
-2014-05-12 00:00:00,9860.0
-2014-05-10 01:00:00,9277.0
-2014-05-10 02:00:00,8713.0
-2014-05-10 03:00:00,8282.0
-2014-05-10 04:00:00,7980.0
-2014-05-10 05:00:00,7868.0
-2014-05-10 06:00:00,7906.0
-2014-05-10 07:00:00,7933.0
-2014-05-10 08:00:00,8133.0
-2014-05-10 09:00:00,8619.0
-2014-05-10 10:00:00,9172.0
-2014-05-10 11:00:00,9507.0
-2014-05-10 12:00:00,9801.0
-2014-05-10 13:00:00,9909.0
-2014-05-10 14:00:00,9951.0
-2014-05-10 15:00:00,9863.0
-2014-05-10 16:00:00,9907.0
-2014-05-10 17:00:00,9898.0
-2014-05-10 18:00:00,9955.0
-2014-05-10 19:00:00,9935.0
-2014-05-10 20:00:00,9832.0
-2014-05-10 21:00:00,9740.0
-2014-05-10 22:00:00,10064.0
-2014-05-10 23:00:00,9987.0
-2014-05-11 00:00:00,9449.0
-2014-05-09 01:00:00,10891.0
-2014-05-09 02:00:00,10097.0
-2014-05-09 03:00:00,9589.0
-2014-05-09 04:00:00,9240.0
-2014-05-09 05:00:00,9017.0
-2014-05-09 06:00:00,9141.0
-2014-05-09 07:00:00,9720.0
-2014-05-09 08:00:00,10663.0
-2014-05-09 09:00:00,11496.0
-2014-05-09 10:00:00,11914.0
-2014-05-09 11:00:00,12081.0
-2014-05-09 12:00:00,12300.0
-2014-05-09 13:00:00,12428.0
-2014-05-09 14:00:00,12505.0
-2014-05-09 15:00:00,12546.0
-2014-05-09 16:00:00,12397.0
-2014-05-09 17:00:00,12253.0
-2014-05-09 18:00:00,12080.0
-2014-05-09 19:00:00,11750.0
-2014-05-09 20:00:00,11315.0
-2014-05-09 21:00:00,10932.0
-2014-05-09 22:00:00,11112.0
-2014-05-09 23:00:00,10792.0
-2014-05-10 00:00:00,10085.0
-2014-05-08 01:00:00,9200.0
-2014-05-08 02:00:00,8733.0
-2014-05-08 03:00:00,8435.0
-2014-05-08 04:00:00,8219.0
-2014-05-08 05:00:00,8187.0
-2014-05-08 06:00:00,8379.0
-2014-05-08 07:00:00,9001.0
-2014-05-08 08:00:00,9820.0
-2014-05-08 09:00:00,10730.0
-2014-05-08 10:00:00,11290.0
-2014-05-08 11:00:00,11637.0
-2014-05-08 12:00:00,11947.0
-2014-05-08 13:00:00,12197.0
-2014-05-08 14:00:00,12455.0
-2014-05-08 15:00:00,12863.0
-2014-05-08 16:00:00,13090.0
-2014-05-08 17:00:00,13222.0
-2014-05-08 18:00:00,13366.0
-2014-05-08 19:00:00,13197.0
-2014-05-08 20:00:00,12876.0
-2014-05-08 21:00:00,12850.0
-2014-05-08 22:00:00,13223.0
-2014-05-08 23:00:00,12849.0
-2014-05-09 00:00:00,11929.0
-2014-05-07 01:00:00,9064.0
-2014-05-07 02:00:00,8564.0
-2014-05-07 03:00:00,8267.0
-2014-05-07 04:00:00,8106.0
-2014-05-07 05:00:00,8071.0
-2014-05-07 06:00:00,8282.0
-2014-05-07 07:00:00,8890.0
-2014-05-07 08:00:00,9629.0
-2014-05-07 09:00:00,10324.0
-2014-05-07 10:00:00,10649.0
-2014-05-07 11:00:00,10865.0
-2014-05-07 12:00:00,11091.0
-2014-05-07 13:00:00,11165.0
-2014-05-07 14:00:00,11254.0
-2014-05-07 15:00:00,11411.0
-2014-05-07 16:00:00,11413.0
-2014-05-07 17:00:00,11408.0
-2014-05-07 18:00:00,11098.0
-2014-05-07 19:00:00,10900.0
-2014-05-07 20:00:00,10622.0
-2014-05-07 21:00:00,10561.0
-2014-05-07 22:00:00,11068.0
-2014-05-07 23:00:00,10753.0
-2014-05-08 00:00:00,9997.0
-2014-05-06 01:00:00,9199.0
-2014-05-06 02:00:00,8768.0
-2014-05-06 03:00:00,8496.0
-2014-05-06 04:00:00,8342.0
-2014-05-06 05:00:00,8314.0
-2014-05-06 06:00:00,8531.0
-2014-05-06 07:00:00,9172.0
-2014-05-06 08:00:00,9919.0
-2014-05-06 09:00:00,10552.0
-2014-05-06 10:00:00,10774.0
-2014-05-06 11:00:00,10879.0
-2014-05-06 12:00:00,11011.0
-2014-05-06 13:00:00,11016.0
-2014-05-06 14:00:00,11002.0
-2014-05-06 15:00:00,11010.0
-2014-05-06 16:00:00,10906.0
-2014-05-06 17:00:00,10759.0
-2014-05-06 18:00:00,10627.0
-2014-05-06 19:00:00,10452.0
-2014-05-06 20:00:00,10299.0
-2014-05-06 21:00:00,10472.0
-2014-05-06 22:00:00,10942.0
-2014-05-06 23:00:00,10561.0
-2014-05-07 00:00:00,9816.0
-2014-05-05 01:00:00,8506.0
-2014-05-05 02:00:00,8169.0
-2014-05-05 03:00:00,8025.0
-2014-05-05 04:00:00,7934.0
-2014-05-05 05:00:00,7982.0
-2014-05-05 06:00:00,8239.0
-2014-05-05 07:00:00,9011.0
-2014-05-05 08:00:00,10021.0
-2014-05-05 09:00:00,10669.0
-2014-05-05 10:00:00,10893.0
-2014-05-05 11:00:00,11008.0
-2014-05-05 12:00:00,11041.0
-2014-05-05 13:00:00,10991.0
-2014-05-05 14:00:00,10920.0
-2014-05-05 15:00:00,10909.0
-2014-05-05 16:00:00,10783.0
-2014-05-05 17:00:00,10617.0
-2014-05-05 18:00:00,10502.0
-2014-05-05 19:00:00,10367.0
-2014-05-05 20:00:00,10225.0
-2014-05-05 21:00:00,10370.0
-2014-05-05 22:00:00,10953.0
-2014-05-05 23:00:00,10664.0
-2014-05-06 00:00:00,9934.0
-2014-05-04 01:00:00,8408.0
-2014-05-04 02:00:00,8009.0
-2014-05-04 03:00:00,7743.0
-2014-05-04 04:00:00,7560.0
-2014-05-04 05:00:00,7465.0
-2014-05-04 06:00:00,7483.0
-2014-05-04 07:00:00,7524.0
-2014-05-04 08:00:00,7469.0
-2014-05-04 09:00:00,7752.0
-2014-05-04 10:00:00,8112.0
-2014-05-04 11:00:00,8381.0
-2014-05-04 12:00:00,8582.0
-2014-05-04 13:00:00,8602.0
-2014-05-04 14:00:00,8635.0
-2014-05-04 15:00:00,8663.0
-2014-05-04 16:00:00,8623.0
-2014-05-04 17:00:00,8607.0
-2014-05-04 18:00:00,8603.0
-2014-05-04 19:00:00,8666.0
-2014-05-04 20:00:00,8710.0
-2014-05-04 21:00:00,9001.0
-2014-05-04 22:00:00,9639.0
-2014-05-04 23:00:00,9538.0
-2014-05-05 00:00:00,9042.0
-2014-05-03 01:00:00,9325.0
-2014-05-03 02:00:00,8747.0
-2014-05-03 03:00:00,8439.0
-2014-05-03 04:00:00,8207.0
-2014-05-03 05:00:00,8127.0
-2014-05-03 06:00:00,8153.0
-2014-05-03 07:00:00,8360.0
-2014-05-03 08:00:00,8528.0
-2014-05-03 09:00:00,8857.0
-2014-05-03 10:00:00,9159.0
-2014-05-03 11:00:00,9344.0
-2014-05-03 12:00:00,9482.0
-2014-05-03 13:00:00,9437.0
-2014-05-03 14:00:00,9390.0
-2014-05-03 15:00:00,9237.0
-2014-05-03 16:00:00,9107.0
-2014-05-03 17:00:00,9046.0
-2014-05-03 18:00:00,8995.0
-2014-05-03 19:00:00,8987.0
-2014-05-03 20:00:00,8950.0
-2014-05-03 21:00:00,9167.0
-2014-05-03 22:00:00,9623.0
-2014-05-03 23:00:00,9429.0
-2014-05-04 00:00:00,8931.0
-2014-05-02 01:00:00,9406.0
-2014-05-02 02:00:00,8909.0
-2014-05-02 03:00:00,8596.0
-2014-05-02 04:00:00,8394.0
-2014-05-02 05:00:00,8376.0
-2014-05-02 06:00:00,8588.0
-2014-05-02 07:00:00,9227.0
-2014-05-02 08:00:00,10038.0
-2014-05-02 09:00:00,10689.0
-2014-05-02 10:00:00,11008.0
-2014-05-02 11:00:00,11160.0
-2014-05-02 12:00:00,11233.0
-2014-05-02 13:00:00,11191.0
-2014-05-02 14:00:00,11170.0
-2014-05-02 15:00:00,11157.0
-2014-05-02 16:00:00,11046.0
-2014-05-02 17:00:00,10900.0
-2014-05-02 18:00:00,10803.0
-2014-05-02 19:00:00,10610.0
-2014-05-02 20:00:00,10514.0
-2014-05-02 21:00:00,10711.0
-2014-05-02 22:00:00,10890.0
-2014-05-02 23:00:00,10624.0
-2014-05-03 00:00:00,9992.0
-2014-05-01 01:00:00,9352.0
-2014-05-01 02:00:00,8880.0
-2014-05-01 03:00:00,8602.0
-2014-05-01 04:00:00,8468.0
-2014-05-01 05:00:00,8419.0
-2014-05-01 06:00:00,8660.0
-2014-05-01 07:00:00,9335.0
-2014-05-01 08:00:00,10308.0
-2014-05-01 09:00:00,10973.0
-2014-05-01 10:00:00,11273.0
-2014-05-01 11:00:00,11439.0
-2014-05-01 12:00:00,11543.0
-2014-05-01 13:00:00,11482.0
-2014-05-01 14:00:00,11375.0
-2014-05-01 15:00:00,11407.0
-2014-05-01 16:00:00,11291.0
-2014-05-01 17:00:00,11206.0
-2014-05-01 18:00:00,11192.0
-2014-05-01 19:00:00,11126.0
-2014-05-01 20:00:00,10964.0
-2014-05-01 21:00:00,11103.0
-2014-05-01 22:00:00,11343.0
-2014-05-01 23:00:00,10941.0
-2014-05-02 00:00:00,10190.0
-2014-04-30 01:00:00,9103.0
-2014-04-30 02:00:00,8621.0
-2014-04-30 03:00:00,8358.0
-2014-04-30 04:00:00,8171.0
-2014-04-30 05:00:00,8150.0
-2014-04-30 06:00:00,8318.0
-2014-04-30 07:00:00,9011.0
-2014-04-30 08:00:00,9868.0
-2014-04-30 09:00:00,10545.0
-2014-04-30 10:00:00,10877.0
-2014-04-30 11:00:00,11019.0
-2014-04-30 12:00:00,11154.0
-2014-04-30 13:00:00,11132.0
-2014-04-30 14:00:00,11080.0
-2014-04-30 15:00:00,11105.0
-2014-04-30 16:00:00,11020.0
-2014-04-30 17:00:00,10945.0
-2014-04-30 18:00:00,10927.0
-2014-04-30 19:00:00,10887.0
-2014-04-30 20:00:00,10777.0
-2014-04-30 21:00:00,10902.0
-2014-04-30 22:00:00,11199.0
-2014-04-30 23:00:00,10844.0
-2014-05-01 00:00:00,10097.0
-2014-04-29 01:00:00,9233.0
-2014-04-29 02:00:00,8772.0
-2014-04-29 03:00:00,8466.0
-2014-04-29 04:00:00,8317.0
-2014-04-29 05:00:00,8247.0
-2014-04-29 06:00:00,8432.0
-2014-04-29 07:00:00,9078.0
-2014-04-29 08:00:00,9949.0
-2014-04-29 09:00:00,10611.0
-2014-04-29 10:00:00,10887.0
-2014-04-29 11:00:00,11001.0
-2014-04-29 12:00:00,11105.0
-2014-04-29 13:00:00,11149.0
-2014-04-29 14:00:00,11184.0
-2014-04-29 15:00:00,11155.0
-2014-04-29 16:00:00,11047.0
-2014-04-29 17:00:00,10885.0
-2014-04-29 18:00:00,10792.0
-2014-04-29 19:00:00,10703.0
-2014-04-29 20:00:00,10548.0
-2014-04-29 21:00:00,10777.0
-2014-04-29 22:00:00,11011.0
-2014-04-29 23:00:00,10603.0
-2014-04-30 00:00:00,9832.0
-2014-04-28 01:00:00,8574.0
-2014-04-28 02:00:00,8287.0
-2014-04-28 03:00:00,8125.0
-2014-04-28 04:00:00,7949.0
-2014-04-28 05:00:00,8020.0
-2014-04-28 06:00:00,8255.0
-2014-04-28 07:00:00,9086.0
-2014-04-28 08:00:00,10200.0
-2014-04-28 09:00:00,10975.0
-2014-04-28 10:00:00,11137.0
-2014-04-28 11:00:00,11215.0
-2014-04-28 12:00:00,11390.0
-2014-04-28 13:00:00,11527.0
-2014-04-28 14:00:00,11412.0
-2014-04-28 15:00:00,11329.0
-2014-04-28 16:00:00,11176.0
-2014-04-28 17:00:00,11052.0
-2014-04-28 18:00:00,11018.0
-2014-04-28 19:00:00,11099.0
-2014-04-28 20:00:00,11052.0
-2014-04-28 21:00:00,11214.0
-2014-04-28 22:00:00,11269.0
-2014-04-28 23:00:00,10797.0
-2014-04-29 00:00:00,9972.0
-2014-04-27 01:00:00,8842.0
-2014-04-27 02:00:00,8390.0
-2014-04-27 03:00:00,8153.0
-2014-04-27 04:00:00,7970.0
-2014-04-27 05:00:00,7883.0
-2014-04-27 06:00:00,7846.0
-2014-04-27 07:00:00,8028.0
-2014-04-27 08:00:00,8060.0
-2014-04-27 09:00:00,8307.0
-2014-04-27 10:00:00,8667.0
-2014-04-27 11:00:00,8886.0
-2014-04-27 12:00:00,8911.0
-2014-04-27 13:00:00,8988.0
-2014-04-27 14:00:00,8946.0
-2014-04-27 15:00:00,8916.0
-2014-04-27 16:00:00,8869.0
-2014-04-27 17:00:00,8837.0
-2014-04-27 18:00:00,8882.0
-2014-04-27 19:00:00,9116.0
-2014-04-27 20:00:00,9391.0
-2014-04-27 21:00:00,9734.0
-2014-04-27 22:00:00,9821.0
-2014-04-27 23:00:00,9558.0
-2014-04-28 00:00:00,9050.0
-2014-04-26 01:00:00,9119.0
-2014-04-26 02:00:00,8584.0
-2014-04-26 03:00:00,8230.0
-2014-04-26 04:00:00,8036.0
-2014-04-26 05:00:00,7899.0
-2014-04-26 06:00:00,7962.0
-2014-04-26 07:00:00,8149.0
-2014-04-26 08:00:00,8280.0
-2014-04-26 09:00:00,8683.0
-2014-04-26 10:00:00,9106.0
-2014-04-26 11:00:00,9315.0
-2014-04-26 12:00:00,9465.0
-2014-04-26 13:00:00,9452.0
-2014-04-26 14:00:00,9355.0
-2014-04-26 15:00:00,9179.0
-2014-04-26 16:00:00,9089.0
-2014-04-26 17:00:00,9002.0
-2014-04-26 18:00:00,9005.0
-2014-04-26 19:00:00,9007.0
-2014-04-26 20:00:00,9088.0
-2014-04-26 21:00:00,9431.0
-2014-04-26 22:00:00,10004.0
-2014-04-26 23:00:00,9829.0
-2014-04-27 00:00:00,9391.0
-2014-04-25 01:00:00,9179.0
-2014-04-25 02:00:00,8688.0
-2014-04-25 03:00:00,8447.0
-2014-04-25 04:00:00,8300.0
-2014-04-25 05:00:00,8217.0
-2014-04-25 06:00:00,8407.0
-2014-04-25 07:00:00,9076.0
-2014-04-25 08:00:00,9996.0
-2014-04-25 09:00:00,10628.0
-2014-04-25 10:00:00,10850.0
-2014-04-25 11:00:00,10864.0
-2014-04-25 12:00:00,10946.0
-2014-04-25 13:00:00,10974.0
-2014-04-25 14:00:00,10978.0
-2014-04-25 15:00:00,11023.0
-2014-04-25 16:00:00,10975.0
-2014-04-25 17:00:00,10825.0
-2014-04-25 18:00:00,10678.0
-2014-04-25 19:00:00,10473.0
-2014-04-25 20:00:00,10242.0
-2014-04-25 21:00:00,10348.0
-2014-04-25 22:00:00,10704.0
-2014-04-25 23:00:00,10409.0
-2014-04-26 00:00:00,9752.0
-2014-04-24 01:00:00,9497.0
-2014-04-24 02:00:00,9000.0
-2014-04-24 03:00:00,8705.0
-2014-04-24 04:00:00,8545.0
-2014-04-24 05:00:00,8498.0
-2014-04-24 06:00:00,8763.0
-2014-04-24 07:00:00,9439.0
-2014-04-24 08:00:00,10288.0
-2014-04-24 09:00:00,10942.0
-2014-04-24 10:00:00,11196.0
-2014-04-24 11:00:00,11213.0
-2014-04-24 12:00:00,11278.0
-2014-04-24 13:00:00,11253.0
-2014-04-24 14:00:00,11199.0
-2014-04-24 15:00:00,11235.0
-2014-04-24 16:00:00,11107.0
-2014-04-24 17:00:00,10957.0
-2014-04-24 18:00:00,10856.0
-2014-04-24 19:00:00,10766.0
-2014-04-24 20:00:00,10704.0
-2014-04-24 21:00:00,11043.0
-2014-04-24 22:00:00,11145.0
-2014-04-24 23:00:00,10663.0
-2014-04-25 00:00:00,9886.0
-2014-04-23 01:00:00,9296.0
-2014-04-23 02:00:00,8853.0
-2014-04-23 03:00:00,8558.0
-2014-04-23 04:00:00,8436.0
-2014-04-23 05:00:00,8446.0
-2014-04-23 06:00:00,8722.0
-2014-04-23 07:00:00,9437.0
-2014-04-23 08:00:00,10247.0
-2014-04-23 09:00:00,10836.0
-2014-04-23 10:00:00,11108.0
-2014-04-23 11:00:00,11176.0
-2014-04-23 12:00:00,11210.0
-2014-04-23 13:00:00,11158.0
-2014-04-23 14:00:00,11091.0
-2014-04-23 15:00:00,11084.0
-2014-04-23 16:00:00,10973.0
-2014-04-23 17:00:00,10805.0
-2014-04-23 18:00:00,10696.0
-2014-04-23 19:00:00,10644.0
-2014-04-23 20:00:00,10656.0
-2014-04-23 21:00:00,11091.0
-2014-04-23 22:00:00,11317.0
-2014-04-23 23:00:00,10903.0
-2014-04-24 00:00:00,10191.0
-2014-04-22 01:00:00,9224.0
-2014-04-22 02:00:00,8687.0
-2014-04-22 03:00:00,8340.0
-2014-04-22 04:00:00,8098.0
-2014-04-22 05:00:00,8011.0
-2014-04-22 06:00:00,8211.0
-2014-04-22 07:00:00,8822.0
-2014-04-22 08:00:00,9615.0
-2014-04-22 09:00:00,10316.0
-2014-04-22 10:00:00,10646.0
-2014-04-22 11:00:00,10804.0
-2014-04-22 12:00:00,10903.0
-2014-04-22 13:00:00,10879.0
-2014-04-22 14:00:00,10853.0
-2014-04-22 15:00:00,10903.0
-2014-04-22 16:00:00,10799.0
-2014-04-22 17:00:00,10658.0
-2014-04-22 18:00:00,10537.0
-2014-04-22 19:00:00,10429.0
-2014-04-22 20:00:00,10273.0
-2014-04-22 21:00:00,10555.0
-2014-04-22 22:00:00,11041.0
-2014-04-22 23:00:00,10688.0
-2014-04-23 00:00:00,10006.0
-2014-04-21 01:00:00,8299.0
-2014-04-21 02:00:00,7913.0
-2014-04-21 03:00:00,7728.0
-2014-04-21 04:00:00,7554.0
-2014-04-21 05:00:00,7563.0
-2014-04-21 06:00:00,7777.0
-2014-04-21 07:00:00,8472.0
-2014-04-21 08:00:00,9313.0
-2014-04-21 09:00:00,10142.0
-2014-04-21 10:00:00,10638.0
-2014-04-21 11:00:00,10929.0
-2014-04-21 12:00:00,11170.0
-2014-04-21 13:00:00,11275.0
-2014-04-21 14:00:00,11387.0
-2014-04-21 15:00:00,11526.0
-2014-04-21 16:00:00,11511.0
-2014-04-21 17:00:00,11367.0
-2014-04-21 18:00:00,11280.0
-2014-04-21 19:00:00,11238.0
-2014-04-21 20:00:00,11136.0
-2014-04-21 21:00:00,11299.0
-2014-04-21 22:00:00,11352.0
-2014-04-21 23:00:00,10827.0
-2014-04-22 00:00:00,10019.0
-2014-04-20 01:00:00,8582.0
-2014-04-20 02:00:00,8148.0
-2014-04-20 03:00:00,7833.0
-2014-04-20 04:00:00,7678.0
-2014-04-20 05:00:00,7548.0
-2014-04-20 06:00:00,7610.0
-2014-04-20 07:00:00,7681.0
-2014-04-20 08:00:00,7705.0
-2014-04-20 09:00:00,7878.0
-2014-04-20 10:00:00,8174.0
-2014-04-20 11:00:00,8309.0
-2014-04-20 12:00:00,8464.0
-2014-04-20 13:00:00,8501.0
-2014-04-20 14:00:00,8547.0
-2014-04-20 15:00:00,8480.0
-2014-04-20 16:00:00,8474.0
-2014-04-20 17:00:00,8433.0
-2014-04-20 18:00:00,8479.0
-2014-04-20 19:00:00,8502.0
-2014-04-20 20:00:00,8557.0
-2014-04-20 21:00:00,8961.0
-2014-04-20 22:00:00,9530.0
-2014-04-20 23:00:00,9341.0
-2014-04-21 00:00:00,8838.0
-2014-04-19 01:00:00,9149.0
-2014-04-19 02:00:00,8726.0
-2014-04-19 03:00:00,8438.0
-2014-04-19 04:00:00,8282.0
-2014-04-19 05:00:00,8208.0
-2014-04-19 06:00:00,8280.0
-2014-04-19 07:00:00,8533.0
-2014-04-19 08:00:00,8677.0
-2014-04-19 09:00:00,8977.0
-2014-04-19 10:00:00,9291.0
-2014-04-19 11:00:00,9461.0
-2014-04-19 12:00:00,9502.0
-2014-04-19 13:00:00,9430.0
-2014-04-19 14:00:00,9334.0
-2014-04-19 15:00:00,9200.0
-2014-04-19 16:00:00,9069.0
-2014-04-19 17:00:00,9049.0
-2014-04-19 18:00:00,8983.0
-2014-04-19 19:00:00,8989.0
-2014-04-19 20:00:00,8982.0
-2014-04-19 21:00:00,9326.0
-2014-04-19 22:00:00,9790.0
-2014-04-19 23:00:00,9572.0
-2014-04-20 00:00:00,9156.0
-2014-04-18 01:00:00,9192.0
-2014-04-18 02:00:00,8633.0
-2014-04-18 03:00:00,8353.0
-2014-04-18 04:00:00,8179.0
-2014-04-18 05:00:00,8132.0
-2014-04-18 06:00:00,8310.0
-2014-04-18 07:00:00,8843.0
-2014-04-18 08:00:00,9318.0
-2014-04-18 09:00:00,9713.0
-2014-04-18 10:00:00,9986.0
-2014-04-18 11:00:00,10138.0
-2014-04-18 12:00:00,10251.0
-2014-04-18 13:00:00,10217.0
-2014-04-18 14:00:00,10152.0
-2014-04-18 15:00:00,10107.0
-2014-04-18 16:00:00,9962.0
-2014-04-18 17:00:00,9852.0
-2014-04-18 18:00:00,9755.0
-2014-04-18 19:00:00,9702.0
-2014-04-18 20:00:00,9641.0
-2014-04-18 21:00:00,9979.0
-2014-04-18 22:00:00,10419.0
-2014-04-18 23:00:00,10277.0
-2014-04-19 00:00:00,9729.0
-2014-04-17 01:00:00,9758.0
-2014-04-17 02:00:00,9319.0
-2014-04-17 03:00:00,9012.0
-2014-04-17 04:00:00,8834.0
-2014-04-17 05:00:00,8860.0
-2014-04-17 06:00:00,9098.0
-2014-04-17 07:00:00,9798.0
-2014-04-17 08:00:00,10645.0
-2014-04-17 09:00:00,11153.0
-2014-04-17 10:00:00,11297.0
-2014-04-17 11:00:00,11342.0
-2014-04-17 12:00:00,11476.0
-2014-04-17 13:00:00,11268.0
-2014-04-17 14:00:00,11171.0
-2014-04-17 15:00:00,11176.0
-2014-04-17 16:00:00,11027.0
-2014-04-17 17:00:00,10831.0
-2014-04-17 18:00:00,10674.0
-2014-04-17 19:00:00,10512.0
-2014-04-17 20:00:00,10383.0
-2014-04-17 21:00:00,10712.0
-2014-04-17 22:00:00,10983.0
-2014-04-17 23:00:00,10612.0
-2014-04-18 00:00:00,9904.0
-2014-04-16 01:00:00,10172.0
-2014-04-16 02:00:00,9704.0
-2014-04-16 03:00:00,9455.0
-2014-04-16 04:00:00,9313.0
-2014-04-16 05:00:00,9346.0
-2014-04-16 06:00:00,9575.0
-2014-04-16 07:00:00,10285.0
-2014-04-16 08:00:00,11132.0
-2014-04-16 09:00:00,11630.0
-2014-04-16 10:00:00,11796.0
-2014-04-16 11:00:00,11818.0
-2014-04-16 12:00:00,11853.0
-2014-04-16 13:00:00,11735.0
-2014-04-16 14:00:00,11606.0
-2014-04-16 15:00:00,11499.0
-2014-04-16 16:00:00,11362.0
-2014-04-16 17:00:00,11109.0
-2014-04-16 18:00:00,11012.0
-2014-04-16 19:00:00,10928.0
-2014-04-16 20:00:00,10837.0
-2014-04-16 21:00:00,11347.0
-2014-04-16 22:00:00,11634.0
-2014-04-16 23:00:00,11246.0
-2014-04-17 00:00:00,10487.0
-2014-04-15 01:00:00,10120.0
-2014-04-15 02:00:00,9673.0
-2014-04-15 03:00:00,9404.0
-2014-04-15 04:00:00,9268.0
-2014-04-15 05:00:00,9285.0
-2014-04-15 06:00:00,9535.0
-2014-04-15 07:00:00,10266.0
-2014-04-15 08:00:00,11136.0
-2014-04-15 09:00:00,11664.0
-2014-04-15 10:00:00,11843.0
-2014-04-15 11:00:00,11882.0
-2014-04-15 12:00:00,11946.0
-2014-04-15 13:00:00,11940.0
-2014-04-15 14:00:00,11872.0
-2014-04-15 15:00:00,11853.0
-2014-04-15 16:00:00,11681.0
-2014-04-15 17:00:00,11567.0
-2014-04-15 18:00:00,11437.0
-2014-04-15 19:00:00,11410.0
-2014-04-15 20:00:00,11299.0
-2014-04-15 21:00:00,11681.0
-2014-04-15 22:00:00,12034.0
-2014-04-15 23:00:00,11627.0
-2014-04-16 00:00:00,10915.0
-2014-04-14 01:00:00,8709.0
-2014-04-14 02:00:00,8306.0
-2014-04-14 03:00:00,8110.0
-2014-04-14 04:00:00,7990.0
-2014-04-14 05:00:00,8015.0
-2014-04-14 06:00:00,8210.0
-2014-04-14 07:00:00,8968.0
-2014-04-14 08:00:00,10099.0
-2014-04-14 09:00:00,10908.0
-2014-04-14 10:00:00,11278.0
-2014-04-14 11:00:00,11460.0
-2014-04-14 12:00:00,11605.0
-2014-04-14 13:00:00,11642.0
-2014-04-14 14:00:00,11615.0
-2014-04-14 15:00:00,11566.0
-2014-04-14 16:00:00,11515.0
-2014-04-14 17:00:00,11544.0
-2014-04-14 18:00:00,11606.0
-2014-04-14 19:00:00,11702.0
-2014-04-14 20:00:00,11734.0
-2014-04-14 21:00:00,12043.0
-2014-04-14 22:00:00,12103.0
-2014-04-14 23:00:00,11631.0
-2014-04-15 00:00:00,10854.0
-2014-04-13 01:00:00,8841.0
-2014-04-13 02:00:00,8357.0
-2014-04-13 03:00:00,8053.0
-2014-04-13 04:00:00,7829.0
-2014-04-13 05:00:00,7724.0
-2014-04-13 06:00:00,7652.0
-2014-04-13 07:00:00,7718.0
-2014-04-13 08:00:00,7754.0
-2014-04-13 09:00:00,7893.0
-2014-04-13 10:00:00,8314.0
-2014-04-13 11:00:00,8620.0
-2014-04-13 12:00:00,8970.0
-2014-04-13 13:00:00,9038.0
-2014-04-13 14:00:00,9037.0
-2014-04-13 15:00:00,9036.0
-2014-04-13 16:00:00,9083.0
-2014-04-13 17:00:00,9164.0
-2014-04-13 18:00:00,9234.0
-2014-04-13 19:00:00,9347.0
-2014-04-13 20:00:00,9681.0
-2014-04-13 21:00:00,10031.0
-2014-04-13 22:00:00,10063.0
-2014-04-13 23:00:00,9752.0
-2014-04-14 00:00:00,9214.0
-2014-04-12 01:00:00,9188.0
-2014-04-12 02:00:00,8663.0
-2014-04-12 03:00:00,8304.0
-2014-04-12 04:00:00,8123.0
-2014-04-12 05:00:00,8026.0
-2014-04-12 06:00:00,8089.0
-2014-04-12 07:00:00,8345.0
-2014-04-12 08:00:00,8613.0
-2014-04-12 09:00:00,8937.0
-2014-04-12 10:00:00,9357.0
-2014-04-12 11:00:00,9626.0
-2014-04-12 12:00:00,9918.0
-2014-04-12 13:00:00,9975.0
-2014-04-12 14:00:00,9866.0
-2014-04-12 15:00:00,9706.0
-2014-04-12 16:00:00,9675.0
-2014-04-12 17:00:00,9605.0
-2014-04-12 18:00:00,9591.0
-2014-04-12 19:00:00,9571.0
-2014-04-12 20:00:00,9588.0
-2014-04-12 21:00:00,9986.0
-2014-04-12 22:00:00,10210.0
-2014-04-12 23:00:00,9936.0
-2014-04-13 00:00:00,9408.0
-2014-04-11 01:00:00,9232.0
-2014-04-11 02:00:00,8765.0
-2014-04-11 03:00:00,8509.0
-2014-04-11 04:00:00,8395.0
-2014-04-11 05:00:00,8394.0
-2014-04-11 06:00:00,8595.0
-2014-04-11 07:00:00,9311.0
-2014-04-11 08:00:00,10217.0
-2014-04-11 09:00:00,10710.0
-2014-04-11 10:00:00,10920.0
-2014-04-11 11:00:00,10988.0
-2014-04-11 12:00:00,11099.0
-2014-04-11 13:00:00,11099.0
-2014-04-11 14:00:00,11053.0
-2014-04-11 15:00:00,11066.0
-2014-04-11 16:00:00,10950.0
-2014-04-11 17:00:00,10790.0
-2014-04-11 18:00:00,10641.0
-2014-04-11 19:00:00,10459.0
-2014-04-11 20:00:00,10294.0
-2014-04-11 21:00:00,10590.0
-2014-04-11 22:00:00,10817.0
-2014-04-11 23:00:00,10442.0
-2014-04-12 00:00:00,9872.0
-2014-04-10 01:00:00,9376.0
-2014-04-10 02:00:00,8896.0
-2014-04-10 03:00:00,8614.0
-2014-04-10 04:00:00,8464.0
-2014-04-10 05:00:00,8443.0
-2014-04-10 06:00:00,8638.0
-2014-04-10 07:00:00,9320.0
-2014-04-10 08:00:00,10200.0
-2014-04-10 09:00:00,10761.0
-2014-04-10 10:00:00,11022.0
-2014-04-10 11:00:00,11137.0
-2014-04-10 12:00:00,11240.0
-2014-04-10 13:00:00,11222.0
-2014-04-10 14:00:00,11178.0
-2014-04-10 15:00:00,11175.0
-2014-04-10 16:00:00,11075.0
-2014-04-10 17:00:00,10907.0
-2014-04-10 18:00:00,10816.0
-2014-04-10 19:00:00,10699.0
-2014-04-10 20:00:00,10635.0
-2014-04-10 21:00:00,10899.0
-2014-04-10 22:00:00,11127.0
-2014-04-10 23:00:00,10707.0
-2014-04-11 00:00:00,9934.0
-2014-04-09 01:00:00,9476.0
-2014-04-09 02:00:00,9068.0
-2014-04-09 03:00:00,8810.0
-2014-04-09 04:00:00,8669.0
-2014-04-09 05:00:00,8723.0
-2014-04-09 06:00:00,8934.0
-2014-04-09 07:00:00,9693.0
-2014-04-09 08:00:00,10665.0
-2014-04-09 09:00:00,11073.0
-2014-04-09 10:00:00,11217.0
-2014-04-09 11:00:00,11214.0
-2014-04-09 12:00:00,11247.0
-2014-04-09 13:00:00,11204.0
-2014-04-09 14:00:00,11162.0
-2014-04-09 15:00:00,11132.0
-2014-04-09 16:00:00,11003.0
-2014-04-09 17:00:00,10886.0
-2014-04-09 18:00:00,10759.0
-2014-04-09 19:00:00,10646.0
-2014-04-09 20:00:00,10538.0
-2014-04-09 21:00:00,11064.0
-2014-04-09 22:00:00,11290.0
-2014-04-09 23:00:00,10840.0
-2014-04-10 00:00:00,10093.0
-2014-04-08 01:00:00,9582.0
-2014-04-08 02:00:00,9111.0
-2014-04-08 03:00:00,8809.0
-2014-04-08 04:00:00,8696.0
-2014-04-08 05:00:00,8658.0
-2014-04-08 06:00:00,8886.0
-2014-04-08 07:00:00,9587.0
-2014-04-08 08:00:00,10600.0
-2014-04-08 09:00:00,11121.0
-2014-04-08 10:00:00,11329.0
-2014-04-08 11:00:00,11360.0
-2014-04-08 12:00:00,11395.0
-2014-04-08 13:00:00,11305.0
-2014-04-08 14:00:00,11230.0
-2014-04-08 15:00:00,11224.0
-2014-04-08 16:00:00,11081.0
-2014-04-08 17:00:00,10941.0
-2014-04-08 18:00:00,10866.0
-2014-04-08 19:00:00,10795.0
-2014-04-08 20:00:00,10665.0
-2014-04-08 21:00:00,11084.0
-2014-04-08 22:00:00,11342.0
-2014-04-08 23:00:00,10916.0
-2014-04-09 00:00:00,10188.0
-2014-04-07 01:00:00,8896.0
-2014-04-07 02:00:00,8575.0
-2014-04-07 03:00:00,8418.0
-2014-04-07 04:00:00,8389.0
-2014-04-07 05:00:00,8465.0
-2014-04-07 06:00:00,8782.0
-2014-04-07 07:00:00,9564.0
-2014-04-07 08:00:00,10609.0
-2014-04-07 09:00:00,11246.0
-2014-04-07 10:00:00,11512.0
-2014-04-07 11:00:00,11568.0
-2014-04-07 12:00:00,11549.0
-2014-04-07 13:00:00,11465.0
-2014-04-07 14:00:00,11374.0
-2014-04-07 15:00:00,11373.0
-2014-04-07 16:00:00,11245.0
-2014-04-07 17:00:00,11137.0
-2014-04-07 18:00:00,11077.0
-2014-04-07 19:00:00,11097.0
-2014-04-07 20:00:00,11074.0
-2014-04-07 21:00:00,11513.0
-2014-04-07 22:00:00,11538.0
-2014-04-07 23:00:00,11104.0
-2014-04-08 00:00:00,10362.0
-2014-04-06 01:00:00,9321.0
-2014-04-06 02:00:00,8926.0
-2014-04-06 03:00:00,8698.0
-2014-04-06 04:00:00,8572.0
-2014-04-06 05:00:00,8503.0
-2014-04-06 06:00:00,8569.0
-2014-04-06 07:00:00,8716.0
-2014-04-06 08:00:00,8838.0
-2014-04-06 09:00:00,8884.0
-2014-04-06 10:00:00,9015.0
-2014-04-06 11:00:00,9130.0
-2014-04-06 12:00:00,9148.0
-2014-04-06 13:00:00,9105.0
-2014-04-06 14:00:00,9108.0
-2014-04-06 15:00:00,9040.0
-2014-04-06 16:00:00,8942.0
-2014-04-06 17:00:00,8848.0
-2014-04-06 18:00:00,8960.0
-2014-04-06 19:00:00,9105.0
-2014-04-06 20:00:00,9293.0
-2014-04-06 21:00:00,9842.0
-2014-04-06 22:00:00,10131.0
-2014-04-06 23:00:00,9849.0
-2014-04-07 00:00:00,9399.0
-2014-04-05 01:00:00,10347.0
-2014-04-05 02:00:00,9759.0
-2014-04-05 03:00:00,9424.0
-2014-04-05 04:00:00,9194.0
-2014-04-05 05:00:00,9125.0
-2014-04-05 06:00:00,9176.0
-2014-04-05 07:00:00,9475.0
-2014-04-05 08:00:00,9828.0
-2014-04-05 09:00:00,9999.0
-2014-04-05 10:00:00,10228.0
-2014-04-05 11:00:00,10298.0
-2014-04-05 12:00:00,10259.0
-2014-04-05 13:00:00,10109.0
-2014-04-05 14:00:00,9938.0
-2014-04-05 15:00:00,9734.0
-2014-04-05 16:00:00,9564.0
-2014-04-05 17:00:00,9406.0
-2014-04-05 18:00:00,9349.0
-2014-04-05 19:00:00,9351.0
-2014-04-05 20:00:00,9451.0
-2014-04-05 21:00:00,9971.0
-2014-04-05 22:00:00,10355.0
-2014-04-05 23:00:00,10215.0
-2014-04-06 00:00:00,9801.0
-2014-04-04 01:00:00,10164.0
-2014-04-04 02:00:00,9662.0
-2014-04-04 03:00:00,9305.0
-2014-04-04 04:00:00,9164.0
-2014-04-04 05:00:00,9111.0
-2014-04-04 06:00:00,9330.0
-2014-04-04 07:00:00,9995.0
-2014-04-04 08:00:00,11075.0
-2014-04-04 09:00:00,11678.0
-2014-04-04 10:00:00,11833.0
-2014-04-04 11:00:00,11910.0
-2014-04-04 12:00:00,12086.0
-2014-04-04 13:00:00,12149.0
-2014-04-04 14:00:00,12121.0
-2014-04-04 15:00:00,12165.0
-2014-04-04 16:00:00,12053.0
-2014-04-04 17:00:00,11990.0
-2014-04-04 18:00:00,11939.0
-2014-04-04 19:00:00,11871.0
-2014-04-04 20:00:00,11857.0
-2014-04-04 21:00:00,12097.0
-2014-04-04 22:00:00,11988.0
-2014-04-04 23:00:00,11621.0
-2014-04-05 00:00:00,11004.0
-2014-04-03 01:00:00,10083.0
-2014-04-03 02:00:00,9599.0
-2014-04-03 03:00:00,9297.0
-2014-04-03 04:00:00,9142.0
-2014-04-03 05:00:00,9067.0
-2014-04-03 06:00:00,9309.0
-2014-04-03 07:00:00,10069.0
-2014-04-03 08:00:00,11245.0
-2014-04-03 09:00:00,12072.0
-2014-04-03 10:00:00,12389.0
-2014-04-03 11:00:00,12454.0
-2014-04-03 12:00:00,12436.0
-2014-04-03 13:00:00,12371.0
-2014-04-03 14:00:00,12297.0
-2014-04-03 15:00:00,12299.0
-2014-04-03 16:00:00,12213.0
-2014-04-03 17:00:00,12093.0
-2014-04-03 18:00:00,12086.0
-2014-04-03 19:00:00,12038.0
-2014-04-03 20:00:00,11987.0
-2014-04-03 21:00:00,12322.0
-2014-04-03 22:00:00,12191.0
-2014-04-03 23:00:00,11720.0
-2014-04-04 00:00:00,10895.0
-2014-04-02 01:00:00,9795.0
-2014-04-02 02:00:00,9308.0
-2014-04-02 03:00:00,9034.0
-2014-04-02 04:00:00,8858.0
-2014-04-02 05:00:00,8879.0
-2014-04-02 06:00:00,9153.0
-2014-04-02 07:00:00,9898.0
-2014-04-02 08:00:00,10966.0
-2014-04-02 09:00:00,11405.0
-2014-04-02 10:00:00,11598.0
-2014-04-02 11:00:00,11642.0
-2014-04-02 12:00:00,11636.0
-2014-04-02 13:00:00,11573.0
-2014-04-02 14:00:00,11472.0
-2014-04-02 15:00:00,11479.0
-2014-04-02 16:00:00,11342.0
-2014-04-02 17:00:00,11203.0
-2014-04-02 18:00:00,11215.0
-2014-04-02 19:00:00,11329.0
-2014-04-02 20:00:00,11500.0
-2014-04-02 21:00:00,12030.0
-2014-04-02 22:00:00,12002.0
-2014-04-02 23:00:00,11574.0
-2014-04-03 00:00:00,10801.0
-2014-04-01 01:00:00,9407.0
-2014-04-01 02:00:00,8906.0
-2014-04-01 03:00:00,8580.0
-2014-04-01 04:00:00,8468.0
-2014-04-01 05:00:00,8477.0
-2014-04-01 06:00:00,8718.0
-2014-04-01 07:00:00,9433.0
-2014-04-01 08:00:00,10727.0
-2014-04-01 09:00:00,11429.0
-2014-04-01 10:00:00,11804.0
-2014-04-01 11:00:00,11924.0
-2014-04-01 12:00:00,12088.0
-2014-04-01 13:00:00,12072.0
-2014-04-01 14:00:00,11956.0
-2014-04-01 15:00:00,11856.0
-2014-04-01 16:00:00,11637.0
-2014-04-01 17:00:00,11390.0
-2014-04-01 18:00:00,11166.0
-2014-04-01 19:00:00,11081.0
-2014-04-01 20:00:00,11103.0
-2014-04-01 21:00:00,11707.0
-2014-04-01 22:00:00,11722.0
-2014-04-01 23:00:00,11277.0
-2014-04-02 00:00:00,10535.0
-2014-03-31 01:00:00,9112.0
-2014-03-31 02:00:00,8791.0
-2014-03-31 03:00:00,8598.0
-2014-03-31 04:00:00,8532.0
-2014-03-31 05:00:00,8566.0
-2014-03-31 06:00:00,8860.0
-2014-03-31 07:00:00,9644.0
-2014-03-31 08:00:00,10647.0
-2014-03-31 09:00:00,11147.0
-2014-03-31 10:00:00,11354.0
-2014-03-31 11:00:00,11404.0
-2014-03-31 12:00:00,11412.0
-2014-03-31 13:00:00,11366.0
-2014-03-31 14:00:00,11327.0
-2014-03-31 15:00:00,11351.0
-2014-03-31 16:00:00,11196.0
-2014-03-31 17:00:00,11087.0
-2014-03-31 18:00:00,10991.0
-2014-03-31 19:00:00,10932.0
-2014-03-31 20:00:00,10839.0
-2014-03-31 21:00:00,11324.0
-2014-03-31 22:00:00,11355.0
-2014-03-31 23:00:00,10893.0
-2014-04-01 00:00:00,10104.0
-2014-03-30 01:00:00,9950.0
-2014-03-30 02:00:00,9585.0
-2014-03-30 03:00:00,9301.0
-2014-03-30 04:00:00,9172.0
-2014-03-30 05:00:00,9108.0
-2014-03-30 06:00:00,9170.0
-2014-03-30 07:00:00,9304.0
-2014-03-30 08:00:00,9481.0
-2014-03-30 09:00:00,9458.0
-2014-03-30 10:00:00,9604.0
-2014-03-30 11:00:00,9645.0
-2014-03-30 12:00:00,9641.0
-2014-03-30 13:00:00,9589.0
-2014-03-30 14:00:00,9495.0
-2014-03-30 15:00:00,9380.0
-2014-03-30 16:00:00,9258.0
-2014-03-30 17:00:00,9173.0
-2014-03-30 18:00:00,9147.0
-2014-03-30 19:00:00,9255.0
-2014-03-30 20:00:00,9430.0
-2014-03-30 21:00:00,10186.0
-2014-03-30 22:00:00,10353.0
-2014-03-30 23:00:00,10121.0
-2014-03-31 00:00:00,9627.0
-2014-03-29 01:00:00,10225.0
-2014-03-29 02:00:00,9737.0
-2014-03-29 03:00:00,9469.0
-2014-03-29 04:00:00,9261.0
-2014-03-29 05:00:00,9228.0
-2014-03-29 06:00:00,9220.0
-2014-03-29 07:00:00,9544.0
-2014-03-29 08:00:00,9985.0
-2014-03-29 09:00:00,10345.0
-2014-03-29 10:00:00,10749.0
-2014-03-29 11:00:00,11011.0
-2014-03-29 12:00:00,11162.0
-2014-03-29 13:00:00,11086.0
-2014-03-29 14:00:00,10914.0
-2014-03-29 15:00:00,10653.0
-2014-03-29 16:00:00,10425.0
-2014-03-29 17:00:00,10136.0
-2014-03-29 18:00:00,10035.0
-2014-03-29 19:00:00,9947.0
-2014-03-29 20:00:00,10082.0
-2014-03-29 21:00:00,10760.0
-2014-03-29 22:00:00,11011.0
-2014-03-29 23:00:00,10857.0
-2014-03-30 00:00:00,10425.0
-2014-03-28 01:00:00,9988.0
-2014-03-28 02:00:00,9489.0
-2014-03-28 03:00:00,9135.0
-2014-03-28 04:00:00,9006.0
-2014-03-28 05:00:00,9032.0
-2014-03-28 06:00:00,9254.0
-2014-03-28 07:00:00,9938.0
-2014-03-28 08:00:00,10993.0
-2014-03-28 09:00:00,11667.0
-2014-03-28 10:00:00,11885.0
-2014-03-28 11:00:00,12073.0
-2014-03-28 12:00:00,12159.0
-2014-03-28 13:00:00,12018.0
-2014-03-28 14:00:00,11905.0
-2014-03-28 15:00:00,11813.0
-2014-03-28 16:00:00,11716.0
-2014-03-28 17:00:00,11564.0
-2014-03-28 18:00:00,11516.0
-2014-03-28 19:00:00,11521.0
-2014-03-28 20:00:00,11623.0
-2014-03-28 21:00:00,12003.0
-2014-03-28 22:00:00,11867.0
-2014-03-28 23:00:00,11533.0
-2014-03-29 00:00:00,10944.0
-2014-03-27 01:00:00,10485.0
-2014-03-27 02:00:00,10000.0
-2014-03-27 03:00:00,9672.0
-2014-03-27 04:00:00,9490.0
-2014-03-27 05:00:00,9477.0
-2014-03-27 06:00:00,9747.0
-2014-03-27 07:00:00,10433.0
-2014-03-27 08:00:00,11501.0
-2014-03-27 09:00:00,12094.0
-2014-03-27 10:00:00,12398.0
-2014-03-27 11:00:00,12530.0
-2014-03-27 12:00:00,12657.0
-2014-03-27 13:00:00,12642.0
-2014-03-27 14:00:00,12564.0
-2014-03-27 15:00:00,12502.0
-2014-03-27 16:00:00,12316.0
-2014-03-27 17:00:00,12109.0
-2014-03-27 18:00:00,12066.0
-2014-03-27 19:00:00,12010.0
-2014-03-27 20:00:00,12089.0
-2014-03-27 21:00:00,12306.0
-2014-03-27 22:00:00,12082.0
-2014-03-27 23:00:00,11573.0
-2014-03-28 00:00:00,10772.0
-2014-03-26 01:00:00,11005.0
-2014-03-26 02:00:00,10542.0
-2014-03-26 03:00:00,10325.0
-2014-03-26 04:00:00,10227.0
-2014-03-26 05:00:00,10249.0
-2014-03-26 06:00:00,10505.0
-2014-03-26 07:00:00,11231.0
-2014-03-26 08:00:00,12223.0
-2014-03-26 09:00:00,12591.0
-2014-03-26 10:00:00,12632.0
-2014-03-26 11:00:00,12590.0
-2014-03-26 12:00:00,12562.0
-2014-03-26 13:00:00,12438.0
-2014-03-26 14:00:00,12260.0
-2014-03-26 15:00:00,12163.0
-2014-03-26 16:00:00,11966.0
-2014-03-26 17:00:00,11711.0
-2014-03-26 18:00:00,11602.0
-2014-03-26 19:00:00,11627.0
-2014-03-26 20:00:00,11814.0
-2014-03-26 21:00:00,12410.0
-2014-03-26 22:00:00,12369.0
-2014-03-26 23:00:00,11941.0
-2014-03-27 00:00:00,11201.0
-2014-03-25 01:00:00,10631.0
-2014-03-25 02:00:00,10150.0
-2014-03-25 03:00:00,9908.0
-2014-03-25 04:00:00,9781.0
-2014-03-25 05:00:00,9806.0
-2014-03-25 06:00:00,10102.0
-2014-03-25 07:00:00,10828.0
-2014-03-25 08:00:00,11923.0
-2014-03-25 09:00:00,12332.0
-2014-03-25 10:00:00,12461.0
-2014-03-25 11:00:00,12564.0
-2014-03-25 12:00:00,12676.0
-2014-03-25 13:00:00,12698.0
-2014-03-25 14:00:00,12577.0
-2014-03-25 15:00:00,12565.0
-2014-03-25 16:00:00,12393.0
-2014-03-25 17:00:00,12218.0
-2014-03-25 18:00:00,12137.0
-2014-03-25 19:00:00,12096.0
-2014-03-25 20:00:00,12143.0
-2014-03-25 21:00:00,12781.0
-2014-03-25 22:00:00,12821.0
-2014-03-25 23:00:00,12379.0
-2014-03-26 00:00:00,11719.0
-2014-03-24 01:00:00,10264.0
-2014-03-24 02:00:00,9981.0
-2014-03-24 03:00:00,9809.0
-2014-03-24 04:00:00,9753.0
-2014-03-24 05:00:00,9842.0
-2014-03-24 06:00:00,10140.0
-2014-03-24 07:00:00,10814.0
-2014-03-24 08:00:00,11954.0
-2014-03-24 09:00:00,12462.0
-2014-03-24 10:00:00,12571.0
-2014-03-24 11:00:00,12506.0
-2014-03-24 12:00:00,12430.0
-2014-03-24 13:00:00,12322.0
-2014-03-24 14:00:00,12176.0
-2014-03-24 15:00:00,12114.0
-2014-03-24 16:00:00,11904.0
-2014-03-24 17:00:00,11705.0
-2014-03-24 18:00:00,11572.0
-2014-03-24 19:00:00,11573.0
-2014-03-24 20:00:00,11649.0
-2014-03-24 21:00:00,12347.0
-2014-03-24 22:00:00,12404.0
-2014-03-24 23:00:00,11997.0
-2014-03-25 00:00:00,11336.0
-2014-03-23 01:00:00,9954.0
-2014-03-23 02:00:00,9575.0
-2014-03-23 03:00:00,9401.0
-2014-03-23 04:00:00,9280.0
-2014-03-23 05:00:00,9266.0
-2014-03-23 06:00:00,9311.0
-2014-03-23 07:00:00,9516.0
-2014-03-23 08:00:00,9790.0
-2014-03-23 09:00:00,9888.0
-2014-03-23 10:00:00,10139.0
-2014-03-23 11:00:00,10261.0
-2014-03-23 12:00:00,10254.0
-2014-03-23 13:00:00,10280.0
-2014-03-23 14:00:00,10254.0
-2014-03-23 15:00:00,10147.0
-2014-03-23 16:00:00,10042.0
-2014-03-23 17:00:00,10031.0
-2014-03-23 18:00:00,10009.0
-2014-03-23 19:00:00,10208.0
-2014-03-23 20:00:00,10508.0
-2014-03-23 21:00:00,11285.0
-2014-03-23 22:00:00,11425.0
-2014-03-23 23:00:00,11177.0
-2014-03-24 00:00:00,10754.0
-2014-03-22 01:00:00,9889.0
-2014-03-22 02:00:00,9439.0
-2014-03-22 03:00:00,9114.0
-2014-03-22 04:00:00,8961.0
-2014-03-22 05:00:00,8873.0
-2014-03-22 06:00:00,8946.0
-2014-03-22 07:00:00,9202.0
-2014-03-22 08:00:00,9710.0
-2014-03-22 09:00:00,9979.0
-2014-03-22 10:00:00,10384.0
-2014-03-22 11:00:00,10578.0
-2014-03-22 12:00:00,10705.0
-2014-03-22 13:00:00,10656.0
-2014-03-22 14:00:00,10539.0
-2014-03-22 15:00:00,10331.0
-2014-03-22 16:00:00,10133.0
-2014-03-22 17:00:00,10099.0
-2014-03-22 18:00:00,10041.0
-2014-03-22 19:00:00,10091.0
-2014-03-22 20:00:00,10295.0
-2014-03-22 21:00:00,10975.0
-2014-03-22 22:00:00,11051.0
-2014-03-22 23:00:00,10863.0
-2014-03-23 00:00:00,10426.0
-2014-03-21 01:00:00,10257.0
-2014-03-21 02:00:00,9754.0
-2014-03-21 03:00:00,9450.0
-2014-03-21 04:00:00,9331.0
-2014-03-21 05:00:00,9303.0
-2014-03-21 06:00:00,9543.0
-2014-03-21 07:00:00,10254.0
-2014-03-21 08:00:00,11399.0
-2014-03-21 09:00:00,11853.0
-2014-03-21 10:00:00,11926.0
-2014-03-21 11:00:00,11852.0
-2014-03-21 12:00:00,11767.0
-2014-03-21 13:00:00,11617.0
-2014-03-21 14:00:00,11446.0
-2014-03-21 15:00:00,11401.0
-2014-03-21 16:00:00,11197.0
-2014-03-21 17:00:00,11009.0
-2014-03-21 18:00:00,10975.0
-2014-03-21 19:00:00,11000.0
-2014-03-21 20:00:00,11138.0
-2014-03-21 21:00:00,11540.0
-2014-03-21 22:00:00,11370.0
-2014-03-21 23:00:00,11041.0
-2014-03-22 00:00:00,10487.0
-2014-03-20 01:00:00,10477.0
-2014-03-20 02:00:00,9955.0
-2014-03-20 03:00:00,9655.0
-2014-03-20 04:00:00,9490.0
-2014-03-20 05:00:00,9486.0
-2014-03-20 06:00:00,9741.0
-2014-03-20 07:00:00,10440.0
-2014-03-20 08:00:00,11641.0
-2014-03-20 09:00:00,12218.0
-2014-03-20 10:00:00,12333.0
-2014-03-20 11:00:00,12213.0
-2014-03-20 12:00:00,12134.0
-2014-03-20 13:00:00,11972.0
-2014-03-20 14:00:00,11806.0
-2014-03-20 15:00:00,11731.0
-2014-03-20 16:00:00,11538.0
-2014-03-20 17:00:00,11343.0
-2014-03-20 18:00:00,11230.0
-2014-03-20 19:00:00,11159.0
-2014-03-20 20:00:00,11214.0
-2014-03-20 21:00:00,11897.0
-2014-03-20 22:00:00,11982.0
-2014-03-20 23:00:00,11646.0
-2014-03-21 00:00:00,10960.0
-2014-03-19 01:00:00,10129.0
-2014-03-19 02:00:00,9633.0
-2014-03-19 03:00:00,9310.0
-2014-03-19 04:00:00,9159.0
-2014-03-19 05:00:00,9163.0
-2014-03-19 06:00:00,9380.0
-2014-03-19 07:00:00,10047.0
-2014-03-19 08:00:00,11274.0
-2014-03-19 09:00:00,12035.0
-2014-03-19 10:00:00,12169.0
-2014-03-19 11:00:00,12173.0
-2014-03-19 12:00:00,12272.0
-2014-03-19 13:00:00,12329.0
-2014-03-19 14:00:00,12307.0
-2014-03-19 15:00:00,12336.0
-2014-03-19 16:00:00,12253.0
-2014-03-19 17:00:00,12208.0
-2014-03-19 18:00:00,12227.0
-2014-03-19 19:00:00,12361.0
-2014-03-19 20:00:00,12453.0
-2014-03-19 21:00:00,12700.0
-2014-03-19 22:00:00,12503.0
-2014-03-19 23:00:00,11984.0
-2014-03-20 00:00:00,11230.0
-2014-03-18 01:00:00,10689.0
-2014-03-18 02:00:00,10218.0
-2014-03-18 03:00:00,9959.0
-2014-03-18 04:00:00,9869.0
-2014-03-18 05:00:00,9874.0
-2014-03-18 06:00:00,10122.0
-2014-03-18 07:00:00,10847.0
-2014-03-18 08:00:00,12012.0
-2014-03-18 09:00:00,12396.0
-2014-03-18 10:00:00,12438.0
-2014-03-18 11:00:00,12361.0
-2014-03-18 12:00:00,12257.0
-2014-03-18 13:00:00,12135.0
-2014-03-18 14:00:00,11980.0
-2014-03-18 15:00:00,11968.0
-2014-03-18 16:00:00,11760.0
-2014-03-18 17:00:00,11617.0
-2014-03-18 18:00:00,11488.0
-2014-03-18 19:00:00,11393.0
-2014-03-18 20:00:00,11547.0
-2014-03-18 21:00:00,12172.0
-2014-03-18 22:00:00,12136.0
-2014-03-18 23:00:00,11633.0
-2014-03-19 00:00:00,10911.0
-2014-03-17 01:00:00,10713.0
-2014-03-17 02:00:00,10411.0
-2014-03-17 03:00:00,10291.0
-2014-03-17 04:00:00,10213.0
-2014-03-17 05:00:00,10334.0
-2014-03-17 06:00:00,10583.0
-2014-03-17 07:00:00,11395.0
-2014-03-17 08:00:00,12572.0
-2014-03-17 09:00:00,13036.0
-2014-03-17 10:00:00,12994.0
-2014-03-17 11:00:00,12940.0
-2014-03-17 12:00:00,12845.0
-2014-03-17 13:00:00,12742.0
-2014-03-17 14:00:00,12572.0
-2014-03-17 15:00:00,12475.0
-2014-03-17 16:00:00,12209.0
-2014-03-17 17:00:00,11995.0
-2014-03-17 18:00:00,11868.0
-2014-03-17 19:00:00,11809.0
-2014-03-17 20:00:00,11908.0
-2014-03-17 21:00:00,12619.0
-2014-03-17 22:00:00,12601.0
-2014-03-17 23:00:00,12195.0
-2014-03-18 00:00:00,11448.0
-2014-03-16 01:00:00,10385.0
-2014-03-16 02:00:00,9958.0
-2014-03-16 03:00:00,9758.0
-2014-03-16 04:00:00,9620.0
-2014-03-16 05:00:00,9655.0
-2014-03-16 06:00:00,9752.0
-2014-03-16 07:00:00,9935.0
-2014-03-16 08:00:00,10304.0
-2014-03-16 09:00:00,10441.0
-2014-03-16 10:00:00,10734.0
-2014-03-16 11:00:00,10958.0
-2014-03-16 12:00:00,11047.0
-2014-03-16 13:00:00,11050.0
-2014-03-16 14:00:00,10983.0
-2014-03-16 15:00:00,10894.0
-2014-03-16 16:00:00,10791.0
-2014-03-16 17:00:00,10661.0
-2014-03-16 18:00:00,10764.0
-2014-03-16 19:00:00,10912.0
-2014-03-16 20:00:00,11230.0
-2014-03-16 21:00:00,12047.0
-2014-03-16 22:00:00,12166.0
-2014-03-16 23:00:00,11854.0
-2014-03-17 00:00:00,11292.0
-2014-03-15 01:00:00,10290.0
-2014-03-15 02:00:00,9799.0
-2014-03-15 03:00:00,9478.0
-2014-03-15 04:00:00,9297.0
-2014-03-15 05:00:00,9186.0
-2014-03-15 06:00:00,9263.0
-2014-03-15 07:00:00,9593.0
-2014-03-15 08:00:00,10130.0
-2014-03-15 09:00:00,10426.0
-2014-03-15 10:00:00,10715.0
-2014-03-15 11:00:00,10917.0
-2014-03-15 12:00:00,10886.0
-2014-03-15 13:00:00,10670.0
-2014-03-15 14:00:00,10592.0
-2014-03-15 15:00:00,10314.0
-2014-03-15 16:00:00,10181.0
-2014-03-15 17:00:00,10109.0
-2014-03-15 18:00:00,10155.0
-2014-03-15 19:00:00,10349.0
-2014-03-15 20:00:00,10686.0
-2014-03-15 21:00:00,11355.0
-2014-03-15 22:00:00,11388.0
-2014-03-15 23:00:00,11240.0
-2014-03-16 00:00:00,10831.0
-2014-03-14 01:00:00,10995.0
-2014-03-14 02:00:00,10461.0
-2014-03-14 03:00:00,10105.0
-2014-03-14 04:00:00,9954.0
-2014-03-14 05:00:00,9878.0
-2014-03-14 06:00:00,10047.0
-2014-03-14 07:00:00,10727.0
-2014-03-14 08:00:00,11868.0
-2014-03-14 09:00:00,12271.0
-2014-03-14 10:00:00,12201.0
-2014-03-14 11:00:00,12131.0
-2014-03-14 12:00:00,12061.0
-2014-03-14 13:00:00,11940.0
-2014-03-14 14:00:00,11743.0
-2014-03-14 15:00:00,11631.0
-2014-03-14 16:00:00,11430.0
-2014-03-14 17:00:00,11217.0
-2014-03-14 18:00:00,11103.0
-2014-03-14 19:00:00,11058.0
-2014-03-14 20:00:00,11256.0
-2014-03-14 21:00:00,11886.0
-2014-03-14 22:00:00,11837.0
-2014-03-14 23:00:00,11574.0
-2014-03-15 00:00:00,10941.0
-2014-03-13 01:00:00,11362.0
-2014-03-13 02:00:00,10874.0
-2014-03-13 03:00:00,10618.0
-2014-03-13 04:00:00,10545.0
-2014-03-13 05:00:00,10566.0
-2014-03-13 06:00:00,10822.0
-2014-03-13 07:00:00,11489.0
-2014-03-13 08:00:00,12672.0
-2014-03-13 09:00:00,13136.0
-2014-03-13 10:00:00,13042.0
-2014-03-13 11:00:00,12999.0
-2014-03-13 12:00:00,12967.0
-2014-03-13 13:00:00,12997.0
-2014-03-13 14:00:00,13006.0
-2014-03-13 15:00:00,12964.0
-2014-03-13 16:00:00,12789.0
-2014-03-13 17:00:00,12551.0
-2014-03-13 18:00:00,12315.0
-2014-03-13 19:00:00,12210.0
-2014-03-13 20:00:00,12373.0
-2014-03-13 21:00:00,13073.0
-2014-03-13 22:00:00,12970.0
-2014-03-13 23:00:00,12558.0
-2014-03-14 00:00:00,11789.0
-2014-03-12 01:00:00,10430.0
-2014-03-12 02:00:00,10095.0
-2014-03-12 03:00:00,9844.0
-2014-03-12 04:00:00,9742.0
-2014-03-12 05:00:00,9735.0
-2014-03-12 06:00:00,9972.0
-2014-03-12 07:00:00,10602.0
-2014-03-12 08:00:00,11716.0
-2014-03-12 09:00:00,12313.0
-2014-03-12 10:00:00,12522.0
-2014-03-12 11:00:00,12650.0
-2014-03-12 12:00:00,12639.0
-2014-03-12 13:00:00,12530.0
-2014-03-12 14:00:00,12468.0
-2014-03-12 15:00:00,12500.0
-2014-03-12 16:00:00,12355.0
-2014-03-12 17:00:00,12211.0
-2014-03-12 18:00:00,12181.0
-2014-03-12 19:00:00,12213.0
-2014-03-12 20:00:00,12411.0
-2014-03-12 21:00:00,13161.0
-2014-03-12 22:00:00,13174.0
-2014-03-12 23:00:00,12774.0
-2014-03-13 00:00:00,12079.0
-2014-03-11 01:00:00,9963.0
-2014-03-11 02:00:00,9517.0
-2014-03-11 03:00:00,9196.0
-2014-03-11 04:00:00,9059.0
-2014-03-11 05:00:00,9016.0
-2014-03-11 06:00:00,9205.0
-2014-03-11 07:00:00,9910.0
-2014-03-11 08:00:00,11147.0
-2014-03-11 09:00:00,11804.0
-2014-03-11 10:00:00,11877.0
-2014-03-11 11:00:00,11865.0
-2014-03-11 12:00:00,11881.0
-2014-03-11 13:00:00,11774.0
-2014-03-11 14:00:00,11688.0
-2014-03-11 15:00:00,11753.0
-2014-03-11 16:00:00,11705.0
-2014-03-11 17:00:00,11700.0
-2014-03-11 18:00:00,11761.0
-2014-03-11 19:00:00,11874.0
-2014-03-11 20:00:00,12070.0
-2014-03-11 21:00:00,12577.0
-2014-03-11 22:00:00,12426.0
-2014-03-11 23:00:00,12000.0
-2014-03-12 00:00:00,11305.0
-2014-03-10 01:00:00,10076.0
-2014-03-10 02:00:00,9655.0
-2014-03-10 03:00:00,9416.0
-2014-03-10 04:00:00,9261.0
-2014-03-10 05:00:00,9233.0
-2014-03-10 06:00:00,9496.0
-2014-03-10 07:00:00,10223.0
-2014-03-10 08:00:00,11397.0
-2014-03-10 09:00:00,11996.0
-2014-03-10 10:00:00,11928.0
-2014-03-10 11:00:00,11831.0
-2014-03-10 12:00:00,11798.0
-2014-03-10 13:00:00,11669.0
-2014-03-10 14:00:00,11515.0
-2014-03-10 15:00:00,11467.0
-2014-03-10 16:00:00,11284.0
-2014-03-10 17:00:00,11111.0
-2014-03-10 18:00:00,11034.0
-2014-03-10 19:00:00,11029.0
-2014-03-10 20:00:00,11236.0
-2014-03-10 21:00:00,11978.0
-2014-03-10 22:00:00,11850.0
-2014-03-10 23:00:00,11418.0
-2014-03-11 00:00:00,10709.0
-2014-03-09 01:00:00,10586.0
-2014-03-09 02:00:00,10268.0
-2014-03-09 04:00:00,10030.0
-2014-03-09 05:00:00,9854.0
-2014-03-09 06:00:00,9912.0
-2014-03-09 07:00:00,9976.0
-2014-03-09 08:00:00,10219.0
-2014-03-09 09:00:00,10237.0
-2014-03-09 10:00:00,10290.0
-2014-03-09 11:00:00,10327.0
-2014-03-09 12:00:00,10371.0
-2014-03-09 13:00:00,10332.0
-2014-03-09 14:00:00,10275.0
-2014-03-09 15:00:00,10171.0
-2014-03-09 16:00:00,10084.0
-2014-03-09 17:00:00,10052.0
-2014-03-09 18:00:00,10203.0
-2014-03-09 19:00:00,10422.0
-2014-03-09 20:00:00,10854.0
-2014-03-09 21:00:00,11575.0
-2014-03-09 22:00:00,11494.0
-2014-03-09 23:00:00,11220.0
-2014-03-10 00:00:00,10618.0
-2014-03-08 01:00:00,10359.0
-2014-03-08 02:00:00,9901.0
-2014-03-08 03:00:00,9701.0
-2014-03-08 04:00:00,9574.0
-2014-03-08 05:00:00,9555.0
-2014-03-08 06:00:00,9688.0
-2014-03-08 07:00:00,10028.0
-2014-03-08 08:00:00,10401.0
-2014-03-08 09:00:00,10775.0
-2014-03-08 10:00:00,11228.0
-2014-03-08 11:00:00,11516.0
-2014-03-08 12:00:00,11555.0
-2014-03-08 13:00:00,11443.0
-2014-03-08 14:00:00,11238.0
-2014-03-08 15:00:00,11068.0
-2014-03-08 16:00:00,10883.0
-2014-03-08 17:00:00,10842.0
-2014-03-08 18:00:00,10916.0
-2014-03-08 19:00:00,11240.0
-2014-03-08 20:00:00,11940.0
-2014-03-08 21:00:00,11980.0
-2014-03-08 22:00:00,11807.0
-2014-03-08 23:00:00,11590.0
-2014-03-09 00:00:00,11090.0
-2014-03-07 01:00:00,11360.0
-2014-03-07 02:00:00,11001.0
-2014-03-07 03:00:00,10755.0
-2014-03-07 04:00:00,10639.0
-2014-03-07 05:00:00,10594.0
-2014-03-07 06:00:00,10912.0
-2014-03-07 07:00:00,11572.0
-2014-03-07 08:00:00,12391.0
-2014-03-07 09:00:00,12671.0
-2014-03-07 10:00:00,12617.0
-2014-03-07 11:00:00,12469.0
-2014-03-07 12:00:00,12348.0
-2014-03-07 13:00:00,12184.0
-2014-03-07 14:00:00,12003.0
-2014-03-07 15:00:00,11895.0
-2014-03-07 16:00:00,11749.0
-2014-03-07 17:00:00,11615.0
-2014-03-07 18:00:00,11724.0
-2014-03-07 19:00:00,12022.0
-2014-03-07 20:00:00,12558.0
-2014-03-07 21:00:00,12377.0
-2014-03-07 22:00:00,12095.0
-2014-03-07 23:00:00,11687.0
-2014-03-08 00:00:00,10998.0
-2014-03-06 01:00:00,11665.0
-2014-03-06 02:00:00,11214.0
-2014-03-06 03:00:00,10989.0
-2014-03-06 04:00:00,10873.0
-2014-03-06 05:00:00,10903.0
-2014-03-06 06:00:00,11201.0
-2014-03-06 07:00:00,11911.0
-2014-03-06 08:00:00,12799.0
-2014-03-06 09:00:00,13112.0
-2014-03-06 10:00:00,13120.0
-2014-03-06 11:00:00,13026.0
-2014-03-06 12:00:00,12958.0
-2014-03-06 13:00:00,12808.0
-2014-03-06 14:00:00,12620.0
-2014-03-06 15:00:00,12536.0
-2014-03-06 16:00:00,12401.0
-2014-03-06 17:00:00,12305.0
-2014-03-06 18:00:00,12396.0
-2014-03-06 19:00:00,12732.0
-2014-03-06 20:00:00,13527.0
-2014-03-06 21:00:00,13550.0
-2014-03-06 22:00:00,13340.0
-2014-03-06 23:00:00,12885.0
-2014-03-07 00:00:00,12053.0
-2014-03-05 01:00:00,11523.0
-2014-03-05 02:00:00,11076.0
-2014-03-05 03:00:00,10839.0
-2014-03-05 04:00:00,10742.0
-2014-03-05 05:00:00,10793.0
-2014-03-05 06:00:00,11067.0
-2014-03-05 07:00:00,11798.0
-2014-03-05 08:00:00,12739.0
-2014-03-05 09:00:00,13232.0
-2014-03-05 10:00:00,13565.0
-2014-03-05 11:00:00,13441.0
-2014-03-05 12:00:00,13515.0
-2014-03-05 13:00:00,13419.0
-2014-03-05 14:00:00,13277.0
-2014-03-05 15:00:00,13199.0
-2014-03-05 16:00:00,13066.0
-2014-03-05 17:00:00,12995.0
-2014-03-05 18:00:00,13125.0
-2014-03-05 19:00:00,13557.0
-2014-03-05 20:00:00,14131.0
-2014-03-05 21:00:00,13991.0
-2014-03-05 22:00:00,13712.0
-2014-03-05 23:00:00,13176.0
-2014-03-06 00:00:00,12379.0
-2014-03-04 01:00:00,12006.0
-2014-03-04 02:00:00,11548.0
-2014-03-04 03:00:00,11308.0
-2014-03-04 04:00:00,11189.0
-2014-03-04 05:00:00,11183.0
-2014-03-04 06:00:00,11406.0
-2014-03-04 07:00:00,12090.0
-2014-03-04 08:00:00,13026.0
-2014-03-04 09:00:00,13457.0
-2014-03-04 10:00:00,13658.0
-2014-03-04 11:00:00,13625.0
-2014-03-04 12:00:00,13538.0
-2014-03-04 13:00:00,13293.0
-2014-03-04 14:00:00,13104.0
-2014-03-04 15:00:00,13010.0
-2014-03-04 16:00:00,12792.0
-2014-03-04 17:00:00,12683.0
-2014-03-04 18:00:00,12800.0
-2014-03-04 19:00:00,13203.0
-2014-03-04 20:00:00,13879.0
-2014-03-04 21:00:00,13825.0
-2014-03-04 22:00:00,13586.0
-2014-03-04 23:00:00,13023.0
-2014-03-05 00:00:00,12233.0
-2014-03-03 01:00:00,11911.0
-2014-03-03 02:00:00,11603.0
-2014-03-03 03:00:00,11453.0
-2014-03-03 04:00:00,11382.0
-2014-03-03 05:00:00,11464.0
-2014-03-03 06:00:00,11703.0
-2014-03-03 07:00:00,12494.0
-2014-03-03 08:00:00,13350.0
-2014-03-03 09:00:00,13847.0
-2014-03-03 10:00:00,13928.0
-2014-03-03 11:00:00,13945.0
-2014-03-03 12:00:00,13848.0
-2014-03-03 13:00:00,13729.0
-2014-03-03 14:00:00,13541.0
-2014-03-03 15:00:00,13380.0
-2014-03-03 16:00:00,13182.0
-2014-03-03 17:00:00,13026.0
-2014-03-03 18:00:00,13192.0
-2014-03-03 19:00:00,13717.0
-2014-03-03 20:00:00,14466.0
-2014-03-03 21:00:00,14387.0
-2014-03-03 22:00:00,14110.0
-2014-03-03 23:00:00,13557.0
-2014-03-04 00:00:00,12753.0
-2014-03-02 01:00:00,11503.0
-2014-03-02 02:00:00,11124.0
-2014-03-02 03:00:00,10934.0
-2014-03-02 04:00:00,10724.0
-2014-03-02 05:00:00,10681.0
-2014-03-02 06:00:00,10749.0
-2014-03-02 07:00:00,10920.0
-2014-03-02 08:00:00,11052.0
-2014-03-02 09:00:00,11172.0
-2014-03-02 10:00:00,11443.0
-2014-03-02 11:00:00,11626.0
-2014-03-02 12:00:00,11619.0
-2014-03-02 13:00:00,11525.0
-2014-03-02 14:00:00,11451.0
-2014-03-02 15:00:00,11449.0
-2014-03-02 16:00:00,11484.0
-2014-03-02 17:00:00,11636.0
-2014-03-02 18:00:00,11915.0
-2014-03-02 19:00:00,12530.0
-2014-03-02 20:00:00,13377.0
-2014-03-02 21:00:00,13386.0
-2014-03-02 22:00:00,13224.0
-2014-03-02 23:00:00,12883.0
-2014-03-03 00:00:00,12429.0
-2014-03-01 01:00:00,11406.0
-2014-03-01 02:00:00,10816.0
-2014-03-01 03:00:00,10484.0
-2014-03-01 04:00:00,10291.0
-2014-03-01 05:00:00,10202.0
-2014-03-01 06:00:00,10294.0
-2014-03-01 07:00:00,10577.0
-2014-03-01 08:00:00,11035.0
-2014-03-01 09:00:00,11371.0
-2014-03-01 10:00:00,11799.0
-2014-03-01 11:00:00,12003.0
-2014-03-01 12:00:00,12092.0
-2014-03-01 13:00:00,11990.0
-2014-03-01 14:00:00,11807.0
-2014-03-01 15:00:00,11671.0
-2014-03-01 16:00:00,11664.0
-2014-03-01 17:00:00,11757.0
-2014-03-01 18:00:00,12057.0
-2014-03-01 19:00:00,12584.0
-2014-03-01 20:00:00,13051.0
-2014-03-01 21:00:00,13005.0
-2014-03-01 22:00:00,12833.0
-2014-03-01 23:00:00,12521.0
-2014-03-02 00:00:00,12028.0
-2014-02-28 01:00:00,12586.0
-2014-02-28 02:00:00,12201.0
-2014-02-28 03:00:00,11983.0
-2014-02-28 04:00:00,11865.0
-2014-02-28 05:00:00,11885.0
-2014-02-28 06:00:00,12084.0
-2014-02-28 07:00:00,12705.0
-2014-02-28 08:00:00,13500.0
-2014-02-28 09:00:00,13918.0
-2014-02-28 10:00:00,14178.0
-2014-02-28 11:00:00,14147.0
-2014-02-28 12:00:00,14071.0
-2014-02-28 13:00:00,13783.0
-2014-02-28 14:00:00,13483.0
-2014-02-28 15:00:00,13366.0
-2014-02-28 16:00:00,13170.0
-2014-02-28 17:00:00,13017.0
-2014-02-28 18:00:00,12994.0
-2014-02-28 19:00:00,13348.0
-2014-02-28 20:00:00,13839.0
-2014-02-28 21:00:00,13632.0
-2014-02-28 22:00:00,13285.0
-2014-02-28 23:00:00,12884.0
-2014-03-01 00:00:00,12100.0
-2014-02-27 01:00:00,12421.0
-2014-02-27 02:00:00,11964.0
-2014-02-27 03:00:00,11739.0
-2014-02-27 04:00:00,11683.0
-2014-02-27 05:00:00,11725.0
-2014-02-27 06:00:00,12043.0
-2014-02-27 07:00:00,12733.0
-2014-02-27 08:00:00,13648.0
-2014-02-27 09:00:00,14017.0
-2014-02-27 10:00:00,14081.0
-2014-02-27 11:00:00,14098.0
-2014-02-27 12:00:00,14081.0
-2014-02-27 13:00:00,13952.0
-2014-02-27 14:00:00,13797.0
-2014-02-27 15:00:00,13668.0
-2014-02-27 16:00:00,13509.0
-2014-02-27 17:00:00,13367.0
-2014-02-27 18:00:00,13470.0
-2014-02-27 19:00:00,14022.0
-2014-02-27 20:00:00,14745.0
-2014-02-27 21:00:00,14735.0
-2014-02-27 22:00:00,14548.0
-2014-02-27 23:00:00,14087.0
-2014-02-28 00:00:00,13298.0
-2014-02-26 01:00:00,12446.0
-2014-02-26 02:00:00,12073.0
-2014-02-26 03:00:00,11875.0
-2014-02-26 04:00:00,11759.0
-2014-02-26 05:00:00,11783.0
-2014-02-26 06:00:00,12051.0
-2014-02-26 07:00:00,12735.0
-2014-02-26 08:00:00,13655.0
-2014-02-26 09:00:00,13985.0
-2014-02-26 10:00:00,14050.0
-2014-02-26 11:00:00,14057.0
-2014-02-26 12:00:00,14094.0
-2014-02-26 13:00:00,13982.0
-2014-02-26 14:00:00,13909.0
-2014-02-26 15:00:00,13874.0
-2014-02-26 16:00:00,13794.0
-2014-02-26 17:00:00,13745.0
-2014-02-26 18:00:00,13884.0
-2014-02-26 19:00:00,14451.0
-2014-02-26 20:00:00,15065.0
-2014-02-26 21:00:00,14928.0
-2014-02-26 22:00:00,14631.0
-2014-02-26 23:00:00,14071.0
-2014-02-27 00:00:00,13208.0
-2014-02-25 01:00:00,11545.0
-2014-02-25 02:00:00,11121.0
-2014-02-25 03:00:00,10867.0
-2014-02-25 04:00:00,10758.0
-2014-02-25 05:00:00,10757.0
-2014-02-25 06:00:00,11048.0
-2014-02-25 07:00:00,11825.0
-2014-02-25 08:00:00,12805.0
-2014-02-25 09:00:00,13161.0
-2014-02-25 10:00:00,13225.0
-2014-02-25 11:00:00,13196.0
-2014-02-25 12:00:00,13163.0
-2014-02-25 13:00:00,13084.0
-2014-02-25 14:00:00,12995.0
-2014-02-25 15:00:00,13036.0
-2014-02-25 16:00:00,13030.0
-2014-02-25 17:00:00,12999.0
-2014-02-25 18:00:00,13141.0
-2014-02-25 19:00:00,13736.0
-2014-02-25 20:00:00,14477.0
-2014-02-25 21:00:00,14501.0
-2014-02-25 22:00:00,14294.0
-2014-02-25 23:00:00,13897.0
-2014-02-26 00:00:00,13132.0
-2014-02-24 01:00:00,11045.0
-2014-02-24 02:00:00,10758.0
-2014-02-24 03:00:00,10679.0
-2014-02-24 04:00:00,10653.0
-2014-02-24 05:00:00,10701.0
-2014-02-24 06:00:00,11029.0
-2014-02-24 07:00:00,11765.0
-2014-02-24 08:00:00,12815.0
-2014-02-24 09:00:00,13187.0
-2014-02-24 10:00:00,13254.0
-2014-02-24 11:00:00,13202.0
-2014-02-24 12:00:00,13163.0
-2014-02-24 13:00:00,13085.0
-2014-02-24 14:00:00,12957.0
-2014-02-24 15:00:00,12900.0
-2014-02-24 16:00:00,12742.0
-2014-02-24 17:00:00,12708.0
-2014-02-24 18:00:00,12921.0
-2014-02-24 19:00:00,13548.0
-2014-02-24 20:00:00,14017.0
-2014-02-24 21:00:00,13898.0
-2014-02-24 22:00:00,13599.0
-2014-02-24 23:00:00,13106.0
-2014-02-25 00:00:00,12273.0
-2014-02-23 01:00:00,10730.0
-2014-02-23 02:00:00,10347.0
-2014-02-23 03:00:00,10168.0
-2014-02-23 04:00:00,10026.0
-2014-02-23 05:00:00,9992.0
-2014-02-23 06:00:00,10032.0
-2014-02-23 07:00:00,10231.0
-2014-02-23 08:00:00,10429.0
-2014-02-23 09:00:00,10531.0
-2014-02-23 10:00:00,10784.0
-2014-02-23 11:00:00,10856.0
-2014-02-23 12:00:00,10792.0
-2014-02-23 13:00:00,10686.0
-2014-02-23 14:00:00,10645.0
-2014-02-23 15:00:00,10587.0
-2014-02-23 16:00:00,10481.0
-2014-02-23 17:00:00,10527.0
-2014-02-23 18:00:00,10840.0
-2014-02-23 19:00:00,11618.0
-2014-02-23 20:00:00,12435.0
-2014-02-23 21:00:00,12545.0
-2014-02-23 22:00:00,12353.0
-2014-02-23 23:00:00,12071.0
-2014-02-24 00:00:00,11574.0
-2014-02-22 01:00:00,11124.0
-2014-02-22 02:00:00,10628.0
-2014-02-22 03:00:00,10338.0
-2014-02-22 04:00:00,10207.0
-2014-02-22 05:00:00,10157.0
-2014-02-22 06:00:00,10283.0
-2014-02-22 07:00:00,10615.0
-2014-02-22 08:00:00,10984.0
-2014-02-22 09:00:00,11080.0
-2014-02-22 10:00:00,11467.0
-2014-02-22 11:00:00,11628.0
-2014-02-22 12:00:00,11708.0
-2014-02-22 13:00:00,11535.0
-2014-02-22 14:00:00,11156.0
-2014-02-22 15:00:00,10907.0
-2014-02-22 16:00:00,10788.0
-2014-02-22 17:00:00,10755.0
-2014-02-22 18:00:00,10976.0
-2014-02-22 19:00:00,11518.0
-2014-02-22 20:00:00,12084.0
-2014-02-22 21:00:00,11994.0
-2014-02-22 22:00:00,11882.0
-2014-02-22 23:00:00,11580.0
-2014-02-23 00:00:00,11121.0
-2014-02-21 01:00:00,10832.0
-2014-02-21 02:00:00,10367.0
-2014-02-21 03:00:00,10072.0
-2014-02-21 04:00:00,9946.0
-2014-02-21 05:00:00,10010.0
-2014-02-21 06:00:00,10277.0
-2014-02-21 07:00:00,11069.0
-2014-02-21 08:00:00,12265.0
-2014-02-21 09:00:00,12708.0
-2014-02-21 10:00:00,12993.0
-2014-02-21 11:00:00,13039.0
-2014-02-21 12:00:00,13009.0
-2014-02-21 13:00:00,12938.0
-2014-02-21 14:00:00,12811.0
-2014-02-21 15:00:00,12683.0
-2014-02-21 16:00:00,12476.0
-2014-02-21 17:00:00,12313.0
-2014-02-21 18:00:00,12356.0
-2014-02-21 19:00:00,12869.0
-2014-02-21 20:00:00,13313.0
-2014-02-21 21:00:00,13104.0
-2014-02-21 22:00:00,12769.0
-2014-02-21 23:00:00,12396.0
-2014-02-22 00:00:00,11738.0
-2014-02-20 01:00:00,10493.0
-2014-02-20 02:00:00,10018.0
-2014-02-20 03:00:00,9757.0
-2014-02-20 04:00:00,9624.0
-2014-02-20 05:00:00,9654.0
-2014-02-20 06:00:00,9998.0
-2014-02-20 07:00:00,10802.0
-2014-02-20 08:00:00,11896.0
-2014-02-20 09:00:00,12425.0
-2014-02-20 10:00:00,12559.0
-2014-02-20 11:00:00,12619.0
-2014-02-20 12:00:00,12725.0
-2014-02-20 13:00:00,12728.0
-2014-02-20 14:00:00,12743.0
-2014-02-20 15:00:00,12742.0
-2014-02-20 16:00:00,12722.0
-2014-02-20 17:00:00,12754.0
-2014-02-20 18:00:00,12802.0
-2014-02-20 19:00:00,13122.0
-2014-02-20 20:00:00,13079.0
-2014-02-20 21:00:00,12862.0
-2014-02-20 22:00:00,12717.0
-2014-02-20 23:00:00,12269.0
-2014-02-21 00:00:00,11523.0
-2014-02-19 01:00:00,10615.0
-2014-02-19 02:00:00,10191.0
-2014-02-19 03:00:00,9902.0
-2014-02-19 04:00:00,9748.0
-2014-02-19 05:00:00,9760.0
-2014-02-19 06:00:00,10019.0
-2014-02-19 07:00:00,10864.0
-2014-02-19 08:00:00,11897.0
-2014-02-19 09:00:00,12200.0
-2014-02-19 10:00:00,12172.0
-2014-02-19 11:00:00,12104.0
-2014-02-19 12:00:00,12056.0
-2014-02-19 13:00:00,11975.0
-2014-02-19 14:00:00,11861.0
-2014-02-19 15:00:00,11786.0
-2014-02-19 16:00:00,11637.0
-2014-02-19 17:00:00,11562.0
-2014-02-19 18:00:00,11705.0
-2014-02-19 19:00:00,12357.0
-2014-02-19 20:00:00,12853.0
-2014-02-19 21:00:00,12728.0
-2014-02-19 22:00:00,12552.0
-2014-02-19 23:00:00,12030.0
-2014-02-20 00:00:00,11233.0
-2014-02-18 01:00:00,11271.0
-2014-02-18 02:00:00,10834.0
-2014-02-18 03:00:00,10529.0
-2014-02-18 04:00:00,10378.0
-2014-02-18 05:00:00,10352.0
-2014-02-18 06:00:00,10603.0
-2014-02-18 07:00:00,11321.0
-2014-02-18 08:00:00,12380.0
-2014-02-18 09:00:00,12731.0
-2014-02-18 10:00:00,12635.0
-2014-02-18 11:00:00,12540.0
-2014-02-18 12:00:00,12458.0
-2014-02-18 13:00:00,12321.0
-2014-02-18 14:00:00,12193.0
-2014-02-18 15:00:00,12112.0
-2014-02-18 16:00:00,12001.0
-2014-02-18 17:00:00,12072.0
-2014-02-18 18:00:00,12191.0
-2014-02-18 19:00:00,12753.0
-2014-02-18 20:00:00,13179.0
-2014-02-18 21:00:00,12967.0
-2014-02-18 22:00:00,12686.0
-2014-02-18 23:00:00,12100.0
-2014-02-19 00:00:00,11378.0
-2014-02-17 01:00:00,10825.0
-2014-02-17 02:00:00,10490.0
-2014-02-17 03:00:00,10315.0
-2014-02-17 04:00:00,10271.0
-2014-02-17 05:00:00,10287.0
-2014-02-17 06:00:00,10589.0
-2014-02-17 07:00:00,11236.0
-2014-02-17 08:00:00,12228.0
-2014-02-17 09:00:00,12720.0
-2014-02-17 10:00:00,13137.0
-2014-02-17 11:00:00,13421.0
-2014-02-17 12:00:00,13550.0
-2014-02-17 13:00:00,13629.0
-2014-02-17 14:00:00,13610.0
-2014-02-17 15:00:00,13620.0
-2014-02-17 16:00:00,13571.0
-2014-02-17 17:00:00,13241.0
-2014-02-17 18:00:00,13236.0
-2014-02-17 19:00:00,13776.0
-2014-02-17 20:00:00,13984.0
-2014-02-17 21:00:00,13815.0
-2014-02-17 22:00:00,13452.0
-2014-02-17 23:00:00,12859.0
-2014-02-18 00:00:00,12010.0
-2014-02-16 01:00:00,11314.0
-2014-02-16 02:00:00,10836.0
-2014-02-16 03:00:00,10544.0
-2014-02-16 04:00:00,10343.0
-2014-02-16 05:00:00,10303.0
-2014-02-16 06:00:00,10235.0
-2014-02-16 07:00:00,10353.0
-2014-02-16 08:00:00,10650.0
-2014-02-16 09:00:00,10673.0
-2014-02-16 10:00:00,10950.0
-2014-02-16 11:00:00,11031.0
-2014-02-16 12:00:00,10978.0
-2014-02-16 13:00:00,10849.0
-2014-02-16 14:00:00,10791.0
-2014-02-16 15:00:00,10699.0
-2014-02-16 16:00:00,10713.0
-2014-02-16 17:00:00,10836.0
-2014-02-16 18:00:00,11280.0
-2014-02-16 19:00:00,12067.0
-2014-02-16 20:00:00,12514.0
-2014-02-16 21:00:00,12444.0
-2014-02-16 22:00:00,12229.0
-2014-02-16 23:00:00,11889.0
-2014-02-17 00:00:00,11380.0
-2014-02-15 01:00:00,11840.0
-2014-02-15 02:00:00,11342.0
-2014-02-15 03:00:00,11155.0
-2014-02-15 04:00:00,11024.0
-2014-02-15 05:00:00,10937.0
-2014-02-15 06:00:00,11030.0
-2014-02-15 07:00:00,11318.0
-2014-02-15 08:00:00,11800.0
-2014-02-15 09:00:00,11918.0
-2014-02-15 10:00:00,12037.0
-2014-02-15 11:00:00,12064.0
-2014-02-15 12:00:00,12004.0
-2014-02-15 13:00:00,11815.0
-2014-02-15 14:00:00,11636.0
-2014-02-15 15:00:00,11520.0
-2014-02-15 16:00:00,11529.0
-2014-02-15 17:00:00,11653.0
-2014-02-15 18:00:00,11885.0
-2014-02-15 19:00:00,12571.0
-2014-02-15 20:00:00,12854.0
-2014-02-15 21:00:00,12797.0
-2014-02-15 22:00:00,12651.0
-2014-02-15 23:00:00,12373.0
-2014-02-16 00:00:00,11830.0
-2014-02-14 01:00:00,11593.0
-2014-02-14 02:00:00,11107.0
-2014-02-14 03:00:00,10868.0
-2014-02-14 04:00:00,10793.0
-2014-02-14 05:00:00,10772.0
-2014-02-14 06:00:00,11102.0
-2014-02-14 07:00:00,11791.0
-2014-02-14 08:00:00,12812.0
-2014-02-14 09:00:00,13204.0
-2014-02-14 10:00:00,13436.0
-2014-02-14 11:00:00,13532.0
-2014-02-14 12:00:00,13493.0
-2014-02-14 13:00:00,13361.0
-2014-02-14 14:00:00,13156.0
-2014-02-14 15:00:00,13113.0
-2014-02-14 16:00:00,12977.0
-2014-02-14 17:00:00,12847.0
-2014-02-14 18:00:00,12901.0
-2014-02-14 19:00:00,13484.0
-2014-02-14 20:00:00,13843.0
-2014-02-14 21:00:00,13666.0
-2014-02-14 22:00:00,13441.0
-2014-02-14 23:00:00,12998.0
-2014-02-15 00:00:00,12464.0
-2014-02-13 01:00:00,11776.0
-2014-02-13 02:00:00,11309.0
-2014-02-13 03:00:00,11125.0
-2014-02-13 04:00:00,10957.0
-2014-02-13 05:00:00,10964.0
-2014-02-13 06:00:00,11194.0
-2014-02-13 07:00:00,11883.0
-2014-02-13 08:00:00,12939.0
-2014-02-13 09:00:00,13272.0
-2014-02-13 10:00:00,13360.0
-2014-02-13 11:00:00,13361.0
-2014-02-13 12:00:00,13426.0
-2014-02-13 13:00:00,13472.0
-2014-02-13 14:00:00,13446.0
-2014-02-13 15:00:00,13259.0
-2014-02-13 16:00:00,12868.0
-2014-02-13 17:00:00,12758.0
-2014-02-13 18:00:00,13019.0
-2014-02-13 19:00:00,13688.0
-2014-02-13 20:00:00,13845.0
-2014-02-13 21:00:00,13660.0
-2014-02-13 22:00:00,13405.0
-2014-02-13 23:00:00,13039.0
-2014-02-14 00:00:00,12346.0
-2014-02-12 01:00:00,12605.0
-2014-02-12 02:00:00,12194.0
-2014-02-12 03:00:00,11942.0
-2014-02-12 04:00:00,11838.0
-2014-02-12 05:00:00,11881.0
-2014-02-12 06:00:00,12087.0
-2014-02-12 07:00:00,12687.0
-2014-02-12 08:00:00,13637.0
-2014-02-12 09:00:00,13969.0
-2014-02-12 10:00:00,14149.0
-2014-02-12 11:00:00,14167.0
-2014-02-12 12:00:00,14067.0
-2014-02-12 13:00:00,13870.0
-2014-02-12 14:00:00,13690.0
-2014-02-12 15:00:00,13497.0
-2014-02-12 16:00:00,13317.0
-2014-02-12 17:00:00,13147.0
-2014-02-12 18:00:00,13251.0
-2014-02-12 19:00:00,14025.0
-2014-02-12 20:00:00,14254.0
-2014-02-12 21:00:00,14090.0
-2014-02-12 22:00:00,13834.0
-2014-02-12 23:00:00,13328.0
-2014-02-13 00:00:00,12511.0
-2014-02-11 01:00:00,12557.0
-2014-02-11 02:00:00,12194.0
-2014-02-11 03:00:00,11988.0
-2014-02-11 04:00:00,11868.0
-2014-02-11 05:00:00,11889.0
-2014-02-11 06:00:00,12085.0
-2014-02-11 07:00:00,12783.0
-2014-02-11 08:00:00,13829.0
-2014-02-11 09:00:00,14231.0
-2014-02-11 10:00:00,14208.0
-2014-02-11 11:00:00,14126.0
-2014-02-11 12:00:00,14014.0
-2014-02-11 13:00:00,13901.0
-2014-02-11 14:00:00,13743.0
-2014-02-11 15:00:00,13646.0
-2014-02-11 16:00:00,13459.0
-2014-02-11 17:00:00,13387.0
-2014-02-11 18:00:00,13570.0
-2014-02-11 19:00:00,14366.0
-2014-02-11 20:00:00,14804.0
-2014-02-11 21:00:00,14717.0
-2014-02-11 22:00:00,14543.0
-2014-02-11 23:00:00,14063.0
-2014-02-12 00:00:00,13341.0
-2014-02-10 01:00:00,11752.0
-2014-02-10 02:00:00,11459.0
-2014-02-10 03:00:00,11323.0
-2014-02-10 04:00:00,11280.0
-2014-02-10 05:00:00,11393.0
-2014-02-10 06:00:00,11695.0
-2014-02-10 07:00:00,12502.0
-2014-02-10 08:00:00,13548.0
-2014-02-10 09:00:00,14019.0
-2014-02-10 10:00:00,14078.0
-2014-02-10 11:00:00,14030.0
-2014-02-10 12:00:00,13968.0
-2014-02-10 13:00:00,13840.0
-2014-02-10 14:00:00,13729.0
-2014-02-10 15:00:00,13619.0
-2014-02-10 16:00:00,13493.0
-2014-02-10 17:00:00,13418.0
-2014-02-10 18:00:00,13649.0
-2014-02-10 19:00:00,14479.0
-2014-02-10 20:00:00,14931.0
-2014-02-10 21:00:00,14855.0
-2014-02-10 22:00:00,14618.0
-2014-02-10 23:00:00,14125.0
-2014-02-11 00:00:00,13270.0
-2014-02-09 01:00:00,11551.0
-2014-02-09 02:00:00,11117.0
-2014-02-09 03:00:00,10864.0
-2014-02-09 04:00:00,10689.0
-2014-02-09 05:00:00,10659.0
-2014-02-09 06:00:00,10658.0
-2014-02-09 07:00:00,10846.0
-2014-02-09 08:00:00,11137.0
-2014-02-09 09:00:00,11192.0
-2014-02-09 10:00:00,11321.0
-2014-02-09 11:00:00,11421.0
-2014-02-09 12:00:00,11421.0
-2014-02-09 13:00:00,11408.0
-2014-02-09 14:00:00,11323.0
-2014-02-09 15:00:00,11301.0
-2014-02-09 16:00:00,11330.0
-2014-02-09 17:00:00,11506.0
-2014-02-09 18:00:00,11798.0
-2014-02-09 19:00:00,12822.0
-2014-02-09 20:00:00,13271.0
-2014-02-09 21:00:00,13249.0
-2014-02-09 22:00:00,13062.0
-2014-02-09 23:00:00,12811.0
-2014-02-10 00:00:00,12227.0
-2014-02-08 01:00:00,12448.0
-2014-02-08 02:00:00,12023.0
-2014-02-08 03:00:00,11706.0
-2014-02-08 04:00:00,11547.0
-2014-02-08 05:00:00,11394.0
-2014-02-08 06:00:00,11454.0
-2014-02-08 07:00:00,11654.0
-2014-02-08 08:00:00,12090.0
-2014-02-08 09:00:00,12237.0
-2014-02-08 10:00:00,12588.0
-2014-02-08 11:00:00,12737.0
-2014-02-08 12:00:00,12805.0
-2014-02-08 13:00:00,12720.0
-2014-02-08 14:00:00,12737.0
-2014-02-08 15:00:00,12595.0
-2014-02-08 16:00:00,12437.0
-2014-02-08 17:00:00,12374.0
-2014-02-08 18:00:00,12546.0
-2014-02-08 19:00:00,13202.0
-2014-02-08 20:00:00,13470.0
-2014-02-08 21:00:00,13283.0
-2014-02-08 22:00:00,13071.0
-2014-02-08 23:00:00,12711.0
-2014-02-09 00:00:00,12119.0
-2014-02-07 01:00:00,12946.0
-2014-02-07 02:00:00,12507.0
-2014-02-07 03:00:00,12258.0
-2014-02-07 04:00:00,12114.0
-2014-02-07 05:00:00,12104.0
-2014-02-07 06:00:00,12355.0
-2014-02-07 07:00:00,12960.0
-2014-02-07 08:00:00,14006.0
-2014-02-07 09:00:00,14320.0
-2014-02-07 10:00:00,14318.0
-2014-02-07 11:00:00,14229.0
-2014-02-07 12:00:00,14152.0
-2014-02-07 13:00:00,14047.0
-2014-02-07 14:00:00,13921.0
-2014-02-07 15:00:00,13893.0
-2014-02-07 16:00:00,13676.0
-2014-02-07 17:00:00,13580.0
-2014-02-07 18:00:00,13746.0
-2014-02-07 19:00:00,14478.0
-2014-02-07 20:00:00,14800.0
-2014-02-07 21:00:00,14646.0
-2014-02-07 22:00:00,14318.0
-2014-02-07 23:00:00,13947.0
-2014-02-08 00:00:00,13221.0
-2014-02-06 01:00:00,12121.0
-2014-02-06 02:00:00,11675.0
-2014-02-06 03:00:00,11477.0
-2014-02-06 04:00:00,11438.0
-2014-02-06 05:00:00,11473.0
-2014-02-06 06:00:00,11738.0
-2014-02-06 07:00:00,12460.0
-2014-02-06 08:00:00,13592.0
-2014-02-06 09:00:00,13993.0
-2014-02-06 10:00:00,14048.0
-2014-02-06 11:00:00,13999.0
-2014-02-06 12:00:00,14043.0
-2014-02-06 13:00:00,13989.0
-2014-02-06 14:00:00,13926.0
-2014-02-06 15:00:00,13859.0
-2014-02-06 16:00:00,13761.0
-2014-02-06 17:00:00,13754.0
-2014-02-06 18:00:00,14010.0
-2014-02-06 19:00:00,14856.0
-2014-02-06 20:00:00,15256.0
-2014-02-06 21:00:00,15155.0
-2014-02-06 22:00:00,14952.0
-2014-02-06 23:00:00,14458.0
-2014-02-07 00:00:00,13666.0
-2014-02-05 01:00:00,11776.0
-2014-02-05 02:00:00,11305.0
-2014-02-05 03:00:00,11031.0
-2014-02-05 04:00:00,10906.0
-2014-02-05 05:00:00,10930.0
-2014-02-05 06:00:00,11140.0
-2014-02-05 07:00:00,11808.0
-2014-02-05 08:00:00,12837.0
-2014-02-05 09:00:00,13206.0
-2014-02-05 10:00:00,13357.0
-2014-02-05 11:00:00,13448.0
-2014-02-05 12:00:00,13513.0
-2014-02-05 13:00:00,13467.0
-2014-02-05 14:00:00,13409.0
-2014-02-05 15:00:00,13432.0
-2014-02-05 16:00:00,13365.0
-2014-02-05 17:00:00,13348.0
-2014-02-05 18:00:00,13510.0
-2014-02-05 19:00:00,14223.0
-2014-02-05 20:00:00,14458.0
-2014-02-05 21:00:00,14340.0
-2014-02-05 22:00:00,14095.0
-2014-02-05 23:00:00,13588.0
-2014-02-06 00:00:00,12806.0
-2014-02-04 01:00:00,12030.0
-2014-02-04 02:00:00,11603.0
-2014-02-04 03:00:00,11337.0
-2014-02-04 04:00:00,11239.0
-2014-02-04 05:00:00,11224.0
-2014-02-04 06:00:00,11437.0
-2014-02-04 07:00:00,12078.0
-2014-02-04 08:00:00,13185.0
-2014-02-04 09:00:00,13689.0
-2014-02-04 10:00:00,13702.0
-2014-02-04 11:00:00,13715.0
-2014-02-04 12:00:00,13714.0
-2014-02-04 13:00:00,13649.0
-2014-02-04 14:00:00,13623.0
-2014-02-04 15:00:00,13594.0
-2014-02-04 16:00:00,13502.0
-2014-02-04 17:00:00,13480.0
-2014-02-04 18:00:00,13744.0
-2014-02-04 19:00:00,14431.0
-2014-02-04 20:00:00,14448.0
-2014-02-04 21:00:00,14273.0
-2014-02-04 22:00:00,13962.0
-2014-02-04 23:00:00,13374.0
-2014-02-05 00:00:00,12535.0
-2014-02-03 01:00:00,11416.0
-2014-02-03 02:00:00,11158.0
-2014-02-03 03:00:00,11020.0
-2014-02-03 04:00:00,11047.0
-2014-02-03 05:00:00,11102.0
-2014-02-03 06:00:00,11428.0
-2014-02-03 07:00:00,12188.0
-2014-02-03 08:00:00,13349.0
-2014-02-03 09:00:00,13753.0
-2014-02-03 10:00:00,13821.0
-2014-02-03 11:00:00,13654.0
-2014-02-03 12:00:00,13579.0
-2014-02-03 13:00:00,13455.0
-2014-02-03 14:00:00,13305.0
-2014-02-03 15:00:00,13231.0
-2014-02-03 16:00:00,13072.0
-2014-02-03 17:00:00,12938.0
-2014-02-03 18:00:00,13274.0
-2014-02-03 19:00:00,14135.0
-2014-02-03 20:00:00,14406.0
-2014-02-03 21:00:00,14294.0
-2014-02-03 22:00:00,14044.0
-2014-02-03 23:00:00,13574.0
-2014-02-04 00:00:00,12749.0
-2014-02-02 01:00:00,11024.0
-2014-02-02 02:00:00,10589.0
-2014-02-02 03:00:00,10333.0
-2014-02-02 04:00:00,10201.0
-2014-02-02 05:00:00,10087.0
-2014-02-02 06:00:00,10210.0
-2014-02-02 07:00:00,10418.0
-2014-02-02 08:00:00,10726.0
-2014-02-02 09:00:00,10791.0
-2014-02-02 10:00:00,10964.0
-2014-02-02 11:00:00,11085.0
-2014-02-02 12:00:00,11150.0
-2014-02-02 13:00:00,11209.0
-2014-02-02 14:00:00,11185.0
-2014-02-02 15:00:00,11208.0
-2014-02-02 16:00:00,11298.0
-2014-02-02 17:00:00,11378.0
-2014-02-02 18:00:00,11751.0
-2014-02-02 19:00:00,12526.0
-2014-02-02 20:00:00,12731.0
-2014-02-02 21:00:00,12677.0
-2014-02-02 22:00:00,12616.0
-2014-02-02 23:00:00,12386.0
-2014-02-03 00:00:00,11863.0
-2014-02-01 01:00:00,11639.0
-2014-02-01 02:00:00,11078.0
-2014-02-01 03:00:00,10766.0
-2014-02-01 04:00:00,10538.0
-2014-02-01 05:00:00,10467.0
-2014-02-01 06:00:00,10548.0
-2014-02-01 07:00:00,10838.0
-2014-02-01 08:00:00,11234.0
-2014-02-01 09:00:00,11426.0
-2014-02-01 10:00:00,11679.0
-2014-02-01 11:00:00,11860.0
-2014-02-01 12:00:00,12037.0
-2014-02-01 13:00:00,12023.0
-2014-02-01 14:00:00,11922.0
-2014-02-01 15:00:00,11739.0
-2014-02-01 16:00:00,11687.0
-2014-02-01 17:00:00,11710.0
-2014-02-01 18:00:00,11916.0
-2014-02-01 19:00:00,12704.0
-2014-02-01 20:00:00,12806.0
-2014-02-01 21:00:00,12666.0
-2014-02-01 22:00:00,12418.0
-2014-02-01 23:00:00,12058.0
-2014-02-02 00:00:00,11549.0
-2014-01-31 01:00:00,11551.0
-2014-01-31 02:00:00,11139.0
-2014-01-31 03:00:00,10938.0
-2014-01-31 04:00:00,10808.0
-2014-01-31 05:00:00,10798.0
-2014-01-31 06:00:00,11042.0
-2014-01-31 07:00:00,11724.0
-2014-01-31 08:00:00,12795.0
-2014-01-31 09:00:00,13301.0
-2014-01-31 10:00:00,13386.0
-2014-01-31 11:00:00,13430.0
-2014-01-31 12:00:00,13404.0
-2014-01-31 13:00:00,13388.0
-2014-01-31 14:00:00,13253.0
-2014-01-31 15:00:00,13180.0
-2014-01-31 16:00:00,13071.0
-2014-01-31 17:00:00,12997.0
-2014-01-31 18:00:00,13233.0
-2014-01-31 19:00:00,13869.0
-2014-01-31 20:00:00,13864.0
-2014-01-31 21:00:00,13687.0
-2014-01-31 22:00:00,13376.0
-2014-01-31 23:00:00,13013.0
-2014-02-01 00:00:00,12371.0
-2014-01-30 01:00:00,12423.0
-2014-01-30 02:00:00,11920.0
-2014-01-30 03:00:00,11628.0
-2014-01-30 04:00:00,11528.0
-2014-01-30 05:00:00,11499.0
-2014-01-30 06:00:00,11693.0
-2014-01-30 07:00:00,12329.0
-2014-01-30 08:00:00,13364.0
-2014-01-30 09:00:00,13826.0
-2014-01-30 10:00:00,13914.0
-2014-01-30 11:00:00,13981.0
-2014-01-30 12:00:00,14075.0
-2014-01-30 13:00:00,13920.0
-2014-01-30 14:00:00,13820.0
-2014-01-30 15:00:00,13860.0
-2014-01-30 16:00:00,13845.0
-2014-01-30 17:00:00,13809.0
-2014-01-30 18:00:00,14013.0
-2014-01-30 19:00:00,14533.0
-2014-01-30 20:00:00,14403.0
-2014-01-30 21:00:00,14122.0
-2014-01-30 22:00:00,13752.0
-2014-01-30 23:00:00,13190.0
-2014-01-31 00:00:00,12324.0
-2014-01-29 01:00:00,13295.0
-2014-01-29 02:00:00,12815.0
-2014-01-29 03:00:00,12590.0
-2014-01-29 04:00:00,12396.0
-2014-01-29 05:00:00,12415.0
-2014-01-29 06:00:00,12646.0
-2014-01-29 07:00:00,13266.0
-2014-01-29 08:00:00,14296.0
-2014-01-29 09:00:00,14640.0
-2014-01-29 10:00:00,14590.0
-2014-01-29 11:00:00,14448.0
-2014-01-29 12:00:00,14357.0
-2014-01-29 13:00:00,14188.0
-2014-01-29 14:00:00,14009.0
-2014-01-29 15:00:00,13912.0
-2014-01-29 16:00:00,13735.0
-2014-01-29 17:00:00,13621.0
-2014-01-29 18:00:00,13912.0
-2014-01-29 19:00:00,14759.0
-2014-01-29 20:00:00,14925.0
-2014-01-29 21:00:00,14758.0
-2014-01-29 22:00:00,14461.0
-2014-01-29 23:00:00,13959.0
-2014-01-30 00:00:00,13172.0
-2014-01-28 01:00:00,13525.0
-2014-01-28 02:00:00,13154.0
-2014-01-28 03:00:00,12901.0
-2014-01-28 04:00:00,12778.0
-2014-01-28 05:00:00,12723.0
-2014-01-28 06:00:00,12905.0
-2014-01-28 07:00:00,13491.0
-2014-01-28 08:00:00,14313.0
-2014-01-28 09:00:00,14670.0
-2014-01-28 10:00:00,14873.0
-2014-01-28 11:00:00,14932.0
-2014-01-28 12:00:00,15002.0
-2014-01-28 13:00:00,14950.0
-2014-01-28 14:00:00,14847.0
-2014-01-28 15:00:00,14783.0
-2014-01-28 16:00:00,14619.0
-2014-01-28 17:00:00,14531.0
-2014-01-28 18:00:00,14819.0
-2014-01-28 19:00:00,15720.0
-2014-01-28 20:00:00,15862.0
-2014-01-28 21:00:00,15651.0
-2014-01-28 22:00:00,15328.0
-2014-01-28 23:00:00,14749.0
-2014-01-29 00:00:00,13959.0
-2014-01-27 01:00:00,12203.0
-2014-01-27 02:00:00,11921.0
-2014-01-27 03:00:00,11831.0
-2014-01-27 04:00:00,11787.0
-2014-01-27 05:00:00,11880.0
-2014-01-27 06:00:00,12078.0
-2014-01-27 07:00:00,12769.0
-2014-01-27 08:00:00,13710.0
-2014-01-27 09:00:00,14162.0
-2014-01-27 10:00:00,14352.0
-2014-01-27 11:00:00,14578.0
-2014-01-27 12:00:00,14699.0
-2014-01-27 13:00:00,14738.0
-2014-01-27 14:00:00,14728.0
-2014-01-27 15:00:00,14754.0
-2014-01-27 16:00:00,14649.0
-2014-01-27 17:00:00,14634.0
-2014-01-27 18:00:00,14932.0
-2014-01-27 19:00:00,15872.0
-2014-01-27 20:00:00,16064.0
-2014-01-27 21:00:00,15875.0
-2014-01-27 22:00:00,15615.0
-2014-01-27 23:00:00,15068.0
-2014-01-28 00:00:00,14229.0
-2014-01-26 01:00:00,12082.0
-2014-01-26 02:00:00,11619.0
-2014-01-26 03:00:00,11391.0
-2014-01-26 04:00:00,11216.0
-2014-01-26 05:00:00,11196.0
-2014-01-26 06:00:00,11162.0
-2014-01-26 07:00:00,11360.0
-2014-01-26 08:00:00,11560.0
-2014-01-26 09:00:00,11684.0
-2014-01-26 10:00:00,11810.0
-2014-01-26 11:00:00,11966.0
-2014-01-26 12:00:00,11865.0
-2014-01-26 13:00:00,11950.0
-2014-01-26 14:00:00,11825.0
-2014-01-26 15:00:00,11658.0
-2014-01-26 16:00:00,11456.0
-2014-01-26 17:00:00,11567.0
-2014-01-26 18:00:00,12076.0
-2014-01-26 19:00:00,12987.0
-2014-01-26 20:00:00,13078.0
-2014-01-26 21:00:00,13114.0
-2014-01-26 22:00:00,13037.0
-2014-01-26 23:00:00,12837.0
-2014-01-27 00:00:00,12567.0
-2014-01-25 01:00:00,12269.0
-2014-01-25 02:00:00,11649.0
-2014-01-25 03:00:00,11193.0
-2014-01-25 04:00:00,10920.0
-2014-01-25 05:00:00,10788.0
-2014-01-25 06:00:00,10706.0
-2014-01-25 07:00:00,10992.0
-2014-01-25 08:00:00,11517.0
-2014-01-25 09:00:00,11730.0
-2014-01-25 10:00:00,12148.0
-2014-01-25 11:00:00,12381.0
-2014-01-25 12:00:00,12440.0
-2014-01-25 13:00:00,12408.0
-2014-01-25 14:00:00,12347.0
-2014-01-25 15:00:00,12195.0
-2014-01-25 16:00:00,12086.0
-2014-01-25 17:00:00,12175.0
-2014-01-25 18:00:00,12555.0
-2014-01-25 19:00:00,13614.0
-2014-01-25 20:00:00,13790.0
-2014-01-25 21:00:00,13762.0
-2014-01-25 22:00:00,13530.0
-2014-01-25 23:00:00,13249.0
-2014-01-26 00:00:00,12631.0
-2014-01-24 01:00:00,13337.0
-2014-01-24 02:00:00,12921.0
-2014-01-24 03:00:00,12637.0
-2014-01-24 04:00:00,12519.0
-2014-01-24 05:00:00,12528.0
-2014-01-24 06:00:00,12739.0
-2014-01-24 07:00:00,13255.0
-2014-01-24 08:00:00,14306.0
-2014-01-24 09:00:00,14802.0
-2014-01-24 10:00:00,15031.0
-2014-01-24 11:00:00,15082.0
-2014-01-24 12:00:00,14982.0
-2014-01-24 13:00:00,14760.0
-2014-01-24 14:00:00,14649.0
-2014-01-24 15:00:00,14623.0
-2014-01-24 16:00:00,14497.0
-2014-01-24 17:00:00,14410.0
-2014-01-24 18:00:00,14631.0
-2014-01-24 19:00:00,15142.0
-2014-01-24 20:00:00,15011.0
-2014-01-24 21:00:00,14687.0
-2014-01-24 22:00:00,14336.0
-2014-01-24 23:00:00,13827.0
-2014-01-25 00:00:00,13035.0
-2014-01-23 01:00:00,13119.0
-2014-01-23 02:00:00,12701.0
-2014-01-23 03:00:00,12509.0
-2014-01-23 04:00:00,12387.0
-2014-01-23 05:00:00,12381.0
-2014-01-23 06:00:00,12604.0
-2014-01-23 07:00:00,13255.0
-2014-01-23 08:00:00,14331.0
-2014-01-23 09:00:00,14703.0
-2014-01-23 10:00:00,14810.0
-2014-01-23 11:00:00,14770.0
-2014-01-23 12:00:00,14727.0
-2014-01-23 13:00:00,14582.0
-2014-01-23 14:00:00,14407.0
-2014-01-23 15:00:00,14313.0
-2014-01-23 16:00:00,14154.0
-2014-01-23 17:00:00,14165.0
-2014-01-23 18:00:00,14538.0
-2014-01-23 19:00:00,15469.0
-2014-01-23 20:00:00,15554.0
-2014-01-23 21:00:00,15476.0
-2014-01-23 22:00:00,15290.0
-2014-01-23 23:00:00,14813.0
-2014-01-24 00:00:00,14015.0
-2014-01-22 01:00:00,12664.0
-2014-01-22 02:00:00,12229.0
-2014-01-22 03:00:00,11935.0
-2014-01-22 04:00:00,11812.0
-2014-01-22 05:00:00,11831.0
-2014-01-22 06:00:00,11976.0
-2014-01-22 07:00:00,12684.0
-2014-01-22 08:00:00,13747.0
-2014-01-22 09:00:00,14304.0
-2014-01-22 10:00:00,14416.0
-2014-01-22 11:00:00,14440.0
-2014-01-22 12:00:00,14532.0
-2014-01-22 13:00:00,14409.0
-2014-01-22 14:00:00,14245.0
-2014-01-22 15:00:00,14250.0
-2014-01-22 16:00:00,14145.0
-2014-01-22 17:00:00,14214.0
-2014-01-22 18:00:00,14500.0
-2014-01-22 19:00:00,15226.0
-2014-01-22 20:00:00,15406.0
-2014-01-22 21:00:00,15233.0
-2014-01-22 22:00:00,15047.0
-2014-01-22 23:00:00,14552.0
-2014-01-23 00:00:00,13821.0
-2014-01-21 01:00:00,11786.0
-2014-01-21 02:00:00,11436.0
-2014-01-21 03:00:00,11305.0
-2014-01-21 04:00:00,11274.0
-2014-01-21 05:00:00,11388.0
-2014-01-21 06:00:00,11694.0
-2014-01-21 07:00:00,12430.0
-2014-01-21 08:00:00,13558.0
-2014-01-21 09:00:00,14016.0
-2014-01-21 10:00:00,14062.0
-2014-01-21 11:00:00,14045.0
-2014-01-21 12:00:00,14029.0
-2014-01-21 13:00:00,13915.0
-2014-01-21 14:00:00,13821.0
-2014-01-21 15:00:00,13715.0
-2014-01-21 16:00:00,13625.0
-2014-01-21 17:00:00,13613.0
-2014-01-21 18:00:00,14077.0
-2014-01-21 19:00:00,15013.0
-2014-01-21 20:00:00,15061.0
-2014-01-21 21:00:00,14903.0
-2014-01-21 22:00:00,14698.0
-2014-01-21 23:00:00,14205.0
-2014-01-22 00:00:00,13408.0
-2014-01-20 01:00:00,10566.0
-2014-01-20 02:00:00,10230.0
-2014-01-20 03:00:00,9993.0
-2014-01-20 04:00:00,9856.0
-2014-01-20 05:00:00,9830.0
-2014-01-20 06:00:00,10101.0
-2014-01-20 07:00:00,10762.0
-2014-01-20 08:00:00,11662.0
-2014-01-20 09:00:00,12193.0
-2014-01-20 10:00:00,12395.0
-2014-01-20 11:00:00,12507.0
-2014-01-20 12:00:00,12658.0
-2014-01-20 13:00:00,12696.0
-2014-01-20 14:00:00,12561.0
-2014-01-20 15:00:00,12527.0
-2014-01-20 16:00:00,12486.0
-2014-01-20 17:00:00,12619.0
-2014-01-20 18:00:00,13192.0
-2014-01-20 19:00:00,13868.0
-2014-01-20 20:00:00,13871.0
-2014-01-20 21:00:00,13794.0
-2014-01-20 22:00:00,13638.0
-2014-01-20 23:00:00,13129.0
-2014-01-21 00:00:00,12400.0
-2014-01-19 01:00:00,11453.0
-2014-01-19 02:00:00,11069.0
-2014-01-19 03:00:00,10888.0
-2014-01-19 04:00:00,10790.0
-2014-01-19 05:00:00,10766.0
-2014-01-19 06:00:00,10787.0
-2014-01-19 07:00:00,11002.0
-2014-01-19 08:00:00,11259.0
-2014-01-19 09:00:00,11351.0
-2014-01-19 10:00:00,11423.0
-2014-01-19 11:00:00,11512.0
-2014-01-19 12:00:00,11478.0
-2014-01-19 13:00:00,11390.0
-2014-01-19 14:00:00,11257.0
-2014-01-19 15:00:00,11187.0
-2014-01-19 16:00:00,11256.0
-2014-01-19 17:00:00,11311.0
-2014-01-19 18:00:00,11639.0
-2014-01-19 19:00:00,12572.0
-2014-01-19 20:00:00,12667.0
-2014-01-19 21:00:00,12422.0
-2014-01-19 22:00:00,12156.0
-2014-01-19 23:00:00,11720.0
-2014-01-20 00:00:00,11198.0
-2014-01-18 01:00:00,12116.0
-2014-01-18 02:00:00,11614.0
-2014-01-18 03:00:00,11322.0
-2014-01-18 04:00:00,11147.0
-2014-01-18 05:00:00,11092.0
-2014-01-18 06:00:00,11150.0
-2014-01-18 07:00:00,11440.0
-2014-01-18 08:00:00,11888.0
-2014-01-18 09:00:00,12153.0
-2014-01-18 10:00:00,12472.0
-2014-01-18 11:00:00,12800.0
-2014-01-18 12:00:00,12944.0
-2014-01-18 13:00:00,12890.0
-2014-01-18 14:00:00,12749.0
-2014-01-18 15:00:00,12578.0
-2014-01-18 16:00:00,12379.0
-2014-01-18 17:00:00,12347.0
-2014-01-18 18:00:00,12611.0
-2014-01-18 19:00:00,13358.0
-2014-01-18 20:00:00,13311.0
-2014-01-18 21:00:00,13157.0
-2014-01-18 22:00:00,12865.0
-2014-01-18 23:00:00,12546.0
-2014-01-19 00:00:00,11984.0
-2014-01-17 01:00:00,11677.0
-2014-01-17 02:00:00,11246.0
-2014-01-17 03:00:00,11027.0
-2014-01-17 04:00:00,10917.0
-2014-01-17 05:00:00,10935.0
-2014-01-17 06:00:00,11232.0
-2014-01-17 07:00:00,11906.0
-2014-01-17 08:00:00,13033.0
-2014-01-17 09:00:00,13644.0
-2014-01-17 10:00:00,13732.0
-2014-01-17 11:00:00,13843.0
-2014-01-17 12:00:00,13886.0
-2014-01-17 13:00:00,13812.0
-2014-01-17 14:00:00,13675.0
-2014-01-17 15:00:00,13662.0
-2014-01-17 16:00:00,13621.0
-2014-01-17 17:00:00,13628.0
-2014-01-17 18:00:00,14022.0
-2014-01-17 19:00:00,14528.0
-2014-01-17 20:00:00,14389.0
-2014-01-17 21:00:00,14166.0
-2014-01-17 22:00:00,13819.0
-2014-01-17 23:00:00,13473.0
-2014-01-18 00:00:00,12768.0
-2014-01-16 01:00:00,11846.0
-2014-01-16 02:00:00,11383.0
-2014-01-16 03:00:00,11065.0
-2014-01-16 04:00:00,10914.0
-2014-01-16 05:00:00,10855.0
-2014-01-16 06:00:00,11054.0
-2014-01-16 07:00:00,11711.0
-2014-01-16 08:00:00,12797.0
-2014-01-16 09:00:00,13462.0
-2014-01-16 10:00:00,13539.0
-2014-01-16 11:00:00,13539.0
-2014-01-16 12:00:00,13504.0
-2014-01-16 13:00:00,13433.0
-2014-01-16 14:00:00,13283.0
-2014-01-16 15:00:00,13289.0
-2014-01-16 16:00:00,13192.0
-2014-01-16 17:00:00,13144.0
-2014-01-16 18:00:00,13541.0
-2014-01-16 19:00:00,14083.0
-2014-01-16 20:00:00,13938.0
-2014-01-16 21:00:00,13822.0
-2014-01-16 22:00:00,13605.0
-2014-01-16 23:00:00,13152.0
-2014-01-17 00:00:00,12378.0
-2014-01-15 01:00:00,11502.0
-2014-01-15 02:00:00,10998.0
-2014-01-15 03:00:00,10763.0
-2014-01-15 04:00:00,10636.0
-2014-01-15 05:00:00,10671.0
-2014-01-15 06:00:00,10930.0
-2014-01-15 07:00:00,11643.0
-2014-01-15 08:00:00,12823.0
-2014-01-15 09:00:00,13443.0
-2014-01-15 10:00:00,13370.0
-2014-01-15 11:00:00,13269.0
-2014-01-15 12:00:00,13234.0
-2014-01-15 13:00:00,13204.0
-2014-01-15 14:00:00,13165.0
-2014-01-15 15:00:00,13267.0
-2014-01-15 16:00:00,13181.0
-2014-01-15 17:00:00,13135.0
-2014-01-15 18:00:00,13564.0
-2014-01-15 19:00:00,14473.0
-2014-01-15 20:00:00,14416.0
-2014-01-15 21:00:00,14203.0
-2014-01-15 22:00:00,13918.0
-2014-01-15 23:00:00,13404.0
-2014-01-16 00:00:00,12585.0
-2014-01-14 01:00:00,10825.0
-2014-01-14 02:00:00,10366.0
-2014-01-14 03:00:00,10101.0
-2014-01-14 04:00:00,9950.0
-2014-01-14 05:00:00,9989.0
-2014-01-14 06:00:00,10293.0
-2014-01-14 07:00:00,11036.0
-2014-01-14 08:00:00,12200.0
-2014-01-14 09:00:00,12646.0
-2014-01-14 10:00:00,12700.0
-2014-01-14 11:00:00,12831.0
-2014-01-14 12:00:00,13016.0
-2014-01-14 13:00:00,13036.0
-2014-01-14 14:00:00,13045.0
-2014-01-14 15:00:00,13122.0
-2014-01-14 16:00:00,13135.0
-2014-01-14 17:00:00,13219.0
-2014-01-14 18:00:00,13723.0
-2014-01-14 19:00:00,14269.0
-2014-01-14 20:00:00,14124.0
-2014-01-14 21:00:00,13904.0
-2014-01-14 22:00:00,13601.0
-2014-01-14 23:00:00,13075.0
-2014-01-15 00:00:00,12265.0
-2014-01-13 01:00:00,10229.0
-2014-01-13 02:00:00,9861.0
-2014-01-13 03:00:00,9600.0
-2014-01-13 04:00:00,9519.0
-2014-01-13 05:00:00,9497.0
-2014-01-13 06:00:00,9824.0
-2014-01-13 07:00:00,10558.0
-2014-01-13 08:00:00,11822.0
-2014-01-13 09:00:00,12421.0
-2014-01-13 10:00:00,12366.0
-2014-01-13 11:00:00,12350.0
-2014-01-13 12:00:00,12283.0
-2014-01-13 13:00:00,12164.0
-2014-01-13 14:00:00,12007.0
-2014-01-13 15:00:00,11938.0
-2014-01-13 16:00:00,11840.0
-2014-01-13 17:00:00,11844.0
-2014-01-13 18:00:00,12325.0
-2014-01-13 19:00:00,13210.0
-2014-01-13 20:00:00,13200.0
-2014-01-13 21:00:00,13013.0
-2014-01-13 22:00:00,12809.0
-2014-01-13 23:00:00,12323.0
-2014-01-14 00:00:00,11531.0
-2014-01-12 01:00:00,10713.0
-2014-01-12 02:00:00,10257.0
-2014-01-12 03:00:00,9967.0
-2014-01-12 04:00:00,9786.0
-2014-01-12 05:00:00,9748.0
-2014-01-12 06:00:00,9760.0
-2014-01-12 07:00:00,9934.0
-2014-01-12 08:00:00,10205.0
-2014-01-12 09:00:00,10353.0
-2014-01-12 10:00:00,10525.0
-2014-01-12 11:00:00,10694.0
-2014-01-12 12:00:00,10652.0
-2014-01-12 13:00:00,10773.0
-2014-01-12 14:00:00,10760.0
-2014-01-12 15:00:00,10716.0
-2014-01-12 16:00:00,10604.0
-2014-01-12 17:00:00,10725.0
-2014-01-12 18:00:00,11265.0
-2014-01-12 19:00:00,12126.0
-2014-01-12 20:00:00,12145.0
-2014-01-12 21:00:00,12062.0
-2014-01-12 22:00:00,11846.0
-2014-01-12 23:00:00,11389.0
-2014-01-13 00:00:00,10828.0
-2014-01-11 01:00:00,11084.0
-2014-01-11 02:00:00,10553.0
-2014-01-11 03:00:00,10120.0
-2014-01-11 04:00:00,9894.0
-2014-01-11 05:00:00,9784.0
-2014-01-11 06:00:00,9803.0
-2014-01-11 07:00:00,10095.0
-2014-01-11 08:00:00,10578.0
-2014-01-11 09:00:00,11048.0
-2014-01-11 10:00:00,11334.0
-2014-01-11 11:00:00,11759.0
-2014-01-11 12:00:00,11887.0
-2014-01-11 13:00:00,11902.0
-2014-01-11 14:00:00,11731.0
-2014-01-11 15:00:00,11549.0
-2014-01-11 16:00:00,11461.0
-2014-01-11 17:00:00,11480.0
-2014-01-11 18:00:00,11952.0
-2014-01-11 19:00:00,12556.0
-2014-01-11 20:00:00,12506.0
-2014-01-11 21:00:00,12384.0
-2014-01-11 22:00:00,12159.0
-2014-01-11 23:00:00,11810.0
-2014-01-12 00:00:00,11328.0
-2014-01-10 01:00:00,11881.0
-2014-01-10 02:00:00,11324.0
-2014-01-10 03:00:00,10994.0
-2014-01-10 04:00:00,10756.0
-2014-01-10 05:00:00,10678.0
-2014-01-10 06:00:00,10845.0
-2014-01-10 07:00:00,11457.0
-2014-01-10 08:00:00,12555.0
-2014-01-10 09:00:00,13142.0
-2014-01-10 10:00:00,13126.0
-2014-01-10 11:00:00,13174.0
-2014-01-10 12:00:00,13229.0
-2014-01-10 13:00:00,13206.0
-2014-01-10 14:00:00,13135.0
-2014-01-10 15:00:00,13178.0
-2014-01-10 16:00:00,13261.0
-2014-01-10 17:00:00,13243.0
-2014-01-10 18:00:00,13801.0
-2014-01-10 19:00:00,14075.0
-2014-01-10 20:00:00,13841.0
-2014-01-10 21:00:00,13525.0
-2014-01-10 22:00:00,13050.0
-2014-01-10 23:00:00,12585.0
-2014-01-11 00:00:00,11890.0
-2014-01-09 01:00:00,12871.0
-2014-01-09 02:00:00,12381.0
-2014-01-09 03:00:00,12158.0
-2014-01-09 04:00:00,11985.0
-2014-01-09 05:00:00,11981.0
-2014-01-09 06:00:00,12166.0
-2014-01-09 07:00:00,12812.0
-2014-01-09 08:00:00,13883.0
-2014-01-09 09:00:00,14373.0
-2014-01-09 10:00:00,14404.0
-2014-01-09 11:00:00,14407.0
-2014-01-09 12:00:00,14348.0
-2014-01-09 13:00:00,14245.0
-2014-01-09 14:00:00,14203.0
-2014-01-09 15:00:00,14218.0
-2014-01-09 16:00:00,14038.0
-2014-01-09 17:00:00,13985.0
-2014-01-09 18:00:00,14451.0
-2014-01-09 19:00:00,14945.0
-2014-01-09 20:00:00,14771.0
-2014-01-09 21:00:00,14604.0
-2014-01-09 22:00:00,14267.0
-2014-01-09 23:00:00,13612.0
-2014-01-10 00:00:00,12717.0
-2014-01-08 01:00:00,13204.0
-2014-01-08 02:00:00,12723.0
-2014-01-08 03:00:00,12467.0
-2014-01-08 04:00:00,12289.0
-2014-01-08 05:00:00,12269.0
-2014-01-08 06:00:00,12469.0
-2014-01-08 07:00:00,13040.0
-2014-01-08 08:00:00,14088.0
-2014-01-08 09:00:00,14580.0
-2014-01-08 10:00:00,14612.0
-2014-01-08 11:00:00,14599.0
-2014-01-08 12:00:00,14549.0
-2014-01-08 13:00:00,14377.0
-2014-01-08 14:00:00,14209.0
-2014-01-08 15:00:00,14092.0
-2014-01-08 16:00:00,14006.0
-2014-01-08 17:00:00,14028.0
-2014-01-08 18:00:00,14586.0
-2014-01-08 19:00:00,15356.0
-2014-01-08 20:00:00,15337.0
-2014-01-08 21:00:00,15199.0
-2014-01-08 22:00:00,14932.0
-2014-01-08 23:00:00,14439.0
-2014-01-09 00:00:00,13604.0
-2014-01-07 01:00:00,13829.0
-2014-01-07 02:00:00,13349.0
-2014-01-07 03:00:00,13034.0
-2014-01-07 04:00:00,12892.0
-2014-01-07 05:00:00,12866.0
-2014-01-07 06:00:00,13023.0
-2014-01-07 07:00:00,13513.0
-2014-01-07 08:00:00,14255.0
-2014-01-07 09:00:00,14604.0
-2014-01-07 10:00:00,14785.0
-2014-01-07 11:00:00,14990.0
-2014-01-07 12:00:00,15226.0
-2014-01-07 13:00:00,15276.0
-2014-01-07 14:00:00,15218.0
-2014-01-07 15:00:00,15180.0
-2014-01-07 16:00:00,14974.0
-2014-01-07 17:00:00,14831.0
-2014-01-07 18:00:00,15284.0
-2014-01-07 19:00:00,16099.0
-2014-01-07 20:00:00,16047.0
-2014-01-07 21:00:00,15830.0
-2014-01-07 22:00:00,15529.0
-2014-01-07 23:00:00,14826.0
-2014-01-08 00:00:00,13950.0
-2014-01-06 01:00:00,12633.0
-2014-01-06 02:00:00,12324.0
-2014-01-06 03:00:00,12127.0
-2014-01-06 04:00:00,12205.0
-2014-01-06 05:00:00,12165.0
-2014-01-06 06:00:00,12370.0
-2014-01-06 07:00:00,12893.0
-2014-01-06 08:00:00,13744.0
-2014-01-06 09:00:00,14177.0
-2014-01-06 10:00:00,14446.0
-2014-01-06 11:00:00,14598.0
-2014-01-06 12:00:00,14861.0
-2014-01-06 13:00:00,14961.0
-2014-01-06 14:00:00,14971.0
-2014-01-06 15:00:00,14956.0
-2014-01-06 16:00:00,15006.0
-2014-01-06 17:00:00,15059.0
-2014-01-06 18:00:00,15613.0
-2014-01-06 19:00:00,16514.0
-2014-01-06 20:00:00,16427.0
-2014-01-06 21:00:00,16143.0
-2014-01-06 22:00:00,15839.0
-2014-01-06 23:00:00,15335.0
-2014-01-07 00:00:00,14589.0
-2014-01-05 01:00:00,11272.0
-2014-01-05 02:00:00,10835.0
-2014-01-05 03:00:00,10509.0
-2014-01-05 04:00:00,10379.0
-2014-01-05 05:00:00,10308.0
-2014-01-05 06:00:00,10337.0
-2014-01-05 07:00:00,10496.0
-2014-01-05 08:00:00,10770.0
-2014-01-05 09:00:00,10930.0
-2014-01-05 10:00:00,11213.0
-2014-01-05 11:00:00,11559.0
-2014-01-05 12:00:00,11822.0
-2014-01-05 13:00:00,12053.0
-2014-01-05 14:00:00,12191.0
-2014-01-05 15:00:00,12303.0
-2014-01-05 16:00:00,12403.0
-2014-01-05 17:00:00,12592.0
-2014-01-05 18:00:00,13366.0
-2014-01-05 19:00:00,14250.0
-2014-01-05 20:00:00,14253.0
-2014-01-05 21:00:00,14200.0
-2014-01-05 22:00:00,13959.0
-2014-01-05 23:00:00,13678.0
-2014-01-06 00:00:00,13174.0
-2014-01-04 01:00:00,12566.0
-2014-01-04 02:00:00,11995.0
-2014-01-04 03:00:00,11593.0
-2014-01-04 04:00:00,11340.0
-2014-01-04 05:00:00,11163.0
-2014-01-04 06:00:00,11209.0
-2014-01-04 07:00:00,11339.0
-2014-01-04 08:00:00,11701.0
-2014-01-04 09:00:00,11826.0
-2014-01-04 10:00:00,12025.0
-2014-01-04 11:00:00,12197.0
-2014-01-04 12:00:00,12430.0
-2014-01-04 13:00:00,12444.0
-2014-01-04 14:00:00,12365.0
-2014-01-04 15:00:00,12157.0
-2014-01-04 16:00:00,12084.0
-2014-01-04 17:00:00,12092.0
-2014-01-04 18:00:00,12759.0
-2014-01-04 19:00:00,13288.0
-2014-01-04 20:00:00,13245.0
-2014-01-04 21:00:00,13097.0
-2014-01-04 22:00:00,12890.0
-2014-01-04 23:00:00,12493.0
-2014-01-05 00:00:00,11940.0
-2014-01-03 01:00:00,12353.0
-2014-01-03 02:00:00,11868.0
-2014-01-03 03:00:00,11606.0
-2014-01-03 04:00:00,11458.0
-2014-01-03 05:00:00,11468.0
-2014-01-03 06:00:00,11694.0
-2014-01-03 07:00:00,12267.0
-2014-01-03 08:00:00,13126.0
-2014-01-03 09:00:00,13567.0
-2014-01-03 10:00:00,13710.0
-2014-01-03 11:00:00,13775.0
-2014-01-03 12:00:00,13897.0
-2014-01-03 13:00:00,13946.0
-2014-01-03 14:00:00,13979.0
-2014-01-03 15:00:00,13971.0
-2014-01-03 16:00:00,13893.0
-2014-01-03 17:00:00,13940.0
-2014-01-03 18:00:00,14385.0
-2014-01-03 19:00:00,15100.0
-2014-01-03 20:00:00,14998.0
-2014-01-03 21:00:00,14784.0
-2014-01-03 22:00:00,14456.0
-2014-01-03 23:00:00,14023.0
-2014-01-04 00:00:00,13297.0
-2014-01-02 01:00:00,11004.0
-2014-01-02 02:00:00,10568.0
-2014-01-02 03:00:00,10345.0
-2014-01-02 04:00:00,10215.0
-2014-01-02 05:00:00,10255.0
-2014-01-02 06:00:00,10509.0
-2014-01-02 07:00:00,11167.0
-2014-01-02 08:00:00,12153.0
-2014-01-02 09:00:00,12777.0
-2014-01-02 10:00:00,13008.0
-2014-01-02 11:00:00,13292.0
-2014-01-02 12:00:00,13462.0
-2014-01-02 13:00:00,13492.0
-2014-01-02 14:00:00,13473.0
-2014-01-02 15:00:00,13474.0
-2014-01-02 16:00:00,13365.0
-2014-01-02 17:00:00,13276.0
-2014-01-02 18:00:00,13856.0
-2014-01-02 19:00:00,14744.0
-2014-01-02 20:00:00,14715.0
-2014-01-02 21:00:00,14567.0
-2014-01-02 22:00:00,14306.0
-2014-01-02 23:00:00,13830.0
-2014-01-03 00:00:00,13079.0
-2014-01-01 01:00:00,11562.0
-2014-01-01 02:00:00,11135.0
-2014-01-01 03:00:00,10766.0
-2014-01-01 04:00:00,10489.0
-2014-01-01 05:00:00,10326.0
-2014-01-01 06:00:00,10296.0
-2014-01-01 07:00:00,10433.0
-2014-01-01 08:00:00,10626.0
-2014-01-01 09:00:00,10640.0
-2014-01-01 10:00:00,10657.0
-2014-01-01 11:00:00,10927.0
-2014-01-01 12:00:00,11137.0
-2014-01-01 13:00:00,11292.0
-2014-01-01 14:00:00,11344.0
-2014-01-01 15:00:00,11371.0
-2014-01-01 16:00:00,11389.0
-2014-01-01 17:00:00,11501.0
-2014-01-01 18:00:00,12263.0
-2014-01-01 19:00:00,13062.0
-2014-01-01 20:00:00,13015.0
-2014-01-01 21:00:00,12831.0
-2014-01-01 22:00:00,12598.0
-2014-01-01 23:00:00,12231.0
-2014-01-02 00:00:00,11605.0
-2015-12-31 01:00:00,10419.0
-2015-12-31 02:00:00,9893.0
-2015-12-31 03:00:00,9544.0
-2015-12-31 04:00:00,9341.0
-2015-12-31 05:00:00,9318.0
-2015-12-31 06:00:00,9507.0
-2015-12-31 07:00:00,9992.0
-2015-12-31 08:00:00,10692.0
-2015-12-31 09:00:00,10984.0
-2015-12-31 10:00:00,11162.0
-2015-12-31 11:00:00,11289.0
-2015-12-31 12:00:00,11306.0
-2015-12-31 13:00:00,11273.0
-2015-12-31 14:00:00,11196.0
-2015-12-31 15:00:00,11229.0
-2015-12-31 16:00:00,11226.0
-2015-12-31 17:00:00,11286.0
-2015-12-31 18:00:00,11937.0
-2015-12-31 19:00:00,12564.0
-2015-12-31 20:00:00,12297.0
-2015-12-31 21:00:00,11944.0
-2015-12-31 22:00:00,11607.0
-2015-12-31 23:00:00,11277.0
-2016-01-01 00:00:00,10802.0
-2015-12-30 01:00:00,10309.0
-2015-12-30 02:00:00,9794.0
-2015-12-30 03:00:00,9477.0
-2015-12-30 04:00:00,9300.0
-2015-12-30 05:00:00,9260.0
-2015-12-30 06:00:00,9488.0
-2015-12-30 07:00:00,10061.0
-2015-12-30 08:00:00,10921.0
-2015-12-30 09:00:00,11486.0
-2015-12-30 10:00:00,11670.0
-2015-12-30 11:00:00,11771.0
-2015-12-30 12:00:00,11854.0
-2015-12-30 13:00:00,11865.0
-2015-12-30 14:00:00,11837.0
-2015-12-30 15:00:00,11897.0
-2015-12-30 16:00:00,11851.0
-2015-12-30 17:00:00,11870.0
-2015-12-30 18:00:00,12459.0
-2015-12-30 19:00:00,13039.0
-2015-12-30 20:00:00,12781.0
-2015-12-30 21:00:00,12562.0
-2015-12-30 22:00:00,12281.0
-2015-12-30 23:00:00,11843.0
-2015-12-31 00:00:00,11168.0
-2015-12-29 01:00:00,10199.0
-2015-12-29 02:00:00,9664.0
-2015-12-29 03:00:00,9309.0
-2015-12-29 04:00:00,9168.0
-2015-12-29 05:00:00,9174.0
-2015-12-29 06:00:00,9393.0
-2015-12-29 07:00:00,10002.0
-2015-12-29 08:00:00,10851.0
-2015-12-29 09:00:00,11338.0
-2015-12-29 10:00:00,11519.0
-2015-12-29 11:00:00,11691.0
-2015-12-29 12:00:00,11834.0
-2015-12-29 13:00:00,11843.0
-2015-12-29 14:00:00,11851.0
-2015-12-29 15:00:00,11873.0
-2015-12-29 16:00:00,11847.0
-2015-12-29 17:00:00,11902.0
-2015-12-29 18:00:00,12520.0
-2015-12-29 19:00:00,12973.0
-2015-12-29 20:00:00,12707.0
-2015-12-29 21:00:00,12464.0
-2015-12-29 22:00:00,12204.0
-2015-12-29 23:00:00,11773.0
-2015-12-30 00:00:00,11045.0
-2015-12-28 01:00:00,9714.0
-2015-12-28 02:00:00,9346.0
-2015-12-28 03:00:00,9077.0
-2015-12-28 04:00:00,9004.0
-2015-12-28 05:00:00,9041.0
-2015-12-28 06:00:00,9341.0
-2015-12-28 07:00:00,10054.0
-2015-12-28 08:00:00,11018.0
-2015-12-28 09:00:00,11720.0
-2015-12-28 10:00:00,12063.0
-2015-12-28 11:00:00,12280.0
-2015-12-28 12:00:00,12568.0
-2015-12-28 13:00:00,12678.0
-2015-12-28 14:00:00,12724.0
-2015-12-28 15:00:00,12727.0
-2015-12-28 16:00:00,12651.0
-2015-12-28 17:00:00,12720.0
-2015-12-28 18:00:00,13195.0
-2015-12-28 19:00:00,13398.0
-2015-12-28 20:00:00,13068.0
-2015-12-28 21:00:00,12738.0
-2015-12-28 22:00:00,12361.0
-2015-12-28 23:00:00,11797.0
-2015-12-29 00:00:00,10920.0
-2015-12-27 01:00:00,9371.0
-2015-12-27 02:00:00,8914.0
-2015-12-27 03:00:00,8674.0
-2015-12-27 04:00:00,8447.0
-2015-12-27 05:00:00,8403.0
-2015-12-27 06:00:00,8399.0
-2015-12-27 07:00:00,8542.0
-2015-12-27 08:00:00,8810.0
-2015-12-27 09:00:00,9017.0
-2015-12-27 10:00:00,9219.0
-2015-12-27 11:00:00,9471.0
-2015-12-27 12:00:00,9632.0
-2015-12-27 13:00:00,9710.0
-2015-12-27 14:00:00,9741.0
-2015-12-27 15:00:00,9786.0
-2015-12-27 16:00:00,9848.0
-2015-12-27 17:00:00,10035.0
-2015-12-27 18:00:00,10824.0
-2015-12-27 19:00:00,11169.0
-2015-12-27 20:00:00,11384.0
-2015-12-27 21:00:00,11271.0
-2015-12-27 22:00:00,11111.0
-2015-12-27 23:00:00,10783.0
-2015-12-28 00:00:00,10315.0
-2015-12-26 01:00:00,9017.0
-2015-12-26 02:00:00,8610.0
-2015-12-26 03:00:00,8344.0
-2015-12-26 04:00:00,8170.0
-2015-12-26 05:00:00,8105.0
-2015-12-26 06:00:00,8229.0
-2015-12-26 07:00:00,8474.0
-2015-12-26 08:00:00,8871.0
-2015-12-26 09:00:00,9195.0
-2015-12-26 10:00:00,9454.0
-2015-12-26 11:00:00,9785.0
-2015-12-26 12:00:00,10112.0
-2015-12-26 13:00:00,10214.0
-2015-12-26 14:00:00,10099.0
-2015-12-26 15:00:00,9943.0
-2015-12-26 16:00:00,9923.0
-2015-12-26 17:00:00,10039.0
-2015-12-26 18:00:00,10593.0
-2015-12-26 19:00:00,10879.0
-2015-12-26 20:00:00,10876.0
-2015-12-26 21:00:00,10770.0
-2015-12-26 22:00:00,10602.0
-2015-12-26 23:00:00,10372.0
-2015-12-27 00:00:00,9902.0
-2015-12-25 01:00:00,9099.0
-2015-12-25 02:00:00,8618.0
-2015-12-25 03:00:00,8322.0
-2015-12-25 04:00:00,8086.0
-2015-12-25 05:00:00,8036.0
-2015-12-25 06:00:00,8106.0
-2015-12-25 07:00:00,8323.0
-2015-12-25 08:00:00,8622.0
-2015-12-25 09:00:00,8685.0
-2015-12-25 10:00:00,8698.0
-2015-12-25 11:00:00,8770.0
-2015-12-25 12:00:00,8818.0
-2015-12-25 13:00:00,8821.0
-2015-12-25 14:00:00,8776.0
-2015-12-25 15:00:00,8716.0
-2015-12-25 16:00:00,8689.0
-2015-12-25 17:00:00,8824.0
-2015-12-25 18:00:00,9554.0
-2015-12-25 19:00:00,10062.0
-2015-12-25 20:00:00,10054.0
-2015-12-25 21:00:00,10017.0
-2015-12-25 22:00:00,9980.0
-2015-12-25 23:00:00,9858.0
-2015-12-26 00:00:00,9521.0
-2015-12-24 01:00:00,9620.0
-2015-12-24 02:00:00,9032.0
-2015-12-24 03:00:00,8687.0
-2015-12-24 04:00:00,8510.0
-2015-12-24 05:00:00,8459.0
-2015-12-24 06:00:00,8548.0
-2015-12-24 07:00:00,8936.0
-2015-12-24 08:00:00,9491.0
-2015-12-24 09:00:00,9721.0
-2015-12-24 10:00:00,9859.0
-2015-12-24 11:00:00,9976.0
-2015-12-24 12:00:00,10025.0
-2015-12-24 13:00:00,10039.0
-2015-12-24 14:00:00,9956.0
-2015-12-24 15:00:00,9987.0
-2015-12-24 16:00:00,9961.0
-2015-12-24 17:00:00,10111.0
-2015-12-24 18:00:00,10718.0
-2015-12-24 19:00:00,10992.0
-2015-12-24 20:00:00,10608.0
-2015-12-24 21:00:00,10325.0
-2015-12-24 22:00:00,10133.0
-2015-12-24 23:00:00,9907.0
-2015-12-25 00:00:00,9539.0
-2015-12-23 01:00:00,10200.0
-2015-12-23 02:00:00,9550.0
-2015-12-23 03:00:00,9141.0
-2015-12-23 04:00:00,8853.0
-2015-12-23 05:00:00,8758.0
-2015-12-23 06:00:00,8943.0
-2015-12-23 07:00:00,9493.0
-2015-12-23 08:00:00,10320.0
-2015-12-23 09:00:00,10886.0
-2015-12-23 10:00:00,11180.0
-2015-12-23 11:00:00,11491.0
-2015-12-23 12:00:00,11726.0
-2015-12-23 13:00:00,11733.0
-2015-12-23 14:00:00,11537.0
-2015-12-23 15:00:00,11325.0
-2015-12-23 16:00:00,11172.0
-2015-12-23 17:00:00,11200.0
-2015-12-23 18:00:00,11621.0
-2015-12-23 19:00:00,12146.0
-2015-12-23 20:00:00,11902.0
-2015-12-23 21:00:00,11704.0
-2015-12-23 22:00:00,11426.0
-2015-12-23 23:00:00,10982.0
-2015-12-24 00:00:00,10344.0
-2015-12-22 01:00:00,9863.0
-2015-12-22 02:00:00,9275.0
-2015-12-22 03:00:00,8967.0
-2015-12-22 04:00:00,8762.0
-2015-12-22 05:00:00,8734.0
-2015-12-22 06:00:00,8977.0
-2015-12-22 07:00:00,9658.0
-2015-12-22 08:00:00,10604.0
-2015-12-22 09:00:00,11264.0
-2015-12-22 10:00:00,11514.0
-2015-12-22 11:00:00,11684.0
-2015-12-22 12:00:00,11789.0
-2015-12-22 13:00:00,11836.0
-2015-12-22 14:00:00,11845.0
-2015-12-22 15:00:00,11894.0
-2015-12-22 16:00:00,11831.0
-2015-12-22 17:00:00,11858.0
-2015-12-22 18:00:00,12533.0
-2015-12-22 19:00:00,12969.0
-2015-12-22 20:00:00,12732.0
-2015-12-22 21:00:00,12541.0
-2015-12-22 22:00:00,12273.0
-2015-12-22 23:00:00,11809.0
-2015-12-23 00:00:00,11043.0
-2015-12-21 01:00:00,9670.0
-2015-12-21 02:00:00,9285.0
-2015-12-21 03:00:00,9084.0
-2015-12-21 04:00:00,8979.0
-2015-12-21 05:00:00,8984.0
-2015-12-21 06:00:00,9246.0
-2015-12-21 07:00:00,9891.0
-2015-12-21 08:00:00,10866.0
-2015-12-21 09:00:00,11580.0
-2015-12-21 10:00:00,11732.0
-2015-12-21 11:00:00,11908.0
-2015-12-21 12:00:00,11919.0
-2015-12-21 13:00:00,11939.0
-2015-12-21 14:00:00,11842.0
-2015-12-21 15:00:00,11709.0
-2015-12-21 16:00:00,11640.0
-2015-12-21 17:00:00,11690.0
-2015-12-21 18:00:00,12227.0
-2015-12-21 19:00:00,12574.0
-2015-12-21 20:00:00,12340.0
-2015-12-21 21:00:00,12137.0
-2015-12-21 22:00:00,11878.0
-2015-12-21 23:00:00,11428.0
-2015-12-22 00:00:00,10651.0
-2015-12-20 01:00:00,10631.0
-2015-12-20 02:00:00,10106.0
-2015-12-20 03:00:00,9748.0
-2015-12-20 04:00:00,9569.0
-2015-12-20 05:00:00,9426.0
-2015-12-20 06:00:00,9459.0
-2015-12-20 07:00:00,9523.0
-2015-12-20 08:00:00,9814.0
-2015-12-20 09:00:00,9915.0
-2015-12-20 10:00:00,9995.0
-2015-12-20 11:00:00,10094.0
-2015-12-20 12:00:00,10017.0
-2015-12-20 13:00:00,9951.0
-2015-12-20 14:00:00,9851.0
-2015-12-20 15:00:00,9779.0
-2015-12-20 16:00:00,9779.0
-2015-12-20 17:00:00,9986.0
-2015-12-20 18:00:00,10911.0
-2015-12-20 19:00:00,11437.0
-2015-12-20 20:00:00,11463.0
-2015-12-20 21:00:00,11379.0
-2015-12-20 22:00:00,11236.0
-2015-12-20 23:00:00,10871.0
-2015-12-21 00:00:00,10300.0
-2015-12-19 01:00:00,11050.0
-2015-12-19 02:00:00,10488.0
-2015-12-19 03:00:00,10244.0
-2015-12-19 04:00:00,10065.0
-2015-12-19 05:00:00,9998.0
-2015-12-19 06:00:00,10091.0
-2015-12-19 07:00:00,10457.0
-2015-12-19 08:00:00,10964.0
-2015-12-19 09:00:00,11206.0
-2015-12-19 10:00:00,11392.0
-2015-12-19 11:00:00,11476.0
-2015-12-19 12:00:00,11477.0
-2015-12-19 13:00:00,11333.0
-2015-12-19 14:00:00,11127.0
-2015-12-19 15:00:00,10868.0
-2015-12-19 16:00:00,10720.0
-2015-12-19 17:00:00,10775.0
-2015-12-19 18:00:00,11612.0
-2015-12-19 19:00:00,12319.0
-2015-12-19 20:00:00,12330.0
-2015-12-19 21:00:00,12191.0
-2015-12-19 22:00:00,12037.0
-2015-12-19 23:00:00,11780.0
-2015-12-20 00:00:00,11252.0
-2015-12-18 01:00:00,10770.0
-2015-12-18 02:00:00,10207.0
-2015-12-18 03:00:00,9893.0
-2015-12-18 04:00:00,9741.0
-2015-12-18 05:00:00,9733.0
-2015-12-18 06:00:00,10007.0
-2015-12-18 07:00:00,10725.0
-2015-12-18 08:00:00,11854.0
-2015-12-18 09:00:00,12452.0
-2015-12-18 10:00:00,12558.0
-2015-12-18 11:00:00,12535.0
-2015-12-18 12:00:00,12479.0
-2015-12-18 13:00:00,12395.0
-2015-12-18 14:00:00,12301.0
-2015-12-18 15:00:00,12255.0
-2015-12-18 16:00:00,12087.0
-2015-12-18 17:00:00,12210.0
-2015-12-18 18:00:00,13041.0
-2015-12-18 19:00:00,13553.0
-2015-12-18 20:00:00,13272.0
-2015-12-18 21:00:00,13070.0
-2015-12-18 22:00:00,12799.0
-2015-12-18 23:00:00,12421.0
-2015-12-19 00:00:00,11751.0
-2015-12-17 01:00:00,10421.0
-2015-12-17 02:00:00,9817.0
-2015-12-17 03:00:00,9492.0
-2015-12-17 04:00:00,9342.0
-2015-12-17 05:00:00,9349.0
-2015-12-17 06:00:00,9620.0
-2015-12-17 07:00:00,10385.0
-2015-12-17 08:00:00,11563.0
-2015-12-17 09:00:00,12202.0
-2015-12-17 10:00:00,12345.0
-2015-12-17 11:00:00,12389.0
-2015-12-17 12:00:00,12456.0
-2015-12-17 13:00:00,12360.0
-2015-12-17 14:00:00,12186.0
-2015-12-17 15:00:00,12122.0
-2015-12-17 16:00:00,12047.0
-2015-12-17 17:00:00,12134.0
-2015-12-17 18:00:00,12893.0
-2015-12-17 19:00:00,13458.0
-2015-12-17 20:00:00,13254.0
-2015-12-17 21:00:00,13117.0
-2015-12-17 22:00:00,12881.0
-2015-12-17 23:00:00,12399.0
-2015-12-18 00:00:00,11565.0
-2015-12-16 01:00:00,10182.0
-2015-12-16 02:00:00,9598.0
-2015-12-16 03:00:00,9272.0
-2015-12-16 04:00:00,9074.0
-2015-12-16 05:00:00,9045.0
-2015-12-16 06:00:00,9304.0
-2015-12-16 07:00:00,10014.0
-2015-12-16 08:00:00,11149.0
-2015-12-16 09:00:00,11755.0
-2015-12-16 10:00:00,11891.0
-2015-12-16 11:00:00,11980.0
-2015-12-16 12:00:00,12000.0
-2015-12-16 13:00:00,11936.0
-2015-12-16 14:00:00,11692.0
-2015-12-16 15:00:00,11571.0
-2015-12-16 16:00:00,11498.0
-2015-12-16 17:00:00,11480.0
-2015-12-16 18:00:00,12234.0
-2015-12-16 19:00:00,12960.0
-2015-12-16 20:00:00,12892.0
-2015-12-16 21:00:00,12735.0
-2015-12-16 22:00:00,12503.0
-2015-12-16 23:00:00,12023.0
-2015-12-17 00:00:00,11183.0
-2015-12-15 01:00:00,9860.0
-2015-12-15 02:00:00,9270.0
-2015-12-15 03:00:00,8966.0
-2015-12-15 04:00:00,8800.0
-2015-12-15 05:00:00,8765.0
-2015-12-15 06:00:00,9032.0
-2015-12-15 07:00:00,9753.0
-2015-12-15 08:00:00,10913.0
-2015-12-15 09:00:00,11575.0
-2015-12-15 10:00:00,11678.0
-2015-12-15 11:00:00,11746.0
-2015-12-15 12:00:00,11836.0
-2015-12-15 13:00:00,11797.0
-2015-12-15 14:00:00,11752.0
-2015-12-15 15:00:00,11792.0
-2015-12-15 16:00:00,11771.0
-2015-12-15 17:00:00,11849.0
-2015-12-15 18:00:00,12607.0
-2015-12-15 19:00:00,12986.0
-2015-12-15 20:00:00,12815.0
-2015-12-15 21:00:00,12675.0
-2015-12-15 22:00:00,12386.0
-2015-12-15 23:00:00,11879.0
-2015-12-16 00:00:00,11028.0
-2015-12-14 01:00:00,9083.0
-2015-12-14 02:00:00,8666.0
-2015-12-14 03:00:00,8443.0
-2015-12-14 04:00:00,8261.0
-2015-12-14 05:00:00,8282.0
-2015-12-14 06:00:00,8489.0
-2015-12-14 07:00:00,9187.0
-2015-12-14 08:00:00,10417.0
-2015-12-14 09:00:00,11083.0
-2015-12-14 10:00:00,11243.0
-2015-12-14 11:00:00,11342.0
-2015-12-14 12:00:00,11488.0
-2015-12-14 13:00:00,11523.0
-2015-12-14 14:00:00,11544.0
-2015-12-14 15:00:00,11527.0
-2015-12-14 16:00:00,11457.0
-2015-12-14 17:00:00,11599.0
-2015-12-14 18:00:00,12314.0
-2015-12-14 19:00:00,12725.0
-2015-12-14 20:00:00,12570.0
-2015-12-14 21:00:00,12378.0
-2015-12-14 22:00:00,12052.0
-2015-12-14 23:00:00,11534.0
-2015-12-15 00:00:00,10692.0
-2015-12-13 01:00:00,9109.0
-2015-12-13 02:00:00,8597.0
-2015-12-13 03:00:00,8252.0
-2015-12-13 04:00:00,8044.0
-2015-12-13 05:00:00,7927.0
-2015-12-13 06:00:00,7957.0
-2015-12-13 07:00:00,8067.0
-2015-12-13 08:00:00,8361.0
-2015-12-13 09:00:00,8601.0
-2015-12-13 10:00:00,8873.0
-2015-12-13 11:00:00,9134.0
-2015-12-13 12:00:00,9354.0
-2015-12-13 13:00:00,9461.0
-2015-12-13 14:00:00,9564.0
-2015-12-13 15:00:00,9555.0
-2015-12-13 16:00:00,9680.0
-2015-12-13 17:00:00,10053.0
-2015-12-13 18:00:00,10805.0
-2015-12-13 19:00:00,11124.0
-2015-12-13 20:00:00,11093.0
-2015-12-13 21:00:00,11015.0
-2015-12-13 22:00:00,10743.0
-2015-12-13 23:00:00,10342.0
-2015-12-14 00:00:00,9694.0
-2015-12-12 01:00:00,9545.0
-2015-12-12 02:00:00,8926.0
-2015-12-12 03:00:00,8606.0
-2015-12-12 04:00:00,8417.0
-2015-12-12 05:00:00,8305.0
-2015-12-12 06:00:00,8356.0
-2015-12-12 07:00:00,8657.0
-2015-12-12 08:00:00,9114.0
-2015-12-12 09:00:00,9445.0
-2015-12-12 10:00:00,9785.0
-2015-12-12 11:00:00,9992.0
-2015-12-12 12:00:00,10120.0
-2015-12-12 13:00:00,10087.0
-2015-12-12 14:00:00,9952.0
-2015-12-12 15:00:00,9850.0
-2015-12-12 16:00:00,9784.0
-2015-12-12 17:00:00,9939.0
-2015-12-12 18:00:00,10681.0
-2015-12-12 19:00:00,11023.0
-2015-12-12 20:00:00,10924.0
-2015-12-12 21:00:00,10785.0
-2015-12-12 22:00:00,10572.0
-2015-12-12 23:00:00,10294.0
-2015-12-13 00:00:00,9750.0
-2015-12-11 01:00:00,9809.0
-2015-12-11 02:00:00,9258.0
-2015-12-11 03:00:00,8932.0
-2015-12-11 04:00:00,8740.0
-2015-12-11 05:00:00,8723.0
-2015-12-11 06:00:00,8955.0
-2015-12-11 07:00:00,9682.0
-2015-12-11 08:00:00,10819.0
-2015-12-11 09:00:00,11274.0
-2015-12-11 10:00:00,11283.0
-2015-12-11 11:00:00,11356.0
-2015-12-11 12:00:00,11370.0
-2015-12-11 13:00:00,11264.0
-2015-12-11 14:00:00,11142.0
-2015-12-11 15:00:00,11088.0
-2015-12-11 16:00:00,10991.0
-2015-12-11 17:00:00,11044.0
-2015-12-11 18:00:00,11877.0
-2015-12-11 19:00:00,12308.0
-2015-12-11 20:00:00,12095.0
-2015-12-11 21:00:00,11841.0
-2015-12-11 22:00:00,11560.0
-2015-12-11 23:00:00,11113.0
-2015-12-12 00:00:00,10429.0
-2015-12-10 01:00:00,9854.0
-2015-12-10 02:00:00,9317.0
-2015-12-10 03:00:00,9006.0
-2015-12-10 04:00:00,8864.0
-2015-12-10 05:00:00,8828.0
-2015-12-10 06:00:00,9052.0
-2015-12-10 07:00:00,9761.0
-2015-12-10 08:00:00,10904.0
-2015-12-10 09:00:00,11470.0
-2015-12-10 10:00:00,11562.0
-2015-12-10 11:00:00,11611.0
-2015-12-10 12:00:00,11605.0
-2015-12-10 13:00:00,11521.0
-2015-12-10 14:00:00,11470.0
-2015-12-10 15:00:00,11535.0
-2015-12-10 16:00:00,11410.0
-2015-12-10 17:00:00,11441.0
-2015-12-10 18:00:00,12182.0
-2015-12-10 19:00:00,12616.0
-2015-12-10 20:00:00,12458.0
-2015-12-10 21:00:00,12282.0
-2015-12-10 22:00:00,12015.0
-2015-12-10 23:00:00,11520.0
-2015-12-11 00:00:00,10681.0
-2015-12-09 01:00:00,9990.0
-2015-12-09 02:00:00,9415.0
-2015-12-09 03:00:00,9087.0
-2015-12-09 04:00:00,8865.0
-2015-12-09 05:00:00,8828.0
-2015-12-09 06:00:00,9098.0
-2015-12-09 07:00:00,9820.0
-2015-12-09 08:00:00,10965.0
-2015-12-09 09:00:00,11442.0
-2015-12-09 10:00:00,11461.0
-2015-12-09 11:00:00,11443.0
-2015-12-09 12:00:00,11462.0
-2015-12-09 13:00:00,11370.0
-2015-12-09 14:00:00,11256.0
-2015-12-09 15:00:00,11233.0
-2015-12-09 16:00:00,11166.0
-2015-12-09 17:00:00,11230.0
-2015-12-09 18:00:00,12041.0
-2015-12-09 19:00:00,12616.0
-2015-12-09 20:00:00,12462.0
-2015-12-09 21:00:00,12266.0
-2015-12-09 22:00:00,12033.0
-2015-12-09 23:00:00,11477.0
-2015-12-10 00:00:00,10661.0
-2015-12-08 01:00:00,10282.0
-2015-12-08 02:00:00,9723.0
-2015-12-08 03:00:00,9436.0
-2015-12-08 04:00:00,9193.0
-2015-12-08 05:00:00,9198.0
-2015-12-08 06:00:00,9457.0
-2015-12-08 07:00:00,10173.0
-2015-12-08 08:00:00,11349.0
-2015-12-08 09:00:00,11838.0
-2015-12-08 10:00:00,11885.0
-2015-12-08 11:00:00,11920.0
-2015-12-08 12:00:00,11900.0
-2015-12-08 13:00:00,11830.0
-2015-12-08 14:00:00,11756.0
-2015-12-08 15:00:00,11709.0
-2015-12-08 16:00:00,11598.0
-2015-12-08 17:00:00,11690.0
-2015-12-08 18:00:00,12418.0
-2015-12-08 19:00:00,12939.0
-2015-12-08 20:00:00,12741.0
-2015-12-08 21:00:00,12522.0
-2015-12-08 22:00:00,12223.0
-2015-12-08 23:00:00,11697.0
-2015-12-09 00:00:00,10835.0
-2015-12-07 01:00:00,9548.0
-2015-12-07 02:00:00,9209.0
-2015-12-07 03:00:00,8995.0
-2015-12-07 04:00:00,8963.0
-2015-12-07 05:00:00,8976.0
-2015-12-07 06:00:00,9349.0
-2015-12-07 07:00:00,10165.0
-2015-12-07 08:00:00,11398.0
-2015-12-07 09:00:00,12030.0
-2015-12-07 10:00:00,12120.0
-2015-12-07 11:00:00,12192.0
-2015-12-07 12:00:00,12205.0
-2015-12-07 13:00:00,12170.0
-2015-12-07 14:00:00,12146.0
-2015-12-07 15:00:00,12156.0
-2015-12-07 16:00:00,12094.0
-2015-12-07 17:00:00,12176.0
-2015-12-07 18:00:00,12828.0
-2015-12-07 19:00:00,13220.0
-2015-12-07 20:00:00,13053.0
-2015-12-07 21:00:00,12839.0
-2015-12-07 22:00:00,12557.0
-2015-12-07 23:00:00,11968.0
-2015-12-08 00:00:00,11104.0
-2015-12-06 01:00:00,9851.0
-2015-12-06 02:00:00,9374.0
-2015-12-06 03:00:00,9023.0
-2015-12-06 04:00:00,8853.0
-2015-12-06 05:00:00,8772.0
-2015-12-06 06:00:00,8822.0
-2015-12-06 07:00:00,8962.0
-2015-12-06 08:00:00,9274.0
-2015-12-06 09:00:00,9322.0
-2015-12-06 10:00:00,9510.0
-2015-12-06 11:00:00,9572.0
-2015-12-06 12:00:00,9590.0
-2015-12-06 13:00:00,9505.0
-2015-12-06 14:00:00,9523.0
-2015-12-06 15:00:00,9504.0
-2015-12-06 16:00:00,9568.0
-2015-12-06 17:00:00,9725.0
-2015-12-06 18:00:00,10642.0
-2015-12-06 19:00:00,11226.0
-2015-12-06 20:00:00,11307.0
-2015-12-06 21:00:00,11250.0
-2015-12-06 22:00:00,11107.0
-2015-12-06 23:00:00,10745.0
-2015-12-07 00:00:00,10139.0
-2015-12-05 01:00:00,10180.0
-2015-12-05 02:00:00,9600.0
-2015-12-05 03:00:00,9294.0
-2015-12-05 04:00:00,9078.0
-2015-12-05 05:00:00,9076.0
-2015-12-05 06:00:00,9159.0
-2015-12-05 07:00:00,9492.0
-2015-12-05 08:00:00,10008.0
-2015-12-05 09:00:00,10298.0
-2015-12-05 10:00:00,10623.0
-2015-12-05 11:00:00,10730.0
-2015-12-05 12:00:00,10615.0
-2015-12-05 13:00:00,10469.0
-2015-12-05 14:00:00,10268.0
-2015-12-05 15:00:00,10042.0
-2015-12-05 16:00:00,9890.0
-2015-12-05 17:00:00,10009.0
-2015-12-05 18:00:00,10847.0
-2015-12-05 19:00:00,11524.0
-2015-12-05 20:00:00,11479.0
-2015-12-05 21:00:00,11395.0
-2015-12-05 22:00:00,11224.0
-2015-12-05 23:00:00,10987.0
-2015-12-06 00:00:00,10439.0
-2015-12-04 01:00:00,10413.0
-2015-12-04 02:00:00,9868.0
-2015-12-04 03:00:00,9569.0
-2015-12-04 04:00:00,9389.0
-2015-12-04 05:00:00,9393.0
-2015-12-04 06:00:00,9655.0
-2015-12-04 07:00:00,10360.0
-2015-12-04 08:00:00,11491.0
-2015-12-04 09:00:00,11959.0
-2015-12-04 10:00:00,12016.0
-2015-12-04 11:00:00,11959.0
-2015-12-04 12:00:00,11830.0
-2015-12-04 13:00:00,11668.0
-2015-12-04 14:00:00,11490.0
-2015-12-04 15:00:00,11407.0
-2015-12-04 16:00:00,11274.0
-2015-12-04 17:00:00,11249.0
-2015-12-04 18:00:00,11939.0
-2015-12-04 19:00:00,12516.0
-2015-12-04 20:00:00,12385.0
-2015-12-04 21:00:00,12184.0
-2015-12-04 22:00:00,11912.0
-2015-12-04 23:00:00,11551.0
-2015-12-05 00:00:00,10871.0
-2015-12-03 01:00:00,10426.0
-2015-12-03 02:00:00,9930.0
-2015-12-03 03:00:00,9642.0
-2015-12-03 04:00:00,9448.0
-2015-12-03 05:00:00,9402.0
-2015-12-03 06:00:00,9672.0
-2015-12-03 07:00:00,10387.0
-2015-12-03 08:00:00,11514.0
-2015-12-03 09:00:00,12036.0
-2015-12-03 10:00:00,12210.0
-2015-12-03 11:00:00,12296.0
-2015-12-03 12:00:00,12384.0
-2015-12-03 13:00:00,12355.0
-2015-12-03 14:00:00,12289.0
-2015-12-03 15:00:00,12328.0
-2015-12-03 16:00:00,12258.0
-2015-12-03 17:00:00,12346.0
-2015-12-03 18:00:00,12952.0
-2015-12-03 19:00:00,13256.0
-2015-12-03 20:00:00,13037.0
-2015-12-03 21:00:00,12813.0
-2015-12-03 22:00:00,12530.0
-2015-12-03 23:00:00,12036.0
-2015-12-04 00:00:00,11235.0
-2015-12-02 01:00:00,9989.0
-2015-12-02 02:00:00,9504.0
-2015-12-02 03:00:00,9226.0
-2015-12-02 04:00:00,9073.0
-2015-12-02 05:00:00,9067.0
-2015-12-02 06:00:00,9451.0
-2015-12-02 07:00:00,10220.0
-2015-12-02 08:00:00,11350.0
-2015-12-02 09:00:00,11941.0
-2015-12-02 10:00:00,12140.0
-2015-12-02 11:00:00,12180.0
-2015-12-02 12:00:00,12204.0
-2015-12-02 13:00:00,12137.0
-2015-12-02 14:00:00,12091.0
-2015-12-02 15:00:00,12102.0
-2015-12-02 16:00:00,12021.0
-2015-12-02 17:00:00,12140.0
-2015-12-02 18:00:00,12868.0
-2015-12-02 19:00:00,13263.0
-2015-12-02 20:00:00,13081.0
-2015-12-02 21:00:00,12894.0
-2015-12-02 22:00:00,12581.0
-2015-12-02 23:00:00,12048.0
-2015-12-03 00:00:00,11222.0
-2015-12-01 01:00:00,9843.0
-2015-12-01 02:00:00,9360.0
-2015-12-01 03:00:00,9075.0
-2015-12-01 04:00:00,8911.0
-2015-12-01 05:00:00,8840.0
-2015-12-01 06:00:00,9068.0
-2015-12-01 07:00:00,9770.0
-2015-12-01 08:00:00,10996.0
-2015-12-01 09:00:00,11570.0
-2015-12-01 10:00:00,11696.0
-2015-12-01 11:00:00,11766.0
-2015-12-01 12:00:00,11722.0
-2015-12-01 13:00:00,11573.0
-2015-12-01 14:00:00,11524.0
-2015-12-01 15:00:00,11577.0
-2015-12-01 16:00:00,11473.0
-2015-12-01 17:00:00,11501.0
-2015-12-01 18:00:00,12193.0
-2015-12-01 19:00:00,12709.0
-2015-12-01 20:00:00,12540.0
-2015-12-01 21:00:00,12367.0
-2015-12-01 22:00:00,12073.0
-2015-12-01 23:00:00,11539.0
-2015-12-02 00:00:00,10745.0
-2015-11-30 01:00:00,9332.0
-2015-11-30 02:00:00,8931.0
-2015-11-30 03:00:00,8743.0
-2015-11-30 04:00:00,8671.0
-2015-11-30 05:00:00,8694.0
-2015-11-30 06:00:00,8998.0
-2015-11-30 07:00:00,9825.0
-2015-11-30 08:00:00,11003.0
-2015-11-30 09:00:00,11599.0
-2015-11-30 10:00:00,11724.0
-2015-11-30 11:00:00,11822.0
-2015-11-30 12:00:00,11917.0
-2015-11-30 13:00:00,11947.0
-2015-11-30 14:00:00,11904.0
-2015-11-30 15:00:00,11871.0
-2015-11-30 16:00:00,11850.0
-2015-11-30 17:00:00,11908.0
-2015-11-30 18:00:00,12523.0
-2015-11-30 19:00:00,12842.0
-2015-11-30 20:00:00,12609.0
-2015-11-30 21:00:00,12408.0
-2015-11-30 22:00:00,12071.0
-2015-11-30 23:00:00,11514.0
-2015-12-01 00:00:00,10670.0
-2015-11-29 01:00:00,9528.0
-2015-11-29 02:00:00,9115.0
-2015-11-29 03:00:00,8863.0
-2015-11-29 04:00:00,8714.0
-2015-11-29 05:00:00,8692.0
-2015-11-29 06:00:00,8715.0
-2015-11-29 07:00:00,8903.0
-2015-11-29 08:00:00,9141.0
-2015-11-29 09:00:00,9226.0
-2015-11-29 10:00:00,9417.0
-2015-11-29 11:00:00,9542.0
-2015-11-29 12:00:00,9585.0
-2015-11-29 13:00:00,9614.0
-2015-11-29 14:00:00,9570.0
-2015-11-29 15:00:00,9557.0
-2015-11-29 16:00:00,9628.0
-2015-11-29 17:00:00,9852.0
-2015-11-29 18:00:00,10675.0
-2015-11-29 19:00:00,11270.0
-2015-11-29 20:00:00,11253.0
-2015-11-29 21:00:00,11180.0
-2015-11-29 22:00:00,10876.0
-2015-11-29 23:00:00,10498.0
-2015-11-30 00:00:00,9847.0
-2015-11-28 01:00:00,9302.0
-2015-11-28 02:00:00,8864.0
-2015-11-28 03:00:00,8605.0
-2015-11-28 04:00:00,8446.0
-2015-11-28 05:00:00,8382.0
-2015-11-28 06:00:00,8467.0
-2015-11-28 07:00:00,8711.0
-2015-11-28 08:00:00,9159.0
-2015-11-28 09:00:00,9381.0
-2015-11-28 10:00:00,9769.0
-2015-11-28 11:00:00,10000.0
-2015-11-28 12:00:00,10114.0
-2015-11-28 13:00:00,10063.0
-2015-11-28 14:00:00,10012.0
-2015-11-28 15:00:00,9879.0
-2015-11-28 16:00:00,9871.0
-2015-11-28 17:00:00,9965.0
-2015-11-28 18:00:00,10642.0
-2015-11-28 19:00:00,11071.0
-2015-11-28 20:00:00,10997.0
-2015-11-28 21:00:00,10862.0
-2015-11-28 22:00:00,10711.0
-2015-11-28 23:00:00,10486.0
-2015-11-29 00:00:00,9989.0
-2015-11-27 01:00:00,8284.0
-2015-11-27 02:00:00,7984.0
-2015-11-27 03:00:00,7812.0
-2015-11-27 04:00:00,7690.0
-2015-11-27 05:00:00,7691.0
-2015-11-27 06:00:00,7841.0
-2015-11-27 07:00:00,8294.0
-2015-11-27 08:00:00,8907.0
-2015-11-27 09:00:00,9213.0
-2015-11-27 10:00:00,9539.0
-2015-11-27 11:00:00,9829.0
-2015-11-27 12:00:00,10067.0
-2015-11-27 13:00:00,10164.0
-2015-11-27 14:00:00,10204.0
-2015-11-27 15:00:00,10282.0
-2015-11-27 16:00:00,10337.0
-2015-11-27 17:00:00,10526.0
-2015-11-27 18:00:00,11082.0
-2015-11-27 19:00:00,11269.0
-2015-11-27 20:00:00,11128.0
-2015-11-27 21:00:00,10917.0
-2015-11-27 22:00:00,10684.0
-2015-11-27 23:00:00,10368.0
-2015-11-28 00:00:00,9834.0
-2015-11-26 01:00:00,9230.0
-2015-11-26 02:00:00,8734.0
-2015-11-26 03:00:00,8406.0
-2015-11-26 04:00:00,8214.0
-2015-11-26 05:00:00,8069.0
-2015-11-26 06:00:00,8081.0
-2015-11-26 07:00:00,8251.0
-2015-11-26 08:00:00,8445.0
-2015-11-26 09:00:00,8442.0
-2015-11-26 10:00:00,8738.0
-2015-11-26 11:00:00,9066.0
-2015-11-26 12:00:00,9318.0
-2015-11-26 13:00:00,9448.0
-2015-11-26 14:00:00,9357.0
-2015-11-26 15:00:00,9223.0
-2015-11-26 16:00:00,9119.0
-2015-11-26 17:00:00,9021.0
-2015-11-26 18:00:00,9316.0
-2015-11-26 19:00:00,9399.0
-2015-11-26 20:00:00,9240.0
-2015-11-26 21:00:00,9149.0
-2015-11-26 22:00:00,9053.0
-2015-11-26 23:00:00,8895.0
-2015-11-27 00:00:00,8651.0
-2015-11-25 01:00:00,10075.0
-2015-11-25 02:00:00,9578.0
-2015-11-25 03:00:00,9295.0
-2015-11-25 04:00:00,9133.0
-2015-11-25 05:00:00,9126.0
-2015-11-25 06:00:00,9330.0
-2015-11-25 07:00:00,9954.0
-2015-11-25 08:00:00,10819.0
-2015-11-25 09:00:00,11155.0
-2015-11-25 10:00:00,11324.0
-2015-11-25 11:00:00,11385.0
-2015-11-25 12:00:00,11434.0
-2015-11-25 13:00:00,11422.0
-2015-11-25 14:00:00,11345.0
-2015-11-25 15:00:00,11438.0
-2015-11-25 16:00:00,11390.0
-2015-11-25 17:00:00,11395.0
-2015-11-25 18:00:00,11829.0
-2015-11-25 19:00:00,12040.0
-2015-11-25 20:00:00,11715.0
-2015-11-25 21:00:00,11440.0
-2015-11-25 22:00:00,11138.0
-2015-11-25 23:00:00,10678.0
-2015-11-26 00:00:00,9978.0
-2015-11-24 01:00:00,10219.0
-2015-11-24 02:00:00,9767.0
-2015-11-24 03:00:00,9557.0
-2015-11-24 04:00:00,9432.0
-2015-11-24 05:00:00,9442.0
-2015-11-24 06:00:00,9742.0
-2015-11-24 07:00:00,10430.0
-2015-11-24 08:00:00,11470.0
-2015-11-24 09:00:00,11837.0
-2015-11-24 10:00:00,11999.0
-2015-11-24 11:00:00,11949.0
-2015-11-24 12:00:00,11839.0
-2015-11-24 13:00:00,11861.0
-2015-11-24 14:00:00,11570.0
-2015-11-24 15:00:00,11503.0
-2015-11-24 16:00:00,11426.0
-2015-11-24 17:00:00,11452.0
-2015-11-24 18:00:00,12087.0
-2015-11-24 19:00:00,12603.0
-2015-11-24 20:00:00,12397.0
-2015-11-24 21:00:00,12222.0
-2015-11-24 22:00:00,11935.0
-2015-11-24 23:00:00,11500.0
-2015-11-25 00:00:00,10791.0
-2015-11-23 01:00:00,10111.0
-2015-11-23 02:00:00,9731.0
-2015-11-23 03:00:00,9523.0
-2015-11-23 04:00:00,9402.0
-2015-11-23 05:00:00,9454.0
-2015-11-23 06:00:00,9817.0
-2015-11-23 07:00:00,10494.0
-2015-11-23 08:00:00,11585.0
-2015-11-23 09:00:00,11916.0
-2015-11-23 10:00:00,12033.0
-2015-11-23 11:00:00,12068.0
-2015-11-23 12:00:00,12119.0
-2015-11-23 13:00:00,12111.0
-2015-11-23 14:00:00,12010.0
-2015-11-23 15:00:00,11860.0
-2015-11-23 16:00:00,11673.0
-2015-11-23 17:00:00,11623.0
-2015-11-23 18:00:00,12220.0
-2015-11-23 19:00:00,12878.0
-2015-11-23 20:00:00,12711.0
-2015-11-23 21:00:00,12499.0
-2015-11-23 22:00:00,12196.0
-2015-11-23 23:00:00,11661.0
-2015-11-24 00:00:00,10903.0
-2015-11-22 01:00:00,10216.0
-2015-11-22 02:00:00,9859.0
-2015-11-22 03:00:00,9608.0
-2015-11-22 04:00:00,9502.0
-2015-11-22 05:00:00,9462.0
-2015-11-22 06:00:00,9388.0
-2015-11-22 07:00:00,9585.0
-2015-11-22 08:00:00,9836.0
-2015-11-22 09:00:00,9929.0
-2015-11-22 10:00:00,10113.0
-2015-11-22 11:00:00,10176.0
-2015-11-22 12:00:00,10220.0
-2015-11-22 13:00:00,10212.0
-2015-11-22 14:00:00,10219.0
-2015-11-22 15:00:00,10191.0
-2015-11-22 16:00:00,10226.0
-2015-11-22 17:00:00,10479.0
-2015-11-22 18:00:00,11246.0
-2015-11-22 19:00:00,11925.0
-2015-11-22 20:00:00,11912.0
-2015-11-22 21:00:00,11830.0
-2015-11-22 22:00:00,11572.0
-2015-11-22 23:00:00,11236.0
-2015-11-23 00:00:00,10589.0
-2015-11-21 01:00:00,10087.0
-2015-11-21 02:00:00,9587.0
-2015-11-21 03:00:00,9294.0
-2015-11-21 04:00:00,9116.0
-2015-11-21 05:00:00,9079.0
-2015-11-21 06:00:00,9157.0
-2015-11-21 07:00:00,9412.0
-2015-11-21 08:00:00,9915.0
-2015-11-21 09:00:00,10159.0
-2015-11-21 10:00:00,10631.0
-2015-11-21 11:00:00,10929.0
-2015-11-21 12:00:00,11155.0
-2015-11-21 13:00:00,11179.0
-2015-11-21 14:00:00,11162.0
-2015-11-21 15:00:00,10995.0
-2015-11-21 16:00:00,10911.0
-2015-11-21 17:00:00,10916.0
-2015-11-21 18:00:00,11461.0
-2015-11-21 19:00:00,11919.0
-2015-11-21 20:00:00,11876.0
-2015-11-21 21:00:00,11698.0
-2015-11-21 22:00:00,11497.0
-2015-11-21 23:00:00,11161.0
-2015-11-22 00:00:00,10700.0
-2015-11-20 01:00:00,9890.0
-2015-11-20 02:00:00,9463.0
-2015-11-20 03:00:00,9182.0
-2015-11-20 04:00:00,9029.0
-2015-11-20 05:00:00,9020.0
-2015-11-20 06:00:00,9287.0
-2015-11-20 07:00:00,10009.0
-2015-11-20 08:00:00,11057.0
-2015-11-20 09:00:00,11399.0
-2015-11-20 10:00:00,11501.0
-2015-11-20 11:00:00,11543.0
-2015-11-20 12:00:00,11493.0
-2015-11-20 13:00:00,11468.0
-2015-11-20 14:00:00,11460.0
-2015-11-20 15:00:00,11455.0
-2015-11-20 16:00:00,11439.0
-2015-11-20 17:00:00,11474.0
-2015-11-20 18:00:00,12012.0
-2015-11-20 19:00:00,12287.0
-2015-11-20 20:00:00,12091.0
-2015-11-20 21:00:00,11917.0
-2015-11-20 22:00:00,11679.0
-2015-11-20 23:00:00,11328.0
-2015-11-21 00:00:00,10720.0
-2015-11-19 01:00:00,9234.0
-2015-11-19 02:00:00,8808.0
-2015-11-19 03:00:00,8546.0
-2015-11-19 04:00:00,8400.0
-2015-11-19 05:00:00,8388.0
-2015-11-19 06:00:00,8634.0
-2015-11-19 07:00:00,9368.0
-2015-11-19 08:00:00,10523.0
-2015-11-19 09:00:00,11024.0
-2015-11-19 10:00:00,11145.0
-2015-11-19 11:00:00,11256.0
-2015-11-19 12:00:00,11317.0
-2015-11-19 13:00:00,11319.0
-2015-11-19 14:00:00,11266.0
-2015-11-19 15:00:00,11285.0
-2015-11-19 16:00:00,11243.0
-2015-11-19 17:00:00,11243.0
-2015-11-19 18:00:00,11815.0
-2015-11-19 19:00:00,12379.0
-2015-11-19 20:00:00,12245.0
-2015-11-19 21:00:00,12009.0
-2015-11-19 22:00:00,11759.0
-2015-11-19 23:00:00,11305.0
-2015-11-20 00:00:00,10580.0
-2015-11-18 01:00:00,9216.0
-2015-11-18 02:00:00,8752.0
-2015-11-18 03:00:00,8493.0
-2015-11-18 04:00:00,8321.0
-2015-11-18 05:00:00,8310.0
-2015-11-18 06:00:00,8470.0
-2015-11-18 07:00:00,9089.0
-2015-11-18 08:00:00,10187.0
-2015-11-18 09:00:00,10793.0
-2015-11-18 10:00:00,11152.0
-2015-11-18 11:00:00,11334.0
-2015-11-18 12:00:00,11405.0
-2015-11-18 13:00:00,11349.0
-2015-11-18 14:00:00,11304.0
-2015-11-18 15:00:00,11298.0
-2015-11-18 16:00:00,11163.0
-2015-11-18 17:00:00,11050.0
-2015-11-18 18:00:00,11426.0
-2015-11-18 19:00:00,11914.0
-2015-11-18 20:00:00,11711.0
-2015-11-18 21:00:00,11497.0
-2015-11-18 22:00:00,11205.0
-2015-11-18 23:00:00,10696.0
-2015-11-19 00:00:00,9970.0
-2015-11-17 01:00:00,9234.0
-2015-11-17 02:00:00,8756.0
-2015-11-17 03:00:00,8482.0
-2015-11-17 04:00:00,8318.0
-2015-11-17 05:00:00,8293.0
-2015-11-17 06:00:00,8514.0
-2015-11-17 07:00:00,9254.0
-2015-11-17 08:00:00,10333.0
-2015-11-17 09:00:00,10887.0
-2015-11-17 10:00:00,11102.0
-2015-11-17 11:00:00,11224.0
-2015-11-17 12:00:00,11355.0
-2015-11-17 13:00:00,11414.0
-2015-11-17 14:00:00,11473.0
-2015-11-17 15:00:00,11611.0
-2015-11-17 16:00:00,11640.0
-2015-11-17 17:00:00,11604.0
-2015-11-17 18:00:00,11982.0
-2015-11-17 19:00:00,12122.0
-2015-11-17 20:00:00,11858.0
-2015-11-17 21:00:00,11548.0
-2015-11-17 22:00:00,11251.0
-2015-11-17 23:00:00,10688.0
-2015-11-18 00:00:00,9929.0
-2015-11-16 01:00:00,8404.0
-2015-11-16 02:00:00,8102.0
-2015-11-16 03:00:00,7957.0
-2015-11-16 04:00:00,7850.0
-2015-11-16 05:00:00,7907.0
-2015-11-16 06:00:00,8194.0
-2015-11-16 07:00:00,8990.0
-2015-11-16 08:00:00,10086.0
-2015-11-16 09:00:00,10608.0
-2015-11-16 10:00:00,10799.0
-2015-11-16 11:00:00,10929.0
-2015-11-16 12:00:00,11092.0
-2015-11-16 13:00:00,11118.0
-2015-11-16 14:00:00,11087.0
-2015-11-16 15:00:00,11168.0
-2015-11-16 16:00:00,11109.0
-2015-11-16 17:00:00,11131.0
-2015-11-16 18:00:00,11644.0
-2015-11-16 19:00:00,12007.0
-2015-11-16 20:00:00,11787.0
-2015-11-16 21:00:00,11538.0
-2015-11-16 22:00:00,11252.0
-2015-11-16 23:00:00,10695.0
-2015-11-17 00:00:00,9924.0
-2015-11-15 01:00:00,8834.0
-2015-11-15 02:00:00,8424.0
-2015-11-15 03:00:00,8163.0
-2015-11-15 04:00:00,8008.0
-2015-11-15 05:00:00,7968.0
-2015-11-15 06:00:00,8008.0
-2015-11-15 07:00:00,8118.0
-2015-11-15 08:00:00,8343.0
-2015-11-15 09:00:00,8310.0
-2015-11-15 10:00:00,8541.0
-2015-11-15 11:00:00,8659.0
-2015-11-15 12:00:00,8797.0
-2015-11-15 13:00:00,8875.0
-2015-11-15 14:00:00,8893.0
-2015-11-15 15:00:00,8856.0
-2015-11-15 16:00:00,8792.0
-2015-11-15 17:00:00,8827.0
-2015-11-15 18:00:00,9352.0
-2015-11-15 19:00:00,10120.0
-2015-11-15 20:00:00,10100.0
-2015-11-15 21:00:00,10014.0
-2015-11-15 22:00:00,9789.0
-2015-11-15 23:00:00,9435.0
-2015-11-16 00:00:00,8924.0
-2015-11-14 01:00:00,9683.0
-2015-11-14 02:00:00,9232.0
-2015-11-14 03:00:00,8960.0
-2015-11-14 04:00:00,8808.0
-2015-11-14 05:00:00,8799.0
-2015-11-14 06:00:00,8875.0
-2015-11-14 07:00:00,9215.0
-2015-11-14 08:00:00,9610.0
-2015-11-14 09:00:00,9739.0
-2015-11-14 10:00:00,9981.0
-2015-11-14 11:00:00,10059.0
-2015-11-14 12:00:00,10040.0
-2015-11-14 13:00:00,9921.0
-2015-11-14 14:00:00,9766.0
-2015-11-14 15:00:00,9524.0
-2015-11-14 16:00:00,9397.0
-2015-11-14 17:00:00,9370.0
-2015-11-14 18:00:00,9874.0
-2015-11-14 19:00:00,10492.0
-2015-11-14 20:00:00,10410.0
-2015-11-14 21:00:00,10242.0
-2015-11-14 22:00:00,10062.0
-2015-11-14 23:00:00,9782.0
-2015-11-15 00:00:00,9289.0
-2015-11-13 01:00:00,9595.0
-2015-11-13 02:00:00,9173.0
-2015-11-13 03:00:00,8912.0
-2015-11-13 04:00:00,8784.0
-2015-11-13 05:00:00,8745.0
-2015-11-13 06:00:00,9020.0
-2015-11-13 07:00:00,9760.0
-2015-11-13 08:00:00,10751.0
-2015-11-13 09:00:00,11164.0
-2015-11-13 10:00:00,11342.0
-2015-11-13 11:00:00,11404.0
-2015-11-13 12:00:00,11419.0
-2015-11-13 13:00:00,11383.0
-2015-11-13 14:00:00,11282.0
-2015-11-13 15:00:00,11237.0
-2015-11-13 16:00:00,11062.0
-2015-11-13 17:00:00,10999.0
-2015-11-13 18:00:00,11384.0
-2015-11-13 19:00:00,11954.0
-2015-11-13 20:00:00,11820.0
-2015-11-13 21:00:00,11597.0
-2015-11-13 22:00:00,11288.0
-2015-11-13 23:00:00,10908.0
-2015-11-14 00:00:00,10255.0
-2015-11-12 01:00:00,9123.0
-2015-11-12 02:00:00,8681.0
-2015-11-12 03:00:00,8451.0
-2015-11-12 04:00:00,8291.0
-2015-11-12 05:00:00,8343.0
-2015-11-12 06:00:00,8623.0
-2015-11-12 07:00:00,9352.0
-2015-11-12 08:00:00,10523.0
-2015-11-12 09:00:00,11175.0
-2015-11-12 10:00:00,11451.0
-2015-11-12 11:00:00,11576.0
-2015-11-12 12:00:00,11643.0
-2015-11-12 13:00:00,11679.0
-2015-11-12 14:00:00,11657.0
-2015-11-12 15:00:00,11673.0
-2015-11-12 16:00:00,11611.0
-2015-11-12 17:00:00,11517.0
-2015-11-12 18:00:00,11754.0
-2015-11-12 19:00:00,12254.0
-2015-11-12 20:00:00,12057.0
-2015-11-12 21:00:00,11855.0
-2015-11-12 22:00:00,11550.0
-2015-11-12 23:00:00,11014.0
-2015-11-13 00:00:00,10273.0
-2015-11-11 01:00:00,9283.0
-2015-11-11 02:00:00,8837.0
-2015-11-11 03:00:00,8587.0
-2015-11-11 04:00:00,8450.0
-2015-11-11 05:00:00,8444.0
-2015-11-11 06:00:00,8677.0
-2015-11-11 07:00:00,9344.0
-2015-11-11 08:00:00,10250.0
-2015-11-11 09:00:00,10611.0
-2015-11-11 10:00:00,10766.0
-2015-11-11 11:00:00,10814.0
-2015-11-11 12:00:00,10921.0
-2015-11-11 13:00:00,11006.0
-2015-11-11 14:00:00,11012.0
-2015-11-11 15:00:00,11019.0
-2015-11-11 16:00:00,10982.0
-2015-11-11 17:00:00,11058.0
-2015-11-11 18:00:00,11566.0
-2015-11-11 19:00:00,11855.0
-2015-11-11 20:00:00,11677.0
-2015-11-11 21:00:00,11421.0
-2015-11-11 22:00:00,11026.0
-2015-11-11 23:00:00,10491.0
-2015-11-12 00:00:00,9770.0
-2015-11-10 01:00:00,9229.0
-2015-11-10 02:00:00,8804.0
-2015-11-10 03:00:00,8580.0
-2015-11-10 04:00:00,8464.0
-2015-11-10 05:00:00,8461.0
-2015-11-10 06:00:00,8702.0
-2015-11-10 07:00:00,9469.0
-2015-11-10 08:00:00,10569.0
-2015-11-10 09:00:00,10982.0
-2015-11-10 10:00:00,11048.0
-2015-11-10 11:00:00,11028.0
-2015-11-10 12:00:00,11040.0
-2015-11-10 13:00:00,11027.0
-2015-11-10 14:00:00,10960.0
-2015-11-10 15:00:00,10962.0
-2015-11-10 16:00:00,10838.0
-2015-11-10 17:00:00,10732.0
-2015-11-10 18:00:00,11039.0
-2015-11-10 19:00:00,11708.0
-2015-11-10 20:00:00,11560.0
-2015-11-10 21:00:00,11387.0
-2015-11-10 22:00:00,11109.0
-2015-11-10 23:00:00,10597.0
-2015-11-11 00:00:00,9917.0
-2015-11-09 01:00:00,8665.0
-2015-11-09 02:00:00,8407.0
-2015-11-09 03:00:00,8254.0
-2015-11-09 04:00:00,8214.0
-2015-11-09 05:00:00,8283.0
-2015-11-09 06:00:00,8614.0
-2015-11-09 07:00:00,9424.0
-2015-11-09 08:00:00,10481.0
-2015-11-09 09:00:00,10923.0
-2015-11-09 10:00:00,11084.0
-2015-11-09 11:00:00,11010.0
-2015-11-09 12:00:00,11041.0
-2015-11-09 13:00:00,11005.0
-2015-11-09 14:00:00,10911.0
-2015-11-09 15:00:00,10936.0
-2015-11-09 16:00:00,10803.0
-2015-11-09 17:00:00,10711.0
-2015-11-09 18:00:00,11076.0
-2015-11-09 19:00:00,11742.0
-2015-11-09 20:00:00,11627.0
-2015-11-09 21:00:00,11428.0
-2015-11-09 22:00:00,11103.0
-2015-11-09 23:00:00,10600.0
-2015-11-10 00:00:00,9913.0
-2015-11-08 01:00:00,8846.0
-2015-11-08 02:00:00,8506.0
-2015-11-08 03:00:00,8263.0
-2015-11-08 04:00:00,8171.0
-2015-11-08 05:00:00,8107.0
-2015-11-08 06:00:00,8153.0
-2015-11-08 07:00:00,8319.0
-2015-11-08 08:00:00,8472.0
-2015-11-08 09:00:00,8511.0
-2015-11-08 10:00:00,8699.0
-2015-11-08 11:00:00,8836.0
-2015-11-08 12:00:00,8891.0
-2015-11-08 13:00:00,8930.0
-2015-11-08 14:00:00,8884.0
-2015-11-08 15:00:00,8841.0
-2015-11-08 16:00:00,8801.0
-2015-11-08 17:00:00,8867.0
-2015-11-08 18:00:00,9391.0
-2015-11-08 19:00:00,10201.0
-2015-11-08 20:00:00,10256.0
-2015-11-08 21:00:00,10199.0
-2015-11-08 22:00:00,9991.0
-2015-11-08 23:00:00,9662.0
-2015-11-09 00:00:00,9133.0
-2015-11-07 01:00:00,9128.0
-2015-11-07 02:00:00,8690.0
-2015-11-07 03:00:00,8389.0
-2015-11-07 04:00:00,8237.0
-2015-11-07 05:00:00,8171.0
-2015-11-07 06:00:00,8284.0
-2015-11-07 07:00:00,8564.0
-2015-11-07 08:00:00,8918.0
-2015-11-07 09:00:00,9117.0
-2015-11-07 10:00:00,9430.0
-2015-11-07 11:00:00,9560.0
-2015-11-07 12:00:00,9642.0
-2015-11-07 13:00:00,9592.0
-2015-11-07 14:00:00,9539.0
-2015-11-07 15:00:00,9341.0
-2015-11-07 16:00:00,9228.0
-2015-11-07 17:00:00,9200.0
-2015-11-07 18:00:00,9595.0
-2015-11-07 19:00:00,10292.0
-2015-11-07 20:00:00,10270.0
-2015-11-07 21:00:00,10185.0
-2015-11-07 22:00:00,10050.0
-2015-11-07 23:00:00,9775.0
-2015-11-08 00:00:00,9310.0
-2015-11-06 01:00:00,9268.0
-2015-11-06 02:00:00,8767.0
-2015-11-06 03:00:00,8488.0
-2015-11-06 04:00:00,8236.0
-2015-11-06 05:00:00,8101.0
-2015-11-06 06:00:00,8219.0
-2015-11-06 07:00:00,8770.0
-2015-11-06 08:00:00,9749.0
-2015-11-06 09:00:00,10249.0
-2015-11-06 10:00:00,10580.0
-2015-11-06 11:00:00,10790.0
-2015-11-06 12:00:00,10885.0
-2015-11-06 13:00:00,10855.0
-2015-11-06 14:00:00,10829.0
-2015-11-06 15:00:00,10843.0
-2015-11-06 16:00:00,10787.0
-2015-11-06 17:00:00,10753.0
-2015-11-06 18:00:00,11159.0
-2015-11-06 19:00:00,11534.0
-2015-11-06 20:00:00,11343.0
-2015-11-06 21:00:00,11082.0
-2015-11-06 22:00:00,10793.0
-2015-11-06 23:00:00,10410.0
-2015-11-07 00:00:00,9764.0
-2015-11-05 01:00:00,9184.0
-2015-11-05 02:00:00,8720.0
-2015-11-05 03:00:00,8427.0
-2015-11-05 04:00:00,8253.0
-2015-11-05 05:00:00,8228.0
-2015-11-05 06:00:00,8441.0
-2015-11-05 07:00:00,9114.0
-2015-11-05 08:00:00,10109.0
-2015-11-05 09:00:00,10727.0
-2015-11-05 10:00:00,11083.0
-2015-11-05 11:00:00,11256.0
-2015-11-05 12:00:00,11456.0
-2015-11-05 13:00:00,11619.0
-2015-11-05 14:00:00,11641.0
-2015-11-05 15:00:00,11605.0
-2015-11-05 16:00:00,11530.0
-2015-11-05 17:00:00,11447.0
-2015-11-05 18:00:00,11812.0
-2015-11-05 19:00:00,12200.0
-2015-11-05 20:00:00,11968.0
-2015-11-05 21:00:00,11661.0
-2015-11-05 22:00:00,11308.0
-2015-11-05 23:00:00,10729.0
-2015-11-06 00:00:00,9959.0
-2015-11-04 01:00:00,8981.0
-2015-11-04 02:00:00,8545.0
-2015-11-04 03:00:00,8274.0
-2015-11-04 04:00:00,8085.0
-2015-11-04 05:00:00,8016.0
-2015-11-04 06:00:00,8287.0
-2015-11-04 07:00:00,8941.0
-2015-11-04 08:00:00,9891.0
-2015-11-04 09:00:00,10475.0
-2015-11-04 10:00:00,10833.0
-2015-11-04 11:00:00,11031.0
-2015-11-04 12:00:00,11224.0
-2015-11-04 13:00:00,11389.0
-2015-11-04 14:00:00,11515.0
-2015-11-04 15:00:00,11633.0
-2015-11-04 16:00:00,11605.0
-2015-11-04 17:00:00,11495.0
-2015-11-04 18:00:00,11667.0
-2015-11-04 19:00:00,12156.0
-2015-11-04 20:00:00,11937.0
-2015-11-04 21:00:00,11641.0
-2015-11-04 22:00:00,11310.0
-2015-11-04 23:00:00,10715.0
-2015-11-05 00:00:00,9924.0
-2015-11-03 01:00:00,8908.0
-2015-11-03 02:00:00,8468.0
-2015-11-03 03:00:00,8187.0
-2015-11-03 04:00:00,8044.0
-2015-11-03 05:00:00,7996.0
-2015-11-03 06:00:00,8232.0
-2015-11-03 07:00:00,8901.0
-2015-11-03 08:00:00,9827.0
-2015-11-03 09:00:00,10344.0
-2015-11-03 10:00:00,10652.0
-2015-11-03 11:00:00,10933.0
-2015-11-03 12:00:00,11195.0
-2015-11-03 13:00:00,11341.0
-2015-11-03 14:00:00,11378.0
-2015-11-03 15:00:00,11378.0
-2015-11-03 16:00:00,11394.0
-2015-11-03 17:00:00,11269.0
-2015-11-03 18:00:00,11351.0
-2015-11-03 19:00:00,11945.0
-2015-11-03 20:00:00,11739.0
-2015-11-03 21:00:00,11449.0
-2015-11-03 22:00:00,11054.0
-2015-11-03 23:00:00,10454.0
-2015-11-04 00:00:00,9700.0
-2015-11-02 01:00:00,8354.0
-2015-11-02 02:00:00,8045.0
-2015-11-02 03:00:00,7915.0
-2015-11-02 04:00:00,7849.0
-2015-11-02 05:00:00,7844.0
-2015-11-02 06:00:00,8186.0
-2015-11-02 07:00:00,8955.0
-2015-11-02 08:00:00,9901.0
-2015-11-02 09:00:00,10442.0
-2015-11-02 10:00:00,10713.0
-2015-11-02 11:00:00,10888.0
-2015-11-02 12:00:00,11121.0
-2015-11-02 13:00:00,11209.0
-2015-11-02 14:00:00,11237.0
-2015-11-02 15:00:00,11300.0
-2015-11-02 16:00:00,11229.0
-2015-11-02 17:00:00,11130.0
-2015-11-02 18:00:00,11228.0
-2015-11-02 19:00:00,11813.0
-2015-11-02 20:00:00,11644.0
-2015-11-02 21:00:00,11382.0
-2015-11-02 22:00:00,10991.0
-2015-11-02 23:00:00,10386.0
-2015-11-03 00:00:00,9574.0
-2015-11-01 01:00:00,8663.0
-2015-11-01 02:00:00,8270.0
-2015-11-01 02:00:00,7923.0
-2015-11-01 03:00:00,7902.0
-2015-11-01 04:00:00,7761.0
-2015-11-01 05:00:00,7744.0
-2015-11-01 06:00:00,7792.0
-2015-11-01 07:00:00,7981.0
-2015-11-01 08:00:00,8149.0
-2015-11-01 09:00:00,8264.0
-2015-11-01 10:00:00,8509.0
-2015-11-01 11:00:00,8676.0
-2015-11-01 12:00:00,8762.0
-2015-11-01 13:00:00,8798.0
-2015-11-01 14:00:00,8851.0
-2015-11-01 15:00:00,8821.0
-2015-11-01 16:00:00,8812.0
-2015-11-01 17:00:00,8829.0
-2015-11-01 18:00:00,9181.0
-2015-11-01 19:00:00,10004.0
-2015-11-01 20:00:00,10086.0
-2015-11-01 21:00:00,9981.0
-2015-11-01 22:00:00,9686.0
-2015-11-01 23:00:00,9327.0
-2015-11-02 00:00:00,8782.0
-2015-10-31 01:00:00,9110.0
-2015-10-31 02:00:00,8587.0
-2015-10-31 03:00:00,8314.0
-2015-10-31 04:00:00,8085.0
-2015-10-31 05:00:00,8041.0
-2015-10-31 06:00:00,8068.0
-2015-10-31 07:00:00,8329.0
-2015-10-31 08:00:00,8772.0
-2015-10-31 09:00:00,9220.0
-2015-10-31 10:00:00,9558.0
-2015-10-31 11:00:00,9941.0
-2015-10-31 12:00:00,10156.0
-2015-10-31 13:00:00,10239.0
-2015-10-31 14:00:00,10147.0
-2015-10-31 15:00:00,10051.0
-2015-10-31 16:00:00,9899.0
-2015-10-31 17:00:00,9874.0
-2015-10-31 18:00:00,9876.0
-2015-10-31 19:00:00,10079.0
-2015-10-31 20:00:00,10241.0
-2015-10-31 21:00:00,10096.0
-2015-10-31 22:00:00,9876.0
-2015-10-31 23:00:00,9592.0
-2015-11-01 00:00:00,9158.0
-2015-10-30 01:00:00,9337.0
-2015-10-30 02:00:00,8855.0
-2015-10-30 03:00:00,8571.0
-2015-10-30 04:00:00,8452.0
-2015-10-30 05:00:00,8432.0
-2015-10-30 06:00:00,8624.0
-2015-10-30 07:00:00,9349.0
-2015-10-30 08:00:00,10544.0
-2015-10-30 09:00:00,11163.0
-2015-10-30 10:00:00,11137.0
-2015-10-30 11:00:00,11084.0
-2015-10-30 12:00:00,11064.0
-2015-10-30 13:00:00,10977.0
-2015-10-30 14:00:00,10868.0
-2015-10-30 15:00:00,10822.0
-2015-10-30 16:00:00,10660.0
-2015-10-30 17:00:00,10494.0
-2015-10-30 18:00:00,10393.0
-2015-10-30 19:00:00,10590.0
-2015-10-30 20:00:00,11106.0
-2015-10-30 21:00:00,11002.0
-2015-10-30 22:00:00,10737.0
-2015-10-30 23:00:00,10384.0
-2015-10-31 00:00:00,9726.0
-2015-10-29 01:00:00,9406.0
-2015-10-29 02:00:00,8982.0
-2015-10-29 03:00:00,8705.0
-2015-10-29 04:00:00,8539.0
-2015-10-29 05:00:00,8551.0
-2015-10-29 06:00:00,8834.0
-2015-10-29 07:00:00,9561.0
-2015-10-29 08:00:00,10751.0
-2015-10-29 09:00:00,11492.0
-2015-10-29 10:00:00,11581.0
-2015-10-29 11:00:00,11652.0
-2015-10-29 12:00:00,11660.0
-2015-10-29 13:00:00,11570.0
-2015-10-29 14:00:00,11452.0
-2015-10-29 15:00:00,11464.0
-2015-10-29 16:00:00,11315.0
-2015-10-29 17:00:00,11246.0
-2015-10-29 18:00:00,11294.0
-2015-10-29 19:00:00,11563.0
-2015-10-29 20:00:00,11740.0
-2015-10-29 21:00:00,11591.0
-2015-10-29 22:00:00,11349.0
-2015-10-29 23:00:00,10811.0
-2015-10-30 00:00:00,10048.0
-2015-10-28 01:00:00,9181.0
-2015-10-28 02:00:00,8701.0
-2015-10-28 03:00:00,8375.0
-2015-10-28 04:00:00,8200.0
-2015-10-28 05:00:00,8131.0
-2015-10-28 06:00:00,8330.0
-2015-10-28 07:00:00,8964.0
-2015-10-28 08:00:00,10139.0
-2015-10-28 09:00:00,10918.0
-2015-10-28 10:00:00,11079.0
-2015-10-28 11:00:00,11158.0
-2015-10-28 12:00:00,11299.0
-2015-10-28 13:00:00,11298.0
-2015-10-28 14:00:00,11249.0
-2015-10-28 15:00:00,11251.0
-2015-10-28 16:00:00,11182.0
-2015-10-28 17:00:00,11115.0
-2015-10-28 18:00:00,11189.0
-2015-10-28 19:00:00,11481.0
-2015-10-28 20:00:00,11662.0
-2015-10-28 21:00:00,11548.0
-2015-10-28 22:00:00,11303.0
-2015-10-28 23:00:00,10843.0
-2015-10-29 00:00:00,10086.0
-2015-10-27 01:00:00,8996.0
-2015-10-27 02:00:00,8552.0
-2015-10-27 03:00:00,8271.0
-2015-10-27 04:00:00,8074.0
-2015-10-27 05:00:00,8015.0
-2015-10-27 06:00:00,8221.0
-2015-10-27 07:00:00,8922.0
-2015-10-27 08:00:00,10119.0
-2015-10-27 09:00:00,10740.0
-2015-10-27 10:00:00,10816.0
-2015-10-27 11:00:00,10937.0
-2015-10-27 12:00:00,11063.0
-2015-10-27 13:00:00,11118.0
-2015-10-27 14:00:00,11098.0
-2015-10-27 15:00:00,11062.0
-2015-10-27 16:00:00,10985.0
-2015-10-27 17:00:00,10915.0
-2015-10-27 18:00:00,11019.0
-2015-10-27 19:00:00,11346.0
-2015-10-27 20:00:00,11587.0
-2015-10-27 21:00:00,11422.0
-2015-10-27 22:00:00,11178.0
-2015-10-27 23:00:00,10660.0
-2015-10-28 00:00:00,9893.0
-2015-10-26 01:00:00,8433.0
-2015-10-26 02:00:00,8116.0
-2015-10-26 03:00:00,7927.0
-2015-10-26 04:00:00,7859.0
-2015-10-26 05:00:00,7859.0
-2015-10-26 06:00:00,8141.0
-2015-10-26 07:00:00,8845.0
-2015-10-26 08:00:00,10113.0
-2015-10-26 09:00:00,10737.0
-2015-10-26 10:00:00,10804.0
-2015-10-26 11:00:00,10792.0
-2015-10-26 12:00:00,10943.0
-2015-10-26 13:00:00,10948.0
-2015-10-26 14:00:00,10949.0
-2015-10-26 15:00:00,10960.0
-2015-10-26 16:00:00,10860.0
-2015-10-26 17:00:00,10709.0
-2015-10-26 18:00:00,10628.0
-2015-10-26 19:00:00,10774.0
-2015-10-26 20:00:00,11304.0
-2015-10-26 21:00:00,11217.0
-2015-10-26 22:00:00,10981.0
-2015-10-26 23:00:00,10476.0
-2015-10-27 00:00:00,9758.0
-2015-10-25 01:00:00,8471.0
-2015-10-25 02:00:00,8055.0
-2015-10-25 03:00:00,7796.0
-2015-10-25 04:00:00,7597.0
-2015-10-25 05:00:00,7526.0
-2015-10-25 06:00:00,7504.0
-2015-10-25 07:00:00,7669.0
-2015-10-25 08:00:00,7968.0
-2015-10-25 09:00:00,8080.0
-2015-10-25 10:00:00,8286.0
-2015-10-25 11:00:00,8507.0
-2015-10-25 12:00:00,8647.0
-2015-10-25 13:00:00,8736.0
-2015-10-25 14:00:00,8748.0
-2015-10-25 15:00:00,8747.0
-2015-10-25 16:00:00,8712.0
-2015-10-25 17:00:00,8726.0
-2015-10-25 18:00:00,8769.0
-2015-10-25 19:00:00,8995.0
-2015-10-25 20:00:00,9722.0
-2015-10-25 21:00:00,9868.0
-2015-10-25 22:00:00,9684.0
-2015-10-25 23:00:00,9356.0
-2015-10-26 00:00:00,8918.0
-2015-10-24 01:00:00,9167.0
-2015-10-24 02:00:00,8643.0
-2015-10-24 03:00:00,8326.0
-2015-10-24 04:00:00,8087.0
-2015-10-24 05:00:00,8047.0
-2015-10-24 06:00:00,8077.0
-2015-10-24 07:00:00,8364.0
-2015-10-24 08:00:00,8817.0
-2015-10-24 09:00:00,9200.0
-2015-10-24 10:00:00,9631.0
-2015-10-24 11:00:00,10028.0
-2015-10-24 12:00:00,10191.0
-2015-10-24 13:00:00,10058.0
-2015-10-24 14:00:00,9895.0
-2015-10-24 15:00:00,9721.0
-2015-10-24 16:00:00,9564.0
-2015-10-24 17:00:00,9477.0
-2015-10-24 18:00:00,9623.0
-2015-10-24 19:00:00,9802.0
-2015-10-24 20:00:00,10109.0
-2015-10-24 21:00:00,9970.0
-2015-10-24 22:00:00,9808.0
-2015-10-24 23:00:00,9449.0
-2015-10-25 00:00:00,8999.0
-2015-10-23 01:00:00,8989.0
-2015-10-23 02:00:00,8509.0
-2015-10-23 03:00:00,8186.0
-2015-10-23 04:00:00,8041.0
-2015-10-23 05:00:00,7982.0
-2015-10-23 06:00:00,8159.0
-2015-10-23 07:00:00,8802.0
-2015-10-23 08:00:00,9910.0
-2015-10-23 09:00:00,10544.0
-2015-10-23 10:00:00,10715.0
-2015-10-23 11:00:00,10864.0
-2015-10-23 12:00:00,10921.0
-2015-10-23 13:00:00,10960.0
-2015-10-23 14:00:00,10953.0
-2015-10-23 15:00:00,10970.0
-2015-10-23 16:00:00,10880.0
-2015-10-23 17:00:00,10764.0
-2015-10-23 18:00:00,10788.0
-2015-10-23 19:00:00,11041.0
-2015-10-23 20:00:00,11260.0
-2015-10-23 21:00:00,11042.0
-2015-10-23 22:00:00,10773.0
-2015-10-23 23:00:00,10440.0
-2015-10-24 00:00:00,9806.0
-2015-10-22 01:00:00,9204.0
-2015-10-22 02:00:00,8722.0
-2015-10-22 03:00:00,8324.0
-2015-10-22 04:00:00,8085.0
-2015-10-22 05:00:00,8019.0
-2015-10-22 06:00:00,8184.0
-2015-10-22 07:00:00,8774.0
-2015-10-22 08:00:00,9866.0
-2015-10-22 09:00:00,10539.0
-2015-10-22 10:00:00,10699.0
-2015-10-22 11:00:00,10822.0
-2015-10-22 12:00:00,10927.0
-2015-10-22 13:00:00,10966.0
-2015-10-22 14:00:00,11017.0
-2015-10-22 15:00:00,11134.0
-2015-10-22 16:00:00,11074.0
-2015-10-22 17:00:00,10960.0
-2015-10-22 18:00:00,10806.0
-2015-10-22 19:00:00,10771.0
-2015-10-22 20:00:00,11234.0
-2015-10-22 21:00:00,11220.0
-2015-10-22 22:00:00,10905.0
-2015-10-22 23:00:00,10406.0
-2015-10-23 00:00:00,9682.0
-2015-10-21 01:00:00,9061.0
-2015-10-21 02:00:00,8534.0
-2015-10-21 03:00:00,8216.0
-2015-10-21 04:00:00,7993.0
-2015-10-21 05:00:00,7959.0
-2015-10-21 06:00:00,8134.0
-2015-10-21 07:00:00,8773.0
-2015-10-21 08:00:00,9915.0
-2015-10-21 09:00:00,10507.0
-2015-10-21 10:00:00,10748.0
-2015-10-21 11:00:00,10956.0
-2015-10-21 12:00:00,11191.0
-2015-10-21 13:00:00,11362.0
-2015-10-21 14:00:00,11504.0
-2015-10-21 15:00:00,11583.0
-2015-10-21 16:00:00,11574.0
-2015-10-21 17:00:00,11471.0
-2015-10-21 18:00:00,11393.0
-2015-10-21 19:00:00,11317.0
-2015-10-21 20:00:00,11764.0
-2015-10-21 21:00:00,11792.0
-2015-10-21 22:00:00,11413.0
-2015-10-21 23:00:00,10864.0
-2015-10-22 00:00:00,10038.0
-2015-10-20 01:00:00,9000.0
-2015-10-20 02:00:00,8522.0
-2015-10-20 03:00:00,8183.0
-2015-10-20 04:00:00,8001.0
-2015-10-20 05:00:00,7946.0
-2015-10-20 06:00:00,8148.0
-2015-10-20 07:00:00,8791.0
-2015-10-20 08:00:00,9928.0
-2015-10-20 09:00:00,10511.0
-2015-10-20 10:00:00,10675.0
-2015-10-20 11:00:00,10824.0
-2015-10-20 12:00:00,11037.0
-2015-10-20 13:00:00,11122.0
-2015-10-20 14:00:00,11134.0
-2015-10-20 15:00:00,11238.0
-2015-10-20 16:00:00,11226.0
-2015-10-20 17:00:00,11136.0
-2015-10-20 18:00:00,11066.0
-2015-10-20 19:00:00,11054.0
-2015-10-20 20:00:00,11525.0
-2015-10-20 21:00:00,11432.0
-2015-10-20 22:00:00,11123.0
-2015-10-20 23:00:00,10597.0
-2015-10-21 00:00:00,9818.0
-2015-10-19 01:00:00,8490.0
-2015-10-19 02:00:00,8141.0
-2015-10-19 03:00:00,7962.0
-2015-10-19 04:00:00,7878.0
-2015-10-19 05:00:00,7927.0
-2015-10-19 06:00:00,8175.0
-2015-10-19 07:00:00,8936.0
-2015-10-19 08:00:00,10113.0
-2015-10-19 09:00:00,10699.0
-2015-10-19 10:00:00,10829.0
-2015-10-19 11:00:00,10913.0
-2015-10-19 12:00:00,11051.0
-2015-10-19 13:00:00,11118.0
-2015-10-19 14:00:00,11168.0
-2015-10-19 15:00:00,11212.0
-2015-10-19 16:00:00,11164.0
-2015-10-19 17:00:00,11033.0
-2015-10-19 18:00:00,10988.0
-2015-10-19 19:00:00,10969.0
-2015-10-19 20:00:00,11414.0
-2015-10-19 21:00:00,11444.0
-2015-10-19 22:00:00,11118.0
-2015-10-19 23:00:00,10553.0
-2015-10-20 00:00:00,9740.0
-2015-10-18 01:00:00,8752.0
-2015-10-18 02:00:00,8396.0
-2015-10-18 03:00:00,8127.0
-2015-10-18 04:00:00,8031.0
-2015-10-18 05:00:00,7955.0
-2015-10-18 06:00:00,8000.0
-2015-10-18 07:00:00,8100.0
-2015-10-18 08:00:00,8391.0
-2015-10-18 09:00:00,8448.0
-2015-10-18 10:00:00,8670.0
-2015-10-18 11:00:00,8776.0
-2015-10-18 12:00:00,8897.0
-2015-10-18 13:00:00,8899.0
-2015-10-18 14:00:00,8920.0
-2015-10-18 15:00:00,8866.0
-2015-10-18 16:00:00,8780.0
-2015-10-18 17:00:00,8791.0
-2015-10-18 18:00:00,8845.0
-2015-10-18 19:00:00,9034.0
-2015-10-18 20:00:00,9718.0
-2015-10-18 21:00:00,9960.0
-2015-10-18 22:00:00,9779.0
-2015-10-18 23:00:00,9500.0
-2015-10-19 00:00:00,8969.0
-2015-10-17 01:00:00,9128.0
-2015-10-17 02:00:00,8639.0
-2015-10-17 03:00:00,8404.0
-2015-10-17 04:00:00,8226.0
-2015-10-17 05:00:00,8159.0
-2015-10-17 06:00:00,8246.0
-2015-10-17 07:00:00,8506.0
-2015-10-17 08:00:00,9046.0
-2015-10-17 09:00:00,9298.0
-2015-10-17 10:00:00,9586.0
-2015-10-17 11:00:00,9716.0
-2015-10-17 12:00:00,9755.0
-2015-10-17 13:00:00,9663.0
-2015-10-17 14:00:00,9528.0
-2015-10-17 15:00:00,9322.0
-2015-10-17 16:00:00,9197.0
-2015-10-17 17:00:00,9106.0
-2015-10-17 18:00:00,9108.0
-2015-10-17 19:00:00,9217.0
-2015-10-17 20:00:00,9792.0
-2015-10-17 21:00:00,10001.0
-2015-10-17 22:00:00,9882.0
-2015-10-17 23:00:00,9666.0
-2015-10-18 00:00:00,9222.0
-2015-10-16 01:00:00,8950.0
-2015-10-16 02:00:00,8499.0
-2015-10-16 03:00:00,8229.0
-2015-10-16 04:00:00,8070.0
-2015-10-16 05:00:00,8044.0
-2015-10-16 06:00:00,8285.0
-2015-10-16 07:00:00,8820.0
-2015-10-16 08:00:00,10053.0
-2015-10-16 09:00:00,10543.0
-2015-10-16 10:00:00,10728.0
-2015-10-16 11:00:00,10783.0
-2015-10-16 12:00:00,10875.0
-2015-10-16 13:00:00,10825.0
-2015-10-16 14:00:00,10763.0
-2015-10-16 15:00:00,10776.0
-2015-10-16 16:00:00,10624.0
-2015-10-16 17:00:00,10490.0
-2015-10-16 18:00:00,10384.0
-2015-10-16 19:00:00,10350.0
-2015-10-16 20:00:00,10833.0
-2015-10-16 21:00:00,10885.0
-2015-10-16 22:00:00,10660.0
-2015-10-16 23:00:00,10337.0
-2015-10-17 00:00:00,9754.0
-2015-10-15 01:00:00,8887.0
-2015-10-15 02:00:00,8471.0
-2015-10-15 03:00:00,8186.0
-2015-10-15 04:00:00,8007.0
-2015-10-15 05:00:00,7968.0
-2015-10-15 06:00:00,8151.0
-2015-10-15 07:00:00,8804.0
-2015-10-15 08:00:00,9973.0
-2015-10-15 09:00:00,10517.0
-2015-10-15 10:00:00,10763.0
-2015-10-15 11:00:00,10861.0
-2015-10-15 12:00:00,11025.0
-2015-10-15 13:00:00,11081.0
-2015-10-15 14:00:00,11049.0
-2015-10-15 15:00:00,11101.0
-2015-10-15 16:00:00,11089.0
-2015-10-15 17:00:00,11007.0
-2015-10-15 18:00:00,10896.0
-2015-10-15 19:00:00,10787.0
-2015-10-15 20:00:00,11142.0
-2015-10-15 21:00:00,11241.0
-2015-10-15 22:00:00,10938.0
-2015-10-15 23:00:00,10409.0
-2015-10-16 00:00:00,9665.0
-2015-10-14 01:00:00,8824.0
-2015-10-14 02:00:00,8360.0
-2015-10-14 03:00:00,8065.0
-2015-10-14 04:00:00,7912.0
-2015-10-14 05:00:00,7866.0
-2015-10-14 06:00:00,8062.0
-2015-10-14 07:00:00,8709.0
-2015-10-14 08:00:00,9881.0
-2015-10-14 09:00:00,10432.0
-2015-10-14 10:00:00,10627.0
-2015-10-14 11:00:00,10656.0
-2015-10-14 12:00:00,10828.0
-2015-10-14 13:00:00,10870.0
-2015-10-14 14:00:00,10867.0
-2015-10-14 15:00:00,10992.0
-2015-10-14 16:00:00,10925.0
-2015-10-14 17:00:00,10862.0
-2015-10-14 18:00:00,10774.0
-2015-10-14 19:00:00,10677.0
-2015-10-14 20:00:00,11048.0
-2015-10-14 21:00:00,11132.0
-2015-10-14 22:00:00,10869.0
-2015-10-14 23:00:00,10321.0
-2015-10-15 00:00:00,9604.0
-2015-10-13 01:00:00,8895.0
-2015-10-13 02:00:00,8373.0
-2015-10-13 03:00:00,8061.0
-2015-10-13 04:00:00,7861.0
-2015-10-13 05:00:00,7769.0
-2015-10-13 06:00:00,7963.0
-2015-10-13 07:00:00,8644.0
-2015-10-13 08:00:00,9799.0
-2015-10-13 09:00:00,10267.0
-2015-10-13 10:00:00,10532.0
-2015-10-13 11:00:00,10692.0
-2015-10-13 12:00:00,10831.0
-2015-10-13 13:00:00,10870.0
-2015-10-13 14:00:00,10858.0
-2015-10-13 15:00:00,10873.0
-2015-10-13 16:00:00,10836.0
-2015-10-13 17:00:00,10780.0
-2015-10-13 18:00:00,10710.0
-2015-10-13 19:00:00,10663.0
-2015-10-13 20:00:00,10993.0
-2015-10-13 21:00:00,11154.0
-2015-10-13 22:00:00,10820.0
-2015-10-13 23:00:00,10296.0
-2015-10-14 00:00:00,9541.0
-2015-10-12 01:00:00,8606.0
-2015-10-12 02:00:00,8172.0
-2015-10-12 03:00:00,7938.0
-2015-10-12 04:00:00,7768.0
-2015-10-12 05:00:00,7726.0
-2015-10-12 06:00:00,7962.0
-2015-10-12 07:00:00,8570.0
-2015-10-12 08:00:00,9569.0
-2015-10-12 09:00:00,10077.0
-2015-10-12 10:00:00,10631.0
-2015-10-12 11:00:00,11020.0
-2015-10-12 12:00:00,11294.0
-2015-10-12 13:00:00,11332.0
-2015-10-12 14:00:00,11299.0
-2015-10-12 15:00:00,11319.0
-2015-10-12 16:00:00,11402.0
-2015-10-12 17:00:00,11409.0
-2015-10-12 18:00:00,11293.0
-2015-10-12 19:00:00,11150.0
-2015-10-12 20:00:00,11383.0
-2015-10-12 21:00:00,11371.0
-2015-10-12 22:00:00,11003.0
-2015-10-12 23:00:00,10471.0
-2015-10-13 00:00:00,9678.0
-2015-10-11 01:00:00,8446.0
-2015-10-11 02:00:00,8029.0
-2015-10-11 03:00:00,7758.0
-2015-10-11 04:00:00,7556.0
-2015-10-11 05:00:00,7479.0
-2015-10-11 06:00:00,7470.0
-2015-10-11 07:00:00,7600.0
-2015-10-11 08:00:00,7728.0
-2015-10-11 09:00:00,7789.0
-2015-10-11 10:00:00,8135.0
-2015-10-11 11:00:00,8436.0
-2015-10-11 12:00:00,8710.0
-2015-10-11 13:00:00,8923.0
-2015-10-11 14:00:00,9127.0
-2015-10-11 15:00:00,9309.0
-2015-10-11 16:00:00,9436.0
-2015-10-11 17:00:00,9548.0
-2015-10-11 18:00:00,9674.0
-2015-10-11 19:00:00,9716.0
-2015-10-11 20:00:00,10074.0
-2015-10-11 21:00:00,10351.0
-2015-10-11 22:00:00,10072.0
-2015-10-11 23:00:00,9733.0
-2015-10-12 00:00:00,9154.0
-2015-10-10 01:00:00,8872.0
-2015-10-10 02:00:00,8370.0
-2015-10-10 03:00:00,8064.0
-2015-10-10 04:00:00,7891.0
-2015-10-10 05:00:00,7782.0
-2015-10-10 06:00:00,7861.0
-2015-10-10 07:00:00,8085.0
-2015-10-10 08:00:00,8563.0
-2015-10-10 09:00:00,8759.0
-2015-10-10 10:00:00,9124.0
-2015-10-10 11:00:00,9342.0
-2015-10-10 12:00:00,9516.0
-2015-10-10 13:00:00,9527.0
-2015-10-10 14:00:00,9485.0
-2015-10-10 15:00:00,9392.0
-2015-10-10 16:00:00,9344.0
-2015-10-10 17:00:00,9314.0
-2015-10-10 18:00:00,9286.0
-2015-10-10 19:00:00,9284.0
-2015-10-10 20:00:00,9704.0
-2015-10-10 21:00:00,9857.0
-2015-10-10 22:00:00,9756.0
-2015-10-10 23:00:00,9420.0
-2015-10-11 00:00:00,8976.0
-2015-10-09 01:00:00,9590.0
-2015-10-09 02:00:00,9013.0
-2015-10-09 03:00:00,8630.0
-2015-10-09 04:00:00,8351.0
-2015-10-09 05:00:00,8202.0
-2015-10-09 06:00:00,8311.0
-2015-10-09 07:00:00,8903.0
-2015-10-09 08:00:00,9935.0
-2015-10-09 09:00:00,10467.0
-2015-10-09 10:00:00,10712.0
-2015-10-09 11:00:00,10906.0
-2015-10-09 12:00:00,11045.0
-2015-10-09 13:00:00,11023.0
-2015-10-09 14:00:00,10994.0
-2015-10-09 15:00:00,11024.0
-2015-10-09 16:00:00,10897.0
-2015-10-09 17:00:00,10667.0
-2015-10-09 18:00:00,10518.0
-2015-10-09 19:00:00,10445.0
-2015-10-09 20:00:00,10735.0
-2015-10-09 21:00:00,10857.0
-2015-10-09 22:00:00,10583.0
-2015-10-09 23:00:00,10168.0
-2015-10-10 00:00:00,9531.0
-2015-10-08 01:00:00,9157.0
-2015-10-08 02:00:00,8611.0
-2015-10-08 03:00:00,8287.0
-2015-10-08 04:00:00,8096.0
-2015-10-08 05:00:00,7997.0
-2015-10-08 06:00:00,8172.0
-2015-10-08 07:00:00,8760.0
-2015-10-08 08:00:00,9859.0
-2015-10-08 09:00:00,10409.0
-2015-10-08 10:00:00,10796.0
-2015-10-08 11:00:00,11094.0
-2015-10-08 12:00:00,11474.0
-2015-10-08 13:00:00,11757.0
-2015-10-08 14:00:00,11952.0
-2015-10-08 15:00:00,12131.0
-2015-10-08 16:00:00,12161.0
-2015-10-08 17:00:00,11995.0
-2015-10-08 18:00:00,11873.0
-2015-10-08 19:00:00,11753.0
-2015-10-08 20:00:00,12019.0
-2015-10-08 21:00:00,12168.0
-2015-10-08 22:00:00,11829.0
-2015-10-08 23:00:00,11244.0
-2015-10-09 00:00:00,10375.0
-2015-10-07 01:00:00,9104.0
-2015-10-07 02:00:00,8606.0
-2015-10-07 03:00:00,8293.0
-2015-10-07 04:00:00,8099.0
-2015-10-07 05:00:00,8049.0
-2015-10-07 06:00:00,8258.0
-2015-10-07 07:00:00,8893.0
-2015-10-07 08:00:00,10020.0
-2015-10-07 09:00:00,10519.0
-2015-10-07 10:00:00,10875.0
-2015-10-07 11:00:00,11135.0
-2015-10-07 12:00:00,11445.0
-2015-10-07 13:00:00,11643.0
-2015-10-07 14:00:00,11764.0
-2015-10-07 15:00:00,11956.0
-2015-10-07 16:00:00,11906.0
-2015-10-07 17:00:00,11735.0
-2015-10-07 18:00:00,11530.0
-2015-10-07 19:00:00,11244.0
-2015-10-07 20:00:00,11417.0
-2015-10-07 21:00:00,11544.0
-2015-10-07 22:00:00,11197.0
-2015-10-07 23:00:00,10667.0
-2015-10-08 00:00:00,9913.0
-2015-10-06 01:00:00,9025.0
-2015-10-06 02:00:00,8564.0
-2015-10-06 03:00:00,8262.0
-2015-10-06 04:00:00,8079.0
-2015-10-06 05:00:00,7997.0
-2015-10-06 06:00:00,8185.0
-2015-10-06 07:00:00,8871.0
-2015-10-06 08:00:00,9977.0
-2015-10-06 09:00:00,10581.0
-2015-10-06 10:00:00,10812.0
-2015-10-06 11:00:00,10988.0
-2015-10-06 12:00:00,11164.0
-2015-10-06 13:00:00,11212.0
-2015-10-06 14:00:00,11235.0
-2015-10-06 15:00:00,11395.0
-2015-10-06 16:00:00,11358.0
-2015-10-06 17:00:00,11334.0
-2015-10-06 18:00:00,11255.0
-2015-10-06 19:00:00,11094.0
-2015-10-06 20:00:00,11235.0
-2015-10-06 21:00:00,11471.0
-2015-10-06 22:00:00,11158.0
-2015-10-06 23:00:00,10605.0
-2015-10-07 00:00:00,9827.0
-2015-10-05 01:00:00,8350.0
-2015-10-05 02:00:00,7968.0
-2015-10-05 03:00:00,7796.0
-2015-10-05 04:00:00,7656.0
-2015-10-05 05:00:00,7693.0
-2015-10-05 06:00:00,7900.0
-2015-10-05 07:00:00,8623.0
-2015-10-05 08:00:00,9766.0
-2015-10-05 09:00:00,10477.0
-2015-10-05 10:00:00,10735.0
-2015-10-05 11:00:00,10904.0
-2015-10-05 12:00:00,11063.0
-2015-10-05 13:00:00,11109.0
-2015-10-05 14:00:00,11113.0
-2015-10-05 15:00:00,11127.0
-2015-10-05 16:00:00,11025.0
-2015-10-05 17:00:00,10917.0
-2015-10-05 18:00:00,10861.0
-2015-10-05 19:00:00,10946.0
-2015-10-05 20:00:00,11259.0
-2015-10-05 21:00:00,11325.0
-2015-10-05 22:00:00,11022.0
-2015-10-05 23:00:00,10474.0
-2015-10-06 00:00:00,9715.0
-2015-10-04 01:00:00,8505.0
-2015-10-04 02:00:00,8155.0
-2015-10-04 03:00:00,7792.0
-2015-10-04 04:00:00,7619.0
-2015-10-04 05:00:00,7505.0
-2015-10-04 06:00:00,7522.0
-2015-10-04 07:00:00,7592.0
-2015-10-04 08:00:00,7865.0
-2015-10-04 09:00:00,7982.0
-2015-10-04 10:00:00,8345.0
-2015-10-04 11:00:00,8657.0
-2015-10-04 12:00:00,8846.0
-2015-10-04 13:00:00,8948.0
-2015-10-04 14:00:00,8970.0
-2015-10-04 15:00:00,8957.0
-2015-10-04 16:00:00,8945.0
-2015-10-04 17:00:00,8951.0
-2015-10-04 18:00:00,9071.0
-2015-10-04 19:00:00,9237.0
-2015-10-04 20:00:00,9696.0
-2015-10-04 21:00:00,9949.0
-2015-10-04 22:00:00,9768.0
-2015-10-04 23:00:00,9408.0
-2015-10-05 00:00:00,8860.0
-2015-10-03 01:00:00,8948.0
-2015-10-03 02:00:00,8490.0
-2015-10-03 03:00:00,8149.0
-2015-10-03 04:00:00,7954.0
-2015-10-03 05:00:00,7844.0
-2015-10-03 06:00:00,7864.0
-2015-10-03 07:00:00,8082.0
-2015-10-03 08:00:00,8518.0
-2015-10-03 09:00:00,8707.0
-2015-10-03 10:00:00,9139.0
-2015-10-03 11:00:00,9382.0
-2015-10-03 12:00:00,9537.0
-2015-10-03 13:00:00,9476.0
-2015-10-03 14:00:00,9446.0
-2015-10-03 15:00:00,9327.0
-2015-10-03 16:00:00,9261.0
-2015-10-03 17:00:00,9232.0
-2015-10-03 18:00:00,9284.0
-2015-10-03 19:00:00,9476.0
-2015-10-03 20:00:00,9855.0
-2015-10-03 21:00:00,10028.0
-2015-10-03 22:00:00,9873.0
-2015-10-03 23:00:00,9554.0
-2015-10-04 00:00:00,9052.0
-2015-10-02 01:00:00,8980.0
-2015-10-02 02:00:00,8496.0
-2015-10-02 03:00:00,8210.0
-2015-10-02 04:00:00,8002.0
-2015-10-02 05:00:00,7947.0
-2015-10-02 06:00:00,8140.0
-2015-10-02 07:00:00,8739.0
-2015-10-02 08:00:00,9832.0
-2015-10-02 09:00:00,10324.0
-2015-10-02 10:00:00,10543.0
-2015-10-02 11:00:00,10733.0
-2015-10-02 12:00:00,10886.0
-2015-10-02 13:00:00,10909.0
-2015-10-02 14:00:00,10890.0
-2015-10-02 15:00:00,10911.0
-2015-10-02 16:00:00,10811.0
-2015-10-02 17:00:00,10680.0
-2015-10-02 18:00:00,10555.0
-2015-10-02 19:00:00,10413.0
-2015-10-02 20:00:00,10564.0
-2015-10-02 21:00:00,10916.0
-2015-10-02 22:00:00,10645.0
-2015-10-02 23:00:00,10242.0
-2015-10-03 00:00:00,9562.0
-2015-10-01 01:00:00,8931.0
-2015-10-01 02:00:00,8425.0
-2015-10-01 03:00:00,8119.0
-2015-10-01 04:00:00,7926.0
-2015-10-01 05:00:00,7879.0
-2015-10-01 06:00:00,8053.0
-2015-10-01 07:00:00,8705.0
-2015-10-01 08:00:00,9779.0
-2015-10-01 09:00:00,10256.0
-2015-10-01 10:00:00,10587.0
-2015-10-01 11:00:00,10761.0
-2015-10-01 12:00:00,10894.0
-2015-10-01 13:00:00,10927.0
-2015-10-01 14:00:00,10891.0
-2015-10-01 15:00:00,10981.0
-2015-10-01 16:00:00,10883.0
-2015-10-01 17:00:00,10768.0
-2015-10-01 18:00:00,10677.0
-2015-10-01 19:00:00,10586.0
-2015-10-01 20:00:00,10728.0
-2015-10-01 21:00:00,11122.0
-2015-10-01 22:00:00,10951.0
-2015-10-01 23:00:00,10424.0
-2015-10-02 00:00:00,9681.0
-2015-09-30 01:00:00,9017.0
-2015-09-30 02:00:00,8512.0
-2015-09-30 03:00:00,8173.0
-2015-09-30 04:00:00,8003.0
-2015-09-30 05:00:00,7941.0
-2015-09-30 06:00:00,8121.0
-2015-09-30 07:00:00,8740.0
-2015-09-30 08:00:00,9824.0
-2015-09-30 09:00:00,10304.0
-2015-09-30 10:00:00,10570.0
-2015-09-30 11:00:00,10753.0
-2015-09-30 12:00:00,10956.0
-2015-09-30 13:00:00,11032.0
-2015-09-30 14:00:00,11063.0
-2015-09-30 15:00:00,11121.0
-2015-09-30 16:00:00,11047.0
-2015-09-30 17:00:00,10981.0
-2015-09-30 18:00:00,10849.0
-2015-09-30 19:00:00,10694.0
-2015-09-30 20:00:00,10730.0
-2015-09-30 21:00:00,11153.0
-2015-09-30 22:00:00,10917.0
-2015-09-30 23:00:00,10398.0
-2015-10-01 00:00:00,9674.0
-2015-09-29 01:00:00,10656.0
-2015-09-29 02:00:00,9920.0
-2015-09-29 03:00:00,9418.0
-2015-09-29 04:00:00,9113.0
-2015-09-29 05:00:00,8961.0
-2015-09-29 06:00:00,9107.0
-2015-09-29 07:00:00,9844.0
-2015-09-29 08:00:00,11079.0
-2015-09-29 09:00:00,11647.0
-2015-09-29 10:00:00,11814.0
-2015-09-29 11:00:00,11951.0
-2015-09-29 12:00:00,11992.0
-2015-09-29 13:00:00,11929.0
-2015-09-29 14:00:00,11828.0
-2015-09-29 15:00:00,11813.0
-2015-09-29 16:00:00,11679.0
-2015-09-29 17:00:00,11457.0
-2015-09-29 18:00:00,11316.0
-2015-09-29 19:00:00,11134.0
-2015-09-29 20:00:00,11111.0
-2015-09-29 21:00:00,11408.0
-2015-09-29 22:00:00,11134.0
-2015-09-29 23:00:00,10576.0
-2015-09-30 00:00:00,9784.0
-2015-09-28 01:00:00,9461.0
-2015-09-28 02:00:00,8973.0
-2015-09-28 03:00:00,8674.0
-2015-09-28 04:00:00,8508.0
-2015-09-28 05:00:00,8469.0
-2015-09-28 06:00:00,8711.0
-2015-09-28 07:00:00,9524.0
-2015-09-28 08:00:00,10767.0
-2015-09-28 09:00:00,11496.0
-2015-09-28 10:00:00,11932.0
-2015-09-28 11:00:00,12314.0
-2015-09-28 12:00:00,12705.0
-2015-09-28 13:00:00,13044.0
-2015-09-28 14:00:00,13360.0
-2015-09-28 15:00:00,13722.0
-2015-09-28 16:00:00,13881.0
-2015-09-28 17:00:00,13889.0
-2015-09-28 18:00:00,13794.0
-2015-09-28 19:00:00,13570.0
-2015-09-28 20:00:00,13371.0
-2015-09-28 21:00:00,13835.0
-2015-09-28 22:00:00,13461.0
-2015-09-28 23:00:00,12762.0
-2015-09-29 00:00:00,11705.0
-2015-09-27 01:00:00,9413.0
-2015-09-27 02:00:00,8905.0
-2015-09-27 03:00:00,8551.0
-2015-09-27 04:00:00,8260.0
-2015-09-27 05:00:00,8107.0
-2015-09-27 06:00:00,8048.0
-2015-09-27 07:00:00,8177.0
-2015-09-27 08:00:00,8330.0
-2015-09-27 09:00:00,8545.0
-2015-09-27 10:00:00,8908.0
-2015-09-27 11:00:00,9280.0
-2015-09-27 12:00:00,9616.0
-2015-09-27 13:00:00,9887.0
-2015-09-27 14:00:00,10103.0
-2015-09-27 15:00:00,10276.0
-2015-09-27 16:00:00,10483.0
-2015-09-27 17:00:00,10526.0
-2015-09-27 18:00:00,10705.0
-2015-09-27 19:00:00,10820.0
-2015-09-27 20:00:00,10932.0
-2015-09-27 21:00:00,11387.0
-2015-09-27 22:00:00,11195.0
-2015-09-27 23:00:00,10770.0
-2015-09-28 00:00:00,10132.0
-2015-09-26 01:00:00,9888.0
-2015-09-26 02:00:00,9202.0
-2015-09-26 03:00:00,8744.0
-2015-09-26 04:00:00,8454.0
-2015-09-26 05:00:00,8264.0
-2015-09-26 06:00:00,8204.0
-2015-09-26 07:00:00,8459.0
-2015-09-26 08:00:00,8819.0
-2015-09-26 09:00:00,9052.0
-2015-09-26 10:00:00,9682.0
-2015-09-26 11:00:00,10230.0
-2015-09-26 12:00:00,10680.0
-2015-09-26 13:00:00,10995.0
-2015-09-26 14:00:00,11221.0
-2015-09-26 15:00:00,11339.0
-2015-09-26 16:00:00,11494.0
-2015-09-26 17:00:00,11582.0
-2015-09-26 18:00:00,11602.0
-2015-09-26 19:00:00,11319.0
-2015-09-26 20:00:00,11068.0
-2015-09-26 21:00:00,11340.0
-2015-09-26 22:00:00,11086.0
-2015-09-26 23:00:00,10613.0
-2015-09-27 00:00:00,10029.0
-2015-09-25 01:00:00,9854.0
-2015-09-25 02:00:00,9273.0
-2015-09-25 03:00:00,8857.0
-2015-09-25 04:00:00,8597.0
-2015-09-25 05:00:00,8463.0
-2015-09-25 06:00:00,8603.0
-2015-09-25 07:00:00,9279.0
-2015-09-25 08:00:00,10296.0
-2015-09-25 09:00:00,10893.0
-2015-09-25 10:00:00,11485.0
-2015-09-25 11:00:00,11949.0
-2015-09-25 12:00:00,12338.0
-2015-09-25 13:00:00,12688.0
-2015-09-25 14:00:00,12868.0
-2015-09-25 15:00:00,13084.0
-2015-09-25 16:00:00,13153.0
-2015-09-25 17:00:00,13090.0
-2015-09-25 18:00:00,12942.0
-2015-09-25 19:00:00,12527.0
-2015-09-25 20:00:00,12114.0
-2015-09-25 21:00:00,12267.0
-2015-09-25 22:00:00,11922.0
-2015-09-25 23:00:00,11437.0
-2015-09-26 00:00:00,10659.0
-2015-09-24 01:00:00,9834.0
-2015-09-24 02:00:00,9227.0
-2015-09-24 03:00:00,8830.0
-2015-09-24 04:00:00,8561.0
-2015-09-24 05:00:00,8439.0
-2015-09-24 06:00:00,8558.0
-2015-09-24 07:00:00,9194.0
-2015-09-24 08:00:00,10237.0
-2015-09-24 09:00:00,10807.0
-2015-09-24 10:00:00,11315.0
-2015-09-24 11:00:00,11782.0
-2015-09-24 12:00:00,12261.0
-2015-09-24 13:00:00,12587.0
-2015-09-24 14:00:00,12842.0
-2015-09-24 15:00:00,13179.0
-2015-09-24 16:00:00,13325.0
-2015-09-24 17:00:00,13282.0
-2015-09-24 18:00:00,13142.0
-2015-09-24 19:00:00,12833.0
-2015-09-24 20:00:00,12442.0
-2015-09-24 21:00:00,12693.0
-2015-09-24 22:00:00,12292.0
-2015-09-24 23:00:00,11636.0
-2015-09-25 00:00:00,10724.0
-2015-09-23 01:00:00,9683.0
-2015-09-23 02:00:00,9083.0
-2015-09-23 03:00:00,8692.0
-2015-09-23 04:00:00,8429.0
-2015-09-23 05:00:00,8308.0
-2015-09-23 06:00:00,8474.0
-2015-09-23 07:00:00,9088.0
-2015-09-23 08:00:00,10084.0
-2015-09-23 09:00:00,10677.0
-2015-09-23 10:00:00,11311.0
-2015-09-23 11:00:00,11834.0
-2015-09-23 12:00:00,12322.0
-2015-09-23 13:00:00,12718.0
-2015-09-23 14:00:00,13028.0
-2015-09-23 15:00:00,13408.0
-2015-09-23 16:00:00,13607.0
-2015-09-23 17:00:00,13683.0
-2015-09-23 18:00:00,13562.0
-2015-09-23 19:00:00,13181.0
-2015-09-23 20:00:00,12694.0
-2015-09-23 21:00:00,12858.0
-2015-09-23 22:00:00,12421.0
-2015-09-23 23:00:00,11692.0
-2015-09-24 00:00:00,10739.0
-2015-09-22 01:00:00,9292.0
-2015-09-22 02:00:00,8749.0
-2015-09-22 03:00:00,8378.0
-2015-09-22 04:00:00,8168.0
-2015-09-22 05:00:00,8050.0
-2015-09-22 06:00:00,8208.0
-2015-09-22 07:00:00,8839.0
-2015-09-22 08:00:00,9831.0
-2015-09-22 09:00:00,10421.0
-2015-09-22 10:00:00,10969.0
-2015-09-22 11:00:00,11444.0
-2015-09-22 12:00:00,11913.0
-2015-09-22 13:00:00,12231.0
-2015-09-22 14:00:00,12524.0
-2015-09-22 15:00:00,12850.0
-2015-09-22 16:00:00,13054.0
-2015-09-22 17:00:00,13152.0
-2015-09-22 18:00:00,13078.0
-2015-09-22 19:00:00,12800.0
-2015-09-22 20:00:00,12443.0
-2015-09-22 21:00:00,12674.0
-2015-09-22 22:00:00,12287.0
-2015-09-22 23:00:00,11562.0
-2015-09-23 00:00:00,10568.0
-2015-09-21 01:00:00,8632.0
-2015-09-21 02:00:00,8200.0
-2015-09-21 03:00:00,7947.0
-2015-09-21 04:00:00,7800.0
-2015-09-21 05:00:00,7760.0
-2015-09-21 06:00:00,7961.0
-2015-09-21 07:00:00,8664.0
-2015-09-21 08:00:00,9689.0
-2015-09-21 09:00:00,10287.0
-2015-09-21 10:00:00,10835.0
-2015-09-21 11:00:00,11221.0
-2015-09-21 12:00:00,11595.0
-2015-09-21 13:00:00,11848.0
-2015-09-21 14:00:00,12037.0
-2015-09-21 15:00:00,12241.0
-2015-09-21 16:00:00,12331.0
-2015-09-21 17:00:00,12337.0
-2015-09-21 18:00:00,12308.0
-2015-09-21 19:00:00,12081.0
-2015-09-21 20:00:00,11695.0
-2015-09-21 21:00:00,11943.0
-2015-09-21 22:00:00,11654.0
-2015-09-21 23:00:00,11014.0
-2015-09-22 00:00:00,10101.0
-2015-09-20 01:00:00,8784.0
-2015-09-20 02:00:00,8289.0
-2015-09-20 03:00:00,7956.0
-2015-09-20 04:00:00,7709.0
-2015-09-20 05:00:00,7580.0
-2015-09-20 06:00:00,7503.0
-2015-09-20 07:00:00,7581.0
-2015-09-20 08:00:00,7683.0
-2015-09-20 09:00:00,7798.0
-2015-09-20 10:00:00,8254.0
-2015-09-20 11:00:00,8693.0
-2015-09-20 12:00:00,9059.0
-2015-09-20 13:00:00,9337.0
-2015-09-20 14:00:00,9504.0
-2015-09-20 15:00:00,9627.0
-2015-09-20 16:00:00,9766.0
-2015-09-20 17:00:00,9904.0
-2015-09-20 18:00:00,9994.0
-2015-09-20 19:00:00,10033.0
-2015-09-20 20:00:00,9960.0
-2015-09-20 21:00:00,10414.0
-2015-09-20 22:00:00,10233.0
-2015-09-20 23:00:00,9785.0
-2015-09-21 00:00:00,9194.0
-2015-09-19 01:00:00,10918.0
-2015-09-19 02:00:00,10145.0
-2015-09-19 03:00:00,9629.0
-2015-09-19 04:00:00,9233.0
-2015-09-19 05:00:00,8955.0
-2015-09-19 06:00:00,8796.0
-2015-09-19 07:00:00,8947.0
-2015-09-19 08:00:00,9175.0
-2015-09-19 09:00:00,9364.0
-2015-09-19 10:00:00,9791.0
-2015-09-19 11:00:00,10160.0
-2015-09-19 12:00:00,10374.0
-2015-09-19 13:00:00,10544.0
-2015-09-19 14:00:00,10625.0
-2015-09-19 15:00:00,10642.0
-2015-09-19 16:00:00,10588.0
-2015-09-19 17:00:00,10642.0
-2015-09-19 18:00:00,10611.0
-2015-09-19 19:00:00,10506.0
-2015-09-19 20:00:00,10252.0
-2015-09-19 21:00:00,10519.0
-2015-09-19 22:00:00,10320.0
-2015-09-19 23:00:00,9974.0
-2015-09-20 00:00:00,9358.0
-2015-09-18 01:00:00,11785.0
-2015-09-18 02:00:00,11022.0
-2015-09-18 03:00:00,10346.0
-2015-09-18 04:00:00,9923.0
-2015-09-18 05:00:00,9761.0
-2015-09-18 06:00:00,9878.0
-2015-09-18 07:00:00,10422.0
-2015-09-18 08:00:00,11527.0
-2015-09-18 09:00:00,12233.0
-2015-09-18 10:00:00,12779.0
-2015-09-18 11:00:00,13353.0
-2015-09-18 12:00:00,13840.0
-2015-09-18 13:00:00,13989.0
-2015-09-18 14:00:00,14082.0
-2015-09-18 15:00:00,14307.0
-2015-09-18 16:00:00,14338.0
-2015-09-18 17:00:00,14220.0
-2015-09-18 18:00:00,14201.0
-2015-09-18 19:00:00,14017.0
-2015-09-18 20:00:00,13752.0
-2015-09-18 21:00:00,13641.0
-2015-09-18 22:00:00,13316.0
-2015-09-18 23:00:00,12650.0
-2015-09-19 00:00:00,11793.0
-2015-09-17 01:00:00,10917.0
-2015-09-17 02:00:00,10131.0
-2015-09-17 03:00:00,9560.0
-2015-09-17 04:00:00,9220.0
-2015-09-17 05:00:00,9075.0
-2015-09-17 06:00:00,9172.0
-2015-09-17 07:00:00,9811.0
-2015-09-17 08:00:00,10854.0
-2015-09-17 09:00:00,11546.0
-2015-09-17 10:00:00,12165.0
-2015-09-17 11:00:00,12773.0
-2015-09-17 12:00:00,13541.0
-2015-09-17 13:00:00,14234.0
-2015-09-17 14:00:00,14970.0
-2015-09-17 15:00:00,15586.0
-2015-09-17 16:00:00,15972.0
-2015-09-17 17:00:00,16002.0
-2015-09-17 18:00:00,15559.0
-2015-09-17 19:00:00,14849.0
-2015-09-17 20:00:00,14516.0
-2015-09-17 21:00:00,14751.0
-2015-09-17 22:00:00,14529.0
-2015-09-17 23:00:00,13925.0
-2015-09-18 00:00:00,12809.0
-2015-09-16 01:00:00,10358.0
-2015-09-16 02:00:00,9617.0
-2015-09-16 03:00:00,9181.0
-2015-09-16 04:00:00,8879.0
-2015-09-16 05:00:00,8753.0
-2015-09-16 06:00:00,8876.0
-2015-09-16 07:00:00,9482.0
-2015-09-16 08:00:00,10467.0
-2015-09-16 09:00:00,11103.0
-2015-09-16 10:00:00,11767.0
-2015-09-16 11:00:00,12319.0
-2015-09-16 12:00:00,12967.0
-2015-09-16 13:00:00,13444.0
-2015-09-16 14:00:00,13934.0
-2015-09-16 15:00:00,14471.0
-2015-09-16 16:00:00,14870.0
-2015-09-16 17:00:00,15143.0
-2015-09-16 18:00:00,15219.0
-2015-09-16 19:00:00,14905.0
-2015-09-16 20:00:00,14290.0
-2015-09-16 21:00:00,14285.0
-2015-09-16 22:00:00,13916.0
-2015-09-16 23:00:00,13074.0
-2015-09-17 00:00:00,11994.0
-2015-09-15 01:00:00,10184.0
-2015-09-15 02:00:00,9529.0
-2015-09-15 03:00:00,9123.0
-2015-09-15 04:00:00,8812.0
-2015-09-15 05:00:00,8699.0
-2015-09-15 06:00:00,8825.0
-2015-09-15 07:00:00,9451.0
-2015-09-15 08:00:00,10471.0
-2015-09-15 09:00:00,11109.0
-2015-09-15 10:00:00,11650.0
-2015-09-15 11:00:00,12198.0
-2015-09-15 12:00:00,12730.0
-2015-09-15 13:00:00,13183.0
-2015-09-15 14:00:00,13610.0
-2015-09-15 15:00:00,14109.0
-2015-09-15 16:00:00,14430.0
-2015-09-15 17:00:00,14606.0
-2015-09-15 18:00:00,14627.0
-2015-09-15 19:00:00,14329.0
-2015-09-15 20:00:00,13661.0
-2015-09-15 21:00:00,13662.0
-2015-09-15 22:00:00,13330.0
-2015-09-15 23:00:00,12512.0
-2015-09-16 00:00:00,11417.0
-2015-09-14 01:00:00,8512.0
-2015-09-14 02:00:00,8109.0
-2015-09-14 03:00:00,7881.0
-2015-09-14 04:00:00,7727.0
-2015-09-14 05:00:00,7722.0
-2015-09-14 06:00:00,7953.0
-2015-09-14 07:00:00,8653.0
-2015-09-14 08:00:00,9638.0
-2015-09-14 09:00:00,10261.0
-2015-09-14 10:00:00,10764.0
-2015-09-14 11:00:00,11158.0
-2015-09-14 12:00:00,11551.0
-2015-09-14 13:00:00,11869.0
-2015-09-14 14:00:00,12148.0
-2015-09-14 15:00:00,12522.0
-2015-09-14 16:00:00,12788.0
-2015-09-14 17:00:00,13000.0
-2015-09-14 18:00:00,13133.0
-2015-09-14 19:00:00,13038.0
-2015-09-14 20:00:00,12716.0
-2015-09-14 21:00:00,13015.0
-2015-09-14 22:00:00,12835.0
-2015-09-14 23:00:00,12191.0
-2015-09-15 00:00:00,11195.0
-2015-09-13 01:00:00,8400.0
-2015-09-13 02:00:00,7981.0
-2015-09-13 03:00:00,7667.0
-2015-09-13 04:00:00,7517.0
-2015-09-13 05:00:00,7376.0
-2015-09-13 06:00:00,7396.0
-2015-09-13 07:00:00,7464.0
-2015-09-13 08:00:00,7570.0
-2015-09-13 09:00:00,7667.0
-2015-09-13 10:00:00,8137.0
-2015-09-13 11:00:00,8528.0
-2015-09-13 12:00:00,8877.0
-2015-09-13 13:00:00,9086.0
-2015-09-13 14:00:00,9218.0
-2015-09-13 15:00:00,9254.0
-2015-09-13 16:00:00,9337.0
-2015-09-13 17:00:00,9383.0
-2015-09-13 18:00:00,9531.0
-2015-09-13 19:00:00,9586.0
-2015-09-13 20:00:00,9545.0
-2015-09-13 21:00:00,9989.0
-2015-09-13 22:00:00,9980.0
-2015-09-13 23:00:00,9638.0
-2015-09-14 00:00:00,9048.0
-2015-09-12 01:00:00,9139.0
-2015-09-12 02:00:00,8537.0
-2015-09-12 03:00:00,8214.0
-2015-09-12 04:00:00,7945.0
-2015-09-12 05:00:00,7842.0
-2015-09-12 06:00:00,7839.0
-2015-09-12 07:00:00,8073.0
-2015-09-12 08:00:00,8354.0
-2015-09-12 09:00:00,8684.0
-2015-09-12 10:00:00,9072.0
-2015-09-12 11:00:00,9447.0
-2015-09-12 12:00:00,9662.0
-2015-09-12 13:00:00,9660.0
-2015-09-12 14:00:00,9615.0
-2015-09-12 15:00:00,9542.0
-2015-09-12 16:00:00,9472.0
-2015-09-12 17:00:00,9410.0
-2015-09-12 18:00:00,9407.0
-2015-09-12 19:00:00,9327.0
-2015-09-12 20:00:00,9292.0
-2015-09-12 21:00:00,9687.0
-2015-09-12 22:00:00,9754.0
-2015-09-12 23:00:00,9419.0
-2015-09-13 00:00:00,8945.0
-2015-09-11 01:00:00,9626.0
-2015-09-11 02:00:00,9074.0
-2015-09-11 03:00:00,8753.0
-2015-09-11 04:00:00,8547.0
-2015-09-11 05:00:00,8467.0
-2015-09-11 06:00:00,8638.0
-2015-09-11 07:00:00,9304.0
-2015-09-11 08:00:00,10379.0
-2015-09-11 09:00:00,11036.0
-2015-09-11 10:00:00,11323.0
-2015-09-11 11:00:00,11569.0
-2015-09-11 12:00:00,11817.0
-2015-09-11 13:00:00,11860.0
-2015-09-11 14:00:00,11881.0
-2015-09-11 15:00:00,11954.0
-2015-09-11 16:00:00,11883.0
-2015-09-11 17:00:00,11657.0
-2015-09-11 18:00:00,11378.0
-2015-09-11 19:00:00,11060.0
-2015-09-11 20:00:00,10785.0
-2015-09-11 21:00:00,11024.0
-2015-09-11 22:00:00,10959.0
-2015-09-11 23:00:00,10522.0
-2015-09-12 00:00:00,9822.0
-2015-09-10 01:00:00,10074.0
-2015-09-10 02:00:00,9440.0
-2015-09-10 03:00:00,8996.0
-2015-09-10 04:00:00,8703.0
-2015-09-10 05:00:00,8632.0
-2015-09-10 06:00:00,8766.0
-2015-09-10 07:00:00,9401.0
-2015-09-10 08:00:00,10349.0
-2015-09-10 09:00:00,11060.0
-2015-09-10 10:00:00,11645.0
-2015-09-10 11:00:00,11995.0
-2015-09-10 12:00:00,12269.0
-2015-09-10 13:00:00,12572.0
-2015-09-10 14:00:00,12654.0
-2015-09-10 15:00:00,12579.0
-2015-09-10 16:00:00,12290.0
-2015-09-10 17:00:00,12103.0
-2015-09-10 18:00:00,12094.0
-2015-09-10 19:00:00,11954.0
-2015-09-10 20:00:00,11740.0
-2015-09-10 21:00:00,11983.0
-2015-09-10 22:00:00,11939.0
-2015-09-10 23:00:00,11337.0
-2015-09-11 00:00:00,10460.0
-2015-09-09 01:00:00,11438.0
-2015-09-09 02:00:00,10611.0
-2015-09-09 03:00:00,10071.0
-2015-09-09 04:00:00,9748.0
-2015-09-09 05:00:00,9605.0
-2015-09-09 06:00:00,9744.0
-2015-09-09 07:00:00,10404.0
-2015-09-09 08:00:00,11516.0
-2015-09-09 09:00:00,12114.0
-2015-09-09 10:00:00,12496.0
-2015-09-09 11:00:00,12776.0
-2015-09-09 12:00:00,13101.0
-2015-09-09 13:00:00,13382.0
-2015-09-09 14:00:00,13684.0
-2015-09-09 15:00:00,14025.0
-2015-09-09 16:00:00,14244.0
-2015-09-09 17:00:00,14503.0
-2015-09-09 18:00:00,14600.0
-2015-09-09 19:00:00,14287.0
-2015-09-09 20:00:00,13607.0
-2015-09-09 21:00:00,13353.0
-2015-09-09 22:00:00,13023.0
-2015-09-09 23:00:00,12198.0
-2015-09-10 00:00:00,11085.0
-2015-09-08 01:00:00,12794.0
-2015-09-08 02:00:00,12014.0
-2015-09-08 03:00:00,11461.0
-2015-09-08 04:00:00,11056.0
-2015-09-08 05:00:00,10897.0
-2015-09-08 06:00:00,11082.0
-2015-09-08 07:00:00,11898.0
-2015-09-08 08:00:00,13165.0
-2015-09-08 09:00:00,14029.0
-2015-09-08 10:00:00,14638.0
-2015-09-08 11:00:00,15361.0
-2015-09-08 12:00:00,16061.0
-2015-09-08 13:00:00,16330.0
-2015-09-08 14:00:00,16215.0
-2015-09-08 15:00:00,15658.0
-2015-09-08 16:00:00,15272.0
-2015-09-08 17:00:00,15047.0
-2015-09-08 18:00:00,14978.0
-2015-09-08 19:00:00,14818.0
-2015-09-08 20:00:00,14582.0
-2015-09-08 21:00:00,14859.0
-2015-09-08 22:00:00,14521.0
-2015-09-08 23:00:00,13722.0
-2015-09-09 00:00:00,12553.0
-2015-09-07 01:00:00,13037.0
-2015-09-07 02:00:00,12235.0
-2015-09-07 03:00:00,11483.0
-2015-09-07 04:00:00,10992.0
-2015-09-07 05:00:00,10635.0
-2015-09-07 06:00:00,10505.0
-2015-09-07 07:00:00,10648.0
-2015-09-07 08:00:00,10725.0
-2015-09-07 09:00:00,10860.0
-2015-09-07 10:00:00,11455.0
-2015-09-07 11:00:00,12636.0
-2015-09-07 12:00:00,14113.0
-2015-09-07 13:00:00,15262.0
-2015-09-07 14:00:00,15865.0
-2015-09-07 15:00:00,16122.0
-2015-09-07 16:00:00,16484.0
-2015-09-07 17:00:00,16611.0
-2015-09-07 18:00:00,16455.0
-2015-09-07 19:00:00,16513.0
-2015-09-07 20:00:00,16108.0
-2015-09-07 21:00:00,16120.0
-2015-09-07 22:00:00,15874.0
-2015-09-07 23:00:00,15046.0
-2015-09-08 00:00:00,13855.0
-2015-09-06 01:00:00,11880.0
-2015-09-06 02:00:00,11023.0
-2015-09-06 03:00:00,10520.0
-2015-09-06 04:00:00,10082.0
-2015-09-06 05:00:00,9769.0
-2015-09-06 06:00:00,9619.0
-2015-09-06 07:00:00,9619.0
-2015-09-06 08:00:00,9568.0
-2015-09-06 09:00:00,9958.0
-2015-09-06 10:00:00,11067.0
-2015-09-06 11:00:00,12380.0
-2015-09-06 12:00:00,13816.0
-2015-09-06 13:00:00,15037.0
-2015-09-06 14:00:00,16022.0
-2015-09-06 15:00:00,16585.0
-2015-09-06 16:00:00,17105.0
-2015-09-06 17:00:00,17322.0
-2015-09-06 18:00:00,17341.0
-2015-09-06 19:00:00,17073.0
-2015-09-06 20:00:00,16372.0
-2015-09-06 21:00:00,15974.0
-2015-09-06 22:00:00,15628.0
-2015-09-06 23:00:00,14930.0
-2015-09-07 00:00:00,14008.0
-2015-09-05 01:00:00,12364.0
-2015-09-05 02:00:00,11472.0
-2015-09-05 03:00:00,10801.0
-2015-09-05 04:00:00,10320.0
-2015-09-05 05:00:00,10008.0
-2015-09-05 06:00:00,9934.0
-2015-09-05 07:00:00,10091.0
-2015-09-05 08:00:00,10264.0
-2015-09-05 09:00:00,10682.0
-2015-09-05 10:00:00,11407.0
-2015-09-05 11:00:00,12143.0
-2015-09-05 12:00:00,12745.0
-2015-09-05 13:00:00,13432.0
-2015-09-05 14:00:00,13958.0
-2015-09-05 15:00:00,14485.0
-2015-09-05 16:00:00,14871.0
-2015-09-05 17:00:00,15157.0
-2015-09-05 18:00:00,15266.0
-2015-09-05 19:00:00,15099.0
-2015-09-05 20:00:00,14578.0
-2015-09-05 21:00:00,14402.0
-2015-09-05 22:00:00,14166.0
-2015-09-05 23:00:00,13568.0
-2015-09-06 00:00:00,12739.0
-2015-09-04 01:00:00,13277.0
-2015-09-04 02:00:00,12222.0
-2015-09-04 03:00:00,11465.0
-2015-09-04 04:00:00,10946.0
-2015-09-04 05:00:00,10635.0
-2015-09-04 06:00:00,10652.0
-2015-09-04 07:00:00,11260.0
-2015-09-04 08:00:00,12167.0
-2015-09-04 09:00:00,13031.0
-2015-09-04 10:00:00,13893.0
-2015-09-04 11:00:00,14666.0
-2015-09-04 12:00:00,15554.0
-2015-09-04 13:00:00,16333.0
-2015-09-04 14:00:00,17062.0
-2015-09-04 15:00:00,17782.0
-2015-09-04 16:00:00,18180.0
-2015-09-04 17:00:00,18234.0
-2015-09-04 18:00:00,18114.0
-2015-09-04 19:00:00,17483.0
-2015-09-04 20:00:00,16441.0
-2015-09-04 21:00:00,15751.0
-2015-09-04 22:00:00,15336.0
-2015-09-04 23:00:00,14502.0
-2015-09-05 00:00:00,13439.0
-2015-09-03 01:00:00,13869.0
-2015-09-03 02:00:00,12823.0
-2015-09-03 03:00:00,12101.0
-2015-09-03 04:00:00,11538.0
-2015-09-03 05:00:00,11255.0
-2015-09-03 06:00:00,11326.0
-2015-09-03 07:00:00,11965.0
-2015-09-03 08:00:00,12897.0
-2015-09-03 09:00:00,13867.0
-2015-09-03 10:00:00,14958.0
-2015-09-03 11:00:00,16086.0
-2015-09-03 12:00:00,17254.0
-2015-09-03 13:00:00,18196.0
-2015-09-03 14:00:00,18917.0
-2015-09-03 15:00:00,19491.0
-2015-09-03 16:00:00,19847.0
-2015-09-03 17:00:00,20099.0
-2015-09-03 18:00:00,20162.0
-2015-09-03 19:00:00,19936.0
-2015-09-03 20:00:00,19033.0
-2015-09-03 21:00:00,18169.0
-2015-09-03 22:00:00,17436.0
-2015-09-03 23:00:00,16230.0
-2015-09-04 00:00:00,14712.0
-2015-09-02 01:00:00,14015.0
-2015-09-02 02:00:00,12825.0
-2015-09-02 03:00:00,11998.0
-2015-09-02 04:00:00,11420.0
-2015-09-02 05:00:00,11093.0
-2015-09-02 06:00:00,11146.0
-2015-09-02 07:00:00,11754.0
-2015-09-02 08:00:00,12731.0
-2015-09-02 09:00:00,13634.0
-2015-09-02 10:00:00,14591.0
-2015-09-02 11:00:00,15613.0
-2015-09-02 12:00:00,16813.0
-2015-09-02 13:00:00,17919.0
-2015-09-02 14:00:00,18759.0
-2015-09-02 15:00:00,19388.0
-2015-09-02 16:00:00,19715.0
-2015-09-02 17:00:00,19705.0
-2015-09-02 18:00:00,19507.0
-2015-09-02 19:00:00,19066.0
-2015-09-02 20:00:00,18259.0
-2015-09-02 21:00:00,17925.0
-2015-09-02 22:00:00,17645.0
-2015-09-02 23:00:00,16644.0
-2015-09-03 00:00:00,15142.0
-2015-09-01 01:00:00,12248.0
-2015-09-01 02:00:00,11352.0
-2015-09-01 03:00:00,10740.0
-2015-09-01 04:00:00,10334.0
-2015-09-01 05:00:00,10112.0
-2015-09-01 06:00:00,10298.0
-2015-09-01 07:00:00,11001.0
-2015-09-01 08:00:00,12053.0
-2015-09-01 09:00:00,13007.0
-2015-09-01 10:00:00,13986.0
-2015-09-01 11:00:00,15033.0
-2015-09-01 12:00:00,16178.0
-2015-09-01 13:00:00,17200.0
-2015-09-01 14:00:00,18060.0
-2015-09-01 15:00:00,18593.0
-2015-09-01 16:00:00,18983.0
-2015-09-01 17:00:00,19301.0
-2015-09-01 18:00:00,19424.0
-2015-09-01 19:00:00,19185.0
-2015-09-01 20:00:00,18560.0
-2015-09-01 21:00:00,18199.0
-2015-09-01 22:00:00,17888.0
-2015-09-01 23:00:00,16917.0
-2015-09-02 00:00:00,15499.0
-2015-08-31 01:00:00,9877.0
-2015-08-31 02:00:00,9319.0
-2015-08-31 03:00:00,8928.0
-2015-08-31 04:00:00,8688.0
-2015-08-31 05:00:00,8624.0
-2015-08-31 06:00:00,8858.0
-2015-08-31 07:00:00,9557.0
-2015-08-31 08:00:00,10550.0
-2015-08-31 09:00:00,11333.0
-2015-08-31 10:00:00,12057.0
-2015-08-31 11:00:00,12802.0
-2015-08-31 12:00:00,13654.0
-2015-08-31 13:00:00,14434.0
-2015-08-31 14:00:00,15184.0
-2015-08-31 15:00:00,15921.0
-2015-08-31 16:00:00,16454.0
-2015-08-31 17:00:00,16798.0
-2015-08-31 18:00:00,17001.0
-2015-08-31 19:00:00,16821.0
-2015-08-31 20:00:00,16236.0
-2015-08-31 21:00:00,15950.0
-2015-08-31 22:00:00,15727.0
-2015-08-31 23:00:00,14774.0
-2015-09-01 00:00:00,13495.0
-2015-08-30 01:00:00,9720.0
-2015-08-30 02:00:00,9102.0
-2015-08-30 03:00:00,8752.0
-2015-08-30 04:00:00,8478.0
-2015-08-30 05:00:00,8323.0
-2015-08-30 06:00:00,8258.0
-2015-08-30 07:00:00,8336.0
-2015-08-30 08:00:00,8355.0
-2015-08-30 09:00:00,8555.0
-2015-08-30 10:00:00,9049.0
-2015-08-30 11:00:00,9603.0
-2015-08-30 12:00:00,10090.0
-2015-08-30 13:00:00,10565.0
-2015-08-30 14:00:00,10827.0
-2015-08-30 15:00:00,11061.0
-2015-08-30 16:00:00,11326.0
-2015-08-30 17:00:00,11646.0
-2015-08-30 18:00:00,11935.0
-2015-08-30 19:00:00,11994.0
-2015-08-30 20:00:00,11813.0
-2015-08-30 21:00:00,11893.0
-2015-08-30 22:00:00,12010.0
-2015-08-30 23:00:00,11484.0
-2015-08-31 00:00:00,10700.0
-2015-08-29 01:00:00,10094.0
-2015-08-29 02:00:00,9471.0
-2015-08-29 03:00:00,9033.0
-2015-08-29 04:00:00,8718.0
-2015-08-29 05:00:00,8583.0
-2015-08-29 06:00:00,8556.0
-2015-08-29 07:00:00,8778.0
-2015-08-29 08:00:00,9152.0
-2015-08-29 09:00:00,9505.0
-2015-08-29 10:00:00,10016.0
-2015-08-29 11:00:00,10493.0
-2015-08-29 12:00:00,10790.0
-2015-08-29 13:00:00,10974.0
-2015-08-29 14:00:00,10980.0
-2015-08-29 15:00:00,10961.0
-2015-08-29 16:00:00,10919.0
-2015-08-29 17:00:00,10883.0
-2015-08-29 18:00:00,10865.0
-2015-08-29 19:00:00,10873.0
-2015-08-29 20:00:00,10899.0
-2015-08-29 21:00:00,11183.0
-2015-08-29 22:00:00,11219.0
-2015-08-29 23:00:00,10920.0
-2015-08-30 00:00:00,10303.0
-2015-08-28 01:00:00,9696.0
-2015-08-28 02:00:00,9121.0
-2015-08-28 03:00:00,8732.0
-2015-08-28 04:00:00,8493.0
-2015-08-28 05:00:00,8367.0
-2015-08-28 06:00:00,8550.0
-2015-08-28 07:00:00,9145.0
-2015-08-28 08:00:00,9975.0
-2015-08-28 09:00:00,10741.0
-2015-08-28 10:00:00,11337.0
-2015-08-28 11:00:00,11768.0
-2015-08-28 12:00:00,12148.0
-2015-08-28 13:00:00,12323.0
-2015-08-28 14:00:00,12333.0
-2015-08-28 15:00:00,12365.0
-2015-08-28 16:00:00,12275.0
-2015-08-28 17:00:00,12155.0
-2015-08-28 18:00:00,11998.0
-2015-08-28 19:00:00,11807.0
-2015-08-28 20:00:00,11661.0
-2015-08-28 21:00:00,11835.0
-2015-08-28 22:00:00,11849.0
-2015-08-28 23:00:00,11549.0
-2015-08-29 00:00:00,10840.0
-2015-08-27 01:00:00,9320.0
-2015-08-27 02:00:00,8765.0
-2015-08-27 03:00:00,8448.0
-2015-08-27 04:00:00,8219.0
-2015-08-27 05:00:00,8125.0
-2015-08-27 06:00:00,8277.0
-2015-08-27 07:00:00,8855.0
-2015-08-27 08:00:00,9698.0
-2015-08-27 09:00:00,10432.0
-2015-08-27 10:00:00,10942.0
-2015-08-27 11:00:00,11326.0
-2015-08-27 12:00:00,11609.0
-2015-08-27 13:00:00,11819.0
-2015-08-27 14:00:00,12005.0
-2015-08-27 15:00:00,12271.0
-2015-08-27 16:00:00,12434.0
-2015-08-27 17:00:00,12494.0
-2015-08-27 18:00:00,12474.0
-2015-08-27 19:00:00,12162.0
-2015-08-27 20:00:00,11747.0
-2015-08-27 21:00:00,11792.0
-2015-08-27 22:00:00,11966.0
-2015-08-27 23:00:00,11412.0
-2015-08-28 00:00:00,10545.0
-2015-08-26 01:00:00,9588.0
-2015-08-26 02:00:00,8988.0
-2015-08-26 03:00:00,8578.0
-2015-08-26 04:00:00,8336.0
-2015-08-26 05:00:00,8222.0
-2015-08-26 06:00:00,8386.0
-2015-08-26 07:00:00,9002.0
-2015-08-26 08:00:00,9879.0
-2015-08-26 09:00:00,10625.0
-2015-08-26 10:00:00,11062.0
-2015-08-26 11:00:00,11280.0
-2015-08-26 12:00:00,11454.0
-2015-08-26 13:00:00,11531.0
-2015-08-26 14:00:00,11533.0
-2015-08-26 15:00:00,11607.0
-2015-08-26 16:00:00,11590.0
-2015-08-26 17:00:00,11512.0
-2015-08-26 18:00:00,11384.0
-2015-08-26 19:00:00,11245.0
-2015-08-26 20:00:00,11065.0
-2015-08-26 21:00:00,11234.0
-2015-08-26 22:00:00,11419.0
-2015-08-26 23:00:00,10922.0
-2015-08-27 00:00:00,10104.0
-2015-08-25 01:00:00,9533.0
-2015-08-25 02:00:00,8996.0
-2015-08-25 03:00:00,8649.0
-2015-08-25 04:00:00,8431.0
-2015-08-25 05:00:00,8318.0
-2015-08-25 06:00:00,8508.0
-2015-08-25 07:00:00,9109.0
-2015-08-25 08:00:00,9940.0
-2015-08-25 09:00:00,10594.0
-2015-08-25 10:00:00,11065.0
-2015-08-25 11:00:00,11344.0
-2015-08-25 12:00:00,11557.0
-2015-08-25 13:00:00,11672.0
-2015-08-25 14:00:00,11770.0
-2015-08-25 15:00:00,11922.0
-2015-08-25 16:00:00,11756.0
-2015-08-25 17:00:00,11683.0
-2015-08-25 18:00:00,11796.0
-2015-08-25 19:00:00,11659.0
-2015-08-25 20:00:00,11401.0
-2015-08-25 21:00:00,11583.0
-2015-08-25 22:00:00,11704.0
-2015-08-25 23:00:00,11203.0
-2015-08-26 00:00:00,10389.0
-2015-08-24 01:00:00,9694.0
-2015-08-24 02:00:00,9123.0
-2015-08-24 03:00:00,8729.0
-2015-08-24 04:00:00,8490.0
-2015-08-24 05:00:00,8414.0
-2015-08-24 06:00:00,8591.0
-2015-08-24 07:00:00,9200.0
-2015-08-24 08:00:00,9884.0
-2015-08-24 09:00:00,10642.0
-2015-08-24 10:00:00,11211.0
-2015-08-24 11:00:00,11712.0
-2015-08-24 12:00:00,12166.0
-2015-08-24 13:00:00,12500.0
-2015-08-24 14:00:00,12599.0
-2015-08-24 15:00:00,12770.0
-2015-08-24 16:00:00,12817.0
-2015-08-24 17:00:00,12705.0
-2015-08-24 18:00:00,12513.0
-2015-08-24 19:00:00,12146.0
-2015-08-24 20:00:00,11745.0
-2015-08-24 21:00:00,11779.0
-2015-08-24 22:00:00,11777.0
-2015-08-24 23:00:00,11121.0
-2015-08-25 00:00:00,10337.0
-2015-08-23 01:00:00,10591.0
-2015-08-23 02:00:00,9984.0
-2015-08-23 03:00:00,9535.0
-2015-08-23 04:00:00,9215.0
-2015-08-23 05:00:00,9000.0
-2015-08-23 06:00:00,8910.0
-2015-08-23 07:00:00,8969.0
-2015-08-23 08:00:00,8872.0
-2015-08-23 09:00:00,9296.0
-2015-08-23 10:00:00,9839.0
-2015-08-23 11:00:00,10436.0
-2015-08-23 12:00:00,10880.0
-2015-08-23 13:00:00,11188.0
-2015-08-23 14:00:00,11476.0
-2015-08-23 15:00:00,11743.0
-2015-08-23 16:00:00,12050.0
-2015-08-23 17:00:00,12206.0
-2015-08-23 18:00:00,12192.0
-2015-08-23 19:00:00,12008.0
-2015-08-23 20:00:00,11664.0
-2015-08-23 21:00:00,11450.0
-2015-08-23 22:00:00,11607.0
-2015-08-23 23:00:00,11147.0
-2015-08-24 00:00:00,10391.0
-2015-08-22 01:00:00,11210.0
-2015-08-22 02:00:00,10414.0
-2015-08-22 03:00:00,9764.0
-2015-08-22 04:00:00,9370.0
-2015-08-22 05:00:00,9029.0
-2015-08-22 06:00:00,8999.0
-2015-08-22 07:00:00,9077.0
-2015-08-22 08:00:00,9215.0
-2015-08-22 09:00:00,9780.0
-2015-08-22 10:00:00,10663.0
-2015-08-22 11:00:00,11488.0
-2015-08-22 12:00:00,12207.0
-2015-08-22 13:00:00,12700.0
-2015-08-22 14:00:00,13003.0
-2015-08-22 15:00:00,13214.0
-2015-08-22 16:00:00,13338.0
-2015-08-22 17:00:00,13456.0
-2015-08-22 18:00:00,13555.0
-2015-08-22 19:00:00,13398.0
-2015-08-22 20:00:00,12890.0
-2015-08-22 21:00:00,12426.0
-2015-08-22 22:00:00,12427.0
-2015-08-22 23:00:00,12014.0
-2015-08-23 00:00:00,11276.0
-2015-08-21 01:00:00,9870.0
-2015-08-21 02:00:00,9256.0
-2015-08-21 03:00:00,8861.0
-2015-08-21 04:00:00,8583.0
-2015-08-21 05:00:00,8476.0
-2015-08-21 06:00:00,8611.0
-2015-08-21 07:00:00,9200.0
-2015-08-21 08:00:00,9917.0
-2015-08-21 09:00:00,10775.0
-2015-08-21 10:00:00,11551.0
-2015-08-21 11:00:00,12183.0
-2015-08-21 12:00:00,12720.0
-2015-08-21 13:00:00,13157.0
-2015-08-21 14:00:00,13585.0
-2015-08-21 15:00:00,14109.0
-2015-08-21 16:00:00,14520.0
-2015-08-21 17:00:00,14707.0
-2015-08-21 18:00:00,14749.0
-2015-08-21 19:00:00,14662.0
-2015-08-21 20:00:00,14185.0
-2015-08-21 21:00:00,13716.0
-2015-08-21 22:00:00,13689.0
-2015-08-21 23:00:00,13184.0
-2015-08-22 00:00:00,12239.0
-2015-08-20 01:00:00,10278.0
-2015-08-20 02:00:00,9646.0
-2015-08-20 03:00:00,9184.0
-2015-08-20 04:00:00,8885.0
-2015-08-20 05:00:00,8810.0
-2015-08-20 06:00:00,8963.0
-2015-08-20 07:00:00,9566.0
-2015-08-20 08:00:00,10304.0
-2015-08-20 09:00:00,10991.0
-2015-08-20 10:00:00,11458.0
-2015-08-20 11:00:00,11714.0
-2015-08-20 12:00:00,11992.0
-2015-08-20 13:00:00,12148.0
-2015-08-20 14:00:00,12213.0
-2015-08-20 15:00:00,12521.0
-2015-08-20 16:00:00,12646.0
-2015-08-20 17:00:00,12699.0
-2015-08-20 18:00:00,12703.0
-2015-08-20 19:00:00,12529.0
-2015-08-20 20:00:00,12143.0
-2015-08-20 21:00:00,11919.0
-2015-08-20 22:00:00,12121.0
-2015-08-20 23:00:00,11637.0
-2015-08-21 00:00:00,10774.0
-2015-08-19 01:00:00,12117.0
-2015-08-19 02:00:00,11308.0
-2015-08-19 03:00:00,10737.0
-2015-08-19 04:00:00,10394.0
-2015-08-19 05:00:00,10220.0
-2015-08-19 06:00:00,10361.0
-2015-08-19 07:00:00,11098.0
-2015-08-19 08:00:00,12094.0
-2015-08-19 09:00:00,12950.0
-2015-08-19 10:00:00,13526.0
-2015-08-19 11:00:00,13942.0
-2015-08-19 12:00:00,14207.0
-2015-08-19 13:00:00,14477.0
-2015-08-19 14:00:00,14667.0
-2015-08-19 15:00:00,14946.0
-2015-08-19 16:00:00,15068.0
-2015-08-19 17:00:00,15020.0
-2015-08-19 18:00:00,14430.0
-2015-08-19 19:00:00,13752.0
-2015-08-19 20:00:00,13035.0
-2015-08-19 21:00:00,12763.0
-2015-08-19 22:00:00,12726.0
-2015-08-19 23:00:00,12105.0
-2015-08-20 00:00:00,11206.0
-2015-08-18 01:00:00,12474.0
-2015-08-18 02:00:00,11605.0
-2015-08-18 03:00:00,10959.0
-2015-08-18 04:00:00,10568.0
-2015-08-18 05:00:00,10418.0
-2015-08-18 06:00:00,10491.0
-2015-08-18 07:00:00,11148.0
-2015-08-18 08:00:00,12027.0
-2015-08-18 09:00:00,12819.0
-2015-08-18 10:00:00,13674.0
-2015-08-18 11:00:00,14433.0
-2015-08-18 12:00:00,15146.0
-2015-08-18 13:00:00,15811.0
-2015-08-18 14:00:00,16448.0
-2015-08-18 15:00:00,16953.0
-2015-08-18 16:00:00,17243.0
-2015-08-18 17:00:00,17425.0
-2015-08-18 18:00:00,17359.0
-2015-08-18 19:00:00,16892.0
-2015-08-18 20:00:00,16366.0
-2015-08-18 21:00:00,16249.0
-2015-08-18 22:00:00,15554.0
-2015-08-18 23:00:00,14464.0
-2015-08-19 00:00:00,13274.0
-2015-08-17 01:00:00,13213.0
-2015-08-17 02:00:00,12248.0
-2015-08-17 03:00:00,11630.0
-2015-08-17 04:00:00,11131.0
-2015-08-17 05:00:00,10912.0
-2015-08-17 06:00:00,10978.0
-2015-08-17 07:00:00,11609.0
-2015-08-17 08:00:00,12461.0
-2015-08-17 09:00:00,13639.0
-2015-08-17 10:00:00,14984.0
-2015-08-17 11:00:00,16152.0
-2015-08-17 12:00:00,17339.0
-2015-08-17 13:00:00,18070.0
-2015-08-17 14:00:00,18435.0
-2015-08-17 15:00:00,18694.0
-2015-08-17 16:00:00,18667.0
-2015-08-17 17:00:00,18348.0
-2015-08-17 18:00:00,17865.0
-2015-08-17 19:00:00,17263.0
-2015-08-17 20:00:00,16649.0
-2015-08-17 21:00:00,16227.0
-2015-08-17 22:00:00,15944.0
-2015-08-17 23:00:00,14939.0
-2015-08-18 00:00:00,13667.0
-2015-08-16 01:00:00,12577.0
-2015-08-16 02:00:00,11748.0
-2015-08-16 03:00:00,11058.0
-2015-08-16 04:00:00,10564.0
-2015-08-16 05:00:00,10186.0
-2015-08-16 06:00:00,10015.0
-2015-08-16 07:00:00,9963.0
-2015-08-16 08:00:00,9917.0
-2015-08-16 09:00:00,10554.0
-2015-08-16 10:00:00,11865.0
-2015-08-16 11:00:00,13210.0
-2015-08-16 12:00:00,14490.0
-2015-08-16 13:00:00,15443.0
-2015-08-16 14:00:00,16154.0
-2015-08-16 15:00:00,16676.0
-2015-08-16 16:00:00,17094.0
-2015-08-16 17:00:00,17467.0
-2015-08-16 18:00:00,17583.0
-2015-08-16 19:00:00,17563.0
-2015-08-16 20:00:00,17100.0
-2015-08-16 21:00:00,16373.0
-2015-08-16 22:00:00,16212.0
-2015-08-16 23:00:00,15485.0
-2015-08-17 00:00:00,14362.0
-2015-08-15 01:00:00,12701.0
-2015-08-15 02:00:00,11659.0
-2015-08-15 03:00:00,10880.0
-2015-08-15 04:00:00,10369.0
-2015-08-15 05:00:00,10008.0
-2015-08-15 06:00:00,9939.0
-2015-08-15 07:00:00,10056.0
-2015-08-15 08:00:00,10216.0
-2015-08-15 09:00:00,10958.0
-2015-08-15 10:00:00,12064.0
-2015-08-15 11:00:00,13199.0
-2015-08-15 12:00:00,14387.0
-2015-08-15 13:00:00,15467.0
-2015-08-15 14:00:00,16404.0
-2015-08-15 15:00:00,16996.0
-2015-08-15 16:00:00,17323.0
-2015-08-15 17:00:00,17107.0
-2015-08-15 18:00:00,16481.0
-2015-08-15 19:00:00,15881.0
-2015-08-15 20:00:00,15569.0
-2015-08-15 21:00:00,15035.0
-2015-08-15 22:00:00,14934.0
-2015-08-15 23:00:00,14443.0
-2015-08-16 00:00:00,13617.0
-2015-08-14 01:00:00,12626.0
-2015-08-14 02:00:00,11787.0
-2015-08-14 03:00:00,11191.0
-2015-08-14 04:00:00,10731.0
-2015-08-14 05:00:00,10448.0
-2015-08-14 06:00:00,10634.0
-2015-08-14 07:00:00,11267.0
-2015-08-14 08:00:00,12050.0
-2015-08-14 09:00:00,12869.0
-2015-08-14 10:00:00,13618.0
-2015-08-14 11:00:00,14099.0
-2015-08-14 12:00:00,14737.0
-2015-08-14 13:00:00,15394.0
-2015-08-14 14:00:00,16240.0
-2015-08-14 15:00:00,17186.0
-2015-08-14 16:00:00,17914.0
-2015-08-14 17:00:00,18469.0
-2015-08-14 18:00:00,18741.0
-2015-08-14 19:00:00,18508.0
-2015-08-14 20:00:00,17873.0
-2015-08-14 21:00:00,17240.0
-2015-08-14 22:00:00,16991.0
-2015-08-14 23:00:00,15845.0
-2015-08-15 00:00:00,14098.0
-2015-08-13 01:00:00,11478.0
-2015-08-13 02:00:00,10630.0
-2015-08-13 03:00:00,10054.0
-2015-08-13 04:00:00,9651.0
-2015-08-13 05:00:00,9472.0
-2015-08-13 06:00:00,9539.0
-2015-08-13 07:00:00,10107.0
-2015-08-13 08:00:00,10883.0
-2015-08-13 09:00:00,11889.0
-2015-08-13 10:00:00,12917.0
-2015-08-13 11:00:00,13818.0
-2015-08-13 12:00:00,14738.0
-2015-08-13 13:00:00,15415.0
-2015-08-13 14:00:00,15999.0
-2015-08-13 15:00:00,16564.0
-2015-08-13 16:00:00,16951.0
-2015-08-13 17:00:00,17126.0
-2015-08-13 18:00:00,17216.0
-2015-08-13 19:00:00,16802.0
-2015-08-13 20:00:00,15897.0
-2015-08-13 21:00:00,15392.0
-2015-08-13 22:00:00,15384.0
-2015-08-13 23:00:00,14800.0
-2015-08-14 00:00:00,13779.0
-2015-08-12 01:00:00,11067.0
-2015-08-12 02:00:00,10270.0
-2015-08-12 03:00:00,9730.0
-2015-08-12 04:00:00,9382.0
-2015-08-12 05:00:00,9216.0
-2015-08-12 06:00:00,9333.0
-2015-08-12 07:00:00,9887.0
-2015-08-12 08:00:00,10633.0
-2015-08-12 09:00:00,11645.0
-2015-08-12 10:00:00,12549.0
-2015-08-12 11:00:00,13237.0
-2015-08-12 12:00:00,13851.0
-2015-08-12 13:00:00,14309.0
-2015-08-12 14:00:00,14584.0
-2015-08-12 15:00:00,15151.0
-2015-08-12 16:00:00,15563.0
-2015-08-12 17:00:00,15826.0
-2015-08-12 18:00:00,15950.0
-2015-08-12 19:00:00,15810.0
-2015-08-12 20:00:00,15240.0
-2015-08-12 21:00:00,14551.0
-2015-08-12 22:00:00,14369.0
-2015-08-12 23:00:00,13715.0
-2015-08-13 00:00:00,12631.0
-2015-08-11 01:00:00,11686.0
-2015-08-11 02:00:00,10823.0
-2015-08-11 03:00:00,10272.0
-2015-08-11 04:00:00,9849.0
-2015-08-11 05:00:00,9624.0
-2015-08-11 06:00:00,9727.0
-2015-08-11 07:00:00,10281.0
-2015-08-11 08:00:00,10990.0
-2015-08-11 09:00:00,12065.0
-2015-08-11 10:00:00,13042.0
-2015-08-11 11:00:00,13845.0
-2015-08-11 12:00:00,14672.0
-2015-08-11 13:00:00,15238.0
-2015-08-11 14:00:00,15618.0
-2015-08-11 15:00:00,15963.0
-2015-08-11 16:00:00,16172.0
-2015-08-11 17:00:00,16170.0
-2015-08-11 18:00:00,16031.0
-2015-08-11 19:00:00,15690.0
-2015-08-11 20:00:00,14967.0
-2015-08-11 21:00:00,14172.0
-2015-08-11 22:00:00,13896.0
-2015-08-11 23:00:00,13272.0
-2015-08-12 00:00:00,12175.0
-2015-08-10 01:00:00,11340.0
-2015-08-10 02:00:00,10702.0
-2015-08-10 03:00:00,10234.0
-2015-08-10 04:00:00,9970.0
-2015-08-10 05:00:00,9879.0
-2015-08-10 06:00:00,10146.0
-2015-08-10 07:00:00,10855.0
-2015-08-10 08:00:00,11756.0
-2015-08-10 09:00:00,12690.0
-2015-08-10 10:00:00,13701.0
-2015-08-10 11:00:00,14584.0
-2015-08-10 12:00:00,15550.0
-2015-08-10 13:00:00,16312.0
-2015-08-10 14:00:00,16690.0
-2015-08-10 15:00:00,16602.0
-2015-08-10 16:00:00,16551.0
-2015-08-10 17:00:00,16185.0
-2015-08-10 18:00:00,15649.0
-2015-08-10 19:00:00,15331.0
-2015-08-10 20:00:00,14966.0
-2015-08-10 21:00:00,14581.0
-2015-08-10 22:00:00,14497.0
-2015-08-10 23:00:00,13960.0
-2015-08-11 00:00:00,12856.0
-2015-08-09 01:00:00,11064.0
-2015-08-09 02:00:00,10342.0
-2015-08-09 03:00:00,9843.0
-2015-08-09 04:00:00,9419.0
-2015-08-09 05:00:00,9198.0
-2015-08-09 06:00:00,9116.0
-2015-08-09 07:00:00,9133.0
-2015-08-09 08:00:00,9114.0
-2015-08-09 09:00:00,9443.0
-2015-08-09 10:00:00,9942.0
-2015-08-09 11:00:00,10429.0
-2015-08-09 12:00:00,10888.0
-2015-08-09 13:00:00,11250.0
-2015-08-09 14:00:00,11633.0
-2015-08-09 15:00:00,12177.0
-2015-08-09 16:00:00,12779.0
-2015-08-09 17:00:00,12652.0
-2015-08-09 18:00:00,12617.0
-2015-08-09 19:00:00,12740.0
-2015-08-09 20:00:00,12716.0
-2015-08-09 21:00:00,12604.0
-2015-08-09 22:00:00,12977.0
-2015-08-09 23:00:00,12771.0
-2015-08-10 00:00:00,12149.0
-2015-08-08 01:00:00,12152.0
-2015-08-08 02:00:00,11310.0
-2015-08-08 03:00:00,10643.0
-2015-08-08 04:00:00,10209.0
-2015-08-08 05:00:00,9858.0
-2015-08-08 06:00:00,9773.0
-2015-08-08 07:00:00,9848.0
-2015-08-08 08:00:00,10012.0
-2015-08-08 09:00:00,10777.0
-2015-08-08 10:00:00,11902.0
-2015-08-08 11:00:00,13064.0
-2015-08-08 12:00:00,14090.0
-2015-08-08 13:00:00,14678.0
-2015-08-08 14:00:00,14660.0
-2015-08-08 15:00:00,14554.0
-2015-08-08 16:00:00,14280.0
-2015-08-08 17:00:00,14036.0
-2015-08-08 18:00:00,13767.0
-2015-08-08 19:00:00,13431.0
-2015-08-08 20:00:00,12982.0
-2015-08-08 21:00:00,12682.0
-2015-08-08 22:00:00,12817.0
-2015-08-08 23:00:00,12533.0
-2015-08-09 00:00:00,11819.0
-2015-08-07 01:00:00,11983.0
-2015-08-07 02:00:00,11084.0
-2015-08-07 03:00:00,10453.0
-2015-08-07 04:00:00,9991.0
-2015-08-07 05:00:00,9732.0
-2015-08-07 06:00:00,9788.0
-2015-08-07 07:00:00,10253.0
-2015-08-07 08:00:00,10853.0
-2015-08-07 09:00:00,11883.0
-2015-08-07 10:00:00,12813.0
-2015-08-07 11:00:00,13620.0
-2015-08-07 12:00:00,14397.0
-2015-08-07 13:00:00,14986.0
-2015-08-07 14:00:00,15427.0
-2015-08-07 15:00:00,15912.0
-2015-08-07 16:00:00,16226.0
-2015-08-07 17:00:00,16285.0
-2015-08-07 18:00:00,16065.0
-2015-08-07 19:00:00,15622.0
-2015-08-07 20:00:00,15026.0
-2015-08-07 21:00:00,14577.0
-2015-08-07 22:00:00,14504.0
-2015-08-07 23:00:00,14105.0
-2015-08-08 00:00:00,13175.0
-2015-08-06 01:00:00,11710.0
-2015-08-06 02:00:00,10859.0
-2015-08-06 03:00:00,10285.0
-2015-08-06 04:00:00,9907.0
-2015-08-06 05:00:00,9693.0
-2015-08-06 06:00:00,9827.0
-2015-08-06 07:00:00,10411.0
-2015-08-06 08:00:00,11086.0
-2015-08-06 09:00:00,12090.0
-2015-08-06 10:00:00,13018.0
-2015-08-06 11:00:00,13867.0
-2015-08-06 12:00:00,14640.0
-2015-08-06 13:00:00,15285.0
-2015-08-06 14:00:00,15751.0
-2015-08-06 15:00:00,16235.0
-2015-08-06 16:00:00,16453.0
-2015-08-06 17:00:00,16555.0
-2015-08-06 18:00:00,16548.0
-2015-08-06 19:00:00,16355.0
-2015-08-06 20:00:00,15668.0
-2015-08-06 21:00:00,14902.0
-2015-08-06 22:00:00,14651.0
-2015-08-06 23:00:00,14080.0
-2015-08-07 00:00:00,13058.0
-2015-08-05 01:00:00,11411.0
-2015-08-05 02:00:00,10574.0
-2015-08-05 03:00:00,9991.0
-2015-08-05 04:00:00,9597.0
-2015-08-05 05:00:00,9382.0
-2015-08-05 06:00:00,9483.0
-2015-08-05 07:00:00,9988.0
-2015-08-05 08:00:00,10650.0
-2015-08-05 09:00:00,11752.0
-2015-08-05 10:00:00,12676.0
-2015-08-05 11:00:00,13523.0
-2015-08-05 12:00:00,14269.0
-2015-08-05 13:00:00,14862.0
-2015-08-05 14:00:00,15409.0
-2015-08-05 15:00:00,15859.0
-2015-08-05 16:00:00,16125.0
-2015-08-05 17:00:00,16197.0
-2015-08-05 18:00:00,16020.0
-2015-08-05 19:00:00,15598.0
-2015-08-05 20:00:00,14853.0
-2015-08-05 21:00:00,14256.0
-2015-08-05 22:00:00,14226.0
-2015-08-05 23:00:00,13743.0
-2015-08-06 00:00:00,12745.0
-2015-08-04 01:00:00,11594.0
-2015-08-04 02:00:00,10692.0
-2015-08-04 03:00:00,10059.0
-2015-08-04 04:00:00,9609.0
-2015-08-04 05:00:00,9393.0
-2015-08-04 06:00:00,9474.0
-2015-08-04 07:00:00,9912.0
-2015-08-04 08:00:00,10629.0
-2015-08-04 09:00:00,11675.0
-2015-08-04 10:00:00,12620.0
-2015-08-04 11:00:00,13406.0
-2015-08-04 12:00:00,14131.0
-2015-08-04 13:00:00,14677.0
-2015-08-04 14:00:00,15103.0
-2015-08-04 15:00:00,15579.0
-2015-08-04 16:00:00,15956.0
-2015-08-04 17:00:00,16060.0
-2015-08-04 18:00:00,15939.0
-2015-08-04 19:00:00,15732.0
-2015-08-04 20:00:00,15154.0
-2015-08-04 21:00:00,14412.0
-2015-08-04 22:00:00,14210.0
-2015-08-04 23:00:00,13642.0
-2015-08-05 00:00:00,12564.0
-2015-08-03 01:00:00,13229.0
-2015-08-03 02:00:00,12031.0
-2015-08-03 03:00:00,11206.0
-2015-08-03 04:00:00,10693.0
-2015-08-03 05:00:00,10458.0
-2015-08-03 06:00:00,10457.0
-2015-08-03 07:00:00,10917.0
-2015-08-03 08:00:00,11663.0
-2015-08-03 09:00:00,12742.0
-2015-08-03 10:00:00,13687.0
-2015-08-03 11:00:00,14453.0
-2015-08-03 12:00:00,15170.0
-2015-08-03 13:00:00,15664.0
-2015-08-03 14:00:00,15964.0
-2015-08-03 15:00:00,16251.0
-2015-08-03 16:00:00,16482.0
-2015-08-03 17:00:00,16648.0
-2015-08-03 18:00:00,16691.0
-2015-08-03 19:00:00,16511.0
-2015-08-03 20:00:00,15858.0
-2015-08-03 21:00:00,15046.0
-2015-08-03 22:00:00,14590.0
-2015-08-03 23:00:00,13952.0
-2015-08-04 00:00:00,12801.0
-2015-08-02 01:00:00,12395.0
-2015-08-02 02:00:00,11573.0
-2015-08-02 03:00:00,10890.0
-2015-08-02 04:00:00,10401.0
-2015-08-02 05:00:00,10066.0
-2015-08-02 06:00:00,9842.0
-2015-08-02 07:00:00,9828.0
-2015-08-02 08:00:00,9790.0
-2015-08-02 09:00:00,10595.0
-2015-08-02 10:00:00,11813.0
-2015-08-02 11:00:00,13108.0
-2015-08-02 12:00:00,14273.0
-2015-08-02 13:00:00,15287.0
-2015-08-02 14:00:00,16038.0
-2015-08-02 15:00:00,16741.0
-2015-08-02 16:00:00,16890.0
-2015-08-02 17:00:00,16778.0
-2015-08-02 18:00:00,17461.0
-2015-08-02 19:00:00,17673.0
-2015-08-02 20:00:00,17449.0
-2015-08-02 21:00:00,16942.0
-2015-08-02 22:00:00,16841.0
-2015-08-02 23:00:00,16451.0
-2015-08-03 00:00:00,15181.0
-2015-08-01 01:00:00,11952.0
-2015-08-01 02:00:00,10993.0
-2015-08-01 03:00:00,10269.0
-2015-08-01 04:00:00,9714.0
-2015-08-01 05:00:00,9415.0
-2015-08-01 06:00:00,9261.0
-2015-08-01 07:00:00,9323.0
-2015-08-01 08:00:00,9413.0
-2015-08-01 09:00:00,10208.0
-2015-08-01 10:00:00,11211.0
-2015-08-01 11:00:00,12253.0
-2015-08-01 12:00:00,13142.0
-2015-08-01 13:00:00,13791.0
-2015-08-01 14:00:00,14334.0
-2015-08-01 15:00:00,14831.0
-2015-08-01 16:00:00,15316.0
-2015-08-01 17:00:00,15705.0
-2015-08-01 18:00:00,15863.0
-2015-08-01 19:00:00,15757.0
-2015-08-01 20:00:00,15294.0
-2015-08-01 21:00:00,14712.0
-2015-08-01 22:00:00,14497.0
-2015-08-01 23:00:00,14120.0
-2015-08-02 00:00:00,13280.0
-2015-07-31 01:00:00,13168.0
-2015-07-31 02:00:00,12077.0
-2015-07-31 03:00:00,11237.0
-2015-07-31 04:00:00,10653.0
-2015-07-31 05:00:00,10295.0
-2015-07-31 06:00:00,10301.0
-2015-07-31 07:00:00,10704.0
-2015-07-31 08:00:00,11421.0
-2015-07-31 09:00:00,12531.0
-2015-07-31 10:00:00,13362.0
-2015-07-31 11:00:00,14549.0
-2015-07-31 12:00:00,15764.0
-2015-07-31 13:00:00,16496.0
-2015-07-31 14:00:00,16933.0
-2015-07-31 15:00:00,17283.0
-2015-07-31 16:00:00,17475.0
-2015-07-31 17:00:00,17571.0
-2015-07-31 18:00:00,17549.0
-2015-07-31 19:00:00,17245.0
-2015-07-31 20:00:00,16531.0
-2015-07-31 21:00:00,15577.0
-2015-07-31 22:00:00,14863.0
-2015-07-31 23:00:00,14273.0
-2015-08-01 00:00:00,13096.0
-2015-07-30 01:00:00,12774.0
-2015-07-30 02:00:00,11744.0
-2015-07-30 03:00:00,10964.0
-2015-07-30 04:00:00,10441.0
-2015-07-30 05:00:00,10160.0
-2015-07-30 06:00:00,10224.0
-2015-07-30 07:00:00,10662.0
-2015-07-30 08:00:00,11379.0
-2015-07-30 09:00:00,12511.0
-2015-07-30 10:00:00,13553.0
-2015-07-30 11:00:00,14490.0
-2015-07-30 12:00:00,15454.0
-2015-07-30 13:00:00,16202.0
-2015-07-30 14:00:00,16781.0
-2015-07-30 15:00:00,17269.0
-2015-07-30 16:00:00,17665.0
-2015-07-30 17:00:00,18038.0
-2015-07-30 18:00:00,18218.0
-2015-07-30 19:00:00,18171.0
-2015-07-30 20:00:00,17621.0
-2015-07-30 21:00:00,16845.0
-2015-07-30 22:00:00,16334.0
-2015-07-30 23:00:00,15753.0
-2015-07-31 00:00:00,14512.0
-2015-07-29 01:00:00,14828.0
-2015-07-29 02:00:00,13829.0
-2015-07-29 03:00:00,13125.0
-2015-07-29 04:00:00,12546.0
-2015-07-29 05:00:00,12176.0
-2015-07-29 06:00:00,12178.0
-2015-07-29 07:00:00,12655.0
-2015-07-29 08:00:00,13466.0
-2015-07-29 09:00:00,14293.0
-2015-07-29 10:00:00,15079.0
-2015-07-29 11:00:00,15901.0
-2015-07-29 12:00:00,16849.0
-2015-07-29 13:00:00,17469.0
-2015-07-29 14:00:00,17938.0
-2015-07-29 15:00:00,18298.0
-2015-07-29 16:00:00,18519.0
-2015-07-29 17:00:00,18586.0
-2015-07-29 18:00:00,18564.0
-2015-07-29 19:00:00,18310.0
-2015-07-29 20:00:00,17662.0
-2015-07-29 21:00:00,16705.0
-2015-07-29 22:00:00,16072.0
-2015-07-29 23:00:00,15385.0
-2015-07-30 00:00:00,14081.0
-2015-07-28 01:00:00,13157.0
-2015-07-28 02:00:00,12160.0
-2015-07-28 03:00:00,11445.0
-2015-07-28 04:00:00,10891.0
-2015-07-28 05:00:00,10602.0
-2015-07-28 06:00:00,10643.0
-2015-07-28 07:00:00,11100.0
-2015-07-28 08:00:00,11974.0
-2015-07-28 09:00:00,13280.0
-2015-07-28 10:00:00,14623.0
-2015-07-28 11:00:00,15812.0
-2015-07-28 12:00:00,17023.0
-2015-07-28 13:00:00,17850.0
-2015-07-28 14:00:00,18510.0
-2015-07-28 15:00:00,19153.0
-2015-07-28 16:00:00,19547.0
-2015-07-28 17:00:00,19765.0
-2015-07-28 18:00:00,19707.0
-2015-07-28 19:00:00,19368.0
-2015-07-28 20:00:00,18728.0
-2015-07-28 21:00:00,18276.0
-2015-07-28 22:00:00,18092.0
-2015-07-28 23:00:00,17482.0
-2015-07-29 00:00:00,16157.0
-2015-07-27 01:00:00,11430.0
-2015-07-27 02:00:00,10722.0
-2015-07-27 03:00:00,10169.0
-2015-07-27 04:00:00,9927.0
-2015-07-27 05:00:00,9810.0
-2015-07-27 06:00:00,10014.0
-2015-07-27 07:00:00,10620.0
-2015-07-27 08:00:00,11560.0
-2015-07-27 09:00:00,12902.0
-2015-07-27 10:00:00,14202.0
-2015-07-27 11:00:00,15390.0
-2015-07-27 12:00:00,16415.0
-2015-07-27 13:00:00,17142.0
-2015-07-27 14:00:00,17666.0
-2015-07-27 15:00:00,18248.0
-2015-07-27 16:00:00,18615.0
-2015-07-27 17:00:00,18828.0
-2015-07-27 18:00:00,18829.0
-2015-07-27 19:00:00,18349.0
-2015-07-27 20:00:00,17489.0
-2015-07-27 21:00:00,16668.0
-2015-07-27 22:00:00,16329.0
-2015-07-27 23:00:00,15728.0
-2015-07-28 00:00:00,14481.0
-2015-07-26 01:00:00,12650.0
-2015-07-26 02:00:00,11668.0
-2015-07-26 03:00:00,10840.0
-2015-07-26 04:00:00,10259.0
-2015-07-26 05:00:00,9892.0
-2015-07-26 06:00:00,9589.0
-2015-07-26 07:00:00,9426.0
-2015-07-26 08:00:00,9456.0
-2015-07-26 09:00:00,10115.0
-2015-07-26 10:00:00,11031.0
-2015-07-26 11:00:00,11905.0
-2015-07-26 12:00:00,12423.0
-2015-07-26 13:00:00,12717.0
-2015-07-26 14:00:00,12874.0
-2015-07-26 15:00:00,13033.0
-2015-07-26 16:00:00,13240.0
-2015-07-26 17:00:00,13323.0
-2015-07-26 18:00:00,13437.0
-2015-07-26 19:00:00,13349.0
-2015-07-26 20:00:00,13240.0
-2015-07-26 21:00:00,13055.0
-2015-07-26 22:00:00,13195.0
-2015-07-26 23:00:00,12989.0
-2015-07-27 00:00:00,12301.0
-2015-07-25 01:00:00,12665.0
-2015-07-25 02:00:00,11789.0
-2015-07-25 03:00:00,11185.0
-2015-07-25 04:00:00,10703.0
-2015-07-25 05:00:00,10427.0
-2015-07-25 06:00:00,10285.0
-2015-07-25 07:00:00,10324.0
-2015-07-25 08:00:00,10576.0
-2015-07-25 09:00:00,11541.0
-2015-07-25 10:00:00,12821.0
-2015-07-25 11:00:00,14055.0
-2015-07-25 12:00:00,15292.0
-2015-07-25 13:00:00,16277.0
-2015-07-25 14:00:00,16859.0
-2015-07-25 15:00:00,17183.0
-2015-07-25 16:00:00,17518.0
-2015-07-25 17:00:00,17703.0
-2015-07-25 18:00:00,17653.0
-2015-07-25 19:00:00,17415.0
-2015-07-25 20:00:00,16770.0
-2015-07-25 21:00:00,15882.0
-2015-07-25 22:00:00,15331.0
-2015-07-25 23:00:00,14799.0
-2015-07-26 00:00:00,13777.0
-2015-07-24 01:00:00,12298.0
-2015-07-24 02:00:00,11333.0
-2015-07-24 03:00:00,10616.0
-2015-07-24 04:00:00,10150.0
-2015-07-24 05:00:00,9866.0
-2015-07-24 06:00:00,9913.0
-2015-07-24 07:00:00,10342.0
-2015-07-24 08:00:00,11155.0
-2015-07-24 09:00:00,12427.0
-2015-07-24 10:00:00,13642.0
-2015-07-24 11:00:00,14650.0
-2015-07-24 12:00:00,15516.0
-2015-07-24 13:00:00,16234.0
-2015-07-24 14:00:00,16785.0
-2015-07-24 15:00:00,17228.0
-2015-07-24 16:00:00,17238.0
-2015-07-24 17:00:00,17024.0
-2015-07-24 18:00:00,16776.0
-2015-07-24 19:00:00,16792.0
-2015-07-24 20:00:00,16443.0
-2015-07-24 21:00:00,15765.0
-2015-07-24 22:00:00,15270.0
-2015-07-24 23:00:00,14881.0
-2015-07-25 00:00:00,13786.0
-2015-07-23 01:00:00,11677.0
-2015-07-23 02:00:00,10761.0
-2015-07-23 03:00:00,10120.0
-2015-07-23 04:00:00,9685.0
-2015-07-23 05:00:00,9461.0
-2015-07-23 06:00:00,9547.0
-2015-07-23 07:00:00,9983.0
-2015-07-23 08:00:00,10803.0
-2015-07-23 09:00:00,12017.0
-2015-07-23 10:00:00,13096.0
-2015-07-23 11:00:00,14047.0
-2015-07-23 12:00:00,14920.0
-2015-07-23 13:00:00,15574.0
-2015-07-23 14:00:00,16069.0
-2015-07-23 15:00:00,16541.0
-2015-07-23 16:00:00,16845.0
-2015-07-23 17:00:00,17047.0
-2015-07-23 18:00:00,17132.0
-2015-07-23 19:00:00,16976.0
-2015-07-23 20:00:00,16413.0
-2015-07-23 21:00:00,15682.0
-2015-07-23 22:00:00,15294.0
-2015-07-23 23:00:00,14755.0
-2015-07-24 00:00:00,13546.0
-2015-07-22 01:00:00,11509.0
-2015-07-22 02:00:00,10630.0
-2015-07-22 03:00:00,10068.0
-2015-07-22 04:00:00,9683.0
-2015-07-22 05:00:00,9498.0
-2015-07-22 06:00:00,9564.0
-2015-07-22 07:00:00,9984.0
-2015-07-22 08:00:00,10798.0
-2015-07-22 09:00:00,11882.0
-2015-07-22 10:00:00,12740.0
-2015-07-22 11:00:00,13454.0
-2015-07-22 12:00:00,14198.0
-2015-07-22 13:00:00,14667.0
-2015-07-22 14:00:00,15157.0
-2015-07-22 15:00:00,15642.0
-2015-07-22 16:00:00,15903.0
-2015-07-22 17:00:00,16039.0
-2015-07-22 18:00:00,16028.0
-2015-07-22 19:00:00,15799.0
-2015-07-22 20:00:00,15227.0
-2015-07-22 21:00:00,14569.0
-2015-07-22 22:00:00,14264.0
-2015-07-22 23:00:00,13865.0
-2015-07-23 00:00:00,12852.0
-2015-07-21 01:00:00,12659.0
-2015-07-21 02:00:00,11668.0
-2015-07-21 03:00:00,10921.0
-2015-07-21 04:00:00,10371.0
-2015-07-21 05:00:00,10066.0
-2015-07-21 06:00:00,10033.0
-2015-07-21 07:00:00,10363.0
-2015-07-21 08:00:00,11208.0
-2015-07-21 09:00:00,12397.0
-2015-07-21 10:00:00,13266.0
-2015-07-21 11:00:00,13985.0
-2015-07-21 12:00:00,14542.0
-2015-07-21 13:00:00,14913.0
-2015-07-21 14:00:00,15217.0
-2015-07-21 15:00:00,15499.0
-2015-07-21 16:00:00,15762.0
-2015-07-21 17:00:00,15966.0
-2015-07-21 18:00:00,16157.0
-2015-07-21 19:00:00,16018.0
-2015-07-21 20:00:00,15482.0
-2015-07-21 21:00:00,14810.0
-2015-07-21 22:00:00,14319.0
-2015-07-21 23:00:00,13823.0
-2015-07-22 00:00:00,12705.0
-2015-07-20 01:00:00,11684.0
-2015-07-20 02:00:00,10865.0
-2015-07-20 03:00:00,10188.0
-2015-07-20 04:00:00,9822.0
-2015-07-20 05:00:00,9587.0
-2015-07-20 06:00:00,9747.0
-2015-07-20 07:00:00,10149.0
-2015-07-20 08:00:00,11047.0
-2015-07-20 09:00:00,12214.0
-2015-07-20 10:00:00,13272.0
-2015-07-20 11:00:00,14217.0
-2015-07-20 12:00:00,14926.0
-2015-07-20 13:00:00,15423.0
-2015-07-20 14:00:00,16198.0
-2015-07-20 15:00:00,16908.0
-2015-07-20 16:00:00,17350.0
-2015-07-20 17:00:00,17202.0
-2015-07-20 18:00:00,16855.0
-2015-07-20 19:00:00,16447.0
-2015-07-20 20:00:00,16191.0
-2015-07-20 21:00:00,15900.0
-2015-07-20 22:00:00,15542.0
-2015-07-20 23:00:00,15133.0
-2015-07-21 00:00:00,13964.0
-2015-07-19 01:00:00,13090.0
-2015-07-19 02:00:00,12312.0
-2015-07-19 03:00:00,11679.0
-2015-07-19 04:00:00,11149.0
-2015-07-19 05:00:00,10829.0
-2015-07-19 06:00:00,10602.0
-2015-07-19 07:00:00,10435.0
-2015-07-19 08:00:00,10483.0
-2015-07-19 09:00:00,11191.0
-2015-07-19 10:00:00,12324.0
-2015-07-19 11:00:00,13406.0
-2015-07-19 12:00:00,14492.0
-2015-07-19 13:00:00,15280.0
-2015-07-19 14:00:00,15676.0
-2015-07-19 15:00:00,15887.0
-2015-07-19 16:00:00,16051.0
-2015-07-19 17:00:00,16078.0
-2015-07-19 18:00:00,15914.0
-2015-07-19 19:00:00,15772.0
-2015-07-19 20:00:00,15250.0
-2015-07-19 21:00:00,14549.0
-2015-07-19 22:00:00,14079.0
-2015-07-19 23:00:00,13733.0
-2015-07-20 00:00:00,12766.0
-2015-07-18 01:00:00,13944.0
-2015-07-18 02:00:00,12967.0
-2015-07-18 03:00:00,12169.0
-2015-07-18 04:00:00,11571.0
-2015-07-18 05:00:00,11197.0
-2015-07-18 06:00:00,11022.0
-2015-07-18 07:00:00,10997.0
-2015-07-18 08:00:00,11368.0
-2015-07-18 09:00:00,12536.0
-2015-07-18 10:00:00,13926.0
-2015-07-18 11:00:00,14948.0
-2015-07-18 12:00:00,15509.0
-2015-07-18 13:00:00,16047.0
-2015-07-18 14:00:00,16506.0
-2015-07-18 15:00:00,17055.0
-2015-07-18 16:00:00,17377.0
-2015-07-18 17:00:00,16954.0
-2015-07-18 18:00:00,16560.0
-2015-07-18 19:00:00,16125.0
-2015-07-18 20:00:00,15829.0
-2015-07-18 21:00:00,15361.0
-2015-07-18 22:00:00,14970.0
-2015-07-18 23:00:00,14721.0
-2015-07-19 00:00:00,13937.0
-2015-07-17 01:00:00,10959.0
-2015-07-17 02:00:00,10353.0
-2015-07-17 03:00:00,9957.0
-2015-07-17 04:00:00,9691.0
-2015-07-17 05:00:00,9614.0
-2015-07-17 06:00:00,9778.0
-2015-07-17 07:00:00,10365.0
-2015-07-17 08:00:00,11306.0
-2015-07-17 09:00:00,12734.0
-2015-07-17 10:00:00,14159.0
-2015-07-17 11:00:00,15400.0
-2015-07-17 12:00:00,16561.0
-2015-07-17 13:00:00,17567.0
-2015-07-17 14:00:00,18221.0
-2015-07-17 15:00:00,18841.0
-2015-07-17 16:00:00,19302.0
-2015-07-17 17:00:00,19525.0
-2015-07-17 18:00:00,19398.0
-2015-07-17 19:00:00,18889.0
-2015-07-17 20:00:00,18153.0
-2015-07-17 21:00:00,17479.0
-2015-07-17 22:00:00,16804.0
-2015-07-17 23:00:00,16326.0
-2015-07-18 00:00:00,15196.0
-2015-07-16 01:00:00,9973.0
-2015-07-16 02:00:00,9290.0
-2015-07-16 03:00:00,8884.0
-2015-07-16 04:00:00,8612.0
-2015-07-16 05:00:00,8510.0
-2015-07-16 06:00:00,8677.0
-2015-07-16 07:00:00,9136.0
-2015-07-16 08:00:00,9942.0
-2015-07-16 09:00:00,10863.0
-2015-07-16 10:00:00,11505.0
-2015-07-16 11:00:00,11896.0
-2015-07-16 12:00:00,12223.0
-2015-07-16 13:00:00,12408.0
-2015-07-16 14:00:00,12524.0
-2015-07-16 15:00:00,12707.0
-2015-07-16 16:00:00,12823.0
-2015-07-16 17:00:00,12962.0
-2015-07-16 18:00:00,12944.0
-2015-07-16 19:00:00,12900.0
-2015-07-16 20:00:00,12682.0
-2015-07-16 21:00:00,12579.0
-2015-07-16 22:00:00,12689.0
-2015-07-16 23:00:00,12399.0
-2015-07-17 00:00:00,11727.0
-2015-07-15 01:00:00,10281.0
-2015-07-15 02:00:00,9517.0
-2015-07-15 03:00:00,9022.0
-2015-07-15 04:00:00,8712.0
-2015-07-15 05:00:00,8566.0
-2015-07-15 06:00:00,8667.0
-2015-07-15 07:00:00,9041.0
-2015-07-15 08:00:00,9784.0
-2015-07-15 09:00:00,10703.0
-2015-07-15 10:00:00,11451.0
-2015-07-15 11:00:00,12065.0
-2015-07-15 12:00:00,12599.0
-2015-07-15 13:00:00,12987.0
-2015-07-15 14:00:00,13274.0
-2015-07-15 15:00:00,13643.0
-2015-07-15 16:00:00,13914.0
-2015-07-15 17:00:00,14032.0
-2015-07-15 18:00:00,13844.0
-2015-07-15 19:00:00,13343.0
-2015-07-15 20:00:00,12630.0
-2015-07-15 21:00:00,12108.0
-2015-07-15 22:00:00,12017.0
-2015-07-15 23:00:00,11752.0
-2015-07-16 00:00:00,10894.0
-2015-07-14 01:00:00,12913.0
-2015-07-14 02:00:00,11877.0
-2015-07-14 03:00:00,11216.0
-2015-07-14 04:00:00,10740.0
-2015-07-14 05:00:00,10486.0
-2015-07-14 06:00:00,10530.0
-2015-07-14 07:00:00,10951.0
-2015-07-14 08:00:00,11959.0
-2015-07-14 09:00:00,13255.0
-2015-07-14 10:00:00,14307.0
-2015-07-14 11:00:00,15013.0
-2015-07-14 12:00:00,15455.0
-2015-07-14 13:00:00,15834.0
-2015-07-14 14:00:00,15989.0
-2015-07-14 15:00:00,16224.0
-2015-07-14 16:00:00,16419.0
-2015-07-14 17:00:00,16203.0
-2015-07-14 18:00:00,15766.0
-2015-07-14 19:00:00,15195.0
-2015-07-14 20:00:00,14462.0
-2015-07-14 21:00:00,13584.0
-2015-07-14 22:00:00,12944.0
-2015-07-14 23:00:00,12451.0
-2015-07-15 00:00:00,11365.0
-2015-07-13 01:00:00,11867.0
-2015-07-13 02:00:00,11091.0
-2015-07-13 03:00:00,10578.0
-2015-07-13 04:00:00,10194.0
-2015-07-13 05:00:00,10052.0
-2015-07-13 06:00:00,10185.0
-2015-07-13 07:00:00,10802.0
-2015-07-13 08:00:00,11729.0
-2015-07-13 09:00:00,12559.0
-2015-07-13 10:00:00,12874.0
-2015-07-13 11:00:00,13285.0
-2015-07-13 12:00:00,14119.0
-2015-07-13 13:00:00,14972.0
-2015-07-13 14:00:00,15749.0
-2015-07-13 15:00:00,16485.0
-2015-07-13 16:00:00,17319.0
-2015-07-13 17:00:00,17910.0
-2015-07-13 18:00:00,18135.0
-2015-07-13 19:00:00,18221.0
-2015-07-13 20:00:00,17956.0
-2015-07-13 21:00:00,17528.0
-2015-07-13 22:00:00,17071.0
-2015-07-13 23:00:00,16114.0
-2015-07-14 00:00:00,14405.0
-2015-07-12 01:00:00,10324.0
-2015-07-12 02:00:00,9732.0
-2015-07-12 03:00:00,9245.0
-2015-07-12 04:00:00,8888.0
-2015-07-12 05:00:00,8678.0
-2015-07-12 06:00:00,8654.0
-2015-07-12 07:00:00,8530.0
-2015-07-12 08:00:00,8488.0
-2015-07-12 09:00:00,8874.0
-2015-07-12 10:00:00,9415.0
-2015-07-12 11:00:00,10298.0
-2015-07-12 12:00:00,11231.0
-2015-07-12 13:00:00,12072.0
-2015-07-12 14:00:00,12625.0
-2015-07-12 15:00:00,13221.0
-2015-07-12 16:00:00,13681.0
-2015-07-12 17:00:00,14079.0
-2015-07-12 18:00:00,14434.0
-2015-07-12 19:00:00,14598.0
-2015-07-12 20:00:00,14471.0
-2015-07-12 21:00:00,14029.0
-2015-07-12 22:00:00,13760.0
-2015-07-12 23:00:00,13568.0
-2015-07-13 00:00:00,12761.0
-2015-07-11 01:00:00,10663.0
-2015-07-11 02:00:00,9835.0
-2015-07-11 03:00:00,9306.0
-2015-07-11 04:00:00,8860.0
-2015-07-11 05:00:00,8663.0
-2015-07-11 06:00:00,8559.0
-2015-07-11 07:00:00,8560.0
-2015-07-11 08:00:00,8733.0
-2015-07-11 09:00:00,9517.0
-2015-07-11 10:00:00,10226.0
-2015-07-11 11:00:00,11057.0
-2015-07-11 12:00:00,11643.0
-2015-07-11 13:00:00,12121.0
-2015-07-11 14:00:00,12388.0
-2015-07-11 15:00:00,12439.0
-2015-07-11 16:00:00,12257.0
-2015-07-11 17:00:00,12056.0
-2015-07-11 18:00:00,11789.0
-2015-07-11 19:00:00,11613.0
-2015-07-11 20:00:00,11402.0
-2015-07-11 21:00:00,11234.0
-2015-07-11 22:00:00,11486.0
-2015-07-11 23:00:00,11436.0
-2015-07-12 00:00:00,10944.0
-2015-07-10 01:00:00,9996.0
-2015-07-10 02:00:00,9302.0
-2015-07-10 03:00:00,8856.0
-2015-07-10 04:00:00,8614.0
-2015-07-10 05:00:00,8469.0
-2015-07-10 06:00:00,8614.0
-2015-07-10 07:00:00,9018.0
-2015-07-10 08:00:00,9719.0
-2015-07-10 09:00:00,10659.0
-2015-07-10 10:00:00,11296.0
-2015-07-10 11:00:00,11851.0
-2015-07-10 12:00:00,12427.0
-2015-07-10 13:00:00,12906.0
-2015-07-10 14:00:00,13245.0
-2015-07-10 15:00:00,13667.0
-2015-07-10 16:00:00,14062.0
-2015-07-10 17:00:00,14286.0
-2015-07-10 18:00:00,14435.0
-2015-07-10 19:00:00,14291.0
-2015-07-10 20:00:00,13783.0
-2015-07-10 21:00:00,13159.0
-2015-07-10 22:00:00,12873.0
-2015-07-10 23:00:00,12589.0
-2015-07-11 00:00:00,11642.0
-2015-07-09 01:00:00,9508.0
-2015-07-09 02:00:00,8967.0
-2015-07-09 03:00:00,8614.0
-2015-07-09 04:00:00,8396.0
-2015-07-09 05:00:00,8304.0
-2015-07-09 06:00:00,8429.0
-2015-07-09 07:00:00,8920.0
-2015-07-09 08:00:00,9677.0
-2015-07-09 09:00:00,10406.0
-2015-07-09 10:00:00,10957.0
-2015-07-09 11:00:00,11273.0
-2015-07-09 12:00:00,11550.0
-2015-07-09 13:00:00,11825.0
-2015-07-09 14:00:00,12050.0
-2015-07-09 15:00:00,12224.0
-2015-07-09 16:00:00,12372.0
-2015-07-09 17:00:00,12521.0
-2015-07-09 18:00:00,12595.0
-2015-07-09 19:00:00,12627.0
-2015-07-09 20:00:00,12222.0
-2015-07-09 21:00:00,11876.0
-2015-07-09 22:00:00,11799.0
-2015-07-09 23:00:00,11674.0
-2015-07-10 00:00:00,10873.0
-2015-07-08 01:00:00,9417.0
-2015-07-08 02:00:00,8841.0
-2015-07-08 03:00:00,8443.0
-2015-07-08 04:00:00,8255.0
-2015-07-08 05:00:00,8169.0
-2015-07-08 06:00:00,8308.0
-2015-07-08 07:00:00,8752.0
-2015-07-08 08:00:00,9414.0
-2015-07-08 09:00:00,10223.0
-2015-07-08 10:00:00,10819.0
-2015-07-08 11:00:00,11191.0
-2015-07-08 12:00:00,11499.0
-2015-07-08 13:00:00,11642.0
-2015-07-08 14:00:00,11699.0
-2015-07-08 15:00:00,11822.0
-2015-07-08 16:00:00,11789.0
-2015-07-08 17:00:00,11601.0
-2015-07-08 18:00:00,11432.0
-2015-07-08 19:00:00,11221.0
-2015-07-08 20:00:00,11010.0
-2015-07-08 21:00:00,11064.0
-2015-07-08 22:00:00,11236.0
-2015-07-08 23:00:00,10984.0
-2015-07-09 00:00:00,10232.0
-2015-07-07 01:00:00,12187.0
-2015-07-07 02:00:00,11294.0
-2015-07-07 03:00:00,10723.0
-2015-07-07 04:00:00,10354.0
-2015-07-07 05:00:00,10136.0
-2015-07-07 06:00:00,10052.0
-2015-07-07 07:00:00,10192.0
-2015-07-07 08:00:00,10757.0
-2015-07-07 09:00:00,11194.0
-2015-07-07 10:00:00,11540.0
-2015-07-07 11:00:00,11742.0
-2015-07-07 12:00:00,12110.0
-2015-07-07 13:00:00,12359.0
-2015-07-07 14:00:00,12489.0
-2015-07-07 15:00:00,12565.0
-2015-07-07 16:00:00,12543.0
-2015-07-07 17:00:00,12475.0
-2015-07-07 18:00:00,12329.0
-2015-07-07 19:00:00,12058.0
-2015-07-07 20:00:00,11615.0
-2015-07-07 21:00:00,11218.0
-2015-07-07 22:00:00,11153.0
-2015-07-07 23:00:00,11036.0
-2015-07-08 00:00:00,10271.0
-2015-07-06 01:00:00,11048.0
-2015-07-06 02:00:00,10258.0
-2015-07-06 03:00:00,9747.0
-2015-07-06 04:00:00,9411.0
-2015-07-06 05:00:00,9214.0
-2015-07-06 06:00:00,9375.0
-2015-07-06 07:00:00,9850.0
-2015-07-06 08:00:00,10775.0
-2015-07-06 09:00:00,11947.0
-2015-07-06 10:00:00,13009.0
-2015-07-06 11:00:00,13976.0
-2015-07-06 12:00:00,14966.0
-2015-07-06 13:00:00,15772.0
-2015-07-06 14:00:00,16505.0
-2015-07-06 15:00:00,16917.0
-2015-07-06 16:00:00,16346.0
-2015-07-06 17:00:00,15696.0
-2015-07-06 18:00:00,15808.0
-2015-07-06 19:00:00,16019.0
-2015-07-06 20:00:00,15630.0
-2015-07-06 21:00:00,15270.0
-2015-07-06 22:00:00,15197.0
-2015-07-06 23:00:00,14574.0
-2015-07-07 00:00:00,13386.0
-2015-07-05 01:00:00,9751.0
-2015-07-05 02:00:00,9216.0
-2015-07-05 03:00:00,8663.0
-2015-07-05 04:00:00,8316.0
-2015-07-05 05:00:00,8052.0
-2015-07-05 06:00:00,7988.0
-2015-07-05 07:00:00,7836.0
-2015-07-05 08:00:00,7845.0
-2015-07-05 09:00:00,8305.0
-2015-07-05 10:00:00,9110.0
-2015-07-05 11:00:00,9984.0
-2015-07-05 12:00:00,10921.0
-2015-07-05 13:00:00,11675.0
-2015-07-05 14:00:00,12288.0
-2015-07-05 15:00:00,12804.0
-2015-07-05 16:00:00,13176.0
-2015-07-05 17:00:00,13556.0
-2015-07-05 18:00:00,13723.0
-2015-07-05 19:00:00,13775.0
-2015-07-05 20:00:00,13463.0
-2015-07-05 21:00:00,13078.0
-2015-07-05 22:00:00,12913.0
-2015-07-05 23:00:00,12762.0
-2015-07-06 00:00:00,11954.0
-2015-07-04 01:00:00,9307.0
-2015-07-04 02:00:00,8677.0
-2015-07-04 03:00:00,8254.0
-2015-07-04 04:00:00,7944.0
-2015-07-04 05:00:00,7712.0
-2015-07-04 06:00:00,7655.0
-2015-07-04 07:00:00,7506.0
-2015-07-04 08:00:00,7535.0
-2015-07-04 09:00:00,7972.0
-2015-07-04 10:00:00,8591.0
-2015-07-04 11:00:00,9263.0
-2015-07-04 12:00:00,9904.0
-2015-07-04 13:00:00,10466.0
-2015-07-04 14:00:00,10968.0
-2015-07-04 15:00:00,11327.0
-2015-07-04 16:00:00,11638.0
-2015-07-04 17:00:00,11852.0
-2015-07-04 18:00:00,11951.0
-2015-07-04 19:00:00,11893.0
-2015-07-04 20:00:00,11533.0
-2015-07-04 21:00:00,11101.0
-2015-07-04 22:00:00,10827.0
-2015-07-04 23:00:00,10635.0
-2015-07-05 00:00:00,10279.0
-2015-07-03 01:00:00,9151.0
-2015-07-03 02:00:00,8580.0
-2015-07-03 03:00:00,8197.0
-2015-07-03 04:00:00,7971.0
-2015-07-03 05:00:00,7838.0
-2015-07-03 06:00:00,7874.0
-2015-07-03 07:00:00,7927.0
-2015-07-03 08:00:00,8060.0
-2015-07-03 09:00:00,8552.0
-2015-07-03 10:00:00,9059.0
-2015-07-03 11:00:00,9550.0
-2015-07-03 12:00:00,10006.0
-2015-07-03 13:00:00,10338.0
-2015-07-03 14:00:00,10630.0
-2015-07-03 15:00:00,10878.0
-2015-07-03 16:00:00,11090.0
-2015-07-03 17:00:00,11342.0
-2015-07-03 18:00:00,11511.0
-2015-07-03 19:00:00,11495.0
-2015-07-03 20:00:00,11209.0
-2015-07-03 21:00:00,10830.0
-2015-07-03 22:00:00,10688.0
-2015-07-03 23:00:00,10547.0
-2015-07-04 00:00:00,9958.0
-2015-07-02 01:00:00,9288.0
-2015-07-02 02:00:00,8742.0
-2015-07-02 03:00:00,8359.0
-2015-07-02 04:00:00,8127.0
-2015-07-02 05:00:00,8052.0
-2015-07-02 06:00:00,8169.0
-2015-07-02 07:00:00,8552.0
-2015-07-02 08:00:00,9218.0
-2015-07-02 09:00:00,10026.0
-2015-07-02 10:00:00,10600.0
-2015-07-02 11:00:00,10990.0
-2015-07-02 12:00:00,11306.0
-2015-07-02 13:00:00,11518.0
-2015-07-02 14:00:00,11621.0
-2015-07-02 15:00:00,11768.0
-2015-07-02 16:00:00,11728.0
-2015-07-02 17:00:00,11642.0
-2015-07-02 18:00:00,11661.0
-2015-07-02 19:00:00,11523.0
-2015-07-02 20:00:00,11063.0
-2015-07-02 21:00:00,10695.0
-2015-07-02 22:00:00,10742.0
-2015-07-02 23:00:00,10629.0
-2015-07-03 00:00:00,9953.0
-2015-07-01 01:00:00,9904.0
-2015-07-01 02:00:00,9236.0
-2015-07-01 03:00:00,8755.0
-2015-07-01 04:00:00,8491.0
-2015-07-01 05:00:00,8353.0
-2015-07-01 06:00:00,8463.0
-2015-07-01 07:00:00,8846.0
-2015-07-01 08:00:00,9546.0
-2015-07-01 09:00:00,10327.0
-2015-07-01 10:00:00,10867.0
-2015-07-01 11:00:00,11320.0
-2015-07-01 12:00:00,11719.0
-2015-07-01 13:00:00,11988.0
-2015-07-01 14:00:00,12125.0
-2015-07-01 15:00:00,12275.0
-2015-07-01 16:00:00,12276.0
-2015-07-01 17:00:00,12196.0
-2015-07-01 18:00:00,11958.0
-2015-07-01 19:00:00,11670.0
-2015-07-01 20:00:00,11156.0
-2015-07-01 21:00:00,10842.0
-2015-07-01 22:00:00,10959.0
-2015-07-01 23:00:00,10817.0
-2015-07-02 00:00:00,10077.0
-2015-06-30 01:00:00,10451.0
-2015-06-30 02:00:00,9758.0
-2015-06-30 03:00:00,9275.0
-2015-06-30 04:00:00,8972.0
-2015-06-30 05:00:00,8844.0
-2015-06-30 06:00:00,8967.0
-2015-06-30 07:00:00,9365.0
-2015-06-30 08:00:00,10156.0
-2015-06-30 09:00:00,11106.0
-2015-06-30 10:00:00,11826.0
-2015-06-30 11:00:00,12426.0
-2015-06-30 12:00:00,12994.0
-2015-06-30 13:00:00,13433.0
-2015-06-30 14:00:00,13787.0
-2015-06-30 15:00:00,14062.0
-2015-06-30 16:00:00,14192.0
-2015-06-30 17:00:00,14205.0
-2015-06-30 18:00:00,14024.0
-2015-06-30 19:00:00,13652.0
-2015-06-30 20:00:00,13016.0
-2015-06-30 21:00:00,12427.0
-2015-06-30 22:00:00,12131.0
-2015-06-30 23:00:00,11816.0
-2015-07-01 00:00:00,10899.0
-2015-06-29 01:00:00,9696.0
-2015-06-29 02:00:00,9185.0
-2015-06-29 03:00:00,8808.0
-2015-06-29 04:00:00,8634.0
-2015-06-29 05:00:00,8577.0
-2015-06-29 06:00:00,8821.0
-2015-06-29 07:00:00,9414.0
-2015-06-29 08:00:00,10278.0
-2015-06-29 09:00:00,11128.0
-2015-06-29 10:00:00,11686.0
-2015-06-29 11:00:00,12158.0
-2015-06-29 12:00:00,12664.0
-2015-06-29 13:00:00,13018.0
-2015-06-29 14:00:00,13236.0
-2015-06-29 15:00:00,13505.0
-2015-06-29 16:00:00,13519.0
-2015-06-29 17:00:00,13383.0
-2015-06-29 18:00:00,13145.0
-2015-06-29 19:00:00,12952.0
-2015-06-29 20:00:00,12710.0
-2015-06-29 21:00:00,12443.0
-2015-06-29 22:00:00,12415.0
-2015-06-29 23:00:00,12247.0
-2015-06-30 00:00:00,11413.0
-2015-06-28 01:00:00,9301.0
-2015-06-28 02:00:00,8686.0
-2015-06-28 03:00:00,8233.0
-2015-06-28 04:00:00,7972.0
-2015-06-28 05:00:00,7825.0
-2015-06-28 06:00:00,7739.0
-2015-06-28 07:00:00,7579.0
-2015-06-28 08:00:00,7647.0
-2015-06-28 09:00:00,8125.0
-2015-06-28 10:00:00,8755.0
-2015-06-28 11:00:00,9361.0
-2015-06-28 12:00:00,9954.0
-2015-06-28 13:00:00,10366.0
-2015-06-28 14:00:00,10820.0
-2015-06-28 15:00:00,11114.0
-2015-06-28 16:00:00,11260.0
-2015-06-28 17:00:00,11248.0
-2015-06-28 18:00:00,11267.0
-2015-06-28 19:00:00,11131.0
-2015-06-28 20:00:00,11028.0
-2015-06-28 21:00:00,10992.0
-2015-06-28 22:00:00,11111.0
-2015-06-28 23:00:00,10974.0
-2015-06-29 00:00:00,10366.0
-2015-06-27 01:00:00,9624.0
-2015-06-27 02:00:00,9011.0
-2015-06-27 03:00:00,8641.0
-2015-06-27 04:00:00,8322.0
-2015-06-27 05:00:00,8233.0
-2015-06-27 06:00:00,8146.0
-2015-06-27 07:00:00,8187.0
-2015-06-27 08:00:00,8362.0
-2015-06-27 09:00:00,8915.0
-2015-06-27 10:00:00,9530.0
-2015-06-27 11:00:00,10088.0
-2015-06-27 12:00:00,10403.0
-2015-06-27 13:00:00,10536.0
-2015-06-27 14:00:00,10659.0
-2015-06-27 15:00:00,10716.0
-2015-06-27 16:00:00,10789.0
-2015-06-27 17:00:00,10910.0
-2015-06-27 18:00:00,11060.0
-2015-06-27 19:00:00,11114.0
-2015-06-27 20:00:00,10968.0
-2015-06-27 21:00:00,10718.0
-2015-06-27 22:00:00,10563.0
-2015-06-27 23:00:00,10535.0
-2015-06-28 00:00:00,9955.0
-2015-06-26 01:00:00,10530.0
-2015-06-26 02:00:00,9758.0
-2015-06-26 03:00:00,9258.0
-2015-06-26 04:00:00,8923.0
-2015-06-26 05:00:00,8794.0
-2015-06-26 06:00:00,8881.0
-2015-06-26 07:00:00,9271.0
-2015-06-26 08:00:00,10051.0
-2015-06-26 09:00:00,10875.0
-2015-06-26 10:00:00,11457.0
-2015-06-26 11:00:00,11845.0
-2015-06-26 12:00:00,12173.0
-2015-06-26 13:00:00,12282.0
-2015-06-26 14:00:00,12297.0
-2015-06-26 15:00:00,12349.0
-2015-06-26 16:00:00,12197.0
-2015-06-26 17:00:00,11968.0
-2015-06-26 18:00:00,11754.0
-2015-06-26 19:00:00,11532.0
-2015-06-26 20:00:00,11277.0
-2015-06-26 21:00:00,11143.0
-2015-06-26 22:00:00,11156.0
-2015-06-26 23:00:00,10986.0
-2015-06-27 00:00:00,10355.0
-2015-06-25 01:00:00,11087.0
-2015-06-25 02:00:00,10321.0
-2015-06-25 03:00:00,9799.0
-2015-06-25 04:00:00,9522.0
-2015-06-25 05:00:00,9407.0
-2015-06-25 06:00:00,9519.0
-2015-06-25 07:00:00,10020.0
-2015-06-25 08:00:00,10889.0
-2015-06-25 09:00:00,11757.0
-2015-06-25 10:00:00,12510.0
-2015-06-25 11:00:00,13235.0
-2015-06-25 12:00:00,14160.0
-2015-06-25 13:00:00,14726.0
-2015-06-25 14:00:00,14905.0
-2015-06-25 15:00:00,14898.0
-2015-06-25 16:00:00,14714.0
-2015-06-25 17:00:00,14385.0
-2015-06-25 18:00:00,14064.0
-2015-06-25 19:00:00,13715.0
-2015-06-25 20:00:00,13214.0
-2015-06-25 21:00:00,12882.0
-2015-06-25 22:00:00,12828.0
-2015-06-25 23:00:00,12513.0
-2015-06-26 00:00:00,11585.0
-2015-06-24 01:00:00,11139.0
-2015-06-24 02:00:00,10282.0
-2015-06-24 03:00:00,9656.0
-2015-06-24 04:00:00,9248.0
-2015-06-24 05:00:00,9079.0
-2015-06-24 06:00:00,9181.0
-2015-06-24 07:00:00,9502.0
-2015-06-24 08:00:00,10460.0
-2015-06-24 09:00:00,11369.0
-2015-06-24 10:00:00,11982.0
-2015-06-24 11:00:00,12459.0
-2015-06-24 12:00:00,12995.0
-2015-06-24 13:00:00,13585.0
-2015-06-24 14:00:00,14043.0
-2015-06-24 15:00:00,14390.0
-2015-06-24 16:00:00,14607.0
-2015-06-24 17:00:00,14823.0
-2015-06-24 18:00:00,14755.0
-2015-06-24 19:00:00,14278.0
-2015-06-24 20:00:00,13744.0
-2015-06-24 21:00:00,13401.0
-2015-06-24 22:00:00,13320.0
-2015-06-24 23:00:00,13089.0
-2015-06-25 00:00:00,12127.0
-2015-06-23 01:00:00,12720.0
-2015-06-23 02:00:00,11790.0
-2015-06-23 03:00:00,11150.0
-2015-06-23 04:00:00,10733.0
-2015-06-23 05:00:00,10418.0
-2015-06-23 06:00:00,10332.0
-2015-06-23 07:00:00,10470.0
-2015-06-23 08:00:00,11333.0
-2015-06-23 09:00:00,12314.0
-2015-06-23 10:00:00,12996.0
-2015-06-23 11:00:00,13509.0
-2015-06-23 12:00:00,13993.0
-2015-06-23 13:00:00,14312.0
-2015-06-23 14:00:00,14593.0
-2015-06-23 15:00:00,14856.0
-2015-06-23 16:00:00,15092.0
-2015-06-23 17:00:00,15342.0
-2015-06-23 18:00:00,15493.0
-2015-06-23 19:00:00,15398.0
-2015-06-23 20:00:00,14914.0
-2015-06-23 21:00:00,14251.0
-2015-06-23 22:00:00,13695.0
-2015-06-23 23:00:00,13404.0
-2015-06-24 00:00:00,12342.0
-2015-06-22 01:00:00,11699.0
-2015-06-22 02:00:00,10862.0
-2015-06-22 03:00:00,10212.0
-2015-06-22 04:00:00,9827.0
-2015-06-22 05:00:00,9634.0
-2015-06-22 06:00:00,9852.0
-2015-06-22 07:00:00,10394.0
-2015-06-22 08:00:00,11618.0
-2015-06-22 09:00:00,12946.0
-2015-06-22 10:00:00,13754.0
-2015-06-22 11:00:00,14428.0
-2015-06-22 12:00:00,14739.0
-2015-06-22 13:00:00,14875.0
-2015-06-22 14:00:00,14768.0
-2015-06-22 15:00:00,14873.0
-2015-06-22 16:00:00,15422.0
-2015-06-22 17:00:00,15458.0
-2015-06-22 18:00:00,15692.0
-2015-06-22 19:00:00,15951.0
-2015-06-22 20:00:00,16023.0
-2015-06-22 21:00:00,15934.0
-2015-06-22 22:00:00,16055.0
-2015-06-22 23:00:00,15655.0
-2015-06-23 00:00:00,14181.0
-2015-06-21 01:00:00,10126.0
-2015-06-21 02:00:00,9483.0
-2015-06-21 03:00:00,9061.0
-2015-06-21 04:00:00,8720.0
-2015-06-21 05:00:00,8554.0
-2015-06-21 06:00:00,8494.0
-2015-06-21 07:00:00,8347.0
-2015-06-21 08:00:00,8363.0
-2015-06-21 09:00:00,8869.0
-2015-06-21 10:00:00,9718.0
-2015-06-21 11:00:00,10497.0
-2015-06-21 12:00:00,11488.0
-2015-06-21 13:00:00,12229.0
-2015-06-21 14:00:00,12754.0
-2015-06-21 15:00:00,13306.0
-2015-06-21 16:00:00,13778.0
-2015-06-21 17:00:00,14094.0
-2015-06-21 18:00:00,14011.0
-2015-06-21 19:00:00,13832.0
-2015-06-21 20:00:00,13712.0
-2015-06-21 21:00:00,13573.0
-2015-06-21 22:00:00,13495.0
-2015-06-21 23:00:00,13500.0
-2015-06-22 00:00:00,12814.0
-2015-06-20 01:00:00,9443.0
-2015-06-20 02:00:00,8818.0
-2015-06-20 03:00:00,8459.0
-2015-06-20 04:00:00,8195.0
-2015-06-20 05:00:00,8048.0
-2015-06-20 06:00:00,8080.0
-2015-06-20 07:00:00,8085.0
-2015-06-20 08:00:00,8311.0
-2015-06-20 09:00:00,8824.0
-2015-06-20 10:00:00,9472.0
-2015-06-20 11:00:00,9947.0
-2015-06-20 12:00:00,10349.0
-2015-06-20 13:00:00,10539.0
-2015-06-20 14:00:00,10742.0
-2015-06-20 15:00:00,10881.0
-2015-06-20 16:00:00,11171.0
-2015-06-20 17:00:00,11450.0
-2015-06-20 18:00:00,11698.0
-2015-06-20 19:00:00,11711.0
-2015-06-20 20:00:00,11611.0
-2015-06-20 21:00:00,11598.0
-2015-06-20 22:00:00,11750.0
-2015-06-20 23:00:00,11550.0
-2015-06-21 00:00:00,10861.0
-2015-06-19 01:00:00,10220.0
-2015-06-19 02:00:00,9414.0
-2015-06-19 03:00:00,8918.0
-2015-06-19 04:00:00,8565.0
-2015-06-19 05:00:00,8417.0
-2015-06-19 06:00:00,8547.0
-2015-06-19 07:00:00,8738.0
-2015-06-19 08:00:00,9478.0
-2015-06-19 09:00:00,10319.0
-2015-06-19 10:00:00,10931.0
-2015-06-19 11:00:00,11377.0
-2015-06-19 12:00:00,11708.0
-2015-06-19 13:00:00,11897.0
-2015-06-19 14:00:00,12045.0
-2015-06-19 15:00:00,12212.0
-2015-06-19 16:00:00,12209.0
-2015-06-19 17:00:00,12072.0
-2015-06-19 18:00:00,11913.0
-2015-06-19 19:00:00,11641.0
-2015-06-19 20:00:00,11240.0
-2015-06-19 21:00:00,10891.0
-2015-06-19 22:00:00,10850.0
-2015-06-19 23:00:00,10898.0
-2015-06-20 00:00:00,10216.0
-2015-06-18 01:00:00,10350.0
-2015-06-18 02:00:00,9708.0
-2015-06-18 03:00:00,9282.0
-2015-06-18 04:00:00,8999.0
-2015-06-18 05:00:00,8955.0
-2015-06-18 06:00:00,9138.0
-2015-06-18 07:00:00,9644.0
-2015-06-18 08:00:00,10794.0
-2015-06-18 09:00:00,11910.0
-2015-06-18 10:00:00,12646.0
-2015-06-18 11:00:00,13267.0
-2015-06-18 12:00:00,13998.0
-2015-06-18 13:00:00,14557.0
-2015-06-18 14:00:00,14939.0
-2015-06-18 15:00:00,15311.0
-2015-06-18 16:00:00,15420.0
-2015-06-18 17:00:00,15261.0
-2015-06-18 18:00:00,14957.0
-2015-06-18 19:00:00,14602.0
-2015-06-18 20:00:00,13916.0
-2015-06-18 21:00:00,13194.0
-2015-06-18 22:00:00,12812.0
-2015-06-18 23:00:00,12357.0
-2015-06-19 00:00:00,11302.0
-2015-06-17 01:00:00,9870.0
-2015-06-17 02:00:00,9221.0
-2015-06-17 03:00:00,8798.0
-2015-06-17 04:00:00,8517.0
-2015-06-17 05:00:00,8395.0
-2015-06-17 06:00:00,8559.0
-2015-06-17 07:00:00,8967.0
-2015-06-17 08:00:00,9758.0
-2015-06-17 09:00:00,10614.0
-2015-06-17 10:00:00,11099.0
-2015-06-17 11:00:00,11345.0
-2015-06-17 12:00:00,11614.0
-2015-06-17 13:00:00,11810.0
-2015-06-17 14:00:00,11990.0
-2015-06-17 15:00:00,12192.0
-2015-06-17 16:00:00,12259.0
-2015-06-17 17:00:00,12293.0
-2015-06-17 18:00:00,12299.0
-2015-06-17 19:00:00,12208.0
-2015-06-17 20:00:00,11931.0
-2015-06-17 21:00:00,11795.0
-2015-06-17 22:00:00,11992.0
-2015-06-17 23:00:00,11917.0
-2015-06-18 00:00:00,11192.0
-2015-06-16 01:00:00,11867.0
-2015-06-16 02:00:00,10937.0
-2015-06-16 03:00:00,10234.0
-2015-06-16 04:00:00,9781.0
-2015-06-16 05:00:00,9556.0
-2015-06-16 06:00:00,9606.0
-2015-06-16 07:00:00,9942.0
-2015-06-16 08:00:00,10843.0
-2015-06-16 09:00:00,11818.0
-2015-06-16 10:00:00,12477.0
-2015-06-16 11:00:00,12900.0
-2015-06-16 12:00:00,13282.0
-2015-06-16 13:00:00,13487.0
-2015-06-16 14:00:00,13610.0
-2015-06-16 15:00:00,13828.0
-2015-06-16 16:00:00,13933.0
-2015-06-16 17:00:00,14027.0
-2015-06-16 18:00:00,13924.0
-2015-06-16 19:00:00,13582.0
-2015-06-16 20:00:00,12886.0
-2015-06-16 21:00:00,12203.0
-2015-06-16 22:00:00,11918.0
-2015-06-16 23:00:00,11697.0
-2015-06-17 00:00:00,10836.0
-2015-06-15 01:00:00,11715.0
-2015-06-15 02:00:00,10918.0
-2015-06-15 03:00:00,10317.0
-2015-06-15 04:00:00,9990.0
-2015-06-15 05:00:00,9884.0
-2015-06-15 06:00:00,10049.0
-2015-06-15 07:00:00,10602.0
-2015-06-15 08:00:00,11736.0
-2015-06-15 09:00:00,12826.0
-2015-06-15 10:00:00,13629.0
-2015-06-15 11:00:00,14272.0
-2015-06-15 12:00:00,14821.0
-2015-06-15 13:00:00,14988.0
-2015-06-15 14:00:00,14973.0
-2015-06-15 15:00:00,15349.0
-2015-06-15 16:00:00,15831.0
-2015-06-15 17:00:00,16148.0
-2015-06-15 18:00:00,16009.0
-2015-06-15 19:00:00,15471.0
-2015-06-15 20:00:00,15052.0
-2015-06-15 21:00:00,14589.0
-2015-06-15 22:00:00,14274.0
-2015-06-15 23:00:00,13780.0
-2015-06-16 00:00:00,12882.0
-2015-06-14 01:00:00,10712.0
-2015-06-14 02:00:00,10093.0
-2015-06-14 03:00:00,9608.0
-2015-06-14 04:00:00,9214.0
-2015-06-14 05:00:00,8971.0
-2015-06-14 06:00:00,8858.0
-2015-06-14 07:00:00,8905.0
-2015-06-14 08:00:00,9020.0
-2015-06-14 09:00:00,9337.0
-2015-06-14 10:00:00,9919.0
-2015-06-14 11:00:00,10570.0
-2015-06-14 12:00:00,11292.0
-2015-06-14 13:00:00,11950.0
-2015-06-14 14:00:00,12608.0
-2015-06-14 15:00:00,13107.0
-2015-06-14 16:00:00,13434.0
-2015-06-14 17:00:00,13867.0
-2015-06-14 18:00:00,14160.0
-2015-06-14 19:00:00,14239.0
-2015-06-14 20:00:00,14042.0
-2015-06-14 21:00:00,13803.0
-2015-06-14 22:00:00,13658.0
-2015-06-14 23:00:00,13504.0
-2015-06-15 00:00:00,12664.0
-2015-06-13 01:00:00,9301.0
-2015-06-13 02:00:00,8749.0
-2015-06-13 03:00:00,8396.0
-2015-06-13 04:00:00,8149.0
-2015-06-13 05:00:00,8005.0
-2015-06-13 06:00:00,8103.0
-2015-06-13 07:00:00,8164.0
-2015-06-13 08:00:00,8354.0
-2015-06-13 09:00:00,8914.0
-2015-06-13 10:00:00,9554.0
-2015-06-13 11:00:00,10276.0
-2015-06-13 12:00:00,10867.0
-2015-06-13 13:00:00,11578.0
-2015-06-13 14:00:00,12159.0
-2015-06-13 15:00:00,12703.0
-2015-06-13 16:00:00,13144.0
-2015-06-13 17:00:00,13367.0
-2015-06-13 18:00:00,13594.0
-2015-06-13 19:00:00,13313.0
-2015-06-13 20:00:00,12873.0
-2015-06-13 21:00:00,12556.0
-2015-06-13 22:00:00,12471.0
-2015-06-13 23:00:00,12113.0
-2015-06-14 00:00:00,11507.0
-2015-06-12 01:00:00,10268.0
-2015-06-12 02:00:00,9640.0
-2015-06-12 03:00:00,9190.0
-2015-06-12 04:00:00,9005.0
-2015-06-12 05:00:00,8851.0
-2015-06-12 06:00:00,9011.0
-2015-06-12 07:00:00,9409.0
-2015-06-12 08:00:00,10372.0
-2015-06-12 09:00:00,11350.0
-2015-06-12 10:00:00,11895.0
-2015-06-12 11:00:00,12339.0
-2015-06-12 12:00:00,12560.0
-2015-06-12 13:00:00,12418.0
-2015-06-12 14:00:00,12217.0
-2015-06-12 15:00:00,12041.0
-2015-06-12 16:00:00,11794.0
-2015-06-12 17:00:00,11465.0
-2015-06-12 18:00:00,11255.0
-2015-06-12 19:00:00,10966.0
-2015-06-12 20:00:00,10748.0
-2015-06-12 21:00:00,10670.0
-2015-06-12 22:00:00,10828.0
-2015-06-12 23:00:00,10651.0
-2015-06-13 00:00:00,10009.0
-2015-06-11 01:00:00,12212.0
-2015-06-11 02:00:00,11199.0
-2015-06-11 03:00:00,10494.0
-2015-06-11 04:00:00,10017.0
-2015-06-11 05:00:00,9767.0
-2015-06-11 06:00:00,9757.0
-2015-06-11 07:00:00,10052.0
-2015-06-11 08:00:00,10883.0
-2015-06-11 09:00:00,11794.0
-2015-06-11 10:00:00,12456.0
-2015-06-11 11:00:00,12806.0
-2015-06-11 12:00:00,13163.0
-2015-06-11 13:00:00,13418.0
-2015-06-11 14:00:00,13848.0
-2015-06-11 15:00:00,13976.0
-2015-06-11 16:00:00,13889.0
-2015-06-11 17:00:00,13652.0
-2015-06-11 18:00:00,13286.0
-2015-06-11 19:00:00,12756.0
-2015-06-11 20:00:00,12281.0
-2015-06-11 21:00:00,12185.0
-2015-06-11 22:00:00,12347.0
-2015-06-11 23:00:00,12047.0
-2015-06-12 00:00:00,11194.0
-2015-06-10 01:00:00,12245.0
-2015-06-10 02:00:00,11325.0
-2015-06-10 03:00:00,10669.0
-2015-06-10 04:00:00,10198.0
-2015-06-10 05:00:00,10027.0
-2015-06-10 06:00:00,10116.0
-2015-06-10 07:00:00,10537.0
-2015-06-10 08:00:00,11741.0
-2015-06-10 09:00:00,13136.0
-2015-06-10 10:00:00,14345.0
-2015-06-10 11:00:00,15292.0
-2015-06-10 12:00:00,16165.0
-2015-06-10 13:00:00,16912.0
-2015-06-10 14:00:00,17534.0
-2015-06-10 15:00:00,18170.0
-2015-06-10 16:00:00,18489.0
-2015-06-10 17:00:00,18472.0
-2015-06-10 18:00:00,18222.0
-2015-06-10 19:00:00,17629.0
-2015-06-10 20:00:00,16655.0
-2015-06-10 21:00:00,15818.0
-2015-06-10 22:00:00,15266.0
-2015-06-10 23:00:00,14790.0
-2015-06-11 00:00:00,13589.0
-2015-06-09 01:00:00,10186.0
-2015-06-09 02:00:00,9483.0
-2015-06-09 03:00:00,9023.0
-2015-06-09 04:00:00,8714.0
-2015-06-09 05:00:00,8524.0
-2015-06-09 06:00:00,8674.0
-2015-06-09 07:00:00,9143.0
-2015-06-09 08:00:00,10022.0
-2015-06-09 09:00:00,10943.0
-2015-06-09 10:00:00,11583.0
-2015-06-09 11:00:00,12120.0
-2015-06-09 12:00:00,12737.0
-2015-06-09 13:00:00,13282.0
-2015-06-09 14:00:00,13793.0
-2015-06-09 15:00:00,14363.0
-2015-06-09 16:00:00,14892.0
-2015-06-09 17:00:00,15342.0
-2015-06-09 18:00:00,15664.0
-2015-06-09 19:00:00,15742.0
-2015-06-09 20:00:00,15430.0
-2015-06-09 21:00:00,15001.0
-2015-06-09 22:00:00,14771.0
-2015-06-09 23:00:00,14537.0
-2015-06-10 00:00:00,13478.0
-2015-06-08 01:00:00,10137.0
-2015-06-08 02:00:00,9488.0
-2015-06-08 03:00:00,9076.0
-2015-06-08 04:00:00,8780.0
-2015-06-08 05:00:00,8687.0
-2015-06-08 06:00:00,8881.0
-2015-06-08 07:00:00,9393.0
-2015-06-08 08:00:00,10422.0
-2015-06-08 09:00:00,11570.0
-2015-06-08 10:00:00,12424.0
-2015-06-08 11:00:00,13163.0
-2015-06-08 12:00:00,13875.0
-2015-06-08 13:00:00,14408.0
-2015-06-08 14:00:00,14772.0
-2015-06-08 15:00:00,15171.0
-2015-06-08 16:00:00,15346.0
-2015-06-08 17:00:00,15132.0
-2015-06-08 18:00:00,14432.0
-2015-06-08 19:00:00,13863.0
-2015-06-08 20:00:00,13511.0
-2015-06-08 21:00:00,13057.0
-2015-06-08 22:00:00,12715.0
-2015-06-08 23:00:00,12253.0
-2015-06-09 00:00:00,11297.0
-2015-06-07 01:00:00,8796.0
-2015-06-07 02:00:00,8289.0
-2015-06-07 03:00:00,7941.0
-2015-06-07 04:00:00,7716.0
-2015-06-07 05:00:00,7613.0
-2015-06-07 06:00:00,7589.0
-2015-06-07 07:00:00,7537.0
-2015-06-07 08:00:00,7615.0
-2015-06-07 09:00:00,8028.0
-2015-06-07 10:00:00,8658.0
-2015-06-07 11:00:00,9075.0
-2015-06-07 12:00:00,9432.0
-2015-06-07 13:00:00,9745.0
-2015-06-07 14:00:00,9910.0
-2015-06-07 15:00:00,10067.0
-2015-06-07 16:00:00,10368.0
-2015-06-07 17:00:00,10848.0
-2015-06-07 18:00:00,11275.0
-2015-06-07 19:00:00,11428.0
-2015-06-07 20:00:00,11423.0
-2015-06-07 21:00:00,11378.0
-2015-06-07 22:00:00,11651.0
-2015-06-07 23:00:00,11594.0
-2015-06-08 00:00:00,10909.0
-2015-06-06 01:00:00,9162.0
-2015-06-06 02:00:00,8574.0
-2015-06-06 03:00:00,8168.0
-2015-06-06 04:00:00,7913.0
-2015-06-06 05:00:00,7805.0
-2015-06-06 06:00:00,7809.0
-2015-06-06 07:00:00,7825.0
-2015-06-06 08:00:00,8030.0
-2015-06-06 09:00:00,8455.0
-2015-06-06 10:00:00,9057.0
-2015-06-06 11:00:00,9514.0
-2015-06-06 12:00:00,9872.0
-2015-06-06 13:00:00,10073.0
-2015-06-06 14:00:00,10119.0
-2015-06-06 15:00:00,10139.0
-2015-06-06 16:00:00,10202.0
-2015-06-06 17:00:00,10283.0
-2015-06-06 18:00:00,10389.0
-2015-06-06 19:00:00,10399.0
-2015-06-06 20:00:00,10140.0
-2015-06-06 21:00:00,9861.0
-2015-06-06 22:00:00,9909.0
-2015-06-06 23:00:00,9917.0
-2015-06-07 00:00:00,9395.0
-2015-06-05 01:00:00,11096.0
-2015-06-05 02:00:00,10249.0
-2015-06-05 03:00:00,9627.0
-2015-06-05 04:00:00,9184.0
-2015-06-05 05:00:00,8956.0
-2015-06-05 06:00:00,9002.0
-2015-06-05 07:00:00,9332.0
-2015-06-05 08:00:00,10045.0
-2015-06-05 09:00:00,10765.0
-2015-06-05 10:00:00,11161.0
-2015-06-05 11:00:00,11472.0
-2015-06-05 12:00:00,11678.0
-2015-06-05 13:00:00,11808.0
-2015-06-05 14:00:00,11914.0
-2015-06-05 15:00:00,12014.0
-2015-06-05 16:00:00,11960.0
-2015-06-05 17:00:00,11831.0
-2015-06-05 18:00:00,11613.0
-2015-06-05 19:00:00,11356.0
-2015-06-05 20:00:00,10929.0
-2015-06-05 21:00:00,10580.0
-2015-06-05 22:00:00,10627.0
-2015-06-05 23:00:00,10577.0
-2015-06-06 00:00:00,9920.0
-2015-06-04 01:00:00,9808.0
-2015-06-04 02:00:00,9109.0
-2015-06-04 03:00:00,8688.0
-2015-06-04 04:00:00,8413.0
-2015-06-04 05:00:00,8296.0
-2015-06-04 06:00:00,8460.0
-2015-06-04 07:00:00,8902.0
-2015-06-04 08:00:00,9863.0
-2015-06-04 09:00:00,10804.0
-2015-06-04 10:00:00,11494.0
-2015-06-04 11:00:00,12019.0
-2015-06-04 12:00:00,12513.0
-2015-06-04 13:00:00,12831.0
-2015-06-04 14:00:00,13096.0
-2015-06-04 15:00:00,13515.0
-2015-06-04 16:00:00,13879.0
-2015-06-04 17:00:00,14128.0
-2015-06-04 18:00:00,14233.0
-2015-06-04 19:00:00,14071.0
-2015-06-04 20:00:00,13737.0
-2015-06-04 21:00:00,13473.0
-2015-06-04 22:00:00,13483.0
-2015-06-04 23:00:00,13238.0
-2015-06-05 00:00:00,12220.0
-2015-06-03 01:00:00,9197.0
-2015-06-03 02:00:00,8614.0
-2015-06-03 03:00:00,8266.0
-2015-06-03 04:00:00,8086.0
-2015-06-03 05:00:00,7995.0
-2015-06-03 06:00:00,8173.0
-2015-06-03 07:00:00,8545.0
-2015-06-03 08:00:00,9411.0
-2015-06-03 09:00:00,10334.0
-2015-06-03 10:00:00,10930.0
-2015-06-03 11:00:00,11311.0
-2015-06-03 12:00:00,11691.0
-2015-06-03 13:00:00,11911.0
-2015-06-03 14:00:00,12072.0
-2015-06-03 15:00:00,12338.0
-2015-06-03 16:00:00,12493.0
-2015-06-03 17:00:00,12574.0
-2015-06-03 18:00:00,12608.0
-2015-06-03 19:00:00,12460.0
-2015-06-03 20:00:00,12040.0
-2015-06-03 21:00:00,11796.0
-2015-06-03 22:00:00,11819.0
-2015-06-03 23:00:00,11643.0
-2015-06-04 00:00:00,10786.0
-2015-06-02 01:00:00,8913.0
-2015-06-02 02:00:00,8429.0
-2015-06-02 03:00:00,8131.0
-2015-06-02 04:00:00,7948.0
-2015-06-02 05:00:00,7918.0
-2015-06-02 06:00:00,8130.0
-2015-06-02 07:00:00,8502.0
-2015-06-02 08:00:00,9343.0
-2015-06-02 09:00:00,10115.0
-2015-06-02 10:00:00,10587.0
-2015-06-02 11:00:00,10904.0
-2015-06-02 12:00:00,11181.0
-2015-06-02 13:00:00,11275.0
-2015-06-02 14:00:00,11362.0
-2015-06-02 15:00:00,11462.0
-2015-06-02 16:00:00,11484.0
-2015-06-02 17:00:00,11466.0
-2015-06-02 18:00:00,11427.0
-2015-06-02 19:00:00,11320.0
-2015-06-02 20:00:00,11013.0
-2015-06-02 21:00:00,10805.0
-2015-06-02 22:00:00,10961.0
-2015-06-02 23:00:00,10847.0
-2015-06-03 00:00:00,10027.0
-2015-06-01 01:00:00,8422.0
-2015-06-01 02:00:00,8042.0
-2015-06-01 03:00:00,7846.0
-2015-06-01 04:00:00,7711.0
-2015-06-01 05:00:00,7746.0
-2015-06-01 06:00:00,7922.0
-2015-06-01 07:00:00,8466.0
-2015-06-01 08:00:00,9371.0
-2015-06-01 09:00:00,10145.0
-2015-06-01 10:00:00,10505.0
-2015-06-01 11:00:00,10699.0
-2015-06-01 12:00:00,10855.0
-2015-06-01 13:00:00,10900.0
-2015-06-01 14:00:00,10914.0
-2015-06-01 15:00:00,10977.0
-2015-06-01 16:00:00,10950.0
-2015-06-01 17:00:00,10820.0
-2015-06-01 18:00:00,10723.0
-2015-06-01 19:00:00,10570.0
-2015-06-01 20:00:00,10323.0
-2015-06-01 21:00:00,10257.0
-2015-06-01 22:00:00,10504.0
-2015-06-01 23:00:00,10408.0
-2015-06-02 00:00:00,9683.0
-2015-05-31 01:00:00,8643.0
-2015-05-31 02:00:00,8168.0
-2015-05-31 03:00:00,7890.0
-2015-05-31 04:00:00,7657.0
-2015-05-31 05:00:00,7556.0
-2015-05-31 06:00:00,7536.0
-2015-05-31 07:00:00,7501.0
-2015-05-31 08:00:00,7545.0
-2015-05-31 09:00:00,7855.0
-2015-05-31 10:00:00,8247.0
-2015-05-31 11:00:00,8557.0
-2015-05-31 12:00:00,8733.0
-2015-05-31 13:00:00,8817.0
-2015-05-31 14:00:00,8830.0
-2015-05-31 15:00:00,8827.0
-2015-05-31 16:00:00,8785.0
-2015-05-31 17:00:00,8752.0
-2015-05-31 18:00:00,8782.0
-2015-05-31 19:00:00,8824.0
-2015-05-31 20:00:00,8882.0
-2015-05-31 21:00:00,9021.0
-2015-05-31 22:00:00,9409.0
-2015-05-31 23:00:00,9421.0
-2015-06-01 00:00:00,8948.0
-2015-05-30 01:00:00,11433.0
-2015-05-30 02:00:00,10573.0
-2015-05-30 03:00:00,9978.0
-2015-05-30 04:00:00,9572.0
-2015-05-30 05:00:00,9326.0
-2015-05-30 06:00:00,9302.0
-2015-05-30 07:00:00,9387.0
-2015-05-30 08:00:00,9560.0
-2015-05-30 09:00:00,10083.0
-2015-05-30 10:00:00,10657.0
-2015-05-30 11:00:00,11036.0
-2015-05-30 12:00:00,11130.0
-2015-05-30 13:00:00,10847.0
-2015-05-30 14:00:00,10517.0
-2015-05-30 15:00:00,10044.0
-2015-05-30 16:00:00,9756.0
-2015-05-30 17:00:00,9620.0
-2015-05-30 18:00:00,9555.0
-2015-05-30 19:00:00,9500.0
-2015-05-30 20:00:00,9422.0
-2015-05-30 21:00:00,9518.0
-2015-05-30 22:00:00,9745.0
-2015-05-30 23:00:00,9661.0
-2015-05-31 00:00:00,9200.0
-2015-05-29 01:00:00,10633.0
-2015-05-29 02:00:00,9839.0
-2015-05-29 03:00:00,9340.0
-2015-05-29 04:00:00,9093.0
-2015-05-29 05:00:00,8953.0
-2015-05-29 06:00:00,9140.0
-2015-05-29 07:00:00,9636.0
-2015-05-29 08:00:00,10636.0
-2015-05-29 09:00:00,11789.0
-2015-05-29 10:00:00,12767.0
-2015-05-29 11:00:00,13558.0
-2015-05-29 12:00:00,14093.0
-2015-05-29 13:00:00,14158.0
-2015-05-29 14:00:00,14321.0
-2015-05-29 15:00:00,14716.0
-2015-05-29 16:00:00,14800.0
-2015-05-29 17:00:00,14791.0
-2015-05-29 18:00:00,14659.0
-2015-05-29 19:00:00,14483.0
-2015-05-29 20:00:00,14150.0
-2015-05-29 21:00:00,13698.0
-2015-05-29 22:00:00,13705.0
-2015-05-29 23:00:00,13423.0
-2015-05-30 00:00:00,12487.0
-2015-05-28 01:00:00,9951.0
-2015-05-28 02:00:00,9257.0
-2015-05-28 03:00:00,8858.0
-2015-05-28 04:00:00,8591.0
-2015-05-28 05:00:00,8453.0
-2015-05-28 06:00:00,8608.0
-2015-05-28 07:00:00,8997.0
-2015-05-28 08:00:00,9916.0
-2015-05-28 09:00:00,11017.0
-2015-05-28 10:00:00,11709.0
-2015-05-28 11:00:00,12337.0
-2015-05-28 12:00:00,12927.0
-2015-05-28 13:00:00,13316.0
-2015-05-28 14:00:00,13649.0
-2015-05-28 15:00:00,14088.0
-2015-05-28 16:00:00,14343.0
-2015-05-28 17:00:00,14579.0
-2015-05-28 18:00:00,14644.0
-2015-05-28 19:00:00,14457.0
-2015-05-28 20:00:00,13976.0
-2015-05-28 21:00:00,13397.0
-2015-05-28 22:00:00,13196.0
-2015-05-28 23:00:00,12786.0
-2015-05-29 00:00:00,11747.0
-2015-05-27 01:00:00,10250.0
-2015-05-27 02:00:00,9618.0
-2015-05-27 03:00:00,9197.0
-2015-05-27 04:00:00,8899.0
-2015-05-27 05:00:00,8757.0
-2015-05-27 06:00:00,8911.0
-2015-05-27 07:00:00,9361.0
-2015-05-27 08:00:00,10398.0
-2015-05-27 09:00:00,11374.0
-2015-05-27 10:00:00,11955.0
-2015-05-27 11:00:00,12302.0
-2015-05-27 12:00:00,12650.0
-2015-05-27 13:00:00,12794.0
-2015-05-27 14:00:00,12833.0
-2015-05-27 15:00:00,12980.0
-2015-05-27 16:00:00,12953.0
-2015-05-27 17:00:00,12844.0
-2015-05-27 18:00:00,12905.0
-2015-05-27 19:00:00,12900.0
-2015-05-27 20:00:00,12587.0
-2015-05-27 21:00:00,12227.0
-2015-05-27 22:00:00,12264.0
-2015-05-27 23:00:00,11866.0
-2015-05-28 00:00:00,10944.0
-2015-05-26 01:00:00,9759.0
-2015-05-26 02:00:00,9131.0
-2015-05-26 03:00:00,8729.0
-2015-05-26 04:00:00,8456.0
-2015-05-26 05:00:00,8398.0
-2015-05-26 06:00:00,8622.0
-2015-05-26 07:00:00,9305.0
-2015-05-26 08:00:00,10424.0
-2015-05-26 09:00:00,11467.0
-2015-05-26 10:00:00,12073.0
-2015-05-26 11:00:00,12489.0
-2015-05-26 12:00:00,12813.0
-2015-05-26 13:00:00,12976.0
-2015-05-26 14:00:00,13002.0
-2015-05-26 15:00:00,13016.0
-2015-05-26 16:00:00,13155.0
-2015-05-26 17:00:00,13295.0
-2015-05-26 18:00:00,13319.0
-2015-05-26 19:00:00,13149.0
-2015-05-26 20:00:00,12710.0
-2015-05-26 21:00:00,12353.0
-2015-05-26 22:00:00,12363.0
-2015-05-26 23:00:00,12089.0
-2015-05-27 00:00:00,11177.0
-2015-05-25 01:00:00,8979.0
-2015-05-25 02:00:00,8506.0
-2015-05-25 03:00:00,8252.0
-2015-05-25 04:00:00,8053.0
-2015-05-25 05:00:00,7969.0
-2015-05-25 06:00:00,7940.0
-2015-05-25 07:00:00,8095.0
-2015-05-25 08:00:00,8129.0
-2015-05-25 09:00:00,8530.0
-2015-05-25 10:00:00,8974.0
-2015-05-25 11:00:00,9515.0
-2015-05-25 12:00:00,9841.0
-2015-05-25 13:00:00,10138.0
-2015-05-25 14:00:00,10334.0
-2015-05-25 15:00:00,10490.0
-2015-05-25 16:00:00,10687.0
-2015-05-25 17:00:00,10866.0
-2015-05-25 18:00:00,11041.0
-2015-05-25 19:00:00,11197.0
-2015-05-25 20:00:00,11023.0
-2015-05-25 21:00:00,10985.0
-2015-05-25 22:00:00,11318.0
-2015-05-25 23:00:00,11273.0
-2015-05-26 00:00:00,10563.0
-2015-05-24 01:00:00,8933.0
-2015-05-24 02:00:00,8407.0
-2015-05-24 03:00:00,8015.0
-2015-05-24 04:00:00,7761.0
-2015-05-24 05:00:00,7613.0
-2015-05-24 06:00:00,7561.0
-2015-05-24 07:00:00,7495.0
-2015-05-24 08:00:00,7484.0
-2015-05-24 09:00:00,7786.0
-2015-05-24 10:00:00,8259.0
-2015-05-24 11:00:00,8643.0
-2015-05-24 12:00:00,8989.0
-2015-05-24 13:00:00,9202.0
-2015-05-24 14:00:00,9289.0
-2015-05-24 15:00:00,9367.0
-2015-05-24 16:00:00,9405.0
-2015-05-24 17:00:00,9462.0
-2015-05-24 18:00:00,9462.0
-2015-05-24 19:00:00,9450.0
-2015-05-24 20:00:00,9430.0
-2015-05-24 21:00:00,9566.0
-2015-05-24 22:00:00,9830.0
-2015-05-24 23:00:00,9817.0
-2015-05-25 00:00:00,9430.0
-2015-05-23 01:00:00,8835.0
-2015-05-23 02:00:00,8331.0
-2015-05-23 03:00:00,7932.0
-2015-05-23 04:00:00,7797.0
-2015-05-23 05:00:00,7654.0
-2015-05-23 06:00:00,7697.0
-2015-05-23 07:00:00,7606.0
-2015-05-23 08:00:00,7788.0
-2015-05-23 09:00:00,8239.0
-2015-05-23 10:00:00,8790.0
-2015-05-23 11:00:00,9209.0
-2015-05-23 12:00:00,9481.0
-2015-05-23 13:00:00,9633.0
-2015-05-23 14:00:00,9763.0
-2015-05-23 15:00:00,9798.0
-2015-05-23 16:00:00,9871.0
-2015-05-23 17:00:00,10025.0
-2015-05-23 18:00:00,10138.0
-2015-05-23 19:00:00,10216.0
-2015-05-23 20:00:00,10141.0
-2015-05-23 21:00:00,9960.0
-2015-05-23 22:00:00,10176.0
-2015-05-23 23:00:00,10067.0
-2015-05-24 00:00:00,9531.0
-2015-05-22 01:00:00,9118.0
-2015-05-22 02:00:00,8625.0
-2015-05-22 03:00:00,8266.0
-2015-05-22 04:00:00,8061.0
-2015-05-22 05:00:00,7983.0
-2015-05-22 06:00:00,8139.0
-2015-05-22 07:00:00,8521.0
-2015-05-22 08:00:00,9331.0
-2015-05-22 09:00:00,10082.0
-2015-05-22 10:00:00,10532.0
-2015-05-22 11:00:00,10788.0
-2015-05-22 12:00:00,10978.0
-2015-05-22 13:00:00,11047.0
-2015-05-22 14:00:00,11063.0
-2015-05-22 15:00:00,11105.0
-2015-05-22 16:00:00,11059.0
-2015-05-22 17:00:00,10929.0
-2015-05-22 18:00:00,10727.0
-2015-05-22 19:00:00,10442.0
-2015-05-22 20:00:00,10129.0
-2015-05-22 21:00:00,10040.0
-2015-05-22 22:00:00,10359.0
-2015-05-22 23:00:00,10200.0
-2015-05-23 00:00:00,9550.0
-2015-05-21 01:00:00,9285.0
-2015-05-21 02:00:00,8817.0
-2015-05-21 03:00:00,8521.0
-2015-05-21 04:00:00,8321.0
-2015-05-21 05:00:00,8278.0
-2015-05-21 06:00:00,8493.0
-2015-05-21 07:00:00,9081.0
-2015-05-21 08:00:00,9944.0
-2015-05-21 09:00:00,10661.0
-2015-05-21 10:00:00,10929.0
-2015-05-21 11:00:00,10997.0
-2015-05-21 12:00:00,11082.0
-2015-05-21 13:00:00,11123.0
-2015-05-21 14:00:00,11153.0
-2015-05-21 15:00:00,11236.0
-2015-05-21 16:00:00,11141.0
-2015-05-21 17:00:00,11080.0
-2015-05-21 18:00:00,10989.0
-2015-05-21 19:00:00,10848.0
-2015-05-21 20:00:00,10588.0
-2015-05-21 21:00:00,10485.0
-2015-05-21 22:00:00,10836.0
-2015-05-21 23:00:00,10654.0
-2015-05-22 00:00:00,9928.0
-2015-05-20 01:00:00,9141.0
-2015-05-20 02:00:00,8685.0
-2015-05-20 03:00:00,8354.0
-2015-05-20 04:00:00,8190.0
-2015-05-20 05:00:00,8116.0
-2015-05-20 06:00:00,8347.0
-2015-05-20 07:00:00,8876.0
-2015-05-20 08:00:00,9751.0
-2015-05-20 09:00:00,10513.0
-2015-05-20 10:00:00,10773.0
-2015-05-20 11:00:00,10900.0
-2015-05-20 12:00:00,11020.0
-2015-05-20 13:00:00,11070.0
-2015-05-20 14:00:00,11058.0
-2015-05-20 15:00:00,11152.0
-2015-05-20 16:00:00,11062.0
-2015-05-20 17:00:00,10992.0
-2015-05-20 18:00:00,11003.0
-2015-05-20 19:00:00,10931.0
-2015-05-20 20:00:00,10783.0
-2015-05-20 21:00:00,10766.0
-2015-05-20 22:00:00,11084.0
-2015-05-20 23:00:00,10746.0
-2015-05-21 00:00:00,10011.0
-2015-05-19 01:00:00,9223.0
-2015-05-19 02:00:00,8672.0
-2015-05-19 03:00:00,8322.0
-2015-05-19 04:00:00,8083.0
-2015-05-19 05:00:00,8020.0
-2015-05-19 06:00:00,8205.0
-2015-05-19 07:00:00,8717.0
-2015-05-19 08:00:00,9555.0
-2015-05-19 09:00:00,10297.0
-2015-05-19 10:00:00,10640.0
-2015-05-19 11:00:00,10821.0
-2015-05-19 12:00:00,10936.0
-2015-05-19 13:00:00,10962.0
-2015-05-19 14:00:00,10974.0
-2015-05-19 15:00:00,10982.0
-2015-05-19 16:00:00,10867.0
-2015-05-19 17:00:00,10701.0
-2015-05-19 18:00:00,10587.0
-2015-05-19 19:00:00,10476.0
-2015-05-19 20:00:00,10221.0
-2015-05-19 21:00:00,10256.0
-2015-05-19 22:00:00,10773.0
-2015-05-19 23:00:00,10543.0
-2015-05-20 00:00:00,9883.0
-2015-05-18 01:00:00,10405.0
-2015-05-18 02:00:00,9742.0
-2015-05-18 03:00:00,9349.0
-2015-05-18 04:00:00,9056.0
-2015-05-18 05:00:00,8988.0
-2015-05-18 06:00:00,9143.0
-2015-05-18 07:00:00,9631.0
-2015-05-18 08:00:00,10723.0
-2015-05-18 09:00:00,11842.0
-2015-05-18 10:00:00,12447.0
-2015-05-18 11:00:00,12899.0
-2015-05-18 12:00:00,13384.0
-2015-05-18 13:00:00,13735.0
-2015-05-18 14:00:00,13847.0
-2015-05-18 15:00:00,13960.0
-2015-05-18 16:00:00,13852.0
-2015-05-18 17:00:00,13688.0
-2015-05-18 18:00:00,13384.0
-2015-05-18 19:00:00,12876.0
-2015-05-18 20:00:00,12077.0
-2015-05-18 21:00:00,11504.0
-2015-05-18 22:00:00,11436.0
-2015-05-18 23:00:00,10995.0
-2015-05-19 00:00:00,10065.0
-2015-05-17 01:00:00,10101.0
-2015-05-17 02:00:00,9440.0
-2015-05-17 03:00:00,9283.0
-2015-05-17 04:00:00,8980.0
-2015-05-17 05:00:00,8441.0
-2015-05-17 06:00:00,8408.0
-2015-05-17 07:00:00,8372.0
-2015-05-17 08:00:00,8441.0
-2015-05-17 09:00:00,8787.0
-2015-05-17 10:00:00,9322.0
-2015-05-17 11:00:00,9814.0
-2015-05-17 12:00:00,10303.0
-2015-05-17 13:00:00,10798.0
-2015-05-17 14:00:00,11175.0
-2015-05-17 15:00:00,11728.0
-2015-05-17 16:00:00,12152.0
-2015-05-17 17:00:00,12381.0
-2015-05-17 18:00:00,12175.0
-2015-05-17 19:00:00,12245.0
-2015-05-17 20:00:00,12263.0
-2015-05-17 21:00:00,12004.0
-2015-05-17 22:00:00,12518.0
-2015-05-17 23:00:00,12342.0
-2015-05-18 00:00:00,11214.0
-2015-05-16 01:00:00,9821.0
-2015-05-16 02:00:00,9141.0
-2015-05-16 03:00:00,8755.0
-2015-05-16 04:00:00,8457.0
-2015-05-16 05:00:00,8341.0
-2015-05-16 06:00:00,8271.0
-2015-05-16 07:00:00,8433.0
-2015-05-16 08:00:00,8635.0
-2015-05-16 09:00:00,9148.0
-2015-05-16 10:00:00,9759.0
-2015-05-16 11:00:00,10254.0
-2015-05-16 12:00:00,10590.0
-2015-05-16 13:00:00,10888.0
-2015-05-16 14:00:00,11002.0
-2015-05-16 15:00:00,11059.0
-2015-05-16 16:00:00,11244.0
-2015-05-16 17:00:00,11477.0
-2015-05-16 18:00:00,11695.0
-2015-05-16 19:00:00,11680.0
-2015-05-16 20:00:00,11522.0
-2015-05-16 21:00:00,11336.0
-2015-05-16 22:00:00,11646.0
-2015-05-16 23:00:00,11476.0
-2015-05-17 00:00:00,10862.0
-2015-05-15 01:00:00,9108.0
-2015-05-15 02:00:00,8598.0
-2015-05-15 03:00:00,8289.0
-2015-05-15 04:00:00,8094.0
-2015-05-15 05:00:00,8040.0
-2015-05-15 06:00:00,8243.0
-2015-05-15 07:00:00,8773.0
-2015-05-15 08:00:00,9615.0
-2015-05-15 09:00:00,10497.0
-2015-05-15 10:00:00,11002.0
-2015-05-15 11:00:00,11341.0
-2015-05-15 12:00:00,11609.0
-2015-05-15 13:00:00,11722.0
-2015-05-15 14:00:00,11839.0
-2015-05-15 15:00:00,11969.0
-2015-05-15 16:00:00,11963.0
-2015-05-15 17:00:00,11934.0
-2015-05-15 18:00:00,11891.0
-2015-05-15 19:00:00,11729.0
-2015-05-15 20:00:00,11408.0
-2015-05-15 21:00:00,11309.0
-2015-05-15 22:00:00,11613.0
-2015-05-15 23:00:00,11344.0
-2015-05-16 00:00:00,10593.0
-2015-05-14 01:00:00,9181.0
-2015-05-14 02:00:00,8722.0
-2015-05-14 03:00:00,8458.0
-2015-05-14 04:00:00,8269.0
-2015-05-14 05:00:00,8240.0
-2015-05-14 06:00:00,8431.0
-2015-05-14 07:00:00,8957.0
-2015-05-14 08:00:00,9776.0
-2015-05-14 09:00:00,10508.0
-2015-05-14 10:00:00,10819.0
-2015-05-14 11:00:00,10967.0
-2015-05-14 12:00:00,11151.0
-2015-05-14 13:00:00,11198.0
-2015-05-14 14:00:00,11195.0
-2015-05-14 15:00:00,11235.0
-2015-05-14 16:00:00,11175.0
-2015-05-14 17:00:00,11037.0
-2015-05-14 18:00:00,10912.0
-2015-05-14 19:00:00,10748.0
-2015-05-14 20:00:00,10698.0
-2015-05-14 21:00:00,10821.0
-2015-05-14 22:00:00,10991.0
-2015-05-14 23:00:00,10593.0
-2015-05-15 00:00:00,9847.0
-2015-05-13 01:00:00,9168.0
-2015-05-13 02:00:00,8701.0
-2015-05-13 03:00:00,8466.0
-2015-05-13 04:00:00,8309.0
-2015-05-13 05:00:00,8297.0
-2015-05-13 06:00:00,8539.0
-2015-05-13 07:00:00,9091.0
-2015-05-13 08:00:00,9936.0
-2015-05-13 09:00:00,10556.0
-2015-05-13 10:00:00,10828.0
-2015-05-13 11:00:00,10964.0
-2015-05-13 12:00:00,10979.0
-2015-05-13 13:00:00,10977.0
-2015-05-13 14:00:00,11004.0
-2015-05-13 15:00:00,10996.0
-2015-05-13 16:00:00,10909.0
-2015-05-13 17:00:00,10751.0
-2015-05-13 18:00:00,10639.0
-2015-05-13 19:00:00,10479.0
-2015-05-13 20:00:00,10300.0
-2015-05-13 21:00:00,10347.0
-2015-05-13 22:00:00,10880.0
-2015-05-13 23:00:00,10651.0
-2015-05-14 00:00:00,9888.0
-2015-05-12 01:00:00,9142.0
-2015-05-12 02:00:00,8654.0
-2015-05-12 03:00:00,8380.0
-2015-05-12 04:00:00,8230.0
-2015-05-12 05:00:00,8148.0
-2015-05-12 06:00:00,8383.0
-2015-05-12 07:00:00,8972.0
-2015-05-12 08:00:00,9809.0
-2015-05-12 09:00:00,10575.0
-2015-05-12 10:00:00,10922.0
-2015-05-12 11:00:00,11062.0
-2015-05-12 12:00:00,11165.0
-2015-05-12 13:00:00,11144.0
-2015-05-12 14:00:00,11110.0
-2015-05-12 15:00:00,11114.0
-2015-05-12 16:00:00,11016.0
-2015-05-12 17:00:00,10832.0
-2015-05-12 18:00:00,10703.0
-2015-05-12 19:00:00,10570.0
-2015-05-12 20:00:00,10390.0
-2015-05-12 21:00:00,10561.0
-2015-05-12 22:00:00,10986.0
-2015-05-12 23:00:00,10660.0
-2015-05-13 00:00:00,9989.0
-2015-05-11 01:00:00,8467.0
-2015-05-11 02:00:00,8123.0
-2015-05-11 03:00:00,7867.0
-2015-05-11 04:00:00,7840.0
-2015-05-11 05:00:00,7837.0
-2015-05-11 06:00:00,8112.0
-2015-05-11 07:00:00,8723.0
-2015-05-11 08:00:00,9729.0
-2015-05-11 09:00:00,10764.0
-2015-05-11 10:00:00,11243.0
-2015-05-11 11:00:00,11457.0
-2015-05-11 12:00:00,11638.0
-2015-05-11 13:00:00,11734.0
-2015-05-11 14:00:00,11767.0
-2015-05-11 15:00:00,11795.0
-2015-05-11 16:00:00,11679.0
-2015-05-11 17:00:00,11522.0
-2015-05-11 18:00:00,11425.0
-2015-05-11 19:00:00,11201.0
-2015-05-11 20:00:00,10854.0
-2015-05-11 21:00:00,10740.0
-2015-05-11 22:00:00,11055.0
-2015-05-11 23:00:00,10658.0
-2015-05-12 00:00:00,9875.0
-2015-05-10 01:00:00,8659.0
-2015-05-10 02:00:00,8165.0
-2015-05-10 03:00:00,7872.0
-2015-05-10 04:00:00,7669.0
-2015-05-10 05:00:00,7601.0
-2015-05-10 06:00:00,7583.0
-2015-05-10 07:00:00,7665.0
-2015-05-10 08:00:00,7688.0
-2015-05-10 09:00:00,7952.0
-2015-05-10 10:00:00,8426.0
-2015-05-10 11:00:00,8713.0
-2015-05-10 12:00:00,8910.0
-2015-05-10 13:00:00,8964.0
-2015-05-10 14:00:00,8921.0
-2015-05-10 15:00:00,8838.0
-2015-05-10 16:00:00,8791.0
-2015-05-10 17:00:00,8753.0
-2015-05-10 18:00:00,8782.0
-2015-05-10 19:00:00,8781.0
-2015-05-10 20:00:00,8883.0
-2015-05-10 21:00:00,9170.0
-2015-05-10 22:00:00,9682.0
-2015-05-10 23:00:00,9526.0
-2015-05-11 00:00:00,9051.0
-2015-05-09 01:00:00,10108.0
-2015-05-09 02:00:00,9451.0
-2015-05-09 03:00:00,9048.0
-2015-05-09 04:00:00,8763.0
-2015-05-09 05:00:00,8588.0
-2015-05-09 06:00:00,8576.0
-2015-05-09 07:00:00,8655.0
-2015-05-09 08:00:00,8728.0
-2015-05-09 09:00:00,9036.0
-2015-05-09 10:00:00,9483.0
-2015-05-09 11:00:00,9787.0
-2015-05-09 12:00:00,9850.0
-2015-05-09 13:00:00,9907.0
-2015-05-09 14:00:00,9970.0
-2015-05-09 15:00:00,9842.0
-2015-05-09 16:00:00,9759.0
-2015-05-09 17:00:00,9583.0
-2015-05-09 18:00:00,9517.0
-2015-05-09 19:00:00,9369.0
-2015-05-09 20:00:00,9319.0
-2015-05-09 21:00:00,9425.0
-2015-05-09 22:00:00,9866.0
-2015-05-09 23:00:00,9673.0
-2015-05-10 00:00:00,9191.0
-2015-05-08 01:00:00,10338.0
-2015-05-08 02:00:00,9655.0
-2015-05-08 03:00:00,9218.0
-2015-05-08 04:00:00,8924.0
-2015-05-08 05:00:00,8776.0
-2015-05-08 06:00:00,8908.0
-2015-05-08 07:00:00,9496.0
-2015-05-08 08:00:00,10308.0
-2015-05-08 09:00:00,11277.0
-2015-05-08 10:00:00,12006.0
-2015-05-08 11:00:00,12519.0
-2015-05-08 12:00:00,12913.0
-2015-05-08 13:00:00,13270.0
-2015-05-08 14:00:00,13611.0
-2015-05-08 15:00:00,13947.0
-2015-05-08 16:00:00,13979.0
-2015-05-08 17:00:00,13793.0
-2015-05-08 18:00:00,13310.0
-2015-05-08 19:00:00,12822.0
-2015-05-08 20:00:00,12339.0
-2015-05-08 21:00:00,12281.0
-2015-05-08 22:00:00,12258.0
-2015-05-08 23:00:00,11862.0
-2015-05-09 00:00:00,10998.0
-2015-05-07 01:00:00,9372.0
-2015-05-07 02:00:00,8756.0
-2015-05-07 03:00:00,8406.0
-2015-05-07 04:00:00,8223.0
-2015-05-07 05:00:00,8148.0
-2015-05-07 06:00:00,8342.0
-2015-05-07 07:00:00,8920.0
-2015-05-07 08:00:00,9779.0
-2015-05-07 09:00:00,10731.0
-2015-05-07 10:00:00,11371.0
-2015-05-07 11:00:00,11818.0
-2015-05-07 12:00:00,12309.0
-2015-05-07 13:00:00,12669.0
-2015-05-07 14:00:00,12800.0
-2015-05-07 15:00:00,13003.0
-2015-05-07 16:00:00,13143.0
-2015-05-07 17:00:00,13090.0
-2015-05-07 18:00:00,13087.0
-2015-05-07 19:00:00,12969.0
-2015-05-07 20:00:00,12623.0
-2015-05-07 21:00:00,12494.0
-2015-05-07 22:00:00,12692.0
-2015-05-07 23:00:00,12197.0
-2015-05-08 00:00:00,11269.0
-2015-05-06 01:00:00,9076.0
-2015-05-06 02:00:00,8606.0
-2015-05-06 03:00:00,8325.0
-2015-05-06 04:00:00,8119.0
-2015-05-06 05:00:00,8096.0
-2015-05-06 06:00:00,8240.0
-2015-05-06 07:00:00,8894.0
-2015-05-06 08:00:00,9756.0
-2015-05-06 09:00:00,10496.0
-2015-05-06 10:00:00,10869.0
-2015-05-06 11:00:00,11162.0
-2015-05-06 12:00:00,11428.0
-2015-05-06 13:00:00,11632.0
-2015-05-06 14:00:00,11811.0
-2015-05-06 15:00:00,12056.0
-2015-05-06 16:00:00,12118.0
-2015-05-06 17:00:00,12056.0
-2015-05-06 18:00:00,11923.0
-2015-05-06 19:00:00,11697.0
-2015-05-06 20:00:00,11306.0
-2015-05-06 21:00:00,11212.0
-2015-05-06 22:00:00,11542.0
-2015-05-06 23:00:00,11125.0
-2015-05-07 00:00:00,10250.0
-2015-05-05 01:00:00,9077.0
-2015-05-05 02:00:00,8552.0
-2015-05-05 03:00:00,8229.0
-2015-05-05 04:00:00,8031.0
-2015-05-05 05:00:00,8027.0
-2015-05-05 06:00:00,8250.0
-2015-05-05 07:00:00,8882.0
-2015-05-05 08:00:00,9745.0
-2015-05-05 09:00:00,10439.0
-2015-05-05 10:00:00,10780.0
-2015-05-05 11:00:00,11028.0
-2015-05-05 12:00:00,11192.0
-2015-05-05 13:00:00,11195.0
-2015-05-05 14:00:00,11175.0
-2015-05-05 15:00:00,11181.0
-2015-05-05 16:00:00,11071.0
-2015-05-05 17:00:00,10943.0
-2015-05-05 18:00:00,10842.0
-2015-05-05 19:00:00,10705.0
-2015-05-05 20:00:00,10564.0
-2015-05-05 21:00:00,10703.0
-2015-05-05 22:00:00,11026.0
-2015-05-05 23:00:00,10634.0
-2015-05-06 00:00:00,9852.0
-2015-05-04 01:00:00,8720.0
-2015-05-04 02:00:00,8319.0
-2015-05-04 03:00:00,8046.0
-2015-05-04 04:00:00,7936.0
-2015-05-04 05:00:00,7856.0
-2015-05-04 06:00:00,8087.0
-2015-05-04 07:00:00,8773.0
-2015-05-04 08:00:00,9743.0
-2015-05-04 09:00:00,10551.0
-2015-05-04 10:00:00,10991.0
-2015-05-04 11:00:00,11293.0
-2015-05-04 12:00:00,11613.0
-2015-05-04 13:00:00,11800.0
-2015-05-04 14:00:00,11903.0
-2015-05-04 15:00:00,11954.0
-2015-05-04 16:00:00,11885.0
-2015-05-04 17:00:00,11765.0
-2015-05-04 18:00:00,11578.0
-2015-05-04 19:00:00,11306.0
-2015-05-04 20:00:00,10982.0
-2015-05-04 21:00:00,10908.0
-2015-05-04 22:00:00,11165.0
-2015-05-04 23:00:00,10723.0
-2015-05-05 00:00:00,9886.0
-2015-05-03 01:00:00,8601.0
-2015-05-03 02:00:00,8198.0
-2015-05-03 03:00:00,7867.0
-2015-05-03 04:00:00,7631.0
-2015-05-03 05:00:00,7510.0
-2015-05-03 06:00:00,7473.0
-2015-05-03 07:00:00,7523.0
-2015-05-03 08:00:00,7433.0
-2015-05-03 09:00:00,7727.0
-2015-05-03 10:00:00,8175.0
-2015-05-03 11:00:00,8553.0
-2015-05-03 12:00:00,8881.0
-2015-05-03 13:00:00,9093.0
-2015-05-03 14:00:00,9287.0
-2015-05-03 15:00:00,9284.0
-2015-05-03 16:00:00,9336.0
-2015-05-03 17:00:00,9361.0
-2015-05-03 18:00:00,9483.0
-2015-05-03 19:00:00,9694.0
-2015-05-03 20:00:00,9931.0
-2015-05-03 21:00:00,10046.0
-2015-05-03 22:00:00,10175.0
-2015-05-03 23:00:00,9830.0
-2015-05-04 00:00:00,9280.0
-2015-05-02 01:00:00,9041.0
-2015-05-02 02:00:00,8455.0
-2015-05-02 03:00:00,8177.0
-2015-05-02 04:00:00,7920.0
-2015-05-02 05:00:00,7864.0
-2015-05-02 06:00:00,7881.0
-2015-05-02 07:00:00,8078.0
-2015-05-02 08:00:00,8189.0
-2015-05-02 09:00:00,8628.0
-2015-05-02 10:00:00,9093.0
-2015-05-02 11:00:00,9390.0
-2015-05-02 12:00:00,9656.0
-2015-05-02 13:00:00,9700.0
-2015-05-02 14:00:00,9726.0
-2015-05-02 15:00:00,9607.0
-2015-05-02 16:00:00,9568.0
-2015-05-02 17:00:00,9541.0
-2015-05-02 18:00:00,9555.0
-2015-05-02 19:00:00,9490.0
-2015-05-02 20:00:00,9444.0
-2015-05-02 21:00:00,9505.0
-2015-05-02 22:00:00,9923.0
-2015-05-02 23:00:00,9689.0
-2015-05-03 00:00:00,9167.0
-2015-05-01 01:00:00,9254.0
-2015-05-01 02:00:00,8753.0
-2015-05-01 03:00:00,8509.0
-2015-05-01 04:00:00,8385.0
-2015-05-01 05:00:00,8389.0
-2015-05-01 06:00:00,8634.0
-2015-05-01 07:00:00,9248.0
-2015-05-01 08:00:00,9961.0
-2015-05-01 09:00:00,10500.0
-2015-05-01 10:00:00,10678.0
-2015-05-01 11:00:00,10772.0
-2015-05-01 12:00:00,10925.0
-2015-05-01 13:00:00,10916.0
-2015-05-01 14:00:00,10914.0
-2015-05-01 15:00:00,10972.0
-2015-05-01 16:00:00,10846.0
-2015-05-01 17:00:00,10701.0
-2015-05-01 18:00:00,10549.0
-2015-05-01 19:00:00,10328.0
-2015-05-01 20:00:00,10136.0
-2015-05-01 21:00:00,10251.0
-2015-05-01 22:00:00,10611.0
-2015-05-01 23:00:00,10323.0
-2015-05-02 00:00:00,9670.0
-2015-04-30 01:00:00,9058.0
-2015-04-30 02:00:00,8593.0
-2015-04-30 03:00:00,8343.0
-2015-04-30 04:00:00,8209.0
-2015-04-30 05:00:00,8187.0
-2015-04-30 06:00:00,8425.0
-2015-04-30 07:00:00,9108.0
-2015-04-30 08:00:00,9962.0
-2015-04-30 09:00:00,10676.0
-2015-04-30 10:00:00,10919.0
-2015-04-30 11:00:00,10944.0
-2015-04-30 12:00:00,11004.0
-2015-04-30 13:00:00,10985.0
-2015-04-30 14:00:00,10887.0
-2015-04-30 15:00:00,10911.0
-2015-04-30 16:00:00,10804.0
-2015-04-30 17:00:00,10620.0
-2015-04-30 18:00:00,10478.0
-2015-04-30 19:00:00,10357.0
-2015-04-30 20:00:00,10138.0
-2015-04-30 21:00:00,10338.0
-2015-04-30 22:00:00,10899.0
-2015-04-30 23:00:00,10615.0
-2015-05-01 00:00:00,9914.0
-2015-04-29 01:00:00,9061.0
-2015-04-29 02:00:00,8639.0
-2015-04-29 03:00:00,8391.0
-2015-04-29 04:00:00,8259.0
-2015-04-29 05:00:00,8268.0
-2015-04-29 06:00:00,8517.0
-2015-04-29 07:00:00,9160.0
-2015-04-29 08:00:00,9921.0
-2015-04-29 09:00:00,10474.0
-2015-04-29 10:00:00,10664.0
-2015-04-29 11:00:00,10794.0
-2015-04-29 12:00:00,10901.0
-2015-04-29 13:00:00,10929.0
-2015-04-29 14:00:00,10903.0
-2015-04-29 15:00:00,10926.0
-2015-04-29 16:00:00,10823.0
-2015-04-29 17:00:00,10701.0
-2015-04-29 18:00:00,10552.0
-2015-04-29 19:00:00,10336.0
-2015-04-29 20:00:00,10290.0
-2015-04-29 21:00:00,10495.0
-2015-04-29 22:00:00,10862.0
-2015-04-29 23:00:00,10466.0
-2015-04-30 00:00:00,9766.0
-2015-04-28 01:00:00,9178.0
-2015-04-28 02:00:00,8759.0
-2015-04-28 03:00:00,8541.0
-2015-04-28 04:00:00,8416.0
-2015-04-28 05:00:00,8410.0
-2015-04-28 06:00:00,8670.0
-2015-04-28 07:00:00,9324.0
-2015-04-28 08:00:00,10122.0
-2015-04-28 09:00:00,10686.0
-2015-04-28 10:00:00,10841.0
-2015-04-28 11:00:00,10914.0
-2015-04-28 12:00:00,10984.0
-2015-04-28 13:00:00,10970.0
-2015-04-28 14:00:00,10954.0
-2015-04-28 15:00:00,10947.0
-2015-04-28 16:00:00,10851.0
-2015-04-28 17:00:00,10697.0
-2015-04-28 18:00:00,10589.0
-2015-04-28 19:00:00,10404.0
-2015-04-28 20:00:00,10227.0
-2015-04-28 21:00:00,10388.0
-2015-04-28 22:00:00,10887.0
-2015-04-28 23:00:00,10494.0
-2015-04-29 00:00:00,9791.0
-2015-04-27 01:00:00,8693.0
-2015-04-27 02:00:00,8353.0
-2015-04-27 03:00:00,8210.0
-2015-04-27 04:00:00,8132.0
-2015-04-27 05:00:00,8271.0
-2015-04-27 06:00:00,8578.0
-2015-04-27 07:00:00,9325.0
-2015-04-27 08:00:00,10117.0
-2015-04-27 09:00:00,10703.0
-2015-04-27 10:00:00,10802.0
-2015-04-27 11:00:00,10887.0
-2015-04-27 12:00:00,10974.0
-2015-04-27 13:00:00,10952.0
-2015-04-27 14:00:00,10904.0
-2015-04-27 15:00:00,10922.0
-2015-04-27 16:00:00,10793.0
-2015-04-27 17:00:00,10656.0
-2015-04-27 18:00:00,10539.0
-2015-04-27 19:00:00,10402.0
-2015-04-27 20:00:00,10281.0
-2015-04-27 21:00:00,10510.0
-2015-04-27 22:00:00,10994.0
-2015-04-27 23:00:00,10608.0
-2015-04-28 00:00:00,9886.0
-2015-04-26 01:00:00,9052.0
-2015-04-26 02:00:00,8683.0
-2015-04-26 03:00:00,8359.0
-2015-04-26 04:00:00,8269.0
-2015-04-26 05:00:00,8174.0
-2015-04-26 06:00:00,8221.0
-2015-04-26 07:00:00,8280.0
-2015-04-26 08:00:00,8273.0
-2015-04-26 09:00:00,8414.0
-2015-04-26 10:00:00,8654.0
-2015-04-26 11:00:00,8772.0
-2015-04-26 12:00:00,8859.0
-2015-04-26 13:00:00,8853.0
-2015-04-26 14:00:00,8836.0
-2015-04-26 15:00:00,8790.0
-2015-04-26 16:00:00,8711.0
-2015-04-26 17:00:00,8649.0
-2015-04-26 18:00:00,8645.0
-2015-04-26 19:00:00,8753.0
-2015-04-26 20:00:00,8872.0
-2015-04-26 21:00:00,9147.0
-2015-04-26 22:00:00,9775.0
-2015-04-26 23:00:00,9584.0
-2015-04-27 00:00:00,9141.0
-2015-04-25 01:00:00,9472.0
-2015-04-25 02:00:00,8998.0
-2015-04-25 03:00:00,8684.0
-2015-04-25 04:00:00,8499.0
-2015-04-25 05:00:00,8417.0
-2015-04-25 06:00:00,8435.0
-2015-04-25 07:00:00,8659.0
-2015-04-25 08:00:00,9008.0
-2015-04-25 09:00:00,9349.0
-2015-04-25 10:00:00,9854.0
-2015-04-25 11:00:00,10159.0
-2015-04-25 12:00:00,10339.0
-2015-04-25 13:00:00,10319.0
-2015-04-25 14:00:00,10239.0
-2015-04-25 15:00:00,10003.0
-2015-04-25 16:00:00,9779.0
-2015-04-25 17:00:00,9625.0
-2015-04-25 18:00:00,9556.0
-2015-04-25 19:00:00,9616.0
-2015-04-25 20:00:00,9726.0
-2015-04-25 21:00:00,10022.0
-2015-04-25 22:00:00,10285.0
-2015-04-25 23:00:00,10035.0
-2015-04-26 00:00:00,9614.0
-2015-04-24 01:00:00,9416.0
-2015-04-24 02:00:00,9018.0
-2015-04-24 03:00:00,8780.0
-2015-04-24 04:00:00,8665.0
-2015-04-24 05:00:00,8670.0
-2015-04-24 06:00:00,8923.0
-2015-04-24 07:00:00,9574.0
-2015-04-24 08:00:00,10347.0
-2015-04-24 09:00:00,10850.0
-2015-04-24 10:00:00,11021.0
-2015-04-24 11:00:00,11087.0
-2015-04-24 12:00:00,11103.0
-2015-04-24 13:00:00,11030.0
-2015-04-24 14:00:00,10972.0
-2015-04-24 15:00:00,10998.0
-2015-04-24 16:00:00,10838.0
-2015-04-24 17:00:00,10720.0
-2015-04-24 18:00:00,10636.0
-2015-04-24 19:00:00,10589.0
-2015-04-24 20:00:00,10613.0
-2015-04-24 21:00:00,10899.0
-2015-04-24 22:00:00,11003.0
-2015-04-24 23:00:00,10751.0
-2015-04-25 00:00:00,10098.0
-2015-04-23 01:00:00,9690.0
-2015-04-23 02:00:00,9234.0
-2015-04-23 03:00:00,8996.0
-2015-04-23 04:00:00,8861.0
-2015-04-23 05:00:00,8850.0
-2015-04-23 06:00:00,9142.0
-2015-04-23 07:00:00,9800.0
-2015-04-23 08:00:00,10579.0
-2015-04-23 09:00:00,11042.0
-2015-04-23 10:00:00,11200.0
-2015-04-23 11:00:00,11191.0
-2015-04-23 12:00:00,11239.0
-2015-04-23 13:00:00,11170.0
-2015-04-23 14:00:00,11073.0
-2015-04-23 15:00:00,11033.0
-2015-04-23 16:00:00,10924.0
-2015-04-23 17:00:00,10761.0
-2015-04-23 18:00:00,10628.0
-2015-04-23 19:00:00,10465.0
-2015-04-23 20:00:00,10337.0
-2015-04-23 21:00:00,10583.0
-2015-04-23 22:00:00,11101.0
-2015-04-23 23:00:00,10779.0
-2015-04-24 00:00:00,10119.0
-2015-04-22 01:00:00,9536.0
-2015-04-22 02:00:00,9148.0
-2015-04-22 03:00:00,8878.0
-2015-04-22 04:00:00,8686.0
-2015-04-22 05:00:00,8694.0
-2015-04-22 06:00:00,8959.0
-2015-04-22 07:00:00,9659.0
-2015-04-22 08:00:00,10589.0
-2015-04-22 09:00:00,11277.0
-2015-04-22 10:00:00,11583.0
-2015-04-22 11:00:00,11633.0
-2015-04-22 12:00:00,11721.0
-2015-04-22 13:00:00,11705.0
-2015-04-22 14:00:00,11657.0
-2015-04-22 15:00:00,11572.0
-2015-04-22 16:00:00,11456.0
-2015-04-22 17:00:00,11299.0
-2015-04-22 18:00:00,11165.0
-2015-04-22 19:00:00,11078.0
-2015-04-22 20:00:00,10954.0
-2015-04-22 21:00:00,11220.0
-2015-04-22 22:00:00,11481.0
-2015-04-22 23:00:00,11018.0
-2015-04-23 00:00:00,10330.0
-2015-04-21 01:00:00,9362.0
-2015-04-21 02:00:00,8919.0
-2015-04-21 03:00:00,8645.0
-2015-04-21 04:00:00,8535.0
-2015-04-21 05:00:00,8506.0
-2015-04-21 06:00:00,8791.0
-2015-04-21 07:00:00,9485.0
-2015-04-21 08:00:00,10338.0
-2015-04-21 09:00:00,10981.0
-2015-04-21 10:00:00,11217.0
-2015-04-21 11:00:00,11372.0
-2015-04-21 12:00:00,11429.0
-2015-04-21 13:00:00,11393.0
-2015-04-21 14:00:00,11302.0
-2015-04-21 15:00:00,11206.0
-2015-04-21 16:00:00,11053.0
-2015-04-21 17:00:00,10930.0
-2015-04-21 18:00:00,10760.0
-2015-04-21 19:00:00,10649.0
-2015-04-21 20:00:00,10590.0
-2015-04-21 21:00:00,10905.0
-2015-04-21 22:00:00,11332.0
-2015-04-21 23:00:00,10917.0
-2015-04-22 00:00:00,10194.0
-2015-04-20 01:00:00,8388.0
-2015-04-20 02:00:00,8054.0
-2015-04-20 03:00:00,7879.0
-2015-04-20 04:00:00,7789.0
-2015-04-20 05:00:00,7811.0
-2015-04-20 06:00:00,8100.0
-2015-04-20 07:00:00,8792.0
-2015-04-20 08:00:00,9876.0
-2015-04-20 09:00:00,10628.0
-2015-04-20 10:00:00,10953.0
-2015-04-20 11:00:00,11131.0
-2015-04-20 12:00:00,11297.0
-2015-04-20 13:00:00,11332.0
-2015-04-20 14:00:00,11308.0
-2015-04-20 15:00:00,11409.0
-2015-04-20 16:00:00,11263.0
-2015-04-20 17:00:00,11132.0
-2015-04-20 18:00:00,11095.0
-2015-04-20 19:00:00,11049.0
-2015-04-20 20:00:00,10937.0
-2015-04-20 21:00:00,11062.0
-2015-04-20 22:00:00,11317.0
-2015-04-20 23:00:00,10831.0
-2015-04-21 00:00:00,10087.0
-2015-04-19 01:00:00,8434.0
-2015-04-19 02:00:00,8027.0
-2015-04-19 03:00:00,7705.0
-2015-04-19 04:00:00,7495.0
-2015-04-19 05:00:00,7439.0
-2015-04-19 06:00:00,7432.0
-2015-04-19 07:00:00,7541.0
-2015-04-19 08:00:00,7505.0
-2015-04-19 09:00:00,7694.0
-2015-04-19 10:00:00,8052.0
-2015-04-19 11:00:00,8371.0
-2015-04-19 12:00:00,8594.0
-2015-04-19 13:00:00,8765.0
-2015-04-19 14:00:00,8782.0
-2015-04-19 15:00:00,8841.0
-2015-04-19 16:00:00,8794.0
-2015-04-19 17:00:00,8781.0
-2015-04-19 18:00:00,9025.0
-2015-04-19 19:00:00,9183.0
-2015-04-19 20:00:00,9352.0
-2015-04-19 21:00:00,9713.0
-2015-04-19 22:00:00,9795.0
-2015-04-19 23:00:00,9438.0
-2015-04-20 00:00:00,8928.0
-2015-04-18 01:00:00,9178.0
-2015-04-18 02:00:00,8612.0
-2015-04-18 03:00:00,8260.0
-2015-04-18 04:00:00,7978.0
-2015-04-18 05:00:00,7883.0
-2015-04-18 06:00:00,7891.0
-2015-04-18 07:00:00,8097.0
-2015-04-18 08:00:00,8174.0
-2015-04-18 09:00:00,8597.0
-2015-04-18 10:00:00,9074.0
-2015-04-18 11:00:00,9348.0
-2015-04-18 12:00:00,9482.0
-2015-04-18 13:00:00,9487.0
-2015-04-18 14:00:00,9449.0
-2015-04-18 15:00:00,9344.0
-2015-04-18 16:00:00,9195.0
-2015-04-18 17:00:00,9107.0
-2015-04-18 18:00:00,9017.0
-2015-04-18 19:00:00,9009.0
-2015-04-18 20:00:00,8932.0
-2015-04-18 21:00:00,9259.0
-2015-04-18 22:00:00,9613.0
-2015-04-18 23:00:00,9342.0
-2015-04-19 00:00:00,8947.0
-2015-04-17 01:00:00,8954.0
-2015-04-17 02:00:00,8442.0
-2015-04-17 03:00:00,8174.0
-2015-04-17 04:00:00,8034.0
-2015-04-17 05:00:00,8013.0
-2015-04-17 06:00:00,8202.0
-2015-04-17 07:00:00,8846.0
-2015-04-17 08:00:00,9625.0
-2015-04-17 09:00:00,10208.0
-2015-04-17 10:00:00,10585.0
-2015-04-17 11:00:00,10914.0
-2015-04-17 12:00:00,11145.0
-2015-04-17 13:00:00,11260.0
-2015-04-17 14:00:00,11303.0
-2015-04-17 15:00:00,11368.0
-2015-04-17 16:00:00,11296.0
-2015-04-17 17:00:00,11185.0
-2015-04-17 18:00:00,11017.0
-2015-04-17 19:00:00,10790.0
-2015-04-17 20:00:00,10595.0
-2015-04-17 21:00:00,10773.0
-2015-04-17 22:00:00,10927.0
-2015-04-17 23:00:00,10541.0
-2015-04-18 00:00:00,9870.0
-2015-04-16 01:00:00,9113.0
-2015-04-16 02:00:00,8606.0
-2015-04-16 03:00:00,8314.0
-2015-04-16 04:00:00,8114.0
-2015-04-16 05:00:00,8065.0
-2015-04-16 06:00:00,8287.0
-2015-04-16 07:00:00,8926.0
-2015-04-16 08:00:00,9930.0
-2015-04-16 09:00:00,10551.0
-2015-04-16 10:00:00,10793.0
-2015-04-16 11:00:00,10916.0
-2015-04-16 12:00:00,11008.0
-2015-04-16 13:00:00,10960.0
-2015-04-16 14:00:00,10898.0
-2015-04-16 15:00:00,10931.0
-2015-04-16 16:00:00,10872.0
-2015-04-16 17:00:00,10756.0
-2015-04-16 18:00:00,10668.0
-2015-04-16 19:00:00,10531.0
-2015-04-16 20:00:00,10322.0
-2015-04-16 21:00:00,10557.0
-2015-04-16 22:00:00,10856.0
-2015-04-16 23:00:00,10404.0
-2015-04-17 00:00:00,9674.0
-2015-04-15 01:00:00,9071.0
-2015-04-15 02:00:00,8602.0
-2015-04-15 03:00:00,8324.0
-2015-04-15 04:00:00,8183.0
-2015-04-15 05:00:00,8154.0
-2015-04-15 06:00:00,8409.0
-2015-04-15 07:00:00,9077.0
-2015-04-15 08:00:00,9955.0
-2015-04-15 09:00:00,10563.0
-2015-04-15 10:00:00,10799.0
-2015-04-15 11:00:00,10883.0
-2015-04-15 12:00:00,11059.0
-2015-04-15 13:00:00,11110.0
-2015-04-15 14:00:00,11089.0
-2015-04-15 15:00:00,11133.0
-2015-04-15 16:00:00,11046.0
-2015-04-15 17:00:00,10856.0
-2015-04-15 18:00:00,10744.0
-2015-04-15 19:00:00,10581.0
-2015-04-15 20:00:00,10399.0
-2015-04-15 21:00:00,10739.0
-2015-04-15 22:00:00,10973.0
-2015-04-15 23:00:00,10571.0
-2015-04-16 00:00:00,9842.0
-2015-04-14 01:00:00,9016.0
-2015-04-14 02:00:00,8538.0
-2015-04-14 03:00:00,8282.0
-2015-04-14 04:00:00,8133.0
-2015-04-14 05:00:00,8117.0
-2015-04-14 06:00:00,8338.0
-2015-04-14 07:00:00,9048.0
-2015-04-14 08:00:00,9892.0
-2015-04-14 09:00:00,10428.0
-2015-04-14 10:00:00,10668.0
-2015-04-14 11:00:00,10835.0
-2015-04-14 12:00:00,10979.0
-2015-04-14 13:00:00,11000.0
-2015-04-14 14:00:00,10994.0
-2015-04-14 15:00:00,11044.0
-2015-04-14 16:00:00,10974.0
-2015-04-14 17:00:00,10849.0
-2015-04-14 18:00:00,10747.0
-2015-04-14 19:00:00,10584.0
-2015-04-14 20:00:00,10379.0
-2015-04-14 21:00:00,10684.0
-2015-04-14 22:00:00,11002.0
-2015-04-14 23:00:00,10490.0
-2015-04-15 00:00:00,9661.0
-2015-04-13 01:00:00,8474.0
-2015-04-13 02:00:00,8154.0
-2015-04-13 03:00:00,7945.0
-2015-04-13 04:00:00,7828.0
-2015-04-13 05:00:00,7841.0
-2015-04-13 06:00:00,8119.0
-2015-04-13 07:00:00,8879.0
-2015-04-13 08:00:00,9966.0
-2015-04-13 09:00:00,10585.0
-2015-04-13 10:00:00,10799.0
-2015-04-13 11:00:00,11039.0
-2015-04-13 12:00:00,11173.0
-2015-04-13 13:00:00,11241.0
-2015-04-13 14:00:00,11210.0
-2015-04-13 15:00:00,11228.0
-2015-04-13 16:00:00,11128.0
-2015-04-13 17:00:00,10995.0
-2015-04-13 18:00:00,10827.0
-2015-04-13 19:00:00,10628.0
-2015-04-13 20:00:00,10443.0
-2015-04-13 21:00:00,10687.0
-2015-04-13 22:00:00,10934.0
-2015-04-13 23:00:00,10465.0
-2015-04-14 00:00:00,9722.0
-2015-04-12 01:00:00,8667.0
-2015-04-12 02:00:00,8326.0
-2015-04-12 03:00:00,8042.0
-2015-04-12 04:00:00,7892.0
-2015-04-12 05:00:00,7826.0
-2015-04-12 06:00:00,7845.0
-2015-04-12 07:00:00,7978.0
-2015-04-12 08:00:00,8026.0
-2015-04-12 09:00:00,8143.0
-2015-04-12 10:00:00,8451.0
-2015-04-12 11:00:00,8654.0
-2015-04-12 12:00:00,8833.0
-2015-04-12 13:00:00,8914.0
-2015-04-12 14:00:00,8944.0
-2015-04-12 15:00:00,8916.0
-2015-04-12 16:00:00,8923.0
-2015-04-12 17:00:00,8858.0
-2015-04-12 18:00:00,8982.0
-2015-04-12 19:00:00,9069.0
-2015-04-12 20:00:00,9222.0
-2015-04-12 21:00:00,9685.0
-2015-04-12 22:00:00,9817.0
-2015-04-12 23:00:00,9479.0
-2015-04-13 00:00:00,9002.0
-2015-04-11 01:00:00,9314.0
-2015-04-11 02:00:00,8902.0
-2015-04-11 03:00:00,8636.0
-2015-04-11 04:00:00,8534.0
-2015-04-11 05:00:00,8418.0
-2015-04-11 06:00:00,8554.0
-2015-04-11 07:00:00,8793.0
-2015-04-11 08:00:00,9054.0
-2015-04-11 09:00:00,9227.0
-2015-04-11 10:00:00,9469.0
-2015-04-11 11:00:00,9585.0
-2015-04-11 12:00:00,9668.0
-2015-04-11 13:00:00,9603.0
-2015-04-11 14:00:00,9505.0
-2015-04-11 15:00:00,9314.0
-2015-04-11 16:00:00,9203.0
-2015-04-11 17:00:00,9123.0
-2015-04-11 18:00:00,9060.0
-2015-04-11 19:00:00,9052.0
-2015-04-11 20:00:00,9031.0
-2015-04-11 21:00:00,9448.0
-2015-04-11 22:00:00,9855.0
-2015-04-11 23:00:00,9602.0
-2015-04-12 00:00:00,9205.0
-2015-04-10 01:00:00,9340.0
-2015-04-10 02:00:00,8816.0
-2015-04-10 03:00:00,8525.0
-2015-04-10 04:00:00,8396.0
-2015-04-10 05:00:00,8372.0
-2015-04-10 06:00:00,8635.0
-2015-04-10 07:00:00,9319.0
-2015-04-10 08:00:00,10284.0
-2015-04-10 09:00:00,10912.0
-2015-04-10 10:00:00,11156.0
-2015-04-10 11:00:00,11100.0
-2015-04-10 12:00:00,11125.0
-2015-04-10 13:00:00,11082.0
-2015-04-10 14:00:00,11024.0
-2015-04-10 15:00:00,11024.0
-2015-04-10 16:00:00,10908.0
-2015-04-10 17:00:00,10678.0
-2015-04-10 18:00:00,10486.0
-2015-04-10 19:00:00,10326.0
-2015-04-10 20:00:00,10283.0
-2015-04-10 21:00:00,10718.0
-2015-04-10 22:00:00,10809.0
-2015-04-10 23:00:00,10520.0
-2015-04-11 00:00:00,9952.0
-2015-04-09 01:00:00,9669.0
-2015-04-09 02:00:00,9176.0
-2015-04-09 03:00:00,8834.0
-2015-04-09 04:00:00,8658.0
-2015-04-09 05:00:00,8622.0
-2015-04-09 06:00:00,8853.0
-2015-04-09 07:00:00,9545.0
-2015-04-09 08:00:00,10555.0
-2015-04-09 09:00:00,11180.0
-2015-04-09 10:00:00,11372.0
-2015-04-09 11:00:00,11491.0
-2015-04-09 12:00:00,11721.0
-2015-04-09 13:00:00,11858.0
-2015-04-09 14:00:00,11777.0
-2015-04-09 15:00:00,11702.0
-2015-04-09 16:00:00,11627.0
-2015-04-09 17:00:00,11608.0
-2015-04-09 18:00:00,11375.0
-2015-04-09 19:00:00,11253.0
-2015-04-09 20:00:00,11245.0
-2015-04-09 21:00:00,11509.0
-2015-04-09 22:00:00,11475.0
-2015-04-09 23:00:00,11029.0
-2015-04-10 00:00:00,10166.0
-2015-04-08 01:00:00,9573.0
-2015-04-08 02:00:00,9086.0
-2015-04-08 03:00:00,8799.0
-2015-04-08 04:00:00,8582.0
-2015-04-08 05:00:00,8535.0
-2015-04-08 06:00:00,8764.0
-2015-04-08 07:00:00,9455.0
-2015-04-08 08:00:00,10452.0
-2015-04-08 09:00:00,10998.0
-2015-04-08 10:00:00,11295.0
-2015-04-08 11:00:00,11335.0
-2015-04-08 12:00:00,11428.0
-2015-04-08 13:00:00,11448.0
-2015-04-08 14:00:00,11326.0
-2015-04-08 15:00:00,11258.0
-2015-04-08 16:00:00,11138.0
-2015-04-08 17:00:00,11083.0
-2015-04-08 18:00:00,11049.0
-2015-04-08 19:00:00,11023.0
-2015-04-08 20:00:00,11044.0
-2015-04-08 21:00:00,11439.0
-2015-04-08 22:00:00,11503.0
-2015-04-08 23:00:00,11070.0
-2015-04-09 00:00:00,10392.0
-2015-04-07 01:00:00,9393.0
-2015-04-07 02:00:00,8969.0
-2015-04-07 03:00:00,8721.0
-2015-04-07 04:00:00,8548.0
-2015-04-07 05:00:00,8503.0
-2015-04-07 06:00:00,8751.0
-2015-04-07 07:00:00,9491.0
-2015-04-07 08:00:00,10498.0
-2015-04-07 09:00:00,11082.0
-2015-04-07 10:00:00,11385.0
-2015-04-07 11:00:00,11587.0
-2015-04-07 12:00:00,11725.0
-2015-04-07 13:00:00,11700.0
-2015-04-07 14:00:00,11633.0
-2015-04-07 15:00:00,11635.0
-2015-04-07 16:00:00,11515.0
-2015-04-07 17:00:00,11414.0
-2015-04-07 18:00:00,11343.0
-2015-04-07 19:00:00,11327.0
-2015-04-07 20:00:00,11298.0
-2015-04-07 21:00:00,11660.0
-2015-04-07 22:00:00,11529.0
-2015-04-07 23:00:00,11040.0
-2015-04-08 00:00:00,10287.0
-2015-04-06 01:00:00,8270.0
-2015-04-06 02:00:00,7982.0
-2015-04-06 03:00:00,7840.0
-2015-04-06 04:00:00,7780.0
-2015-04-06 05:00:00,7856.0
-2015-04-06 06:00:00,8126.0
-2015-04-06 07:00:00,8931.0
-2015-04-06 08:00:00,9832.0
-2015-04-06 09:00:00,10426.0
-2015-04-06 10:00:00,10753.0
-2015-04-06 11:00:00,10928.0
-2015-04-06 12:00:00,10998.0
-2015-04-06 13:00:00,11018.0
-2015-04-06 14:00:00,10918.0
-2015-04-06 15:00:00,10912.0
-2015-04-06 16:00:00,10867.0
-2015-04-06 17:00:00,10723.0
-2015-04-06 18:00:00,10603.0
-2015-04-06 19:00:00,10591.0
-2015-04-06 20:00:00,10593.0
-2015-04-06 21:00:00,11070.0
-2015-04-06 22:00:00,11078.0
-2015-04-06 23:00:00,10703.0
-2015-04-07 00:00:00,10071.0
-2015-04-05 01:00:00,8592.0
-2015-04-05 02:00:00,8142.0
-2015-04-05 03:00:00,7891.0
-2015-04-05 04:00:00,7703.0
-2015-04-05 05:00:00,7653.0
-2015-04-05 06:00:00,7603.0
-2015-04-05 07:00:00,7726.0
-2015-04-05 08:00:00,7829.0
-2015-04-05 09:00:00,7886.0
-2015-04-05 10:00:00,8053.0
-2015-04-05 11:00:00,8223.0
-2015-04-05 12:00:00,8257.0
-2015-04-05 13:00:00,8217.0
-2015-04-05 14:00:00,8256.0
-2015-04-05 15:00:00,8092.0
-2015-04-05 16:00:00,8014.0
-2015-04-05 17:00:00,7866.0
-2015-04-05 18:00:00,7881.0
-2015-04-05 19:00:00,7914.0
-2015-04-05 20:00:00,8038.0
-2015-04-05 21:00:00,8621.0
-2015-04-05 22:00:00,9017.0
-2015-04-05 23:00:00,8853.0
-2015-04-06 00:00:00,8500.0
-2015-04-04 01:00:00,9295.0
-2015-04-04 02:00:00,8828.0
-2015-04-04 03:00:00,8615.0
-2015-04-04 04:00:00,8456.0
-2015-04-04 05:00:00,8442.0
-2015-04-04 06:00:00,8493.0
-2015-04-04 07:00:00,8797.0
-2015-04-04 08:00:00,9069.0
-2015-04-04 09:00:00,9275.0
-2015-04-04 10:00:00,9499.0
-2015-04-04 11:00:00,9665.0
-2015-04-04 12:00:00,9645.0
-2015-04-04 13:00:00,9593.0
-2015-04-04 14:00:00,9459.0
-2015-04-04 15:00:00,9242.0
-2015-04-04 16:00:00,9030.0
-2015-04-04 17:00:00,8968.0
-2015-04-04 18:00:00,8926.0
-2015-04-04 19:00:00,8920.0
-2015-04-04 20:00:00,8960.0
-2015-04-04 21:00:00,9496.0
-2015-04-04 22:00:00,9796.0
-2015-04-04 23:00:00,9648.0
-2015-04-05 00:00:00,9243.0
-2015-04-03 01:00:00,8978.0
-2015-04-03 02:00:00,8458.0
-2015-04-03 03:00:00,8170.0
-2015-04-03 04:00:00,8002.0
-2015-04-03 05:00:00,7945.0
-2015-04-03 06:00:00,8069.0
-2015-04-03 07:00:00,8577.0
-2015-04-03 08:00:00,9210.0
-2015-04-03 09:00:00,9612.0
-2015-04-03 10:00:00,10000.0
-2015-04-03 11:00:00,10113.0
-2015-04-03 12:00:00,10200.0
-2015-04-03 13:00:00,10198.0
-2015-04-03 14:00:00,10080.0
-2015-04-03 15:00:00,10123.0
-2015-04-03 16:00:00,10064.0
-2015-04-03 17:00:00,9942.0
-2015-04-03 18:00:00,9904.0
-2015-04-03 19:00:00,9983.0
-2015-04-03 20:00:00,10054.0
-2015-04-03 21:00:00,10405.0
-2015-04-03 22:00:00,10558.0
-2015-04-03 23:00:00,10332.0
-2015-04-04 00:00:00,9827.0
-2015-04-02 01:00:00,9152.0
-2015-04-02 02:00:00,8644.0
-2015-04-02 03:00:00,8307.0
-2015-04-02 04:00:00,8147.0
-2015-04-02 05:00:00,8132.0
-2015-04-02 06:00:00,8296.0
-2015-04-02 07:00:00,8909.0
-2015-04-02 08:00:00,9887.0
-2015-04-02 09:00:00,10585.0
-2015-04-02 10:00:00,10904.0
-2015-04-02 11:00:00,11085.0
-2015-04-02 12:00:00,11208.0
-2015-04-02 13:00:00,11218.0
-2015-04-02 14:00:00,11228.0
-2015-04-02 15:00:00,11221.0
-2015-04-02 16:00:00,11019.0
-2015-04-02 17:00:00,10821.0
-2015-04-02 18:00:00,10682.0
-2015-04-02 19:00:00,10533.0
-2015-04-02 20:00:00,10308.0
-2015-04-02 21:00:00,10701.0
-2015-04-02 22:00:00,10730.0
-2015-04-02 23:00:00,10359.0
-2015-04-03 00:00:00,9666.0
-2015-04-01 01:00:00,9491.0
-2015-04-01 02:00:00,9056.0
-2015-04-01 03:00:00,8813.0
-2015-04-01 04:00:00,8666.0
-2015-04-01 05:00:00,8639.0
-2015-04-01 06:00:00,8891.0
-2015-04-01 07:00:00,9561.0
-2015-04-01 08:00:00,10533.0
-2015-04-01 09:00:00,10953.0
-2015-04-01 10:00:00,11088.0
-2015-04-01 11:00:00,11109.0
-2015-04-01 12:00:00,11115.0
-2015-04-01 13:00:00,11086.0
-2015-04-01 14:00:00,11072.0
-2015-04-01 15:00:00,11106.0
-2015-04-01 16:00:00,11035.0
-2015-04-01 17:00:00,10944.0
-2015-04-01 18:00:00,10833.0
-2015-04-01 19:00:00,10668.0
-2015-04-01 20:00:00,10489.0
-2015-04-01 21:00:00,10895.0
-2015-04-01 22:00:00,11060.0
-2015-04-01 23:00:00,10622.0
-2015-04-02 00:00:00,9892.0
-2015-03-31 01:00:00,9397.0
-2015-03-31 02:00:00,8945.0
-2015-03-31 03:00:00,8663.0
-2015-03-31 04:00:00,8490.0
-2015-03-31 05:00:00,8459.0
-2015-03-31 06:00:00,8690.0
-2015-03-31 07:00:00,9437.0
-2015-03-31 08:00:00,10515.0
-2015-03-31 09:00:00,11022.0
-2015-03-31 10:00:00,11315.0
-2015-03-31 11:00:00,11383.0
-2015-03-31 12:00:00,11353.0
-2015-03-31 13:00:00,11262.0
-2015-03-31 14:00:00,11165.0
-2015-03-31 15:00:00,11114.0
-2015-03-31 16:00:00,10951.0
-2015-03-31 17:00:00,10793.0
-2015-03-31 18:00:00,10663.0
-2015-03-31 19:00:00,10559.0
-2015-03-31 20:00:00,10495.0
-2015-03-31 21:00:00,10992.0
-2015-03-31 22:00:00,11147.0
-2015-03-31 23:00:00,10772.0
-2015-04-01 00:00:00,10138.0
-2015-03-30 01:00:00,9330.0
-2015-03-30 02:00:00,8983.0
-2015-03-30 03:00:00,8804.0
-2015-03-30 04:00:00,8801.0
-2015-03-30 05:00:00,8910.0
-2015-03-30 06:00:00,9244.0
-2015-03-30 07:00:00,10021.0
-2015-03-30 08:00:00,11037.0
-2015-03-30 09:00:00,11314.0
-2015-03-30 10:00:00,11438.0
-2015-03-30 11:00:00,11397.0
-2015-03-30 12:00:00,11379.0
-2015-03-30 13:00:00,11276.0
-2015-03-30 14:00:00,11174.0
-2015-03-30 15:00:00,11141.0
-2015-03-30 16:00:00,10956.0
-2015-03-30 17:00:00,10829.0
-2015-03-30 18:00:00,10775.0
-2015-03-30 19:00:00,10755.0
-2015-03-30 20:00:00,10799.0
-2015-03-30 21:00:00,11189.0
-2015-03-30 22:00:00,11181.0
-2015-03-30 23:00:00,10775.0
-2015-03-31 00:00:00,10081.0
-2015-03-29 01:00:00,9946.0
-2015-03-29 02:00:00,9579.0
-2015-03-29 03:00:00,9328.0
-2015-03-29 04:00:00,9239.0
-2015-03-29 05:00:00,9144.0
-2015-03-29 06:00:00,9201.0
-2015-03-29 07:00:00,9303.0
-2015-03-29 08:00:00,9557.0
-2015-03-29 09:00:00,9487.0
-2015-03-29 10:00:00,9731.0
-2015-03-29 11:00:00,9919.0
-2015-03-29 12:00:00,10204.0
-2015-03-29 13:00:00,10436.0
-2015-03-29 14:00:00,10550.0
-2015-03-29 15:00:00,10544.0
-2015-03-29 16:00:00,10452.0
-2015-03-29 17:00:00,10118.0
-2015-03-29 18:00:00,10006.0
-2015-03-29 19:00:00,10093.0
-2015-03-29 20:00:00,10389.0
-2015-03-29 21:00:00,10720.0
-2015-03-29 22:00:00,10643.0
-2015-03-29 23:00:00,10310.0
-2015-03-30 00:00:00,9848.0
-2015-03-28 01:00:00,10603.0
-2015-03-28 02:00:00,10135.0
-2015-03-28 03:00:00,9895.0
-2015-03-28 04:00:00,9761.0
-2015-03-28 05:00:00,9716.0
-2015-03-28 06:00:00,9829.0
-2015-03-28 07:00:00,10111.0
-2015-03-28 08:00:00,10545.0
-2015-03-28 09:00:00,10628.0
-2015-03-28 10:00:00,10830.0
-2015-03-28 11:00:00,10898.0
-2015-03-28 12:00:00,10885.0
-2015-03-28 13:00:00,10778.0
-2015-03-28 14:00:00,10603.0
-2015-03-28 15:00:00,10329.0
-2015-03-28 16:00:00,10125.0
-2015-03-28 17:00:00,9916.0
-2015-03-28 18:00:00,9857.0
-2015-03-28 19:00:00,9841.0
-2015-03-28 20:00:00,10025.0
-2015-03-28 21:00:00,10703.0
-2015-03-28 22:00:00,11000.0
-2015-03-28 23:00:00,10814.0
-2015-03-29 00:00:00,10428.0
-2015-03-27 01:00:00,10173.0
-2015-03-27 02:00:00,9721.0
-2015-03-27 03:00:00,9490.0
-2015-03-27 04:00:00,9416.0
-2015-03-27 05:00:00,9429.0
-2015-03-27 06:00:00,9743.0
-2015-03-27 07:00:00,10503.0
-2015-03-27 08:00:00,11576.0
-2015-03-27 09:00:00,12076.0
-2015-03-27 10:00:00,12210.0
-2015-03-27 11:00:00,12205.0
-2015-03-27 12:00:00,12247.0
-2015-03-27 13:00:00,12232.0
-2015-03-27 14:00:00,12031.0
-2015-03-27 15:00:00,11973.0
-2015-03-27 16:00:00,11750.0
-2015-03-27 17:00:00,11521.0
-2015-03-27 18:00:00,11382.0
-2015-03-27 19:00:00,11329.0
-2015-03-27 20:00:00,11415.0
-2015-03-27 21:00:00,12069.0
-2015-03-27 22:00:00,12154.0
-2015-03-27 23:00:00,11857.0
-2015-03-28 00:00:00,11261.0
-2015-03-26 01:00:00,10161.0
-2015-03-26 02:00:00,9678.0
-2015-03-26 03:00:00,9426.0
-2015-03-26 04:00:00,9274.0
-2015-03-26 05:00:00,9267.0
-2015-03-26 06:00:00,9532.0
-2015-03-26 07:00:00,10268.0
-2015-03-26 08:00:00,11363.0
-2015-03-26 09:00:00,11803.0
-2015-03-26 10:00:00,11925.0
-2015-03-26 11:00:00,11895.0
-2015-03-26 12:00:00,11839.0
-2015-03-26 13:00:00,11775.0
-2015-03-26 14:00:00,11659.0
-2015-03-26 15:00:00,11661.0
-2015-03-26 16:00:00,11530.0
-2015-03-26 17:00:00,11409.0
-2015-03-26 18:00:00,11396.0
-2015-03-26 19:00:00,11472.0
-2015-03-26 20:00:00,11524.0
-2015-03-26 21:00:00,12007.0
-2015-03-26 22:00:00,11941.0
-2015-03-26 23:00:00,11505.0
-2015-03-27 00:00:00,10822.0
-2015-03-25 01:00:00,10244.0
-2015-03-25 02:00:00,9814.0
-2015-03-25 03:00:00,9541.0
-2015-03-25 04:00:00,9375.0
-2015-03-25 05:00:00,9323.0
-2015-03-25 06:00:00,9514.0
-2015-03-25 07:00:00,10189.0
-2015-03-25 08:00:00,11259.0
-2015-03-25 09:00:00,11855.0
-2015-03-25 10:00:00,12049.0
-2015-03-25 11:00:00,12148.0
-2015-03-25 12:00:00,12160.0
-2015-03-25 13:00:00,12089.0
-2015-03-25 14:00:00,12096.0
-2015-03-25 15:00:00,12084.0
-2015-03-25 16:00:00,11950.0
-2015-03-25 17:00:00,11859.0
-2015-03-25 18:00:00,11791.0
-2015-03-25 19:00:00,11723.0
-2015-03-25 20:00:00,11631.0
-2015-03-25 21:00:00,12062.0
-2015-03-25 22:00:00,12022.0
-2015-03-25 23:00:00,11579.0
-2015-03-26 00:00:00,10836.0
-2015-03-24 01:00:00,10460.0
-2015-03-24 02:00:00,10018.0
-2015-03-24 03:00:00,9783.0
-2015-03-24 04:00:00,9650.0
-2015-03-24 05:00:00,9694.0
-2015-03-24 06:00:00,9958.0
-2015-03-24 07:00:00,10730.0
-2015-03-24 08:00:00,11788.0
-2015-03-24 09:00:00,12170.0
-2015-03-24 10:00:00,12261.0
-2015-03-24 11:00:00,12218.0
-2015-03-24 12:00:00,12140.0
-2015-03-24 13:00:00,12038.0
-2015-03-24 14:00:00,11907.0
-2015-03-24 15:00:00,11863.0
-2015-03-24 16:00:00,11676.0
-2015-03-24 17:00:00,11577.0
-2015-03-24 18:00:00,11585.0
-2015-03-24 19:00:00,11635.0
-2015-03-24 20:00:00,11699.0
-2015-03-24 21:00:00,12242.0
-2015-03-24 22:00:00,12127.0
-2015-03-24 23:00:00,11659.0
-2015-03-25 00:00:00,10961.0
-2015-03-23 01:00:00,9708.0
-2015-03-23 02:00:00,9375.0
-2015-03-23 03:00:00,9212.0
-2015-03-23 04:00:00,9172.0
-2015-03-23 05:00:00,9217.0
-2015-03-23 06:00:00,9522.0
-2015-03-23 07:00:00,10285.0
-2015-03-23 08:00:00,11455.0
-2015-03-23 09:00:00,12020.0
-2015-03-23 10:00:00,12322.0
-2015-03-23 11:00:00,12440.0
-2015-03-23 12:00:00,12543.0
-2015-03-23 13:00:00,12480.0
-2015-03-23 14:00:00,12351.0
-2015-03-23 15:00:00,12342.0
-2015-03-23 16:00:00,12164.0
-2015-03-23 17:00:00,12008.0
-2015-03-23 18:00:00,12032.0
-2015-03-23 19:00:00,12022.0
-2015-03-23 20:00:00,12039.0
-2015-03-23 21:00:00,12483.0
-2015-03-23 22:00:00,12363.0
-2015-03-23 23:00:00,11886.0
-2015-03-24 00:00:00,11158.0
-2015-03-22 01:00:00,9250.0
-2015-03-22 02:00:00,8917.0
-2015-03-22 03:00:00,8676.0
-2015-03-22 04:00:00,8561.0
-2015-03-22 05:00:00,8473.0
-2015-03-22 06:00:00,8541.0
-2015-03-22 07:00:00,8697.0
-2015-03-22 08:00:00,9003.0
-2015-03-22 09:00:00,9061.0
-2015-03-22 10:00:00,9371.0
-2015-03-22 11:00:00,9613.0
-2015-03-22 12:00:00,9740.0
-2015-03-22 13:00:00,9745.0
-2015-03-22 14:00:00,9742.0
-2015-03-22 15:00:00,9694.0
-2015-03-22 16:00:00,9723.0
-2015-03-22 17:00:00,9672.0
-2015-03-22 18:00:00,9789.0
-2015-03-22 19:00:00,10030.0
-2015-03-22 20:00:00,10402.0
-2015-03-22 21:00:00,11039.0
-2015-03-22 22:00:00,11025.0
-2015-03-22 23:00:00,10728.0
-2015-03-23 00:00:00,10201.0
-2015-03-21 01:00:00,9681.0
-2015-03-21 02:00:00,9154.0
-2015-03-21 03:00:00,8904.0
-2015-03-21 04:00:00,8681.0
-2015-03-21 05:00:00,8673.0
-2015-03-21 06:00:00,8699.0
-2015-03-21 07:00:00,9007.0
-2015-03-21 08:00:00,9451.0
-2015-03-21 09:00:00,9608.0
-2015-03-21 10:00:00,9784.0
-2015-03-21 11:00:00,9914.0
-2015-03-21 12:00:00,9921.0
-2015-03-21 13:00:00,9826.0
-2015-03-21 14:00:00,9680.0
-2015-03-21 15:00:00,9462.0
-2015-03-21 16:00:00,9312.0
-2015-03-21 17:00:00,9165.0
-2015-03-21 18:00:00,9162.0
-2015-03-21 19:00:00,9203.0
-2015-03-21 20:00:00,9414.0
-2015-03-21 21:00:00,10085.0
-2015-03-21 22:00:00,10280.0
-2015-03-21 23:00:00,10072.0
-2015-03-22 00:00:00,9734.0
-2015-03-20 01:00:00,9731.0
-2015-03-20 02:00:00,9263.0
-2015-03-20 03:00:00,8994.0
-2015-03-20 04:00:00,8836.0
-2015-03-20 05:00:00,8797.0
-2015-03-20 06:00:00,9001.0
-2015-03-20 07:00:00,9670.0
-2015-03-20 08:00:00,10784.0
-2015-03-20 09:00:00,11294.0
-2015-03-20 10:00:00,11376.0
-2015-03-20 11:00:00,11364.0
-2015-03-20 12:00:00,11280.0
-2015-03-20 13:00:00,11131.0
-2015-03-20 14:00:00,11029.0
-2015-03-20 15:00:00,11021.0
-2015-03-20 16:00:00,10895.0
-2015-03-20 17:00:00,10736.0
-2015-03-20 18:00:00,10658.0
-2015-03-20 19:00:00,10549.0
-2015-03-20 20:00:00,10607.0
-2015-03-20 21:00:00,11144.0
-2015-03-20 22:00:00,11117.0
-2015-03-20 23:00:00,10832.0
-2015-03-21 00:00:00,10270.0
-2015-03-19 01:00:00,9648.0
-2015-03-19 02:00:00,9197.0
-2015-03-19 03:00:00,8941.0
-2015-03-19 04:00:00,8793.0
-2015-03-19 05:00:00,8801.0
-2015-03-19 06:00:00,9024.0
-2015-03-19 07:00:00,9747.0
-2015-03-19 08:00:00,10926.0
-2015-03-19 09:00:00,11316.0
-2015-03-19 10:00:00,11479.0
-2015-03-19 11:00:00,11527.0
-2015-03-19 12:00:00,11523.0
-2015-03-19 13:00:00,11491.0
-2015-03-19 14:00:00,11390.0
-2015-03-19 15:00:00,11334.0
-2015-03-19 16:00:00,11196.0
-2015-03-19 17:00:00,11126.0
-2015-03-19 18:00:00,11112.0
-2015-03-19 19:00:00,11187.0
-2015-03-19 20:00:00,11341.0
-2015-03-19 21:00:00,11776.0
-2015-03-19 22:00:00,11624.0
-2015-03-19 23:00:00,11164.0
-2015-03-20 00:00:00,10414.0
-2015-03-18 01:00:00,9879.0
-2015-03-18 02:00:00,9454.0
-2015-03-18 03:00:00,9186.0
-2015-03-18 04:00:00,9062.0
-2015-03-18 05:00:00,9066.0
-2015-03-18 06:00:00,9313.0
-2015-03-18 07:00:00,10078.0
-2015-03-18 08:00:00,11224.0
-2015-03-18 09:00:00,11655.0
-2015-03-18 10:00:00,11668.0
-2015-03-18 11:00:00,11530.0
-2015-03-18 12:00:00,11481.0
-2015-03-18 13:00:00,11351.0
-2015-03-18 14:00:00,11215.0
-2015-03-18 15:00:00,11149.0
-2015-03-18 16:00:00,11024.0
-2015-03-18 17:00:00,10942.0
-2015-03-18 18:00:00,10925.0
-2015-03-18 19:00:00,10963.0
-2015-03-18 20:00:00,11187.0
-2015-03-18 21:00:00,11636.0
-2015-03-18 22:00:00,11495.0
-2015-03-18 23:00:00,11026.0
-2015-03-19 00:00:00,10309.0
-2015-03-17 01:00:00,9139.0
-2015-03-17 02:00:00,8737.0
-2015-03-17 03:00:00,8505.0
-2015-03-17 04:00:00,8401.0
-2015-03-17 05:00:00,8395.0
-2015-03-17 06:00:00,8722.0
-2015-03-17 07:00:00,9506.0
-2015-03-17 08:00:00,10766.0
-2015-03-17 09:00:00,11463.0
-2015-03-17 10:00:00,11573.0
-2015-03-17 11:00:00,11537.0
-2015-03-17 12:00:00,11550.0
-2015-03-17 13:00:00,11473.0
-2015-03-17 14:00:00,11399.0
-2015-03-17 15:00:00,11328.0
-2015-03-17 16:00:00,11172.0
-2015-03-17 17:00:00,10977.0
-2015-03-17 18:00:00,10879.0
-2015-03-17 19:00:00,10828.0
-2015-03-17 20:00:00,10927.0
-2015-03-17 21:00:00,11614.0
-2015-03-17 22:00:00,11588.0
-2015-03-17 23:00:00,11199.0
-2015-03-18 00:00:00,10541.0
-2015-03-16 01:00:00,8640.0
-2015-03-16 02:00:00,8355.0
-2015-03-16 03:00:00,8139.0
-2015-03-16 04:00:00,8076.0
-2015-03-16 05:00:00,8081.0
-2015-03-16 06:00:00,8346.0
-2015-03-16 07:00:00,9088.0
-2015-03-16 08:00:00,10356.0
-2015-03-16 09:00:00,10894.0
-2015-03-16 10:00:00,10958.0
-2015-03-16 11:00:00,11032.0
-2015-03-16 12:00:00,11158.0
-2015-03-16 13:00:00,11172.0
-2015-03-16 14:00:00,11113.0
-2015-03-16 15:00:00,11121.0
-2015-03-16 16:00:00,11039.0
-2015-03-16 17:00:00,10904.0
-2015-03-16 18:00:00,10773.0
-2015-03-16 19:00:00,10710.0
-2015-03-16 20:00:00,10656.0
-2015-03-16 21:00:00,11238.0
-2015-03-16 22:00:00,11132.0
-2015-03-16 23:00:00,10582.0
-2015-03-17 00:00:00,9842.0
-2015-03-15 01:00:00,8950.0
-2015-03-15 02:00:00,8576.0
-2015-03-15 03:00:00,8307.0
-2015-03-15 04:00:00,8170.0
-2015-03-15 05:00:00,8169.0
-2015-03-15 06:00:00,8183.0
-2015-03-15 07:00:00,8406.0
-2015-03-15 08:00:00,8684.0
-2015-03-15 09:00:00,8742.0
-2015-03-15 10:00:00,8876.0
-2015-03-15 11:00:00,9026.0
-2015-03-15 12:00:00,9056.0
-2015-03-15 13:00:00,9026.0
-2015-03-15 14:00:00,9009.0
-2015-03-15 15:00:00,8964.0
-2015-03-15 16:00:00,8887.0
-2015-03-15 17:00:00,8836.0
-2015-03-15 18:00:00,8899.0
-2015-03-15 19:00:00,9017.0
-2015-03-15 20:00:00,9449.0
-2015-03-15 21:00:00,10090.0
-2015-03-15 22:00:00,10031.0
-2015-03-15 23:00:00,9663.0
-2015-03-16 00:00:00,9194.0
-2015-03-14 01:00:00,9367.0
-2015-03-14 02:00:00,8852.0
-2015-03-14 03:00:00,8586.0
-2015-03-14 04:00:00,8427.0
-2015-03-14 05:00:00,8372.0
-2015-03-14 06:00:00,8435.0
-2015-03-14 07:00:00,8709.0
-2015-03-14 08:00:00,9165.0
-2015-03-14 09:00:00,9459.0
-2015-03-14 10:00:00,9741.0
-2015-03-14 11:00:00,9895.0
-2015-03-14 12:00:00,9886.0
-2015-03-14 13:00:00,9839.0
-2015-03-14 14:00:00,9672.0
-2015-03-14 15:00:00,9528.0
-2015-03-14 16:00:00,9381.0
-2015-03-14 17:00:00,9257.0
-2015-03-14 18:00:00,9210.0
-2015-03-14 19:00:00,9210.0
-2015-03-14 20:00:00,9348.0
-2015-03-14 21:00:00,9980.0
-2015-03-14 22:00:00,10027.0
-2015-03-14 23:00:00,9800.0
-2015-03-15 00:00:00,9434.0
-2015-03-13 01:00:00,9766.0
-2015-03-13 02:00:00,9270.0
-2015-03-13 03:00:00,8988.0
-2015-03-13 04:00:00,8827.0
-2015-03-13 05:00:00,8811.0
-2015-03-13 06:00:00,9046.0
-2015-03-13 07:00:00,9728.0
-2015-03-13 08:00:00,10860.0
-2015-03-13 09:00:00,11355.0
-2015-03-13 10:00:00,11377.0
-2015-03-13 11:00:00,11289.0
-2015-03-13 12:00:00,11265.0
-2015-03-13 13:00:00,11225.0
-2015-03-13 14:00:00,11125.0
-2015-03-13 15:00:00,11074.0
-2015-03-13 16:00:00,10914.0
-2015-03-13 17:00:00,10739.0
-2015-03-13 18:00:00,10590.0
-2015-03-13 19:00:00,10481.0
-2015-03-13 20:00:00,10479.0
-2015-03-13 21:00:00,11018.0
-2015-03-13 22:00:00,10865.0
-2015-03-13 23:00:00,10594.0
-2015-03-14 00:00:00,9959.0
-2015-03-12 01:00:00,9859.0
-2015-03-12 02:00:00,9483.0
-2015-03-12 03:00:00,9205.0
-2015-03-12 04:00:00,9111.0
-2015-03-12 05:00:00,9099.0
-2015-03-12 06:00:00,9364.0
-2015-03-12 07:00:00,10136.0
-2015-03-12 08:00:00,11363.0
-2015-03-12 09:00:00,11861.0
-2015-03-12 10:00:00,11776.0
-2015-03-12 11:00:00,11706.0
-2015-03-12 12:00:00,11658.0
-2015-03-12 13:00:00,11529.0
-2015-03-12 14:00:00,11432.0
-2015-03-12 15:00:00,11362.0
-2015-03-12 16:00:00,11175.0
-2015-03-12 17:00:00,11001.0
-2015-03-12 18:00:00,10844.0
-2015-03-12 19:00:00,10772.0
-2015-03-12 20:00:00,10840.0
-2015-03-12 21:00:00,11532.0
-2015-03-12 22:00:00,11509.0
-2015-03-12 23:00:00,11116.0
-2015-03-13 00:00:00,10423.0
-2015-03-11 01:00:00,9875.0
-2015-03-11 02:00:00,9408.0
-2015-03-11 03:00:00,9189.0
-2015-03-11 04:00:00,9048.0
-2015-03-11 05:00:00,9043.0
-2015-03-11 06:00:00,9306.0
-2015-03-11 07:00:00,10050.0
-2015-03-11 08:00:00,11191.0
-2015-03-11 09:00:00,11687.0
-2015-03-11 10:00:00,11637.0
-2015-03-11 11:00:00,11539.0
-2015-03-11 12:00:00,11457.0
-2015-03-11 13:00:00,11388.0
-2015-03-11 14:00:00,11311.0
-2015-03-11 15:00:00,11280.0
-2015-03-11 16:00:00,11134.0
-2015-03-11 17:00:00,10977.0
-2015-03-11 18:00:00,10852.0
-2015-03-11 19:00:00,10805.0
-2015-03-11 20:00:00,10911.0
-2015-03-11 21:00:00,11596.0
-2015-03-11 22:00:00,11583.0
-2015-03-11 23:00:00,11163.0
-2015-03-12 00:00:00,10537.0
-2015-03-10 01:00:00,9878.0
-2015-03-10 02:00:00,9439.0
-2015-03-10 03:00:00,9192.0
-2015-03-10 04:00:00,9029.0
-2015-03-10 05:00:00,8999.0
-2015-03-10 06:00:00,9226.0
-2015-03-10 07:00:00,9918.0
-2015-03-10 08:00:00,11080.0
-2015-03-10 09:00:00,11777.0
-2015-03-10 10:00:00,11803.0
-2015-03-10 11:00:00,11803.0
-2015-03-10 12:00:00,11796.0
-2015-03-10 13:00:00,11677.0
-2015-03-10 14:00:00,11501.0
-2015-03-10 15:00:00,11422.0
-2015-03-10 16:00:00,11200.0
-2015-03-10 17:00:00,11015.0
-2015-03-10 18:00:00,10904.0
-2015-03-10 19:00:00,10869.0
-2015-03-10 20:00:00,11009.0
-2015-03-10 21:00:00,11659.0
-2015-03-10 22:00:00,11624.0
-2015-03-10 23:00:00,11215.0
-2015-03-11 00:00:00,10556.0
-2015-03-09 01:00:00,9808.0
-2015-03-09 02:00:00,9457.0
-2015-03-09 03:00:00,9314.0
-2015-03-09 04:00:00,9243.0
-2015-03-09 05:00:00,9353.0
-2015-03-09 06:00:00,9652.0
-2015-03-09 07:00:00,10418.0
-2015-03-09 08:00:00,11590.0
-2015-03-09 09:00:00,12204.0
-2015-03-09 10:00:00,12063.0
-2015-03-09 11:00:00,11888.0
-2015-03-09 12:00:00,11768.0
-2015-03-09 13:00:00,11597.0
-2015-03-09 14:00:00,11462.0
-2015-03-09 15:00:00,11395.0
-2015-03-09 16:00:00,11192.0
-2015-03-09 17:00:00,11000.0
-2015-03-09 18:00:00,10883.0
-2015-03-09 19:00:00,10805.0
-2015-03-09 20:00:00,10973.0
-2015-03-09 21:00:00,11722.0
-2015-03-09 22:00:00,11673.0
-2015-03-09 23:00:00,11253.0
-2015-03-10 00:00:00,10564.0
-2015-03-08 01:00:00,9825.0
-2015-03-08 02:00:00,9433.0
-2015-03-08 04:00:00,9239.0
-2015-03-08 05:00:00,9082.0
-2015-03-08 06:00:00,9071.0
-2015-03-08 07:00:00,9205.0
-2015-03-08 08:00:00,9444.0
-2015-03-08 09:00:00,9495.0
-2015-03-08 10:00:00,9679.0
-2015-03-08 11:00:00,9849.0
-2015-03-08 12:00:00,9957.0
-2015-03-08 13:00:00,9954.0
-2015-03-08 14:00:00,9890.0
-2015-03-08 15:00:00,9767.0
-2015-03-08 16:00:00,9681.0
-2015-03-08 17:00:00,9750.0
-2015-03-08 18:00:00,9828.0
-2015-03-08 19:00:00,10056.0
-2015-03-08 20:00:00,10410.0
-2015-03-08 21:00:00,11061.0
-2015-03-08 22:00:00,10987.0
-2015-03-08 23:00:00,10746.0
-2015-03-09 00:00:00,10268.0
-2015-03-07 01:00:00,11182.0
-2015-03-07 02:00:00,10671.0
-2015-03-07 03:00:00,10439.0
-2015-03-07 04:00:00,10207.0
-2015-03-07 05:00:00,10184.0
-2015-03-07 06:00:00,10192.0
-2015-03-07 07:00:00,10428.0
-2015-03-07 08:00:00,10585.0
-2015-03-07 09:00:00,10795.0
-2015-03-07 10:00:00,10865.0
-2015-03-07 11:00:00,10910.0
-2015-03-07 12:00:00,10729.0
-2015-03-07 13:00:00,10609.0
-2015-03-07 14:00:00,10357.0
-2015-03-07 15:00:00,10128.0
-2015-03-07 16:00:00,9949.0
-2015-03-07 17:00:00,9877.0
-2015-03-07 18:00:00,9954.0
-2015-03-07 19:00:00,10340.0
-2015-03-07 20:00:00,11088.0
-2015-03-07 21:00:00,11141.0
-2015-03-07 22:00:00,10995.0
-2015-03-07 23:00:00,10763.0
-2015-03-08 00:00:00,10299.0
-2015-03-06 01:00:00,11983.0
-2015-03-06 02:00:00,11559.0
-2015-03-06 03:00:00,11360.0
-2015-03-06 04:00:00,11275.0
-2015-03-06 05:00:00,11314.0
-2015-03-06 06:00:00,11546.0
-2015-03-06 07:00:00,12237.0
-2015-03-06 08:00:00,13022.0
-2015-03-06 09:00:00,13361.0
-2015-03-06 10:00:00,13366.0
-2015-03-06 11:00:00,13332.0
-2015-03-06 12:00:00,13283.0
-2015-03-06 13:00:00,13125.0
-2015-03-06 14:00:00,12872.0
-2015-03-06 15:00:00,12780.0
-2015-03-06 16:00:00,12566.0
-2015-03-06 17:00:00,12395.0
-2015-03-06 18:00:00,12454.0
-2015-03-06 19:00:00,12736.0
-2015-03-06 20:00:00,13415.0
-2015-03-06 21:00:00,13275.0
-2015-03-06 22:00:00,12979.0
-2015-03-06 23:00:00,12548.0
-2015-03-07 00:00:00,11862.0
-2015-03-05 01:00:00,11761.0
-2015-03-05 02:00:00,11399.0
-2015-03-05 03:00:00,11187.0
-2015-03-05 04:00:00,11081.0
-2015-03-05 05:00:00,11108.0
-2015-03-05 06:00:00,11386.0
-2015-03-05 07:00:00,12090.0
-2015-03-05 08:00:00,13035.0
-2015-03-05 09:00:00,13331.0
-2015-03-05 10:00:00,13376.0
-2015-03-05 11:00:00,13273.0
-2015-03-05 12:00:00,13214.0
-2015-03-05 13:00:00,13136.0
-2015-03-05 14:00:00,13022.0
-2015-03-05 15:00:00,12952.0
-2015-03-05 16:00:00,12792.0
-2015-03-05 17:00:00,12686.0
-2015-03-05 18:00:00,12783.0
-2015-03-05 19:00:00,13200.0
-2015-03-05 20:00:00,14002.0
-2015-03-05 21:00:00,14032.0
-2015-03-05 22:00:00,13829.0
-2015-03-05 23:00:00,13353.0
-2015-03-06 00:00:00,12648.0
-2015-03-04 01:00:00,10813.0
-2015-03-04 02:00:00,10368.0
-2015-03-04 03:00:00,10144.0
-2015-03-04 04:00:00,10055.0
-2015-03-04 05:00:00,10146.0
-2015-03-04 06:00:00,10504.0
-2015-03-04 07:00:00,11314.0
-2015-03-04 08:00:00,12276.0
-2015-03-04 09:00:00,12738.0
-2015-03-04 10:00:00,12863.0
-2015-03-04 11:00:00,12969.0
-2015-03-04 12:00:00,12972.0
-2015-03-04 13:00:00,12879.0
-2015-03-04 14:00:00,12742.0
-2015-03-04 15:00:00,12760.0
-2015-03-04 16:00:00,12649.0
-2015-03-04 17:00:00,12600.0
-2015-03-04 18:00:00,12803.0
-2015-03-04 19:00:00,13215.0
-2015-03-04 20:00:00,13897.0
-2015-03-04 21:00:00,13835.0
-2015-03-04 22:00:00,13623.0
-2015-03-04 23:00:00,13124.0
-2015-03-05 00:00:00,12397.0
-2015-03-03 01:00:00,10940.0
-2015-03-03 02:00:00,10516.0
-2015-03-03 03:00:00,10286.0
-2015-03-03 04:00:00,10154.0
-2015-03-03 05:00:00,10190.0
-2015-03-03 06:00:00,10515.0
-2015-03-03 07:00:00,11261.0
-2015-03-03 08:00:00,12214.0
-2015-03-03 09:00:00,12689.0
-2015-03-03 10:00:00,12927.0
-2015-03-03 11:00:00,13057.0
-2015-03-03 12:00:00,13175.0
-2015-03-03 13:00:00,13105.0
-2015-03-03 14:00:00,12979.0
-2015-03-03 15:00:00,12944.0
-2015-03-03 16:00:00,12814.0
-2015-03-03 17:00:00,12704.0
-2015-03-03 18:00:00,12737.0
-2015-03-03 19:00:00,13092.0
-2015-03-03 20:00:00,13299.0
-2015-03-03 21:00:00,13159.0
-2015-03-03 22:00:00,12813.0
-2015-03-03 23:00:00,12269.0
-2015-03-04 00:00:00,11535.0
-2015-03-02 01:00:00,10979.0
-2015-03-02 02:00:00,10657.0
-2015-03-02 03:00:00,10562.0
-2015-03-02 04:00:00,10484.0
-2015-03-02 05:00:00,10511.0
-2015-03-02 06:00:00,10808.0
-2015-03-02 07:00:00,11575.0
-2015-03-02 08:00:00,12522.0
-2015-03-02 09:00:00,12873.0
-2015-03-02 10:00:00,12826.0
-2015-03-02 11:00:00,12735.0
-2015-03-02 12:00:00,12657.0
-2015-03-02 13:00:00,12536.0
-2015-03-02 14:00:00,12379.0
-2015-03-02 15:00:00,12287.0
-2015-03-02 16:00:00,12131.0
-2015-03-02 17:00:00,12033.0
-2015-03-02 18:00:00,12238.0
-2015-03-02 19:00:00,12769.0
-2015-03-02 20:00:00,13329.0
-2015-03-02 21:00:00,13214.0
-2015-03-02 22:00:00,12943.0
-2015-03-02 23:00:00,12426.0
-2015-03-03 00:00:00,11638.0
-2015-03-01 01:00:00,11149.0
-2015-03-01 02:00:00,10762.0
-2015-03-01 03:00:00,10530.0
-2015-03-01 04:00:00,10380.0
-2015-03-01 05:00:00,10347.0
-2015-03-01 06:00:00,10342.0
-2015-03-01 07:00:00,10513.0
-2015-03-01 08:00:00,10601.0
-2015-03-01 09:00:00,10619.0
-2015-03-01 10:00:00,10924.0
-2015-03-01 11:00:00,11110.0
-2015-03-01 12:00:00,11149.0
-2015-03-01 13:00:00,11120.0
-2015-03-01 14:00:00,10929.0
-2015-03-01 15:00:00,10873.0
-2015-03-01 16:00:00,10742.0
-2015-03-01 17:00:00,10742.0
-2015-03-01 18:00:00,10980.0
-2015-03-01 19:00:00,11632.0
-2015-03-01 20:00:00,12483.0
-2015-03-01 21:00:00,12495.0
-2015-03-01 22:00:00,12310.0
-2015-03-01 23:00:00,11981.0
-2015-03-02 00:00:00,11437.0
-2015-02-28 01:00:00,12256.0
-2015-02-28 02:00:00,11795.0
-2015-02-28 03:00:00,11632.0
-2015-02-28 04:00:00,11518.0
-2015-02-28 05:00:00,11502.0
-2015-02-28 06:00:00,11603.0
-2015-02-28 07:00:00,11805.0
-2015-02-28 08:00:00,12145.0
-2015-02-28 09:00:00,12286.0
-2015-02-28 10:00:00,12407.0
-2015-02-28 11:00:00,12414.0
-2015-02-28 12:00:00,12300.0
-2015-02-28 13:00:00,12150.0
-2015-02-28 14:00:00,11852.0
-2015-02-28 15:00:00,11592.0
-2015-02-28 16:00:00,11385.0
-2015-02-28 17:00:00,11374.0
-2015-02-28 18:00:00,11626.0
-2015-02-28 19:00:00,12195.0
-2015-02-28 20:00:00,12673.0
-2015-02-28 21:00:00,12630.0
-2015-02-28 22:00:00,12456.0
-2015-02-28 23:00:00,12168.0
-2015-03-01 00:00:00,11663.0
-2015-02-27 01:00:00,12236.0
-2015-02-27 02:00:00,11835.0
-2015-02-27 03:00:00,11637.0
-2015-02-27 04:00:00,11553.0
-2015-02-27 05:00:00,11582.0
-2015-02-27 06:00:00,11791.0
-2015-02-27 07:00:00,12427.0
-2015-02-27 08:00:00,13251.0
-2015-02-27 09:00:00,13560.0
-2015-02-27 10:00:00,13560.0
-2015-02-27 11:00:00,13567.0
-2015-02-27 12:00:00,13489.0
-2015-02-27 13:00:00,13416.0
-2015-02-27 14:00:00,13242.0
-2015-02-27 15:00:00,13138.0
-2015-02-27 16:00:00,12935.0
-2015-02-27 17:00:00,12792.0
-2015-02-27 18:00:00,12895.0
-2015-02-27 19:00:00,13368.0
-2015-02-27 20:00:00,14048.0
-2015-02-27 21:00:00,13976.0
-2015-02-27 22:00:00,13810.0
-2015-02-27 23:00:00,13472.0
-2015-02-28 00:00:00,12885.0
-2015-02-26 01:00:00,11738.0
-2015-02-26 02:00:00,11325.0
-2015-02-26 03:00:00,11083.0
-2015-02-26 04:00:00,10954.0
-2015-02-26 05:00:00,11006.0
-2015-02-26 06:00:00,11260.0
-2015-02-26 07:00:00,11916.0
-2015-02-26 08:00:00,12832.0
-2015-02-26 09:00:00,13262.0
-2015-02-26 10:00:00,13442.0
-2015-02-26 11:00:00,13518.0
-2015-02-26 12:00:00,13554.0
-2015-02-26 13:00:00,13418.0
-2015-02-26 14:00:00,13273.0
-2015-02-26 15:00:00,13259.0
-2015-02-26 16:00:00,13133.0
-2015-02-26 17:00:00,13038.0
-2015-02-26 18:00:00,13161.0
-2015-02-26 19:00:00,13664.0
-2015-02-26 20:00:00,14283.0
-2015-02-26 21:00:00,14229.0
-2015-02-26 22:00:00,14039.0
-2015-02-26 23:00:00,13598.0
-2015-02-27 00:00:00,12852.0
-2015-02-25 01:00:00,11570.0
-2015-02-25 02:00:00,11174.0
-2015-02-25 03:00:00,10955.0
-2015-02-25 04:00:00,10851.0
-2015-02-25 05:00:00,10906.0
-2015-02-25 06:00:00,11200.0
-2015-02-25 07:00:00,11916.0
-2015-02-25 08:00:00,12860.0
-2015-02-25 09:00:00,13133.0
-2015-02-25 10:00:00,13202.0
-2015-02-25 11:00:00,13187.0
-2015-02-25 12:00:00,13136.0
-2015-02-25 13:00:00,13011.0
-2015-02-25 14:00:00,12948.0
-2015-02-25 15:00:00,12966.0
-2015-02-25 16:00:00,12946.0
-2015-02-25 17:00:00,12995.0
-2015-02-25 18:00:00,13240.0
-2015-02-25 19:00:00,13702.0
-2015-02-25 20:00:00,14001.0
-2015-02-25 21:00:00,13883.0
-2015-02-25 22:00:00,13654.0
-2015-02-25 23:00:00,13175.0
-2015-02-26 00:00:00,12444.0
-2015-02-24 01:00:00,12473.0
-2015-02-24 02:00:00,12084.0
-2015-02-24 03:00:00,11876.0
-2015-02-24 04:00:00,11792.0
-2015-02-24 05:00:00,11798.0
-2015-02-24 06:00:00,12028.0
-2015-02-24 07:00:00,12682.0
-2015-02-24 08:00:00,13610.0
-2015-02-24 09:00:00,13974.0
-2015-02-24 10:00:00,14141.0
-2015-02-24 11:00:00,14234.0
-2015-02-24 12:00:00,14226.0
-2015-02-24 13:00:00,14134.0
-2015-02-24 14:00:00,13970.0
-2015-02-24 15:00:00,13915.0
-2015-02-24 16:00:00,13647.0
-2015-02-24 17:00:00,13344.0
-2015-02-24 18:00:00,13231.0
-2015-02-24 19:00:00,13645.0
-2015-02-24 20:00:00,14089.0
-2015-02-24 21:00:00,13936.0
-2015-02-24 22:00:00,13613.0
-2015-02-24 23:00:00,13119.0
-2015-02-25 00:00:00,12503.0
-2015-02-23 01:00:00,11790.0
-2015-02-23 02:00:00,11526.0
-2015-02-23 03:00:00,11400.0
-2015-02-23 04:00:00,11380.0
-2015-02-23 05:00:00,11475.0
-2015-02-23 06:00:00,11782.0
-2015-02-23 07:00:00,12543.0
-2015-02-23 08:00:00,13565.0
-2015-02-23 09:00:00,13948.0
-2015-02-23 10:00:00,13989.0
-2015-02-23 11:00:00,13920.0
-2015-02-23 12:00:00,13858.0
-2015-02-23 13:00:00,13741.0
-2015-02-23 14:00:00,13599.0
-2015-02-23 15:00:00,13487.0
-2015-02-23 16:00:00,13311.0
-2015-02-23 17:00:00,13206.0
-2015-02-23 18:00:00,13350.0
-2015-02-23 19:00:00,14009.0
-2015-02-23 20:00:00,14664.0
-2015-02-23 21:00:00,14612.0
-2015-02-23 22:00:00,14383.0
-2015-02-23 23:00:00,13907.0
-2015-02-24 00:00:00,13134.0
-2015-02-22 01:00:00,10687.0
-2015-02-22 02:00:00,10331.0
-2015-02-22 03:00:00,10094.0
-2015-02-22 04:00:00,9980.0
-2015-02-22 05:00:00,9991.0
-2015-02-22 06:00:00,10082.0
-2015-02-22 07:00:00,10308.0
-2015-02-22 08:00:00,10531.0
-2015-02-22 09:00:00,10593.0
-2015-02-22 10:00:00,10906.0
-2015-02-22 11:00:00,11153.0
-2015-02-22 12:00:00,11167.0
-2015-02-22 13:00:00,11138.0
-2015-02-22 14:00:00,11089.0
-2015-02-22 15:00:00,11064.0
-2015-02-22 16:00:00,10985.0
-2015-02-22 17:00:00,11080.0
-2015-02-22 18:00:00,11460.0
-2015-02-22 19:00:00,12290.0
-2015-02-22 20:00:00,13062.0
-2015-02-22 21:00:00,13094.0
-2015-02-22 22:00:00,12898.0
-2015-02-22 23:00:00,12680.0
-2015-02-23 00:00:00,12221.0
-2015-02-21 01:00:00,12125.0
-2015-02-21 02:00:00,11592.0
-2015-02-21 03:00:00,11261.0
-2015-02-21 04:00:00,11023.0
-2015-02-21 05:00:00,10923.0
-2015-02-21 06:00:00,10900.0
-2015-02-21 07:00:00,11181.0
-2015-02-21 08:00:00,11542.0
-2015-02-21 09:00:00,11672.0
-2015-02-21 10:00:00,11986.0
-2015-02-21 11:00:00,12157.0
-2015-02-21 12:00:00,12081.0
-2015-02-21 13:00:00,11826.0
-2015-02-21 14:00:00,11574.0
-2015-02-21 15:00:00,11371.0
-2015-02-21 16:00:00,11280.0
-2015-02-21 17:00:00,11227.0
-2015-02-21 18:00:00,11449.0
-2015-02-21 19:00:00,11993.0
-2015-02-21 20:00:00,12309.0
-2015-02-21 21:00:00,12172.0
-2015-02-21 22:00:00,11989.0
-2015-02-21 23:00:00,11687.0
-2015-02-22 00:00:00,11180.0
-2015-02-20 01:00:00,12920.0
-2015-02-20 02:00:00,12522.0
-2015-02-20 03:00:00,12317.0
-2015-02-20 04:00:00,12191.0
-2015-02-20 05:00:00,12193.0
-2015-02-20 06:00:00,12409.0
-2015-02-20 07:00:00,13020.0
-2015-02-20 08:00:00,13917.0
-2015-02-20 09:00:00,14332.0
-2015-02-20 10:00:00,14540.0
-2015-02-20 11:00:00,14600.0
-2015-02-20 12:00:00,14593.0
-2015-02-20 13:00:00,14506.0
-2015-02-20 14:00:00,14283.0
-2015-02-20 15:00:00,14237.0
-2015-02-20 16:00:00,14099.0
-2015-02-20 17:00:00,14021.0
-2015-02-20 18:00:00,14002.0
-2015-02-20 19:00:00,14342.0
-2015-02-20 20:00:00,14631.0
-2015-02-20 21:00:00,14393.0
-2015-02-20 22:00:00,14058.0
-2015-02-20 23:00:00,13612.0
-2015-02-21 00:00:00,12830.0
-2015-02-19 01:00:00,13080.0
-2015-02-19 02:00:00,12693.0
-2015-02-19 03:00:00,12425.0
-2015-02-19 04:00:00,12293.0
-2015-02-19 05:00:00,12280.0
-2015-02-19 06:00:00,12529.0
-2015-02-19 07:00:00,13097.0
-2015-02-19 08:00:00,13974.0
-2015-02-19 09:00:00,14332.0
-2015-02-19 10:00:00,14519.0
-2015-02-19 11:00:00,14570.0
-2015-02-19 12:00:00,14604.0
-2015-02-19 13:00:00,14511.0
-2015-02-19 14:00:00,14401.0
-2015-02-19 15:00:00,14272.0
-2015-02-19 16:00:00,14073.0
-2015-02-19 17:00:00,13920.0
-2015-02-19 18:00:00,14054.0
-2015-02-19 19:00:00,14712.0
-2015-02-19 20:00:00,15183.0
-2015-02-19 21:00:00,15106.0
-2015-02-19 22:00:00,14819.0
-2015-02-19 23:00:00,14361.0
-2015-02-20 00:00:00,13634.0
-2015-02-18 01:00:00,12177.0
-2015-02-18 02:00:00,11776.0
-2015-02-18 03:00:00,11570.0
-2015-02-18 04:00:00,11481.0
-2015-02-18 05:00:00,11530.0
-2015-02-18 06:00:00,11774.0
-2015-02-18 07:00:00,12492.0
-2015-02-18 08:00:00,13445.0
-2015-02-18 09:00:00,13884.0
-2015-02-18 10:00:00,13971.0
-2015-02-18 11:00:00,14010.0
-2015-02-18 12:00:00,14046.0
-2015-02-18 13:00:00,13994.0
-2015-02-18 14:00:00,13938.0
-2015-02-18 15:00:00,13990.0
-2015-02-18 16:00:00,13960.0
-2015-02-18 17:00:00,14003.0
-2015-02-18 18:00:00,14244.0
-2015-02-18 19:00:00,14882.0
-2015-02-18 20:00:00,15279.0
-2015-02-18 21:00:00,15135.0
-2015-02-18 22:00:00,14895.0
-2015-02-18 23:00:00,14433.0
-2015-02-19 00:00:00,13709.0
-2015-02-17 01:00:00,11808.0
-2015-02-17 02:00:00,11336.0
-2015-02-17 03:00:00,11104.0
-2015-02-17 04:00:00,10974.0
-2015-02-17 05:00:00,10973.0
-2015-02-17 06:00:00,11210.0
-2015-02-17 07:00:00,11884.0
-2015-02-17 08:00:00,12912.0
-2015-02-17 09:00:00,13328.0
-2015-02-17 10:00:00,13396.0
-2015-02-17 11:00:00,13476.0
-2015-02-17 12:00:00,13489.0
-2015-02-17 13:00:00,13406.0
-2015-02-17 14:00:00,13290.0
-2015-02-17 15:00:00,13301.0
-2015-02-17 16:00:00,13250.0
-2015-02-17 17:00:00,13215.0
-2015-02-17 18:00:00,13447.0
-2015-02-17 19:00:00,14032.0
-2015-02-17 20:00:00,14385.0
-2015-02-17 21:00:00,14276.0
-2015-02-17 22:00:00,14052.0
-2015-02-17 23:00:00,13510.0
-2015-02-18 00:00:00,12865.0
-2015-02-16 01:00:00,11434.0
-2015-02-16 02:00:00,11110.0
-2015-02-16 03:00:00,10925.0
-2015-02-16 04:00:00,10881.0
-2015-02-16 05:00:00,10910.0
-2015-02-16 06:00:00,11177.0
-2015-02-16 07:00:00,11804.0
-2015-02-16 08:00:00,12672.0
-2015-02-16 09:00:00,13105.0
-2015-02-16 10:00:00,13391.0
-2015-02-16 11:00:00,13517.0
-2015-02-16 12:00:00,13453.0
-2015-02-16 13:00:00,13274.0
-2015-02-16 14:00:00,13183.0
-2015-02-16 15:00:00,13146.0
-2015-02-16 16:00:00,13002.0
-2015-02-16 17:00:00,12959.0
-2015-02-16 18:00:00,13101.0
-2015-02-16 19:00:00,13832.0
-2015-02-16 20:00:00,14162.0
-2015-02-16 21:00:00,14041.0
-2015-02-16 22:00:00,13765.0
-2015-02-16 23:00:00,13230.0
-2015-02-17 00:00:00,12456.0
-2015-02-15 01:00:00,12028.0
-2015-02-15 02:00:00,11685.0
-2015-02-15 03:00:00,11477.0
-2015-02-15 04:00:00,11373.0
-2015-02-15 05:00:00,11312.0
-2015-02-15 06:00:00,11300.0
-2015-02-15 07:00:00,11415.0
-2015-02-15 08:00:00,11616.0
-2015-02-15 09:00:00,11610.0
-2015-02-15 10:00:00,11816.0
-2015-02-15 11:00:00,11915.0
-2015-02-15 12:00:00,11910.0
-2015-02-15 13:00:00,11839.0
-2015-02-15 14:00:00,11736.0
-2015-02-15 15:00:00,11603.0
-2015-02-15 16:00:00,11584.0
-2015-02-15 17:00:00,11648.0
-2015-02-15 18:00:00,11935.0
-2015-02-15 19:00:00,12653.0
-2015-02-15 20:00:00,13040.0
-2015-02-15 21:00:00,12956.0
-2015-02-15 22:00:00,12734.0
-2015-02-15 23:00:00,12429.0
-2015-02-16 00:00:00,11900.0
-2015-02-14 01:00:00,11353.0
-2015-02-14 02:00:00,10845.0
-2015-02-14 03:00:00,10526.0
-2015-02-14 04:00:00,10353.0
-2015-02-14 05:00:00,10313.0
-2015-02-14 06:00:00,10424.0
-2015-02-14 07:00:00,10732.0
-2015-02-14 08:00:00,11242.0
-2015-02-14 09:00:00,11600.0
-2015-02-14 10:00:00,12037.0
-2015-02-14 11:00:00,12319.0
-2015-02-14 12:00:00,12405.0
-2015-02-14 13:00:00,12398.0
-2015-02-14 14:00:00,12302.0
-2015-02-14 15:00:00,12191.0
-2015-02-14 16:00:00,12053.0
-2015-02-14 17:00:00,12042.0
-2015-02-14 18:00:00,12247.0
-2015-02-14 19:00:00,13009.0
-2015-02-14 20:00:00,13501.0
-2015-02-14 21:00:00,13392.0
-2015-02-14 22:00:00,13284.0
-2015-02-14 23:00:00,12980.0
-2015-02-15 00:00:00,12515.0
-2015-02-13 01:00:00,11911.0
-2015-02-13 02:00:00,11516.0
-2015-02-13 03:00:00,11334.0
-2015-02-13 04:00:00,11234.0
-2015-02-13 05:00:00,11276.0
-2015-02-13 06:00:00,11515.0
-2015-02-13 07:00:00,12082.0
-2015-02-13 08:00:00,13128.0
-2015-02-13 09:00:00,13463.0
-2015-02-13 10:00:00,13620.0
-2015-02-13 11:00:00,13701.0
-2015-02-13 12:00:00,13734.0
-2015-02-13 13:00:00,13690.0
-2015-02-13 14:00:00,13601.0
-2015-02-13 15:00:00,13538.0
-2015-02-13 16:00:00,13444.0
-2015-02-13 17:00:00,13371.0
-2015-02-13 18:00:00,13427.0
-2015-02-13 19:00:00,13837.0
-2015-02-13 20:00:00,13930.0
-2015-02-13 21:00:00,13656.0
-2015-02-13 22:00:00,13269.0
-2015-02-13 23:00:00,12870.0
-2015-02-14 00:00:00,12115.0
-2015-02-12 01:00:00,11480.0
-2015-02-12 02:00:00,11061.0
-2015-02-12 03:00:00,10825.0
-2015-02-12 04:00:00,10779.0
-2015-02-12 05:00:00,10850.0
-2015-02-12 06:00:00,11185.0
-2015-02-12 07:00:00,11955.0
-2015-02-12 08:00:00,13075.0
-2015-02-12 09:00:00,13461.0
-2015-02-12 10:00:00,13503.0
-2015-02-12 11:00:00,13497.0
-2015-02-12 12:00:00,13482.0
-2015-02-12 13:00:00,13334.0
-2015-02-12 14:00:00,13196.0
-2015-02-12 15:00:00,13086.0
-2015-02-12 16:00:00,12928.0
-2015-02-12 17:00:00,12839.0
-2015-02-12 18:00:00,13139.0
-2015-02-12 19:00:00,13863.0
-2015-02-12 20:00:00,14189.0
-2015-02-12 21:00:00,14028.0
-2015-02-12 22:00:00,13774.0
-2015-02-12 23:00:00,13295.0
-2015-02-13 00:00:00,12579.0
-2015-02-11 01:00:00,10754.0
-2015-02-11 02:00:00,10303.0
-2015-02-11 03:00:00,10061.0
-2015-02-11 04:00:00,9933.0
-2015-02-11 05:00:00,9945.0
-2015-02-11 06:00:00,10186.0
-2015-02-11 07:00:00,10941.0
-2015-02-11 08:00:00,12052.0
-2015-02-11 09:00:00,12516.0
-2015-02-11 10:00:00,12626.0
-2015-02-11 11:00:00,12695.0
-2015-02-11 12:00:00,12702.0
-2015-02-11 13:00:00,12647.0
-2015-02-11 14:00:00,12633.0
-2015-02-11 15:00:00,12689.0
-2015-02-11 16:00:00,12648.0
-2015-02-11 17:00:00,12622.0
-2015-02-11 18:00:00,12798.0
-2015-02-11 19:00:00,13388.0
-2015-02-11 20:00:00,13569.0
-2015-02-11 21:00:00,13438.0
-2015-02-11 22:00:00,13219.0
-2015-02-11 23:00:00,12782.0
-2015-02-12 00:00:00,12092.0
-2015-02-10 01:00:00,11057.0
-2015-02-10 02:00:00,10625.0
-2015-02-10 03:00:00,10383.0
-2015-02-10 04:00:00,10266.0
-2015-02-10 05:00:00,10278.0
-2015-02-10 06:00:00,10567.0
-2015-02-10 07:00:00,11302.0
-2015-02-10 08:00:00,12377.0
-2015-02-10 09:00:00,12700.0
-2015-02-10 10:00:00,12763.0
-2015-02-10 11:00:00,12741.0
-2015-02-10 12:00:00,12592.0
-2015-02-10 13:00:00,12388.0
-2015-02-10 14:00:00,12266.0
-2015-02-10 15:00:00,12162.0
-2015-02-10 16:00:00,12046.0
-2015-02-10 17:00:00,11969.0
-2015-02-10 18:00:00,12246.0
-2015-02-10 19:00:00,12994.0
-2015-02-10 20:00:00,13203.0
-2015-02-10 21:00:00,13073.0
-2015-02-10 22:00:00,12859.0
-2015-02-10 23:00:00,12328.0
-2015-02-11 00:00:00,11481.0
-2015-02-09 01:00:00,10136.0
-2015-02-09 02:00:00,9857.0
-2015-02-09 03:00:00,9711.0
-2015-02-09 04:00:00,9653.0
-2015-02-09 05:00:00,9720.0
-2015-02-09 06:00:00,10065.0
-2015-02-09 07:00:00,10860.0
-2015-02-09 08:00:00,12083.0
-2015-02-09 09:00:00,12696.0
-2015-02-09 10:00:00,12883.0
-2015-02-09 11:00:00,13009.0
-2015-02-09 12:00:00,13088.0
-2015-02-09 13:00:00,13076.0
-2015-02-09 14:00:00,12969.0
-2015-02-09 15:00:00,12934.0
-2015-02-09 16:00:00,12824.0
-2015-02-09 17:00:00,12746.0
-2015-02-09 18:00:00,12898.0
-2015-02-09 19:00:00,13457.0
-2015-02-09 20:00:00,13591.0
-2015-02-09 21:00:00,13389.0
-2015-02-09 22:00:00,13115.0
-2015-02-09 23:00:00,12568.0
-2015-02-10 00:00:00,11790.0
-2015-02-08 01:00:00,9928.0
-2015-02-08 02:00:00,9511.0
-2015-02-08 03:00:00,9261.0
-2015-02-08 04:00:00,9073.0
-2015-02-08 05:00:00,8988.0
-2015-02-08 06:00:00,8971.0
-2015-02-08 07:00:00,9108.0
-2015-02-08 08:00:00,9367.0
-2015-02-08 09:00:00,9373.0
-2015-02-08 10:00:00,9643.0
-2015-02-08 11:00:00,9904.0
-2015-02-08 12:00:00,10048.0
-2015-02-08 13:00:00,10134.0
-2015-02-08 14:00:00,10189.0
-2015-02-08 15:00:00,10224.0
-2015-02-08 16:00:00,10297.0
-2015-02-08 17:00:00,10513.0
-2015-02-08 18:00:00,10953.0
-2015-02-08 19:00:00,11663.0
-2015-02-08 20:00:00,11846.0
-2015-02-08 21:00:00,11741.0
-2015-02-08 22:00:00,11527.0
-2015-02-08 23:00:00,11193.0
-2015-02-09 00:00:00,10668.0
-2015-02-07 01:00:00,11102.0
-2015-02-07 02:00:00,10615.0
-2015-02-07 03:00:00,10334.0
-2015-02-07 04:00:00,10103.0
-2015-02-07 05:00:00,10047.0
-2015-02-07 06:00:00,10043.0
-2015-02-07 07:00:00,10402.0
-2015-02-07 08:00:00,10838.0
-2015-02-07 09:00:00,11002.0
-2015-02-07 10:00:00,11122.0
-2015-02-07 11:00:00,11131.0
-2015-02-07 12:00:00,11025.0
-2015-02-07 13:00:00,10872.0
-2015-02-07 14:00:00,10613.0
-2015-02-07 15:00:00,10396.0
-2015-02-07 16:00:00,10266.0
-2015-02-07 17:00:00,10210.0
-2015-02-07 18:00:00,10384.0
-2015-02-07 19:00:00,11249.0
-2015-02-07 20:00:00,11531.0
-2015-02-07 21:00:00,11409.0
-2015-02-07 22:00:00,11165.0
-2015-02-07 23:00:00,10900.0
-2015-02-08 00:00:00,10408.0
-2015-02-06 01:00:00,12104.0
-2015-02-06 02:00:00,11673.0
-2015-02-06 03:00:00,11390.0
-2015-02-06 04:00:00,11206.0
-2015-02-06 05:00:00,11129.0
-2015-02-06 06:00:00,11304.0
-2015-02-06 07:00:00,11926.0
-2015-02-06 08:00:00,12979.0
-2015-02-06 09:00:00,13333.0
-2015-02-06 10:00:00,13334.0
-2015-02-06 11:00:00,13397.0
-2015-02-06 12:00:00,13275.0
-2015-02-06 13:00:00,13082.0
-2015-02-06 14:00:00,12811.0
-2015-02-06 15:00:00,12662.0
-2015-02-06 16:00:00,12471.0
-2015-02-06 17:00:00,12242.0
-2015-02-06 18:00:00,12376.0
-2015-02-06 19:00:00,13105.0
-2015-02-06 20:00:00,13342.0
-2015-02-06 21:00:00,13101.0
-2015-02-06 22:00:00,12819.0
-2015-02-06 23:00:00,12470.0
-2015-02-07 00:00:00,11746.0
-2015-02-05 01:00:00,11856.0
-2015-02-05 02:00:00,11473.0
-2015-02-05 03:00:00,11238.0
-2015-02-05 04:00:00,11144.0
-2015-02-05 05:00:00,11213.0
-2015-02-05 06:00:00,11517.0
-2015-02-05 07:00:00,12239.0
-2015-02-05 08:00:00,13350.0
-2015-02-05 09:00:00,13693.0
-2015-02-05 10:00:00,13698.0
-2015-02-05 11:00:00,13624.0
-2015-02-05 12:00:00,13569.0
-2015-02-05 13:00:00,13417.0
-2015-02-05 14:00:00,13292.0
-2015-02-05 15:00:00,13214.0
-2015-02-05 16:00:00,13066.0
-2015-02-05 17:00:00,13085.0
-2015-02-05 18:00:00,13339.0
-2015-02-05 19:00:00,14189.0
-2015-02-05 20:00:00,14484.0
-2015-02-05 21:00:00,14365.0
-2015-02-05 22:00:00,14109.0
-2015-02-05 23:00:00,13581.0
-2015-02-06 00:00:00,12797.0
-2015-02-04 01:00:00,11025.0
-2015-02-04 02:00:00,10548.0
-2015-02-04 03:00:00,10278.0
-2015-02-04 04:00:00,10149.0
-2015-02-04 05:00:00,10186.0
-2015-02-04 06:00:00,10466.0
-2015-02-04 07:00:00,11182.0
-2015-02-04 08:00:00,12398.0
-2015-02-04 09:00:00,12881.0
-2015-02-04 10:00:00,13065.0
-2015-02-04 11:00:00,13198.0
-2015-02-04 12:00:00,13277.0
-2015-02-04 13:00:00,13242.0
-2015-02-04 14:00:00,13169.0
-2015-02-04 15:00:00,13264.0
-2015-02-04 16:00:00,13159.0
-2015-02-04 17:00:00,13072.0
-2015-02-04 18:00:00,13196.0
-2015-02-04 19:00:00,13927.0
-2015-02-04 20:00:00,14172.0
-2015-02-04 21:00:00,14043.0
-2015-02-04 22:00:00,13810.0
-2015-02-04 23:00:00,13310.0
-2015-02-05 00:00:00,12554.0
-2015-02-03 01:00:00,11620.0
-2015-02-03 02:00:00,11265.0
-2015-02-03 03:00:00,11058.0
-2015-02-03 04:00:00,10902.0
-2015-02-03 05:00:00,10935.0
-2015-02-03 06:00:00,11142.0
-2015-02-03 07:00:00,11806.0
-2015-02-03 08:00:00,12836.0
-2015-02-03 09:00:00,13201.0
-2015-02-03 10:00:00,13243.0
-2015-02-03 11:00:00,13160.0
-2015-02-03 12:00:00,13042.0
-2015-02-03 13:00:00,12900.0
-2015-02-03 14:00:00,12766.0
-2015-02-03 15:00:00,12780.0
-2015-02-03 16:00:00,12817.0
-2015-02-03 17:00:00,12925.0
-2015-02-03 18:00:00,13130.0
-2015-02-03 19:00:00,13727.0
-2015-02-03 20:00:00,13673.0
-2015-02-03 21:00:00,13495.0
-2015-02-03 22:00:00,13175.0
-2015-02-03 23:00:00,12581.0
-2015-02-04 00:00:00,11762.0
-2015-02-02 01:00:00,10811.0
-2015-02-02 02:00:00,10423.0
-2015-02-02 03:00:00,10254.0
-2015-02-02 04:00:00,10182.0
-2015-02-02 05:00:00,10252.0
-2015-02-02 06:00:00,10549.0
-2015-02-02 07:00:00,11125.0
-2015-02-02 08:00:00,12010.0
-2015-02-02 09:00:00,12388.0
-2015-02-02 10:00:00,12509.0
-2015-02-02 11:00:00,12613.0
-2015-02-02 12:00:00,12661.0
-2015-02-02 13:00:00,12623.0
-2015-02-02 14:00:00,12517.0
-2015-02-02 15:00:00,12463.0
-2015-02-02 16:00:00,12411.0
-2015-02-02 17:00:00,12417.0
-2015-02-02 18:00:00,12724.0
-2015-02-02 19:00:00,13732.0
-2015-02-02 20:00:00,13940.0
-2015-02-02 21:00:00,13780.0
-2015-02-02 22:00:00,13532.0
-2015-02-02 23:00:00,13038.0
-2015-02-03 00:00:00,12282.0
-2015-02-01 01:00:00,10403.0
-2015-02-01 02:00:00,9994.0
-2015-02-01 03:00:00,9765.0
-2015-02-01 04:00:00,9544.0
-2015-02-01 05:00:00,9488.0
-2015-02-01 06:00:00,9540.0
-2015-02-01 07:00:00,9717.0
-2015-02-01 08:00:00,9969.0
-2015-02-01 09:00:00,10094.0
-2015-02-01 10:00:00,10379.0
-2015-02-01 11:00:00,10677.0
-2015-02-01 12:00:00,10872.0
-2015-02-01 13:00:00,11029.0
-2015-02-01 14:00:00,11178.0
-2015-02-01 15:00:00,11258.0
-2015-02-01 16:00:00,11330.0
-2015-02-01 17:00:00,11429.0
-2015-02-01 18:00:00,11750.0
-2015-02-01 19:00:00,12453.0
-2015-02-01 20:00:00,12437.0
-2015-02-01 21:00:00,12288.0
-2015-02-01 22:00:00,12084.0
-2015-02-01 23:00:00,11860.0
-2015-02-02 00:00:00,11347.0
-2015-01-31 01:00:00,11125.0
-2015-01-31 02:00:00,10642.0
-2015-01-31 03:00:00,10316.0
-2015-01-31 04:00:00,10093.0
-2015-01-31 05:00:00,10018.0
-2015-01-31 06:00:00,10088.0
-2015-01-31 07:00:00,10386.0
-2015-01-31 08:00:00,10851.0
-2015-01-31 09:00:00,10981.0
-2015-01-31 10:00:00,11235.0
-2015-01-31 11:00:00,11225.0
-2015-01-31 12:00:00,11210.0
-2015-01-31 13:00:00,11131.0
-2015-01-31 14:00:00,10988.0
-2015-01-31 15:00:00,10799.0
-2015-01-31 16:00:00,10772.0
-2015-01-31 17:00:00,10758.0
-2015-01-31 18:00:00,11072.0
-2015-01-31 19:00:00,11706.0
-2015-01-31 20:00:00,11782.0
-2015-01-31 21:00:00,11656.0
-2015-01-31 22:00:00,11564.0
-2015-01-31 23:00:00,11321.0
-2015-02-01 00:00:00,10901.0
-2015-01-30 01:00:00,10775.0
-2015-01-30 02:00:00,10354.0
-2015-01-30 03:00:00,10130.0
-2015-01-30 04:00:00,10052.0
-2015-01-30 05:00:00,10072.0
-2015-01-30 06:00:00,10382.0
-2015-01-30 07:00:00,11142.0
-2015-01-30 08:00:00,12276.0
-2015-01-30 09:00:00,12687.0
-2015-01-30 10:00:00,12639.0
-2015-01-30 11:00:00,12573.0
-2015-01-30 12:00:00,12537.0
-2015-01-30 13:00:00,12415.0
-2015-01-30 14:00:00,12252.0
-2015-01-30 15:00:00,12185.0
-2015-01-30 16:00:00,12034.0
-2015-01-30 17:00:00,11913.0
-2015-01-30 18:00:00,12168.0
-2015-01-30 19:00:00,12943.0
-2015-01-30 20:00:00,13098.0
-2015-01-30 21:00:00,12928.0
-2015-01-30 22:00:00,12655.0
-2015-01-30 23:00:00,12349.0
-2015-01-31 00:00:00,11748.0
-2015-01-29 01:00:00,10833.0
-2015-01-29 02:00:00,10325.0
-2015-01-29 03:00:00,10000.0
-2015-01-29 04:00:00,9836.0
-2015-01-29 05:00:00,9786.0
-2015-01-29 06:00:00,10054.0
-2015-01-29 07:00:00,10751.0
-2015-01-29 08:00:00,11901.0
-2015-01-29 09:00:00,12506.0
-2015-01-29 10:00:00,12687.0
-2015-01-29 11:00:00,12758.0
-2015-01-29 12:00:00,12791.0
-2015-01-29 13:00:00,12828.0
-2015-01-29 14:00:00,12852.0
-2015-01-29 15:00:00,12850.0
-2015-01-29 16:00:00,12777.0
-2015-01-29 17:00:00,12772.0
-2015-01-29 18:00:00,13044.0
-2015-01-29 19:00:00,13448.0
-2015-01-29 20:00:00,13295.0
-2015-01-29 21:00:00,13059.0
-2015-01-29 22:00:00,12728.0
-2015-01-29 23:00:00,12163.0
-2015-01-30 00:00:00,11465.0
-2015-01-28 01:00:00,10964.0
-2015-01-28 02:00:00,10492.0
-2015-01-28 03:00:00,10246.0
-2015-01-28 04:00:00,10148.0
-2015-01-28 05:00:00,10140.0
-2015-01-28 06:00:00,10456.0
-2015-01-28 07:00:00,11212.0
-2015-01-28 08:00:00,12386.0
-2015-01-28 09:00:00,12806.0
-2015-01-28 10:00:00,12799.0
-2015-01-28 11:00:00,12724.0
-2015-01-28 12:00:00,12681.0
-2015-01-28 13:00:00,12555.0
-2015-01-28 14:00:00,12421.0
-2015-01-28 15:00:00,12401.0
-2015-01-28 16:00:00,12368.0
-2015-01-28 17:00:00,12376.0
-2015-01-28 18:00:00,12673.0
-2015-01-28 19:00:00,13454.0
-2015-01-28 20:00:00,13436.0
-2015-01-28 21:00:00,13222.0
-2015-01-28 22:00:00,12902.0
-2015-01-28 23:00:00,12347.0
-2015-01-29 00:00:00,11564.0
-2015-01-27 01:00:00,10952.0
-2015-01-27 02:00:00,10516.0
-2015-01-27 03:00:00,10184.0
-2015-01-27 04:00:00,10022.0
-2015-01-27 05:00:00,9968.0
-2015-01-27 06:00:00,10243.0
-2015-01-27 07:00:00,11041.0
-2015-01-27 08:00:00,12224.0
-2015-01-27 09:00:00,12755.0
-2015-01-27 10:00:00,12784.0
-2015-01-27 11:00:00,12908.0
-2015-01-27 12:00:00,12904.0
-2015-01-27 13:00:00,12725.0
-2015-01-27 14:00:00,12485.0
-2015-01-27 15:00:00,12385.0
-2015-01-27 16:00:00,12269.0
-2015-01-27 17:00:00,12216.0
-2015-01-27 18:00:00,12490.0
-2015-01-27 19:00:00,13333.0
-2015-01-27 20:00:00,13376.0
-2015-01-27 21:00:00,13197.0
-2015-01-27 22:00:00,12954.0
-2015-01-27 23:00:00,12439.0
-2015-01-28 00:00:00,11644.0
-2015-01-26 01:00:00,10570.0
-2015-01-26 02:00:00,10292.0
-2015-01-26 03:00:00,10131.0
-2015-01-26 04:00:00,10065.0
-2015-01-26 05:00:00,10145.0
-2015-01-26 06:00:00,10492.0
-2015-01-26 07:00:00,11320.0
-2015-01-26 08:00:00,12564.0
-2015-01-26 09:00:00,13046.0
-2015-01-26 10:00:00,12994.0
-2015-01-26 11:00:00,12949.0
-2015-01-26 12:00:00,12996.0
-2015-01-26 13:00:00,12930.0
-2015-01-26 14:00:00,12858.0
-2015-01-26 15:00:00,12837.0
-2015-01-26 16:00:00,12793.0
-2015-01-26 17:00:00,12816.0
-2015-01-26 18:00:00,13202.0
-2015-01-26 19:00:00,13781.0
-2015-01-26 20:00:00,13644.0
-2015-01-26 21:00:00,13406.0
-2015-01-26 22:00:00,13065.0
-2015-01-26 23:00:00,12467.0
-2015-01-27 00:00:00,11680.0
-2015-01-25 01:00:00,9917.0
-2015-01-25 02:00:00,9558.0
-2015-01-25 03:00:00,9284.0
-2015-01-25 04:00:00,9170.0
-2015-01-25 05:00:00,9127.0
-2015-01-25 06:00:00,9194.0
-2015-01-25 07:00:00,9321.0
-2015-01-25 08:00:00,9704.0
-2015-01-25 09:00:00,9954.0
-2015-01-25 10:00:00,10297.0
-2015-01-25 11:00:00,10570.0
-2015-01-25 12:00:00,10793.0
-2015-01-25 13:00:00,10866.0
-2015-01-25 14:00:00,10973.0
-2015-01-25 15:00:00,10993.0
-2015-01-25 16:00:00,11028.0
-2015-01-25 17:00:00,11126.0
-2015-01-25 18:00:00,11498.0
-2015-01-25 19:00:00,12275.0
-2015-01-25 20:00:00,12363.0
-2015-01-25 21:00:00,12209.0
-2015-01-25 22:00:00,12040.0
-2015-01-25 23:00:00,11649.0
-2015-01-26 00:00:00,11124.0
-2015-01-24 01:00:00,10798.0
-2015-01-24 02:00:00,10325.0
-2015-01-24 03:00:00,9983.0
-2015-01-24 04:00:00,9831.0
-2015-01-24 05:00:00,9734.0
-2015-01-24 06:00:00,9823.0
-2015-01-24 07:00:00,10029.0
-2015-01-24 08:00:00,10540.0
-2015-01-24 09:00:00,10711.0
-2015-01-24 10:00:00,10864.0
-2015-01-24 11:00:00,10968.0
-2015-01-24 12:00:00,10977.0
-2015-01-24 13:00:00,10822.0
-2015-01-24 14:00:00,10718.0
-2015-01-24 15:00:00,10496.0
-2015-01-24 16:00:00,10375.0
-2015-01-24 17:00:00,10415.0
-2015-01-24 18:00:00,10801.0
-2015-01-24 19:00:00,11483.0
-2015-01-24 20:00:00,11529.0
-2015-01-24 21:00:00,11382.0
-2015-01-24 22:00:00,11234.0
-2015-01-24 23:00:00,10900.0
-2015-01-25 00:00:00,10421.0
-2015-01-23 01:00:00,10792.0
-2015-01-23 02:00:00,10292.0
-2015-01-23 03:00:00,10045.0
-2015-01-23 04:00:00,9901.0
-2015-01-23 05:00:00,9875.0
-2015-01-23 06:00:00,10187.0
-2015-01-23 07:00:00,10868.0
-2015-01-23 08:00:00,11962.0
-2015-01-23 09:00:00,12616.0
-2015-01-23 10:00:00,12696.0
-2015-01-23 11:00:00,12750.0
-2015-01-23 12:00:00,12782.0
-2015-01-23 13:00:00,12691.0
-2015-01-23 14:00:00,12578.0
-2015-01-23 15:00:00,12513.0
-2015-01-23 16:00:00,12387.0
-2015-01-23 17:00:00,12290.0
-2015-01-23 18:00:00,12522.0
-2015-01-23 19:00:00,13181.0
-2015-01-23 20:00:00,13101.0
-2015-01-23 21:00:00,12894.0
-2015-01-23 22:00:00,12564.0
-2015-01-23 23:00:00,12201.0
-2015-01-24 00:00:00,11466.0
-2015-01-22 01:00:00,10668.0
-2015-01-22 02:00:00,10193.0
-2015-01-22 03:00:00,9944.0
-2015-01-22 04:00:00,9807.0
-2015-01-22 05:00:00,9840.0
-2015-01-22 06:00:00,10096.0
-2015-01-22 07:00:00,10803.0
-2015-01-22 08:00:00,11930.0
-2015-01-22 09:00:00,12537.0
-2015-01-22 10:00:00,12601.0
-2015-01-22 11:00:00,12631.0
-2015-01-22 12:00:00,12714.0
-2015-01-22 13:00:00,12707.0
-2015-01-22 14:00:00,12670.0
-2015-01-22 15:00:00,12679.0
-2015-01-22 16:00:00,12585.0
-2015-01-22 17:00:00,12595.0
-2015-01-22 18:00:00,12908.0
-2015-01-22 19:00:00,13404.0
-2015-01-22 20:00:00,13251.0
-2015-01-22 21:00:00,13038.0
-2015-01-22 22:00:00,12760.0
-2015-01-22 23:00:00,12218.0
-2015-01-23 00:00:00,11475.0
-2015-01-21 01:00:00,10546.0
-2015-01-21 02:00:00,10079.0
-2015-01-21 03:00:00,9814.0
-2015-01-21 04:00:00,9681.0
-2015-01-21 05:00:00,9672.0
-2015-01-21 06:00:00,9941.0
-2015-01-21 07:00:00,10670.0
-2015-01-21 08:00:00,11836.0
-2015-01-21 09:00:00,12495.0
-2015-01-21 10:00:00,12545.0
-2015-01-21 11:00:00,12627.0
-2015-01-21 12:00:00,12738.0
-2015-01-21 13:00:00,12700.0
-2015-01-21 14:00:00,12635.0
-2015-01-21 15:00:00,12666.0
-2015-01-21 16:00:00,12569.0
-2015-01-21 17:00:00,12576.0
-2015-01-21 18:00:00,12889.0
-2015-01-21 19:00:00,13385.0
-2015-01-21 20:00:00,13250.0
-2015-01-21 21:00:00,13032.0
-2015-01-21 22:00:00,12707.0
-2015-01-21 23:00:00,12167.0
-2015-01-22 00:00:00,11389.0
-2015-01-20 01:00:00,10345.0
-2015-01-20 02:00:00,9908.0
-2015-01-20 03:00:00,9653.0
-2015-01-20 04:00:00,9504.0
-2015-01-20 05:00:00,9523.0
-2015-01-20 06:00:00,9786.0
-2015-01-20 07:00:00,10559.0
-2015-01-20 08:00:00,11667.0
-2015-01-20 09:00:00,12236.0
-2015-01-20 10:00:00,12234.0
-2015-01-20 11:00:00,12262.0
-2015-01-20 12:00:00,12359.0
-2015-01-20 13:00:00,12362.0
-2015-01-20 14:00:00,12345.0
-2015-01-20 15:00:00,12356.0
-2015-01-20 16:00:00,12335.0
-2015-01-20 17:00:00,12435.0
-2015-01-20 18:00:00,12897.0
-2015-01-20 19:00:00,13258.0
-2015-01-20 20:00:00,13107.0
-2015-01-20 21:00:00,12901.0
-2015-01-20 22:00:00,12604.0
-2015-01-20 23:00:00,12065.0
-2015-01-21 00:00:00,11279.0
-2015-01-19 01:00:00,10009.0
-2015-01-19 02:00:00,9766.0
-2015-01-19 03:00:00,9555.0
-2015-01-19 04:00:00,9530.0
-2015-01-19 05:00:00,9560.0
-2015-01-19 06:00:00,9915.0
-2015-01-19 07:00:00,10548.0
-2015-01-19 08:00:00,11489.0
-2015-01-19 09:00:00,11903.0
-2015-01-19 10:00:00,11954.0
-2015-01-19 11:00:00,11889.0
-2015-01-19 12:00:00,11887.0
-2015-01-19 13:00:00,11823.0
-2015-01-19 14:00:00,11724.0
-2015-01-19 15:00:00,11733.0
-2015-01-19 16:00:00,11709.0
-2015-01-19 17:00:00,11828.0
-2015-01-19 18:00:00,12279.0
-2015-01-19 19:00:00,12889.0
-2015-01-19 20:00:00,12779.0
-2015-01-19 21:00:00,12555.0
-2015-01-19 22:00:00,12255.0
-2015-01-19 23:00:00,11744.0
-2015-01-20 00:00:00,11012.0
-2015-01-18 01:00:00,10110.0
-2015-01-18 02:00:00,9735.0
-2015-01-18 03:00:00,9421.0
-2015-01-18 04:00:00,9293.0
-2015-01-18 05:00:00,9195.0
-2015-01-18 06:00:00,9232.0
-2015-01-18 07:00:00,9378.0
-2015-01-18 08:00:00,9658.0
-2015-01-18 09:00:00,9806.0
-2015-01-18 10:00:00,10050.0
-2015-01-18 11:00:00,10189.0
-2015-01-18 12:00:00,10253.0
-2015-01-18 13:00:00,10240.0
-2015-01-18 14:00:00,10159.0
-2015-01-18 15:00:00,10009.0
-2015-01-18 16:00:00,9991.0
-2015-01-18 17:00:00,9980.0
-2015-01-18 18:00:00,10449.0
-2015-01-18 19:00:00,11313.0
-2015-01-18 20:00:00,11476.0
-2015-01-18 21:00:00,11384.0
-2015-01-18 22:00:00,11258.0
-2015-01-18 23:00:00,10923.0
-2015-01-19 00:00:00,10522.0
-2015-01-17 01:00:00,11096.0
-2015-01-17 02:00:00,10581.0
-2015-01-17 03:00:00,10301.0
-2015-01-17 04:00:00,10088.0
-2015-01-17 05:00:00,9995.0
-2015-01-17 06:00:00,9998.0
-2015-01-17 07:00:00,10281.0
-2015-01-17 08:00:00,10666.0
-2015-01-17 09:00:00,10899.0
-2015-01-17 10:00:00,11016.0
-2015-01-17 11:00:00,11060.0
-2015-01-17 12:00:00,11082.0
-2015-01-17 13:00:00,11015.0
-2015-01-17 14:00:00,10882.0
-2015-01-17 15:00:00,10664.0
-2015-01-17 16:00:00,10627.0
-2015-01-17 17:00:00,10731.0
-2015-01-17 18:00:00,11150.0
-2015-01-17 19:00:00,11804.0
-2015-01-17 20:00:00,11789.0
-2015-01-17 21:00:00,11606.0
-2015-01-17 22:00:00,11455.0
-2015-01-17 23:00:00,11102.0
-2015-01-18 00:00:00,10646.0
-2015-01-16 01:00:00,11197.0
-2015-01-16 02:00:00,10753.0
-2015-01-16 03:00:00,10518.0
-2015-01-16 04:00:00,10394.0
-2015-01-16 05:00:00,10404.0
-2015-01-16 06:00:00,10645.0
-2015-01-16 07:00:00,11324.0
-2015-01-16 08:00:00,12351.0
-2015-01-16 09:00:00,12839.0
-2015-01-16 10:00:00,12916.0
-2015-01-16 11:00:00,12890.0
-2015-01-16 12:00:00,12732.0
-2015-01-16 13:00:00,12540.0
-2015-01-16 14:00:00,12389.0
-2015-01-16 15:00:00,12341.0
-2015-01-16 16:00:00,12214.0
-2015-01-16 17:00:00,12147.0
-2015-01-16 18:00:00,12506.0
-2015-01-16 19:00:00,13314.0
-2015-01-16 20:00:00,13266.0
-2015-01-16 21:00:00,13099.0
-2015-01-16 22:00:00,12773.0
-2015-01-16 23:00:00,12442.0
-2015-01-17 00:00:00,11746.0
-2015-01-15 01:00:00,11938.0
-2015-01-15 02:00:00,11470.0
-2015-01-15 03:00:00,11191.0
-2015-01-15 04:00:00,11018.0
-2015-01-15 05:00:00,11043.0
-2015-01-15 06:00:00,11248.0
-2015-01-15 07:00:00,11908.0
-2015-01-15 08:00:00,13003.0
-2015-01-15 09:00:00,13472.0
-2015-01-15 10:00:00,13551.0
-2015-01-15 11:00:00,13527.0
-2015-01-15 12:00:00,13294.0
-2015-01-15 13:00:00,13027.0
-2015-01-15 14:00:00,12822.0
-2015-01-15 15:00:00,12732.0
-2015-01-15 16:00:00,12552.0
-2015-01-15 17:00:00,12461.0
-2015-01-15 18:00:00,12870.0
-2015-01-15 19:00:00,13742.0
-2015-01-15 20:00:00,13690.0
-2015-01-15 21:00:00,13521.0
-2015-01-15 22:00:00,13220.0
-2015-01-15 23:00:00,12674.0
-2015-01-16 00:00:00,11912.0
-2015-01-14 01:00:00,12123.0
-2015-01-14 02:00:00,11726.0
-2015-01-14 03:00:00,11513.0
-2015-01-14 04:00:00,11433.0
-2015-01-14 05:00:00,11459.0
-2015-01-14 06:00:00,11719.0
-2015-01-14 07:00:00,12417.0
-2015-01-14 08:00:00,13533.0
-2015-01-14 09:00:00,13994.0
-2015-01-14 10:00:00,14026.0
-2015-01-14 11:00:00,14054.0
-2015-01-14 12:00:00,13964.0
-2015-01-14 13:00:00,13737.0
-2015-01-14 14:00:00,13629.0
-2015-01-14 15:00:00,13544.0
-2015-01-14 16:00:00,13453.0
-2015-01-14 17:00:00,13360.0
-2015-01-14 18:00:00,13757.0
-2015-01-14 19:00:00,14551.0
-2015-01-14 20:00:00,14490.0
-2015-01-14 21:00:00,14341.0
-2015-01-14 22:00:00,14034.0
-2015-01-14 23:00:00,13496.0
-2015-01-15 00:00:00,12702.0
-2015-01-13 01:00:00,11905.0
-2015-01-13 02:00:00,11401.0
-2015-01-13 03:00:00,11136.0
-2015-01-13 04:00:00,10955.0
-2015-01-13 05:00:00,10973.0
-2015-01-13 06:00:00,11223.0
-2015-01-13 07:00:00,11934.0
-2015-01-13 08:00:00,13040.0
-2015-01-13 09:00:00,13584.0
-2015-01-13 10:00:00,13598.0
-2015-01-13 11:00:00,13627.0
-2015-01-13 12:00:00,13581.0
-2015-01-13 13:00:00,13432.0
-2015-01-13 14:00:00,13278.0
-2015-01-13 15:00:00,13203.0
-2015-01-13 16:00:00,13071.0
-2015-01-13 17:00:00,13041.0
-2015-01-13 18:00:00,13464.0
-2015-01-13 19:00:00,14360.0
-2015-01-13 20:00:00,14363.0
-2015-01-13 21:00:00,14213.0
-2015-01-13 22:00:00,14002.0
-2015-01-13 23:00:00,13512.0
-2015-01-14 00:00:00,12799.0
-2015-01-12 01:00:00,10837.0
-2015-01-12 02:00:00,10446.0
-2015-01-12 03:00:00,10254.0
-2015-01-12 04:00:00,10128.0
-2015-01-12 05:00:00,10201.0
-2015-01-12 06:00:00,10521.0
-2015-01-12 07:00:00,11310.0
-2015-01-12 08:00:00,12574.0
-2015-01-12 09:00:00,13137.0
-2015-01-12 10:00:00,13255.0
-2015-01-12 11:00:00,13249.0
-2015-01-12 12:00:00,13274.0
-2015-01-12 13:00:00,13206.0
-2015-01-12 14:00:00,13184.0
-2015-01-12 15:00:00,13200.0
-2015-01-12 16:00:00,13150.0
-2015-01-12 17:00:00,13199.0
-2015-01-12 18:00:00,13685.0
-2015-01-12 19:00:00,14456.0
-2015-01-12 20:00:00,14465.0
-2015-01-12 21:00:00,14280.0
-2015-01-12 22:00:00,13975.0
-2015-01-12 23:00:00,13444.0
-2015-01-13 00:00:00,12676.0
-2015-01-11 01:00:00,11634.0
-2015-01-11 02:00:00,11169.0
-2015-01-11 03:00:00,10882.0
-2015-01-11 04:00:00,10719.0
-2015-01-11 05:00:00,10574.0
-2015-01-11 06:00:00,10589.0
-2015-01-11 07:00:00,10695.0
-2015-01-11 08:00:00,10946.0
-2015-01-11 09:00:00,10981.0
-2015-01-11 10:00:00,11142.0
-2015-01-11 11:00:00,11241.0
-2015-01-11 12:00:00,11293.0
-2015-01-11 13:00:00,11220.0
-2015-01-11 14:00:00,11239.0
-2015-01-11 15:00:00,11166.0
-2015-01-11 16:00:00,11259.0
-2015-01-11 17:00:00,11483.0
-2015-01-11 18:00:00,12140.0
-2015-01-11 19:00:00,12788.0
-2015-01-11 20:00:00,12767.0
-2015-01-11 21:00:00,12610.0
-2015-01-11 22:00:00,12306.0
-2015-01-11 23:00:00,11920.0
-2015-01-12 00:00:00,11336.0
-2015-01-10 01:00:00,13132.0
-2015-01-10 02:00:00,12665.0
-2015-01-10 03:00:00,12315.0
-2015-01-10 04:00:00,12145.0
-2015-01-10 05:00:00,12110.0
-2015-01-10 06:00:00,12184.0
-2015-01-10 07:00:00,12442.0
-2015-01-10 08:00:00,12865.0
-2015-01-10 09:00:00,13056.0
-2015-01-10 10:00:00,13175.0
-2015-01-10 11:00:00,13250.0
-2015-01-10 12:00:00,13223.0
-2015-01-10 13:00:00,13110.0
-2015-01-10 14:00:00,12846.0
-2015-01-10 15:00:00,12615.0
-2015-01-10 16:00:00,12815.0
-2015-01-10 17:00:00,12993.0
-2015-01-10 18:00:00,13505.0
-2015-01-10 19:00:00,13924.0
-2015-01-10 20:00:00,13800.0
-2015-01-10 21:00:00,13568.0
-2015-01-10 22:00:00,13266.0
-2015-01-10 23:00:00,12890.0
-2015-01-11 00:00:00,12270.0
-2015-01-09 01:00:00,12880.0
-2015-01-09 02:00:00,12505.0
-2015-01-09 03:00:00,12247.0
-2015-01-09 04:00:00,12059.0
-2015-01-09 05:00:00,12025.0
-2015-01-09 06:00:00,12229.0
-2015-01-09 07:00:00,12814.0
-2015-01-09 08:00:00,13813.0
-2015-01-09 09:00:00,14298.0
-2015-01-09 10:00:00,14312.0
-2015-01-09 11:00:00,14382.0
-2015-01-09 12:00:00,14452.0
-2015-01-09 13:00:00,14474.0
-2015-01-09 14:00:00,14451.0
-2015-01-09 15:00:00,14455.0
-2015-01-09 16:00:00,14364.0
-2015-01-09 17:00:00,14358.0
-2015-01-09 18:00:00,14798.0
-2015-01-09 19:00:00,15509.0
-2015-01-09 20:00:00,15502.0
-2015-01-09 21:00:00,15316.0
-2015-01-09 22:00:00,14998.0
-2015-01-09 23:00:00,14593.0
-2015-01-10 00:00:00,13817.0
-2015-01-08 01:00:00,13356.0
-2015-01-08 02:00:00,12965.0
-2015-01-08 03:00:00,12730.0
-2015-01-08 04:00:00,12596.0
-2015-01-08 05:00:00,12590.0
-2015-01-08 06:00:00,12792.0
-2015-01-08 07:00:00,13293.0
-2015-01-08 08:00:00,14159.0
-2015-01-08 09:00:00,14662.0
-2015-01-08 10:00:00,14893.0
-2015-01-08 11:00:00,15113.0
-2015-01-08 12:00:00,15373.0
-2015-01-08 13:00:00,15398.0
-2015-01-08 14:00:00,15381.0
-2015-01-08 15:00:00,15412.0
-2015-01-08 16:00:00,15281.0
-2015-01-08 17:00:00,15145.0
-2015-01-08 18:00:00,15473.0
-2015-01-08 19:00:00,15951.0
-2015-01-08 20:00:00,15775.0
-2015-01-08 21:00:00,15494.0
-2015-01-08 22:00:00,15100.0
-2015-01-08 23:00:00,14470.0
-2015-01-09 00:00:00,13667.0
-2015-01-07 01:00:00,12832.0
-2015-01-07 02:00:00,12396.0
-2015-01-07 03:00:00,12113.0
-2015-01-07 04:00:00,12027.0
-2015-01-07 05:00:00,12006.0
-2015-01-07 06:00:00,12249.0
-2015-01-07 07:00:00,12866.0
-2015-01-07 08:00:00,13792.0
-2015-01-07 09:00:00,14244.0
-2015-01-07 10:00:00,14353.0
-2015-01-07 11:00:00,14518.0
-2015-01-07 12:00:00,14620.0
-2015-01-07 13:00:00,14643.0
-2015-01-07 14:00:00,14545.0
-2015-01-07 15:00:00,14540.0
-2015-01-07 16:00:00,14445.0
-2015-01-07 17:00:00,14450.0
-2015-01-07 18:00:00,14969.0
-2015-01-07 19:00:00,15816.0
-2015-01-07 20:00:00,15778.0
-2015-01-07 21:00:00,15578.0
-2015-01-07 22:00:00,15314.0
-2015-01-07 23:00:00,14824.0
-2015-01-08 00:00:00,14072.0
-2015-01-06 01:00:00,12414.0
-2015-01-06 02:00:00,11904.0
-2015-01-06 03:00:00,11598.0
-2015-01-06 04:00:00,11472.0
-2015-01-06 05:00:00,11492.0
-2015-01-06 06:00:00,11712.0
-2015-01-06 07:00:00,12421.0
-2015-01-06 08:00:00,13479.0
-2015-01-06 09:00:00,13897.0
-2015-01-06 10:00:00,13859.0
-2015-01-06 11:00:00,13838.0
-2015-01-06 12:00:00,13875.0
-2015-01-06 13:00:00,13748.0
-2015-01-06 14:00:00,13713.0
-2015-01-06 15:00:00,13785.0
-2015-01-06 16:00:00,13783.0
-2015-01-06 17:00:00,13920.0
-2015-01-06 18:00:00,14644.0
-2015-01-06 19:00:00,15347.0
-2015-01-06 20:00:00,15297.0
-2015-01-06 21:00:00,15099.0
-2015-01-06 22:00:00,14804.0
-2015-01-06 23:00:00,14301.0
-2015-01-07 00:00:00,13549.0
-2015-01-05 01:00:00,11601.0
-2015-01-05 02:00:00,11325.0
-2015-01-05 03:00:00,11209.0
-2015-01-05 04:00:00,11181.0
-2015-01-05 05:00:00,11217.0
-2015-01-05 06:00:00,11570.0
-2015-01-05 07:00:00,12312.0
-2015-01-05 08:00:00,13465.0
-2015-01-05 09:00:00,14010.0
-2015-01-05 10:00:00,14073.0
-2015-01-05 11:00:00,14079.0
-2015-01-05 12:00:00,14133.0
-2015-01-05 13:00:00,14176.0
-2015-01-05 14:00:00,14122.0
-2015-01-05 15:00:00,14234.0
-2015-01-05 16:00:00,14187.0
-2015-01-05 17:00:00,14248.0
-2015-01-05 18:00:00,14865.0
-2015-01-05 19:00:00,15447.0
-2015-01-05 20:00:00,15322.0
-2015-01-05 21:00:00,15122.0
-2015-01-05 22:00:00,14827.0
-2015-01-05 23:00:00,14198.0
-2015-01-06 00:00:00,13262.0
-2015-01-04 01:00:00,10217.0
-2015-01-04 02:00:00,9752.0
-2015-01-04 03:00:00,9384.0
-2015-01-04 04:00:00,9251.0
-2015-01-04 05:00:00,9197.0
-2015-01-04 06:00:00,9251.0
-2015-01-04 07:00:00,9404.0
-2015-01-04 08:00:00,9677.0
-2015-01-04 09:00:00,9805.0
-2015-01-04 10:00:00,10078.0
-2015-01-04 11:00:00,10324.0
-2015-01-04 12:00:00,10657.0
-2015-01-04 13:00:00,10858.0
-2015-01-04 14:00:00,11023.0
-2015-01-04 15:00:00,11060.0
-2015-01-04 16:00:00,11119.0
-2015-01-04 17:00:00,11253.0
-2015-01-04 18:00:00,12008.0
-2015-01-04 19:00:00,12975.0
-2015-01-04 20:00:00,13078.0
-2015-01-04 21:00:00,13106.0
-2015-01-04 22:00:00,12990.0
-2015-01-04 23:00:00,12627.0
-2015-01-05 00:00:00,12084.0
-2015-01-03 01:00:00,10520.0
-2015-01-03 02:00:00,9963.0
-2015-01-03 03:00:00,9622.0
-2015-01-03 04:00:00,9475.0
-2015-01-03 05:00:00,9423.0
-2015-01-03 06:00:00,9494.0
-2015-01-03 07:00:00,9733.0
-2015-01-03 08:00:00,10135.0
-2015-01-03 09:00:00,10432.0
-2015-01-03 10:00:00,10696.0
-2015-01-03 11:00:00,11014.0
-2015-01-03 12:00:00,11244.0
-2015-01-03 13:00:00,11249.0
-2015-01-03 14:00:00,11328.0
-2015-01-03 15:00:00,11200.0
-2015-01-03 16:00:00,11073.0
-2015-01-03 17:00:00,11033.0
-2015-01-03 18:00:00,11517.0
-2015-01-03 19:00:00,12009.0
-2015-01-03 20:00:00,12010.0
-2015-01-03 21:00:00,11840.0
-2015-01-03 22:00:00,11648.0
-2015-01-03 23:00:00,11302.0
-2015-01-04 00:00:00,10823.0
-2015-01-02 01:00:00,10304.0
-2015-01-02 02:00:00,9884.0
-2015-01-02 03:00:00,9620.0
-2015-01-02 04:00:00,9513.0
-2015-01-02 05:00:00,9533.0
-2015-01-02 06:00:00,9791.0
-2015-01-02 07:00:00,10346.0
-2015-01-02 08:00:00,11115.0
-2015-01-02 09:00:00,11543.0
-2015-01-02 10:00:00,11598.0
-2015-01-02 11:00:00,11661.0
-2015-01-02 12:00:00,11701.0
-2015-01-02 13:00:00,11628.0
-2015-01-02 14:00:00,11469.0
-2015-01-02 15:00:00,11445.0
-2015-01-02 16:00:00,11394.0
-2015-01-02 17:00:00,11478.0
-2015-01-02 18:00:00,12211.0
-2015-01-02 19:00:00,12804.0
-2015-01-02 20:00:00,12666.0
-2015-01-02 21:00:00,12436.0
-2015-01-02 22:00:00,12185.0
-2015-01-02 23:00:00,11823.0
-2015-01-03 00:00:00,11194.0
-2015-01-01 01:00:00,11341.0
-2015-01-01 02:00:00,10969.0
-2015-01-01 03:00:00,10651.0
-2015-01-01 04:00:00,10425.0
-2015-01-01 05:00:00,10299.0
-2015-01-01 06:00:00,10294.0
-2015-01-01 07:00:00,10443.0
-2015-01-01 08:00:00,10634.0
-2015-01-01 09:00:00,10532.0
-2015-01-01 10:00:00,10433.0
-2015-01-01 11:00:00,10543.0
-2015-01-01 12:00:00,10635.0
-2015-01-01 13:00:00,10623.0
-2015-01-01 14:00:00,10592.0
-2015-01-01 15:00:00,10511.0
-2015-01-01 16:00:00,10503.0
-2015-01-01 17:00:00,10585.0
-2015-01-01 18:00:00,11404.0
-2015-01-01 19:00:00,12140.0
-2015-01-01 20:00:00,12076.0
-2015-01-01 21:00:00,11919.0
-2015-01-01 22:00:00,11712.0
-2015-01-01 23:00:00,11397.0
-2015-01-02 00:00:00,10826.0
-2016-12-31 01:00:00,10419.0
-2016-12-31 02:00:00,9940.0
-2016-12-31 03:00:00,9604.0
-2016-12-31 04:00:00,9318.0
-2016-12-31 05:00:00,9224.0
-2016-12-31 06:00:00,9209.0
-2016-12-31 07:00:00,9343.0
-2016-12-31 08:00:00,9715.0
-2016-12-31 09:00:00,9809.0
-2016-12-31 10:00:00,9974.0
-2016-12-31 11:00:00,10087.0
-2016-12-31 12:00:00,10187.0
-2016-12-31 13:00:00,10299.0
-2016-12-31 14:00:00,10385.0
-2016-12-31 15:00:00,10261.0
-2016-12-31 16:00:00,10313.0
-2016-12-31 17:00:00,10416.0
-2016-12-31 18:00:00,11037.0
-2016-12-31 19:00:00,11587.0
-2016-12-31 20:00:00,11549.0
-2016-12-31 21:00:00,11273.0
-2016-12-31 22:00:00,11085.0
-2016-12-31 23:00:00,10801.0
-2017-01-01 00:00:00,10500.0
-2016-12-30 01:00:00,10596.0
-2016-12-30 02:00:00,10137.0
-2016-12-30 03:00:00,9838.0
-2016-12-30 04:00:00,9715.0
-2016-12-30 05:00:00,9657.0
-2016-12-30 06:00:00,9885.0
-2016-12-30 07:00:00,10392.0
-2016-12-30 08:00:00,11013.0
-2016-12-30 09:00:00,11286.0
-2016-12-30 10:00:00,11457.0
-2016-12-30 11:00:00,11507.0
-2016-12-30 12:00:00,11576.0
-2016-12-30 13:00:00,11506.0
-2016-12-30 14:00:00,11367.0
-2016-12-30 15:00:00,11331.0
-2016-12-30 16:00:00,11369.0
-2016-12-30 17:00:00,11363.0
-2016-12-30 18:00:00,11930.0
-2016-12-30 19:00:00,12533.0
-2016-12-30 20:00:00,12375.0
-2016-12-30 21:00:00,12229.0
-2016-12-30 22:00:00,11982.0
-2016-12-30 23:00:00,11613.0
-2016-12-31 00:00:00,11056.0
-2016-12-29 01:00:00,10387.0
-2016-12-29 02:00:00,9969.0
-2016-12-29 03:00:00,9694.0
-2016-12-29 04:00:00,9529.0
-2016-12-29 05:00:00,9567.0
-2016-12-29 06:00:00,9770.0
-2016-12-29 07:00:00,10340.0
-2016-12-29 08:00:00,11180.0
-2016-12-29 09:00:00,11573.0
-2016-12-29 10:00:00,11632.0
-2016-12-29 11:00:00,11755.0
-2016-12-29 12:00:00,11844.0
-2016-12-29 13:00:00,12104.0
-2016-12-29 14:00:00,12226.0
-2016-12-29 15:00:00,12241.0
-2016-12-29 16:00:00,12251.0
-2016-12-29 17:00:00,12198.0
-2016-12-29 18:00:00,12693.0
-2016-12-29 19:00:00,13087.0
-2016-12-29 20:00:00,12797.0
-2016-12-29 21:00:00,12599.0
-2016-12-29 22:00:00,12293.0
-2016-12-29 23:00:00,11900.0
-2016-12-30 00:00:00,11254.0
-2016-12-28 01:00:00,10693.0
-2016-12-28 02:00:00,10244.0
-2016-12-28 03:00:00,9967.0
-2016-12-28 04:00:00,9820.0
-2016-12-28 05:00:00,9836.0
-2016-12-28 06:00:00,10109.0
-2016-12-28 07:00:00,10653.0
-2016-12-28 08:00:00,11432.0
-2016-12-28 09:00:00,11805.0
-2016-12-28 10:00:00,11856.0
-2016-12-28 11:00:00,11878.0
-2016-12-28 12:00:00,11845.0
-2016-12-28 13:00:00,11758.0
-2016-12-28 14:00:00,11727.0
-2016-12-28 15:00:00,11703.0
-2016-12-28 16:00:00,11568.0
-2016-12-28 17:00:00,11644.0
-2016-12-28 18:00:00,12216.0
-2016-12-28 19:00:00,12699.0
-2016-12-28 20:00:00,12476.0
-2016-12-28 21:00:00,12292.0
-2016-12-28 22:00:00,11993.0
-2016-12-28 23:00:00,11596.0
-2016-12-29 00:00:00,10987.0
-2016-12-27 01:00:00,10095.0
-2016-12-27 02:00:00,9700.0
-2016-12-27 03:00:00,9524.0
-2016-12-27 04:00:00,9399.0
-2016-12-27 05:00:00,9432.0
-2016-12-27 06:00:00,9659.0
-2016-12-27 07:00:00,10313.0
-2016-12-27 08:00:00,11115.0
-2016-12-27 09:00:00,11560.0
-2016-12-27 10:00:00,11743.0
-2016-12-27 11:00:00,11900.0
-2016-12-27 12:00:00,12075.0
-2016-12-27 13:00:00,12146.0
-2016-12-27 14:00:00,12060.0
-2016-12-27 15:00:00,11995.0
-2016-12-27 16:00:00,11915.0
-2016-12-27 17:00:00,11929.0
-2016-12-27 18:00:00,12508.0
-2016-12-27 19:00:00,13086.0
-2016-12-27 20:00:00,12919.0
-2016-12-27 21:00:00,12724.0
-2016-12-27 22:00:00,12459.0
-2016-12-27 23:00:00,12038.0
-2016-12-28 00:00:00,11360.0
-2016-12-26 01:00:00,9677.0
-2016-12-26 02:00:00,9222.0
-2016-12-26 03:00:00,8820.0
-2016-12-26 04:00:00,8636.0
-2016-12-26 05:00:00,8498.0
-2016-12-26 06:00:00,8613.0
-2016-12-26 07:00:00,8848.0
-2016-12-26 08:00:00,9187.0
-2016-12-26 09:00:00,9326.0
-2016-12-26 10:00:00,9417.0
-2016-12-26 11:00:00,9519.0
-2016-12-26 12:00:00,9732.0
-2016-12-26 13:00:00,9709.0
-2016-12-26 14:00:00,9635.0
-2016-12-26 15:00:00,9576.0
-2016-12-26 16:00:00,9522.0
-2016-12-26 17:00:00,9611.0
-2016-12-26 18:00:00,10417.0
-2016-12-26 19:00:00,11279.0
-2016-12-26 20:00:00,11431.0
-2016-12-26 21:00:00,11436.0
-2016-12-26 22:00:00,11335.0
-2016-12-26 23:00:00,11144.0
-2016-12-27 00:00:00,10617.0
-2016-12-25 01:00:00,9755.0
-2016-12-25 02:00:00,9348.0
-2016-12-25 03:00:00,9079.0
-2016-12-25 04:00:00,8880.0
-2016-12-25 05:00:00,8782.0
-2016-12-25 06:00:00,8800.0
-2016-12-25 07:00:00,8912.0
-2016-12-25 08:00:00,9155.0
-2016-12-25 09:00:00,9384.0
-2016-12-25 10:00:00,9581.0
-2016-12-25 11:00:00,9870.0
-2016-12-25 12:00:00,9974.0
-2016-12-25 13:00:00,10052.0
-2016-12-25 14:00:00,10049.0
-2016-12-25 15:00:00,9992.0
-2016-12-25 16:00:00,9949.0
-2016-12-25 17:00:00,10086.0
-2016-12-25 18:00:00,10599.0
-2016-12-25 19:00:00,10890.0
-2016-12-25 20:00:00,10837.0
-2016-12-25 21:00:00,10769.0
-2016-12-25 22:00:00,10709.0
-2016-12-25 23:00:00,10518.0
-2016-12-26 00:00:00,10135.0
-2016-12-24 01:00:00,10318.0
-2016-12-24 02:00:00,9743.0
-2016-12-24 03:00:00,9377.0
-2016-12-24 04:00:00,9122.0
-2016-12-24 05:00:00,9025.0
-2016-12-24 06:00:00,9025.0
-2016-12-24 07:00:00,9205.0
-2016-12-24 08:00:00,9515.0
-2016-12-24 09:00:00,9756.0
-2016-12-24 10:00:00,9999.0
-2016-12-24 11:00:00,10214.0
-2016-12-24 12:00:00,10328.0
-2016-12-24 13:00:00,10340.0
-2016-12-24 14:00:00,10284.0
-2016-12-24 15:00:00,10190.0
-2016-12-24 16:00:00,10179.0
-2016-12-24 17:00:00,10280.0
-2016-12-24 18:00:00,10823.0
-2016-12-24 19:00:00,11107.0
-2016-12-24 20:00:00,10944.0
-2016-12-24 21:00:00,10766.0
-2016-12-24 22:00:00,10637.0
-2016-12-24 23:00:00,10489.0
-2016-12-25 00:00:00,10194.0
-2016-12-23 01:00:00,10985.0
-2016-12-23 02:00:00,10417.0
-2016-12-23 03:00:00,10070.0
-2016-12-23 04:00:00,9859.0
-2016-12-23 05:00:00,9792.0
-2016-12-23 06:00:00,9987.0
-2016-12-23 07:00:00,10461.0
-2016-12-23 08:00:00,11104.0
-2016-12-23 09:00:00,11515.0
-2016-12-23 10:00:00,11716.0
-2016-12-23 11:00:00,11812.0
-2016-12-23 12:00:00,11892.0
-2016-12-23 13:00:00,11772.0
-2016-12-23 14:00:00,11682.0
-2016-12-23 15:00:00,11638.0
-2016-12-23 16:00:00,11488.0
-2016-12-23 17:00:00,11615.0
-2016-12-23 18:00:00,12348.0
-2016-12-23 19:00:00,12712.0
-2016-12-23 20:00:00,12436.0
-2016-12-23 21:00:00,12188.0
-2016-12-23 22:00:00,12020.0
-2016-12-23 23:00:00,11683.0
-2016-12-24 00:00:00,11038.0
-2016-12-22 01:00:00,11280.0
-2016-12-22 02:00:00,10666.0
-2016-12-22 03:00:00,10329.0
-2016-12-22 04:00:00,10106.0
-2016-12-22 05:00:00,10026.0
-2016-12-22 06:00:00,10248.0
-2016-12-22 07:00:00,10849.0
-2016-12-22 08:00:00,11768.0
-2016-12-22 09:00:00,12189.0
-2016-12-22 10:00:00,12233.0
-2016-12-22 11:00:00,12168.0
-2016-12-22 12:00:00,12149.0
-2016-12-22 13:00:00,12142.0
-2016-12-22 14:00:00,11859.0
-2016-12-22 15:00:00,11823.0
-2016-12-22 16:00:00,11704.0
-2016-12-22 17:00:00,11803.0
-2016-12-22 18:00:00,12596.0
-2016-12-22 19:00:00,13255.0
-2016-12-22 20:00:00,13150.0
-2016-12-22 21:00:00,13033.0
-2016-12-22 22:00:00,12801.0
-2016-12-22 23:00:00,12416.0
-2016-12-23 00:00:00,11746.0
-2016-12-21 01:00:00,11725.0
-2016-12-21 02:00:00,11166.0
-2016-12-21 03:00:00,10877.0
-2016-12-21 04:00:00,10707.0
-2016-12-21 05:00:00,10694.0
-2016-12-21 06:00:00,10929.0
-2016-12-21 07:00:00,11574.0
-2016-12-21 08:00:00,12408.0
-2016-12-21 09:00:00,13001.0
-2016-12-21 10:00:00,13134.0
-2016-12-21 11:00:00,13110.0
-2016-12-21 12:00:00,13101.0
-2016-12-21 13:00:00,12972.0
-2016-12-21 14:00:00,12912.0
-2016-12-21 15:00:00,12895.0
-2016-12-21 16:00:00,12852.0
-2016-12-21 17:00:00,12908.0
-2016-12-21 18:00:00,13509.0
-2016-12-21 19:00:00,13905.0
-2016-12-21 20:00:00,13707.0
-2016-12-21 21:00:00,13494.0
-2016-12-21 22:00:00,13224.0
-2016-12-21 23:00:00,12772.0
-2016-12-22 00:00:00,11998.0
-2016-12-20 01:00:00,12723.0
-2016-12-20 02:00:00,12127.0
-2016-12-20 03:00:00,11823.0
-2016-12-20 04:00:00,11658.0
-2016-12-20 05:00:00,11656.0
-2016-12-20 06:00:00,11846.0
-2016-12-20 07:00:00,12348.0
-2016-12-20 08:00:00,13345.0
-2016-12-20 09:00:00,13806.0
-2016-12-20 10:00:00,13789.0
-2016-12-20 11:00:00,13662.0
-2016-12-20 12:00:00,13511.0
-2016-12-20 13:00:00,13327.0
-2016-12-20 14:00:00,13179.0
-2016-12-20 15:00:00,13193.0
-2016-12-20 16:00:00,13034.0
-2016-12-20 17:00:00,13047.0
-2016-12-20 18:00:00,13811.0
-2016-12-20 19:00:00,14411.0
-2016-12-20 20:00:00,14294.0
-2016-12-20 21:00:00,14099.0
-2016-12-20 22:00:00,13854.0
-2016-12-20 23:00:00,13373.0
-2016-12-21 00:00:00,12543.0
-2016-12-19 01:00:00,12603.0
-2016-12-19 02:00:00,12179.0
-2016-12-19 03:00:00,11956.0
-2016-12-19 04:00:00,11902.0
-2016-12-19 05:00:00,11964.0
-2016-12-19 06:00:00,12191.0
-2016-12-19 07:00:00,12890.0
-2016-12-19 08:00:00,13815.0
-2016-12-19 09:00:00,14345.0
-2016-12-19 10:00:00,14432.0
-2016-12-19 11:00:00,14363.0
-2016-12-19 12:00:00,14355.0
-2016-12-19 13:00:00,14224.0
-2016-12-19 14:00:00,14062.0
-2016-12-19 15:00:00,13968.0
-2016-12-19 16:00:00,13860.0
-2016-12-19 17:00:00,13927.0
-2016-12-19 18:00:00,14639.0
-2016-12-19 19:00:00,15316.0
-2016-12-19 20:00:00,15329.0
-2016-12-19 21:00:00,15139.0
-2016-12-19 22:00:00,14775.0
-2016-12-19 23:00:00,14276.0
-2016-12-20 00:00:00,13528.0
-2016-12-18 01:00:00,11646.0
-2016-12-18 02:00:00,11208.0
-2016-12-18 03:00:00,10912.0
-2016-12-18 04:00:00,10763.0
-2016-12-18 05:00:00,10691.0
-2016-12-18 06:00:00,10787.0
-2016-12-18 07:00:00,10987.0
-2016-12-18 08:00:00,11342.0
-2016-12-18 09:00:00,11447.0
-2016-12-18 10:00:00,11635.0
-2016-12-18 11:00:00,11784.0
-2016-12-18 12:00:00,11849.0
-2016-12-18 13:00:00,11902.0
-2016-12-18 14:00:00,11879.0
-2016-12-18 15:00:00,11871.0
-2016-12-18 16:00:00,11873.0
-2016-12-18 17:00:00,12138.0
-2016-12-18 18:00:00,13116.0
-2016-12-18 19:00:00,14079.0
-2016-12-18 20:00:00,14199.0
-2016-12-18 21:00:00,14230.0
-2016-12-18 22:00:00,14073.0
-2016-12-18 23:00:00,13736.0
-2016-12-19 00:00:00,13153.0
-2016-12-17 01:00:00,11983.0
-2016-12-17 02:00:00,11311.0
-2016-12-17 03:00:00,10956.0
-2016-12-17 04:00:00,10688.0
-2016-12-17 05:00:00,10589.0
-2016-12-17 06:00:00,10608.0
-2016-12-17 07:00:00,10862.0
-2016-12-17 08:00:00,11286.0
-2016-12-17 09:00:00,11554.0
-2016-12-17 10:00:00,11855.0
-2016-12-17 11:00:00,12152.0
-2016-12-17 12:00:00,12240.0
-2016-12-17 13:00:00,12223.0
-2016-12-17 14:00:00,12190.0
-2016-12-17 15:00:00,12032.0
-2016-12-17 16:00:00,12036.0
-2016-12-17 17:00:00,12167.0
-2016-12-17 18:00:00,12947.0
-2016-12-17 19:00:00,13393.0
-2016-12-17 20:00:00,13352.0
-2016-12-17 21:00:00,13144.0
-2016-12-17 22:00:00,12992.0
-2016-12-17 23:00:00,12723.0
-2016-12-18 00:00:00,12226.0
-2016-12-16 01:00:00,12615.0
-2016-12-16 02:00:00,12046.0
-2016-12-16 03:00:00,11631.0
-2016-12-16 04:00:00,11540.0
-2016-12-16 05:00:00,11515.0
-2016-12-16 06:00:00,11734.0
-2016-12-16 07:00:00,12343.0
-2016-12-16 08:00:00,13298.0
-2016-12-16 09:00:00,13808.0
-2016-12-16 10:00:00,13902.0
-2016-12-16 11:00:00,13973.0
-2016-12-16 12:00:00,14025.0
-2016-12-16 13:00:00,13938.0
-2016-12-16 14:00:00,13782.0
-2016-12-16 15:00:00,13743.0
-2016-12-16 16:00:00,13673.0
-2016-12-16 17:00:00,13704.0
-2016-12-16 18:00:00,14398.0
-2016-12-16 19:00:00,14672.0
-2016-12-16 20:00:00,14523.0
-2016-12-16 21:00:00,14261.0
-2016-12-16 22:00:00,13925.0
-2016-12-16 23:00:00,13484.0
-2016-12-17 00:00:00,12720.0
-2016-12-15 01:00:00,12828.0
-2016-12-15 02:00:00,12306.0
-2016-12-15 03:00:00,12039.0
-2016-12-15 04:00:00,11925.0
-2016-12-15 05:00:00,11908.0
-2016-12-15 06:00:00,12147.0
-2016-12-15 07:00:00,12834.0
-2016-12-15 08:00:00,13842.0
-2016-12-15 09:00:00,14276.0
-2016-12-15 10:00:00,14351.0
-2016-12-15 11:00:00,14303.0
-2016-12-15 12:00:00,14279.0
-2016-12-15 13:00:00,14130.0
-2016-12-15 14:00:00,14008.0
-2016-12-15 15:00:00,13939.0
-2016-12-15 16:00:00,13792.0
-2016-12-15 17:00:00,13802.0
-2016-12-15 18:00:00,14734.0
-2016-12-15 19:00:00,15385.0
-2016-12-15 20:00:00,15301.0
-2016-12-15 21:00:00,15119.0
-2016-12-15 22:00:00,14851.0
-2016-12-15 23:00:00,14299.0
-2016-12-16 00:00:00,13438.0
-2016-12-14 01:00:00,12287.0
-2016-12-14 02:00:00,11839.0
-2016-12-14 03:00:00,11590.0
-2016-12-14 04:00:00,11448.0
-2016-12-14 05:00:00,11446.0
-2016-12-14 06:00:00,11678.0
-2016-12-14 07:00:00,12286.0
-2016-12-14 08:00:00,13313.0
-2016-12-14 09:00:00,13693.0
-2016-12-14 10:00:00,13722.0
-2016-12-14 11:00:00,13809.0
-2016-12-14 12:00:00,13748.0
-2016-12-14 13:00:00,13581.0
-2016-12-14 14:00:00,13464.0
-2016-12-14 15:00:00,13409.0
-2016-12-14 16:00:00,13420.0
-2016-12-14 17:00:00,13560.0
-2016-12-14 18:00:00,14440.0
-2016-12-14 19:00:00,15122.0
-2016-12-14 20:00:00,15148.0
-2016-12-14 21:00:00,15069.0
-2016-12-14 22:00:00,14861.0
-2016-12-14 23:00:00,14391.0
-2016-12-15 00:00:00,13571.0
-2016-12-13 01:00:00,11355.0
-2016-12-13 02:00:00,11079.0
-2016-12-13 03:00:00,10737.0
-2016-12-13 04:00:00,10616.0
-2016-12-13 05:00:00,10559.0
-2016-12-13 06:00:00,10816.0
-2016-12-13 07:00:00,11470.0
-2016-12-13 08:00:00,12539.0
-2016-12-13 09:00:00,13094.0
-2016-12-13 10:00:00,13243.0
-2016-12-13 11:00:00,13282.0
-2016-12-13 12:00:00,13235.0
-2016-12-13 13:00:00,13042.0
-2016-12-13 14:00:00,12965.0
-2016-12-13 15:00:00,12960.0
-2016-12-13 16:00:00,12937.0
-2016-12-13 17:00:00,13037.0
-2016-12-13 18:00:00,13887.0
-2016-12-13 19:00:00,14650.0
-2016-12-13 20:00:00,14617.0
-2016-12-13 21:00:00,14525.0
-2016-12-13 22:00:00,14331.0
-2016-12-13 23:00:00,13831.0
-2016-12-14 00:00:00,13085.0
-2016-12-12 01:00:00,10354.0
-2016-12-12 02:00:00,10010.0
-2016-12-12 03:00:00,9800.0
-2016-12-12 04:00:00,9769.0
-2016-12-12 05:00:00,9843.0
-2016-12-12 06:00:00,10173.0
-2016-12-12 07:00:00,10995.0
-2016-12-12 08:00:00,12067.0
-2016-12-12 09:00:00,12660.0
-2016-12-12 10:00:00,12801.0
-2016-12-12 11:00:00,12931.0
-2016-12-12 12:00:00,12961.0
-2016-12-12 13:00:00,12863.0
-2016-12-12 14:00:00,12935.0
-2016-12-12 15:00:00,12733.0
-2016-12-12 16:00:00,12614.0
-2016-12-12 17:00:00,12719.0
-2016-12-12 18:00:00,13602.0
-2016-12-12 19:00:00,14312.0
-2016-12-12 20:00:00,14241.0
-2016-12-12 21:00:00,14087.0
-2016-12-12 22:00:00,13806.0
-2016-12-12 23:00:00,13290.0
-2016-12-13 00:00:00,12466.0
-2016-12-11 01:00:00,10998.0
-2016-12-11 02:00:00,10578.0
-2016-12-11 03:00:00,10209.0
-2016-12-11 04:00:00,10058.0
-2016-12-11 05:00:00,9894.0
-2016-12-11 06:00:00,9890.0
-2016-12-11 07:00:00,9999.0
-2016-12-11 08:00:00,10248.0
-2016-12-11 09:00:00,10396.0
-2016-12-11 10:00:00,10609.0
-2016-12-11 11:00:00,10899.0
-2016-12-11 12:00:00,11050.0
-2016-12-11 13:00:00,11081.0
-2016-12-11 14:00:00,11178.0
-2016-12-11 15:00:00,11132.0
-2016-12-11 16:00:00,11211.0
-2016-12-11 17:00:00,11347.0
-2016-12-11 18:00:00,12226.0
-2016-12-11 19:00:00,12634.0
-2016-12-11 20:00:00,12619.0
-2016-12-11 21:00:00,12494.0
-2016-12-11 22:00:00,12024.0
-2016-12-11 23:00:00,11657.0
-2016-12-12 00:00:00,11012.0
-2016-12-10 01:00:00,11424.0
-2016-12-10 02:00:00,10847.0
-2016-12-10 03:00:00,10537.0
-2016-12-10 04:00:00,10316.0
-2016-12-10 05:00:00,10265.0
-2016-12-10 06:00:00,10331.0
-2016-12-10 07:00:00,10657.0
-2016-12-10 08:00:00,11141.0
-2016-12-10 09:00:00,11427.0
-2016-12-10 10:00:00,11668.0
-2016-12-10 11:00:00,11734.0
-2016-12-10 12:00:00,11687.0
-2016-12-10 13:00:00,11673.0
-2016-12-10 14:00:00,11596.0
-2016-12-10 15:00:00,11508.0
-2016-12-10 16:00:00,11423.0
-2016-12-10 17:00:00,11663.0
-2016-12-10 18:00:00,12513.0
-2016-12-10 19:00:00,12966.0
-2016-12-10 20:00:00,12870.0
-2016-12-10 21:00:00,12787.0
-2016-12-10 22:00:00,12566.0
-2016-12-10 23:00:00,12217.0
-2016-12-11 00:00:00,11674.0
-2016-12-09 01:00:00,11457.0
-2016-12-09 02:00:00,10905.0
-2016-12-09 03:00:00,10593.0
-2016-12-09 04:00:00,10423.0
-2016-12-09 05:00:00,10417.0
-2016-12-09 06:00:00,10663.0
-2016-12-09 07:00:00,11311.0
-2016-12-09 08:00:00,12336.0
-2016-12-09 09:00:00,12807.0
-2016-12-09 10:00:00,12937.0
-2016-12-09 11:00:00,12976.0
-2016-12-09 12:00:00,12984.0
-2016-12-09 13:00:00,12909.0
-2016-12-09 14:00:00,12811.0
-2016-12-09 15:00:00,12735.0
-2016-12-09 16:00:00,12633.0
-2016-12-09 17:00:00,12670.0
-2016-12-09 18:00:00,13341.0
-2016-12-09 19:00:00,13854.0
-2016-12-09 20:00:00,13721.0
-2016-12-09 21:00:00,13502.0
-2016-12-09 22:00:00,13242.0
-2016-12-09 23:00:00,12869.0
-2016-12-10 00:00:00,12133.0
-2016-12-08 01:00:00,11286.0
-2016-12-08 02:00:00,10762.0
-2016-12-08 03:00:00,10468.0
-2016-12-08 04:00:00,10272.0
-2016-12-08 05:00:00,10326.0
-2016-12-08 06:00:00,10607.0
-2016-12-08 07:00:00,11332.0
-2016-12-08 08:00:00,12489.0
-2016-12-08 09:00:00,13097.0
-2016-12-08 10:00:00,13274.0
-2016-12-08 11:00:00,13362.0
-2016-12-08 12:00:00,13387.0
-2016-12-08 13:00:00,13321.0
-2016-12-08 14:00:00,13314.0
-2016-12-08 15:00:00,13328.0
-2016-12-08 16:00:00,13316.0
-2016-12-08 17:00:00,13362.0
-2016-12-08 18:00:00,14036.0
-2016-12-08 19:00:00,14310.0
-2016-12-08 20:00:00,14148.0
-2016-12-08 21:00:00,13890.0
-2016-12-08 22:00:00,13649.0
-2016-12-08 23:00:00,13104.0
-2016-12-09 00:00:00,12247.0
-2016-12-07 01:00:00,10868.0
-2016-12-07 02:00:00,10372.0
-2016-12-07 03:00:00,10085.0
-2016-12-07 04:00:00,9949.0
-2016-12-07 05:00:00,9945.0
-2016-12-07 06:00:00,10238.0
-2016-12-07 07:00:00,10953.0
-2016-12-07 08:00:00,12054.0
-2016-12-07 09:00:00,12559.0
-2016-12-07 10:00:00,12637.0
-2016-12-07 11:00:00,12511.0
-2016-12-07 12:00:00,12545.0
-2016-12-07 13:00:00,12383.0
-2016-12-07 14:00:00,12325.0
-2016-12-07 15:00:00,12426.0
-2016-12-07 16:00:00,12421.0
-2016-12-07 17:00:00,12609.0
-2016-12-07 18:00:00,13401.0
-2016-12-07 19:00:00,13927.0
-2016-12-07 20:00:00,13812.0
-2016-12-07 21:00:00,13676.0
-2016-12-07 22:00:00,13433.0
-2016-12-07 23:00:00,12891.0
-2016-12-08 00:00:00,12080.0
-2016-12-06 01:00:00,10453.0
-2016-12-06 02:00:00,9934.0
-2016-12-06 03:00:00,9604.0
-2016-12-06 04:00:00,9473.0
-2016-12-06 05:00:00,9470.0
-2016-12-06 06:00:00,9726.0
-2016-12-06 07:00:00,10461.0
-2016-12-06 08:00:00,11582.0
-2016-12-06 09:00:00,12026.0
-2016-12-06 10:00:00,12098.0
-2016-12-06 11:00:00,12116.0
-2016-12-06 12:00:00,12020.0
-2016-12-06 13:00:00,11891.0
-2016-12-06 14:00:00,11994.0
-2016-12-06 15:00:00,12174.0
-2016-12-06 16:00:00,12205.0
-2016-12-06 17:00:00,12179.0
-2016-12-06 18:00:00,12800.0
-2016-12-06 19:00:00,13444.0
-2016-12-06 20:00:00,13288.0
-2016-12-06 21:00:00,13145.0
-2016-12-06 22:00:00,12912.0
-2016-12-06 23:00:00,12402.0
-2016-12-07 00:00:00,11561.0
-2016-12-05 01:00:00,9928.0
-2016-12-05 02:00:00,9518.0
-2016-12-05 03:00:00,9301.0
-2016-12-05 04:00:00,9193.0
-2016-12-05 05:00:00,9200.0
-2016-12-05 06:00:00,9552.0
-2016-12-05 07:00:00,10307.0
-2016-12-05 08:00:00,11440.0
-2016-12-05 09:00:00,11989.0
-2016-12-05 10:00:00,12093.0
-2016-12-05 11:00:00,12225.0
-2016-12-05 12:00:00,12248.0
-2016-12-05 13:00:00,12327.0
-2016-12-05 14:00:00,12318.0
-2016-12-05 15:00:00,12300.0
-2016-12-05 16:00:00,12265.0
-2016-12-05 17:00:00,12256.0
-2016-12-05 18:00:00,12867.0
-2016-12-05 19:00:00,13311.0
-2016-12-05 20:00:00,13153.0
-2016-12-05 21:00:00,12960.0
-2016-12-05 22:00:00,12674.0
-2016-12-05 23:00:00,12123.0
-2016-12-06 00:00:00,11290.0
-2016-12-04 01:00:00,9894.0
-2016-12-04 02:00:00,9428.0
-2016-12-04 03:00:00,9098.0
-2016-12-04 04:00:00,8940.0
-2016-12-04 05:00:00,8841.0
-2016-12-04 06:00:00,8859.0
-2016-12-04 07:00:00,8991.0
-2016-12-04 08:00:00,9280.0
-2016-12-04 09:00:00,9440.0
-2016-12-04 10:00:00,9743.0
-2016-12-04 11:00:00,10029.0
-2016-12-04 12:00:00,10340.0
-2016-12-04 13:00:00,10555.0
-2016-12-04 14:00:00,10671.0
-2016-12-04 15:00:00,10676.0
-2016-12-04 16:00:00,10725.0
-2016-12-04 17:00:00,10863.0
-2016-12-04 18:00:00,11562.0
-2016-12-04 19:00:00,11987.0
-2016-12-04 20:00:00,11923.0
-2016-12-04 21:00:00,11723.0
-2016-12-04 22:00:00,11526.0
-2016-12-04 23:00:00,11039.0
-2016-12-05 00:00:00,10528.0
-2016-12-03 01:00:00,10121.0
-2016-12-03 02:00:00,9628.0
-2016-12-03 03:00:00,9311.0
-2016-12-03 04:00:00,9083.0
-2016-12-03 05:00:00,9044.0
-2016-12-03 06:00:00,9097.0
-2016-12-03 07:00:00,9418.0
-2016-12-03 08:00:00,9881.0
-2016-12-03 09:00:00,10194.0
-2016-12-03 10:00:00,10563.0
-2016-12-03 11:00:00,10707.0
-2016-12-03 12:00:00,10877.0
-2016-12-03 13:00:00,10777.0
-2016-12-03 14:00:00,10747.0
-2016-12-03 15:00:00,10594.0
-2016-12-03 16:00:00,10500.0
-2016-12-03 17:00:00,10526.0
-2016-12-03 18:00:00,11203.0
-2016-12-03 19:00:00,11643.0
-2016-12-03 20:00:00,11607.0
-2016-12-03 21:00:00,11438.0
-2016-12-03 22:00:00,11279.0
-2016-12-03 23:00:00,10970.0
-2016-12-04 00:00:00,10511.0
-2016-12-02 01:00:00,10060.0
-2016-12-02 02:00:00,9539.0
-2016-12-02 03:00:00,9276.0
-2016-12-02 04:00:00,9103.0
-2016-12-02 05:00:00,9071.0
-2016-12-02 06:00:00,9340.0
-2016-12-02 07:00:00,10015.0
-2016-12-02 08:00:00,11049.0
-2016-12-02 09:00:00,11560.0
-2016-12-02 10:00:00,11716.0
-2016-12-02 11:00:00,11816.0
-2016-12-02 12:00:00,11916.0
-2016-12-02 13:00:00,11877.0
-2016-12-02 14:00:00,11808.0
-2016-12-02 15:00:00,11827.0
-2016-12-02 16:00:00,11745.0
-2016-12-02 17:00:00,11750.0
-2016-12-02 18:00:00,12329.0
-2016-12-02 19:00:00,12642.0
-2016-12-02 20:00:00,12456.0
-2016-12-02 21:00:00,12207.0
-2016-12-02 22:00:00,11936.0
-2016-12-02 23:00:00,11566.0
-2016-12-03 00:00:00,10841.0
-2016-12-01 01:00:00,10147.0
-2016-12-01 02:00:00,9657.0
-2016-12-01 03:00:00,9365.0
-2016-12-01 04:00:00,9200.0
-2016-12-01 05:00:00,9198.0
-2016-12-01 06:00:00,9455.0
-2016-12-01 07:00:00,10128.0
-2016-12-01 08:00:00,11205.0
-2016-12-01 09:00:00,11740.0
-2016-12-01 10:00:00,11849.0
-2016-12-01 11:00:00,11915.0
-2016-12-01 12:00:00,11966.0
-2016-12-01 13:00:00,11937.0
-2016-12-01 14:00:00,11889.0
-2016-12-01 15:00:00,11906.0
-2016-12-01 16:00:00,11828.0
-2016-12-01 17:00:00,11910.0
-2016-12-01 18:00:00,12482.0
-2016-12-01 19:00:00,12748.0
-2016-12-01 20:00:00,12556.0
-2016-12-01 21:00:00,12354.0
-2016-12-01 22:00:00,12075.0
-2016-12-01 23:00:00,11560.0
-2016-12-02 00:00:00,10798.0
-2016-11-30 01:00:00,9598.0
-2016-11-30 02:00:00,9152.0
-2016-11-30 03:00:00,8870.0
-2016-11-30 04:00:00,8739.0
-2016-11-30 05:00:00,8744.0
-2016-11-30 06:00:00,9066.0
-2016-11-30 07:00:00,9869.0
-2016-11-30 08:00:00,10994.0
-2016-11-30 09:00:00,11413.0
-2016-11-30 10:00:00,11452.0
-2016-11-30 11:00:00,11412.0
-2016-11-30 12:00:00,11504.0
-2016-11-30 13:00:00,11663.0
-2016-11-30 14:00:00,11765.0
-2016-11-30 15:00:00,11908.0
-2016-11-30 16:00:00,11910.0
-2016-11-30 17:00:00,12011.0
-2016-11-30 18:00:00,12594.0
-2016-11-30 19:00:00,12882.0
-2016-11-30 20:00:00,12699.0
-2016-11-30 21:00:00,12499.0
-2016-11-30 22:00:00,12176.0
-2016-11-30 23:00:00,11662.0
-2016-12-01 00:00:00,10908.0
-2016-11-29 01:00:00,9705.0
-2016-11-29 02:00:00,9244.0
-2016-11-29 03:00:00,8947.0
-2016-11-29 04:00:00,8767.0
-2016-11-29 05:00:00,8747.0
-2016-11-29 06:00:00,8972.0
-2016-11-29 07:00:00,9743.0
-2016-11-29 08:00:00,10848.0
-2016-11-29 09:00:00,11298.0
-2016-11-29 10:00:00,11400.0
-2016-11-29 11:00:00,11344.0
-2016-11-29 12:00:00,11350.0
-2016-11-29 13:00:00,11267.0
-2016-11-29 14:00:00,11170.0
-2016-11-29 15:00:00,11169.0
-2016-11-29 16:00:00,11052.0
-2016-11-29 17:00:00,11045.0
-2016-11-29 18:00:00,11664.0
-2016-11-29 19:00:00,12165.0
-2016-11-29 20:00:00,12031.0
-2016-11-29 21:00:00,11856.0
-2016-11-29 22:00:00,11560.0
-2016-11-29 23:00:00,11067.0
-2016-11-30 00:00:00,10332.0
-2016-11-28 01:00:00,9336.0
-2016-11-28 02:00:00,8994.0
-2016-11-28 03:00:00,8794.0
-2016-11-28 04:00:00,8753.0
-2016-11-28 05:00:00,8725.0
-2016-11-28 06:00:00,9018.0
-2016-11-28 07:00:00,9815.0
-2016-11-28 08:00:00,10866.0
-2016-11-28 09:00:00,11461.0
-2016-11-28 10:00:00,11626.0
-2016-11-28 11:00:00,11769.0
-2016-11-28 12:00:00,11894.0
-2016-11-28 13:00:00,11948.0
-2016-11-28 14:00:00,12068.0
-2016-11-28 15:00:00,12035.0
-2016-11-28 16:00:00,11963.0
-2016-11-28 17:00:00,11989.0
-2016-11-28 18:00:00,12395.0
-2016-11-28 19:00:00,12527.0
-2016-11-28 20:00:00,12280.0
-2016-11-28 21:00:00,12049.0
-2016-11-28 22:00:00,11728.0
-2016-11-28 23:00:00,11227.0
-2016-11-29 00:00:00,10455.0
-2016-11-27 01:00:00,9202.0
-2016-11-27 02:00:00,8782.0
-2016-11-27 03:00:00,8553.0
-2016-11-27 04:00:00,8377.0
-2016-11-27 05:00:00,8350.0
-2016-11-27 06:00:00,8380.0
-2016-11-27 07:00:00,8596.0
-2016-11-27 08:00:00,8797.0
-2016-11-27 09:00:00,8845.0
-2016-11-27 10:00:00,9122.0
-2016-11-27 11:00:00,9363.0
-2016-11-27 12:00:00,9555.0
-2016-11-27 13:00:00,9646.0
-2016-11-27 14:00:00,9717.0
-2016-11-27 15:00:00,9777.0
-2016-11-27 16:00:00,9827.0
-2016-11-27 17:00:00,9944.0
-2016-11-27 18:00:00,10665.0
-2016-11-27 19:00:00,11084.0
-2016-11-27 20:00:00,11094.0
-2016-11-27 21:00:00,10994.0
-2016-11-27 22:00:00,10758.0
-2016-11-27 23:00:00,10334.0
-2016-11-28 00:00:00,9878.0
-2016-11-26 01:00:00,9283.0
-2016-11-26 02:00:00,8908.0
-2016-11-26 03:00:00,8646.0
-2016-11-26 04:00:00,8463.0
-2016-11-26 05:00:00,8417.0
-2016-11-26 06:00:00,8465.0
-2016-11-26 07:00:00,8731.0
-2016-11-26 08:00:00,9079.0
-2016-11-26 09:00:00,9268.0
-2016-11-26 10:00:00,9537.0
-2016-11-26 11:00:00,9644.0
-2016-11-26 12:00:00,9676.0
-2016-11-26 13:00:00,9646.0
-2016-11-26 14:00:00,9506.0
-2016-11-26 15:00:00,9407.0
-2016-11-26 16:00:00,9286.0
-2016-11-26 17:00:00,9430.0
-2016-11-26 18:00:00,10070.0
-2016-11-26 19:00:00,10602.0
-2016-11-26 20:00:00,10540.0
-2016-11-26 21:00:00,10438.0
-2016-11-26 22:00:00,10276.0
-2016-11-26 23:00:00,10090.0
-2016-11-27 00:00:00,9648.0
-2016-11-25 01:00:00,8720.0
-2016-11-25 02:00:00,8432.0
-2016-11-25 03:00:00,8234.0
-2016-11-25 04:00:00,8111.0
-2016-11-25 05:00:00,8084.0
-2016-11-25 06:00:00,8238.0
-2016-11-25 07:00:00,8636.0
-2016-11-25 08:00:00,9118.0
-2016-11-25 09:00:00,9307.0
-2016-11-25 10:00:00,9502.0
-2016-11-25 11:00:00,9685.0
-2016-11-25 12:00:00,9798.0
-2016-11-25 13:00:00,9872.0
-2016-11-25 14:00:00,9938.0
-2016-11-25 15:00:00,10012.0
-2016-11-25 16:00:00,10016.0
-2016-11-25 17:00:00,10208.0
-2016-11-25 18:00:00,10725.0
-2016-11-25 19:00:00,10930.0
-2016-11-25 20:00:00,10765.0
-2016-11-25 21:00:00,10600.0
-2016-11-25 22:00:00,10402.0
-2016-11-25 23:00:00,10176.0
-2016-11-26 00:00:00,9713.0
-2016-11-24 01:00:00,9277.0
-2016-11-24 02:00:00,8770.0
-2016-11-24 03:00:00,8468.0
-2016-11-24 04:00:00,8275.0
-2016-11-24 05:00:00,8192.0
-2016-11-24 06:00:00,8246.0
-2016-11-24 07:00:00,8472.0
-2016-11-24 08:00:00,8728.0
-2016-11-24 09:00:00,8765.0
-2016-11-24 10:00:00,9003.0
-2016-11-24 11:00:00,9283.0
-2016-11-24 12:00:00,9501.0
-2016-11-24 13:00:00,9623.0
-2016-11-24 14:00:00,9604.0
-2016-11-24 15:00:00,9563.0
-2016-11-24 16:00:00,9442.0
-2016-11-24 17:00:00,9461.0
-2016-11-24 18:00:00,9757.0
-2016-11-24 19:00:00,9757.0
-2016-11-24 20:00:00,9630.0
-2016-11-24 21:00:00,9574.0
-2016-11-24 22:00:00,9506.0
-2016-11-24 23:00:00,9369.0
-2016-11-25 00:00:00,9077.0
-2016-11-23 01:00:00,9921.0
-2016-11-23 02:00:00,9477.0
-2016-11-23 03:00:00,9210.0
-2016-11-23 04:00:00,9061.0
-2016-11-23 05:00:00,9007.0
-2016-11-23 06:00:00,9235.0
-2016-11-23 07:00:00,9871.0
-2016-11-23 08:00:00,10744.0
-2016-11-23 09:00:00,11309.0
-2016-11-23 10:00:00,11647.0
-2016-11-23 11:00:00,11841.0
-2016-11-23 12:00:00,11956.0
-2016-11-23 13:00:00,11962.0
-2016-11-23 14:00:00,11875.0
-2016-11-23 15:00:00,11802.0
-2016-11-23 16:00:00,11657.0
-2016-11-23 17:00:00,11549.0
-2016-11-23 18:00:00,11830.0
-2016-11-23 19:00:00,11950.0
-2016-11-23 20:00:00,11610.0
-2016-11-23 21:00:00,11340.0
-2016-11-23 22:00:00,11049.0
-2016-11-23 23:00:00,10600.0
-2016-11-24 00:00:00,9941.0
-2016-11-22 01:00:00,10076.0
-2016-11-22 02:00:00,9677.0
-2016-11-22 03:00:00,9439.0
-2016-11-22 04:00:00,9306.0
-2016-11-22 05:00:00,9296.0
-2016-11-22 06:00:00,9532.0
-2016-11-22 07:00:00,10234.0
-2016-11-22 08:00:00,11292.0
-2016-11-22 09:00:00,11742.0
-2016-11-22 10:00:00,11923.0
-2016-11-22 11:00:00,12062.0
-2016-11-22 12:00:00,12067.0
-2016-11-22 13:00:00,11994.0
-2016-11-22 14:00:00,11872.0
-2016-11-22 15:00:00,11837.0
-2016-11-22 16:00:00,11729.0
-2016-11-22 17:00:00,11775.0
-2016-11-22 18:00:00,12282.0
-2016-11-22 19:00:00,12509.0
-2016-11-22 20:00:00,12279.0
-2016-11-22 21:00:00,12070.0
-2016-11-22 22:00:00,11767.0
-2016-11-22 23:00:00,11289.0
-2016-11-23 00:00:00,10593.0
-2016-11-21 01:00:00,9600.0
-2016-11-21 02:00:00,9313.0
-2016-11-21 03:00:00,9184.0
-2016-11-21 04:00:00,9138.0
-2016-11-21 05:00:00,9216.0
-2016-11-21 06:00:00,9531.0
-2016-11-21 07:00:00,10315.0
-2016-11-21 08:00:00,11327.0
-2016-11-21 09:00:00,11749.0
-2016-11-21 10:00:00,11834.0
-2016-11-21 11:00:00,11694.0
-2016-11-21 12:00:00,11790.0
-2016-11-21 13:00:00,11690.0
-2016-11-21 14:00:00,11564.0
-2016-11-21 15:00:00,11511.0
-2016-11-21 16:00:00,11384.0
-2016-11-21 17:00:00,11391.0
-2016-11-21 18:00:00,12073.0
-2016-11-21 19:00:00,12580.0
-2016-11-21 20:00:00,12452.0
-2016-11-21 21:00:00,12240.0
-2016-11-21 22:00:00,11915.0
-2016-11-21 23:00:00,11449.0
-2016-11-22 00:00:00,10713.0
-2016-11-20 01:00:00,9571.0
-2016-11-20 02:00:00,9219.0
-2016-11-20 03:00:00,8973.0
-2016-11-20 04:00:00,8863.0
-2016-11-20 05:00:00,8734.0
-2016-11-20 06:00:00,8875.0
-2016-11-20 07:00:00,9041.0
-2016-11-20 08:00:00,9154.0
-2016-11-20 09:00:00,9255.0
-2016-11-20 10:00:00,9461.0
-2016-11-20 11:00:00,9770.0
-2016-11-20 12:00:00,9804.0
-2016-11-20 13:00:00,9710.0
-2016-11-20 14:00:00,9699.0
-2016-11-20 15:00:00,9630.0
-2016-11-20 16:00:00,9531.0
-2016-11-20 17:00:00,9654.0
-2016-11-20 18:00:00,10341.0
-2016-11-20 19:00:00,10886.0
-2016-11-20 20:00:00,11213.0
-2016-11-20 21:00:00,10992.0
-2016-11-20 22:00:00,10759.0
-2016-11-20 23:00:00,10600.0
-2016-11-21 00:00:00,10130.0
-2016-11-19 01:00:00,9249.0
-2016-11-19 02:00:00,8894.0
-2016-11-19 03:00:00,8664.0
-2016-11-19 04:00:00,8531.0
-2016-11-19 05:00:00,8519.0
-2016-11-19 06:00:00,8624.0
-2016-11-19 07:00:00,9009.0
-2016-11-19 08:00:00,9407.0
-2016-11-19 09:00:00,9644.0
-2016-11-19 10:00:00,10103.0
-2016-11-19 11:00:00,10434.0
-2016-11-19 12:00:00,10499.0
-2016-11-19 13:00:00,10555.0
-2016-11-19 14:00:00,10341.0
-2016-11-19 15:00:00,10247.0
-2016-11-19 16:00:00,10113.0
-2016-11-19 17:00:00,10171.0
-2016-11-19 18:00:00,10426.0
-2016-11-19 19:00:00,10816.0
-2016-11-19 20:00:00,11052.0
-2016-11-19 21:00:00,10872.0
-2016-11-19 22:00:00,10690.0
-2016-11-19 23:00:00,10479.0
-2016-11-20 00:00:00,10114.0
-2016-11-18 01:00:00,9036.0
-2016-11-18 02:00:00,8550.0
-2016-11-18 03:00:00,8242.0
-2016-11-18 04:00:00,8059.0
-2016-11-18 05:00:00,7980.0
-2016-11-18 06:00:00,8214.0
-2016-11-18 07:00:00,8835.0
-2016-11-18 08:00:00,9849.0
-2016-11-18 09:00:00,10379.0
-2016-11-18 10:00:00,10728.0
-2016-11-18 11:00:00,11407.0
-2016-11-18 12:00:00,11088.0
-2016-11-18 13:00:00,11190.0
-2016-11-18 14:00:00,11159.0
-2016-11-18 15:00:00,11517.0
-2016-11-18 16:00:00,11344.0
-2016-11-18 17:00:00,11347.0
-2016-11-18 18:00:00,11388.0
-2016-11-18 19:00:00,11586.0
-2016-11-18 20:00:00,11686.0
-2016-11-18 21:00:00,11281.0
-2016-11-18 22:00:00,10816.0
-2016-11-18 23:00:00,10631.0
-2016-11-19 00:00:00,10042.0
-2016-11-17 01:00:00,9126.0
-2016-11-17 02:00:00,8731.0
-2016-11-17 03:00:00,8467.0
-2016-11-17 04:00:00,8328.0
-2016-11-17 05:00:00,8277.0
-2016-11-17 06:00:00,8512.0
-2016-11-17 07:00:00,9163.0
-2016-11-17 08:00:00,10158.0
-2016-11-17 09:00:00,10591.0
-2016-11-17 10:00:00,10739.0
-2016-11-17 11:00:00,10871.0
-2016-11-17 12:00:00,11009.0
-2016-11-17 13:00:00,11108.0
-2016-11-17 14:00:00,11193.0
-2016-11-17 15:00:00,11212.0
-2016-11-17 16:00:00,11174.0
-2016-11-17 17:00:00,11044.0
-2016-11-17 18:00:00,11383.0
-2016-11-17 19:00:00,11827.0
-2016-11-17 20:00:00,11584.0
-2016-11-17 21:00:00,11311.0
-2016-11-17 22:00:00,10978.0
-2016-11-17 23:00:00,10477.0
-2016-11-18 00:00:00,9697.0
-2016-11-16 01:00:00,9111.0
-2016-11-16 02:00:00,8673.0
-2016-11-16 03:00:00,8420.0
-2016-11-16 04:00:00,8326.0
-2016-11-16 05:00:00,8324.0
-2016-11-16 06:00:00,8593.0
-2016-11-16 07:00:00,9306.0
-2016-11-16 08:00:00,10354.0
-2016-11-16 09:00:00,10726.0
-2016-11-16 10:00:00,10836.0
-2016-11-16 11:00:00,10877.0
-2016-11-16 12:00:00,10914.0
-2016-11-16 13:00:00,10952.0
-2016-11-16 14:00:00,10928.0
-2016-11-16 15:00:00,10960.0
-2016-11-16 16:00:00,10897.0
-2016-11-16 17:00:00,10824.0
-2016-11-16 18:00:00,11174.0
-2016-11-16 19:00:00,11647.0
-2016-11-16 20:00:00,11472.0
-2016-11-16 21:00:00,11290.0
-2016-11-16 22:00:00,10972.0
-2016-11-16 23:00:00,10507.0
-2016-11-17 00:00:00,9804.0
-2016-11-15 01:00:00,8963.0
-2016-11-15 02:00:00,8580.0
-2016-11-15 03:00:00,8361.0
-2016-11-15 04:00:00,8220.0
-2016-11-15 05:00:00,8238.0
-2016-11-15 06:00:00,8486.0
-2016-11-15 07:00:00,9212.0
-2016-11-15 08:00:00,10305.0
-2016-11-15 09:00:00,10754.0
-2016-11-15 10:00:00,10917.0
-2016-11-15 11:00:00,10956.0
-2016-11-15 12:00:00,11002.0
-2016-11-15 13:00:00,10983.0
-2016-11-15 14:00:00,10926.0
-2016-11-15 15:00:00,10872.0
-2016-11-15 16:00:00,10782.0
-2016-11-15 17:00:00,10723.0
-2016-11-15 18:00:00,11113.0
-2016-11-15 19:00:00,11636.0
-2016-11-15 20:00:00,11455.0
-2016-11-15 21:00:00,11262.0
-2016-11-15 22:00:00,10975.0
-2016-11-15 23:00:00,10454.0
-2016-11-16 00:00:00,9760.0
-2016-11-14 01:00:00,8616.0
-2016-11-14 02:00:00,8318.0
-2016-11-14 03:00:00,8186.0
-2016-11-14 04:00:00,8098.0
-2016-11-14 05:00:00,8118.0
-2016-11-14 06:00:00,8490.0
-2016-11-14 07:00:00,9330.0
-2016-11-14 08:00:00,10388.0
-2016-11-14 09:00:00,10864.0
-2016-11-14 10:00:00,10963.0
-2016-11-14 11:00:00,10910.0
-2016-11-14 12:00:00,10921.0
-2016-11-14 13:00:00,10889.0
-2016-11-14 14:00:00,10847.0
-2016-11-14 15:00:00,10886.0
-2016-11-14 16:00:00,10807.0
-2016-11-14 17:00:00,10708.0
-2016-11-14 18:00:00,11088.0
-2016-11-14 19:00:00,11570.0
-2016-11-14 20:00:00,11379.0
-2016-11-14 21:00:00,11132.0
-2016-11-14 22:00:00,10839.0
-2016-11-14 23:00:00,10277.0
-2016-11-15 00:00:00,9604.0
-2016-11-13 01:00:00,8832.0
-2016-11-13 02:00:00,8518.0
-2016-11-13 03:00:00,8297.0
-2016-11-13 04:00:00,8193.0
-2016-11-13 05:00:00,8057.0
-2016-11-13 06:00:00,8129.0
-2016-11-13 07:00:00,8274.0
-2016-11-13 08:00:00,8495.0
-2016-11-13 09:00:00,8539.0
-2016-11-13 10:00:00,8752.0
-2016-11-13 11:00:00,8849.0
-2016-11-13 12:00:00,8959.0
-2016-11-13 13:00:00,8924.0
-2016-11-13 14:00:00,8912.0
-2016-11-13 15:00:00,8877.0
-2016-11-13 16:00:00,8815.0
-2016-11-13 17:00:00,8895.0
-2016-11-13 18:00:00,9406.0
-2016-11-13 19:00:00,10141.0
-2016-11-13 20:00:00,10145.0
-2016-11-13 21:00:00,10082.0
-2016-11-13 22:00:00,9849.0
-2016-11-13 23:00:00,9551.0
-2016-11-14 00:00:00,9044.0
-2016-11-12 01:00:00,9245.0
-2016-11-12 02:00:00,8795.0
-2016-11-12 03:00:00,8570.0
-2016-11-12 04:00:00,8434.0
-2016-11-12 05:00:00,8401.0
-2016-11-12 06:00:00,8488.0
-2016-11-12 07:00:00,8796.0
-2016-11-12 08:00:00,9141.0
-2016-11-12 09:00:00,9336.0
-2016-11-12 10:00:00,9551.0
-2016-11-12 11:00:00,9703.0
-2016-11-12 12:00:00,9677.0
-2016-11-12 13:00:00,9634.0
-2016-11-12 14:00:00,9481.0
-2016-11-12 15:00:00,9289.0
-2016-11-12 16:00:00,9171.0
-2016-11-12 17:00:00,9161.0
-2016-11-12 18:00:00,9597.0
-2016-11-12 19:00:00,10250.0
-2016-11-12 20:00:00,10234.0
-2016-11-12 21:00:00,10055.0
-2016-11-12 22:00:00,9943.0
-2016-11-12 23:00:00,9663.0
-2016-11-13 00:00:00,9269.0
-2016-11-11 01:00:00,9063.0
-2016-11-11 02:00:00,8588.0
-2016-11-11 03:00:00,8348.0
-2016-11-11 04:00:00,8219.0
-2016-11-11 05:00:00,8218.0
-2016-11-11 06:00:00,8440.0
-2016-11-11 07:00:00,9064.0
-2016-11-11 08:00:00,9884.0
-2016-11-11 09:00:00,10374.0
-2016-11-11 10:00:00,10603.0
-2016-11-11 11:00:00,10752.0
-2016-11-11 12:00:00,10898.0
-2016-11-11 13:00:00,10802.0
-2016-11-11 14:00:00,10774.0
-2016-11-11 15:00:00,10774.0
-2016-11-11 16:00:00,10661.0
-2016-11-11 17:00:00,10633.0
-2016-11-11 18:00:00,10999.0
-2016-11-11 19:00:00,11467.0
-2016-11-11 20:00:00,11383.0
-2016-11-11 21:00:00,11113.0
-2016-11-11 22:00:00,10849.0
-2016-11-11 23:00:00,10426.0
-2016-11-12 00:00:00,9806.0
-2016-11-10 01:00:00,9100.0
-2016-11-10 02:00:00,8708.0
-2016-11-10 03:00:00,8502.0
-2016-11-10 04:00:00,8392.0
-2016-11-10 05:00:00,8369.0
-2016-11-10 06:00:00,8639.0
-2016-11-10 07:00:00,9343.0
-2016-11-10 08:00:00,10337.0
-2016-11-10 09:00:00,10754.0
-2016-11-10 10:00:00,10907.0
-2016-11-10 11:00:00,10993.0
-2016-11-10 12:00:00,11038.0
-2016-11-10 13:00:00,11048.0
-2016-11-10 14:00:00,11093.0
-2016-11-10 15:00:00,11049.0
-2016-11-10 16:00:00,10976.0
-2016-11-10 17:00:00,10885.0
-2016-11-10 18:00:00,11094.0
-2016-11-10 19:00:00,11685.0
-2016-11-10 20:00:00,11463.0
-2016-11-10 21:00:00,11224.0
-2016-11-10 22:00:00,10879.0
-2016-11-10 23:00:00,10377.0
-2016-11-11 00:00:00,9687.0
-2016-11-09 01:00:00,9123.0
-2016-11-09 02:00:00,8717.0
-2016-11-09 03:00:00,8418.0
-2016-11-09 04:00:00,8199.0
-2016-11-09 05:00:00,8191.0
-2016-11-09 06:00:00,8461.0
-2016-11-09 07:00:00,9189.0
-2016-11-09 08:00:00,10156.0
-2016-11-09 09:00:00,10594.0
-2016-11-09 10:00:00,10803.0
-2016-11-09 11:00:00,10883.0
-2016-11-09 12:00:00,10990.0
-2016-11-09 13:00:00,10962.0
-2016-11-09 14:00:00,10949.0
-2016-11-09 15:00:00,10956.0
-2016-11-09 16:00:00,10851.0
-2016-11-09 17:00:00,10768.0
-2016-11-09 18:00:00,10991.0
-2016-11-09 19:00:00,11527.0
-2016-11-09 20:00:00,11438.0
-2016-11-09 21:00:00,11252.0
-2016-11-09 22:00:00,10942.0
-2016-11-09 23:00:00,10430.0
-2016-11-10 00:00:00,9671.0
-2016-11-08 01:00:00,8809.0
-2016-11-08 02:00:00,8420.0
-2016-11-08 03:00:00,8135.0
-2016-11-08 04:00:00,7998.0
-2016-11-08 05:00:00,7988.0
-2016-11-08 06:00:00,8201.0
-2016-11-08 07:00:00,8871.0
-2016-11-08 08:00:00,9920.0
-2016-11-08 09:00:00,10487.0
-2016-11-08 10:00:00,10774.0
-2016-11-08 11:00:00,10852.0
-2016-11-08 12:00:00,10935.0
-2016-11-08 13:00:00,10969.0
-2016-11-08 14:00:00,11023.0
-2016-11-08 15:00:00,11071.0
-2016-11-08 16:00:00,10911.0
-2016-11-08 17:00:00,10751.0
-2016-11-08 18:00:00,11055.0
-2016-11-08 19:00:00,11594.0
-2016-11-08 20:00:00,11432.0
-2016-11-08 21:00:00,11220.0
-2016-11-08 22:00:00,10890.0
-2016-11-08 23:00:00,10352.0
-2016-11-09 00:00:00,9699.0
-2016-11-07 01:00:00,8128.0
-2016-11-07 02:00:00,7882.0
-2016-11-07 03:00:00,7737.0
-2016-11-07 04:00:00,7687.0
-2016-11-07 05:00:00,7733.0
-2016-11-07 06:00:00,8046.0
-2016-11-07 07:00:00,8688.0
-2016-11-07 08:00:00,9770.0
-2016-11-07 09:00:00,10338.0
-2016-11-07 10:00:00,10574.0
-2016-11-07 11:00:00,10698.0
-2016-11-07 12:00:00,10954.0
-2016-11-07 13:00:00,10989.0
-2016-11-07 14:00:00,11029.0
-2016-11-07 15:00:00,11077.0
-2016-11-07 16:00:00,10984.0
-2016-11-07 17:00:00,10856.0
-2016-11-07 18:00:00,11084.0
-2016-11-07 19:00:00,11540.0
-2016-11-07 20:00:00,11327.0
-2016-11-07 21:00:00,11062.0
-2016-11-07 22:00:00,10691.0
-2016-11-07 23:00:00,10127.0
-2016-11-08 00:00:00,9429.0
-2016-11-06 01:00:00,8475.0
-2016-11-06 02:00:00,7814.0
-2016-11-06 02:00:00,8028.0
-2016-11-06 03:00:00,7557.0
-2016-11-06 04:00:00,7543.0
-2016-11-06 05:00:00,7509.0
-2016-11-06 06:00:00,7509.0
-2016-11-06 07:00:00,7704.0
-2016-11-06 08:00:00,7900.0
-2016-11-06 09:00:00,8075.0
-2016-11-06 10:00:00,8390.0
-2016-11-06 11:00:00,8591.0
-2016-11-06 12:00:00,8771.0
-2016-11-06 13:00:00,8943.0
-2016-11-06 14:00:00,9001.0
-2016-11-06 15:00:00,9002.0
-2016-11-06 16:00:00,9027.0
-2016-11-06 17:00:00,9019.0
-2016-11-06 18:00:00,9348.0
-2016-11-06 19:00:00,9995.0
-2016-11-06 20:00:00,9963.0
-2016-11-06 21:00:00,9769.0
-2016-11-06 22:00:00,9482.0
-2016-11-06 23:00:00,9046.0
-2016-11-07 00:00:00,8595.0
-2016-11-05 01:00:00,8995.0
-2016-11-05 02:00:00,8484.0
-2016-11-05 03:00:00,8241.0
-2016-11-05 04:00:00,8027.0
-2016-11-05 05:00:00,7924.0
-2016-11-05 06:00:00,7964.0
-2016-11-05 07:00:00,8230.0
-2016-11-05 08:00:00,8658.0
-2016-11-05 09:00:00,8971.0
-2016-11-05 10:00:00,9148.0
-2016-11-05 11:00:00,9366.0
-2016-11-05 12:00:00,9484.0
-2016-11-05 13:00:00,9530.0
-2016-11-05 14:00:00,9500.0
-2016-11-05 15:00:00,9397.0
-2016-11-05 16:00:00,9307.0
-2016-11-05 17:00:00,9266.0
-2016-11-05 18:00:00,9252.0
-2016-11-05 19:00:00,9473.0
-2016-11-05 20:00:00,9954.0
-2016-11-05 21:00:00,9861.0
-2016-11-05 22:00:00,9674.0
-2016-11-05 23:00:00,9390.0
-2016-11-06 00:00:00,8936.0
-2016-11-04 01:00:00,8954.0
-2016-11-04 02:00:00,8489.0
-2016-11-04 03:00:00,8192.0
-2016-11-04 04:00:00,8043.0
-2016-11-04 05:00:00,7997.0
-2016-11-04 06:00:00,8213.0
-2016-11-04 07:00:00,8817.0
-2016-11-04 08:00:00,9899.0
-2016-11-04 09:00:00,10595.0
-2016-11-04 10:00:00,10669.0
-2016-11-04 11:00:00,10752.0
-2016-11-04 12:00:00,10890.0
-2016-11-04 13:00:00,10859.0
-2016-11-04 14:00:00,10823.0
-2016-11-04 15:00:00,10872.0
-2016-11-04 16:00:00,10787.0
-2016-11-04 17:00:00,10613.0
-2016-11-04 18:00:00,10510.0
-2016-11-04 19:00:00,10576.0
-2016-11-04 20:00:00,11006.0
-2016-11-04 21:00:00,10837.0
-2016-11-04 22:00:00,10547.0
-2016-11-04 23:00:00,10147.0
-2016-11-05 00:00:00,9573.0
-2016-11-03 01:00:00,9322.0
-2016-11-03 02:00:00,8832.0
-2016-11-03 03:00:00,8411.0
-2016-11-03 04:00:00,8168.0
-2016-11-03 05:00:00,8080.0
-2016-11-03 06:00:00,8170.0
-2016-11-03 07:00:00,8749.0
-2016-11-03 08:00:00,9822.0
-2016-11-03 09:00:00,10620.0
-2016-11-03 10:00:00,10663.0
-2016-11-03 11:00:00,10727.0
-2016-11-03 12:00:00,10829.0
-2016-11-03 13:00:00,10870.0
-2016-11-03 14:00:00,10939.0
-2016-11-03 15:00:00,11004.0
-2016-11-03 16:00:00,11013.0
-2016-11-03 17:00:00,10898.0
-2016-11-03 18:00:00,10807.0
-2016-11-03 19:00:00,10912.0
-2016-11-03 20:00:00,11213.0
-2016-11-03 21:00:00,11117.0
-2016-11-03 22:00:00,10800.0
-2016-11-03 23:00:00,10310.0
-2016-11-04 00:00:00,9621.0
-2016-11-02 01:00:00,9657.0
-2016-11-02 02:00:00,9137.0
-2016-11-02 03:00:00,8783.0
-2016-11-02 04:00:00,8607.0
-2016-11-02 05:00:00,8549.0
-2016-11-02 06:00:00,8651.0
-2016-11-02 07:00:00,9145.0
-2016-11-02 08:00:00,10353.0
-2016-11-02 09:00:00,11164.0
-2016-11-02 10:00:00,11262.0
-2016-11-02 11:00:00,11407.0
-2016-11-02 12:00:00,11674.0
-2016-11-02 13:00:00,11639.0
-2016-11-02 14:00:00,11634.0
-2016-11-02 15:00:00,11738.0
-2016-11-02 16:00:00,11676.0
-2016-11-02 17:00:00,11600.0
-2016-11-02 18:00:00,11651.0
-2016-11-02 19:00:00,11993.0
-2016-11-02 20:00:00,12038.0
-2016-11-02 21:00:00,11676.0
-2016-11-02 22:00:00,11235.0
-2016-11-02 23:00:00,10614.0
-2016-11-03 00:00:00,9898.0
-2016-11-01 01:00:00,9058.0
-2016-11-01 02:00:00,8618.0
-2016-11-01 03:00:00,8353.0
-2016-11-01 04:00:00,8217.0
-2016-11-01 05:00:00,8177.0
-2016-11-01 06:00:00,8340.0
-2016-11-01 07:00:00,9010.0
-2016-11-01 08:00:00,10190.0
-2016-11-01 09:00:00,10865.0
-2016-11-01 10:00:00,10973.0
-2016-11-01 11:00:00,11171.0
-2016-11-01 12:00:00,11419.0
-2016-11-01 13:00:00,11491.0
-2016-11-01 14:00:00,11641.0
-2016-11-01 15:00:00,11811.0
-2016-11-01 16:00:00,11760.0
-2016-11-01 17:00:00,11674.0
-2016-11-01 18:00:00,11568.0
-2016-11-01 19:00:00,11657.0
-2016-11-01 20:00:00,12028.0
-2016-11-01 21:00:00,11830.0
-2016-11-01 22:00:00,11406.0
-2016-11-01 23:00:00,10887.0
-2016-11-02 00:00:00,10211.0
-2016-10-31 01:00:00,8621.0
-2016-10-31 02:00:00,8226.0
-2016-10-31 03:00:00,8053.0
-2016-10-31 04:00:00,7939.0
-2016-10-31 05:00:00,7943.0
-2016-10-31 06:00:00,8240.0
-2016-10-31 07:00:00,8975.0
-2016-10-31 08:00:00,10254.0
-2016-10-31 09:00:00,10961.0
-2016-10-31 10:00:00,11004.0
-2016-10-31 11:00:00,10993.0
-2016-10-31 12:00:00,11058.0
-2016-10-31 13:00:00,10955.0
-2016-10-31 14:00:00,10874.0
-2016-10-31 15:00:00,10916.0
-2016-10-31 16:00:00,10809.0
-2016-10-31 17:00:00,10663.0
-2016-10-31 18:00:00,10535.0
-2016-10-31 19:00:00,10748.0
-2016-10-31 20:00:00,11115.0
-2016-10-31 21:00:00,11094.0
-2016-10-31 22:00:00,10859.0
-2016-10-31 23:00:00,10423.0
-2016-11-01 00:00:00,9737.0
-2016-10-30 01:00:00,8659.0
-2016-10-30 02:00:00,8252.0
-2016-10-30 03:00:00,7978.0
-2016-10-30 04:00:00,7787.0
-2016-10-30 05:00:00,7756.0
-2016-10-30 06:00:00,7820.0
-2016-10-30 07:00:00,7784.0
-2016-10-30 08:00:00,7960.0
-2016-10-30 09:00:00,8119.0
-2016-10-30 10:00:00,8278.0
-2016-10-30 11:00:00,8567.0
-2016-10-30 12:00:00,8904.0
-2016-10-30 13:00:00,9082.0
-2016-10-30 14:00:00,9197.0
-2016-10-30 15:00:00,9213.0
-2016-10-30 16:00:00,9204.0
-2016-10-30 17:00:00,9214.0
-2016-10-30 18:00:00,9340.0
-2016-10-30 19:00:00,9657.0
-2016-10-30 20:00:00,10191.0
-2016-10-30 21:00:00,10227.0
-2016-10-30 22:00:00,9950.0
-2016-10-30 23:00:00,9579.0
-2016-10-31 00:00:00,9172.0
-2016-10-29 01:00:00,9455.0
-2016-10-29 02:00:00,9039.0
-2016-10-29 03:00:00,8712.0
-2016-10-29 04:00:00,8418.0
-2016-10-29 05:00:00,8315.0
-2016-10-29 06:00:00,8274.0
-2016-10-29 07:00:00,8532.0
-2016-10-29 08:00:00,8924.0
-2016-10-29 09:00:00,9216.0
-2016-10-29 10:00:00,9577.0
-2016-10-29 11:00:00,9895.0
-2016-10-29 12:00:00,10150.0
-2016-10-29 13:00:00,10227.0
-2016-10-29 14:00:00,10274.0
-2016-10-29 15:00:00,10200.0
-2016-10-29 16:00:00,10142.0
-2016-10-29 17:00:00,10176.0
-2016-10-29 18:00:00,10209.0
-2016-10-29 19:00:00,10399.0
-2016-10-29 20:00:00,10625.0
-2016-10-29 21:00:00,10555.0
-2016-10-29 22:00:00,10232.0
-2016-10-29 23:00:00,9745.0
-2016-10-30 00:00:00,9183.0
-2016-10-28 01:00:00,9450.0
-2016-10-28 02:00:00,8945.0
-2016-10-28 03:00:00,8679.0
-2016-10-28 04:00:00,8582.0
-2016-10-28 05:00:00,8518.0
-2016-10-28 06:00:00,8692.0
-2016-10-28 07:00:00,9345.0
-2016-10-28 08:00:00,10561.0
-2016-10-28 09:00:00,11109.0
-2016-10-28 10:00:00,11153.0
-2016-10-28 11:00:00,11184.0
-2016-10-28 12:00:00,11278.0
-2016-10-28 13:00:00,11180.0
-2016-10-28 14:00:00,11204.0
-2016-10-28 15:00:00,11244.0
-2016-10-28 16:00:00,11180.0
-2016-10-28 17:00:00,11009.0
-2016-10-28 18:00:00,10950.0
-2016-10-28 19:00:00,11078.0
-2016-10-28 20:00:00,11572.0
-2016-10-28 21:00:00,11444.0
-2016-10-28 22:00:00,11154.0
-2016-10-28 23:00:00,10801.0
-2016-10-29 00:00:00,10147.0
-2016-10-27 01:00:00,9395.0
-2016-10-27 02:00:00,9005.0
-2016-10-27 03:00:00,8669.0
-2016-10-27 04:00:00,8451.0
-2016-10-27 05:00:00,8419.0
-2016-10-27 06:00:00,8520.0
-2016-10-27 07:00:00,9236.0
-2016-10-27 08:00:00,10455.0
-2016-10-27 09:00:00,11040.0
-2016-10-27 10:00:00,11180.0
-2016-10-27 11:00:00,11257.0
-2016-10-27 12:00:00,11393.0
-2016-10-27 13:00:00,11291.0
-2016-10-27 14:00:00,11308.0
-2016-10-27 15:00:00,11323.0
-2016-10-27 16:00:00,11233.0
-2016-10-27 17:00:00,11127.0
-2016-10-27 18:00:00,11135.0
-2016-10-27 19:00:00,11226.0
-2016-10-27 20:00:00,11539.0
-2016-10-27 21:00:00,11460.0
-2016-10-27 22:00:00,11138.0
-2016-10-27 23:00:00,10787.0
-2016-10-28 00:00:00,10130.0
-2016-10-26 01:00:00,9257.0
-2016-10-26 02:00:00,8852.0
-2016-10-26 03:00:00,8584.0
-2016-10-26 04:00:00,8477.0
-2016-10-26 05:00:00,8414.0
-2016-10-26 06:00:00,8603.0
-2016-10-26 07:00:00,9307.0
-2016-10-26 08:00:00,10380.0
-2016-10-26 09:00:00,11292.0
-2016-10-26 10:00:00,11514.0
-2016-10-26 11:00:00,11569.0
-2016-10-26 12:00:00,11790.0
-2016-10-26 13:00:00,11890.0
-2016-10-26 14:00:00,11792.0
-2016-10-26 15:00:00,11893.0
-2016-10-26 16:00:00,11851.0
-2016-10-26 17:00:00,11691.0
-2016-10-26 18:00:00,11800.0
-2016-10-26 19:00:00,11934.0
-2016-10-26 20:00:00,12022.0
-2016-10-26 21:00:00,11811.0
-2016-10-26 22:00:00,11550.0
-2016-10-26 23:00:00,11002.0
-2016-10-27 00:00:00,10128.0
-2016-10-25 01:00:00,9088.0
-2016-10-25 02:00:00,8707.0
-2016-10-25 03:00:00,8493.0
-2016-10-25 04:00:00,8340.0
-2016-10-25 05:00:00,8200.0
-2016-10-25 06:00:00,8315.0
-2016-10-25 07:00:00,8997.0
-2016-10-25 08:00:00,10197.0
-2016-10-25 09:00:00,10843.0
-2016-10-25 10:00:00,10895.0
-2016-10-25 11:00:00,11073.0
-2016-10-25 12:00:00,11139.0
-2016-10-25 13:00:00,11106.0
-2016-10-25 14:00:00,11050.0
-2016-10-25 15:00:00,11066.0
-2016-10-25 16:00:00,10959.0
-2016-10-25 17:00:00,10926.0
-2016-10-25 18:00:00,10963.0
-2016-10-25 19:00:00,11233.0
-2016-10-25 20:00:00,11647.0
-2016-10-25 21:00:00,11634.0
-2016-10-25 22:00:00,11335.0
-2016-10-25 23:00:00,10791.0
-2016-10-26 00:00:00,9933.0
-2016-10-24 01:00:00,8458.0
-2016-10-24 02:00:00,8129.0
-2016-10-24 03:00:00,7948.0
-2016-10-24 04:00:00,7749.0
-2016-10-24 05:00:00,7793.0
-2016-10-24 06:00:00,8062.0
-2016-10-24 07:00:00,8706.0
-2016-10-24 08:00:00,9964.0
-2016-10-24 09:00:00,10463.0
-2016-10-24 10:00:00,10497.0
-2016-10-24 11:00:00,10606.0
-2016-10-24 12:00:00,10731.0
-2016-10-24 13:00:00,10770.0
-2016-10-24 14:00:00,10770.0
-2016-10-24 15:00:00,10780.0
-2016-10-24 16:00:00,10750.0
-2016-10-24 17:00:00,10655.0
-2016-10-24 18:00:00,10586.0
-2016-10-24 19:00:00,10591.0
-2016-10-24 20:00:00,11170.0
-2016-10-24 21:00:00,11162.0
-2016-10-24 22:00:00,10872.0
-2016-10-24 23:00:00,10385.0
-2016-10-25 00:00:00,9668.0
-2016-10-23 01:00:00,8743.0
-2016-10-23 02:00:00,8415.0
-2016-10-23 03:00:00,8126.0
-2016-10-23 04:00:00,7954.0
-2016-10-23 05:00:00,7807.0
-2016-10-23 06:00:00,7822.0
-2016-10-23 07:00:00,7932.0
-2016-10-23 08:00:00,8163.0
-2016-10-23 09:00:00,8222.0
-2016-10-23 10:00:00,8372.0
-2016-10-23 11:00:00,8570.0
-2016-10-23 12:00:00,8712.0
-2016-10-23 13:00:00,8869.0
-2016-10-23 14:00:00,8965.0
-2016-10-23 15:00:00,9016.0
-2016-10-23 16:00:00,9142.0
-2016-10-23 17:00:00,9214.0
-2016-10-23 18:00:00,9233.0
-2016-10-23 19:00:00,9409.0
-2016-10-23 20:00:00,10128.0
-2016-10-23 21:00:00,10066.0
-2016-10-23 22:00:00,9836.0
-2016-10-23 23:00:00,9419.0
-2016-10-24 00:00:00,8920.0
-2016-10-22 01:00:00,9143.0
-2016-10-22 02:00:00,8678.0
-2016-10-22 03:00:00,8379.0
-2016-10-22 04:00:00,8180.0
-2016-10-22 05:00:00,8078.0
-2016-10-22 06:00:00,8070.0
-2016-10-22 07:00:00,8312.0
-2016-10-22 08:00:00,8826.0
-2016-10-22 09:00:00,9024.0
-2016-10-22 10:00:00,9363.0
-2016-10-22 11:00:00,9473.0
-2016-10-22 12:00:00,9522.0
-2016-10-22 13:00:00,9500.0
-2016-10-22 14:00:00,9405.0
-2016-10-22 15:00:00,9303.0
-2016-10-22 16:00:00,9204.0
-2016-10-22 17:00:00,9237.0
-2016-10-22 18:00:00,9188.0
-2016-10-22 19:00:00,9276.0
-2016-10-22 20:00:00,9919.0
-2016-10-22 21:00:00,9950.0
-2016-10-22 22:00:00,9811.0
-2016-10-22 23:00:00,9536.0
-2016-10-23 00:00:00,9164.0
-2016-10-21 01:00:00,9236.0
-2016-10-21 02:00:00,8809.0
-2016-10-21 03:00:00,8545.0
-2016-10-21 04:00:00,8389.0
-2016-10-21 05:00:00,8298.0
-2016-10-21 06:00:00,8465.0
-2016-10-21 07:00:00,9026.0
-2016-10-21 08:00:00,10136.0
-2016-10-21 09:00:00,10766.0
-2016-10-21 10:00:00,10850.0
-2016-10-21 11:00:00,10841.0
-2016-10-21 12:00:00,10911.0
-2016-10-21 13:00:00,10887.0
-2016-10-21 14:00:00,10818.0
-2016-10-21 15:00:00,10764.0
-2016-10-21 16:00:00,10588.0
-2016-10-21 17:00:00,10549.0
-2016-10-21 18:00:00,10444.0
-2016-10-21 19:00:00,10490.0
-2016-10-21 20:00:00,10958.0
-2016-10-21 21:00:00,10919.0
-2016-10-21 22:00:00,10654.0
-2016-10-21 23:00:00,10305.0
-2016-10-22 00:00:00,9719.0
-2016-10-20 01:00:00,9291.0
-2016-10-20 02:00:00,8762.0
-2016-10-20 03:00:00,8417.0
-2016-10-20 04:00:00,8170.0
-2016-10-20 05:00:00,8055.0
-2016-10-20 06:00:00,8227.0
-2016-10-20 07:00:00,8796.0
-2016-10-20 08:00:00,9849.0
-2016-10-20 09:00:00,10541.0
-2016-10-20 10:00:00,10829.0
-2016-10-20 11:00:00,11034.0
-2016-10-20 12:00:00,11157.0
-2016-10-20 13:00:00,11198.0
-2016-10-20 14:00:00,11126.0
-2016-10-20 15:00:00,11177.0
-2016-10-20 16:00:00,11073.0
-2016-10-20 17:00:00,11017.0
-2016-10-20 18:00:00,10958.0
-2016-10-20 19:00:00,11022.0
-2016-10-20 20:00:00,11322.0
-2016-10-20 21:00:00,11295.0
-2016-10-20 22:00:00,11015.0
-2016-10-20 23:00:00,10588.0
-2016-10-21 00:00:00,9878.0
-2016-10-19 01:00:00,9485.0
-2016-10-19 02:00:00,8914.0
-2016-10-19 03:00:00,8510.0
-2016-10-19 04:00:00,8238.0
-2016-10-19 05:00:00,8083.0
-2016-10-19 06:00:00,8259.0
-2016-10-19 07:00:00,8746.0
-2016-10-19 08:00:00,9745.0
-2016-10-19 09:00:00,10306.0
-2016-10-19 10:00:00,10590.0
-2016-10-19 11:00:00,11014.0
-2016-10-19 12:00:00,11348.0
-2016-10-19 13:00:00,11507.0
-2016-10-19 14:00:00,11642.0
-2016-10-19 15:00:00,11769.0
-2016-10-19 16:00:00,11725.0
-2016-10-19 17:00:00,11559.0
-2016-10-19 18:00:00,11447.0
-2016-10-19 19:00:00,11448.0
-2016-10-19 20:00:00,11804.0
-2016-10-19 21:00:00,11739.0
-2016-10-19 22:00:00,11292.0
-2016-10-19 23:00:00,10724.0
-2016-10-20 00:00:00,10018.0
-2016-10-18 01:00:00,10769.0
-2016-10-18 02:00:00,10179.0
-2016-10-18 03:00:00,9714.0
-2016-10-18 04:00:00,9404.0
-2016-10-18 05:00:00,9185.0
-2016-10-18 06:00:00,9221.0
-2016-10-18 07:00:00,9815.0
-2016-10-18 08:00:00,11006.0
-2016-10-18 09:00:00,11731.0
-2016-10-18 10:00:00,12074.0
-2016-10-18 11:00:00,12494.0
-2016-10-18 12:00:00,12872.0
-2016-10-18 13:00:00,13147.0
-2016-10-18 14:00:00,13264.0
-2016-10-18 15:00:00,13401.0
-2016-10-18 16:00:00,13422.0
-2016-10-18 17:00:00,13289.0
-2016-10-18 18:00:00,13096.0
-2016-10-18 19:00:00,12658.0
-2016-10-18 20:00:00,12671.0
-2016-10-18 21:00:00,12455.0
-2016-10-18 22:00:00,11968.0
-2016-10-18 23:00:00,11217.0
-2016-10-19 00:00:00,10287.0
-2016-10-17 01:00:00,9239.0
-2016-10-17 02:00:00,8929.0
-2016-10-17 03:00:00,8647.0
-2016-10-17 04:00:00,8505.0
-2016-10-17 05:00:00,8428.0
-2016-10-17 06:00:00,8617.0
-2016-10-17 07:00:00,9394.0
-2016-10-17 08:00:00,10496.0
-2016-10-17 09:00:00,11119.0
-2016-10-17 10:00:00,11548.0
-2016-10-17 11:00:00,11774.0
-2016-10-17 12:00:00,12180.0
-2016-10-17 13:00:00,12513.0
-2016-10-17 14:00:00,12748.0
-2016-10-17 15:00:00,13031.0
-2016-10-17 16:00:00,13425.0
-2016-10-17 17:00:00,13635.0
-2016-10-17 18:00:00,13629.0
-2016-10-17 19:00:00,13394.0
-2016-10-17 20:00:00,13634.0
-2016-10-17 21:00:00,13678.0
-2016-10-17 22:00:00,13285.0
-2016-10-17 23:00:00,12586.0
-2016-10-18 00:00:00,11738.0
-2016-10-16 01:00:00,8908.0
-2016-10-16 02:00:00,8521.0
-2016-10-16 03:00:00,8230.0
-2016-10-16 04:00:00,8031.0
-2016-10-16 05:00:00,7944.0
-2016-10-16 06:00:00,7885.0
-2016-10-16 07:00:00,7995.0
-2016-10-16 08:00:00,8167.0
-2016-10-16 09:00:00,8404.0
-2016-10-16 10:00:00,8660.0
-2016-10-16 11:00:00,8955.0
-2016-10-16 12:00:00,9188.0
-2016-10-16 13:00:00,9540.0
-2016-10-16 14:00:00,9684.0
-2016-10-16 15:00:00,9725.0
-2016-10-16 16:00:00,9744.0
-2016-10-16 17:00:00,9839.0
-2016-10-16 18:00:00,9941.0
-2016-10-16 19:00:00,10139.0
-2016-10-16 20:00:00,10658.0
-2016-10-16 21:00:00,10931.0
-2016-10-16 22:00:00,10711.0
-2016-10-16 23:00:00,10346.0
-2016-10-17 00:00:00,9798.0
-2016-10-15 01:00:00,9184.0
-2016-10-15 02:00:00,8619.0
-2016-10-15 03:00:00,8325.0
-2016-10-15 04:00:00,8075.0
-2016-10-15 05:00:00,7923.0
-2016-10-15 06:00:00,7959.0
-2016-10-15 07:00:00,8185.0
-2016-10-15 08:00:00,8667.0
-2016-10-15 09:00:00,8973.0
-2016-10-15 10:00:00,9334.0
-2016-10-15 11:00:00,9685.0
-2016-10-15 12:00:00,9843.0
-2016-10-15 13:00:00,9971.0
-2016-10-15 14:00:00,9921.0
-2016-10-15 15:00:00,9847.0
-2016-10-15 16:00:00,9771.0
-2016-10-15 17:00:00,9806.0
-2016-10-15 18:00:00,9748.0
-2016-10-15 19:00:00,9722.0
-2016-10-15 20:00:00,10216.0
-2016-10-15 21:00:00,10378.0
-2016-10-15 22:00:00,10213.0
-2016-10-15 23:00:00,9837.0
-2016-10-16 00:00:00,9312.0
-2016-10-14 01:00:00,8950.0
-2016-10-14 02:00:00,8489.0
-2016-10-14 03:00:00,8191.0
-2016-10-14 04:00:00,8044.0
-2016-10-14 05:00:00,8012.0
-2016-10-14 06:00:00,8210.0
-2016-10-14 07:00:00,8836.0
-2016-10-14 08:00:00,9942.0
-2016-10-14 09:00:00,10466.0
-2016-10-14 10:00:00,10612.0
-2016-10-14 11:00:00,10705.0
-2016-10-14 12:00:00,10823.0
-2016-10-14 13:00:00,10846.0
-2016-10-14 14:00:00,10834.0
-2016-10-14 15:00:00,10887.0
-2016-10-14 16:00:00,10815.0
-2016-10-14 17:00:00,10691.0
-2016-10-14 18:00:00,10595.0
-2016-10-14 19:00:00,10475.0
-2016-10-14 20:00:00,10805.0
-2016-10-14 21:00:00,10828.0
-2016-10-14 22:00:00,10668.0
-2016-10-14 23:00:00,10376.0
-2016-10-15 00:00:00,9772.0
-2016-10-13 01:00:00,8805.0
-2016-10-13 02:00:00,8352.0
-2016-10-13 03:00:00,8035.0
-2016-10-13 04:00:00,7871.0
-2016-10-13 05:00:00,7868.0
-2016-10-13 06:00:00,8083.0
-2016-10-13 07:00:00,8747.0
-2016-10-13 08:00:00,9890.0
-2016-10-13 09:00:00,10419.0
-2016-10-13 10:00:00,10615.0
-2016-10-13 11:00:00,10703.0
-2016-10-13 12:00:00,10755.0
-2016-10-13 13:00:00,10735.0
-2016-10-13 14:00:00,10700.0
-2016-10-13 15:00:00,10725.0
-2016-10-13 16:00:00,10650.0
-2016-10-13 17:00:00,10541.0
-2016-10-13 18:00:00,10486.0
-2016-10-13 19:00:00,10425.0
-2016-10-13 20:00:00,10861.0
-2016-10-13 21:00:00,11006.0
-2016-10-13 22:00:00,10764.0
-2016-10-13 23:00:00,10323.0
-2016-10-14 00:00:00,9607.0
-2016-10-12 01:00:00,9197.0
-2016-10-12 02:00:00,8652.0
-2016-10-12 03:00:00,8319.0
-2016-10-12 04:00:00,8146.0
-2016-10-12 05:00:00,8112.0
-2016-10-12 06:00:00,8314.0
-2016-10-12 07:00:00,8959.0
-2016-10-12 08:00:00,10083.0
-2016-10-12 09:00:00,10604.0
-2016-10-12 10:00:00,10959.0
-2016-10-12 11:00:00,11261.0
-2016-10-12 12:00:00,11524.0
-2016-10-12 13:00:00,11612.0
-2016-10-12 14:00:00,11665.0
-2016-10-12 15:00:00,11589.0
-2016-10-12 16:00:00,11482.0
-2016-10-12 17:00:00,11405.0
-2016-10-12 18:00:00,11222.0
-2016-10-12 19:00:00,11006.0
-2016-10-12 20:00:00,11125.0
-2016-10-12 21:00:00,11074.0
-2016-10-12 22:00:00,10782.0
-2016-10-12 23:00:00,10248.0
-2016-10-13 00:00:00,9489.0
-2016-10-11 01:00:00,9066.0
-2016-10-11 02:00:00,8608.0
-2016-10-11 03:00:00,8313.0
-2016-10-11 04:00:00,7953.0
-2016-10-11 05:00:00,7938.0
-2016-10-11 06:00:00,8140.0
-2016-10-11 07:00:00,8759.0
-2016-10-11 08:00:00,9855.0
-2016-10-11 09:00:00,10406.0
-2016-10-11 10:00:00,10731.0
-2016-10-11 11:00:00,11015.0
-2016-10-11 12:00:00,11227.0
-2016-10-11 13:00:00,11332.0
-2016-10-11 14:00:00,11427.0
-2016-10-11 15:00:00,11568.0
-2016-10-11 16:00:00,11606.0
-2016-10-11 17:00:00,11553.0
-2016-10-11 18:00:00,11495.0
-2016-10-11 19:00:00,11347.0
-2016-10-11 20:00:00,11552.0
-2016-10-11 21:00:00,11635.0
-2016-10-11 22:00:00,11272.0
-2016-10-11 23:00:00,10697.0
-2016-10-12 00:00:00,9938.0
-2016-10-10 01:00:00,8293.0
-2016-10-10 02:00:00,7938.0
-2016-10-10 03:00:00,7691.0
-2016-10-10 04:00:00,7646.0
-2016-10-10 05:00:00,7606.0
-2016-10-10 06:00:00,7832.0
-2016-10-10 07:00:00,8394.0
-2016-10-10 08:00:00,9388.0
-2016-10-10 09:00:00,9859.0
-2016-10-10 10:00:00,10162.0
-2016-10-10 11:00:00,10448.0
-2016-10-10 12:00:00,10724.0
-2016-10-10 13:00:00,10892.0
-2016-10-10 14:00:00,11005.0
-2016-10-10 15:00:00,11116.0
-2016-10-10 16:00:00,11130.0
-2016-10-10 17:00:00,11054.0
-2016-10-10 18:00:00,10994.0
-2016-10-10 19:00:00,10889.0
-2016-10-10 20:00:00,11246.0
-2016-10-10 21:00:00,11288.0
-2016-10-10 22:00:00,10969.0
-2016-10-10 23:00:00,10431.0
-2016-10-11 00:00:00,9747.0
-2016-10-09 01:00:00,8290.0
-2016-10-09 02:00:00,7904.0
-2016-10-09 03:00:00,7641.0
-2016-10-09 04:00:00,7458.0
-2016-10-09 05:00:00,7359.0
-2016-10-09 06:00:00,7333.0
-2016-10-09 07:00:00,7466.0
-2016-10-09 08:00:00,7662.0
-2016-10-09 09:00:00,7691.0
-2016-10-09 10:00:00,8006.0
-2016-10-09 11:00:00,8334.0
-2016-10-09 12:00:00,8525.0
-2016-10-09 13:00:00,8676.0
-2016-10-09 14:00:00,8758.0
-2016-10-09 15:00:00,8799.0
-2016-10-09 16:00:00,8819.0
-2016-10-09 17:00:00,8831.0
-2016-10-09 18:00:00,8871.0
-2016-10-09 19:00:00,8931.0
-2016-10-09 20:00:00,9376.0
-2016-10-09 21:00:00,9665.0
-2016-10-09 22:00:00,9453.0
-2016-10-09 23:00:00,9160.0
-2016-10-10 00:00:00,8789.0
-2016-10-08 01:00:00,8766.0
-2016-10-08 02:00:00,8225.0
-2016-10-08 03:00:00,7984.0
-2016-10-08 04:00:00,7694.0
-2016-10-08 05:00:00,7589.0
-2016-10-08 06:00:00,7653.0
-2016-10-08 07:00:00,7886.0
-2016-10-08 08:00:00,8274.0
-2016-10-08 09:00:00,8463.0
-2016-10-08 10:00:00,8828.0
-2016-10-08 11:00:00,9072.0
-2016-10-08 12:00:00,9200.0
-2016-10-08 13:00:00,9292.0
-2016-10-08 14:00:00,9266.0
-2016-10-08 15:00:00,9134.0
-2016-10-08 16:00:00,9138.0
-2016-10-08 17:00:00,9106.0
-2016-10-08 18:00:00,9070.0
-2016-10-08 19:00:00,9110.0
-2016-10-08 20:00:00,9441.0
-2016-10-08 21:00:00,9695.0
-2016-10-08 22:00:00,9505.0
-2016-10-08 23:00:00,9227.0
-2016-10-09 00:00:00,8797.0
-2016-10-07 01:00:00,9997.0
-2016-10-07 02:00:00,9411.0
-2016-10-07 03:00:00,9069.0
-2016-10-07 04:00:00,8690.0
-2016-10-07 05:00:00,8621.0
-2016-10-07 06:00:00,8789.0
-2016-10-07 07:00:00,9399.0
-2016-10-07 08:00:00,10473.0
-2016-10-07 09:00:00,11015.0
-2016-10-07 10:00:00,11541.0
-2016-10-07 11:00:00,11864.0
-2016-10-07 12:00:00,12188.0
-2016-10-07 13:00:00,11994.0
-2016-10-07 14:00:00,11722.0
-2016-10-07 15:00:00,11445.0
-2016-10-07 16:00:00,11245.0
-2016-10-07 17:00:00,11008.0
-2016-10-07 18:00:00,10791.0
-2016-10-07 19:00:00,10618.0
-2016-10-07 20:00:00,10732.0
-2016-10-07 21:00:00,10837.0
-2016-10-07 22:00:00,10527.0
-2016-10-07 23:00:00,10095.0
-2016-10-08 00:00:00,9489.0
-2016-10-06 01:00:00,9695.0
-2016-10-06 02:00:00,9067.0
-2016-10-06 03:00:00,8703.0
-2016-10-06 04:00:00,8498.0
-2016-10-06 05:00:00,8401.0
-2016-10-06 06:00:00,8601.0
-2016-10-06 07:00:00,9347.0
-2016-10-06 08:00:00,10526.0
-2016-10-06 09:00:00,11316.0
-2016-10-06 10:00:00,11678.0
-2016-10-06 11:00:00,11920.0
-2016-10-06 12:00:00,12105.0
-2016-10-06 13:00:00,12139.0
-2016-10-06 14:00:00,12348.0
-2016-10-06 15:00:00,12444.0
-2016-10-06 16:00:00,12345.0
-2016-10-06 17:00:00,12343.0
-2016-10-06 18:00:00,12308.0
-2016-10-06 19:00:00,12193.0
-2016-10-06 20:00:00,12451.0
-2016-10-06 21:00:00,12496.0
-2016-10-06 22:00:00,12196.0
-2016-10-06 23:00:00,11639.0
-2016-10-07 00:00:00,10825.0
-2016-10-05 01:00:00,9495.0
-2016-10-05 02:00:00,8953.0
-2016-10-05 03:00:00,8601.0
-2016-10-05 04:00:00,8432.0
-2016-10-05 05:00:00,8378.0
-2016-10-05 06:00:00,8550.0
-2016-10-05 07:00:00,9217.0
-2016-10-05 08:00:00,10384.0
-2016-10-05 09:00:00,10960.0
-2016-10-05 10:00:00,11430.0
-2016-10-05 11:00:00,11835.0
-2016-10-05 12:00:00,12289.0
-2016-10-05 13:00:00,12387.0
-2016-10-05 14:00:00,12510.0
-2016-10-05 15:00:00,12639.0
-2016-10-05 16:00:00,12970.0
-2016-10-05 17:00:00,13030.0
-2016-10-05 18:00:00,13006.0
-2016-10-05 19:00:00,12736.0
-2016-10-05 20:00:00,12650.0
-2016-10-05 21:00:00,12673.0
-2016-10-05 22:00:00,12234.0
-2016-10-05 23:00:00,11479.0
-2016-10-06 00:00:00,10562.0
-2016-10-04 01:00:00,9197.0
-2016-10-04 02:00:00,8701.0
-2016-10-04 03:00:00,8404.0
-2016-10-04 04:00:00,8227.0
-2016-10-04 05:00:00,8162.0
-2016-10-04 06:00:00,8363.0
-2016-10-04 07:00:00,9011.0
-2016-10-04 08:00:00,10128.0
-2016-10-04 09:00:00,10736.0
-2016-10-04 10:00:00,11050.0
-2016-10-04 11:00:00,11282.0
-2016-10-04 12:00:00,11583.0
-2016-10-04 13:00:00,11837.0
-2016-10-04 14:00:00,11905.0
-2016-10-04 15:00:00,12005.0
-2016-10-04 16:00:00,12015.0
-2016-10-04 17:00:00,12007.0
-2016-10-04 18:00:00,11951.0
-2016-10-04 19:00:00,11731.0
-2016-10-04 20:00:00,11747.0
-2016-10-04 21:00:00,12025.0
-2016-10-04 22:00:00,11731.0
-2016-10-04 23:00:00,11146.0
-2016-10-05 00:00:00,10298.0
-2016-10-03 01:00:00,8514.0
-2016-10-03 02:00:00,8181.0
-2016-10-03 03:00:00,7958.0
-2016-10-03 04:00:00,7869.0
-2016-10-03 05:00:00,7851.0
-2016-10-03 06:00:00,8097.0
-2016-10-03 07:00:00,8754.0
-2016-10-03 08:00:00,9912.0
-2016-10-03 09:00:00,10500.0
-2016-10-03 10:00:00,10885.0
-2016-10-03 11:00:00,11070.0
-2016-10-03 12:00:00,11341.0
-2016-10-03 13:00:00,11450.0
-2016-10-03 14:00:00,11480.0
-2016-10-03 15:00:00,11537.0
-2016-10-03 16:00:00,11434.0
-2016-10-03 17:00:00,11326.0
-2016-10-03 18:00:00,11249.0
-2016-10-03 19:00:00,11160.0
-2016-10-03 20:00:00,11389.0
-2016-10-03 21:00:00,11567.0
-2016-10-03 22:00:00,11255.0
-2016-10-03 23:00:00,10727.0
-2016-10-04 00:00:00,9955.0
-2016-10-02 01:00:00,8637.0
-2016-10-02 02:00:00,8213.0
-2016-10-02 03:00:00,7900.0
-2016-10-02 04:00:00,7734.0
-2016-10-02 05:00:00,7594.0
-2016-10-02 06:00:00,7595.0
-2016-10-02 07:00:00,7633.0
-2016-10-02 08:00:00,7861.0
-2016-10-02 09:00:00,7872.0
-2016-10-02 10:00:00,8278.0
-2016-10-02 11:00:00,8548.0
-2016-10-02 12:00:00,8849.0
-2016-10-02 13:00:00,9038.0
-2016-10-02 14:00:00,9106.0
-2016-10-02 15:00:00,9114.0
-2016-10-02 16:00:00,9101.0
-2016-10-02 17:00:00,9191.0
-2016-10-02 18:00:00,9261.0
-2016-10-02 19:00:00,9346.0
-2016-10-02 20:00:00,9735.0
-2016-10-02 21:00:00,10042.0
-2016-10-02 22:00:00,9835.0
-2016-10-02 23:00:00,9483.0
-2016-10-03 00:00:00,9043.0
-2016-10-01 01:00:00,9142.0
-2016-10-01 02:00:00,8616.0
-2016-10-01 03:00:00,8302.0
-2016-10-01 04:00:00,8102.0
-2016-10-01 05:00:00,7964.0
-2016-10-01 06:00:00,7979.0
-2016-10-01 07:00:00,8222.0
-2016-10-01 08:00:00,8603.0
-2016-10-01 09:00:00,8909.0
-2016-10-01 10:00:00,9375.0
-2016-10-01 11:00:00,9784.0
-2016-10-01 12:00:00,9969.0
-2016-10-01 13:00:00,10061.0
-2016-10-01 14:00:00,9950.0
-2016-10-01 15:00:00,9795.0
-2016-10-01 16:00:00,9698.0
-2016-10-01 17:00:00,9595.0
-2016-10-01 18:00:00,9573.0
-2016-10-01 19:00:00,9610.0
-2016-10-01 20:00:00,9864.0
-2016-10-01 21:00:00,10074.0
-2016-10-01 22:00:00,9950.0
-2016-10-01 23:00:00,9623.0
-2016-10-02 00:00:00,9182.0
-2016-09-30 01:00:00,9163.0
-2016-09-30 02:00:00,8694.0
-2016-09-30 03:00:00,8429.0
-2016-09-30 04:00:00,8234.0
-2016-09-30 05:00:00,8212.0
-2016-09-30 06:00:00,8339.0
-2016-09-30 07:00:00,8949.0
-2016-09-30 08:00:00,10036.0
-2016-09-30 09:00:00,10766.0
-2016-09-30 10:00:00,11079.0
-2016-09-30 11:00:00,11331.0
-2016-09-30 12:00:00,11503.0
-2016-09-30 13:00:00,11449.0
-2016-09-30 14:00:00,11399.0
-2016-09-30 15:00:00,11394.0
-2016-09-30 16:00:00,11267.0
-2016-09-30 17:00:00,11138.0
-2016-09-30 18:00:00,11042.0
-2016-09-30 19:00:00,10998.0
-2016-09-30 20:00:00,11152.0
-2016-09-30 21:00:00,11121.0
-2016-09-30 22:00:00,10832.0
-2016-09-30 23:00:00,10458.0
-2016-10-01 00:00:00,9808.0
-2016-09-29 01:00:00,9000.0
-2016-09-29 02:00:00,8586.0
-2016-09-29 03:00:00,8273.0
-2016-09-29 04:00:00,8091.0
-2016-09-29 05:00:00,8091.0
-2016-09-29 06:00:00,8253.0
-2016-09-29 07:00:00,8918.0
-2016-09-29 08:00:00,10056.0
-2016-09-29 09:00:00,10695.0
-2016-09-29 10:00:00,11026.0
-2016-09-29 11:00:00,11246.0
-2016-09-29 12:00:00,11410.0
-2016-09-29 13:00:00,11432.0
-2016-09-29 14:00:00,11462.0
-2016-09-29 15:00:00,11492.0
-2016-09-29 16:00:00,11408.0
-2016-09-29 17:00:00,11281.0
-2016-09-29 18:00:00,11204.0
-2016-09-29 19:00:00,11078.0
-2016-09-29 20:00:00,11225.0
-2016-09-29 21:00:00,11434.0
-2016-09-29 22:00:00,11146.0
-2016-09-29 23:00:00,10666.0
-2016-09-30 00:00:00,9902.0
-2016-09-28 01:00:00,8947.0
-2016-09-28 02:00:00,8459.0
-2016-09-28 03:00:00,8160.0
-2016-09-28 04:00:00,8019.0
-2016-09-28 05:00:00,7966.0
-2016-09-28 06:00:00,8151.0
-2016-09-28 07:00:00,8756.0
-2016-09-28 08:00:00,9778.0
-2016-09-28 09:00:00,10302.0
-2016-09-28 10:00:00,10562.0
-2016-09-28 11:00:00,10773.0
-2016-09-28 12:00:00,10946.0
-2016-09-28 13:00:00,10988.0
-2016-09-28 14:00:00,10973.0
-2016-09-28 15:00:00,10999.0
-2016-09-28 16:00:00,10956.0
-2016-09-28 17:00:00,10891.0
-2016-09-28 18:00:00,10864.0
-2016-09-28 19:00:00,10778.0
-2016-09-28 20:00:00,10925.0
-2016-09-28 21:00:00,11191.0
-2016-09-28 22:00:00,10922.0
-2016-09-28 23:00:00,10409.0
-2016-09-29 00:00:00,9640.0
-2016-09-27 01:00:00,9080.0
-2016-09-27 02:00:00,8583.0
-2016-09-27 03:00:00,8222.0
-2016-09-27 04:00:00,8048.0
-2016-09-27 05:00:00,7957.0
-2016-09-27 06:00:00,8136.0
-2016-09-27 07:00:00,8713.0
-2016-09-27 08:00:00,9712.0
-2016-09-27 09:00:00,10189.0
-2016-09-27 10:00:00,10509.0
-2016-09-27 11:00:00,10823.0
-2016-09-27 12:00:00,11116.0
-2016-09-27 13:00:00,11333.0
-2016-09-27 14:00:00,11416.0
-2016-09-27 15:00:00,11556.0
-2016-09-27 16:00:00,11542.0
-2016-09-27 17:00:00,11398.0
-2016-09-27 18:00:00,11292.0
-2016-09-27 19:00:00,11074.0
-2016-09-27 20:00:00,11085.0
-2016-09-27 21:00:00,11356.0
-2016-09-27 22:00:00,11087.0
-2016-09-27 23:00:00,10485.0
-2016-09-28 00:00:00,9679.0
-2016-09-26 01:00:00,10275.0
-2016-09-26 02:00:00,9453.0
-2016-09-26 03:00:00,8947.0
-2016-09-26 04:00:00,8659.0
-2016-09-26 05:00:00,8498.0
-2016-09-26 06:00:00,8636.0
-2016-09-26 07:00:00,9301.0
-2016-09-26 08:00:00,10304.0
-2016-09-26 09:00:00,10811.0
-2016-09-26 10:00:00,11085.0
-2016-09-26 11:00:00,11430.0
-2016-09-26 12:00:00,11834.0
-2016-09-26 13:00:00,11927.0
-2016-09-26 14:00:00,11968.0
-2016-09-26 15:00:00,12075.0
-2016-09-26 16:00:00,12104.0
-2016-09-26 17:00:00,12050.0
-2016-09-26 18:00:00,11903.0
-2016-09-26 19:00:00,11582.0
-2016-09-26 20:00:00,11359.0
-2016-09-26 21:00:00,11600.0
-2016-09-26 22:00:00,11217.0
-2016-09-26 23:00:00,10650.0
-2016-09-27 00:00:00,9879.0
-2016-09-25 01:00:00,10013.0
-2016-09-25 02:00:00,9362.0
-2016-09-25 03:00:00,8944.0
-2016-09-25 04:00:00,8633.0
-2016-09-25 05:00:00,8460.0
-2016-09-25 06:00:00,8354.0
-2016-09-25 07:00:00,8430.0
-2016-09-25 08:00:00,8499.0
-2016-09-25 09:00:00,8565.0
-2016-09-25 10:00:00,9146.0
-2016-09-25 11:00:00,9888.0
-2016-09-25 12:00:00,10681.0
-2016-09-25 13:00:00,11486.0
-2016-09-25 14:00:00,12179.0
-2016-09-25 15:00:00,13028.0
-2016-09-25 16:00:00,13554.0
-2016-09-25 17:00:00,13876.0
-2016-09-25 18:00:00,13965.0
-2016-09-25 19:00:00,13809.0
-2016-09-25 20:00:00,13567.0
-2016-09-25 21:00:00,13847.0
-2016-09-25 22:00:00,13510.0
-2016-09-25 23:00:00,12790.0
-2016-09-26 00:00:00,11502.0
-2016-09-24 01:00:00,10670.0
-2016-09-24 02:00:00,9942.0
-2016-09-24 03:00:00,9501.0
-2016-09-24 04:00:00,9156.0
-2016-09-24 05:00:00,8961.0
-2016-09-24 06:00:00,8946.0
-2016-09-24 07:00:00,9191.0
-2016-09-24 08:00:00,9579.0
-2016-09-24 09:00:00,9869.0
-2016-09-24 10:00:00,10363.0
-2016-09-24 11:00:00,10786.0
-2016-09-24 12:00:00,11071.0
-2016-09-24 13:00:00,11318.0
-2016-09-24 14:00:00,11555.0
-2016-09-24 15:00:00,11810.0
-2016-09-24 16:00:00,12096.0
-2016-09-24 17:00:00,12286.0
-2016-09-24 18:00:00,12219.0
-2016-09-24 19:00:00,11917.0
-2016-09-24 20:00:00,11647.0
-2016-09-24 21:00:00,11871.0
-2016-09-24 22:00:00,11645.0
-2016-09-24 23:00:00,11256.0
-2016-09-25 00:00:00,10623.0
-2016-09-23 01:00:00,11473.0
-2016-09-23 02:00:00,10653.0
-2016-09-23 03:00:00,10096.0
-2016-09-23 04:00:00,9707.0
-2016-09-23 05:00:00,9564.0
-2016-09-23 06:00:00,9719.0
-2016-09-23 07:00:00,10437.0
-2016-09-23 08:00:00,11616.0
-2016-09-23 09:00:00,12269.0
-2016-09-23 10:00:00,12699.0
-2016-09-23 11:00:00,13082.0
-2016-09-23 12:00:00,13300.0
-2016-09-23 13:00:00,13423.0
-2016-09-23 14:00:00,13593.0
-2016-09-23 15:00:00,13842.0
-2016-09-23 16:00:00,13900.0
-2016-09-23 17:00:00,13846.0
-2016-09-23 18:00:00,13664.0
-2016-09-23 19:00:00,13312.0
-2016-09-23 20:00:00,13039.0
-2016-09-23 21:00:00,13187.0
-2016-09-23 22:00:00,12849.0
-2016-09-23 23:00:00,12343.0
-2016-09-24 00:00:00,11533.0
-2016-09-22 01:00:00,10484.0
-2016-09-22 02:00:00,9818.0
-2016-09-22 03:00:00,9410.0
-2016-09-22 04:00:00,9181.0
-2016-09-22 05:00:00,9068.0
-2016-09-22 06:00:00,9298.0
-2016-09-22 07:00:00,9977.0
-2016-09-22 08:00:00,11058.0
-2016-09-22 09:00:00,11691.0
-2016-09-22 10:00:00,12296.0
-2016-09-22 11:00:00,12750.0
-2016-09-22 12:00:00,13229.0
-2016-09-22 13:00:00,13513.0
-2016-09-22 14:00:00,13744.0
-2016-09-22 15:00:00,14107.0
-2016-09-22 16:00:00,14443.0
-2016-09-22 17:00:00,14588.0
-2016-09-22 18:00:00,14705.0
-2016-09-22 19:00:00,14565.0
-2016-09-22 20:00:00,14499.0
-2016-09-22 21:00:00,14739.0
-2016-09-22 22:00:00,14362.0
-2016-09-22 23:00:00,13620.0
-2016-09-23 00:00:00,12519.0
-2016-09-21 01:00:00,10983.0
-2016-09-21 02:00:00,10315.0
-2016-09-21 03:00:00,9875.0
-2016-09-21 04:00:00,9610.0
-2016-09-21 05:00:00,9482.0
-2016-09-21 06:00:00,9686.0
-2016-09-21 07:00:00,10396.0
-2016-09-21 08:00:00,11581.0
-2016-09-21 09:00:00,12505.0
-2016-09-21 10:00:00,12791.0
-2016-09-21 11:00:00,12875.0
-2016-09-21 12:00:00,13413.0
-2016-09-21 13:00:00,13691.0
-2016-09-21 14:00:00,13685.0
-2016-09-21 15:00:00,13617.0
-2016-09-21 16:00:00,13444.0
-2016-09-21 17:00:00,13201.0
-2016-09-21 18:00:00,13191.0
-2016-09-21 19:00:00,13281.0
-2016-09-21 20:00:00,13155.0
-2016-09-21 21:00:00,13403.0
-2016-09-21 22:00:00,13036.0
-2016-09-21 23:00:00,12364.0
-2016-09-22 00:00:00,11415.0
-2016-09-20 01:00:00,11399.0
-2016-09-20 02:00:00,10608.0
-2016-09-20 03:00:00,10105.0
-2016-09-20 04:00:00,9762.0
-2016-09-20 05:00:00,9609.0
-2016-09-20 06:00:00,9726.0
-2016-09-20 07:00:00,10451.0
-2016-09-20 08:00:00,11556.0
-2016-09-20 09:00:00,12228.0
-2016-09-20 10:00:00,13004.0
-2016-09-20 11:00:00,13789.0
-2016-09-20 12:00:00,14519.0
-2016-09-20 13:00:00,15038.0
-2016-09-20 14:00:00,15445.0
-2016-09-20 15:00:00,15860.0
-2016-09-20 16:00:00,16127.0
-2016-09-20 17:00:00,16276.0
-2016-09-20 18:00:00,16189.0
-2016-09-20 19:00:00,15713.0
-2016-09-20 20:00:00,14787.0
-2016-09-20 21:00:00,14511.0
-2016-09-20 22:00:00,13912.0
-2016-09-20 23:00:00,12993.0
-2016-09-21 00:00:00,11955.0
-2016-09-19 01:00:00,10050.0
-2016-09-19 02:00:00,9409.0
-2016-09-19 03:00:00,9023.0
-2016-09-19 04:00:00,8756.0
-2016-09-19 05:00:00,8684.0
-2016-09-19 06:00:00,8853.0
-2016-09-19 07:00:00,9573.0
-2016-09-19 08:00:00,10512.0
-2016-09-19 09:00:00,11264.0
-2016-09-19 10:00:00,11990.0
-2016-09-19 11:00:00,12693.0
-2016-09-19 12:00:00,13457.0
-2016-09-19 13:00:00,14147.0
-2016-09-19 14:00:00,14747.0
-2016-09-19 15:00:00,15436.0
-2016-09-19 16:00:00,15930.0
-2016-09-19 17:00:00,16299.0
-2016-09-19 18:00:00,16430.0
-2016-09-19 19:00:00,15931.0
-2016-09-19 20:00:00,15346.0
-2016-09-19 21:00:00,15283.0
-2016-09-19 22:00:00,14697.0
-2016-09-19 23:00:00,13736.0
-2016-09-20 00:00:00,12559.0
-2016-09-18 01:00:00,10106.0
-2016-09-18 02:00:00,9388.0
-2016-09-18 03:00:00,8940.0
-2016-09-18 04:00:00,8578.0
-2016-09-18 05:00:00,8404.0
-2016-09-18 06:00:00,8268.0
-2016-09-18 07:00:00,8331.0
-2016-09-18 08:00:00,8368.0
-2016-09-18 09:00:00,8516.0
-2016-09-18 10:00:00,9155.0
-2016-09-18 11:00:00,9820.0
-2016-09-18 12:00:00,10450.0
-2016-09-18 13:00:00,10965.0
-2016-09-18 14:00:00,11467.0
-2016-09-18 15:00:00,11929.0
-2016-09-18 16:00:00,12428.0
-2016-09-18 17:00:00,12792.0
-2016-09-18 18:00:00,13078.0
-2016-09-18 19:00:00,13014.0
-2016-09-18 20:00:00,12644.0
-2016-09-18 21:00:00,12736.0
-2016-09-18 22:00:00,12387.0
-2016-09-18 23:00:00,11770.0
-2016-09-19 00:00:00,10909.0
-2016-09-17 01:00:00,11940.0
-2016-09-17 02:00:00,11000.0
-2016-09-17 03:00:00,10405.0
-2016-09-17 04:00:00,9919.0
-2016-09-17 05:00:00,9613.0
-2016-09-17 06:00:00,9506.0
-2016-09-17 07:00:00,9694.0
-2016-09-17 08:00:00,10046.0
-2016-09-17 09:00:00,10348.0
-2016-09-17 10:00:00,10991.0
-2016-09-17 11:00:00,11793.0
-2016-09-17 12:00:00,12425.0
-2016-09-17 13:00:00,12962.0
-2016-09-17 14:00:00,13378.0
-2016-09-17 15:00:00,13647.0
-2016-09-17 16:00:00,13849.0
-2016-09-17 17:00:00,13922.0
-2016-09-17 18:00:00,13874.0
-2016-09-17 19:00:00,13428.0
-2016-09-17 20:00:00,12751.0
-2016-09-17 21:00:00,12626.0
-2016-09-17 22:00:00,12184.0
-2016-09-17 23:00:00,11611.0
-2016-09-18 00:00:00,10841.0
-2016-09-16 01:00:00,10564.0
-2016-09-16 02:00:00,9852.0
-2016-09-16 03:00:00,9370.0
-2016-09-16 04:00:00,9073.0
-2016-09-16 05:00:00,8935.0
-2016-09-16 06:00:00,9024.0
-2016-09-16 07:00:00,9731.0
-2016-09-16 08:00:00,10800.0
-2016-09-16 09:00:00,11427.0
-2016-09-16 10:00:00,12022.0
-2016-09-16 11:00:00,12608.0
-2016-09-16 12:00:00,13476.0
-2016-09-16 13:00:00,14266.0
-2016-09-16 14:00:00,14500.0
-2016-09-16 15:00:00,14721.0
-2016-09-16 16:00:00,15273.0
-2016-09-16 17:00:00,15660.0
-2016-09-16 18:00:00,15647.0
-2016-09-16 19:00:00,15238.0
-2016-09-16 20:00:00,14729.0
-2016-09-16 21:00:00,14697.0
-2016-09-16 22:00:00,14335.0
-2016-09-16 23:00:00,13761.0
-2016-09-17 00:00:00,12866.0
-2016-09-15 01:00:00,10192.0
-2016-09-15 02:00:00,9537.0
-2016-09-15 03:00:00,9161.0
-2016-09-15 04:00:00,8908.0
-2016-09-15 05:00:00,8772.0
-2016-09-15 06:00:00,8964.0
-2016-09-15 07:00:00,9583.0
-2016-09-15 08:00:00,10523.0
-2016-09-15 09:00:00,11152.0
-2016-09-15 10:00:00,11750.0
-2016-09-15 11:00:00,12209.0
-2016-09-15 12:00:00,12638.0
-2016-09-15 13:00:00,12991.0
-2016-09-15 14:00:00,13396.0
-2016-09-15 15:00:00,13821.0
-2016-09-15 16:00:00,14096.0
-2016-09-15 17:00:00,14330.0
-2016-09-15 18:00:00,14388.0
-2016-09-15 19:00:00,14040.0
-2016-09-15 20:00:00,13398.0
-2016-09-15 21:00:00,13469.0
-2016-09-15 22:00:00,13168.0
-2016-09-15 23:00:00,12487.0
-2016-09-16 00:00:00,11476.0
-2016-09-14 01:00:00,11502.0
-2016-09-14 02:00:00,10685.0
-2016-09-14 03:00:00,10111.0
-2016-09-14 04:00:00,9747.0
-2016-09-14 05:00:00,9600.0
-2016-09-14 06:00:00,9672.0
-2016-09-14 07:00:00,10297.0
-2016-09-14 08:00:00,11358.0
-2016-09-14 09:00:00,11886.0
-2016-09-14 10:00:00,12258.0
-2016-09-14 11:00:00,12754.0
-2016-09-14 12:00:00,13177.0
-2016-09-14 13:00:00,13479.0
-2016-09-14 14:00:00,13689.0
-2016-09-14 15:00:00,13828.0
-2016-09-14 16:00:00,13844.0
-2016-09-14 17:00:00,13989.0
-2016-09-14 18:00:00,13900.0
-2016-09-14 19:00:00,13485.0
-2016-09-14 20:00:00,12842.0
-2016-09-14 21:00:00,12963.0
-2016-09-14 22:00:00,12698.0
-2016-09-14 23:00:00,11994.0
-2016-09-15 00:00:00,11087.0
-2016-09-13 01:00:00,10406.0
-2016-09-13 02:00:00,9787.0
-2016-09-13 03:00:00,9353.0
-2016-09-13 04:00:00,9060.0
-2016-09-13 05:00:00,8971.0
-2016-09-13 06:00:00,9091.0
-2016-09-13 07:00:00,9786.0
-2016-09-13 08:00:00,10724.0
-2016-09-13 09:00:00,11406.0
-2016-09-13 10:00:00,12171.0
-2016-09-13 11:00:00,12868.0
-2016-09-13 12:00:00,13556.0
-2016-09-13 13:00:00,14180.0
-2016-09-13 14:00:00,14873.0
-2016-09-13 15:00:00,15555.0
-2016-09-13 16:00:00,15941.0
-2016-09-13 17:00:00,16156.0
-2016-09-13 18:00:00,16143.0
-2016-09-13 19:00:00,15690.0
-2016-09-13 20:00:00,15044.0
-2016-09-13 21:00:00,15052.0
-2016-09-13 22:00:00,14679.0
-2016-09-13 23:00:00,13840.0
-2016-09-14 00:00:00,12677.0
-2016-09-12 01:00:00,9320.0
-2016-09-12 02:00:00,8847.0
-2016-09-12 03:00:00,8500.0
-2016-09-12 04:00:00,8383.0
-2016-09-12 05:00:00,8252.0
-2016-09-12 06:00:00,8513.0
-2016-09-12 07:00:00,9183.0
-2016-09-12 08:00:00,10128.0
-2016-09-12 09:00:00,10798.0
-2016-09-12 10:00:00,11494.0
-2016-09-12 11:00:00,12031.0
-2016-09-12 12:00:00,12581.0
-2016-09-12 13:00:00,12907.0
-2016-09-12 14:00:00,13254.0
-2016-09-12 15:00:00,13616.0
-2016-09-12 16:00:00,13899.0
-2016-09-12 17:00:00,14151.0
-2016-09-12 18:00:00,14227.0
-2016-09-12 19:00:00,13922.0
-2016-09-12 20:00:00,13347.0
-2016-09-12 21:00:00,13368.0
-2016-09-12 22:00:00,13071.0
-2016-09-12 23:00:00,12328.0
-2016-09-13 00:00:00,11360.0
-2016-09-11 01:00:00,9272.0
-2016-09-11 02:00:00,8723.0
-2016-09-11 03:00:00,8302.0
-2016-09-11 04:00:00,8115.0
-2016-09-11 05:00:00,7953.0
-2016-09-11 06:00:00,7850.0
-2016-09-11 07:00:00,7871.0
-2016-09-11 08:00:00,8009.0
-2016-09-11 09:00:00,8204.0
-2016-09-11 10:00:00,8707.0
-2016-09-11 11:00:00,9225.0
-2016-09-11 12:00:00,9787.0
-2016-09-11 13:00:00,10081.0
-2016-09-11 14:00:00,10414.0
-2016-09-11 15:00:00,10711.0
-2016-09-11 16:00:00,10965.0
-2016-09-11 17:00:00,11193.0
-2016-09-11 18:00:00,11341.0
-2016-09-11 19:00:00,11393.0
-2016-09-11 20:00:00,11170.0
-2016-09-11 21:00:00,11241.0
-2016-09-11 22:00:00,11140.0
-2016-09-11 23:00:00,10667.0
-2016-09-12 00:00:00,9900.0
-2016-09-10 01:00:00,11386.0
-2016-09-10 02:00:00,10654.0
-2016-09-10 03:00:00,10075.0
-2016-09-10 04:00:00,9700.0
-2016-09-10 05:00:00,9505.0
-2016-09-10 06:00:00,9467.0
-2016-09-10 07:00:00,9713.0
-2016-09-10 08:00:00,10068.0
-2016-09-10 09:00:00,10471.0
-2016-09-10 10:00:00,11081.0
-2016-09-10 11:00:00,11500.0
-2016-09-10 12:00:00,11714.0
-2016-09-10 13:00:00,11628.0
-2016-09-10 14:00:00,11636.0
-2016-09-10 15:00:00,11690.0
-2016-09-10 16:00:00,11685.0
-2016-09-10 17:00:00,11686.0
-2016-09-10 18:00:00,11712.0
-2016-09-10 19:00:00,11455.0
-2016-09-10 20:00:00,11100.0
-2016-09-10 21:00:00,11118.0
-2016-09-10 22:00:00,11039.0
-2016-09-10 23:00:00,10566.0
-2016-09-11 00:00:00,9974.0
-2016-09-09 01:00:00,12475.0
-2016-09-09 02:00:00,11505.0
-2016-09-09 03:00:00,10809.0
-2016-09-09 04:00:00,10355.0
-2016-09-09 05:00:00,10086.0
-2016-09-09 06:00:00,10169.0
-2016-09-09 07:00:00,10797.0
-2016-09-09 08:00:00,11728.0
-2016-09-09 09:00:00,12451.0
-2016-09-09 10:00:00,13125.0
-2016-09-09 11:00:00,13653.0
-2016-09-09 12:00:00,14144.0
-2016-09-09 13:00:00,14598.0
-2016-09-09 14:00:00,14945.0
-2016-09-09 15:00:00,15372.0
-2016-09-09 16:00:00,15725.0
-2016-09-09 17:00:00,15827.0
-2016-09-09 18:00:00,15571.0
-2016-09-09 19:00:00,15022.0
-2016-09-09 20:00:00,14283.0
-2016-09-09 21:00:00,14051.0
-2016-09-09 22:00:00,13757.0
-2016-09-09 23:00:00,13191.0
-2016-09-10 00:00:00,12354.0
-2016-09-08 01:00:00,13940.0
-2016-09-08 02:00:00,13007.0
-2016-09-08 03:00:00,12343.0
-2016-09-08 04:00:00,11903.0
-2016-09-08 05:00:00,11686.0
-2016-09-08 06:00:00,11778.0
-2016-09-08 07:00:00,12410.0
-2016-09-08 08:00:00,13376.0
-2016-09-08 09:00:00,13948.0
-2016-09-08 10:00:00,14290.0
-2016-09-08 11:00:00,14569.0
-2016-09-08 12:00:00,14808.0
-2016-09-08 13:00:00,15090.0
-2016-09-08 14:00:00,15532.0
-2016-09-08 15:00:00,16140.0
-2016-09-08 16:00:00,16453.0
-2016-09-08 17:00:00,16713.0
-2016-09-08 18:00:00,16996.0
-2016-09-08 19:00:00,17092.0
-2016-09-08 20:00:00,16544.0
-2016-09-08 21:00:00,16317.0
-2016-09-08 22:00:00,15992.0
-2016-09-08 23:00:00,15014.0
-2016-09-09 00:00:00,13763.0
-2016-09-07 01:00:00,15205.0
-2016-09-07 02:00:00,14212.0
-2016-09-07 03:00:00,13418.0
-2016-09-07 04:00:00,12871.0
-2016-09-07 05:00:00,12580.0
-2016-09-07 06:00:00,12597.0
-2016-09-07 07:00:00,13293.0
-2016-09-07 08:00:00,14314.0
-2016-09-07 09:00:00,15212.0
-2016-09-07 10:00:00,16061.0
-2016-09-07 11:00:00,16910.0
-2016-09-07 12:00:00,17731.0
-2016-09-07 13:00:00,18517.0
-2016-09-07 14:00:00,18693.0
-2016-09-07 15:00:00,18968.0
-2016-09-07 16:00:00,19653.0
-2016-09-07 17:00:00,20153.0
-2016-09-07 18:00:00,20014.0
-2016-09-07 19:00:00,19336.0
-2016-09-07 20:00:00,18812.0
-2016-09-07 21:00:00,18493.0
-2016-09-07 22:00:00,17688.0
-2016-09-07 23:00:00,16568.0
-2016-09-08 00:00:00,15227.0
-2016-09-06 01:00:00,12826.0
-2016-09-06 02:00:00,12023.0
-2016-09-06 03:00:00,11518.0
-2016-09-06 04:00:00,11118.0
-2016-09-06 05:00:00,10945.0
-2016-09-06 06:00:00,11133.0
-2016-09-06 07:00:00,11893.0
-2016-09-06 08:00:00,13070.0
-2016-09-06 09:00:00,14196.0
-2016-09-06 10:00:00,15374.0
-2016-09-06 11:00:00,16582.0
-2016-09-06 12:00:00,17838.0
-2016-09-06 13:00:00,18906.0
-2016-09-06 14:00:00,19808.0
-2016-09-06 15:00:00,20319.0
-2016-09-06 16:00:00,20612.0
-2016-09-06 17:00:00,20927.0
-2016-09-06 18:00:00,20949.0
-2016-09-06 19:00:00,20740.0
-2016-09-06 20:00:00,20061.0
-2016-09-06 21:00:00,19686.0
-2016-09-06 22:00:00,19193.0
-2016-09-06 23:00:00,18102.0
-2016-09-07 00:00:00,16651.0
-2016-09-05 01:00:00,9957.0
-2016-09-05 02:00:00,9353.0
-2016-09-05 03:00:00,8920.0
-2016-09-05 04:00:00,8617.0
-2016-09-05 05:00:00,8496.0
-2016-09-05 06:00:00,8432.0
-2016-09-05 07:00:00,8592.0
-2016-09-05 08:00:00,8619.0
-2016-09-05 09:00:00,8927.0
-2016-09-05 10:00:00,9647.0
-2016-09-05 11:00:00,10693.0
-2016-09-05 12:00:00,11930.0
-2016-09-05 13:00:00,13134.0
-2016-09-05 14:00:00,14166.0
-2016-09-05 15:00:00,14921.0
-2016-09-05 16:00:00,15535.0
-2016-09-05 17:00:00,15993.0
-2016-09-05 18:00:00,16295.0
-2016-09-05 19:00:00,16350.0
-2016-09-05 20:00:00,15958.0
-2016-09-05 21:00:00,15800.0
-2016-09-05 22:00:00,15643.0
-2016-09-05 23:00:00,14939.0
-2016-09-06 00:00:00,13829.0
-2016-09-04 01:00:00,9723.0
-2016-09-04 02:00:00,9151.0
-2016-09-04 03:00:00,8723.0
-2016-09-04 04:00:00,8459.0
-2016-09-04 05:00:00,8224.0
-2016-09-04 06:00:00,8160.0
-2016-09-04 07:00:00,8128.0
-2016-09-04 08:00:00,8074.0
-2016-09-04 09:00:00,8290.0
-2016-09-04 10:00:00,8935.0
-2016-09-04 11:00:00,9611.0
-2016-09-04 12:00:00,10388.0
-2016-09-04 13:00:00,10936.0
-2016-09-04 14:00:00,11172.0
-2016-09-04 15:00:00,11597.0
-2016-09-04 16:00:00,11959.0
-2016-09-04 17:00:00,12126.0
-2016-09-04 18:00:00,12017.0
-2016-09-04 19:00:00,11823.0
-2016-09-04 20:00:00,11493.0
-2016-09-04 21:00:00,11525.0
-2016-09-04 22:00:00,11536.0
-2016-09-04 23:00:00,11187.0
-2016-09-05 00:00:00,10597.0
-2016-09-03 01:00:00,10109.0
-2016-09-03 02:00:00,9454.0
-2016-09-03 03:00:00,9038.0
-2016-09-03 04:00:00,8718.0
-2016-09-03 05:00:00,8525.0
-2016-09-03 06:00:00,8470.0
-2016-09-03 07:00:00,8588.0
-2016-09-03 08:00:00,8646.0
-2016-09-03 09:00:00,8994.0
-2016-09-03 10:00:00,9665.0
-2016-09-03 11:00:00,10276.0
-2016-09-03 12:00:00,10734.0
-2016-09-03 13:00:00,11134.0
-2016-09-03 14:00:00,11401.0
-2016-09-03 15:00:00,11613.0
-2016-09-03 16:00:00,11834.0
-2016-09-03 17:00:00,12029.0
-2016-09-03 18:00:00,12109.0
-2016-09-03 19:00:00,11946.0
-2016-09-03 20:00:00,11466.0
-2016-09-03 21:00:00,11324.0
-2016-09-03 22:00:00,11312.0
-2016-09-03 23:00:00,10930.0
-2016-09-04 00:00:00,10349.0
-2016-09-02 01:00:00,10157.0
-2016-09-02 02:00:00,9541.0
-2016-09-02 03:00:00,9125.0
-2016-09-02 04:00:00,8883.0
-2016-09-02 05:00:00,8772.0
-2016-09-02 06:00:00,8887.0
-2016-09-02 07:00:00,9498.0
-2016-09-02 08:00:00,10254.0
-2016-09-02 09:00:00,11006.0
-2016-09-02 10:00:00,11674.0
-2016-09-02 11:00:00,12172.0
-2016-09-02 12:00:00,12544.0
-2016-09-02 13:00:00,12800.0
-2016-09-02 14:00:00,12977.0
-2016-09-02 15:00:00,13146.0
-2016-09-02 16:00:00,13281.0
-2016-09-02 17:00:00,13311.0
-2016-09-02 18:00:00,13292.0
-2016-09-02 19:00:00,13009.0
-2016-09-02 20:00:00,12411.0
-2016-09-02 21:00:00,12187.0
-2016-09-02 22:00:00,12074.0
-2016-09-02 23:00:00,11645.0
-2016-09-03 00:00:00,10883.0
-2016-09-01 01:00:00,10633.0
-2016-09-01 02:00:00,9937.0
-2016-09-01 03:00:00,9471.0
-2016-09-01 04:00:00,9158.0
-2016-09-01 05:00:00,9160.0
-2016-09-01 06:00:00,9295.0
-2016-09-01 07:00:00,9902.0
-2016-09-01 08:00:00,10831.0
-2016-09-01 09:00:00,11501.0
-2016-09-01 10:00:00,12071.0
-2016-09-01 11:00:00,12480.0
-2016-09-01 12:00:00,12877.0
-2016-09-01 13:00:00,13044.0
-2016-09-01 14:00:00,13096.0
-2016-09-01 15:00:00,13188.0
-2016-09-01 16:00:00,13256.0
-2016-09-01 17:00:00,13161.0
-2016-09-01 18:00:00,13087.0
-2016-09-01 19:00:00,12865.0
-2016-09-01 20:00:00,12361.0
-2016-09-01 21:00:00,12298.0
-2016-09-01 22:00:00,12340.0
-2016-09-01 23:00:00,11827.0
-2016-09-02 00:00:00,10977.0
-2016-08-31 01:00:00,12473.0
-2016-08-31 02:00:00,11616.0
-2016-08-31 03:00:00,10971.0
-2016-08-31 04:00:00,10593.0
-2016-08-31 05:00:00,10362.0
-2016-08-31 06:00:00,10475.0
-2016-08-31 07:00:00,11189.0
-2016-08-31 08:00:00,12109.0
-2016-08-31 09:00:00,12756.0
-2016-08-31 10:00:00,13373.0
-2016-08-31 11:00:00,14074.0
-2016-08-31 12:00:00,14761.0
-2016-08-31 13:00:00,15198.0
-2016-08-31 14:00:00,15416.0
-2016-08-31 15:00:00,15650.0
-2016-08-31 16:00:00,15769.0
-2016-08-31 17:00:00,15720.0
-2016-08-31 18:00:00,15481.0
-2016-08-31 19:00:00,14858.0
-2016-08-31 20:00:00,13944.0
-2016-08-31 21:00:00,13500.0
-2016-08-31 22:00:00,13311.0
-2016-08-31 23:00:00,12583.0
-2016-09-01 00:00:00,11593.0
-2016-08-30 01:00:00,12647.0
-2016-08-30 02:00:00,11815.0
-2016-08-30 03:00:00,11208.0
-2016-08-30 04:00:00,10805.0
-2016-08-30 05:00:00,10620.0
-2016-08-30 06:00:00,10795.0
-2016-08-30 07:00:00,11584.0
-2016-08-30 08:00:00,12812.0
-2016-08-30 09:00:00,13540.0
-2016-08-30 10:00:00,13879.0
-2016-08-30 11:00:00,14397.0
-2016-08-30 12:00:00,15188.0
-2016-08-30 13:00:00,15727.0
-2016-08-30 14:00:00,16486.0
-2016-08-30 15:00:00,17380.0
-2016-08-30 16:00:00,17923.0
-2016-08-30 17:00:00,18180.0
-2016-08-30 18:00:00,17992.0
-2016-08-30 19:00:00,17216.0
-2016-08-30 20:00:00,16438.0
-2016-08-30 21:00:00,16054.0
-2016-08-30 22:00:00,15833.0
-2016-08-30 23:00:00,14924.0
-2016-08-31 00:00:00,13660.0
-2016-08-29 01:00:00,11732.0
-2016-08-29 02:00:00,11015.0
-2016-08-29 03:00:00,10471.0
-2016-08-29 04:00:00,10151.0
-2016-08-29 05:00:00,9990.0
-2016-08-29 06:00:00,10233.0
-2016-08-29 07:00:00,11000.0
-2016-08-29 08:00:00,12012.0
-2016-08-29 09:00:00,13159.0
-2016-08-29 10:00:00,14267.0
-2016-08-29 11:00:00,15253.0
-2016-08-29 12:00:00,16328.0
-2016-08-29 13:00:00,17206.0
-2016-08-29 14:00:00,17945.0
-2016-08-29 15:00:00,18517.0
-2016-08-29 16:00:00,18466.0
-2016-08-29 17:00:00,17880.0
-2016-08-29 18:00:00,17259.0
-2016-08-29 19:00:00,16687.0
-2016-08-29 20:00:00,16271.0
-2016-08-29 21:00:00,16122.0
-2016-08-29 22:00:00,15814.0
-2016-08-29 23:00:00,15004.0
-2016-08-30 00:00:00,13786.0
-2016-08-28 01:00:00,12261.0
-2016-08-28 02:00:00,11464.0
-2016-08-28 03:00:00,10833.0
-2016-08-28 04:00:00,10368.0
-2016-08-28 05:00:00,10046.0
-2016-08-28 06:00:00,9876.0
-2016-08-28 07:00:00,9821.0
-2016-08-28 08:00:00,9798.0
-2016-08-28 09:00:00,10222.0
-2016-08-28 10:00:00,11320.0
-2016-08-28 11:00:00,12522.0
-2016-08-28 12:00:00,13669.0
-2016-08-28 13:00:00,14595.0
-2016-08-28 14:00:00,15231.0
-2016-08-28 15:00:00,15599.0
-2016-08-28 16:00:00,15464.0
-2016-08-28 17:00:00,15296.0
-2016-08-28 18:00:00,15161.0
-2016-08-28 19:00:00,14725.0
-2016-08-28 20:00:00,14290.0
-2016-08-28 21:00:00,14183.0
-2016-08-28 22:00:00,14153.0
-2016-08-28 23:00:00,13513.0
-2016-08-29 00:00:00,12674.0
-2016-08-27 01:00:00,11614.0
-2016-08-27 02:00:00,10904.0
-2016-08-27 03:00:00,10303.0
-2016-08-27 04:00:00,9915.0
-2016-08-27 05:00:00,9707.0
-2016-08-27 06:00:00,9702.0
-2016-08-27 07:00:00,9982.0
-2016-08-27 08:00:00,10421.0
-2016-08-27 09:00:00,10806.0
-2016-08-27 10:00:00,11371.0
-2016-08-27 11:00:00,11919.0
-2016-08-27 12:00:00,12633.0
-2016-08-27 13:00:00,13112.0
-2016-08-27 14:00:00,13692.0
-2016-08-27 15:00:00,14301.0
-2016-08-27 16:00:00,14900.0
-2016-08-27 17:00:00,15315.0
-2016-08-27 18:00:00,15468.0
-2016-08-27 19:00:00,15291.0
-2016-08-27 20:00:00,14742.0
-2016-08-27 21:00:00,14551.0
-2016-08-27 22:00:00,14504.0
-2016-08-27 23:00:00,13976.0
-2016-08-28 00:00:00,13158.0
-2016-08-26 01:00:00,11815.0
-2016-08-26 02:00:00,10937.0
-2016-08-26 03:00:00,10342.0
-2016-08-26 04:00:00,9923.0
-2016-08-26 05:00:00,9696.0
-2016-08-26 06:00:00,9807.0
-2016-08-26 07:00:00,10386.0
-2016-08-26 08:00:00,11218.0
-2016-08-26 09:00:00,12035.0
-2016-08-26 10:00:00,12817.0
-2016-08-26 11:00:00,13423.0
-2016-08-26 12:00:00,14191.0
-2016-08-26 13:00:00,14801.0
-2016-08-26 14:00:00,15142.0
-2016-08-26 15:00:00,15709.0
-2016-08-26 16:00:00,16072.0
-2016-08-26 17:00:00,16038.0
-2016-08-26 18:00:00,15948.0
-2016-08-26 19:00:00,15429.0
-2016-08-26 20:00:00,14667.0
-2016-08-26 21:00:00,14177.0
-2016-08-26 22:00:00,13974.0
-2016-08-26 23:00:00,13451.0
-2016-08-27 00:00:00,12618.0
-2016-08-25 01:00:00,13200.0
-2016-08-25 02:00:00,12278.0
-2016-08-25 03:00:00,11598.0
-2016-08-25 04:00:00,11131.0
-2016-08-25 05:00:00,10903.0
-2016-08-25 06:00:00,10946.0
-2016-08-25 07:00:00,11584.0
-2016-08-25 08:00:00,12563.0
-2016-08-25 09:00:00,13364.0
-2016-08-25 10:00:00,13915.0
-2016-08-25 11:00:00,14375.0
-2016-08-25 12:00:00,14930.0
-2016-08-25 13:00:00,15458.0
-2016-08-25 14:00:00,16133.0
-2016-08-25 15:00:00,16825.0
-2016-08-25 16:00:00,17308.0
-2016-08-25 17:00:00,17415.0
-2016-08-25 18:00:00,17036.0
-2016-08-25 19:00:00,16367.0
-2016-08-25 20:00:00,15740.0
-2016-08-25 21:00:00,15352.0
-2016-08-25 22:00:00,15171.0
-2016-08-25 23:00:00,14272.0
-2016-08-26 00:00:00,13059.0
-2016-08-24 01:00:00,12043.0
-2016-08-24 02:00:00,11286.0
-2016-08-24 03:00:00,10721.0
-2016-08-24 04:00:00,10386.0
-2016-08-24 05:00:00,10216.0
-2016-08-24 06:00:00,10344.0
-2016-08-24 07:00:00,11058.0
-2016-08-24 08:00:00,12034.0
-2016-08-24 09:00:00,13025.0
-2016-08-24 10:00:00,13624.0
-2016-08-24 11:00:00,13850.0
-2016-08-24 12:00:00,14262.0
-2016-08-24 13:00:00,14554.0
-2016-08-24 14:00:00,15161.0
-2016-08-24 15:00:00,15625.0
-2016-08-24 16:00:00,16209.0
-2016-08-24 17:00:00,16888.0
-2016-08-24 18:00:00,17458.0
-2016-08-24 19:00:00,17623.0
-2016-08-24 20:00:00,17194.0
-2016-08-24 21:00:00,16729.0
-2016-08-24 22:00:00,16585.0
-2016-08-24 23:00:00,15752.0
-2016-08-25 00:00:00,14444.0
-2016-08-23 01:00:00,10782.0
-2016-08-23 02:00:00,10088.0
-2016-08-23 03:00:00,9565.0
-2016-08-23 04:00:00,9218.0
-2016-08-23 05:00:00,9099.0
-2016-08-23 06:00:00,9242.0
-2016-08-23 07:00:00,9867.0
-2016-08-23 08:00:00,10618.0
-2016-08-23 09:00:00,11518.0
-2016-08-23 10:00:00,12328.0
-2016-08-23 11:00:00,13051.0
-2016-08-23 12:00:00,13812.0
-2016-08-23 13:00:00,14330.0
-2016-08-23 14:00:00,14784.0
-2016-08-23 15:00:00,15216.0
-2016-08-23 16:00:00,15595.0
-2016-08-23 17:00:00,15925.0
-2016-08-23 18:00:00,16005.0
-2016-08-23 19:00:00,15632.0
-2016-08-23 20:00:00,14992.0
-2016-08-23 21:00:00,14700.0
-2016-08-23 22:00:00,14694.0
-2016-08-23 23:00:00,14038.0
-2016-08-24 00:00:00,13071.0
-2016-08-22 01:00:00,9535.0
-2016-08-22 02:00:00,8997.0
-2016-08-22 03:00:00,8576.0
-2016-08-22 04:00:00,8421.0
-2016-08-22 05:00:00,8392.0
-2016-08-22 06:00:00,8586.0
-2016-08-22 07:00:00,9203.0
-2016-08-22 08:00:00,10004.0
-2016-08-22 09:00:00,10877.0
-2016-08-22 10:00:00,11636.0
-2016-08-22 11:00:00,12211.0
-2016-08-22 12:00:00,12710.0
-2016-08-22 13:00:00,13095.0
-2016-08-22 14:00:00,13401.0
-2016-08-22 15:00:00,13814.0
-2016-08-22 16:00:00,14145.0
-2016-08-22 17:00:00,14455.0
-2016-08-22 18:00:00,14625.0
-2016-08-22 19:00:00,14543.0
-2016-08-22 20:00:00,14062.0
-2016-08-22 21:00:00,13574.0
-2016-08-22 22:00:00,13510.0
-2016-08-22 23:00:00,12802.0
-2016-08-23 00:00:00,11768.0
-2016-08-21 01:00:00,10244.0
-2016-08-21 02:00:00,9561.0
-2016-08-21 03:00:00,9072.0
-2016-08-21 04:00:00,8708.0
-2016-08-21 05:00:00,8468.0
-2016-08-21 06:00:00,8377.0
-2016-08-21 07:00:00,8366.0
-2016-08-21 08:00:00,8300.0
-2016-08-21 09:00:00,8513.0
-2016-08-21 10:00:00,8889.0
-2016-08-21 11:00:00,9356.0
-2016-08-21 12:00:00,9815.0
-2016-08-21 13:00:00,10296.0
-2016-08-21 14:00:00,10628.0
-2016-08-21 15:00:00,10889.0
-2016-08-21 16:00:00,11152.0
-2016-08-21 17:00:00,11309.0
-2016-08-21 18:00:00,11426.0
-2016-08-21 19:00:00,11404.0
-2016-08-21 20:00:00,11298.0
-2016-08-21 21:00:00,11082.0
-2016-08-21 22:00:00,11282.0
-2016-08-21 23:00:00,10889.0
-2016-08-22 00:00:00,10178.0
-2016-08-20 01:00:00,13039.0
-2016-08-20 02:00:00,12096.0
-2016-08-20 03:00:00,11410.0
-2016-08-20 04:00:00,10937.0
-2016-08-20 05:00:00,10726.0
-2016-08-20 06:00:00,10662.0
-2016-08-20 07:00:00,10895.0
-2016-08-20 08:00:00,11144.0
-2016-08-20 09:00:00,11620.0
-2016-08-20 10:00:00,12260.0
-2016-08-20 11:00:00,12791.0
-2016-08-20 12:00:00,13237.0
-2016-08-20 13:00:00,13627.0
-2016-08-20 14:00:00,13981.0
-2016-08-20 15:00:00,14357.0
-2016-08-20 16:00:00,14471.0
-2016-08-20 17:00:00,14466.0
-2016-08-20 18:00:00,14126.0
-2016-08-20 19:00:00,13613.0
-2016-08-20 20:00:00,12968.0
-2016-08-20 21:00:00,12322.0
-2016-08-20 22:00:00,12256.0
-2016-08-20 23:00:00,11772.0
-2016-08-21 00:00:00,11079.0
-2016-08-19 01:00:00,13405.0
-2016-08-19 02:00:00,12369.0
-2016-08-19 03:00:00,11588.0
-2016-08-19 04:00:00,11060.0
-2016-08-19 05:00:00,10790.0
-2016-08-19 06:00:00,10825.0
-2016-08-19 07:00:00,11363.0
-2016-08-19 08:00:00,12176.0
-2016-08-19 09:00:00,12990.0
-2016-08-19 10:00:00,13782.0
-2016-08-19 11:00:00,14464.0
-2016-08-19 12:00:00,14588.0
-2016-08-19 13:00:00,14763.0
-2016-08-19 14:00:00,15393.0
-2016-08-19 15:00:00,16188.0
-2016-08-19 16:00:00,16946.0
-2016-08-19 17:00:00,17623.0
-2016-08-19 18:00:00,17925.0
-2016-08-19 19:00:00,17806.0
-2016-08-19 20:00:00,17106.0
-2016-08-19 21:00:00,16378.0
-2016-08-19 22:00:00,16110.0
-2016-08-19 23:00:00,15349.0
-2016-08-20 00:00:00,14180.0
-2016-08-18 01:00:00,13322.0
-2016-08-18 02:00:00,12308.0
-2016-08-18 03:00:00,11609.0
-2016-08-18 04:00:00,11143.0
-2016-08-18 05:00:00,10909.0
-2016-08-18 06:00:00,11040.0
-2016-08-18 07:00:00,11777.0
-2016-08-18 08:00:00,12771.0
-2016-08-18 09:00:00,13477.0
-2016-08-18 10:00:00,14058.0
-2016-08-18 11:00:00,15013.0
-2016-08-18 12:00:00,16106.0
-2016-08-18 13:00:00,17054.0
-2016-08-18 14:00:00,17943.0
-2016-08-18 15:00:00,18714.0
-2016-08-18 16:00:00,18902.0
-2016-08-18 17:00:00,19033.0
-2016-08-18 18:00:00,19170.0
-2016-08-18 19:00:00,18884.0
-2016-08-18 20:00:00,17984.0
-2016-08-18 21:00:00,17297.0
-2016-08-18 22:00:00,17043.0
-2016-08-18 23:00:00,16095.0
-2016-08-19 00:00:00,14720.0
-2016-08-17 01:00:00,13174.0
-2016-08-17 02:00:00,12156.0
-2016-08-17 03:00:00,11378.0
-2016-08-17 04:00:00,10880.0
-2016-08-17 05:00:00,10585.0
-2016-08-17 06:00:00,10710.0
-2016-08-17 07:00:00,11335.0
-2016-08-17 08:00:00,12194.0
-2016-08-17 09:00:00,13247.0
-2016-08-17 10:00:00,14227.0
-2016-08-17 11:00:00,15110.0
-2016-08-17 12:00:00,16170.0
-2016-08-17 13:00:00,17110.0
-2016-08-17 14:00:00,17883.0
-2016-08-17 15:00:00,18521.0
-2016-08-17 16:00:00,18871.0
-2016-08-17 17:00:00,19019.0
-2016-08-17 18:00:00,18899.0
-2016-08-17 19:00:00,18439.0
-2016-08-17 20:00:00,17746.0
-2016-08-17 21:00:00,16986.0
-2016-08-17 22:00:00,16853.0
-2016-08-17 23:00:00,15851.0
-2016-08-18 00:00:00,14679.0
-2016-08-16 01:00:00,12209.0
-2016-08-16 02:00:00,11476.0
-2016-08-16 03:00:00,10988.0
-2016-08-16 04:00:00,10656.0
-2016-08-16 05:00:00,10476.0
-2016-08-16 06:00:00,10652.0
-2016-08-16 07:00:00,11351.0
-2016-08-16 08:00:00,12165.0
-2016-08-16 09:00:00,13119.0
-2016-08-16 10:00:00,14014.0
-2016-08-16 11:00:00,14888.0
-2016-08-16 12:00:00,15919.0
-2016-08-16 13:00:00,16591.0
-2016-08-16 14:00:00,17215.0
-2016-08-16 15:00:00,17770.0
-2016-08-16 16:00:00,17919.0
-2016-08-16 17:00:00,18132.0
-2016-08-16 18:00:00,18413.0
-2016-08-16 19:00:00,18370.0
-2016-08-16 20:00:00,17696.0
-2016-08-16 21:00:00,16928.0
-2016-08-16 22:00:00,16613.0
-2016-08-16 23:00:00,15757.0
-2016-08-17 00:00:00,14478.0
-2016-08-15 01:00:00,12255.0
-2016-08-15 02:00:00,11431.0
-2016-08-15 03:00:00,10838.0
-2016-08-15 04:00:00,10474.0
-2016-08-15 05:00:00,10250.0
-2016-08-15 06:00:00,10452.0
-2016-08-15 07:00:00,11079.0
-2016-08-15 08:00:00,11869.0
-2016-08-15 09:00:00,12733.0
-2016-08-15 10:00:00,13542.0
-2016-08-15 11:00:00,14152.0
-2016-08-15 12:00:00,14761.0
-2016-08-15 13:00:00,15200.0
-2016-08-15 14:00:00,15483.0
-2016-08-15 15:00:00,15684.0
-2016-08-15 16:00:00,15734.0
-2016-08-15 17:00:00,15585.0
-2016-08-15 18:00:00,15405.0
-2016-08-15 19:00:00,15216.0
-2016-08-15 20:00:00,14838.0
-2016-08-15 21:00:00,14712.0
-2016-08-15 22:00:00,14726.0
-2016-08-15 23:00:00,14143.0
-2016-08-16 00:00:00,13231.0
-2016-08-14 01:00:00,12299.0
-2016-08-14 02:00:00,11422.0
-2016-08-14 03:00:00,10694.0
-2016-08-14 04:00:00,10176.0
-2016-08-14 05:00:00,9812.0
-2016-08-14 06:00:00,9642.0
-2016-08-14 07:00:00,9544.0
-2016-08-14 08:00:00,9484.0
-2016-08-14 09:00:00,10126.0
-2016-08-14 10:00:00,11206.0
-2016-08-14 11:00:00,12357.0
-2016-08-14 12:00:00,13366.0
-2016-08-14 13:00:00,14125.0
-2016-08-14 14:00:00,14725.0
-2016-08-14 15:00:00,15129.0
-2016-08-14 16:00:00,15542.0
-2016-08-14 17:00:00,15691.0
-2016-08-14 18:00:00,15852.0
-2016-08-14 19:00:00,15819.0
-2016-08-14 20:00:00,15514.0
-2016-08-14 21:00:00,14922.0
-2016-08-14 22:00:00,14829.0
-2016-08-14 23:00:00,14244.0
-2016-08-15 00:00:00,13331.0
-2016-08-13 01:00:00,13193.0
-2016-08-13 02:00:00,12319.0
-2016-08-13 03:00:00,11745.0
-2016-08-13 04:00:00,11430.0
-2016-08-13 05:00:00,11209.0
-2016-08-13 06:00:00,11197.0
-2016-08-13 07:00:00,11390.0
-2016-08-13 08:00:00,11652.0
-2016-08-13 09:00:00,12214.0
-2016-08-13 10:00:00,13111.0
-2016-08-13 11:00:00,14119.0
-2016-08-13 12:00:00,15035.0
-2016-08-13 13:00:00,15656.0
-2016-08-13 14:00:00,15947.0
-2016-08-13 15:00:00,15997.0
-2016-08-13 16:00:00,15941.0
-2016-08-13 17:00:00,15935.0
-2016-08-13 18:00:00,16162.0
-2016-08-13 19:00:00,16141.0
-2016-08-13 20:00:00,15702.0
-2016-08-13 21:00:00,15009.0
-2016-08-13 22:00:00,14826.0
-2016-08-13 23:00:00,14260.0
-2016-08-14 00:00:00,13340.0
-2016-08-12 01:00:00,15641.0
-2016-08-12 02:00:00,14665.0
-2016-08-12 03:00:00,13991.0
-2016-08-12 04:00:00,13521.0
-2016-08-12 05:00:00,13141.0
-2016-08-12 06:00:00,13060.0
-2016-08-12 07:00:00,13547.0
-2016-08-12 08:00:00,14194.0
-2016-08-12 09:00:00,14998.0
-2016-08-12 10:00:00,15704.0
-2016-08-12 11:00:00,16158.0
-2016-08-12 12:00:00,16509.0
-2016-08-12 13:00:00,16384.0
-2016-08-12 14:00:00,16343.0
-2016-08-12 15:00:00,16479.0
-2016-08-12 16:00:00,16443.0
-2016-08-12 17:00:00,16337.0
-2016-08-12 18:00:00,16399.0
-2016-08-12 19:00:00,16271.0
-2016-08-12 20:00:00,16097.0
-2016-08-12 21:00:00,15907.0
-2016-08-12 22:00:00,15635.0
-2016-08-12 23:00:00,15074.0
-2016-08-13 00:00:00,14151.0
-2016-08-11 01:00:00,14577.0
-2016-08-11 02:00:00,13478.0
-2016-08-11 03:00:00,12700.0
-2016-08-11 04:00:00,12146.0
-2016-08-11 05:00:00,11843.0
-2016-08-11 06:00:00,11867.0
-2016-08-11 07:00:00,12468.0
-2016-08-11 08:00:00,13256.0
-2016-08-11 09:00:00,14575.0
-2016-08-11 10:00:00,16078.0
-2016-08-11 11:00:00,17444.0
-2016-08-11 12:00:00,18812.0
-2016-08-11 13:00:00,19792.0
-2016-08-11 14:00:00,20430.0
-2016-08-11 15:00:00,20885.0
-2016-08-11 16:00:00,21175.0
-2016-08-11 17:00:00,21086.0
-2016-08-11 18:00:00,20292.0
-2016-08-11 19:00:00,19336.0
-2016-08-11 20:00:00,18909.0
-2016-08-11 21:00:00,18537.0
-2016-08-11 22:00:00,18484.0
-2016-08-11 23:00:00,17935.0
-2016-08-12 00:00:00,16817.0
-2016-08-10 01:00:00,13802.0
-2016-08-10 02:00:00,12712.0
-2016-08-10 03:00:00,11926.0
-2016-08-10 04:00:00,11368.0
-2016-08-10 05:00:00,11053.0
-2016-08-10 06:00:00,11122.0
-2016-08-10 07:00:00,11685.0
-2016-08-10 08:00:00,12461.0
-2016-08-10 09:00:00,13788.0
-2016-08-10 10:00:00,15113.0
-2016-08-10 11:00:00,16370.0
-2016-08-10 12:00:00,17515.0
-2016-08-10 13:00:00,18327.0
-2016-08-10 14:00:00,19051.0
-2016-08-10 15:00:00,19520.0
-2016-08-10 16:00:00,19829.0
-2016-08-10 17:00:00,20017.0
-2016-08-10 18:00:00,20082.0
-2016-08-10 19:00:00,19867.0
-2016-08-10 20:00:00,19266.0
-2016-08-10 21:00:00,18547.0
-2016-08-10 22:00:00,18226.0
-2016-08-10 23:00:00,17332.0
-2016-08-11 00:00:00,16017.0
-2016-08-09 01:00:00,12924.0
-2016-08-09 02:00:00,11969.0
-2016-08-09 03:00:00,11213.0
-2016-08-09 04:00:00,10680.0
-2016-08-09 05:00:00,10395.0
-2016-08-09 06:00:00,10470.0
-2016-08-09 07:00:00,11017.0
-2016-08-09 08:00:00,11717.0
-2016-08-09 09:00:00,12793.0
-2016-08-09 10:00:00,13839.0
-2016-08-09 11:00:00,14793.0
-2016-08-09 12:00:00,15864.0
-2016-08-09 13:00:00,16801.0
-2016-08-09 14:00:00,17603.0
-2016-08-09 15:00:00,18282.0
-2016-08-09 16:00:00,18635.0
-2016-08-09 17:00:00,18729.0
-2016-08-09 18:00:00,18880.0
-2016-08-09 19:00:00,18799.0
-2016-08-09 20:00:00,18114.0
-2016-08-09 21:00:00,17439.0
-2016-08-09 22:00:00,17157.0
-2016-08-09 23:00:00,16417.0
-2016-08-10 00:00:00,15147.0
-2016-08-08 01:00:00,11547.0
-2016-08-08 02:00:00,10838.0
-2016-08-08 03:00:00,10343.0
-2016-08-08 04:00:00,9999.0
-2016-08-08 05:00:00,9883.0
-2016-08-08 06:00:00,10112.0
-2016-08-08 07:00:00,10775.0
-2016-08-08 08:00:00,11604.0
-2016-08-08 09:00:00,12688.0
-2016-08-08 10:00:00,13865.0
-2016-08-08 11:00:00,14742.0
-2016-08-08 12:00:00,15663.0
-2016-08-08 13:00:00,16417.0
-2016-08-08 14:00:00,17005.0
-2016-08-08 15:00:00,17523.0
-2016-08-08 16:00:00,17857.0
-2016-08-08 17:00:00,18041.0
-2016-08-08 18:00:00,18070.0
-2016-08-08 19:00:00,17877.0
-2016-08-08 20:00:00,17228.0
-2016-08-08 21:00:00,16351.0
-2016-08-08 22:00:00,15995.0
-2016-08-08 23:00:00,15337.0
-2016-08-09 00:00:00,14144.0
-2016-08-07 01:00:00,11264.0
-2016-08-07 02:00:00,10493.0
-2016-08-07 03:00:00,9888.0
-2016-08-07 04:00:00,9466.0
-2016-08-07 05:00:00,9113.0
-2016-08-07 06:00:00,8972.0
-2016-08-07 07:00:00,8857.0
-2016-08-07 08:00:00,8828.0
-2016-08-07 09:00:00,9382.0
-2016-08-07 10:00:00,10264.0
-2016-08-07 11:00:00,11192.0
-2016-08-07 12:00:00,12158.0
-2016-08-07 13:00:00,12934.0
-2016-08-07 14:00:00,13528.0
-2016-08-07 15:00:00,13945.0
-2016-08-07 16:00:00,14193.0
-2016-08-07 17:00:00,14260.0
-2016-08-07 18:00:00,14248.0
-2016-08-07 19:00:00,13944.0
-2016-08-07 20:00:00,13555.0
-2016-08-07 21:00:00,13175.0
-2016-08-07 22:00:00,13279.0
-2016-08-07 23:00:00,13020.0
-2016-08-08 00:00:00,12311.0
-2016-08-06 01:00:00,12864.0
-2016-08-06 02:00:00,11763.0
-2016-08-06 03:00:00,11033.0
-2016-08-06 04:00:00,10442.0
-2016-08-06 05:00:00,10006.0
-2016-08-06 06:00:00,9860.0
-2016-08-06 07:00:00,9937.0
-2016-08-06 08:00:00,10019.0
-2016-08-06 09:00:00,10794.0
-2016-08-06 10:00:00,11839.0
-2016-08-06 11:00:00,12893.0
-2016-08-06 12:00:00,13727.0
-2016-08-06 13:00:00,14295.0
-2016-08-06 14:00:00,14600.0
-2016-08-06 15:00:00,14832.0
-2016-08-06 16:00:00,15026.0
-2016-08-06 17:00:00,15177.0
-2016-08-06 18:00:00,15213.0
-2016-08-06 19:00:00,15050.0
-2016-08-06 20:00:00,14550.0
-2016-08-06 21:00:00,13827.0
-2016-08-06 22:00:00,13538.0
-2016-08-06 23:00:00,13031.0
-2016-08-07 00:00:00,12209.0
-2016-08-05 01:00:00,15050.0
-2016-08-05 02:00:00,13731.0
-2016-08-05 03:00:00,12861.0
-2016-08-05 04:00:00,12277.0
-2016-08-05 05:00:00,11980.0
-2016-08-05 06:00:00,11976.0
-2016-08-05 07:00:00,12473.0
-2016-08-05 08:00:00,13110.0
-2016-08-05 09:00:00,13867.0
-2016-08-05 10:00:00,14504.0
-2016-08-05 11:00:00,14984.0
-2016-08-05 12:00:00,15557.0
-2016-08-05 13:00:00,15911.0
-2016-08-05 14:00:00,16395.0
-2016-08-05 15:00:00,17230.0
-2016-08-05 16:00:00,18056.0
-2016-08-05 17:00:00,18119.0
-2016-08-05 18:00:00,18169.0
-2016-08-05 19:00:00,17944.0
-2016-08-05 20:00:00,17295.0
-2016-08-05 21:00:00,16432.0
-2016-08-05 22:00:00,15881.0
-2016-08-05 23:00:00,15241.0
-2016-08-06 00:00:00,14040.0
-2016-08-04 01:00:00,14181.0
-2016-08-04 02:00:00,13090.0
-2016-08-04 03:00:00,12254.0
-2016-08-04 04:00:00,11599.0
-2016-08-04 05:00:00,11274.0
-2016-08-04 06:00:00,11285.0
-2016-08-04 07:00:00,11750.0
-2016-08-04 08:00:00,12515.0
-2016-08-04 09:00:00,13875.0
-2016-08-04 10:00:00,15264.0
-2016-08-04 11:00:00,16533.0
-2016-08-04 12:00:00,17686.0
-2016-08-04 13:00:00,18551.0
-2016-08-04 14:00:00,19257.0
-2016-08-04 15:00:00,19858.0
-2016-08-04 16:00:00,20175.0
-2016-08-04 17:00:00,20421.0
-2016-08-04 18:00:00,20501.0
-2016-08-04 19:00:00,20323.0
-2016-08-04 20:00:00,19797.0
-2016-08-04 21:00:00,18959.0
-2016-08-04 22:00:00,18636.0
-2016-08-04 23:00:00,17791.0
-2016-08-05 00:00:00,16507.0
-2016-08-03 01:00:00,13486.0
-2016-08-03 02:00:00,12449.0
-2016-08-03 03:00:00,11719.0
-2016-08-03 04:00:00,11193.0
-2016-08-03 05:00:00,10891.0
-2016-08-03 06:00:00,10928.0
-2016-08-03 07:00:00,11442.0
-2016-08-03 08:00:00,12255.0
-2016-08-03 09:00:00,13566.0
-2016-08-03 10:00:00,14929.0
-2016-08-03 11:00:00,16199.0
-2016-08-03 12:00:00,17388.0
-2016-08-03 13:00:00,18263.0
-2016-08-03 14:00:00,18998.0
-2016-08-03 15:00:00,19505.0
-2016-08-03 16:00:00,19840.0
-2016-08-03 17:00:00,20009.0
-2016-08-03 18:00:00,19983.0
-2016-08-03 19:00:00,19648.0
-2016-08-03 20:00:00,18932.0
-2016-08-03 21:00:00,18176.0
-2016-08-03 22:00:00,17740.0
-2016-08-03 23:00:00,16953.0
-2016-08-04 00:00:00,15570.0
-2016-08-02 01:00:00,12583.0
-2016-08-02 02:00:00,11611.0
-2016-08-02 03:00:00,10939.0
-2016-08-02 04:00:00,10514.0
-2016-08-02 05:00:00,10304.0
-2016-08-02 06:00:00,10421.0
-2016-08-02 07:00:00,10937.0
-2016-08-02 08:00:00,11772.0
-2016-08-02 09:00:00,12959.0
-2016-08-02 10:00:00,14102.0
-2016-08-02 11:00:00,15214.0
-2016-08-02 12:00:00,16170.0
-2016-08-02 13:00:00,16974.0
-2016-08-02 14:00:00,17745.0
-2016-08-02 15:00:00,18369.0
-2016-08-02 16:00:00,18695.0
-2016-08-02 17:00:00,18883.0
-2016-08-02 18:00:00,18823.0
-2016-08-02 19:00:00,18552.0
-2016-08-02 20:00:00,17920.0
-2016-08-02 21:00:00,17141.0
-2016-08-02 22:00:00,16744.0
-2016-08-02 23:00:00,16075.0
-2016-08-03 00:00:00,14846.0
-2016-08-01 01:00:00,11463.0
-2016-08-01 02:00:00,10684.0
-2016-08-01 03:00:00,10167.0
-2016-08-01 04:00:00,9787.0
-2016-08-01 05:00:00,9666.0
-2016-08-01 06:00:00,9836.0
-2016-08-01 07:00:00,10452.0
-2016-08-01 08:00:00,11275.0
-2016-08-01 09:00:00,12561.0
-2016-08-01 10:00:00,13640.0
-2016-08-01 11:00:00,14556.0
-2016-08-01 12:00:00,15533.0
-2016-08-01 13:00:00,16295.0
-2016-08-01 14:00:00,16936.0
-2016-08-01 15:00:00,17488.0
-2016-08-01 16:00:00,17803.0
-2016-08-01 17:00:00,17911.0
-2016-08-01 18:00:00,17893.0
-2016-08-01 19:00:00,17586.0
-2016-08-01 20:00:00,16980.0
-2016-08-01 21:00:00,16174.0
-2016-08-01 22:00:00,15674.0
-2016-08-01 23:00:00,14973.0
-2016-08-02 00:00:00,13865.0
-2016-07-31 01:00:00,10985.0
-2016-07-31 02:00:00,10278.0
-2016-07-31 03:00:00,9759.0
-2016-07-31 04:00:00,9325.0
-2016-07-31 05:00:00,9094.0
-2016-07-31 06:00:00,8926.0
-2016-07-31 07:00:00,8877.0
-2016-07-31 08:00:00,8809.0
-2016-07-31 09:00:00,9362.0
-2016-07-31 10:00:00,10175.0
-2016-07-31 11:00:00,11121.0
-2016-07-31 12:00:00,12075.0
-2016-07-31 13:00:00,12821.0
-2016-07-31 14:00:00,13462.0
-2016-07-31 15:00:00,13916.0
-2016-07-31 16:00:00,14332.0
-2016-07-31 17:00:00,14522.0
-2016-07-31 18:00:00,14584.0
-2016-07-31 19:00:00,14475.0
-2016-07-31 20:00:00,14139.0
-2016-07-31 21:00:00,13529.0
-2016-07-31 22:00:00,13414.0
-2016-07-31 23:00:00,13163.0
-2016-08-01 00:00:00,12385.0
-2016-07-30 01:00:00,11806.0
-2016-07-30 02:00:00,11046.0
-2016-07-30 03:00:00,10521.0
-2016-07-30 04:00:00,10090.0
-2016-07-30 05:00:00,9868.0
-2016-07-30 06:00:00,9784.0
-2016-07-30 07:00:00,9936.0
-2016-07-30 08:00:00,10102.0
-2016-07-30 09:00:00,10598.0
-2016-07-30 10:00:00,11442.0
-2016-07-30 11:00:00,12120.0
-2016-07-30 12:00:00,12564.0
-2016-07-30 13:00:00,12821.0
-2016-07-30 14:00:00,13138.0
-2016-07-30 15:00:00,13463.0
-2016-07-30 16:00:00,13730.0
-2016-07-30 17:00:00,13876.0
-2016-07-30 18:00:00,14011.0
-2016-07-30 19:00:00,13851.0
-2016-07-30 20:00:00,13300.0
-2016-07-30 21:00:00,12689.0
-2016-07-30 22:00:00,12551.0
-2016-07-30 23:00:00,12336.0
-2016-07-31 00:00:00,11665.0
-2016-07-29 01:00:00,12527.0
-2016-07-29 02:00:00,11681.0
-2016-07-29 03:00:00,11132.0
-2016-07-29 04:00:00,10708.0
-2016-07-29 05:00:00,10496.0
-2016-07-29 06:00:00,10650.0
-2016-07-29 07:00:00,11181.0
-2016-07-29 08:00:00,11966.0
-2016-07-29 09:00:00,13058.0
-2016-07-29 10:00:00,14064.0
-2016-07-29 11:00:00,14874.0
-2016-07-29 12:00:00,15670.0
-2016-07-29 13:00:00,16204.0
-2016-07-29 14:00:00,16590.0
-2016-07-29 15:00:00,16573.0
-2016-07-29 16:00:00,15950.0
-2016-07-29 17:00:00,15264.0
-2016-07-29 18:00:00,14891.0
-2016-07-29 19:00:00,14472.0
-2016-07-29 20:00:00,14051.0
-2016-07-29 21:00:00,13724.0
-2016-07-29 22:00:00,13746.0
-2016-07-29 23:00:00,13450.0
-2016-07-30 00:00:00,12632.0
-2016-07-28 01:00:00,14098.0
-2016-07-28 02:00:00,12982.0
-2016-07-28 03:00:00,12177.0
-2016-07-28 04:00:00,11596.0
-2016-07-28 05:00:00,11280.0
-2016-07-28 06:00:00,11292.0
-2016-07-28 07:00:00,11794.0
-2016-07-28 08:00:00,12601.0
-2016-07-28 09:00:00,13822.0
-2016-07-28 10:00:00,14960.0
-2016-07-28 11:00:00,15967.0
-2016-07-28 12:00:00,16993.0
-2016-07-28 13:00:00,17629.0
-2016-07-28 14:00:00,17990.0
-2016-07-28 15:00:00,17845.0
-2016-07-28 16:00:00,17198.0
-2016-07-28 17:00:00,16513.0
-2016-07-28 18:00:00,15930.0
-2016-07-28 19:00:00,15742.0
-2016-07-28 20:00:00,15388.0
-2016-07-28 21:00:00,14989.0
-2016-07-28 22:00:00,14868.0
-2016-07-28 23:00:00,14476.0
-2016-07-29 00:00:00,13582.0
-2016-07-27 01:00:00,13555.0
-2016-07-27 02:00:00,12464.0
-2016-07-27 03:00:00,11652.0
-2016-07-27 04:00:00,11147.0
-2016-07-27 05:00:00,10799.0
-2016-07-27 06:00:00,10862.0
-2016-07-27 07:00:00,11300.0
-2016-07-27 08:00:00,12153.0
-2016-07-27 09:00:00,13461.0
-2016-07-27 10:00:00,14744.0
-2016-07-27 11:00:00,15932.0
-2016-07-27 12:00:00,17000.0
-2016-07-27 13:00:00,17860.0
-2016-07-27 14:00:00,18432.0
-2016-07-27 15:00:00,18982.0
-2016-07-27 16:00:00,19370.0
-2016-07-27 17:00:00,19612.0
-2016-07-27 18:00:00,19627.0
-2016-07-27 19:00:00,19396.0
-2016-07-27 20:00:00,18725.0
-2016-07-27 21:00:00,17891.0
-2016-07-27 22:00:00,17521.0
-2016-07-27 23:00:00,16789.0
-2016-07-28 00:00:00,15453.0
-2016-07-26 01:00:00,13474.0
-2016-07-26 02:00:00,12383.0
-2016-07-26 03:00:00,11600.0
-2016-07-26 04:00:00,11070.0
-2016-07-26 05:00:00,10767.0
-2016-07-26 06:00:00,10809.0
-2016-07-26 07:00:00,11280.0
-2016-07-26 08:00:00,12127.0
-2016-07-26 09:00:00,13414.0
-2016-07-26 10:00:00,14626.0
-2016-07-26 11:00:00,15704.0
-2016-07-26 12:00:00,16688.0
-2016-07-26 13:00:00,17312.0
-2016-07-26 14:00:00,17860.0
-2016-07-26 15:00:00,18352.0
-2016-07-26 16:00:00,18657.0
-2016-07-26 17:00:00,18879.0
-2016-07-26 18:00:00,18982.0
-2016-07-26 19:00:00,18865.0
-2016-07-26 20:00:00,18369.0
-2016-07-26 21:00:00,17567.0
-2016-07-26 22:00:00,16972.0
-2016-07-26 23:00:00,16288.0
-2016-07-27 00:00:00,14933.0
-2016-07-25 01:00:00,13351.0
-2016-07-25 02:00:00,12512.0
-2016-07-25 03:00:00,11822.0
-2016-07-25 04:00:00,11384.0
-2016-07-25 05:00:00,11143.0
-2016-07-25 06:00:00,11256.0
-2016-07-25 07:00:00,11828.0
-2016-07-25 08:00:00,12643.0
-2016-07-25 09:00:00,13963.0
-2016-07-25 10:00:00,15088.0
-2016-07-25 11:00:00,15991.0
-2016-07-25 12:00:00,16861.0
-2016-07-25 13:00:00,17473.0
-2016-07-25 14:00:00,17985.0
-2016-07-25 15:00:00,18503.0
-2016-07-25 16:00:00,18829.0
-2016-07-25 17:00:00,19026.0
-2016-07-25 18:00:00,19043.0
-2016-07-25 19:00:00,18871.0
-2016-07-25 20:00:00,18383.0
-2016-07-25 21:00:00,17561.0
-2016-07-25 22:00:00,16926.0
-2016-07-25 23:00:00,16222.0
-2016-07-26 00:00:00,14852.0
-2016-07-24 01:00:00,12881.0
-2016-07-24 02:00:00,12038.0
-2016-07-24 03:00:00,11365.0
-2016-07-24 04:00:00,10945.0
-2016-07-24 05:00:00,10644.0
-2016-07-24 06:00:00,10431.0
-2016-07-24 07:00:00,10373.0
-2016-07-24 08:00:00,10399.0
-2016-07-24 09:00:00,11058.0
-2016-07-24 10:00:00,12079.0
-2016-07-24 11:00:00,13506.0
-2016-07-24 12:00:00,15072.0
-2016-07-24 13:00:00,16335.0
-2016-07-24 14:00:00,17318.0
-2016-07-24 15:00:00,18150.0
-2016-07-24 16:00:00,18755.0
-2016-07-24 17:00:00,18895.0
-2016-07-24 18:00:00,19004.0
-2016-07-24 19:00:00,18814.0
-2016-07-24 20:00:00,17779.0
-2016-07-24 21:00:00,16443.0
-2016-07-24 22:00:00,15896.0
-2016-07-24 23:00:00,15367.0
-2016-07-25 00:00:00,14434.0
-2016-07-23 01:00:00,15479.0
-2016-07-23 02:00:00,14489.0
-2016-07-23 03:00:00,13758.0
-2016-07-23 04:00:00,13152.0
-2016-07-23 05:00:00,12735.0
-2016-07-23 06:00:00,12495.0
-2016-07-23 07:00:00,12479.0
-2016-07-23 08:00:00,12662.0
-2016-07-23 09:00:00,13667.0
-2016-07-23 10:00:00,15214.0
-2016-07-23 11:00:00,16611.0
-2016-07-23 12:00:00,17725.0
-2016-07-23 13:00:00,18420.0
-2016-07-23 14:00:00,18656.0
-2016-07-23 15:00:00,18857.0
-2016-07-23 16:00:00,18877.0
-2016-07-23 17:00:00,18850.0
-2016-07-23 18:00:00,18554.0
-2016-07-23 19:00:00,17977.0
-2016-07-23 20:00:00,17058.0
-2016-07-23 21:00:00,15956.0
-2016-07-23 22:00:00,15375.0
-2016-07-23 23:00:00,14763.0
-2016-07-24 00:00:00,13822.0
-2016-07-22 01:00:00,14177.0
-2016-07-22 02:00:00,13089.0
-2016-07-22 03:00:00,12396.0
-2016-07-22 04:00:00,11945.0
-2016-07-22 05:00:00,11578.0
-2016-07-22 06:00:00,11575.0
-2016-07-22 07:00:00,11979.0
-2016-07-22 08:00:00,12657.0
-2016-07-22 09:00:00,13735.0
-2016-07-22 10:00:00,14632.0
-2016-07-22 11:00:00,15495.0
-2016-07-22 12:00:00,16511.0
-2016-07-22 13:00:00,17336.0
-2016-07-22 14:00:00,18004.0
-2016-07-22 15:00:00,18610.0
-2016-07-22 16:00:00,19134.0
-2016-07-22 17:00:00,19555.0
-2016-07-22 18:00:00,19929.0
-2016-07-22 19:00:00,19972.0
-2016-07-22 20:00:00,19641.0
-2016-07-22 21:00:00,18905.0
-2016-07-22 22:00:00,18423.0
-2016-07-22 23:00:00,17879.0
-2016-07-23 00:00:00,16710.0
-2016-07-21 01:00:00,14399.0
-2016-07-21 02:00:00,13340.0
-2016-07-21 03:00:00,12666.0
-2016-07-21 04:00:00,12122.0
-2016-07-21 05:00:00,11844.0
-2016-07-21 06:00:00,11929.0
-2016-07-21 07:00:00,12488.0
-2016-07-21 08:00:00,13454.0
-2016-07-21 09:00:00,14786.0
-2016-07-21 10:00:00,16209.0
-2016-07-21 11:00:00,17599.0
-2016-07-21 12:00:00,18768.0
-2016-07-21 13:00:00,19616.0
-2016-07-21 14:00:00,19788.0
-2016-07-21 15:00:00,19308.0
-2016-07-21 16:00:00,19100.0
-2016-07-21 17:00:00,19340.0
-2016-07-21 18:00:00,19871.0
-2016-07-21 19:00:00,20296.0
-2016-07-21 20:00:00,20104.0
-2016-07-21 21:00:00,19458.0
-2016-07-21 22:00:00,18828.0
-2016-07-21 23:00:00,17130.0
-2016-07-22 00:00:00,15578.0
-2016-07-20 01:00:00,13462.0
-2016-07-20 02:00:00,12389.0
-2016-07-20 03:00:00,11616.0
-2016-07-20 04:00:00,11093.0
-2016-07-20 05:00:00,10815.0
-2016-07-20 06:00:00,10863.0
-2016-07-20 07:00:00,11329.0
-2016-07-20 08:00:00,12281.0
-2016-07-20 09:00:00,13644.0
-2016-07-20 10:00:00,14996.0
-2016-07-20 11:00:00,16259.0
-2016-07-20 12:00:00,17401.0
-2016-07-20 13:00:00,18306.0
-2016-07-20 14:00:00,18914.0
-2016-07-20 15:00:00,18788.0
-2016-07-20 16:00:00,18303.0
-2016-07-20 17:00:00,18314.0
-2016-07-20 18:00:00,18595.0
-2016-07-20 19:00:00,18713.0
-2016-07-20 20:00:00,18574.0
-2016-07-20 21:00:00,17979.0
-2016-07-20 22:00:00,17402.0
-2016-07-20 23:00:00,16820.0
-2016-07-21 00:00:00,15657.0
-2016-07-19 01:00:00,12861.0
-2016-07-19 02:00:00,11815.0
-2016-07-19 03:00:00,11068.0
-2016-07-19 04:00:00,10585.0
-2016-07-19 05:00:00,10325.0
-2016-07-19 06:00:00,10376.0
-2016-07-19 07:00:00,10830.0
-2016-07-19 08:00:00,11779.0
-2016-07-19 09:00:00,13097.0
-2016-07-19 10:00:00,14303.0
-2016-07-19 11:00:00,15401.0
-2016-07-19 12:00:00,16453.0
-2016-07-19 13:00:00,17277.0
-2016-07-19 14:00:00,17964.0
-2016-07-19 15:00:00,18569.0
-2016-07-19 16:00:00,18904.0
-2016-07-19 17:00:00,19029.0
-2016-07-19 18:00:00,18873.0
-2016-07-19 19:00:00,18494.0
-2016-07-19 20:00:00,17811.0
-2016-07-19 21:00:00,17039.0
-2016-07-19 22:00:00,16584.0
-2016-07-19 23:00:00,16067.0
-2016-07-20 00:00:00,14856.0
-2016-07-18 01:00:00,12784.0
-2016-07-18 02:00:00,11922.0
-2016-07-18 03:00:00,11321.0
-2016-07-18 04:00:00,10810.0
-2016-07-18 05:00:00,10544.0
-2016-07-18 06:00:00,10600.0
-2016-07-18 07:00:00,11095.0
-2016-07-18 08:00:00,12057.0
-2016-07-18 09:00:00,13362.0
-2016-07-18 10:00:00,14420.0
-2016-07-18 11:00:00,15139.0
-2016-07-18 12:00:00,15618.0
-2016-07-18 13:00:00,15807.0
-2016-07-18 14:00:00,16220.0
-2016-07-18 15:00:00,16785.0
-2016-07-18 16:00:00,17261.0
-2016-07-18 17:00:00,17617.0
-2016-07-18 18:00:00,17934.0
-2016-07-18 19:00:00,17907.0
-2016-07-18 20:00:00,17572.0
-2016-07-18 21:00:00,16834.0
-2016-07-18 22:00:00,16135.0
-2016-07-18 23:00:00,15501.0
-2016-07-19 00:00:00,14194.0
-2016-07-17 01:00:00,10341.0
-2016-07-17 02:00:00,9660.0
-2016-07-17 03:00:00,9137.0
-2016-07-17 04:00:00,8748.0
-2016-07-17 05:00:00,8610.0
-2016-07-17 06:00:00,8501.0
-2016-07-17 07:00:00,8456.0
-2016-07-17 08:00:00,8473.0
-2016-07-17 09:00:00,8891.0
-2016-07-17 10:00:00,9466.0
-2016-07-17 11:00:00,9974.0
-2016-07-17 12:00:00,10447.0
-2016-07-17 13:00:00,11102.0
-2016-07-17 14:00:00,11859.0
-2016-07-17 15:00:00,12591.0
-2016-07-17 16:00:00,13260.0
-2016-07-17 17:00:00,13848.0
-2016-07-17 18:00:00,14247.0
-2016-07-17 19:00:00,14507.0
-2016-07-17 20:00:00,14732.0
-2016-07-17 21:00:00,14681.0
-2016-07-17 22:00:00,14715.0
-2016-07-17 23:00:00,14719.0
-2016-07-18 00:00:00,13982.0
-2016-07-16 01:00:00,10263.0
-2016-07-16 02:00:00,9644.0
-2016-07-16 03:00:00,9187.0
-2016-07-16 04:00:00,8911.0
-2016-07-16 05:00:00,8708.0
-2016-07-16 06:00:00,8703.0
-2016-07-16 07:00:00,8692.0
-2016-07-16 08:00:00,8885.0
-2016-07-16 09:00:00,9504.0
-2016-07-16 10:00:00,10282.0
-2016-07-16 11:00:00,10918.0
-2016-07-16 12:00:00,11424.0
-2016-07-16 13:00:00,11767.0
-2016-07-16 14:00:00,12029.0
-2016-07-16 15:00:00,12225.0
-2016-07-16 16:00:00,12438.0
-2016-07-16 17:00:00,12765.0
-2016-07-16 18:00:00,12955.0
-2016-07-16 19:00:00,13012.0
-2016-07-16 20:00:00,12740.0
-2016-07-16 21:00:00,12274.0
-2016-07-16 22:00:00,11958.0
-2016-07-16 23:00:00,11725.0
-2016-07-17 00:00:00,11082.0
-2016-07-15 01:00:00,12712.0
-2016-07-15 02:00:00,11686.0
-2016-07-15 03:00:00,10953.0
-2016-07-15 04:00:00,10421.0
-2016-07-15 05:00:00,10045.0
-2016-07-15 06:00:00,10047.0
-2016-07-15 07:00:00,10363.0
-2016-07-15 08:00:00,11095.0
-2016-07-15 09:00:00,12111.0
-2016-07-15 10:00:00,13012.0
-2016-07-15 11:00:00,13651.0
-2016-07-15 12:00:00,14027.0
-2016-07-15 13:00:00,14153.0
-2016-07-15 14:00:00,14188.0
-2016-07-15 15:00:00,14152.0
-2016-07-15 16:00:00,13923.0
-2016-07-15 17:00:00,13571.0
-2016-07-15 18:00:00,13211.0
-2016-07-15 19:00:00,12807.0
-2016-07-15 20:00:00,12350.0
-2016-07-15 21:00:00,12005.0
-2016-07-15 22:00:00,11975.0
-2016-07-15 23:00:00,11851.0
-2016-07-16 00:00:00,11107.0
-2016-07-14 01:00:00,12479.0
-2016-07-14 02:00:00,11550.0
-2016-07-14 03:00:00,10931.0
-2016-07-14 04:00:00,10480.0
-2016-07-14 05:00:00,10261.0
-2016-07-14 06:00:00,10391.0
-2016-07-14 07:00:00,10898.0
-2016-07-14 08:00:00,11818.0
-2016-07-14 09:00:00,13033.0
-2016-07-14 10:00:00,14191.0
-2016-07-14 11:00:00,15225.0
-2016-07-14 12:00:00,16216.0
-2016-07-14 13:00:00,16862.0
-2016-07-14 14:00:00,17417.0
-2016-07-14 15:00:00,17863.0
-2016-07-14 16:00:00,18153.0
-2016-07-14 17:00:00,18281.0
-2016-07-14 18:00:00,18244.0
-2016-07-14 19:00:00,17951.0
-2016-07-14 20:00:00,17285.0
-2016-07-14 21:00:00,16296.0
-2016-07-14 22:00:00,15724.0
-2016-07-14 23:00:00,15182.0
-2016-07-15 00:00:00,13996.0
-2016-07-13 01:00:00,13940.0
-2016-07-13 02:00:00,12811.0
-2016-07-13 03:00:00,12055.0
-2016-07-13 04:00:00,11577.0
-2016-07-13 05:00:00,11259.0
-2016-07-13 06:00:00,11202.0
-2016-07-13 07:00:00,11545.0
-2016-07-13 08:00:00,12550.0
-2016-07-13 09:00:00,13987.0
-2016-07-13 10:00:00,14878.0
-2016-07-13 11:00:00,15425.0
-2016-07-13 12:00:00,16249.0
-2016-07-13 13:00:00,16979.0
-2016-07-13 14:00:00,17371.0
-2016-07-13 15:00:00,18056.0
-2016-07-13 16:00:00,18376.0
-2016-07-13 17:00:00,18421.0
-2016-07-13 18:00:00,18331.0
-2016-07-13 19:00:00,17689.0
-2016-07-13 20:00:00,17114.0
-2016-07-13 21:00:00,16336.0
-2016-07-13 22:00:00,15387.0
-2016-07-13 23:00:00,14791.0
-2016-07-14 00:00:00,13667.0
-2016-07-12 01:00:00,14964.0
-2016-07-12 02:00:00,13833.0
-2016-07-12 03:00:00,12992.0
-2016-07-12 04:00:00,12348.0
-2016-07-12 05:00:00,11976.0
-2016-07-12 06:00:00,11996.0
-2016-07-12 07:00:00,12363.0
-2016-07-12 08:00:00,13341.0
-2016-07-12 09:00:00,14468.0
-2016-07-12 10:00:00,15447.0
-2016-07-12 11:00:00,16492.0
-2016-07-12 12:00:00,17661.0
-2016-07-12 13:00:00,18604.0
-2016-07-12 14:00:00,19286.0
-2016-07-12 15:00:00,19740.0
-2016-07-12 16:00:00,19841.0
-2016-07-12 17:00:00,19712.0
-2016-07-12 18:00:00,19480.0
-2016-07-12 19:00:00,19285.0
-2016-07-12 20:00:00,18731.0
-2016-07-12 21:00:00,17956.0
-2016-07-12 22:00:00,17231.0
-2016-07-12 23:00:00,16668.0
-2016-07-13 00:00:00,15364.0
-2016-07-11 01:00:00,11678.0
-2016-07-11 02:00:00,10920.0
-2016-07-11 03:00:00,10440.0
-2016-07-11 04:00:00,10049.0
-2016-07-11 05:00:00,9940.0
-2016-07-11 06:00:00,10094.0
-2016-07-11 07:00:00,10665.0
-2016-07-11 08:00:00,11715.0
-2016-07-11 09:00:00,13182.0
-2016-07-11 10:00:00,14538.0
-2016-07-11 11:00:00,15895.0
-2016-07-11 12:00:00,17162.0
-2016-07-11 13:00:00,18190.0
-2016-07-11 14:00:00,18964.0
-2016-07-11 15:00:00,19552.0
-2016-07-11 16:00:00,19960.0
-2016-07-11 17:00:00,20154.0
-2016-07-11 18:00:00,20268.0
-2016-07-11 19:00:00,20109.0
-2016-07-11 20:00:00,19554.0
-2016-07-11 21:00:00,18859.0
-2016-07-11 22:00:00,18201.0
-2016-07-11 23:00:00,17679.0
-2016-07-12 00:00:00,16360.0
-2016-07-10 01:00:00,10680.0
-2016-07-10 02:00:00,9923.0
-2016-07-10 03:00:00,9393.0
-2016-07-10 04:00:00,8979.0
-2016-07-10 05:00:00,8751.0
-2016-07-10 06:00:00,8600.0
-2016-07-10 07:00:00,8446.0
-2016-07-10 08:00:00,8483.0
-2016-07-10 09:00:00,9170.0
-2016-07-10 10:00:00,9983.0
-2016-07-10 11:00:00,10882.0
-2016-07-10 12:00:00,11692.0
-2016-07-10 13:00:00,12432.0
-2016-07-10 14:00:00,12935.0
-2016-07-10 15:00:00,13378.0
-2016-07-10 16:00:00,13743.0
-2016-07-10 17:00:00,13899.0
-2016-07-10 18:00:00,13846.0
-2016-07-10 19:00:00,13837.0
-2016-07-10 20:00:00,13547.0
-2016-07-10 21:00:00,13270.0
-2016-07-10 22:00:00,13174.0
-2016-07-10 23:00:00,13179.0
-2016-07-11 00:00:00,12502.0
-2016-07-09 01:00:00,12217.0
-2016-07-09 02:00:00,11213.0
-2016-07-09 03:00:00,10494.0
-2016-07-09 04:00:00,10008.0
-2016-07-09 05:00:00,9703.0
-2016-07-09 06:00:00,9558.0
-2016-07-09 07:00:00,9500.0
-2016-07-09 08:00:00,9791.0
-2016-07-09 09:00:00,10537.0
-2016-07-09 10:00:00,11354.0
-2016-07-09 11:00:00,12143.0
-2016-07-09 12:00:00,12773.0
-2016-07-09 13:00:00,13205.0
-2016-07-09 14:00:00,13517.0
-2016-07-09 15:00:00,13684.0
-2016-07-09 16:00:00,13878.0
-2016-07-09 17:00:00,14023.0
-2016-07-09 18:00:00,14128.0
-2016-07-09 19:00:00,14015.0
-2016-07-09 20:00:00,13621.0
-2016-07-09 21:00:00,12968.0
-2016-07-09 22:00:00,12415.0
-2016-07-09 23:00:00,12210.0
-2016-07-10 00:00:00,11485.0
-2016-07-08 01:00:00,12400.0
-2016-07-08 02:00:00,11415.0
-2016-07-08 03:00:00,10726.0
-2016-07-08 04:00:00,10286.0
-2016-07-08 05:00:00,10088.0
-2016-07-08 06:00:00,10248.0
-2016-07-08 07:00:00,10711.0
-2016-07-08 08:00:00,11617.0
-2016-07-08 09:00:00,12885.0
-2016-07-08 10:00:00,14158.0
-2016-07-08 11:00:00,15433.0
-2016-07-08 12:00:00,16525.0
-2016-07-08 13:00:00,17222.0
-2016-07-08 14:00:00,17680.0
-2016-07-08 15:00:00,17868.0
-2016-07-08 16:00:00,17869.0
-2016-07-08 17:00:00,17884.0
-2016-07-08 18:00:00,17834.0
-2016-07-08 19:00:00,17504.0
-2016-07-08 20:00:00,16692.0
-2016-07-08 21:00:00,15802.0
-2016-07-08 22:00:00,15028.0
-2016-07-08 23:00:00,14520.0
-2016-07-09 00:00:00,13396.0
-2016-07-07 01:00:00,13474.0
-2016-07-07 02:00:00,12437.0
-2016-07-07 03:00:00,11651.0
-2016-07-07 04:00:00,11070.0
-2016-07-07 05:00:00,10756.0
-2016-07-07 06:00:00,10778.0
-2016-07-07 07:00:00,11163.0
-2016-07-07 08:00:00,12043.0
-2016-07-07 09:00:00,13150.0
-2016-07-07 10:00:00,14337.0
-2016-07-07 11:00:00,15168.0
-2016-07-07 12:00:00,15731.0
-2016-07-07 13:00:00,15936.0
-2016-07-07 14:00:00,16073.0
-2016-07-07 15:00:00,16120.0
-2016-07-07 16:00:00,16082.0
-2016-07-07 17:00:00,16103.0
-2016-07-07 18:00:00,16434.0
-2016-07-07 19:00:00,16197.0
-2016-07-07 20:00:00,15740.0
-2016-07-07 21:00:00,15287.0
-2016-07-07 22:00:00,14974.0
-2016-07-07 23:00:00,14610.0
-2016-07-08 00:00:00,13554.0
-2016-07-06 01:00:00,13476.0
-2016-07-06 02:00:00,12459.0
-2016-07-06 03:00:00,11781.0
-2016-07-06 04:00:00,11239.0
-2016-07-06 05:00:00,10635.0
-2016-07-06 06:00:00,10524.0
-2016-07-06 07:00:00,11052.0
-2016-07-06 08:00:00,11881.0
-2016-07-06 09:00:00,12529.0
-2016-07-06 10:00:00,12935.0
-2016-07-06 11:00:00,13478.0
-2016-07-06 12:00:00,14718.0
-2016-07-06 13:00:00,15638.0
-2016-07-06 14:00:00,16442.0
-2016-07-06 15:00:00,17162.0
-2016-07-06 16:00:00,17842.0
-2016-07-06 17:00:00,18348.0
-2016-07-06 18:00:00,18416.0
-2016-07-06 19:00:00,18026.0
-2016-07-06 20:00:00,17399.0
-2016-07-06 21:00:00,16823.0
-2016-07-06 22:00:00,16423.0
-2016-07-06 23:00:00,16079.0
-2016-07-07 00:00:00,14820.0
-2016-07-05 01:00:00,10430.0
-2016-07-05 02:00:00,9742.0
-2016-07-05 03:00:00,9229.0
-2016-07-05 04:00:00,8899.0
-2016-07-05 05:00:00,8816.0
-2016-07-05 06:00:00,9018.0
-2016-07-05 07:00:00,9599.0
-2016-07-05 08:00:00,10531.0
-2016-07-05 09:00:00,11712.0
-2016-07-05 10:00:00,12650.0
-2016-07-05 11:00:00,13473.0
-2016-07-05 12:00:00,14410.0
-2016-07-05 13:00:00,15094.0
-2016-07-05 14:00:00,15748.0
-2016-07-05 15:00:00,16370.0
-2016-07-05 16:00:00,16897.0
-2016-07-05 17:00:00,17403.0
-2016-07-05 18:00:00,17799.0
-2016-07-05 19:00:00,17914.0
-2016-07-05 20:00:00,17621.0
-2016-07-05 21:00:00,17047.0
-2016-07-05 22:00:00,16437.0
-2016-07-05 23:00:00,16091.0
-2016-07-06 00:00:00,14810.0
-2016-07-04 01:00:00,9522.0
-2016-07-04 02:00:00,9046.0
-2016-07-04 03:00:00,8631.0
-2016-07-04 04:00:00,8369.0
-2016-07-04 05:00:00,8189.0
-2016-07-04 06:00:00,8174.0
-2016-07-04 07:00:00,8191.0
-2016-07-04 08:00:00,8236.0
-2016-07-04 09:00:00,8476.0
-2016-07-04 10:00:00,8823.0
-2016-07-04 11:00:00,9316.0
-2016-07-04 12:00:00,9787.0
-2016-07-04 13:00:00,10298.0
-2016-07-04 14:00:00,10863.0
-2016-07-04 15:00:00,11286.0
-2016-07-04 16:00:00,11679.0
-2016-07-04 17:00:00,11860.0
-2016-07-04 18:00:00,11844.0
-2016-07-04 19:00:00,11726.0
-2016-07-04 20:00:00,11477.0
-2016-07-04 21:00:00,11288.0
-2016-07-04 22:00:00,11355.0
-2016-07-04 23:00:00,11320.0
-2016-07-05 00:00:00,10991.0
-2016-07-03 01:00:00,9258.0
-2016-07-03 02:00:00,8714.0
-2016-07-03 03:00:00,8297.0
-2016-07-03 04:00:00,8004.0
-2016-07-03 05:00:00,7762.0
-2016-07-03 06:00:00,7769.0
-2016-07-03 07:00:00,7516.0
-2016-07-03 08:00:00,7589.0
-2016-07-03 09:00:00,7913.0
-2016-07-03 10:00:00,8437.0
-2016-07-03 11:00:00,8998.0
-2016-07-03 12:00:00,9397.0
-2016-07-03 13:00:00,9854.0
-2016-07-03 14:00:00,10184.0
-2016-07-03 15:00:00,10490.0
-2016-07-03 16:00:00,10712.0
-2016-07-03 17:00:00,10892.0
-2016-07-03 18:00:00,10933.0
-2016-07-03 19:00:00,10953.0
-2016-07-03 20:00:00,10737.0
-2016-07-03 21:00:00,10408.0
-2016-07-03 22:00:00,10285.0
-2016-07-03 23:00:00,10314.0
-2016-07-04 00:00:00,10002.0
-2016-07-02 01:00:00,9647.0
-2016-07-02 02:00:00,8979.0
-2016-07-02 03:00:00,8571.0
-2016-07-02 04:00:00,8273.0
-2016-07-02 05:00:00,8105.0
-2016-07-02 06:00:00,8040.0
-2016-07-02 07:00:00,7996.0
-2016-07-02 08:00:00,8124.0
-2016-07-02 09:00:00,8504.0
-2016-07-02 10:00:00,9015.0
-2016-07-02 11:00:00,9558.0
-2016-07-02 12:00:00,9997.0
-2016-07-02 13:00:00,10299.0
-2016-07-02 14:00:00,10437.0
-2016-07-02 15:00:00,10606.0
-2016-07-02 16:00:00,10661.0
-2016-07-02 17:00:00,10784.0
-2016-07-02 18:00:00,10720.0
-2016-07-02 19:00:00,10530.0
-2016-07-02 20:00:00,10294.0
-2016-07-02 21:00:00,10147.0
-2016-07-02 22:00:00,10226.0
-2016-07-02 23:00:00,10270.0
-2016-07-03 00:00:00,9762.0
-2016-07-01 01:00:00,11152.0
-2016-07-01 02:00:00,10447.0
-2016-07-01 03:00:00,9872.0
-2016-07-01 04:00:00,9432.0
-2016-07-01 05:00:00,9187.0
-2016-07-01 06:00:00,9244.0
-2016-07-01 07:00:00,9541.0
-2016-07-01 08:00:00,10220.0
-2016-07-01 09:00:00,10982.0
-2016-07-01 10:00:00,11603.0
-2016-07-01 11:00:00,12027.0
-2016-07-01 12:00:00,12403.0
-2016-07-01 13:00:00,12650.0
-2016-07-01 14:00:00,12807.0
-2016-07-01 15:00:00,12983.0
-2016-07-01 16:00:00,13022.0
-2016-07-01 17:00:00,12989.0
-2016-07-01 18:00:00,12918.0
-2016-07-01 19:00:00,12717.0
-2016-07-01 20:00:00,12247.0
-2016-07-01 21:00:00,11667.0
-2016-07-01 22:00:00,11290.0
-2016-07-01 23:00:00,11147.0
-2016-07-02 00:00:00,10384.0
-2016-06-30 01:00:00,10406.0
-2016-06-30 02:00:00,9681.0
-2016-06-30 03:00:00,9143.0
-2016-06-30 04:00:00,8854.0
-2016-06-30 05:00:00,8692.0
-2016-06-30 06:00:00,8773.0
-2016-06-30 07:00:00,9144.0
-2016-06-30 08:00:00,10016.0
-2016-06-30 09:00:00,11090.0
-2016-06-30 10:00:00,11916.0
-2016-06-30 11:00:00,12570.0
-2016-06-30 12:00:00,13091.0
-2016-06-30 13:00:00,13390.0
-2016-06-30 14:00:00,13645.0
-2016-06-30 15:00:00,13913.0
-2016-06-30 16:00:00,14092.0
-2016-06-30 17:00:00,14041.0
-2016-06-30 18:00:00,14045.0
-2016-06-30 19:00:00,13953.0
-2016-06-30 20:00:00,13641.0
-2016-06-30 21:00:00,13197.0
-2016-06-30 22:00:00,13074.0
-2016-06-30 23:00:00,12934.0
-2016-07-01 00:00:00,12135.0
-2016-06-29 01:00:00,9949.0
-2016-06-29 02:00:00,9304.0
-2016-06-29 03:00:00,8858.0
-2016-06-29 04:00:00,8597.0
-2016-06-29 05:00:00,8465.0
-2016-06-29 06:00:00,8587.0
-2016-06-29 07:00:00,8933.0
-2016-06-29 08:00:00,9791.0
-2016-06-29 09:00:00,10783.0
-2016-06-29 10:00:00,11541.0
-2016-06-29 11:00:00,12065.0
-2016-06-29 12:00:00,12536.0
-2016-06-29 13:00:00,12881.0
-2016-06-29 14:00:00,13181.0
-2016-06-29 15:00:00,13570.0
-2016-06-29 16:00:00,13866.0
-2016-06-29 17:00:00,14016.0
-2016-06-29 18:00:00,14068.0
-2016-06-29 19:00:00,13863.0
-2016-06-29 20:00:00,13281.0
-2016-06-29 21:00:00,12881.0
-2016-06-29 22:00:00,12554.0
-2016-06-29 23:00:00,12294.0
-2016-06-30 00:00:00,11414.0
-2016-06-28 01:00:00,12393.0
-2016-06-28 02:00:00,11379.0
-2016-06-28 03:00:00,10717.0
-2016-06-28 04:00:00,10161.0
-2016-06-28 05:00:00,9851.0
-2016-06-28 06:00:00,9829.0
-2016-06-28 07:00:00,10129.0
-2016-06-28 08:00:00,10818.0
-2016-06-28 09:00:00,11729.0
-2016-06-28 10:00:00,12252.0
-2016-06-28 11:00:00,12489.0
-2016-06-28 12:00:00,12711.0
-2016-06-28 13:00:00,12719.0
-2016-06-28 14:00:00,12753.0
-2016-06-28 15:00:00,12905.0
-2016-06-28 16:00:00,13001.0
-2016-06-28 17:00:00,13019.0
-2016-06-28 18:00:00,13023.0
-2016-06-28 19:00:00,12903.0
-2016-06-28 20:00:00,12506.0
-2016-06-28 21:00:00,12016.0
-2016-06-28 22:00:00,11766.0
-2016-06-28 23:00:00,11613.0
-2016-06-29 00:00:00,10836.0
-2016-06-27 01:00:00,12780.0
-2016-06-27 02:00:00,11813.0
-2016-06-27 03:00:00,11134.0
-2016-06-27 04:00:00,10648.0
-2016-06-27 05:00:00,10510.0
-2016-06-27 06:00:00,10624.0
-2016-06-27 07:00:00,11011.0
-2016-06-27 08:00:00,12199.0
-2016-06-27 09:00:00,13621.0
-2016-06-27 10:00:00,14864.0
-2016-06-27 11:00:00,15962.0
-2016-06-27 12:00:00,16931.0
-2016-06-27 13:00:00,17692.0
-2016-06-27 14:00:00,18251.0
-2016-06-27 15:00:00,18708.0
-2016-06-27 16:00:00,18971.0
-2016-06-27 17:00:00,19069.0
-2016-06-27 18:00:00,18926.0
-2016-06-27 19:00:00,18559.0
-2016-06-27 20:00:00,17737.0
-2016-06-27 21:00:00,16713.0
-2016-06-27 22:00:00,15724.0
-2016-06-27 23:00:00,15020.0
-2016-06-28 00:00:00,13749.0
-2016-06-26 01:00:00,14312.0
-2016-06-26 02:00:00,13346.0
-2016-06-26 03:00:00,12600.0
-2016-06-26 04:00:00,11929.0
-2016-06-26 05:00:00,11539.0
-2016-06-26 06:00:00,11247.0
-2016-06-26 07:00:00,11005.0
-2016-06-26 08:00:00,10998.0
-2016-06-26 09:00:00,11334.0
-2016-06-26 10:00:00,11904.0
-2016-06-26 11:00:00,12773.0
-2016-06-26 12:00:00,13875.0
-2016-06-26 13:00:00,14672.0
-2016-06-26 14:00:00,15291.0
-2016-06-26 15:00:00,15704.0
-2016-06-26 16:00:00,16263.0
-2016-06-26 17:00:00,16720.0
-2016-06-26 18:00:00,17096.0
-2016-06-26 19:00:00,17195.0
-2016-06-26 20:00:00,16935.0
-2016-06-26 21:00:00,16177.0
-2016-06-26 22:00:00,15382.0
-2016-06-26 23:00:00,14975.0
-2016-06-27 00:00:00,13926.0
-2016-06-25 01:00:00,11740.0
-2016-06-25 02:00:00,10824.0
-2016-06-25 03:00:00,10191.0
-2016-06-25 04:00:00,9770.0
-2016-06-25 05:00:00,9511.0
-2016-06-25 06:00:00,9378.0
-2016-06-25 07:00:00,9327.0
-2016-06-25 08:00:00,9804.0
-2016-06-25 09:00:00,10814.0
-2016-06-25 10:00:00,11979.0
-2016-06-25 11:00:00,13208.0
-2016-06-25 12:00:00,14326.0
-2016-06-25 13:00:00,15254.0
-2016-06-25 14:00:00,15972.0
-2016-06-25 15:00:00,16507.0
-2016-06-25 16:00:00,17040.0
-2016-06-25 17:00:00,17499.0
-2016-06-25 18:00:00,17794.0
-2016-06-25 19:00:00,17807.0
-2016-06-25 20:00:00,17539.0
-2016-06-25 21:00:00,16994.0
-2016-06-25 22:00:00,16493.0
-2016-06-25 23:00:00,16250.0
-2016-06-26 00:00:00,15365.0
-2016-06-24 01:00:00,10756.0
-2016-06-24 02:00:00,10005.0
-2016-06-24 03:00:00,9460.0
-2016-06-24 04:00:00,9144.0
-2016-06-24 05:00:00,9032.0
-2016-06-24 06:00:00,9109.0
-2016-06-24 07:00:00,9467.0
-2016-06-24 08:00:00,10403.0
-2016-06-24 09:00:00,11492.0
-2016-06-24 10:00:00,12469.0
-2016-06-24 11:00:00,13289.0
-2016-06-24 12:00:00,13987.0
-2016-06-24 13:00:00,14603.0
-2016-06-24 14:00:00,15073.0
-2016-06-24 15:00:00,15546.0
-2016-06-24 16:00:00,15904.0
-2016-06-24 17:00:00,16184.0
-2016-06-24 18:00:00,16335.0
-2016-06-24 19:00:00,16238.0
-2016-06-24 20:00:00,15697.0
-2016-06-24 21:00:00,14944.0
-2016-06-24 22:00:00,14233.0
-2016-06-24 23:00:00,13847.0
-2016-06-25 00:00:00,12846.0
-2016-06-23 01:00:00,11486.0
-2016-06-23 02:00:00,10759.0
-2016-06-23 03:00:00,10234.0
-2016-06-23 04:00:00,9944.0
-2016-06-23 05:00:00,9795.0
-2016-06-23 06:00:00,9876.0
-2016-06-23 07:00:00,10377.0
-2016-06-23 08:00:00,11270.0
-2016-06-23 09:00:00,12141.0
-2016-06-23 10:00:00,12732.0
-2016-06-23 11:00:00,13128.0
-2016-06-23 12:00:00,13449.0
-2016-06-23 13:00:00,13712.0
-2016-06-23 14:00:00,13915.0
-2016-06-23 15:00:00,14140.0
-2016-06-23 16:00:00,14762.0
-2016-06-23 17:00:00,15154.0
-2016-06-23 18:00:00,15312.0
-2016-06-23 19:00:00,15038.0
-2016-06-23 20:00:00,14351.0
-2016-06-23 21:00:00,13564.0
-2016-06-23 22:00:00,13061.0
-2016-06-23 23:00:00,12712.0
-2016-06-24 00:00:00,11794.0
-2016-06-22 01:00:00,11981.0
-2016-06-22 02:00:00,11025.0
-2016-06-22 03:00:00,10429.0
-2016-06-22 04:00:00,10085.0
-2016-06-22 05:00:00,9905.0
-2016-06-22 06:00:00,10047.0
-2016-06-22 07:00:00,10635.0
-2016-06-22 08:00:00,11480.0
-2016-06-22 09:00:00,12189.0
-2016-06-22 10:00:00,12722.0
-2016-06-22 11:00:00,13214.0
-2016-06-22 12:00:00,13575.0
-2016-06-22 13:00:00,13612.0
-2016-06-22 14:00:00,13856.0
-2016-06-22 15:00:00,14279.0
-2016-06-22 16:00:00,14501.0
-2016-06-22 17:00:00,14462.0
-2016-06-22 18:00:00,14420.0
-2016-06-22 19:00:00,14403.0
-2016-06-22 20:00:00,14184.0
-2016-06-22 21:00:00,13999.0
-2016-06-22 22:00:00,13920.0
-2016-06-22 23:00:00,13478.0
-2016-06-23 00:00:00,12497.0
-2016-06-21 01:00:00,13275.0
-2016-06-21 02:00:00,12050.0
-2016-06-21 03:00:00,11103.0
-2016-06-21 04:00:00,10524.0
-2016-06-21 05:00:00,10119.0
-2016-06-21 06:00:00,10081.0
-2016-06-21 07:00:00,10353.0
-2016-06-21 08:00:00,11337.0
-2016-06-21 09:00:00,12497.0
-2016-06-21 10:00:00,13454.0
-2016-06-21 11:00:00,14152.0
-2016-06-21 12:00:00,14777.0
-2016-06-21 13:00:00,15194.0
-2016-06-21 14:00:00,15544.0
-2016-06-21 15:00:00,16016.0
-2016-06-21 16:00:00,16376.0
-2016-06-21 17:00:00,16727.0
-2016-06-21 18:00:00,16919.0
-2016-06-21 19:00:00,16852.0
-2016-06-21 20:00:00,16354.0
-2016-06-21 21:00:00,15715.0
-2016-06-21 22:00:00,14993.0
-2016-06-21 23:00:00,14488.0
-2016-06-22 00:00:00,13291.0
-2016-06-20 01:00:00,13284.0
-2016-06-20 02:00:00,12458.0
-2016-06-20 03:00:00,11846.0
-2016-06-20 04:00:00,11518.0
-2016-06-20 05:00:00,11343.0
-2016-06-20 06:00:00,11506.0
-2016-06-20 07:00:00,12021.0
-2016-06-20 08:00:00,13181.0
-2016-06-20 09:00:00,14804.0
-2016-06-20 10:00:00,15976.0
-2016-06-20 11:00:00,16658.0
-2016-06-20 12:00:00,17820.0
-2016-06-20 13:00:00,18698.0
-2016-06-20 14:00:00,18976.0
-2016-06-20 15:00:00,19052.0
-2016-06-20 16:00:00,19488.0
-2016-06-20 17:00:00,19898.0
-2016-06-20 18:00:00,20189.0
-2016-06-20 19:00:00,20040.0
-2016-06-20 20:00:00,19429.0
-2016-06-20 21:00:00,18483.0
-2016-06-20 22:00:00,17367.0
-2016-06-20 23:00:00,16487.0
-2016-06-21 00:00:00,14921.0
-2016-06-19 01:00:00,11338.0
-2016-06-19 02:00:00,10495.0
-2016-06-19 03:00:00,9818.0
-2016-06-19 04:00:00,9352.0
-2016-06-19 05:00:00,9059.0
-2016-06-19 06:00:00,8862.0
-2016-06-19 07:00:00,8639.0
-2016-06-19 08:00:00,8886.0
-2016-06-19 09:00:00,9647.0
-2016-06-19 10:00:00,10791.0
-2016-06-19 11:00:00,12075.0
-2016-06-19 12:00:00,13287.0
-2016-06-19 13:00:00,14190.0
-2016-06-19 14:00:00,14864.0
-2016-06-19 15:00:00,15423.0
-2016-06-19 16:00:00,15923.0
-2016-06-19 17:00:00,16291.0
-2016-06-19 18:00:00,16565.0
-2016-06-19 19:00:00,16613.0
-2016-06-19 20:00:00,16412.0
-2016-06-19 21:00:00,16004.0
-2016-06-19 22:00:00,15477.0
-2016-06-19 23:00:00,15185.0
-2016-06-20 00:00:00,14341.0
-2016-06-18 01:00:00,11133.0
-2016-06-18 02:00:00,10200.0
-2016-06-18 03:00:00,9559.0
-2016-06-18 04:00:00,9106.0
-2016-06-18 05:00:00,8855.0
-2016-06-18 06:00:00,8760.0
-2016-06-18 07:00:00,8694.0
-2016-06-18 08:00:00,9020.0
-2016-06-18 09:00:00,9859.0
-2016-06-18 10:00:00,10791.0
-2016-06-18 11:00:00,11815.0
-2016-06-18 12:00:00,12726.0
-2016-06-18 13:00:00,13549.0
-2016-06-18 14:00:00,14127.0
-2016-06-18 15:00:00,14572.0
-2016-06-18 16:00:00,14877.0
-2016-06-18 17:00:00,15155.0
-2016-06-18 18:00:00,15186.0
-2016-06-18 19:00:00,14973.0
-2016-06-18 20:00:00,14679.0
-2016-06-18 21:00:00,14081.0
-2016-06-18 22:00:00,13483.0
-2016-06-18 23:00:00,13154.0
-2016-06-19 00:00:00,12326.0
-2016-06-17 01:00:00,10481.0
-2016-06-17 02:00:00,9779.0
-2016-06-17 03:00:00,9284.0
-2016-06-17 04:00:00,8994.0
-2016-06-17 05:00:00,8852.0
-2016-06-17 06:00:00,8988.0
-2016-06-17 07:00:00,9306.0
-2016-06-17 08:00:00,10245.0
-2016-06-17 09:00:00,11373.0
-2016-06-17 10:00:00,12303.0
-2016-06-17 11:00:00,13000.0
-2016-06-17 12:00:00,13644.0
-2016-06-17 13:00:00,14127.0
-2016-06-17 14:00:00,14570.0
-2016-06-17 15:00:00,15074.0
-2016-06-17 16:00:00,15494.0
-2016-06-17 17:00:00,15844.0
-2016-06-17 18:00:00,16045.0
-2016-06-17 19:00:00,15900.0
-2016-06-17 20:00:00,15368.0
-2016-06-17 21:00:00,14498.0
-2016-06-17 22:00:00,13787.0
-2016-06-17 23:00:00,13269.0
-2016-06-18 00:00:00,12221.0
-2016-06-16 01:00:00,14745.0
-2016-06-16 02:00:00,13392.0
-2016-06-16 03:00:00,12325.0
-2016-06-16 04:00:00,11553.0
-2016-06-16 05:00:00,11021.0
-2016-06-16 06:00:00,10921.0
-2016-06-16 07:00:00,11157.0
-2016-06-16 08:00:00,12155.0
-2016-06-16 09:00:00,13206.0
-2016-06-16 10:00:00,13611.0
-2016-06-16 11:00:00,13677.0
-2016-06-16 12:00:00,13747.0
-2016-06-16 13:00:00,13887.0
-2016-06-16 14:00:00,14072.0
-2016-06-16 15:00:00,14185.0
-2016-06-16 16:00:00,13920.0
-2016-06-16 17:00:00,13619.0
-2016-06-16 18:00:00,13513.0
-2016-06-16 19:00:00,13316.0
-2016-06-16 20:00:00,12822.0
-2016-06-16 21:00:00,12416.0
-2016-06-16 22:00:00,12380.0
-2016-06-16 23:00:00,12222.0
-2016-06-17 00:00:00,11400.0
-2016-06-15 01:00:00,12932.0
-2016-06-15 02:00:00,11974.0
-2016-06-15 03:00:00,11273.0
-2016-06-15 04:00:00,10815.0
-2016-06-15 05:00:00,10444.0
-2016-06-15 06:00:00,10433.0
-2016-06-15 07:00:00,10929.0
-2016-06-15 08:00:00,11845.0
-2016-06-15 09:00:00,13161.0
-2016-06-15 10:00:00,14445.0
-2016-06-15 11:00:00,15492.0
-2016-06-15 12:00:00,16573.0
-2016-06-15 13:00:00,17439.0
-2016-06-15 14:00:00,18078.0
-2016-06-15 15:00:00,18652.0
-2016-06-15 16:00:00,19025.0
-2016-06-15 17:00:00,19375.0
-2016-06-15 18:00:00,19520.0
-2016-06-15 19:00:00,19434.0
-2016-06-15 20:00:00,18995.0
-2016-06-15 21:00:00,18319.0
-2016-06-15 22:00:00,17774.0
-2016-06-15 23:00:00,17407.0
-2016-06-16 00:00:00,16217.0
-2016-06-14 01:00:00,11599.0
-2016-06-14 02:00:00,10672.0
-2016-06-14 03:00:00,9999.0
-2016-06-14 04:00:00,9609.0
-2016-06-14 05:00:00,9358.0
-2016-06-14 06:00:00,9462.0
-2016-06-14 07:00:00,9925.0
-2016-06-14 08:00:00,10792.0
-2016-06-14 09:00:00,11892.0
-2016-06-14 10:00:00,12896.0
-2016-06-14 11:00:00,13740.0
-2016-06-14 12:00:00,14700.0
-2016-06-14 13:00:00,15615.0
-2016-06-14 14:00:00,16328.0
-2016-06-14 15:00:00,17040.0
-2016-06-14 16:00:00,17424.0
-2016-06-14 17:00:00,17573.0
-2016-06-14 18:00:00,17424.0
-2016-06-14 19:00:00,16716.0
-2016-06-14 20:00:00,16032.0
-2016-06-14 21:00:00,15629.0
-2016-06-14 22:00:00,15479.0
-2016-06-14 23:00:00,15120.0
-2016-06-15 00:00:00,14103.0
-2016-06-13 01:00:00,9057.0
-2016-06-13 02:00:00,8587.0
-2016-06-13 03:00:00,8307.0
-2016-06-13 04:00:00,8160.0
-2016-06-13 05:00:00,8073.0
-2016-06-13 06:00:00,8252.0
-2016-06-13 07:00:00,8665.0
-2016-06-13 08:00:00,9662.0
-2016-06-13 09:00:00,10719.0
-2016-06-13 10:00:00,11567.0
-2016-06-13 11:00:00,12114.0
-2016-06-13 12:00:00,12730.0
-2016-06-13 13:00:00,13205.0
-2016-06-13 14:00:00,13754.0
-2016-06-13 15:00:00,14338.0
-2016-06-13 16:00:00,14808.0
-2016-06-13 17:00:00,15381.0
-2016-06-13 18:00:00,15937.0
-2016-06-13 19:00:00,16166.0
-2016-06-13 20:00:00,15790.0
-2016-06-13 21:00:00,15131.0
-2016-06-13 22:00:00,14653.0
-2016-06-13 23:00:00,14050.0
-2016-06-14 00:00:00,12816.0
-2016-06-12 01:00:00,13993.0
-2016-06-12 02:00:00,12932.0
-2016-06-12 03:00:00,11835.0
-2016-06-12 04:00:00,10767.0
-2016-06-12 05:00:00,10049.0
-2016-06-12 06:00:00,9537.0
-2016-06-12 07:00:00,9049.0
-2016-06-12 08:00:00,8973.0
-2016-06-12 09:00:00,9394.0
-2016-06-12 10:00:00,9888.0
-2016-06-12 11:00:00,10312.0
-2016-06-12 12:00:00,10417.0
-2016-06-12 13:00:00,10393.0
-2016-06-12 14:00:00,10394.0
-2016-06-12 15:00:00,10400.0
-2016-06-12 16:00:00,10419.0
-2016-06-12 17:00:00,10514.0
-2016-06-12 18:00:00,10675.0
-2016-06-12 19:00:00,10665.0
-2016-06-12 20:00:00,10468.0
-2016-06-12 21:00:00,10198.0
-2016-06-12 22:00:00,10134.0
-2016-06-12 23:00:00,10165.0
-2016-06-13 00:00:00,9635.0
-2016-06-11 01:00:00,13518.0
-2016-06-11 02:00:00,12318.0
-2016-06-11 03:00:00,11388.0
-2016-06-11 04:00:00,10752.0
-2016-06-11 05:00:00,10438.0
-2016-06-11 06:00:00,10247.0
-2016-06-11 07:00:00,10180.0
-2016-06-11 08:00:00,10612.0
-2016-06-11 09:00:00,11756.0
-2016-06-11 10:00:00,13077.0
-2016-06-11 11:00:00,14420.0
-2016-06-11 12:00:00,15559.0
-2016-06-11 13:00:00,16381.0
-2016-06-11 14:00:00,16885.0
-2016-06-11 15:00:00,17251.0
-2016-06-11 16:00:00,17496.0
-2016-06-11 17:00:00,17722.0
-2016-06-11 18:00:00,17861.0
-2016-06-11 19:00:00,17760.0
-2016-06-11 20:00:00,17445.0
-2016-06-11 21:00:00,16931.0
-2016-06-11 22:00:00,16456.0
-2016-06-11 23:00:00,16136.0
-2016-06-12 00:00:00,15129.0
-2016-06-10 01:00:00,9922.0
-2016-06-10 02:00:00,9340.0
-2016-06-10 03:00:00,8912.0
-2016-06-10 04:00:00,8676.0
-2016-06-10 05:00:00,8601.0
-2016-06-10 06:00:00,8747.0
-2016-06-10 07:00:00,9206.0
-2016-06-10 08:00:00,10068.0
-2016-06-10 09:00:00,11089.0
-2016-06-10 10:00:00,12139.0
-2016-06-10 11:00:00,13097.0
-2016-06-10 12:00:00,14071.0
-2016-06-10 13:00:00,14938.0
-2016-06-10 14:00:00,15693.0
-2016-06-10 15:00:00,16409.0
-2016-06-10 16:00:00,16977.0
-2016-06-10 17:00:00,17412.0
-2016-06-10 18:00:00,17744.0
-2016-06-10 19:00:00,17790.0
-2016-06-10 20:00:00,17437.0
-2016-06-10 21:00:00,16796.0
-2016-06-10 22:00:00,16281.0
-2016-06-10 23:00:00,15731.0
-2016-06-11 00:00:00,14690.0
-2016-06-09 01:00:00,9336.0
-2016-06-09 02:00:00,8734.0
-2016-06-09 03:00:00,8369.0
-2016-06-09 04:00:00,8126.0
-2016-06-09 05:00:00,8059.0
-2016-06-09 06:00:00,8213.0
-2016-06-09 07:00:00,8588.0
-2016-06-09 08:00:00,9432.0
-2016-06-09 09:00:00,10296.0
-2016-06-09 10:00:00,10870.0
-2016-06-09 11:00:00,11249.0
-2016-06-09 12:00:00,11564.0
-2016-06-09 13:00:00,11762.0
-2016-06-09 14:00:00,11862.0
-2016-06-09 15:00:00,11936.0
-2016-06-09 16:00:00,11868.0
-2016-06-09 17:00:00,11766.0
-2016-06-09 18:00:00,11704.0
-2016-06-09 19:00:00,11617.0
-2016-06-09 20:00:00,11454.0
-2016-06-09 21:00:00,11378.0
-2016-06-09 22:00:00,11621.0
-2016-06-09 23:00:00,11491.0
-2016-06-10 00:00:00,10761.0
-2016-06-08 01:00:00,9272.0
-2016-06-08 02:00:00,8680.0
-2016-06-08 03:00:00,8298.0
-2016-06-08 04:00:00,8077.0
-2016-06-08 05:00:00,7998.0
-2016-06-08 06:00:00,8147.0
-2016-06-08 07:00:00,8464.0
-2016-06-08 08:00:00,9343.0
-2016-06-08 09:00:00,10279.0
-2016-06-08 10:00:00,10908.0
-2016-06-08 11:00:00,11305.0
-2016-06-08 12:00:00,11649.0
-2016-06-08 13:00:00,11853.0
-2016-06-08 14:00:00,11994.0
-2016-06-08 15:00:00,12170.0
-2016-06-08 16:00:00,12207.0
-2016-06-08 17:00:00,12224.0
-2016-06-08 18:00:00,12214.0
-2016-06-08 19:00:00,12106.0
-2016-06-08 20:00:00,11703.0
-2016-06-08 21:00:00,11278.0
-2016-06-08 22:00:00,11157.0
-2016-06-08 23:00:00,10954.0
-2016-06-09 00:00:00,10146.0
-2016-06-07 01:00:00,10232.0
-2016-06-07 02:00:00,9446.0
-2016-06-07 03:00:00,8964.0
-2016-06-07 04:00:00,8642.0
-2016-06-07 05:00:00,8508.0
-2016-06-07 06:00:00,8618.0
-2016-06-07 07:00:00,8946.0
-2016-06-07 08:00:00,9765.0
-2016-06-07 09:00:00,10580.0
-2016-06-07 10:00:00,11104.0
-2016-06-07 11:00:00,11416.0
-2016-06-07 12:00:00,11668.0
-2016-06-07 13:00:00,11828.0
-2016-06-07 14:00:00,11943.0
-2016-06-07 15:00:00,12057.0
-2016-06-07 16:00:00,11998.0
-2016-06-07 17:00:00,11833.0
-2016-06-07 18:00:00,11670.0
-2016-06-07 19:00:00,11456.0
-2016-06-07 20:00:00,11097.0
-2016-06-07 21:00:00,10898.0
-2016-06-07 22:00:00,10953.0
-2016-06-07 23:00:00,10849.0
-2016-06-08 00:00:00,10076.0
-2016-06-06 01:00:00,10054.0
-2016-06-06 02:00:00,9391.0
-2016-06-06 03:00:00,8935.0
-2016-06-06 04:00:00,8650.0
-2016-06-06 05:00:00,8521.0
-2016-06-06 06:00:00,8683.0
-2016-06-06 07:00:00,9107.0
-2016-06-06 08:00:00,10201.0
-2016-06-06 09:00:00,11257.0
-2016-06-06 10:00:00,12193.0
-2016-06-06 11:00:00,12899.0
-2016-06-06 12:00:00,13517.0
-2016-06-06 13:00:00,13999.0
-2016-06-06 14:00:00,14216.0
-2016-06-06 15:00:00,14432.0
-2016-06-06 16:00:00,14523.0
-2016-06-06 17:00:00,14559.0
-2016-06-06 18:00:00,14474.0
-2016-06-06 19:00:00,14201.0
-2016-06-06 20:00:00,13584.0
-2016-06-06 21:00:00,12915.0
-2016-06-06 22:00:00,12611.0
-2016-06-06 23:00:00,12279.0
-2016-06-07 00:00:00,11343.0
-2016-06-05 01:00:00,9838.0
-2016-06-05 02:00:00,9254.0
-2016-06-05 03:00:00,8822.0
-2016-06-05 04:00:00,8538.0
-2016-06-05 05:00:00,8329.0
-2016-06-05 06:00:00,8262.0
-2016-06-05 07:00:00,8062.0
-2016-06-05 08:00:00,8177.0
-2016-06-05 09:00:00,8551.0
-2016-06-05 10:00:00,8998.0
-2016-06-05 11:00:00,9435.0
-2016-06-05 12:00:00,9911.0
-2016-06-05 13:00:00,10234.0
-2016-06-05 14:00:00,10544.0
-2016-06-05 15:00:00,10813.0
-2016-06-05 16:00:00,11116.0
-2016-06-05 17:00:00,11370.0
-2016-06-05 18:00:00,11697.0
-2016-06-05 19:00:00,11933.0
-2016-06-05 20:00:00,11889.0
-2016-06-05 21:00:00,11646.0
-2016-06-05 22:00:00,11700.0
-2016-06-05 23:00:00,11666.0
-2016-06-06 00:00:00,10923.0
-2016-06-04 01:00:00,11251.0
-2016-06-04 02:00:00,10355.0
-2016-06-04 03:00:00,9776.0
-2016-06-04 04:00:00,9298.0
-2016-06-04 05:00:00,9032.0
-2016-06-04 06:00:00,8932.0
-2016-06-04 07:00:00,8954.0
-2016-06-04 08:00:00,9202.0
-2016-06-04 09:00:00,9974.0
-2016-06-04 10:00:00,10634.0
-2016-06-04 11:00:00,11169.0
-2016-06-04 12:00:00,11378.0
-2016-06-04 13:00:00,11508.0
-2016-06-04 14:00:00,11419.0
-2016-06-04 15:00:00,11298.0
-2016-06-04 16:00:00,11114.0
-2016-06-04 17:00:00,11078.0
-2016-06-04 18:00:00,11203.0
-2016-06-04 19:00:00,11313.0
-2016-06-04 20:00:00,11235.0
-2016-06-04 21:00:00,11120.0
-2016-06-04 22:00:00,11177.0
-2016-06-04 23:00:00,11157.0
-2016-06-05 00:00:00,10598.0
-2016-06-03 01:00:00,10490.0
-2016-06-03 02:00:00,9656.0
-2016-06-03 03:00:00,9133.0
-2016-06-03 04:00:00,8786.0
-2016-06-03 05:00:00,8625.0
-2016-06-03 06:00:00,8747.0
-2016-06-03 07:00:00,9035.0
-2016-06-03 08:00:00,9992.0
-2016-06-03 09:00:00,11034.0
-2016-06-03 10:00:00,11852.0
-2016-06-03 11:00:00,12482.0
-2016-06-03 12:00:00,13027.0
-2016-06-03 13:00:00,13484.0
-2016-06-03 14:00:00,13894.0
-2016-06-03 15:00:00,14437.0
-2016-06-03 16:00:00,14818.0
-2016-06-03 17:00:00,15169.0
-2016-06-03 18:00:00,15395.0
-2016-06-03 19:00:00,15252.0
-2016-06-03 20:00:00,14670.0
-2016-06-03 21:00:00,13954.0
-2016-06-03 22:00:00,13642.0
-2016-06-03 23:00:00,13290.0
-2016-06-04 00:00:00,12300.0
-2016-06-02 01:00:00,10884.0
-2016-06-02 02:00:00,9999.0
-2016-06-02 03:00:00,9387.0
-2016-06-02 04:00:00,8970.0
-2016-06-02 05:00:00,8809.0
-2016-06-02 06:00:00,8913.0
-2016-06-02 07:00:00,9271.0
-2016-06-02 08:00:00,10212.0
-2016-06-02 09:00:00,11304.0
-2016-06-02 10:00:00,12103.0
-2016-06-02 11:00:00,12654.0
-2016-06-02 12:00:00,13121.0
-2016-06-02 13:00:00,13450.0
-2016-06-02 14:00:00,13720.0
-2016-06-02 15:00:00,14152.0
-2016-06-02 16:00:00,14438.0
-2016-06-02 17:00:00,14661.0
-2016-06-02 18:00:00,14826.0
-2016-06-02 19:00:00,14713.0
-2016-06-02 20:00:00,14228.0
-2016-06-02 21:00:00,13565.0
-2016-06-02 22:00:00,13109.0
-2016-06-02 23:00:00,12668.0
-2016-06-03 00:00:00,11553.0
-2016-06-01 01:00:00,10301.0
-2016-06-01 02:00:00,9651.0
-2016-06-01 03:00:00,9220.0
-2016-06-01 04:00:00,8981.0
-2016-06-01 05:00:00,8869.0
-2016-06-01 06:00:00,9042.0
-2016-06-01 07:00:00,9566.0
-2016-06-01 08:00:00,10527.0
-2016-06-01 09:00:00,11356.0
-2016-06-01 10:00:00,11825.0
-2016-06-01 11:00:00,12111.0
-2016-06-01 12:00:00,12451.0
-2016-06-01 13:00:00,12827.0
-2016-06-01 14:00:00,13341.0
-2016-06-01 15:00:00,13780.0
-2016-06-01 16:00:00,14164.0
-2016-06-01 17:00:00,14488.0
-2016-06-01 18:00:00,14766.0
-2016-06-01 19:00:00,14772.0
-2016-06-01 20:00:00,14423.0
-2016-06-01 21:00:00,13933.0
-2016-06-01 22:00:00,13553.0
-2016-06-01 23:00:00,13149.0
-2016-06-02 00:00:00,12094.0
-2016-05-31 01:00:00,10556.0
-2016-05-31 02:00:00,9739.0
-2016-05-31 03:00:00,9249.0
-2016-05-31 04:00:00,8900.0
-2016-05-31 05:00:00,8784.0
-2016-05-31 06:00:00,8950.0
-2016-05-31 07:00:00,9405.0
-2016-05-31 08:00:00,10511.0
-2016-05-31 09:00:00,11738.0
-2016-05-31 10:00:00,12605.0
-2016-05-31 11:00:00,13301.0
-2016-05-31 12:00:00,14143.0
-2016-05-31 13:00:00,14740.0
-2016-05-31 14:00:00,15244.0
-2016-05-31 15:00:00,15473.0
-2016-05-31 16:00:00,15205.0
-2016-05-31 17:00:00,14366.0
-2016-05-31 18:00:00,13636.0
-2016-05-31 19:00:00,13214.0
-2016-05-31 20:00:00,12694.0
-2016-05-31 21:00:00,12446.0
-2016-05-31 22:00:00,12508.0
-2016-05-31 23:00:00,12157.0
-2016-06-01 00:00:00,11259.0
-2016-05-30 01:00:00,10082.0
-2016-05-30 02:00:00,9374.0
-2016-05-30 03:00:00,8874.0
-2016-05-30 04:00:00,8514.0
-2016-05-30 05:00:00,8314.0
-2016-05-30 06:00:00,8263.0
-2016-05-30 07:00:00,8181.0
-2016-05-30 08:00:00,8424.0
-2016-05-30 09:00:00,9071.0
-2016-05-30 10:00:00,9902.0
-2016-05-30 11:00:00,10817.0
-2016-05-30 12:00:00,11699.0
-2016-05-30 13:00:00,12377.0
-2016-05-30 14:00:00,12875.0
-2016-05-30 15:00:00,13239.0
-2016-05-30 16:00:00,13544.0
-2016-05-30 17:00:00,13859.0
-2016-05-30 18:00:00,14061.0
-2016-05-30 19:00:00,14096.0
-2016-05-30 20:00:00,13796.0
-2016-05-30 21:00:00,13233.0
-2016-05-30 22:00:00,12980.0
-2016-05-30 23:00:00,12578.0
-2016-05-31 00:00:00,11582.0
-2016-05-29 01:00:00,10595.0
-2016-05-29 02:00:00,9835.0
-2016-05-29 03:00:00,9203.0
-2016-05-29 04:00:00,8804.0
-2016-05-29 05:00:00,8575.0
-2016-05-29 06:00:00,8418.0
-2016-05-29 07:00:00,8258.0
-2016-05-29 08:00:00,8415.0
-2016-05-29 09:00:00,9092.0
-2016-05-29 10:00:00,9921.0
-2016-05-29 11:00:00,10698.0
-2016-05-29 12:00:00,11238.0
-2016-05-29 13:00:00,11493.0
-2016-05-29 14:00:00,11808.0
-2016-05-29 15:00:00,12019.0
-2016-05-29 16:00:00,12298.0
-2016-05-29 17:00:00,12503.0
-2016-05-29 18:00:00,12648.0
-2016-05-29 19:00:00,12653.0
-2016-05-29 20:00:00,12421.0
-2016-05-29 21:00:00,11898.0
-2016-05-29 22:00:00,11676.0
-2016-05-29 23:00:00,11509.0
-2016-05-30 00:00:00,10868.0
-2016-05-28 01:00:00,11108.0
-2016-05-28 02:00:00,10268.0
-2016-05-28 03:00:00,9790.0
-2016-05-28 04:00:00,9390.0
-2016-05-28 05:00:00,9183.0
-2016-05-28 06:00:00,9139.0
-2016-05-28 07:00:00,9183.0
-2016-05-28 08:00:00,9369.0
-2016-05-28 09:00:00,9946.0
-2016-05-28 10:00:00,10700.0
-2016-05-28 11:00:00,11436.0
-2016-05-28 12:00:00,12049.0
-2016-05-28 13:00:00,12275.0
-2016-05-28 14:00:00,12309.0
-2016-05-28 15:00:00,12386.0
-2016-05-28 16:00:00,12751.0
-2016-05-28 17:00:00,13180.0
-2016-05-28 18:00:00,13534.0
-2016-05-28 19:00:00,13657.0
-2016-05-28 20:00:00,13440.0
-2016-05-28 21:00:00,12946.0
-2016-05-28 22:00:00,12786.0
-2016-05-28 23:00:00,12495.0
-2016-05-29 00:00:00,11591.0
-2016-05-27 01:00:00,12095.0
-2016-05-27 02:00:00,11213.0
-2016-05-27 03:00:00,10586.0
-2016-05-27 04:00:00,10134.0
-2016-05-27 05:00:00,9855.0
-2016-05-27 06:00:00,9879.0
-2016-05-27 07:00:00,10279.0
-2016-05-27 08:00:00,11178.0
-2016-05-27 09:00:00,12228.0
-2016-05-27 10:00:00,12956.0
-2016-05-27 11:00:00,13465.0
-2016-05-27 12:00:00,14085.0
-2016-05-27 13:00:00,14617.0
-2016-05-27 14:00:00,15179.0
-2016-05-27 15:00:00,15414.0
-2016-05-27 16:00:00,15353.0
-2016-05-27 17:00:00,14905.0
-2016-05-27 18:00:00,14726.0
-2016-05-27 19:00:00,14356.0
-2016-05-27 20:00:00,13924.0
-2016-05-27 21:00:00,13550.0
-2016-05-27 22:00:00,13484.0
-2016-05-27 23:00:00,13085.0
-2016-05-28 00:00:00,12162.0
-2016-05-26 01:00:00,11032.0
-2016-05-26 02:00:00,10236.0
-2016-05-26 03:00:00,9759.0
-2016-05-26 04:00:00,9423.0
-2016-05-26 05:00:00,9296.0
-2016-05-26 06:00:00,9470.0
-2016-05-26 07:00:00,9951.0
-2016-05-26 08:00:00,11033.0
-2016-05-26 09:00:00,12144.0
-2016-05-26 10:00:00,12811.0
-2016-05-26 11:00:00,13217.0
-2016-05-26 12:00:00,13528.0
-2016-05-26 13:00:00,13875.0
-2016-05-26 14:00:00,14355.0
-2016-05-26 15:00:00,14903.0
-2016-05-26 16:00:00,15278.0
-2016-05-26 17:00:00,15661.0
-2016-05-26 18:00:00,16013.0
-2016-05-26 19:00:00,16044.0
-2016-05-26 20:00:00,15669.0
-2016-05-26 21:00:00,15094.0
-2016-05-26 22:00:00,14930.0
-2016-05-26 23:00:00,14416.0
-2016-05-27 00:00:00,13271.0
-2016-05-25 01:00:00,11488.0
-2016-05-25 02:00:00,10673.0
-2016-05-25 03:00:00,10145.0
-2016-05-25 04:00:00,9732.0
-2016-05-25 05:00:00,9483.0
-2016-05-25 06:00:00,9543.0
-2016-05-25 07:00:00,9919.0
-2016-05-25 08:00:00,10954.0
-2016-05-25 09:00:00,12164.0
-2016-05-25 10:00:00,13068.0
-2016-05-25 11:00:00,13821.0
-2016-05-25 12:00:00,14500.0
-2016-05-25 13:00:00,15041.0
-2016-05-25 14:00:00,15467.0
-2016-05-25 15:00:00,15951.0
-2016-05-25 16:00:00,16228.0
-2016-05-25 17:00:00,16396.0
-2016-05-25 18:00:00,15960.0
-2016-05-25 19:00:00,15167.0
-2016-05-25 20:00:00,14468.0
-2016-05-25 21:00:00,13889.0
-2016-05-25 22:00:00,13685.0
-2016-05-25 23:00:00,13143.0
-2016-05-26 00:00:00,12138.0
-2016-05-24 01:00:00,9769.0
-2016-05-24 02:00:00,9101.0
-2016-05-24 03:00:00,8696.0
-2016-05-24 04:00:00,8413.0
-2016-05-24 05:00:00,8294.0
-2016-05-24 06:00:00,8442.0
-2016-05-24 07:00:00,8793.0
-2016-05-24 08:00:00,9738.0
-2016-05-24 09:00:00,10686.0
-2016-05-24 10:00:00,11433.0
-2016-05-24 11:00:00,12070.0
-2016-05-24 12:00:00,12664.0
-2016-05-24 13:00:00,13069.0
-2016-05-24 14:00:00,13415.0
-2016-05-24 15:00:00,13785.0
-2016-05-24 16:00:00,14051.0
-2016-05-24 17:00:00,14248.0
-2016-05-24 18:00:00,14457.0
-2016-05-24 19:00:00,14442.0
-2016-05-24 20:00:00,14107.0
-2016-05-24 21:00:00,13783.0
-2016-05-24 22:00:00,13853.0
-2016-05-24 23:00:00,13537.0
-2016-05-25 00:00:00,12558.0
-2016-05-23 01:00:00,8625.0
-2016-05-23 02:00:00,8116.0
-2016-05-23 03:00:00,7835.0
-2016-05-23 04:00:00,7644.0
-2016-05-23 05:00:00,7643.0
-2016-05-23 06:00:00,7845.0
-2016-05-23 07:00:00,8363.0
-2016-05-23 08:00:00,9266.0
-2016-05-23 09:00:00,10243.0
-2016-05-23 10:00:00,10805.0
-2016-05-23 11:00:00,11273.0
-2016-05-23 12:00:00,11672.0
-2016-05-23 13:00:00,11919.0
-2016-05-23 14:00:00,12142.0
-2016-05-23 15:00:00,12401.0
-2016-05-23 16:00:00,12553.0
-2016-05-23 17:00:00,12692.0
-2016-05-23 18:00:00,12763.0
-2016-05-23 19:00:00,12662.0
-2016-05-23 20:00:00,12278.0
-2016-05-23 21:00:00,11919.0
-2016-05-23 22:00:00,11953.0
-2016-05-23 23:00:00,11562.0
-2016-05-24 00:00:00,10687.0
-2016-05-22 01:00:00,8510.0
-2016-05-22 02:00:00,8041.0
-2016-05-22 03:00:00,7722.0
-2016-05-22 04:00:00,7534.0
-2016-05-22 05:00:00,7416.0
-2016-05-22 06:00:00,7415.0
-2016-05-22 07:00:00,7290.0
-2016-05-22 08:00:00,7304.0
-2016-05-22 09:00:00,7764.0
-2016-05-22 10:00:00,8262.0
-2016-05-22 11:00:00,8647.0
-2016-05-22 12:00:00,9050.0
-2016-05-22 13:00:00,9263.0
-2016-05-22 14:00:00,9449.0
-2016-05-22 15:00:00,9546.0
-2016-05-22 16:00:00,9674.0
-2016-05-22 17:00:00,9774.0
-2016-05-22 18:00:00,9881.0
-2016-05-22 19:00:00,9966.0
-2016-05-22 20:00:00,9876.0
-2016-05-22 21:00:00,9815.0
-2016-05-22 22:00:00,10040.0
-2016-05-22 23:00:00,9955.0
-2016-05-23 00:00:00,9288.0
-2016-05-21 01:00:00,8826.0
-2016-05-21 02:00:00,8312.0
-2016-05-21 03:00:00,8013.0
-2016-05-21 04:00:00,7796.0
-2016-05-21 05:00:00,7693.0
-2016-05-21 06:00:00,7749.0
-2016-05-21 07:00:00,7836.0
-2016-05-21 08:00:00,8014.0
-2016-05-21 09:00:00,8485.0
-2016-05-21 10:00:00,8989.0
-2016-05-21 11:00:00,9314.0
-2016-05-21 12:00:00,9546.0
-2016-05-21 13:00:00,9632.0
-2016-05-21 14:00:00,9629.0
-2016-05-21 15:00:00,9625.0
-2016-05-21 16:00:00,9593.0
-2016-05-21 17:00:00,9618.0
-2016-05-21 18:00:00,9607.0
-2016-05-21 19:00:00,9599.0
-2016-05-21 20:00:00,9468.0
-2016-05-21 21:00:00,9417.0
-2016-05-21 22:00:00,9661.0
-2016-05-21 23:00:00,9622.0
-2016-05-22 00:00:00,9105.0
-2016-05-20 01:00:00,8900.0
-2016-05-20 02:00:00,8410.0
-2016-05-20 03:00:00,8114.0
-2016-05-20 04:00:00,7942.0
-2016-05-20 05:00:00,7866.0
-2016-05-20 06:00:00,8051.0
-2016-05-20 07:00:00,8514.0
-2016-05-20 08:00:00,9321.0
-2016-05-20 09:00:00,10162.0
-2016-05-20 10:00:00,10567.0
-2016-05-20 11:00:00,10820.0
-2016-05-20 12:00:00,11034.0
-2016-05-20 13:00:00,11077.0
-2016-05-20 14:00:00,11077.0
-2016-05-20 15:00:00,11117.0
-2016-05-20 16:00:00,10973.0
-2016-05-20 17:00:00,10780.0
-2016-05-20 18:00:00,10611.0
-2016-05-20 19:00:00,10402.0
-2016-05-20 20:00:00,10185.0
-2016-05-20 21:00:00,10130.0
-2016-05-20 22:00:00,10412.0
-2016-05-20 23:00:00,10167.0
-2016-05-21 00:00:00,9513.0
-2016-05-19 01:00:00,8926.0
-2016-05-19 02:00:00,8441.0
-2016-05-19 03:00:00,8188.0
-2016-05-19 04:00:00,8026.0
-2016-05-19 05:00:00,8001.0
-2016-05-19 06:00:00,8247.0
-2016-05-19 07:00:00,8729.0
-2016-05-19 08:00:00,9569.0
-2016-05-19 09:00:00,10285.0
-2016-05-19 10:00:00,10636.0
-2016-05-19 11:00:00,10878.0
-2016-05-19 12:00:00,11085.0
-2016-05-19 13:00:00,11184.0
-2016-05-19 14:00:00,11210.0
-2016-05-19 15:00:00,11278.0
-2016-05-19 16:00:00,11233.0
-2016-05-19 17:00:00,11119.0
-2016-05-19 18:00:00,10936.0
-2016-05-19 19:00:00,10779.0
-2016-05-19 20:00:00,10554.0
-2016-05-19 21:00:00,10384.0
-2016-05-19 22:00:00,10643.0
-2016-05-19 23:00:00,10421.0
-2016-05-20 00:00:00,9655.0
-2016-05-18 01:00:00,8924.0
-2016-05-18 02:00:00,8484.0
-2016-05-18 03:00:00,8224.0
-2016-05-18 04:00:00,8074.0
-2016-05-18 05:00:00,8043.0
-2016-05-18 06:00:00,8254.0
-2016-05-18 07:00:00,8835.0
-2016-05-18 08:00:00,9657.0
-2016-05-18 09:00:00,10367.0
-2016-05-18 10:00:00,10623.0
-2016-05-18 11:00:00,10755.0
-2016-05-18 12:00:00,10869.0
-2016-05-18 13:00:00,10944.0
-2016-05-18 14:00:00,10985.0
-2016-05-18 15:00:00,11029.0
-2016-05-18 16:00:00,10904.0
-2016-05-18 17:00:00,10820.0
-2016-05-18 18:00:00,10668.0
-2016-05-18 19:00:00,10511.0
-2016-05-18 20:00:00,10271.0
-2016-05-18 21:00:00,10194.0
-2016-05-18 22:00:00,10546.0
-2016-05-18 23:00:00,10342.0
-2016-05-19 00:00:00,9639.0
-2016-05-17 01:00:00,8848.0
-2016-05-17 02:00:00,8385.0
-2016-05-17 03:00:00,8104.0
-2016-05-17 04:00:00,7918.0
-2016-05-17 05:00:00,7888.0
-2016-05-17 06:00:00,8067.0
-2016-05-17 07:00:00,8633.0
-2016-05-17 08:00:00,9529.0
-2016-05-17 09:00:00,10277.0
-2016-05-17 10:00:00,10622.0
-2016-05-17 11:00:00,10771.0
-2016-05-17 12:00:00,10910.0
-2016-05-17 13:00:00,10950.0
-2016-05-17 14:00:00,10948.0
-2016-05-17 15:00:00,10952.0
-2016-05-17 16:00:00,10840.0
-2016-05-17 17:00:00,10695.0
-2016-05-17 18:00:00,10580.0
-2016-05-17 19:00:00,10414.0
-2016-05-17 20:00:00,10219.0
-2016-05-17 21:00:00,10245.0
-2016-05-17 22:00:00,10629.0
-2016-05-17 23:00:00,10397.0
-2016-05-18 00:00:00,9633.0
-2016-05-16 01:00:00,8359.0
-2016-05-16 02:00:00,8067.0
-2016-05-16 03:00:00,7902.0
-2016-05-16 04:00:00,7879.0
-2016-05-16 05:00:00,7912.0
-2016-05-16 06:00:00,8153.0
-2016-05-16 07:00:00,8737.0
-2016-05-16 08:00:00,9653.0
-2016-05-16 09:00:00,10235.0
-2016-05-16 10:00:00,10552.0
-2016-05-16 11:00:00,10727.0
-2016-05-16 12:00:00,10948.0
-2016-05-16 13:00:00,11014.0
-2016-05-16 14:00:00,11058.0
-2016-05-16 15:00:00,11113.0
-2016-05-16 16:00:00,11042.0
-2016-05-16 17:00:00,10893.0
-2016-05-16 18:00:00,10763.0
-2016-05-16 19:00:00,10611.0
-2016-05-16 20:00:00,10393.0
-2016-05-16 21:00:00,10441.0
-2016-05-16 22:00:00,10791.0
-2016-05-16 23:00:00,10379.0
-2016-05-17 00:00:00,9604.0
-2016-05-15 01:00:00,8648.0
-2016-05-15 02:00:00,8223.0
-2016-05-15 03:00:00,8025.0
-2016-05-15 04:00:00,7840.0
-2016-05-15 05:00:00,7780.0
-2016-05-15 06:00:00,7842.0
-2016-05-15 07:00:00,7795.0
-2016-05-15 08:00:00,7851.0
-2016-05-15 09:00:00,8064.0
-2016-05-15 10:00:00,8355.0
-2016-05-15 11:00:00,8580.0
-2016-05-15 12:00:00,8709.0
-2016-05-15 13:00:00,8753.0
-2016-05-15 14:00:00,8709.0
-2016-05-15 15:00:00,8676.0
-2016-05-15 16:00:00,8589.0
-2016-05-15 17:00:00,8590.0
-2016-05-15 18:00:00,8603.0
-2016-05-15 19:00:00,8686.0
-2016-05-15 20:00:00,8708.0
-2016-05-15 21:00:00,8863.0
-2016-05-15 22:00:00,9383.0
-2016-05-15 23:00:00,9337.0
-2016-05-16 00:00:00,8808.0
-2016-05-14 01:00:00,9008.0
-2016-05-14 02:00:00,8461.0
-2016-05-14 03:00:00,8113.0
-2016-05-14 04:00:00,8010.0
-2016-05-14 05:00:00,7928.0
-2016-05-14 06:00:00,8006.0
-2016-05-14 07:00:00,8111.0
-2016-05-14 08:00:00,8343.0
-2016-05-14 09:00:00,8817.0
-2016-05-14 10:00:00,9218.0
-2016-05-14 11:00:00,9502.0
-2016-05-14 12:00:00,9581.0
-2016-05-14 13:00:00,9615.0
-2016-05-14 14:00:00,9584.0
-2016-05-14 15:00:00,9466.0
-2016-05-14 16:00:00,9364.0
-2016-05-14 17:00:00,9307.0
-2016-05-14 18:00:00,9257.0
-2016-05-14 19:00:00,9262.0
-2016-05-14 20:00:00,9212.0
-2016-05-14 21:00:00,9287.0
-2016-05-14 22:00:00,9675.0
-2016-05-14 23:00:00,9580.0
-2016-05-15 00:00:00,9115.0
-2016-05-13 01:00:00,8949.0
-2016-05-13 02:00:00,8427.0
-2016-05-13 03:00:00,8092.0
-2016-05-13 04:00:00,7927.0
-2016-05-13 05:00:00,7866.0
-2016-05-13 06:00:00,8059.0
-2016-05-13 07:00:00,8512.0
-2016-05-13 08:00:00,9339.0
-2016-05-13 09:00:00,10084.0
-2016-05-13 10:00:00,10497.0
-2016-05-13 11:00:00,10761.0
-2016-05-13 12:00:00,10993.0
-2016-05-13 13:00:00,11048.0
-2016-05-13 14:00:00,11041.0
-2016-05-13 15:00:00,11088.0
-2016-05-13 16:00:00,11019.0
-2016-05-13 17:00:00,10816.0
-2016-05-13 18:00:00,10677.0
-2016-05-13 19:00:00,10548.0
-2016-05-13 20:00:00,10334.0
-2016-05-13 21:00:00,10492.0
-2016-05-13 22:00:00,10660.0
-2016-05-13 23:00:00,10333.0
-2016-05-14 00:00:00,9680.0
-2016-05-12 01:00:00,9088.0
-2016-05-12 02:00:00,8596.0
-2016-05-12 03:00:00,8294.0
-2016-05-12 04:00:00,8155.0
-2016-05-12 05:00:00,8100.0
-2016-05-12 06:00:00,8296.0
-2016-05-12 07:00:00,8855.0
-2016-05-12 08:00:00,9741.0
-2016-05-12 09:00:00,10641.0
-2016-05-12 10:00:00,11137.0
-2016-05-12 11:00:00,11426.0
-2016-05-12 12:00:00,11623.0
-2016-05-12 13:00:00,11610.0
-2016-05-12 14:00:00,11589.0
-2016-05-12 15:00:00,11595.0
-2016-05-12 16:00:00,11500.0
-2016-05-12 17:00:00,11342.0
-2016-05-12 18:00:00,11282.0
-2016-05-12 19:00:00,11094.0
-2016-05-12 20:00:00,10708.0
-2016-05-12 21:00:00,10563.0
-2016-05-12 22:00:00,10856.0
-2016-05-12 23:00:00,10506.0
-2016-05-13 00:00:00,9732.0
-2016-05-11 01:00:00,9055.0
-2016-05-11 02:00:00,8537.0
-2016-05-11 03:00:00,8217.0
-2016-05-11 04:00:00,8051.0
-2016-05-11 05:00:00,7990.0
-2016-05-11 06:00:00,8166.0
-2016-05-11 07:00:00,8760.0
-2016-05-11 08:00:00,9594.0
-2016-05-11 09:00:00,10338.0
-2016-05-11 10:00:00,10692.0
-2016-05-11 11:00:00,10911.0
-2016-05-11 12:00:00,11121.0
-2016-05-11 13:00:00,11203.0
-2016-05-11 14:00:00,11263.0
-2016-05-11 15:00:00,11341.0
-2016-05-11 16:00:00,11333.0
-2016-05-11 17:00:00,11251.0
-2016-05-11 18:00:00,11128.0
-2016-05-11 19:00:00,11001.0
-2016-05-11 20:00:00,10717.0
-2016-05-11 21:00:00,10716.0
-2016-05-11 22:00:00,11058.0
-2016-05-11 23:00:00,10645.0
-2016-05-12 00:00:00,9844.0
-2016-05-10 01:00:00,8923.0
-2016-05-10 02:00:00,8477.0
-2016-05-10 03:00:00,8212.0
-2016-05-10 04:00:00,8045.0
-2016-05-10 05:00:00,7977.0
-2016-05-10 06:00:00,8187.0
-2016-05-10 07:00:00,8826.0
-2016-05-10 08:00:00,9787.0
-2016-05-10 09:00:00,10543.0
-2016-05-10 10:00:00,10886.0
-2016-05-10 11:00:00,11073.0
-2016-05-10 12:00:00,11258.0
-2016-05-10 13:00:00,11321.0
-2016-05-10 14:00:00,11271.0
-2016-05-10 15:00:00,11231.0
-2016-05-10 16:00:00,11160.0
-2016-05-10 17:00:00,11044.0
-2016-05-10 18:00:00,10991.0
-2016-05-10 19:00:00,10900.0
-2016-05-10 20:00:00,10655.0
-2016-05-10 21:00:00,10628.0
-2016-05-10 22:00:00,10928.0
-2016-05-10 23:00:00,10543.0
-2016-05-11 00:00:00,9785.0
-2016-05-09 01:00:00,8193.0
-2016-05-09 02:00:00,7851.0
-2016-05-09 03:00:00,7672.0
-2016-05-09 04:00:00,7584.0
-2016-05-09 05:00:00,7581.0
-2016-05-09 06:00:00,7825.0
-2016-05-09 07:00:00,8441.0
-2016-05-09 08:00:00,9350.0
-2016-05-09 09:00:00,10154.0
-2016-05-09 10:00:00,10558.0
-2016-05-09 11:00:00,10749.0
-2016-05-09 12:00:00,10935.0
-2016-05-09 13:00:00,10985.0
-2016-05-09 14:00:00,10946.0
-2016-05-09 15:00:00,10961.0
-2016-05-09 16:00:00,10833.0
-2016-05-09 17:00:00,10691.0
-2016-05-09 18:00:00,10644.0
-2016-05-09 19:00:00,10659.0
-2016-05-09 20:00:00,10668.0
-2016-05-09 21:00:00,10840.0
-2016-05-09 22:00:00,10854.0
-2016-05-09 23:00:00,10419.0
-2016-05-10 00:00:00,9659.0
-2016-05-08 01:00:00,8267.0
-2016-05-08 02:00:00,7872.0
-2016-05-08 03:00:00,7592.0
-2016-05-08 04:00:00,7392.0
-2016-05-08 05:00:00,7383.0
-2016-05-08 06:00:00,7366.0
-2016-05-08 07:00:00,7421.0
-2016-05-08 08:00:00,7372.0
-2016-05-08 09:00:00,7652.0
-2016-05-08 10:00:00,8026.0
-2016-05-08 11:00:00,8293.0
-2016-05-08 12:00:00,8476.0
-2016-05-08 13:00:00,8569.0
-2016-05-08 14:00:00,8619.0
-2016-05-08 15:00:00,8586.0
-2016-05-08 16:00:00,8613.0
-2016-05-08 17:00:00,8578.0
-2016-05-08 18:00:00,8648.0
-2016-05-08 19:00:00,8581.0
-2016-05-08 20:00:00,8617.0
-2016-05-08 21:00:00,8771.0
-2016-05-08 22:00:00,9296.0
-2016-05-08 23:00:00,9154.0
-2016-05-09 00:00:00,8718.0
-2016-05-07 01:00:00,9460.0
-2016-05-07 02:00:00,8856.0
-2016-05-07 03:00:00,8457.0
-2016-05-07 04:00:00,8259.0
-2016-05-07 05:00:00,8071.0
-2016-05-07 06:00:00,8102.0
-2016-05-07 07:00:00,8203.0
-2016-05-07 08:00:00,8357.0
-2016-05-07 09:00:00,8808.0
-2016-05-07 10:00:00,9223.0
-2016-05-07 11:00:00,9393.0
-2016-05-07 12:00:00,9472.0
-2016-05-07 13:00:00,9457.0
-2016-05-07 14:00:00,9319.0
-2016-05-07 15:00:00,9186.0
-2016-05-07 16:00:00,9078.0
-2016-05-07 17:00:00,9011.0
-2016-05-07 18:00:00,8926.0
-2016-05-07 19:00:00,8892.0
-2016-05-07 20:00:00,8816.0
-2016-05-07 21:00:00,8942.0
-2016-05-07 22:00:00,9364.0
-2016-05-07 23:00:00,9222.0
-2016-05-08 00:00:00,8808.0
-2016-05-06 01:00:00,8911.0
-2016-05-06 02:00:00,8472.0
-2016-05-06 03:00:00,8179.0
-2016-05-06 04:00:00,8045.0
-2016-05-06 05:00:00,8013.0
-2016-05-06 06:00:00,8214.0
-2016-05-06 07:00:00,8818.0
-2016-05-06 08:00:00,9587.0
-2016-05-06 09:00:00,10265.0
-2016-05-06 10:00:00,10571.0
-2016-05-06 11:00:00,10804.0
-2016-05-06 12:00:00,11031.0
-2016-05-06 13:00:00,11133.0
-2016-05-06 14:00:00,11217.0
-2016-05-06 15:00:00,11363.0
-2016-05-06 16:00:00,11412.0
-2016-05-06 17:00:00,11435.0
-2016-05-06 18:00:00,11451.0
-2016-05-06 19:00:00,11357.0
-2016-05-06 20:00:00,11180.0
-2016-05-06 21:00:00,11023.0
-2016-05-06 22:00:00,11290.0
-2016-05-06 23:00:00,10968.0
-2016-05-07 00:00:00,10222.0
-2016-05-05 01:00:00,9177.0
-2016-05-05 02:00:00,8748.0
-2016-05-05 03:00:00,8514.0
-2016-05-05 04:00:00,8342.0
-2016-05-05 05:00:00,8319.0
-2016-05-05 06:00:00,8542.0
-2016-05-05 07:00:00,9185.0
-2016-05-05 08:00:00,10048.0
-2016-05-05 09:00:00,10647.0
-2016-05-05 10:00:00,10832.0
-2016-05-05 11:00:00,10893.0
-2016-05-05 12:00:00,10963.0
-2016-05-05 13:00:00,10944.0
-2016-05-05 14:00:00,10943.0
-2016-05-05 15:00:00,10964.0
-2016-05-05 16:00:00,10856.0
-2016-05-05 17:00:00,10724.0
-2016-05-05 18:00:00,10575.0
-2016-05-05 19:00:00,10404.0
-2016-05-05 20:00:00,10134.0
-2016-05-05 21:00:00,10183.0
-2016-05-05 22:00:00,10627.0
-2016-05-05 23:00:00,10347.0
-2016-05-06 00:00:00,9621.0
-2016-05-04 01:00:00,8950.0
-2016-05-04 02:00:00,8449.0
-2016-05-04 03:00:00,8231.0
-2016-05-04 04:00:00,8053.0
-2016-05-04 05:00:00,8000.0
-2016-05-04 06:00:00,8212.0
-2016-05-04 07:00:00,8847.0
-2016-05-04 08:00:00,9685.0
-2016-05-04 09:00:00,10359.0
-2016-05-04 10:00:00,10656.0
-2016-05-04 11:00:00,10791.0
-2016-05-04 12:00:00,10961.0
-2016-05-04 13:00:00,10951.0
-2016-05-04 14:00:00,11006.0
-2016-05-04 15:00:00,11043.0
-2016-05-04 16:00:00,10927.0
-2016-05-04 17:00:00,10813.0
-2016-05-04 18:00:00,10683.0
-2016-05-04 19:00:00,10623.0
-2016-05-04 20:00:00,10509.0
-2016-05-04 21:00:00,10653.0
-2016-05-04 22:00:00,10933.0
-2016-05-04 23:00:00,10593.0
-2016-05-05 00:00:00,9863.0
-2016-05-03 01:00:00,8963.0
-2016-05-03 02:00:00,8525.0
-2016-05-03 03:00:00,8279.0
-2016-05-03 04:00:00,8179.0
-2016-05-03 05:00:00,8151.0
-2016-05-03 06:00:00,8427.0
-2016-05-03 07:00:00,9038.0
-2016-05-03 08:00:00,9859.0
-2016-05-03 09:00:00,10461.0
-2016-05-03 10:00:00,10652.0
-2016-05-03 11:00:00,10755.0
-2016-05-03 12:00:00,10927.0
-2016-05-03 13:00:00,10971.0
-2016-05-03 14:00:00,11023.0
-2016-05-03 15:00:00,11021.0
-2016-05-03 16:00:00,10920.0
-2016-05-03 17:00:00,10788.0
-2016-05-03 18:00:00,10672.0
-2016-05-03 19:00:00,10517.0
-2016-05-03 20:00:00,10334.0
-2016-05-03 21:00:00,10484.0
-2016-05-03 22:00:00,10833.0
-2016-05-03 23:00:00,10464.0
-2016-05-04 00:00:00,9695.0
-2016-05-02 01:00:00,8647.0
-2016-05-02 02:00:00,8305.0
-2016-05-02 03:00:00,8146.0
-2016-05-02 04:00:00,8029.0
-2016-05-02 05:00:00,8097.0
-2016-05-02 06:00:00,8318.0
-2016-05-02 07:00:00,9056.0
-2016-05-02 08:00:00,9897.0
-2016-05-02 09:00:00,10513.0
-2016-05-02 10:00:00,10693.0
-2016-05-02 11:00:00,10771.0
-2016-05-02 12:00:00,10850.0
-2016-05-02 13:00:00,10822.0
-2016-05-02 14:00:00,10774.0
-2016-05-02 15:00:00,10793.0
-2016-05-02 16:00:00,10687.0
-2016-05-02 17:00:00,10510.0
-2016-05-02 18:00:00,10379.0
-2016-05-02 19:00:00,10278.0
-2016-05-02 20:00:00,10156.0
-2016-05-02 21:00:00,10228.0
-2016-05-02 22:00:00,10705.0
-2016-05-02 23:00:00,10372.0
-2016-05-03 00:00:00,9679.0
-2016-05-01 01:00:00,8906.0
-2016-05-01 02:00:00,8473.0
-2016-05-01 03:00:00,8170.0
-2016-05-01 04:00:00,7999.0
-2016-05-01 05:00:00,7893.0
-2016-05-01 06:00:00,7902.0
-2016-05-01 07:00:00,8004.0
-2016-05-01 08:00:00,8070.0
-2016-05-01 09:00:00,8309.0
-2016-05-01 10:00:00,8667.0
-2016-05-01 11:00:00,8959.0
-2016-05-01 12:00:00,9087.0
-2016-05-01 13:00:00,9147.0
-2016-05-01 14:00:00,9081.0
-2016-05-01 15:00:00,9011.0
-2016-05-01 16:00:00,8923.0
-2016-05-01 17:00:00,8965.0
-2016-05-01 18:00:00,9029.0
-2016-05-01 19:00:00,9165.0
-2016-05-01 20:00:00,9368.0
-2016-05-01 21:00:00,9814.0
-2016-05-01 22:00:00,9925.0
-2016-05-01 23:00:00,9648.0
-2016-05-02 00:00:00,9157.0
-2016-04-30 01:00:00,9196.0
-2016-04-30 02:00:00,8627.0
-2016-04-30 03:00:00,8393.0
-2016-04-30 04:00:00,8197.0
-2016-04-30 05:00:00,8116.0
-2016-04-30 06:00:00,8160.0
-2016-04-30 07:00:00,8398.0
-2016-04-30 08:00:00,8628.0
-2016-04-30 09:00:00,8984.0
-2016-04-30 10:00:00,9455.0
-2016-04-30 11:00:00,9765.0
-2016-04-30 12:00:00,9931.0
-2016-04-30 13:00:00,9974.0
-2016-04-30 14:00:00,9965.0
-2016-04-30 15:00:00,9843.0
-2016-04-30 16:00:00,9798.0
-2016-04-30 17:00:00,9800.0
-2016-04-30 18:00:00,9774.0
-2016-04-30 19:00:00,9794.0
-2016-04-30 20:00:00,9857.0
-2016-04-30 21:00:00,10013.0
-2016-04-30 22:00:00,10174.0
-2016-04-30 23:00:00,9897.0
-2016-05-01 00:00:00,9429.0
-2016-04-29 01:00:00,9189.0
-2016-04-29 02:00:00,8706.0
-2016-04-29 03:00:00,8427.0
-2016-04-29 04:00:00,8267.0
-2016-04-29 05:00:00,8234.0
-2016-04-29 06:00:00,8457.0
-2016-04-29 07:00:00,9052.0
-2016-04-29 08:00:00,9929.0
-2016-04-29 09:00:00,10669.0
-2016-04-29 10:00:00,10965.0
-2016-04-29 11:00:00,11140.0
-2016-04-29 12:00:00,11180.0
-2016-04-29 13:00:00,11078.0
-2016-04-29 14:00:00,10967.0
-2016-04-29 15:00:00,10900.0
-2016-04-29 16:00:00,10720.0
-2016-04-29 17:00:00,10526.0
-2016-04-29 18:00:00,10342.0
-2016-04-29 19:00:00,10216.0
-2016-04-29 20:00:00,10180.0
-2016-04-29 21:00:00,10431.0
-2016-04-29 22:00:00,10683.0
-2016-04-29 23:00:00,10441.0
-2016-04-30 00:00:00,9802.0
-2016-04-28 01:00:00,9236.0
-2016-04-28 02:00:00,8788.0
-2016-04-28 03:00:00,8559.0
-2016-04-28 04:00:00,8404.0
-2016-04-28 05:00:00,8384.0
-2016-04-28 06:00:00,8641.0
-2016-04-28 07:00:00,9296.0
-2016-04-28 08:00:00,10160.0
-2016-04-28 09:00:00,10787.0
-2016-04-28 10:00:00,11095.0
-2016-04-28 11:00:00,11197.0
-2016-04-28 12:00:00,11249.0
-2016-04-28 13:00:00,11212.0
-2016-04-28 14:00:00,11110.0
-2016-04-28 15:00:00,11057.0
-2016-04-28 16:00:00,10941.0
-2016-04-28 17:00:00,10771.0
-2016-04-28 18:00:00,10687.0
-2016-04-28 19:00:00,10632.0
-2016-04-28 20:00:00,10566.0
-2016-04-28 21:00:00,10818.0
-2016-04-28 22:00:00,10985.0
-2016-04-28 23:00:00,10576.0
-2016-04-29 00:00:00,9874.0
-2016-04-27 01:00:00,9044.0
-2016-04-27 02:00:00,8604.0
-2016-04-27 03:00:00,8345.0
-2016-04-27 04:00:00,8182.0
-2016-04-27 05:00:00,8160.0
-2016-04-27 06:00:00,8392.0
-2016-04-27 07:00:00,9099.0
-2016-04-27 08:00:00,9989.0
-2016-04-27 09:00:00,10681.0
-2016-04-27 10:00:00,10959.0
-2016-04-27 11:00:00,11087.0
-2016-04-27 12:00:00,11196.0
-2016-04-27 13:00:00,11146.0
-2016-04-27 14:00:00,11099.0
-2016-04-27 15:00:00,11093.0
-2016-04-27 16:00:00,11053.0
-2016-04-27 17:00:00,11071.0
-2016-04-27 18:00:00,11046.0
-2016-04-27 19:00:00,11092.0
-2016-04-27 20:00:00,11050.0
-2016-04-27 21:00:00,11124.0
-2016-04-27 22:00:00,11187.0
-2016-04-27 23:00:00,10730.0
-2016-04-28 00:00:00,9944.0
-2016-04-26 01:00:00,9874.0
-2016-04-26 02:00:00,9160.0
-2016-04-26 03:00:00,8586.0
-2016-04-26 04:00:00,8261.0
-2016-04-26 05:00:00,8045.0
-2016-04-26 06:00:00,8167.0
-2016-04-26 07:00:00,8747.0
-2016-04-26 08:00:00,9538.0
-2016-04-26 09:00:00,10217.0
-2016-04-26 10:00:00,10584.0
-2016-04-26 11:00:00,10706.0
-2016-04-26 12:00:00,10805.0
-2016-04-26 13:00:00,10821.0
-2016-04-26 14:00:00,10784.0
-2016-04-26 15:00:00,10829.0
-2016-04-26 16:00:00,10737.0
-2016-04-26 17:00:00,10618.0
-2016-04-26 18:00:00,10552.0
-2016-04-26 19:00:00,10566.0
-2016-04-26 20:00:00,10503.0
-2016-04-26 21:00:00,10743.0
-2016-04-26 22:00:00,10932.0
-2016-04-26 23:00:00,10524.0
-2016-04-27 00:00:00,9735.0
-2016-04-25 01:00:00,8491.0
-2016-04-25 02:00:00,8106.0
-2016-04-25 03:00:00,7874.0
-2016-04-25 04:00:00,7694.0
-2016-04-25 05:00:00,7725.0
-2016-04-25 06:00:00,7910.0
-2016-04-25 07:00:00,8598.0
-2016-04-25 08:00:00,9416.0
-2016-04-25 09:00:00,10285.0
-2016-04-25 10:00:00,10812.0
-2016-04-25 11:00:00,11092.0
-2016-04-25 12:00:00,11466.0
-2016-04-25 13:00:00,11728.0
-2016-04-25 14:00:00,11927.0
-2016-04-25 15:00:00,12156.0
-2016-04-25 16:00:00,12232.0
-2016-04-25 17:00:00,12300.0
-2016-04-25 18:00:00,12298.0
-2016-04-25 19:00:00,12134.0
-2016-04-25 20:00:00,11822.0
-2016-04-25 21:00:00,11810.0
-2016-04-25 22:00:00,12088.0
-2016-04-25 23:00:00,11600.0
-2016-04-26 00:00:00,10747.0
-2016-04-24 01:00:00,8393.0
-2016-04-24 02:00:00,7996.0
-2016-04-24 03:00:00,7750.0
-2016-04-24 04:00:00,7601.0
-2016-04-24 05:00:00,7554.0
-2016-04-24 06:00:00,7519.0
-2016-04-24 07:00:00,7667.0
-2016-04-24 08:00:00,7562.0
-2016-04-24 09:00:00,7772.0
-2016-04-24 10:00:00,8133.0
-2016-04-24 11:00:00,8382.0
-2016-04-24 12:00:00,8584.0
-2016-04-24 13:00:00,8706.0
-2016-04-24 14:00:00,8831.0
-2016-04-24 15:00:00,8906.0
-2016-04-24 16:00:00,9053.0
-2016-04-24 17:00:00,9067.0
-2016-04-24 18:00:00,9116.0
-2016-04-24 19:00:00,9169.0
-2016-04-24 20:00:00,9183.0
-2016-04-24 21:00:00,9474.0
-2016-04-24 22:00:00,9868.0
-2016-04-24 23:00:00,9587.0
-2016-04-25 00:00:00,9091.0
-2016-04-23 01:00:00,9016.0
-2016-04-23 02:00:00,8509.0
-2016-04-23 03:00:00,8181.0
-2016-04-23 04:00:00,8008.0
-2016-04-23 05:00:00,7999.0
-2016-04-23 06:00:00,8043.0
-2016-04-23 07:00:00,8288.0
-2016-04-23 08:00:00,8449.0
-2016-04-23 09:00:00,8782.0
-2016-04-23 10:00:00,9076.0
-2016-04-23 11:00:00,9288.0
-2016-04-23 12:00:00,9349.0
-2016-04-23 13:00:00,9341.0
-2016-04-23 14:00:00,9256.0
-2016-04-23 15:00:00,9114.0
-2016-04-23 16:00:00,9005.0
-2016-04-23 17:00:00,8924.0
-2016-04-23 18:00:00,8911.0
-2016-04-23 19:00:00,8892.0
-2016-04-23 20:00:00,8872.0
-2016-04-23 21:00:00,9090.0
-2016-04-23 22:00:00,9504.0
-2016-04-23 23:00:00,9247.0
-2016-04-24 00:00:00,8852.0
-2016-04-22 01:00:00,8965.0
-2016-04-22 02:00:00,8454.0
-2016-04-22 03:00:00,8141.0
-2016-04-22 04:00:00,7952.0
-2016-04-22 05:00:00,7869.0
-2016-04-22 06:00:00,8026.0
-2016-04-22 07:00:00,8625.0
-2016-04-22 08:00:00,9444.0
-2016-04-22 09:00:00,10156.0
-2016-04-22 10:00:00,10578.0
-2016-04-22 11:00:00,10805.0
-2016-04-22 12:00:00,10895.0
-2016-04-22 13:00:00,10834.0
-2016-04-22 14:00:00,10754.0
-2016-04-22 15:00:00,10716.0
-2016-04-22 16:00:00,10598.0
-2016-04-22 17:00:00,10404.0
-2016-04-22 18:00:00,10259.0
-2016-04-22 19:00:00,10086.0
-2016-04-22 20:00:00,9924.0
-2016-04-22 21:00:00,10092.0
-2016-04-22 22:00:00,10492.0
-2016-04-22 23:00:00,10229.0
-2016-04-23 00:00:00,9627.0
-2016-04-21 01:00:00,9014.0
-2016-04-21 02:00:00,8514.0
-2016-04-21 03:00:00,8221.0
-2016-04-21 04:00:00,8036.0
-2016-04-21 05:00:00,7966.0
-2016-04-21 06:00:00,8167.0
-2016-04-21 07:00:00,8805.0
-2016-04-21 08:00:00,9688.0
-2016-04-21 09:00:00,10405.0
-2016-04-21 10:00:00,10795.0
-2016-04-21 11:00:00,11036.0
-2016-04-21 12:00:00,11264.0
-2016-04-21 13:00:00,11394.0
-2016-04-21 14:00:00,11405.0
-2016-04-21 15:00:00,11442.0
-2016-04-21 16:00:00,11359.0
-2016-04-21 17:00:00,11217.0
-2016-04-21 18:00:00,11113.0
-2016-04-21 19:00:00,10924.0
-2016-04-21 20:00:00,10647.0
-2016-04-21 21:00:00,10664.0
-2016-04-21 22:00:00,10848.0
-2016-04-21 23:00:00,10400.0
-2016-04-22 00:00:00,9696.0
-2016-04-20 01:00:00,8877.0
-2016-04-20 02:00:00,8423.0
-2016-04-20 03:00:00,8158.0
-2016-04-20 04:00:00,7992.0
-2016-04-20 05:00:00,7952.0
-2016-04-20 06:00:00,8209.0
-2016-04-20 07:00:00,8883.0
-2016-04-20 08:00:00,9619.0
-2016-04-20 09:00:00,10250.0
-2016-04-20 10:00:00,10609.0
-2016-04-20 11:00:00,10762.0
-2016-04-20 12:00:00,10934.0
-2016-04-20 13:00:00,11027.0
-2016-04-20 14:00:00,11082.0
-2016-04-20 15:00:00,11181.0
-2016-04-20 16:00:00,11128.0
-2016-04-20 17:00:00,10980.0
-2016-04-20 18:00:00,10823.0
-2016-04-20 19:00:00,10747.0
-2016-04-20 20:00:00,10624.0
-2016-04-20 21:00:00,10949.0
-2016-04-20 22:00:00,10971.0
-2016-04-20 23:00:00,10494.0
-2016-04-21 00:00:00,9707.0
-2016-04-19 01:00:00,9139.0
-2016-04-19 02:00:00,8559.0
-2016-04-19 03:00:00,8220.0
-2016-04-19 04:00:00,7999.0
-2016-04-19 05:00:00,7914.0
-2016-04-19 06:00:00,8072.0
-2016-04-19 07:00:00,8666.0
-2016-04-19 08:00:00,9476.0
-2016-04-19 09:00:00,10142.0
-2016-04-19 10:00:00,10506.0
-2016-04-19 11:00:00,10677.0
-2016-04-19 12:00:00,10798.0
-2016-04-19 13:00:00,10852.0
-2016-04-19 14:00:00,10842.0
-2016-04-19 15:00:00,10849.0
-2016-04-19 16:00:00,10784.0
-2016-04-19 17:00:00,10666.0
-2016-04-19 18:00:00,10556.0
-2016-04-19 19:00:00,10461.0
-2016-04-19 20:00:00,10444.0
-2016-04-19 21:00:00,10682.0
-2016-04-19 22:00:00,10765.0
-2016-04-19 23:00:00,10336.0
-2016-04-20 00:00:00,9606.0
-2016-04-18 01:00:00,8367.0
-2016-04-18 02:00:00,7956.0
-2016-04-18 03:00:00,7728.0
-2016-04-18 04:00:00,7578.0
-2016-04-18 05:00:00,7568.0
-2016-04-18 06:00:00,7797.0
-2016-04-18 07:00:00,8466.0
-2016-04-18 08:00:00,9278.0
-2016-04-18 09:00:00,10076.0
-2016-04-18 10:00:00,10581.0
-2016-04-18 11:00:00,10938.0
-2016-04-18 12:00:00,11336.0
-2016-04-18 13:00:00,11547.0
-2016-04-18 14:00:00,11746.0
-2016-04-18 15:00:00,11939.0
-2016-04-18 16:00:00,12003.0
-2016-04-18 17:00:00,11974.0
-2016-04-18 18:00:00,11871.0
-2016-04-18 19:00:00,11620.0
-2016-04-18 20:00:00,11228.0
-2016-04-18 21:00:00,11307.0
-2016-04-18 22:00:00,11403.0
-2016-04-18 23:00:00,10871.0
-2016-04-19 00:00:00,9987.0
-2016-04-17 01:00:00,8423.0
-2016-04-17 02:00:00,7962.0
-2016-04-17 03:00:00,7693.0
-2016-04-17 04:00:00,7558.0
-2016-04-17 05:00:00,7426.0
-2016-04-17 06:00:00,7436.0
-2016-04-17 07:00:00,7507.0
-2016-04-17 08:00:00,7502.0
-2016-04-17 09:00:00,7697.0
-2016-04-17 10:00:00,8098.0
-2016-04-17 11:00:00,8413.0
-2016-04-17 12:00:00,8696.0
-2016-04-17 13:00:00,8925.0
-2016-04-17 14:00:00,9053.0
-2016-04-17 15:00:00,9156.0
-2016-04-17 16:00:00,9247.0
-2016-04-17 17:00:00,9301.0
-2016-04-17 18:00:00,9378.0
-2016-04-17 19:00:00,9441.0
-2016-04-17 20:00:00,9368.0
-2016-04-17 21:00:00,9580.0
-2016-04-17 22:00:00,9895.0
-2016-04-17 23:00:00,9506.0
-2016-04-18 00:00:00,8960.0
-2016-04-16 01:00:00,8969.0
-2016-04-16 02:00:00,8472.0
-2016-04-16 03:00:00,8192.0
-2016-04-16 04:00:00,7966.0
-2016-04-16 05:00:00,7945.0
-2016-04-16 06:00:00,8003.0
-2016-04-16 07:00:00,8253.0
-2016-04-16 08:00:00,8414.0
-2016-04-16 09:00:00,8665.0
-2016-04-16 10:00:00,9001.0
-2016-04-16 11:00:00,9270.0
-2016-04-16 12:00:00,9442.0
-2016-04-16 13:00:00,9499.0
-2016-04-16 14:00:00,9501.0
-2016-04-16 15:00:00,9433.0
-2016-04-16 16:00:00,9348.0
-2016-04-16 17:00:00,9311.0
-2016-04-16 18:00:00,9297.0
-2016-04-16 19:00:00,9266.0
-2016-04-16 20:00:00,9159.0
-2016-04-16 21:00:00,9327.0
-2016-04-16 22:00:00,9623.0
-2016-04-16 23:00:00,9456.0
-2016-04-17 00:00:00,8945.0
-2016-04-15 01:00:00,9160.0
-2016-04-15 02:00:00,8708.0
-2016-04-15 03:00:00,8448.0
-2016-04-15 04:00:00,8315.0
-2016-04-15 05:00:00,8312.0
-2016-04-15 06:00:00,8557.0
-2016-04-15 07:00:00,9255.0
-2016-04-15 08:00:00,10028.0
-2016-04-15 09:00:00,10525.0
-2016-04-15 10:00:00,10724.0
-2016-04-15 11:00:00,10857.0
-2016-04-15 12:00:00,10931.0
-2016-04-15 13:00:00,10933.0
-2016-04-15 14:00:00,10939.0
-2016-04-15 15:00:00,10971.0
-2016-04-15 16:00:00,10879.0
-2016-04-15 17:00:00,10713.0
-2016-04-15 18:00:00,10549.0
-2016-04-15 19:00:00,10354.0
-2016-04-15 20:00:00,10149.0
-2016-04-15 21:00:00,10299.0
-2016-04-15 22:00:00,10549.0
-2016-04-15 23:00:00,10251.0
-2016-04-16 00:00:00,9615.0
-2016-04-14 01:00:00,9435.0
-2016-04-14 02:00:00,9002.0
-2016-04-14 03:00:00,8732.0
-2016-04-14 04:00:00,8587.0
-2016-04-14 05:00:00,8600.0
-2016-04-14 06:00:00,8850.0
-2016-04-14 07:00:00,9589.0
-2016-04-14 08:00:00,10435.0
-2016-04-14 09:00:00,10920.0
-2016-04-14 10:00:00,11062.0
-2016-04-14 11:00:00,11053.0
-2016-04-14 12:00:00,11088.0
-2016-04-14 13:00:00,11059.0
-2016-04-14 14:00:00,11009.0
-2016-04-14 15:00:00,11021.0
-2016-04-14 16:00:00,10874.0
-2016-04-14 17:00:00,10712.0
-2016-04-14 18:00:00,10582.0
-2016-04-14 19:00:00,10465.0
-2016-04-14 20:00:00,10285.0
-2016-04-14 21:00:00,10605.0
-2016-04-14 22:00:00,10909.0
-2016-04-14 23:00:00,10534.0
-2016-04-15 00:00:00,9849.0
-2016-04-13 01:00:00,9570.0
-2016-04-13 02:00:00,9148.0
-2016-04-13 03:00:00,8909.0
-2016-04-13 04:00:00,8776.0
-2016-04-13 05:00:00,8780.0
-2016-04-13 06:00:00,9037.0
-2016-04-13 07:00:00,9777.0
-2016-04-13 08:00:00,10698.0
-2016-04-13 09:00:00,11126.0
-2016-04-13 10:00:00,11282.0
-2016-04-13 11:00:00,11249.0
-2016-04-13 12:00:00,11218.0
-2016-04-13 13:00:00,11130.0
-2016-04-13 14:00:00,11036.0
-2016-04-13 15:00:00,11034.0
-2016-04-13 16:00:00,10949.0
-2016-04-13 17:00:00,10818.0
-2016-04-13 18:00:00,10742.0
-2016-04-13 19:00:00,10661.0
-2016-04-13 20:00:00,10538.0
-2016-04-13 21:00:00,10872.0
-2016-04-13 22:00:00,11179.0
-2016-04-13 23:00:00,10783.0
-2016-04-14 00:00:00,10093.0
-2016-04-12 01:00:00,9466.0
-2016-04-12 02:00:00,9087.0
-2016-04-12 03:00:00,8853.0
-2016-04-12 04:00:00,8727.0
-2016-04-12 05:00:00,8768.0
-2016-04-12 06:00:00,9061.0
-2016-04-12 07:00:00,9855.0
-2016-04-12 08:00:00,10788.0
-2016-04-12 09:00:00,11221.0
-2016-04-12 10:00:00,11339.0
-2016-04-12 11:00:00,11319.0
-2016-04-12 12:00:00,11331.0
-2016-04-12 13:00:00,11256.0
-2016-04-12 14:00:00,11127.0
-2016-04-12 15:00:00,11110.0
-2016-04-12 16:00:00,10962.0
-2016-04-12 17:00:00,10818.0
-2016-04-12 18:00:00,10681.0
-2016-04-12 19:00:00,10618.0
-2016-04-12 20:00:00,10470.0
-2016-04-12 21:00:00,10870.0
-2016-04-12 22:00:00,11269.0
-2016-04-12 23:00:00,10906.0
-2016-04-13 00:00:00,10241.0
-2016-04-11 01:00:00,8963.0
-2016-04-11 02:00:00,8566.0
-2016-04-11 03:00:00,8381.0
-2016-04-11 04:00:00,8274.0
-2016-04-11 05:00:00,8291.0
-2016-04-11 06:00:00,8599.0
-2016-04-11 07:00:00,9380.0
-2016-04-11 08:00:00,10320.0
-2016-04-11 09:00:00,10850.0
-2016-04-11 10:00:00,11112.0
-2016-04-11 11:00:00,11198.0
-2016-04-11 12:00:00,11241.0
-2016-04-11 13:00:00,11204.0
-2016-04-11 14:00:00,11108.0
-2016-04-11 15:00:00,11113.0
-2016-04-11 16:00:00,10944.0
-2016-04-11 17:00:00,10773.0
-2016-04-11 18:00:00,10639.0
-2016-04-11 19:00:00,10537.0
-2016-04-11 20:00:00,10439.0
-2016-04-11 21:00:00,10811.0
-2016-04-11 22:00:00,11134.0
-2016-04-11 23:00:00,10773.0
-2016-04-12 00:00:00,10092.0
-2016-04-10 01:00:00,9634.0
-2016-04-10 02:00:00,9283.0
-2016-04-10 03:00:00,9046.0
-2016-04-10 04:00:00,8888.0
-2016-04-10 05:00:00,8811.0
-2016-04-10 06:00:00,8817.0
-2016-04-10 07:00:00,8937.0
-2016-04-10 08:00:00,9112.0
-2016-04-10 09:00:00,9169.0
-2016-04-10 10:00:00,9474.0
-2016-04-10 11:00:00,9667.0
-2016-04-10 12:00:00,9899.0
-2016-04-10 13:00:00,9973.0
-2016-04-10 14:00:00,9961.0
-2016-04-10 15:00:00,9899.0
-2016-04-10 16:00:00,9898.0
-2016-04-10 17:00:00,9890.0
-2016-04-10 18:00:00,9862.0
-2016-04-10 19:00:00,9972.0
-2016-04-10 20:00:00,10126.0
-2016-04-10 21:00:00,10399.0
-2016-04-10 22:00:00,10347.0
-2016-04-10 23:00:00,9997.0
-2016-04-11 00:00:00,9481.0
-2016-04-09 01:00:00,10261.0
-2016-04-09 02:00:00,9875.0
-2016-04-09 03:00:00,9633.0
-2016-04-09 04:00:00,9431.0
-2016-04-09 05:00:00,9417.0
-2016-04-09 06:00:00,9491.0
-2016-04-09 07:00:00,9829.0
-2016-04-09 08:00:00,10080.0
-2016-04-09 09:00:00,10251.0
-2016-04-09 10:00:00,10449.0
-2016-04-09 11:00:00,10625.0
-2016-04-09 12:00:00,10616.0
-2016-04-09 13:00:00,10510.0
-2016-04-09 14:00:00,10355.0
-2016-04-09 15:00:00,10086.0
-2016-04-09 16:00:00,9910.0
-2016-04-09 17:00:00,9685.0
-2016-04-09 18:00:00,9636.0
-2016-04-09 19:00:00,9638.0
-2016-04-09 20:00:00,9726.0
-2016-04-09 21:00:00,10289.0
-2016-04-09 22:00:00,10698.0
-2016-04-09 23:00:00,10526.0
-2016-04-10 00:00:00,10154.0
-2016-04-08 01:00:00,9712.0
-2016-04-08 02:00:00,9286.0
-2016-04-08 03:00:00,9023.0
-2016-04-08 04:00:00,8878.0
-2016-04-08 05:00:00,8890.0
-2016-04-08 06:00:00,9160.0
-2016-04-08 07:00:00,9823.0
-2016-04-08 08:00:00,10814.0
-2016-04-08 09:00:00,11393.0
-2016-04-08 10:00:00,11750.0
-2016-04-08 11:00:00,11928.0
-2016-04-08 12:00:00,11958.0
-2016-04-08 13:00:00,11838.0
-2016-04-08 14:00:00,11650.0
-2016-04-08 15:00:00,11636.0
-2016-04-08 16:00:00,11538.0
-2016-04-08 17:00:00,11394.0
-2016-04-08 18:00:00,11217.0
-2016-04-08 19:00:00,11118.0
-2016-04-08 20:00:00,11105.0
-2016-04-08 21:00:00,11390.0
-2016-04-08 22:00:00,11617.0
-2016-04-08 23:00:00,11392.0
-2016-04-09 00:00:00,10777.0
-2016-04-07 01:00:00,9465.0
-2016-04-07 02:00:00,9028.0
-2016-04-07 03:00:00,8825.0
-2016-04-07 04:00:00,8669.0
-2016-04-07 05:00:00,8653.0
-2016-04-07 06:00:00,8899.0
-2016-04-07 07:00:00,9660.0
-2016-04-07 08:00:00,10796.0
-2016-04-07 09:00:00,11403.0
-2016-04-07 10:00:00,11665.0
-2016-04-07 11:00:00,11791.0
-2016-04-07 12:00:00,11835.0
-2016-04-07 13:00:00,11752.0
-2016-04-07 14:00:00,11713.0
-2016-04-07 15:00:00,11751.0
-2016-04-07 16:00:00,11639.0
-2016-04-07 17:00:00,11554.0
-2016-04-07 18:00:00,11483.0
-2016-04-07 19:00:00,11337.0
-2016-04-07 20:00:00,11242.0
-2016-04-07 21:00:00,11609.0
-2016-04-07 22:00:00,11598.0
-2016-04-07 23:00:00,11145.0
-2016-04-08 00:00:00,10414.0
-2016-04-06 01:00:00,9678.0
-2016-04-06 02:00:00,9184.0
-2016-04-06 03:00:00,8916.0
-2016-04-06 04:00:00,8775.0
-2016-04-06 05:00:00,8743.0
-2016-04-06 06:00:00,8954.0
-2016-04-06 07:00:00,9646.0
-2016-04-06 08:00:00,10661.0
-2016-04-06 09:00:00,11281.0
-2016-04-06 10:00:00,11548.0
-2016-04-06 11:00:00,11631.0
-2016-04-06 12:00:00,11784.0
-2016-04-06 13:00:00,11787.0
-2016-04-06 14:00:00,11751.0
-2016-04-06 15:00:00,11624.0
-2016-04-06 16:00:00,11519.0
-2016-04-06 17:00:00,11339.0
-2016-04-06 18:00:00,11332.0
-2016-04-06 19:00:00,11390.0
-2016-04-06 20:00:00,11311.0
-2016-04-06 21:00:00,11489.0
-2016-04-06 22:00:00,11350.0
-2016-04-06 23:00:00,10905.0
-2016-04-07 00:00:00,10141.0
-2016-04-05 01:00:00,10035.0
-2016-04-05 02:00:00,9622.0
-2016-04-05 03:00:00,9378.0
-2016-04-05 04:00:00,9287.0
-2016-04-05 05:00:00,9280.0
-2016-04-05 06:00:00,9597.0
-2016-04-05 07:00:00,10338.0
-2016-04-05 08:00:00,11325.0
-2016-04-05 09:00:00,11692.0
-2016-04-05 10:00:00,11754.0
-2016-04-05 11:00:00,11730.0
-2016-04-05 12:00:00,11674.0
-2016-04-05 13:00:00,11613.0
-2016-04-05 14:00:00,11486.0
-2016-04-05 15:00:00,11411.0
-2016-04-05 16:00:00,11201.0
-2016-04-05 17:00:00,11037.0
-2016-04-05 18:00:00,11004.0
-2016-04-05 19:00:00,11106.0
-2016-04-05 20:00:00,11220.0
-2016-04-05 21:00:00,11654.0
-2016-04-05 22:00:00,11609.0
-2016-04-05 23:00:00,11160.0
-2016-04-06 00:00:00,10417.0
-2016-04-04 01:00:00,8554.0
-2016-04-04 02:00:00,8288.0
-2016-04-04 03:00:00,8159.0
-2016-04-04 04:00:00,8138.0
-2016-04-04 05:00:00,8259.0
-2016-04-04 06:00:00,8629.0
-2016-04-04 07:00:00,9438.0
-2016-04-04 08:00:00,10617.0
-2016-04-04 09:00:00,11235.0
-2016-04-04 10:00:00,11540.0
-2016-04-04 11:00:00,11685.0
-2016-04-04 12:00:00,11839.0
-2016-04-04 13:00:00,11859.0
-2016-04-04 14:00:00,11824.0
-2016-04-04 15:00:00,11833.0
-2016-04-04 16:00:00,11729.0
-2016-04-04 17:00:00,11620.0
-2016-04-04 18:00:00,11578.0
-2016-04-04 19:00:00,11585.0
-2016-04-04 20:00:00,11530.0
-2016-04-04 21:00:00,11880.0
-2016-04-04 22:00:00,11916.0
-2016-04-04 23:00:00,11477.0
-2016-04-05 00:00:00,10777.0
-2016-04-03 01:00:00,9565.0
-2016-04-03 02:00:00,9176.0
-2016-04-03 03:00:00,8946.0
-2016-04-03 04:00:00,8752.0
-2016-04-03 05:00:00,8701.0
-2016-04-03 06:00:00,8720.0
-2016-04-03 07:00:00,8871.0
-2016-04-03 08:00:00,9043.0
-2016-04-03 09:00:00,9154.0
-2016-04-03 10:00:00,9325.0
-2016-04-03 11:00:00,9535.0
-2016-04-03 12:00:00,9501.0
-2016-04-03 13:00:00,9440.0
-2016-04-03 14:00:00,9265.0
-2016-04-03 15:00:00,9141.0
-2016-04-03 16:00:00,8968.0
-2016-04-03 17:00:00,8891.0
-2016-04-03 18:00:00,8852.0
-2016-04-03 19:00:00,8957.0
-2016-04-03 20:00:00,9073.0
-2016-04-03 21:00:00,9671.0
-2016-04-03 22:00:00,9765.0
-2016-04-03 23:00:00,9454.0
-2016-04-04 00:00:00,8993.0
-2016-04-02 01:00:00,9489.0
-2016-04-02 02:00:00,9040.0
-2016-04-02 03:00:00,8837.0
-2016-04-02 04:00:00,8714.0
-2016-04-02 05:00:00,8665.0
-2016-04-02 06:00:00,8779.0
-2016-04-02 07:00:00,9056.0
-2016-04-02 08:00:00,9492.0
-2016-04-02 09:00:00,9754.0
-2016-04-02 10:00:00,10230.0
-2016-04-02 11:00:00,10427.0
-2016-04-02 12:00:00,10517.0
-2016-04-02 13:00:00,10423.0
-2016-04-02 14:00:00,10359.0
-2016-04-02 15:00:00,10248.0
-2016-04-02 16:00:00,10139.0
-2016-04-02 17:00:00,9976.0
-2016-04-02 18:00:00,9960.0
-2016-04-02 19:00:00,9896.0
-2016-04-02 20:00:00,9922.0
-2016-04-02 21:00:00,10481.0
-2016-04-02 22:00:00,10707.0
-2016-04-02 23:00:00,10531.0
-2016-04-03 00:00:00,10067.0
-2016-04-01 01:00:00,9116.0
-2016-04-01 02:00:00,8655.0
-2016-04-01 03:00:00,8387.0
-2016-04-01 04:00:00,8236.0
-2016-04-01 05:00:00,8232.0
-2016-04-01 06:00:00,8489.0
-2016-04-01 07:00:00,9098.0
-2016-04-01 08:00:00,10063.0
-2016-04-01 09:00:00,10579.0
-2016-04-01 10:00:00,10901.0
-2016-04-01 11:00:00,11105.0
-2016-04-01 12:00:00,11188.0
-2016-04-01 13:00:00,11104.0
-2016-04-01 14:00:00,10917.0
-2016-04-01 15:00:00,10851.0
-2016-04-01 16:00:00,10704.0
-2016-04-01 17:00:00,10562.0
-2016-04-01 18:00:00,10491.0
-2016-04-01 19:00:00,10547.0
-2016-04-01 20:00:00,10514.0
-2016-04-01 21:00:00,10799.0
-2016-04-01 22:00:00,10942.0
-2016-04-01 23:00:00,10533.0
-2016-04-02 00:00:00,10042.0
-2016-03-31 01:00:00,9179.0
-2016-03-31 02:00:00,8711.0
-2016-03-31 03:00:00,8390.0
-2016-03-31 04:00:00,8230.0
-2016-03-31 05:00:00,8166.0
-2016-03-31 06:00:00,8341.0
-2016-03-31 07:00:00,8913.0
-2016-03-31 08:00:00,9919.0
-2016-03-31 09:00:00,10512.0
-2016-03-31 10:00:00,10915.0
-2016-03-31 11:00:00,11041.0
-2016-03-31 12:00:00,11142.0
-2016-03-31 13:00:00,11213.0
-2016-03-31 14:00:00,11181.0
-2016-03-31 15:00:00,11175.0
-2016-03-31 16:00:00,11012.0
-2016-03-31 17:00:00,10793.0
-2016-03-31 18:00:00,10595.0
-2016-03-31 19:00:00,10529.0
-2016-03-31 20:00:00,10527.0
-2016-03-31 21:00:00,10863.0
-2016-03-31 22:00:00,10786.0
-2016-03-31 23:00:00,10419.0
-2016-04-01 00:00:00,9799.0
-2016-03-30 01:00:00,9184.0
-2016-03-30 02:00:00,8748.0
-2016-03-30 03:00:00,8490.0
-2016-03-30 04:00:00,8334.0
-2016-03-30 05:00:00,8361.0
-2016-03-30 06:00:00,8583.0
-2016-03-30 07:00:00,9224.0
-2016-03-30 08:00:00,10231.0
-2016-03-30 09:00:00,10659.0
-2016-03-30 10:00:00,10960.0
-2016-03-30 11:00:00,11133.0
-2016-03-30 12:00:00,11240.0
-2016-03-30 13:00:00,11204.0
-2016-03-30 14:00:00,11062.0
-2016-03-30 15:00:00,11031.0
-2016-03-30 16:00:00,10897.0
-2016-03-30 17:00:00,10717.0
-2016-03-30 18:00:00,10699.0
-2016-03-30 19:00:00,10726.0
-2016-03-30 20:00:00,10846.0
-2016-03-30 21:00:00,11160.0
-2016-03-30 22:00:00,11001.0
-2016-03-30 23:00:00,10543.0
-2016-03-31 00:00:00,9856.0
-2016-03-29 01:00:00,9411.0
-2016-03-29 02:00:00,9000.0
-2016-03-29 03:00:00,8790.0
-2016-03-29 04:00:00,8661.0
-2016-03-29 05:00:00,8653.0
-2016-03-29 06:00:00,8915.0
-2016-03-29 07:00:00,9650.0
-2016-03-29 08:00:00,10619.0
-2016-03-29 09:00:00,10960.0
-2016-03-29 10:00:00,11021.0
-2016-03-29 11:00:00,10990.0
-2016-03-29 12:00:00,11005.0
-2016-03-29 13:00:00,10952.0
-2016-03-29 14:00:00,10865.0
-2016-03-29 15:00:00,10864.0
-2016-03-29 16:00:00,10737.0
-2016-03-29 17:00:00,10584.0
-2016-03-29 18:00:00,10443.0
-2016-03-29 19:00:00,10313.0
-2016-03-29 20:00:00,10269.0
-2016-03-29 21:00:00,10793.0
-2016-03-29 22:00:00,10870.0
-2016-03-29 23:00:00,10486.0
-2016-03-30 00:00:00,9828.0
-2016-03-28 01:00:00,8488.0
-2016-03-28 02:00:00,8225.0
-2016-03-28 03:00:00,8030.0
-2016-03-28 04:00:00,7979.0
-2016-03-28 05:00:00,8028.0
-2016-03-28 06:00:00,8326.0
-2016-03-28 07:00:00,9058.0
-2016-03-28 08:00:00,10108.0
-2016-03-28 09:00:00,10643.0
-2016-03-28 10:00:00,10861.0
-2016-03-28 11:00:00,11021.0
-2016-03-28 12:00:00,11091.0
-2016-03-28 13:00:00,11061.0
-2016-03-28 14:00:00,10925.0
-2016-03-28 15:00:00,10874.0
-2016-03-28 16:00:00,10728.0
-2016-03-28 17:00:00,10525.0
-2016-03-28 18:00:00,10398.0
-2016-03-28 19:00:00,10322.0
-2016-03-28 20:00:00,10239.0
-2016-03-28 21:00:00,10792.0
-2016-03-28 22:00:00,10971.0
-2016-03-28 23:00:00,10635.0
-2016-03-29 00:00:00,10024.0
-2016-03-27 01:00:00,8794.0
-2016-03-27 02:00:00,8371.0
-2016-03-27 03:00:00,8164.0
-2016-03-27 04:00:00,8009.0
-2016-03-27 05:00:00,7928.0
-2016-03-27 06:00:00,7914.0
-2016-03-27 07:00:00,8069.0
-2016-03-27 08:00:00,8233.0
-2016-03-27 09:00:00,8228.0
-2016-03-27 10:00:00,8423.0
-2016-03-27 11:00:00,8544.0
-2016-03-27 12:00:00,8548.0
-2016-03-27 13:00:00,8552.0
-2016-03-27 14:00:00,8502.0
-2016-03-27 15:00:00,8427.0
-2016-03-27 16:00:00,8378.0
-2016-03-27 17:00:00,8398.0
-2016-03-27 18:00:00,8581.0
-2016-03-27 19:00:00,8799.0
-2016-03-27 20:00:00,9053.0
-2016-03-27 21:00:00,9516.0
-2016-03-27 22:00:00,9592.0
-2016-03-27 23:00:00,9360.0
-2016-03-28 00:00:00,8949.0
-2016-03-26 01:00:00,9277.0
-2016-03-26 02:00:00,8802.0
-2016-03-26 03:00:00,8592.0
-2016-03-26 04:00:00,8442.0
-2016-03-26 05:00:00,8421.0
-2016-03-26 06:00:00,8466.0
-2016-03-26 07:00:00,8749.0
-2016-03-26 08:00:00,9068.0
-2016-03-26 09:00:00,9190.0
-2016-03-26 10:00:00,9448.0
-2016-03-26 11:00:00,9520.0
-2016-03-26 12:00:00,9521.0
-2016-03-26 13:00:00,9404.0
-2016-03-26 14:00:00,9300.0
-2016-03-26 15:00:00,9073.0
-2016-03-26 16:00:00,8948.0
-2016-03-26 17:00:00,8828.0
-2016-03-26 18:00:00,8885.0
-2016-03-26 19:00:00,8952.0
-2016-03-26 20:00:00,9133.0
-2016-03-26 21:00:00,9661.0
-2016-03-26 22:00:00,9830.0
-2016-03-26 23:00:00,9619.0
-2016-03-27 00:00:00,9232.0
-2016-03-25 01:00:00,9939.0
-2016-03-25 02:00:00,9453.0
-2016-03-25 03:00:00,9165.0
-2016-03-25 04:00:00,8978.0
-2016-03-25 05:00:00,8943.0
-2016-03-25 06:00:00,9097.0
-2016-03-25 07:00:00,9616.0
-2016-03-25 08:00:00,10292.0
-2016-03-25 09:00:00,10565.0
-2016-03-25 10:00:00,10756.0
-2016-03-25 11:00:00,10776.0
-2016-03-25 12:00:00,10687.0
-2016-03-25 13:00:00,10553.0
-2016-03-25 14:00:00,10369.0
-2016-03-25 15:00:00,10223.0
-2016-03-25 16:00:00,10049.0
-2016-03-25 17:00:00,9843.0
-2016-03-25 18:00:00,9775.0
-2016-03-25 19:00:00,9726.0
-2016-03-25 20:00:00,9736.0
-2016-03-25 21:00:00,10325.0
-2016-03-25 22:00:00,10455.0
-2016-03-25 23:00:00,10254.0
-2016-03-26 00:00:00,9775.0
-2016-03-24 01:00:00,9723.0
-2016-03-24 02:00:00,9241.0
-2016-03-24 03:00:00,8973.0
-2016-03-24 04:00:00,8802.0
-2016-03-24 05:00:00,8739.0
-2016-03-24 06:00:00,8912.0
-2016-03-24 07:00:00,9576.0
-2016-03-24 08:00:00,10695.0
-2016-03-24 09:00:00,11374.0
-2016-03-24 10:00:00,11576.0
-2016-03-24 11:00:00,11773.0
-2016-03-24 12:00:00,11990.0
-2016-03-24 13:00:00,12108.0
-2016-03-24 14:00:00,12088.0
-2016-03-24 15:00:00,11903.0
-2016-03-24 16:00:00,11629.0
-2016-03-24 17:00:00,11515.0
-2016-03-24 18:00:00,11686.0
-2016-03-24 19:00:00,11628.0
-2016-03-24 20:00:00,11542.0
-2016-03-24 21:00:00,11860.0
-2016-03-24 22:00:00,11777.0
-2016-03-24 23:00:00,11372.0
-2016-03-25 00:00:00,10655.0
-2016-03-23 01:00:00,9178.0
-2016-03-23 02:00:00,8768.0
-2016-03-23 03:00:00,8546.0
-2016-03-23 04:00:00,8419.0
-2016-03-23 05:00:00,8439.0
-2016-03-23 06:00:00,8705.0
-2016-03-23 07:00:00,9411.0
-2016-03-23 08:00:00,10571.0
-2016-03-23 09:00:00,11175.0
-2016-03-23 10:00:00,11361.0
-2016-03-23 11:00:00,11432.0
-2016-03-23 12:00:00,11526.0
-2016-03-23 13:00:00,11415.0
-2016-03-23 14:00:00,11276.0
-2016-03-23 15:00:00,11266.0
-2016-03-23 16:00:00,11282.0
-2016-03-23 17:00:00,11332.0
-2016-03-23 18:00:00,11455.0
-2016-03-23 19:00:00,11537.0
-2016-03-23 20:00:00,11563.0
-2016-03-23 21:00:00,11750.0
-2016-03-23 22:00:00,11501.0
-2016-03-23 23:00:00,11039.0
-2016-03-24 00:00:00,10366.0
-2016-03-22 01:00:00,9429.0
-2016-03-22 02:00:00,9028.0
-2016-03-22 03:00:00,8783.0
-2016-03-22 04:00:00,8642.0
-2016-03-22 05:00:00,8628.0
-2016-03-22 06:00:00,8889.0
-2016-03-22 07:00:00,9588.0
-2016-03-22 08:00:00,10682.0
-2016-03-22 09:00:00,11086.0
-2016-03-22 10:00:00,11261.0
-2016-03-22 11:00:00,11281.0
-2016-03-22 12:00:00,11313.0
-2016-03-22 13:00:00,11199.0
-2016-03-22 14:00:00,11078.0
-2016-03-22 15:00:00,11029.0
-2016-03-22 16:00:00,10855.0
-2016-03-22 17:00:00,10692.0
-2016-03-22 18:00:00,10596.0
-2016-03-22 19:00:00,10509.0
-2016-03-22 20:00:00,10452.0
-2016-03-22 21:00:00,10978.0
-2016-03-22 22:00:00,10905.0
-2016-03-22 23:00:00,10467.0
-2016-03-23 00:00:00,9814.0
-2016-03-21 01:00:00,9088.0
-2016-03-21 02:00:00,8808.0
-2016-03-21 03:00:00,8622.0
-2016-03-21 04:00:00,8588.0
-2016-03-21 05:00:00,8649.0
-2016-03-21 06:00:00,8994.0
-2016-03-21 07:00:00,9737.0
-2016-03-21 08:00:00,10929.0
-2016-03-21 09:00:00,11359.0
-2016-03-21 10:00:00,11443.0
-2016-03-21 11:00:00,11274.0
-2016-03-21 12:00:00,11286.0
-2016-03-21 13:00:00,11189.0
-2016-03-21 14:00:00,11071.0
-2016-03-21 15:00:00,11012.0
-2016-03-21 16:00:00,10834.0
-2016-03-21 17:00:00,10638.0
-2016-03-21 18:00:00,10540.0
-2016-03-21 19:00:00,10526.0
-2016-03-21 20:00:00,10603.0
-2016-03-21 21:00:00,11220.0
-2016-03-21 22:00:00,11202.0
-2016-03-21 23:00:00,10779.0
-2016-03-22 00:00:00,10076.0
-2016-03-20 01:00:00,9176.0
-2016-03-20 02:00:00,8787.0
-2016-03-20 03:00:00,8567.0
-2016-03-20 04:00:00,8394.0
-2016-03-20 05:00:00,8330.0
-2016-03-20 06:00:00,8326.0
-2016-03-20 07:00:00,8503.0
-2016-03-20 08:00:00,8764.0
-2016-03-20 09:00:00,8842.0
-2016-03-20 10:00:00,9024.0
-2016-03-20 11:00:00,9164.0
-2016-03-20 12:00:00,9192.0
-2016-03-20 13:00:00,9230.0
-2016-03-20 14:00:00,9142.0
-2016-03-20 15:00:00,9145.0
-2016-03-20 16:00:00,9069.0
-2016-03-20 17:00:00,9025.0
-2016-03-20 18:00:00,9100.0
-2016-03-20 19:00:00,9277.0
-2016-03-20 20:00:00,9448.0
-2016-03-20 21:00:00,10173.0
-2016-03-20 22:00:00,10264.0
-2016-03-20 23:00:00,9987.0
-2016-03-21 00:00:00,9538.0
-2016-03-19 01:00:00,9496.0
-2016-03-19 02:00:00,9008.0
-2016-03-19 03:00:00,8732.0
-2016-03-19 04:00:00,8554.0
-2016-03-19 05:00:00,8487.0
-2016-03-19 06:00:00,8542.0
-2016-03-19 07:00:00,8835.0
-2016-03-19 08:00:00,9277.0
-2016-03-19 09:00:00,9533.0
-2016-03-19 10:00:00,9822.0
-2016-03-19 11:00:00,9970.0
-2016-03-19 12:00:00,9975.0
-2016-03-19 13:00:00,9878.0
-2016-03-19 14:00:00,9752.0
-2016-03-19 15:00:00,9528.0
-2016-03-19 16:00:00,9441.0
-2016-03-19 17:00:00,9355.0
-2016-03-19 18:00:00,9383.0
-2016-03-19 19:00:00,9480.0
-2016-03-19 20:00:00,9735.0
-2016-03-19 21:00:00,10228.0
-2016-03-19 22:00:00,10286.0
-2016-03-19 23:00:00,10056.0
-2016-03-20 00:00:00,9680.0
-2016-03-18 01:00:00,9247.0
-2016-03-18 02:00:00,8815.0
-2016-03-18 03:00:00,8579.0
-2016-03-18 04:00:00,8467.0
-2016-03-18 05:00:00,8484.0
-2016-03-18 06:00:00,8762.0
-2016-03-18 07:00:00,9507.0
-2016-03-18 08:00:00,10644.0
-2016-03-18 09:00:00,11101.0
-2016-03-18 10:00:00,11201.0
-2016-03-18 11:00:00,11212.0
-2016-03-18 12:00:00,11213.0
-2016-03-18 13:00:00,11093.0
-2016-03-18 14:00:00,10960.0
-2016-03-18 15:00:00,10890.0
-2016-03-18 16:00:00,10721.0
-2016-03-18 17:00:00,10557.0
-2016-03-18 18:00:00,10538.0
-2016-03-18 19:00:00,10606.0
-2016-03-18 20:00:00,10650.0
-2016-03-18 21:00:00,11118.0
-2016-03-18 22:00:00,11010.0
-2016-03-18 23:00:00,10709.0
-2016-03-19 00:00:00,10128.0
-2016-03-17 01:00:00,9312.0
-2016-03-17 02:00:00,8843.0
-2016-03-17 03:00:00,8602.0
-2016-03-17 04:00:00,8448.0
-2016-03-17 05:00:00,8450.0
-2016-03-17 06:00:00,8730.0
-2016-03-17 07:00:00,9418.0
-2016-03-17 08:00:00,10584.0
-2016-03-17 09:00:00,11028.0
-2016-03-17 10:00:00,11066.0
-2016-03-17 11:00:00,11071.0
-2016-03-17 12:00:00,11112.0
-2016-03-17 13:00:00,11071.0
-2016-03-17 14:00:00,10989.0
-2016-03-17 15:00:00,10980.0
-2016-03-17 16:00:00,10801.0
-2016-03-17 17:00:00,10648.0
-2016-03-17 18:00:00,10533.0
-2016-03-17 19:00:00,10435.0
-2016-03-17 20:00:00,10411.0
-2016-03-17 21:00:00,10955.0
-2016-03-17 22:00:00,10964.0
-2016-03-17 23:00:00,10533.0
-2016-03-18 00:00:00,9893.0
-2016-03-16 01:00:00,9220.0
-2016-03-16 02:00:00,8718.0
-2016-03-16 03:00:00,8434.0
-2016-03-16 04:00:00,8291.0
-2016-03-16 05:00:00,8269.0
-2016-03-16 06:00:00,8491.0
-2016-03-16 07:00:00,9175.0
-2016-03-16 08:00:00,10297.0
-2016-03-16 09:00:00,10969.0
-2016-03-16 10:00:00,11097.0
-2016-03-16 11:00:00,11194.0
-2016-03-16 12:00:00,11178.0
-2016-03-16 13:00:00,11104.0
-2016-03-16 14:00:00,11045.0
-2016-03-16 15:00:00,11015.0
-2016-03-16 16:00:00,10873.0
-2016-03-16 17:00:00,10722.0
-2016-03-16 18:00:00,10627.0
-2016-03-16 19:00:00,10581.0
-2016-03-16 20:00:00,10630.0
-2016-03-16 21:00:00,11152.0
-2016-03-16 22:00:00,11083.0
-2016-03-16 23:00:00,10655.0
-2016-03-17 00:00:00,9986.0
-2016-03-15 01:00:00,9282.0
-2016-03-15 02:00:00,8791.0
-2016-03-15 03:00:00,8504.0
-2016-03-15 04:00:00,8339.0
-2016-03-15 05:00:00,8290.0
-2016-03-15 06:00:00,8504.0
-2016-03-15 07:00:00,9170.0
-2016-03-15 08:00:00,10271.0
-2016-03-15 09:00:00,10865.0
-2016-03-15 10:00:00,11011.0
-2016-03-15 11:00:00,11115.0
-2016-03-15 12:00:00,11210.0
-2016-03-15 13:00:00,11151.0
-2016-03-15 14:00:00,11075.0
-2016-03-15 15:00:00,11057.0
-2016-03-15 16:00:00,10924.0
-2016-03-15 17:00:00,10748.0
-2016-03-15 18:00:00,10662.0
-2016-03-15 19:00:00,10573.0
-2016-03-15 20:00:00,10606.0
-2016-03-15 21:00:00,11192.0
-2016-03-15 22:00:00,11062.0
-2016-03-15 23:00:00,10617.0
-2016-03-16 00:00:00,9958.0
-2016-03-14 01:00:00,8878.0
-2016-03-14 02:00:00,8535.0
-2016-03-14 03:00:00,8308.0
-2016-03-14 04:00:00,8184.0
-2016-03-14 05:00:00,8198.0
-2016-03-14 06:00:00,8432.0
-2016-03-14 07:00:00,9160.0
-2016-03-14 08:00:00,10342.0
-2016-03-14 09:00:00,11033.0
-2016-03-14 10:00:00,11167.0
-2016-03-14 11:00:00,11161.0
-2016-03-14 12:00:00,11219.0
-2016-03-14 13:00:00,11156.0
-2016-03-14 14:00:00,11101.0
-2016-03-14 15:00:00,11097.0
-2016-03-14 16:00:00,10959.0
-2016-03-14 17:00:00,10803.0
-2016-03-14 18:00:00,10693.0
-2016-03-14 19:00:00,10652.0
-2016-03-14 20:00:00,10771.0
-2016-03-14 21:00:00,11261.0
-2016-03-14 22:00:00,11079.0
-2016-03-14 23:00:00,10630.0
-2016-03-15 00:00:00,9962.0
-2016-03-13 01:00:00,8648.0
-2016-03-13 02:00:00,8325.0
-2016-03-13 04:00:00,8078.0
-2016-03-13 05:00:00,7969.0
-2016-03-13 06:00:00,7891.0
-2016-03-13 07:00:00,8011.0
-2016-03-13 08:00:00,8225.0
-2016-03-13 09:00:00,8393.0
-2016-03-13 10:00:00,8623.0
-2016-03-13 11:00:00,8909.0
-2016-03-13 12:00:00,9169.0
-2016-03-13 13:00:00,9334.0
-2016-03-13 14:00:00,9420.0
-2016-03-13 15:00:00,9445.0
-2016-03-13 16:00:00,9410.0
-2016-03-13 17:00:00,9405.0
-2016-03-13 18:00:00,9463.0
-2016-03-13 19:00:00,9643.0
-2016-03-13 20:00:00,10052.0
-2016-03-13 21:00:00,10409.0
-2016-03-13 22:00:00,10312.0
-2016-03-13 23:00:00,9970.0
-2016-03-14 00:00:00,9431.0
-2016-03-12 01:00:00,9455.0
-2016-03-12 02:00:00,8961.0
-2016-03-12 03:00:00,8712.0
-2016-03-12 04:00:00,8531.0
-2016-03-12 05:00:00,8482.0
-2016-03-12 06:00:00,8558.0
-2016-03-12 07:00:00,8856.0
-2016-03-12 08:00:00,9054.0
-2016-03-12 09:00:00,9392.0
-2016-03-12 10:00:00,9674.0
-2016-03-12 11:00:00,9847.0
-2016-03-12 12:00:00,9811.0
-2016-03-12 13:00:00,9697.0
-2016-03-12 14:00:00,9524.0
-2016-03-12 15:00:00,9351.0
-2016-03-12 16:00:00,9257.0
-2016-03-12 17:00:00,9227.0
-2016-03-12 18:00:00,9376.0
-2016-03-12 19:00:00,9687.0
-2016-03-12 20:00:00,10136.0
-2016-03-12 21:00:00,10077.0
-2016-03-12 22:00:00,9931.0
-2016-03-12 23:00:00,9586.0
-2016-03-13 00:00:00,9144.0
-2016-03-11 01:00:00,9330.0
-2016-03-11 02:00:00,8949.0
-2016-03-11 03:00:00,8715.0
-2016-03-11 04:00:00,8568.0
-2016-03-11 05:00:00,8590.0
-2016-03-11 06:00:00,8845.0
-2016-03-11 07:00:00,9597.0
-2016-03-11 08:00:00,10734.0
-2016-03-11 09:00:00,10919.0
-2016-03-11 10:00:00,10980.0
-2016-03-11 11:00:00,10970.0
-2016-03-11 12:00:00,10993.0
-2016-03-11 13:00:00,10941.0
-2016-03-11 14:00:00,10850.0
-2016-03-11 15:00:00,10829.0
-2016-03-11 16:00:00,10663.0
-2016-03-11 17:00:00,10529.0
-2016-03-11 18:00:00,10494.0
-2016-03-11 19:00:00,10590.0
-2016-03-11 20:00:00,11198.0
-2016-03-11 21:00:00,11178.0
-2016-03-11 22:00:00,10949.0
-2016-03-11 23:00:00,10649.0
-2016-03-12 00:00:00,10047.0
-2016-03-10 01:00:00,8984.0
-2016-03-10 02:00:00,8539.0
-2016-03-10 03:00:00,8251.0
-2016-03-10 04:00:00,8128.0
-2016-03-10 05:00:00,8116.0
-2016-03-10 06:00:00,8343.0
-2016-03-10 07:00:00,9091.0
-2016-03-10 08:00:00,10029.0
-2016-03-10 09:00:00,10655.0
-2016-03-10 10:00:00,10930.0
-2016-03-10 11:00:00,11054.0
-2016-03-10 12:00:00,11075.0
-2016-03-10 13:00:00,11072.0
-2016-03-10 14:00:00,11031.0
-2016-03-10 15:00:00,11036.0
-2016-03-10 16:00:00,10956.0
-2016-03-10 17:00:00,10864.0
-2016-03-10 18:00:00,10919.0
-2016-03-10 19:00:00,11112.0
-2016-03-10 20:00:00,11566.0
-2016-03-10 21:00:00,11489.0
-2016-03-10 22:00:00,11227.0
-2016-03-10 23:00:00,10747.0
-2016-03-11 00:00:00,9981.0
-2016-03-09 01:00:00,9043.0
-2016-03-09 02:00:00,8573.0
-2016-03-09 03:00:00,8293.0
-2016-03-09 04:00:00,8158.0
-2016-03-09 05:00:00,8119.0
-2016-03-09 06:00:00,8307.0
-2016-03-09 07:00:00,8964.0
-2016-03-09 08:00:00,9896.0
-2016-03-09 09:00:00,10467.0
-2016-03-09 10:00:00,10801.0
-2016-03-09 11:00:00,10926.0
-2016-03-09 12:00:00,11085.0
-2016-03-09 13:00:00,11101.0
-2016-03-09 14:00:00,11140.0
-2016-03-09 15:00:00,11150.0
-2016-03-09 16:00:00,11012.0
-2016-03-09 17:00:00,10860.0
-2016-03-09 18:00:00,10862.0
-2016-03-09 19:00:00,11034.0
-2016-03-09 20:00:00,11433.0
-2016-03-09 21:00:00,11251.0
-2016-03-09 22:00:00,10921.0
-2016-03-09 23:00:00,10425.0
-2016-03-10 00:00:00,9660.0
-2016-03-08 01:00:00,9127.0
-2016-03-08 02:00:00,8662.0
-2016-03-08 03:00:00,8399.0
-2016-03-08 04:00:00,8240.0
-2016-03-08 05:00:00,8212.0
-2016-03-08 06:00:00,8442.0
-2016-03-08 07:00:00,9106.0
-2016-03-08 08:00:00,9971.0
-2016-03-08 09:00:00,10578.0
-2016-03-08 10:00:00,10862.0
-2016-03-08 11:00:00,10947.0
-2016-03-08 12:00:00,11096.0
-2016-03-08 13:00:00,11149.0
-2016-03-08 14:00:00,11136.0
-2016-03-08 15:00:00,11168.0
-2016-03-08 16:00:00,11078.0
-2016-03-08 17:00:00,10954.0
-2016-03-08 18:00:00,10924.0
-2016-03-08 19:00:00,10968.0
-2016-03-08 20:00:00,11480.0
-2016-03-08 21:00:00,11386.0
-2016-03-08 22:00:00,11044.0
-2016-03-08 23:00:00,10496.0
-2016-03-09 00:00:00,9730.0
-2016-03-07 01:00:00,9113.0
-2016-03-07 02:00:00,8786.0
-2016-03-07 03:00:00,8608.0
-2016-03-07 04:00:00,8574.0
-2016-03-07 05:00:00,8561.0
-2016-03-07 06:00:00,8887.0
-2016-03-07 07:00:00,9587.0
-2016-03-07 08:00:00,10480.0
-2016-03-07 09:00:00,10864.0
-2016-03-07 10:00:00,11006.0
-2016-03-07 11:00:00,11017.0
-2016-03-07 12:00:00,11169.0
-2016-03-07 13:00:00,11155.0
-2016-03-07 14:00:00,11053.0
-2016-03-07 15:00:00,11049.0
-2016-03-07 16:00:00,10939.0
-2016-03-07 17:00:00,10788.0
-2016-03-07 18:00:00,10846.0
-2016-03-07 19:00:00,11138.0
-2016-03-07 20:00:00,11540.0
-2016-03-07 21:00:00,11369.0
-2016-03-07 22:00:00,11066.0
-2016-03-07 23:00:00,10570.0
-2016-03-08 00:00:00,9814.0
-2016-03-06 01:00:00,9599.0
-2016-03-06 02:00:00,9234.0
-2016-03-06 03:00:00,8974.0
-2016-03-06 04:00:00,8863.0
-2016-03-06 05:00:00,8758.0
-2016-03-06 06:00:00,8821.0
-2016-03-06 07:00:00,9001.0
-2016-03-06 08:00:00,9107.0
-2016-03-06 09:00:00,9237.0
-2016-03-06 10:00:00,9441.0
-2016-03-06 11:00:00,9575.0
-2016-03-06 12:00:00,9613.0
-2016-03-06 13:00:00,9534.0
-2016-03-06 14:00:00,9446.0
-2016-03-06 15:00:00,9318.0
-2016-03-06 16:00:00,9248.0
-2016-03-06 17:00:00,9220.0
-2016-03-06 18:00:00,9337.0
-2016-03-06 19:00:00,9782.0
-2016-03-06 20:00:00,10561.0
-2016-03-06 21:00:00,10588.0
-2016-03-06 22:00:00,10408.0
-2016-03-06 23:00:00,10072.0
-2016-03-07 00:00:00,9594.0
-2016-03-05 01:00:00,10345.0
-2016-03-05 02:00:00,9852.0
-2016-03-05 03:00:00,9600.0
-2016-03-05 04:00:00,9370.0
-2016-03-05 05:00:00,9347.0
-2016-03-05 06:00:00,9365.0
-2016-03-05 07:00:00,9672.0
-2016-03-05 08:00:00,9930.0
-2016-03-05 09:00:00,10207.0
-2016-03-05 10:00:00,10570.0
-2016-03-05 11:00:00,10813.0
-2016-03-05 12:00:00,10867.0
-2016-03-05 13:00:00,10812.0
-2016-03-05 14:00:00,10702.0
-2016-03-05 15:00:00,10564.0
-2016-03-05 16:00:00,10458.0
-2016-03-05 17:00:00,10412.0
-2016-03-05 18:00:00,10541.0
-2016-03-05 19:00:00,10852.0
-2016-03-05 20:00:00,11170.0
-2016-03-05 21:00:00,11031.0
-2016-03-05 22:00:00,10886.0
-2016-03-05 23:00:00,10600.0
-2016-03-06 00:00:00,10101.0
-2016-03-04 01:00:00,10480.0
-2016-03-04 02:00:00,10054.0
-2016-03-04 03:00:00,9835.0
-2016-03-04 04:00:00,9723.0
-2016-03-04 05:00:00,9795.0
-2016-03-04 06:00:00,10107.0
-2016-03-04 07:00:00,10848.0
-2016-03-04 08:00:00,11692.0
-2016-03-04 09:00:00,12011.0
-2016-03-04 10:00:00,12006.0
-2016-03-04 11:00:00,11927.0
-2016-03-04 12:00:00,11885.0
-2016-03-04 13:00:00,11769.0
-2016-03-04 14:00:00,11632.0
-2016-03-04 15:00:00,11558.0
-2016-03-04 16:00:00,11473.0
-2016-03-04 17:00:00,11316.0
-2016-03-04 18:00:00,11396.0
-2016-03-04 19:00:00,11776.0
-2016-03-04 20:00:00,12250.0
-2016-03-04 21:00:00,12114.0
-2016-03-04 22:00:00,11873.0
-2016-03-04 23:00:00,11560.0
-2016-03-05 00:00:00,10932.0
-2016-03-03 01:00:00,10457.0
-2016-03-03 02:00:00,10075.0
-2016-03-03 03:00:00,9821.0
-2016-03-03 04:00:00,9718.0
-2016-03-03 05:00:00,9697.0
-2016-03-03 06:00:00,9977.0
-2016-03-03 07:00:00,10703.0
-2016-03-03 08:00:00,11699.0
-2016-03-03 09:00:00,12131.0
-2016-03-03 10:00:00,12316.0
-2016-03-03 11:00:00,12404.0
-2016-03-03 12:00:00,12433.0
-2016-03-03 13:00:00,12401.0
-2016-03-03 14:00:00,12321.0
-2016-03-03 15:00:00,12313.0
-2016-03-03 16:00:00,12256.0
-2016-03-03 17:00:00,12178.0
-2016-03-03 18:00:00,12268.0
-2016-03-03 19:00:00,12598.0
-2016-03-03 20:00:00,12840.0
-2016-03-03 21:00:00,12647.0
-2016-03-03 22:00:00,12347.0
-2016-03-03 23:00:00,11864.0
-2016-03-04 00:00:00,11116.0
-2016-03-02 01:00:00,10934.0
-2016-03-02 02:00:00,10539.0
-2016-03-02 03:00:00,10336.0
-2016-03-02 04:00:00,10263.0
-2016-03-02 05:00:00,10279.0
-2016-03-02 06:00:00,10563.0
-2016-03-02 07:00:00,11307.0
-2016-03-02 08:00:00,12226.0
-2016-03-02 09:00:00,12569.0
-2016-03-02 10:00:00,12563.0
-2016-03-02 11:00:00,12460.0
-2016-03-02 12:00:00,12451.0
-2016-03-02 13:00:00,12318.0
-2016-03-02 14:00:00,12152.0
-2016-03-02 15:00:00,12081.0
-2016-03-02 16:00:00,11859.0
-2016-03-02 17:00:00,11713.0
-2016-03-02 18:00:00,11926.0
-2016-03-02 19:00:00,12383.0
-2016-03-02 20:00:00,12815.0
-2016-03-02 21:00:00,12645.0
-2016-03-02 22:00:00,12366.0
-2016-03-02 23:00:00,11845.0
-2016-03-03 00:00:00,11100.0
-2016-03-01 01:00:00,10152.0
-2016-03-01 02:00:00,9794.0
-2016-03-01 03:00:00,9614.0
-2016-03-01 04:00:00,9494.0
-2016-03-01 05:00:00,9501.0
-2016-03-01 06:00:00,9796.0
-2016-03-01 07:00:00,10534.0
-2016-03-01 08:00:00,11599.0
-2016-03-01 09:00:00,12125.0
-2016-03-01 10:00:00,12381.0
-2016-03-01 11:00:00,12541.0
-2016-03-01 12:00:00,12757.0
-2016-03-01 13:00:00,12837.0
-2016-03-01 14:00:00,12780.0
-2016-03-01 15:00:00,12755.0
-2016-03-01 16:00:00,12673.0
-2016-03-01 17:00:00,12570.0
-2016-03-01 18:00:00,12615.0
-2016-03-01 19:00:00,12928.0
-2016-03-01 20:00:00,13384.0
-2016-03-01 21:00:00,13233.0
-2016-03-01 22:00:00,12933.0
-2016-03-01 23:00:00,12382.0
-2016-03-02 00:00:00,11568.0
-2016-02-29 01:00:00,9084.0
-2016-02-29 02:00:00,8776.0
-2016-02-29 03:00:00,8635.0
-2016-02-29 04:00:00,8604.0
-2016-02-29 05:00:00,8700.0
-2016-02-29 06:00:00,9008.0
-2016-02-29 07:00:00,9868.0
-2016-02-29 08:00:00,10893.0
-2016-02-29 09:00:00,11372.0
-2016-02-29 10:00:00,11455.0
-2016-02-29 11:00:00,11486.0
-2016-02-29 12:00:00,11520.0
-2016-02-29 13:00:00,11408.0
-2016-02-29 14:00:00,11258.0
-2016-02-29 15:00:00,11171.0
-2016-02-29 16:00:00,11047.0
-2016-02-29 17:00:00,11054.0
-2016-02-29 18:00:00,11338.0
-2016-02-29 19:00:00,11889.0
-2016-02-29 20:00:00,12235.0
-2016-02-29 21:00:00,12133.0
-2016-02-29 22:00:00,11912.0
-2016-02-29 23:00:00,11460.0
-2016-03-01 00:00:00,10785.0
-2016-02-28 01:00:00,9210.0
-2016-02-28 02:00:00,8870.0
-2016-02-28 03:00:00,8600.0
-2016-02-28 04:00:00,8448.0
-2016-02-28 05:00:00,8342.0
-2016-02-28 06:00:00,8388.0
-2016-02-28 07:00:00,8524.0
-2016-02-28 08:00:00,8644.0
-2016-02-28 09:00:00,8628.0
-2016-02-28 10:00:00,8861.0
-2016-02-28 11:00:00,8985.0
-2016-02-28 12:00:00,9055.0
-2016-02-28 13:00:00,9061.0
-2016-02-28 14:00:00,9037.0
-2016-02-28 15:00:00,9018.0
-2016-02-28 16:00:00,9132.0
-2016-02-28 17:00:00,9265.0
-2016-02-28 18:00:00,9361.0
-2016-02-28 19:00:00,9750.0
-2016-02-28 20:00:00,10287.0
-2016-02-28 21:00:00,10240.0
-2016-02-28 22:00:00,10148.0
-2016-02-28 23:00:00,9894.0
-2016-02-29 00:00:00,9469.0
-2016-02-27 01:00:00,10451.0
-2016-02-27 02:00:00,9990.0
-2016-02-27 03:00:00,9727.0
-2016-02-27 04:00:00,9560.0
-2016-02-27 05:00:00,9544.0
-2016-02-27 06:00:00,9642.0
-2016-02-27 07:00:00,9918.0
-2016-02-27 08:00:00,10201.0
-2016-02-27 09:00:00,10310.0
-2016-02-27 10:00:00,10477.0
-2016-02-27 11:00:00,10528.0
-2016-02-27 12:00:00,10398.0
-2016-02-27 13:00:00,10257.0
-2016-02-27 14:00:00,10020.0
-2016-02-27 15:00:00,9785.0
-2016-02-27 16:00:00,9611.0
-2016-02-27 17:00:00,9504.0
-2016-02-27 18:00:00,9579.0
-2016-02-27 19:00:00,9971.0
-2016-02-27 20:00:00,10615.0
-2016-02-27 21:00:00,10577.0
-2016-02-27 22:00:00,10422.0
-2016-02-27 23:00:00,10178.0
-2016-02-28 00:00:00,9742.0
-2016-02-26 01:00:00,10326.0
-2016-02-26 02:00:00,9898.0
-2016-02-26 03:00:00,9654.0
-2016-02-26 04:00:00,9526.0
-2016-02-26 05:00:00,9528.0
-2016-02-26 06:00:00,9816.0
-2016-02-26 07:00:00,10597.0
-2016-02-26 08:00:00,11513.0
-2016-02-26 09:00:00,11808.0
-2016-02-26 10:00:00,11870.0
-2016-02-26 11:00:00,11962.0
-2016-02-26 12:00:00,12043.0
-2016-02-26 13:00:00,12016.0
-2016-02-26 14:00:00,11977.0
-2016-02-26 15:00:00,12003.0
-2016-02-26 16:00:00,11972.0
-2016-02-26 17:00:00,11945.0
-2016-02-26 18:00:00,12070.0
-2016-02-26 19:00:00,12396.0
-2016-02-26 20:00:00,12483.0
-2016-02-26 21:00:00,12262.0
-2016-02-26 22:00:00,12009.0
-2016-02-26 23:00:00,11677.0
-2016-02-27 00:00:00,11036.0
-2016-02-25 01:00:00,10401.0
-2016-02-25 02:00:00,9971.0
-2016-02-25 03:00:00,9717.0
-2016-02-25 04:00:00,9546.0
-2016-02-25 05:00:00,9595.0
-2016-02-25 06:00:00,9887.0
-2016-02-25 07:00:00,10625.0
-2016-02-25 08:00:00,11652.0
-2016-02-25 09:00:00,12073.0
-2016-02-25 10:00:00,12215.0
-2016-02-25 11:00:00,12241.0
-2016-02-25 12:00:00,12192.0
-2016-02-25 13:00:00,12047.0
-2016-02-25 14:00:00,11962.0
-2016-02-25 15:00:00,12010.0
-2016-02-25 16:00:00,12053.0
-2016-02-25 17:00:00,12059.0
-2016-02-25 18:00:00,12229.0
-2016-02-25 19:00:00,12630.0
-2016-02-25 20:00:00,12736.0
-2016-02-25 21:00:00,12523.0
-2016-02-25 22:00:00,12211.0
-2016-02-25 23:00:00,11726.0
-2016-02-26 00:00:00,10981.0
-2016-02-24 01:00:00,9982.0
-2016-02-24 02:00:00,9562.0
-2016-02-24 03:00:00,9369.0
-2016-02-24 04:00:00,9238.0
-2016-02-24 05:00:00,9260.0
-2016-02-24 06:00:00,9577.0
-2016-02-24 07:00:00,10347.0
-2016-02-24 08:00:00,11431.0
-2016-02-24 09:00:00,11967.0
-2016-02-24 10:00:00,12201.0
-2016-02-24 11:00:00,12357.0
-2016-02-24 12:00:00,12546.0
-2016-02-24 13:00:00,12590.0
-2016-02-24 14:00:00,12563.0
-2016-02-24 15:00:00,12604.0
-2016-02-24 16:00:00,12467.0
-2016-02-24 17:00:00,12440.0
-2016-02-24 18:00:00,12551.0
-2016-02-24 19:00:00,12945.0
-2016-02-24 20:00:00,13051.0
-2016-02-24 21:00:00,12802.0
-2016-02-24 22:00:00,12417.0
-2016-02-24 23:00:00,11873.0
-2016-02-25 00:00:00,11095.0
-2016-02-23 01:00:00,9849.0
-2016-02-23 02:00:00,9480.0
-2016-02-23 03:00:00,9286.0
-2016-02-23 04:00:00,9233.0
-2016-02-23 05:00:00,9244.0
-2016-02-23 06:00:00,9513.0
-2016-02-23 07:00:00,10314.0
-2016-02-23 08:00:00,11314.0
-2016-02-23 09:00:00,11736.0
-2016-02-23 10:00:00,11818.0
-2016-02-23 11:00:00,11722.0
-2016-02-23 12:00:00,11626.0
-2016-02-23 13:00:00,11507.0
-2016-02-23 14:00:00,11376.0
-2016-02-23 15:00:00,11302.0
-2016-02-23 16:00:00,11215.0
-2016-02-23 17:00:00,11098.0
-2016-02-23 18:00:00,11201.0
-2016-02-23 19:00:00,11758.0
-2016-02-23 20:00:00,12185.0
-2016-02-23 21:00:00,12074.0
-2016-02-23 22:00:00,11820.0
-2016-02-23 23:00:00,11342.0
-2016-02-24 00:00:00,10655.0
-2016-02-22 01:00:00,9271.0
-2016-02-22 02:00:00,9024.0
-2016-02-22 03:00:00,8924.0
-2016-02-22 04:00:00,8873.0
-2016-02-22 05:00:00,8980.0
-2016-02-22 06:00:00,9316.0
-2016-02-22 07:00:00,10123.0
-2016-02-22 08:00:00,11185.0
-2016-02-22 09:00:00,11630.0
-2016-02-22 10:00:00,11678.0
-2016-02-22 11:00:00,11580.0
-2016-02-22 12:00:00,11526.0
-2016-02-22 13:00:00,11457.0
-2016-02-22 14:00:00,11358.0
-2016-02-22 15:00:00,11332.0
-2016-02-22 16:00:00,11201.0
-2016-02-22 17:00:00,11137.0
-2016-02-22 18:00:00,11311.0
-2016-02-22 19:00:00,11889.0
-2016-02-22 20:00:00,12116.0
-2016-02-22 21:00:00,11941.0
-2016-02-22 22:00:00,11680.0
-2016-02-22 23:00:00,11212.0
-2016-02-23 00:00:00,10491.0
-2016-02-21 01:00:00,8929.0
-2016-02-21 02:00:00,8631.0
-2016-02-21 03:00:00,8388.0
-2016-02-21 04:00:00,8300.0
-2016-02-21 05:00:00,8262.0
-2016-02-21 06:00:00,8320.0
-2016-02-21 07:00:00,8475.0
-2016-02-21 08:00:00,8708.0
-2016-02-21 09:00:00,8744.0
-2016-02-21 10:00:00,9053.0
-2016-02-21 11:00:00,9301.0
-2016-02-21 12:00:00,9514.0
-2016-02-21 13:00:00,9550.0
-2016-02-21 14:00:00,9607.0
-2016-02-21 15:00:00,9518.0
-2016-02-21 16:00:00,9511.0
-2016-02-21 17:00:00,9536.0
-2016-02-21 18:00:00,9823.0
-2016-02-21 19:00:00,10513.0
-2016-02-21 20:00:00,10887.0
-2016-02-21 21:00:00,10818.0
-2016-02-21 22:00:00,10520.0
-2016-02-21 23:00:00,10215.0
-2016-02-22 00:00:00,9735.0
-2016-02-20 01:00:00,9552.0
-2016-02-20 02:00:00,9118.0
-2016-02-20 03:00:00,8860.0
-2016-02-20 04:00:00,8699.0
-2016-02-20 05:00:00,8630.0
-2016-02-20 06:00:00,8719.0
-2016-02-20 07:00:00,8992.0
-2016-02-20 08:00:00,9307.0
-2016-02-20 09:00:00,9404.0
-2016-02-20 10:00:00,9654.0
-2016-02-20 11:00:00,9766.0
-2016-02-20 12:00:00,9716.0
-2016-02-20 13:00:00,9618.0
-2016-02-20 14:00:00,9523.0
-2016-02-20 15:00:00,9348.0
-2016-02-20 16:00:00,9167.0
-2016-02-20 17:00:00,9071.0
-2016-02-20 18:00:00,9171.0
-2016-02-20 19:00:00,9694.0
-2016-02-20 20:00:00,10234.0
-2016-02-20 21:00:00,10146.0
-2016-02-20 22:00:00,10049.0
-2016-02-20 23:00:00,9807.0
-2016-02-21 00:00:00,9409.0
-2016-02-19 01:00:00,10270.0
-2016-02-19 02:00:00,9794.0
-2016-02-19 03:00:00,9551.0
-2016-02-19 04:00:00,9385.0
-2016-02-19 05:00:00,9330.0
-2016-02-19 06:00:00,9528.0
-2016-02-19 07:00:00,10155.0
-2016-02-19 08:00:00,11142.0
-2016-02-19 09:00:00,11434.0
-2016-02-19 10:00:00,11450.0
-2016-02-19 11:00:00,11403.0
-2016-02-19 12:00:00,11327.0
-2016-02-19 13:00:00,11221.0
-2016-02-19 14:00:00,11069.0
-2016-02-19 15:00:00,10920.0
-2016-02-19 16:00:00,10762.0
-2016-02-19 17:00:00,10726.0
-2016-02-19 18:00:00,10845.0
-2016-02-19 19:00:00,11160.0
-2016-02-19 20:00:00,11525.0
-2016-02-19 21:00:00,11396.0
-2016-02-19 22:00:00,11132.0
-2016-02-19 23:00:00,10753.0
-2016-02-20 00:00:00,10140.0
-2016-02-18 01:00:00,10759.0
-2016-02-18 02:00:00,10325.0
-2016-02-18 03:00:00,10107.0
-2016-02-18 04:00:00,10009.0
-2016-02-18 05:00:00,10022.0
-2016-02-18 06:00:00,10315.0
-2016-02-18 07:00:00,11059.0
-2016-02-18 08:00:00,12124.0
-2016-02-18 09:00:00,12446.0
-2016-02-18 10:00:00,12628.0
-2016-02-18 11:00:00,12674.0
-2016-02-18 12:00:00,12564.0
-2016-02-18 13:00:00,12482.0
-2016-02-18 14:00:00,12283.0
-2016-02-18 15:00:00,12154.0
-2016-02-18 16:00:00,12071.0
-2016-02-18 17:00:00,12081.0
-2016-02-18 18:00:00,12188.0
-2016-02-18 19:00:00,12687.0
-2016-02-18 20:00:00,12858.0
-2016-02-18 21:00:00,12652.0
-2016-02-18 22:00:00,12304.0
-2016-02-18 23:00:00,11778.0
-2016-02-19 00:00:00,11004.0
-2016-02-17 01:00:00,10662.0
-2016-02-17 02:00:00,10221.0
-2016-02-17 03:00:00,9958.0
-2016-02-17 04:00:00,9900.0
-2016-02-17 05:00:00,9887.0
-2016-02-17 06:00:00,10190.0
-2016-02-17 07:00:00,10948.0
-2016-02-17 08:00:00,12007.0
-2016-02-17 09:00:00,12322.0
-2016-02-17 10:00:00,12334.0
-2016-02-17 11:00:00,12233.0
-2016-02-17 12:00:00,12198.0
-2016-02-17 13:00:00,12133.0
-2016-02-17 14:00:00,12051.0
-2016-02-17 15:00:00,12014.0
-2016-02-17 16:00:00,11856.0
-2016-02-17 17:00:00,11782.0
-2016-02-17 18:00:00,11965.0
-2016-02-17 19:00:00,12603.0
-2016-02-17 20:00:00,13012.0
-2016-02-17 21:00:00,12900.0
-2016-02-17 22:00:00,12648.0
-2016-02-17 23:00:00,12156.0
-2016-02-18 00:00:00,11444.0
-2016-02-16 01:00:00,10853.0
-2016-02-16 02:00:00,10424.0
-2016-02-16 03:00:00,10190.0
-2016-02-16 04:00:00,10041.0
-2016-02-16 05:00:00,10060.0
-2016-02-16 06:00:00,10356.0
-2016-02-16 07:00:00,11074.0
-2016-02-16 08:00:00,12131.0
-2016-02-16 09:00:00,12468.0
-2016-02-16 10:00:00,12654.0
-2016-02-16 11:00:00,12671.0
-2016-02-16 12:00:00,12598.0
-2016-02-16 13:00:00,12434.0
-2016-02-16 14:00:00,12284.0
-2016-02-16 15:00:00,12326.0
-2016-02-16 16:00:00,12297.0
-2016-02-16 17:00:00,12365.0
-2016-02-16 18:00:00,12484.0
-2016-02-16 19:00:00,12981.0
-2016-02-16 20:00:00,13123.0
-2016-02-16 21:00:00,12962.0
-2016-02-16 22:00:00,12684.0
-2016-02-16 23:00:00,12092.0
-2016-02-17 00:00:00,11318.0
-2016-02-15 01:00:00,11061.0
-2016-02-15 02:00:00,10686.0
-2016-02-15 03:00:00,10533.0
-2016-02-15 04:00:00,10348.0
-2016-02-15 05:00:00,10413.0
-2016-02-15 06:00:00,10591.0
-2016-02-15 07:00:00,11204.0
-2016-02-15 08:00:00,12013.0
-2016-02-15 09:00:00,12379.0
-2016-02-15 10:00:00,12706.0
-2016-02-15 11:00:00,12906.0
-2016-02-15 12:00:00,12983.0
-2016-02-15 13:00:00,12904.0
-2016-02-15 14:00:00,12790.0
-2016-02-15 15:00:00,12755.0
-2016-02-15 16:00:00,12693.0
-2016-02-15 17:00:00,12648.0
-2016-02-15 18:00:00,12808.0
-2016-02-15 19:00:00,13294.0
-2016-02-15 20:00:00,13385.0
-2016-02-15 21:00:00,13164.0
-2016-02-15 22:00:00,12858.0
-2016-02-15 23:00:00,12358.0
-2016-02-16 00:00:00,11567.0
-2016-02-14 01:00:00,11428.0
-2016-02-14 02:00:00,11018.0
-2016-02-14 03:00:00,10820.0
-2016-02-14 04:00:00,10650.0
-2016-02-14 05:00:00,10571.0
-2016-02-14 06:00:00,10604.0
-2016-02-14 07:00:00,10741.0
-2016-02-14 08:00:00,11018.0
-2016-02-14 09:00:00,11019.0
-2016-02-14 10:00:00,11312.0
-2016-02-14 11:00:00,11565.0
-2016-02-14 12:00:00,11783.0
-2016-02-14 13:00:00,11939.0
-2016-02-14 14:00:00,11885.0
-2016-02-14 15:00:00,11845.0
-2016-02-14 16:00:00,11704.0
-2016-02-14 17:00:00,11751.0
-2016-02-14 18:00:00,11938.0
-2016-02-14 19:00:00,12590.0
-2016-02-14 20:00:00,12877.0
-2016-02-14 21:00:00,12751.0
-2016-02-14 22:00:00,12442.0
-2016-02-14 23:00:00,12113.0
-2016-02-15 00:00:00,11573.0
-2016-02-13 01:00:00,12079.0
-2016-02-13 02:00:00,11649.0
-2016-02-13 03:00:00,11416.0
-2016-02-13 04:00:00,11236.0
-2016-02-13 05:00:00,11232.0
-2016-02-13 06:00:00,11310.0
-2016-02-13 07:00:00,11578.0
-2016-02-13 08:00:00,11953.0
-2016-02-13 09:00:00,12066.0
-2016-02-13 10:00:00,12263.0
-2016-02-13 11:00:00,12348.0
-2016-02-13 12:00:00,12326.0
-2016-02-13 13:00:00,12215.0
-2016-02-13 14:00:00,11995.0
-2016-02-13 15:00:00,11751.0
-2016-02-13 16:00:00,11493.0
-2016-02-13 17:00:00,11416.0
-2016-02-13 18:00:00,11625.0
-2016-02-13 19:00:00,12471.0
-2016-02-13 20:00:00,12842.0
-2016-02-13 21:00:00,12869.0
-2016-02-13 22:00:00,12653.0
-2016-02-13 23:00:00,12394.0
-2016-02-14 00:00:00,11927.0
-2016-02-12 01:00:00,11415.0
-2016-02-12 02:00:00,10970.0
-2016-02-12 03:00:00,10697.0
-2016-02-12 04:00:00,10577.0
-2016-02-12 05:00:00,10590.0
-2016-02-12 06:00:00,10838.0
-2016-02-12 07:00:00,11536.0
-2016-02-12 08:00:00,12534.0
-2016-02-12 09:00:00,13038.0
-2016-02-12 10:00:00,13295.0
-2016-02-12 11:00:00,13387.0
-2016-02-12 12:00:00,13298.0
-2016-02-12 13:00:00,13199.0
-2016-02-12 14:00:00,13031.0
-2016-02-12 15:00:00,12941.0
-2016-02-12 16:00:00,12834.0
-2016-02-12 17:00:00,12771.0
-2016-02-12 18:00:00,12906.0
-2016-02-12 19:00:00,13558.0
-2016-02-12 20:00:00,13910.0
-2016-02-12 21:00:00,13755.0
-2016-02-12 22:00:00,13538.0
-2016-02-12 23:00:00,13241.0
-2016-02-13 00:00:00,12640.0
-2016-02-11 01:00:00,11756.0
-2016-02-11 02:00:00,11350.0
-2016-02-11 03:00:00,11127.0
-2016-02-11 04:00:00,11026.0
-2016-02-11 05:00:00,11072.0
-2016-02-11 06:00:00,11375.0
-2016-02-11 07:00:00,12094.0
-2016-02-11 08:00:00,13092.0
-2016-02-11 09:00:00,13446.0
-2016-02-11 10:00:00,13437.0
-2016-02-11 11:00:00,13353.0
-2016-02-11 12:00:00,13260.0
-2016-02-11 13:00:00,13107.0
-2016-02-11 14:00:00,12929.0
-2016-02-11 15:00:00,12843.0
-2016-02-11 16:00:00,12606.0
-2016-02-11 17:00:00,12512.0
-2016-02-11 18:00:00,12685.0
-2016-02-11 19:00:00,13386.0
-2016-02-11 20:00:00,13670.0
-2016-02-11 21:00:00,13566.0
-2016-02-11 22:00:00,13298.0
-2016-02-11 23:00:00,12830.0
-2016-02-12 00:00:00,12130.0
-2016-02-10 01:00:00,11644.0
-2016-02-10 02:00:00,11246.0
-2016-02-10 03:00:00,11046.0
-2016-02-10 04:00:00,10933.0
-2016-02-10 05:00:00,10957.0
-2016-02-10 06:00:00,11261.0
-2016-02-10 07:00:00,12008.0
-2016-02-10 08:00:00,13047.0
-2016-02-10 09:00:00,13387.0
-2016-02-10 10:00:00,13385.0
-2016-02-10 11:00:00,13384.0
-2016-02-10 12:00:00,13373.0
-2016-02-10 13:00:00,13235.0
-2016-02-10 14:00:00,13087.0
-2016-02-10 15:00:00,13040.0
-2016-02-10 16:00:00,12892.0
-2016-02-10 17:00:00,12820.0
-2016-02-10 18:00:00,13034.0
-2016-02-10 19:00:00,13754.0
-2016-02-10 20:00:00,13978.0
-2016-02-10 21:00:00,13835.0
-2016-02-10 22:00:00,13611.0
-2016-02-10 23:00:00,13149.0
-2016-02-11 00:00:00,12396.0
-2016-02-09 01:00:00,10941.0
-2016-02-09 02:00:00,10546.0
-2016-02-09 03:00:00,10393.0
-2016-02-09 04:00:00,10294.0
-2016-02-09 05:00:00,10352.0
-2016-02-09 06:00:00,10661.0
-2016-02-09 07:00:00,11412.0
-2016-02-09 08:00:00,12530.0
-2016-02-09 09:00:00,12949.0
-2016-02-09 10:00:00,13110.0
-2016-02-09 11:00:00,13155.0
-2016-02-09 12:00:00,13130.0
-2016-02-09 13:00:00,13014.0
-2016-02-09 14:00:00,13016.0
-2016-02-09 15:00:00,13141.0
-2016-02-09 16:00:00,13150.0
-2016-02-09 17:00:00,13153.0
-2016-02-09 18:00:00,13356.0
-2016-02-09 19:00:00,13941.0
-2016-02-09 20:00:00,14012.0
-2016-02-09 21:00:00,13817.0
-2016-02-09 22:00:00,13578.0
-2016-02-09 23:00:00,13071.0
-2016-02-10 00:00:00,12308.0
-2016-02-08 01:00:00,9627.0
-2016-02-08 02:00:00,9296.0
-2016-02-08 03:00:00,9168.0
-2016-02-08 04:00:00,9119.0
-2016-02-08 05:00:00,9211.0
-2016-02-08 06:00:00,9517.0
-2016-02-08 07:00:00,10307.0
-2016-02-08 08:00:00,11448.0
-2016-02-08 09:00:00,12076.0
-2016-02-08 10:00:00,12261.0
-2016-02-08 11:00:00,12370.0
-2016-02-08 12:00:00,12485.0
-2016-02-08 13:00:00,12552.0
-2016-02-08 14:00:00,12564.0
-2016-02-08 15:00:00,12581.0
-2016-02-08 16:00:00,12502.0
-2016-02-08 17:00:00,12502.0
-2016-02-08 18:00:00,12729.0
-2016-02-08 19:00:00,13289.0
-2016-02-08 20:00:00,13291.0
-2016-02-08 21:00:00,13106.0
-2016-02-08 22:00:00,12808.0
-2016-02-08 23:00:00,12323.0
-2016-02-09 00:00:00,11584.0
-2016-02-07 01:00:00,9870.0
-2016-02-07 02:00:00,9526.0
-2016-02-07 03:00:00,9248.0
-2016-02-07 04:00:00,9070.0
-2016-02-07 05:00:00,9020.0
-2016-02-07 06:00:00,8972.0
-2016-02-07 07:00:00,9116.0
-2016-02-07 08:00:00,9375.0
-2016-02-07 09:00:00,9400.0
-2016-02-07 10:00:00,9597.0
-2016-02-07 11:00:00,9727.0
-2016-02-07 12:00:00,9814.0
-2016-02-07 13:00:00,9887.0
-2016-02-07 14:00:00,9834.0
-2016-02-07 15:00:00,9901.0
-2016-02-07 16:00:00,9867.0
-2016-02-07 17:00:00,9833.0
-2016-02-07 18:00:00,10002.0
-2016-02-07 19:00:00,10702.0
-2016-02-07 20:00:00,10910.0
-2016-02-07 21:00:00,10847.0
-2016-02-07 22:00:00,10697.0
-2016-02-07 23:00:00,10508.0
-2016-02-08 00:00:00,10092.0
-2016-02-06 01:00:00,10530.0
-2016-02-06 02:00:00,10160.0
-2016-02-06 03:00:00,9827.0
-2016-02-06 04:00:00,9671.0
-2016-02-06 05:00:00,9632.0
-2016-02-06 06:00:00,9720.0
-2016-02-06 07:00:00,9996.0
-2016-02-06 08:00:00,10498.0
-2016-02-06 09:00:00,10675.0
-2016-02-06 10:00:00,10844.0
-2016-02-06 11:00:00,10915.0
-2016-02-06 12:00:00,10920.0
-2016-02-06 13:00:00,10886.0
-2016-02-06 14:00:00,10668.0
-2016-02-06 15:00:00,10397.0
-2016-02-06 16:00:00,10205.0
-2016-02-06 17:00:00,10143.0
-2016-02-06 18:00:00,10259.0
-2016-02-06 19:00:00,11048.0
-2016-02-06 20:00:00,11303.0
-2016-02-06 21:00:00,11234.0
-2016-02-06 22:00:00,11100.0
-2016-02-06 23:00:00,10826.0
-2016-02-07 00:00:00,10409.0
-2016-02-05 01:00:00,10616.0
-2016-02-05 02:00:00,10197.0
-2016-02-05 03:00:00,9926.0
-2016-02-05 04:00:00,9820.0
-2016-02-05 05:00:00,9800.0
-2016-02-05 06:00:00,10040.0
-2016-02-05 07:00:00,10761.0
-2016-02-05 08:00:00,11815.0
-2016-02-05 09:00:00,12330.0
-2016-02-05 10:00:00,12503.0
-2016-02-05 11:00:00,12553.0
-2016-02-05 12:00:00,12505.0
-2016-02-05 13:00:00,12356.0
-2016-02-05 14:00:00,12210.0
-2016-02-05 15:00:00,12133.0
-2016-02-05 16:00:00,11980.0
-2016-02-05 17:00:00,11983.0
-2016-02-05 18:00:00,12226.0
-2016-02-05 19:00:00,12746.0
-2016-02-05 20:00:00,12651.0
-2016-02-05 21:00:00,12409.0
-2016-02-05 22:00:00,12213.0
-2016-02-05 23:00:00,11842.0
-2016-02-06 00:00:00,11205.0
-2016-02-04 01:00:00,10634.0
-2016-02-04 02:00:00,10184.0
-2016-02-04 03:00:00,9944.0
-2016-02-04 04:00:00,9817.0
-2016-02-04 05:00:00,9838.0
-2016-02-04 06:00:00,10167.0
-2016-02-04 07:00:00,10956.0
-2016-02-04 08:00:00,12165.0
-2016-02-04 09:00:00,12647.0
-2016-02-04 10:00:00,12628.0
-2016-02-04 11:00:00,12545.0
-2016-02-04 12:00:00,12498.0
-2016-02-04 13:00:00,12393.0
-2016-02-04 14:00:00,12280.0
-2016-02-04 15:00:00,12140.0
-2016-02-04 16:00:00,11978.0
-2016-02-04 17:00:00,11939.0
-2016-02-04 18:00:00,12212.0
-2016-02-04 19:00:00,12910.0
-2016-02-04 20:00:00,13011.0
-2016-02-04 21:00:00,12826.0
-2016-02-04 22:00:00,12532.0
-2016-02-04 23:00:00,12080.0
-2016-02-05 00:00:00,11300.0
-2016-02-03 01:00:00,10117.0
-2016-02-03 02:00:00,9647.0
-2016-02-03 03:00:00,9393.0
-2016-02-03 04:00:00,9315.0
-2016-02-03 05:00:00,9306.0
-2016-02-03 06:00:00,9587.0
-2016-02-03 07:00:00,10338.0
-2016-02-03 08:00:00,11454.0
-2016-02-03 09:00:00,11989.0
-2016-02-03 10:00:00,12147.0
-2016-02-03 11:00:00,12235.0
-2016-02-03 12:00:00,12400.0
-2016-02-03 13:00:00,12396.0
-2016-02-03 14:00:00,12401.0
-2016-02-03 15:00:00,12440.0
-2016-02-03 16:00:00,12333.0
-2016-02-03 17:00:00,12363.0
-2016-02-03 18:00:00,12674.0
-2016-02-03 19:00:00,13131.0
-2016-02-03 20:00:00,13004.0
-2016-02-03 21:00:00,12791.0
-2016-02-03 22:00:00,12501.0
-2016-02-03 23:00:00,12008.0
-2016-02-04 00:00:00,11292.0
-2016-02-02 01:00:00,10112.0
-2016-02-02 02:00:00,9684.0
-2016-02-02 03:00:00,9423.0
-2016-02-02 04:00:00,9278.0
-2016-02-02 05:00:00,9300.0
-2016-02-02 06:00:00,9607.0
-2016-02-02 07:00:00,10385.0
-2016-02-02 08:00:00,11515.0
-2016-02-02 09:00:00,12105.0
-2016-02-02 10:00:00,12232.0
-2016-02-02 11:00:00,12354.0
-2016-02-02 12:00:00,12555.0
-2016-02-02 13:00:00,12680.0
-2016-02-02 14:00:00,12789.0
-2016-02-02 15:00:00,12852.0
-2016-02-02 16:00:00,12734.0
-2016-02-02 17:00:00,12789.0
-2016-02-02 18:00:00,12966.0
-2016-02-02 19:00:00,13173.0
-2016-02-02 20:00:00,12908.0
-2016-02-02 21:00:00,12604.0
-2016-02-02 22:00:00,12243.0
-2016-02-02 23:00:00,11621.0
-2016-02-03 00:00:00,10847.0
-2016-02-01 01:00:00,9487.0
-2016-02-01 02:00:00,9210.0
-2016-02-01 03:00:00,9074.0
-2016-02-01 04:00:00,9047.0
-2016-02-01 05:00:00,9070.0
-2016-02-01 06:00:00,9446.0
-2016-02-01 07:00:00,10219.0
-2016-02-01 08:00:00,11426.0
-2016-02-01 09:00:00,11864.0
-2016-02-01 10:00:00,11964.0
-2016-02-01 11:00:00,11931.0
-2016-02-01 12:00:00,11805.0
-2016-02-01 13:00:00,11672.0
-2016-02-01 14:00:00,11550.0
-2016-02-01 15:00:00,11485.0
-2016-02-01 16:00:00,11312.0
-2016-02-01 17:00:00,11234.0
-2016-02-01 18:00:00,11433.0
-2016-02-01 19:00:00,12251.0
-2016-02-01 20:00:00,12375.0
-2016-02-01 21:00:00,12230.0
-2016-02-01 22:00:00,11973.0
-2016-02-01 23:00:00,11544.0
-2016-02-02 00:00:00,10841.0
-2016-01-31 01:00:00,9323.0
-2016-01-31 02:00:00,8930.0
-2016-01-31 03:00:00,8688.0
-2016-01-31 04:00:00,8498.0
-2016-01-31 05:00:00,8443.0
-2016-01-31 06:00:00,8457.0
-2016-01-31 07:00:00,8616.0
-2016-01-31 08:00:00,8885.0
-2016-01-31 09:00:00,9036.0
-2016-01-31 10:00:00,9215.0
-2016-01-31 11:00:00,9448.0
-2016-01-31 12:00:00,9586.0
-2016-01-31 13:00:00,9773.0
-2016-01-31 14:00:00,9778.0
-2016-01-31 15:00:00,9745.0
-2016-01-31 16:00:00,9761.0
-2016-01-31 17:00:00,9922.0
-2016-01-31 18:00:00,10281.0
-2016-01-31 19:00:00,10951.0
-2016-01-31 20:00:00,11057.0
-2016-01-31 21:00:00,10988.0
-2016-01-31 22:00:00,10770.0
-2016-01-31 23:00:00,10464.0
-2016-02-01 00:00:00,9968.0
-2016-01-30 01:00:00,10479.0
-2016-01-30 02:00:00,10092.0
-2016-01-30 03:00:00,9647.0
-2016-01-30 04:00:00,9391.0
-2016-01-30 05:00:00,9367.0
-2016-01-30 06:00:00,9388.0
-2016-01-30 07:00:00,9643.0
-2016-01-30 08:00:00,10050.0
-2016-01-30 09:00:00,10189.0
-2016-01-30 10:00:00,10488.0
-2016-01-30 11:00:00,10697.0
-2016-01-30 12:00:00,10566.0
-2016-01-30 13:00:00,10401.0
-2016-01-30 14:00:00,10193.0
-2016-01-30 15:00:00,10021.0
-2016-01-30 16:00:00,9922.0
-2016-01-30 17:00:00,9906.0
-2016-01-30 18:00:00,10166.0
-2016-01-30 19:00:00,10872.0
-2016-01-30 20:00:00,10926.0
-2016-01-30 21:00:00,10811.0
-2016-01-30 22:00:00,10596.0
-2016-01-30 23:00:00,10320.0
-2016-01-31 00:00:00,9815.0
-2016-01-29 01:00:00,10471.0
-2016-01-29 02:00:00,10050.0
-2016-01-29 03:00:00,9836.0
-2016-01-29 04:00:00,9726.0
-2016-01-29 05:00:00,9759.0
-2016-01-29 06:00:00,10058.0
-2016-01-29 07:00:00,10803.0
-2016-01-29 08:00:00,11965.0
-2016-01-29 09:00:00,12401.0
-2016-01-29 10:00:00,12363.0
-2016-01-29 11:00:00,12315.0
-2016-01-29 12:00:00,12266.0
-2016-01-29 13:00:00,12148.0
-2016-01-29 14:00:00,12016.0
-2016-01-29 15:00:00,11936.0
-2016-01-29 16:00:00,11812.0
-2016-01-29 17:00:00,11769.0
-2016-01-29 18:00:00,11993.0
-2016-01-29 19:00:00,12671.0
-2016-01-29 20:00:00,12675.0
-2016-01-29 21:00:00,12460.0
-2016-01-29 22:00:00,12177.0
-2016-01-29 23:00:00,11801.0
-2016-01-30 00:00:00,11086.0
-2016-01-28 01:00:00,10628.0
-2016-01-28 02:00:00,10188.0
-2016-01-28 03:00:00,9922.0
-2016-01-28 04:00:00,9794.0
-2016-01-28 05:00:00,9792.0
-2016-01-28 06:00:00,10033.0
-2016-01-28 07:00:00,10777.0
-2016-01-28 08:00:00,11874.0
-2016-01-28 09:00:00,12264.0
-2016-01-28 10:00:00,12265.0
-2016-01-28 11:00:00,12319.0
-2016-01-28 12:00:00,12349.0
-2016-01-28 13:00:00,12352.0
-2016-01-28 14:00:00,12270.0
-2016-01-28 15:00:00,12250.0
-2016-01-28 16:00:00,12181.0
-2016-01-28 17:00:00,12298.0
-2016-01-28 18:00:00,12616.0
-2016-01-28 19:00:00,13043.0
-2016-01-28 20:00:00,12877.0
-2016-01-28 21:00:00,12674.0
-2016-01-28 22:00:00,12416.0
-2016-01-28 23:00:00,11924.0
-2016-01-29 00:00:00,11172.0
-2016-01-27 01:00:00,10816.0
-2016-01-27 02:00:00,10371.0
-2016-01-27 03:00:00,10117.0
-2016-01-27 04:00:00,9980.0
-2016-01-27 05:00:00,10006.0
-2016-01-27 06:00:00,10225.0
-2016-01-27 07:00:00,11015.0
-2016-01-27 08:00:00,12135.0
-2016-01-27 09:00:00,12691.0
-2016-01-27 10:00:00,12803.0
-2016-01-27 11:00:00,12861.0
-2016-01-27 12:00:00,12852.0
-2016-01-27 13:00:00,12621.0
-2016-01-27 14:00:00,12384.0
-2016-01-27 15:00:00,12265.0
-2016-01-27 16:00:00,12111.0
-2016-01-27 17:00:00,12051.0
-2016-01-27 18:00:00,12421.0
-2016-01-27 19:00:00,13209.0
-2016-01-27 20:00:00,13126.0
-2016-01-27 21:00:00,12954.0
-2016-01-27 22:00:00,12661.0
-2016-01-27 23:00:00,12119.0
-2016-01-28 00:00:00,11340.0
-2016-01-26 01:00:00,10314.0
-2016-01-26 02:00:00,9904.0
-2016-01-26 03:00:00,9719.0
-2016-01-26 04:00:00,9646.0
-2016-01-26 05:00:00,9716.0
-2016-01-26 06:00:00,10003.0
-2016-01-26 07:00:00,10777.0
-2016-01-26 08:00:00,11920.0
-2016-01-26 09:00:00,12566.0
-2016-01-26 10:00:00,12638.0
-2016-01-26 11:00:00,12677.0
-2016-01-26 12:00:00,12765.0
-2016-01-26 13:00:00,12798.0
-2016-01-26 14:00:00,12792.0
-2016-01-26 15:00:00,12815.0
-2016-01-26 16:00:00,12733.0
-2016-01-26 17:00:00,12746.0
-2016-01-26 18:00:00,13082.0
-2016-01-26 19:00:00,13547.0
-2016-01-26 20:00:00,13399.0
-2016-01-26 21:00:00,13193.0
-2016-01-26 22:00:00,12867.0
-2016-01-26 23:00:00,12273.0
-2016-01-27 00:00:00,11526.0
-2016-01-25 01:00:00,10053.0
-2016-01-25 02:00:00,9760.0
-2016-01-25 03:00:00,9639.0
-2016-01-25 04:00:00,9571.0
-2016-01-25 05:00:00,9619.0
-2016-01-25 06:00:00,9958.0
-2016-01-25 07:00:00,10728.0
-2016-01-25 08:00:00,11856.0
-2016-01-25 09:00:00,12469.0
-2016-01-25 10:00:00,12428.0
-2016-01-25 11:00:00,12381.0
-2016-01-25 12:00:00,12283.0
-2016-01-25 13:00:00,12164.0
-2016-01-25 14:00:00,12086.0
-2016-01-25 15:00:00,12171.0
-2016-01-25 16:00:00,12172.0
-2016-01-25 17:00:00,12298.0
-2016-01-25 18:00:00,12751.0
-2016-01-25 19:00:00,13165.0
-2016-01-25 20:00:00,12929.0
-2016-01-25 21:00:00,12674.0
-2016-01-25 22:00:00,12328.0
-2016-01-25 23:00:00,11754.0
-2016-01-26 00:00:00,10951.0
-2016-01-24 01:00:00,10461.0
-2016-01-24 02:00:00,10082.0
-2016-01-24 03:00:00,9894.0
-2016-01-24 04:00:00,9732.0
-2016-01-24 05:00:00,9699.0
-2016-01-24 06:00:00,9745.0
-2016-01-24 07:00:00,9900.0
-2016-01-24 08:00:00,10148.0
-2016-01-24 09:00:00,10247.0
-2016-01-24 10:00:00,10406.0
-2016-01-24 11:00:00,10692.0
-2016-01-24 12:00:00,10725.0
-2016-01-24 13:00:00,10672.0
-2016-01-24 14:00:00,10562.0
-2016-01-24 15:00:00,10473.0
-2016-01-24 16:00:00,10408.0
-2016-01-24 17:00:00,10485.0
-2016-01-24 18:00:00,10928.0
-2016-01-24 19:00:00,11718.0
-2016-01-24 20:00:00,11815.0
-2016-01-24 21:00:00,11714.0
-2016-01-24 22:00:00,11443.0
-2016-01-24 23:00:00,11076.0
-2016-01-25 00:00:00,10499.0
-2016-01-23 01:00:00,11039.0
-2016-01-23 02:00:00,10538.0
-2016-01-23 03:00:00,10259.0
-2016-01-23 04:00:00,10045.0
-2016-01-23 05:00:00,10006.0
-2016-01-23 06:00:00,10056.0
-2016-01-23 07:00:00,10331.0
-2016-01-23 08:00:00,10773.0
-2016-01-23 09:00:00,11017.0
-2016-01-23 10:00:00,11226.0
-2016-01-23 11:00:00,11457.0
-2016-01-23 12:00:00,11394.0
-2016-01-23 13:00:00,11288.0
-2016-01-23 14:00:00,11178.0
-2016-01-23 15:00:00,10996.0
-2016-01-23 16:00:00,10871.0
-2016-01-23 17:00:00,10813.0
-2016-01-23 18:00:00,11080.0
-2016-01-23 19:00:00,11874.0
-2016-01-23 20:00:00,11944.0
-2016-01-23 21:00:00,11804.0
-2016-01-23 22:00:00,11632.0
-2016-01-23 23:00:00,11402.0
-2016-01-24 00:00:00,10931.0
-2016-01-22 01:00:00,11155.0
-2016-01-22 02:00:00,10787.0
-2016-01-22 03:00:00,10536.0
-2016-01-22 04:00:00,10400.0
-2016-01-22 05:00:00,10407.0
-2016-01-22 06:00:00,10654.0
-2016-01-22 07:00:00,11285.0
-2016-01-22 08:00:00,12363.0
-2016-01-22 09:00:00,13023.0
-2016-01-22 10:00:00,13160.0
-2016-01-22 11:00:00,13217.0
-2016-01-22 12:00:00,13261.0
-2016-01-22 13:00:00,13191.0
-2016-01-22 14:00:00,13093.0
-2016-01-22 15:00:00,13023.0
-2016-01-22 16:00:00,12886.0
-2016-01-22 17:00:00,12669.0
-2016-01-22 18:00:00,12998.0
-2016-01-22 19:00:00,13567.0
-2016-01-22 20:00:00,13402.0
-2016-01-22 21:00:00,13115.0
-2016-01-22 22:00:00,12761.0
-2016-01-22 23:00:00,12348.0
-2016-01-23 00:00:00,11660.0
-2016-01-21 01:00:00,11561.0
-2016-01-21 02:00:00,11167.0
-2016-01-21 03:00:00,10930.0
-2016-01-21 04:00:00,10839.0
-2016-01-21 05:00:00,10813.0
-2016-01-21 06:00:00,11062.0
-2016-01-21 07:00:00,11781.0
-2016-01-21 08:00:00,12842.0
-2016-01-21 09:00:00,13363.0
-2016-01-21 10:00:00,13361.0
-2016-01-21 11:00:00,13214.0
-2016-01-21 12:00:00,13075.0
-2016-01-21 13:00:00,12914.0
-2016-01-21 14:00:00,12744.0
-2016-01-21 15:00:00,12684.0
-2016-01-21 16:00:00,12526.0
-2016-01-21 17:00:00,12478.0
-2016-01-21 18:00:00,12858.0
-2016-01-21 19:00:00,13641.0
-2016-01-21 20:00:00,13591.0
-2016-01-21 21:00:00,13434.0
-2016-01-21 22:00:00,13164.0
-2016-01-21 23:00:00,12632.0
-2016-01-22 00:00:00,11869.0
-2016-01-20 01:00:00,11930.0
-2016-01-20 02:00:00,11516.0
-2016-01-20 03:00:00,11292.0
-2016-01-20 04:00:00,11139.0
-2016-01-20 05:00:00,11135.0
-2016-01-20 06:00:00,11379.0
-2016-01-20 07:00:00,12016.0
-2016-01-20 08:00:00,13014.0
-2016-01-20 09:00:00,13479.0
-2016-01-20 10:00:00,13517.0
-2016-01-20 11:00:00,13580.0
-2016-01-20 12:00:00,13572.0
-2016-01-20 13:00:00,13423.0
-2016-01-20 14:00:00,13217.0
-2016-01-20 15:00:00,13148.0
-2016-01-20 16:00:00,12944.0
-2016-01-20 17:00:00,12858.0
-2016-01-20 18:00:00,13198.0
-2016-01-20 19:00:00,14018.0
-2016-01-20 20:00:00,13988.0
-2016-01-20 21:00:00,13845.0
-2016-01-20 22:00:00,13533.0
-2016-01-20 23:00:00,12971.0
-2016-01-21 00:00:00,12257.0
-2016-01-19 01:00:00,12518.0
-2016-01-19 02:00:00,12154.0
-2016-01-19 03:00:00,11968.0
-2016-01-19 04:00:00,11818.0
-2016-01-19 05:00:00,11812.0
-2016-01-19 06:00:00,12050.0
-2016-01-19 07:00:00,12689.0
-2016-01-19 08:00:00,13767.0
-2016-01-19 09:00:00,14253.0
-2016-01-19 10:00:00,14194.0
-2016-01-19 11:00:00,14117.0
-2016-01-19 12:00:00,14001.0
-2016-01-19 13:00:00,13837.0
-2016-01-19 14:00:00,13685.0
-2016-01-19 15:00:00,13541.0
-2016-01-19 16:00:00,13386.0
-2016-01-19 17:00:00,13398.0
-2016-01-19 18:00:00,13806.0
-2016-01-19 19:00:00,14508.0
-2016-01-19 20:00:00,14445.0
-2016-01-19 21:00:00,14275.0
-2016-01-19 22:00:00,13975.0
-2016-01-19 23:00:00,13398.0
-2016-01-20 00:00:00,12639.0
-2016-01-18 01:00:00,12191.0
-2016-01-18 02:00:00,11875.0
-2016-01-18 03:00:00,11727.0
-2016-01-18 04:00:00,11664.0
-2016-01-18 05:00:00,11657.0
-2016-01-18 06:00:00,11892.0
-2016-01-18 07:00:00,12435.0
-2016-01-18 08:00:00,13335.0
-2016-01-18 09:00:00,13816.0
-2016-01-18 10:00:00,13951.0
-2016-01-18 11:00:00,14063.0
-2016-01-18 12:00:00,14095.0
-2016-01-18 13:00:00,14072.0
-2016-01-18 14:00:00,13938.0
-2016-01-18 15:00:00,13857.0
-2016-01-18 16:00:00,13693.0
-2016-01-18 17:00:00,13676.0
-2016-01-18 18:00:00,14102.0
-2016-01-18 19:00:00,14956.0
-2016-01-18 20:00:00,14938.0
-2016-01-18 21:00:00,14782.0
-2016-01-18 22:00:00,14451.0
-2016-01-18 23:00:00,13947.0
-2016-01-19 00:00:00,13234.0
-2016-01-17 01:00:00,11117.0
-2016-01-17 02:00:00,10866.0
-2016-01-17 03:00:00,10618.0
-2016-01-17 04:00:00,10527.0
-2016-01-17 05:00:00,10481.0
-2016-01-17 06:00:00,10507.0
-2016-01-17 07:00:00,10712.0
-2016-01-17 08:00:00,11073.0
-2016-01-17 09:00:00,11281.0
-2016-01-17 10:00:00,11495.0
-2016-01-17 11:00:00,11759.0
-2016-01-17 12:00:00,11851.0
-2016-01-17 13:00:00,11975.0
-2016-01-17 14:00:00,11961.0
-2016-01-17 15:00:00,11957.0
-2016-01-17 16:00:00,11920.0
-2016-01-17 17:00:00,12101.0
-2016-01-17 18:00:00,12625.0
-2016-01-17 19:00:00,13626.0
-2016-01-17 20:00:00,13663.0
-2016-01-17 21:00:00,13595.0
-2016-01-17 22:00:00,13413.0
-2016-01-17 23:00:00,13145.0
-2016-01-18 00:00:00,12634.0
-2016-01-16 01:00:00,10540.0
-2016-01-16 02:00:00,10067.0
-2016-01-16 03:00:00,9776.0
-2016-01-16 04:00:00,9598.0
-2016-01-16 05:00:00,9590.0
-2016-01-16 06:00:00,9687.0
-2016-01-16 07:00:00,10009.0
-2016-01-16 08:00:00,10452.0
-2016-01-16 09:00:00,10709.0
-2016-01-16 10:00:00,10853.0
-2016-01-16 11:00:00,10990.0
-2016-01-16 12:00:00,11081.0
-2016-01-16 13:00:00,11114.0
-2016-01-16 14:00:00,10995.0
-2016-01-16 15:00:00,10810.0
-2016-01-16 16:00:00,10689.0
-2016-01-16 17:00:00,10764.0
-2016-01-16 18:00:00,11212.0
-2016-01-16 19:00:00,12114.0
-2016-01-16 20:00:00,12249.0
-2016-01-16 21:00:00,12147.0
-2016-01-16 22:00:00,12062.0
-2016-01-16 23:00:00,11816.0
-2016-01-17 00:00:00,11501.0
-2016-01-15 01:00:00,10284.0
-2016-01-15 02:00:00,9783.0
-2016-01-15 03:00:00,9561.0
-2016-01-15 04:00:00,9390.0
-2016-01-15 05:00:00,9369.0
-2016-01-15 06:00:00,9581.0
-2016-01-15 07:00:00,10278.0
-2016-01-15 08:00:00,11334.0
-2016-01-15 09:00:00,11949.0
-2016-01-15 10:00:00,12053.0
-2016-01-15 11:00:00,12146.0
-2016-01-15 12:00:00,12206.0
-2016-01-15 13:00:00,12235.0
-2016-01-15 14:00:00,12236.0
-2016-01-15 15:00:00,12242.0
-2016-01-15 16:00:00,12219.0
-2016-01-15 17:00:00,12274.0
-2016-01-15 18:00:00,12696.0
-2016-01-15 19:00:00,13035.0
-2016-01-15 20:00:00,12866.0
-2016-01-15 21:00:00,12605.0
-2016-01-15 22:00:00,12312.0
-2016-01-15 23:00:00,11928.0
-2016-01-16 00:00:00,11205.0
-2016-01-14 01:00:00,11577.0
-2016-01-14 02:00:00,11052.0
-2016-01-14 03:00:00,10782.0
-2016-01-14 04:00:00,10603.0
-2016-01-14 05:00:00,10575.0
-2016-01-14 06:00:00,10752.0
-2016-01-14 07:00:00,11378.0
-2016-01-14 08:00:00,12407.0
-2016-01-14 09:00:00,12857.0
-2016-01-14 10:00:00,12777.0
-2016-01-14 11:00:00,12657.0
-2016-01-14 12:00:00,12547.0
-2016-01-14 13:00:00,12358.0
-2016-01-14 14:00:00,12188.0
-2016-01-14 15:00:00,12120.0
-2016-01-14 16:00:00,11982.0
-2016-01-14 17:00:00,11893.0
-2016-01-14 18:00:00,12300.0
-2016-01-14 19:00:00,12985.0
-2016-01-14 20:00:00,12847.0
-2016-01-14 21:00:00,12641.0
-2016-01-14 22:00:00,12326.0
-2016-01-14 23:00:00,11764.0
-2016-01-15 00:00:00,11007.0
-2016-01-13 01:00:00,12378.0
-2016-01-13 02:00:00,11964.0
-2016-01-13 03:00:00,11748.0
-2016-01-13 04:00:00,11612.0
-2016-01-13 05:00:00,11618.0
-2016-01-13 06:00:00,11881.0
-2016-01-13 07:00:00,12498.0
-2016-01-13 08:00:00,13591.0
-2016-01-13 09:00:00,14090.0
-2016-01-13 10:00:00,14155.0
-2016-01-13 11:00:00,14351.0
-2016-01-13 12:00:00,14441.0
-2016-01-13 13:00:00,14426.0
-2016-01-13 14:00:00,14322.0
-2016-01-13 15:00:00,14166.0
-2016-01-13 16:00:00,14001.0
-2016-01-13 17:00:00,13890.0
-2016-01-13 18:00:00,14082.0
-2016-01-13 19:00:00,14622.0
-2016-01-13 20:00:00,14416.0
-2016-01-13 21:00:00,14148.0
-2016-01-13 22:00:00,13823.0
-2016-01-13 23:00:00,13224.0
-2016-01-14 00:00:00,12366.0
-2016-01-12 01:00:00,11752.0
-2016-01-12 02:00:00,11328.0
-2016-01-12 03:00:00,11087.0
-2016-01-12 04:00:00,10981.0
-2016-01-12 05:00:00,10967.0
-2016-01-12 06:00:00,11220.0
-2016-01-12 07:00:00,11956.0
-2016-01-12 08:00:00,13144.0
-2016-01-12 09:00:00,13686.0
-2016-01-12 10:00:00,13704.0
-2016-01-12 11:00:00,13738.0
-2016-01-12 12:00:00,13758.0
-2016-01-12 13:00:00,13720.0
-2016-01-12 14:00:00,13671.0
-2016-01-12 15:00:00,13632.0
-2016-01-12 16:00:00,13481.0
-2016-01-12 17:00:00,13534.0
-2016-01-12 18:00:00,14032.0
-2016-01-12 19:00:00,14852.0
-2016-01-12 20:00:00,14823.0
-2016-01-12 21:00:00,14657.0
-2016-01-12 22:00:00,14390.0
-2016-01-12 23:00:00,13889.0
-2016-01-13 00:00:00,13057.0
-2016-01-11 01:00:00,11513.0
-2016-01-11 02:00:00,11278.0
-2016-01-11 03:00:00,11090.0
-2016-01-11 04:00:00,11048.0
-2016-01-11 05:00:00,11097.0
-2016-01-11 06:00:00,11349.0
-2016-01-11 07:00:00,12058.0
-2016-01-11 08:00:00,13235.0
-2016-01-11 09:00:00,13758.0
-2016-01-11 10:00:00,13769.0
-2016-01-11 11:00:00,13830.0
-2016-01-11 12:00:00,13938.0
-2016-01-11 13:00:00,13887.0
-2016-01-11 14:00:00,13871.0
-2016-01-11 15:00:00,13867.0
-2016-01-11 16:00:00,13729.0
-2016-01-11 17:00:00,13681.0
-2016-01-11 18:00:00,14085.0
-2016-01-11 19:00:00,14565.0
-2016-01-11 20:00:00,14409.0
-2016-01-11 21:00:00,14129.0
-2016-01-11 22:00:00,13774.0
-2016-01-11 23:00:00,13223.0
-2016-01-12 00:00:00,12449.0
-2016-01-10 01:00:00,10429.0
-2016-01-10 02:00:00,10028.0
-2016-01-10 03:00:00,9839.0
-2016-01-10 04:00:00,9725.0
-2016-01-10 05:00:00,9662.0
-2016-01-10 06:00:00,9730.0
-2016-01-10 07:00:00,9895.0
-2016-01-10 08:00:00,10242.0
-2016-01-10 09:00:00,10334.0
-2016-01-10 10:00:00,10602.0
-2016-01-10 11:00:00,10799.0
-2016-01-10 12:00:00,10928.0
-2016-01-10 13:00:00,11008.0
-2016-01-10 14:00:00,11118.0
-2016-01-10 15:00:00,11114.0
-2016-01-10 16:00:00,11186.0
-2016-01-10 17:00:00,11350.0
-2016-01-10 18:00:00,12012.0
-2016-01-10 19:00:00,12998.0
-2016-01-10 20:00:00,13135.0
-2016-01-10 21:00:00,13044.0
-2016-01-10 22:00:00,12863.0
-2016-01-10 23:00:00,12540.0
-2016-01-11 00:00:00,11994.0
-2016-01-09 01:00:00,9982.0
-2016-01-09 02:00:00,9475.0
-2016-01-09 03:00:00,9167.0
-2016-01-09 04:00:00,8989.0
-2016-01-09 05:00:00,8906.0
-2016-01-09 06:00:00,8997.0
-2016-01-09 07:00:00,9243.0
-2016-01-09 08:00:00,9743.0
-2016-01-09 09:00:00,10091.0
-2016-01-09 10:00:00,10418.0
-2016-01-09 11:00:00,10732.0
-2016-01-09 12:00:00,10902.0
-2016-01-09 13:00:00,10902.0
-2016-01-09 14:00:00,10956.0
-2016-01-09 15:00:00,10919.0
-2016-01-09 16:00:00,11028.0
-2016-01-09 17:00:00,11189.0
-2016-01-09 18:00:00,11608.0
-2016-01-09 19:00:00,12019.0
-2016-01-09 20:00:00,11981.0
-2016-01-09 21:00:00,11789.0
-2016-01-09 22:00:00,11593.0
-2016-01-09 23:00:00,11299.0
-2016-01-10 00:00:00,10867.0
-2016-01-08 01:00:00,10087.0
-2016-01-08 02:00:00,9630.0
-2016-01-08 03:00:00,9331.0
-2016-01-08 04:00:00,9198.0
-2016-01-08 05:00:00,9161.0
-2016-01-08 06:00:00,9400.0
-2016-01-08 07:00:00,10086.0
-2016-01-08 08:00:00,11197.0
-2016-01-08 09:00:00,11878.0
-2016-01-08 10:00:00,11973.0
-2016-01-08 11:00:00,12049.0
-2016-01-08 12:00:00,12108.0
-2016-01-08 13:00:00,12088.0
-2016-01-08 14:00:00,11988.0
-2016-01-08 15:00:00,11972.0
-2016-01-08 16:00:00,11895.0
-2016-01-08 17:00:00,11907.0
-2016-01-08 18:00:00,12391.0
-2016-01-08 19:00:00,12643.0
-2016-01-08 20:00:00,12414.0
-2016-01-08 21:00:00,12100.0
-2016-01-08 22:00:00,11734.0
-2016-01-08 23:00:00,11340.0
-2016-01-09 00:00:00,10626.0
-2016-01-07 01:00:00,10445.0
-2016-01-07 02:00:00,9926.0
-2016-01-07 03:00:00,9664.0
-2016-01-07 04:00:00,9483.0
-2016-01-07 05:00:00,9458.0
-2016-01-07 06:00:00,9704.0
-2016-01-07 07:00:00,10408.0
-2016-01-07 08:00:00,11512.0
-2016-01-07 09:00:00,12081.0
-2016-01-07 10:00:00,12104.0
-2016-01-07 11:00:00,12004.0
-2016-01-07 12:00:00,12008.0
-2016-01-07 13:00:00,12015.0
-2016-01-07 14:00:00,12003.0
-2016-01-07 15:00:00,12073.0
-2016-01-07 16:00:00,11988.0
-2016-01-07 17:00:00,11949.0
-2016-01-07 18:00:00,12405.0
-2016-01-07 19:00:00,12872.0
-2016-01-07 20:00:00,12683.0
-2016-01-07 21:00:00,12450.0
-2016-01-07 22:00:00,12136.0
-2016-01-07 23:00:00,11594.0
-2016-01-08 00:00:00,10802.0
-2016-01-06 01:00:00,10835.0
-2016-01-06 02:00:00,10385.0
-2016-01-06 03:00:00,10108.0
-2016-01-06 04:00:00,9997.0
-2016-01-06 05:00:00,9974.0
-2016-01-06 06:00:00,10261.0
-2016-01-06 07:00:00,10977.0
-2016-01-06 08:00:00,12109.0
-2016-01-06 09:00:00,12590.0
-2016-01-06 10:00:00,12559.0
-2016-01-06 11:00:00,12410.0
-2016-01-06 12:00:00,12388.0
-2016-01-06 13:00:00,12278.0
-2016-01-06 14:00:00,12183.0
-2016-01-06 15:00:00,12220.0
-2016-01-06 16:00:00,12180.0
-2016-01-06 17:00:00,12179.0
-2016-01-06 18:00:00,12647.0
-2016-01-06 19:00:00,13221.0
-2016-01-06 20:00:00,13015.0
-2016-01-06 21:00:00,12775.0
-2016-01-06 22:00:00,12498.0
-2016-01-06 23:00:00,11979.0
-2016-01-07 00:00:00,11209.0
-2016-01-05 01:00:00,10371.0
-2016-01-05 02:00:00,10391.0
-2016-01-05 03:00:00,10158.0
-2016-01-05 04:00:00,10066.0
-2016-01-05 05:00:00,10101.0
-2016-01-05 06:00:00,10395.0
-2016-01-05 07:00:00,11138.0
-2016-01-05 08:00:00,12289.0
-2016-01-05 09:00:00,12796.0
-2016-01-05 10:00:00,12728.0
-2016-01-05 11:00:00,12668.0
-2016-01-05 12:00:00,12579.0
-2016-01-05 13:00:00,12459.0
-2016-01-05 14:00:00,12326.0
-2016-01-05 15:00:00,12298.0
-2016-01-05 16:00:00,12230.0
-2016-01-05 17:00:00,12264.0
-2016-01-05 18:00:00,12841.0
-2016-01-05 19:00:00,13521.0
-2016-01-05 20:00:00,13377.0
-2016-01-05 21:00:00,13214.0
-2016-01-05 22:00:00,12920.0
-2016-01-05 23:00:00,12360.0
-2016-01-06 00:00:00,11573.0
-2016-01-04 01:00:00,10150.0
-2016-01-04 02:00:00,9808.0
-2016-01-04 03:00:00,9625.0
-2016-01-04 04:00:00,9520.0
-2016-01-04 05:00:00,9603.0
-2016-01-04 06:00:00,9953.0
-2016-01-04 07:00:00,10652.0
-2016-01-04 08:00:00,11812.0
-2016-01-04 09:00:00,12346.0
-2016-01-04 10:00:00,12403.0
-2016-01-04 11:00:00,12415.0
-2016-01-04 12:00:00,12480.0
-2016-01-04 13:00:00,12480.0
-2016-01-04 14:00:00,12454.0
-2016-01-04 15:00:00,12437.0
-2016-01-04 16:00:00,12394.0
-2016-01-04 17:00:00,12428.0
-2016-01-04 18:00:00,12990.0
-2016-01-04 19:00:00,13560.0
-2016-01-04 20:00:00,13376.0
-2016-01-04 21:00:00,13155.0
-2016-01-04 22:00:00,12856.0
-2016-01-04 23:00:00,12306.0
-2016-01-05 00:00:00,11534.0
-2016-01-03 01:00:00,10373.0
-2016-01-03 02:00:00,9915.0
-2016-01-03 03:00:00,9638.0
-2016-01-03 04:00:00,9455.0
-2016-01-03 05:00:00,9395.0
-2016-01-03 06:00:00,9401.0
-2016-01-03 07:00:00,9587.0
-2016-01-03 08:00:00,9785.0
-2016-01-03 09:00:00,9910.0
-2016-01-03 10:00:00,10042.0
-2016-01-03 11:00:00,10312.0
-2016-01-03 12:00:00,10445.0
-2016-01-03 13:00:00,10566.0
-2016-01-03 14:00:00,10617.0
-2016-01-03 15:00:00,10667.0
-2016-01-03 16:00:00,10673.0
-2016-01-03 17:00:00,10899.0
-2016-01-03 18:00:00,11562.0
-2016-01-03 19:00:00,12138.0
-2016-01-03 20:00:00,12084.0
-2016-01-03 21:00:00,11982.0
-2016-01-03 22:00:00,11705.0
-2016-01-03 23:00:00,11399.0
-2016-01-04 00:00:00,10704.0
-2016-01-02 01:00:00,10170.0
-2016-01-02 02:00:00,9709.0
-2016-01-02 03:00:00,9464.0
-2016-01-02 04:00:00,9289.0
-2016-01-02 05:00:00,9266.0
-2016-01-02 06:00:00,9316.0
-2016-01-02 07:00:00,9608.0
-2016-01-02 08:00:00,10016.0
-2016-01-02 09:00:00,10228.0
-2016-01-02 10:00:00,10361.0
-2016-01-02 11:00:00,10506.0
-2016-01-02 12:00:00,10518.0
-2016-01-02 13:00:00,10530.0
-2016-01-02 14:00:00,10401.0
-2016-01-02 15:00:00,10247.0
-2016-01-02 16:00:00,10110.0
-2016-01-02 17:00:00,10252.0
-2016-01-02 18:00:00,10916.0
-2016-01-02 19:00:00,11846.0
-2016-01-02 20:00:00,11855.0
-2016-01-02 21:00:00,11718.0
-2016-01-02 22:00:00,11580.0
-2016-01-02 23:00:00,11389.0
-2016-01-03 00:00:00,10871.0
-2016-01-01 01:00:00,10407.0
-2016-01-01 02:00:00,10053.0
-2016-01-01 03:00:00,9791.0
-2016-01-01 04:00:00,9617.0
-2016-01-01 05:00:00,9563.0
-2016-01-01 06:00:00,9598.0
-2016-01-01 07:00:00,9766.0
-2016-01-01 08:00:00,9926.0
-2016-01-01 09:00:00,9903.0
-2016-01-01 10:00:00,9948.0
-2016-01-01 11:00:00,10203.0
-2016-01-01 12:00:00,10437.0
-2016-01-01 13:00:00,10557.0
-2016-01-01 14:00:00,10519.0
-2016-01-01 15:00:00,10446.0
-2016-01-01 16:00:00,10375.0
-2016-01-01 17:00:00,10430.0
-2016-01-01 18:00:00,11150.0
-2016-01-01 19:00:00,11849.0
-2016-01-01 20:00:00,11827.0
-2016-01-01 21:00:00,11678.0
-2016-01-01 22:00:00,11487.0
-2016-01-01 23:00:00,11084.0
-2016-01-02 00:00:00,10838.0
-2017-12-31 01:00:00,12132.0
-2017-12-31 02:00:00,11711.0
-2017-12-31 03:00:00,11405.0
-2017-12-31 04:00:00,11235.0
-2017-12-31 05:00:00,11145.0
-2017-12-31 06:00:00,11192.0
-2017-12-31 07:00:00,11288.0
-2017-12-31 08:00:00,11507.0
-2017-12-31 09:00:00,11554.0
-2017-12-31 10:00:00,11624.0
-2017-12-31 11:00:00,11673.0
-2017-12-31 12:00:00,11787.0
-2017-12-31 13:00:00,11883.0
-2017-12-31 14:00:00,11799.0
-2017-12-31 15:00:00,11704.0
-2017-12-31 16:00:00,11661.0
-2017-12-31 17:00:00,11840.0
-2017-12-31 18:00:00,12581.0
-2017-12-31 19:00:00,13452.0
-2017-12-31 20:00:00,13393.0
-2017-12-31 21:00:00,13192.0
-2017-12-31 22:00:00,13116.0
-2017-12-31 23:00:00,12809.0
-2018-01-01 00:00:00,12563.0
-2017-12-30 01:00:00,11644.0
-2017-12-30 02:00:00,11233.0
-2017-12-30 03:00:00,10947.0
-2017-12-30 04:00:00,10828.0
-2017-12-30 05:00:00,10782.0
-2017-12-30 06:00:00,10917.0
-2017-12-30 07:00:00,11169.0
-2017-12-30 08:00:00,11621.0
-2017-12-30 09:00:00,11832.0
-2017-12-30 10:00:00,12099.0
-2017-12-30 11:00:00,12146.0
-2017-12-30 12:00:00,12280.0
-2017-12-30 13:00:00,12261.0
-2017-12-30 14:00:00,12179.0
-2017-12-30 15:00:00,12059.0
-2017-12-30 16:00:00,11974.0
-2017-12-30 17:00:00,12154.0
-2017-12-30 18:00:00,12878.0
-2017-12-30 19:00:00,13673.0
-2017-12-30 20:00:00,13686.0
-2017-12-30 21:00:00,13632.0
-2017-12-30 22:00:00,13423.0
-2017-12-30 23:00:00,13191.0
-2017-12-31 00:00:00,12684.0
-2017-12-29 01:00:00,12009.0
-2017-12-29 02:00:00,11531.0
-2017-12-29 03:00:00,11222.0
-2017-12-29 04:00:00,11005.0
-2017-12-29 05:00:00,10961.0
-2017-12-29 06:00:00,11130.0
-2017-12-29 07:00:00,11552.0
-2017-12-29 08:00:00,12196.0
-2017-12-29 09:00:00,12542.0
-2017-12-29 10:00:00,12746.0
-2017-12-29 11:00:00,12906.0
-2017-12-29 12:00:00,12991.0
-2017-12-29 13:00:00,13023.0
-2017-12-29 14:00:00,12988.0
-2017-12-29 15:00:00,12999.0
-2017-12-29 16:00:00,12907.0
-2017-12-29 17:00:00,12917.0
-2017-12-29 18:00:00,13437.0
-2017-12-29 19:00:00,13862.0
-2017-12-29 20:00:00,13767.0
-2017-12-29 21:00:00,13572.0
-2017-12-29 22:00:00,13294.0
-2017-12-29 23:00:00,12917.0
-2017-12-30 00:00:00,12340.0
-2017-12-28 01:00:00,12475.0
-2017-12-28 02:00:00,12015.0
-2017-12-28 03:00:00,11751.0
-2017-12-28 04:00:00,11595.0
-2017-12-28 05:00:00,11578.0
-2017-12-28 06:00:00,11714.0
-2017-12-28 07:00:00,12108.0
-2017-12-28 08:00:00,12758.0
-2017-12-28 09:00:00,13145.0
-2017-12-28 10:00:00,13379.0
-2017-12-28 11:00:00,13386.0
-2017-12-28 12:00:00,13529.0
-2017-12-28 13:00:00,13608.0
-2017-12-28 14:00:00,13445.0
-2017-12-28 15:00:00,13504.0
-2017-12-28 16:00:00,13432.0
-2017-12-28 17:00:00,13409.0
-2017-12-28 18:00:00,13992.0
-2017-12-28 19:00:00,14435.0
-2017-12-28 20:00:00,14245.0
-2017-12-28 21:00:00,14055.0
-2017-12-28 22:00:00,13782.0
-2017-12-28 23:00:00,13353.0
-2017-12-29 00:00:00,12638.0
-2017-12-27 01:00:00,12171.0
-2017-12-27 02:00:00,11767.0
-2017-12-27 03:00:00,11473.0
-2017-12-27 04:00:00,11415.0
-2017-12-27 05:00:00,11408.0
-2017-12-27 06:00:00,11636.0
-2017-12-27 07:00:00,12163.0
-2017-12-27 08:00:00,12914.0
-2017-12-27 09:00:00,13317.0
-2017-12-27 10:00:00,13496.0
-2017-12-27 11:00:00,13574.0
-2017-12-27 12:00:00,13624.0
-2017-12-27 13:00:00,13540.0
-2017-12-27 14:00:00,13420.0
-2017-12-27 15:00:00,13354.0
-2017-12-27 16:00:00,13261.0
-2017-12-27 17:00:00,13315.0
-2017-12-27 18:00:00,14028.0
-2017-12-27 19:00:00,14694.0
-2017-12-27 20:00:00,14610.0
-2017-12-27 21:00:00,14446.0
-2017-12-27 22:00:00,14214.0
-2017-12-27 23:00:00,13757.0
-2017-12-28 00:00:00,13105.0
-2017-12-26 01:00:00,11091.0
-2017-12-26 02:00:00,10798.0
-2017-12-26 03:00:00,10642.0
-2017-12-26 04:00:00,10577.0
-2017-12-26 05:00:00,10587.0
-2017-12-26 06:00:00,10807.0
-2017-12-26 07:00:00,11283.0
-2017-12-26 08:00:00,11949.0
-2017-12-26 09:00:00,12326.0
-2017-12-26 10:00:00,12602.0
-2017-12-26 11:00:00,12788.0
-2017-12-26 12:00:00,12888.0
-2017-12-26 13:00:00,12869.0
-2017-12-26 14:00:00,12787.0
-2017-12-26 15:00:00,12726.0
-2017-12-26 16:00:00,12653.0
-2017-12-26 17:00:00,12708.0
-2017-12-26 18:00:00,13459.0
-2017-12-26 19:00:00,14251.0
-2017-12-26 20:00:00,14183.0
-2017-12-26 21:00:00,14019.0
-2017-12-26 22:00:00,13813.0
-2017-12-26 23:00:00,13438.0
-2017-12-27 00:00:00,12814.0
-2017-12-25 01:00:00,10596.0
-2017-12-25 02:00:00,10223.0
-2017-12-25 03:00:00,10004.0
-2017-12-25 04:00:00,9801.0
-2017-12-25 05:00:00,9754.0
-2017-12-25 06:00:00,9853.0
-2017-12-25 07:00:00,10060.0
-2017-12-25 08:00:00,10354.0
-2017-12-25 09:00:00,10412.0
-2017-12-25 10:00:00,10512.0
-2017-12-25 11:00:00,10577.0
-2017-12-25 12:00:00,10585.0
-2017-12-25 13:00:00,10601.0
-2017-12-25 14:00:00,10572.0
-2017-12-25 15:00:00,10571.0
-2017-12-25 16:00:00,10629.0
-2017-12-25 17:00:00,10830.0
-2017-12-25 18:00:00,11444.0
-2017-12-25 19:00:00,12013.0
-2017-12-25 20:00:00,11977.0
-2017-12-25 21:00:00,11983.0
-2017-12-25 22:00:00,11960.0
-2017-12-25 23:00:00,11847.0
-2017-12-26 00:00:00,11525.0
-2017-12-24 01:00:00,10490.0
-2017-12-24 02:00:00,9971.0
-2017-12-24 03:00:00,9723.0
-2017-12-24 04:00:00,9501.0
-2017-12-24 05:00:00,9451.0
-2017-12-24 06:00:00,9412.0
-2017-12-24 07:00:00,9561.0
-2017-12-24 08:00:00,9798.0
-2017-12-24 09:00:00,10060.0
-2017-12-24 10:00:00,10358.0
-2017-12-24 11:00:00,10616.0
-2017-12-24 12:00:00,10807.0
-2017-12-24 13:00:00,10834.0
-2017-12-24 14:00:00,10814.0
-2017-12-24 15:00:00,10816.0
-2017-12-24 16:00:00,10809.0
-2017-12-24 17:00:00,10870.0
-2017-12-24 18:00:00,11460.0
-2017-12-24 19:00:00,11871.0
-2017-12-24 20:00:00,11744.0
-2017-12-24 21:00:00,11608.0
-2017-12-24 22:00:00,11479.0
-2017-12-24 23:00:00,11375.0
-2017-12-25 00:00:00,10975.0
-2017-12-23 01:00:00,10222.0
-2017-12-23 02:00:00,9755.0
-2017-12-23 03:00:00,9402.0
-2017-12-23 04:00:00,9193.0
-2017-12-23 05:00:00,9112.0
-2017-12-23 06:00:00,9222.0
-2017-12-23 07:00:00,9515.0
-2017-12-23 08:00:00,9934.0
-2017-12-23 09:00:00,10247.0
-2017-12-23 10:00:00,10369.0
-2017-12-23 11:00:00,10443.0
-2017-12-23 12:00:00,10463.0
-2017-12-23 13:00:00,10452.0
-2017-12-23 14:00:00,10395.0
-2017-12-23 15:00:00,10294.0
-2017-12-23 16:00:00,10190.0
-2017-12-23 17:00:00,10329.0
-2017-12-23 18:00:00,11112.0
-2017-12-23 19:00:00,11785.0
-2017-12-23 20:00:00,11813.0
-2017-12-23 21:00:00,11764.0
-2017-12-23 22:00:00,11675.0
-2017-12-23 23:00:00,11453.0
-2017-12-24 00:00:00,10993.0
-2017-12-22 01:00:00,10307.0
-2017-12-22 02:00:00,9758.0
-2017-12-22 03:00:00,9428.0
-2017-12-22 04:00:00,9224.0
-2017-12-22 05:00:00,9201.0
-2017-12-22 06:00:00,9416.0
-2017-12-22 07:00:00,9980.0
-2017-12-22 08:00:00,10890.0
-2017-12-22 09:00:00,11440.0
-2017-12-22 10:00:00,11536.0
-2017-12-22 11:00:00,11595.0
-2017-12-22 12:00:00,11642.0
-2017-12-22 13:00:00,11630.0
-2017-12-22 14:00:00,11554.0
-2017-12-22 15:00:00,11536.0
-2017-12-22 16:00:00,11504.0
-2017-12-22 17:00:00,11595.0
-2017-12-22 18:00:00,12210.0
-2017-12-22 19:00:00,12504.0
-2017-12-22 20:00:00,12271.0
-2017-12-22 21:00:00,12032.0
-2017-12-22 22:00:00,11779.0
-2017-12-22 23:00:00,11457.0
-2017-12-23 00:00:00,10860.0
-2017-12-21 01:00:00,10574.0
-2017-12-21 02:00:00,10046.0
-2017-12-21 03:00:00,9702.0
-2017-12-21 04:00:00,9554.0
-2017-12-21 05:00:00,9541.0
-2017-12-21 06:00:00,9774.0
-2017-12-21 07:00:00,10472.0
-2017-12-21 08:00:00,11496.0
-2017-12-21 09:00:00,12092.0
-2017-12-21 10:00:00,12161.0
-2017-12-21 11:00:00,12178.0
-2017-12-21 12:00:00,12171.0
-2017-12-21 13:00:00,12076.0
-2017-12-21 14:00:00,12054.0
-2017-12-21 15:00:00,12101.0
-2017-12-21 16:00:00,12081.0
-2017-12-21 17:00:00,12090.0
-2017-12-21 18:00:00,12740.0
-2017-12-21 19:00:00,12990.0
-2017-12-21 20:00:00,12766.0
-2017-12-21 21:00:00,12548.0
-2017-12-21 22:00:00,12306.0
-2017-12-21 23:00:00,11829.0
-2017-12-22 00:00:00,11069.0
-2017-12-20 01:00:00,10256.0
-2017-12-20 02:00:00,9757.0
-2017-12-20 03:00:00,9468.0
-2017-12-20 04:00:00,9338.0
-2017-12-20 05:00:00,9362.0
-2017-12-20 06:00:00,9644.0
-2017-12-20 07:00:00,10387.0
-2017-12-20 08:00:00,11491.0
-2017-12-20 09:00:00,11991.0
-2017-12-20 10:00:00,12028.0
-2017-12-20 11:00:00,12008.0
-2017-12-20 12:00:00,11978.0
-2017-12-20 13:00:00,11882.0
-2017-12-20 14:00:00,11820.0
-2017-12-20 15:00:00,11851.0
-2017-12-20 16:00:00,11884.0
-2017-12-20 17:00:00,11995.0
-2017-12-20 18:00:00,12708.0
-2017-12-20 19:00:00,13266.0
-2017-12-20 20:00:00,13121.0
-2017-12-20 21:00:00,12935.0
-2017-12-20 22:00:00,12641.0
-2017-12-20 23:00:00,12171.0
-2017-12-21 00:00:00,11373.0
-2017-12-19 01:00:00,10256.0
-2017-12-19 02:00:00,9694.0
-2017-12-19 03:00:00,9389.0
-2017-12-19 04:00:00,9229.0
-2017-12-19 05:00:00,9220.0
-2017-12-19 06:00:00,9502.0
-2017-12-19 07:00:00,10205.0
-2017-12-19 08:00:00,11264.0
-2017-12-19 09:00:00,11732.0
-2017-12-19 10:00:00,11784.0
-2017-12-19 11:00:00,11745.0
-2017-12-19 12:00:00,11659.0
-2017-12-19 13:00:00,11506.0
-2017-12-19 14:00:00,11354.0
-2017-12-19 15:00:00,11333.0
-2017-12-19 16:00:00,11230.0
-2017-12-19 17:00:00,11294.0
-2017-12-19 18:00:00,12044.0
-2017-12-19 19:00:00,12606.0
-2017-12-19 20:00:00,12489.0
-2017-12-19 21:00:00,12350.0
-2017-12-19 22:00:00,12140.0
-2017-12-19 23:00:00,11698.0
-2017-12-20 00:00:00,10984.0
-2017-12-18 01:00:00,9560.0
-2017-12-18 02:00:00,9159.0
-2017-12-18 03:00:00,8890.0
-2017-12-18 04:00:00,8822.0
-2017-12-18 05:00:00,8828.0
-2017-12-18 06:00:00,9148.0
-2017-12-18 07:00:00,9887.0
-2017-12-18 08:00:00,10995.0
-2017-12-18 09:00:00,11710.0
-2017-12-18 10:00:00,11852.0
-2017-12-18 11:00:00,11843.0
-2017-12-18 12:00:00,11899.0
-2017-12-18 13:00:00,11851.0
-2017-12-18 14:00:00,11716.0
-2017-12-18 15:00:00,11578.0
-2017-12-18 16:00:00,11474.0
-2017-12-18 17:00:00,11460.0
-2017-12-18 18:00:00,12157.0
-2017-12-18 19:00:00,12798.0
-2017-12-18 20:00:00,12710.0
-2017-12-18 21:00:00,12567.0
-2017-12-18 22:00:00,12308.0
-2017-12-18 23:00:00,11800.0
-2017-12-19 00:00:00,11013.0
-2017-12-17 01:00:00,9964.0
-2017-12-17 02:00:00,9528.0
-2017-12-17 03:00:00,9198.0
-2017-12-17 04:00:00,9002.0
-2017-12-17 05:00:00,8914.0
-2017-12-17 06:00:00,8948.0
-2017-12-17 07:00:00,9094.0
-2017-12-17 08:00:00,9385.0
-2017-12-17 09:00:00,9559.0
-2017-12-17 10:00:00,9815.0
-2017-12-17 11:00:00,10005.0
-2017-12-17 12:00:00,10202.0
-2017-12-17 13:00:00,10148.0
-2017-12-17 14:00:00,10080.0
-2017-12-17 15:00:00,9943.0
-2017-12-17 16:00:00,9960.0
-2017-12-17 17:00:00,10130.0
-2017-12-17 18:00:00,10851.0
-2017-12-17 19:00:00,11362.0
-2017-12-17 20:00:00,11366.0
-2017-12-17 21:00:00,11330.0
-2017-12-17 22:00:00,11126.0
-2017-12-17 23:00:00,10746.0
-2017-12-18 00:00:00,10161.0
-2017-12-16 01:00:00,10781.0
-2017-12-16 02:00:00,10210.0
-2017-12-16 03:00:00,9863.0
-2017-12-16 04:00:00,9562.0
-2017-12-16 05:00:00,9453.0
-2017-12-16 06:00:00,9580.0
-2017-12-16 07:00:00,9867.0
-2017-12-16 08:00:00,10281.0
-2017-12-16 09:00:00,10562.0
-2017-12-16 10:00:00,10764.0
-2017-12-16 11:00:00,10765.0
-2017-12-16 12:00:00,10718.0
-2017-12-16 13:00:00,10507.0
-2017-12-16 14:00:00,10343.0
-2017-12-16 15:00:00,10070.0
-2017-12-16 16:00:00,9937.0
-2017-12-16 17:00:00,9983.0
-2017-12-16 18:00:00,10734.0
-2017-12-16 19:00:00,11433.0
-2017-12-16 20:00:00,11431.0
-2017-12-16 21:00:00,11369.0
-2017-12-16 22:00:00,11192.0
-2017-12-16 23:00:00,10970.0
-2017-12-17 00:00:00,10500.0
-2017-12-15 01:00:00,11220.0
-2017-12-15 02:00:00,10720.0
-2017-12-15 03:00:00,10425.0
-2017-12-15 04:00:00,10253.0
-2017-12-15 05:00:00,10249.0
-2017-12-15 06:00:00,10519.0
-2017-12-15 07:00:00,11208.0
-2017-12-15 08:00:00,12226.0
-2017-12-15 09:00:00,12856.0
-2017-12-15 10:00:00,12944.0
-2017-12-15 11:00:00,12929.0
-2017-12-15 12:00:00,12840.0
-2017-12-15 13:00:00,12598.0
-2017-12-15 14:00:00,12557.0
-2017-12-15 15:00:00,12522.0
-2017-12-15 16:00:00,12515.0
-2017-12-15 17:00:00,12568.0
-2017-12-15 18:00:00,13145.0
-2017-12-15 19:00:00,13379.0
-2017-12-15 20:00:00,13120.0
-2017-12-15 21:00:00,12886.0
-2017-12-15 22:00:00,12569.0
-2017-12-15 23:00:00,12197.0
-2017-12-16 00:00:00,11462.0
-2017-12-14 01:00:00,11014.0
-2017-12-14 02:00:00,10516.0
-2017-12-14 03:00:00,10245.0
-2017-12-14 04:00:00,10166.0
-2017-12-14 05:00:00,10194.0
-2017-12-14 06:00:00,10555.0
-2017-12-14 07:00:00,11281.0
-2017-12-14 08:00:00,12388.0
-2017-12-14 09:00:00,12902.0
-2017-12-14 10:00:00,12906.0
-2017-12-14 11:00:00,12860.0
-2017-12-14 12:00:00,12751.0
-2017-12-14 13:00:00,12571.0
-2017-12-14 14:00:00,12437.0
-2017-12-14 15:00:00,12438.0
-2017-12-14 16:00:00,12371.0
-2017-12-14 17:00:00,12503.0
-2017-12-14 18:00:00,13261.0
-2017-12-14 19:00:00,13746.0
-2017-12-14 20:00:00,13613.0
-2017-12-14 21:00:00,13442.0
-2017-12-14 22:00:00,13205.0
-2017-12-14 23:00:00,12758.0
-2017-12-15 00:00:00,11976.0
-2017-12-13 01:00:00,11335.0
-2017-12-13 02:00:00,10825.0
-2017-12-13 03:00:00,10522.0
-2017-12-13 04:00:00,10385.0
-2017-12-13 05:00:00,10371.0
-2017-12-13 06:00:00,10634.0
-2017-12-13 07:00:00,11335.0
-2017-12-13 08:00:00,12414.0
-2017-12-13 09:00:00,13003.0
-2017-12-13 10:00:00,13033.0
-2017-12-13 11:00:00,13017.0
-2017-12-13 12:00:00,12981.0
-2017-12-13 13:00:00,12851.0
-2017-12-13 14:00:00,12725.0
-2017-12-13 15:00:00,12639.0
-2017-12-13 16:00:00,12634.0
-2017-12-13 17:00:00,12819.0
-2017-12-13 18:00:00,13490.0
-2017-12-13 19:00:00,13803.0
-2017-12-13 20:00:00,13684.0
-2017-12-13 21:00:00,13529.0
-2017-12-13 22:00:00,13219.0
-2017-12-13 23:00:00,12681.0
-2017-12-14 00:00:00,11784.0
-2017-12-12 01:00:00,10817.0
-2017-12-12 02:00:00,10350.0
-2017-12-12 03:00:00,10173.0
-2017-12-12 04:00:00,10085.0
-2017-12-12 05:00:00,10169.0
-2017-12-12 06:00:00,10532.0
-2017-12-12 07:00:00,11338.0
-2017-12-12 08:00:00,12505.0
-2017-12-12 09:00:00,12924.0
-2017-12-12 10:00:00,12899.0
-2017-12-12 11:00:00,12864.0
-2017-12-12 12:00:00,12837.0
-2017-12-12 13:00:00,12724.0
-2017-12-12 14:00:00,12676.0
-2017-12-12 15:00:00,12645.0
-2017-12-12 16:00:00,12553.0
-2017-12-12 17:00:00,12750.0
-2017-12-12 18:00:00,13505.0
-2017-12-12 19:00:00,14111.0
-2017-12-12 20:00:00,13984.0
-2017-12-12 21:00:00,13803.0
-2017-12-12 22:00:00,13510.0
-2017-12-12 23:00:00,12952.0
-2017-12-13 00:00:00,12158.0
-2017-12-11 01:00:00,10198.0
-2017-12-11 02:00:00,9913.0
-2017-12-11 03:00:00,9694.0
-2017-12-11 04:00:00,9612.0
-2017-12-11 05:00:00,9693.0
-2017-12-11 06:00:00,10055.0
-2017-12-11 07:00:00,10824.0
-2017-12-11 08:00:00,12013.0
-2017-12-11 09:00:00,12536.0
-2017-12-11 10:00:00,12660.0
-2017-12-11 11:00:00,12627.0
-2017-12-11 12:00:00,12677.0
-2017-12-11 13:00:00,12664.0
-2017-12-11 14:00:00,12546.0
-2017-12-11 15:00:00,12450.0
-2017-12-11 16:00:00,12430.0
-2017-12-11 17:00:00,12465.0
-2017-12-11 18:00:00,13140.0
-2017-12-11 19:00:00,13568.0
-2017-12-11 20:00:00,13481.0
-2017-12-11 21:00:00,13267.0
-2017-12-11 22:00:00,13018.0
-2017-12-11 23:00:00,12546.0
-2017-12-12 00:00:00,11708.0
-2017-12-10 01:00:00,10717.0
-2017-12-10 02:00:00,10315.0
-2017-12-10 03:00:00,10020.0
-2017-12-10 04:00:00,9844.0
-2017-12-10 05:00:00,9710.0
-2017-12-10 06:00:00,9784.0
-2017-12-10 07:00:00,9935.0
-2017-12-10 08:00:00,10224.0
-2017-12-10 09:00:00,10271.0
-2017-12-10 10:00:00,10454.0
-2017-12-10 11:00:00,10426.0
-2017-12-10 12:00:00,10513.0
-2017-12-10 13:00:00,10462.0
-2017-12-10 14:00:00,10417.0
-2017-12-10 15:00:00,10408.0
-2017-12-10 16:00:00,10580.0
-2017-12-10 17:00:00,10723.0
-2017-12-10 18:00:00,11472.0
-2017-12-10 19:00:00,12017.0
-2017-12-10 20:00:00,12048.0
-2017-12-10 21:00:00,11998.0
-2017-12-10 22:00:00,11779.0
-2017-12-10 23:00:00,11388.0
-2017-12-11 00:00:00,10755.0
-2017-12-09 01:00:00,10743.0
-2017-12-09 02:00:00,10286.0
-2017-12-09 03:00:00,9943.0
-2017-12-09 04:00:00,9818.0
-2017-12-09 05:00:00,9668.0
-2017-12-09 06:00:00,9772.0
-2017-12-09 07:00:00,10058.0
-2017-12-09 08:00:00,10573.0
-2017-12-09 09:00:00,10873.0
-2017-12-09 10:00:00,11247.0
-2017-12-09 11:00:00,11520.0
-2017-12-09 12:00:00,11559.0
-2017-12-09 13:00:00,11575.0
-2017-12-09 14:00:00,11421.0
-2017-12-09 15:00:00,11304.0
-2017-12-09 16:00:00,11276.0
-2017-12-09 17:00:00,11313.0
-2017-12-09 18:00:00,11985.0
-2017-12-09 19:00:00,12422.0
-2017-12-09 20:00:00,12387.0
-2017-12-09 21:00:00,12232.0
-2017-12-09 22:00:00,12086.0
-2017-12-09 23:00:00,11806.0
-2017-12-10 00:00:00,11290.0
-2017-12-08 01:00:00,11183.0
-2017-12-08 02:00:00,10721.0
-2017-12-08 03:00:00,10445.0
-2017-12-08 04:00:00,10318.0
-2017-12-08 05:00:00,10338.0
-2017-12-08 06:00:00,10635.0
-2017-12-08 07:00:00,11294.0
-2017-12-08 08:00:00,12364.0
-2017-12-08 09:00:00,12763.0
-2017-12-08 10:00:00,12737.0
-2017-12-08 11:00:00,12603.0
-2017-12-08 12:00:00,12549.0
-2017-12-08 13:00:00,12369.0
-2017-12-08 14:00:00,12201.0
-2017-12-08 15:00:00,12042.0
-2017-12-08 16:00:00,11897.0
-2017-12-08 17:00:00,11878.0
-2017-12-08 18:00:00,12631.0
-2017-12-08 19:00:00,13191.0
-2017-12-08 20:00:00,13077.0
-2017-12-08 21:00:00,12885.0
-2017-12-08 22:00:00,12642.0
-2017-12-08 23:00:00,12224.0
-2017-12-09 00:00:00,11452.0
-2017-12-07 01:00:00,10738.0
-2017-12-07 02:00:00,10229.0
-2017-12-07 03:00:00,10016.0
-2017-12-07 04:00:00,9906.0
-2017-12-07 05:00:00,9975.0
-2017-12-07 06:00:00,10263.0
-2017-12-07 07:00:00,11025.0
-2017-12-07 08:00:00,12125.0
-2017-12-07 09:00:00,12571.0
-2017-12-07 10:00:00,12700.0
-2017-12-07 11:00:00,12831.0
-2017-12-07 12:00:00,12901.0
-2017-12-07 13:00:00,12734.0
-2017-12-07 14:00:00,12504.0
-2017-12-07 15:00:00,12404.0
-2017-12-07 16:00:00,12315.0
-2017-12-07 17:00:00,12328.0
-2017-12-07 18:00:00,13078.0
-2017-12-07 19:00:00,13645.0
-2017-12-07 20:00:00,13534.0
-2017-12-07 21:00:00,13382.0
-2017-12-07 22:00:00,13157.0
-2017-12-07 23:00:00,12678.0
-2017-12-08 00:00:00,11910.0
-2017-12-06 01:00:00,10651.0
-2017-12-06 02:00:00,10153.0
-2017-12-06 03:00:00,9888.0
-2017-12-06 04:00:00,9732.0
-2017-12-06 05:00:00,9708.0
-2017-12-06 06:00:00,9897.0
-2017-12-06 07:00:00,10629.0
-2017-12-06 08:00:00,11726.0
-2017-12-06 09:00:00,12152.0
-2017-12-06 10:00:00,12150.0
-2017-12-06 11:00:00,12146.0
-2017-12-06 12:00:00,12186.0
-2017-12-06 13:00:00,12131.0
-2017-12-06 14:00:00,12023.0
-2017-12-06 15:00:00,12006.0
-2017-12-06 16:00:00,11901.0
-2017-12-06 17:00:00,11980.0
-2017-12-06 18:00:00,12722.0
-2017-12-06 19:00:00,13306.0
-2017-12-06 20:00:00,13194.0
-2017-12-06 21:00:00,13021.0
-2017-12-06 22:00:00,12786.0
-2017-12-06 23:00:00,12265.0
-2017-12-07 00:00:00,11471.0
-2017-12-05 01:00:00,9390.0
-2017-12-05 02:00:00,8990.0
-2017-12-05 03:00:00,8802.0
-2017-12-05 04:00:00,8765.0
-2017-12-05 05:00:00,8823.0
-2017-12-05 06:00:00,9121.0
-2017-12-05 07:00:00,9935.0
-2017-12-05 08:00:00,11133.0
-2017-12-05 09:00:00,11727.0
-2017-12-05 10:00:00,11890.0
-2017-12-05 11:00:00,11944.0
-2017-12-05 12:00:00,11990.0
-2017-12-05 13:00:00,11983.0
-2017-12-05 14:00:00,11968.0
-2017-12-05 15:00:00,12035.0
-2017-12-05 16:00:00,12000.0
-2017-12-05 17:00:00,12019.0
-2017-12-05 18:00:00,12739.0
-2017-12-05 19:00:00,13296.0
-2017-12-05 20:00:00,13093.0
-2017-12-05 21:00:00,12911.0
-2017-12-05 22:00:00,12649.0
-2017-12-05 23:00:00,12127.0
-2017-12-06 00:00:00,11388.0
-2017-12-04 01:00:00,8993.0
-2017-12-04 02:00:00,8583.0
-2017-12-04 03:00:00,8358.0
-2017-12-04 04:00:00,8286.0
-2017-12-04 05:00:00,8296.0
-2017-12-04 06:00:00,8623.0
-2017-12-04 07:00:00,9336.0
-2017-12-04 08:00:00,10468.0
-2017-12-04 09:00:00,10989.0
-2017-12-04 10:00:00,11092.0
-2017-12-04 11:00:00,11145.0
-2017-12-04 12:00:00,11206.0
-2017-12-04 13:00:00,11158.0
-2017-12-04 14:00:00,11132.0
-2017-12-04 15:00:00,11136.0
-2017-12-04 16:00:00,11111.0
-2017-12-04 17:00:00,11158.0
-2017-12-04 18:00:00,11787.0
-2017-12-04 19:00:00,12084.0
-2017-12-04 20:00:00,11910.0
-2017-12-04 21:00:00,11704.0
-2017-12-04 22:00:00,11394.0
-2017-12-04 23:00:00,10855.0
-2017-12-05 00:00:00,10058.0
-2017-12-03 01:00:00,9285.0
-2017-12-03 02:00:00,8917.0
-2017-12-03 03:00:00,8636.0
-2017-12-03 04:00:00,8530.0
-2017-12-03 05:00:00,8457.0
-2017-12-03 06:00:00,8542.0
-2017-12-03 07:00:00,8728.0
-2017-12-03 08:00:00,9010.0
-2017-12-03 09:00:00,9024.0
-2017-12-03 10:00:00,9168.0
-2017-12-03 11:00:00,9199.0
-2017-12-03 12:00:00,9224.0
-2017-12-03 13:00:00,9211.0
-2017-12-03 14:00:00,9151.0
-2017-12-03 15:00:00,9121.0
-2017-12-03 16:00:00,9054.0
-2017-12-03 17:00:00,9189.0
-2017-12-03 18:00:00,9973.0
-2017-12-03 19:00:00,10603.0
-2017-12-03 20:00:00,10662.0
-2017-12-03 21:00:00,10619.0
-2017-12-03 22:00:00,10441.0
-2017-12-03 23:00:00,10050.0
-2017-12-04 00:00:00,9543.0
-2017-12-02 01:00:00,9816.0
-2017-12-02 02:00:00,9383.0
-2017-12-02 03:00:00,9051.0
-2017-12-02 04:00:00,8891.0
-2017-12-02 05:00:00,8785.0
-2017-12-02 06:00:00,8858.0
-2017-12-02 07:00:00,9132.0
-2017-12-02 08:00:00,9655.0
-2017-12-02 09:00:00,9794.0
-2017-12-02 10:00:00,10021.0
-2017-12-02 11:00:00,9995.0
-2017-12-02 12:00:00,9982.0
-2017-12-02 13:00:00,9886.0
-2017-12-02 14:00:00,9749.0
-2017-12-02 15:00:00,9584.0
-2017-12-02 16:00:00,9436.0
-2017-12-02 17:00:00,9512.0
-2017-12-02 18:00:00,10153.0
-2017-12-02 19:00:00,10718.0
-2017-12-02 20:00:00,10646.0
-2017-12-02 21:00:00,10578.0
-2017-12-02 22:00:00,10440.0
-2017-12-02 23:00:00,10210.0
-2017-12-03 00:00:00,9814.0
-2017-12-01 01:00:00,9791.0
-2017-12-01 02:00:00,9385.0
-2017-12-01 03:00:00,9100.0
-2017-12-01 04:00:00,9005.0
-2017-12-01 05:00:00,9036.0
-2017-12-01 06:00:00,9328.0
-2017-12-01 07:00:00,10042.0
-2017-12-01 08:00:00,11134.0
-2017-12-01 09:00:00,11521.0
-2017-12-01 10:00:00,11524.0
-2017-12-01 11:00:00,11404.0
-2017-12-01 12:00:00,11312.0
-2017-12-01 13:00:00,11195.0
-2017-12-01 14:00:00,11075.0
-2017-12-01 15:00:00,11032.0
-2017-12-01 16:00:00,10908.0
-2017-12-01 17:00:00,10848.0
-2017-12-01 18:00:00,11465.0
-2017-12-01 19:00:00,11953.0
-2017-12-01 20:00:00,11823.0
-2017-12-01 21:00:00,11655.0
-2017-12-01 22:00:00,11457.0
-2017-12-01 23:00:00,11119.0
-2017-12-02 00:00:00,10491.0
-2017-11-30 01:00:00,9701.0
-2017-11-30 02:00:00,9205.0
-2017-11-30 03:00:00,8909.0
-2017-11-30 04:00:00,8799.0
-2017-11-30 05:00:00,8745.0
-2017-11-30 06:00:00,9015.0
-2017-11-30 07:00:00,9767.0
-2017-11-30 08:00:00,10842.0
-2017-11-30 09:00:00,11342.0
-2017-11-30 10:00:00,11368.0
-2017-11-30 11:00:00,11333.0
-2017-11-30 12:00:00,11339.0
-2017-11-30 13:00:00,11243.0
-2017-11-30 14:00:00,11171.0
-2017-11-30 15:00:00,11174.0
-2017-11-30 16:00:00,11054.0
-2017-11-30 17:00:00,11035.0
-2017-11-30 18:00:00,11570.0
-2017-11-30 19:00:00,12100.0
-2017-11-30 20:00:00,11966.0
-2017-11-30 21:00:00,11838.0
-2017-11-30 22:00:00,11629.0
-2017-11-30 23:00:00,11139.0
-2017-12-01 00:00:00,10447.0
-2017-11-29 01:00:00,9541.0
-2017-11-29 02:00:00,9112.0
-2017-11-29 03:00:00,8905.0
-2017-11-29 04:00:00,8805.0
-2017-11-29 05:00:00,8812.0
-2017-11-29 06:00:00,9100.0
-2017-11-29 07:00:00,9912.0
-2017-11-29 08:00:00,10988.0
-2017-11-29 09:00:00,11412.0
-2017-11-29 10:00:00,11424.0
-2017-11-29 11:00:00,11395.0
-2017-11-29 12:00:00,11442.0
-2017-11-29 13:00:00,11332.0
-2017-11-29 14:00:00,11268.0
-2017-11-29 15:00:00,11302.0
-2017-11-29 16:00:00,11164.0
-2017-11-29 17:00:00,11173.0
-2017-11-29 18:00:00,11797.0
-2017-11-29 19:00:00,12318.0
-2017-11-29 20:00:00,12171.0
-2017-11-29 21:00:00,11998.0
-2017-11-29 22:00:00,11681.0
-2017-11-29 23:00:00,11148.0
-2017-11-30 00:00:00,10391.0
-2017-11-28 01:00:00,9554.0
-2017-11-28 02:00:00,9113.0
-2017-11-28 03:00:00,8804.0
-2017-11-28 04:00:00,8641.0
-2017-11-28 05:00:00,8621.0
-2017-11-28 06:00:00,8843.0
-2017-11-28 07:00:00,9542.0
-2017-11-28 08:00:00,10617.0
-2017-11-28 09:00:00,11035.0
-2017-11-28 10:00:00,11271.0
-2017-11-28 11:00:00,11353.0
-2017-11-28 12:00:00,11337.0
-2017-11-28 13:00:00,11314.0
-2017-11-28 14:00:00,11275.0
-2017-11-28 15:00:00,11321.0
-2017-11-28 16:00:00,11253.0
-2017-11-28 17:00:00,11350.0
-2017-11-28 18:00:00,11887.0
-2017-11-28 19:00:00,12054.0
-2017-11-28 20:00:00,11847.0
-2017-11-28 21:00:00,11642.0
-2017-11-28 22:00:00,11418.0
-2017-11-28 23:00:00,10888.0
-2017-11-29 00:00:00,10184.0
-2017-11-27 01:00:00,8900.0
-2017-11-27 02:00:00,8666.0
-2017-11-27 03:00:00,8535.0
-2017-11-27 04:00:00,8470.0
-2017-11-27 05:00:00,8574.0
-2017-11-27 06:00:00,8922.0
-2017-11-27 07:00:00,9741.0
-2017-11-27 08:00:00,10884.0
-2017-11-27 09:00:00,11338.0
-2017-11-27 10:00:00,11359.0
-2017-11-27 11:00:00,11255.0
-2017-11-27 12:00:00,11258.0
-2017-11-27 13:00:00,11167.0
-2017-11-27 14:00:00,11076.0
-2017-11-27 15:00:00,11100.0
-2017-11-27 16:00:00,11069.0
-2017-11-27 17:00:00,11067.0
-2017-11-27 18:00:00,11661.0
-2017-11-27 19:00:00,12097.0
-2017-11-27 20:00:00,11943.0
-2017-11-27 21:00:00,11757.0
-2017-11-27 22:00:00,11497.0
-2017-11-27 23:00:00,10962.0
-2017-11-28 00:00:00,10247.0
-2017-11-26 01:00:00,9130.0
-2017-11-26 02:00:00,8832.0
-2017-11-26 03:00:00,8631.0
-2017-11-26 04:00:00,8510.0
-2017-11-26 05:00:00,8478.0
-2017-11-26 06:00:00,8576.0
-2017-11-26 07:00:00,8738.0
-2017-11-26 08:00:00,9045.0
-2017-11-26 09:00:00,9070.0
-2017-11-26 10:00:00,9156.0
-2017-11-26 11:00:00,9278.0
-2017-11-26 12:00:00,9318.0
-2017-11-26 13:00:00,9329.0
-2017-11-26 14:00:00,9269.0
-2017-11-26 15:00:00,9154.0
-2017-11-26 16:00:00,9089.0
-2017-11-26 17:00:00,9229.0
-2017-11-26 18:00:00,9900.0
-2017-11-26 19:00:00,10605.0
-2017-11-26 20:00:00,10596.0
-2017-11-26 21:00:00,10458.0
-2017-11-26 22:00:00,10265.0
-2017-11-26 23:00:00,9891.0
-2017-11-27 00:00:00,9378.0
-2017-11-25 01:00:00,8733.0
-2017-11-25 02:00:00,8310.0
-2017-11-25 03:00:00,8076.0
-2017-11-25 04:00:00,7940.0
-2017-11-25 05:00:00,7910.0
-2017-11-25 06:00:00,8045.0
-2017-11-25 07:00:00,8327.0
-2017-11-25 08:00:00,8737.0
-2017-11-25 09:00:00,8913.0
-2017-11-25 10:00:00,9185.0
-2017-11-25 11:00:00,9370.0
-2017-11-25 12:00:00,9453.0
-2017-11-25 13:00:00,9444.0
-2017-11-25 14:00:00,9387.0
-2017-11-25 15:00:00,9226.0
-2017-11-25 16:00:00,9119.0
-2017-11-25 17:00:00,9211.0
-2017-11-25 18:00:00,9765.0
-2017-11-25 19:00:00,10334.0
-2017-11-25 20:00:00,10377.0
-2017-11-25 21:00:00,10279.0
-2017-11-25 22:00:00,10190.0
-2017-11-25 23:00:00,9960.0
-2017-11-26 00:00:00,9594.0
-2017-11-24 01:00:00,8860.0
-2017-11-24 02:00:00,8644.0
-2017-11-24 03:00:00,8477.0
-2017-11-24 04:00:00,8397.0
-2017-11-24 05:00:00,8405.0
-2017-11-24 06:00:00,8567.0
-2017-11-24 07:00:00,8975.0
-2017-11-24 08:00:00,9399.0
-2017-11-24 09:00:00,9446.0
-2017-11-24 10:00:00,9538.0
-2017-11-24 11:00:00,9564.0
-2017-11-24 12:00:00,9549.0
-2017-11-24 13:00:00,9532.0
-2017-11-24 14:00:00,9487.0
-2017-11-24 15:00:00,9419.0
-2017-11-24 16:00:00,9369.0
-2017-11-24 17:00:00,9386.0
-2017-11-24 18:00:00,9932.0
-2017-11-24 19:00:00,10420.0
-2017-11-24 20:00:00,10294.0
-2017-11-24 21:00:00,10169.0
-2017-11-24 22:00:00,9938.0
-2017-11-24 23:00:00,9656.0
-2017-11-25 00:00:00,9162.0
-2017-11-23 01:00:00,9998.0
-2017-11-23 02:00:00,9513.0
-2017-11-23 03:00:00,9187.0
-2017-11-23 04:00:00,8968.0
-2017-11-23 05:00:00,8891.0
-2017-11-23 06:00:00,8936.0
-2017-11-23 07:00:00,9081.0
-2017-11-23 08:00:00,9274.0
-2017-11-23 09:00:00,9240.0
-2017-11-23 10:00:00,9344.0
-2017-11-23 11:00:00,9388.0
-2017-11-23 12:00:00,9467.0
-2017-11-23 13:00:00,9470.0
-2017-11-23 14:00:00,9357.0
-2017-11-23 15:00:00,9151.0
-2017-11-23 16:00:00,8953.0
-2017-11-23 17:00:00,8901.0
-2017-11-23 18:00:00,9261.0
-2017-11-23 19:00:00,9609.0
-2017-11-23 20:00:00,9549.0
-2017-11-23 21:00:00,9504.0
-2017-11-23 22:00:00,9483.0
-2017-11-23 23:00:00,9378.0
-2017-11-24 00:00:00,9140.0
-2017-11-22 01:00:00,10412.0
-2017-11-22 02:00:00,9991.0
-2017-11-22 03:00:00,9785.0
-2017-11-22 04:00:00,9667.0
-2017-11-22 05:00:00,9670.0
-2017-11-22 06:00:00,9959.0
-2017-11-22 07:00:00,10639.0
-2017-11-22 08:00:00,11494.0
-2017-11-22 09:00:00,11814.0
-2017-11-22 10:00:00,11923.0
-2017-11-22 11:00:00,11976.0
-2017-11-22 12:00:00,11945.0
-2017-11-22 13:00:00,11840.0
-2017-11-22 14:00:00,11721.0
-2017-11-22 15:00:00,11611.0
-2017-11-22 16:00:00,11463.0
-2017-11-22 17:00:00,11536.0
-2017-11-22 18:00:00,12096.0
-2017-11-22 19:00:00,12445.0
-2017-11-22 20:00:00,12207.0
-2017-11-22 21:00:00,11968.0
-2017-11-22 22:00:00,11706.0
-2017-11-22 23:00:00,11290.0
-2017-11-23 00:00:00,10612.0
-2017-11-21 01:00:00,9888.0
-2017-11-21 02:00:00,9447.0
-2017-11-21 03:00:00,9189.0
-2017-11-21 04:00:00,9028.0
-2017-11-21 05:00:00,9025.0
-2017-11-21 06:00:00,9279.0
-2017-11-21 07:00:00,10012.0
-2017-11-21 08:00:00,10988.0
-2017-11-21 09:00:00,11405.0
-2017-11-21 10:00:00,11717.0
-2017-11-21 11:00:00,11850.0
-2017-11-21 12:00:00,11990.0
-2017-11-21 13:00:00,11948.0
-2017-11-21 14:00:00,11974.0
-2017-11-21 15:00:00,12018.0
-2017-11-21 16:00:00,11914.0
-2017-11-21 17:00:00,11812.0
-2017-11-21 18:00:00,12299.0
-2017-11-21 19:00:00,12643.0
-2017-11-21 20:00:00,12417.0
-2017-11-21 21:00:00,12254.0
-2017-11-21 22:00:00,12029.0
-2017-11-21 23:00:00,11565.0
-2017-11-22 00:00:00,11008.0
-2017-11-20 01:00:00,9858.0
-2017-11-20 02:00:00,9527.0
-2017-11-20 03:00:00,9405.0
-2017-11-20 04:00:00,9328.0
-2017-11-20 05:00:00,9382.0
-2017-11-20 06:00:00,9699.0
-2017-11-20 07:00:00,10414.0
-2017-11-20 08:00:00,11433.0
-2017-11-20 09:00:00,11797.0
-2017-11-20 10:00:00,11797.0
-2017-11-20 11:00:00,11776.0
-2017-11-20 12:00:00,11731.0
-2017-11-20 13:00:00,11616.0
-2017-11-20 14:00:00,11489.0
-2017-11-20 15:00:00,11418.0
-2017-11-20 16:00:00,11301.0
-2017-11-20 17:00:00,11257.0
-2017-11-20 18:00:00,11778.0
-2017-11-20 19:00:00,12240.0
-2017-11-20 20:00:00,12080.0
-2017-11-20 21:00:00,11891.0
-2017-11-20 22:00:00,11644.0
-2017-11-20 23:00:00,11173.0
-2017-11-21 00:00:00,10509.0
-2017-11-19 01:00:00,9595.0
-2017-11-19 02:00:00,9237.0
-2017-11-19 03:00:00,8985.0
-2017-11-19 04:00:00,8885.0
-2017-11-19 05:00:00,8852.0
-2017-11-19 06:00:00,8922.0
-2017-11-19 07:00:00,9110.0
-2017-11-19 08:00:00,9407.0
-2017-11-19 09:00:00,9463.0
-2017-11-19 10:00:00,9685.0
-2017-11-19 11:00:00,9800.0
-2017-11-19 12:00:00,9911.0
-2017-11-19 13:00:00,9904.0
-2017-11-19 14:00:00,9902.0
-2017-11-19 15:00:00,9847.0
-2017-11-19 16:00:00,9845.0
-2017-11-19 17:00:00,9969.0
-2017-11-19 18:00:00,10614.0
-2017-11-19 19:00:00,11191.0
-2017-11-19 20:00:00,11286.0
-2017-11-19 21:00:00,11262.0
-2017-11-19 22:00:00,11050.0
-2017-11-19 23:00:00,10783.0
-2017-11-20 00:00:00,10297.0
-2017-11-18 01:00:00,9645.0
-2017-11-18 02:00:00,9171.0
-2017-11-18 03:00:00,8829.0
-2017-11-18 04:00:00,8635.0
-2017-11-18 05:00:00,8553.0
-2017-11-18 06:00:00,8639.0
-2017-11-18 07:00:00,8990.0
-2017-11-18 08:00:00,9534.0
-2017-11-18 09:00:00,10027.0
-2017-11-18 10:00:00,10522.0
-2017-11-18 11:00:00,10928.0
-2017-11-18 12:00:00,11149.0
-2017-11-18 13:00:00,11147.0
-2017-11-18 14:00:00,11108.0
-2017-11-18 15:00:00,10995.0
-2017-11-18 16:00:00,10899.0
-2017-11-18 17:00:00,10909.0
-2017-11-18 18:00:00,11198.0
-2017-11-18 19:00:00,11394.0
-2017-11-18 20:00:00,11243.0
-2017-11-18 21:00:00,11080.0
-2017-11-18 22:00:00,10825.0
-2017-11-18 23:00:00,10563.0
-2017-11-19 00:00:00,10070.0
-2017-11-17 01:00:00,9993.0
-2017-11-17 02:00:00,9584.0
-2017-11-17 03:00:00,9307.0
-2017-11-17 04:00:00,9223.0
-2017-11-17 05:00:00,9244.0
-2017-11-17 06:00:00,9527.0
-2017-11-17 07:00:00,10256.0
-2017-11-17 08:00:00,11295.0
-2017-11-17 09:00:00,11681.0
-2017-11-17 10:00:00,11867.0
-2017-11-17 11:00:00,11930.0
-2017-11-17 12:00:00,11977.0
-2017-11-17 13:00:00,11897.0
-2017-11-17 14:00:00,11787.0
-2017-11-17 15:00:00,11821.0
-2017-11-17 16:00:00,11834.0
-2017-11-17 17:00:00,11828.0
-2017-11-17 18:00:00,12186.0
-2017-11-17 19:00:00,12199.0
-2017-11-17 20:00:00,11973.0
-2017-11-17 21:00:00,11714.0
-2017-11-17 22:00:00,11432.0
-2017-11-17 23:00:00,10925.0
-2017-11-18 00:00:00,10310.0
-2017-11-16 01:00:00,9993.0
-2017-11-16 02:00:00,9588.0
-2017-11-16 03:00:00,9325.0
-2017-11-16 04:00:00,9207.0
-2017-11-16 05:00:00,9190.0
-2017-11-16 06:00:00,9483.0
-2017-11-16 07:00:00,10234.0
-2017-11-16 08:00:00,11268.0
-2017-11-16 09:00:00,11741.0
-2017-11-16 10:00:00,11974.0
-2017-11-16 11:00:00,12008.0
-2017-11-16 12:00:00,12071.0
-2017-11-16 13:00:00,11980.0
-2017-11-16 14:00:00,11919.0
-2017-11-16 15:00:00,11936.0
-2017-11-16 16:00:00,11896.0
-2017-11-16 17:00:00,11976.0
-2017-11-16 18:00:00,12439.0
-2017-11-16 19:00:00,12634.0
-2017-11-16 20:00:00,12389.0
-2017-11-16 21:00:00,12133.0
-2017-11-16 22:00:00,11808.0
-2017-11-16 23:00:00,11360.0
-2017-11-17 00:00:00,10643.0
-2017-11-15 01:00:00,9634.0
-2017-11-15 02:00:00,9219.0
-2017-11-15 03:00:00,8943.0
-2017-11-15 04:00:00,8796.0
-2017-11-15 05:00:00,8813.0
-2017-11-15 06:00:00,9083.0
-2017-11-15 07:00:00,9816.0
-2017-11-15 08:00:00,10826.0
-2017-11-15 09:00:00,11499.0
-2017-11-15 10:00:00,11803.0
-2017-11-15 11:00:00,11858.0
-2017-11-15 12:00:00,11939.0
-2017-11-15 13:00:00,11890.0
-2017-11-15 14:00:00,11802.0
-2017-11-15 15:00:00,11741.0
-2017-11-15 16:00:00,11563.0
-2017-11-15 17:00:00,11429.0
-2017-11-15 18:00:00,11740.0
-2017-11-15 19:00:00,12213.0
-2017-11-15 20:00:00,12078.0
-2017-11-15 21:00:00,11967.0
-2017-11-15 22:00:00,11754.0
-2017-11-15 23:00:00,11329.0
-2017-11-16 00:00:00,10644.0
-2017-11-14 01:00:00,10043.0
-2017-11-14 02:00:00,9701.0
-2017-11-14 03:00:00,9459.0
-2017-11-14 04:00:00,9356.0
-2017-11-14 05:00:00,9344.0
-2017-11-14 06:00:00,9638.0
-2017-11-14 07:00:00,10409.0
-2017-11-14 08:00:00,11428.0
-2017-11-14 09:00:00,11718.0
-2017-11-14 10:00:00,11796.0
-2017-11-14 11:00:00,11782.0
-2017-11-14 12:00:00,11749.0
-2017-11-14 13:00:00,11719.0
-2017-11-14 14:00:00,11701.0
-2017-11-14 15:00:00,11725.0
-2017-11-14 16:00:00,11643.0
-2017-11-14 17:00:00,11668.0
-2017-11-14 18:00:00,12031.0
-2017-11-14 19:00:00,12285.0
-2017-11-14 20:00:00,12069.0
-2017-11-14 21:00:00,11824.0
-2017-11-14 22:00:00,11498.0
-2017-11-14 23:00:00,10983.0
-2017-11-15 00:00:00,10260.0
-2017-11-13 01:00:00,9221.0
-2017-11-13 02:00:00,8975.0
-2017-11-13 03:00:00,8870.0
-2017-11-13 04:00:00,8819.0
-2017-11-13 05:00:00,8991.0
-2017-11-13 06:00:00,9319.0
-2017-11-13 07:00:00,10149.0
-2017-11-13 08:00:00,11229.0
-2017-11-13 09:00:00,11705.0
-2017-11-13 10:00:00,11723.0
-2017-11-13 11:00:00,11745.0
-2017-11-13 12:00:00,11768.0
-2017-11-13 13:00:00,11747.0
-2017-11-13 14:00:00,11776.0
-2017-11-13 15:00:00,11822.0
-2017-11-13 16:00:00,11758.0
-2017-11-13 17:00:00,11764.0
-2017-11-13 18:00:00,12159.0
-2017-11-13 19:00:00,12516.0
-2017-11-13 20:00:00,12307.0
-2017-11-13 21:00:00,12103.0
-2017-11-13 22:00:00,11835.0
-2017-11-13 23:00:00,11331.0
-2017-11-14 00:00:00,10647.0
-2017-11-12 01:00:00,9524.0
-2017-11-12 02:00:00,9150.0
-2017-11-12 03:00:00,8934.0
-2017-11-12 04:00:00,8740.0
-2017-11-12 05:00:00,8725.0
-2017-11-12 06:00:00,8736.0
-2017-11-12 07:00:00,8881.0
-2017-11-12 08:00:00,9118.0
-2017-11-12 09:00:00,9196.0
-2017-11-12 10:00:00,9491.0
-2017-11-12 11:00:00,9795.0
-2017-11-12 12:00:00,9954.0
-2017-11-12 13:00:00,10061.0
-2017-11-12 14:00:00,10140.0
-2017-11-12 15:00:00,10097.0
-2017-11-12 16:00:00,10042.0
-2017-11-12 17:00:00,10060.0
-2017-11-12 18:00:00,10551.0
-2017-11-12 19:00:00,10888.0
-2017-11-12 20:00:00,10843.0
-2017-11-12 21:00:00,10729.0
-2017-11-12 22:00:00,10544.0
-2017-11-12 23:00:00,10162.0
-2017-11-13 00:00:00,9654.0
-2017-11-11 01:00:00,10605.0
-2017-11-11 02:00:00,10192.0
-2017-11-11 03:00:00,9942.0
-2017-11-11 04:00:00,9746.0
-2017-11-11 05:00:00,9668.0
-2017-11-11 06:00:00,9755.0
-2017-11-11 07:00:00,10075.0
-2017-11-11 08:00:00,10466.0
-2017-11-11 09:00:00,10763.0
-2017-11-11 10:00:00,11119.0
-2017-11-11 11:00:00,11362.0
-2017-11-11 12:00:00,11340.0
-2017-11-11 13:00:00,11217.0
-2017-11-11 14:00:00,11080.0
-2017-11-11 15:00:00,10916.0
-2017-11-11 16:00:00,10706.0
-2017-11-11 17:00:00,10753.0
-2017-11-11 18:00:00,11116.0
-2017-11-11 19:00:00,11415.0
-2017-11-11 20:00:00,11257.0
-2017-11-11 21:00:00,11063.0
-2017-11-11 22:00:00,10797.0
-2017-11-11 23:00:00,10495.0
-2017-11-12 00:00:00,9971.0
-2017-11-10 01:00:00,10424.0
-2017-11-10 02:00:00,10088.0
-2017-11-10 03:00:00,9878.0
-2017-11-10 04:00:00,9763.0
-2017-11-10 05:00:00,9811.0
-2017-11-10 06:00:00,10122.0
-2017-11-10 07:00:00,10806.0
-2017-11-10 08:00:00,11747.0
-2017-11-10 09:00:00,12214.0
-2017-11-10 10:00:00,12493.0
-2017-11-10 11:00:00,12524.0
-2017-11-10 12:00:00,12561.0
-2017-11-10 13:00:00,12526.0
-2017-11-10 14:00:00,12450.0
-2017-11-10 15:00:00,12428.0
-2017-11-10 16:00:00,12281.0
-2017-11-10 17:00:00,12178.0
-2017-11-10 18:00:00,12539.0
-2017-11-10 19:00:00,12856.0
-2017-11-10 20:00:00,12653.0
-2017-11-10 21:00:00,12486.0
-2017-11-10 22:00:00,12185.0
-2017-11-10 23:00:00,11786.0
-2017-11-11 00:00:00,11174.0
-2017-11-09 01:00:00,9814.0
-2017-11-09 02:00:00,9396.0
-2017-11-09 03:00:00,9207.0
-2017-11-09 04:00:00,9086.0
-2017-11-09 05:00:00,9092.0
-2017-11-09 06:00:00,9363.0
-2017-11-09 07:00:00,10034.0
-2017-11-09 08:00:00,11041.0
-2017-11-09 09:00:00,11506.0
-2017-11-09 10:00:00,11649.0
-2017-11-09 11:00:00,11583.0
-2017-11-09 12:00:00,11593.0
-2017-11-09 13:00:00,11580.0
-2017-11-09 14:00:00,11475.0
-2017-11-09 15:00:00,11437.0
-2017-11-09 16:00:00,11377.0
-2017-11-09 17:00:00,11395.0
-2017-11-09 18:00:00,11795.0
-2017-11-09 19:00:00,12411.0
-2017-11-09 20:00:00,12333.0
-2017-11-09 21:00:00,12227.0
-2017-11-09 22:00:00,12039.0
-2017-11-09 23:00:00,11591.0
-2017-11-10 00:00:00,10980.0
-2017-11-08 01:00:00,9751.0
-2017-11-08 02:00:00,9377.0
-2017-11-08 03:00:00,9184.0
-2017-11-08 04:00:00,9074.0
-2017-11-08 05:00:00,9097.0
-2017-11-08 06:00:00,9419.0
-2017-11-08 07:00:00,10161.0
-2017-11-08 08:00:00,11116.0
-2017-11-08 09:00:00,11448.0
-2017-11-08 10:00:00,11462.0
-2017-11-08 11:00:00,11426.0
-2017-11-08 12:00:00,11447.0
-2017-11-08 13:00:00,11344.0
-2017-11-08 14:00:00,11252.0
-2017-11-08 15:00:00,11204.0
-2017-11-08 16:00:00,11073.0
-2017-11-08 17:00:00,11034.0
-2017-11-08 18:00:00,11432.0
-2017-11-08 19:00:00,12035.0
-2017-11-08 20:00:00,11923.0
-2017-11-08 21:00:00,11777.0
-2017-11-08 22:00:00,11540.0
-2017-11-08 23:00:00,11068.0
-2017-11-09 00:00:00,10398.0
-2017-11-07 01:00:00,9454.0
-2017-11-07 02:00:00,9079.0
-2017-11-07 03:00:00,8835.0
-2017-11-07 04:00:00,8766.0
-2017-11-07 05:00:00,8781.0
-2017-11-07 06:00:00,9080.0
-2017-11-07 07:00:00,9844.0
-2017-11-07 08:00:00,10859.0
-2017-11-07 09:00:00,11242.0
-2017-11-07 10:00:00,11330.0
-2017-11-07 11:00:00,11378.0
-2017-11-07 12:00:00,11504.0
-2017-11-07 13:00:00,11454.0
-2017-11-07 14:00:00,11416.0
-2017-11-07 15:00:00,11431.0
-2017-11-07 16:00:00,11358.0
-2017-11-07 17:00:00,11380.0
-2017-11-07 18:00:00,11676.0
-2017-11-07 19:00:00,12137.0
-2017-11-07 20:00:00,11984.0
-2017-11-07 21:00:00,11803.0
-2017-11-07 22:00:00,11519.0
-2017-11-07 23:00:00,11018.0
-2017-11-08 00:00:00,10353.0
-2017-11-06 01:00:00,8530.0
-2017-11-06 02:00:00,8339.0
-2017-11-06 03:00:00,8207.0
-2017-11-06 04:00:00,8242.0
-2017-11-06 05:00:00,8343.0
-2017-11-06 06:00:00,8723.0
-2017-11-06 07:00:00,9647.0
-2017-11-06 08:00:00,10678.0
-2017-11-06 09:00:00,11160.0
-2017-11-06 10:00:00,11286.0
-2017-11-06 11:00:00,11272.0
-2017-11-06 12:00:00,11343.0
-2017-11-06 13:00:00,11363.0
-2017-11-06 14:00:00,11278.0
-2017-11-06 15:00:00,11290.0
-2017-11-06 16:00:00,11170.0
-2017-11-06 17:00:00,11152.0
-2017-11-06 18:00:00,11595.0
-2017-11-06 19:00:00,12124.0
-2017-11-06 20:00:00,11934.0
-2017-11-06 21:00:00,11700.0
-2017-11-06 22:00:00,11341.0
-2017-11-06 23:00:00,10795.0
-2017-11-07 00:00:00,10069.0
-2017-11-05 01:00:00,8576.0
-2017-11-05 02:00:00,8198.0
-2017-11-05 02:00:00,7878.0
-2017-11-05 03:00:00,7889.0
-2017-11-05 04:00:00,7636.0
-2017-11-05 05:00:00,7598.0
-2017-11-05 06:00:00,7642.0
-2017-11-05 07:00:00,7805.0
-2017-11-05 08:00:00,8130.0
-2017-11-05 09:00:00,8300.0
-2017-11-05 10:00:00,8658.0
-2017-11-05 11:00:00,8920.0
-2017-11-05 12:00:00,9067.0
-2017-11-05 13:00:00,9149.0
-2017-11-05 14:00:00,9225.0
-2017-11-05 15:00:00,9213.0
-2017-11-05 16:00:00,9234.0
-2017-11-05 17:00:00,9251.0
-2017-11-05 18:00:00,9740.0
-2017-11-05 19:00:00,10096.0
-2017-11-05 20:00:00,10002.0
-2017-11-05 21:00:00,9854.0
-2017-11-05 22:00:00,9663.0
-2017-11-05 23:00:00,9276.0
-2017-11-06 00:00:00,8818.0
-2017-11-04 01:00:00,9441.0
-2017-11-04 02:00:00,9024.0
-2017-11-04 03:00:00,8699.0
-2017-11-04 04:00:00,8555.0
-2017-11-04 05:00:00,8465.0
-2017-11-04 06:00:00,8529.0
-2017-11-04 07:00:00,8755.0
-2017-11-04 08:00:00,9177.0
-2017-11-04 09:00:00,9624.0
-2017-11-04 10:00:00,9973.0
-2017-11-04 11:00:00,10268.0
-2017-11-04 12:00:00,10370.0
-2017-11-04 13:00:00,10357.0
-2017-11-04 14:00:00,10234.0
-2017-11-04 15:00:00,10054.0
-2017-11-04 16:00:00,9879.0
-2017-11-04 17:00:00,9782.0
-2017-11-04 18:00:00,9784.0
-2017-11-04 19:00:00,10089.0
-2017-11-04 20:00:00,10268.0
-2017-11-04 21:00:00,10128.0
-2017-11-04 22:00:00,9947.0
-2017-11-04 23:00:00,9665.0
-2017-11-05 00:00:00,9242.0
-2017-11-03 01:00:00,9250.0
-2017-11-03 02:00:00,8832.0
-2017-11-03 03:00:00,8589.0
-2017-11-03 04:00:00,8462.0
-2017-11-03 05:00:00,8438.0
-2017-11-03 06:00:00,8698.0
-2017-11-03 07:00:00,9393.0
-2017-11-03 08:00:00,10432.0
-2017-11-03 09:00:00,11122.0
-2017-11-03 10:00:00,11213.0
-2017-11-03 11:00:00,11300.0
-2017-11-03 12:00:00,11342.0
-2017-11-03 13:00:00,11274.0
-2017-11-03 14:00:00,11150.0
-2017-11-03 15:00:00,10982.0
-2017-11-03 16:00:00,10845.0
-2017-11-03 17:00:00,10714.0
-2017-11-03 18:00:00,10681.0
-2017-11-03 19:00:00,10985.0
-2017-11-03 20:00:00,11259.0
-2017-11-03 21:00:00,11177.0
-2017-11-03 22:00:00,10982.0
-2017-11-03 23:00:00,10575.0
-2017-11-04 00:00:00,10043.0
-2017-11-02 01:00:00,9519.0
-2017-11-02 02:00:00,9062.0
-2017-11-02 03:00:00,8704.0
-2017-11-02 04:00:00,8492.0
-2017-11-02 05:00:00,8485.0
-2017-11-02 06:00:00,8655.0
-2017-11-02 07:00:00,9298.0
-2017-11-02 08:00:00,10410.0
-2017-11-02 09:00:00,11133.0
-2017-11-02 10:00:00,11243.0
-2017-11-02 11:00:00,11264.0
-2017-11-02 12:00:00,11280.0
-2017-11-02 13:00:00,11246.0
-2017-11-02 14:00:00,11262.0
-2017-11-02 15:00:00,11291.0
-2017-11-02 16:00:00,11212.0
-2017-11-02 17:00:00,11137.0
-2017-11-02 18:00:00,11182.0
-2017-11-02 19:00:00,11386.0
-2017-11-02 20:00:00,11439.0
-2017-11-02 21:00:00,11256.0
-2017-11-02 22:00:00,10990.0
-2017-11-02 23:00:00,10513.0
-2017-11-03 00:00:00,9858.0
-2017-11-01 01:00:00,9626.0
-2017-11-01 02:00:00,9242.0
-2017-11-01 03:00:00,8982.0
-2017-11-01 04:00:00,8830.0
-2017-11-01 05:00:00,8810.0
-2017-11-01 06:00:00,9086.0
-2017-11-01 07:00:00,9778.0
-2017-11-01 08:00:00,10884.0
-2017-11-01 09:00:00,11578.0
-2017-11-01 10:00:00,11596.0
-2017-11-01 11:00:00,11665.0
-2017-11-01 12:00:00,11653.0
-2017-11-01 13:00:00,11659.0
-2017-11-01 14:00:00,11559.0
-2017-11-01 15:00:00,11554.0
-2017-11-01 16:00:00,11494.0
-2017-11-01 17:00:00,11504.0
-2017-11-01 18:00:00,11644.0
-2017-11-01 19:00:00,11912.0
-2017-11-01 20:00:00,11964.0
-2017-11-01 21:00:00,11791.0
-2017-11-01 22:00:00,11447.0
-2017-11-01 23:00:00,10929.0
-2017-11-02 00:00:00,10166.0
-2017-10-31 01:00:00,9667.0
-2017-10-31 02:00:00,9291.0
-2017-10-31 03:00:00,9031.0
-2017-10-31 04:00:00,8922.0
-2017-10-31 05:00:00,8934.0
-2017-10-31 06:00:00,9158.0
-2017-10-31 07:00:00,9848.0
-2017-10-31 08:00:00,10963.0
-2017-10-31 09:00:00,11653.0
-2017-10-31 10:00:00,11734.0
-2017-10-31 11:00:00,11671.0
-2017-10-31 12:00:00,11655.0
-2017-10-31 13:00:00,11557.0
-2017-10-31 14:00:00,11418.0
-2017-10-31 15:00:00,11345.0
-2017-10-31 16:00:00,11178.0
-2017-10-31 17:00:00,11098.0
-2017-10-31 18:00:00,11124.0
-2017-10-31 19:00:00,11329.0
-2017-10-31 20:00:00,11667.0
-2017-10-31 21:00:00,11550.0
-2017-10-31 22:00:00,11337.0
-2017-10-31 23:00:00,10909.0
-2017-11-01 00:00:00,10258.0
-2017-10-30 01:00:00,8865.0
-2017-10-30 02:00:00,8557.0
-2017-10-30 03:00:00,8372.0
-2017-10-30 04:00:00,8279.0
-2017-10-30 05:00:00,8307.0
-2017-10-30 06:00:00,8571.0
-2017-10-30 07:00:00,9343.0
-2017-10-30 08:00:00,10549.0
-2017-10-30 09:00:00,11271.0
-2017-10-30 10:00:00,11373.0
-2017-10-30 11:00:00,11403.0
-2017-10-30 12:00:00,11384.0
-2017-10-30 13:00:00,11307.0
-2017-10-30 14:00:00,11218.0
-2017-10-30 15:00:00,11256.0
-2017-10-30 16:00:00,11213.0
-2017-10-30 17:00:00,11242.0
-2017-10-30 18:00:00,11350.0
-2017-10-30 19:00:00,11622.0
-2017-10-30 20:00:00,11867.0
-2017-10-30 21:00:00,11740.0
-2017-10-30 22:00:00,11467.0
-2017-10-30 23:00:00,10982.0
-2017-10-31 00:00:00,10287.0
-2017-10-29 01:00:00,9119.0
-2017-10-29 02:00:00,8748.0
-2017-10-29 03:00:00,8520.0
-2017-10-29 04:00:00,8346.0
-2017-10-29 05:00:00,8304.0
-2017-10-29 06:00:00,8296.0
-2017-10-29 07:00:00,8462.0
-2017-10-29 08:00:00,8740.0
-2017-10-29 09:00:00,8881.0
-2017-10-29 10:00:00,8970.0
-2017-10-29 11:00:00,9118.0
-2017-10-29 12:00:00,9152.0
-2017-10-29 13:00:00,9158.0
-2017-10-29 14:00:00,9127.0
-2017-10-29 15:00:00,9036.0
-2017-10-29 16:00:00,8963.0
-2017-10-29 17:00:00,8934.0
-2017-10-29 18:00:00,9049.0
-2017-10-29 19:00:00,9404.0
-2017-10-29 20:00:00,10121.0
-2017-10-29 21:00:00,10150.0
-2017-10-29 22:00:00,10017.0
-2017-10-29 23:00:00,9704.0
-2017-10-30 00:00:00,9287.0
-2017-10-28 01:00:00,9620.0
-2017-10-28 02:00:00,9170.0
-2017-10-28 03:00:00,8897.0
-2017-10-28 04:00:00,8659.0
-2017-10-28 05:00:00,8615.0
-2017-10-28 06:00:00,8657.0
-2017-10-28 07:00:00,8973.0
-2017-10-28 08:00:00,9441.0
-2017-10-28 09:00:00,9783.0
-2017-10-28 10:00:00,9980.0
-2017-10-28 11:00:00,10239.0
-2017-10-28 12:00:00,10258.0
-2017-10-28 13:00:00,10292.0
-2017-10-28 14:00:00,10249.0
-2017-10-28 15:00:00,10093.0
-2017-10-28 16:00:00,9948.0
-2017-10-28 17:00:00,9910.0
-2017-10-28 18:00:00,9964.0
-2017-10-28 19:00:00,10230.0
-2017-10-28 20:00:00,10542.0
-2017-10-28 21:00:00,10444.0
-2017-10-28 22:00:00,10253.0
-2017-10-28 23:00:00,9977.0
-2017-10-29 00:00:00,9556.0
-2017-10-27 01:00:00,9182.0
-2017-10-27 02:00:00,8740.0
-2017-10-27 03:00:00,8492.0
-2017-10-27 04:00:00,8375.0
-2017-10-27 05:00:00,8340.0
-2017-10-27 06:00:00,8583.0
-2017-10-27 07:00:00,9265.0
-2017-10-27 08:00:00,10390.0
-2017-10-27 09:00:00,11117.0
-2017-10-27 10:00:00,11325.0
-2017-10-27 11:00:00,11450.0
-2017-10-27 12:00:00,11608.0
-2017-10-27 13:00:00,11556.0
-2017-10-27 14:00:00,11419.0
-2017-10-27 15:00:00,11429.0
-2017-10-27 16:00:00,11355.0
-2017-10-27 17:00:00,11243.0
-2017-10-27 18:00:00,11259.0
-2017-10-27 19:00:00,11456.0
-2017-10-27 20:00:00,11617.0
-2017-10-27 21:00:00,11389.0
-2017-10-27 22:00:00,11217.0
-2017-10-27 23:00:00,10833.0
-2017-10-28 00:00:00,10238.0
-2017-10-26 01:00:00,9330.0
-2017-10-26 02:00:00,8915.0
-2017-10-26 03:00:00,8691.0
-2017-10-26 04:00:00,8549.0
-2017-10-26 05:00:00,8526.0
-2017-10-26 06:00:00,8735.0
-2017-10-26 07:00:00,9497.0
-2017-10-26 08:00:00,10652.0
-2017-10-26 09:00:00,11127.0
-2017-10-26 10:00:00,11137.0
-2017-10-26 11:00:00,11111.0
-2017-10-26 12:00:00,11094.0
-2017-10-26 13:00:00,11067.0
-2017-10-26 14:00:00,11049.0
-2017-10-26 15:00:00,11058.0
-2017-10-26 16:00:00,10983.0
-2017-10-26 17:00:00,10852.0
-2017-10-26 18:00:00,10781.0
-2017-10-26 19:00:00,10923.0
-2017-10-26 20:00:00,11360.0
-2017-10-26 21:00:00,11252.0
-2017-10-26 22:00:00,10998.0
-2017-10-26 23:00:00,10524.0
-2017-10-27 00:00:00,9829.0
-2017-10-25 01:00:00,9290.0
-2017-10-25 02:00:00,8858.0
-2017-10-25 03:00:00,8602.0
-2017-10-25 04:00:00,8474.0
-2017-10-25 05:00:00,8467.0
-2017-10-25 06:00:00,8683.0
-2017-10-25 07:00:00,9431.0
-2017-10-25 08:00:00,10564.0
-2017-10-25 09:00:00,11173.0
-2017-10-25 10:00:00,11214.0
-2017-10-25 11:00:00,11175.0
-2017-10-25 12:00:00,11091.0
-2017-10-25 13:00:00,11057.0
-2017-10-25 14:00:00,10944.0
-2017-10-25 15:00:00,10906.0
-2017-10-25 16:00:00,10795.0
-2017-10-25 17:00:00,10647.0
-2017-10-25 18:00:00,10537.0
-2017-10-25 19:00:00,10610.0
-2017-10-25 20:00:00,11158.0
-2017-10-25 21:00:00,11172.0
-2017-10-25 22:00:00,10972.0
-2017-10-25 23:00:00,10537.0
-2017-10-26 00:00:00,9907.0
-2017-10-24 01:00:00,8943.0
-2017-10-24 02:00:00,8540.0
-2017-10-24 03:00:00,8299.0
-2017-10-24 04:00:00,8090.0
-2017-10-24 05:00:00,8087.0
-2017-10-24 06:00:00,8287.0
-2017-10-24 07:00:00,8944.0
-2017-10-24 08:00:00,10093.0
-2017-10-24 09:00:00,10907.0
-2017-10-24 10:00:00,11139.0
-2017-10-24 11:00:00,11265.0
-2017-10-24 12:00:00,11401.0
-2017-10-24 13:00:00,11426.0
-2017-10-24 14:00:00,11376.0
-2017-10-24 15:00:00,11406.0
-2017-10-24 16:00:00,11277.0
-2017-10-24 17:00:00,11184.0
-2017-10-24 18:00:00,11221.0
-2017-10-24 19:00:00,11469.0
-2017-10-24 20:00:00,11613.0
-2017-10-24 21:00:00,11461.0
-2017-10-24 22:00:00,11134.0
-2017-10-24 23:00:00,10596.0
-2017-10-25 00:00:00,9911.0
-2017-10-23 01:00:00,8210.0
-2017-10-23 02:00:00,7939.0
-2017-10-23 03:00:00,7727.0
-2017-10-23 04:00:00,7629.0
-2017-10-23 05:00:00,7624.0
-2017-10-23 06:00:00,7910.0
-2017-10-23 07:00:00,8582.0
-2017-10-23 08:00:00,9695.0
-2017-10-23 09:00:00,10554.0
-2017-10-23 10:00:00,10737.0
-2017-10-23 11:00:00,10864.0
-2017-10-23 12:00:00,10999.0
-2017-10-23 13:00:00,11071.0
-2017-10-23 14:00:00,11015.0
-2017-10-23 15:00:00,11010.0
-2017-10-23 16:00:00,10870.0
-2017-10-23 17:00:00,10705.0
-2017-10-23 18:00:00,10705.0
-2017-10-23 19:00:00,10847.0
-2017-10-23 20:00:00,11108.0
-2017-10-23 21:00:00,10965.0
-2017-10-23 22:00:00,10638.0
-2017-10-23 23:00:00,10148.0
-2017-10-24 00:00:00,9532.0
-2017-10-22 01:00:00,8883.0
-2017-10-22 02:00:00,8397.0
-2017-10-22 03:00:00,8091.0
-2017-10-22 04:00:00,7834.0
-2017-10-22 05:00:00,7695.0
-2017-10-22 06:00:00,7686.0
-2017-10-22 07:00:00,7773.0
-2017-10-22 08:00:00,7995.0
-2017-10-22 09:00:00,8041.0
-2017-10-22 10:00:00,8421.0
-2017-10-22 11:00:00,8836.0
-2017-10-22 12:00:00,9146.0
-2017-10-22 13:00:00,9321.0
-2017-10-22 14:00:00,9456.0
-2017-10-22 15:00:00,9451.0
-2017-10-22 16:00:00,9375.0
-2017-10-22 17:00:00,9218.0
-2017-10-22 18:00:00,9178.0
-2017-10-22 19:00:00,9367.0
-2017-10-22 20:00:00,9676.0
-2017-10-22 21:00:00,9640.0
-2017-10-22 22:00:00,9419.0
-2017-10-22 23:00:00,9127.0
-2017-10-23 00:00:00,8674.0
-2017-10-21 01:00:00,9122.0
-2017-10-21 02:00:00,8631.0
-2017-10-21 03:00:00,8238.0
-2017-10-21 04:00:00,8021.0
-2017-10-21 05:00:00,7923.0
-2017-10-21 06:00:00,7941.0
-2017-10-21 07:00:00,8169.0
-2017-10-21 08:00:00,8600.0
-2017-10-21 09:00:00,8878.0
-2017-10-21 10:00:00,9194.0
-2017-10-21 11:00:00,9523.0
-2017-10-21 12:00:00,9696.0
-2017-10-21 13:00:00,9875.0
-2017-10-21 14:00:00,9977.0
-2017-10-21 15:00:00,10066.0
-2017-10-21 16:00:00,10130.0
-2017-10-21 17:00:00,10182.0
-2017-10-21 18:00:00,10117.0
-2017-10-21 19:00:00,10080.0
-2017-10-21 20:00:00,10507.0
-2017-10-21 21:00:00,10468.0
-2017-10-21 22:00:00,10261.0
-2017-10-21 23:00:00,9923.0
-2017-10-22 00:00:00,9420.0
-2017-10-20 01:00:00,8847.0
-2017-10-20 02:00:00,8388.0
-2017-10-20 03:00:00,8122.0
-2017-10-20 04:00:00,7935.0
-2017-10-20 05:00:00,7901.0
-2017-10-20 06:00:00,8095.0
-2017-10-20 07:00:00,8615.0
-2017-10-20 08:00:00,9671.0
-2017-10-20 09:00:00,10241.0
-2017-10-20 10:00:00,10511.0
-2017-10-20 11:00:00,10751.0
-2017-10-20 12:00:00,11067.0
-2017-10-20 13:00:00,11264.0
-2017-10-20 14:00:00,11408.0
-2017-10-20 15:00:00,11616.0
-2017-10-20 16:00:00,11646.0
-2017-10-20 17:00:00,11557.0
-2017-10-20 18:00:00,11401.0
-2017-10-20 19:00:00,11158.0
-2017-10-20 20:00:00,11316.0
-2017-10-20 21:00:00,11150.0
-2017-10-20 22:00:00,10816.0
-2017-10-20 23:00:00,10392.0
-2017-10-21 00:00:00,9763.0
-2017-10-19 01:00:00,8906.0
-2017-10-19 02:00:00,8413.0
-2017-10-19 03:00:00,8108.0
-2017-10-19 04:00:00,7945.0
-2017-10-19 05:00:00,7893.0
-2017-10-19 06:00:00,8064.0
-2017-10-19 07:00:00,8659.0
-2017-10-19 08:00:00,9713.0
-2017-10-19 09:00:00,10242.0
-2017-10-19 10:00:00,10460.0
-2017-10-19 11:00:00,10681.0
-2017-10-19 12:00:00,10929.0
-2017-10-19 13:00:00,11080.0
-2017-10-19 14:00:00,11065.0
-2017-10-19 15:00:00,11118.0
-2017-10-19 16:00:00,11183.0
-2017-10-19 17:00:00,11080.0
-2017-10-19 18:00:00,10901.0
-2017-10-19 19:00:00,10749.0
-2017-10-19 20:00:00,11052.0
-2017-10-19 21:00:00,10960.0
-2017-10-19 22:00:00,10671.0
-2017-10-19 23:00:00,10158.0
-2017-10-20 00:00:00,9476.0
-2017-10-18 01:00:00,8810.0
-2017-10-18 02:00:00,8381.0
-2017-10-18 03:00:00,8234.0
-2017-10-18 04:00:00,8053.0
-2017-10-18 05:00:00,7996.0
-2017-10-18 06:00:00,8197.0
-2017-10-18 07:00:00,8816.0
-2017-10-18 08:00:00,9911.0
-2017-10-18 09:00:00,10454.0
-2017-10-18 10:00:00,10619.0
-2017-10-18 11:00:00,10744.0
-2017-10-18 12:00:00,10925.0
-2017-10-18 13:00:00,11058.0
-2017-10-18 14:00:00,11121.0
-2017-10-18 15:00:00,11184.0
-2017-10-18 16:00:00,11146.0
-2017-10-18 17:00:00,11141.0
-2017-10-18 18:00:00,11041.0
-2017-10-18 19:00:00,10902.0
-2017-10-18 20:00:00,11185.0
-2017-10-18 21:00:00,11126.0
-2017-10-18 22:00:00,10819.0
-2017-10-18 23:00:00,10298.0
-2017-10-19 00:00:00,9562.0
-2017-10-17 01:00:00,8677.0
-2017-10-17 02:00:00,8231.0
-2017-10-17 03:00:00,7985.0
-2017-10-17 04:00:00,7828.0
-2017-10-17 05:00:00,7756.0
-2017-10-17 06:00:00,7993.0
-2017-10-17 07:00:00,8648.0
-2017-10-17 08:00:00,9719.0
-2017-10-17 09:00:00,10230.0
-2017-10-17 10:00:00,10429.0
-2017-10-17 11:00:00,10551.0
-2017-10-17 12:00:00,10763.0
-2017-10-17 13:00:00,10789.0
-2017-10-17 14:00:00,10846.0
-2017-10-17 15:00:00,11033.0
-2017-10-17 16:00:00,11005.0
-2017-10-17 17:00:00,10963.0
-2017-10-17 18:00:00,10887.0
-2017-10-17 19:00:00,10804.0
-2017-10-17 20:00:00,11065.0
-2017-10-17 21:00:00,11071.0
-2017-10-17 22:00:00,10696.0
-2017-10-17 23:00:00,10177.0
-2017-10-18 00:00:00,9458.0
-2017-10-16 01:00:00,8168.0
-2017-10-16 02:00:00,7850.0
-2017-10-16 03:00:00,7658.0
-2017-10-16 04:00:00,7581.0
-2017-10-16 05:00:00,7596.0
-2017-10-16 06:00:00,7809.0
-2017-10-16 07:00:00,8557.0
-2017-10-16 08:00:00,9674.0
-2017-10-16 09:00:00,10229.0
-2017-10-16 10:00:00,10424.0
-2017-10-16 11:00:00,10531.0
-2017-10-16 12:00:00,10623.0
-2017-10-16 13:00:00,10704.0
-2017-10-16 14:00:00,10758.0
-2017-10-16 15:00:00,10824.0
-2017-10-16 16:00:00,10780.0
-2017-10-16 17:00:00,10679.0
-2017-10-16 18:00:00,10576.0
-2017-10-16 19:00:00,10524.0
-2017-10-16 20:00:00,10868.0
-2017-10-16 21:00:00,10960.0
-2017-10-16 22:00:00,10659.0
-2017-10-16 23:00:00,10081.0
-2017-10-17 00:00:00,9384.0
-2017-10-15 01:00:00,9017.0
-2017-10-15 02:00:00,8586.0
-2017-10-15 03:00:00,8235.0
-2017-10-15 04:00:00,8029.0
-2017-10-15 05:00:00,7918.0
-2017-10-15 06:00:00,7909.0
-2017-10-15 07:00:00,7928.0
-2017-10-15 08:00:00,8066.0
-2017-10-15 09:00:00,8129.0
-2017-10-15 10:00:00,8284.0
-2017-10-15 11:00:00,8513.0
-2017-10-15 12:00:00,8710.0
-2017-10-15 13:00:00,8819.0
-2017-10-15 14:00:00,8846.0
-2017-10-15 15:00:00,8831.0
-2017-10-15 16:00:00,8767.0
-2017-10-15 17:00:00,8759.0
-2017-10-15 18:00:00,8788.0
-2017-10-15 19:00:00,8995.0
-2017-10-15 20:00:00,9524.0
-2017-10-15 21:00:00,9600.0
-2017-10-15 22:00:00,9422.0
-2017-10-15 23:00:00,9100.0
-2017-10-16 00:00:00,8631.0
-2017-10-14 01:00:00,9208.0
-2017-10-14 02:00:00,8693.0
-2017-10-14 03:00:00,8339.0
-2017-10-14 04:00:00,8149.0
-2017-10-14 05:00:00,8102.0
-2017-10-14 06:00:00,8102.0
-2017-10-14 07:00:00,8295.0
-2017-10-14 08:00:00,8688.0
-2017-10-14 09:00:00,9127.0
-2017-10-14 10:00:00,9555.0
-2017-10-14 11:00:00,9892.0
-2017-10-14 12:00:00,10044.0
-2017-10-14 13:00:00,10217.0
-2017-10-14 14:00:00,10283.0
-2017-10-14 15:00:00,10105.0
-2017-10-14 16:00:00,9947.0
-2017-10-14 17:00:00,9864.0
-2017-10-14 18:00:00,9957.0
-2017-10-14 19:00:00,10088.0
-2017-10-14 20:00:00,10357.0
-2017-10-14 21:00:00,10395.0
-2017-10-14 22:00:00,10279.0
-2017-10-14 23:00:00,9923.0
-2017-10-15 00:00:00,9474.0
-2017-10-13 01:00:00,9023.0
-2017-10-13 02:00:00,8488.0
-2017-10-13 03:00:00,8189.0
-2017-10-13 04:00:00,8009.0
-2017-10-13 05:00:00,7969.0
-2017-10-13 06:00:00,8102.0
-2017-10-13 07:00:00,8694.0
-2017-10-13 08:00:00,9714.0
-2017-10-13 09:00:00,10237.0
-2017-10-13 10:00:00,10481.0
-2017-10-13 11:00:00,10742.0
-2017-10-13 12:00:00,10900.0
-2017-10-13 13:00:00,11049.0
-2017-10-13 14:00:00,11137.0
-2017-10-13 15:00:00,11297.0
-2017-10-13 16:00:00,11388.0
-2017-10-13 17:00:00,11338.0
-2017-10-13 18:00:00,11223.0
-2017-10-13 19:00:00,11103.0
-2017-10-13 20:00:00,11314.0
-2017-10-13 21:00:00,11193.0
-2017-10-13 22:00:00,10939.0
-2017-10-13 23:00:00,10513.0
-2017-10-14 00:00:00,9897.0
-2017-10-12 01:00:00,8921.0
-2017-10-12 02:00:00,8428.0
-2017-10-12 03:00:00,8128.0
-2017-10-12 04:00:00,7958.0
-2017-10-12 05:00:00,7916.0
-2017-10-12 06:00:00,8080.0
-2017-10-12 07:00:00,8710.0
-2017-10-12 08:00:00,9768.0
-2017-10-12 09:00:00,10412.0
-2017-10-12 10:00:00,10671.0
-2017-10-12 11:00:00,10834.0
-2017-10-12 12:00:00,10976.0
-2017-10-12 13:00:00,10993.0
-2017-10-12 14:00:00,10961.0
-2017-10-12 15:00:00,10996.0
-2017-10-12 16:00:00,10878.0
-2017-10-12 17:00:00,10842.0
-2017-10-12 18:00:00,10762.0
-2017-10-12 19:00:00,10787.0
-2017-10-12 20:00:00,11027.0
-2017-10-12 21:00:00,11057.0
-2017-10-12 22:00:00,10770.0
-2017-10-12 23:00:00,10240.0
-2017-10-13 00:00:00,9600.0
-2017-10-11 01:00:00,9142.0
-2017-10-11 02:00:00,8714.0
-2017-10-11 03:00:00,8497.0
-2017-10-11 04:00:00,8301.0
-2017-10-11 05:00:00,8162.0
-2017-10-11 06:00:00,8350.0
-2017-10-11 07:00:00,8960.0
-2017-10-11 08:00:00,9987.0
-2017-10-11 09:00:00,10596.0
-2017-10-11 10:00:00,10857.0
-2017-10-11 11:00:00,11002.0
-2017-10-11 12:00:00,11105.0
-2017-10-11 13:00:00,11116.0
-2017-10-11 14:00:00,11128.0
-2017-10-11 15:00:00,11153.0
-2017-10-11 16:00:00,11132.0
-2017-10-11 17:00:00,10970.0
-2017-10-11 18:00:00,10975.0
-2017-10-11 19:00:00,11005.0
-2017-10-11 20:00:00,11215.0
-2017-10-11 21:00:00,11154.0
-2017-10-11 22:00:00,10879.0
-2017-10-11 23:00:00,10273.0
-2017-10-12 00:00:00,9593.0
-2017-10-10 01:00:00,9516.0
-2017-10-10 02:00:00,8907.0
-2017-10-10 03:00:00,8563.0
-2017-10-10 04:00:00,8357.0
-2017-10-10 05:00:00,8296.0
-2017-10-10 06:00:00,8400.0
-2017-10-10 07:00:00,9036.0
-2017-10-10 08:00:00,10090.0
-2017-10-10 09:00:00,10632.0
-2017-10-10 10:00:00,10958.0
-2017-10-10 11:00:00,11185.0
-2017-10-10 12:00:00,11355.0
-2017-10-10 13:00:00,11429.0
-2017-10-10 14:00:00,11419.0
-2017-10-10 15:00:00,11415.0
-2017-10-10 16:00:00,11287.0
-2017-10-10 17:00:00,11148.0
-2017-10-10 18:00:00,11102.0
-2017-10-10 19:00:00,11250.0
-2017-10-10 20:00:00,11360.0
-2017-10-10 21:00:00,11301.0
-2017-10-10 22:00:00,11044.0
-2017-10-10 23:00:00,10471.0
-2017-10-11 00:00:00,9788.0
-2017-10-09 01:00:00,8643.0
-2017-10-09 02:00:00,8265.0
-2017-10-09 03:00:00,8020.0
-2017-10-09 04:00:00,7818.0
-2017-10-09 05:00:00,7770.0
-2017-10-09 06:00:00,7984.0
-2017-10-09 07:00:00,8560.0
-2017-10-09 08:00:00,9334.0
-2017-10-09 09:00:00,9966.0
-2017-10-09 10:00:00,10517.0
-2017-10-09 11:00:00,11097.0
-2017-10-09 12:00:00,11525.0
-2017-10-09 13:00:00,11933.0
-2017-10-09 14:00:00,12247.0
-2017-10-09 15:00:00,12646.0
-2017-10-09 16:00:00,12795.0
-2017-10-09 17:00:00,12865.0
-2017-10-09 18:00:00,12788.0
-2017-10-09 19:00:00,12475.0
-2017-10-09 20:00:00,12435.0
-2017-10-09 21:00:00,12330.0
-2017-10-09 22:00:00,11714.0
-2017-10-09 23:00:00,11071.0
-2017-10-10 00:00:00,10257.0
-2017-10-08 01:00:00,8699.0
-2017-10-08 02:00:00,8209.0
-2017-10-08 03:00:00,7901.0
-2017-10-08 04:00:00,7621.0
-2017-10-08 05:00:00,7501.0
-2017-10-08 06:00:00,7421.0
-2017-10-08 07:00:00,7567.0
-2017-10-08 08:00:00,7716.0
-2017-10-08 09:00:00,7778.0
-2017-10-08 10:00:00,8121.0
-2017-10-08 11:00:00,8614.0
-2017-10-08 12:00:00,9013.0
-2017-10-08 13:00:00,9420.0
-2017-10-08 14:00:00,9705.0
-2017-10-08 15:00:00,9919.0
-2017-10-08 16:00:00,10118.0
-2017-10-08 17:00:00,10342.0
-2017-10-08 18:00:00,10417.0
-2017-10-08 19:00:00,10363.0
-2017-10-08 20:00:00,10435.0
-2017-10-08 21:00:00,10529.0
-2017-10-08 22:00:00,10249.0
-2017-10-08 23:00:00,9787.0
-2017-10-09 00:00:00,9252.0
-2017-10-07 01:00:00,9673.0
-2017-10-07 02:00:00,9106.0
-2017-10-07 03:00:00,8768.0
-2017-10-07 04:00:00,8501.0
-2017-10-07 05:00:00,8376.0
-2017-10-07 06:00:00,8322.0
-2017-10-07 07:00:00,8616.0
-2017-10-07 08:00:00,9019.0
-2017-10-07 09:00:00,9310.0
-2017-10-07 10:00:00,9823.0
-2017-10-07 11:00:00,10300.0
-2017-10-07 12:00:00,10736.0
-2017-10-07 13:00:00,11072.0
-2017-10-07 14:00:00,11186.0
-2017-10-07 15:00:00,11061.0
-2017-10-07 16:00:00,11037.0
-2017-10-07 17:00:00,10882.0
-2017-10-07 18:00:00,10440.0
-2017-10-07 19:00:00,10117.0
-2017-10-07 20:00:00,10134.0
-2017-10-07 21:00:00,10266.0
-2017-10-07 22:00:00,10058.0
-2017-10-07 23:00:00,9779.0
-2017-10-08 00:00:00,9226.0
-2017-10-06 01:00:00,9636.0
-2017-10-06 02:00:00,9044.0
-2017-10-06 03:00:00,8715.0
-2017-10-06 04:00:00,8491.0
-2017-10-06 05:00:00,8421.0
-2017-10-06 06:00:00,8561.0
-2017-10-06 07:00:00,9176.0
-2017-10-06 08:00:00,10251.0
-2017-10-06 09:00:00,10900.0
-2017-10-06 10:00:00,11236.0
-2017-10-06 11:00:00,11333.0
-2017-10-06 12:00:00,11691.0
-2017-10-06 13:00:00,11753.0
-2017-10-06 14:00:00,11775.0
-2017-10-06 15:00:00,11817.0
-2017-10-06 16:00:00,11819.0
-2017-10-06 17:00:00,11698.0
-2017-10-06 18:00:00,11673.0
-2017-10-06 19:00:00,11689.0
-2017-10-06 20:00:00,11808.0
-2017-10-06 21:00:00,11701.0
-2017-10-06 22:00:00,11361.0
-2017-10-06 23:00:00,10990.0
-2017-10-07 00:00:00,10307.0
-2017-10-05 01:00:00,9512.0
-2017-10-05 02:00:00,8912.0
-2017-10-05 03:00:00,8568.0
-2017-10-05 04:00:00,8314.0
-2017-10-05 05:00:00,8243.0
-2017-10-05 06:00:00,8382.0
-2017-10-05 07:00:00,8985.0
-2017-10-05 08:00:00,9936.0
-2017-10-05 09:00:00,10387.0
-2017-10-05 10:00:00,10799.0
-2017-10-05 11:00:00,11207.0
-2017-10-05 12:00:00,11569.0
-2017-10-05 13:00:00,11829.0
-2017-10-05 14:00:00,12064.0
-2017-10-05 15:00:00,12324.0
-2017-10-05 16:00:00,12403.0
-2017-10-05 17:00:00,12428.0
-2017-10-05 18:00:00,12312.0
-2017-10-05 19:00:00,11994.0
-2017-10-05 20:00:00,12056.0
-2017-10-05 21:00:00,12137.0
-2017-10-05 22:00:00,11771.0
-2017-10-05 23:00:00,11203.0
-2017-10-06 00:00:00,10392.0
-2017-10-04 01:00:00,10621.0
-2017-10-04 02:00:00,9993.0
-2017-10-04 03:00:00,9631.0
-2017-10-04 04:00:00,9369.0
-2017-10-04 05:00:00,9252.0
-2017-10-04 06:00:00,9500.0
-2017-10-04 07:00:00,10269.0
-2017-10-04 08:00:00,11474.0
-2017-10-04 09:00:00,12198.0
-2017-10-04 10:00:00,12515.0
-2017-10-04 11:00:00,12591.0
-2017-10-04 12:00:00,12628.0
-2017-10-04 13:00:00,12550.0
-2017-10-04 14:00:00,12493.0
-2017-10-04 15:00:00,12592.0
-2017-10-04 16:00:00,12732.0
-2017-10-04 17:00:00,12828.0
-2017-10-04 18:00:00,12678.0
-2017-10-04 19:00:00,12306.0
-2017-10-04 20:00:00,12190.0
-2017-10-04 21:00:00,12186.0
-2017-10-04 22:00:00,11809.0
-2017-10-04 23:00:00,11162.0
-2017-10-05 00:00:00,10304.0
-2017-10-03 01:00:00,9966.0
-2017-10-03 02:00:00,9374.0
-2017-10-03 03:00:00,8985.0
-2017-10-03 04:00:00,8761.0
-2017-10-03 05:00:00,8676.0
-2017-10-03 06:00:00,8844.0
-2017-10-03 07:00:00,9553.0
-2017-10-03 08:00:00,10738.0
-2017-10-03 09:00:00,11287.0
-2017-10-03 10:00:00,11767.0
-2017-10-03 11:00:00,12123.0
-2017-10-03 12:00:00,12531.0
-2017-10-03 13:00:00,12742.0
-2017-10-03 14:00:00,12900.0
-2017-10-03 15:00:00,13087.0
-2017-10-03 16:00:00,13284.0
-2017-10-03 17:00:00,13322.0
-2017-10-03 18:00:00,13172.0
-2017-10-03 19:00:00,13112.0
-2017-10-03 20:00:00,13132.0
-2017-10-03 21:00:00,13357.0
-2017-10-03 22:00:00,13004.0
-2017-10-03 23:00:00,12383.0
-2017-10-04 00:00:00,11453.0
-2017-10-02 01:00:00,8370.0
-2017-10-02 02:00:00,8049.0
-2017-10-02 03:00:00,7798.0
-2017-10-02 04:00:00,7687.0
-2017-10-02 05:00:00,7698.0
-2017-10-02 06:00:00,7955.0
-2017-10-02 07:00:00,8679.0
-2017-10-02 08:00:00,9802.0
-2017-10-02 09:00:00,10412.0
-2017-10-02 10:00:00,10864.0
-2017-10-02 11:00:00,11302.0
-2017-10-02 12:00:00,11677.0
-2017-10-02 13:00:00,11985.0
-2017-10-02 14:00:00,12277.0
-2017-10-02 15:00:00,12657.0
-2017-10-02 16:00:00,12790.0
-2017-10-02 17:00:00,12780.0
-2017-10-02 18:00:00,12651.0
-2017-10-02 19:00:00,12477.0
-2017-10-02 20:00:00,12471.0
-2017-10-02 21:00:00,12660.0
-2017-10-02 22:00:00,12391.0
-2017-10-02 23:00:00,11699.0
-2017-10-03 00:00:00,10804.0
-2017-10-01 01:00:00,8467.0
-2017-10-01 02:00:00,8027.0
-2017-10-01 03:00:00,7765.0
-2017-10-01 04:00:00,7563.0
-2017-10-01 05:00:00,7458.0
-2017-10-01 06:00:00,7409.0
-2017-10-01 07:00:00,7539.0
-2017-10-01 08:00:00,7668.0
-2017-10-01 09:00:00,7755.0
-2017-10-01 10:00:00,8072.0
-2017-10-01 11:00:00,8370.0
-2017-10-01 12:00:00,8646.0
-2017-10-01 13:00:00,8867.0
-2017-10-01 14:00:00,8981.0
-2017-10-01 15:00:00,9071.0
-2017-10-01 16:00:00,9133.0
-2017-10-01 17:00:00,9167.0
-2017-10-01 18:00:00,9237.0
-2017-10-01 19:00:00,9262.0
-2017-10-01 20:00:00,9643.0
-2017-10-01 21:00:00,9901.0
-2017-10-01 22:00:00,9707.0
-2017-10-01 23:00:00,9420.0
-2017-10-02 00:00:00,8948.0
-2017-09-30 01:00:00,8902.0
-2017-09-30 02:00:00,8478.0
-2017-09-30 03:00:00,8176.0
-2017-09-30 04:00:00,7952.0
-2017-09-30 05:00:00,7837.0
-2017-09-30 06:00:00,7855.0
-2017-09-30 07:00:00,8067.0
-2017-09-30 08:00:00,8416.0
-2017-09-30 09:00:00,8578.0
-2017-09-30 10:00:00,9058.0
-2017-09-30 11:00:00,9382.0
-2017-09-30 12:00:00,9655.0
-2017-09-30 13:00:00,9748.0
-2017-09-30 14:00:00,9802.0
-2017-09-30 15:00:00,9767.0
-2017-09-30 16:00:00,9754.0
-2017-09-30 17:00:00,9796.0
-2017-09-30 18:00:00,9774.0
-2017-09-30 19:00:00,9584.0
-2017-09-30 20:00:00,9563.0
-2017-09-30 21:00:00,9881.0
-2017-09-30 22:00:00,9698.0
-2017-09-30 23:00:00,9413.0
-2017-10-01 00:00:00,8974.0
-2017-09-29 01:00:00,9174.0
-2017-09-29 02:00:00,8705.0
-2017-09-29 03:00:00,8382.0
-2017-09-29 04:00:00,8212.0
-2017-09-29 05:00:00,8153.0
-2017-09-29 06:00:00,8327.0
-2017-09-29 07:00:00,8877.0
-2017-09-29 08:00:00,9834.0
-2017-09-29 09:00:00,10290.0
-2017-09-29 10:00:00,10759.0
-2017-09-29 11:00:00,11072.0
-2017-09-29 12:00:00,11358.0
-2017-09-29 13:00:00,11467.0
-2017-09-29 14:00:00,11560.0
-2017-09-29 15:00:00,11651.0
-2017-09-29 16:00:00,11609.0
-2017-09-29 17:00:00,11495.0
-2017-09-29 18:00:00,11288.0
-2017-09-29 19:00:00,10956.0
-2017-09-29 20:00:00,10811.0
-2017-09-29 21:00:00,10958.0
-2017-09-29 22:00:00,10651.0
-2017-09-29 23:00:00,10238.0
-2017-09-30 00:00:00,9536.0
-2017-09-28 01:00:00,9188.0
-2017-09-28 02:00:00,8668.0
-2017-09-28 03:00:00,8326.0
-2017-09-28 04:00:00,8112.0
-2017-09-28 05:00:00,8034.0
-2017-09-28 06:00:00,8193.0
-2017-09-28 07:00:00,8784.0
-2017-09-28 08:00:00,9747.0
-2017-09-28 09:00:00,10225.0
-2017-09-28 10:00:00,10625.0
-2017-09-28 11:00:00,11035.0
-2017-09-28 12:00:00,11357.0
-2017-09-28 13:00:00,11520.0
-2017-09-28 14:00:00,11642.0
-2017-09-28 15:00:00,11857.0
-2017-09-28 16:00:00,11986.0
-2017-09-28 17:00:00,12042.0
-2017-09-28 18:00:00,12026.0
-2017-09-28 19:00:00,11767.0
-2017-09-28 20:00:00,11532.0
-2017-09-28 21:00:00,11661.0
-2017-09-28 22:00:00,11307.0
-2017-09-28 23:00:00,10685.0
-2017-09-29 00:00:00,9901.0
-2017-09-27 01:00:00,12455.0
-2017-09-27 02:00:00,11472.0
-2017-09-27 03:00:00,10760.0
-2017-09-27 04:00:00,10219.0
-2017-09-27 05:00:00,9843.0
-2017-09-27 06:00:00,9790.0
-2017-09-27 07:00:00,10266.0
-2017-09-27 08:00:00,11166.0
-2017-09-27 09:00:00,11512.0
-2017-09-27 10:00:00,11811.0
-2017-09-27 11:00:00,11922.0
-2017-09-27 12:00:00,12155.0
-2017-09-27 13:00:00,12472.0
-2017-09-27 14:00:00,12847.0
-2017-09-27 15:00:00,13075.0
-2017-09-27 16:00:00,13073.0
-2017-09-27 17:00:00,12982.0
-2017-09-27 18:00:00,12660.0
-2017-09-27 19:00:00,12125.0
-2017-09-27 20:00:00,11943.0
-2017-09-27 21:00:00,12051.0
-2017-09-27 22:00:00,11546.0
-2017-09-27 23:00:00,10899.0
-2017-09-28 00:00:00,10038.0
-2017-09-26 01:00:00,12406.0
-2017-09-26 02:00:00,11476.0
-2017-09-26 03:00:00,10843.0
-2017-09-26 04:00:00,10394.0
-2017-09-26 05:00:00,10169.0
-2017-09-26 06:00:00,10241.0
-2017-09-26 07:00:00,10911.0
-2017-09-26 08:00:00,12025.0
-2017-09-26 09:00:00,12651.0
-2017-09-26 10:00:00,13452.0
-2017-09-26 11:00:00,14383.0
-2017-09-26 12:00:00,15564.0
-2017-09-26 13:00:00,16745.0
-2017-09-26 14:00:00,17736.0
-2017-09-26 15:00:00,18358.0
-2017-09-26 16:00:00,18608.0
-2017-09-26 17:00:00,18734.0
-2017-09-26 18:00:00,18647.0
-2017-09-26 19:00:00,18033.0
-2017-09-26 20:00:00,17352.0
-2017-09-26 21:00:00,17071.0
-2017-09-26 22:00:00,16318.0
-2017-09-26 23:00:00,15208.0
-2017-09-27 00:00:00,13786.0
-2017-09-25 01:00:00,11965.0
-2017-09-25 02:00:00,11149.0
-2017-09-25 03:00:00,10541.0
-2017-09-25 04:00:00,10181.0
-2017-09-25 05:00:00,9946.0
-2017-09-25 06:00:00,10077.0
-2017-09-25 07:00:00,10760.0
-2017-09-25 08:00:00,11794.0
-2017-09-25 09:00:00,12437.0
-2017-09-25 10:00:00,13358.0
-2017-09-25 11:00:00,14463.0
-2017-09-25 12:00:00,15649.0
-2017-09-25 13:00:00,16822.0
-2017-09-25 14:00:00,17688.0
-2017-09-25 15:00:00,18373.0
-2017-09-25 16:00:00,18684.0
-2017-09-25 17:00:00,18852.0
-2017-09-25 18:00:00,18735.0
-2017-09-25 19:00:00,18213.0
-2017-09-25 20:00:00,17386.0
-2017-09-25 21:00:00,16994.0
-2017-09-25 22:00:00,16131.0
-2017-09-25 23:00:00,15005.0
-2017-09-26 00:00:00,13706.0
-2017-09-24 01:00:00,12818.0
-2017-09-24 02:00:00,11883.0
-2017-09-24 03:00:00,11175.0
-2017-09-24 04:00:00,10580.0
-2017-09-24 05:00:00,10196.0
-2017-09-24 06:00:00,9980.0
-2017-09-24 07:00:00,9934.0
-2017-09-24 08:00:00,10018.0
-2017-09-24 09:00:00,10194.0
-2017-09-24 10:00:00,11272.0
-2017-09-24 11:00:00,12622.0
-2017-09-24 12:00:00,13971.0
-2017-09-24 13:00:00,15088.0
-2017-09-24 14:00:00,15979.0
-2017-09-24 15:00:00,16559.0
-2017-09-24 16:00:00,16986.0
-2017-09-24 17:00:00,17165.0
-2017-09-24 18:00:00,17149.0
-2017-09-24 19:00:00,16705.0
-2017-09-24 20:00:00,16009.0
-2017-09-24 21:00:00,15757.0
-2017-09-24 22:00:00,15016.0
-2017-09-24 23:00:00,14142.0
-2017-09-25 00:00:00,13025.0
-2017-09-23 01:00:00,13675.0
-2017-09-23 02:00:00,12653.0
-2017-09-23 03:00:00,11882.0
-2017-09-23 04:00:00,11303.0
-2017-09-23 05:00:00,10899.0
-2017-09-23 06:00:00,10730.0
-2017-09-23 07:00:00,10855.0
-2017-09-23 08:00:00,11134.0
-2017-09-23 09:00:00,11567.0
-2017-09-23 10:00:00,12764.0
-2017-09-23 11:00:00,14190.0
-2017-09-23 12:00:00,15593.0
-2017-09-23 13:00:00,16823.0
-2017-09-23 14:00:00,17582.0
-2017-09-23 15:00:00,18056.0
-2017-09-23 16:00:00,18364.0
-2017-09-23 17:00:00,18510.0
-2017-09-23 18:00:00,18373.0
-2017-09-23 19:00:00,17816.0
-2017-09-23 20:00:00,16973.0
-2017-09-23 21:00:00,16530.0
-2017-09-23 22:00:00,15793.0
-2017-09-23 23:00:00,14901.0
-2017-09-24 00:00:00,13868.0
-2017-09-22 01:00:00,13860.0
-2017-09-22 02:00:00,12838.0
-2017-09-22 03:00:00,12104.0
-2017-09-22 04:00:00,11536.0
-2017-09-22 05:00:00,11230.0
-2017-09-22 06:00:00,11227.0
-2017-09-22 07:00:00,11802.0
-2017-09-22 08:00:00,12747.0
-2017-09-22 09:00:00,13516.0
-2017-09-22 10:00:00,14580.0
-2017-09-22 11:00:00,15859.0
-2017-09-22 12:00:00,17237.0
-2017-09-22 13:00:00,18190.0
-2017-09-22 14:00:00,18944.0
-2017-09-22 15:00:00,19533.0
-2017-09-22 16:00:00,19889.0
-2017-09-22 17:00:00,20040.0
-2017-09-22 18:00:00,19979.0
-2017-09-22 19:00:00,19391.0
-2017-09-22 20:00:00,18477.0
-2017-09-22 21:00:00,17950.0
-2017-09-22 22:00:00,17070.0
-2017-09-22 23:00:00,16145.0
-2017-09-23 00:00:00,14893.0
-2017-09-21 01:00:00,13235.0
-2017-09-21 02:00:00,12307.0
-2017-09-21 03:00:00,11632.0
-2017-09-21 04:00:00,11097.0
-2017-09-21 05:00:00,10797.0
-2017-09-21 06:00:00,10877.0
-2017-09-21 07:00:00,11491.0
-2017-09-21 08:00:00,12542.0
-2017-09-21 09:00:00,13289.0
-2017-09-21 10:00:00,14312.0
-2017-09-21 11:00:00,15376.0
-2017-09-21 12:00:00,16513.0
-2017-09-21 13:00:00,17512.0
-2017-09-21 14:00:00,18347.0
-2017-09-21 15:00:00,19003.0
-2017-09-21 16:00:00,19333.0
-2017-09-21 17:00:00,19518.0
-2017-09-21 18:00:00,19443.0
-2017-09-21 19:00:00,18836.0
-2017-09-21 20:00:00,18130.0
-2017-09-21 21:00:00,17932.0
-2017-09-21 22:00:00,17301.0
-2017-09-21 23:00:00,16403.0
-2017-09-22 00:00:00,15091.0
-2017-09-20 01:00:00,10413.0
-2017-09-20 02:00:00,9721.0
-2017-09-20 03:00:00,9284.0
-2017-09-20 04:00:00,9018.0
-2017-09-20 05:00:00,8885.0
-2017-09-20 06:00:00,9043.0
-2017-09-20 07:00:00,9729.0
-2017-09-20 08:00:00,10827.0
-2017-09-20 09:00:00,11505.0
-2017-09-20 10:00:00,12304.0
-2017-09-20 11:00:00,13167.0
-2017-09-20 12:00:00,14141.0
-2017-09-20 13:00:00,15128.0
-2017-09-20 14:00:00,16112.0
-2017-09-20 15:00:00,17084.0
-2017-09-20 16:00:00,17800.0
-2017-09-20 17:00:00,18347.0
-2017-09-20 18:00:00,18585.0
-2017-09-20 19:00:00,18356.0
-2017-09-20 20:00:00,17711.0
-2017-09-20 21:00:00,17494.0
-2017-09-20 22:00:00,16839.0
-2017-09-20 23:00:00,15803.0
-2017-09-21 00:00:00,14456.0
-2017-09-19 01:00:00,10127.0
-2017-09-19 02:00:00,9614.0
-2017-09-19 03:00:00,9231.0
-2017-09-19 04:00:00,8999.0
-2017-09-19 05:00:00,8855.0
-2017-09-19 06:00:00,9039.0
-2017-09-19 07:00:00,9730.0
-2017-09-19 08:00:00,10919.0
-2017-09-19 09:00:00,11629.0
-2017-09-19 10:00:00,12067.0
-2017-09-19 11:00:00,12451.0
-2017-09-19 12:00:00,12865.0
-2017-09-19 13:00:00,13341.0
-2017-09-19 14:00:00,13938.0
-2017-09-19 15:00:00,14426.0
-2017-09-19 16:00:00,14598.0
-2017-09-19 17:00:00,14719.0
-2017-09-19 18:00:00,14773.0
-2017-09-19 19:00:00,14415.0
-2017-09-19 20:00:00,13775.0
-2017-09-19 21:00:00,13721.0
-2017-09-19 22:00:00,13185.0
-2017-09-19 23:00:00,12359.0
-2017-09-20 00:00:00,11291.0
-2017-09-18 01:00:00,9987.0
-2017-09-18 02:00:00,9277.0
-2017-09-18 03:00:00,8777.0
-2017-09-18 04:00:00,8487.0
-2017-09-18 05:00:00,8380.0
-2017-09-18 06:00:00,8546.0
-2017-09-18 07:00:00,9205.0
-2017-09-18 08:00:00,10158.0
-2017-09-18 09:00:00,10791.0
-2017-09-18 10:00:00,11503.0
-2017-09-18 11:00:00,12048.0
-2017-09-18 12:00:00,12604.0
-2017-09-18 13:00:00,13018.0
-2017-09-18 14:00:00,13370.0
-2017-09-18 15:00:00,13766.0
-2017-09-18 16:00:00,14024.0
-2017-09-18 17:00:00,14176.0
-2017-09-18 18:00:00,13970.0
-2017-09-18 19:00:00,13293.0
-2017-09-18 20:00:00,12757.0
-2017-09-18 21:00:00,12882.0
-2017-09-18 22:00:00,12538.0
-2017-09-18 23:00:00,11900.0
-2017-09-19 00:00:00,11031.0
-2017-09-17 01:00:00,11269.0
-2017-09-17 02:00:00,10482.0
-2017-09-17 03:00:00,9958.0
-2017-09-17 04:00:00,9508.0
-2017-09-17 05:00:00,9204.0
-2017-09-17 06:00:00,9106.0
-2017-09-17 07:00:00,9111.0
-2017-09-17 08:00:00,9181.0
-2017-09-17 09:00:00,9341.0
-2017-09-17 10:00:00,10102.0
-2017-09-17 11:00:00,11083.0
-2017-09-17 12:00:00,12273.0
-2017-09-17 13:00:00,13321.0
-2017-09-17 14:00:00,14091.0
-2017-09-17 15:00:00,14260.0
-2017-09-17 16:00:00,14102.0
-2017-09-17 17:00:00,14048.0
-2017-09-17 18:00:00,14064.0
-2017-09-17 19:00:00,13756.0
-2017-09-17 20:00:00,13257.0
-2017-09-17 21:00:00,13252.0
-2017-09-17 22:00:00,12780.0
-2017-09-17 23:00:00,11971.0
-2017-09-18 00:00:00,11000.0
-2017-09-16 01:00:00,11474.0
-2017-09-16 02:00:00,10678.0
-2017-09-16 03:00:00,10002.0
-2017-09-16 04:00:00,9542.0
-2017-09-16 05:00:00,9313.0
-2017-09-16 06:00:00,9187.0
-2017-09-16 07:00:00,9319.0
-2017-09-16 08:00:00,9540.0
-2017-09-16 09:00:00,9929.0
-2017-09-16 10:00:00,10937.0
-2017-09-16 11:00:00,11925.0
-2017-09-16 12:00:00,12927.0
-2017-09-16 13:00:00,13852.0
-2017-09-16 14:00:00,14427.0
-2017-09-16 15:00:00,14709.0
-2017-09-16 16:00:00,15013.0
-2017-09-16 17:00:00,15226.0
-2017-09-16 18:00:00,15216.0
-2017-09-16 19:00:00,14855.0
-2017-09-16 20:00:00,14234.0
-2017-09-16 21:00:00,14020.0
-2017-09-16 22:00:00,13527.0
-2017-09-16 23:00:00,12963.0
-2017-09-17 00:00:00,12105.0
-2017-09-15 01:00:00,10357.0
-2017-09-15 02:00:00,9665.0
-2017-09-15 03:00:00,9194.0
-2017-09-15 04:00:00,8868.0
-2017-09-15 05:00:00,8695.0
-2017-09-15 06:00:00,8821.0
-2017-09-15 07:00:00,9412.0
-2017-09-15 08:00:00,10375.0
-2017-09-15 09:00:00,11057.0
-2017-09-15 10:00:00,11742.0
-2017-09-15 11:00:00,12436.0
-2017-09-15 12:00:00,13200.0
-2017-09-15 13:00:00,13890.0
-2017-09-15 14:00:00,14479.0
-2017-09-15 15:00:00,15074.0
-2017-09-15 16:00:00,15479.0
-2017-09-15 17:00:00,15796.0
-2017-09-15 18:00:00,15944.0
-2017-09-15 19:00:00,15644.0
-2017-09-15 20:00:00,14958.0
-2017-09-15 21:00:00,14707.0
-2017-09-15 22:00:00,14148.0
-2017-09-15 23:00:00,13499.0
-2017-09-16 00:00:00,12544.0
-2017-09-14 01:00:00,9690.0
-2017-09-14 02:00:00,9072.0
-2017-09-14 03:00:00,8688.0
-2017-09-14 04:00:00,8421.0
-2017-09-14 05:00:00,8300.0
-2017-09-14 06:00:00,8478.0
-2017-09-14 07:00:00,9113.0
-2017-09-14 08:00:00,10078.0
-2017-09-14 09:00:00,10720.0
-2017-09-14 10:00:00,11172.0
-2017-09-14 11:00:00,11561.0
-2017-09-14 12:00:00,11983.0
-2017-09-14 13:00:00,12400.0
-2017-09-14 14:00:00,12797.0
-2017-09-14 15:00:00,13247.0
-2017-09-14 16:00:00,13568.0
-2017-09-14 17:00:00,13850.0
-2017-09-14 18:00:00,13976.0
-2017-09-14 19:00:00,13801.0
-2017-09-14 20:00:00,13309.0
-2017-09-14 21:00:00,13353.0
-2017-09-14 22:00:00,13066.0
-2017-09-14 23:00:00,12341.0
-2017-09-15 00:00:00,11305.0
-2017-09-13 01:00:00,9366.0
-2017-09-13 02:00:00,8876.0
-2017-09-13 03:00:00,8543.0
-2017-09-13 04:00:00,8307.0
-2017-09-13 05:00:00,8270.0
-2017-09-13 06:00:00,8428.0
-2017-09-13 07:00:00,9072.0
-2017-09-13 08:00:00,10128.0
-2017-09-13 09:00:00,10764.0
-2017-09-13 10:00:00,11150.0
-2017-09-13 11:00:00,11368.0
-2017-09-13 12:00:00,11733.0
-2017-09-13 13:00:00,12018.0
-2017-09-13 14:00:00,12200.0
-2017-09-13 15:00:00,12427.0
-2017-09-13 16:00:00,12440.0
-2017-09-13 17:00:00,12326.0
-2017-09-13 18:00:00,12235.0
-2017-09-13 19:00:00,12096.0
-2017-09-13 20:00:00,11860.0
-2017-09-13 21:00:00,12120.0
-2017-09-13 22:00:00,11940.0
-2017-09-13 23:00:00,11347.0
-2017-09-14 00:00:00,10515.0
-2017-09-12 01:00:00,9021.0
-2017-09-12 02:00:00,8568.0
-2017-09-12 03:00:00,8263.0
-2017-09-12 04:00:00,8099.0
-2017-09-12 05:00:00,8047.0
-2017-09-12 06:00:00,8210.0
-2017-09-12 07:00:00,8847.0
-2017-09-12 08:00:00,9771.0
-2017-09-12 09:00:00,10378.0
-2017-09-12 10:00:00,10931.0
-2017-09-12 11:00:00,11310.0
-2017-09-12 12:00:00,11637.0
-2017-09-12 13:00:00,11837.0
-2017-09-12 14:00:00,12011.0
-2017-09-12 15:00:00,12207.0
-2017-09-12 16:00:00,12310.0
-2017-09-12 17:00:00,12272.0
-2017-09-12 18:00:00,12220.0
-2017-09-12 19:00:00,11886.0
-2017-09-12 20:00:00,11506.0
-2017-09-12 21:00:00,11678.0
-2017-09-12 22:00:00,11508.0
-2017-09-12 23:00:00,10902.0
-2017-09-13 00:00:00,10116.0
-2017-09-11 01:00:00,8416.0
-2017-09-11 02:00:00,8053.0
-2017-09-11 03:00:00,7799.0
-2017-09-11 04:00:00,7677.0
-2017-09-11 05:00:00,7601.0
-2017-09-11 06:00:00,7800.0
-2017-09-11 07:00:00,8449.0
-2017-09-11 08:00:00,9351.0
-2017-09-11 09:00:00,9960.0
-2017-09-11 10:00:00,10369.0
-2017-09-11 11:00:00,10738.0
-2017-09-11 12:00:00,11105.0
-2017-09-11 13:00:00,11308.0
-2017-09-11 14:00:00,11468.0
-2017-09-11 15:00:00,11655.0
-2017-09-11 16:00:00,11731.0
-2017-09-11 17:00:00,11699.0
-2017-09-11 18:00:00,11547.0
-2017-09-11 19:00:00,11280.0
-2017-09-11 20:00:00,11004.0
-2017-09-11 21:00:00,11216.0
-2017-09-11 22:00:00,11081.0
-2017-09-11 23:00:00,10499.0
-2017-09-12 00:00:00,9774.0
-2017-09-10 01:00:00,8528.0
-2017-09-10 02:00:00,8083.0
-2017-09-10 03:00:00,7730.0
-2017-09-10 04:00:00,7468.0
-2017-09-10 05:00:00,7314.0
-2017-09-10 06:00:00,7263.0
-2017-09-10 07:00:00,7351.0
-2017-09-10 08:00:00,7402.0
-2017-09-10 09:00:00,7520.0
-2017-09-10 10:00:00,7934.0
-2017-09-10 11:00:00,8390.0
-2017-09-10 12:00:00,8669.0
-2017-09-10 13:00:00,8896.0
-2017-09-10 14:00:00,9033.0
-2017-09-10 15:00:00,9128.0
-2017-09-10 16:00:00,9270.0
-2017-09-10 17:00:00,9363.0
-2017-09-10 18:00:00,9470.0
-2017-09-10 19:00:00,9481.0
-2017-09-10 20:00:00,9439.0
-2017-09-10 21:00:00,9799.0
-2017-09-10 22:00:00,9847.0
-2017-09-10 23:00:00,9464.0
-2017-09-11 00:00:00,8964.0
-2017-09-09 01:00:00,8909.0
-2017-09-09 02:00:00,8494.0
-2017-09-09 03:00:00,8140.0
-2017-09-09 04:00:00,7949.0
-2017-09-09 05:00:00,7823.0
-2017-09-09 06:00:00,7840.0
-2017-09-09 07:00:00,8100.0
-2017-09-09 08:00:00,8318.0
-2017-09-09 09:00:00,8622.0
-2017-09-09 10:00:00,9128.0
-2017-09-09 11:00:00,9519.0
-2017-09-09 12:00:00,9774.0
-2017-09-09 13:00:00,9868.0
-2017-09-09 14:00:00,9929.0
-2017-09-09 15:00:00,9904.0
-2017-09-09 16:00:00,9913.0
-2017-09-09 17:00:00,9931.0
-2017-09-09 18:00:00,9950.0
-2017-09-09 19:00:00,9847.0
-2017-09-09 20:00:00,9636.0
-2017-09-09 21:00:00,9875.0
-2017-09-09 22:00:00,9833.0
-2017-09-09 23:00:00,9552.0
-2017-09-10 00:00:00,9055.0
-2017-09-08 01:00:00,8892.0
-2017-09-08 02:00:00,8427.0
-2017-09-08 03:00:00,8122.0
-2017-09-08 04:00:00,7938.0
-2017-09-08 05:00:00,7862.0
-2017-09-08 06:00:00,8007.0
-2017-09-08 07:00:00,8598.0
-2017-09-08 08:00:00,9607.0
-2017-09-08 09:00:00,10207.0
-2017-09-08 10:00:00,10648.0
-2017-09-08 11:00:00,10972.0
-2017-09-08 12:00:00,11263.0
-2017-09-08 13:00:00,11379.0
-2017-09-08 14:00:00,11382.0
-2017-09-08 15:00:00,11423.0
-2017-09-08 16:00:00,11345.0
-2017-09-08 17:00:00,11211.0
-2017-09-08 18:00:00,10987.0
-2017-09-08 19:00:00,10707.0
-2017-09-08 20:00:00,10491.0
-2017-09-08 21:00:00,10659.0
-2017-09-08 22:00:00,10643.0
-2017-09-08 23:00:00,10231.0
-2017-09-09 00:00:00,9637.0
-2017-09-07 01:00:00,8740.0
-2017-09-07 02:00:00,8285.0
-2017-09-07 03:00:00,7989.0
-2017-09-07 04:00:00,7831.0
-2017-09-07 05:00:00,7809.0
-2017-09-07 06:00:00,7961.0
-2017-09-07 07:00:00,8559.0
-2017-09-07 08:00:00,9475.0
-2017-09-07 09:00:00,10031.0
-2017-09-07 10:00:00,10418.0
-2017-09-07 11:00:00,10724.0
-2017-09-07 12:00:00,11012.0
-2017-09-07 13:00:00,11096.0
-2017-09-07 14:00:00,11147.0
-2017-09-07 15:00:00,11200.0
-2017-09-07 16:00:00,11118.0
-2017-09-07 17:00:00,11032.0
-2017-09-07 18:00:00,10905.0
-2017-09-07 19:00:00,10738.0
-2017-09-07 20:00:00,10510.0
-2017-09-07 21:00:00,10829.0
-2017-09-07 22:00:00,10827.0
-2017-09-07 23:00:00,10313.0
-2017-09-08 00:00:00,9577.0
-2017-09-06 01:00:00,8866.0
-2017-09-06 02:00:00,8381.0
-2017-09-06 03:00:00,8091.0
-2017-09-06 04:00:00,7888.0
-2017-09-06 05:00:00,7836.0
-2017-09-06 06:00:00,8008.0
-2017-09-06 07:00:00,8575.0
-2017-09-06 08:00:00,9433.0
-2017-09-06 09:00:00,10007.0
-2017-09-06 10:00:00,10350.0
-2017-09-06 11:00:00,10612.0
-2017-09-06 12:00:00,10875.0
-2017-09-06 13:00:00,11040.0
-2017-09-06 14:00:00,11086.0
-2017-09-06 15:00:00,11178.0
-2017-09-06 16:00:00,11077.0
-2017-09-06 17:00:00,10913.0
-2017-09-06 18:00:00,10805.0
-2017-09-06 19:00:00,10649.0
-2017-09-06 20:00:00,10488.0
-2017-09-06 21:00:00,10741.0
-2017-09-06 22:00:00,10668.0
-2017-09-06 23:00:00,10154.0
-2017-09-07 00:00:00,9448.0
-2017-09-05 01:00:00,8889.0
-2017-09-05 02:00:00,8376.0
-2017-09-05 03:00:00,8065.0
-2017-09-05 04:00:00,7853.0
-2017-09-05 05:00:00,7725.0
-2017-09-05 06:00:00,7889.0
-2017-09-05 07:00:00,8534.0
-2017-09-05 08:00:00,9417.0
-2017-09-05 09:00:00,10076.0
-2017-09-05 10:00:00,10546.0
-2017-09-05 11:00:00,10888.0
-2017-09-05 12:00:00,11298.0
-2017-09-05 13:00:00,11536.0
-2017-09-05 14:00:00,11650.0
-2017-09-05 15:00:00,11801.0
-2017-09-05 16:00:00,11763.0
-2017-09-05 17:00:00,11625.0
-2017-09-05 18:00:00,11367.0
-2017-09-05 19:00:00,11007.0
-2017-09-05 20:00:00,10711.0
-2017-09-05 21:00:00,10905.0
-2017-09-05 22:00:00,10838.0
-2017-09-05 23:00:00,10301.0
-2017-09-06 00:00:00,9557.0
-2017-09-04 01:00:00,9306.0
-2017-09-04 02:00:00,8786.0
-2017-09-04 03:00:00,8370.0
-2017-09-04 04:00:00,8107.0
-2017-09-04 05:00:00,7928.0
-2017-09-04 06:00:00,7932.0
-2017-09-04 07:00:00,8062.0
-2017-09-04 08:00:00,8202.0
-2017-09-04 09:00:00,8294.0
-2017-09-04 10:00:00,8814.0
-2017-09-04 11:00:00,9592.0
-2017-09-04 12:00:00,10478.0
-2017-09-04 13:00:00,11352.0
-2017-09-04 14:00:00,11898.0
-2017-09-04 15:00:00,11937.0
-2017-09-04 16:00:00,11678.0
-2017-09-04 17:00:00,11540.0
-2017-09-04 18:00:00,11455.0
-2017-09-04 19:00:00,11322.0
-2017-09-04 20:00:00,11026.0
-2017-09-04 21:00:00,11163.0
-2017-09-04 22:00:00,10979.0
-2017-09-04 23:00:00,10341.0
-2017-09-05 00:00:00,9592.0
-2017-09-03 01:00:00,8573.0
-2017-09-03 02:00:00,8179.0
-2017-09-03 03:00:00,7796.0
-2017-09-03 04:00:00,7591.0
-2017-09-03 05:00:00,7467.0
-2017-09-03 06:00:00,7443.0
-2017-09-03 07:00:00,7513.0
-2017-09-03 08:00:00,7512.0
-2017-09-03 09:00:00,7748.0
-2017-09-03 10:00:00,8266.0
-2017-09-03 11:00:00,8853.0
-2017-09-03 12:00:00,9378.0
-2017-09-03 13:00:00,9877.0
-2017-09-03 14:00:00,10186.0
-2017-09-03 15:00:00,10509.0
-2017-09-03 16:00:00,10906.0
-2017-09-03 17:00:00,11197.0
-2017-09-03 18:00:00,11404.0
-2017-09-03 19:00:00,11392.0
-2017-09-03 20:00:00,11061.0
-2017-09-03 21:00:00,10971.0
-2017-09-03 22:00:00,10932.0
-2017-09-03 23:00:00,10540.0
-2017-09-04 00:00:00,9925.0
-2017-09-02 01:00:00,8989.0
-2017-09-02 02:00:00,8411.0
-2017-09-02 03:00:00,8084.0
-2017-09-02 04:00:00,7837.0
-2017-09-02 05:00:00,7688.0
-2017-09-02 06:00:00,7692.0
-2017-09-02 07:00:00,7820.0
-2017-09-02 08:00:00,7919.0
-2017-09-02 09:00:00,8115.0
-2017-09-02 10:00:00,8680.0
-2017-09-02 11:00:00,9115.0
-2017-09-02 12:00:00,9406.0
-2017-09-02 13:00:00,9559.0
-2017-09-02 14:00:00,9674.0
-2017-09-02 15:00:00,9708.0
-2017-09-02 16:00:00,9639.0
-2017-09-02 17:00:00,9712.0
-2017-09-02 18:00:00,9753.0
-2017-09-02 19:00:00,9713.0
-2017-09-02 20:00:00,9639.0
-2017-09-02 21:00:00,9887.0
-2017-09-02 22:00:00,9862.0
-2017-09-02 23:00:00,9581.0
-2017-09-03 00:00:00,9149.0
-2017-09-01 01:00:00,9543.0
-2017-09-01 02:00:00,9011.0
-2017-09-01 03:00:00,8620.0
-2017-09-01 04:00:00,8322.0
-2017-09-01 05:00:00,8193.0
-2017-09-01 06:00:00,8309.0
-2017-09-01 07:00:00,8813.0
-2017-09-01 08:00:00,9543.0
-2017-09-01 09:00:00,10119.0
-2017-09-01 10:00:00,10604.0
-2017-09-01 11:00:00,10877.0
-2017-09-01 12:00:00,11169.0
-2017-09-01 13:00:00,11304.0
-2017-09-01 14:00:00,11427.0
-2017-09-01 15:00:00,11554.0
-2017-09-01 16:00:00,11578.0
-2017-09-01 17:00:00,11503.0
-2017-09-01 18:00:00,11404.0
-2017-09-01 19:00:00,11187.0
-2017-09-01 20:00:00,10775.0
-2017-09-01 21:00:00,10709.0
-2017-09-01 22:00:00,10734.0
-2017-09-01 23:00:00,10319.0
-2017-09-02 00:00:00,9660.0
-2017-08-31 01:00:00,10500.0
-2017-08-31 02:00:00,9809.0
-2017-08-31 03:00:00,9342.0
-2017-08-31 04:00:00,9079.0
-2017-08-31 05:00:00,8944.0
-2017-08-31 06:00:00,9099.0
-2017-08-31 07:00:00,9694.0
-2017-08-31 08:00:00,10572.0
-2017-08-31 09:00:00,11238.0
-2017-08-31 10:00:00,11741.0
-2017-08-31 11:00:00,12159.0
-2017-08-31 12:00:00,12585.0
-2017-08-31 13:00:00,12794.0
-2017-08-31 14:00:00,12930.0
-2017-08-31 15:00:00,13044.0
-2017-08-31 16:00:00,13006.0
-2017-08-31 17:00:00,12906.0
-2017-08-31 18:00:00,12697.0
-2017-08-31 19:00:00,12248.0
-2017-08-31 20:00:00,11666.0
-2017-08-31 21:00:00,11668.0
-2017-08-31 22:00:00,11674.0
-2017-08-31 23:00:00,11152.0
-2017-09-01 00:00:00,10388.0
-2017-08-30 01:00:00,10053.0
-2017-08-30 02:00:00,9407.0
-2017-08-30 03:00:00,8986.0
-2017-08-30 04:00:00,8696.0
-2017-08-30 05:00:00,8608.0
-2017-08-30 06:00:00,8755.0
-2017-08-30 07:00:00,9344.0
-2017-08-30 08:00:00,10164.0
-2017-08-30 09:00:00,10923.0
-2017-08-30 10:00:00,11590.0
-2017-08-30 11:00:00,12166.0
-2017-08-30 12:00:00,12778.0
-2017-08-30 13:00:00,13154.0
-2017-08-30 14:00:00,13547.0
-2017-08-30 15:00:00,13922.0
-2017-08-30 16:00:00,14196.0
-2017-08-30 17:00:00,14367.0
-2017-08-30 18:00:00,14382.0
-2017-08-30 19:00:00,14208.0
-2017-08-30 20:00:00,13664.0
-2017-08-30 21:00:00,13408.0
-2017-08-30 22:00:00,13265.0
-2017-08-30 23:00:00,12523.0
-2017-08-31 00:00:00,11458.0
-2017-08-29 01:00:00,10081.0
-2017-08-29 02:00:00,9453.0
-2017-08-29 03:00:00,9028.0
-2017-08-29 04:00:00,8797.0
-2017-08-29 05:00:00,8686.0
-2017-08-29 06:00:00,8828.0
-2017-08-29 07:00:00,9427.0
-2017-08-29 08:00:00,10310.0
-2017-08-29 09:00:00,11081.0
-2017-08-29 10:00:00,11770.0
-2017-08-29 11:00:00,12352.0
-2017-08-29 12:00:00,12813.0
-2017-08-29 13:00:00,13013.0
-2017-08-29 14:00:00,12996.0
-2017-08-29 15:00:00,13033.0
-2017-08-29 16:00:00,12921.0
-2017-08-29 17:00:00,12659.0
-2017-08-29 18:00:00,12522.0
-2017-08-29 19:00:00,12608.0
-2017-08-29 20:00:00,12371.0
-2017-08-29 21:00:00,12377.0
-2017-08-29 22:00:00,12372.0
-2017-08-29 23:00:00,11817.0
-2017-08-30 00:00:00,10921.0
-2017-08-28 01:00:00,9423.0
-2017-08-28 02:00:00,8980.0
-2017-08-28 03:00:00,8689.0
-2017-08-28 04:00:00,8527.0
-2017-08-28 05:00:00,8477.0
-2017-08-28 06:00:00,8673.0
-2017-08-28 07:00:00,9469.0
-2017-08-28 08:00:00,10413.0
-2017-08-28 09:00:00,11099.0
-2017-08-28 10:00:00,11646.0
-2017-08-28 11:00:00,12122.0
-2017-08-28 12:00:00,12677.0
-2017-08-28 13:00:00,13126.0
-2017-08-28 14:00:00,13516.0
-2017-08-28 15:00:00,13898.0
-2017-08-28 16:00:00,14069.0
-2017-08-28 17:00:00,13860.0
-2017-08-28 18:00:00,13456.0
-2017-08-28 19:00:00,13026.0
-2017-08-28 20:00:00,12586.0
-2017-08-28 21:00:00,12515.0
-2017-08-28 22:00:00,12444.0
-2017-08-28 23:00:00,11848.0
-2017-08-29 00:00:00,10983.0
-2017-08-27 01:00:00,9314.0
-2017-08-27 02:00:00,8868.0
-2017-08-27 03:00:00,8509.0
-2017-08-27 04:00:00,8213.0
-2017-08-27 05:00:00,8031.0
-2017-08-27 06:00:00,7952.0
-2017-08-27 07:00:00,7944.0
-2017-08-27 08:00:00,7838.0
-2017-08-27 09:00:00,7993.0
-2017-08-27 10:00:00,8499.0
-2017-08-27 11:00:00,8904.0
-2017-08-27 12:00:00,9197.0
-2017-08-27 13:00:00,9428.0
-2017-08-27 14:00:00,9608.0
-2017-08-27 15:00:00,9898.0
-2017-08-27 16:00:00,10290.0
-2017-08-27 17:00:00,10484.0
-2017-08-27 18:00:00,10474.0
-2017-08-27 19:00:00,10500.0
-2017-08-27 20:00:00,10550.0
-2017-08-27 21:00:00,10860.0
-2017-08-27 22:00:00,11007.0
-2017-08-27 23:00:00,10673.0
-2017-08-28 00:00:00,10147.0
-2017-08-26 01:00:00,9519.0
-2017-08-26 02:00:00,8949.0
-2017-08-26 03:00:00,8593.0
-2017-08-26 04:00:00,8288.0
-2017-08-26 05:00:00,8146.0
-2017-08-26 06:00:00,8132.0
-2017-08-26 07:00:00,8357.0
-2017-08-26 08:00:00,8563.0
-2017-08-26 09:00:00,8940.0
-2017-08-26 10:00:00,9486.0
-2017-08-26 11:00:00,10002.0
-2017-08-26 12:00:00,10449.0
-2017-08-26 13:00:00,10765.0
-2017-08-26 14:00:00,10967.0
-2017-08-26 15:00:00,11113.0
-2017-08-26 16:00:00,11122.0
-2017-08-26 17:00:00,11008.0
-2017-08-26 18:00:00,10834.0
-2017-08-26 19:00:00,10683.0
-2017-08-26 20:00:00,10548.0
-2017-08-26 21:00:00,10720.0
-2017-08-26 22:00:00,10728.0
-2017-08-26 23:00:00,10424.0
-2017-08-27 00:00:00,9901.0
-2017-08-25 01:00:00,9393.0
-2017-08-25 02:00:00,8853.0
-2017-08-25 03:00:00,8503.0
-2017-08-25 04:00:00,8230.0
-2017-08-25 05:00:00,8112.0
-2017-08-25 06:00:00,8281.0
-2017-08-25 07:00:00,8780.0
-2017-08-25 08:00:00,9486.0
-2017-08-25 09:00:00,10171.0
-2017-08-25 10:00:00,10745.0
-2017-08-25 11:00:00,11261.0
-2017-08-25 12:00:00,11624.0
-2017-08-25 13:00:00,11853.0
-2017-08-25 14:00:00,12006.0
-2017-08-25 15:00:00,12219.0
-2017-08-25 16:00:00,12342.0
-2017-08-25 17:00:00,12399.0
-2017-08-25 18:00:00,12384.0
-2017-08-25 19:00:00,12165.0
-2017-08-25 20:00:00,11713.0
-2017-08-25 21:00:00,11393.0
-2017-08-25 22:00:00,11427.0
-2017-08-25 23:00:00,10945.0
-2017-08-26 00:00:00,10273.0
-2017-08-24 01:00:00,10073.0
-2017-08-24 02:00:00,9431.0
-2017-08-24 03:00:00,9010.0
-2017-08-24 04:00:00,8706.0
-2017-08-24 05:00:00,8581.0
-2017-08-24 06:00:00,8733.0
-2017-08-24 07:00:00,9262.0
-2017-08-24 08:00:00,10080.0
-2017-08-24 09:00:00,10760.0
-2017-08-24 10:00:00,11336.0
-2017-08-24 11:00:00,11885.0
-2017-08-24 12:00:00,12347.0
-2017-08-24 13:00:00,12595.0
-2017-08-24 14:00:00,12802.0
-2017-08-24 15:00:00,12891.0
-2017-08-24 16:00:00,12834.0
-2017-08-24 17:00:00,12704.0
-2017-08-24 18:00:00,12604.0
-2017-08-24 19:00:00,12278.0
-2017-08-24 20:00:00,11763.0
-2017-08-24 21:00:00,11539.0
-2017-08-24 22:00:00,11592.0
-2017-08-24 23:00:00,11029.0
-2017-08-25 00:00:00,10202.0
-2017-08-23 01:00:00,10416.0
-2017-08-23 02:00:00,9703.0
-2017-08-23 03:00:00,9217.0
-2017-08-23 04:00:00,8907.0
-2017-08-23 05:00:00,8734.0
-2017-08-23 06:00:00,8840.0
-2017-08-23 07:00:00,9381.0
-2017-08-23 08:00:00,10123.0
-2017-08-23 09:00:00,10924.0
-2017-08-23 10:00:00,11608.0
-2017-08-23 11:00:00,12089.0
-2017-08-23 12:00:00,12594.0
-2017-08-23 13:00:00,12967.0
-2017-08-23 14:00:00,13254.0
-2017-08-23 15:00:00,13539.0
-2017-08-23 16:00:00,13736.0
-2017-08-23 17:00:00,13831.0
-2017-08-23 18:00:00,13782.0
-2017-08-23 19:00:00,13521.0
-2017-08-23 20:00:00,12959.0
-2017-08-23 21:00:00,12558.0
-2017-08-23 22:00:00,12593.0
-2017-08-23 23:00:00,11923.0
-2017-08-24 00:00:00,10960.0
-2017-08-22 01:00:00,12788.0
-2017-08-22 02:00:00,11767.0
-2017-08-22 03:00:00,11236.0
-2017-08-22 04:00:00,10930.0
-2017-08-22 05:00:00,10746.0
-2017-08-22 06:00:00,10899.0
-2017-08-22 07:00:00,11465.0
-2017-08-22 08:00:00,12308.0
-2017-08-22 09:00:00,12881.0
-2017-08-22 10:00:00,13386.0
-2017-08-22 11:00:00,13734.0
-2017-08-22 12:00:00,14114.0
-2017-08-22 13:00:00,14356.0
-2017-08-22 14:00:00,14789.0
-2017-08-22 15:00:00,15312.0
-2017-08-22 16:00:00,15536.0
-2017-08-22 17:00:00,15641.0
-2017-08-22 18:00:00,15548.0
-2017-08-22 19:00:00,15192.0
-2017-08-22 20:00:00,14382.0
-2017-08-22 21:00:00,13607.0
-2017-08-22 22:00:00,13358.0
-2017-08-22 23:00:00,12553.0
-2017-08-23 00:00:00,11478.0
-2017-08-21 01:00:00,12211.0
-2017-08-21 02:00:00,11444.0
-2017-08-21 03:00:00,10871.0
-2017-08-21 04:00:00,10479.0
-2017-08-21 05:00:00,10340.0
-2017-08-21 06:00:00,10478.0
-2017-08-21 07:00:00,11216.0
-2017-08-21 08:00:00,12095.0
-2017-08-21 09:00:00,13079.0
-2017-08-21 10:00:00,13913.0
-2017-08-21 11:00:00,14800.0
-2017-08-21 12:00:00,15724.0
-2017-08-21 13:00:00,16140.0
-2017-08-21 14:00:00,16319.0
-2017-08-21 15:00:00,15908.0
-2017-08-21 16:00:00,16202.0
-2017-08-21 17:00:00,16750.0
-2017-08-21 18:00:00,17313.0
-2017-08-21 19:00:00,17064.0
-2017-08-21 20:00:00,16384.0
-2017-08-21 21:00:00,15938.0
-2017-08-21 22:00:00,15778.0
-2017-08-21 23:00:00,15017.0
-2017-08-22 00:00:00,13930.0
-2017-08-20 01:00:00,10816.0
-2017-08-20 02:00:00,10076.0
-2017-08-20 03:00:00,9551.0
-2017-08-20 04:00:00,9088.0
-2017-08-20 05:00:00,8831.0
-2017-08-20 06:00:00,8677.0
-2017-08-20 07:00:00,8725.0
-2017-08-20 08:00:00,8638.0
-2017-08-20 09:00:00,9094.0
-2017-08-20 10:00:00,9935.0
-2017-08-20 11:00:00,10918.0
-2017-08-20 12:00:00,11924.0
-2017-08-20 13:00:00,12980.0
-2017-08-20 14:00:00,13953.0
-2017-08-20 15:00:00,14708.0
-2017-08-20 16:00:00,15112.0
-2017-08-20 17:00:00,14964.0
-2017-08-20 18:00:00,14848.0
-2017-08-20 19:00:00,14590.0
-2017-08-20 20:00:00,14424.0
-2017-08-20 21:00:00,14422.0
-2017-08-20 22:00:00,14444.0
-2017-08-20 23:00:00,13940.0
-2017-08-21 00:00:00,13176.0
-2017-08-19 01:00:00,11690.0
-2017-08-19 02:00:00,10835.0
-2017-08-19 03:00:00,10197.0
-2017-08-19 04:00:00,9738.0
-2017-08-19 05:00:00,9760.0
-2017-08-19 06:00:00,9573.0
-2017-08-19 07:00:00,9697.0
-2017-08-19 08:00:00,9765.0
-2017-08-19 09:00:00,10227.0
-2017-08-19 10:00:00,11202.0
-2017-08-19 11:00:00,12146.0
-2017-08-19 12:00:00,13000.0
-2017-08-19 13:00:00,13743.0
-2017-08-19 14:00:00,14374.0
-2017-08-19 15:00:00,14814.0
-2017-08-19 16:00:00,15242.0
-2017-08-19 17:00:00,15585.0
-2017-08-19 18:00:00,15692.0
-2017-08-19 19:00:00,15564.0
-2017-08-19 20:00:00,14919.0
-2017-08-19 21:00:00,13968.0
-2017-08-19 22:00:00,13508.0
-2017-08-19 23:00:00,12850.0
-2017-08-20 00:00:00,11957.0
-2017-08-18 01:00:00,12036.0
-2017-08-18 02:00:00,11176.0
-2017-08-18 03:00:00,10524.0
-2017-08-18 04:00:00,10060.0
-2017-08-18 05:00:00,9834.0
-2017-08-18 06:00:00,9864.0
-2017-08-18 07:00:00,10401.0
-2017-08-18 08:00:00,11120.0
-2017-08-18 09:00:00,12021.0
-2017-08-18 10:00:00,12710.0
-2017-08-18 11:00:00,13190.0
-2017-08-18 12:00:00,13587.0
-2017-08-18 13:00:00,14063.0
-2017-08-18 14:00:00,14650.0
-2017-08-18 15:00:00,15240.0
-2017-08-18 16:00:00,15708.0
-2017-08-18 17:00:00,16105.0
-2017-08-18 18:00:00,16229.0
-2017-08-18 19:00:00,15941.0
-2017-08-18 20:00:00,15232.0
-2017-08-18 21:00:00,14489.0
-2017-08-18 22:00:00,14307.0
-2017-08-18 23:00:00,13670.0
-2017-08-19 00:00:00,12724.0
-2017-08-17 01:00:00,13266.0
-2017-08-17 02:00:00,12442.0
-2017-08-17 03:00:00,11819.0
-2017-08-17 04:00:00,11312.0
-2017-08-17 05:00:00,11011.0
-2017-08-17 06:00:00,11019.0
-2017-08-17 07:00:00,11656.0
-2017-08-17 08:00:00,12611.0
-2017-08-17 09:00:00,13344.0
-2017-08-17 10:00:00,13788.0
-2017-08-17 11:00:00,14251.0
-2017-08-17 12:00:00,14575.0
-2017-08-17 13:00:00,14982.0
-2017-08-17 14:00:00,15687.0
-2017-08-17 15:00:00,16265.0
-2017-08-17 16:00:00,16501.0
-2017-08-17 17:00:00,16662.0
-2017-08-17 18:00:00,16676.0
-2017-08-17 19:00:00,16422.0
-2017-08-17 20:00:00,15742.0
-2017-08-17 21:00:00,15161.0
-2017-08-17 22:00:00,15050.0
-2017-08-17 23:00:00,14344.0
-2017-08-18 00:00:00,13169.0
-2017-08-16 01:00:00,11418.0
-2017-08-16 02:00:00,10626.0
-2017-08-16 03:00:00,10074.0
-2017-08-16 04:00:00,9732.0
-2017-08-16 05:00:00,9532.0
-2017-08-16 06:00:00,9635.0
-2017-08-16 07:00:00,10237.0
-2017-08-16 08:00:00,11101.0
-2017-08-16 09:00:00,12116.0
-2017-08-16 10:00:00,13105.0
-2017-08-16 11:00:00,14056.0
-2017-08-16 12:00:00,15092.0
-2017-08-16 13:00:00,16106.0
-2017-08-16 14:00:00,16994.0
-2017-08-16 15:00:00,17802.0
-2017-08-16 16:00:00,18237.0
-2017-08-16 17:00:00,18282.0
-2017-08-16 18:00:00,17547.0
-2017-08-16 19:00:00,16633.0
-2017-08-16 20:00:00,16042.0
-2017-08-16 21:00:00,15727.0
-2017-08-16 22:00:00,15768.0
-2017-08-16 23:00:00,15274.0
-2017-08-17 00:00:00,14254.0
-2017-08-15 01:00:00,11878.0
-2017-08-15 02:00:00,11038.0
-2017-08-15 03:00:00,10419.0
-2017-08-15 04:00:00,10056.0
-2017-08-15 05:00:00,9789.0
-2017-08-15 06:00:00,9909.0
-2017-08-15 07:00:00,10486.0
-2017-08-15 08:00:00,11253.0
-2017-08-15 09:00:00,12275.0
-2017-08-15 10:00:00,13299.0
-2017-08-15 11:00:00,14164.0
-2017-08-15 12:00:00,15038.0
-2017-08-15 13:00:00,15687.0
-2017-08-15 14:00:00,16249.0
-2017-08-15 15:00:00,16784.0
-2017-08-15 16:00:00,16993.0
-2017-08-15 17:00:00,16984.0
-2017-08-15 18:00:00,16777.0
-2017-08-15 19:00:00,16252.0
-2017-08-15 20:00:00,15236.0
-2017-08-15 21:00:00,14498.0
-2017-08-15 22:00:00,14272.0
-2017-08-15 23:00:00,13553.0
-2017-08-16 00:00:00,12514.0
-2017-08-14 01:00:00,9869.0
-2017-08-14 02:00:00,9357.0
-2017-08-14 03:00:00,8970.0
-2017-08-14 04:00:00,8743.0
-2017-08-14 05:00:00,8616.0
-2017-08-14 06:00:00,8830.0
-2017-08-14 07:00:00,9466.0
-2017-08-14 08:00:00,10192.0
-2017-08-14 09:00:00,11121.0
-2017-08-14 10:00:00,11998.0
-2017-08-14 11:00:00,12803.0
-2017-08-14 12:00:00,13428.0
-2017-08-14 13:00:00,13760.0
-2017-08-14 14:00:00,14066.0
-2017-08-14 15:00:00,14471.0
-2017-08-14 16:00:00,14942.0
-2017-08-14 17:00:00,15328.0
-2017-08-14 18:00:00,15433.0
-2017-08-14 19:00:00,15235.0
-2017-08-14 20:00:00,14731.0
-2017-08-14 21:00:00,14473.0
-2017-08-14 22:00:00,14535.0
-2017-08-14 23:00:00,13990.0
-2017-08-15 00:00:00,12969.0
-2017-08-13 01:00:00,9528.0
-2017-08-13 02:00:00,8985.0
-2017-08-13 03:00:00,8565.0
-2017-08-13 04:00:00,8234.0
-2017-08-13 05:00:00,8038.0
-2017-08-13 06:00:00,7980.0
-2017-08-13 07:00:00,7982.0
-2017-08-13 08:00:00,7866.0
-2017-08-13 09:00:00,8272.0
-2017-08-13 10:00:00,8883.0
-2017-08-13 11:00:00,9542.0
-2017-08-13 12:00:00,10066.0
-2017-08-13 13:00:00,10492.0
-2017-08-13 14:00:00,10899.0
-2017-08-13 15:00:00,11289.0
-2017-08-13 16:00:00,11493.0
-2017-08-13 17:00:00,11611.0
-2017-08-13 18:00:00,11623.0
-2017-08-13 19:00:00,11526.0
-2017-08-13 20:00:00,11273.0
-2017-08-13 21:00:00,11144.0
-2017-08-13 22:00:00,11384.0
-2017-08-13 23:00:00,11044.0
-2017-08-14 00:00:00,10562.0
-2017-08-12 01:00:00,10513.0
-2017-08-12 02:00:00,9799.0
-2017-08-12 03:00:00,9222.0
-2017-08-12 04:00:00,8923.0
-2017-08-12 05:00:00,8695.0
-2017-08-12 06:00:00,8642.0
-2017-08-12 07:00:00,8699.0
-2017-08-12 08:00:00,8822.0
-2017-08-12 09:00:00,9306.0
-2017-08-12 10:00:00,10073.0
-2017-08-12 11:00:00,10543.0
-2017-08-12 12:00:00,10973.0
-2017-08-12 13:00:00,11151.0
-2017-08-12 14:00:00,11279.0
-2017-08-12 15:00:00,11334.0
-2017-08-12 16:00:00,11492.0
-2017-08-12 17:00:00,11671.0
-2017-08-12 18:00:00,11816.0
-2017-08-12 19:00:00,11794.0
-2017-08-12 20:00:00,11540.0
-2017-08-12 21:00:00,11096.0
-2017-08-12 22:00:00,11101.0
-2017-08-12 23:00:00,10821.0
-2017-08-13 00:00:00,10151.0
-2017-08-11 01:00:00,11421.0
-2017-08-11 02:00:00,10598.0
-2017-08-11 03:00:00,10007.0
-2017-08-11 04:00:00,9631.0
-2017-08-11 05:00:00,9477.0
-2017-08-11 06:00:00,9551.0
-2017-08-11 07:00:00,10070.0
-2017-08-11 08:00:00,10747.0
-2017-08-11 09:00:00,11498.0
-2017-08-11 10:00:00,12342.0
-2017-08-11 11:00:00,13155.0
-2017-08-11 12:00:00,13690.0
-2017-08-11 13:00:00,14054.0
-2017-08-11 14:00:00,14302.0
-2017-08-11 15:00:00,14533.0
-2017-08-11 16:00:00,14599.0
-2017-08-11 17:00:00,14486.0
-2017-08-11 18:00:00,14260.0
-2017-08-11 19:00:00,13949.0
-2017-08-11 20:00:00,13391.0
-2017-08-11 21:00:00,12790.0
-2017-08-11 22:00:00,12751.0
-2017-08-11 23:00:00,12259.0
-2017-08-12 00:00:00,11457.0
-2017-08-10 01:00:00,11216.0
-2017-08-10 02:00:00,10374.0
-2017-08-10 03:00:00,9813.0
-2017-08-10 04:00:00,9393.0
-2017-08-10 05:00:00,9197.0
-2017-08-10 06:00:00,9259.0
-2017-08-10 07:00:00,9822.0
-2017-08-10 08:00:00,10461.0
-2017-08-10 09:00:00,11336.0
-2017-08-10 10:00:00,12136.0
-2017-08-10 11:00:00,12890.0
-2017-08-10 12:00:00,13564.0
-2017-08-10 13:00:00,14219.0
-2017-08-10 14:00:00,15077.0
-2017-08-10 15:00:00,15777.0
-2017-08-10 16:00:00,16176.0
-2017-08-10 17:00:00,16306.0
-2017-08-10 18:00:00,15942.0
-2017-08-10 19:00:00,15669.0
-2017-08-10 20:00:00,14884.0
-2017-08-10 21:00:00,14300.0
-2017-08-10 22:00:00,14224.0
-2017-08-10 23:00:00,13627.0
-2017-08-11 00:00:00,12595.0
-2017-08-09 01:00:00,10853.0
-2017-08-09 02:00:00,10083.0
-2017-08-09 03:00:00,9508.0
-2017-08-09 04:00:00,9142.0
-2017-08-09 05:00:00,8982.0
-2017-08-09 06:00:00,9050.0
-2017-08-09 07:00:00,9550.0
-2017-08-09 08:00:00,10179.0
-2017-08-09 09:00:00,11081.0
-2017-08-09 10:00:00,12020.0
-2017-08-09 11:00:00,12796.0
-2017-08-09 12:00:00,13516.0
-2017-08-09 13:00:00,14049.0
-2017-08-09 14:00:00,14485.0
-2017-08-09 15:00:00,14932.0
-2017-08-09 16:00:00,15153.0
-2017-08-09 17:00:00,15308.0
-2017-08-09 18:00:00,15491.0
-2017-08-09 19:00:00,15298.0
-2017-08-09 20:00:00,14778.0
-2017-08-09 21:00:00,14182.0
-2017-08-09 22:00:00,13955.0
-2017-08-09 23:00:00,13315.0
-2017-08-10 00:00:00,12202.0
-2017-08-08 01:00:00,9809.0
-2017-08-08 02:00:00,9181.0
-2017-08-08 03:00:00,8774.0
-2017-08-08 04:00:00,8495.0
-2017-08-08 05:00:00,8377.0
-2017-08-08 06:00:00,8479.0
-2017-08-08 07:00:00,8995.0
-2017-08-08 08:00:00,9633.0
-2017-08-08 09:00:00,10536.0
-2017-08-08 10:00:00,11253.0
-2017-08-08 11:00:00,11873.0
-2017-08-08 12:00:00,12510.0
-2017-08-08 13:00:00,13025.0
-2017-08-08 14:00:00,13488.0
-2017-08-08 15:00:00,14024.0
-2017-08-08 16:00:00,14426.0
-2017-08-08 17:00:00,14706.0
-2017-08-08 18:00:00,14847.0
-2017-08-08 19:00:00,14716.0
-2017-08-08 20:00:00,14306.0
-2017-08-08 21:00:00,13701.0
-2017-08-08 22:00:00,13555.0
-2017-08-08 23:00:00,12940.0
-2017-08-09 00:00:00,11918.0
-2017-08-07 01:00:00,9595.0
-2017-08-07 02:00:00,9110.0
-2017-08-07 03:00:00,8698.0
-2017-08-07 04:00:00,8501.0
-2017-08-07 05:00:00,8384.0
-2017-08-07 06:00:00,8618.0
-2017-08-07 07:00:00,9270.0
-2017-08-07 08:00:00,9985.0
-2017-08-07 09:00:00,10893.0
-2017-08-07 10:00:00,11619.0
-2017-08-07 11:00:00,12180.0
-2017-08-07 12:00:00,12675.0
-2017-08-07 13:00:00,12961.0
-2017-08-07 14:00:00,13225.0
-2017-08-07 15:00:00,13449.0
-2017-08-07 16:00:00,13535.0
-2017-08-07 17:00:00,13642.0
-2017-08-07 18:00:00,13683.0
-2017-08-07 19:00:00,13483.0
-2017-08-07 20:00:00,12962.0
-2017-08-07 21:00:00,12346.0
-2017-08-07 22:00:00,12128.0
-2017-08-07 23:00:00,11634.0
-2017-08-08 00:00:00,10747.0
-2017-08-06 01:00:00,9695.0
-2017-08-06 02:00:00,9138.0
-2017-08-06 03:00:00,8738.0
-2017-08-06 04:00:00,8444.0
-2017-08-06 05:00:00,8247.0
-2017-08-06 06:00:00,8164.0
-2017-08-06 07:00:00,8180.0
-2017-08-06 08:00:00,8175.0
-2017-08-06 09:00:00,8405.0
-2017-08-06 10:00:00,8879.0
-2017-08-06 11:00:00,9396.0
-2017-08-06 12:00:00,9893.0
-2017-08-06 13:00:00,10407.0
-2017-08-06 14:00:00,10635.0
-2017-08-06 15:00:00,10799.0
-2017-08-06 16:00:00,10890.0
-2017-08-06 17:00:00,11188.0
-2017-08-06 18:00:00,11434.0
-2017-08-06 19:00:00,11542.0
-2017-08-06 20:00:00,11359.0
-2017-08-06 21:00:00,11077.0
-2017-08-06 22:00:00,11202.0
-2017-08-06 23:00:00,10937.0
-2017-08-07 00:00:00,10353.0
-2017-08-05 01:00:00,9227.0
-2017-08-05 02:00:00,8747.0
-2017-08-05 03:00:00,8385.0
-2017-08-05 04:00:00,8197.0
-2017-08-05 05:00:00,8047.0
-2017-08-05 06:00:00,8076.0
-2017-08-05 07:00:00,8216.0
-2017-08-05 08:00:00,8307.0
-2017-08-05 09:00:00,8834.0
-2017-08-05 10:00:00,9451.0
-2017-08-05 11:00:00,10048.0
-2017-08-05 12:00:00,10547.0
-2017-08-05 13:00:00,10928.0
-2017-08-05 14:00:00,11240.0
-2017-08-05 15:00:00,11394.0
-2017-08-05 16:00:00,11542.0
-2017-08-05 17:00:00,11671.0
-2017-08-05 18:00:00,11748.0
-2017-08-05 19:00:00,11681.0
-2017-08-05 20:00:00,11322.0
-2017-08-05 21:00:00,11040.0
-2017-08-05 22:00:00,11246.0
-2017-08-05 23:00:00,10956.0
-2017-08-06 00:00:00,10338.0
-2017-08-04 01:00:00,11363.0
-2017-08-04 02:00:00,10344.0
-2017-08-04 03:00:00,9612.0
-2017-08-04 04:00:00,9175.0
-2017-08-04 05:00:00,8941.0
-2017-08-04 06:00:00,8976.0
-2017-08-04 07:00:00,9373.0
-2017-08-04 08:00:00,9867.0
-2017-08-04 09:00:00,10428.0
-2017-08-04 10:00:00,10871.0
-2017-08-04 11:00:00,11084.0
-2017-08-04 12:00:00,11271.0
-2017-08-04 13:00:00,11332.0
-2017-08-04 14:00:00,11324.0
-2017-08-04 15:00:00,11315.0
-2017-08-04 16:00:00,11207.0
-2017-08-04 17:00:00,11049.0
-2017-08-04 18:00:00,10934.0
-2017-08-04 19:00:00,10779.0
-2017-08-04 20:00:00,10608.0
-2017-08-04 21:00:00,10450.0
-2017-08-04 22:00:00,10639.0
-2017-08-04 23:00:00,10446.0
-2017-08-05 00:00:00,9859.0
-2017-08-03 01:00:00,12560.0
-2017-08-03 02:00:00,11671.0
-2017-08-03 03:00:00,11010.0
-2017-08-03 04:00:00,10567.0
-2017-08-03 05:00:00,10298.0
-2017-08-03 06:00:00,10387.0
-2017-08-03 07:00:00,10881.0
-2017-08-03 08:00:00,11680.0
-2017-08-03 09:00:00,12660.0
-2017-08-03 10:00:00,13595.0
-2017-08-03 11:00:00,14666.0
-2017-08-03 12:00:00,15761.0
-2017-08-03 13:00:00,16514.0
-2017-08-03 14:00:00,16740.0
-2017-08-03 15:00:00,16781.0
-2017-08-03 16:00:00,16421.0
-2017-08-03 17:00:00,16122.0
-2017-08-03 18:00:00,16282.0
-2017-08-03 19:00:00,16086.0
-2017-08-03 20:00:00,15203.0
-2017-08-03 21:00:00,14462.0
-2017-08-03 22:00:00,14259.0
-2017-08-03 23:00:00,13553.0
-2017-08-04 00:00:00,12464.0
-2017-08-02 01:00:00,12508.0
-2017-08-02 02:00:00,11504.0
-2017-08-02 03:00:00,10811.0
-2017-08-02 04:00:00,10340.0
-2017-08-02 05:00:00,10068.0
-2017-08-02 06:00:00,10148.0
-2017-08-02 07:00:00,10632.0
-2017-08-02 08:00:00,11364.0
-2017-08-02 09:00:00,12492.0
-2017-08-02 10:00:00,13560.0
-2017-08-02 11:00:00,14553.0
-2017-08-02 12:00:00,15527.0
-2017-08-02 13:00:00,16112.0
-2017-08-02 14:00:00,16902.0
-2017-08-02 15:00:00,17489.0
-2017-08-02 16:00:00,17846.0
-2017-08-02 17:00:00,17997.0
-2017-08-02 18:00:00,17899.0
-2017-08-02 19:00:00,17440.0
-2017-08-02 20:00:00,16602.0
-2017-08-02 21:00:00,15905.0
-2017-08-02 22:00:00,15581.0
-2017-08-02 23:00:00,14886.0
-2017-08-03 00:00:00,13733.0
-2017-08-01 01:00:00,12008.0
-2017-08-01 02:00:00,11152.0
-2017-08-01 03:00:00,10564.0
-2017-08-01 04:00:00,10136.0
-2017-08-01 05:00:00,9906.0
-2017-08-01 06:00:00,9981.0
-2017-08-01 07:00:00,10525.0
-2017-08-01 08:00:00,11289.0
-2017-08-01 09:00:00,12293.0
-2017-08-01 10:00:00,13278.0
-2017-08-01 11:00:00,14288.0
-2017-08-01 12:00:00,15299.0
-2017-08-01 13:00:00,15950.0
-2017-08-01 14:00:00,16425.0
-2017-08-01 15:00:00,16939.0
-2017-08-01 16:00:00,17096.0
-2017-08-01 17:00:00,17017.0
-2017-08-01 18:00:00,17146.0
-2017-08-01 19:00:00,17219.0
-2017-08-01 20:00:00,16692.0
-2017-08-01 21:00:00,16037.0
-2017-08-01 22:00:00,15637.0
-2017-08-01 23:00:00,15025.0
-2017-08-02 00:00:00,13765.0
-2017-07-31 01:00:00,10973.0
-2017-07-31 02:00:00,10256.0
-2017-07-31 03:00:00,9695.0
-2017-07-31 04:00:00,9403.0
-2017-07-31 05:00:00,9230.0
-2017-07-31 06:00:00,9380.0
-2017-07-31 07:00:00,9869.0
-2017-07-31 08:00:00,10614.0
-2017-07-31 09:00:00,11653.0
-2017-07-31 10:00:00,12691.0
-2017-07-31 11:00:00,13614.0
-2017-07-31 12:00:00,14495.0
-2017-07-31 13:00:00,15111.0
-2017-07-31 14:00:00,15671.0
-2017-07-31 15:00:00,16200.0
-2017-07-31 16:00:00,16604.0
-2017-07-31 17:00:00,16873.0
-2017-07-31 18:00:00,17005.0
-2017-07-31 19:00:00,16885.0
-2017-07-31 20:00:00,16304.0
-2017-07-31 21:00:00,15519.0
-2017-07-31 22:00:00,15088.0
-2017-07-31 23:00:00,14419.0
-2017-08-01 00:00:00,13238.0
-2017-07-30 01:00:00,10136.0
-2017-07-30 02:00:00,9526.0
-2017-07-30 03:00:00,9039.0
-2017-07-30 04:00:00,8701.0
-2017-07-30 05:00:00,8465.0
-2017-07-30 06:00:00,8375.0
-2017-07-30 07:00:00,8314.0
-2017-07-30 08:00:00,8277.0
-2017-07-30 09:00:00,8804.0
-2017-07-30 10:00:00,9637.0
-2017-07-30 11:00:00,10492.0
-2017-07-30 12:00:00,11374.0
-2017-07-30 13:00:00,12011.0
-2017-07-30 14:00:00,12508.0
-2017-07-30 15:00:00,12947.0
-2017-07-30 16:00:00,13332.0
-2017-07-30 17:00:00,13742.0
-2017-07-30 18:00:00,14013.0
-2017-07-30 19:00:00,14111.0
-2017-07-30 20:00:00,13858.0
-2017-07-30 21:00:00,13327.0
-2017-07-30 22:00:00,13009.0
-2017-07-30 23:00:00,12711.0
-2017-07-31 00:00:00,11891.0
-2017-07-29 01:00:00,11086.0
-2017-07-29 02:00:00,10320.0
-2017-07-29 03:00:00,9789.0
-2017-07-29 04:00:00,9401.0
-2017-07-29 05:00:00,9103.0
-2017-07-29 06:00:00,8899.0
-2017-07-29 07:00:00,8929.0
-2017-07-29 08:00:00,9110.0
-2017-07-29 09:00:00,9808.0
-2017-07-29 10:00:00,10561.0
-2017-07-29 11:00:00,11164.0
-2017-07-29 12:00:00,11676.0
-2017-07-29 13:00:00,11966.0
-2017-07-29 14:00:00,12202.0
-2017-07-29 15:00:00,12376.0
-2017-07-29 16:00:00,12579.0
-2017-07-29 17:00:00,12858.0
-2017-07-29 18:00:00,13010.0
-2017-07-29 19:00:00,13007.0
-2017-07-29 20:00:00,12695.0
-2017-07-29 21:00:00,12130.0
-2017-07-29 22:00:00,11755.0
-2017-07-29 23:00:00,11508.0
-2017-07-30 00:00:00,10845.0
-2017-07-28 01:00:00,11617.0
-2017-07-28 02:00:00,10857.0
-2017-07-28 03:00:00,10322.0
-2017-07-28 04:00:00,9983.0
-2017-07-28 05:00:00,9771.0
-2017-07-28 06:00:00,9904.0
-2017-07-28 07:00:00,10372.0
-2017-07-28 08:00:00,11133.0
-2017-07-28 09:00:00,12129.0
-2017-07-28 10:00:00,12950.0
-2017-07-28 11:00:00,13642.0
-2017-07-28 12:00:00,14222.0
-2017-07-28 13:00:00,14643.0
-2017-07-28 14:00:00,14986.0
-2017-07-28 15:00:00,15298.0
-2017-07-28 16:00:00,15498.0
-2017-07-28 17:00:00,15581.0
-2017-07-28 18:00:00,15559.0
-2017-07-28 19:00:00,15298.0
-2017-07-28 20:00:00,14671.0
-2017-07-28 21:00:00,13760.0
-2017-07-28 22:00:00,13232.0
-2017-07-28 23:00:00,12783.0
-2017-07-29 00:00:00,11929.0
-2017-07-27 01:00:00,13324.0
-2017-07-27 02:00:00,12382.0
-2017-07-27 03:00:00,11696.0
-2017-07-27 04:00:00,11208.0
-2017-07-27 05:00:00,10940.0
-2017-07-27 06:00:00,11027.0
-2017-07-27 07:00:00,11584.0
-2017-07-27 08:00:00,12364.0
-2017-07-27 09:00:00,13467.0
-2017-07-27 10:00:00,14398.0
-2017-07-27 11:00:00,15174.0
-2017-07-27 12:00:00,15899.0
-2017-07-27 13:00:00,16500.0
-2017-07-27 14:00:00,16962.0
-2017-07-27 15:00:00,17277.0
-2017-07-27 16:00:00,17429.0
-2017-07-27 17:00:00,17484.0
-2017-07-27 18:00:00,17395.0
-2017-07-27 19:00:00,17043.0
-2017-07-27 20:00:00,16193.0
-2017-07-27 21:00:00,15082.0
-2017-07-27 22:00:00,14322.0
-2017-07-27 23:00:00,13733.0
-2017-07-28 00:00:00,12663.0
-2017-07-26 01:00:00,11421.0
-2017-07-26 02:00:00,10659.0
-2017-07-26 03:00:00,10059.0
-2017-07-26 04:00:00,9703.0
-2017-07-26 05:00:00,9475.0
-2017-07-26 06:00:00,9620.0
-2017-07-26 07:00:00,10114.0
-2017-07-26 08:00:00,10855.0
-2017-07-26 09:00:00,11827.0
-2017-07-26 10:00:00,12692.0
-2017-07-26 11:00:00,13603.0
-2017-07-26 12:00:00,14591.0
-2017-07-26 13:00:00,15550.0
-2017-07-26 14:00:00,16527.0
-2017-07-26 15:00:00,17377.0
-2017-07-26 16:00:00,17628.0
-2017-07-26 17:00:00,17450.0
-2017-07-26 18:00:00,17115.0
-2017-07-26 19:00:00,16749.0
-2017-07-26 20:00:00,16342.0
-2017-07-26 21:00:00,16071.0
-2017-07-26 22:00:00,16014.0
-2017-07-26 23:00:00,15515.0
-2017-07-27 00:00:00,14501.0
-2017-07-25 01:00:00,10709.0
-2017-07-25 02:00:00,10051.0
-2017-07-25 03:00:00,9555.0
-2017-07-25 04:00:00,9256.0
-2017-07-25 05:00:00,9108.0
-2017-07-25 06:00:00,9240.0
-2017-07-25 07:00:00,9656.0
-2017-07-25 08:00:00,10479.0
-2017-07-25 09:00:00,11536.0
-2017-07-25 10:00:00,12348.0
-2017-07-25 11:00:00,12928.0
-2017-07-25 12:00:00,13506.0
-2017-07-25 13:00:00,13958.0
-2017-07-25 14:00:00,14388.0
-2017-07-25 15:00:00,14946.0
-2017-07-25 16:00:00,15395.0
-2017-07-25 17:00:00,15720.0
-2017-07-25 18:00:00,15797.0
-2017-07-25 19:00:00,15455.0
-2017-07-25 20:00:00,14857.0
-2017-07-25 21:00:00,14286.0
-2017-07-25 22:00:00,13958.0
-2017-07-25 23:00:00,13479.0
-2017-07-26 00:00:00,12459.0
-2017-07-24 01:00:00,11513.0
-2017-07-24 02:00:00,10749.0
-2017-07-24 03:00:00,10209.0
-2017-07-24 04:00:00,9862.0
-2017-07-24 05:00:00,9690.0
-2017-07-24 06:00:00,9790.0
-2017-07-24 07:00:00,10325.0
-2017-07-24 08:00:00,10979.0
-2017-07-24 09:00:00,11902.0
-2017-07-24 10:00:00,12530.0
-2017-07-24 11:00:00,13002.0
-2017-07-24 12:00:00,13339.0
-2017-07-24 13:00:00,13552.0
-2017-07-24 14:00:00,13731.0
-2017-07-24 15:00:00,14005.0
-2017-07-24 16:00:00,14214.0
-2017-07-24 17:00:00,14411.0
-2017-07-24 18:00:00,14485.0
-2017-07-24 19:00:00,14386.0
-2017-07-24 20:00:00,13902.0
-2017-07-24 21:00:00,13271.0
-2017-07-24 22:00:00,12973.0
-2017-07-24 23:00:00,12597.0
-2017-07-25 00:00:00,11690.0
-2017-07-23 01:00:00,12618.0
-2017-07-23 02:00:00,11727.0
-2017-07-23 03:00:00,11058.0
-2017-07-23 04:00:00,10607.0
-2017-07-23 05:00:00,10288.0
-2017-07-23 06:00:00,10116.0
-2017-07-23 07:00:00,9982.0
-2017-07-23 08:00:00,10100.0
-2017-07-23 09:00:00,10827.0
-2017-07-23 10:00:00,11985.0
-2017-07-23 11:00:00,13313.0
-2017-07-23 12:00:00,14555.0
-2017-07-23 13:00:00,15500.0
-2017-07-23 14:00:00,16122.0
-2017-07-23 15:00:00,16632.0
-2017-07-23 16:00:00,16837.0
-2017-07-23 17:00:00,16796.0
-2017-07-23 18:00:00,16207.0
-2017-07-23 19:00:00,15026.0
-2017-07-23 20:00:00,14318.0
-2017-07-23 21:00:00,13765.0
-2017-07-23 22:00:00,13477.0
-2017-07-23 23:00:00,13102.0
-2017-07-24 00:00:00,12413.0
-2017-07-22 01:00:00,13141.0
-2017-07-22 02:00:00,12146.0
-2017-07-22 03:00:00,11437.0
-2017-07-22 04:00:00,11009.0
-2017-07-22 05:00:00,10693.0
-2017-07-22 06:00:00,10612.0
-2017-07-22 07:00:00,10714.0
-2017-07-22 08:00:00,10981.0
-2017-07-22 09:00:00,11264.0
-2017-07-22 10:00:00,11776.0
-2017-07-22 11:00:00,12550.0
-2017-07-22 12:00:00,13403.0
-2017-07-22 13:00:00,14200.0
-2017-07-22 14:00:00,14900.0
-2017-07-22 15:00:00,15465.0
-2017-07-22 16:00:00,15880.0
-2017-07-22 17:00:00,16112.0
-2017-07-22 18:00:00,16411.0
-2017-07-22 19:00:00,16397.0
-2017-07-22 20:00:00,16074.0
-2017-07-22 21:00:00,15400.0
-2017-07-22 22:00:00,14981.0
-2017-07-22 23:00:00,14516.0
-2017-07-23 00:00:00,13624.0
-2017-07-21 01:00:00,13408.0
-2017-07-21 02:00:00,12371.0
-2017-07-21 03:00:00,11674.0
-2017-07-21 04:00:00,11241.0
-2017-07-21 05:00:00,10935.0
-2017-07-21 06:00:00,10979.0
-2017-07-21 07:00:00,11426.0
-2017-07-21 08:00:00,12215.0
-2017-07-21 09:00:00,13405.0
-2017-07-21 10:00:00,14596.0
-2017-07-21 11:00:00,15581.0
-2017-07-21 12:00:00,16459.0
-2017-07-21 13:00:00,17122.0
-2017-07-21 14:00:00,17679.0
-2017-07-21 15:00:00,18309.0
-2017-07-21 16:00:00,18626.0
-2017-07-21 17:00:00,18506.0
-2017-07-21 18:00:00,17952.0
-2017-07-21 19:00:00,17237.0
-2017-07-21 20:00:00,16656.0
-2017-07-21 21:00:00,16227.0
-2017-07-21 22:00:00,15986.0
-2017-07-21 23:00:00,15187.0
-2017-07-22 00:00:00,14179.0
-2017-07-20 01:00:00,12910.0
-2017-07-20 02:00:00,11914.0
-2017-07-20 03:00:00,11268.0
-2017-07-20 04:00:00,10823.0
-2017-07-20 05:00:00,10582.0
-2017-07-20 06:00:00,10685.0
-2017-07-20 07:00:00,11306.0
-2017-07-20 08:00:00,12145.0
-2017-07-20 09:00:00,12827.0
-2017-07-20 10:00:00,13270.0
-2017-07-20 11:00:00,13725.0
-2017-07-20 12:00:00,14662.0
-2017-07-20 13:00:00,15840.0
-2017-07-20 14:00:00,16936.0
-2017-07-20 15:00:00,17936.0
-2017-07-20 16:00:00,18287.0
-2017-07-20 17:00:00,18023.0
-2017-07-20 18:00:00,17857.0
-2017-07-20 19:00:00,17713.0
-2017-07-20 20:00:00,17209.0
-2017-07-20 21:00:00,16694.0
-2017-07-20 22:00:00,16341.0
-2017-07-20 23:00:00,15811.0
-2017-07-21 00:00:00,14627.0
-2017-07-19 01:00:00,13511.0
-2017-07-19 02:00:00,12507.0
-2017-07-19 03:00:00,11708.0
-2017-07-19 04:00:00,11056.0
-2017-07-19 05:00:00,10726.0
-2017-07-19 06:00:00,10777.0
-2017-07-19 07:00:00,11168.0
-2017-07-19 08:00:00,12099.0
-2017-07-19 09:00:00,13403.0
-2017-07-19 10:00:00,14618.0
-2017-07-19 11:00:00,15613.0
-2017-07-19 12:00:00,16660.0
-2017-07-19 13:00:00,17533.0
-2017-07-19 14:00:00,18175.0
-2017-07-19 15:00:00,18650.0
-2017-07-19 16:00:00,18840.0
-2017-07-19 17:00:00,18836.0
-2017-07-19 18:00:00,18842.0
-2017-07-19 19:00:00,18521.0
-2017-07-19 20:00:00,17976.0
-2017-07-19 21:00:00,17209.0
-2017-07-19 22:00:00,16660.0
-2017-07-19 23:00:00,15843.0
-2017-07-20 00:00:00,14197.0
-2017-07-18 01:00:00,10855.0
-2017-07-18 02:00:00,10054.0
-2017-07-18 03:00:00,9527.0
-2017-07-18 04:00:00,9190.0
-2017-07-18 05:00:00,9013.0
-2017-07-18 06:00:00,9100.0
-2017-07-18 07:00:00,9529.0
-2017-07-18 08:00:00,10349.0
-2017-07-18 09:00:00,11450.0
-2017-07-18 10:00:00,12359.0
-2017-07-18 11:00:00,13119.0
-2017-07-18 12:00:00,13911.0
-2017-07-18 13:00:00,14605.0
-2017-07-18 14:00:00,15243.0
-2017-07-18 15:00:00,15967.0
-2017-07-18 16:00:00,16653.0
-2017-07-18 17:00:00,17233.0
-2017-07-18 18:00:00,17649.0
-2017-07-18 19:00:00,17604.0
-2017-07-18 20:00:00,17259.0
-2017-07-18 21:00:00,16790.0
-2017-07-18 22:00:00,16448.0
-2017-07-18 23:00:00,15973.0
-2017-07-19 00:00:00,14761.0
-2017-07-17 01:00:00,9602.0
-2017-07-17 02:00:00,8982.0
-2017-07-17 03:00:00,8607.0
-2017-07-17 04:00:00,8387.0
-2017-07-17 05:00:00,8325.0
-2017-07-17 06:00:00,8518.0
-2017-07-17 07:00:00,8926.0
-2017-07-17 08:00:00,9741.0
-2017-07-17 09:00:00,10728.0
-2017-07-17 10:00:00,11548.0
-2017-07-17 11:00:00,12181.0
-2017-07-17 12:00:00,12715.0
-2017-07-17 13:00:00,13136.0
-2017-07-17 14:00:00,13509.0
-2017-07-17 15:00:00,13950.0
-2017-07-17 16:00:00,14319.0
-2017-07-17 17:00:00,14616.0
-2017-07-17 18:00:00,14821.0
-2017-07-17 19:00:00,14822.0
-2017-07-17 20:00:00,14381.0
-2017-07-17 21:00:00,13766.0
-2017-07-17 22:00:00,13320.0
-2017-07-17 23:00:00,12914.0
-2017-07-18 00:00:00,11931.0
-2017-07-16 01:00:00,11042.0
-2017-07-16 02:00:00,10399.0
-2017-07-16 03:00:00,9816.0
-2017-07-16 04:00:00,9441.0
-2017-07-16 05:00:00,9267.0
-2017-07-16 06:00:00,9178.0
-2017-07-16 07:00:00,9028.0
-2017-07-16 08:00:00,8993.0
-2017-07-16 09:00:00,9372.0
-2017-07-16 10:00:00,9839.0
-2017-07-16 11:00:00,10297.0
-2017-07-16 12:00:00,10777.0
-2017-07-16 13:00:00,11051.0
-2017-07-16 14:00:00,11147.0
-2017-07-16 15:00:00,11286.0
-2017-07-16 16:00:00,11402.0
-2017-07-16 17:00:00,11567.0
-2017-07-16 18:00:00,11818.0
-2017-07-16 19:00:00,11874.0
-2017-07-16 20:00:00,11662.0
-2017-07-16 21:00:00,11219.0
-2017-07-16 22:00:00,10982.0
-2017-07-16 23:00:00,10858.0
-2017-07-17 00:00:00,10316.0
-2017-07-15 01:00:00,10296.0
-2017-07-15 02:00:00,9631.0
-2017-07-15 03:00:00,9136.0
-2017-07-15 04:00:00,8802.0
-2017-07-15 05:00:00,8634.0
-2017-07-15 06:00:00,8565.0
-2017-07-15 07:00:00,8611.0
-2017-07-15 08:00:00,8850.0
-2017-07-15 09:00:00,9505.0
-2017-07-15 10:00:00,10291.0
-2017-07-15 11:00:00,11009.0
-2017-07-15 12:00:00,11647.0
-2017-07-15 13:00:00,12090.0
-2017-07-15 14:00:00,12504.0
-2017-07-15 15:00:00,12833.0
-2017-07-15 16:00:00,13208.0
-2017-07-15 17:00:00,13624.0
-2017-07-15 18:00:00,13767.0
-2017-07-15 19:00:00,13614.0
-2017-07-15 20:00:00,13348.0
-2017-07-15 21:00:00,13030.0
-2017-07-15 22:00:00,12722.0
-2017-07-15 23:00:00,12483.0
-2017-07-16 00:00:00,11818.0
-2017-07-14 01:00:00,12371.0
-2017-07-14 02:00:00,11408.0
-2017-07-14 03:00:00,10689.0
-2017-07-14 04:00:00,10197.0
-2017-07-14 05:00:00,9933.0
-2017-07-14 06:00:00,9976.0
-2017-07-14 07:00:00,10296.0
-2017-07-14 08:00:00,10950.0
-2017-07-14 09:00:00,11718.0
-2017-07-14 10:00:00,12322.0
-2017-07-14 11:00:00,12660.0
-2017-07-14 12:00:00,12866.0
-2017-07-14 13:00:00,13043.0
-2017-07-14 14:00:00,13194.0
-2017-07-14 15:00:00,13391.0
-2017-07-14 16:00:00,13394.0
-2017-07-14 17:00:00,13210.0
-2017-07-14 18:00:00,13094.0
-2017-07-14 19:00:00,12731.0
-2017-07-14 20:00:00,12244.0
-2017-07-14 21:00:00,11935.0
-2017-07-14 22:00:00,11890.0
-2017-07-14 23:00:00,11778.0
-2017-07-15 00:00:00,11055.0
-2017-07-13 01:00:00,12960.0
-2017-07-13 02:00:00,12172.0
-2017-07-13 03:00:00,11476.0
-2017-07-13 04:00:00,10968.0
-2017-07-13 05:00:00,10697.0
-2017-07-13 06:00:00,10806.0
-2017-07-13 07:00:00,11341.0
-2017-07-13 08:00:00,12160.0
-2017-07-13 09:00:00,13089.0
-2017-07-13 10:00:00,13742.0
-2017-07-13 11:00:00,14172.0
-2017-07-13 12:00:00,14590.0
-2017-07-13 13:00:00,15093.0
-2017-07-13 14:00:00,15535.0
-2017-07-13 15:00:00,16056.0
-2017-07-13 16:00:00,16526.0
-2017-07-13 17:00:00,16790.0
-2017-07-13 18:00:00,16963.0
-2017-07-13 19:00:00,16864.0
-2017-07-13 20:00:00,16550.0
-2017-07-13 21:00:00,15864.0
-2017-07-13 22:00:00,15207.0
-2017-07-13 23:00:00,14724.0
-2017-07-14 00:00:00,13590.0
-2017-07-12 01:00:00,13155.0
-2017-07-12 02:00:00,12256.0
-2017-07-12 03:00:00,11743.0
-2017-07-12 04:00:00,11326.0
-2017-07-12 05:00:00,11120.0
-2017-07-12 06:00:00,11081.0
-2017-07-12 07:00:00,11568.0
-2017-07-12 08:00:00,12346.0
-2017-07-12 09:00:00,13382.0
-2017-07-12 10:00:00,14046.0
-2017-07-12 11:00:00,14311.0
-2017-07-12 12:00:00,14355.0
-2017-07-12 13:00:00,14353.0
-2017-07-12 14:00:00,14258.0
-2017-07-12 15:00:00,14163.0
-2017-07-12 16:00:00,14284.0
-2017-07-12 17:00:00,14609.0
-2017-07-12 18:00:00,14839.0
-2017-07-12 19:00:00,14908.0
-2017-07-12 20:00:00,14941.0
-2017-07-12 21:00:00,14981.0
-2017-07-12 22:00:00,14993.0
-2017-07-12 23:00:00,14739.0
-2017-07-13 00:00:00,13906.0
-2017-07-11 01:00:00,12362.0
-2017-07-11 02:00:00,11437.0
-2017-07-11 03:00:00,10800.0
-2017-07-11 04:00:00,10394.0
-2017-07-11 05:00:00,10172.0
-2017-07-11 06:00:00,10296.0
-2017-07-11 07:00:00,10739.0
-2017-07-11 08:00:00,11712.0
-2017-07-11 09:00:00,12885.0
-2017-07-11 10:00:00,13975.0
-2017-07-11 11:00:00,14796.0
-2017-07-11 12:00:00,15456.0
-2017-07-11 13:00:00,16049.0
-2017-07-11 14:00:00,16772.0
-2017-07-11 15:00:00,17401.0
-2017-07-11 16:00:00,17535.0
-2017-07-11 17:00:00,17114.0
-2017-07-11 18:00:00,16628.0
-2017-07-11 19:00:00,16378.0
-2017-07-11 20:00:00,16089.0
-2017-07-11 21:00:00,15750.0
-2017-07-11 22:00:00,15564.0
-2017-07-11 23:00:00,15224.0
-2017-07-12 00:00:00,14296.0
-2017-07-10 01:00:00,12523.0
-2017-07-10 02:00:00,11705.0
-2017-07-10 03:00:00,11136.0
-2017-07-10 04:00:00,10782.0
-2017-07-10 05:00:00,10660.0
-2017-07-10 06:00:00,10790.0
-2017-07-10 07:00:00,11243.0
-2017-07-10 08:00:00,11847.0
-2017-07-10 09:00:00,12408.0
-2017-07-10 10:00:00,12836.0
-2017-07-10 11:00:00,13402.0
-2017-07-10 12:00:00,14194.0
-2017-07-10 13:00:00,14705.0
-2017-07-10 14:00:00,15056.0
-2017-07-10 15:00:00,15662.0
-2017-07-10 16:00:00,16147.0
-2017-07-10 17:00:00,15987.0
-2017-07-10 18:00:00,15924.0
-2017-07-10 19:00:00,16101.0
-2017-07-10 20:00:00,15862.0
-2017-07-10 21:00:00,15439.0
-2017-07-10 22:00:00,15028.0
-2017-07-10 23:00:00,14764.0
-2017-07-11 00:00:00,13570.0
-2017-07-09 01:00:00,10044.0
-2017-07-09 02:00:00,9394.0
-2017-07-09 03:00:00,8855.0
-2017-07-09 04:00:00,8537.0
-2017-07-09 05:00:00,8276.0
-2017-07-09 06:00:00,8168.0
-2017-07-09 07:00:00,7949.0
-2017-07-09 08:00:00,8091.0
-2017-07-09 09:00:00,8615.0
-2017-07-09 10:00:00,9404.0
-2017-07-09 11:00:00,10362.0
-2017-07-09 12:00:00,11197.0
-2017-07-09 13:00:00,11990.0
-2017-07-09 14:00:00,12641.0
-2017-07-09 15:00:00,13319.0
-2017-07-09 16:00:00,13861.0
-2017-07-09 17:00:00,14219.0
-2017-07-09 18:00:00,14631.0
-2017-07-09 19:00:00,14716.0
-2017-07-09 20:00:00,14550.0
-2017-07-09 21:00:00,14257.0
-2017-07-09 22:00:00,14220.0
-2017-07-09 23:00:00,14133.0
-2017-07-10 00:00:00,13452.0
-2017-07-08 01:00:00,11519.0
-2017-07-08 02:00:00,10625.0
-2017-07-08 03:00:00,9953.0
-2017-07-08 04:00:00,9503.0
-2017-07-08 05:00:00,9224.0
-2017-07-08 06:00:00,9108.0
-2017-07-08 07:00:00,9016.0
-2017-07-08 08:00:00,9328.0
-2017-07-08 09:00:00,9999.0
-2017-07-08 10:00:00,10749.0
-2017-07-08 11:00:00,11433.0
-2017-07-08 12:00:00,11973.0
-2017-07-08 13:00:00,12357.0
-2017-07-08 14:00:00,12567.0
-2017-07-08 15:00:00,12730.0
-2017-07-08 16:00:00,12908.0
-2017-07-08 17:00:00,13149.0
-2017-07-08 18:00:00,13256.0
-2017-07-08 19:00:00,13179.0
-2017-07-08 20:00:00,12901.0
-2017-07-08 21:00:00,12321.0
-2017-07-08 22:00:00,11790.0
-2017-07-08 23:00:00,11515.0
-2017-07-09 00:00:00,10830.0
-2017-07-07 01:00:00,14605.0
-2017-07-07 02:00:00,13542.0
-2017-07-07 03:00:00,12736.0
-2017-07-07 04:00:00,12047.0
-2017-07-07 05:00:00,11575.0
-2017-07-07 06:00:00,11603.0
-2017-07-07 07:00:00,12012.0
-2017-07-07 08:00:00,12857.0
-2017-07-07 09:00:00,13850.0
-2017-07-07 10:00:00,14686.0
-2017-07-07 11:00:00,15479.0
-2017-07-07 12:00:00,16434.0
-2017-07-07 13:00:00,17034.0
-2017-07-07 14:00:00,17336.0
-2017-07-07 15:00:00,17648.0
-2017-07-07 16:00:00,17730.0
-2017-07-07 17:00:00,17586.0
-2017-07-07 18:00:00,17371.0
-2017-07-07 19:00:00,16943.0
-2017-07-07 20:00:00,16099.0
-2017-07-07 21:00:00,15090.0
-2017-07-07 22:00:00,14375.0
-2017-07-07 23:00:00,13895.0
-2017-07-08 00:00:00,12760.0
-2017-07-06 01:00:00,12322.0
-2017-07-06 02:00:00,11422.0
-2017-07-06 03:00:00,10809.0
-2017-07-06 04:00:00,10340.0
-2017-07-06 05:00:00,10095.0
-2017-07-06 06:00:00,10149.0
-2017-07-06 07:00:00,10531.0
-2017-07-06 08:00:00,11523.0
-2017-07-06 09:00:00,12904.0
-2017-07-06 10:00:00,14201.0
-2017-07-06 11:00:00,15371.0
-2017-07-06 12:00:00,16453.0
-2017-07-06 13:00:00,17311.0
-2017-07-06 14:00:00,18052.0
-2017-07-06 15:00:00,18687.0
-2017-07-06 16:00:00,19054.0
-2017-07-06 17:00:00,19269.0
-2017-07-06 18:00:00,19408.0
-2017-07-06 19:00:00,19354.0
-2017-07-06 20:00:00,19005.0
-2017-07-06 21:00:00,18389.0
-2017-07-06 22:00:00,17753.0
-2017-07-06 23:00:00,17205.0
-2017-07-07 00:00:00,15918.0
-2017-07-05 01:00:00,10778.0
-2017-07-05 02:00:00,10057.0
-2017-07-05 03:00:00,9530.0
-2017-07-05 04:00:00,9165.0
-2017-07-05 05:00:00,8984.0
-2017-07-05 06:00:00,9122.0
-2017-07-05 07:00:00,9573.0
-2017-07-05 08:00:00,10500.0
-2017-07-05 09:00:00,11680.0
-2017-07-05 10:00:00,12759.0
-2017-07-05 11:00:00,13781.0
-2017-07-05 12:00:00,14845.0
-2017-07-05 13:00:00,15680.0
-2017-07-05 14:00:00,16392.0
-2017-07-05 15:00:00,17044.0
-2017-07-05 16:00:00,17404.0
-2017-07-05 17:00:00,17531.0
-2017-07-05 18:00:00,17527.0
-2017-07-05 19:00:00,17020.0
-2017-07-05 20:00:00,16187.0
-2017-07-05 21:00:00,15415.0
-2017-07-05 22:00:00,15061.0
-2017-07-05 23:00:00,14533.0
-2017-07-06 00:00:00,13470.0
-2017-07-04 01:00:00,10085.0
-2017-07-04 02:00:00,9421.0
-2017-07-04 03:00:00,8945.0
-2017-07-04 04:00:00,8604.0
-2017-07-04 05:00:00,8420.0
-2017-07-04 06:00:00,8384.0
-2017-07-04 07:00:00,8306.0
-2017-07-04 08:00:00,8469.0
-2017-07-04 09:00:00,8993.0
-2017-07-04 10:00:00,9856.0
-2017-07-04 11:00:00,10827.0
-2017-07-04 12:00:00,11836.0
-2017-07-04 13:00:00,12708.0
-2017-07-04 14:00:00,13450.0
-2017-07-04 15:00:00,13906.0
-2017-07-04 16:00:00,14159.0
-2017-07-04 17:00:00,14202.0
-2017-07-04 18:00:00,14150.0
-2017-07-04 19:00:00,13960.0
-2017-07-04 20:00:00,13443.0
-2017-07-04 21:00:00,12768.0
-2017-07-04 22:00:00,12282.0
-2017-07-04 23:00:00,11939.0
-2017-07-05 00:00:00,11463.0
-2017-07-03 01:00:00,11112.0
-2017-07-03 02:00:00,10347.0
-2017-07-03 03:00:00,9819.0
-2017-07-03 04:00:00,9438.0
-2017-07-03 05:00:00,9250.0
-2017-07-03 06:00:00,9267.0
-2017-07-03 07:00:00,9503.0
-2017-07-03 08:00:00,10034.0
-2017-07-03 09:00:00,10853.0
-2017-07-03 10:00:00,11700.0
-2017-07-03 11:00:00,12530.0
-2017-07-03 12:00:00,13310.0
-2017-07-03 13:00:00,13901.0
-2017-07-03 14:00:00,14348.0
-2017-07-03 15:00:00,14725.0
-2017-07-03 16:00:00,14912.0
-2017-07-03 17:00:00,14981.0
-2017-07-03 18:00:00,14588.0
-2017-07-03 19:00:00,13889.0
-2017-07-03 20:00:00,13028.0
-2017-07-03 21:00:00,12300.0
-2017-07-03 22:00:00,11857.0
-2017-07-03 23:00:00,11544.0
-2017-07-04 00:00:00,10858.0
-2017-07-02 01:00:00,10487.0
-2017-07-02 02:00:00,9710.0
-2017-07-02 03:00:00,9153.0
-2017-07-02 04:00:00,8712.0
-2017-07-02 05:00:00,8472.0
-2017-07-02 06:00:00,8301.0
-2017-07-02 07:00:00,8132.0
-2017-07-02 08:00:00,8244.0
-2017-07-02 09:00:00,8847.0
-2017-07-02 10:00:00,9603.0
-2017-07-02 11:00:00,10424.0
-2017-07-02 12:00:00,11161.0
-2017-07-02 13:00:00,11944.0
-2017-07-02 14:00:00,12601.0
-2017-07-02 15:00:00,13334.0
-2017-07-02 16:00:00,14119.0
-2017-07-02 17:00:00,14698.0
-2017-07-02 18:00:00,14893.0
-2017-07-02 19:00:00,14799.0
-2017-07-02 20:00:00,14167.0
-2017-07-02 21:00:00,13395.0
-2017-07-02 22:00:00,12910.0
-2017-07-02 23:00:00,12657.0
-2017-07-03 00:00:00,11943.0
-2017-07-01 01:00:00,11781.0
-2017-07-01 02:00:00,10873.0
-2017-07-01 03:00:00,10203.0
-2017-07-01 04:00:00,9625.0
-2017-07-01 05:00:00,9335.0
-2017-07-01 06:00:00,9235.0
-2017-07-01 07:00:00,9108.0
-2017-07-01 08:00:00,9400.0
-2017-07-01 09:00:00,10117.0
-2017-07-01 10:00:00,11067.0
-2017-07-01 11:00:00,12045.0
-2017-07-01 12:00:00,12835.0
-2017-07-01 13:00:00,13351.0
-2017-07-01 14:00:00,13771.0
-2017-07-01 15:00:00,13933.0
-2017-07-01 16:00:00,14019.0
-2017-07-01 17:00:00,14034.0
-2017-07-01 18:00:00,14108.0
-2017-07-01 19:00:00,13955.0
-2017-07-01 20:00:00,13530.0
-2017-07-01 21:00:00,12817.0
-2017-07-01 22:00:00,12235.0
-2017-07-01 23:00:00,11967.0
-2017-07-02 00:00:00,11228.0
-2017-06-30 01:00:00,11161.0
-2017-06-30 02:00:00,10392.0
-2017-06-30 03:00:00,9852.0
-2017-06-30 04:00:00,9449.0
-2017-06-30 05:00:00,9275.0
-2017-06-30 06:00:00,9427.0
-2017-06-30 07:00:00,9807.0
-2017-06-30 08:00:00,10683.0
-2017-06-30 09:00:00,11717.0
-2017-06-30 10:00:00,12632.0
-2017-06-30 11:00:00,13259.0
-2017-06-30 12:00:00,14024.0
-2017-06-30 13:00:00,14695.0
-2017-06-30 14:00:00,15177.0
-2017-06-30 15:00:00,15505.0
-2017-06-30 16:00:00,15623.0
-2017-06-30 17:00:00,15495.0
-2017-06-30 18:00:00,15354.0
-2017-06-30 19:00:00,15369.0
-2017-06-30 20:00:00,14990.0
-2017-06-30 21:00:00,14478.0
-2017-06-30 22:00:00,14053.0
-2017-06-30 23:00:00,13763.0
-2017-07-01 00:00:00,12837.0
-2017-06-29 01:00:00,10527.0
-2017-06-29 02:00:00,9821.0
-2017-06-29 03:00:00,9392.0
-2017-06-29 04:00:00,9099.0
-2017-06-29 05:00:00,9010.0
-2017-06-29 06:00:00,9193.0
-2017-06-29 07:00:00,9693.0
-2017-06-29 08:00:00,10595.0
-2017-06-29 09:00:00,11607.0
-2017-06-29 10:00:00,12433.0
-2017-06-29 11:00:00,13124.0
-2017-06-29 12:00:00,13793.0
-2017-06-29 13:00:00,14429.0
-2017-06-29 14:00:00,15032.0
-2017-06-29 15:00:00,15372.0
-2017-06-29 16:00:00,15613.0
-2017-06-29 17:00:00,15522.0
-2017-06-29 18:00:00,15252.0
-2017-06-29 19:00:00,14687.0
-2017-06-29 20:00:00,14131.0
-2017-06-29 21:00:00,13768.0
-2017-06-29 22:00:00,13393.0
-2017-06-29 23:00:00,13049.0
-2017-06-30 00:00:00,12160.0
-2017-06-28 01:00:00,9796.0
-2017-06-28 02:00:00,9164.0
-2017-06-28 03:00:00,8751.0
-2017-06-28 04:00:00,8492.0
-2017-06-28 05:00:00,8356.0
-2017-06-28 06:00:00,8526.0
-2017-06-28 07:00:00,8867.0
-2017-06-28 08:00:00,9679.0
-2017-06-28 09:00:00,10516.0
-2017-06-28 10:00:00,11056.0
-2017-06-28 11:00:00,11366.0
-2017-06-28 12:00:00,11651.0
-2017-06-28 13:00:00,11762.0
-2017-06-28 14:00:00,11708.0
-2017-06-28 15:00:00,11930.0
-2017-06-28 16:00:00,12160.0
-2017-06-28 17:00:00,12371.0
-2017-06-28 18:00:00,12507.0
-2017-06-28 19:00:00,12364.0
-2017-06-28 20:00:00,12174.0
-2017-06-28 21:00:00,12140.0
-2017-06-28 22:00:00,12333.0
-2017-06-28 23:00:00,12148.0
-2017-06-29 00:00:00,11367.0
-2017-06-27 01:00:00,9153.0
-2017-06-27 02:00:00,8616.0
-2017-06-27 03:00:00,8264.0
-2017-06-27 04:00:00,8052.0
-2017-06-27 05:00:00,7931.0
-2017-06-27 06:00:00,8057.0
-2017-06-27 07:00:00,8444.0
-2017-06-27 08:00:00,9170.0
-2017-06-27 09:00:00,10089.0
-2017-06-27 10:00:00,10751.0
-2017-06-27 11:00:00,11184.0
-2017-06-27 12:00:00,11562.0
-2017-06-27 13:00:00,11801.0
-2017-06-27 14:00:00,11954.0
-2017-06-27 15:00:00,12212.0
-2017-06-27 16:00:00,12342.0
-2017-06-27 17:00:00,12451.0
-2017-06-27 18:00:00,12539.0
-2017-06-27 19:00:00,12498.0
-2017-06-27 20:00:00,12228.0
-2017-06-27 21:00:00,11875.0
-2017-06-27 22:00:00,11624.0
-2017-06-27 23:00:00,11449.0
-2017-06-28 00:00:00,10677.0
-2017-06-26 01:00:00,8682.0
-2017-06-26 02:00:00,8241.0
-2017-06-26 03:00:00,7946.0
-2017-06-26 04:00:00,7739.0
-2017-06-26 05:00:00,7699.0
-2017-06-26 06:00:00,7921.0
-2017-06-26 07:00:00,8322.0
-2017-06-26 08:00:00,9137.0
-2017-06-26 09:00:00,10080.0
-2017-06-26 10:00:00,10694.0
-2017-06-26 11:00:00,11101.0
-2017-06-26 12:00:00,11424.0
-2017-06-26 13:00:00,11614.0
-2017-06-26 14:00:00,11717.0
-2017-06-26 15:00:00,11833.0
-2017-06-26 16:00:00,11842.0
-2017-06-26 17:00:00,11800.0
-2017-06-26 18:00:00,11711.0
-2017-06-26 19:00:00,11471.0
-2017-06-26 20:00:00,11024.0
-2017-06-26 21:00:00,10749.0
-2017-06-26 22:00:00,10712.0
-2017-06-26 23:00:00,10613.0
-2017-06-27 00:00:00,9909.0
-2017-06-25 01:00:00,9036.0
-2017-06-25 02:00:00,8532.0
-2017-06-25 03:00:00,8182.0
-2017-06-25 04:00:00,7899.0
-2017-06-25 05:00:00,7728.0
-2017-06-25 06:00:00,7626.0
-2017-06-25 07:00:00,7481.0
-2017-06-25 08:00:00,7605.0
-2017-06-25 09:00:00,7984.0
-2017-06-25 10:00:00,8494.0
-2017-06-25 11:00:00,8951.0
-2017-06-25 12:00:00,9305.0
-2017-06-25 13:00:00,9502.0
-2017-06-25 14:00:00,9576.0
-2017-06-25 15:00:00,9716.0
-2017-06-25 16:00:00,9758.0
-2017-06-25 17:00:00,9803.0
-2017-06-25 18:00:00,9903.0
-2017-06-25 19:00:00,9968.0
-2017-06-25 20:00:00,9834.0
-2017-06-25 21:00:00,9622.0
-2017-06-25 22:00:00,9639.0
-2017-06-25 23:00:00,9712.0
-2017-06-26 00:00:00,9272.0
-2017-06-24 01:00:00,10871.0
-2017-06-24 02:00:00,10049.0
-2017-06-24 03:00:00,9462.0
-2017-06-24 04:00:00,9092.0
-2017-06-24 05:00:00,8782.0
-2017-06-24 06:00:00,8727.0
-2017-06-24 07:00:00,8670.0
-2017-06-24 08:00:00,9065.0
-2017-06-24 09:00:00,9697.0
-2017-06-24 10:00:00,10357.0
-2017-06-24 11:00:00,10971.0
-2017-06-24 12:00:00,11333.0
-2017-06-24 13:00:00,11461.0
-2017-06-24 14:00:00,11462.0
-2017-06-24 15:00:00,11409.0
-2017-06-24 16:00:00,11344.0
-2017-06-24 17:00:00,11370.0
-2017-06-24 18:00:00,11378.0
-2017-06-24 19:00:00,11242.0
-2017-06-24 20:00:00,10964.0
-2017-06-24 21:00:00,10479.0
-2017-06-24 22:00:00,10254.0
-2017-06-24 23:00:00,10118.0
-2017-06-25 00:00:00,9612.0
-2017-06-23 01:00:00,13586.0
-2017-06-23 02:00:00,12627.0
-2017-06-23 03:00:00,11966.0
-2017-06-23 04:00:00,11525.0
-2017-06-23 05:00:00,11315.0
-2017-06-23 06:00:00,11343.0
-2017-06-23 07:00:00,11475.0
-2017-06-23 08:00:00,11899.0
-2017-06-23 09:00:00,12470.0
-2017-06-23 10:00:00,12905.0
-2017-06-23 11:00:00,13236.0
-2017-06-23 12:00:00,13820.0
-2017-06-23 13:00:00,14243.0
-2017-06-23 14:00:00,14670.0
-2017-06-23 15:00:00,15045.0
-2017-06-23 16:00:00,15277.0
-2017-06-23 17:00:00,15507.0
-2017-06-23 18:00:00,15623.0
-2017-06-23 19:00:00,15313.0
-2017-06-23 20:00:00,14622.0
-2017-06-23 21:00:00,13880.0
-2017-06-23 22:00:00,13228.0
-2017-06-23 23:00:00,12819.0
-2017-06-24 00:00:00,11911.0
-2017-06-22 01:00:00,11059.0
-2017-06-22 02:00:00,10365.0
-2017-06-22 03:00:00,9893.0
-2017-06-22 04:00:00,9662.0
-2017-06-22 05:00:00,9748.0
-2017-06-22 06:00:00,10077.0
-2017-06-22 07:00:00,10695.0
-2017-06-22 08:00:00,11711.0
-2017-06-22 09:00:00,12721.0
-2017-06-22 10:00:00,13676.0
-2017-06-22 11:00:00,14766.0
-2017-06-22 12:00:00,15791.0
-2017-06-22 13:00:00,16620.0
-2017-06-22 14:00:00,17047.0
-2017-06-22 15:00:00,17249.0
-2017-06-22 16:00:00,17891.0
-2017-06-22 17:00:00,18189.0
-2017-06-22 18:00:00,18002.0
-2017-06-22 19:00:00,17805.0
-2017-06-22 20:00:00,17469.0
-2017-06-22 21:00:00,16894.0
-2017-06-22 22:00:00,16490.0
-2017-06-22 23:00:00,16008.0
-2017-06-23 00:00:00,14844.0
-2017-06-21 01:00:00,9798.0
-2017-06-21 02:00:00,9188.0
-2017-06-21 03:00:00,8776.0
-2017-06-21 04:00:00,8524.0
-2017-06-21 05:00:00,8419.0
-2017-06-21 06:00:00,8583.0
-2017-06-21 07:00:00,8917.0
-2017-06-21 08:00:00,9851.0
-2017-06-21 09:00:00,10822.0
-2017-06-21 10:00:00,11554.0
-2017-06-21 11:00:00,12049.0
-2017-06-21 12:00:00,12470.0
-2017-06-21 13:00:00,12819.0
-2017-06-21 14:00:00,13126.0
-2017-06-21 15:00:00,13550.0
-2017-06-21 16:00:00,13884.0
-2017-06-21 17:00:00,13775.0
-2017-06-21 18:00:00,13706.0
-2017-06-21 19:00:00,13625.0
-2017-06-21 20:00:00,13276.0
-2017-06-21 21:00:00,13005.0
-2017-06-21 22:00:00,12938.0
-2017-06-21 23:00:00,12768.0
-2017-06-22 00:00:00,11953.0
-2017-06-20 01:00:00,9942.0
-2017-06-20 02:00:00,9331.0
-2017-06-20 03:00:00,8912.0
-2017-06-20 04:00:00,8675.0
-2017-06-20 05:00:00,8557.0
-2017-06-20 06:00:00,8661.0
-2017-06-20 07:00:00,9043.0
-2017-06-20 08:00:00,9997.0
-2017-06-20 09:00:00,10953.0
-2017-06-20 10:00:00,11708.0
-2017-06-20 11:00:00,12283.0
-2017-06-20 12:00:00,12777.0
-2017-06-20 13:00:00,13173.0
-2017-06-20 14:00:00,13350.0
-2017-06-20 15:00:00,13432.0
-2017-06-20 16:00:00,13364.0
-2017-06-20 17:00:00,12939.0
-2017-06-20 18:00:00,12458.0
-2017-06-20 19:00:00,12258.0
-2017-06-20 20:00:00,12072.0
-2017-06-20 21:00:00,11773.0
-2017-06-20 22:00:00,11583.0
-2017-06-20 23:00:00,11436.0
-2017-06-21 00:00:00,10669.0
-2017-06-19 01:00:00,10495.0
-2017-06-19 02:00:00,9817.0
-2017-06-19 03:00:00,9355.0
-2017-06-19 04:00:00,9089.0
-2017-06-19 05:00:00,8922.0
-2017-06-19 06:00:00,9107.0
-2017-06-19 07:00:00,9480.0
-2017-06-19 08:00:00,10452.0
-2017-06-19 09:00:00,11399.0
-2017-06-19 10:00:00,12065.0
-2017-06-19 11:00:00,12789.0
-2017-06-19 12:00:00,13390.0
-2017-06-19 13:00:00,13722.0
-2017-06-19 14:00:00,14046.0
-2017-06-19 15:00:00,14313.0
-2017-06-19 16:00:00,14265.0
-2017-06-19 17:00:00,13844.0
-2017-06-19 18:00:00,13315.0
-2017-06-19 19:00:00,12921.0
-2017-06-19 20:00:00,12442.0
-2017-06-19 21:00:00,12059.0
-2017-06-19 22:00:00,11870.0
-2017-06-19 23:00:00,11668.0
-2017-06-20 00:00:00,10853.0
-2017-06-18 01:00:00,11910.0
-2017-06-18 02:00:00,11101.0
-2017-06-18 03:00:00,10557.0
-2017-06-18 04:00:00,10151.0
-2017-06-18 05:00:00,9959.0
-2017-06-18 06:00:00,9808.0
-2017-06-18 07:00:00,9705.0
-2017-06-18 08:00:00,9701.0
-2017-06-18 09:00:00,10189.0
-2017-06-18 10:00:00,11027.0
-2017-06-18 11:00:00,11706.0
-2017-06-18 12:00:00,12251.0
-2017-06-18 13:00:00,12488.0
-2017-06-18 14:00:00,12598.0
-2017-06-18 15:00:00,12687.0
-2017-06-18 16:00:00,12738.0
-2017-06-18 17:00:00,12765.0
-2017-06-18 18:00:00,12838.0
-2017-06-18 19:00:00,12731.0
-2017-06-18 20:00:00,12344.0
-2017-06-18 21:00:00,11906.0
-2017-06-18 22:00:00,11840.0
-2017-06-18 23:00:00,11856.0
-2017-06-19 00:00:00,11293.0
-2017-06-17 01:00:00,13116.0
-2017-06-17 02:00:00,12217.0
-2017-06-17 03:00:00,11550.0
-2017-06-17 04:00:00,11103.0
-2017-06-17 05:00:00,10771.0
-2017-06-17 06:00:00,10603.0
-2017-06-17 07:00:00,10529.0
-2017-06-17 08:00:00,10570.0
-2017-06-17 09:00:00,11119.0
-2017-06-17 10:00:00,12010.0
-2017-06-17 11:00:00,13197.0
-2017-06-17 12:00:00,13923.0
-2017-06-17 13:00:00,14534.0
-2017-06-17 14:00:00,15078.0
-2017-06-17 15:00:00,15504.0
-2017-06-17 16:00:00,15967.0
-2017-06-17 17:00:00,16061.0
-2017-06-17 18:00:00,15758.0
-2017-06-17 19:00:00,15059.0
-2017-06-17 20:00:00,14529.0
-2017-06-17 21:00:00,14101.0
-2017-06-17 22:00:00,14063.0
-2017-06-17 23:00:00,13592.0
-2017-06-18 00:00:00,12796.0
-2017-06-16 01:00:00,13283.0
-2017-06-16 02:00:00,12288.0
-2017-06-16 03:00:00,11413.0
-2017-06-16 04:00:00,10694.0
-2017-06-16 05:00:00,10379.0
-2017-06-16 06:00:00,10367.0
-2017-06-16 07:00:00,10788.0
-2017-06-16 08:00:00,11404.0
-2017-06-16 09:00:00,11984.0
-2017-06-16 10:00:00,12602.0
-2017-06-16 11:00:00,13105.0
-2017-06-16 12:00:00,13497.0
-2017-06-16 13:00:00,13918.0
-2017-06-16 14:00:00,14680.0
-2017-06-16 15:00:00,15609.0
-2017-06-16 16:00:00,16301.0
-2017-06-16 17:00:00,16907.0
-2017-06-16 18:00:00,17309.0
-2017-06-16 19:00:00,17398.0
-2017-06-16 20:00:00,17083.0
-2017-06-16 21:00:00,16339.0
-2017-06-16 22:00:00,15726.0
-2017-06-16 23:00:00,15213.0
-2017-06-17 00:00:00,14226.0
-2017-06-15 01:00:00,11655.0
-2017-06-15 02:00:00,10965.0
-2017-06-15 03:00:00,10447.0
-2017-06-15 04:00:00,10094.0
-2017-06-15 05:00:00,9960.0
-2017-06-15 06:00:00,10118.0
-2017-06-15 07:00:00,10519.0
-2017-06-15 08:00:00,11489.0
-2017-06-15 09:00:00,12454.0
-2017-06-15 10:00:00,13345.0
-2017-06-15 11:00:00,14253.0
-2017-06-15 12:00:00,14989.0
-2017-06-15 13:00:00,15729.0
-2017-06-15 14:00:00,16568.0
-2017-06-15 15:00:00,17354.0
-2017-06-15 16:00:00,17845.0
-2017-06-15 17:00:00,18254.0
-2017-06-15 18:00:00,18466.0
-2017-06-15 19:00:00,18413.0
-2017-06-15 20:00:00,18121.0
-2017-06-15 21:00:00,17408.0
-2017-06-15 22:00:00,16571.0
-2017-06-15 23:00:00,15831.0
-2017-06-16 00:00:00,14607.0
-2017-06-14 01:00:00,12354.0
-2017-06-14 02:00:00,11488.0
-2017-06-14 03:00:00,10902.0
-2017-06-14 04:00:00,10483.0
-2017-06-14 05:00:00,10283.0
-2017-06-14 06:00:00,10390.0
-2017-06-14 07:00:00,10742.0
-2017-06-14 08:00:00,11867.0
-2017-06-14 09:00:00,13254.0
-2017-06-14 10:00:00,14622.0
-2017-06-14 11:00:00,15904.0
-2017-06-14 12:00:00,17137.0
-2017-06-14 13:00:00,18067.0
-2017-06-14 14:00:00,18627.0
-2017-06-14 15:00:00,18973.0
-2017-06-14 16:00:00,18349.0
-2017-06-14 17:00:00,17435.0
-2017-06-14 18:00:00,16789.0
-2017-06-14 19:00:00,15715.0
-2017-06-14 20:00:00,14811.0
-2017-06-14 21:00:00,14316.0
-2017-06-14 22:00:00,14019.0
-2017-06-14 23:00:00,13566.0
-2017-06-15 00:00:00,12682.0
-2017-06-13 01:00:00,14384.0
-2017-06-13 02:00:00,13160.0
-2017-06-13 03:00:00,12262.0
-2017-06-13 04:00:00,11657.0
-2017-06-13 05:00:00,11256.0
-2017-06-13 06:00:00,11256.0
-2017-06-13 07:00:00,11561.0
-2017-06-13 08:00:00,12555.0
-2017-06-13 09:00:00,13821.0
-2017-06-13 10:00:00,15159.0
-2017-06-13 11:00:00,15972.0
-2017-06-13 12:00:00,16840.0
-2017-06-13 13:00:00,17616.0
-2017-06-13 14:00:00,18180.0
-2017-06-13 15:00:00,18577.0
-2017-06-13 16:00:00,18784.0
-2017-06-13 17:00:00,18502.0
-2017-06-13 18:00:00,17600.0
-2017-06-13 19:00:00,16740.0
-2017-06-13 20:00:00,15984.0
-2017-06-13 21:00:00,15231.0
-2017-06-13 22:00:00,14792.0
-2017-06-13 23:00:00,14478.0
-2017-06-14 00:00:00,13510.0
-2017-06-12 01:00:00,13461.0
-2017-06-12 02:00:00,12469.0
-2017-06-12 03:00:00,11712.0
-2017-06-12 04:00:00,11244.0
-2017-06-12 05:00:00,10944.0
-2017-06-12 06:00:00,10982.0
-2017-06-12 07:00:00,11352.0
-2017-06-12 08:00:00,12498.0
-2017-06-12 09:00:00,14046.0
-2017-06-12 10:00:00,15274.0
-2017-06-12 11:00:00,16387.0
-2017-06-12 12:00:00,17435.0
-2017-06-12 13:00:00,18267.0
-2017-06-12 14:00:00,18944.0
-2017-06-12 15:00:00,19527.0
-2017-06-12 16:00:00,19864.0
-2017-06-12 17:00:00,20166.0
-2017-06-12 18:00:00,20351.0
-2017-06-12 19:00:00,20266.0
-2017-06-12 20:00:00,19851.0
-2017-06-12 21:00:00,19063.0
-2017-06-12 22:00:00,18628.0
-2017-06-12 23:00:00,17764.0
-2017-06-13 00:00:00,15996.0
-2017-06-11 01:00:00,11907.0
-2017-06-11 02:00:00,11087.0
-2017-06-11 03:00:00,10457.0
-2017-06-11 04:00:00,10008.0
-2017-06-11 05:00:00,9627.0
-2017-06-11 06:00:00,9418.0
-2017-06-11 07:00:00,9199.0
-2017-06-11 08:00:00,9421.0
-2017-06-11 09:00:00,10311.0
-2017-06-11 10:00:00,11331.0
-2017-06-11 11:00:00,12381.0
-2017-06-11 12:00:00,13330.0
-2017-06-11 13:00:00,14291.0
-2017-06-11 14:00:00,15119.0
-2017-06-11 15:00:00,15801.0
-2017-06-11 16:00:00,16402.0
-2017-06-11 17:00:00,16828.0
-2017-06-11 18:00:00,17098.0
-2017-06-11 19:00:00,17124.0
-2017-06-11 20:00:00,16865.0
-2017-06-11 21:00:00,16390.0
-2017-06-11 22:00:00,15894.0
-2017-06-11 23:00:00,15614.0
-2017-06-12 00:00:00,14625.0
-2017-06-10 01:00:00,10968.0
-2017-06-10 02:00:00,10227.0
-2017-06-10 03:00:00,9635.0
-2017-06-10 04:00:00,9273.0
-2017-06-10 05:00:00,9044.0
-2017-06-10 06:00:00,9014.0
-2017-06-10 07:00:00,8996.0
-2017-06-10 08:00:00,9303.0
-2017-06-10 09:00:00,10056.0
-2017-06-10 10:00:00,10958.0
-2017-06-10 11:00:00,11879.0
-2017-06-10 12:00:00,12750.0
-2017-06-10 13:00:00,13466.0
-2017-06-10 14:00:00,13922.0
-2017-06-10 15:00:00,14382.0
-2017-06-10 16:00:00,14841.0
-2017-06-10 17:00:00,15245.0
-2017-06-10 18:00:00,15499.0
-2017-06-10 19:00:00,15466.0
-2017-06-10 20:00:00,15156.0
-2017-06-10 21:00:00,14510.0
-2017-06-10 22:00:00,13959.0
-2017-06-10 23:00:00,13620.0
-2017-06-11 00:00:00,12832.0
-2017-06-09 01:00:00,10543.0
-2017-06-09 02:00:00,9810.0
-2017-06-09 03:00:00,9262.0
-2017-06-09 04:00:00,8931.0
-2017-06-09 05:00:00,8799.0
-2017-06-09 06:00:00,8894.0
-2017-06-09 07:00:00,9195.0
-2017-06-09 08:00:00,10083.0
-2017-06-09 09:00:00,11127.0
-2017-06-09 10:00:00,12110.0
-2017-06-09 11:00:00,12912.0
-2017-06-09 12:00:00,13740.0
-2017-06-09 13:00:00,14382.0
-2017-06-09 14:00:00,14903.0
-2017-06-09 15:00:00,15441.0
-2017-06-09 16:00:00,15701.0
-2017-06-09 17:00:00,15805.0
-2017-06-09 18:00:00,15746.0
-2017-06-09 19:00:00,15289.0
-2017-06-09 20:00:00,14496.0
-2017-06-09 21:00:00,13572.0
-2017-06-09 22:00:00,13251.0
-2017-06-09 23:00:00,12850.0
-2017-06-10 00:00:00,12002.0
-2017-06-08 01:00:00,9682.0
-2017-06-08 02:00:00,9017.0
-2017-06-08 03:00:00,8569.0
-2017-06-08 04:00:00,8332.0
-2017-06-08 05:00:00,8181.0
-2017-06-08 06:00:00,8284.0
-2017-06-08 07:00:00,8634.0
-2017-06-08 08:00:00,9545.0
-2017-06-08 09:00:00,10551.0
-2017-06-08 10:00:00,11245.0
-2017-06-08 11:00:00,11759.0
-2017-06-08 12:00:00,12243.0
-2017-06-08 13:00:00,12613.0
-2017-06-08 14:00:00,12928.0
-2017-06-08 15:00:00,13294.0
-2017-06-08 16:00:00,13586.0
-2017-06-08 17:00:00,13794.0
-2017-06-08 18:00:00,13810.0
-2017-06-08 19:00:00,13506.0
-2017-06-08 20:00:00,13066.0
-2017-06-08 21:00:00,12738.0
-2017-06-08 22:00:00,12598.0
-2017-06-08 23:00:00,12351.0
-2017-06-09 00:00:00,11483.0
-2017-06-07 01:00:00,9416.0
-2017-06-07 02:00:00,8863.0
-2017-06-07 03:00:00,8484.0
-2017-06-07 04:00:00,8211.0
-2017-06-07 05:00:00,8097.0
-2017-06-07 06:00:00,8250.0
-2017-06-07 07:00:00,8548.0
-2017-06-07 08:00:00,9471.0
-2017-06-07 09:00:00,10435.0
-2017-06-07 10:00:00,11036.0
-2017-06-07 11:00:00,11462.0
-2017-06-07 12:00:00,11807.0
-2017-06-07 13:00:00,12025.0
-2017-06-07 14:00:00,12172.0
-2017-06-07 15:00:00,12363.0
-2017-06-07 16:00:00,12465.0
-2017-06-07 17:00:00,12523.0
-2017-06-07 18:00:00,12578.0
-2017-06-07 19:00:00,12511.0
-2017-06-07 20:00:00,12190.0
-2017-06-07 21:00:00,11810.0
-2017-06-07 22:00:00,11623.0
-2017-06-07 23:00:00,11374.0
-2017-06-08 00:00:00,10559.0
-2017-06-06 01:00:00,9510.0
-2017-06-06 02:00:00,8917.0
-2017-06-06 03:00:00,8495.0
-2017-06-06 04:00:00,8258.0
-2017-06-06 05:00:00,8139.0
-2017-06-06 06:00:00,8254.0
-2017-06-06 07:00:00,8582.0
-2017-06-06 08:00:00,9463.0
-2017-06-06 09:00:00,10371.0
-2017-06-06 10:00:00,10956.0
-2017-06-06 11:00:00,11327.0
-2017-06-06 12:00:00,11659.0
-2017-06-06 13:00:00,11868.0
-2017-06-06 14:00:00,12023.0
-2017-06-06 15:00:00,12214.0
-2017-06-06 16:00:00,12321.0
-2017-06-06 17:00:00,12330.0
-2017-06-06 18:00:00,12354.0
-2017-06-06 19:00:00,12181.0
-2017-06-06 20:00:00,11796.0
-2017-06-06 21:00:00,11413.0
-2017-06-06 22:00:00,11266.0
-2017-06-06 23:00:00,11028.0
-2017-06-07 00:00:00,10270.0
-2017-06-05 01:00:00,11140.0
-2017-06-05 02:00:00,10283.0
-2017-06-05 03:00:00,9698.0
-2017-06-05 04:00:00,9253.0
-2017-06-05 05:00:00,9036.0
-2017-06-05 06:00:00,9139.0
-2017-06-05 07:00:00,9534.0
-2017-06-05 08:00:00,10545.0
-2017-06-05 09:00:00,11695.0
-2017-06-05 10:00:00,12516.0
-2017-06-05 11:00:00,12989.0
-2017-06-05 12:00:00,13257.0
-2017-06-05 13:00:00,13275.0
-2017-06-05 14:00:00,13293.0
-2017-06-05 15:00:00,13302.0
-2017-06-05 16:00:00,13263.0
-2017-06-05 17:00:00,13170.0
-2017-06-05 18:00:00,13060.0
-2017-06-05 19:00:00,12776.0
-2017-06-05 20:00:00,12292.0
-2017-06-05 21:00:00,11748.0
-2017-06-05 22:00:00,11465.0
-2017-06-05 23:00:00,11186.0
-2017-06-06 00:00:00,10353.0
-2017-06-04 01:00:00,11081.0
-2017-06-04 02:00:00,10467.0
-2017-06-04 03:00:00,9889.0
-2017-06-04 04:00:00,9497.0
-2017-06-04 05:00:00,9177.0
-2017-06-04 06:00:00,9027.0
-2017-06-04 07:00:00,8867.0
-2017-06-04 08:00:00,8959.0
-2017-06-04 09:00:00,9404.0
-2017-06-04 10:00:00,10077.0
-2017-06-04 11:00:00,10996.0
-2017-06-04 12:00:00,12058.0
-2017-06-04 13:00:00,13073.0
-2017-06-04 14:00:00,13759.0
-2017-06-04 15:00:00,14301.0
-2017-06-04 16:00:00,14651.0
-2017-06-04 17:00:00,15002.0
-2017-06-04 18:00:00,15110.0
-2017-06-04 19:00:00,15126.0
-2017-06-04 20:00:00,14848.0
-2017-06-04 21:00:00,14396.0
-2017-06-04 22:00:00,13799.0
-2017-06-04 23:00:00,13379.0
-2017-06-05 00:00:00,12284.0
-2017-06-03 01:00:00,10333.0
-2017-06-03 02:00:00,9566.0
-2017-06-03 03:00:00,9018.0
-2017-06-03 04:00:00,8610.0
-2017-06-03 05:00:00,8382.0
-2017-06-03 06:00:00,8321.0
-2017-06-03 07:00:00,8238.0
-2017-06-03 08:00:00,8574.0
-2017-06-03 09:00:00,9323.0
-2017-06-03 10:00:00,10158.0
-2017-06-03 11:00:00,10867.0
-2017-06-03 12:00:00,11442.0
-2017-06-03 13:00:00,12021.0
-2017-06-03 14:00:00,12358.0
-2017-06-03 15:00:00,12671.0
-2017-06-03 16:00:00,12975.0
-2017-06-03 17:00:00,13300.0
-2017-06-03 18:00:00,13396.0
-2017-06-03 19:00:00,13401.0
-2017-06-03 20:00:00,13080.0
-2017-06-03 21:00:00,12756.0
-2017-06-03 22:00:00,12661.0
-2017-06-03 23:00:00,12512.0
-2017-06-04 00:00:00,11853.0
-2017-06-02 01:00:00,9505.0
-2017-06-02 02:00:00,8898.0
-2017-06-02 03:00:00,8479.0
-2017-06-02 04:00:00,8221.0
-2017-06-02 05:00:00,8103.0
-2017-06-02 06:00:00,8204.0
-2017-06-02 07:00:00,8570.0
-2017-06-02 08:00:00,9452.0
-2017-06-02 09:00:00,10422.0
-2017-06-02 10:00:00,11132.0
-2017-06-02 11:00:00,11726.0
-2017-06-02 12:00:00,12219.0
-2017-06-02 13:00:00,12626.0
-2017-06-02 14:00:00,12898.0
-2017-06-02 15:00:00,13227.0
-2017-06-02 16:00:00,13490.0
-2017-06-02 17:00:00,13690.0
-2017-06-02 18:00:00,13843.0
-2017-06-02 19:00:00,13784.0
-2017-06-02 20:00:00,13433.0
-2017-06-02 21:00:00,12911.0
-2017-06-02 22:00:00,12486.0
-2017-06-02 23:00:00,12177.0
-2017-06-03 00:00:00,11316.0
-2017-06-01 01:00:00,9307.0
-2017-06-01 02:00:00,8736.0
-2017-06-01 03:00:00,8374.0
-2017-06-01 04:00:00,8104.0
-2017-06-01 05:00:00,8013.0
-2017-06-01 06:00:00,8139.0
-2017-06-01 07:00:00,8487.0
-2017-06-01 08:00:00,9369.0
-2017-06-01 09:00:00,10237.0
-2017-06-01 10:00:00,10847.0
-2017-06-01 11:00:00,11269.0
-2017-06-01 12:00:00,11682.0
-2017-06-01 13:00:00,11904.0
-2017-06-01 14:00:00,12033.0
-2017-06-01 15:00:00,12260.0
-2017-06-01 16:00:00,12385.0
-2017-06-01 17:00:00,12474.0
-2017-06-01 18:00:00,12555.0
-2017-06-01 19:00:00,12447.0
-2017-06-01 20:00:00,12076.0
-2017-06-01 21:00:00,11658.0
-2017-06-01 22:00:00,11537.0
-2017-06-01 23:00:00,11247.0
-2017-06-02 00:00:00,10404.0
-2017-05-31 01:00:00,9224.0
-2017-05-31 02:00:00,8676.0
-2017-05-31 03:00:00,8315.0
-2017-05-31 04:00:00,8068.0
-2017-05-31 05:00:00,7979.0
-2017-05-31 06:00:00,8117.0
-2017-05-31 07:00:00,8500.0
-2017-05-31 08:00:00,9342.0
-2017-05-31 09:00:00,10172.0
-2017-05-31 10:00:00,10728.0
-2017-05-31 11:00:00,11065.0
-2017-05-31 12:00:00,11344.0
-2017-05-31 13:00:00,11485.0
-2017-05-31 14:00:00,11587.0
-2017-05-31 15:00:00,11726.0
-2017-05-31 16:00:00,11758.0
-2017-05-31 17:00:00,11790.0
-2017-05-31 18:00:00,11792.0
-2017-05-31 19:00:00,11674.0
-2017-05-31 20:00:00,11396.0
-2017-05-31 21:00:00,11141.0
-2017-05-31 22:00:00,11129.0
-2017-05-31 23:00:00,10916.0
-2017-06-01 00:00:00,10125.0
-2017-05-30 01:00:00,8417.0
-2017-05-30 02:00:00,7973.0
-2017-05-30 03:00:00,7679.0
-2017-05-30 04:00:00,7513.0
-2017-05-30 05:00:00,7469.0
-2017-05-30 06:00:00,7646.0
-2017-05-30 07:00:00,8141.0
-2017-05-30 08:00:00,9095.0
-2017-05-30 09:00:00,10050.0
-2017-05-30 10:00:00,10691.0
-2017-05-30 11:00:00,11116.0
-2017-05-30 12:00:00,11450.0
-2017-05-30 13:00:00,11642.0
-2017-05-30 14:00:00,11718.0
-2017-05-30 15:00:00,11678.0
-2017-05-30 16:00:00,11642.0
-2017-05-30 17:00:00,11630.0
-2017-05-30 18:00:00,11541.0
-2017-05-30 19:00:00,11389.0
-2017-05-30 20:00:00,11038.0
-2017-05-30 21:00:00,10826.0
-2017-05-30 22:00:00,10932.0
-2017-05-30 23:00:00,10718.0
-2017-05-31 00:00:00,9991.0
-2017-05-29 01:00:00,8575.0
-2017-05-29 02:00:00,8094.0
-2017-05-29 03:00:00,7776.0
-2017-05-29 04:00:00,7587.0
-2017-05-29 05:00:00,7480.0
-2017-05-29 06:00:00,7463.0
-2017-05-29 07:00:00,7442.0
-2017-05-29 08:00:00,7543.0
-2017-05-29 09:00:00,7950.0
-2017-05-29 10:00:00,8448.0
-2017-05-29 11:00:00,8954.0
-2017-05-29 12:00:00,9319.0
-2017-05-29 13:00:00,9593.0
-2017-05-29 14:00:00,9732.0
-2017-05-29 15:00:00,9804.0
-2017-05-29 16:00:00,9793.0
-2017-05-29 17:00:00,9856.0
-2017-05-29 18:00:00,9913.0
-2017-05-29 19:00:00,9905.0
-2017-05-29 20:00:00,9761.0
-2017-05-29 21:00:00,9571.0
-2017-05-29 22:00:00,9711.0
-2017-05-29 23:00:00,9657.0
-2017-05-30 00:00:00,9026.0
-2017-05-28 01:00:00,8696.0
-2017-05-28 02:00:00,8220.0
-2017-05-28 03:00:00,7886.0
-2017-05-28 04:00:00,7650.0
-2017-05-28 05:00:00,7515.0
-2017-05-28 06:00:00,7425.0
-2017-05-28 07:00:00,7318.0
-2017-05-28 08:00:00,7331.0
-2017-05-28 09:00:00,7714.0
-2017-05-28 10:00:00,8243.0
-2017-05-28 11:00:00,8697.0
-2017-05-28 12:00:00,9081.0
-2017-05-28 13:00:00,9320.0
-2017-05-28 14:00:00,9474.0
-2017-05-28 15:00:00,9540.0
-2017-05-28 16:00:00,9644.0
-2017-05-28 17:00:00,9719.0
-2017-05-28 18:00:00,9886.0
-2017-05-28 19:00:00,9937.0
-2017-05-28 20:00:00,9748.0
-2017-05-28 21:00:00,9601.0
-2017-05-28 22:00:00,9663.0
-2017-05-28 23:00:00,9632.0
-2017-05-29 00:00:00,9127.0
-2017-05-27 01:00:00,8789.0
-2017-05-27 02:00:00,8289.0
-2017-05-27 03:00:00,7986.0
-2017-05-27 04:00:00,7730.0
-2017-05-27 05:00:00,7637.0
-2017-05-27 06:00:00,7653.0
-2017-05-27 07:00:00,7669.0
-2017-05-27 08:00:00,7789.0
-2017-05-27 09:00:00,8208.0
-2017-05-27 10:00:00,8740.0
-2017-05-27 11:00:00,9156.0
-2017-05-27 12:00:00,9466.0
-2017-05-27 13:00:00,9611.0
-2017-05-27 14:00:00,9726.0
-2017-05-27 15:00:00,9825.0
-2017-05-27 16:00:00,9907.0
-2017-05-27 17:00:00,10024.0
-2017-05-27 18:00:00,10124.0
-2017-05-27 19:00:00,10153.0
-2017-05-27 20:00:00,10025.0
-2017-05-27 21:00:00,9786.0
-2017-05-27 22:00:00,9905.0
-2017-05-27 23:00:00,9692.0
-2017-05-28 00:00:00,9161.0
-2017-05-26 01:00:00,9012.0
-2017-05-26 02:00:00,8533.0
-2017-05-26 03:00:00,8192.0
-2017-05-26 04:00:00,7987.0
-2017-05-26 05:00:00,7888.0
-2017-05-26 06:00:00,8048.0
-2017-05-26 07:00:00,8462.0
-2017-05-26 08:00:00,9247.0
-2017-05-26 09:00:00,10071.0
-2017-05-26 10:00:00,10589.0
-2017-05-26 11:00:00,10904.0
-2017-05-26 12:00:00,11107.0
-2017-05-26 13:00:00,11151.0
-2017-05-26 14:00:00,11125.0
-2017-05-26 15:00:00,11118.0
-2017-05-26 16:00:00,11089.0
-2017-05-26 17:00:00,10912.0
-2017-05-26 18:00:00,10762.0
-2017-05-26 19:00:00,10542.0
-2017-05-26 20:00:00,10354.0
-2017-05-26 21:00:00,10257.0
-2017-05-26 22:00:00,10259.0
-2017-05-26 23:00:00,10026.0
-2017-05-27 00:00:00,9362.0
-2017-05-25 01:00:00,8998.0
-2017-05-25 02:00:00,8553.0
-2017-05-25 03:00:00,8243.0
-2017-05-25 04:00:00,8062.0
-2017-05-25 05:00:00,7984.0
-2017-05-25 06:00:00,8188.0
-2017-05-25 07:00:00,8695.0
-2017-05-25 08:00:00,9535.0
-2017-05-25 09:00:00,10317.0
-2017-05-25 10:00:00,10744.0
-2017-05-25 11:00:00,10909.0
-2017-05-25 12:00:00,11014.0
-2017-05-25 13:00:00,11096.0
-2017-05-25 14:00:00,11139.0
-2017-05-25 15:00:00,11189.0
-2017-05-25 16:00:00,11143.0
-2017-05-25 17:00:00,11061.0
-2017-05-25 18:00:00,10916.0
-2017-05-25 19:00:00,10745.0
-2017-05-25 20:00:00,10461.0
-2017-05-25 21:00:00,10333.0
-2017-05-25 22:00:00,10583.0
-2017-05-25 23:00:00,10414.0
-2017-05-26 00:00:00,9751.0
-2017-05-24 01:00:00,9013.0
-2017-05-24 02:00:00,8583.0
-2017-05-24 03:00:00,8276.0
-2017-05-24 04:00:00,8109.0
-2017-05-24 05:00:00,8050.0
-2017-05-24 06:00:00,8244.0
-2017-05-24 07:00:00,8785.0
-2017-05-24 08:00:00,9608.0
-2017-05-24 09:00:00,10313.0
-2017-05-24 10:00:00,10675.0
-2017-05-24 11:00:00,10863.0
-2017-05-24 12:00:00,10987.0
-2017-05-24 13:00:00,10994.0
-2017-05-24 14:00:00,10952.0
-2017-05-24 15:00:00,11002.0
-2017-05-24 16:00:00,10874.0
-2017-05-24 17:00:00,10766.0
-2017-05-24 18:00:00,10667.0
-2017-05-24 19:00:00,10542.0
-2017-05-24 20:00:00,10389.0
-2017-05-24 21:00:00,10405.0
-2017-05-24 22:00:00,10632.0
-2017-05-24 23:00:00,10363.0
-2017-05-25 00:00:00,9660.0
-2017-05-23 01:00:00,8997.0
-2017-05-23 02:00:00,8517.0
-2017-05-23 03:00:00,8193.0
-2017-05-23 04:00:00,8020.0
-2017-05-23 05:00:00,7949.0
-2017-05-23 06:00:00,8149.0
-2017-05-23 07:00:00,8651.0
-2017-05-23 08:00:00,9526.0
-2017-05-23 09:00:00,10325.0
-2017-05-23 10:00:00,10775.0
-2017-05-23 11:00:00,10976.0
-2017-05-23 12:00:00,11126.0
-2017-05-23 13:00:00,11182.0
-2017-05-23 14:00:00,11157.0
-2017-05-23 15:00:00,11171.0
-2017-05-23 16:00:00,11095.0
-2017-05-23 17:00:00,10983.0
-2017-05-23 18:00:00,10943.0
-2017-05-23 19:00:00,10833.0
-2017-05-23 20:00:00,10690.0
-2017-05-23 21:00:00,10655.0
-2017-05-23 22:00:00,10730.0
-2017-05-23 23:00:00,10371.0
-2017-05-24 00:00:00,9712.0
-2017-05-22 01:00:00,8291.0
-2017-05-22 02:00:00,7924.0
-2017-05-22 03:00:00,7761.0
-2017-05-22 04:00:00,7680.0
-2017-05-22 05:00:00,7712.0
-2017-05-22 06:00:00,7947.0
-2017-05-22 07:00:00,8471.0
-2017-05-22 08:00:00,9377.0
-2017-05-22 09:00:00,10123.0
-2017-05-22 10:00:00,10443.0
-2017-05-22 11:00:00,10679.0
-2017-05-22 12:00:00,10882.0
-2017-05-22 13:00:00,11024.0
-2017-05-22 14:00:00,11099.0
-2017-05-22 15:00:00,11256.0
-2017-05-22 16:00:00,11244.0
-2017-05-22 17:00:00,11208.0
-2017-05-22 18:00:00,11090.0
-2017-05-22 19:00:00,10926.0
-2017-05-22 20:00:00,10670.0
-2017-05-22 21:00:00,10623.0
-2017-05-22 22:00:00,10820.0
-2017-05-22 23:00:00,10449.0
-2017-05-23 00:00:00,9707.0
-2017-05-21 01:00:00,8566.0
-2017-05-21 02:00:00,8180.0
-2017-05-21 03:00:00,7869.0
-2017-05-21 04:00:00,7736.0
-2017-05-21 05:00:00,7654.0
-2017-05-21 06:00:00,7641.0
-2017-05-21 07:00:00,7623.0
-2017-05-21 08:00:00,7548.0
-2017-05-21 09:00:00,7805.0
-2017-05-21 10:00:00,8214.0
-2017-05-21 11:00:00,8543.0
-2017-05-21 12:00:00,8748.0
-2017-05-21 13:00:00,8801.0
-2017-05-21 14:00:00,8890.0
-2017-05-21 15:00:00,8854.0
-2017-05-21 16:00:00,8808.0
-2017-05-21 17:00:00,8781.0
-2017-05-21 18:00:00,8830.0
-2017-05-21 19:00:00,8930.0
-2017-05-21 20:00:00,9006.0
-2017-05-21 21:00:00,9042.0
-2017-05-21 22:00:00,9346.0
-2017-05-21 23:00:00,9179.0
-2017-05-22 00:00:00,8754.0
-2017-05-20 01:00:00,9000.0
-2017-05-20 02:00:00,8505.0
-2017-05-20 03:00:00,8204.0
-2017-05-20 04:00:00,8010.0
-2017-05-20 05:00:00,7942.0
-2017-05-20 06:00:00,7970.0
-2017-05-20 07:00:00,8143.0
-2017-05-20 08:00:00,8331.0
-2017-05-20 09:00:00,8745.0
-2017-05-20 10:00:00,9254.0
-2017-05-20 11:00:00,9614.0
-2017-05-20 12:00:00,9993.0
-2017-05-20 13:00:00,9917.0
-2017-05-20 14:00:00,9765.0
-2017-05-20 15:00:00,9544.0
-2017-05-20 16:00:00,9434.0
-2017-05-20 17:00:00,9342.0
-2017-05-20 18:00:00,9284.0
-2017-05-20 19:00:00,9260.0
-2017-05-20 20:00:00,9203.0
-2017-05-20 21:00:00,9242.0
-2017-05-20 22:00:00,9565.0
-2017-05-20 23:00:00,9517.0
-2017-05-21 00:00:00,9092.0
-2017-05-19 01:00:00,9238.0
-2017-05-19 02:00:00,8659.0
-2017-05-19 03:00:00,8293.0
-2017-05-19 04:00:00,8048.0
-2017-05-19 05:00:00,7961.0
-2017-05-19 06:00:00,8133.0
-2017-05-19 07:00:00,8629.0
-2017-05-19 08:00:00,9433.0
-2017-05-19 09:00:00,10225.0
-2017-05-19 10:00:00,10646.0
-2017-05-19 11:00:00,10917.0
-2017-05-19 12:00:00,10963.0
-2017-05-19 13:00:00,10923.0
-2017-05-19 14:00:00,10869.0
-2017-05-19 15:00:00,10909.0
-2017-05-19 16:00:00,10807.0
-2017-05-19 17:00:00,10685.0
-2017-05-19 18:00:00,10536.0
-2017-05-19 19:00:00,10465.0
-2017-05-19 20:00:00,10284.0
-2017-05-19 21:00:00,10237.0
-2017-05-19 22:00:00,10482.0
-2017-05-19 23:00:00,10279.0
-2017-05-20 00:00:00,9642.0
-2017-05-18 01:00:00,11320.0
-2017-05-18 02:00:00,10274.0
-2017-05-18 03:00:00,9664.0
-2017-05-18 04:00:00,9347.0
-2017-05-18 05:00:00,9269.0
-2017-05-18 06:00:00,9432.0
-2017-05-18 07:00:00,9921.0
-2017-05-18 08:00:00,10968.0
-2017-05-18 09:00:00,12122.0
-2017-05-18 10:00:00,12718.0
-2017-05-18 11:00:00,13016.0
-2017-05-18 12:00:00,13311.0
-2017-05-18 13:00:00,13457.0
-2017-05-18 14:00:00,13608.0
-2017-05-18 15:00:00,13857.0
-2017-05-18 16:00:00,13993.0
-2017-05-18 17:00:00,14162.0
-2017-05-18 18:00:00,14260.0
-2017-05-18 19:00:00,14082.0
-2017-05-18 20:00:00,13423.0
-2017-05-18 21:00:00,12564.0
-2017-05-18 22:00:00,11963.0
-2017-05-18 23:00:00,11189.0
-2017-05-19 00:00:00,10157.0
-2017-05-17 01:00:00,11516.0
-2017-05-17 02:00:00,10721.0
-2017-05-17 03:00:00,10190.0
-2017-05-17 04:00:00,9781.0
-2017-05-17 05:00:00,9580.0
-2017-05-17 06:00:00,9646.0
-2017-05-17 07:00:00,10104.0
-2017-05-17 08:00:00,11056.0
-2017-05-17 09:00:00,12147.0
-2017-05-17 10:00:00,13045.0
-2017-05-17 11:00:00,13647.0
-2017-05-17 12:00:00,14193.0
-2017-05-17 13:00:00,14535.0
-2017-05-17 14:00:00,14623.0
-2017-05-17 15:00:00,14886.0
-2017-05-17 16:00:00,14981.0
-2017-05-17 17:00:00,14983.0
-2017-05-17 18:00:00,15057.0
-2017-05-17 19:00:00,14722.0
-2017-05-17 20:00:00,14196.0
-2017-05-17 21:00:00,13788.0
-2017-05-17 22:00:00,13812.0
-2017-05-17 23:00:00,13386.0
-2017-05-18 00:00:00,12381.0
-2017-05-16 01:00:00,9889.0
-2017-05-16 02:00:00,9308.0
-2017-05-16 03:00:00,8854.0
-2017-05-16 04:00:00,8624.0
-2017-05-16 05:00:00,8485.0
-2017-05-16 06:00:00,8663.0
-2017-05-16 07:00:00,9141.0
-2017-05-16 08:00:00,10104.0
-2017-05-16 09:00:00,11120.0
-2017-05-16 10:00:00,11827.0
-2017-05-16 11:00:00,12407.0
-2017-05-16 12:00:00,12997.0
-2017-05-16 13:00:00,13492.0
-2017-05-16 14:00:00,13984.0
-2017-05-16 15:00:00,14422.0
-2017-05-16 16:00:00,14650.0
-2017-05-16 17:00:00,14750.0
-2017-05-16 18:00:00,14862.0
-2017-05-16 19:00:00,14753.0
-2017-05-16 20:00:00,14332.0
-2017-05-16 21:00:00,13941.0
-2017-05-16 22:00:00,13970.0
-2017-05-16 23:00:00,13564.0
-2017-05-17 00:00:00,12568.0
-2017-05-15 01:00:00,8120.0
-2017-05-15 02:00:00,7760.0
-2017-05-15 03:00:00,7567.0
-2017-05-15 04:00:00,7468.0
-2017-05-15 05:00:00,7468.0
-2017-05-15 06:00:00,7712.0
-2017-05-15 07:00:00,8254.0
-2017-05-15 08:00:00,9074.0
-2017-05-15 09:00:00,9967.0
-2017-05-15 10:00:00,10441.0
-2017-05-15 11:00:00,10836.0
-2017-05-15 12:00:00,11201.0
-2017-05-15 13:00:00,11446.0
-2017-05-15 14:00:00,11684.0
-2017-05-15 15:00:00,11926.0
-2017-05-15 16:00:00,12059.0
-2017-05-15 17:00:00,12091.0
-2017-05-15 18:00:00,12089.0
-2017-05-15 19:00:00,12030.0
-2017-05-15 20:00:00,11801.0
-2017-05-15 21:00:00,11761.0
-2017-05-15 22:00:00,12054.0
-2017-05-15 23:00:00,11605.0
-2017-05-16 00:00:00,10726.0
-2017-05-14 01:00:00,8674.0
-2017-05-14 02:00:00,8135.0
-2017-05-14 03:00:00,7797.0
-2017-05-14 04:00:00,7509.0
-2017-05-14 05:00:00,7422.0
-2017-05-14 06:00:00,7313.0
-2017-05-14 07:00:00,7308.0
-2017-05-14 08:00:00,7289.0
-2017-05-14 09:00:00,7640.0
-2017-05-14 10:00:00,8129.0
-2017-05-14 11:00:00,8509.0
-2017-05-14 12:00:00,8829.0
-2017-05-14 13:00:00,9053.0
-2017-05-14 14:00:00,9173.0
-2017-05-14 15:00:00,9166.0
-2017-05-14 16:00:00,9137.0
-2017-05-14 17:00:00,9049.0
-2017-05-14 18:00:00,8983.0
-2017-05-14 19:00:00,8893.0
-2017-05-14 20:00:00,8827.0
-2017-05-14 21:00:00,8742.0
-2017-05-14 22:00:00,9179.0
-2017-05-14 23:00:00,9069.0
-2017-05-15 00:00:00,8614.0
-2017-05-13 01:00:00,8851.0
-2017-05-13 02:00:00,8303.0
-2017-05-13 03:00:00,8033.0
-2017-05-13 04:00:00,7802.0
-2017-05-13 05:00:00,7691.0
-2017-05-13 06:00:00,7719.0
-2017-05-13 07:00:00,7834.0
-2017-05-13 08:00:00,8018.0
-2017-05-13 09:00:00,8481.0
-2017-05-13 10:00:00,8941.0
-2017-05-13 11:00:00,9277.0
-2017-05-13 12:00:00,9511.0
-2017-05-13 13:00:00,9602.0
-2017-05-13 14:00:00,9613.0
-2017-05-13 15:00:00,9558.0
-2017-05-13 16:00:00,9580.0
-2017-05-13 17:00:00,9627.0
-2017-05-13 18:00:00,9764.0
-2017-05-13 19:00:00,9827.0
-2017-05-13 20:00:00,9795.0
-2017-05-13 21:00:00,9740.0
-2017-05-13 22:00:00,9963.0
-2017-05-13 23:00:00,9813.0
-2017-05-14 00:00:00,9265.0
-2017-05-12 01:00:00,8861.0
-2017-05-12 02:00:00,8399.0
-2017-05-12 03:00:00,8103.0
-2017-05-12 04:00:00,7945.0
-2017-05-12 05:00:00,7864.0
-2017-05-12 06:00:00,8092.0
-2017-05-12 07:00:00,8603.0
-2017-05-12 08:00:00,9379.0
-2017-05-12 09:00:00,10056.0
-2017-05-12 10:00:00,10425.0
-2017-05-12 11:00:00,10593.0
-2017-05-12 12:00:00,10801.0
-2017-05-12 13:00:00,10938.0
-2017-05-12 14:00:00,10967.0
-2017-05-12 15:00:00,11039.0
-2017-05-12 16:00:00,10889.0
-2017-05-12 17:00:00,10762.0
-2017-05-12 18:00:00,10560.0
-2017-05-12 19:00:00,10354.0
-2017-05-12 20:00:00,10108.0
-2017-05-12 21:00:00,9984.0
-2017-05-12 22:00:00,10243.0
-2017-05-12 23:00:00,10038.0
-2017-05-13 00:00:00,9459.0
-2017-05-11 01:00:00,8898.0
-2017-05-11 02:00:00,8501.0
-2017-05-11 03:00:00,8240.0
-2017-05-11 04:00:00,8086.0
-2017-05-11 05:00:00,8070.0
-2017-05-11 06:00:00,8273.0
-2017-05-11 07:00:00,8880.0
-2017-05-11 08:00:00,9670.0
-2017-05-11 09:00:00,10352.0
-2017-05-11 10:00:00,10630.0
-2017-05-11 11:00:00,10751.0
-2017-05-11 12:00:00,10848.0
-2017-05-11 13:00:00,10870.0
-2017-05-11 14:00:00,10854.0
-2017-05-11 15:00:00,10878.0
-2017-05-11 16:00:00,10797.0
-2017-05-11 17:00:00,10729.0
-2017-05-11 18:00:00,10679.0
-2017-05-11 19:00:00,10557.0
-2017-05-11 20:00:00,10304.0
-2017-05-11 21:00:00,10214.0
-2017-05-11 22:00:00,10562.0
-2017-05-11 23:00:00,10280.0
-2017-05-12 00:00:00,9545.0
-2017-05-10 01:00:00,8935.0
-2017-05-10 02:00:00,8459.0
-2017-05-10 03:00:00,8193.0
-2017-05-10 04:00:00,8060.0
-2017-05-10 05:00:00,8029.0
-2017-05-10 06:00:00,8258.0
-2017-05-10 07:00:00,8836.0
-2017-05-10 08:00:00,9617.0
-2017-05-10 09:00:00,10289.0
-2017-05-10 10:00:00,10488.0
-2017-05-10 11:00:00,10653.0
-2017-05-10 12:00:00,10856.0
-2017-05-10 13:00:00,10972.0
-2017-05-10 14:00:00,10980.0
-2017-05-10 15:00:00,11025.0
-2017-05-10 16:00:00,10832.0
-2017-05-10 17:00:00,10711.0
-2017-05-10 18:00:00,10644.0
-2017-05-10 19:00:00,10648.0
-2017-05-10 20:00:00,10614.0
-2017-05-10 21:00:00,10817.0
-2017-05-10 22:00:00,10863.0
-2017-05-10 23:00:00,10346.0
-2017-05-11 00:00:00,9587.0
-2017-05-09 01:00:00,9024.0
-2017-05-09 02:00:00,8620.0
-2017-05-09 03:00:00,8414.0
-2017-05-09 04:00:00,8245.0
-2017-05-09 05:00:00,8285.0
-2017-05-09 06:00:00,8515.0
-2017-05-09 07:00:00,9198.0
-2017-05-09 08:00:00,10110.0
-2017-05-09 09:00:00,10725.0
-2017-05-09 10:00:00,11019.0
-2017-05-09 11:00:00,11132.0
-2017-05-09 12:00:00,11180.0
-2017-05-09 13:00:00,11113.0
-2017-05-09 14:00:00,10928.0
-2017-05-09 15:00:00,10874.0
-2017-05-09 16:00:00,10718.0
-2017-05-09 17:00:00,10525.0
-2017-05-09 18:00:00,10457.0
-2017-05-09 19:00:00,10358.0
-2017-05-09 20:00:00,10184.0
-2017-05-09 21:00:00,10320.0
-2017-05-09 22:00:00,10648.0
-2017-05-09 23:00:00,10261.0
-2017-05-10 00:00:00,9577.0
-2017-05-08 01:00:00,8353.0
-2017-05-08 02:00:00,8094.0
-2017-05-08 03:00:00,7944.0
-2017-05-08 04:00:00,7888.0
-2017-05-08 05:00:00,7954.0
-2017-05-08 06:00:00,8272.0
-2017-05-08 07:00:00,8947.0
-2017-05-08 08:00:00,9777.0
-2017-05-08 09:00:00,10396.0
-2017-05-08 10:00:00,10610.0
-2017-05-08 11:00:00,10735.0
-2017-05-08 12:00:00,10806.0
-2017-05-08 13:00:00,10791.0
-2017-05-08 14:00:00,10719.0
-2017-05-08 15:00:00,10743.0
-2017-05-08 16:00:00,10625.0
-2017-05-08 17:00:00,10492.0
-2017-05-08 18:00:00,10346.0
-2017-05-08 19:00:00,10284.0
-2017-05-08 20:00:00,10123.0
-2017-05-08 21:00:00,10307.0
-2017-05-08 22:00:00,10693.0
-2017-05-08 23:00:00,10308.0
-2017-05-09 00:00:00,9655.0
-2017-05-07 01:00:00,8314.0
-2017-05-07 02:00:00,7998.0
-2017-05-07 03:00:00,7793.0
-2017-05-07 04:00:00,7663.0
-2017-05-07 05:00:00,7606.0
-2017-05-07 06:00:00,7664.0
-2017-05-07 07:00:00,7730.0
-2017-05-07 08:00:00,7745.0
-2017-05-07 09:00:00,7914.0
-2017-05-07 10:00:00,8150.0
-2017-05-07 11:00:00,8331.0
-2017-05-07 12:00:00,8442.0
-2017-05-07 13:00:00,8459.0
-2017-05-07 14:00:00,8472.0
-2017-05-07 15:00:00,8436.0
-2017-05-07 16:00:00,8381.0
-2017-05-07 17:00:00,8349.0
-2017-05-07 18:00:00,8396.0
-2017-05-07 19:00:00,8495.0
-2017-05-07 20:00:00,8556.0
-2017-05-07 21:00:00,8744.0
-2017-05-07 22:00:00,9311.0
-2017-05-07 23:00:00,9228.0
-2017-05-08 00:00:00,8817.0
-2017-05-06 01:00:00,8954.0
-2017-05-06 02:00:00,8416.0
-2017-05-06 03:00:00,8222.0
-2017-05-06 04:00:00,8077.0
-2017-05-06 05:00:00,7997.0
-2017-05-06 06:00:00,8061.0
-2017-05-06 07:00:00,8196.0
-2017-05-06 08:00:00,8399.0
-2017-05-06 09:00:00,8752.0
-2017-05-06 10:00:00,9047.0
-2017-05-06 11:00:00,9202.0
-2017-05-06 12:00:00,9289.0
-2017-05-06 13:00:00,9308.0
-2017-05-06 14:00:00,9195.0
-2017-05-06 15:00:00,9048.0
-2017-05-06 16:00:00,8895.0
-2017-05-06 17:00:00,8805.0
-2017-05-06 18:00:00,8753.0
-2017-05-06 19:00:00,8709.0
-2017-05-06 20:00:00,8715.0
-2017-05-06 21:00:00,8762.0
-2017-05-06 22:00:00,9193.0
-2017-05-06 23:00:00,9099.0
-2017-05-07 00:00:00,8739.0
-2017-05-05 01:00:00,9067.0
-2017-05-05 02:00:00,8680.0
-2017-05-05 03:00:00,8434.0
-2017-05-05 04:00:00,8318.0
-2017-05-05 05:00:00,8305.0
-2017-05-05 06:00:00,8540.0
-2017-05-05 07:00:00,9162.0
-2017-05-05 08:00:00,9942.0
-2017-05-05 09:00:00,10593.0
-2017-05-05 10:00:00,10807.0
-2017-05-05 11:00:00,10854.0
-2017-05-05 12:00:00,10904.0
-2017-05-05 13:00:00,10881.0
-2017-05-05 14:00:00,10799.0
-2017-05-05 15:00:00,10776.0
-2017-05-05 16:00:00,10609.0
-2017-05-05 17:00:00,10417.0
-2017-05-05 18:00:00,10246.0
-2017-05-05 19:00:00,10058.0
-2017-05-05 20:00:00,9887.0
-2017-05-05 21:00:00,9906.0
-2017-05-05 22:00:00,10271.0
-2017-05-05 23:00:00,10067.0
-2017-05-06 00:00:00,9565.0
-2017-05-04 01:00:00,9020.0
-2017-05-04 02:00:00,8613.0
-2017-05-04 03:00:00,8344.0
-2017-05-04 04:00:00,8219.0
-2017-05-04 05:00:00,8183.0
-2017-05-04 06:00:00,8401.0
-2017-05-04 07:00:00,9053.0
-2017-05-04 08:00:00,9960.0
-2017-05-04 09:00:00,10624.0
-2017-05-04 10:00:00,10873.0
-2017-05-04 11:00:00,11007.0
-2017-05-04 12:00:00,11098.0
-2017-05-04 13:00:00,11033.0
-2017-05-04 14:00:00,10992.0
-2017-05-04 15:00:00,10959.0
-2017-05-04 16:00:00,10796.0
-2017-05-04 17:00:00,10648.0
-2017-05-04 18:00:00,10555.0
-2017-05-04 19:00:00,10475.0
-2017-05-04 20:00:00,10272.0
-2017-05-04 21:00:00,10238.0
-2017-05-04 22:00:00,10663.0
-2017-05-04 23:00:00,10392.0
-2017-05-05 00:00:00,9703.0
-2017-05-03 01:00:00,9281.0
-2017-05-03 02:00:00,8843.0
-2017-05-03 03:00:00,8632.0
-2017-05-03 04:00:00,8497.0
-2017-05-03 05:00:00,8488.0
-2017-05-03 06:00:00,8761.0
-2017-05-03 07:00:00,9456.0
-2017-05-03 08:00:00,10241.0
-2017-05-03 09:00:00,10758.0
-2017-05-03 10:00:00,10902.0
-2017-05-03 11:00:00,10903.0
-2017-05-03 12:00:00,10900.0
-2017-05-03 13:00:00,10886.0
-2017-05-03 14:00:00,10795.0
-2017-05-03 15:00:00,10777.0
-2017-05-03 16:00:00,10593.0
-2017-05-03 17:00:00,10428.0
-2017-05-03 18:00:00,10360.0
-2017-05-03 19:00:00,10265.0
-2017-05-03 20:00:00,10178.0
-2017-05-03 21:00:00,10388.0
-2017-05-03 22:00:00,10693.0
-2017-05-03 23:00:00,10351.0
-2017-05-04 00:00:00,9673.0
-2017-05-02 01:00:00,9306.0
-2017-05-02 02:00:00,8883.0
-2017-05-02 03:00:00,8618.0
-2017-05-02 04:00:00,8494.0
-2017-05-02 05:00:00,8504.0
-2017-05-02 06:00:00,8746.0
-2017-05-02 07:00:00,9426.0
-2017-05-02 08:00:00,10317.0
-2017-05-02 09:00:00,10979.0
-2017-05-02 10:00:00,11208.0
-2017-05-02 11:00:00,11271.0
-2017-05-02 12:00:00,11340.0
-2017-05-02 13:00:00,11309.0
-2017-05-02 14:00:00,11231.0
-2017-05-02 15:00:00,11161.0
-2017-05-02 16:00:00,10998.0
-2017-05-02 17:00:00,10895.0
-2017-05-02 18:00:00,10828.0
-2017-05-02 19:00:00,10828.0
-2017-05-02 20:00:00,10651.0
-2017-05-02 21:00:00,10750.0
-2017-05-02 22:00:00,10971.0
-2017-05-02 23:00:00,10578.0
-2017-05-03 00:00:00,9908.0
-2017-05-01 01:00:00,8858.0
-2017-05-01 02:00:00,8483.0
-2017-05-01 03:00:00,8275.0
-2017-05-01 04:00:00,8141.0
-2017-05-01 05:00:00,8071.0
-2017-05-01 06:00:00,8291.0
-2017-05-01 07:00:00,8940.0
-2017-05-01 08:00:00,9752.0
-2017-05-01 09:00:00,10441.0
-2017-05-01 10:00:00,10620.0
-2017-05-01 11:00:00,10759.0
-2017-05-01 12:00:00,10885.0
-2017-05-01 13:00:00,10915.0
-2017-05-01 14:00:00,10906.0
-2017-05-01 15:00:00,10895.0
-2017-05-01 16:00:00,10777.0
-2017-05-01 17:00:00,10646.0
-2017-05-01 18:00:00,10578.0
-2017-05-01 19:00:00,10563.0
-2017-05-01 20:00:00,10628.0
-2017-05-01 21:00:00,10814.0
-2017-05-01 22:00:00,10982.0
-2017-05-01 23:00:00,10564.0
-2017-05-02 00:00:00,9916.0
-2017-04-30 01:00:00,8988.0
-2017-04-30 02:00:00,8598.0
-2017-04-30 03:00:00,8260.0
-2017-04-30 04:00:00,8119.0
-2017-04-30 05:00:00,8012.0
-2017-04-30 06:00:00,8051.0
-2017-04-30 07:00:00,8185.0
-2017-04-30 08:00:00,8285.0
-2017-04-30 09:00:00,8517.0
-2017-04-30 10:00:00,8886.0
-2017-04-30 11:00:00,9105.0
-2017-04-30 12:00:00,9276.0
-2017-04-30 13:00:00,9392.0
-2017-04-30 14:00:00,9316.0
-2017-04-30 15:00:00,9277.0
-2017-04-30 16:00:00,9233.0
-2017-04-30 17:00:00,9259.0
-2017-04-30 18:00:00,9330.0
-2017-04-30 19:00:00,9540.0
-2017-04-30 20:00:00,9722.0
-2017-04-30 21:00:00,10029.0
-2017-04-30 22:00:00,9955.0
-2017-04-30 23:00:00,9665.0
-2017-05-01 00:00:00,9192.0
-2017-04-29 01:00:00,8802.0
-2017-04-29 02:00:00,8387.0
-2017-04-29 03:00:00,8035.0
-2017-04-29 04:00:00,7941.0
-2017-04-29 05:00:00,7908.0
-2017-04-29 06:00:00,7977.0
-2017-04-29 07:00:00,8259.0
-2017-04-29 08:00:00,8503.0
-2017-04-29 09:00:00,8889.0
-2017-04-29 10:00:00,9288.0
-2017-04-29 11:00:00,9527.0
-2017-04-29 12:00:00,9638.0
-2017-04-29 13:00:00,9783.0
-2017-04-29 14:00:00,9804.0
-2017-04-29 15:00:00,9769.0
-2017-04-29 16:00:00,9769.0
-2017-04-29 17:00:00,9792.0
-2017-04-29 18:00:00,9924.0
-2017-04-29 19:00:00,10040.0
-2017-04-29 20:00:00,10186.0
-2017-04-29 21:00:00,10300.0
-2017-04-29 22:00:00,10387.0
-2017-04-29 23:00:00,10096.0
-2017-04-30 00:00:00,9549.0
-2017-04-28 01:00:00,8957.0
-2017-04-28 02:00:00,8509.0
-2017-04-28 03:00:00,8263.0
-2017-04-28 04:00:00,8114.0
-2017-04-28 05:00:00,8061.0
-2017-04-28 06:00:00,8283.0
-2017-04-28 07:00:00,8948.0
-2017-04-28 08:00:00,9689.0
-2017-04-28 09:00:00,10273.0
-2017-04-28 10:00:00,10473.0
-2017-04-28 11:00:00,10575.0
-2017-04-28 12:00:00,10640.0
-2017-04-28 13:00:00,10662.0
-2017-04-28 14:00:00,10608.0
-2017-04-28 15:00:00,10621.0
-2017-04-28 16:00:00,10467.0
-2017-04-28 17:00:00,10282.0
-2017-04-28 18:00:00,10143.0
-2017-04-28 19:00:00,10061.0
-2017-04-28 20:00:00,9971.0
-2017-04-28 21:00:00,10138.0
-2017-04-28 22:00:00,10272.0
-2017-04-28 23:00:00,9996.0
-2017-04-29 00:00:00,9411.0
-2017-04-27 01:00:00,9248.0
-2017-04-27 02:00:00,8705.0
-2017-04-27 03:00:00,8386.0
-2017-04-27 04:00:00,8178.0
-2017-04-27 05:00:00,8135.0
-2017-04-27 06:00:00,8323.0
-2017-04-27 07:00:00,8883.0
-2017-04-27 08:00:00,9651.0
-2017-04-27 09:00:00,10223.0
-2017-04-27 10:00:00,10511.0
-2017-04-27 11:00:00,10629.0
-2017-04-27 12:00:00,10710.0
-2017-04-27 13:00:00,10766.0
-2017-04-27 14:00:00,10784.0
-2017-04-27 15:00:00,10792.0
-2017-04-27 16:00:00,10735.0
-2017-04-27 17:00:00,10642.0
-2017-04-27 18:00:00,10538.0
-2017-04-27 19:00:00,10483.0
-2017-04-27 20:00:00,10373.0
-2017-04-27 21:00:00,10556.0
-2017-04-27 22:00:00,10692.0
-2017-04-27 23:00:00,10225.0
-2017-04-28 00:00:00,9592.0
-2017-04-26 01:00:00,9273.0
-2017-04-26 02:00:00,8746.0
-2017-04-26 03:00:00,8405.0
-2017-04-26 04:00:00,8218.0
-2017-04-26 05:00:00,8133.0
-2017-04-26 06:00:00,8306.0
-2017-04-26 07:00:00,8937.0
-2017-04-26 08:00:00,9726.0
-2017-04-26 09:00:00,10519.0
-2017-04-26 10:00:00,10931.0
-2017-04-26 11:00:00,11239.0
-2017-04-26 12:00:00,11515.0
-2017-04-26 13:00:00,11605.0
-2017-04-26 14:00:00,11713.0
-2017-04-26 15:00:00,11813.0
-2017-04-26 16:00:00,11750.0
-2017-04-26 17:00:00,11628.0
-2017-04-26 18:00:00,11500.0
-2017-04-26 19:00:00,11291.0
-2017-04-26 20:00:00,10963.0
-2017-04-26 21:00:00,11031.0
-2017-04-26 22:00:00,11165.0
-2017-04-26 23:00:00,10741.0
-2017-04-27 00:00:00,9964.0
-2017-04-25 01:00:00,8779.0
-2017-04-25 02:00:00,8353.0
-2017-04-25 03:00:00,8055.0
-2017-04-25 04:00:00,7895.0
-2017-04-25 05:00:00,7829.0
-2017-04-25 06:00:00,8030.0
-2017-04-25 07:00:00,8657.0
-2017-04-25 08:00:00,9369.0
-2017-04-25 09:00:00,10129.0
-2017-04-25 10:00:00,10525.0
-2017-04-25 11:00:00,10811.0
-2017-04-25 12:00:00,11049.0
-2017-04-25 13:00:00,11205.0
-2017-04-25 14:00:00,11327.0
-2017-04-25 15:00:00,11445.0
-2017-04-25 16:00:00,11398.0
-2017-04-25 17:00:00,11290.0
-2017-04-25 18:00:00,11280.0
-2017-04-25 19:00:00,11183.0
-2017-04-25 20:00:00,10927.0
-2017-04-25 21:00:00,10990.0
-2017-04-25 22:00:00,11249.0
-2017-04-25 23:00:00,10839.0
-2017-04-26 00:00:00,10043.0
-2017-04-24 01:00:00,8135.0
-2017-04-24 02:00:00,7851.0
-2017-04-24 03:00:00,7685.0
-2017-04-24 04:00:00,7633.0
-2017-04-24 05:00:00,7702.0
-2017-04-24 06:00:00,8006.0
-2017-04-24 07:00:00,8679.0
-2017-04-24 08:00:00,9487.0
-2017-04-24 09:00:00,10128.0
-2017-04-24 10:00:00,10436.0
-2017-04-24 11:00:00,10648.0
-2017-04-24 12:00:00,10872.0
-2017-04-24 13:00:00,10951.0
-2017-04-24 14:00:00,10976.0
-2017-04-24 15:00:00,11060.0
-2017-04-24 16:00:00,11028.0
-2017-04-24 17:00:00,10959.0
-2017-04-24 18:00:00,10879.0
-2017-04-24 19:00:00,10697.0
-2017-04-24 20:00:00,10420.0
-2017-04-24 21:00:00,10445.0
-2017-04-24 22:00:00,10727.0
-2017-04-24 23:00:00,10269.0
-2017-04-25 00:00:00,9555.0
-2017-04-23 01:00:00,8334.0
-2017-04-23 02:00:00,7982.0
-2017-04-23 03:00:00,7785.0
-2017-04-23 04:00:00,7638.0
-2017-04-23 05:00:00,7613.0
-2017-04-23 06:00:00,7633.0
-2017-04-23 07:00:00,7787.0
-2017-04-23 08:00:00,7734.0
-2017-04-23 09:00:00,7946.0
-2017-04-23 10:00:00,8117.0
-2017-04-23 11:00:00,8342.0
-2017-04-23 12:00:00,8498.0
-2017-04-23 13:00:00,8565.0
-2017-04-23 14:00:00,8581.0
-2017-04-23 15:00:00,8654.0
-2017-04-23 16:00:00,8624.0
-2017-04-23 17:00:00,8712.0
-2017-04-23 18:00:00,8767.0
-2017-04-23 19:00:00,8863.0
-2017-04-23 20:00:00,8845.0
-2017-04-23 21:00:00,9038.0
-2017-04-23 22:00:00,9395.0
-2017-04-23 23:00:00,9133.0
-2017-04-24 00:00:00,8640.0
-2017-04-22 01:00:00,8940.0
-2017-04-22 02:00:00,8474.0
-2017-04-22 03:00:00,8157.0
-2017-04-22 04:00:00,7980.0
-2017-04-22 05:00:00,7943.0
-2017-04-22 06:00:00,8004.0
-2017-04-22 07:00:00,8288.0
-2017-04-22 08:00:00,8475.0
-2017-04-22 09:00:00,8816.0
-2017-04-22 10:00:00,9098.0
-2017-04-22 11:00:00,9249.0
-2017-04-22 12:00:00,9296.0
-2017-04-22 13:00:00,9252.0
-2017-04-22 14:00:00,9150.0
-2017-04-22 15:00:00,9019.0
-2017-04-22 16:00:00,8880.0
-2017-04-22 17:00:00,8773.0
-2017-04-22 18:00:00,8758.0
-2017-04-22 19:00:00,8750.0
-2017-04-22 20:00:00,8752.0
-2017-04-22 21:00:00,8924.0
-2017-04-22 22:00:00,9348.0
-2017-04-22 23:00:00,9181.0
-2017-04-23 00:00:00,8761.0
-2017-04-21 01:00:00,8865.0
-2017-04-21 02:00:00,8407.0
-2017-04-21 03:00:00,8139.0
-2017-04-21 04:00:00,7974.0
-2017-04-21 05:00:00,7932.0
-2017-04-21 06:00:00,8138.0
-2017-04-21 07:00:00,8760.0
-2017-04-21 08:00:00,9512.0
-2017-04-21 09:00:00,10135.0
-2017-04-21 10:00:00,10425.0
-2017-04-21 11:00:00,10527.0
-2017-04-21 12:00:00,10613.0
-2017-04-21 13:00:00,10556.0
-2017-04-21 14:00:00,10504.0
-2017-04-21 15:00:00,10465.0
-2017-04-21 16:00:00,10321.0
-2017-04-21 17:00:00,10153.0
-2017-04-21 18:00:00,10064.0
-2017-04-21 19:00:00,9917.0
-2017-04-21 20:00:00,9859.0
-2017-04-21 21:00:00,10126.0
-2017-04-21 22:00:00,10400.0
-2017-04-21 23:00:00,10122.0
-2017-04-22 00:00:00,9543.0
-2017-04-20 01:00:00,8935.0
-2017-04-20 02:00:00,8465.0
-2017-04-20 03:00:00,8214.0
-2017-04-20 04:00:00,8078.0
-2017-04-20 05:00:00,8047.0
-2017-04-20 06:00:00,8232.0
-2017-04-20 07:00:00,8882.0
-2017-04-20 08:00:00,9619.0
-2017-04-20 09:00:00,10307.0
-2017-04-20 10:00:00,10704.0
-2017-04-20 11:00:00,11046.0
-2017-04-20 12:00:00,11373.0
-2017-04-20 13:00:00,11432.0
-2017-04-20 14:00:00,11314.0
-2017-04-20 15:00:00,11274.0
-2017-04-20 16:00:00,11155.0
-2017-04-20 17:00:00,10951.0
-2017-04-20 18:00:00,10783.0
-2017-04-20 19:00:00,10544.0
-2017-04-20 20:00:00,10300.0
-2017-04-20 21:00:00,10431.0
-2017-04-20 22:00:00,10640.0
-2017-04-20 23:00:00,10234.0
-2017-04-21 00:00:00,9511.0
-2017-04-19 01:00:00,9176.0
-2017-04-19 02:00:00,8694.0
-2017-04-19 03:00:00,8371.0
-2017-04-19 04:00:00,8143.0
-2017-04-19 05:00:00,8102.0
-2017-04-19 06:00:00,8301.0
-2017-04-19 07:00:00,8919.0
-2017-04-19 08:00:00,9718.0
-2017-04-19 09:00:00,10443.0
-2017-04-19 10:00:00,10882.0
-2017-04-19 11:00:00,11137.0
-2017-04-19 12:00:00,11314.0
-2017-04-19 13:00:00,11315.0
-2017-04-19 14:00:00,11200.0
-2017-04-19 15:00:00,11082.0
-2017-04-19 16:00:00,10691.0
-2017-04-19 17:00:00,10617.0
-2017-04-19 18:00:00,10449.0
-2017-04-19 19:00:00,10388.0
-2017-04-19 20:00:00,10216.0
-2017-04-19 21:00:00,10429.0
-2017-04-19 22:00:00,10692.0
-2017-04-19 23:00:00,10277.0
-2017-04-20 00:00:00,9588.0
-2017-04-18 01:00:00,8847.0
-2017-04-18 02:00:00,8432.0
-2017-04-18 03:00:00,8165.0
-2017-04-18 04:00:00,7994.0
-2017-04-18 05:00:00,7959.0
-2017-04-18 06:00:00,8225.0
-2017-04-18 07:00:00,8851.0
-2017-04-18 08:00:00,9672.0
-2017-04-18 09:00:00,10232.0
-2017-04-18 10:00:00,10508.0
-2017-04-18 11:00:00,10694.0
-2017-04-18 12:00:00,10923.0
-2017-04-18 13:00:00,11036.0
-2017-04-18 14:00:00,11091.0
-2017-04-18 15:00:00,11175.0
-2017-04-18 16:00:00,11150.0
-2017-04-18 17:00:00,11044.0
-2017-04-18 18:00:00,10921.0
-2017-04-18 19:00:00,10877.0
-2017-04-18 20:00:00,10676.0
-2017-04-18 21:00:00,10862.0
-2017-04-18 22:00:00,11068.0
-2017-04-18 23:00:00,10626.0
-2017-04-19 00:00:00,9921.0
-2017-04-17 01:00:00,7942.0
-2017-04-17 02:00:00,7594.0
-2017-04-17 03:00:00,7385.0
-2017-04-17 04:00:00,7275.0
-2017-04-17 05:00:00,7286.0
-2017-04-17 06:00:00,7546.0
-2017-04-17 07:00:00,8211.0
-2017-04-17 08:00:00,8979.0
-2017-04-17 09:00:00,9724.0
-2017-04-17 10:00:00,10217.0
-2017-04-17 11:00:00,10525.0
-2017-04-17 12:00:00,10789.0
-2017-04-17 13:00:00,10854.0
-2017-04-17 14:00:00,10874.0
-2017-04-17 15:00:00,10910.0
-2017-04-17 16:00:00,10865.0
-2017-04-17 17:00:00,10756.0
-2017-04-17 18:00:00,10602.0
-2017-04-17 19:00:00,10392.0
-2017-04-17 20:00:00,10160.0
-2017-04-17 21:00:00,10302.0
-2017-04-17 22:00:00,10576.0
-2017-04-17 23:00:00,10170.0
-2017-04-18 00:00:00,9492.0
-2017-04-16 01:00:00,8857.0
-2017-04-16 02:00:00,8359.0
-2017-04-16 03:00:00,7956.0
-2017-04-16 04:00:00,7698.0
-2017-04-16 05:00:00,7525.0
-2017-04-16 06:00:00,7465.0
-2017-04-16 07:00:00,7488.0
-2017-04-16 08:00:00,7453.0
-2017-04-16 09:00:00,7651.0
-2017-04-16 10:00:00,8040.0
-2017-04-16 11:00:00,8367.0
-2017-04-16 12:00:00,8573.0
-2017-04-16 13:00:00,8724.0
-2017-04-16 14:00:00,8770.0
-2017-04-16 15:00:00,8794.0
-2017-04-16 16:00:00,8783.0
-2017-04-16 17:00:00,8694.0
-2017-04-16 18:00:00,8648.0
-2017-04-16 19:00:00,8632.0
-2017-04-16 20:00:00,8561.0
-2017-04-16 21:00:00,8761.0
-2017-04-16 22:00:00,9126.0
-2017-04-16 23:00:00,8915.0
-2017-04-17 00:00:00,8413.0
-2017-04-15 01:00:00,8531.0
-2017-04-15 02:00:00,8106.0
-2017-04-15 03:00:00,7810.0
-2017-04-15 04:00:00,7612.0
-2017-04-15 05:00:00,7522.0
-2017-04-15 06:00:00,7563.0
-2017-04-15 07:00:00,7765.0
-2017-04-15 08:00:00,7897.0
-2017-04-15 09:00:00,8226.0
-2017-04-15 10:00:00,8715.0
-2017-04-15 11:00:00,9165.0
-2017-04-15 12:00:00,9462.0
-2017-04-15 13:00:00,9622.0
-2017-04-15 14:00:00,9674.0
-2017-04-15 15:00:00,9634.0
-2017-04-15 16:00:00,9663.0
-2017-04-15 17:00:00,9661.0
-2017-04-15 18:00:00,9692.0
-2017-04-15 19:00:00,9665.0
-2017-04-15 20:00:00,9592.0
-2017-04-15 21:00:00,9895.0
-2017-04-15 22:00:00,10119.0
-2017-04-15 23:00:00,9897.0
-2017-04-16 00:00:00,9436.0
-2017-04-14 01:00:00,8934.0
-2017-04-14 02:00:00,8453.0
-2017-04-14 03:00:00,8202.0
-2017-04-14 04:00:00,8047.0
-2017-04-14 05:00:00,7993.0
-2017-04-14 06:00:00,8119.0
-2017-04-14 07:00:00,8595.0
-2017-04-14 08:00:00,9071.0
-2017-04-14 09:00:00,9421.0
-2017-04-14 10:00:00,9660.0
-2017-04-14 11:00:00,9830.0
-2017-04-14 12:00:00,9890.0
-2017-04-14 13:00:00,9890.0
-2017-04-14 14:00:00,9846.0
-2017-04-14 15:00:00,9869.0
-2017-04-14 16:00:00,9797.0
-2017-04-14 17:00:00,9697.0
-2017-04-14 18:00:00,9659.0
-2017-04-14 19:00:00,9615.0
-2017-04-14 20:00:00,9539.0
-2017-04-14 21:00:00,9882.0
-2017-04-14 22:00:00,9878.0
-2017-04-14 23:00:00,9602.0
-2017-04-15 00:00:00,9096.0
-2017-04-13 01:00:00,8940.0
-2017-04-13 02:00:00,8555.0
-2017-04-13 03:00:00,8303.0
-2017-04-13 04:00:00,8121.0
-2017-04-13 05:00:00,8106.0
-2017-04-13 06:00:00,8332.0
-2017-04-13 07:00:00,9033.0
-2017-04-13 08:00:00,10039.0
-2017-04-13 09:00:00,10726.0
-2017-04-13 10:00:00,11006.0
-2017-04-13 11:00:00,11118.0
-2017-04-13 12:00:00,11159.0
-2017-04-13 13:00:00,11050.0
-2017-04-13 14:00:00,10919.0
-2017-04-13 15:00:00,10841.0
-2017-04-13 16:00:00,10675.0
-2017-04-13 17:00:00,10519.0
-2017-04-13 18:00:00,10390.0
-2017-04-13 19:00:00,10229.0
-2017-04-13 20:00:00,10072.0
-2017-04-13 21:00:00,10347.0
-2017-04-13 22:00:00,10573.0
-2017-04-13 23:00:00,10216.0
-2017-04-14 00:00:00,9558.0
-2017-04-12 01:00:00,9100.0
-2017-04-12 02:00:00,8698.0
-2017-04-12 03:00:00,8478.0
-2017-04-12 04:00:00,8344.0
-2017-04-12 05:00:00,8322.0
-2017-04-12 06:00:00,8592.0
-2017-04-12 07:00:00,9319.0
-2017-04-12 08:00:00,10122.0
-2017-04-12 09:00:00,10587.0
-2017-04-12 10:00:00,10698.0
-2017-04-12 11:00:00,10687.0
-2017-04-12 12:00:00,10758.0
-2017-04-12 13:00:00,10708.0
-2017-04-12 14:00:00,10666.0
-2017-04-12 15:00:00,10671.0
-2017-04-12 16:00:00,10536.0
-2017-04-12 17:00:00,10376.0
-2017-04-12 18:00:00,10285.0
-2017-04-12 19:00:00,10217.0
-2017-04-12 20:00:00,10207.0
-2017-04-12 21:00:00,10618.0
-2017-04-12 22:00:00,10694.0
-2017-04-12 23:00:00,10265.0
-2017-04-13 00:00:00,9551.0
-2017-04-11 01:00:00,8882.0
-2017-04-11 02:00:00,8474.0
-2017-04-11 03:00:00,8191.0
-2017-04-11 04:00:00,8070.0
-2017-04-11 05:00:00,8033.0
-2017-04-11 06:00:00,8290.0
-2017-04-11 07:00:00,8946.0
-2017-04-11 08:00:00,9895.0
-2017-04-11 09:00:00,10476.0
-2017-04-11 10:00:00,10762.0
-2017-04-11 11:00:00,10882.0
-2017-04-11 12:00:00,10981.0
-2017-04-11 13:00:00,10910.0
-2017-04-11 14:00:00,10818.0
-2017-04-11 15:00:00,10766.0
-2017-04-11 16:00:00,10655.0
-2017-04-11 17:00:00,10521.0
-2017-04-11 18:00:00,10419.0
-2017-04-11 19:00:00,10349.0
-2017-04-11 20:00:00,10257.0
-2017-04-11 21:00:00,10591.0
-2017-04-11 22:00:00,10778.0
-2017-04-11 23:00:00,10352.0
-2017-04-12 00:00:00,9726.0
-2017-04-10 01:00:00,8483.0
-2017-04-10 02:00:00,8157.0
-2017-04-10 03:00:00,7911.0
-2017-04-10 04:00:00,7751.0
-2017-04-10 05:00:00,7733.0
-2017-04-10 06:00:00,7981.0
-2017-04-10 07:00:00,8678.0
-2017-04-10 08:00:00,9596.0
-2017-04-10 09:00:00,10274.0
-2017-04-10 10:00:00,10608.0
-2017-04-10 11:00:00,10777.0
-2017-04-10 12:00:00,11084.0
-2017-04-10 13:00:00,11300.0
-2017-04-10 14:00:00,11255.0
-2017-04-10 15:00:00,11298.0
-2017-04-10 16:00:00,11162.0
-2017-04-10 17:00:00,11008.0
-2017-04-10 18:00:00,10998.0
-2017-04-10 19:00:00,10933.0
-2017-04-10 20:00:00,10594.0
-2017-04-10 21:00:00,10628.0
-2017-04-10 22:00:00,10603.0
-2017-04-10 23:00:00,10160.0
-2017-04-11 00:00:00,9511.0
-2017-04-09 01:00:00,8468.0
-2017-04-09 02:00:00,8061.0
-2017-04-09 03:00:00,7837.0
-2017-04-09 04:00:00,7635.0
-2017-04-09 05:00:00,7590.0
-2017-04-09 06:00:00,7570.0
-2017-04-09 07:00:00,7732.0
-2017-04-09 08:00:00,7830.0
-2017-04-09 09:00:00,7946.0
-2017-04-09 10:00:00,8236.0
-2017-04-09 11:00:00,8413.0
-2017-04-09 12:00:00,8632.0
-2017-04-09 13:00:00,8710.0
-2017-04-09 14:00:00,8760.0
-2017-04-09 15:00:00,8795.0
-2017-04-09 16:00:00,8817.0
-2017-04-09 17:00:00,8879.0
-2017-04-09 18:00:00,8928.0
-2017-04-09 19:00:00,8973.0
-2017-04-09 20:00:00,8990.0
-2017-04-09 21:00:00,9544.0
-2017-04-09 22:00:00,9768.0
-2017-04-09 23:00:00,9483.0
-2017-04-10 00:00:00,9024.0
-2017-04-08 01:00:00,9309.0
-2017-04-08 02:00:00,8857.0
-2017-04-08 03:00:00,8614.0
-2017-04-08 04:00:00,8444.0
-2017-04-08 05:00:00,8449.0
-2017-04-08 06:00:00,8515.0
-2017-04-08 07:00:00,8815.0
-2017-04-08 08:00:00,9030.0
-2017-04-08 09:00:00,9240.0
-2017-04-08 10:00:00,9433.0
-2017-04-08 11:00:00,9535.0
-2017-04-08 12:00:00,9571.0
-2017-04-08 13:00:00,9492.0
-2017-04-08 14:00:00,9367.0
-2017-04-08 15:00:00,9215.0
-2017-04-08 16:00:00,9086.0
-2017-04-08 17:00:00,9021.0
-2017-04-08 18:00:00,9002.0
-2017-04-08 19:00:00,8963.0
-2017-04-08 20:00:00,8994.0
-2017-04-08 21:00:00,9374.0
-2017-04-08 22:00:00,9619.0
-2017-04-08 23:00:00,9361.0
-2017-04-09 00:00:00,8948.0
-2017-04-07 01:00:00,9678.0
-2017-04-07 02:00:00,9258.0
-2017-04-07 03:00:00,9005.0
-2017-04-07 04:00:00,8879.0
-2017-04-07 05:00:00,8888.0
-2017-04-07 06:00:00,9152.0
-2017-04-07 07:00:00,9846.0
-2017-04-07 08:00:00,10745.0
-2017-04-07 09:00:00,11138.0
-2017-04-07 10:00:00,11273.0
-2017-04-07 11:00:00,11229.0
-2017-04-07 12:00:00,11213.0
-2017-04-07 13:00:00,11105.0
-2017-04-07 14:00:00,10979.0
-2017-04-07 15:00:00,10899.0
-2017-04-07 16:00:00,10710.0
-2017-04-07 17:00:00,10468.0
-2017-04-07 18:00:00,10280.0
-2017-04-07 19:00:00,10138.0
-2017-04-07 20:00:00,10057.0
-2017-04-07 21:00:00,10463.0
-2017-04-07 22:00:00,10637.0
-2017-04-07 23:00:00,10391.0
-2017-04-08 00:00:00,9855.0
-2017-04-06 01:00:00,9985.0
-2017-04-06 02:00:00,9538.0
-2017-04-06 03:00:00,9284.0
-2017-04-06 04:00:00,9117.0
-2017-04-06 05:00:00,9140.0
-2017-04-06 06:00:00,9389.0
-2017-04-06 07:00:00,10094.0
-2017-04-06 08:00:00,11060.0
-2017-04-06 09:00:00,11559.0
-2017-04-06 10:00:00,11575.0
-2017-04-06 11:00:00,11587.0
-2017-04-06 12:00:00,11548.0
-2017-04-06 13:00:00,11428.0
-2017-04-06 14:00:00,11299.0
-2017-04-06 15:00:00,11294.0
-2017-04-06 16:00:00,11152.0
-2017-04-06 17:00:00,11005.0
-2017-04-06 18:00:00,10903.0
-2017-04-06 19:00:00,10779.0
-2017-04-06 20:00:00,10732.0
-2017-04-06 21:00:00,11124.0
-2017-04-06 22:00:00,11294.0
-2017-04-06 23:00:00,10963.0
-2017-04-07 00:00:00,10300.0
-2017-04-05 01:00:00,9256.0
-2017-04-05 02:00:00,8823.0
-2017-04-05 03:00:00,8553.0
-2017-04-05 04:00:00,8426.0
-2017-04-05 05:00:00,8412.0
-2017-04-05 06:00:00,8699.0
-2017-04-05 07:00:00,9449.0
-2017-04-05 08:00:00,10526.0
-2017-04-05 09:00:00,11215.0
-2017-04-05 10:00:00,11497.0
-2017-04-05 11:00:00,11631.0
-2017-04-05 12:00:00,11734.0
-2017-04-05 13:00:00,11718.0
-2017-04-05 14:00:00,11670.0
-2017-04-05 15:00:00,11787.0
-2017-04-05 16:00:00,11756.0
-2017-04-05 17:00:00,11728.0
-2017-04-05 18:00:00,11824.0
-2017-04-05 19:00:00,11835.0
-2017-04-05 20:00:00,11737.0
-2017-04-05 21:00:00,11960.0
-2017-04-05 22:00:00,11790.0
-2017-04-05 23:00:00,11318.0
-2017-04-06 00:00:00,10640.0
-2017-04-04 01:00:00,9268.0
-2017-04-04 02:00:00,8859.0
-2017-04-04 03:00:00,8602.0
-2017-04-04 04:00:00,8451.0
-2017-04-04 05:00:00,8440.0
-2017-04-04 06:00:00,8676.0
-2017-04-04 07:00:00,9357.0
-2017-04-04 08:00:00,10396.0
-2017-04-04 09:00:00,10943.0
-2017-04-04 10:00:00,11159.0
-2017-04-04 11:00:00,11249.0
-2017-04-04 12:00:00,11287.0
-2017-04-04 13:00:00,11200.0
-2017-04-04 14:00:00,11094.0
-2017-04-04 15:00:00,11013.0
-2017-04-04 16:00:00,10821.0
-2017-04-04 17:00:00,10727.0
-2017-04-04 18:00:00,10678.0
-2017-04-04 19:00:00,10627.0
-2017-04-04 20:00:00,10575.0
-2017-04-04 21:00:00,10923.0
-2017-04-04 22:00:00,10966.0
-2017-04-04 23:00:00,10560.0
-2017-04-05 00:00:00,9906.0
-2017-04-03 01:00:00,8596.0
-2017-04-03 02:00:00,8271.0
-2017-04-03 03:00:00,8113.0
-2017-04-03 04:00:00,8017.0
-2017-04-03 05:00:00,7932.0
-2017-04-03 06:00:00,8238.0
-2017-04-03 07:00:00,8898.0
-2017-04-03 08:00:00,10133.0
-2017-04-03 09:00:00,10588.0
-2017-04-03 10:00:00,10895.0
-2017-04-03 11:00:00,11007.0
-2017-04-03 12:00:00,11134.0
-2017-04-03 13:00:00,11112.0
-2017-04-03 14:00:00,11046.0
-2017-04-03 15:00:00,11088.0
-2017-04-03 16:00:00,11080.0
-2017-04-03 17:00:00,11030.0
-2017-04-03 18:00:00,11013.0
-2017-04-03 19:00:00,11033.0
-2017-04-03 20:00:00,11016.0
-2017-04-03 21:00:00,11176.0
-2017-04-03 22:00:00,11029.0
-2017-04-03 23:00:00,10603.0
-2017-04-04 00:00:00,9955.0
-2017-04-02 01:00:00,8804.0
-2017-04-02 02:00:00,8458.0
-2017-04-02 03:00:00,8196.0
-2017-04-02 04:00:00,8073.0
-2017-04-02 05:00:00,8013.0
-2017-04-02 06:00:00,8032.0
-2017-04-02 07:00:00,8128.0
-2017-04-02 08:00:00,8413.0
-2017-04-02 09:00:00,8411.0
-2017-04-02 10:00:00,8694.0
-2017-04-02 11:00:00,8854.0
-2017-04-02 12:00:00,8847.0
-2017-04-02 13:00:00,8883.0
-2017-04-02 14:00:00,8845.0
-2017-04-02 15:00:00,8890.0
-2017-04-02 16:00:00,8866.0
-2017-04-02 17:00:00,8904.0
-2017-04-02 18:00:00,9086.0
-2017-04-02 19:00:00,9202.0
-2017-04-02 20:00:00,9373.0
-2017-04-02 21:00:00,9788.0
-2017-04-02 22:00:00,9793.0
-2017-04-02 23:00:00,9460.0
-2017-04-03 00:00:00,9069.0
-2017-04-01 01:00:00,9743.0
-2017-04-01 02:00:00,9292.0
-2017-04-01 03:00:00,9014.0
-2017-04-01 04:00:00,8850.0
-2017-04-01 05:00:00,8812.0
-2017-04-01 06:00:00,8887.0
-2017-04-01 07:00:00,9149.0
-2017-04-01 08:00:00,9492.0
-2017-04-01 09:00:00,9629.0
-2017-04-01 10:00:00,9806.0
-2017-04-01 11:00:00,9760.0
-2017-04-01 12:00:00,9779.0
-2017-04-01 13:00:00,9650.0
-2017-04-01 14:00:00,9469.0
-2017-04-01 15:00:00,9265.0
-2017-04-01 16:00:00,9152.0
-2017-04-01 17:00:00,9058.0
-2017-04-01 18:00:00,8986.0
-2017-04-01 19:00:00,9005.0
-2017-04-01 20:00:00,9137.0
-2017-04-01 21:00:00,9661.0
-2017-04-01 22:00:00,9784.0
-2017-04-01 23:00:00,9592.0
-2017-04-02 00:00:00,9204.0
-2017-03-31 01:00:00,9770.0
-2017-03-31 02:00:00,9381.0
-2017-03-31 03:00:00,9118.0
-2017-03-31 04:00:00,8947.0
-2017-03-31 05:00:00,8927.0
-2017-03-31 06:00:00,9173.0
-2017-03-31 07:00:00,9832.0
-2017-03-31 08:00:00,10759.0
-2017-03-31 09:00:00,11320.0
-2017-03-31 10:00:00,11562.0
-2017-03-31 11:00:00,11717.0
-2017-03-31 12:00:00,11811.0
-2017-03-31 13:00:00,11758.0
-2017-03-31 14:00:00,11664.0
-2017-03-31 15:00:00,11615.0
-2017-03-31 16:00:00,11442.0
-2017-03-31 17:00:00,11301.0
-2017-03-31 18:00:00,11170.0
-2017-03-31 19:00:00,11013.0
-2017-03-31 20:00:00,10927.0
-2017-03-31 21:00:00,11255.0
-2017-03-31 22:00:00,11185.0
-2017-03-31 23:00:00,10878.0
-2017-04-01 00:00:00,10302.0
-2017-03-30 01:00:00,9663.0
-2017-03-30 02:00:00,9289.0
-2017-03-30 03:00:00,9094.0
-2017-03-30 04:00:00,8978.0
-2017-03-30 05:00:00,8994.0
-2017-03-30 06:00:00,9182.0
-2017-03-30 07:00:00,9869.0
-2017-03-30 08:00:00,10918.0
-2017-03-30 09:00:00,11405.0
-2017-03-30 10:00:00,11584.0
-2017-03-30 11:00:00,11719.0
-2017-03-30 12:00:00,11884.0
-2017-03-30 13:00:00,12020.0
-2017-03-30 14:00:00,12010.0
-2017-03-30 15:00:00,12053.0
-2017-03-30 16:00:00,11890.0
-2017-03-30 17:00:00,11540.0
-2017-03-30 18:00:00,11318.0
-2017-03-30 19:00:00,11316.0
-2017-03-30 20:00:00,11310.0
-2017-03-30 21:00:00,11584.0
-2017-03-30 22:00:00,11417.0
-2017-03-30 23:00:00,10992.0
-2017-03-31 00:00:00,10364.0
-2017-03-29 01:00:00,9504.0
-2017-03-29 02:00:00,9064.0
-2017-03-29 03:00:00,8898.0
-2017-03-29 04:00:00,8713.0
-2017-03-29 05:00:00,8727.0
-2017-03-29 06:00:00,9054.0
-2017-03-29 07:00:00,9788.0
-2017-03-29 08:00:00,10766.0
-2017-03-29 09:00:00,11189.0
-2017-03-29 10:00:00,11264.0
-2017-03-29 11:00:00,11228.0
-2017-03-29 12:00:00,11160.0
-2017-03-29 13:00:00,11167.0
-2017-03-29 14:00:00,11158.0
-2017-03-29 15:00:00,11201.0
-2017-03-29 16:00:00,11225.0
-2017-03-29 17:00:00,11140.0
-2017-03-29 18:00:00,11136.0
-2017-03-29 19:00:00,11193.0
-2017-03-29 20:00:00,11254.0
-2017-03-29 21:00:00,11340.0
-2017-03-29 22:00:00,11138.0
-2017-03-29 23:00:00,10826.0
-2017-03-30 00:00:00,10249.0
-2017-03-28 01:00:00,9293.0
-2017-03-28 02:00:00,8859.0
-2017-03-28 03:00:00,8595.0
-2017-03-28 04:00:00,8514.0
-2017-03-28 05:00:00,8518.0
-2017-03-28 06:00:00,8835.0
-2017-03-28 07:00:00,9543.0
-2017-03-28 08:00:00,10544.0
-2017-03-28 09:00:00,10926.0
-2017-03-28 10:00:00,11187.0
-2017-03-28 11:00:00,11276.0
-2017-03-28 12:00:00,11292.0
-2017-03-28 13:00:00,11235.0
-2017-03-28 14:00:00,11147.0
-2017-03-28 15:00:00,11044.0
-2017-03-28 16:00:00,10912.0
-2017-03-28 17:00:00,10775.0
-2017-03-28 18:00:00,10748.0
-2017-03-28 19:00:00,10619.0
-2017-03-28 20:00:00,10640.0
-2017-03-28 21:00:00,11067.0
-2017-03-28 22:00:00,11114.0
-2017-03-28 23:00:00,10659.0
-2017-03-29 00:00:00,9981.0
-2017-03-27 01:00:00,8475.0
-2017-03-27 02:00:00,8165.0
-2017-03-27 03:00:00,7998.0
-2017-03-27 04:00:00,7814.0
-2017-03-27 05:00:00,7841.0
-2017-03-27 06:00:00,8111.0
-2017-03-27 07:00:00,8794.0
-2017-03-27 08:00:00,9838.0
-2017-03-27 09:00:00,10434.0
-2017-03-27 10:00:00,10753.0
-2017-03-27 11:00:00,10899.0
-2017-03-27 12:00:00,11015.0
-2017-03-27 13:00:00,11003.0
-2017-03-27 14:00:00,10927.0
-2017-03-27 15:00:00,10928.0
-2017-03-27 16:00:00,10836.0
-2017-03-27 17:00:00,10724.0
-2017-03-27 18:00:00,10656.0
-2017-03-27 19:00:00,10660.0
-2017-03-27 20:00:00,10650.0
-2017-03-27 21:00:00,10985.0
-2017-03-27 22:00:00,10897.0
-2017-03-27 23:00:00,10526.0
-2017-03-28 00:00:00,9919.0
-2017-03-26 01:00:00,8880.0
-2017-03-26 02:00:00,8457.0
-2017-03-26 03:00:00,8205.0
-2017-03-26 04:00:00,8017.0
-2017-03-26 05:00:00,7937.0
-2017-03-26 06:00:00,7952.0
-2017-03-26 07:00:00,8069.0
-2017-03-26 08:00:00,8362.0
-2017-03-26 09:00:00,8482.0
-2017-03-26 10:00:00,8752.0
-2017-03-26 11:00:00,8918.0
-2017-03-26 12:00:00,9033.0
-2017-03-26 13:00:00,9053.0
-2017-03-26 14:00:00,9027.0
-2017-03-26 15:00:00,8955.0
-2017-03-26 16:00:00,8882.0
-2017-03-26 17:00:00,8788.0
-2017-03-26 18:00:00,8886.0
-2017-03-26 19:00:00,8999.0
-2017-03-26 20:00:00,9191.0
-2017-03-26 21:00:00,9615.0
-2017-03-26 22:00:00,9538.0
-2017-03-26 23:00:00,9290.0
-2017-03-27 00:00:00,8878.0
-2017-03-25 01:00:00,9098.0
-2017-03-25 02:00:00,8649.0
-2017-03-25 03:00:00,8427.0
-2017-03-25 04:00:00,8247.0
-2017-03-25 05:00:00,8219.0
-2017-03-25 06:00:00,8288.0
-2017-03-25 07:00:00,8646.0
-2017-03-25 08:00:00,9103.0
-2017-03-25 09:00:00,9480.0
-2017-03-25 10:00:00,9872.0
-2017-03-25 11:00:00,10242.0
-2017-03-25 12:00:00,10413.0
-2017-03-25 13:00:00,10383.0
-2017-03-25 14:00:00,10189.0
-2017-03-25 15:00:00,9949.0
-2017-03-25 16:00:00,9799.0
-2017-03-25 17:00:00,9734.0
-2017-03-25 18:00:00,9769.0
-2017-03-25 19:00:00,9769.0
-2017-03-25 20:00:00,9857.0
-2017-03-25 21:00:00,10149.0
-2017-03-25 22:00:00,10035.0
-2017-03-25 23:00:00,9765.0
-2017-03-26 00:00:00,9345.0
-2017-03-24 01:00:00,9520.0
-2017-03-24 02:00:00,9123.0
-2017-03-24 03:00:00,8846.0
-2017-03-24 04:00:00,8662.0
-2017-03-24 05:00:00,8623.0
-2017-03-24 06:00:00,8807.0
-2017-03-24 07:00:00,9420.0
-2017-03-24 08:00:00,10439.0
-2017-03-24 09:00:00,10785.0
-2017-03-24 10:00:00,10901.0
-2017-03-24 11:00:00,10874.0
-2017-03-24 12:00:00,10961.0
-2017-03-24 13:00:00,11039.0
-2017-03-24 14:00:00,10995.0
-2017-03-24 15:00:00,11064.0
-2017-03-24 16:00:00,11021.0
-2017-03-24 17:00:00,10831.0
-2017-03-24 18:00:00,10632.0
-2017-03-24 19:00:00,10400.0
-2017-03-24 20:00:00,10313.0
-2017-03-24 21:00:00,10661.0
-2017-03-24 22:00:00,10470.0
-2017-03-24 23:00:00,10172.0
-2017-03-25 00:00:00,9613.0
-2017-03-23 01:00:00,10143.0
-2017-03-23 02:00:00,9676.0
-2017-03-23 03:00:00,9427.0
-2017-03-23 04:00:00,9342.0
-2017-03-23 05:00:00,9368.0
-2017-03-23 06:00:00,9553.0
-2017-03-23 07:00:00,10408.0
-2017-03-23 08:00:00,11488.0
-2017-03-23 09:00:00,11892.0
-2017-03-23 10:00:00,11966.0
-2017-03-23 11:00:00,12033.0
-2017-03-23 12:00:00,11927.0
-2017-03-23 13:00:00,11601.0
-2017-03-23 14:00:00,11523.0
-2017-03-23 15:00:00,11469.0
-2017-03-23 16:00:00,11366.0
-2017-03-23 17:00:00,11246.0
-2017-03-23 18:00:00,11088.0
-2017-03-23 19:00:00,11174.0
-2017-03-23 20:00:00,11287.0
-2017-03-23 21:00:00,11537.0
-2017-03-23 22:00:00,11356.0
-2017-03-23 23:00:00,10896.0
-2017-03-24 00:00:00,10105.0
-2017-03-22 01:00:00,9947.0
-2017-03-22 02:00:00,9570.0
-2017-03-22 03:00:00,9387.0
-2017-03-22 04:00:00,9273.0
-2017-03-22 05:00:00,9293.0
-2017-03-22 06:00:00,9593.0
-2017-03-22 07:00:00,10355.0
-2017-03-22 08:00:00,11451.0
-2017-03-22 09:00:00,11888.0
-2017-03-22 10:00:00,12011.0
-2017-03-22 11:00:00,12057.0
-2017-03-22 12:00:00,11940.0
-2017-03-22 13:00:00,11743.0
-2017-03-22 14:00:00,11605.0
-2017-03-22 15:00:00,11523.0
-2017-03-22 16:00:00,11329.0
-2017-03-22 17:00:00,11157.0
-2017-03-22 18:00:00,11082.0
-2017-03-22 19:00:00,11085.0
-2017-03-22 20:00:00,11158.0
-2017-03-22 21:00:00,11786.0
-2017-03-22 22:00:00,11807.0
-2017-03-22 23:00:00,11421.0
-2017-03-23 00:00:00,10761.0
-2017-03-21 01:00:00,9453.0
-2017-03-21 02:00:00,9079.0
-2017-03-21 03:00:00,8851.0
-2017-03-21 04:00:00,8742.0
-2017-03-21 05:00:00,8763.0
-2017-03-21 06:00:00,9052.0
-2017-03-21 07:00:00,9771.0
-2017-03-21 08:00:00,10913.0
-2017-03-21 09:00:00,11318.0
-2017-03-21 10:00:00,11312.0
-2017-03-21 11:00:00,11289.0
-2017-03-21 12:00:00,11255.0
-2017-03-21 13:00:00,11187.0
-2017-03-21 14:00:00,11136.0
-2017-03-21 15:00:00,11215.0
-2017-03-21 16:00:00,11070.0
-2017-03-21 17:00:00,10890.0
-2017-03-21 18:00:00,10772.0
-2017-03-21 19:00:00,10711.0
-2017-03-21 20:00:00,10780.0
-2017-03-21 21:00:00,11388.0
-2017-03-21 22:00:00,11471.0
-2017-03-21 23:00:00,11132.0
-2017-03-22 00:00:00,10546.0
-2017-03-20 01:00:00,8929.0
-2017-03-20 02:00:00,8598.0
-2017-03-20 03:00:00,8398.0
-2017-03-20 04:00:00,8256.0
-2017-03-20 05:00:00,8375.0
-2017-03-20 06:00:00,8689.0
-2017-03-20 07:00:00,9480.0
-2017-03-20 08:00:00,10590.0
-2017-03-20 09:00:00,11224.0
-2017-03-20 10:00:00,11289.0
-2017-03-20 11:00:00,11330.0
-2017-03-20 12:00:00,11364.0
-2017-03-20 13:00:00,11235.0
-2017-03-20 14:00:00,11173.0
-2017-03-20 15:00:00,11116.0
-2017-03-20 16:00:00,10985.0
-2017-03-20 17:00:00,10916.0
-2017-03-20 18:00:00,10864.0
-2017-03-20 19:00:00,10858.0
-2017-03-20 20:00:00,10834.0
-2017-03-20 21:00:00,11308.0
-2017-03-20 22:00:00,11194.0
-2017-03-20 23:00:00,10744.0
-2017-03-21 00:00:00,10106.0
-2017-03-19 01:00:00,9425.0
-2017-03-19 02:00:00,9090.0
-2017-03-19 03:00:00,8902.0
-2017-03-19 04:00:00,8802.0
-2017-03-19 05:00:00,8736.0
-2017-03-19 06:00:00,8818.0
-2017-03-19 07:00:00,8941.0
-2017-03-19 08:00:00,9246.0
-2017-03-19 09:00:00,9250.0
-2017-03-19 10:00:00,9362.0
-2017-03-19 11:00:00,9446.0
-2017-03-19 12:00:00,9482.0
-2017-03-19 13:00:00,9428.0
-2017-03-19 14:00:00,9391.0
-2017-03-19 15:00:00,9257.0
-2017-03-19 16:00:00,9145.0
-2017-03-19 17:00:00,9051.0
-2017-03-19 18:00:00,9082.0
-2017-03-19 19:00:00,9145.0
-2017-03-19 20:00:00,9384.0
-2017-03-19 21:00:00,10052.0
-2017-03-19 22:00:00,10107.0
-2017-03-19 23:00:00,9834.0
-2017-03-20 00:00:00,9412.0
-2017-03-18 01:00:00,9914.0
-2017-03-18 02:00:00,9399.0
-2017-03-18 03:00:00,9195.0
-2017-03-18 04:00:00,9046.0
-2017-03-18 05:00:00,8976.0
-2017-03-18 06:00:00,9000.0
-2017-03-18 07:00:00,9251.0
-2017-03-18 08:00:00,9756.0
-2017-03-18 09:00:00,9999.0
-2017-03-18 10:00:00,10345.0
-2017-03-18 11:00:00,10587.0
-2017-03-18 12:00:00,10713.0
-2017-03-18 13:00:00,10630.0
-2017-03-18 14:00:00,10431.0
-2017-03-18 15:00:00,10152.0
-2017-03-18 16:00:00,10014.0
-2017-03-18 17:00:00,9925.0
-2017-03-18 18:00:00,10025.0
-2017-03-18 19:00:00,10076.0
-2017-03-18 20:00:00,10282.0
-2017-03-18 21:00:00,10594.0
-2017-03-18 22:00:00,10543.0
-2017-03-18 23:00:00,10297.0
-2017-03-19 00:00:00,9863.0
-2017-03-17 01:00:00,10113.0
-2017-03-17 02:00:00,9661.0
-2017-03-17 03:00:00,9381.0
-2017-03-17 04:00:00,9269.0
-2017-03-17 05:00:00,9301.0
-2017-03-17 06:00:00,9507.0
-2017-03-17 07:00:00,10200.0
-2017-03-17 08:00:00,11259.0
-2017-03-17 09:00:00,11913.0
-2017-03-17 10:00:00,12095.0
-2017-03-17 11:00:00,12169.0
-2017-03-17 12:00:00,12257.0
-2017-03-17 13:00:00,12173.0
-2017-03-17 14:00:00,12021.0
-2017-03-17 15:00:00,11902.0
-2017-03-17 16:00:00,11724.0
-2017-03-17 17:00:00,11498.0
-2017-03-17 18:00:00,11339.0
-2017-03-17 19:00:00,11114.0
-2017-03-17 20:00:00,10996.0
-2017-03-17 21:00:00,11465.0
-2017-03-17 22:00:00,11367.0
-2017-03-17 23:00:00,11064.0
-2017-03-18 00:00:00,10510.0
-2017-03-16 01:00:00,10678.0
-2017-03-16 02:00:00,10293.0
-2017-03-16 03:00:00,10047.0
-2017-03-16 04:00:00,9947.0
-2017-03-16 05:00:00,9968.0
-2017-03-16 06:00:00,10237.0
-2017-03-16 07:00:00,10957.0
-2017-03-16 08:00:00,12057.0
-2017-03-16 09:00:00,12490.0
-2017-03-16 10:00:00,12441.0
-2017-03-16 11:00:00,12274.0
-2017-03-16 12:00:00,12205.0
-2017-03-16 13:00:00,12057.0
-2017-03-16 14:00:00,11887.0
-2017-03-16 15:00:00,11773.0
-2017-03-16 16:00:00,11573.0
-2017-03-16 17:00:00,11326.0
-2017-03-16 18:00:00,11195.0
-2017-03-16 19:00:00,11169.0
-2017-03-16 20:00:00,11231.0
-2017-03-16 21:00:00,11866.0
-2017-03-16 22:00:00,11843.0
-2017-03-16 23:00:00,11465.0
-2017-03-17 00:00:00,10784.0
-2017-03-15 01:00:00,11044.0
-2017-03-15 02:00:00,10629.0
-2017-03-15 03:00:00,10381.0
-2017-03-15 04:00:00,10304.0
-2017-03-15 05:00:00,10295.0
-2017-03-15 06:00:00,10566.0
-2017-03-15 07:00:00,11255.0
-2017-03-15 08:00:00,12384.0
-2017-03-15 09:00:00,12856.0
-2017-03-15 10:00:00,12815.0
-2017-03-15 11:00:00,12704.0
-2017-03-15 12:00:00,12622.0
-2017-03-15 13:00:00,12483.0
-2017-03-15 14:00:00,12336.0
-2017-03-15 15:00:00,12218.0
-2017-03-15 16:00:00,12028.0
-2017-03-15 17:00:00,11831.0
-2017-03-15 18:00:00,11686.0
-2017-03-15 19:00:00,11677.0
-2017-03-15 20:00:00,11749.0
-2017-03-15 21:00:00,12414.0
-2017-03-15 22:00:00,12415.0
-2017-03-15 23:00:00,12023.0
-2017-03-16 00:00:00,11344.0
-2017-03-14 01:00:00,10659.0
-2017-03-14 02:00:00,10248.0
-2017-03-14 03:00:00,9989.0
-2017-03-14 04:00:00,9868.0
-2017-03-14 05:00:00,9909.0
-2017-03-14 06:00:00,10188.0
-2017-03-14 07:00:00,10895.0
-2017-03-14 08:00:00,12015.0
-2017-03-14 09:00:00,12547.0
-2017-03-14 10:00:00,12653.0
-2017-03-14 11:00:00,12627.0
-2017-03-14 12:00:00,12592.0
-2017-03-14 13:00:00,12513.0
-2017-03-14 14:00:00,12421.0
-2017-03-14 15:00:00,12362.0
-2017-03-14 16:00:00,12239.0
-2017-03-14 17:00:00,12152.0
-2017-03-14 18:00:00,12112.0
-2017-03-14 19:00:00,12099.0
-2017-03-14 20:00:00,12210.0
-2017-03-14 21:00:00,12831.0
-2017-03-14 22:00:00,12803.0
-2017-03-14 23:00:00,12373.0
-2017-03-15 00:00:00,11669.0
-2017-03-13 01:00:00,9872.0
-2017-03-13 02:00:00,9554.0
-2017-03-13 03:00:00,9408.0
-2017-03-13 04:00:00,9354.0
-2017-03-13 05:00:00,9414.0
-2017-03-13 06:00:00,9746.0
-2017-03-13 07:00:00,10475.0
-2017-03-13 08:00:00,11619.0
-2017-03-13 09:00:00,12166.0
-2017-03-13 10:00:00,12289.0
-2017-03-13 11:00:00,12336.0
-2017-03-13 12:00:00,12414.0
-2017-03-13 13:00:00,12378.0
-2017-03-13 14:00:00,12324.0
-2017-03-13 15:00:00,12290.0
-2017-03-13 16:00:00,12168.0
-2017-03-13 17:00:00,12047.0
-2017-03-13 18:00:00,12062.0
-2017-03-13 19:00:00,12183.0
-2017-03-13 20:00:00,12327.0
-2017-03-13 21:00:00,12643.0
-2017-03-13 22:00:00,12476.0
-2017-03-13 23:00:00,12038.0
-2017-03-14 00:00:00,11335.0
-2017-03-12 01:00:00,9870.0
-2017-03-12 02:00:00,9582.0
-2017-03-12 04:00:00,9464.0
-2017-03-12 05:00:00,9373.0
-2017-03-12 06:00:00,9405.0
-2017-03-12 07:00:00,9537.0
-2017-03-12 08:00:00,9799.0
-2017-03-12 09:00:00,9797.0
-2017-03-12 10:00:00,9876.0
-2017-03-12 11:00:00,9912.0
-2017-03-12 12:00:00,9985.0
-2017-03-12 13:00:00,9925.0
-2017-03-12 14:00:00,9897.0
-2017-03-12 15:00:00,9778.0
-2017-03-12 16:00:00,9683.0
-2017-03-12 17:00:00,9596.0
-2017-03-12 18:00:00,9667.0
-2017-03-12 19:00:00,9907.0
-2017-03-12 20:00:00,10355.0
-2017-03-12 21:00:00,11001.0
-2017-03-12 22:00:00,10948.0
-2017-03-12 23:00:00,10666.0
-2017-03-13 00:00:00,10304.0
-2017-03-11 01:00:00,10473.0
-2017-03-11 02:00:00,10122.0
-2017-03-11 03:00:00,9871.0
-2017-03-11 04:00:00,9775.0
-2017-03-11 05:00:00,9728.0
-2017-03-11 06:00:00,9875.0
-2017-03-11 07:00:00,10179.0
-2017-03-11 08:00:00,10419.0
-2017-03-11 09:00:00,10579.0
-2017-03-11 10:00:00,10861.0
-2017-03-11 11:00:00,10926.0
-2017-03-11 12:00:00,10892.0
-2017-03-11 13:00:00,10825.0
-2017-03-11 14:00:00,10584.0
-2017-03-11 15:00:00,10329.0
-2017-03-11 16:00:00,10122.0
-2017-03-11 17:00:00,10076.0
-2017-03-11 18:00:00,10188.0
-2017-03-11 19:00:00,10598.0
-2017-03-11 20:00:00,11220.0
-2017-03-11 21:00:00,11198.0
-2017-03-11 22:00:00,11093.0
-2017-03-11 23:00:00,10795.0
-2017-03-12 00:00:00,10385.0
-2017-03-10 01:00:00,9853.0
-2017-03-10 02:00:00,9514.0
-2017-03-10 03:00:00,9345.0
-2017-03-10 04:00:00,9286.0
-2017-03-10 05:00:00,9337.0
-2017-03-10 06:00:00,9646.0
-2017-03-10 07:00:00,10401.0
-2017-03-10 08:00:00,11203.0
-2017-03-10 09:00:00,11581.0
-2017-03-10 10:00:00,11771.0
-2017-03-10 11:00:00,11785.0
-2017-03-10 12:00:00,11832.0
-2017-03-10 13:00:00,11768.0
-2017-03-10 14:00:00,11668.0
-2017-03-10 15:00:00,11629.0
-2017-03-10 16:00:00,11445.0
-2017-03-10 17:00:00,11319.0
-2017-03-10 18:00:00,11378.0
-2017-03-10 19:00:00,11691.0
-2017-03-10 20:00:00,12258.0
-2017-03-10 21:00:00,12207.0
-2017-03-10 22:00:00,12000.0
-2017-03-10 23:00:00,11665.0
-2017-03-11 00:00:00,11076.0
-2017-03-09 01:00:00,9516.0
-2017-03-09 02:00:00,9155.0
-2017-03-09 03:00:00,8924.0
-2017-03-09 04:00:00,8849.0
-2017-03-09 05:00:00,8878.0
-2017-03-09 06:00:00,9167.0
-2017-03-09 07:00:00,9905.0
-2017-03-09 08:00:00,10779.0
-2017-03-09 09:00:00,11270.0
-2017-03-09 10:00:00,11377.0
-2017-03-09 11:00:00,11412.0
-2017-03-09 12:00:00,11429.0
-2017-03-09 13:00:00,11366.0
-2017-03-09 14:00:00,11235.0
-2017-03-09 15:00:00,11250.0
-2017-03-09 16:00:00,11187.0
-2017-03-09 17:00:00,11181.0
-2017-03-09 18:00:00,11389.0
-2017-03-09 19:00:00,11716.0
-2017-03-09 20:00:00,11990.0
-2017-03-09 21:00:00,11855.0
-2017-03-09 22:00:00,11607.0
-2017-03-09 23:00:00,11142.0
-2017-03-10 00:00:00,10467.0
-2017-03-08 01:00:00,9410.0
-2017-03-08 02:00:00,9012.0
-2017-03-08 03:00:00,8801.0
-2017-03-08 04:00:00,8704.0
-2017-03-08 05:00:00,8718.0
-2017-03-08 06:00:00,9043.0
-2017-03-08 07:00:00,9809.0
-2017-03-08 08:00:00,10662.0
-2017-03-08 09:00:00,11087.0
-2017-03-08 10:00:00,11215.0
-2017-03-08 11:00:00,11251.0
-2017-03-08 12:00:00,11214.0
-2017-03-08 13:00:00,11253.0
-2017-03-08 14:00:00,11118.0
-2017-03-08 15:00:00,11061.0
-2017-03-08 16:00:00,10871.0
-2017-03-08 17:00:00,10747.0
-2017-03-08 18:00:00,10748.0
-2017-03-08 19:00:00,10951.0
-2017-03-08 20:00:00,11502.0
-2017-03-08 21:00:00,11507.0
-2017-03-08 22:00:00,11235.0
-2017-03-08 23:00:00,10786.0
-2017-03-09 00:00:00,10134.0
-2017-03-07 01:00:00,9124.0
-2017-03-07 02:00:00,8665.0
-2017-03-07 03:00:00,8417.0
-2017-03-07 04:00:00,8285.0
-2017-03-07 05:00:00,8219.0
-2017-03-07 06:00:00,8448.0
-2017-03-07 07:00:00,9188.0
-2017-03-07 08:00:00,10144.0
-2017-03-07 09:00:00,10696.0
-2017-03-07 10:00:00,10938.0
-2017-03-07 11:00:00,11001.0
-2017-03-07 12:00:00,11062.0
-2017-03-07 13:00:00,11035.0
-2017-03-07 14:00:00,10954.0
-2017-03-07 15:00:00,10903.0
-2017-03-07 16:00:00,10756.0
-2017-03-07 17:00:00,10633.0
-2017-03-07 18:00:00,10652.0
-2017-03-07 19:00:00,10911.0
-2017-03-07 20:00:00,11416.0
-2017-03-07 21:00:00,11386.0
-2017-03-07 22:00:00,11145.0
-2017-03-07 23:00:00,10698.0
-2017-03-08 00:00:00,10033.0
-2017-03-06 01:00:00,8817.0
-2017-03-06 02:00:00,8515.0
-2017-03-06 03:00:00,8351.0
-2017-03-06 04:00:00,8275.0
-2017-03-06 05:00:00,8319.0
-2017-03-06 06:00:00,8621.0
-2017-03-06 07:00:00,9367.0
-2017-03-06 08:00:00,10276.0
-2017-03-06 09:00:00,10757.0
-2017-03-06 10:00:00,11077.0
-2017-03-06 11:00:00,11135.0
-2017-03-06 12:00:00,11182.0
-2017-03-06 13:00:00,11193.0
-2017-03-06 14:00:00,11152.0
-2017-03-06 15:00:00,11170.0
-2017-03-06 16:00:00,11101.0
-2017-03-06 17:00:00,11020.0
-2017-03-06 18:00:00,11079.0
-2017-03-06 19:00:00,11378.0
-2017-03-06 20:00:00,11544.0
-2017-03-06 21:00:00,11334.0
-2017-03-06 22:00:00,10997.0
-2017-03-06 23:00:00,10509.0
-2017-03-07 00:00:00,9771.0
-2017-03-05 01:00:00,9794.0
-2017-03-05 02:00:00,9425.0
-2017-03-05 03:00:00,9183.0
-2017-03-05 04:00:00,9056.0
-2017-03-05 05:00:00,8979.0
-2017-03-05 06:00:00,8999.0
-2017-03-05 07:00:00,9172.0
-2017-03-05 08:00:00,9188.0
-2017-03-05 09:00:00,9245.0
-2017-03-05 10:00:00,9419.0
-2017-03-05 11:00:00,9565.0
-2017-03-05 12:00:00,9521.0
-2017-03-05 13:00:00,9458.0
-2017-03-05 14:00:00,9408.0
-2017-03-05 15:00:00,9318.0
-2017-03-05 16:00:00,9282.0
-2017-03-05 17:00:00,9278.0
-2017-03-05 18:00:00,9458.0
-2017-03-05 19:00:00,9742.0
-2017-03-05 20:00:00,10315.0
-2017-03-05 21:00:00,10251.0
-2017-03-05 22:00:00,10063.0
-2017-03-05 23:00:00,9698.0
-2017-03-06 00:00:00,9259.0
-2017-03-04 01:00:00,10174.0
-2017-03-04 02:00:00,9761.0
-2017-03-04 03:00:00,9563.0
-2017-03-04 04:00:00,9405.0
-2017-03-04 05:00:00,9377.0
-2017-03-04 06:00:00,9476.0
-2017-03-04 07:00:00,9794.0
-2017-03-04 08:00:00,10099.0
-2017-03-04 09:00:00,10290.0
-2017-03-04 10:00:00,10550.0
-2017-03-04 11:00:00,10632.0
-2017-03-04 12:00:00,10597.0
-2017-03-04 13:00:00,10401.0
-2017-03-04 14:00:00,10209.0
-2017-03-04 15:00:00,10013.0
-2017-03-04 16:00:00,9867.0
-2017-03-04 17:00:00,9794.0
-2017-03-04 18:00:00,9877.0
-2017-03-04 19:00:00,10299.0
-2017-03-04 20:00:00,11020.0
-2017-03-04 21:00:00,11003.0
-2017-03-04 22:00:00,10926.0
-2017-03-04 23:00:00,10672.0
-2017-03-05 00:00:00,10237.0
-2017-03-03 01:00:00,10366.0
-2017-03-03 02:00:00,9984.0
-2017-03-03 03:00:00,9805.0
-2017-03-03 04:00:00,9720.0
-2017-03-03 05:00:00,9723.0
-2017-03-03 06:00:00,10007.0
-2017-03-03 07:00:00,10763.0
-2017-03-03 08:00:00,11630.0
-2017-03-03 09:00:00,11991.0
-2017-03-03 10:00:00,12101.0
-2017-03-03 11:00:00,12115.0
-2017-03-03 12:00:00,12079.0
-2017-03-03 13:00:00,11967.0
-2017-03-03 14:00:00,11814.0
-2017-03-03 15:00:00,11706.0
-2017-03-03 16:00:00,11485.0
-2017-03-03 17:00:00,11315.0
-2017-03-03 18:00:00,11324.0
-2017-03-03 19:00:00,11725.0
-2017-03-03 20:00:00,12220.0
-2017-03-03 21:00:00,12052.0
-2017-03-03 22:00:00,11772.0
-2017-03-03 23:00:00,11395.0
-2017-03-04 00:00:00,10775.0
-2017-03-02 01:00:00,10061.0
-2017-03-02 02:00:00,9641.0
-2017-03-02 03:00:00,9423.0
-2017-03-02 04:00:00,9308.0
-2017-03-02 05:00:00,9316.0
-2017-03-02 06:00:00,9593.0
-2017-03-02 07:00:00,10287.0
-2017-03-02 08:00:00,11240.0
-2017-03-02 09:00:00,11690.0
-2017-03-02 10:00:00,11855.0
-2017-03-02 11:00:00,11791.0
-2017-03-02 12:00:00,11744.0
-2017-03-02 13:00:00,11746.0
-2017-03-02 14:00:00,11816.0
-2017-03-02 15:00:00,11831.0
-2017-03-02 16:00:00,11799.0
-2017-03-02 17:00:00,11820.0
-2017-03-02 18:00:00,11878.0
-2017-03-02 19:00:00,12170.0
-2017-03-02 20:00:00,12487.0
-2017-03-02 21:00:00,12366.0
-2017-03-02 22:00:00,12106.0
-2017-03-02 23:00:00,11651.0
-2017-03-03 00:00:00,10946.0
-2017-03-01 01:00:00,9285.0
-2017-03-01 02:00:00,8782.0
-2017-03-01 03:00:00,8517.0
-2017-03-01 04:00:00,8381.0
-2017-03-01 05:00:00,8335.0
-2017-03-01 06:00:00,8615.0
-2017-03-01 07:00:00,9343.0
-2017-03-01 08:00:00,10378.0
-2017-03-01 09:00:00,10996.0
-2017-03-01 10:00:00,11279.0
-2017-03-01 11:00:00,11428.0
-2017-03-01 12:00:00,11579.0
-2017-03-01 13:00:00,11597.0
-2017-03-01 14:00:00,11593.0
-2017-03-01 15:00:00,11680.0
-2017-03-01 16:00:00,11650.0
-2017-03-01 17:00:00,11700.0
-2017-03-01 18:00:00,11860.0
-2017-03-01 19:00:00,12204.0
-2017-03-01 20:00:00,12437.0
-2017-03-01 21:00:00,12264.0
-2017-03-01 22:00:00,11959.0
-2017-03-01 23:00:00,11459.0
-2017-03-02 00:00:00,10700.0
-2017-02-28 01:00:00,9356.0
-2017-02-28 02:00:00,8960.0
-2017-02-28 03:00:00,8723.0
-2017-02-28 04:00:00,8622.0
-2017-02-28 05:00:00,8575.0
-2017-02-28 06:00:00,8763.0
-2017-02-28 07:00:00,9462.0
-2017-02-28 08:00:00,10354.0
-2017-02-28 09:00:00,10796.0
-2017-02-28 10:00:00,11065.0
-2017-02-28 11:00:00,11131.0
-2017-02-28 12:00:00,11216.0
-2017-02-28 13:00:00,11186.0
-2017-02-28 14:00:00,11120.0
-2017-02-28 15:00:00,11121.0
-2017-02-28 16:00:00,11017.0
-2017-02-28 17:00:00,11007.0
-2017-02-28 18:00:00,11182.0
-2017-02-28 19:00:00,11639.0
-2017-02-28 20:00:00,11595.0
-2017-02-28 21:00:00,11328.0
-2017-02-28 22:00:00,10994.0
-2017-02-28 23:00:00,10552.0
-2017-03-01 00:00:00,9869.0
-2017-02-27 01:00:00,9218.0
-2017-02-27 02:00:00,8884.0
-2017-02-27 03:00:00,8783.0
-2017-02-27 04:00:00,8664.0
-2017-02-27 05:00:00,8718.0
-2017-02-27 06:00:00,9036.0
-2017-02-27 07:00:00,9864.0
-2017-02-27 08:00:00,10862.0
-2017-02-27 09:00:00,11237.0
-2017-02-27 10:00:00,11299.0
-2017-02-27 11:00:00,11234.0
-2017-02-27 12:00:00,11182.0
-2017-02-27 13:00:00,11079.0
-2017-02-27 14:00:00,11012.0
-2017-02-27 15:00:00,10938.0
-2017-02-27 16:00:00,10788.0
-2017-02-27 17:00:00,10705.0
-2017-02-27 18:00:00,10779.0
-2017-02-27 19:00:00,11174.0
-2017-02-27 20:00:00,11534.0
-2017-02-27 21:00:00,11410.0
-2017-02-27 22:00:00,11162.0
-2017-02-27 23:00:00,10692.0
-2017-02-28 00:00:00,9967.0
-2017-02-26 01:00:00,10032.0
-2017-02-26 02:00:00,9684.0
-2017-02-26 03:00:00,9418.0
-2017-02-26 04:00:00,9357.0
-2017-02-26 05:00:00,9241.0
-2017-02-26 06:00:00,9288.0
-2017-02-26 07:00:00,9361.0
-2017-02-26 08:00:00,9620.0
-2017-02-26 09:00:00,9600.0
-2017-02-26 10:00:00,9846.0
-2017-02-26 11:00:00,10023.0
-2017-02-26 12:00:00,9932.0
-2017-02-26 13:00:00,9932.0
-2017-02-26 14:00:00,9673.0
-2017-02-26 15:00:00,9534.0
-2017-02-26 16:00:00,9373.0
-2017-02-26 17:00:00,9347.0
-2017-02-26 18:00:00,9461.0
-2017-02-26 19:00:00,10044.0
-2017-02-26 20:00:00,10641.0
-2017-02-26 21:00:00,10530.0
-2017-02-26 22:00:00,10373.0
-2017-02-26 23:00:00,10049.0
-2017-02-27 00:00:00,9640.0
-2017-02-25 01:00:00,9781.0
-2017-02-25 02:00:00,9420.0
-2017-02-25 03:00:00,9195.0
-2017-02-25 04:00:00,9025.0
-2017-02-25 05:00:00,9039.0
-2017-02-25 06:00:00,9173.0
-2017-02-25 07:00:00,9564.0
-2017-02-25 08:00:00,10031.0
-2017-02-25 09:00:00,10280.0
-2017-02-25 10:00:00,10791.0
-2017-02-25 11:00:00,11081.0
-2017-02-25 12:00:00,11211.0
-2017-02-25 13:00:00,11119.0
-2017-02-25 14:00:00,10989.0
-2017-02-25 15:00:00,10802.0
-2017-02-25 16:00:00,10676.0
-2017-02-25 17:00:00,10709.0
-2017-02-25 18:00:00,10713.0
-2017-02-25 19:00:00,11133.0
-2017-02-25 20:00:00,11509.0
-2017-02-25 21:00:00,11441.0
-2017-02-25 22:00:00,11230.0
-2017-02-25 23:00:00,10982.0
-2017-02-26 00:00:00,10542.0
-2017-02-24 01:00:00,9599.0
-2017-02-24 02:00:00,9201.0
-2017-02-24 03:00:00,8965.0
-2017-02-24 04:00:00,8755.0
-2017-02-24 05:00:00,8768.0
-2017-02-24 06:00:00,8946.0
-2017-02-24 07:00:00,9629.0
-2017-02-24 08:00:00,10637.0
-2017-02-24 09:00:00,11124.0
-2017-02-24 10:00:00,11364.0
-2017-02-24 11:00:00,11553.0
-2017-02-24 12:00:00,11679.0
-2017-02-24 13:00:00,11626.0
-2017-02-24 14:00:00,11613.0
-2017-02-24 15:00:00,11463.0
-2017-02-24 16:00:00,11373.0
-2017-02-24 17:00:00,11294.0
-2017-02-24 18:00:00,11382.0
-2017-02-24 19:00:00,11649.0
-2017-02-24 20:00:00,11741.0
-2017-02-24 21:00:00,11463.0
-2017-02-24 22:00:00,11276.0
-2017-02-24 23:00:00,10893.0
-2017-02-25 00:00:00,10320.0
-2017-02-23 01:00:00,8943.0
-2017-02-23 02:00:00,8502.0
-2017-02-23 03:00:00,8236.0
-2017-02-23 04:00:00,8093.0
-2017-02-23 05:00:00,8067.0
-2017-02-23 06:00:00,8231.0
-2017-02-23 07:00:00,8902.0
-2017-02-23 08:00:00,9841.0
-2017-02-23 09:00:00,10268.0
-2017-02-23 10:00:00,10470.0
-2017-02-23 11:00:00,10655.0
-2017-02-23 12:00:00,10819.0
-2017-02-23 13:00:00,10916.0
-2017-02-23 14:00:00,10962.0
-2017-02-23 15:00:00,11091.0
-2017-02-23 16:00:00,11035.0
-2017-02-23 17:00:00,11096.0
-2017-02-23 18:00:00,11356.0
-2017-02-23 19:00:00,11749.0
-2017-02-23 20:00:00,11852.0
-2017-02-23 21:00:00,11691.0
-2017-02-23 22:00:00,11423.0
-2017-02-23 23:00:00,10917.0
-2017-02-24 00:00:00,10196.0
-2017-02-22 01:00:00,9018.0
-2017-02-22 02:00:00,8654.0
-2017-02-22 03:00:00,8374.0
-2017-02-22 04:00:00,8257.0
-2017-02-22 05:00:00,8225.0
-2017-02-22 06:00:00,8442.0
-2017-02-22 07:00:00,9020.0
-2017-02-22 08:00:00,10036.0
-2017-02-22 09:00:00,10477.0
-2017-02-22 10:00:00,10723.0
-2017-02-22 11:00:00,10826.0
-2017-02-22 12:00:00,10900.0
-2017-02-22 13:00:00,10867.0
-2017-02-22 14:00:00,10855.0
-2017-02-22 15:00:00,10858.0
-2017-02-22 16:00:00,10795.0
-2017-02-22 17:00:00,10748.0
-2017-02-22 18:00:00,10686.0
-2017-02-22 19:00:00,10927.0
-2017-02-22 20:00:00,11331.0
-2017-02-22 21:00:00,11133.0
-2017-02-22 22:00:00,10825.0
-2017-02-22 23:00:00,10318.0
-2017-02-23 00:00:00,9566.0
-2017-02-21 01:00:00,8858.0
-2017-02-21 02:00:00,8403.0
-2017-02-21 03:00:00,8122.0
-2017-02-21 04:00:00,7995.0
-2017-02-21 05:00:00,8008.0
-2017-02-21 06:00:00,8251.0
-2017-02-21 07:00:00,8903.0
-2017-02-21 08:00:00,9923.0
-2017-02-21 09:00:00,10435.0
-2017-02-21 10:00:00,10686.0
-2017-02-21 11:00:00,10797.0
-2017-02-21 12:00:00,10878.0
-2017-02-21 13:00:00,10896.0
-2017-02-21 14:00:00,10895.0
-2017-02-21 15:00:00,10975.0
-2017-02-21 16:00:00,10890.0
-2017-02-21 17:00:00,10757.0
-2017-02-21 18:00:00,10720.0
-2017-02-21 19:00:00,10982.0
-2017-02-21 20:00:00,11321.0
-2017-02-21 21:00:00,11121.0
-2017-02-21 22:00:00,10774.0
-2017-02-21 23:00:00,10267.0
-2017-02-22 00:00:00,9630.0
-2017-02-20 01:00:00,8529.0
-2017-02-20 02:00:00,8244.0
-2017-02-20 03:00:00,8065.0
-2017-02-20 04:00:00,7991.0
-2017-02-20 05:00:00,8033.0
-2017-02-20 06:00:00,8302.0
-2017-02-20 07:00:00,8917.0
-2017-02-20 08:00:00,9734.0
-2017-02-20 09:00:00,10112.0
-2017-02-20 10:00:00,10350.0
-2017-02-20 11:00:00,10485.0
-2017-02-20 12:00:00,10606.0
-2017-02-20 13:00:00,10665.0
-2017-02-20 14:00:00,10609.0
-2017-02-20 15:00:00,10645.0
-2017-02-20 16:00:00,10554.0
-2017-02-20 17:00:00,10494.0
-2017-02-20 18:00:00,10523.0
-2017-02-20 19:00:00,11023.0
-2017-02-20 20:00:00,11235.0
-2017-02-20 21:00:00,11046.0
-2017-02-20 22:00:00,10681.0
-2017-02-20 23:00:00,10165.0
-2017-02-21 00:00:00,9472.0
-2017-02-19 01:00:00,8474.0
-2017-02-19 02:00:00,8192.0
-2017-02-19 03:00:00,7974.0
-2017-02-19 04:00:00,7886.0
-2017-02-19 05:00:00,7783.0
-2017-02-19 06:00:00,7904.0
-2017-02-19 07:00:00,8060.0
-2017-02-19 08:00:00,8272.0
-2017-02-19 09:00:00,8311.0
-2017-02-19 10:00:00,8460.0
-2017-02-19 11:00:00,8608.0
-2017-02-19 12:00:00,8689.0
-2017-02-19 13:00:00,8728.0
-2017-02-19 14:00:00,8693.0
-2017-02-19 15:00:00,8649.0
-2017-02-19 16:00:00,8612.0
-2017-02-19 17:00:00,8592.0
-2017-02-19 18:00:00,8742.0
-2017-02-19 19:00:00,9278.0
-2017-02-19 20:00:00,9754.0
-2017-02-19 21:00:00,9683.0
-2017-02-19 22:00:00,9547.0
-2017-02-19 23:00:00,9297.0
-2017-02-20 00:00:00,8914.0
-2017-02-18 01:00:00,9146.0
-2017-02-18 02:00:00,8699.0
-2017-02-18 03:00:00,8454.0
-2017-02-18 04:00:00,8299.0
-2017-02-18 05:00:00,8289.0
-2017-02-18 06:00:00,8299.0
-2017-02-18 07:00:00,8672.0
-2017-02-18 08:00:00,9005.0
-2017-02-18 09:00:00,9105.0
-2017-02-18 10:00:00,9335.0
-2017-02-18 11:00:00,9448.0
-2017-02-18 12:00:00,9490.0
-2017-02-18 13:00:00,9421.0
-2017-02-18 14:00:00,9354.0
-2017-02-18 15:00:00,9192.0
-2017-02-18 16:00:00,9078.0
-2017-02-18 17:00:00,8994.0
-2017-02-18 18:00:00,9030.0
-2017-02-18 19:00:00,9398.0
-2017-02-18 20:00:00,9806.0
-2017-02-18 21:00:00,9677.0
-2017-02-18 22:00:00,9546.0
-2017-02-18 23:00:00,9281.0
-2017-02-19 00:00:00,8871.0
-2017-02-17 01:00:00,9893.0
-2017-02-17 02:00:00,9543.0
-2017-02-17 03:00:00,9298.0
-2017-02-17 04:00:00,9178.0
-2017-02-17 05:00:00,9171.0
-2017-02-17 06:00:00,9461.0
-2017-02-17 07:00:00,10175.0
-2017-02-17 08:00:00,11126.0
-2017-02-17 09:00:00,11376.0
-2017-02-17 10:00:00,11388.0
-2017-02-17 11:00:00,11283.0
-2017-02-17 12:00:00,11179.0
-2017-02-17 13:00:00,11110.0
-2017-02-17 14:00:00,10920.0
-2017-02-17 15:00:00,10855.0
-2017-02-17 16:00:00,10739.0
-2017-02-17 17:00:00,10613.0
-2017-02-17 18:00:00,10554.0
-2017-02-17 19:00:00,10874.0
-2017-02-17 20:00:00,11146.0
-2017-02-17 21:00:00,10950.0
-2017-02-17 22:00:00,10679.0
-2017-02-17 23:00:00,10266.0
-2017-02-18 00:00:00,9753.0
-2017-02-16 01:00:00,10129.0
-2017-02-16 02:00:00,9711.0
-2017-02-16 03:00:00,9514.0
-2017-02-16 04:00:00,9398.0
-2017-02-16 05:00:00,9383.0
-2017-02-16 06:00:00,9655.0
-2017-02-16 07:00:00,10324.0
-2017-02-16 08:00:00,11374.0
-2017-02-16 09:00:00,11784.0
-2017-02-16 10:00:00,11969.0
-2017-02-16 11:00:00,11987.0
-2017-02-16 12:00:00,11902.0
-2017-02-16 13:00:00,11773.0
-2017-02-16 14:00:00,11648.0
-2017-02-16 15:00:00,11603.0
-2017-02-16 16:00:00,11419.0
-2017-02-16 17:00:00,11459.0
-2017-02-16 18:00:00,11623.0
-2017-02-16 19:00:00,12122.0
-2017-02-16 20:00:00,12167.0
-2017-02-16 21:00:00,11963.0
-2017-02-16 22:00:00,11721.0
-2017-02-16 23:00:00,11218.0
-2017-02-17 00:00:00,10523.0
-2017-02-15 01:00:00,9848.0
-2017-02-15 02:00:00,9513.0
-2017-02-15 03:00:00,9351.0
-2017-02-15 04:00:00,9218.0
-2017-02-15 05:00:00,9292.0
-2017-02-15 06:00:00,9628.0
-2017-02-15 07:00:00,10440.0
-2017-02-15 08:00:00,11425.0
-2017-02-15 09:00:00,11836.0
-2017-02-15 10:00:00,11854.0
-2017-02-15 11:00:00,11873.0
-2017-02-15 12:00:00,11885.0
-2017-02-15 13:00:00,11840.0
-2017-02-15 14:00:00,11770.0
-2017-02-15 15:00:00,11697.0
-2017-02-15 16:00:00,11540.0
-2017-02-15 17:00:00,11534.0
-2017-02-15 18:00:00,11607.0
-2017-02-15 19:00:00,12227.0
-2017-02-15 20:00:00,12438.0
-2017-02-15 21:00:00,12255.0
-2017-02-15 22:00:00,11971.0
-2017-02-15 23:00:00,11427.0
-2017-02-16 00:00:00,10762.0
-2017-02-14 01:00:00,9992.0
-2017-02-14 02:00:00,9594.0
-2017-02-14 03:00:00,9370.0
-2017-02-14 04:00:00,9264.0
-2017-02-14 05:00:00,9273.0
-2017-02-14 06:00:00,9569.0
-2017-02-14 07:00:00,10296.0
-2017-02-14 08:00:00,11299.0
-2017-02-14 09:00:00,11640.0
-2017-02-14 10:00:00,11645.0
-2017-02-14 11:00:00,11562.0
-2017-02-14 12:00:00,11517.0
-2017-02-14 13:00:00,11387.0
-2017-02-14 14:00:00,11244.0
-2017-02-14 15:00:00,11190.0
-2017-02-14 16:00:00,11023.0
-2017-02-14 17:00:00,10917.0
-2017-02-14 18:00:00,11016.0
-2017-02-14 19:00:00,11609.0
-2017-02-14 20:00:00,11853.0
-2017-02-14 21:00:00,11769.0
-2017-02-14 22:00:00,11514.0
-2017-02-14 23:00:00,11106.0
-2017-02-15 00:00:00,10474.0
-2017-02-13 01:00:00,9572.0
-2017-02-13 02:00:00,9305.0
-2017-02-13 03:00:00,9181.0
-2017-02-13 04:00:00,9066.0
-2017-02-13 05:00:00,9172.0
-2017-02-13 06:00:00,9512.0
-2017-02-13 07:00:00,10343.0
-2017-02-13 08:00:00,11453.0
-2017-02-13 09:00:00,11832.0
-2017-02-13 10:00:00,11818.0
-2017-02-13 11:00:00,11738.0
-2017-02-13 12:00:00,11672.0
-2017-02-13 13:00:00,11580.0
-2017-02-13 14:00:00,11460.0
-2017-02-13 15:00:00,11369.0
-2017-02-13 16:00:00,11226.0
-2017-02-13 17:00:00,11088.0
-2017-02-13 18:00:00,11212.0
-2017-02-13 19:00:00,11836.0
-2017-02-13 20:00:00,12155.0
-2017-02-13 21:00:00,12012.0
-2017-02-13 22:00:00,11773.0
-2017-02-13 23:00:00,11296.0
-2017-02-14 00:00:00,10661.0
-2017-02-12 01:00:00,9431.0
-2017-02-12 02:00:00,9089.0
-2017-02-12 03:00:00,8849.0
-2017-02-12 04:00:00,8729.0
-2017-02-12 05:00:00,8665.0
-2017-02-12 06:00:00,8666.0
-2017-02-12 07:00:00,8836.0
-2017-02-12 08:00:00,9105.0
-2017-02-12 09:00:00,9160.0
-2017-02-12 10:00:00,9319.0
-2017-02-12 11:00:00,9403.0
-2017-02-12 12:00:00,9478.0
-2017-02-12 13:00:00,9559.0
-2017-02-12 14:00:00,9526.0
-2017-02-12 15:00:00,9476.0
-2017-02-12 16:00:00,9444.0
-2017-02-12 17:00:00,9469.0
-2017-02-12 18:00:00,9680.0
-2017-02-12 19:00:00,10460.0
-2017-02-12 20:00:00,10942.0
-2017-02-12 21:00:00,10890.0
-2017-02-12 22:00:00,10744.0
-2017-02-12 23:00:00,10429.0
-2017-02-13 00:00:00,9976.0
-2017-02-11 01:00:00,10065.0
-2017-02-11 02:00:00,9573.0
-2017-02-11 03:00:00,9311.0
-2017-02-11 04:00:00,9134.0
-2017-02-11 05:00:00,9067.0
-2017-02-11 06:00:00,9161.0
-2017-02-11 07:00:00,9365.0
-2017-02-11 08:00:00,9878.0
-2017-02-11 09:00:00,10064.0
-2017-02-11 10:00:00,10378.0
-2017-02-11 11:00:00,10421.0
-2017-02-11 12:00:00,10399.0
-2017-02-11 13:00:00,10312.0
-2017-02-11 14:00:00,10136.0
-2017-02-11 15:00:00,9940.0
-2017-02-11 16:00:00,9875.0
-2017-02-11 17:00:00,9895.0
-2017-02-11 18:00:00,10059.0
-2017-02-11 19:00:00,10647.0
-2017-02-11 20:00:00,10804.0
-2017-02-11 21:00:00,10725.0
-2017-02-11 22:00:00,10544.0
-2017-02-11 23:00:00,10327.0
-2017-02-12 00:00:00,9899.0
-2017-02-10 01:00:00,11200.0
-2017-02-10 02:00:00,10806.0
-2017-02-10 03:00:00,10587.0
-2017-02-10 04:00:00,10455.0
-2017-02-10 05:00:00,10402.0
-2017-02-10 06:00:00,10694.0
-2017-02-10 07:00:00,11349.0
-2017-02-10 08:00:00,12386.0
-2017-02-10 09:00:00,12834.0
-2017-02-10 10:00:00,12854.0
-2017-02-10 11:00:00,12761.0
-2017-02-10 12:00:00,12719.0
-2017-02-10 13:00:00,12522.0
-2017-02-10 14:00:00,12324.0
-2017-02-10 15:00:00,12109.0
-2017-02-10 16:00:00,11853.0
-2017-02-10 17:00:00,11636.0
-2017-02-10 18:00:00,11746.0
-2017-02-10 19:00:00,12302.0
-2017-02-10 20:00:00,12366.0
-2017-02-10 21:00:00,12136.0
-2017-02-10 22:00:00,11827.0
-2017-02-10 23:00:00,11390.0
-2017-02-11 00:00:00,10740.0
-2017-02-09 01:00:00,10965.0
-2017-02-09 02:00:00,10650.0
-2017-02-09 03:00:00,10499.0
-2017-02-09 04:00:00,10415.0
-2017-02-09 05:00:00,10453.0
-2017-02-09 06:00:00,10772.0
-2017-02-09 07:00:00,11557.0
-2017-02-09 08:00:00,12572.0
-2017-02-09 09:00:00,12947.0
-2017-02-09 10:00:00,12970.0
-2017-02-09 11:00:00,12937.0
-2017-02-09 12:00:00,12870.0
-2017-02-09 13:00:00,12771.0
-2017-02-09 14:00:00,12657.0
-2017-02-09 15:00:00,12578.0
-2017-02-09 16:00:00,12400.0
-2017-02-09 17:00:00,12300.0
-2017-02-09 18:00:00,12459.0
-2017-02-09 19:00:00,13145.0
-2017-02-09 20:00:00,13371.0
-2017-02-09 21:00:00,13265.0
-2017-02-09 22:00:00,13043.0
-2017-02-09 23:00:00,12562.0
-2017-02-10 00:00:00,11841.0
-2017-02-08 01:00:00,10052.0
-2017-02-08 02:00:00,9655.0
-2017-02-08 03:00:00,9454.0
-2017-02-08 04:00:00,9337.0
-2017-02-08 05:00:00,9328.0
-2017-02-08 06:00:00,9631.0
-2017-02-08 07:00:00,10418.0
-2017-02-08 08:00:00,11595.0
-2017-02-08 09:00:00,12071.0
-2017-02-08 10:00:00,12233.0
-2017-02-08 11:00:00,12323.0
-2017-02-08 12:00:00,12448.0
-2017-02-08 13:00:00,12502.0
-2017-02-08 14:00:00,12528.0
-2017-02-08 15:00:00,12526.0
-2017-02-08 16:00:00,12405.0
-2017-02-08 17:00:00,12327.0
-2017-02-08 18:00:00,12392.0
-2017-02-08 19:00:00,12879.0
-2017-02-08 20:00:00,13053.0
-2017-02-08 21:00:00,12910.0
-2017-02-08 22:00:00,12663.0
-2017-02-08 23:00:00,12234.0
-2017-02-09 00:00:00,11551.0
-2017-02-07 01:00:00,9561.0
-2017-02-07 02:00:00,9150.0
-2017-02-07 03:00:00,8951.0
-2017-02-07 04:00:00,8825.0
-2017-02-07 05:00:00,8806.0
-2017-02-07 06:00:00,9047.0
-2017-02-07 07:00:00,9781.0
-2017-02-07 08:00:00,10832.0
-2017-02-07 09:00:00,11401.0
-2017-02-07 10:00:00,11484.0
-2017-02-07 11:00:00,11637.0
-2017-02-07 12:00:00,11705.0
-2017-02-07 13:00:00,11607.0
-2017-02-07 14:00:00,11572.0
-2017-02-07 15:00:00,11592.0
-2017-02-07 16:00:00,11571.0
-2017-02-07 17:00:00,11644.0
-2017-02-07 18:00:00,11839.0
-2017-02-07 19:00:00,12311.0
-2017-02-07 20:00:00,12258.0
-2017-02-07 21:00:00,12085.0
-2017-02-07 22:00:00,11864.0
-2017-02-07 23:00:00,11380.0
-2017-02-08 00:00:00,10716.0
-2017-02-06 01:00:00,9754.0
-2017-02-06 02:00:00,9482.0
-2017-02-06 03:00:00,9328.0
-2017-02-06 04:00:00,9298.0
-2017-02-06 05:00:00,9419.0
-2017-02-06 06:00:00,9724.0
-2017-02-06 07:00:00,10501.0
-2017-02-06 08:00:00,11565.0
-2017-02-06 09:00:00,11963.0
-2017-02-06 10:00:00,11963.0
-2017-02-06 11:00:00,11831.0
-2017-02-06 12:00:00,11698.0
-2017-02-06 13:00:00,11512.0
-2017-02-06 14:00:00,11373.0
-2017-02-06 15:00:00,11263.0
-2017-02-06 16:00:00,11112.0
-2017-02-06 17:00:00,11079.0
-2017-02-06 18:00:00,11413.0
-2017-02-06 19:00:00,11995.0
-2017-02-06 20:00:00,11970.0
-2017-02-06 21:00:00,11765.0
-2017-02-06 22:00:00,11449.0
-2017-02-06 23:00:00,10924.0
-2017-02-07 00:00:00,10229.0
-2017-02-05 01:00:00,10256.0
-2017-02-05 02:00:00,9883.0
-2017-02-05 03:00:00,9652.0
-2017-02-05 04:00:00,9422.0
-2017-02-05 05:00:00,9394.0
-2017-02-05 06:00:00,9423.0
-2017-02-05 07:00:00,9555.0
-2017-02-05 08:00:00,9827.0
-2017-02-05 09:00:00,9829.0
-2017-02-05 10:00:00,9904.0
-2017-02-05 11:00:00,9969.0
-2017-02-05 12:00:00,9994.0
-2017-02-05 13:00:00,10016.0
-2017-02-05 14:00:00,9996.0
-2017-02-05 15:00:00,9944.0
-2017-02-05 16:00:00,9835.0
-2017-02-05 17:00:00,9843.0
-2017-02-05 18:00:00,10114.0
-2017-02-05 19:00:00,10829.0
-2017-02-05 20:00:00,11036.0
-2017-02-05 21:00:00,10925.0
-2017-02-05 22:00:00,10821.0
-2017-02-05 23:00:00,10602.0
-2017-02-06 00:00:00,10238.0
-2017-02-04 01:00:00,11167.0
-2017-02-04 02:00:00,10735.0
-2017-02-04 03:00:00,10549.0
-2017-02-04 04:00:00,10364.0
-2017-02-04 05:00:00,10344.0
-2017-02-04 06:00:00,10393.0
-2017-02-04 07:00:00,10753.0
-2017-02-04 08:00:00,11170.0
-2017-02-04 09:00:00,11322.0
-2017-02-04 10:00:00,11535.0
-2017-02-04 11:00:00,11687.0
-2017-02-04 12:00:00,11767.0
-2017-02-04 13:00:00,11726.0
-2017-02-04 14:00:00,11626.0
-2017-02-04 15:00:00,11477.0
-2017-02-04 16:00:00,11344.0
-2017-02-04 17:00:00,11299.0
-2017-02-04 18:00:00,11507.0
-2017-02-04 19:00:00,12003.0
-2017-02-04 20:00:00,11959.0
-2017-02-04 21:00:00,11796.0
-2017-02-04 22:00:00,11543.0
-2017-02-04 23:00:00,11269.0
-2017-02-05 00:00:00,10726.0
-2017-02-03 01:00:00,11305.0
-2017-02-03 02:00:00,10909.0
-2017-02-03 03:00:00,10684.0
-2017-02-03 04:00:00,10575.0
-2017-02-03 05:00:00,10613.0
-2017-02-03 06:00:00,10844.0
-2017-02-03 07:00:00,11552.0
-2017-02-03 08:00:00,12530.0
-2017-02-03 09:00:00,12987.0
-2017-02-03 10:00:00,13018.0
-2017-02-03 11:00:00,12882.0
-2017-02-03 12:00:00,12817.0
-2017-02-03 13:00:00,12658.0
-2017-02-03 14:00:00,12490.0
-2017-02-03 15:00:00,12410.0
-2017-02-03 16:00:00,12227.0
-2017-02-03 17:00:00,12098.0
-2017-02-03 18:00:00,12267.0
-2017-02-03 19:00:00,12926.0
-2017-02-03 20:00:00,13034.0
-2017-02-03 21:00:00,12847.0
-2017-02-03 22:00:00,12640.0
-2017-02-03 23:00:00,12314.0
-2017-02-04 00:00:00,11732.0
-2017-02-02 01:00:00,10880.0
-2017-02-02 02:00:00,10551.0
-2017-02-02 03:00:00,10404.0
-2017-02-02 04:00:00,10355.0
-2017-02-02 05:00:00,10396.0
-2017-02-02 06:00:00,10696.0
-2017-02-02 07:00:00,11401.0
-2017-02-02 08:00:00,12497.0
-2017-02-02 09:00:00,12868.0
-2017-02-02 10:00:00,12884.0
-2017-02-02 11:00:00,12862.0
-2017-02-02 12:00:00,12810.0
-2017-02-02 13:00:00,12707.0
-2017-02-02 14:00:00,12594.0
-2017-02-02 15:00:00,12518.0
-2017-02-02 16:00:00,12460.0
-2017-02-02 17:00:00,12520.0
-2017-02-02 18:00:00,12683.0
-2017-02-02 19:00:00,13361.0
-2017-02-02 20:00:00,13427.0
-2017-02-02 21:00:00,13275.0
-2017-02-02 22:00:00,13065.0
-2017-02-02 23:00:00,12585.0
-2017-02-03 00:00:00,11869.0
-2017-02-01 01:00:00,10366.0
-2017-02-01 02:00:00,9909.0
-2017-02-01 03:00:00,9669.0
-2017-02-01 04:00:00,9510.0
-2017-02-01 05:00:00,9514.0
-2017-02-01 06:00:00,9796.0
-2017-02-01 07:00:00,10513.0
-2017-02-01 08:00:00,11592.0
-2017-02-01 09:00:00,12014.0
-2017-02-01 10:00:00,12092.0
-2017-02-01 11:00:00,12140.0
-2017-02-01 12:00:00,12132.0
-2017-02-01 13:00:00,11985.0
-2017-02-01 14:00:00,11971.0
-2017-02-01 15:00:00,12013.0
-2017-02-01 16:00:00,11990.0
-2017-02-01 17:00:00,11920.0
-2017-02-01 18:00:00,12114.0
-2017-02-01 19:00:00,12760.0
-2017-02-01 20:00:00,12894.0
-2017-02-01 21:00:00,12768.0
-2017-02-01 22:00:00,12499.0
-2017-02-01 23:00:00,12087.0
-2017-02-02 00:00:00,11453.0
-2017-01-31 01:00:00,10529.0
-2017-01-31 02:00:00,10109.0
-2017-01-31 03:00:00,9815.0
-2017-01-31 04:00:00,9748.0
-2017-01-31 05:00:00,9735.0
-2017-01-31 06:00:00,9958.0
-2017-01-31 07:00:00,10645.0
-2017-01-31 08:00:00,11719.0
-2017-01-31 09:00:00,12298.0
-2017-01-31 10:00:00,12382.0
-2017-01-31 11:00:00,12440.0
-2017-01-31 12:00:00,12486.0
-2017-01-31 13:00:00,12490.0
-2017-01-31 14:00:00,12389.0
-2017-01-31 15:00:00,12343.0
-2017-01-31 16:00:00,12086.0
-2017-01-31 17:00:00,12130.0
-2017-01-31 18:00:00,12308.0
-2017-01-31 19:00:00,12785.0
-2017-01-31 20:00:00,12735.0
-2017-01-31 21:00:00,12497.0
-2017-01-31 22:00:00,12224.0
-2017-01-31 23:00:00,11691.0
-2017-02-01 00:00:00,10996.0
-2017-01-30 01:00:00,10393.0
-2017-01-30 02:00:00,10145.0
-2017-01-30 03:00:00,10031.0
-2017-01-30 04:00:00,10003.0
-2017-01-30 05:00:00,10079.0
-2017-01-30 06:00:00,10506.0
-2017-01-30 07:00:00,11263.0
-2017-01-30 08:00:00,12420.0
-2017-01-30 09:00:00,12850.0
-2017-01-30 10:00:00,12889.0
-2017-01-30 11:00:00,12728.0
-2017-01-30 12:00:00,12706.0
-2017-01-30 13:00:00,12640.0
-2017-01-30 14:00:00,12617.0
-2017-01-30 15:00:00,12710.0
-2017-01-30 16:00:00,12678.0
-2017-01-30 17:00:00,12601.0
-2017-01-30 18:00:00,12959.0
-2017-01-30 19:00:00,13457.0
-2017-01-30 20:00:00,13267.0
-2017-01-30 21:00:00,12973.0
-2017-01-30 22:00:00,12631.0
-2017-01-30 23:00:00,12072.0
-2017-01-31 00:00:00,11272.0
-2017-01-29 01:00:00,10278.0
-2017-01-29 02:00:00,9955.0
-2017-01-29 03:00:00,9629.0
-2017-01-29 04:00:00,9460.0
-2017-01-29 05:00:00,9395.0
-2017-01-29 06:00:00,9445.0
-2017-01-29 07:00:00,9527.0
-2017-01-29 08:00:00,9863.0
-2017-01-29 09:00:00,10015.0
-2017-01-29 10:00:00,10276.0
-2017-01-29 11:00:00,10511.0
-2017-01-29 12:00:00,10712.0
-2017-01-29 13:00:00,10774.0
-2017-01-29 14:00:00,10850.0
-2017-01-29 15:00:00,10827.0
-2017-01-29 16:00:00,10906.0
-2017-01-29 17:00:00,10998.0
-2017-01-29 18:00:00,11424.0
-2017-01-29 19:00:00,11967.0
-2017-01-29 20:00:00,11977.0
-2017-01-29 21:00:00,11908.0
-2017-01-29 22:00:00,11678.0
-2017-01-29 23:00:00,11328.0
-2017-01-30 00:00:00,10890.0
-2017-01-28 01:00:00,10962.0
-2017-01-28 02:00:00,10510.0
-2017-01-28 03:00:00,10265.0
-2017-01-28 04:00:00,10058.0
-2017-01-28 05:00:00,9984.0
-2017-01-28 06:00:00,10020.0
-2017-01-28 07:00:00,10248.0
-2017-01-28 08:00:00,10637.0
-2017-01-28 09:00:00,10973.0
-2017-01-28 10:00:00,11264.0
-2017-01-28 11:00:00,11501.0
-2017-01-28 12:00:00,11644.0
-2017-01-28 13:00:00,11638.0
-2017-01-28 14:00:00,11580.0
-2017-01-28 15:00:00,11389.0
-2017-01-28 16:00:00,11300.0
-2017-01-28 17:00:00,11239.0
-2017-01-28 18:00:00,11573.0
-2017-01-28 19:00:00,11958.0
-2017-01-28 20:00:00,11932.0
-2017-01-28 21:00:00,11784.0
-2017-01-28 22:00:00,11585.0
-2017-01-28 23:00:00,11238.0
-2017-01-29 00:00:00,10798.0
-2017-01-27 01:00:00,10437.0
-2017-01-27 02:00:00,10076.0
-2017-01-27 03:00:00,9847.0
-2017-01-27 04:00:00,9766.0
-2017-01-27 05:00:00,9790.0
-2017-01-27 06:00:00,10045.0
-2017-01-27 07:00:00,10740.0
-2017-01-27 08:00:00,11812.0
-2017-01-27 09:00:00,12469.0
-2017-01-27 10:00:00,12610.0
-2017-01-27 11:00:00,12777.0
-2017-01-27 12:00:00,12873.0
-2017-01-27 13:00:00,12851.0
-2017-01-27 14:00:00,12773.0
-2017-01-27 15:00:00,12765.0
-2017-01-27 16:00:00,12749.0
-2017-01-27 17:00:00,12752.0
-2017-01-27 18:00:00,12954.0
-2017-01-27 19:00:00,13351.0
-2017-01-27 20:00:00,13160.0
-2017-01-27 21:00:00,12905.0
-2017-01-27 22:00:00,12627.0
-2017-01-27 23:00:00,12218.0
-2017-01-28 00:00:00,11554.0
-2017-01-26 01:00:00,10307.0
-2017-01-26 02:00:00,9869.0
-2017-01-26 03:00:00,9608.0
-2017-01-26 04:00:00,9505.0
-2017-01-26 05:00:00,9457.0
-2017-01-26 06:00:00,9775.0
-2017-01-26 07:00:00,10536.0
-2017-01-26 08:00:00,11625.0
-2017-01-26 09:00:00,12158.0
-2017-01-26 10:00:00,12290.0
-2017-01-26 11:00:00,12343.0
-2017-01-26 12:00:00,12443.0
-2017-01-26 13:00:00,12451.0
-2017-01-26 14:00:00,12388.0
-2017-01-26 15:00:00,12360.0
-2017-01-26 16:00:00,12287.0
-2017-01-26 17:00:00,12290.0
-2017-01-26 18:00:00,12533.0
-2017-01-26 19:00:00,12973.0
-2017-01-26 20:00:00,12870.0
-2017-01-26 21:00:00,12632.0
-2017-01-26 22:00:00,12356.0
-2017-01-26 23:00:00,11821.0
-2017-01-27 00:00:00,11097.0
-2017-01-25 01:00:00,10165.0
-2017-01-25 02:00:00,9755.0
-2017-01-25 03:00:00,9514.0
-2017-01-25 04:00:00,9441.0
-2017-01-25 05:00:00,9414.0
-2017-01-25 06:00:00,9685.0
-2017-01-25 07:00:00,10381.0
-2017-01-25 08:00:00,11397.0
-2017-01-25 09:00:00,11901.0
-2017-01-25 10:00:00,11961.0
-2017-01-25 11:00:00,12003.0
-2017-01-25 12:00:00,12064.0
-2017-01-25 13:00:00,12060.0
-2017-01-25 14:00:00,12116.0
-2017-01-25 15:00:00,12169.0
-2017-01-25 16:00:00,12172.0
-2017-01-25 17:00:00,12175.0
-2017-01-25 18:00:00,12481.0
-2017-01-25 19:00:00,12794.0
-2017-01-25 20:00:00,12624.0
-2017-01-25 21:00:00,12425.0
-2017-01-25 22:00:00,12131.0
-2017-01-25 23:00:00,11592.0
-2017-01-26 00:00:00,10928.0
-2017-01-24 01:00:00,9845.0
-2017-01-24 02:00:00,9427.0
-2017-01-24 03:00:00,9159.0
-2017-01-24 04:00:00,9058.0
-2017-01-24 05:00:00,9076.0
-2017-01-24 06:00:00,9368.0
-2017-01-24 07:00:00,10043.0
-2017-01-24 08:00:00,11089.0
-2017-01-24 09:00:00,11785.0
-2017-01-24 10:00:00,11928.0
-2017-01-24 11:00:00,11994.0
-2017-01-24 12:00:00,12062.0
-2017-01-24 13:00:00,12090.0
-2017-01-24 14:00:00,12009.0
-2017-01-24 15:00:00,11999.0
-2017-01-24 16:00:00,11954.0
-2017-01-24 17:00:00,11905.0
-2017-01-24 18:00:00,12156.0
-2017-01-24 19:00:00,12640.0
-2017-01-24 20:00:00,12532.0
-2017-01-24 21:00:00,12346.0
-2017-01-24 22:00:00,12023.0
-2017-01-24 23:00:00,11532.0
-2017-01-25 00:00:00,10834.0
-2017-01-23 01:00:00,9561.0
-2017-01-23 02:00:00,8914.0
-2017-01-23 03:00:00,8781.0
-2017-01-23 04:00:00,8687.0
-2017-01-23 05:00:00,8771.0
-2017-01-23 06:00:00,9052.0
-2017-01-23 07:00:00,9872.0
-2017-01-23 08:00:00,11056.0
-2017-01-23 09:00:00,11711.0
-2017-01-23 10:00:00,11737.0
-2017-01-23 11:00:00,11866.0
-2017-01-23 12:00:00,11949.0
-2017-01-23 13:00:00,11891.0
-2017-01-23 14:00:00,11870.0
-2017-01-23 15:00:00,11839.0
-2017-01-23 16:00:00,11691.0
-2017-01-23 17:00:00,11608.0
-2017-01-23 18:00:00,11886.0
-2017-01-23 19:00:00,12371.0
-2017-01-23 20:00:00,12239.0
-2017-01-23 21:00:00,12013.0
-2017-01-23 22:00:00,11720.0
-2017-01-23 23:00:00,11213.0
-2017-01-24 00:00:00,10516.0
-2017-01-22 01:00:00,9009.0
-2017-01-22 02:00:00,8673.0
-2017-01-22 03:00:00,8416.0
-2017-01-22 04:00:00,8272.0
-2017-01-22 05:00:00,8218.0
-2017-01-22 06:00:00,8289.0
-2017-01-22 07:00:00,8401.0
-2017-01-22 08:00:00,8720.0
-2017-01-22 09:00:00,8813.0
-2017-01-22 10:00:00,9079.0
-2017-01-22 11:00:00,9300.0
-2017-01-22 12:00:00,9440.0
-2017-01-22 13:00:00,9610.0
-2017-01-22 14:00:00,9668.0
-2017-01-22 15:00:00,9654.0
-2017-01-22 16:00:00,9678.0
-2017-01-22 17:00:00,9744.0
-2017-01-22 18:00:00,10187.0
-2017-01-22 19:00:00,10840.0
-2017-01-22 20:00:00,10890.0
-2017-01-22 21:00:00,10739.0
-2017-01-22 22:00:00,10567.0
-2017-01-22 23:00:00,10172.0
-2017-01-23 00:00:00,9708.0
-2017-01-21 01:00:00,9855.0
-2017-01-21 02:00:00,9405.0
-2017-01-21 03:00:00,9063.0
-2017-01-21 04:00:00,8905.0
-2017-01-21 05:00:00,8765.0
-2017-01-21 06:00:00,8865.0
-2017-01-21 07:00:00,9080.0
-2017-01-21 08:00:00,9496.0
-2017-01-21 09:00:00,9754.0
-2017-01-21 10:00:00,9869.0
-2017-01-21 11:00:00,10007.0
-2017-01-21 12:00:00,10016.0
-2017-01-21 13:00:00,9909.0
-2017-01-21 14:00:00,9812.0
-2017-01-21 15:00:00,9635.0
-2017-01-21 16:00:00,9483.0
-2017-01-21 17:00:00,9414.0
-2017-01-21 18:00:00,9613.0
-2017-01-21 19:00:00,10302.0
-2017-01-21 20:00:00,10347.0
-2017-01-21 21:00:00,10246.0
-2017-01-21 22:00:00,10098.0
-2017-01-21 23:00:00,9858.0
-2017-01-22 00:00:00,9477.0
-2017-01-20 01:00:00,10184.0
-2017-01-20 02:00:00,9768.0
-2017-01-20 03:00:00,9509.0
-2017-01-20 04:00:00,9378.0
-2017-01-20 05:00:00,9351.0
-2017-01-20 06:00:00,9593.0
-2017-01-20 07:00:00,10230.0
-2017-01-20 08:00:00,11236.0
-2017-01-20 09:00:00,11862.0
-2017-01-20 10:00:00,11950.0
-2017-01-20 11:00:00,12040.0
-2017-01-20 12:00:00,12035.0
-2017-01-20 13:00:00,11980.0
-2017-01-20 14:00:00,11909.0
-2017-01-20 15:00:00,11831.0
-2017-01-20 16:00:00,11765.0
-2017-01-20 17:00:00,11739.0
-2017-01-20 18:00:00,12033.0
-2017-01-20 19:00:00,12342.0
-2017-01-20 20:00:00,12133.0
-2017-01-20 21:00:00,11904.0
-2017-01-20 22:00:00,11508.0
-2017-01-20 23:00:00,11168.0
-2017-01-21 00:00:00,10509.0
-2017-01-19 01:00:00,10470.0
-2017-01-19 02:00:00,10030.0
-2017-01-19 03:00:00,9780.0
-2017-01-19 04:00:00,9599.0
-2017-01-19 05:00:00,9562.0
-2017-01-19 06:00:00,9780.0
-2017-01-19 07:00:00,10479.0
-2017-01-19 08:00:00,11525.0
-2017-01-19 09:00:00,12060.0
-2017-01-19 10:00:00,12089.0
-2017-01-19 11:00:00,12105.0
-2017-01-19 12:00:00,12145.0
-2017-01-19 13:00:00,12083.0
-2017-01-19 14:00:00,11966.0
-2017-01-19 15:00:00,11976.0
-2017-01-19 16:00:00,11917.0
-2017-01-19 17:00:00,12011.0
-2017-01-19 18:00:00,12393.0
-2017-01-19 19:00:00,12756.0
-2017-01-19 20:00:00,12559.0
-2017-01-19 21:00:00,12337.0
-2017-01-19 22:00:00,12115.0
-2017-01-19 23:00:00,11580.0
-2017-01-20 00:00:00,10827.0
-2017-01-18 01:00:00,10305.0
-2017-01-18 02:00:00,9865.0
-2017-01-18 03:00:00,9649.0
-2017-01-18 04:00:00,9480.0
-2017-01-18 05:00:00,9498.0
-2017-01-18 06:00:00,9774.0
-2017-01-18 07:00:00,10467.0
-2017-01-18 08:00:00,11521.0
-2017-01-18 09:00:00,12156.0
-2017-01-18 10:00:00,12199.0
-2017-01-18 11:00:00,12243.0
-2017-01-18 12:00:00,12285.0
-2017-01-18 13:00:00,12330.0
-2017-01-18 14:00:00,12339.0
-2017-01-18 15:00:00,12341.0
-2017-01-18 16:00:00,12159.0
-2017-01-18 17:00:00,12045.0
-2017-01-18 18:00:00,12391.0
-2017-01-18 19:00:00,12910.0
-2017-01-18 20:00:00,12731.0
-2017-01-18 21:00:00,12571.0
-2017-01-18 22:00:00,12273.0
-2017-01-18 23:00:00,11775.0
-2017-01-19 00:00:00,11087.0
-2017-01-17 01:00:00,10210.0
-2017-01-17 02:00:00,9802.0
-2017-01-17 03:00:00,9587.0
-2017-01-17 04:00:00,9394.0
-2017-01-17 05:00:00,9281.0
-2017-01-17 06:00:00,9548.0
-2017-01-17 07:00:00,10273.0
-2017-01-17 08:00:00,11376.0
-2017-01-17 09:00:00,12004.0
-2017-01-17 10:00:00,12021.0
-2017-01-17 11:00:00,12110.0
-2017-01-17 12:00:00,12193.0
-2017-01-17 13:00:00,12156.0
-2017-01-17 14:00:00,12161.0
-2017-01-17 15:00:00,12151.0
-2017-01-17 16:00:00,12159.0
-2017-01-17 17:00:00,12094.0
-2017-01-17 18:00:00,12526.0
-2017-01-17 19:00:00,12920.0
-2017-01-17 20:00:00,12684.0
-2017-01-17 21:00:00,12505.0
-2017-01-17 22:00:00,12180.0
-2017-01-17 23:00:00,11697.0
-2017-01-18 00:00:00,10990.0
-2017-01-16 01:00:00,10021.0
-2017-01-16 02:00:00,9678.0
-2017-01-16 03:00:00,9486.0
-2017-01-16 04:00:00,9408.0
-2017-01-16 05:00:00,9421.0
-2017-01-16 06:00:00,9619.0
-2017-01-16 07:00:00,10236.0
-2017-01-16 08:00:00,11083.0
-2017-01-16 09:00:00,11646.0
-2017-01-16 10:00:00,11891.0
-2017-01-16 11:00:00,12113.0
-2017-01-16 12:00:00,12316.0
-2017-01-16 13:00:00,12417.0
-2017-01-16 14:00:00,12399.0
-2017-01-16 15:00:00,12479.0
-2017-01-16 16:00:00,12487.0
-2017-01-16 17:00:00,12417.0
-2017-01-16 18:00:00,12774.0
-2017-01-16 19:00:00,12984.0
-2017-01-16 20:00:00,12738.0
-2017-01-16 21:00:00,12507.0
-2017-01-16 22:00:00,12160.0
-2017-01-16 23:00:00,11572.0
-2017-01-17 00:00:00,10888.0
-2017-01-15 01:00:00,10395.0
-2017-01-15 02:00:00,10046.0
-2017-01-15 03:00:00,9849.0
-2017-01-15 04:00:00,9709.0
-2017-01-15 05:00:00,9670.0
-2017-01-15 06:00:00,9713.0
-2017-01-15 07:00:00,9865.0
-2017-01-15 08:00:00,10168.0
-2017-01-15 09:00:00,10271.0
-2017-01-15 10:00:00,10407.0
-2017-01-15 11:00:00,10672.0
-2017-01-15 12:00:00,10700.0
-2017-01-15 13:00:00,10614.0
-2017-01-15 14:00:00,10520.0
-2017-01-15 15:00:00,10363.0
-2017-01-15 16:00:00,10312.0
-2017-01-15 17:00:00,10404.0
-2017-01-15 18:00:00,10905.0
-2017-01-15 19:00:00,11554.0
-2017-01-15 20:00:00,11526.0
-2017-01-15 21:00:00,11418.0
-2017-01-15 22:00:00,11212.0
-2017-01-15 23:00:00,10930.0
-2017-01-16 00:00:00,10492.0
-2017-01-14 01:00:00,11074.0
-2017-01-14 02:00:00,10558.0
-2017-01-14 03:00:00,10296.0
-2017-01-14 04:00:00,10081.0
-2017-01-14 05:00:00,9986.0
-2017-01-14 06:00:00,10059.0
-2017-01-14 07:00:00,10302.0
-2017-01-14 08:00:00,10748.0
-2017-01-14 09:00:00,11014.0
-2017-01-14 10:00:00,11229.0
-2017-01-14 11:00:00,11439.0
-2017-01-14 12:00:00,11563.0
-2017-01-14 13:00:00,11472.0
-2017-01-14 14:00:00,11304.0
-2017-01-14 15:00:00,11049.0
-2017-01-14 16:00:00,10929.0
-2017-01-14 17:00:00,10851.0
-2017-01-14 18:00:00,11127.0
-2017-01-14 19:00:00,11825.0
-2017-01-14 20:00:00,11791.0
-2017-01-14 21:00:00,11711.0
-2017-01-14 22:00:00,11532.0
-2017-01-14 23:00:00,11328.0
-2017-01-15 00:00:00,10863.0
-2017-01-13 01:00:00,11321.0
-2017-01-13 02:00:00,10937.0
-2017-01-13 03:00:00,10715.0
-2017-01-13 04:00:00,10576.0
-2017-01-13 05:00:00,10571.0
-2017-01-13 06:00:00,10842.0
-2017-01-13 07:00:00,11506.0
-2017-01-13 08:00:00,12537.0
-2017-01-13 09:00:00,13074.0
-2017-01-13 10:00:00,13123.0
-2017-01-13 11:00:00,13179.0
-2017-01-13 12:00:00,13243.0
-2017-01-13 13:00:00,13175.0
-2017-01-13 14:00:00,13118.0
-2017-01-13 15:00:00,13077.0
-2017-01-13 16:00:00,12977.0
-2017-01-13 17:00:00,12916.0
-2017-01-13 18:00:00,13278.0
-2017-01-13 19:00:00,13613.0
-2017-01-13 20:00:00,13402.0
-2017-01-13 21:00:00,13127.0
-2017-01-13 22:00:00,12805.0
-2017-01-13 23:00:00,12350.0
-2017-01-14 00:00:00,11693.0
-2017-01-12 01:00:00,10671.0
-2017-01-12 02:00:00,10285.0
-2017-01-12 03:00:00,10092.0
-2017-01-12 04:00:00,9997.0
-2017-01-12 05:00:00,10025.0
-2017-01-12 06:00:00,10327.0
-2017-01-12 07:00:00,11149.0
-2017-01-12 08:00:00,12266.0
-2017-01-12 09:00:00,12968.0
-2017-01-12 10:00:00,13124.0
-2017-01-12 11:00:00,13185.0
-2017-01-12 12:00:00,13288.0
-2017-01-12 13:00:00,13232.0
-2017-01-12 14:00:00,13219.0
-2017-01-12 15:00:00,13204.0
-2017-01-12 16:00:00,13109.0
-2017-01-12 17:00:00,13001.0
-2017-01-12 18:00:00,13288.0
-2017-01-12 19:00:00,13859.0
-2017-01-12 20:00:00,13726.0
-2017-01-12 21:00:00,13497.0
-2017-01-12 22:00:00,13248.0
-2017-01-12 23:00:00,12767.0
-2017-01-13 00:00:00,12049.0
-2017-01-11 01:00:00,11036.0
-2017-01-11 02:00:00,10570.0
-2017-01-11 03:00:00,10322.0
-2017-01-11 04:00:00,10178.0
-2017-01-11 05:00:00,10128.0
-2017-01-11 06:00:00,10353.0
-2017-01-11 07:00:00,11075.0
-2017-01-11 08:00:00,12157.0
-2017-01-11 09:00:00,12769.0
-2017-01-11 10:00:00,12793.0
-2017-01-11 11:00:00,12735.0
-2017-01-11 12:00:00,12772.0
-2017-01-11 13:00:00,12734.0
-2017-01-11 14:00:00,12620.0
-2017-01-11 15:00:00,12585.0
-2017-01-11 16:00:00,12410.0
-2017-01-11 17:00:00,12399.0
-2017-01-11 18:00:00,12789.0
-2017-01-11 19:00:00,13012.0
-2017-01-11 20:00:00,12946.0
-2017-01-11 21:00:00,12807.0
-2017-01-11 22:00:00,12540.0
-2017-01-11 23:00:00,12002.0
-2017-01-12 00:00:00,11348.0
-2017-01-10 01:00:00,11132.0
-2017-01-10 02:00:00,10601.0
-2017-01-10 03:00:00,10310.0
-2017-01-10 04:00:00,10134.0
-2017-01-10 05:00:00,10113.0
-2017-01-10 06:00:00,10274.0
-2017-01-10 07:00:00,10973.0
-2017-01-10 08:00:00,11939.0
-2017-01-10 09:00:00,12682.0
-2017-01-10 10:00:00,12794.0
-2017-01-10 11:00:00,12836.0
-2017-01-10 12:00:00,12934.0
-2017-01-10 13:00:00,12844.0
-2017-01-10 14:00:00,12770.0
-2017-01-10 15:00:00,12700.0
-2017-01-10 16:00:00,12563.0
-2017-01-10 17:00:00,12483.0
-2017-01-10 18:00:00,12927.0
-2017-01-10 19:00:00,13310.0
-2017-01-10 20:00:00,13204.0
-2017-01-10 21:00:00,13148.0
-2017-01-10 22:00:00,12885.0
-2017-01-10 23:00:00,12445.0
-2017-01-11 00:00:00,11776.0
-2017-01-09 01:00:00,11518.0
-2017-01-09 02:00:00,11116.0
-2017-01-09 03:00:00,10919.0
-2017-01-09 04:00:00,10798.0
-2017-01-09 05:00:00,10807.0
-2017-01-09 06:00:00,10991.0
-2017-01-09 07:00:00,11609.0
-2017-01-09 08:00:00,12668.0
-2017-01-09 09:00:00,13214.0
-2017-01-09 10:00:00,13247.0
-2017-01-09 11:00:00,13248.0
-2017-01-09 12:00:00,13255.0
-2017-01-09 13:00:00,13219.0
-2017-01-09 14:00:00,13205.0
-2017-01-09 15:00:00,13090.0
-2017-01-09 16:00:00,13061.0
-2017-01-09 17:00:00,13144.0
-2017-01-09 18:00:00,13638.0
-2017-01-09 19:00:00,13973.0
-2017-01-09 20:00:00,13804.0
-2017-01-09 21:00:00,13622.0
-2017-01-09 22:00:00,13216.0
-2017-01-09 23:00:00,12602.0
-2017-01-10 00:00:00,11888.0
-2017-01-08 01:00:00,12029.0
-2017-01-08 02:00:00,11636.0
-2017-01-08 03:00:00,11406.0
-2017-01-08 04:00:00,11233.0
-2017-01-08 05:00:00,11190.0
-2017-01-08 06:00:00,11215.0
-2017-01-08 07:00:00,11396.0
-2017-01-08 08:00:00,11683.0
-2017-01-08 09:00:00,11763.0
-2017-01-08 10:00:00,11804.0
-2017-01-08 11:00:00,11879.0
-2017-01-08 12:00:00,11871.0
-2017-01-08 13:00:00,11834.0
-2017-01-08 14:00:00,11777.0
-2017-01-08 15:00:00,11664.0
-2017-01-08 16:00:00,11690.0
-2017-01-08 17:00:00,11829.0
-2017-01-08 18:00:00,12509.0
-2017-01-08 19:00:00,13243.0
-2017-01-08 20:00:00,13335.0
-2017-01-08 21:00:00,13181.0
-2017-01-08 22:00:00,13051.0
-2017-01-08 23:00:00,12651.0
-2017-01-09 00:00:00,12044.0
-2017-01-07 01:00:00,12667.0
-2017-01-07 02:00:00,12204.0
-2017-01-07 03:00:00,11951.0
-2017-01-07 04:00:00,11724.0
-2017-01-07 05:00:00,11679.0
-2017-01-07 06:00:00,11716.0
-2017-01-07 07:00:00,12017.0
-2017-01-07 08:00:00,12348.0
-2017-01-07 09:00:00,12573.0
-2017-01-07 10:00:00,12664.0
-2017-01-07 11:00:00,12742.0
-2017-01-07 12:00:00,12755.0
-2017-01-07 13:00:00,12618.0
-2017-01-07 14:00:00,12501.0
-2017-01-07 15:00:00,12304.0
-2017-01-07 16:00:00,12147.0
-2017-01-07 17:00:00,12100.0
-2017-01-07 18:00:00,12615.0
-2017-01-07 19:00:00,13377.0
-2017-01-07 20:00:00,13458.0
-2017-01-07 21:00:00,13358.0
-2017-01-07 22:00:00,13187.0
-2017-01-07 23:00:00,12970.0
-2017-01-08 00:00:00,12551.0
-2017-01-06 01:00:00,12485.0
-2017-01-06 02:00:00,12072.0
-2017-01-06 03:00:00,11820.0
-2017-01-06 04:00:00,11666.0
-2017-01-06 05:00:00,11646.0
-2017-01-06 06:00:00,11903.0
-2017-01-06 07:00:00,12518.0
-2017-01-06 08:00:00,13386.0
-2017-01-06 09:00:00,13946.0
-2017-01-06 10:00:00,13981.0
-2017-01-06 11:00:00,13997.0
-2017-01-06 12:00:00,14022.0
-2017-01-06 13:00:00,13967.0
-2017-01-06 14:00:00,13894.0
-2017-01-06 15:00:00,13851.0
-2017-01-06 16:00:00,13729.0
-2017-01-06 17:00:00,13643.0
-2017-01-06 18:00:00,14064.0
-2017-01-06 19:00:00,14730.0
-2017-01-06 20:00:00,14675.0
-2017-01-06 21:00:00,14490.0
-2017-01-06 22:00:00,14224.0
-2017-01-06 23:00:00,13866.0
-2017-01-07 00:00:00,13231.0
-2017-01-05 01:00:00,12018.0
-2017-01-05 02:00:00,11622.0
-2017-01-05 03:00:00,11363.0
-2017-01-05 04:00:00,11281.0
-2017-01-05 05:00:00,11264.0
-2017-01-05 06:00:00,11527.0
-2017-01-05 07:00:00,12109.0
-2017-01-05 08:00:00,12983.0
-2017-01-05 09:00:00,13550.0
-2017-01-05 10:00:00,13682.0
-2017-01-05 11:00:00,13650.0
-2017-01-05 12:00:00,13683.0
-2017-01-05 13:00:00,13707.0
-2017-01-05 14:00:00,13777.0
-2017-01-05 15:00:00,13772.0
-2017-01-05 16:00:00,13636.0
-2017-01-05 17:00:00,13597.0
-2017-01-05 18:00:00,14110.0
-2017-01-05 19:00:00,14681.0
-2017-01-05 20:00:00,14580.0
-2017-01-05 21:00:00,14455.0
-2017-01-05 22:00:00,14209.0
-2017-01-05 23:00:00,13787.0
-2017-01-06 00:00:00,13111.0
-2017-01-04 01:00:00,11005.0
-2017-01-04 02:00:00,10672.0
-2017-01-04 03:00:00,10492.0
-2017-01-04 04:00:00,10502.0
-2017-01-04 05:00:00,10568.0
-2017-01-04 06:00:00,10854.0
-2017-01-04 07:00:00,11517.0
-2017-01-04 08:00:00,12547.0
-2017-01-04 09:00:00,13031.0
-2017-01-04 10:00:00,13065.0
-2017-01-04 11:00:00,13163.0
-2017-01-04 12:00:00,13207.0
-2017-01-04 13:00:00,13161.0
-2017-01-04 14:00:00,13105.0
-2017-01-04 15:00:00,13046.0
-2017-01-04 16:00:00,12954.0
-2017-01-04 17:00:00,12966.0
-2017-01-04 18:00:00,13631.0
-2017-01-04 19:00:00,14300.0
-2017-01-04 20:00:00,14197.0
-2017-01-04 21:00:00,14028.0
-2017-01-04 22:00:00,13801.0
-2017-01-04 23:00:00,13330.0
-2017-01-05 00:00:00,12635.0
-2017-01-03 01:00:00,9519.0
-2017-01-03 02:00:00,9133.0
-2017-01-03 03:00:00,8918.0
-2017-01-03 04:00:00,8810.0
-2017-01-03 05:00:00,8832.0
-2017-01-03 06:00:00,9080.0
-2017-01-03 07:00:00,9796.0
-2017-01-03 08:00:00,10746.0
-2017-01-03 09:00:00,11421.0
-2017-01-03 10:00:00,11591.0
-2017-01-03 11:00:00,11744.0
-2017-01-03 12:00:00,11957.0
-2017-01-03 13:00:00,12074.0
-2017-01-03 14:00:00,12203.0
-2017-01-03 15:00:00,12206.0
-2017-01-03 16:00:00,12182.0
-2017-01-03 17:00:00,12143.0
-2017-01-03 18:00:00,12640.0
-2017-01-03 19:00:00,13032.0
-2017-01-03 20:00:00,12830.0
-2017-01-03 21:00:00,12672.0
-2017-01-03 22:00:00,12413.0
-2017-01-03 23:00:00,12071.0
-2017-01-04 00:00:00,11484.0
-2017-01-02 01:00:00,9678.0
-2017-01-02 02:00:00,9296.0
-2017-01-02 03:00:00,9076.0
-2017-01-02 04:00:00,8995.0
-2017-01-02 05:00:00,8960.0
-2017-01-02 06:00:00,9119.0
-2017-01-02 07:00:00,9399.0
-2017-01-02 08:00:00,9747.0
-2017-01-02 09:00:00,9866.0
-2017-01-02 10:00:00,9978.0
-2017-01-02 11:00:00,10222.0
-2017-01-02 12:00:00,10367.0
-2017-01-02 13:00:00,10458.0
-2017-01-02 14:00:00,10503.0
-2017-01-02 15:00:00,10629.0
-2017-01-02 16:00:00,10674.0
-2017-01-02 17:00:00,10878.0
-2017-01-02 18:00:00,11381.0
-2017-01-02 19:00:00,11686.0
-2017-01-02 20:00:00,11508.0
-2017-01-02 21:00:00,11355.0
-2017-01-02 22:00:00,11070.0
-2017-01-02 23:00:00,10666.0
-2017-01-03 00:00:00,10106.0
-2017-01-01 01:00:00,10197.0
-2017-01-01 02:00:00,9893.0
-2017-01-01 03:00:00,9654.0
-2017-01-01 04:00:00,9437.0
-2017-01-01 05:00:00,9370.0
-2017-01-01 06:00:00,9322.0
-2017-01-01 07:00:00,9459.0
-2017-01-01 08:00:00,9602.0
-2017-01-01 09:00:00,9587.0
-2017-01-01 10:00:00,9530.0
-2017-01-01 11:00:00,9513.0
-2017-01-01 12:00:00,9477.0
-2017-01-01 13:00:00,9511.0
-2017-01-01 14:00:00,9459.0
-2017-01-01 15:00:00,9367.0
-2017-01-01 16:00:00,9328.0
-2017-01-01 17:00:00,9428.0
-2017-01-01 18:00:00,10134.0
-2017-01-01 19:00:00,10851.0
-2017-01-01 20:00:00,10882.0
-2017-01-01 21:00:00,10831.0
-2017-01-01 22:00:00,10691.0
-2017-01-01 23:00:00,10484.0
-2017-01-02 00:00:00,10114.0
-2018-08-02 01:00:00,11916.0
-2018-08-02 02:00:00,11095.0
-2018-08-02 03:00:00,10530.0
-2018-08-02 04:00:00,10165.0
-2018-08-02 05:00:00,9931.0
-2018-08-02 06:00:00,9996.0
-2018-08-02 07:00:00,10482.0
-2018-08-02 08:00:00,11200.0
-2018-08-02 09:00:00,12179.0
-2018-08-02 10:00:00,13042.0
-2018-08-02 11:00:00,13828.0
-2018-08-02 12:00:00,14790.0
-2018-08-02 13:00:00,15527.0
-2018-08-02 14:00:00,16074.0
-2018-08-02 15:00:00,16584.0
-2018-08-02 16:00:00,16869.0
-2018-08-02 17:00:00,17015.0
-2018-08-02 18:00:00,17068.0
-2018-08-02 19:00:00,16897.0
-2018-08-02 20:00:00,16437.0
-2018-08-02 21:00:00,15590.0
-2018-08-02 22:00:00,15086.0
-2018-08-02 23:00:00,14448.0
-2018-08-03 00:00:00,13335.0
-2018-08-01 01:00:00,10975.0
-2018-08-01 02:00:00,10233.0
-2018-08-01 03:00:00,9734.0
-2018-08-01 04:00:00,9374.0
-2018-08-01 05:00:00,9156.0
-2018-08-01 06:00:00,9270.0
-2018-08-01 07:00:00,9753.0
-2018-08-01 08:00:00,10466.0
-2018-08-01 09:00:00,11424.0
-2018-08-01 10:00:00,12294.0
-2018-08-01 11:00:00,13025.0
-2018-08-01 12:00:00,13814.0
-2018-08-01 13:00:00,14516.0
-2018-08-01 14:00:00,15203.0
-2018-08-01 15:00:00,15881.0
-2018-08-01 16:00:00,16123.0
-2018-08-01 17:00:00,15766.0
-2018-08-01 18:00:00,15574.0
-2018-08-01 19:00:00,15569.0
-2018-08-01 20:00:00,15122.0
-2018-08-01 21:00:00,14449.0
-2018-08-01 22:00:00,14246.0
-2018-08-01 23:00:00,13778.0
-2018-08-02 00:00:00,12892.0
-2018-07-31 01:00:00,11206.0
-2018-07-31 02:00:00,10442.0
-2018-07-31 03:00:00,9918.0
-2018-07-31 04:00:00,9548.0
-2018-07-31 05:00:00,9391.0
-2018-07-31 06:00:00,9511.0
-2018-07-31 07:00:00,10119.0
-2018-07-31 08:00:00,10896.0
-2018-07-31 09:00:00,11737.0
-2018-07-31 10:00:00,12272.0
-2018-07-31 11:00:00,12716.0
-2018-07-31 12:00:00,13366.0
-2018-07-31 13:00:00,13826.0
-2018-07-31 14:00:00,14103.0
-2018-07-31 15:00:00,14435.0
-2018-07-31 16:00:00,14484.0
-2018-07-31 17:00:00,14501.0
-2018-07-31 18:00:00,14242.0
-2018-07-31 19:00:00,13921.0
-2018-07-31 20:00:00,13532.0
-2018-07-31 21:00:00,13300.0
-2018-07-31 22:00:00,13346.0
-2018-07-31 23:00:00,12898.0
-2018-08-01 00:00:00,11945.0
-2018-07-30 01:00:00,10223.0
-2018-07-30 02:00:00,9632.0
-2018-07-30 03:00:00,9140.0
-2018-07-30 04:00:00,8872.0
-2018-07-30 05:00:00,8700.0
-2018-07-30 06:00:00,8921.0
-2018-07-30 07:00:00,9472.0
-2018-07-30 08:00:00,10201.0
-2018-07-30 09:00:00,11180.0
-2018-07-30 10:00:00,12085.0
-2018-07-30 11:00:00,12792.0
-2018-07-30 12:00:00,13417.0
-2018-07-30 13:00:00,13960.0
-2018-07-30 14:00:00,14386.0
-2018-07-30 15:00:00,14900.0
-2018-07-30 16:00:00,15242.0
-2018-07-30 17:00:00,15414.0
-2018-07-30 18:00:00,15532.0
-2018-07-30 19:00:00,15434.0
-2018-07-30 20:00:00,14930.0
-2018-07-30 21:00:00,14168.0
-2018-07-30 22:00:00,13735.0
-2018-07-30 23:00:00,13194.0
-2018-07-31 00:00:00,12223.0
-2018-07-29 01:00:00,10031.0
-2018-07-29 02:00:00,9400.0
-2018-07-29 03:00:00,8950.0
-2018-07-29 04:00:00,8587.0
-2018-07-29 05:00:00,8325.0
-2018-07-29 06:00:00,8255.0
-2018-07-29 07:00:00,8205.0
-2018-07-29 08:00:00,8172.0
-2018-07-29 09:00:00,8629.0
-2018-07-29 10:00:00,9353.0
-2018-07-29 11:00:00,10143.0
-2018-07-29 12:00:00,10853.0
-2018-07-29 13:00:00,11423.0
-2018-07-29 14:00:00,11856.0
-2018-07-29 15:00:00,12252.0
-2018-07-29 16:00:00,12384.0
-2018-07-29 17:00:00,12520.0
-2018-07-29 18:00:00,12455.0
-2018-07-29 19:00:00,12448.0
-2018-07-29 20:00:00,12186.0
-2018-07-29 21:00:00,11845.0
-2018-07-29 22:00:00,11809.0
-2018-07-29 23:00:00,11569.0
-2018-07-30 00:00:00,10989.0
-2018-07-28 01:00:00,10501.0
-2018-07-28 02:00:00,9727.0
-2018-07-28 03:00:00,9251.0
-2018-07-28 04:00:00,8865.0
-2018-07-28 05:00:00,8644.0
-2018-07-28 06:00:00,8606.0
-2018-07-28 07:00:00,8672.0
-2018-07-28 08:00:00,8834.0
-2018-07-28 09:00:00,9375.0
-2018-07-28 10:00:00,10152.0
-2018-07-28 11:00:00,10872.0
-2018-07-28 12:00:00,11418.0
-2018-07-28 13:00:00,11796.0
-2018-07-28 14:00:00,12111.0
-2018-07-28 15:00:00,12382.0
-2018-07-28 16:00:00,12520.0
-2018-07-28 17:00:00,12665.0
-2018-07-28 18:00:00,12546.0
-2018-07-28 19:00:00,12369.0
-2018-07-28 20:00:00,12035.0
-2018-07-28 21:00:00,11714.0
-2018-07-28 22:00:00,11591.0
-2018-07-28 23:00:00,11384.0
-2018-07-29 00:00:00,10728.0
-2018-07-27 01:00:00,11143.0
-2018-07-27 02:00:00,10307.0
-2018-07-27 03:00:00,9719.0
-2018-07-27 04:00:00,9325.0
-2018-07-27 05:00:00,9142.0
-2018-07-27 06:00:00,9167.0
-2018-07-27 07:00:00,9610.0
-2018-07-27 08:00:00,10224.0
-2018-07-27 09:00:00,11121.0
-2018-07-27 10:00:00,11791.0
-2018-07-27 11:00:00,12345.0
-2018-07-27 12:00:00,12845.0
-2018-07-27 13:00:00,13219.0
-2018-07-27 14:00:00,13483.0
-2018-07-27 15:00:00,13674.0
-2018-07-27 16:00:00,13781.0
-2018-07-27 17:00:00,13827.0
-2018-07-27 18:00:00,13799.0
-2018-07-27 19:00:00,13586.0
-2018-07-27 20:00:00,13179.0
-2018-07-27 21:00:00,12672.0
-2018-07-27 22:00:00,12502.0
-2018-07-27 23:00:00,12155.0
-2018-07-28 00:00:00,11383.0
-2018-07-26 01:00:00,13054.0
-2018-07-26 02:00:00,12096.0
-2018-07-26 03:00:00,11432.0
-2018-07-26 04:00:00,10929.0
-2018-07-26 05:00:00,10600.0
-2018-07-26 06:00:00,10645.0
-2018-07-26 07:00:00,11085.0
-2018-07-26 08:00:00,11769.0
-2018-07-26 09:00:00,12686.0
-2018-07-26 10:00:00,13498.0
-2018-07-26 11:00:00,14258.0
-2018-07-26 12:00:00,14902.0
-2018-07-26 13:00:00,15314.0
-2018-07-26 14:00:00,15585.0
-2018-07-26 15:00:00,15810.0
-2018-07-26 16:00:00,15942.0
-2018-07-26 17:00:00,15924.0
-2018-07-26 18:00:00,15715.0
-2018-07-26 19:00:00,15244.0
-2018-07-26 20:00:00,14579.0
-2018-07-26 21:00:00,13945.0
-2018-07-26 22:00:00,13626.0
-2018-07-26 23:00:00,13174.0
-2018-07-27 00:00:00,12206.0
-2018-07-25 01:00:00,12425.0
-2018-07-25 02:00:00,11506.0
-2018-07-25 03:00:00,10763.0
-2018-07-25 04:00:00,10251.0
-2018-07-25 05:00:00,9907.0
-2018-07-25 06:00:00,9939.0
-2018-07-25 07:00:00,10312.0
-2018-07-25 08:00:00,11117.0
-2018-07-25 09:00:00,12191.0
-2018-07-25 10:00:00,13179.0
-2018-07-25 11:00:00,14081.0
-2018-07-25 12:00:00,15008.0
-2018-07-25 13:00:00,15677.0
-2018-07-25 14:00:00,16225.0
-2018-07-25 15:00:00,16943.0
-2018-07-25 16:00:00,17465.0
-2018-07-25 17:00:00,17846.0
-2018-07-25 18:00:00,18050.0
-2018-07-25 19:00:00,17927.0
-2018-07-25 20:00:00,17313.0
-2018-07-25 21:00:00,16532.0
-2018-07-25 22:00:00,15997.0
-2018-07-25 23:00:00,15321.0
-2018-07-26 00:00:00,14185.0
-2018-07-24 01:00:00,11311.0
-2018-07-24 02:00:00,10550.0
-2018-07-24 03:00:00,9981.0
-2018-07-24 04:00:00,9576.0
-2018-07-24 05:00:00,9428.0
-2018-07-24 06:00:00,9538.0
-2018-07-24 07:00:00,10024.0
-2018-07-24 08:00:00,10798.0
-2018-07-24 09:00:00,11869.0
-2018-07-24 10:00:00,12803.0
-2018-07-24 11:00:00,13679.0
-2018-07-24 12:00:00,14676.0
-2018-07-24 13:00:00,15478.0
-2018-07-24 14:00:00,16100.0
-2018-07-24 15:00:00,16671.0
-2018-07-24 16:00:00,17067.0
-2018-07-24 17:00:00,17317.0
-2018-07-24 18:00:00,17371.0
-2018-07-24 19:00:00,17194.0
-2018-07-24 20:00:00,16678.0
-2018-07-24 21:00:00,15973.0
-2018-07-24 22:00:00,15443.0
-2018-07-24 23:00:00,14873.0
-2018-07-25 00:00:00,13701.0
-2018-07-23 01:00:00,10092.0
-2018-07-23 02:00:00,9581.0
-2018-07-23 03:00:00,9196.0
-2018-07-23 04:00:00,8962.0
-2018-07-23 05:00:00,8901.0
-2018-07-23 06:00:00,9085.0
-2018-07-23 07:00:00,9635.0
-2018-07-23 08:00:00,10393.0
-2018-07-23 09:00:00,11480.0
-2018-07-23 10:00:00,12309.0
-2018-07-23 11:00:00,13075.0
-2018-07-23 12:00:00,13802.0
-2018-07-23 13:00:00,14405.0
-2018-07-23 14:00:00,15004.0
-2018-07-23 15:00:00,15405.0
-2018-07-23 16:00:00,15542.0
-2018-07-23 17:00:00,15439.0
-2018-07-23 18:00:00,15217.0
-2018-07-23 19:00:00,14927.0
-2018-07-23 20:00:00,14490.0
-2018-07-23 21:00:00,13991.0
-2018-07-23 22:00:00,13725.0
-2018-07-23 23:00:00,13347.0
-2018-07-24 00:00:00,12381.0
-2018-07-22 01:00:00,10520.0
-2018-07-22 02:00:00,9947.0
-2018-07-22 03:00:00,9501.0
-2018-07-22 04:00:00,9236.0
-2018-07-22 05:00:00,9034.0
-2018-07-22 06:00:00,9028.0
-2018-07-22 07:00:00,9003.0
-2018-07-22 08:00:00,9022.0
-2018-07-22 09:00:00,9283.0
-2018-07-22 10:00:00,9727.0
-2018-07-22 11:00:00,10121.0
-2018-07-22 12:00:00,10485.0
-2018-07-22 13:00:00,10747.0
-2018-07-22 14:00:00,11045.0
-2018-07-22 15:00:00,11193.0
-2018-07-22 16:00:00,11379.0
-2018-07-22 17:00:00,11611.0
-2018-07-22 18:00:00,11776.0
-2018-07-22 19:00:00,11797.0
-2018-07-22 20:00:00,11722.0
-2018-07-22 21:00:00,11513.0
-2018-07-22 22:00:00,11451.0
-2018-07-22 23:00:00,11357.0
-2018-07-23 00:00:00,10824.0
-2018-07-21 01:00:00,11256.0
-2018-07-21 02:00:00,10581.0
-2018-07-21 03:00:00,10058.0
-2018-07-21 04:00:00,9708.0
-2018-07-21 05:00:00,9558.0
-2018-07-21 06:00:00,9504.0
-2018-07-21 07:00:00,9666.0
-2018-07-21 08:00:00,9915.0
-2018-07-21 09:00:00,10364.0
-2018-07-21 10:00:00,10912.0
-2018-07-21 11:00:00,11395.0
-2018-07-21 12:00:00,11717.0
-2018-07-21 13:00:00,12027.0
-2018-07-21 14:00:00,12205.0
-2018-07-21 15:00:00,12395.0
-2018-07-21 16:00:00,12447.0
-2018-07-21 17:00:00,12571.0
-2018-07-21 18:00:00,12589.0
-2018-07-21 19:00:00,12460.0
-2018-07-21 20:00:00,12184.0
-2018-07-21 21:00:00,11836.0
-2018-07-21 22:00:00,11783.0
-2018-07-21 23:00:00,11645.0
-2018-07-22 00:00:00,11107.0
-2018-07-20 01:00:00,12682.0
-2018-07-20 02:00:00,11929.0
-2018-07-20 03:00:00,11327.0
-2018-07-20 04:00:00,10895.0
-2018-07-20 05:00:00,10676.0
-2018-07-20 06:00:00,10784.0
-2018-07-20 07:00:00,11178.0
-2018-07-20 08:00:00,11930.0
-2018-07-20 09:00:00,13035.0
-2018-07-20 10:00:00,13687.0
-2018-07-20 11:00:00,14158.0
-2018-07-20 12:00:00,14361.0
-2018-07-20 13:00:00,14404.0
-2018-07-20 14:00:00,14491.0
-2018-07-20 15:00:00,14456.0
-2018-07-20 16:00:00,14420.0
-2018-07-20 17:00:00,14242.0
-2018-07-20 18:00:00,14080.0
-2018-07-20 19:00:00,13773.0
-2018-07-20 20:00:00,13333.0
-2018-07-20 21:00:00,12964.0
-2018-07-20 22:00:00,12896.0
-2018-07-20 23:00:00,12687.0
-2018-07-21 00:00:00,12004.0
-2018-07-19 01:00:00,11089.0
-2018-07-19 02:00:00,10331.0
-2018-07-19 03:00:00,9791.0
-2018-07-19 04:00:00,9422.0
-2018-07-19 05:00:00,9209.0
-2018-07-19 06:00:00,9287.0
-2018-07-19 07:00:00,9746.0
-2018-07-19 08:00:00,10560.0
-2018-07-19 09:00:00,11705.0
-2018-07-19 10:00:00,12536.0
-2018-07-19 11:00:00,13275.0
-2018-07-19 12:00:00,14133.0
-2018-07-19 13:00:00,14881.0
-2018-07-19 14:00:00,15420.0
-2018-07-19 15:00:00,15988.0
-2018-07-19 16:00:00,16323.0
-2018-07-19 17:00:00,16236.0
-2018-07-19 18:00:00,15929.0
-2018-07-19 19:00:00,15534.0
-2018-07-19 20:00:00,15171.0
-2018-07-19 21:00:00,14879.0
-2018-07-19 22:00:00,14729.0
-2018-07-19 23:00:00,14495.0
-2018-07-20 00:00:00,13645.0
-2018-07-18 01:00:00,11393.0
-2018-07-18 02:00:00,10572.0
-2018-07-18 03:00:00,9976.0
-2018-07-18 04:00:00,9556.0
-2018-07-18 05:00:00,9338.0
-2018-07-18 06:00:00,9380.0
-2018-07-18 07:00:00,9755.0
-2018-07-18 08:00:00,10616.0
-2018-07-18 09:00:00,11699.0
-2018-07-18 10:00:00,12532.0
-2018-07-18 11:00:00,13118.0
-2018-07-18 12:00:00,13684.0
-2018-07-18 13:00:00,14098.0
-2018-07-18 14:00:00,14512.0
-2018-07-18 15:00:00,14891.0
-2018-07-18 16:00:00,15188.0
-2018-07-18 17:00:00,15387.0
-2018-07-18 18:00:00,15486.0
-2018-07-18 19:00:00,15311.0
-2018-07-18 20:00:00,14717.0
-2018-07-18 21:00:00,13832.0
-2018-07-18 22:00:00,13416.0
-2018-07-18 23:00:00,12990.0
-2018-07-19 00:00:00,12111.0
-2018-07-17 01:00:00,13173.0
-2018-07-17 02:00:00,12050.0
-2018-07-17 03:00:00,11198.0
-2018-07-17 04:00:00,10633.0
-2018-07-17 05:00:00,10296.0
-2018-07-17 06:00:00,10340.0
-2018-07-17 07:00:00,10731.0
-2018-07-17 08:00:00,11660.0
-2018-07-17 09:00:00,12802.0
-2018-07-17 10:00:00,13830.0
-2018-07-17 11:00:00,14677.0
-2018-07-17 12:00:00,15477.0
-2018-07-17 13:00:00,16073.0
-2018-07-17 14:00:00,16426.0
-2018-07-17 15:00:00,16643.0
-2018-07-17 16:00:00,16780.0
-2018-07-17 17:00:00,16879.0
-2018-07-17 18:00:00,16834.0
-2018-07-17 19:00:00,16534.0
-2018-07-17 20:00:00,15873.0
-2018-07-17 21:00:00,14938.0
-2018-07-17 22:00:00,14160.0
-2018-07-17 23:00:00,13569.0
-2018-07-18 00:00:00,12504.0
-2018-07-16 01:00:00,13757.0
-2018-07-16 02:00:00,12869.0
-2018-07-16 03:00:00,12186.0
-2018-07-16 04:00:00,11721.0
-2018-07-16 05:00:00,11532.0
-2018-07-16 06:00:00,11621.0
-2018-07-16 07:00:00,12155.0
-2018-07-16 08:00:00,13133.0
-2018-07-16 09:00:00,14504.0
-2018-07-16 10:00:00,15832.0
-2018-07-16 11:00:00,16988.0
-2018-07-16 12:00:00,17964.0
-2018-07-16 13:00:00,18857.0
-2018-07-16 14:00:00,19167.0
-2018-07-16 15:00:00,19266.0
-2018-07-16 16:00:00,19005.0
-2018-07-16 17:00:00,18960.0
-2018-07-16 18:00:00,19032.0
-2018-07-16 19:00:00,18990.0
-2018-07-16 20:00:00,18568.0
-2018-07-16 21:00:00,17710.0
-2018-07-16 22:00:00,16736.0
-2018-07-16 23:00:00,15925.0
-2018-07-17 00:00:00,14540.0
-2018-07-15 01:00:00,12381.0
-2018-07-15 02:00:00,11527.0
-2018-07-15 03:00:00,10870.0
-2018-07-15 04:00:00,10413.0
-2018-07-15 05:00:00,10183.0
-2018-07-15 06:00:00,9966.0
-2018-07-15 07:00:00,9875.0
-2018-07-15 08:00:00,10025.0
-2018-07-15 09:00:00,10940.0
-2018-07-15 10:00:00,12192.0
-2018-07-15 11:00:00,13439.0
-2018-07-15 12:00:00,14594.0
-2018-07-15 13:00:00,15497.0
-2018-07-15 14:00:00,16147.0
-2018-07-15 15:00:00,16558.0
-2018-07-15 16:00:00,16976.0
-2018-07-15 17:00:00,17224.0
-2018-07-15 18:00:00,17320.0
-2018-07-15 19:00:00,17307.0
-2018-07-15 20:00:00,17092.0
-2018-07-15 21:00:00,16663.0
-2018-07-15 22:00:00,16199.0
-2018-07-15 23:00:00,15806.0
-2018-07-16 00:00:00,14879.0
-2018-07-14 01:00:00,14362.0
-2018-07-14 02:00:00,13304.0
-2018-07-14 03:00:00,12420.0
-2018-07-14 04:00:00,11830.0
-2018-07-14 05:00:00,11500.0
-2018-07-14 06:00:00,11260.0
-2018-07-14 07:00:00,11353.0
-2018-07-14 08:00:00,11505.0
-2018-07-14 09:00:00,11851.0
-2018-07-14 10:00:00,12354.0
-2018-07-14 11:00:00,12940.0
-2018-07-14 12:00:00,13414.0
-2018-07-14 13:00:00,13515.0
-2018-07-14 14:00:00,13508.0
-2018-07-14 15:00:00,13642.0
-2018-07-14 16:00:00,13788.0
-2018-07-14 17:00:00,14180.0
-2018-07-14 18:00:00,14653.0
-2018-07-14 19:00:00,14905.0
-2018-07-14 20:00:00,14664.0
-2018-07-14 21:00:00,14315.0
-2018-07-14 22:00:00,14013.0
-2018-07-14 23:00:00,13841.0
-2018-07-15 00:00:00,13186.0
-2018-07-13 01:00:00,13357.0
-2018-07-13 02:00:00,12296.0
-2018-07-13 03:00:00,11618.0
-2018-07-13 04:00:00,11076.0
-2018-07-13 05:00:00,10709.0
-2018-07-13 06:00:00,10699.0
-2018-07-13 07:00:00,11080.0
-2018-07-13 08:00:00,11937.0
-2018-07-13 09:00:00,13237.0
-2018-07-13 10:00:00,14347.0
-2018-07-13 11:00:00,15396.0
-2018-07-13 12:00:00,16430.0
-2018-07-13 13:00:00,17257.0
-2018-07-13 14:00:00,18027.0
-2018-07-13 15:00:00,18756.0
-2018-07-13 16:00:00,19279.0
-2018-07-13 17:00:00,19599.0
-2018-07-13 18:00:00,19773.0
-2018-07-13 19:00:00,19682.0
-2018-07-13 20:00:00,19208.0
-2018-07-13 21:00:00,18332.0
-2018-07-13 22:00:00,17525.0
-2018-07-13 23:00:00,16735.0
-2018-07-14 00:00:00,15608.0
-2018-07-12 01:00:00,12715.0
-2018-07-12 02:00:00,11750.0
-2018-07-12 03:00:00,11046.0
-2018-07-12 04:00:00,10513.0
-2018-07-12 05:00:00,10231.0
-2018-07-12 06:00:00,10299.0
-2018-07-12 07:00:00,10760.0
-2018-07-12 08:00:00,11643.0
-2018-07-12 09:00:00,12805.0
-2018-07-12 10:00:00,13811.0
-2018-07-12 11:00:00,14568.0
-2018-07-12 12:00:00,15421.0
-2018-07-12 13:00:00,16236.0
-2018-07-12 14:00:00,16855.0
-2018-07-12 15:00:00,17366.0
-2018-07-12 16:00:00,17581.0
-2018-07-12 17:00:00,17713.0
-2018-07-12 18:00:00,17751.0
-2018-07-12 19:00:00,17622.0
-2018-07-12 20:00:00,17173.0
-2018-07-12 21:00:00,16594.0
-2018-07-12 22:00:00,16067.0
-2018-07-12 23:00:00,15557.0
-2018-07-13 00:00:00,14475.0
-2018-07-11 01:00:00,12391.0
-2018-07-11 02:00:00,11420.0
-2018-07-11 03:00:00,10721.0
-2018-07-11 04:00:00,10242.0
-2018-07-11 05:00:00,9981.0
-2018-07-11 06:00:00,10003.0
-2018-07-11 07:00:00,10420.0
-2018-07-11 08:00:00,11328.0
-2018-07-11 09:00:00,12551.0
-2018-07-11 10:00:00,13566.0
-2018-07-11 11:00:00,14482.0
-2018-07-11 12:00:00,15374.0
-2018-07-11 13:00:00,16066.0
-2018-07-11 14:00:00,16712.0
-2018-07-11 15:00:00,17347.0
-2018-07-11 16:00:00,17782.0
-2018-07-11 17:00:00,18084.0
-2018-07-11 18:00:00,18135.0
-2018-07-11 19:00:00,17944.0
-2018-07-11 20:00:00,17327.0
-2018-07-11 21:00:00,16450.0
-2018-07-11 22:00:00,15621.0
-2018-07-11 23:00:00,15012.0
-2018-07-12 00:00:00,13895.0
-2018-07-10 01:00:00,14232.0
-2018-07-10 02:00:00,13214.0
-2018-07-10 03:00:00,12485.0
-2018-07-10 04:00:00,11964.0
-2018-07-10 05:00:00,11681.0
-2018-07-10 06:00:00,11702.0
-2018-07-10 07:00:00,12098.0
-2018-07-10 08:00:00,13077.0
-2018-07-10 09:00:00,14477.0
-2018-07-10 10:00:00,15589.0
-2018-07-10 11:00:00,16496.0
-2018-07-10 12:00:00,17310.0
-2018-07-10 13:00:00,17793.0
-2018-07-10 14:00:00,18121.0
-2018-07-10 15:00:00,18420.0
-2018-07-10 16:00:00,18515.0
-2018-07-10 17:00:00,18514.0
-2018-07-10 18:00:00,18318.0
-2018-07-10 19:00:00,17850.0
-2018-07-10 20:00:00,16923.0
-2018-07-10 21:00:00,15969.0
-2018-07-10 22:00:00,15217.0
-2018-07-10 23:00:00,14704.0
-2018-07-11 00:00:00,13596.0
-2018-07-09 01:00:00,11660.0
-2018-07-09 02:00:00,10817.0
-2018-07-09 03:00:00,10213.0
-2018-07-09 04:00:00,9759.0
-2018-07-09 05:00:00,9588.0
-2018-07-09 06:00:00,9715.0
-2018-07-09 07:00:00,10140.0
-2018-07-09 08:00:00,11073.0
-2018-07-09 09:00:00,12453.0
-2018-07-09 10:00:00,13593.0
-2018-07-09 11:00:00,14683.0
-2018-07-09 12:00:00,15689.0
-2018-07-09 13:00:00,16510.0
-2018-07-09 14:00:00,17248.0
-2018-07-09 15:00:00,17951.0
-2018-07-09 16:00:00,18528.0
-2018-07-09 17:00:00,19037.0
-2018-07-09 18:00:00,19325.0
-2018-07-09 19:00:00,19096.0
-2018-07-09 20:00:00,18642.0
-2018-07-09 21:00:00,18103.0
-2018-07-09 22:00:00,17393.0
-2018-07-09 23:00:00,16777.0
-2018-07-10 00:00:00,15533.0
-2018-07-08 01:00:00,10198.0
-2018-07-08 02:00:00,9532.0
-2018-07-08 03:00:00,9072.0
-2018-07-08 04:00:00,8691.0
-2018-07-08 05:00:00,8466.0
-2018-07-08 06:00:00,8339.0
-2018-07-08 07:00:00,8228.0
-2018-07-08 08:00:00,8334.0
-2018-07-08 09:00:00,8914.0
-2018-07-08 10:00:00,9667.0
-2018-07-08 11:00:00,10550.0
-2018-07-08 12:00:00,11297.0
-2018-07-08 13:00:00,12028.0
-2018-07-08 14:00:00,12625.0
-2018-07-08 15:00:00,13232.0
-2018-07-08 16:00:00,13855.0
-2018-07-08 17:00:00,14422.0
-2018-07-08 18:00:00,14933.0
-2018-07-08 19:00:00,15116.0
-2018-07-08 20:00:00,14988.0
-2018-07-08 21:00:00,14546.0
-2018-07-08 22:00:00,13953.0
-2018-07-08 23:00:00,13635.0
-2018-07-09 00:00:00,12699.0
-2018-07-07 01:00:00,10248.0
-2018-07-07 02:00:00,9600.0
-2018-07-07 03:00:00,9144.0
-2018-07-07 04:00:00,8806.0
-2018-07-07 05:00:00,8626.0
-2018-07-07 06:00:00,8599.0
-2018-07-07 07:00:00,8517.0
-2018-07-07 08:00:00,8858.0
-2018-07-07 09:00:00,9497.0
-2018-07-07 10:00:00,10171.0
-2018-07-07 11:00:00,10731.0
-2018-07-07 12:00:00,11283.0
-2018-07-07 13:00:00,11668.0
-2018-07-07 14:00:00,12011.0
-2018-07-07 15:00:00,12201.0
-2018-07-07 16:00:00,12601.0
-2018-07-07 17:00:00,12934.0
-2018-07-07 18:00:00,13277.0
-2018-07-07 19:00:00,13302.0
-2018-07-07 20:00:00,13043.0
-2018-07-07 21:00:00,12489.0
-2018-07-07 22:00:00,11924.0
-2018-07-07 23:00:00,11603.0
-2018-07-08 00:00:00,10929.0
-2018-07-06 01:00:00,13178.0
-2018-07-06 02:00:00,12136.0
-2018-07-06 03:00:00,11303.0
-2018-07-06 04:00:00,10677.0
-2018-07-06 05:00:00,10317.0
-2018-07-06 06:00:00,10275.0
-2018-07-06 07:00:00,10455.0
-2018-07-06 08:00:00,11248.0
-2018-07-06 09:00:00,12290.0
-2018-07-06 10:00:00,13028.0
-2018-07-06 11:00:00,13513.0
-2018-07-06 12:00:00,13875.0
-2018-07-06 13:00:00,13973.0
-2018-07-06 14:00:00,14025.0
-2018-07-06 15:00:00,14200.0
-2018-07-06 16:00:00,14286.0
-2018-07-06 17:00:00,14381.0
-2018-07-06 18:00:00,14375.0
-2018-07-06 19:00:00,14183.0
-2018-07-06 20:00:00,13590.0
-2018-07-06 21:00:00,12901.0
-2018-07-06 22:00:00,12191.0
-2018-07-06 23:00:00,11826.0
-2018-07-07 00:00:00,11082.0
-2018-07-05 01:00:00,13451.0
-2018-07-05 02:00:00,12563.0
-2018-07-05 03:00:00,11826.0
-2018-07-05 04:00:00,11305.0
-2018-07-05 05:00:00,11086.0
-2018-07-05 06:00:00,11140.0
-2018-07-05 07:00:00,11533.0
-2018-07-05 08:00:00,12568.0
-2018-07-05 09:00:00,14000.0
-2018-07-05 10:00:00,15428.0
-2018-07-05 11:00:00,16799.0
-2018-07-05 12:00:00,18001.0
-2018-07-05 13:00:00,18945.0
-2018-07-05 14:00:00,19530.0
-2018-07-05 15:00:00,19488.0
-2018-07-05 16:00:00,18228.0
-2018-07-05 17:00:00,17390.0
-2018-07-05 18:00:00,17069.0
-2018-07-05 19:00:00,16812.0
-2018-07-05 20:00:00,16374.0
-2018-07-05 21:00:00,16103.0
-2018-07-05 22:00:00,15679.0
-2018-07-05 23:00:00,15347.0
-2018-07-06 00:00:00,14329.0
-2018-07-04 01:00:00,14123.0
-2018-07-04 02:00:00,13088.0
-2018-07-04 03:00:00,12394.0
-2018-07-04 04:00:00,11815.0
-2018-07-04 05:00:00,11435.0
-2018-07-04 06:00:00,11185.0
-2018-07-04 07:00:00,11026.0
-2018-07-04 08:00:00,11339.0
-2018-07-04 09:00:00,12266.0
-2018-07-04 10:00:00,13470.0
-2018-07-04 11:00:00,14834.0
-2018-07-04 12:00:00,16089.0
-2018-07-04 13:00:00,16913.0
-2018-07-04 14:00:00,17377.0
-2018-07-04 15:00:00,17818.0
-2018-07-04 16:00:00,17984.0
-2018-07-04 17:00:00,18021.0
-2018-07-04 18:00:00,17834.0
-2018-07-04 19:00:00,17700.0
-2018-07-04 20:00:00,17134.0
-2018-07-04 21:00:00,16365.0
-2018-07-04 22:00:00,15949.0
-2018-07-04 23:00:00,15347.0
-2018-07-05 00:00:00,14424.0
-2018-07-03 01:00:00,11743.0
-2018-07-03 02:00:00,10726.0
-2018-07-03 03:00:00,10103.0
-2018-07-03 04:00:00,9653.0
-2018-07-03 05:00:00,9461.0
-2018-07-03 06:00:00,9557.0
-2018-07-03 07:00:00,9977.0
-2018-07-03 08:00:00,10947.0
-2018-07-03 09:00:00,12122.0
-2018-07-03 10:00:00,13286.0
-2018-07-03 11:00:00,14391.0
-2018-07-03 12:00:00,15475.0
-2018-07-03 13:00:00,16418.0
-2018-07-03 14:00:00,17310.0
-2018-07-03 15:00:00,18058.0
-2018-07-03 16:00:00,18492.0
-2018-07-03 17:00:00,18765.0
-2018-07-03 18:00:00,19005.0
-2018-07-03 19:00:00,18939.0
-2018-07-03 20:00:00,18328.0
-2018-07-03 21:00:00,17483.0
-2018-07-03 22:00:00,16798.0
-2018-07-03 23:00:00,16263.0
-2018-07-04 00:00:00,15221.0
-2018-07-02 01:00:00,13134.0
-2018-07-02 02:00:00,12278.0
-2018-07-02 03:00:00,11615.0
-2018-07-02 04:00:00,11131.0
-2018-07-02 05:00:00,10787.0
-2018-07-02 06:00:00,10806.0
-2018-07-02 07:00:00,11065.0
-2018-07-02 08:00:00,11845.0
-2018-07-02 09:00:00,13042.0
-2018-07-02 10:00:00,13947.0
-2018-07-02 11:00:00,14665.0
-2018-07-02 12:00:00,15322.0
-2018-07-02 13:00:00,15786.0
-2018-07-02 14:00:00,16229.0
-2018-07-02 15:00:00,16688.0
-2018-07-02 16:00:00,17072.0
-2018-07-02 17:00:00,17356.0
-2018-07-02 18:00:00,17486.0
-2018-07-02 19:00:00,17413.0
-2018-07-02 20:00:00,16871.0
-2018-07-02 21:00:00,15962.0
-2018-07-02 22:00:00,14964.0
-2018-07-02 23:00:00,14266.0
-2018-07-03 00:00:00,13017.0
-2018-07-01 01:00:00,15466.0
-2018-07-01 02:00:00,14452.0
-2018-07-01 03:00:00,13586.0
-2018-07-01 04:00:00,12906.0
-2018-07-01 05:00:00,12416.0
-2018-07-01 06:00:00,12099.0
-2018-07-01 07:00:00,11849.0
-2018-07-01 08:00:00,11960.0
-2018-07-01 09:00:00,12831.0
-2018-07-01 10:00:00,14181.0
-2018-07-01 11:00:00,15384.0
-2018-07-01 12:00:00,16494.0
-2018-07-01 13:00:00,17474.0
-2018-07-01 14:00:00,18150.0
-2018-07-01 15:00:00,18634.0
-2018-07-01 16:00:00,18932.0
-2018-07-01 17:00:00,18909.0
-2018-07-01 18:00:00,18056.0
-2018-07-01 19:00:00,16710.0
-2018-07-01 20:00:00,15828.0
-2018-07-01 21:00:00,15320.0
-2018-07-01 22:00:00,14968.0
-2018-07-01 23:00:00,14812.0
-2018-07-02 00:00:00,14068.0
-2018-06-30 01:00:00,16412.0
-2018-06-30 02:00:00,15313.0
-2018-06-30 03:00:00,14478.0
-2018-06-30 04:00:00,13758.0
-2018-06-30 05:00:00,13263.0
-2018-06-30 06:00:00,12937.0
-2018-06-30 07:00:00,12778.0
-2018-06-30 08:00:00,13219.0
-2018-06-30 09:00:00,14318.0
-2018-06-30 10:00:00,15662.0
-2018-06-30 11:00:00,17009.0
-2018-06-30 12:00:00,18114.0
-2018-06-30 13:00:00,18832.0
-2018-06-30 14:00:00,19302.0
-2018-06-30 15:00:00,19605.0
-2018-06-30 16:00:00,19821.0
-2018-06-30 17:00:00,19937.0
-2018-06-30 18:00:00,19954.0
-2018-06-30 19:00:00,19790.0
-2018-06-30 20:00:00,19376.0
-2018-06-30 21:00:00,18709.0
-2018-06-30 22:00:00,18086.0
-2018-06-30 23:00:00,17611.0
-2018-07-01 00:00:00,16600.0
-2018-06-29 01:00:00,13028.0
-2018-06-29 02:00:00,11948.0
-2018-06-29 03:00:00,11243.0
-2018-06-29 04:00:00,10764.0
-2018-06-29 05:00:00,10529.0
-2018-06-29 06:00:00,10599.0
-2018-06-29 07:00:00,11035.0
-2018-06-29 08:00:00,12137.0
-2018-06-29 09:00:00,13605.0
-2018-06-29 10:00:00,14950.0
-2018-06-29 11:00:00,16120.0
-2018-06-29 12:00:00,17214.0
-2018-06-29 13:00:00,18179.0
-2018-06-29 14:00:00,18953.0
-2018-06-29 15:00:00,19756.0
-2018-06-29 16:00:00,20375.0
-2018-06-29 17:00:00,20745.0
-2018-06-29 18:00:00,20996.0
-2018-06-29 19:00:00,20915.0
-2018-06-29 20:00:00,20530.0
-2018-06-29 21:00:00,19965.0
-2018-06-29 22:00:00,19389.0
-2018-06-29 23:00:00,18848.0
-2018-06-30 00:00:00,17633.0
-2018-06-28 01:00:00,11297.0
-2018-06-28 02:00:00,10486.0
-2018-06-28 03:00:00,9927.0
-2018-06-28 04:00:00,9542.0
-2018-06-28 05:00:00,9374.0
-2018-06-28 06:00:00,9474.0
-2018-06-28 07:00:00,9888.0
-2018-06-28 08:00:00,10956.0
-2018-06-28 09:00:00,12254.0
-2018-06-28 10:00:00,13390.0
-2018-06-28 11:00:00,14381.0
-2018-06-28 12:00:00,15291.0
-2018-06-28 13:00:00,16059.0
-2018-06-28 14:00:00,16715.0
-2018-06-28 15:00:00,17322.0
-2018-06-28 16:00:00,17736.0
-2018-06-28 17:00:00,17998.0
-2018-06-28 18:00:00,18075.0
-2018-06-28 19:00:00,17677.0
-2018-06-28 20:00:00,16999.0
-2018-06-28 21:00:00,16355.0
-2018-06-28 22:00:00,15863.0
-2018-06-28 23:00:00,15400.0
-2018-06-29 00:00:00,14306.0
-2018-06-27 01:00:00,11521.0
-2018-06-27 02:00:00,10748.0
-2018-06-27 03:00:00,10212.0
-2018-06-27 04:00:00,9850.0
-2018-06-27 05:00:00,9697.0
-2018-06-27 06:00:00,9790.0
-2018-06-27 07:00:00,10334.0
-2018-06-27 08:00:00,11146.0
-2018-06-27 09:00:00,11983.0
-2018-06-27 10:00:00,12537.0
-2018-06-27 11:00:00,12968.0
-2018-06-27 12:00:00,13463.0
-2018-06-27 13:00:00,13743.0
-2018-06-27 14:00:00,14092.0
-2018-06-27 15:00:00,14671.0
-2018-06-27 16:00:00,15095.0
-2018-06-27 17:00:00,15163.0
-2018-06-27 18:00:00,15069.0
-2018-06-27 19:00:00,15012.0
-2018-06-27 20:00:00,14652.0
-2018-06-27 21:00:00,14115.0
-2018-06-27 22:00:00,13663.0
-2018-06-27 23:00:00,13308.0
-2018-06-28 00:00:00,12389.0
-2018-06-26 01:00:00,11152.0
-2018-06-26 02:00:00,10402.0
-2018-06-26 03:00:00,9867.0
-2018-06-26 04:00:00,9491.0
-2018-06-26 05:00:00,9269.0
-2018-06-26 06:00:00,9378.0
-2018-06-26 07:00:00,9769.0
-2018-06-26 08:00:00,10528.0
-2018-06-26 09:00:00,11358.0
-2018-06-26 10:00:00,11865.0
-2018-06-26 11:00:00,12237.0
-2018-06-26 12:00:00,12833.0
-2018-06-26 13:00:00,13211.0
-2018-06-26 14:00:00,13702.0
-2018-06-26 15:00:00,14279.0
-2018-06-26 16:00:00,15081.0
-2018-06-26 17:00:00,15453.0
-2018-06-26 18:00:00,15369.0
-2018-06-26 19:00:00,15177.0
-2018-06-26 20:00:00,14546.0
-2018-06-26 21:00:00,14039.0
-2018-06-26 22:00:00,13750.0
-2018-06-26 23:00:00,13373.0
-2018-06-27 00:00:00,12504.0
-2018-06-25 01:00:00,9864.0
-2018-06-25 02:00:00,9280.0
-2018-06-25 03:00:00,8841.0
-2018-06-25 04:00:00,8543.0
-2018-06-25 05:00:00,8460.0
-2018-06-25 06:00:00,8664.0
-2018-06-25 07:00:00,9136.0
-2018-06-25 08:00:00,10081.0
-2018-06-25 09:00:00,11174.0
-2018-06-25 10:00:00,11918.0
-2018-06-25 11:00:00,12556.0
-2018-06-25 12:00:00,13146.0
-2018-06-25 13:00:00,13595.0
-2018-06-25 14:00:00,13949.0
-2018-06-25 15:00:00,14293.0
-2018-06-25 16:00:00,14543.0
-2018-06-25 17:00:00,14746.0
-2018-06-25 18:00:00,14845.0
-2018-06-25 19:00:00,14688.0
-2018-06-25 20:00:00,14147.0
-2018-06-25 21:00:00,13468.0
-2018-06-25 22:00:00,13192.0
-2018-06-25 23:00:00,12935.0
-2018-06-26 00:00:00,12110.0
-2018-06-24 01:00:00,9944.0
-2018-06-24 02:00:00,9379.0
-2018-06-24 03:00:00,8941.0
-2018-06-24 04:00:00,8592.0
-2018-06-24 05:00:00,8363.0
-2018-06-24 06:00:00,8259.0
-2018-06-24 07:00:00,8108.0
-2018-06-24 08:00:00,8275.0
-2018-06-24 09:00:00,8900.0
-2018-06-24 10:00:00,9743.0
-2018-06-24 11:00:00,10592.0
-2018-06-24 12:00:00,11376.0
-2018-06-24 13:00:00,12005.0
-2018-06-24 14:00:00,12548.0
-2018-06-24 15:00:00,12928.0
-2018-06-24 16:00:00,13256.0
-2018-06-24 17:00:00,13346.0
-2018-06-24 18:00:00,13215.0
-2018-06-24 19:00:00,13103.0
-2018-06-24 20:00:00,12696.0
-2018-06-24 21:00:00,12002.0
-2018-06-24 22:00:00,11547.0
-2018-06-24 23:00:00,11301.0
-2018-06-25 00:00:00,10623.0
-2018-06-23 01:00:00,9391.0
-2018-06-23 02:00:00,8899.0
-2018-06-23 03:00:00,8572.0
-2018-06-23 04:00:00,8332.0
-2018-06-23 05:00:00,8210.0
-2018-06-23 06:00:00,8207.0
-2018-06-23 07:00:00,8354.0
-2018-06-23 08:00:00,8577.0
-2018-06-23 09:00:00,9054.0
-2018-06-23 10:00:00,9648.0
-2018-06-23 11:00:00,10159.0
-2018-06-23 12:00:00,10541.0
-2018-06-23 13:00:00,10928.0
-2018-06-23 14:00:00,11238.0
-2018-06-23 15:00:00,11486.0
-2018-06-23 16:00:00,11706.0
-2018-06-23 17:00:00,11846.0
-2018-06-23 18:00:00,11959.0
-2018-06-23 19:00:00,11929.0
-2018-06-23 20:00:00,11610.0
-2018-06-23 21:00:00,11244.0
-2018-06-23 22:00:00,11221.0
-2018-06-23 23:00:00,11131.0
-2018-06-24 00:00:00,10572.0
-2018-06-22 01:00:00,9914.0
-2018-06-22 02:00:00,9378.0
-2018-06-22 03:00:00,9012.0
-2018-06-22 04:00:00,8822.0
-2018-06-22 05:00:00,8687.0
-2018-06-22 06:00:00,8843.0
-2018-06-22 07:00:00,9253.0
-2018-06-22 08:00:00,10029.0
-2018-06-22 09:00:00,10700.0
-2018-06-22 10:00:00,11146.0
-2018-06-22 11:00:00,11371.0
-2018-06-22 12:00:00,11508.0
-2018-06-22 13:00:00,11529.0
-2018-06-22 14:00:00,11472.0
-2018-06-22 15:00:00,11485.0
-2018-06-22 16:00:00,11385.0
-2018-06-22 17:00:00,11195.0
-2018-06-22 18:00:00,11037.0
-2018-06-22 19:00:00,10861.0
-2018-06-22 20:00:00,10663.0
-2018-06-22 21:00:00,10541.0
-2018-06-22 22:00:00,10631.0
-2018-06-22 23:00:00,10543.0
-2018-06-23 00:00:00,9989.0
-2018-06-21 01:00:00,10648.0
-2018-06-21 02:00:00,10016.0
-2018-06-21 03:00:00,9573.0
-2018-06-21 04:00:00,9231.0
-2018-06-21 05:00:00,9143.0
-2018-06-21 06:00:00,9289.0
-2018-06-21 07:00:00,9818.0
-2018-06-21 08:00:00,10657.0
-2018-06-21 09:00:00,11481.0
-2018-06-21 10:00:00,11963.0
-2018-06-21 11:00:00,12251.0
-2018-06-21 12:00:00,12485.0
-2018-06-21 13:00:00,12497.0
-2018-06-21 14:00:00,12455.0
-2018-06-21 15:00:00,12426.0
-2018-06-21 16:00:00,12266.0
-2018-06-21 17:00:00,12064.0
-2018-06-21 18:00:00,11920.0
-2018-06-21 19:00:00,11782.0
-2018-06-21 20:00:00,11615.0
-2018-06-21 21:00:00,11528.0
-2018-06-21 22:00:00,11505.0
-2018-06-21 23:00:00,11258.0
-2018-06-22 00:00:00,10622.0
-2018-06-20 01:00:00,11069.0
-2018-06-20 02:00:00,10334.0
-2018-06-20 03:00:00,9832.0
-2018-06-20 04:00:00,9510.0
-2018-06-20 05:00:00,9381.0
-2018-06-20 06:00:00,9469.0
-2018-06-20 07:00:00,9949.0
-2018-06-20 08:00:00,10810.0
-2018-06-20 09:00:00,11640.0
-2018-06-20 10:00:00,12103.0
-2018-06-20 11:00:00,12611.0
-2018-06-20 12:00:00,13265.0
-2018-06-20 13:00:00,13722.0
-2018-06-20 14:00:00,14063.0
-2018-06-20 15:00:00,14514.0
-2018-06-20 16:00:00,14786.0
-2018-06-20 17:00:00,14741.0
-2018-06-20 18:00:00,14671.0
-2018-06-20 19:00:00,14418.0
-2018-06-20 20:00:00,13817.0
-2018-06-20 21:00:00,13058.0
-2018-06-20 22:00:00,12712.0
-2018-06-20 23:00:00,12310.0
-2018-06-21 00:00:00,11492.0
-2018-06-19 01:00:00,13394.0
-2018-06-19 02:00:00,12273.0
-2018-06-19 03:00:00,11426.0
-2018-06-19 04:00:00,10841.0
-2018-06-19 05:00:00,10524.0
-2018-06-19 06:00:00,10509.0
-2018-06-19 07:00:00,10855.0
-2018-06-19 08:00:00,11523.0
-2018-06-19 09:00:00,12339.0
-2018-06-19 10:00:00,13025.0
-2018-06-19 11:00:00,13651.0
-2018-06-19 12:00:00,14293.0
-2018-06-19 13:00:00,15008.0
-2018-06-19 14:00:00,15630.0
-2018-06-19 15:00:00,16160.0
-2018-06-19 16:00:00,16387.0
-2018-06-19 17:00:00,16030.0
-2018-06-19 18:00:00,15315.0
-2018-06-19 19:00:00,14758.0
-2018-06-19 20:00:00,14127.0
-2018-06-19 21:00:00,13556.0
-2018-06-19 22:00:00,13296.0
-2018-06-19 23:00:00,12891.0
-2018-06-20 00:00:00,12016.0
-2018-06-18 01:00:00,14753.0
-2018-06-18 02:00:00,13812.0
-2018-06-18 03:00:00,13239.0
-2018-06-18 04:00:00,12770.0
-2018-06-18 05:00:00,12495.0
-2018-06-18 06:00:00,12578.0
-2018-06-18 07:00:00,13042.0
-2018-06-18 08:00:00,14139.0
-2018-06-18 09:00:00,15689.0
-2018-06-18 10:00:00,16983.0
-2018-06-18 11:00:00,18085.0
-2018-06-18 12:00:00,19090.0
-2018-06-18 13:00:00,19926.0
-2018-06-18 14:00:00,20498.0
-2018-06-18 15:00:00,20941.0
-2018-06-18 16:00:00,21209.0
-2018-06-18 17:00:00,21349.0
-2018-06-18 18:00:00,21344.0
-2018-06-18 19:00:00,20727.0
-2018-06-18 20:00:00,19188.0
-2018-06-18 21:00:00,18050.0
-2018-06-18 22:00:00,17122.0
-2018-06-18 23:00:00,16209.0
-2018-06-19 00:00:00,14819.0
-2018-06-17 01:00:00,14147.0
-2018-06-17 02:00:00,13278.0
-2018-06-17 03:00:00,12563.0
-2018-06-17 04:00:00,11966.0
-2018-06-17 05:00:00,11474.0
-2018-06-17 06:00:00,11226.0
-2018-06-17 07:00:00,10926.0
-2018-06-17 08:00:00,11219.0
-2018-06-17 09:00:00,12275.0
-2018-06-17 10:00:00,13646.0
-2018-06-17 11:00:00,15034.0
-2018-06-17 12:00:00,16198.0
-2018-06-17 13:00:00,17102.0
-2018-06-17 14:00:00,17760.0
-2018-06-17 15:00:00,18241.0
-2018-06-17 16:00:00,18449.0
-2018-06-17 17:00:00,18390.0
-2018-06-17 18:00:00,18215.0
-2018-06-17 19:00:00,17974.0
-2018-06-17 20:00:00,17599.0
-2018-06-17 21:00:00,17213.0
-2018-06-17 22:00:00,16949.0
-2018-06-17 23:00:00,16789.0
-2018-06-18 00:00:00,15823.0
-2018-06-16 01:00:00,13472.0
-2018-06-16 02:00:00,12619.0
-2018-06-16 03:00:00,11781.0
-2018-06-16 04:00:00,10973.0
-2018-06-16 05:00:00,10456.0
-2018-06-16 06:00:00,10275.0
-2018-06-16 07:00:00,10211.0
-2018-06-16 08:00:00,10410.0
-2018-06-16 09:00:00,11334.0
-2018-06-16 10:00:00,12681.0
-2018-06-16 11:00:00,14007.0
-2018-06-16 12:00:00,15050.0
-2018-06-16 13:00:00,15834.0
-2018-06-16 14:00:00,16284.0
-2018-06-16 15:00:00,16632.0
-2018-06-16 16:00:00,17057.0
-2018-06-16 17:00:00,17496.0
-2018-06-16 18:00:00,17801.0
-2018-06-16 19:00:00,17910.0
-2018-06-16 20:00:00,17464.0
-2018-06-16 21:00:00,16834.0
-2018-06-16 22:00:00,16384.0
-2018-06-16 23:00:00,16000.0
-2018-06-17 00:00:00,15129.0
-2018-06-15 01:00:00,10585.0
-2018-06-15 02:00:00,9850.0
-2018-06-15 03:00:00,9382.0
-2018-06-15 04:00:00,8982.0
-2018-06-15 05:00:00,8848.0
-2018-06-15 06:00:00,8954.0
-2018-06-15 07:00:00,9326.0
-2018-06-15 08:00:00,10283.0
-2018-06-15 09:00:00,11329.0
-2018-06-15 10:00:00,12082.0
-2018-06-15 11:00:00,12501.0
-2018-06-15 12:00:00,12818.0
-2018-06-15 13:00:00,13178.0
-2018-06-15 14:00:00,13851.0
-2018-06-15 15:00:00,14763.0
-2018-06-15 16:00:00,15616.0
-2018-06-15 17:00:00,16326.0
-2018-06-15 18:00:00,16833.0
-2018-06-15 19:00:00,16994.0
-2018-06-15 20:00:00,16684.0
-2018-06-15 21:00:00,16062.0
-2018-06-15 22:00:00,15713.0
-2018-06-15 23:00:00,15411.0
-2018-06-16 00:00:00,14555.0
-2018-06-14 01:00:00,10507.0
-2018-06-14 02:00:00,9709.0
-2018-06-14 03:00:00,9180.0
-2018-06-14 04:00:00,8904.0
-2018-06-14 05:00:00,8766.0
-2018-06-14 06:00:00,8882.0
-2018-06-14 07:00:00,9260.0
-2018-06-14 08:00:00,10199.0
-2018-06-14 09:00:00,11085.0
-2018-06-14 10:00:00,12004.0
-2018-06-14 11:00:00,12748.0
-2018-06-14 12:00:00,13344.0
-2018-06-14 13:00:00,13829.0
-2018-06-14 14:00:00,14156.0
-2018-06-14 15:00:00,14394.0
-2018-06-14 16:00:00,14347.0
-2018-06-14 17:00:00,14149.0
-2018-06-14 18:00:00,13910.0
-2018-06-14 19:00:00,13617.0
-2018-06-14 20:00:00,13147.0
-2018-06-14 21:00:00,12760.0
-2018-06-14 22:00:00,12630.0
-2018-06-14 23:00:00,12451.0
-2018-06-15 00:00:00,11567.0
-2018-06-13 01:00:00,10997.0
-2018-06-13 02:00:00,10254.0
-2018-06-13 03:00:00,9767.0
-2018-06-13 04:00:00,9463.0
-2018-06-13 05:00:00,9358.0
-2018-06-13 06:00:00,9460.0
-2018-06-13 07:00:00,9917.0
-2018-06-13 08:00:00,10939.0
-2018-06-13 09:00:00,11978.0
-2018-06-13 10:00:00,12823.0
-2018-06-13 11:00:00,13454.0
-2018-06-13 12:00:00,13981.0
-2018-06-13 13:00:00,14261.0
-2018-06-13 14:00:00,14467.0
-2018-06-13 15:00:00,14749.0
-2018-06-13 16:00:00,14970.0
-2018-06-13 17:00:00,15134.0
-2018-06-13 18:00:00,15236.0
-2018-06-13 19:00:00,15119.0
-2018-06-13 20:00:00,14622.0
-2018-06-13 21:00:00,13925.0
-2018-06-13 22:00:00,13228.0
-2018-06-13 23:00:00,12672.0
-2018-06-14 00:00:00,11591.0
-2018-06-12 01:00:00,9669.0
-2018-06-12 02:00:00,9117.0
-2018-06-12 03:00:00,8789.0
-2018-06-12 04:00:00,8583.0
-2018-06-12 05:00:00,8559.0
-2018-06-12 06:00:00,8730.0
-2018-06-12 07:00:00,9215.0
-2018-06-12 08:00:00,10120.0
-2018-06-12 09:00:00,11002.0
-2018-06-12 10:00:00,11576.0
-2018-06-12 11:00:00,12006.0
-2018-06-12 12:00:00,12449.0
-2018-06-12 13:00:00,12711.0
-2018-06-12 14:00:00,12948.0
-2018-06-12 15:00:00,13340.0
-2018-06-12 16:00:00,13674.0
-2018-06-12 17:00:00,13879.0
-2018-06-12 18:00:00,13856.0
-2018-06-12 19:00:00,13718.0
-2018-06-12 20:00:00,13389.0
-2018-06-12 21:00:00,13190.0
-2018-06-12 22:00:00,13194.0
-2018-06-12 23:00:00,12955.0
-2018-06-13 00:00:00,12019.0
-2018-06-11 01:00:00,8940.0
-2018-06-11 02:00:00,8590.0
-2018-06-11 03:00:00,8338.0
-2018-06-11 04:00:00,8232.0
-2018-06-11 05:00:00,8153.0
-2018-06-11 06:00:00,8404.0
-2018-06-11 07:00:00,8848.0
-2018-06-11 08:00:00,9679.0
-2018-06-11 09:00:00,10501.0
-2018-06-11 10:00:00,10976.0
-2018-06-11 11:00:00,11284.0
-2018-06-11 12:00:00,11566.0
-2018-06-11 13:00:00,11704.0
-2018-06-11 14:00:00,11765.0
-2018-06-11 15:00:00,11852.0
-2018-06-11 16:00:00,11854.0
-2018-06-11 17:00:00,11714.0
-2018-06-11 18:00:00,11629.0
-2018-06-11 19:00:00,11514.0
-2018-06-11 20:00:00,11383.0
-2018-06-11 21:00:00,11243.0
-2018-06-11 22:00:00,11361.0
-2018-06-11 23:00:00,11113.0
-2018-06-12 00:00:00,10432.0
-2018-06-10 01:00:00,9447.0
-2018-06-10 02:00:00,8863.0
-2018-06-10 03:00:00,8478.0
-2018-06-10 04:00:00,8207.0
-2018-06-10 05:00:00,8165.0
-2018-06-10 06:00:00,8148.0
-2018-06-10 07:00:00,8169.0
-2018-06-10 08:00:00,8121.0
-2018-06-10 09:00:00,8431.0
-2018-06-10 10:00:00,8876.0
-2018-06-10 11:00:00,9307.0
-2018-06-10 12:00:00,9654.0
-2018-06-10 13:00:00,9900.0
-2018-06-10 14:00:00,9973.0
-2018-06-10 15:00:00,9967.0
-2018-06-10 16:00:00,9895.0
-2018-06-10 17:00:00,9832.0
-2018-06-10 18:00:00,9740.0
-2018-06-10 19:00:00,9808.0
-2018-06-10 20:00:00,9748.0
-2018-06-10 21:00:00,9717.0
-2018-06-10 22:00:00,9953.0
-2018-06-10 23:00:00,9900.0
-2018-06-11 00:00:00,9494.0
-2018-06-09 01:00:00,9552.0
-2018-06-09 02:00:00,8960.0
-2018-06-09 03:00:00,8538.0
-2018-06-09 04:00:00,8283.0
-2018-06-09 05:00:00,8103.0
-2018-06-09 06:00:00,8111.0
-2018-06-09 07:00:00,8379.0
-2018-06-09 08:00:00,8701.0
-2018-06-09 09:00:00,9148.0
-2018-06-09 10:00:00,9664.0
-2018-06-09 11:00:00,10038.0
-2018-06-09 12:00:00,10292.0
-2018-06-09 13:00:00,10492.0
-2018-06-09 14:00:00,10745.0
-2018-06-09 15:00:00,10991.0
-2018-06-09 16:00:00,11332.0
-2018-06-09 17:00:00,11722.0
-2018-06-09 18:00:00,12046.0
-2018-06-09 19:00:00,12152.0
-2018-06-09 20:00:00,11850.0
-2018-06-09 21:00:00,11282.0
-2018-06-09 22:00:00,11043.0
-2018-06-09 23:00:00,10743.0
-2018-06-10 00:00:00,10072.0
-2018-06-08 01:00:00,10020.0
-2018-06-08 02:00:00,9316.0
-2018-06-08 03:00:00,8893.0
-2018-06-08 04:00:00,8578.0
-2018-06-08 05:00:00,8458.0
-2018-06-08 06:00:00,8577.0
-2018-06-08 07:00:00,8975.0
-2018-06-08 08:00:00,9642.0
-2018-06-08 09:00:00,10363.0
-2018-06-08 10:00:00,10905.0
-2018-06-08 11:00:00,11192.0
-2018-06-08 12:00:00,11428.0
-2018-06-08 13:00:00,11533.0
-2018-06-08 14:00:00,11661.0
-2018-06-08 15:00:00,11893.0
-2018-06-08 16:00:00,11970.0
-2018-06-08 17:00:00,11899.0
-2018-06-08 18:00:00,11908.0
-2018-06-08 19:00:00,11850.0
-2018-06-08 20:00:00,11637.0
-2018-06-08 21:00:00,11283.0
-2018-06-08 22:00:00,11250.0
-2018-06-08 23:00:00,11021.0
-2018-06-09 00:00:00,10343.0
-2018-06-07 01:00:00,10099.0
-2018-06-07 02:00:00,9475.0
-2018-06-07 03:00:00,9034.0
-2018-06-07 04:00:00,8694.0
-2018-06-07 05:00:00,8622.0
-2018-06-07 06:00:00,8717.0
-2018-06-07 07:00:00,9154.0
-2018-06-07 08:00:00,9951.0
-2018-06-07 09:00:00,10855.0
-2018-06-07 10:00:00,11627.0
-2018-06-07 11:00:00,12357.0
-2018-06-07 12:00:00,13000.0
-2018-06-07 13:00:00,13495.0
-2018-06-07 14:00:00,13896.0
-2018-06-07 15:00:00,14357.0
-2018-06-07 16:00:00,14782.0
-2018-06-07 17:00:00,15001.0
-2018-06-07 18:00:00,15029.0
-2018-06-07 19:00:00,14674.0
-2018-06-07 20:00:00,13865.0
-2018-06-07 21:00:00,12944.0
-2018-06-07 22:00:00,12448.0
-2018-06-07 23:00:00,11903.0
-2018-06-08 00:00:00,10977.0
-2018-06-06 01:00:00,8997.0
-2018-06-06 02:00:00,8508.0
-2018-06-06 03:00:00,8222.0
-2018-06-06 04:00:00,8020.0
-2018-06-06 05:00:00,7922.0
-2018-06-06 06:00:00,8062.0
-2018-06-06 07:00:00,8394.0
-2018-06-06 08:00:00,9190.0
-2018-06-06 09:00:00,10026.0
-2018-06-06 10:00:00,10630.0
-2018-06-06 11:00:00,11055.0
-2018-06-06 12:00:00,11439.0
-2018-06-06 13:00:00,11619.0
-2018-06-06 14:00:00,11672.0
-2018-06-06 15:00:00,11684.0
-2018-06-06 16:00:00,11927.0
-2018-06-06 17:00:00,12127.0
-2018-06-06 18:00:00,12137.0
-2018-06-06 19:00:00,12190.0
-2018-06-06 20:00:00,12145.0
-2018-06-06 21:00:00,11921.0
-2018-06-06 22:00:00,11976.0
-2018-06-06 23:00:00,11770.0
-2018-06-07 00:00:00,10987.0
-2018-06-05 01:00:00,10466.0
-2018-06-05 02:00:00,9801.0
-2018-06-05 03:00:00,9317.0
-2018-06-05 04:00:00,8985.0
-2018-06-05 05:00:00,8818.0
-2018-06-05 06:00:00,8927.0
-2018-06-05 07:00:00,9367.0
-2018-06-05 08:00:00,10177.0
-2018-06-05 09:00:00,10955.0
-2018-06-05 10:00:00,11494.0
-2018-06-05 11:00:00,11863.0
-2018-06-05 12:00:00,12116.0
-2018-06-05 13:00:00,12188.0
-2018-06-05 14:00:00,12186.0
-2018-06-05 15:00:00,12185.0
-2018-06-05 16:00:00,12053.0
-2018-06-05 17:00:00,11854.0
-2018-06-05 18:00:00,11599.0
-2018-06-05 19:00:00,11377.0
-2018-06-05 20:00:00,10941.0
-2018-06-05 21:00:00,10607.0
-2018-06-05 22:00:00,10529.0
-2018-06-05 23:00:00,10382.0
-2018-06-06 00:00:00,9720.0
-2018-06-04 01:00:00,8984.0
-2018-06-04 02:00:00,8474.0
-2018-06-04 03:00:00,8154.0
-2018-06-04 04:00:00,7968.0
-2018-06-04 05:00:00,7928.0
-2018-06-04 06:00:00,8126.0
-2018-06-04 07:00:00,8547.0
-2018-06-04 08:00:00,9435.0
-2018-06-04 09:00:00,10372.0
-2018-06-04 10:00:00,11007.0
-2018-06-04 11:00:00,11408.0
-2018-06-04 12:00:00,11773.0
-2018-06-04 13:00:00,12034.0
-2018-06-04 14:00:00,12264.0
-2018-06-04 15:00:00,12579.0
-2018-06-04 16:00:00,12870.0
-2018-06-04 17:00:00,13177.0
-2018-06-04 18:00:00,13399.0
-2018-06-04 19:00:00,13449.0
-2018-06-04 20:00:00,13244.0
-2018-06-04 21:00:00,12872.0
-2018-06-04 22:00:00,12588.0
-2018-06-04 23:00:00,12285.0
-2018-06-05 00:00:00,11407.0
-2018-06-03 01:00:00,9184.0
-2018-06-03 02:00:00,8687.0
-2018-06-03 03:00:00,8321.0
-2018-06-03 04:00:00,8104.0
-2018-06-03 05:00:00,7953.0
-2018-06-03 06:00:00,7927.0
-2018-06-03 07:00:00,7785.0
-2018-06-03 08:00:00,7930.0
-2018-06-03 09:00:00,8315.0
-2018-06-03 10:00:00,8870.0
-2018-06-03 11:00:00,9361.0
-2018-06-03 12:00:00,9786.0
-2018-06-03 13:00:00,10136.0
-2018-06-03 14:00:00,10415.0
-2018-06-03 15:00:00,10602.0
-2018-06-03 16:00:00,10766.0
-2018-06-03 17:00:00,10848.0
-2018-06-03 18:00:00,10931.0
-2018-06-03 19:00:00,10864.0
-2018-06-03 20:00:00,10680.0
-2018-06-03 21:00:00,10372.0
-2018-06-03 22:00:00,10265.0
-2018-06-03 23:00:00,10175.0
-2018-06-04 00:00:00,9624.0
-2018-06-02 01:00:00,9357.0
-2018-06-02 02:00:00,8799.0
-2018-06-02 03:00:00,8388.0
-2018-06-02 04:00:00,8153.0
-2018-06-02 05:00:00,8014.0
-2018-06-02 06:00:00,8003.0
-2018-06-02 07:00:00,8030.0
-2018-06-02 08:00:00,8275.0
-2018-06-02 09:00:00,8761.0
-2018-06-02 10:00:00,9253.0
-2018-06-02 11:00:00,9671.0
-2018-06-02 12:00:00,9893.0
-2018-06-02 13:00:00,10082.0
-2018-06-02 14:00:00,10112.0
-2018-06-02 15:00:00,10169.0
-2018-06-02 16:00:00,10282.0
-2018-06-02 17:00:00,10469.0
-2018-06-02 18:00:00,10665.0
-2018-06-02 19:00:00,10645.0
-2018-06-02 20:00:00,10495.0
-2018-06-02 21:00:00,10336.0
-2018-06-02 22:00:00,10457.0
-2018-06-02 23:00:00,10311.0
-2018-06-03 00:00:00,9808.0
-2018-06-01 01:00:00,13078.0
-2018-06-01 02:00:00,11985.0
-2018-06-01 03:00:00,11243.0
-2018-06-01 04:00:00,10649.0
-2018-06-01 05:00:00,10360.0
-2018-06-01 06:00:00,10355.0
-2018-06-01 07:00:00,10790.0
-2018-06-01 08:00:00,11856.0
-2018-06-01 09:00:00,13120.0
-2018-06-01 10:00:00,13593.0
-2018-06-01 11:00:00,13743.0
-2018-06-01 12:00:00,13736.0
-2018-06-01 13:00:00,13724.0
-2018-06-01 14:00:00,13640.0
-2018-06-01 15:00:00,13648.0
-2018-06-01 16:00:00,13623.0
-2018-06-01 17:00:00,13536.0
-2018-06-01 18:00:00,13278.0
-2018-06-01 19:00:00,12835.0
-2018-06-01 20:00:00,12161.0
-2018-06-01 21:00:00,11488.0
-2018-06-01 22:00:00,11168.0
-2018-06-01 23:00:00,10852.0
-2018-06-02 00:00:00,10148.0
-2018-05-31 01:00:00,11765.0
-2018-05-31 02:00:00,11010.0
-2018-05-31 03:00:00,10433.0
-2018-05-31 04:00:00,10054.0
-2018-05-31 05:00:00,9885.0
-2018-05-31 06:00:00,9985.0
-2018-05-31 07:00:00,10460.0
-2018-05-31 08:00:00,11579.0
-2018-05-31 09:00:00,12863.0
-2018-05-31 10:00:00,13880.0
-2018-05-31 11:00:00,14915.0
-2018-05-31 12:00:00,15973.0
-2018-05-31 13:00:00,16686.0
-2018-05-31 14:00:00,17306.0
-2018-05-31 15:00:00,17842.0
-2018-05-31 16:00:00,18048.0
-2018-05-31 17:00:00,18151.0
-2018-05-31 18:00:00,18397.0
-2018-05-31 19:00:00,18352.0
-2018-05-31 20:00:00,17781.0
-2018-05-31 21:00:00,17018.0
-2018-05-31 22:00:00,16370.0
-2018-05-31 23:00:00,15752.0
-2018-06-01 00:00:00,14417.0
-2018-05-30 01:00:00,11916.0
-2018-05-30 02:00:00,11025.0
-2018-05-30 03:00:00,10443.0
-2018-05-30 04:00:00,10052.0
-2018-05-30 05:00:00,9886.0
-2018-05-30 06:00:00,10020.0
-2018-05-30 07:00:00,10579.0
-2018-05-30 08:00:00,11524.0
-2018-05-30 09:00:00,12495.0
-2018-05-30 10:00:00,13202.0
-2018-05-30 11:00:00,13857.0
-2018-05-30 12:00:00,14567.0
-2018-05-30 13:00:00,15382.0
-2018-05-30 14:00:00,16066.0
-2018-05-30 15:00:00,16592.0
-2018-05-30 16:00:00,16763.0
-2018-05-30 17:00:00,16345.0
-2018-05-30 18:00:00,15872.0
-2018-05-30 19:00:00,15462.0
-2018-05-30 20:00:00,14964.0
-2018-05-30 21:00:00,14455.0
-2018-05-30 22:00:00,14250.0
-2018-05-30 23:00:00,13820.0
-2018-05-31 00:00:00,12863.0
-2018-05-29 01:00:00,12167.0
-2018-05-29 02:00:00,11210.0
-2018-05-29 03:00:00,10513.0
-2018-05-29 04:00:00,10037.0
-2018-05-29 05:00:00,9805.0
-2018-05-29 06:00:00,9846.0
-2018-05-29 07:00:00,10298.0
-2018-05-29 08:00:00,11363.0
-2018-05-29 09:00:00,12590.0
-2018-05-29 10:00:00,13642.0
-2018-05-29 11:00:00,14471.0
-2018-05-29 12:00:00,15241.0
-2018-05-29 13:00:00,15769.0
-2018-05-29 14:00:00,16374.0
-2018-05-29 15:00:00,16891.0
-2018-05-29 16:00:00,17081.0
-2018-05-29 17:00:00,17065.0
-2018-05-29 18:00:00,16896.0
-2018-05-29 19:00:00,16619.0
-2018-05-29 20:00:00,15783.0
-2018-05-29 21:00:00,14962.0
-2018-05-29 22:00:00,14669.0
-2018-05-29 23:00:00,14183.0
-2018-05-30 00:00:00,13069.0
-2018-05-28 01:00:00,12791.0
-2018-05-28 02:00:00,11788.0
-2018-05-28 03:00:00,11015.0
-2018-05-28 04:00:00,10532.0
-2018-05-28 05:00:00,10164.0
-2018-05-28 06:00:00,9924.0
-2018-05-28 07:00:00,9845.0
-2018-05-28 08:00:00,10260.0
-2018-05-28 09:00:00,11213.0
-2018-05-28 10:00:00,12510.0
-2018-05-28 11:00:00,13794.0
-2018-05-28 12:00:00,14627.0
-2018-05-28 13:00:00,14768.0
-2018-05-28 14:00:00,14962.0
-2018-05-28 15:00:00,15255.0
-2018-05-28 16:00:00,15741.0
-2018-05-28 17:00:00,16394.0
-2018-05-28 18:00:00,17002.0
-2018-05-28 19:00:00,17254.0
-2018-05-28 20:00:00,16910.0
-2018-05-28 21:00:00,16147.0
-2018-05-28 22:00:00,15485.0
-2018-05-28 23:00:00,14768.0
-2018-05-29 00:00:00,13487.0
-2018-05-27 01:00:00,11795.0
-2018-05-27 02:00:00,10951.0
-2018-05-27 03:00:00,10262.0
-2018-05-27 04:00:00,9781.0
-2018-05-27 05:00:00,9406.0
-2018-05-27 06:00:00,9243.0
-2018-05-27 07:00:00,9028.0
-2018-05-27 08:00:00,9350.0
-2018-05-27 09:00:00,10276.0
-2018-05-27 10:00:00,11589.0
-2018-05-27 11:00:00,12974.0
-2018-05-27 12:00:00,14161.0
-2018-05-27 13:00:00,15126.0
-2018-05-27 14:00:00,15768.0
-2018-05-27 15:00:00,16225.0
-2018-05-27 16:00:00,16602.0
-2018-05-27 17:00:00,16888.0
-2018-05-27 18:00:00,17001.0
-2018-05-27 19:00:00,16883.0
-2018-05-27 20:00:00,16525.0
-2018-05-27 21:00:00,15825.0
-2018-05-27 22:00:00,15320.0
-2018-05-27 23:00:00,14761.0
-2018-05-28 00:00:00,13811.0
-2018-05-26 01:00:00,11981.0
-2018-05-26 02:00:00,11112.0
-2018-05-26 03:00:00,10430.0
-2018-05-26 04:00:00,9919.0
-2018-05-26 05:00:00,9633.0
-2018-05-26 06:00:00,9477.0
-2018-05-26 07:00:00,9395.0
-2018-05-26 08:00:00,9617.0
-2018-05-26 09:00:00,10373.0
-2018-05-26 10:00:00,11357.0
-2018-05-26 11:00:00,12278.0
-2018-05-26 12:00:00,13214.0
-2018-05-26 13:00:00,13941.0
-2018-05-26 14:00:00,14463.0
-2018-05-26 15:00:00,14890.0
-2018-05-26 16:00:00,15247.0
-2018-05-26 17:00:00,15577.0
-2018-05-26 18:00:00,15768.0
-2018-05-26 19:00:00,15755.0
-2018-05-26 20:00:00,15410.0
-2018-05-26 21:00:00,14819.0
-2018-05-26 22:00:00,14221.0
-2018-05-26 23:00:00,13717.0
-2018-05-27 00:00:00,12798.0
-2018-05-25 01:00:00,10915.0
-2018-05-25 02:00:00,10062.0
-2018-05-25 03:00:00,9480.0
-2018-05-25 04:00:00,9089.0
-2018-05-25 05:00:00,8862.0
-2018-05-25 06:00:00,8940.0
-2018-05-25 07:00:00,9309.0
-2018-05-25 08:00:00,10284.0
-2018-05-25 09:00:00,11435.0
-2018-05-25 10:00:00,12444.0
-2018-05-25 11:00:00,13288.0
-2018-05-25 12:00:00,14122.0
-2018-05-25 13:00:00,14820.0
-2018-05-25 14:00:00,15351.0
-2018-05-25 15:00:00,15854.0
-2018-05-25 16:00:00,16168.0
-2018-05-25 17:00:00,16159.0
-2018-05-25 18:00:00,15925.0
-2018-05-25 19:00:00,15412.0
-2018-05-25 20:00:00,14785.0
-2018-05-25 21:00:00,14342.0
-2018-05-25 22:00:00,14172.0
-2018-05-25 23:00:00,13789.0
-2018-05-26 00:00:00,12979.0
-2018-05-24 01:00:00,9660.0
-2018-05-24 02:00:00,9019.0
-2018-05-24 03:00:00,8575.0
-2018-05-24 04:00:00,8343.0
-2018-05-24 05:00:00,8246.0
-2018-05-24 06:00:00,8366.0
-2018-05-24 07:00:00,8792.0
-2018-05-24 08:00:00,9686.0
-2018-05-24 09:00:00,10730.0
-2018-05-24 10:00:00,11437.0
-2018-05-24 11:00:00,11984.0
-2018-05-24 12:00:00,12533.0
-2018-05-24 13:00:00,12987.0
-2018-05-24 14:00:00,13381.0
-2018-05-24 15:00:00,13864.0
-2018-05-24 16:00:00,14216.0
-2018-05-24 17:00:00,14517.0
-2018-05-24 18:00:00,14775.0
-2018-05-24 19:00:00,14710.0
-2018-05-24 20:00:00,14354.0
-2018-05-24 21:00:00,13868.0
-2018-05-24 22:00:00,13583.0
-2018-05-24 23:00:00,13066.0
-2018-05-25 00:00:00,12043.0
-2018-05-23 01:00:00,9079.0
-2018-05-23 02:00:00,8593.0
-2018-05-23 03:00:00,8319.0
-2018-05-23 04:00:00,8104.0
-2018-05-23 05:00:00,8079.0
-2018-05-23 06:00:00,8253.0
-2018-05-23 07:00:00,8688.0
-2018-05-23 08:00:00,9518.0
-2018-05-23 09:00:00,10359.0
-2018-05-23 10:00:00,10859.0
-2018-05-23 11:00:00,11239.0
-2018-05-23 12:00:00,11583.0
-2018-05-23 13:00:00,11808.0
-2018-05-23 14:00:00,12003.0
-2018-05-23 15:00:00,12312.0
-2018-05-23 16:00:00,12478.0
-2018-05-23 17:00:00,12587.0
-2018-05-23 18:00:00,12673.0
-2018-05-23 19:00:00,12612.0
-2018-05-23 20:00:00,12244.0
-2018-05-23 21:00:00,11906.0
-2018-05-23 22:00:00,11823.0
-2018-05-23 23:00:00,11445.0
-2018-05-24 00:00:00,10567.0
-2018-05-22 01:00:00,9065.0
-2018-05-22 02:00:00,8618.0
-2018-05-22 03:00:00,8333.0
-2018-05-22 04:00:00,8145.0
-2018-05-22 05:00:00,8110.0
-2018-05-22 06:00:00,8278.0
-2018-05-22 07:00:00,8838.0
-2018-05-22 08:00:00,9669.0
-2018-05-22 09:00:00,10371.0
-2018-05-22 10:00:00,10753.0
-2018-05-22 11:00:00,10976.0
-2018-05-22 12:00:00,11145.0
-2018-05-22 13:00:00,11289.0
-2018-05-22 14:00:00,11322.0
-2018-05-22 15:00:00,11381.0
-2018-05-22 16:00:00,11292.0
-2018-05-22 17:00:00,11196.0
-2018-05-22 18:00:00,11091.0
-2018-05-22 19:00:00,10956.0
-2018-05-22 20:00:00,10739.0
-2018-05-22 21:00:00,10616.0
-2018-05-22 22:00:00,10776.0
-2018-05-22 23:00:00,10517.0
-2018-05-23 00:00:00,9819.0
-2018-05-21 01:00:00,8317.0
-2018-05-21 02:00:00,8003.0
-2018-05-21 03:00:00,7811.0
-2018-05-21 04:00:00,7723.0
-2018-05-21 05:00:00,7728.0
-2018-05-21 06:00:00,7960.0
-2018-05-21 07:00:00,8666.0
-2018-05-21 08:00:00,9631.0
-2018-05-21 09:00:00,10464.0
-2018-05-21 10:00:00,10752.0
-2018-05-21 11:00:00,10929.0
-2018-05-21 12:00:00,11211.0
-2018-05-21 13:00:00,11333.0
-2018-05-21 14:00:00,11276.0
-2018-05-21 15:00:00,11298.0
-2018-05-21 16:00:00,11170.0
-2018-05-21 17:00:00,11076.0
-2018-05-21 18:00:00,11033.0
-2018-05-21 19:00:00,10948.0
-2018-05-21 20:00:00,10756.0
-2018-05-21 21:00:00,10649.0
-2018-05-21 22:00:00,10808.0
-2018-05-21 23:00:00,10479.0
-2018-05-22 00:00:00,9763.0
-2018-05-20 01:00:00,8650.0
-2018-05-20 02:00:00,8233.0
-2018-05-20 03:00:00,7878.0
-2018-05-20 04:00:00,7670.0
-2018-05-20 05:00:00,7547.0
-2018-05-20 06:00:00,7510.0
-2018-05-20 07:00:00,7488.0
-2018-05-20 08:00:00,7552.0
-2018-05-20 09:00:00,7775.0
-2018-05-20 10:00:00,8141.0
-2018-05-20 11:00:00,8510.0
-2018-05-20 12:00:00,8784.0
-2018-05-20 13:00:00,8931.0
-2018-05-20 14:00:00,8927.0
-2018-05-20 15:00:00,8809.0
-2018-05-20 16:00:00,8820.0
-2018-05-20 17:00:00,8763.0
-2018-05-20 18:00:00,8767.0
-2018-05-20 19:00:00,8895.0
-2018-05-20 20:00:00,8953.0
-2018-05-20 21:00:00,9082.0
-2018-05-20 22:00:00,9385.0
-2018-05-20 23:00:00,9266.0
-2018-05-21 00:00:00,8791.0
-2018-05-19 01:00:00,9018.0
-2018-05-19 02:00:00,8535.0
-2018-05-19 03:00:00,8236.0
-2018-05-19 04:00:00,8006.0
-2018-05-19 05:00:00,7873.0
-2018-05-19 06:00:00,7951.0
-2018-05-19 07:00:00,8107.0
-2018-05-19 08:00:00,8344.0
-2018-05-19 09:00:00,8764.0
-2018-05-19 10:00:00,9207.0
-2018-05-19 11:00:00,9565.0
-2018-05-19 12:00:00,9752.0
-2018-05-19 13:00:00,9874.0
-2018-05-19 14:00:00,9789.0
-2018-05-19 15:00:00,9733.0
-2018-05-19 16:00:00,9634.0
-2018-05-19 17:00:00,9607.0
-2018-05-19 18:00:00,9663.0
-2018-05-19 19:00:00,9643.0
-2018-05-19 20:00:00,9623.0
-2018-05-19 21:00:00,9618.0
-2018-05-19 22:00:00,9826.0
-2018-05-19 23:00:00,9639.0
-2018-05-20 00:00:00,9198.0
-2018-05-18 01:00:00,8968.0
-2018-05-18 02:00:00,8482.0
-2018-05-18 03:00:00,8191.0
-2018-05-18 04:00:00,8004.0
-2018-05-18 05:00:00,7944.0
-2018-05-18 06:00:00,8145.0
-2018-05-18 07:00:00,8585.0
-2018-05-18 08:00:00,9282.0
-2018-05-18 09:00:00,10030.0
-2018-05-18 10:00:00,10505.0
-2018-05-18 11:00:00,10763.0
-2018-05-18 12:00:00,10982.0
-2018-05-18 13:00:00,11149.0
-2018-05-18 14:00:00,11178.0
-2018-05-18 15:00:00,11257.0
-2018-05-18 16:00:00,11151.0
-2018-05-18 17:00:00,10914.0
-2018-05-18 18:00:00,10725.0
-2018-05-18 19:00:00,10503.0
-2018-05-18 20:00:00,10356.0
-2018-05-18 21:00:00,10373.0
-2018-05-18 22:00:00,10502.0
-2018-05-18 23:00:00,10254.0
-2018-05-19 00:00:00,9625.0
-2018-05-17 01:00:00,9478.0
-2018-05-17 02:00:00,8879.0
-2018-05-17 03:00:00,8506.0
-2018-05-17 04:00:00,8287.0
-2018-05-17 05:00:00,8162.0
-2018-05-17 06:00:00,8275.0
-2018-05-17 07:00:00,8752.0
-2018-05-17 08:00:00,9591.0
-2018-05-17 09:00:00,10490.0
-2018-05-17 10:00:00,10995.0
-2018-05-17 11:00:00,11298.0
-2018-05-17 12:00:00,11554.0
-2018-05-17 13:00:00,11756.0
-2018-05-17 14:00:00,11885.0
-2018-05-17 15:00:00,12082.0
-2018-05-17 16:00:00,12103.0
-2018-05-17 17:00:00,11997.0
-2018-05-17 18:00:00,11817.0
-2018-05-17 19:00:00,11503.0
-2018-05-17 20:00:00,10981.0
-2018-05-17 21:00:00,10673.0
-2018-05-17 22:00:00,10817.0
-2018-05-17 23:00:00,10474.0
-2018-05-18 00:00:00,9725.0
-2018-05-16 01:00:00,8917.0
-2018-05-16 02:00:00,8467.0
-2018-05-16 03:00:00,8165.0
-2018-05-16 04:00:00,7984.0
-2018-05-16 05:00:00,7934.0
-2018-05-16 06:00:00,8093.0
-2018-05-16 07:00:00,8584.0
-2018-05-16 08:00:00,9405.0
-2018-05-16 09:00:00,10183.0
-2018-05-16 10:00:00,10647.0
-2018-05-16 11:00:00,10991.0
-2018-05-16 12:00:00,11366.0
-2018-05-16 13:00:00,11601.0
-2018-05-16 14:00:00,11788.0
-2018-05-16 15:00:00,12038.0
-2018-05-16 16:00:00,12221.0
-2018-05-16 17:00:00,12346.0
-2018-05-16 18:00:00,12436.0
-2018-05-16 19:00:00,12378.0
-2018-05-16 20:00:00,12049.0
-2018-05-16 21:00:00,11734.0
-2018-05-16 22:00:00,11682.0
-2018-05-16 23:00:00,11254.0
-2018-05-17 00:00:00,10338.0
-2018-05-15 01:00:00,9551.0
-2018-05-15 02:00:00,9026.0
-2018-05-15 03:00:00,8645.0
-2018-05-15 04:00:00,8412.0
-2018-05-15 05:00:00,8341.0
-2018-05-15 06:00:00,8528.0
-2018-05-15 07:00:00,9085.0
-2018-05-15 08:00:00,10030.0
-2018-05-15 09:00:00,10766.0
-2018-05-15 10:00:00,10897.0
-2018-05-15 11:00:00,11276.0
-2018-05-15 12:00:00,11583.0
-2018-05-15 13:00:00,11692.0
-2018-05-15 14:00:00,11786.0
-2018-05-15 15:00:00,11957.0
-2018-05-15 16:00:00,11868.0
-2018-05-15 17:00:00,11547.0
-2018-05-15 18:00:00,11319.0
-2018-05-15 19:00:00,11130.0
-2018-05-15 20:00:00,10805.0
-2018-05-15 21:00:00,10567.0
-2018-05-15 22:00:00,10707.0
-2018-05-15 23:00:00,10416.0
-2018-05-16 00:00:00,9634.0
-2018-05-14 01:00:00,8201.0
-2018-05-14 02:00:00,7882.0
-2018-05-14 03:00:00,7684.0
-2018-05-14 04:00:00,7620.0
-2018-05-14 05:00:00,7632.0
-2018-05-14 06:00:00,7871.0
-2018-05-14 07:00:00,8504.0
-2018-05-14 08:00:00,9600.0
-2018-05-14 09:00:00,10455.0
-2018-05-14 10:00:00,10684.0
-2018-05-14 11:00:00,10998.0
-2018-05-14 12:00:00,11206.0
-2018-05-14 13:00:00,11304.0
-2018-05-14 14:00:00,11552.0
-2018-05-14 15:00:00,11913.0
-2018-05-14 16:00:00,12098.0
-2018-05-14 17:00:00,12229.0
-2018-05-14 18:00:00,12242.0
-2018-05-14 19:00:00,12104.0
-2018-05-14 20:00:00,11793.0
-2018-05-14 21:00:00,11464.0
-2018-05-14 22:00:00,11519.0
-2018-05-14 23:00:00,11044.0
-2018-05-15 00:00:00,10361.0
-2018-05-13 01:00:00,8478.0
-2018-05-13 02:00:00,8122.0
-2018-05-13 03:00:00,7884.0
-2018-05-13 04:00:00,7668.0
-2018-05-13 05:00:00,7580.0
-2018-05-13 06:00:00,7542.0
-2018-05-13 07:00:00,7621.0
-2018-05-13 08:00:00,7662.0
-2018-05-13 09:00:00,7917.0
-2018-05-13 10:00:00,8287.0
-2018-05-13 11:00:00,8543.0
-2018-05-13 12:00:00,8611.0
-2018-05-13 13:00:00,8637.0
-2018-05-13 14:00:00,8686.0
-2018-05-13 15:00:00,8658.0
-2018-05-13 16:00:00,8659.0
-2018-05-13 17:00:00,8667.0
-2018-05-13 18:00:00,8654.0
-2018-05-13 19:00:00,8712.0
-2018-05-13 20:00:00,8810.0
-2018-05-13 21:00:00,8879.0
-2018-05-13 22:00:00,9202.0
-2018-05-13 23:00:00,9084.0
-2018-05-14 00:00:00,8677.0
-2018-05-12 01:00:00,8872.0
-2018-05-12 02:00:00,8391.0
-2018-05-12 03:00:00,8145.0
-2018-05-12 04:00:00,7920.0
-2018-05-12 05:00:00,7861.0
-2018-05-12 06:00:00,7920.0
-2018-05-12 07:00:00,8118.0
-2018-05-12 08:00:00,8392.0
-2018-05-12 09:00:00,8880.0
-2018-05-12 10:00:00,9271.0
-2018-05-12 11:00:00,9462.0
-2018-05-12 12:00:00,9605.0
-2018-05-12 13:00:00,9506.0
-2018-05-12 14:00:00,9345.0
-2018-05-12 15:00:00,9269.0
-2018-05-12 16:00:00,9302.0
-2018-05-12 17:00:00,9164.0
-2018-05-12 18:00:00,9060.0
-2018-05-12 19:00:00,9080.0
-2018-05-12 20:00:00,9080.0
-2018-05-12 21:00:00,9181.0
-2018-05-12 22:00:00,9472.0
-2018-05-12 23:00:00,9349.0
-2018-05-13 00:00:00,8946.0
-2018-05-11 01:00:00,9118.0
-2018-05-11 02:00:00,8542.0
-2018-05-11 03:00:00,8192.0
-2018-05-11 04:00:00,7959.0
-2018-05-11 05:00:00,7895.0
-2018-05-11 06:00:00,8072.0
-2018-05-11 07:00:00,8594.0
-2018-05-11 08:00:00,9338.0
-2018-05-11 09:00:00,9999.0
-2018-05-11 10:00:00,10362.0
-2018-05-11 11:00:00,10607.0
-2018-05-11 12:00:00,10720.0
-2018-05-11 13:00:00,10775.0
-2018-05-11 14:00:00,10757.0
-2018-05-11 15:00:00,10742.0
-2018-05-11 16:00:00,10631.0
-2018-05-11 17:00:00,10420.0
-2018-05-11 18:00:00,10297.0
-2018-05-11 19:00:00,10125.0
-2018-05-11 20:00:00,10011.0
-2018-05-11 21:00:00,10039.0
-2018-05-11 22:00:00,10334.0
-2018-05-11 23:00:00,10080.0
-2018-05-12 00:00:00,9470.0
-2018-05-10 01:00:00,9804.0
-2018-05-10 02:00:00,9093.0
-2018-05-10 03:00:00,8671.0
-2018-05-10 04:00:00,8397.0
-2018-05-10 05:00:00,8267.0
-2018-05-10 06:00:00,8394.0
-2018-05-10 07:00:00,8877.0
-2018-05-10 08:00:00,9642.0
-2018-05-10 09:00:00,10509.0
-2018-05-10 10:00:00,10944.0
-2018-05-10 11:00:00,11116.0
-2018-05-10 12:00:00,11394.0
-2018-05-10 13:00:00,11654.0
-2018-05-10 14:00:00,11865.0
-2018-05-10 15:00:00,12098.0
-2018-05-10 16:00:00,12212.0
-2018-05-10 17:00:00,12025.0
-2018-05-10 18:00:00,11823.0
-2018-05-10 19:00:00,11562.0
-2018-05-10 20:00:00,11228.0
-2018-05-10 21:00:00,10978.0
-2018-05-10 22:00:00,11125.0
-2018-05-10 23:00:00,10709.0
-2018-05-11 00:00:00,9897.0
-2018-05-09 01:00:00,9696.0
-2018-05-09 02:00:00,9061.0
-2018-05-09 03:00:00,8665.0
-2018-05-09 04:00:00,8405.0
-2018-05-09 05:00:00,8296.0
-2018-05-09 06:00:00,8449.0
-2018-05-09 07:00:00,8979.0
-2018-05-09 08:00:00,9902.0
-2018-05-09 09:00:00,10725.0
-2018-05-09 10:00:00,10926.0
-2018-05-09 11:00:00,11171.0
-2018-05-09 12:00:00,11487.0
-2018-05-09 13:00:00,11747.0
-2018-05-09 14:00:00,12062.0
-2018-05-09 15:00:00,12456.0
-2018-05-09 16:00:00,12526.0
-2018-05-09 17:00:00,12697.0
-2018-05-09 18:00:00,12943.0
-2018-05-09 19:00:00,12760.0
-2018-05-09 20:00:00,12495.0
-2018-05-09 21:00:00,12201.0
-2018-05-09 22:00:00,12171.0
-2018-05-09 23:00:00,11650.0
-2018-05-10 00:00:00,10707.0
-2018-05-08 01:00:00,9176.0
-2018-05-08 02:00:00,8666.0
-2018-05-08 03:00:00,8331.0
-2018-05-08 04:00:00,8111.0
-2018-05-08 05:00:00,8048.0
-2018-05-08 06:00:00,8191.0
-2018-05-08 07:00:00,8684.0
-2018-05-08 08:00:00,9504.0
-2018-05-08 09:00:00,10370.0
-2018-05-08 10:00:00,10914.0
-2018-05-08 11:00:00,11337.0
-2018-05-08 12:00:00,11712.0
-2018-05-08 13:00:00,12002.0
-2018-05-08 14:00:00,12308.0
-2018-05-08 15:00:00,12627.0
-2018-05-08 16:00:00,12868.0
-2018-05-08 17:00:00,13018.0
-2018-05-08 18:00:00,13116.0
-2018-05-08 19:00:00,12907.0
-2018-05-08 20:00:00,12336.0
-2018-05-08 21:00:00,11973.0
-2018-05-08 22:00:00,12018.0
-2018-05-08 23:00:00,11506.0
-2018-05-09 00:00:00,10583.0
-2018-05-07 01:00:00,8245.0
-2018-05-07 02:00:00,7880.0
-2018-05-07 03:00:00,7627.0
-2018-05-07 04:00:00,7509.0
-2018-05-07 05:00:00,7532.0
-2018-05-07 06:00:00,7809.0
-2018-05-07 07:00:00,8344.0
-2018-05-07 08:00:00,9219.0
-2018-05-07 09:00:00,10054.0
-2018-05-07 10:00:00,10485.0
-2018-05-07 11:00:00,10803.0
-2018-05-07 12:00:00,11114.0
-2018-05-07 13:00:00,11286.0
-2018-05-07 14:00:00,11388.0
-2018-05-07 15:00:00,11552.0
-2018-05-07 16:00:00,11626.0
-2018-05-07 17:00:00,11665.0
-2018-05-07 18:00:00,11675.0
-2018-05-07 19:00:00,11595.0
-2018-05-07 20:00:00,11310.0
-2018-05-07 21:00:00,11061.0
-2018-05-07 22:00:00,11211.0
-2018-05-07 23:00:00,10785.0
-2018-05-08 00:00:00,9985.0
-2018-05-06 01:00:00,8777.0
-2018-05-06 02:00:00,8259.0
-2018-05-06 03:00:00,7900.0
-2018-05-06 04:00:00,7665.0
-2018-05-06 05:00:00,7472.0
-2018-05-06 06:00:00,7418.0
-2018-05-06 07:00:00,7438.0
-2018-05-06 08:00:00,7425.0
-2018-05-06 09:00:00,7683.0
-2018-05-06 10:00:00,8081.0
-2018-05-06 11:00:00,8461.0
-2018-05-06 12:00:00,8787.0
-2018-05-06 13:00:00,8992.0
-2018-05-06 14:00:00,9199.0
-2018-05-06 15:00:00,9280.0
-2018-05-06 16:00:00,9393.0
-2018-05-06 17:00:00,9484.0
-2018-05-06 18:00:00,9520.0
-2018-05-06 19:00:00,9529.0
-2018-05-06 20:00:00,9382.0
-2018-05-06 21:00:00,9289.0
-2018-05-06 22:00:00,9531.0
-2018-05-06 23:00:00,9321.0
-2018-05-07 00:00:00,8763.0
-2018-05-05 01:00:00,9356.0
-2018-05-05 02:00:00,8770.0
-2018-05-05 03:00:00,8365.0
-2018-05-05 04:00:00,8072.0
-2018-05-05 05:00:00,7901.0
-2018-05-05 06:00:00,7939.0
-2018-05-05 07:00:00,8036.0
-2018-05-05 08:00:00,8188.0
-2018-05-05 09:00:00,8700.0
-2018-05-05 10:00:00,9297.0
-2018-05-05 11:00:00,9744.0
-2018-05-05 12:00:00,10154.0
-2018-05-05 13:00:00,10374.0
-2018-05-05 14:00:00,10537.0
-2018-05-05 15:00:00,10655.0
-2018-05-05 16:00:00,10887.0
-2018-05-05 17:00:00,11085.0
-2018-05-05 18:00:00,11305.0
-2018-05-05 19:00:00,11313.0
-2018-05-05 20:00:00,11063.0
-2018-05-05 21:00:00,10679.0
-2018-05-05 22:00:00,10648.0
-2018-05-05 23:00:00,10156.0
-2018-05-06 00:00:00,9446.0
-2018-05-04 01:00:00,9408.0
-2018-05-04 02:00:00,8913.0
-2018-05-04 03:00:00,8616.0
-2018-05-04 04:00:00,8440.0
-2018-05-04 05:00:00,8361.0
-2018-05-04 06:00:00,8534.0
-2018-05-04 07:00:00,9079.0
-2018-05-04 08:00:00,9883.0
-2018-05-04 09:00:00,10615.0
-2018-05-04 10:00:00,10961.0
-2018-05-04 11:00:00,11134.0
-2018-05-04 12:00:00,11230.0
-2018-05-04 13:00:00,11338.0
-2018-05-04 14:00:00,11465.0
-2018-05-04 15:00:00,11642.0
-2018-05-04 16:00:00,11713.0
-2018-05-04 17:00:00,11725.0
-2018-05-04 18:00:00,11773.0
-2018-05-04 19:00:00,11674.0
-2018-05-04 20:00:00,11386.0
-2018-05-04 21:00:00,11071.0
-2018-05-04 22:00:00,11129.0
-2018-05-04 23:00:00,10798.0
-2018-05-05 00:00:00,10065.0
-2018-05-03 01:00:00,10307.0
-2018-05-03 02:00:00,9648.0
-2018-05-03 03:00:00,9160.0
-2018-05-03 04:00:00,8862.0
-2018-05-03 05:00:00,8776.0
-2018-05-03 06:00:00,8917.0
-2018-05-03 07:00:00,9406.0
-2018-05-03 08:00:00,10244.0
-2018-05-03 09:00:00,10986.0
-2018-05-03 10:00:00,11306.0
-2018-05-03 11:00:00,11612.0
-2018-05-03 12:00:00,11883.0
-2018-05-03 13:00:00,11881.0
-2018-05-03 14:00:00,11937.0
-2018-05-03 15:00:00,12025.0
-2018-05-03 16:00:00,11846.0
-2018-05-03 17:00:00,11547.0
-2018-05-03 18:00:00,11441.0
-2018-05-03 19:00:00,11298.0
-2018-05-03 20:00:00,11080.0
-2018-05-03 21:00:00,11055.0
-2018-05-03 22:00:00,11177.0
-2018-05-03 23:00:00,10788.0
-2018-05-04 00:00:00,10083.0
-2018-05-02 01:00:00,9874.0
-2018-05-02 02:00:00,9313.0
-2018-05-02 03:00:00,8893.0
-2018-05-02 04:00:00,8591.0
-2018-05-02 05:00:00,8459.0
-2018-05-02 06:00:00,8577.0
-2018-05-02 07:00:00,9164.0
-2018-05-02 08:00:00,9990.0
-2018-05-02 09:00:00,10840.0
-2018-05-02 10:00:00,11373.0
-2018-05-02 11:00:00,11752.0
-2018-05-02 12:00:00,12070.0
-2018-05-02 13:00:00,12418.0
-2018-05-02 14:00:00,12731.0
-2018-05-02 15:00:00,13164.0
-2018-05-02 16:00:00,13417.0
-2018-05-02 17:00:00,13545.0
-2018-05-02 18:00:00,13370.0
-2018-05-02 19:00:00,13106.0
-2018-05-02 20:00:00,12898.0
-2018-05-02 21:00:00,12914.0
-2018-05-02 22:00:00,12670.0
-2018-05-02 23:00:00,12055.0
-2018-05-03 00:00:00,11160.0
-2018-05-01 01:00:00,8937.0
-2018-05-01 02:00:00,8411.0
-2018-05-01 03:00:00,8110.0
-2018-05-01 04:00:00,7917.0
-2018-05-01 05:00:00,7844.0
-2018-05-01 06:00:00,8020.0
-2018-05-01 07:00:00,8519.0
-2018-05-01 08:00:00,9293.0
-2018-05-01 09:00:00,10048.0
-2018-05-01 10:00:00,10537.0
-2018-05-01 11:00:00,10896.0
-2018-05-01 12:00:00,11235.0
-2018-05-01 13:00:00,11482.0
-2018-05-01 14:00:00,11667.0
-2018-05-01 15:00:00,11909.0
-2018-05-01 16:00:00,11998.0
-2018-05-01 17:00:00,12011.0
-2018-05-01 18:00:00,11971.0
-2018-05-01 19:00:00,11851.0
-2018-05-01 20:00:00,11609.0
-2018-05-01 21:00:00,11592.0
-2018-05-01 22:00:00,11870.0
-2018-05-01 23:00:00,11448.0
-2018-05-02 00:00:00,10647.0
-2018-04-30 01:00:00,8381.0
-2018-04-30 02:00:00,8098.0
-2018-04-30 03:00:00,7916.0
-2018-04-30 04:00:00,7813.0
-2018-04-30 05:00:00,7975.0
-2018-04-30 06:00:00,8300.0
-2018-04-30 07:00:00,9010.0
-2018-04-30 08:00:00,9799.0
-2018-04-30 09:00:00,10368.0
-2018-04-30 10:00:00,10514.0
-2018-04-30 11:00:00,10676.0
-2018-04-30 12:00:00,10815.0
-2018-04-30 13:00:00,10858.0
-2018-04-30 14:00:00,10905.0
-2018-04-30 15:00:00,10977.0
-2018-04-30 16:00:00,10963.0
-2018-04-30 17:00:00,10867.0
-2018-04-30 18:00:00,10788.0
-2018-04-30 19:00:00,10707.0
-2018-04-30 20:00:00,10491.0
-2018-04-30 21:00:00,10461.0
-2018-04-30 22:00:00,10755.0
-2018-04-30 23:00:00,10358.0
-2018-05-01 00:00:00,9658.0
-2018-04-29 01:00:00,8752.0
-2018-04-29 02:00:00,8403.0
-2018-04-29 03:00:00,8243.0
-2018-04-29 04:00:00,8098.0
-2018-04-29 05:00:00,8087.0
-2018-04-29 06:00:00,8113.0
-2018-04-29 07:00:00,8254.0
-2018-04-29 08:00:00,8231.0
-2018-04-29 09:00:00,8415.0
-2018-04-29 10:00:00,8560.0
-2018-04-29 11:00:00,8705.0
-2018-04-29 12:00:00,8747.0
-2018-04-29 13:00:00,8733.0
-2018-04-29 14:00:00,8713.0
-2018-04-29 15:00:00,8645.0
-2018-04-29 16:00:00,8605.0
-2018-04-29 17:00:00,8547.0
-2018-04-29 18:00:00,8581.0
-2018-04-29 19:00:00,8664.0
-2018-04-29 20:00:00,8696.0
-2018-04-29 21:00:00,8928.0
-2018-04-29 22:00:00,9391.0
-2018-04-29 23:00:00,9228.0
-2018-04-30 00:00:00,8808.0
-2018-04-28 01:00:00,9127.0
-2018-04-28 02:00:00,8698.0
-2018-04-28 03:00:00,8478.0
-2018-04-28 04:00:00,8289.0
-2018-04-28 05:00:00,8281.0
-2018-04-28 06:00:00,8376.0
-2018-04-28 07:00:00,8624.0
-2018-04-28 08:00:00,8806.0
-2018-04-28 09:00:00,9061.0
-2018-04-28 10:00:00,9317.0
-2018-04-28 11:00:00,9466.0
-2018-04-28 12:00:00,9544.0
-2018-04-28 13:00:00,9455.0
-2018-04-28 14:00:00,9331.0
-2018-04-28 15:00:00,9164.0
-2018-04-28 16:00:00,9039.0
-2018-04-28 17:00:00,8901.0
-2018-04-28 18:00:00,8896.0
-2018-04-28 19:00:00,8858.0
-2018-04-28 20:00:00,8908.0
-2018-04-28 21:00:00,9110.0
-2018-04-28 22:00:00,9618.0
-2018-04-28 23:00:00,9491.0
-2018-04-29 00:00:00,9139.0
-2018-04-27 01:00:00,8832.0
-2018-04-27 02:00:00,8399.0
-2018-04-27 03:00:00,8146.0
-2018-04-27 04:00:00,8021.0
-2018-04-27 05:00:00,8015.0
-2018-04-27 06:00:00,8270.0
-2018-04-27 07:00:00,8900.0
-2018-04-27 08:00:00,9617.0
-2018-04-27 09:00:00,10161.0
-2018-04-27 10:00:00,10395.0
-2018-04-27 11:00:00,10491.0
-2018-04-27 12:00:00,10590.0
-2018-04-27 13:00:00,10582.0
-2018-04-27 14:00:00,10581.0
-2018-04-27 15:00:00,10605.0
-2018-04-27 16:00:00,10463.0
-2018-04-27 17:00:00,10312.0
-2018-04-27 18:00:00,10209.0
-2018-04-27 19:00:00,10160.0
-2018-04-27 20:00:00,10232.0
-2018-04-27 21:00:00,10362.0
-2018-04-27 22:00:00,10518.0
-2018-04-27 23:00:00,10251.0
-2018-04-28 00:00:00,9685.0
-2018-04-26 01:00:00,9056.0
-2018-04-26 02:00:00,8720.0
-2018-04-26 03:00:00,8516.0
-2018-04-26 04:00:00,8389.0
-2018-04-26 05:00:00,8435.0
-2018-04-26 06:00:00,8692.0
-2018-04-26 07:00:00,9363.0
-2018-04-26 08:00:00,10095.0
-2018-04-26 09:00:00,10596.0
-2018-04-26 10:00:00,10727.0
-2018-04-26 11:00:00,10693.0
-2018-04-26 12:00:00,10767.0
-2018-04-26 13:00:00,10719.0
-2018-04-26 14:00:00,10722.0
-2018-04-26 15:00:00,10739.0
-2018-04-26 16:00:00,10659.0
-2018-04-26 17:00:00,10542.0
-2018-04-26 18:00:00,10409.0
-2018-04-26 19:00:00,10263.0
-2018-04-26 20:00:00,10077.0
-2018-04-26 21:00:00,10159.0
-2018-04-26 22:00:00,10454.0
-2018-04-26 23:00:00,10082.0
-2018-04-27 00:00:00,9430.0
-2018-04-25 01:00:00,8876.0
-2018-04-25 02:00:00,8474.0
-2018-04-25 03:00:00,8251.0
-2018-04-25 04:00:00,8156.0
-2018-04-25 05:00:00,8156.0
-2018-04-25 06:00:00,8432.0
-2018-04-25 07:00:00,9091.0
-2018-04-25 08:00:00,9872.0
-2018-04-25 09:00:00,10456.0
-2018-04-25 10:00:00,10629.0
-2018-04-25 11:00:00,10708.0
-2018-04-25 12:00:00,10764.0
-2018-04-25 13:00:00,10713.0
-2018-04-25 14:00:00,10643.0
-2018-04-25 15:00:00,10666.0
-2018-04-25 16:00:00,10556.0
-2018-04-25 17:00:00,10437.0
-2018-04-25 18:00:00,10286.0
-2018-04-25 19:00:00,10184.0
-2018-04-25 20:00:00,10037.0
-2018-04-25 21:00:00,10223.0
-2018-04-25 22:00:00,10592.0
-2018-04-25 23:00:00,10251.0
-2018-04-26 00:00:00,9662.0
-2018-04-24 01:00:00,8927.0
-2018-04-24 02:00:00,8519.0
-2018-04-24 03:00:00,8288.0
-2018-04-24 04:00:00,8131.0
-2018-04-24 05:00:00,8104.0
-2018-04-24 06:00:00,8324.0
-2018-04-24 07:00:00,9007.0
-2018-04-24 08:00:00,9785.0
-2018-04-24 09:00:00,10395.0
-2018-04-24 10:00:00,10565.0
-2018-04-24 11:00:00,10621.0
-2018-04-24 12:00:00,10729.0
-2018-04-24 13:00:00,10770.0
-2018-04-24 14:00:00,10811.0
-2018-04-24 15:00:00,10854.0
-2018-04-24 16:00:00,10776.0
-2018-04-24 17:00:00,10689.0
-2018-04-24 18:00:00,10558.0
-2018-04-24 19:00:00,10446.0
-2018-04-24 20:00:00,10207.0
-2018-04-24 21:00:00,10307.0
-2018-04-24 22:00:00,10603.0
-2018-04-24 23:00:00,10176.0
-2018-04-25 00:00:00,9499.0
-2018-04-23 01:00:00,8403.0
-2018-04-23 02:00:00,8158.0
-2018-04-23 03:00:00,8046.0
-2018-04-23 04:00:00,7993.0
-2018-04-23 05:00:00,8108.0
-2018-04-23 06:00:00,8397.0
-2018-04-23 07:00:00,9159.0
-2018-04-23 08:00:00,9916.0
-2018-04-23 09:00:00,10598.0
-2018-04-23 10:00:00,10716.0
-2018-04-23 11:00:00,10763.0
-2018-04-23 12:00:00,10755.0
-2018-04-23 13:00:00,10733.0
-2018-04-23 14:00:00,10702.0
-2018-04-23 15:00:00,10714.0
-2018-04-23 16:00:00,10615.0
-2018-04-23 17:00:00,10506.0
-2018-04-23 18:00:00,10377.0
-2018-04-23 19:00:00,10287.0
-2018-04-23 20:00:00,10198.0
-2018-04-23 21:00:00,10402.0
-2018-04-23 22:00:00,10601.0
-2018-04-23 23:00:00,10194.0
-2018-04-24 00:00:00,9519.0
-2018-04-22 01:00:00,8801.0
-2018-04-22 02:00:00,8429.0
-2018-04-22 03:00:00,8188.0
-2018-04-22 04:00:00,8024.0
-2018-04-22 05:00:00,7973.0
-2018-04-22 06:00:00,7996.0
-2018-04-22 07:00:00,8148.0
-2018-04-22 08:00:00,8204.0
-2018-04-22 09:00:00,8429.0
-2018-04-22 10:00:00,8625.0
-2018-04-22 11:00:00,8727.0
-2018-04-22 12:00:00,8808.0
-2018-04-22 13:00:00,8817.0
-2018-04-22 14:00:00,8773.0
-2018-04-22 15:00:00,8754.0
-2018-04-22 16:00:00,8661.0
-2018-04-22 17:00:00,8627.0
-2018-04-22 18:00:00,8690.0
-2018-04-22 19:00:00,8747.0
-2018-04-22 20:00:00,8792.0
-2018-04-22 21:00:00,9049.0
-2018-04-22 22:00:00,9499.0
-2018-04-22 23:00:00,9305.0
-2018-04-23 00:00:00,8891.0
-2018-04-21 01:00:00,9142.0
-2018-04-21 02:00:00,8801.0
-2018-04-21 03:00:00,8545.0
-2018-04-21 04:00:00,8426.0
-2018-04-21 05:00:00,8357.0
-2018-04-21 06:00:00,8454.0
-2018-04-21 07:00:00,8716.0
-2018-04-21 08:00:00,9022.0
-2018-04-21 09:00:00,9359.0
-2018-04-21 10:00:00,9722.0
-2018-04-21 11:00:00,9866.0
-2018-04-21 12:00:00,9968.0
-2018-04-21 13:00:00,9857.0
-2018-04-21 14:00:00,9733.0
-2018-04-21 15:00:00,9509.0
-2018-04-21 16:00:00,9365.0
-2018-04-21 17:00:00,9230.0
-2018-04-21 18:00:00,9191.0
-2018-04-21 19:00:00,9152.0
-2018-04-21 20:00:00,9268.0
-2018-04-21 21:00:00,9600.0
-2018-04-21 22:00:00,9820.0
-2018-04-21 23:00:00,9649.0
-2018-04-22 00:00:00,9199.0
-2018-04-20 01:00:00,9584.0
-2018-04-20 02:00:00,9240.0
-2018-04-20 03:00:00,9053.0
-2018-04-20 04:00:00,8930.0
-2018-04-20 05:00:00,8959.0
-2018-04-20 06:00:00,9236.0
-2018-04-20 07:00:00,9932.0
-2018-04-20 08:00:00,10661.0
-2018-04-20 09:00:00,11084.0
-2018-04-20 10:00:00,11112.0
-2018-04-20 11:00:00,11016.0
-2018-04-20 12:00:00,10964.0
-2018-04-20 13:00:00,10851.0
-2018-04-20 14:00:00,10775.0
-2018-04-20 15:00:00,10744.0
-2018-04-20 16:00:00,10618.0
-2018-04-20 17:00:00,10420.0
-2018-04-20 18:00:00,10275.0
-2018-04-20 19:00:00,10109.0
-2018-04-20 20:00:00,9984.0
-2018-04-20 21:00:00,10159.0
-2018-04-20 22:00:00,10474.0
-2018-04-20 23:00:00,10199.0
-2018-04-21 00:00:00,9695.0
-2018-04-19 01:00:00,10210.0
-2018-04-19 02:00:00,9845.0
-2018-04-19 03:00:00,9597.0
-2018-04-19 04:00:00,9447.0
-2018-04-19 05:00:00,9376.0
-2018-04-19 06:00:00,9613.0
-2018-04-19 07:00:00,10296.0
-2018-04-19 08:00:00,11058.0
-2018-04-19 09:00:00,11436.0
-2018-04-19 10:00:00,11531.0
-2018-04-19 11:00:00,11492.0
-2018-04-19 12:00:00,11447.0
-2018-04-19 13:00:00,11335.0
-2018-04-19 14:00:00,11194.0
-2018-04-19 15:00:00,11107.0
-2018-04-19 16:00:00,10926.0
-2018-04-19 17:00:00,10726.0
-2018-04-19 18:00:00,10548.0
-2018-04-19 19:00:00,10450.0
-2018-04-19 20:00:00,10372.0
-2018-04-19 21:00:00,10609.0
-2018-04-19 22:00:00,10949.0
-2018-04-19 23:00:00,10686.0
-2018-04-20 00:00:00,10111.0
-2018-04-18 01:00:00,9935.0
-2018-04-18 02:00:00,9624.0
-2018-04-18 03:00:00,9451.0
-2018-04-18 04:00:00,9315.0
-2018-04-18 05:00:00,9301.0
-2018-04-18 06:00:00,9596.0
-2018-04-18 07:00:00,10323.0
-2018-04-18 08:00:00,11130.0
-2018-04-18 09:00:00,11684.0
-2018-04-18 10:00:00,11896.0
-2018-04-18 11:00:00,12044.0
-2018-04-18 12:00:00,12111.0
-2018-04-18 13:00:00,12160.0
-2018-04-18 14:00:00,12137.0
-2018-04-18 15:00:00,12164.0
-2018-04-18 16:00:00,12042.0
-2018-04-18 17:00:00,11952.0
-2018-04-18 18:00:00,11909.0
-2018-04-18 19:00:00,11942.0
-2018-04-18 20:00:00,11870.0
-2018-04-18 21:00:00,12009.0
-2018-04-18 22:00:00,11923.0
-2018-04-18 23:00:00,11455.0
-2018-04-19 00:00:00,10805.0
-2018-04-17 01:00:00,10266.0
-2018-04-17 02:00:00,9843.0
-2018-04-17 03:00:00,9677.0
-2018-04-17 04:00:00,9537.0
-2018-04-17 05:00:00,9582.0
-2018-04-17 06:00:00,9857.0
-2018-04-17 07:00:00,10605.0
-2018-04-17 08:00:00,11386.0
-2018-04-17 09:00:00,11792.0
-2018-04-17 10:00:00,11889.0
-2018-04-17 11:00:00,11859.0
-2018-04-17 12:00:00,11846.0
-2018-04-17 13:00:00,11705.0
-2018-04-17 14:00:00,11556.0
-2018-04-17 15:00:00,11437.0
-2018-04-17 16:00:00,11262.0
-2018-04-17 17:00:00,11035.0
-2018-04-17 18:00:00,10931.0
-2018-04-17 19:00:00,10848.0
-2018-04-17 20:00:00,10758.0
-2018-04-17 21:00:00,11112.0
-2018-04-17 22:00:00,11462.0
-2018-04-17 23:00:00,11163.0
-2018-04-18 00:00:00,10576.0
-2018-04-16 01:00:00,9691.0
-2018-04-16 02:00:00,9436.0
-2018-04-16 03:00:00,9293.0
-2018-04-16 04:00:00,9241.0
-2018-04-16 05:00:00,9360.0
-2018-04-16 06:00:00,9709.0
-2018-04-16 07:00:00,10482.0
-2018-04-16 08:00:00,11432.0
-2018-04-16 09:00:00,12079.0
-2018-04-16 10:00:00,12327.0
-2018-04-16 11:00:00,12355.0
-2018-04-16 12:00:00,12378.0
-2018-04-16 13:00:00,12305.0
-2018-04-16 14:00:00,12277.0
-2018-04-16 15:00:00,12272.0
-2018-04-16 16:00:00,12174.0
-2018-04-16 17:00:00,12073.0
-2018-04-16 18:00:00,12028.0
-2018-04-16 19:00:00,12009.0
-2018-04-16 20:00:00,11873.0
-2018-04-16 21:00:00,12005.0
-2018-04-16 22:00:00,12019.0
-2018-04-16 23:00:00,11552.0
-2018-04-17 00:00:00,10874.0
-2018-04-15 01:00:00,9604.0
-2018-04-15 02:00:00,9193.0
-2018-04-15 03:00:00,9016.0
-2018-04-15 04:00:00,8823.0
-2018-04-15 05:00:00,8796.0
-2018-04-15 06:00:00,8819.0
-2018-04-15 07:00:00,9013.0
-2018-04-15 08:00:00,9223.0
-2018-04-15 09:00:00,9414.0
-2018-04-15 10:00:00,9863.0
-2018-04-15 11:00:00,10136.0
-2018-04-15 12:00:00,10326.0
-2018-04-15 13:00:00,10319.0
-2018-04-15 14:00:00,10181.0
-2018-04-15 15:00:00,10121.0
-2018-04-15 16:00:00,10044.0
-2018-04-15 17:00:00,10076.0
-2018-04-15 18:00:00,10134.0
-2018-04-15 19:00:00,10292.0
-2018-04-15 20:00:00,10391.0
-2018-04-15 21:00:00,10716.0
-2018-04-15 22:00:00,10800.0
-2018-04-15 23:00:00,10544.0
-2018-04-16 00:00:00,10117.0
-2018-04-14 01:00:00,9498.0
-2018-04-14 02:00:00,9161.0
-2018-04-14 03:00:00,8948.0
-2018-04-14 04:00:00,8839.0
-2018-04-14 05:00:00,8712.0
-2018-04-14 06:00:00,8838.0
-2018-04-14 07:00:00,9098.0
-2018-04-14 08:00:00,9537.0
-2018-04-14 09:00:00,9880.0
-2018-04-14 10:00:00,10282.0
-2018-04-14 11:00:00,10612.0
-2018-04-14 12:00:00,10709.0
-2018-04-14 13:00:00,10673.0
-2018-04-14 14:00:00,10529.0
-2018-04-14 15:00:00,10377.0
-2018-04-14 16:00:00,10352.0
-2018-04-14 17:00:00,10330.0
-2018-04-14 18:00:00,10450.0
-2018-04-14 19:00:00,10494.0
-2018-04-14 20:00:00,10595.0
-2018-04-14 21:00:00,10772.0
-2018-04-14 22:00:00,10688.0
-2018-04-14 23:00:00,10473.0
-2018-04-15 00:00:00,10034.0
-2018-04-13 01:00:00,9067.0
-2018-04-13 02:00:00,8703.0
-2018-04-13 03:00:00,8472.0
-2018-04-13 04:00:00,8363.0
-2018-04-13 05:00:00,8364.0
-2018-04-13 06:00:00,8575.0
-2018-04-13 07:00:00,9260.0
-2018-04-13 08:00:00,10101.0
-2018-04-13 09:00:00,10576.0
-2018-04-13 10:00:00,10811.0
-2018-04-13 11:00:00,10913.0
-2018-04-13 12:00:00,11081.0
-2018-04-13 13:00:00,11136.0
-2018-04-13 14:00:00,11149.0
-2018-04-13 15:00:00,11207.0
-2018-04-13 16:00:00,11169.0
-2018-04-13 17:00:00,10954.0
-2018-04-13 18:00:00,10929.0
-2018-04-13 19:00:00,10792.0
-2018-04-13 20:00:00,10780.0
-2018-04-13 21:00:00,11004.0
-2018-04-13 22:00:00,10961.0
-2018-04-13 23:00:00,10632.0
-2018-04-14 00:00:00,10033.0
-2018-04-12 01:00:00,9111.0
-2018-04-12 02:00:00,8749.0
-2018-04-12 03:00:00,8502.0
-2018-04-12 04:00:00,8366.0
-2018-04-12 05:00:00,8333.0
-2018-04-12 06:00:00,8536.0
-2018-04-12 07:00:00,9228.0
-2018-04-12 08:00:00,10053.0
-2018-04-12 09:00:00,10523.0
-2018-04-12 10:00:00,10808.0
-2018-04-12 11:00:00,10781.0
-2018-04-12 12:00:00,10867.0
-2018-04-12 13:00:00,10882.0
-2018-04-12 14:00:00,10877.0
-2018-04-12 15:00:00,10924.0
-2018-04-12 16:00:00,10798.0
-2018-04-12 17:00:00,10579.0
-2018-04-12 18:00:00,10404.0
-2018-04-12 19:00:00,10215.0
-2018-04-12 20:00:00,10065.0
-2018-04-12 21:00:00,10464.0
-2018-04-12 22:00:00,10604.0
-2018-04-12 23:00:00,10223.0
-2018-04-13 00:00:00,9645.0
-2018-04-11 01:00:00,9619.0
-2018-04-11 02:00:00,9245.0
-2018-04-11 03:00:00,9004.0
-2018-04-11 04:00:00,8853.0
-2018-04-11 05:00:00,8890.0
-2018-04-11 06:00:00,9129.0
-2018-04-11 07:00:00,9916.0
-2018-04-11 08:00:00,10760.0
-2018-04-11 09:00:00,11171.0
-2018-04-11 10:00:00,11210.0
-2018-04-11 11:00:00,11139.0
-2018-04-11 12:00:00,11084.0
-2018-04-11 13:00:00,10997.0
-2018-04-11 14:00:00,10883.0
-2018-04-11 15:00:00,10875.0
-2018-04-11 16:00:00,10769.0
-2018-04-11 17:00:00,10636.0
-2018-04-11 18:00:00,10525.0
-2018-04-11 19:00:00,10466.0
-2018-04-11 20:00:00,10446.0
-2018-04-11 21:00:00,10784.0
-2018-04-11 22:00:00,10779.0
-2018-04-11 23:00:00,10361.0
-2018-04-12 00:00:00,9774.0
-2018-04-10 01:00:00,9974.0
-2018-04-10 02:00:00,9589.0
-2018-04-10 03:00:00,9430.0
-2018-04-10 04:00:00,9337.0
-2018-04-10 05:00:00,9348.0
-2018-04-10 06:00:00,9650.0
-2018-04-10 07:00:00,10388.0
-2018-04-10 08:00:00,11255.0
-2018-04-10 09:00:00,11657.0
-2018-04-10 10:00:00,11650.0
-2018-04-10 11:00:00,11552.0
-2018-04-10 12:00:00,11492.0
-2018-04-10 13:00:00,11360.0
-2018-04-10 14:00:00,11228.0
-2018-04-10 15:00:00,11221.0
-2018-04-10 16:00:00,11080.0
-2018-04-10 17:00:00,10977.0
-2018-04-10 18:00:00,10906.0
-2018-04-10 19:00:00,10849.0
-2018-04-10 20:00:00,10831.0
-2018-04-10 21:00:00,11166.0
-2018-04-10 22:00:00,11257.0
-2018-04-10 23:00:00,10820.0
-2018-04-11 00:00:00,10204.0
-2018-04-09 01:00:00,9427.0
-2018-04-09 02:00:00,9184.0
-2018-04-09 03:00:00,9047.0
-2018-04-09 04:00:00,9006.0
-2018-04-09 05:00:00,9067.0
-2018-04-09 06:00:00,9352.0
-2018-04-09 07:00:00,10139.0
-2018-04-09 08:00:00,11058.0
-2018-04-09 09:00:00,11612.0
-2018-04-09 10:00:00,11824.0
-2018-04-09 11:00:00,11858.0
-2018-04-09 12:00:00,11855.0
-2018-04-09 13:00:00,11822.0
-2018-04-09 14:00:00,11802.0
-2018-04-09 15:00:00,11766.0
-2018-04-09 16:00:00,11641.0
-2018-04-09 17:00:00,11579.0
-2018-04-09 18:00:00,11505.0
-2018-04-09 19:00:00,11465.0
-2018-04-09 20:00:00,11399.0
-2018-04-09 21:00:00,11634.0
-2018-04-09 22:00:00,11637.0
-2018-04-09 23:00:00,11192.0
-2018-04-10 00:00:00,10510.0
-2018-04-08 01:00:00,9691.0
-2018-04-08 02:00:00,9396.0
-2018-04-08 03:00:00,9210.0
-2018-04-08 04:00:00,9116.0
-2018-04-08 05:00:00,9073.0
-2018-04-08 06:00:00,9148.0
-2018-04-08 07:00:00,9324.0
-2018-04-08 08:00:00,9471.0
-2018-04-08 09:00:00,9461.0
-2018-04-08 10:00:00,9569.0
-2018-04-08 11:00:00,9657.0
-2018-04-08 12:00:00,9599.0
-2018-04-08 13:00:00,9612.0
-2018-04-08 14:00:00,9529.0
-2018-04-08 15:00:00,9483.0
-2018-04-08 16:00:00,9399.0
-2018-04-08 17:00:00,9327.0
-2018-04-08 18:00:00,9482.0
-2018-04-08 19:00:00,9649.0
-2018-04-08 20:00:00,9934.0
-2018-04-08 21:00:00,10397.0
-2018-04-08 22:00:00,10516.0
-2018-04-08 23:00:00,10212.0
-2018-04-09 00:00:00,9774.0
-2018-04-07 01:00:00,10379.0
-2018-04-07 02:00:00,9992.0
-2018-04-07 03:00:00,9774.0
-2018-04-07 04:00:00,9625.0
-2018-04-07 05:00:00,9602.0
-2018-04-07 06:00:00,9723.0
-2018-04-07 07:00:00,10042.0
-2018-04-07 08:00:00,10355.0
-2018-04-07 09:00:00,10570.0
-2018-04-07 10:00:00,10742.0
-2018-04-07 11:00:00,10811.0
-2018-04-07 12:00:00,10786.0
-2018-04-07 13:00:00,10675.0
-2018-04-07 14:00:00,10502.0
-2018-04-07 15:00:00,10205.0
-2018-04-07 16:00:00,10019.0
-2018-04-07 17:00:00,9812.0
-2018-04-07 18:00:00,9730.0
-2018-04-07 19:00:00,9706.0
-2018-04-07 20:00:00,9787.0
-2018-04-07 21:00:00,10293.0
-2018-04-07 22:00:00,10609.0
-2018-04-07 23:00:00,10416.0
-2018-04-08 00:00:00,10036.0
-2018-04-06 01:00:00,9943.0
-2018-04-06 02:00:00,9565.0
-2018-04-06 03:00:00,9334.0
-2018-04-06 04:00:00,9180.0
-2018-04-06 05:00:00,9177.0
-2018-04-06 06:00:00,9411.0
-2018-04-06 07:00:00,10073.0
-2018-04-06 08:00:00,10993.0
-2018-04-06 09:00:00,11501.0
-2018-04-06 10:00:00,11787.0
-2018-04-06 11:00:00,11913.0
-2018-04-06 12:00:00,11887.0
-2018-04-06 13:00:00,11785.0
-2018-04-06 14:00:00,11855.0
-2018-04-06 15:00:00,11899.0
-2018-04-06 16:00:00,11767.0
-2018-04-06 17:00:00,11512.0
-2018-04-06 18:00:00,11371.0
-2018-04-06 19:00:00,11315.0
-2018-04-06 20:00:00,11322.0
-2018-04-06 21:00:00,11646.0
-2018-04-06 22:00:00,11719.0
-2018-04-06 23:00:00,11446.0
-2018-04-07 00:00:00,10889.0
-2018-04-05 01:00:00,10243.0
-2018-04-05 02:00:00,9865.0
-2018-04-05 03:00:00,9660.0
-2018-04-05 04:00:00,9541.0
-2018-04-05 05:00:00,9562.0
-2018-04-05 06:00:00,9777.0
-2018-04-05 07:00:00,10505.0
-2018-04-05 08:00:00,11493.0
-2018-04-05 09:00:00,11831.0
-2018-04-05 10:00:00,11856.0
-2018-04-05 11:00:00,11725.0
-2018-04-05 12:00:00,11649.0
-2018-04-05 13:00:00,11540.0
-2018-04-05 14:00:00,11376.0
-2018-04-05 15:00:00,11353.0
-2018-04-05 16:00:00,11295.0
-2018-04-05 17:00:00,11272.0
-2018-04-05 18:00:00,11313.0
-2018-04-05 19:00:00,11408.0
-2018-04-05 20:00:00,11381.0
-2018-04-05 21:00:00,11680.0
-2018-04-05 22:00:00,11620.0
-2018-04-05 23:00:00,11223.0
-2018-04-06 00:00:00,10556.0
-2018-04-04 01:00:00,10014.0
-2018-04-04 02:00:00,9669.0
-2018-04-04 03:00:00,9463.0
-2018-04-04 04:00:00,9415.0
-2018-04-04 05:00:00,9471.0
-2018-04-04 06:00:00,9811.0
-2018-04-04 07:00:00,10528.0
-2018-04-04 08:00:00,11462.0
-2018-04-04 09:00:00,11957.0
-2018-04-04 10:00:00,12104.0
-2018-04-04 11:00:00,12013.0
-2018-04-04 12:00:00,12020.0
-2018-04-04 13:00:00,11975.0
-2018-04-04 14:00:00,11900.0
-2018-04-04 15:00:00,11922.0
-2018-04-04 16:00:00,11829.0
-2018-04-04 17:00:00,11658.0
-2018-04-04 18:00:00,11568.0
-2018-04-04 19:00:00,11499.0
-2018-04-04 20:00:00,11428.0
-2018-04-04 21:00:00,11796.0
-2018-04-04 22:00:00,11919.0
-2018-04-04 23:00:00,11501.0
-2018-04-05 00:00:00,10826.0
-2018-04-03 01:00:00,9577.0
-2018-04-03 02:00:00,9171.0
-2018-04-03 03:00:00,8956.0
-2018-04-03 04:00:00,8841.0
-2018-04-03 05:00:00,8800.0
-2018-04-03 06:00:00,9042.0
-2018-04-03 07:00:00,9745.0
-2018-04-03 08:00:00,10768.0
-2018-04-03 09:00:00,11354.0
-2018-04-03 10:00:00,11628.0
-2018-04-03 11:00:00,11712.0
-2018-04-03 12:00:00,11832.0
-2018-04-03 13:00:00,11859.0
-2018-04-03 14:00:00,11782.0
-2018-04-03 15:00:00,11806.0
-2018-04-03 16:00:00,11763.0
-2018-04-03 17:00:00,11667.0
-2018-04-03 18:00:00,11642.0
-2018-04-03 19:00:00,11656.0
-2018-04-03 20:00:00,11631.0
-2018-04-03 21:00:00,11820.0
-2018-04-03 22:00:00,11676.0
-2018-04-03 23:00:00,11185.0
-2018-04-04 00:00:00,10577.0
-2018-04-02 01:00:00,9259.0
-2018-04-02 02:00:00,9073.0
-2018-04-02 03:00:00,8960.0
-2018-04-02 04:00:00,8889.0
-2018-04-02 05:00:00,9056.0
-2018-04-02 06:00:00,9383.0
-2018-04-02 07:00:00,10172.0
-2018-04-02 08:00:00,11112.0
-2018-04-02 09:00:00,11557.0
-2018-04-02 10:00:00,11656.0
-2018-04-02 11:00:00,11504.0
-2018-04-02 12:00:00,11478.0
-2018-04-02 13:00:00,11431.0
-2018-04-02 14:00:00,11345.0
-2018-04-02 15:00:00,11293.0
-2018-04-02 16:00:00,11211.0
-2018-04-02 17:00:00,11031.0
-2018-04-02 18:00:00,10900.0
-2018-04-02 19:00:00,10828.0
-2018-04-02 20:00:00,10885.0
-2018-04-02 21:00:00,11345.0
-2018-04-02 22:00:00,11300.0
-2018-04-02 23:00:00,10903.0
-2018-04-03 00:00:00,10225.0
-2018-04-01 01:00:00,9127.0
-2018-04-01 02:00:00,8829.0
-2018-04-01 03:00:00,8632.0
-2018-04-01 04:00:00,8571.0
-2018-04-01 05:00:00,8543.0
-2018-04-01 06:00:00,8691.0
-2018-04-01 07:00:00,8881.0
-2018-04-01 08:00:00,9055.0
-2018-04-01 09:00:00,9050.0
-2018-04-01 10:00:00,9201.0
-2018-04-01 11:00:00,9348.0
-2018-04-01 12:00:00,9390.0
-2018-04-01 13:00:00,9338.0
-2018-04-01 14:00:00,9194.0
-2018-04-01 15:00:00,9111.0
-2018-04-01 16:00:00,9049.0
-2018-04-01 17:00:00,9027.0
-2018-04-01 18:00:00,9056.0
-2018-04-01 19:00:00,9192.0
-2018-04-01 20:00:00,9454.0
-2018-04-01 21:00:00,9995.0
-2018-04-01 22:00:00,10172.0
-2018-04-01 23:00:00,9983.0
-2018-04-02 00:00:00,9660.0
-2018-03-31 01:00:00,9096.0
-2018-03-31 02:00:00,8768.0
-2018-03-31 03:00:00,8551.0
-2018-03-31 04:00:00,8467.0
-2018-03-31 05:00:00,8382.0
-2018-03-31 06:00:00,8468.0
-2018-03-31 07:00:00,8666.0
-2018-03-31 08:00:00,9106.0
-2018-03-31 09:00:00,9383.0
-2018-03-31 10:00:00,9918.0
-2018-03-31 11:00:00,10099.0
-2018-03-31 12:00:00,10193.0
-2018-03-31 13:00:00,10095.0
-2018-03-31 14:00:00,9817.0
-2018-03-31 15:00:00,9583.0
-2018-03-31 16:00:00,9394.0
-2018-03-31 17:00:00,9228.0
-2018-03-31 18:00:00,9152.0
-2018-03-31 19:00:00,9214.0
-2018-03-31 20:00:00,9325.0
-2018-03-31 21:00:00,9850.0
-2018-03-31 22:00:00,10016.0
-2018-03-31 23:00:00,9857.0
-2018-04-01 00:00:00,9556.0
-2018-03-30 01:00:00,9512.0
-2018-03-30 02:00:00,9118.0
-2018-03-30 03:00:00,8835.0
-2018-03-30 04:00:00,8705.0
-2018-03-30 05:00:00,8693.0
-2018-03-30 06:00:00,8883.0
-2018-03-30 07:00:00,9384.0
-2018-03-30 08:00:00,10022.0
-2018-03-30 09:00:00,10298.0
-2018-03-30 10:00:00,10516.0
-2018-03-30 11:00:00,10521.0
-2018-03-30 12:00:00,10434.0
-2018-03-30 13:00:00,10282.0
-2018-03-30 14:00:00,10104.0
-2018-03-30 15:00:00,9991.0
-2018-03-30 16:00:00,9852.0
-2018-03-30 17:00:00,9727.0
-2018-03-30 18:00:00,9670.0
-2018-03-30 19:00:00,9733.0
-2018-03-30 20:00:00,9822.0
-2018-03-30 21:00:00,10154.0
-2018-03-30 22:00:00,10193.0
-2018-03-30 23:00:00,9973.0
-2018-03-31 00:00:00,9545.0
-2018-03-29 01:00:00,9299.0
-2018-03-29 02:00:00,8897.0
-2018-03-29 03:00:00,8664.0
-2018-03-29 04:00:00,8522.0
-2018-03-29 05:00:00,8513.0
-2018-03-29 06:00:00,8769.0
-2018-03-29 07:00:00,9317.0
-2018-03-29 08:00:00,10247.0
-2018-03-29 09:00:00,10702.0
-2018-03-29 10:00:00,10991.0
-2018-03-29 11:00:00,11067.0
-2018-03-29 12:00:00,11078.0
-2018-03-29 13:00:00,11030.0
-2018-03-29 14:00:00,10994.0
-2018-03-29 15:00:00,10994.0
-2018-03-29 16:00:00,10936.0
-2018-03-29 17:00:00,10866.0
-2018-03-29 18:00:00,10845.0
-2018-03-29 19:00:00,10804.0
-2018-03-29 20:00:00,10707.0
-2018-03-29 21:00:00,11048.0
-2018-03-29 22:00:00,11009.0
-2018-03-29 23:00:00,10674.0
-2018-03-30 00:00:00,10095.0
-2018-03-28 01:00:00,9485.0
-2018-03-28 02:00:00,9094.0
-2018-03-28 03:00:00,8894.0
-2018-03-28 04:00:00,8723.0
-2018-03-28 05:00:00,8699.0
-2018-03-28 06:00:00,8953.0
-2018-03-28 07:00:00,9583.0
-2018-03-28 08:00:00,10483.0
-2018-03-28 09:00:00,10905.0
-2018-03-28 10:00:00,11129.0
-2018-03-28 11:00:00,11133.0
-2018-03-28 12:00:00,11099.0
-2018-03-28 13:00:00,10976.0
-2018-03-28 14:00:00,10911.0
-2018-03-28 15:00:00,10847.0
-2018-03-28 16:00:00,10710.0
-2018-03-28 17:00:00,10567.0
-2018-03-28 18:00:00,10473.0
-2018-03-28 19:00:00,10490.0
-2018-03-28 20:00:00,10478.0
-2018-03-28 21:00:00,10890.0
-2018-03-28 22:00:00,10823.0
-2018-03-28 23:00:00,10435.0
-2018-03-29 00:00:00,9866.0
-2018-03-27 01:00:00,9560.0
-2018-03-27 02:00:00,9152.0
-2018-03-27 03:00:00,8890.0
-2018-03-27 04:00:00,8743.0
-2018-03-27 05:00:00,8650.0
-2018-03-27 06:00:00,8878.0
-2018-03-27 07:00:00,9469.0
-2018-03-27 08:00:00,10402.0
-2018-03-27 09:00:00,10904.0
-2018-03-27 10:00:00,11133.0
-2018-03-27 11:00:00,11260.0
-2018-03-27 12:00:00,11356.0
-2018-03-27 13:00:00,11297.0
-2018-03-27 14:00:00,11193.0
-2018-03-27 15:00:00,11174.0
-2018-03-27 16:00:00,11099.0
-2018-03-27 17:00:00,10990.0
-2018-03-27 18:00:00,10909.0
-2018-03-27 19:00:00,10860.0
-2018-03-27 20:00:00,10801.0
-2018-03-27 21:00:00,11085.0
-2018-03-27 22:00:00,10973.0
-2018-03-27 23:00:00,10604.0
-2018-03-28 00:00:00,10034.0
-2018-03-26 01:00:00,9554.0
-2018-03-26 02:00:00,9289.0
-2018-03-26 03:00:00,9157.0
-2018-03-26 04:00:00,9128.0
-2018-03-26 05:00:00,9168.0
-2018-03-26 06:00:00,9462.0
-2018-03-26 07:00:00,10198.0
-2018-03-26 08:00:00,11165.0
-2018-03-26 09:00:00,11549.0
-2018-03-26 10:00:00,11606.0
-2018-03-26 11:00:00,11470.0
-2018-03-26 12:00:00,11410.0
-2018-03-26 13:00:00,11365.0
-2018-03-26 14:00:00,11271.0
-2018-03-26 15:00:00,11212.0
-2018-03-26 16:00:00,11112.0
-2018-03-26 17:00:00,11023.0
-2018-03-26 18:00:00,10964.0
-2018-03-26 19:00:00,10937.0
-2018-03-26 20:00:00,10944.0
-2018-03-26 21:00:00,11234.0
-2018-03-26 22:00:00,11061.0
-2018-03-26 23:00:00,10669.0
-2018-03-27 00:00:00,10111.0
-2018-03-25 01:00:00,9590.0
-2018-03-25 02:00:00,9321.0
-2018-03-25 03:00:00,9096.0
-2018-03-25 04:00:00,8993.0
-2018-03-25 05:00:00,9047.0
-2018-03-25 06:00:00,9113.0
-2018-03-25 07:00:00,9289.0
-2018-03-25 08:00:00,9569.0
-2018-03-25 09:00:00,9535.0
-2018-03-25 10:00:00,9687.0
-2018-03-25 11:00:00,9716.0
-2018-03-25 12:00:00,9715.0
-2018-03-25 13:00:00,9699.0
-2018-03-25 14:00:00,9624.0
-2018-03-25 15:00:00,9501.0
-2018-03-25 16:00:00,9373.0
-2018-03-25 17:00:00,9354.0
-2018-03-25 18:00:00,9394.0
-2018-03-25 19:00:00,9527.0
-2018-03-25 20:00:00,9678.0
-2018-03-25 21:00:00,10322.0
-2018-03-25 22:00:00,10488.0
-2018-03-25 23:00:00,10265.0
-2018-03-26 00:00:00,9908.0
-2018-03-24 01:00:00,9954.0
-2018-03-24 02:00:00,9545.0
-2018-03-24 03:00:00,9230.0
-2018-03-24 04:00:00,9084.0
-2018-03-24 05:00:00,9007.0
-2018-03-24 06:00:00,9157.0
-2018-03-24 07:00:00,9363.0
-2018-03-24 08:00:00,9912.0
-2018-03-24 09:00:00,10132.0
-2018-03-24 10:00:00,10549.0
-2018-03-24 11:00:00,10782.0
-2018-03-24 12:00:00,10881.0
-2018-03-24 13:00:00,10902.0
-2018-03-24 14:00:00,10737.0
-2018-03-24 15:00:00,10544.0
-2018-03-24 16:00:00,10411.0
-2018-03-24 17:00:00,10252.0
-2018-03-24 18:00:00,10221.0
-2018-03-24 19:00:00,10266.0
-2018-03-24 20:00:00,10301.0
-2018-03-24 21:00:00,10657.0
-2018-03-24 22:00:00,10684.0
-2018-03-24 23:00:00,10459.0
-2018-03-25 00:00:00,10085.0
-2018-03-23 01:00:00,9774.0
-2018-03-23 02:00:00,9374.0
-2018-03-23 03:00:00,9148.0
-2018-03-23 04:00:00,9073.0
-2018-03-23 05:00:00,9089.0
-2018-03-23 06:00:00,9410.0
-2018-03-23 07:00:00,10116.0
-2018-03-23 08:00:00,11147.0
-2018-03-23 09:00:00,11521.0
-2018-03-23 10:00:00,11544.0
-2018-03-23 11:00:00,11464.0
-2018-03-23 12:00:00,11412.0
-2018-03-23 13:00:00,11272.0
-2018-03-23 14:00:00,11170.0
-2018-03-23 15:00:00,11065.0
-2018-03-23 16:00:00,10921.0
-2018-03-23 17:00:00,10733.0
-2018-03-23 18:00:00,10722.0
-2018-03-23 19:00:00,10768.0
-2018-03-23 20:00:00,10886.0
-2018-03-23 21:00:00,11381.0
-2018-03-23 22:00:00,11357.0
-2018-03-23 23:00:00,11120.0
-2018-03-24 00:00:00,10551.0
-2018-03-22 01:00:00,10005.0
-2018-03-22 02:00:00,9628.0
-2018-03-22 03:00:00,9432.0
-2018-03-22 04:00:00,9351.0
-2018-03-22 05:00:00,9378.0
-2018-03-22 06:00:00,9685.0
-2018-03-22 07:00:00,10391.0
-2018-03-22 08:00:00,11494.0
-2018-03-22 09:00:00,11846.0
-2018-03-22 10:00:00,11797.0
-2018-03-22 11:00:00,11652.0
-2018-03-22 12:00:00,11552.0
-2018-03-22 13:00:00,11418.0
-2018-03-22 14:00:00,11242.0
-2018-03-22 15:00:00,11177.0
-2018-03-22 16:00:00,10994.0
-2018-03-22 17:00:00,10783.0
-2018-03-22 18:00:00,10667.0
-2018-03-22 19:00:00,10610.0
-2018-03-22 20:00:00,10663.0
-2018-03-22 21:00:00,11217.0
-2018-03-22 22:00:00,11248.0
-2018-03-22 23:00:00,10913.0
-2018-03-23 00:00:00,10345.0
-2018-03-21 01:00:00,10141.0
-2018-03-21 02:00:00,9756.0
-2018-03-21 03:00:00,9485.0
-2018-03-21 04:00:00,9378.0
-2018-03-21 05:00:00,9369.0
-2018-03-21 06:00:00,9618.0
-2018-03-21 07:00:00,10349.0
-2018-03-21 08:00:00,11461.0
-2018-03-21 09:00:00,11845.0
-2018-03-21 10:00:00,11923.0
-2018-03-21 11:00:00,11837.0
-2018-03-21 12:00:00,11749.0
-2018-03-21 13:00:00,11615.0
-2018-03-21 14:00:00,11470.0
-2018-03-21 15:00:00,11414.0
-2018-03-21 16:00:00,11214.0
-2018-03-21 17:00:00,11032.0
-2018-03-21 18:00:00,10954.0
-2018-03-21 19:00:00,10966.0
-2018-03-21 20:00:00,10968.0
-2018-03-21 21:00:00,11552.0
-2018-03-21 22:00:00,11583.0
-2018-03-21 23:00:00,11207.0
-2018-03-22 00:00:00,10616.0
-2018-03-20 01:00:00,9919.0
-2018-03-20 02:00:00,9564.0
-2018-03-20 03:00:00,9354.0
-2018-03-20 04:00:00,9269.0
-2018-03-20 05:00:00,9283.0
-2018-03-20 06:00:00,9599.0
-2018-03-20 07:00:00,10354.0
-2018-03-20 08:00:00,11447.0
-2018-03-20 09:00:00,11821.0
-2018-03-20 10:00:00,11954.0
-2018-03-20 11:00:00,11916.0
-2018-03-20 12:00:00,11828.0
-2018-03-20 13:00:00,11737.0
-2018-03-20 14:00:00,11609.0
-2018-03-20 15:00:00,11563.0
-2018-03-20 16:00:00,11422.0
-2018-03-20 17:00:00,11315.0
-2018-03-20 18:00:00,11308.0
-2018-03-20 19:00:00,11387.0
-2018-03-20 20:00:00,11487.0
-2018-03-20 21:00:00,11948.0
-2018-03-20 22:00:00,11839.0
-2018-03-20 23:00:00,11409.0
-2018-03-21 00:00:00,10791.0
-2018-03-19 01:00:00,8915.0
-2018-03-19 02:00:00,8630.0
-2018-03-19 03:00:00,8491.0
-2018-03-19 04:00:00,8450.0
-2018-03-19 05:00:00,8503.0
-2018-03-19 06:00:00,8841.0
-2018-03-19 07:00:00,9652.0
-2018-03-19 08:00:00,10871.0
-2018-03-19 09:00:00,11410.0
-2018-03-19 10:00:00,11466.0
-2018-03-19 11:00:00,11337.0
-2018-03-19 12:00:00,11319.0
-2018-03-19 13:00:00,11245.0
-2018-03-19 14:00:00,11171.0
-2018-03-19 15:00:00,11135.0
-2018-03-19 16:00:00,11021.0
-2018-03-19 17:00:00,10913.0
-2018-03-19 18:00:00,10904.0
-2018-03-19 19:00:00,10957.0
-2018-03-19 20:00:00,11043.0
-2018-03-19 21:00:00,11612.0
-2018-03-19 22:00:00,11571.0
-2018-03-19 23:00:00,11203.0
-2018-03-20 00:00:00,10524.0
-2018-03-18 01:00:00,9518.0
-2018-03-18 02:00:00,9171.0
-2018-03-18 03:00:00,8994.0
-2018-03-18 04:00:00,8857.0
-2018-03-18 05:00:00,8862.0
-2018-03-18 06:00:00,8815.0
-2018-03-18 07:00:00,9029.0
-2018-03-18 08:00:00,9285.0
-2018-03-18 09:00:00,9305.0
-2018-03-18 10:00:00,9408.0
-2018-03-18 11:00:00,9406.0
-2018-03-18 12:00:00,9378.0
-2018-03-18 13:00:00,9279.0
-2018-03-18 14:00:00,9192.0
-2018-03-18 15:00:00,9076.0
-2018-03-18 16:00:00,8971.0
-2018-03-18 17:00:00,8922.0
-2018-03-18 18:00:00,8907.0
-2018-03-18 19:00:00,9017.0
-2018-03-18 20:00:00,9199.0
-2018-03-18 21:00:00,9830.0
-2018-03-18 22:00:00,9886.0
-2018-03-18 23:00:00,9664.0
-2018-03-19 00:00:00,9302.0
-2018-03-17 01:00:00,10118.0
-2018-03-17 02:00:00,9767.0
-2018-03-17 03:00:00,9484.0
-2018-03-17 04:00:00,9291.0
-2018-03-17 05:00:00,9316.0
-2018-03-17 06:00:00,9361.0
-2018-03-17 07:00:00,9672.0
-2018-03-17 08:00:00,10090.0
-2018-03-17 09:00:00,10379.0
-2018-03-17 10:00:00,10694.0
-2018-03-17 11:00:00,10835.0
-2018-03-17 12:00:00,10801.0
-2018-03-17 13:00:00,10659.0
-2018-03-17 14:00:00,10464.0
-2018-03-17 15:00:00,10097.0
-2018-03-17 16:00:00,9899.0
-2018-03-17 17:00:00,9642.0
-2018-03-17 18:00:00,9574.0
-2018-03-17 19:00:00,9508.0
-2018-03-17 20:00:00,9692.0
-2018-03-17 21:00:00,10272.0
-2018-03-17 22:00:00,10372.0
-2018-03-17 23:00:00,10251.0
-2018-03-18 00:00:00,9888.0
-2018-03-16 01:00:00,10100.0
-2018-03-16 02:00:00,9700.0
-2018-03-16 03:00:00,9510.0
-2018-03-16 04:00:00,9414.0
-2018-03-16 05:00:00,9429.0
-2018-03-16 06:00:00,9714.0
-2018-03-16 07:00:00,10386.0
-2018-03-16 08:00:00,11480.0
-2018-03-16 09:00:00,12015.0
-2018-03-16 10:00:00,12131.0
-2018-03-16 11:00:00,12142.0
-2018-03-16 12:00:00,12000.0
-2018-03-16 13:00:00,11851.0
-2018-03-16 14:00:00,11712.0
-2018-03-16 15:00:00,11586.0
-2018-03-16 16:00:00,11416.0
-2018-03-16 17:00:00,11304.0
-2018-03-16 18:00:00,11257.0
-2018-03-16 19:00:00,11322.0
-2018-03-16 20:00:00,11394.0
-2018-03-16 21:00:00,11855.0
-2018-03-16 22:00:00,11711.0
-2018-03-16 23:00:00,11322.0
-2018-03-17 00:00:00,10710.0
-2018-03-15 01:00:00,9896.0
-2018-03-15 02:00:00,9499.0
-2018-03-15 03:00:00,9246.0
-2018-03-15 04:00:00,9167.0
-2018-03-15 05:00:00,9212.0
-2018-03-15 06:00:00,9482.0
-2018-03-15 07:00:00,10226.0
-2018-03-15 08:00:00,11364.0
-2018-03-15 09:00:00,11785.0
-2018-03-15 10:00:00,11759.0
-2018-03-15 11:00:00,11634.0
-2018-03-15 12:00:00,11510.0
-2018-03-15 13:00:00,11413.0
-2018-03-15 14:00:00,11269.0
-2018-03-15 15:00:00,11220.0
-2018-03-15 16:00:00,11045.0
-2018-03-15 17:00:00,10853.0
-2018-03-15 18:00:00,10812.0
-2018-03-15 19:00:00,10816.0
-2018-03-15 20:00:00,10927.0
-2018-03-15 21:00:00,11571.0
-2018-03-15 22:00:00,11574.0
-2018-03-15 23:00:00,11257.0
-2018-03-16 00:00:00,10665.0
-2018-03-14 01:00:00,10599.0
-2018-03-14 02:00:00,10213.0
-2018-03-14 03:00:00,9994.0
-2018-03-14 04:00:00,9913.0
-2018-03-14 05:00:00,9939.0
-2018-03-14 06:00:00,10164.0
-2018-03-14 07:00:00,10892.0
-2018-03-14 08:00:00,11951.0
-2018-03-14 09:00:00,12388.0
-2018-03-14 10:00:00,12347.0
-2018-03-14 11:00:00,12152.0
-2018-03-14 12:00:00,12059.0
-2018-03-14 13:00:00,11965.0
-2018-03-14 14:00:00,11832.0
-2018-03-14 15:00:00,11646.0
-2018-03-14 16:00:00,11459.0
-2018-03-14 17:00:00,11211.0
-2018-03-14 18:00:00,11092.0
-2018-03-14 19:00:00,11041.0
-2018-03-14 20:00:00,11107.0
-2018-03-14 21:00:00,11616.0
-2018-03-14 22:00:00,11549.0
-2018-03-14 23:00:00,11159.0
-2018-03-15 00:00:00,10513.0
-2018-03-13 01:00:00,10104.0
-2018-03-13 02:00:00,9746.0
-2018-03-13 03:00:00,9535.0
-2018-03-13 04:00:00,9407.0
-2018-03-13 05:00:00,9464.0
-2018-03-13 06:00:00,9755.0
-2018-03-13 07:00:00,10463.0
-2018-03-13 08:00:00,11581.0
-2018-03-13 09:00:00,12044.0
-2018-03-13 10:00:00,12030.0
-2018-03-13 11:00:00,11935.0
-2018-03-13 12:00:00,11922.0
-2018-03-13 13:00:00,11958.0
-2018-03-13 14:00:00,11919.0
-2018-03-13 15:00:00,11984.0
-2018-03-13 16:00:00,11937.0
-2018-03-13 17:00:00,11950.0
-2018-03-13 18:00:00,11926.0
-2018-03-13 19:00:00,11900.0
-2018-03-13 20:00:00,11996.0
-2018-03-13 21:00:00,12411.0
-2018-03-13 22:00:00,12312.0
-2018-03-13 23:00:00,11883.0
-2018-03-14 00:00:00,11227.0
-2018-03-12 01:00:00,9629.0
-2018-03-12 02:00:00,9249.0
-2018-03-12 03:00:00,9071.0
-2018-03-12 04:00:00,8970.0
-2018-03-12 05:00:00,9100.0
-2018-03-12 06:00:00,9255.0
-2018-03-12 07:00:00,10031.0
-2018-03-12 08:00:00,11161.0
-2018-03-12 09:00:00,11826.0
-2018-03-12 10:00:00,11923.0
-2018-03-12 11:00:00,11973.0
-2018-03-12 12:00:00,11960.0
-2018-03-12 13:00:00,11914.0
-2018-03-12 14:00:00,11725.0
-2018-03-12 15:00:00,11599.0
-2018-03-12 16:00:00,11449.0
-2018-03-12 17:00:00,11304.0
-2018-03-12 18:00:00,11276.0
-2018-03-12 19:00:00,11321.0
-2018-03-12 20:00:00,11468.0
-2018-03-12 21:00:00,11865.0
-2018-03-12 22:00:00,11750.0
-2018-03-12 23:00:00,11362.0
-2018-03-13 00:00:00,10740.0
-2018-03-11 01:00:00,9632.0
-2018-03-11 02:00:00,9360.0
-2018-03-11 04:00:00,9126.0
-2018-03-11 05:00:00,9031.0
-2018-03-11 06:00:00,8966.0
-2018-03-11 07:00:00,9127.0
-2018-03-11 08:00:00,9384.0
-2018-03-11 09:00:00,9431.0
-2018-03-11 10:00:00,9485.0
-2018-03-11 11:00:00,9568.0
-2018-03-11 12:00:00,9628.0
-2018-03-11 13:00:00,9638.0
-2018-03-11 14:00:00,9609.0
-2018-03-11 15:00:00,9562.0
-2018-03-11 16:00:00,9460.0
-2018-03-11 17:00:00,9440.0
-2018-03-11 18:00:00,9441.0
-2018-03-11 19:00:00,9523.0
-2018-03-11 20:00:00,9877.0
-2018-03-11 21:00:00,10574.0
-2018-03-11 22:00:00,10647.0
-2018-03-11 23:00:00,10463.0
-2018-03-12 00:00:00,10052.0
-2018-03-10 01:00:00,10230.0
-2018-03-10 02:00:00,9851.0
-2018-03-10 03:00:00,9638.0
-2018-03-10 04:00:00,9545.0
-2018-03-10 05:00:00,9473.0
-2018-03-10 06:00:00,9621.0
-2018-03-10 07:00:00,9890.0
-2018-03-10 08:00:00,10109.0
-2018-03-10 09:00:00,10263.0
-2018-03-10 10:00:00,10443.0
-2018-03-10 11:00:00,10523.0
-2018-03-10 12:00:00,10483.0
-2018-03-10 13:00:00,10378.0
-2018-03-10 14:00:00,10182.0
-2018-03-10 15:00:00,9978.0
-2018-03-10 16:00:00,9807.0
-2018-03-10 17:00:00,9745.0
-2018-03-10 18:00:00,9871.0
-2018-03-10 19:00:00,10177.0
-2018-03-10 20:00:00,10783.0
-2018-03-10 21:00:00,10860.0
-2018-03-10 22:00:00,10743.0
-2018-03-10 23:00:00,10489.0
-2018-03-11 00:00:00,10056.0
-2018-03-09 01:00:00,10381.0
-2018-03-09 02:00:00,10037.0
-2018-03-09 03:00:00,9882.0
-2018-03-09 04:00:00,9762.0
-2018-03-09 05:00:00,9772.0
-2018-03-09 06:00:00,10087.0
-2018-03-09 07:00:00,10793.0
-2018-03-09 08:00:00,11543.0
-2018-03-09 09:00:00,11860.0
-2018-03-09 10:00:00,11875.0
-2018-03-09 11:00:00,11839.0
-2018-03-09 12:00:00,11792.0
-2018-03-09 13:00:00,11701.0
-2018-03-09 14:00:00,11510.0
-2018-03-09 15:00:00,11405.0
-2018-03-09 16:00:00,11200.0
-2018-03-09 17:00:00,11067.0
-2018-03-09 18:00:00,11103.0
-2018-03-09 19:00:00,11414.0
-2018-03-09 20:00:00,11984.0
-2018-03-09 21:00:00,11853.0
-2018-03-09 22:00:00,11621.0
-2018-03-09 23:00:00,11318.0
-2018-03-10 00:00:00,10750.0
-2018-03-08 01:00:00,10464.0
-2018-03-08 02:00:00,10101.0
-2018-03-08 03:00:00,9924.0
-2018-03-08 04:00:00,9822.0
-2018-03-08 05:00:00,9834.0
-2018-03-08 06:00:00,10163.0
-2018-03-08 07:00:00,10857.0
-2018-03-08 08:00:00,11710.0
-2018-03-08 09:00:00,12068.0
-2018-03-08 10:00:00,12120.0
-2018-03-08 11:00:00,12072.0
-2018-03-08 12:00:00,12062.0
-2018-03-08 13:00:00,11981.0
-2018-03-08 14:00:00,11894.0
-2018-03-08 15:00:00,11826.0
-2018-03-08 16:00:00,11735.0
-2018-03-08 17:00:00,11639.0
-2018-03-08 18:00:00,11707.0
-2018-03-08 19:00:00,11930.0
-2018-03-08 20:00:00,12442.0
-2018-03-08 21:00:00,12354.0
-2018-03-08 22:00:00,12119.0
-2018-03-08 23:00:00,11633.0
-2018-03-09 00:00:00,10952.0
-2018-03-07 01:00:00,10244.0
-2018-03-07 02:00:00,9854.0
-2018-03-07 03:00:00,9682.0
-2018-03-07 04:00:00,9613.0
-2018-03-07 05:00:00,9672.0
-2018-03-07 06:00:00,9984.0
-2018-03-07 07:00:00,10704.0
-2018-03-07 08:00:00,11611.0
-2018-03-07 09:00:00,11994.0
-2018-03-07 10:00:00,12017.0
-2018-03-07 11:00:00,11952.0
-2018-03-07 12:00:00,11958.0
-2018-03-07 13:00:00,11882.0
-2018-03-07 14:00:00,11818.0
-2018-03-07 15:00:00,11810.0
-2018-03-07 16:00:00,11711.0
-2018-03-07 17:00:00,11726.0
-2018-03-07 18:00:00,11878.0
-2018-03-07 19:00:00,12247.0
-2018-03-07 20:00:00,12535.0
-2018-03-07 21:00:00,12401.0
-2018-03-07 22:00:00,12203.0
-2018-03-07 23:00:00,11703.0
-2018-03-08 00:00:00,11031.0
-2018-03-06 01:00:00,10138.0
-2018-03-06 02:00:00,9699.0
-2018-03-06 03:00:00,9420.0
-2018-03-06 04:00:00,9329.0
-2018-03-06 05:00:00,9330.0
-2018-03-06 06:00:00,9567.0
-2018-03-06 07:00:00,10268.0
-2018-03-06 08:00:00,11185.0
-2018-03-06 09:00:00,11674.0
-2018-03-06 10:00:00,11840.0
-2018-03-06 11:00:00,11904.0
-2018-03-06 12:00:00,11893.0
-2018-03-06 13:00:00,11769.0
-2018-03-06 14:00:00,11799.0
-2018-03-06 15:00:00,11815.0
-2018-03-06 16:00:00,11706.0
-2018-03-06 17:00:00,11609.0
-2018-03-06 18:00:00,11711.0
-2018-03-06 19:00:00,11990.0
-2018-03-06 20:00:00,12274.0
-2018-03-06 21:00:00,12146.0
-2018-03-06 22:00:00,11891.0
-2018-03-06 23:00:00,11432.0
-2018-03-07 00:00:00,10776.0
-2018-03-05 01:00:00,9379.0
-2018-03-05 02:00:00,9124.0
-2018-03-05 03:00:00,9030.0
-2018-03-05 04:00:00,8977.0
-2018-03-05 05:00:00,9021.0
-2018-03-05 06:00:00,9335.0
-2018-03-05 07:00:00,10129.0
-2018-03-05 08:00:00,11029.0
-2018-03-05 09:00:00,11666.0
-2018-03-05 10:00:00,11897.0
-2018-03-05 11:00:00,12058.0
-2018-03-05 12:00:00,12037.0
-2018-03-05 13:00:00,12011.0
-2018-03-05 14:00:00,11981.0
-2018-03-05 15:00:00,11900.0
-2018-03-05 16:00:00,11826.0
-2018-03-05 17:00:00,11816.0
-2018-03-05 18:00:00,12004.0
-2018-03-05 19:00:00,12362.0
-2018-03-05 20:00:00,12446.0
-2018-03-05 21:00:00,12261.0
-2018-03-05 22:00:00,11956.0
-2018-03-05 23:00:00,11448.0
-2018-03-06 00:00:00,10750.0
-2018-03-04 01:00:00,9450.0
-2018-03-04 02:00:00,9128.0
-2018-03-04 03:00:00,8968.0
-2018-03-04 04:00:00,8831.0
-2018-03-04 05:00:00,8769.0
-2018-03-04 06:00:00,8854.0
-2018-03-04 07:00:00,8999.0
-2018-03-04 08:00:00,9087.0
-2018-03-04 09:00:00,9139.0
-2018-03-04 10:00:00,9279.0
-2018-03-04 11:00:00,9373.0
-2018-03-04 12:00:00,9383.0
-2018-03-04 13:00:00,9357.0
-2018-03-04 14:00:00,9336.0
-2018-03-04 15:00:00,9152.0
-2018-03-04 16:00:00,9092.0
-2018-03-04 17:00:00,9153.0
-2018-03-04 18:00:00,9338.0
-2018-03-04 19:00:00,9820.0
-2018-03-04 20:00:00,10486.0
-2018-03-04 21:00:00,10554.0
-2018-03-04 22:00:00,10384.0
-2018-03-04 23:00:00,10167.0
-2018-03-05 00:00:00,9700.0
-2018-03-03 01:00:00,9943.0
-2018-03-03 02:00:00,9526.0
-2018-03-03 03:00:00,9281.0
-2018-03-03 04:00:00,9102.0
-2018-03-03 05:00:00,9041.0
-2018-03-03 06:00:00,9159.0
-2018-03-03 07:00:00,9434.0
-2018-03-03 08:00:00,9744.0
-2018-03-03 09:00:00,9919.0
-2018-03-03 10:00:00,10083.0
-2018-03-03 11:00:00,10148.0
-2018-03-03 12:00:00,10156.0
-2018-03-03 13:00:00,10085.0
-2018-03-03 14:00:00,9915.0
-2018-03-03 15:00:00,9679.0
-2018-03-03 16:00:00,9518.0
-2018-03-03 17:00:00,9472.0
-2018-03-03 18:00:00,9586.0
-2018-03-03 19:00:00,9938.0
-2018-03-03 20:00:00,10568.0
-2018-03-03 21:00:00,10575.0
-2018-03-03 22:00:00,10480.0
-2018-03-03 23:00:00,10280.0
-2018-03-04 00:00:00,9863.0
-2018-03-02 01:00:00,10035.0
-2018-03-02 02:00:00,9635.0
-2018-03-02 03:00:00,9480.0
-2018-03-02 04:00:00,9346.0
-2018-03-02 05:00:00,9350.0
-2018-03-02 06:00:00,9639.0
-2018-03-02 07:00:00,10347.0
-2018-03-02 08:00:00,11147.0
-2018-03-02 09:00:00,11409.0
-2018-03-02 10:00:00,11403.0
-2018-03-02 11:00:00,11403.0
-2018-03-02 12:00:00,11420.0
-2018-03-02 13:00:00,11299.0
-2018-03-02 14:00:00,11162.0
-2018-03-02 15:00:00,11079.0
-2018-03-02 16:00:00,10908.0
-2018-03-02 17:00:00,10738.0
-2018-03-02 18:00:00,10742.0
-2018-03-02 19:00:00,11021.0
-2018-03-02 20:00:00,11530.0
-2018-03-02 21:00:00,11446.0
-2018-03-02 22:00:00,11258.0
-2018-03-02 23:00:00,11033.0
-2018-03-03 00:00:00,10475.0
-2018-03-01 01:00:00,9616.0
-2018-03-01 02:00:00,9217.0
-2018-03-01 03:00:00,9008.0
-2018-03-01 04:00:00,8887.0
-2018-03-01 05:00:00,8929.0
-2018-03-01 06:00:00,9226.0
-2018-03-01 07:00:00,10012.0
-2018-03-01 08:00:00,11129.0
-2018-03-01 09:00:00,11753.0
-2018-03-01 10:00:00,11945.0
-2018-03-01 11:00:00,11935.0
-2018-03-01 12:00:00,11984.0
-2018-03-01 13:00:00,11917.0
-2018-03-01 14:00:00,11713.0
-2018-03-01 15:00:00,11596.0
-2018-03-01 16:00:00,11334.0
-2018-03-01 17:00:00,11247.0
-2018-03-01 18:00:00,11250.0
-2018-03-01 19:00:00,11488.0
-2018-03-01 20:00:00,12004.0
-2018-03-01 21:00:00,11872.0
-2018-03-01 22:00:00,11640.0
-2018-03-01 23:00:00,11251.0
-2018-03-02 00:00:00,10558.0
-2018-02-28 01:00:00,9282.0
-2018-02-28 02:00:00,8881.0
-2018-02-28 03:00:00,8654.0
-2018-02-28 04:00:00,8510.0
-2018-02-28 05:00:00,8467.0
-2018-02-28 06:00:00,8697.0
-2018-02-28 07:00:00,9365.0
-2018-02-28 08:00:00,10280.0
-2018-02-28 09:00:00,10662.0
-2018-02-28 10:00:00,10734.0
-2018-02-28 11:00:00,10781.0
-2018-02-28 12:00:00,10836.0
-2018-02-28 13:00:00,10807.0
-2018-02-28 14:00:00,10740.0
-2018-02-28 15:00:00,10788.0
-2018-02-28 16:00:00,10807.0
-2018-02-28 17:00:00,10789.0
-2018-02-28 18:00:00,11030.0
-2018-02-28 19:00:00,11406.0
-2018-02-28 20:00:00,11604.0
-2018-02-28 21:00:00,11494.0
-2018-02-28 22:00:00,11278.0
-2018-02-28 23:00:00,10833.0
-2018-03-01 00:00:00,10185.0
-2018-02-27 01:00:00,9695.0
-2018-02-27 02:00:00,9337.0
-2018-02-27 03:00:00,9113.0
-2018-02-27 04:00:00,9009.0
-2018-02-27 05:00:00,8994.0
-2018-02-27 06:00:00,9224.0
-2018-02-27 07:00:00,9929.0
-2018-02-27 08:00:00,10873.0
-2018-02-27 09:00:00,11225.0
-2018-02-27 10:00:00,11360.0
-2018-02-27 11:00:00,11299.0
-2018-02-27 12:00:00,11183.0
-2018-02-27 13:00:00,11105.0
-2018-02-27 14:00:00,10988.0
-2018-02-27 15:00:00,10955.0
-2018-02-27 16:00:00,10812.0
-2018-02-27 17:00:00,10625.0
-2018-02-27 18:00:00,10654.0
-2018-02-27 19:00:00,10925.0
-2018-02-27 20:00:00,11345.0
-2018-02-27 21:00:00,11176.0
-2018-02-27 22:00:00,10943.0
-2018-02-27 23:00:00,10488.0
-2018-02-28 00:00:00,9857.0
-2018-02-26 01:00:00,9414.0
-2018-02-26 02:00:00,9123.0
-2018-02-26 03:00:00,9060.0
-2018-02-26 04:00:00,9040.0
-2018-02-26 05:00:00,9113.0
-2018-02-26 06:00:00,9442.0
-2018-02-26 07:00:00,10275.0
-2018-02-26 08:00:00,11223.0
-2018-02-26 09:00:00,11573.0
-2018-02-26 10:00:00,11579.0
-2018-02-26 11:00:00,11441.0
-2018-02-26 12:00:00,11382.0
-2018-02-26 13:00:00,11288.0
-2018-02-26 14:00:00,11162.0
-2018-02-26 15:00:00,11095.0
-2018-02-26 16:00:00,10940.0
-2018-02-26 17:00:00,10789.0
-2018-02-26 18:00:00,10800.0
-2018-02-26 19:00:00,11096.0
-2018-02-26 20:00:00,11545.0
-2018-02-26 21:00:00,11444.0
-2018-02-26 22:00:00,11221.0
-2018-02-26 23:00:00,10773.0
-2018-02-27 00:00:00,10210.0
-2018-02-25 01:00:00,9383.0
-2018-02-25 02:00:00,9053.0
-2018-02-25 03:00:00,8896.0
-2018-02-25 04:00:00,8886.0
-2018-02-25 05:00:00,8902.0
-2018-02-25 06:00:00,8990.0
-2018-02-25 07:00:00,9131.0
-2018-02-25 08:00:00,9327.0
-2018-02-25 09:00:00,9409.0
-2018-02-25 10:00:00,9566.0
-2018-02-25 11:00:00,9648.0
-2018-02-25 12:00:00,9674.0
-2018-02-25 13:00:00,9642.0
-2018-02-25 14:00:00,9575.0
-2018-02-25 15:00:00,9502.0
-2018-02-25 16:00:00,9408.0
-2018-02-25 17:00:00,9426.0
-2018-02-25 18:00:00,9591.0
-2018-02-25 19:00:00,10113.0
-2018-02-25 20:00:00,10683.0
-2018-02-25 21:00:00,10668.0
-2018-02-25 22:00:00,10561.0
-2018-02-25 23:00:00,10224.0
-2018-02-26 00:00:00,9810.0
-2018-02-24 01:00:00,10072.0
-2018-02-24 02:00:00,9631.0
-2018-02-24 03:00:00,9429.0
-2018-02-24 04:00:00,9267.0
-2018-02-24 05:00:00,9209.0
-2018-02-24 06:00:00,9316.0
-2018-02-24 07:00:00,9606.0
-2018-02-24 08:00:00,10052.0
-2018-02-24 09:00:00,10304.0
-2018-02-24 10:00:00,10639.0
-2018-02-24 11:00:00,10787.0
-2018-02-24 12:00:00,10859.0
-2018-02-24 13:00:00,10682.0
-2018-02-24 14:00:00,10576.0
-2018-02-24 15:00:00,10406.0
-2018-02-24 16:00:00,10300.0
-2018-02-24 17:00:00,10360.0
-2018-02-24 18:00:00,10545.0
-2018-02-24 19:00:00,10927.0
-2018-02-24 20:00:00,10989.0
-2018-02-24 21:00:00,10859.0
-2018-02-24 22:00:00,10658.0
-2018-02-24 23:00:00,10243.0
-2018-02-25 00:00:00,9771.0
-2018-02-23 01:00:00,10068.0
-2018-02-23 02:00:00,9651.0
-2018-02-23 03:00:00,9417.0
-2018-02-23 04:00:00,9251.0
-2018-02-23 05:00:00,9277.0
-2018-02-23 06:00:00,9500.0
-2018-02-23 07:00:00,10150.0
-2018-02-23 08:00:00,11070.0
-2018-02-23 09:00:00,11481.0
-2018-02-23 10:00:00,11632.0
-2018-02-23 11:00:00,11790.0
-2018-02-23 12:00:00,11866.0
-2018-02-23 13:00:00,11862.0
-2018-02-23 14:00:00,11796.0
-2018-02-23 15:00:00,11749.0
-2018-02-23 16:00:00,11647.0
-2018-02-23 17:00:00,11530.0
-2018-02-23 18:00:00,11599.0
-2018-02-23 19:00:00,11862.0
-2018-02-23 20:00:00,11954.0
-2018-02-23 21:00:00,11786.0
-2018-02-23 22:00:00,11508.0
-2018-02-23 23:00:00,11183.0
-2018-02-24 00:00:00,10584.0
-2018-02-22 01:00:00,10582.0
-2018-02-22 02:00:00,10211.0
-2018-02-22 03:00:00,9953.0
-2018-02-22 04:00:00,9807.0
-2018-02-22 05:00:00,9773.0
-2018-02-22 06:00:00,10046.0
-2018-02-22 07:00:00,10699.0
-2018-02-22 08:00:00,11715.0
-2018-02-22 09:00:00,12125.0
-2018-02-22 10:00:00,12212.0
-2018-02-22 11:00:00,12168.0
-2018-02-22 12:00:00,12138.0
-2018-02-22 13:00:00,11947.0
-2018-02-22 14:00:00,11796.0
-2018-02-22 15:00:00,11796.0
-2018-02-22 16:00:00,11764.0
-2018-02-22 17:00:00,11766.0
-2018-02-22 18:00:00,11831.0
-2018-02-22 19:00:00,12192.0
-2018-02-22 20:00:00,12300.0
-2018-02-22 21:00:00,12101.0
-2018-02-22 22:00:00,11821.0
-2018-02-22 23:00:00,11350.0
-2018-02-23 00:00:00,10681.0
-2018-02-21 01:00:00,10102.0
-2018-02-21 02:00:00,9775.0
-2018-02-21 03:00:00,9599.0
-2018-02-21 04:00:00,9537.0
-2018-02-21 05:00:00,9519.0
-2018-02-21 06:00:00,9821.0
-2018-02-21 07:00:00,10558.0
-2018-02-21 08:00:00,11601.0
-2018-02-21 09:00:00,12059.0
-2018-02-21 10:00:00,12231.0
-2018-02-21 11:00:00,12279.0
-2018-02-21 12:00:00,12242.0
-2018-02-21 13:00:00,12199.0
-2018-02-21 14:00:00,12091.0
-2018-02-21 15:00:00,12106.0
-2018-02-21 16:00:00,12032.0
-2018-02-21 17:00:00,12045.0
-2018-02-21 18:00:00,12195.0
-2018-02-21 19:00:00,12585.0
-2018-02-21 20:00:00,12739.0
-2018-02-21 21:00:00,12611.0
-2018-02-21 22:00:00,12346.0
-2018-02-21 23:00:00,11870.0
-2018-02-22 00:00:00,11153.0
-2018-02-20 01:00:00,9614.0
-2018-02-20 02:00:00,9158.0
-2018-02-20 03:00:00,8836.0
-2018-02-20 04:00:00,8726.0
-2018-02-20 05:00:00,8709.0
-2018-02-20 06:00:00,8953.0
-2018-02-20 07:00:00,9578.0
-2018-02-20 08:00:00,10555.0
-2018-02-20 09:00:00,11017.0
-2018-02-20 10:00:00,11157.0
-2018-02-20 11:00:00,11200.0
-2018-02-20 12:00:00,11329.0
-2018-02-20 13:00:00,11349.0
-2018-02-20 14:00:00,11413.0
-2018-02-20 15:00:00,11516.0
-2018-02-20 16:00:00,11375.0
-2018-02-20 17:00:00,11302.0
-2018-02-20 18:00:00,11426.0
-2018-02-20 19:00:00,11809.0
-2018-02-20 20:00:00,11927.0
-2018-02-20 21:00:00,11803.0
-2018-02-20 22:00:00,11596.0
-2018-02-20 23:00:00,11213.0
-2018-02-21 00:00:00,10610.0
-2018-02-19 01:00:00,9668.0
-2018-02-19 02:00:00,9361.0
-2018-02-19 03:00:00,9183.0
-2018-02-19 04:00:00,9055.0
-2018-02-19 05:00:00,9074.0
-2018-02-19 06:00:00,9339.0
-2018-02-19 07:00:00,9918.0
-2018-02-19 08:00:00,10793.0
-2018-02-19 09:00:00,11150.0
-2018-02-19 10:00:00,11455.0
-2018-02-19 11:00:00,11665.0
-2018-02-19 12:00:00,11765.0
-2018-02-19 13:00:00,11756.0
-2018-02-19 14:00:00,11645.0
-2018-02-19 15:00:00,11576.0
-2018-02-19 16:00:00,11441.0
-2018-02-19 17:00:00,11365.0
-2018-02-19 18:00:00,11466.0
-2018-02-19 19:00:00,11789.0
-2018-02-19 20:00:00,11752.0
-2018-02-19 21:00:00,11514.0
-2018-02-19 22:00:00,11249.0
-2018-02-19 23:00:00,10834.0
-2018-02-20 00:00:00,10186.0
-2018-02-18 01:00:00,10152.0
-2018-02-18 02:00:00,9824.0
-2018-02-18 03:00:00,9634.0
-2018-02-18 04:00:00,9544.0
-2018-02-18 05:00:00,9557.0
-2018-02-18 06:00:00,9655.0
-2018-02-18 07:00:00,9847.0
-2018-02-18 08:00:00,10061.0
-2018-02-18 09:00:00,10127.0
-2018-02-18 10:00:00,10236.0
-2018-02-18 11:00:00,10307.0
-2018-02-18 12:00:00,10370.0
-2018-02-18 13:00:00,10242.0
-2018-02-18 14:00:00,10135.0
-2018-02-18 15:00:00,9986.0
-2018-02-18 16:00:00,9924.0
-2018-02-18 17:00:00,9928.0
-2018-02-18 18:00:00,10144.0
-2018-02-18 19:00:00,10750.0
-2018-02-18 20:00:00,11218.0
-2018-02-18 21:00:00,11141.0
-2018-02-18 22:00:00,10945.0
-2018-02-18 23:00:00,10628.0
-2018-02-19 00:00:00,10135.0
-2018-02-17 01:00:00,10823.0
-2018-02-17 02:00:00,10421.0
-2018-02-17 03:00:00,10280.0
-2018-02-17 04:00:00,10122.0
-2018-02-17 05:00:00,10123.0
-2018-02-17 06:00:00,10176.0
-2018-02-17 07:00:00,10503.0
-2018-02-17 08:00:00,10882.0
-2018-02-17 09:00:00,11078.0
-2018-02-17 10:00:00,11339.0
-2018-02-17 11:00:00,11503.0
-2018-02-17 12:00:00,11390.0
-2018-02-17 13:00:00,11164.0
-2018-02-17 14:00:00,10986.0
-2018-02-17 15:00:00,10825.0
-2018-02-17 16:00:00,10812.0
-2018-02-17 17:00:00,10906.0
-2018-02-17 18:00:00,11057.0
-2018-02-17 19:00:00,11382.0
-2018-02-17 20:00:00,11609.0
-2018-02-17 21:00:00,11502.0
-2018-02-17 22:00:00,11357.0
-2018-02-17 23:00:00,11051.0
-2018-02-18 00:00:00,10603.0
-2018-02-16 01:00:00,9995.0
-2018-02-16 02:00:00,9673.0
-2018-02-16 03:00:00,9478.0
-2018-02-16 04:00:00,9367.0
-2018-02-16 05:00:00,9360.0
-2018-02-16 06:00:00,9641.0
-2018-02-16 07:00:00,10323.0
-2018-02-16 08:00:00,11334.0
-2018-02-16 09:00:00,11788.0
-2018-02-16 10:00:00,12005.0
-2018-02-16 11:00:00,12135.0
-2018-02-16 12:00:00,12101.0
-2018-02-16 13:00:00,11884.0
-2018-02-16 14:00:00,11719.0
-2018-02-16 15:00:00,11621.0
-2018-02-16 16:00:00,11474.0
-2018-02-16 17:00:00,11329.0
-2018-02-16 18:00:00,11430.0
-2018-02-16 19:00:00,11975.0
-2018-02-16 20:00:00,12368.0
-2018-02-16 21:00:00,12287.0
-2018-02-16 22:00:00,12095.0
-2018-02-16 23:00:00,11829.0
-2018-02-17 00:00:00,11282.0
-2018-02-15 01:00:00,10106.0
-2018-02-15 02:00:00,9686.0
-2018-02-15 03:00:00,9428.0
-2018-02-15 04:00:00,9287.0
-2018-02-15 05:00:00,9266.0
-2018-02-15 06:00:00,9486.0
-2018-02-15 07:00:00,10182.0
-2018-02-15 08:00:00,11219.0
-2018-02-15 09:00:00,11621.0
-2018-02-15 10:00:00,11818.0
-2018-02-15 11:00:00,11872.0
-2018-02-15 12:00:00,11871.0
-2018-02-15 13:00:00,11822.0
-2018-02-15 14:00:00,11665.0
-2018-02-15 15:00:00,11634.0
-2018-02-15 16:00:00,11480.0
-2018-02-15 17:00:00,11414.0
-2018-02-15 18:00:00,11533.0
-2018-02-15 19:00:00,12002.0
-2018-02-15 20:00:00,12082.0
-2018-02-15 21:00:00,11904.0
-2018-02-15 22:00:00,11659.0
-2018-02-15 23:00:00,11220.0
-2018-02-16 00:00:00,10538.0
-2018-02-14 01:00:00,10896.0
-2018-02-14 02:00:00,10512.0
-2018-02-14 03:00:00,10284.0
-2018-02-14 04:00:00,10145.0
-2018-02-14 05:00:00,10125.0
-2018-02-14 06:00:00,10391.0
-2018-02-14 07:00:00,11081.0
-2018-02-14 08:00:00,12054.0
-2018-02-14 09:00:00,12352.0
-2018-02-14 10:00:00,12276.0
-2018-02-14 11:00:00,12103.0
-2018-02-14 12:00:00,11997.0
-2018-02-14 13:00:00,11905.0
-2018-02-14 14:00:00,11746.0
-2018-02-14 15:00:00,11674.0
-2018-02-14 16:00:00,11585.0
-2018-02-14 17:00:00,11613.0
-2018-02-14 18:00:00,11818.0
-2018-02-14 19:00:00,12307.0
-2018-02-14 20:00:00,12386.0
-2018-02-14 21:00:00,12197.0
-2018-02-14 22:00:00,11908.0
-2018-02-14 23:00:00,11428.0
-2018-02-15 00:00:00,10725.0
-2018-02-13 01:00:00,11347.0
-2018-02-13 02:00:00,11011.0
-2018-02-13 03:00:00,10852.0
-2018-02-13 04:00:00,10736.0
-2018-02-13 05:00:00,10747.0
-2018-02-13 06:00:00,10989.0
-2018-02-13 07:00:00,11636.0
-2018-02-13 08:00:00,12590.0
-2018-02-13 09:00:00,12935.0
-2018-02-13 10:00:00,13070.0
-2018-02-13 11:00:00,13079.0
-2018-02-13 12:00:00,13008.0
-2018-02-13 13:00:00,12808.0
-2018-02-13 14:00:00,12617.0
-2018-02-13 15:00:00,12451.0
-2018-02-13 16:00:00,12339.0
-2018-02-13 17:00:00,12250.0
-2018-02-13 18:00:00,12293.0
-2018-02-13 19:00:00,12735.0
-2018-02-13 20:00:00,13003.0
-2018-02-13 21:00:00,12870.0
-2018-02-13 22:00:00,12653.0
-2018-02-13 23:00:00,12185.0
-2018-02-14 00:00:00,11516.0
-2018-02-12 01:00:00,11045.0
-2018-02-12 02:00:00,10827.0
-2018-02-12 03:00:00,10643.0
-2018-02-12 04:00:00,10623.0
-2018-02-12 05:00:00,10707.0
-2018-02-12 06:00:00,10993.0
-2018-02-12 07:00:00,11719.0
-2018-02-12 08:00:00,12739.0
-2018-02-12 09:00:00,13059.0
-2018-02-12 10:00:00,13053.0
-2018-02-12 11:00:00,12894.0
-2018-02-12 12:00:00,12789.0
-2018-02-12 13:00:00,12663.0
-2018-02-12 14:00:00,12586.0
-2018-02-12 15:00:00,12495.0
-2018-02-12 16:00:00,12385.0
-2018-02-12 17:00:00,12394.0
-2018-02-12 18:00:00,12611.0
-2018-02-12 19:00:00,13184.0
-2018-02-12 20:00:00,13436.0
-2018-02-12 21:00:00,13300.0
-2018-02-12 22:00:00,13090.0
-2018-02-12 23:00:00,12634.0
-2018-02-13 00:00:00,11966.0
-2018-02-11 01:00:00,10794.0
-2018-02-11 02:00:00,10443.0
-2018-02-11 03:00:00,10244.0
-2018-02-11 04:00:00,10099.0
-2018-02-11 05:00:00,10051.0
-2018-02-11 06:00:00,10082.0
-2018-02-11 07:00:00,10252.0
-2018-02-11 08:00:00,10451.0
-2018-02-11 09:00:00,10489.0
-2018-02-11 10:00:00,10749.0
-2018-02-11 11:00:00,10969.0
-2018-02-11 12:00:00,11056.0
-2018-02-11 13:00:00,11041.0
-2018-02-11 14:00:00,11072.0
-2018-02-11 15:00:00,11028.0
-2018-02-11 16:00:00,10924.0
-2018-02-11 17:00:00,10847.0
-2018-02-11 18:00:00,11217.0
-2018-02-11 19:00:00,11953.0
-2018-02-11 20:00:00,12468.0
-2018-02-11 21:00:00,12327.0
-2018-02-11 22:00:00,12249.0
-2018-02-11 23:00:00,11940.0
-2018-02-12 00:00:00,11453.0
-2018-02-10 01:00:00,11062.0
-2018-02-10 02:00:00,10683.0
-2018-02-10 03:00:00,10479.0
-2018-02-10 04:00:00,10305.0
-2018-02-10 05:00:00,10294.0
-2018-02-10 06:00:00,10433.0
-2018-02-10 07:00:00,10740.0
-2018-02-10 08:00:00,11125.0
-2018-02-10 09:00:00,11300.0
-2018-02-10 10:00:00,11671.0
-2018-02-10 11:00:00,11887.0
-2018-02-10 12:00:00,11906.0
-2018-02-10 13:00:00,11862.0
-2018-02-10 14:00:00,11712.0
-2018-02-10 15:00:00,11555.0
-2018-02-10 16:00:00,11428.0
-2018-02-10 17:00:00,11424.0
-2018-02-10 18:00:00,11589.0
-2018-02-10 19:00:00,12123.0
-2018-02-10 20:00:00,12328.0
-2018-02-10 21:00:00,12198.0
-2018-02-10 22:00:00,11978.0
-2018-02-10 23:00:00,11669.0
-2018-02-11 00:00:00,11140.0
-2018-02-09 01:00:00,11362.0
-2018-02-09 02:00:00,10973.0
-2018-02-09 03:00:00,10686.0
-2018-02-09 04:00:00,10534.0
-2018-02-09 05:00:00,10502.0
-2018-02-09 06:00:00,10670.0
-2018-02-09 07:00:00,11136.0
-2018-02-09 08:00:00,11797.0
-2018-02-09 09:00:00,12074.0
-2018-02-09 10:00:00,12436.0
-2018-02-09 11:00:00,12622.0
-2018-02-09 12:00:00,12758.0
-2018-02-09 13:00:00,12804.0
-2018-02-09 14:00:00,12796.0
-2018-02-09 15:00:00,12733.0
-2018-02-09 16:00:00,12596.0
-2018-02-09 17:00:00,12522.0
-2018-02-09 18:00:00,12595.0
-2018-02-09 19:00:00,13138.0
-2018-02-09 20:00:00,13139.0
-2018-02-09 21:00:00,12884.0
-2018-02-09 22:00:00,12596.0
-2018-02-09 23:00:00,12228.0
-2018-02-10 00:00:00,11611.0
-2018-02-08 01:00:00,11729.0
-2018-02-08 02:00:00,11412.0
-2018-02-08 03:00:00,11223.0
-2018-02-08 04:00:00,11128.0
-2018-02-08 05:00:00,11156.0
-2018-02-08 06:00:00,11378.0
-2018-02-08 07:00:00,12014.0
-2018-02-08 08:00:00,12988.0
-2018-02-08 09:00:00,13400.0
-2018-02-08 10:00:00,13492.0
-2018-02-08 11:00:00,13485.0
-2018-02-08 12:00:00,13427.0
-2018-02-08 13:00:00,13168.0
-2018-02-08 14:00:00,12967.0
-2018-02-08 15:00:00,12912.0
-2018-02-08 16:00:00,12866.0
-2018-02-08 17:00:00,12813.0
-2018-02-08 18:00:00,13010.0
-2018-02-08 19:00:00,13544.0
-2018-02-08 20:00:00,13643.0
-2018-02-08 21:00:00,13464.0
-2018-02-08 22:00:00,13180.0
-2018-02-08 23:00:00,12670.0
-2018-02-09 00:00:00,11974.0
-2018-02-07 01:00:00,11402.0
-2018-02-07 02:00:00,11013.0
-2018-02-07 03:00:00,10805.0
-2018-02-07 04:00:00,10756.0
-2018-02-07 05:00:00,10770.0
-2018-02-07 06:00:00,11040.0
-2018-02-07 07:00:00,11705.0
-2018-02-07 08:00:00,12700.0
-2018-02-07 09:00:00,13080.0
-2018-02-07 10:00:00,13186.0
-2018-02-07 11:00:00,13132.0
-2018-02-07 12:00:00,13155.0
-2018-02-07 13:00:00,13071.0
-2018-02-07 14:00:00,13022.0
-2018-02-07 15:00:00,12918.0
-2018-02-07 16:00:00,12884.0
-2018-02-07 17:00:00,12976.0
-2018-02-07 18:00:00,13251.0
-2018-02-07 19:00:00,13778.0
-2018-02-07 20:00:00,13877.0
-2018-02-07 21:00:00,13710.0
-2018-02-07 22:00:00,13471.0
-2018-02-07 23:00:00,12966.0
-2018-02-08 00:00:00,12298.0
-2018-02-06 01:00:00,11845.0
-2018-02-06 02:00:00,11498.0
-2018-02-06 03:00:00,11288.0
-2018-02-06 04:00:00,11248.0
-2018-02-06 05:00:00,11227.0
-2018-02-06 06:00:00,11523.0
-2018-02-06 07:00:00,12155.0
-2018-02-06 08:00:00,13108.0
-2018-02-06 09:00:00,13445.0
-2018-02-06 10:00:00,13374.0
-2018-02-06 11:00:00,13253.0
-2018-02-06 12:00:00,13158.0
-2018-02-06 13:00:00,13001.0
-2018-02-06 14:00:00,12828.0
-2018-02-06 15:00:00,12801.0
-2018-02-06 16:00:00,12742.0
-2018-02-06 17:00:00,12800.0
-2018-02-06 18:00:00,13037.0
-2018-02-06 19:00:00,13595.0
-2018-02-06 20:00:00,13675.0
-2018-02-06 21:00:00,13475.0
-2018-02-06 22:00:00,13177.0
-2018-02-06 23:00:00,12670.0
-2018-02-07 00:00:00,11988.0
-2018-02-05 01:00:00,11318.0
-2018-02-05 02:00:00,11098.0
-2018-02-05 03:00:00,10995.0
-2018-02-05 04:00:00,10974.0
-2018-02-05 05:00:00,11108.0
-2018-02-05 06:00:00,11349.0
-2018-02-05 07:00:00,12178.0
-2018-02-05 08:00:00,13223.0
-2018-02-05 09:00:00,13649.0
-2018-02-05 10:00:00,13775.0
-2018-02-05 11:00:00,13739.0
-2018-02-05 12:00:00,13599.0
-2018-02-05 13:00:00,13517.0
-2018-02-05 14:00:00,13612.0
-2018-02-05 15:00:00,13676.0
-2018-02-05 16:00:00,13598.0
-2018-02-05 17:00:00,13573.0
-2018-02-05 18:00:00,13772.0
-2018-02-05 19:00:00,14292.0
-2018-02-05 20:00:00,14292.0
-2018-02-05 21:00:00,14103.0
-2018-02-05 22:00:00,13781.0
-2018-02-05 23:00:00,13236.0
-2018-02-06 00:00:00,12478.0
-2018-02-04 01:00:00,10330.0
-2018-02-04 02:00:00,9937.0
-2018-02-04 03:00:00,9638.0
-2018-02-04 04:00:00,9484.0
-2018-02-04 05:00:00,9418.0
-2018-02-04 06:00:00,9519.0
-2018-02-04 07:00:00,9684.0
-2018-02-04 08:00:00,10091.0
-2018-02-04 09:00:00,10275.0
-2018-02-04 10:00:00,10643.0
-2018-02-04 11:00:00,11021.0
-2018-02-04 12:00:00,11310.0
-2018-02-04 13:00:00,11459.0
-2018-02-04 14:00:00,11598.0
-2018-02-04 15:00:00,11636.0
-2018-02-04 16:00:00,11610.0
-2018-02-04 17:00:00,11610.0
-2018-02-04 18:00:00,11750.0
-2018-02-04 19:00:00,12356.0
-2018-02-04 20:00:00,12541.0
-2018-02-04 21:00:00,12444.0
-2018-02-04 22:00:00,12323.0
-2018-02-04 23:00:00,12110.0
-2018-02-05 00:00:00,11715.0
-2018-02-03 01:00:00,11501.0
-2018-02-03 02:00:00,11038.0
-2018-02-03 03:00:00,10763.0
-2018-02-03 04:00:00,10509.0
-2018-02-03 05:00:00,10451.0
-2018-02-03 06:00:00,10492.0
-2018-02-03 07:00:00,10775.0
-2018-02-03 08:00:00,11188.0
-2018-02-03 09:00:00,11427.0
-2018-02-03 10:00:00,11689.0
-2018-02-03 11:00:00,11831.0
-2018-02-03 12:00:00,11881.0
-2018-02-03 13:00:00,11765.0
-2018-02-03 14:00:00,11643.0
-2018-02-03 15:00:00,11414.0
-2018-02-03 16:00:00,11253.0
-2018-02-03 17:00:00,11122.0
-2018-02-03 18:00:00,11254.0
-2018-02-03 19:00:00,11768.0
-2018-02-03 20:00:00,11845.0
-2018-02-03 21:00:00,11705.0
-2018-02-03 22:00:00,11522.0
-2018-02-03 23:00:00,11280.0
-2018-02-04 00:00:00,10833.0
-2018-02-02 01:00:00,11743.0
-2018-02-02 02:00:00,11444.0
-2018-02-02 03:00:00,11265.0
-2018-02-02 04:00:00,11140.0
-2018-02-02 05:00:00,11173.0
-2018-02-02 06:00:00,11408.0
-2018-02-02 07:00:00,12073.0
-2018-02-02 08:00:00,13050.0
-2018-02-02 09:00:00,13456.0
-2018-02-02 10:00:00,13509.0
-2018-02-02 11:00:00,13435.0
-2018-02-02 12:00:00,13414.0
-2018-02-02 13:00:00,13263.0
-2018-02-02 14:00:00,13099.0
-2018-02-02 15:00:00,12895.0
-2018-02-02 16:00:00,12719.0
-2018-02-02 17:00:00,12613.0
-2018-02-02 18:00:00,12852.0
-2018-02-02 19:00:00,13495.0
-2018-02-02 20:00:00,13527.0
-2018-02-02 21:00:00,13341.0
-2018-02-02 22:00:00,13102.0
-2018-02-02 23:00:00,12708.0
-2018-02-03 00:00:00,12069.0
-2018-02-01 01:00:00,10355.0
-2018-02-01 02:00:00,9978.0
-2018-02-01 03:00:00,9803.0
-2018-02-01 04:00:00,9686.0
-2018-02-01 05:00:00,9720.0
-2018-02-01 06:00:00,10014.0
-2018-02-01 07:00:00,10772.0
-2018-02-01 08:00:00,11874.0
-2018-02-01 09:00:00,12451.0
-2018-02-01 10:00:00,12719.0
-2018-02-01 11:00:00,12582.0
-2018-02-01 12:00:00,12664.0
-2018-02-01 13:00:00,12623.0
-2018-02-01 14:00:00,12603.0
-2018-02-01 15:00:00,12553.0
-2018-02-01 16:00:00,12522.0
-2018-02-01 17:00:00,12554.0
-2018-02-01 18:00:00,12927.0
-2018-02-01 19:00:00,13665.0
-2018-02-01 20:00:00,13820.0
-2018-02-01 21:00:00,13700.0
-2018-02-01 22:00:00,13436.0
-2018-02-01 23:00:00,12994.0
-2018-02-02 00:00:00,12286.0
-2018-01-31 01:00:00,10986.0
-2018-01-31 02:00:00,10603.0
-2018-01-31 03:00:00,10346.0
-2018-01-31 04:00:00,10183.0
-2018-01-31 05:00:00,10141.0
-2018-01-31 06:00:00,10400.0
-2018-01-31 07:00:00,11098.0
-2018-01-31 08:00:00,12151.0
-2018-01-31 09:00:00,12519.0
-2018-01-31 10:00:00,12494.0
-2018-01-31 11:00:00,12293.0
-2018-01-31 12:00:00,12322.0
-2018-01-31 13:00:00,12256.0
-2018-01-31 14:00:00,12132.0
-2018-01-31 15:00:00,12062.0
-2018-01-31 16:00:00,11975.0
-2018-01-31 17:00:00,11923.0
-2018-01-31 18:00:00,12144.0
-2018-01-31 19:00:00,12665.0
-2018-01-31 20:00:00,12597.0
-2018-01-31 21:00:00,12379.0
-2018-01-31 22:00:00,12114.0
-2018-01-31 23:00:00,11614.0
-2018-02-01 00:00:00,10975.0
-2018-01-30 01:00:00,11111.0
-2018-01-30 02:00:00,10802.0
-2018-01-30 03:00:00,10624.0
-2018-01-30 04:00:00,10509.0
-2018-01-30 05:00:00,10536.0
-2018-01-30 06:00:00,10833.0
-2018-01-30 07:00:00,11577.0
-2018-01-30 08:00:00,12643.0
-2018-01-30 09:00:00,13066.0
-2018-01-30 10:00:00,12949.0
-2018-01-30 11:00:00,12809.0
-2018-01-30 12:00:00,12749.0
-2018-01-30 13:00:00,12650.0
-2018-01-30 14:00:00,12445.0
-2018-01-30 15:00:00,12375.0
-2018-01-30 16:00:00,12399.0
-2018-01-30 17:00:00,12466.0
-2018-01-30 18:00:00,12814.0
-2018-01-30 19:00:00,13373.0
-2018-01-30 20:00:00,13268.0
-2018-01-30 21:00:00,13110.0
-2018-01-30 22:00:00,12771.0
-2018-01-30 23:00:00,12282.0
-2018-01-31 00:00:00,11646.0
-2018-01-29 01:00:00,9728.0
-2018-01-29 02:00:00,9499.0
-2018-01-29 03:00:00,9425.0
-2018-01-29 04:00:00,9377.0
-2018-01-29 05:00:00,9474.0
-2018-01-29 06:00:00,9785.0
-2018-01-29 07:00:00,10648.0
-2018-01-29 08:00:00,11785.0
-2018-01-29 09:00:00,12434.0
-2018-01-29 10:00:00,12545.0
-2018-01-29 11:00:00,12684.0
-2018-01-29 12:00:00,12780.0
-2018-01-29 13:00:00,12742.0
-2018-01-29 14:00:00,12670.0
-2018-01-29 15:00:00,12642.0
-2018-01-29 16:00:00,12606.0
-2018-01-29 17:00:00,12591.0
-2018-01-29 18:00:00,12795.0
-2018-01-29 19:00:00,13321.0
-2018-01-29 20:00:00,13247.0
-2018-01-29 21:00:00,13058.0
-2018-01-29 22:00:00,12794.0
-2018-01-29 23:00:00,12341.0
-2018-01-30 00:00:00,11699.0
-2018-01-28 01:00:00,9405.0
-2018-01-28 02:00:00,9027.0
-2018-01-28 03:00:00,8857.0
-2018-01-28 04:00:00,8796.0
-2018-01-28 05:00:00,8730.0
-2018-01-28 06:00:00,8838.0
-2018-01-28 07:00:00,8982.0
-2018-01-28 08:00:00,9331.0
-2018-01-28 09:00:00,9359.0
-2018-01-28 10:00:00,9504.0
-2018-01-28 11:00:00,9562.0
-2018-01-28 12:00:00,9619.0
-2018-01-28 13:00:00,9648.0
-2018-01-28 14:00:00,9693.0
-2018-01-28 15:00:00,9765.0
-2018-01-28 16:00:00,9938.0
-2018-01-28 17:00:00,10139.0
-2018-01-28 18:00:00,10555.0
-2018-01-28 19:00:00,11119.0
-2018-01-28 20:00:00,11175.0
-2018-01-28 21:00:00,11113.0
-2018-01-28 22:00:00,10938.0
-2018-01-28 23:00:00,10605.0
-2018-01-29 00:00:00,10201.0
-2018-01-27 01:00:00,9836.0
-2018-01-27 02:00:00,9417.0
-2018-01-27 03:00:00,9124.0
-2018-01-27 04:00:00,8901.0
-2018-01-27 05:00:00,8757.0
-2018-01-27 06:00:00,8852.0
-2018-01-27 07:00:00,9070.0
-2018-01-27 08:00:00,9549.0
-2018-01-27 09:00:00,9825.0
-2018-01-27 10:00:00,10054.0
-2018-01-27 11:00:00,10130.0
-2018-01-27 12:00:00,10180.0
-2018-01-27 13:00:00,10025.0
-2018-01-27 14:00:00,9907.0
-2018-01-27 15:00:00,9671.0
-2018-01-27 16:00:00,9576.0
-2018-01-27 17:00:00,9532.0
-2018-01-27 18:00:00,9770.0
-2018-01-27 19:00:00,10489.0
-2018-01-27 20:00:00,10619.0
-2018-01-27 21:00:00,10540.0
-2018-01-27 22:00:00,10401.0
-2018-01-27 23:00:00,10191.0
-2018-01-28 00:00:00,9798.0
-2018-01-26 01:00:00,10334.0
-2018-01-26 02:00:00,9956.0
-2018-01-26 03:00:00,9721.0
-2018-01-26 04:00:00,9587.0
-2018-01-26 05:00:00,9562.0
-2018-01-26 06:00:00,9810.0
-2018-01-26 07:00:00,10480.0
-2018-01-26 08:00:00,11508.0
-2018-01-26 09:00:00,11868.0
-2018-01-26 10:00:00,11846.0
-2018-01-26 11:00:00,11777.0
-2018-01-26 12:00:00,11746.0
-2018-01-26 13:00:00,11624.0
-2018-01-26 14:00:00,11550.0
-2018-01-26 15:00:00,11544.0
-2018-01-26 16:00:00,11510.0
-2018-01-26 17:00:00,11392.0
-2018-01-26 18:00:00,11621.0
-2018-01-26 19:00:00,12087.0
-2018-01-26 20:00:00,11923.0
-2018-01-26 21:00:00,11711.0
-2018-01-26 22:00:00,11425.0
-2018-01-26 23:00:00,11000.0
-2018-01-27 00:00:00,10428.0
-2018-01-25 01:00:00,10742.0
-2018-01-25 02:00:00,10359.0
-2018-01-25 03:00:00,10161.0
-2018-01-25 04:00:00,10057.0
-2018-01-25 05:00:00,10036.0
-2018-01-25 06:00:00,10310.0
-2018-01-25 07:00:00,11010.0
-2018-01-25 08:00:00,12064.0
-2018-01-25 09:00:00,12515.0
-2018-01-25 10:00:00,12491.0
-2018-01-25 11:00:00,12371.0
-2018-01-25 12:00:00,12243.0
-2018-01-25 13:00:00,12086.0
-2018-01-25 14:00:00,11904.0
-2018-01-25 15:00:00,11814.0
-2018-01-25 16:00:00,11660.0
-2018-01-25 17:00:00,11591.0
-2018-01-25 18:00:00,11812.0
-2018-01-25 19:00:00,12472.0
-2018-01-25 20:00:00,12459.0
-2018-01-25 21:00:00,12332.0
-2018-01-25 22:00:00,12061.0
-2018-01-25 23:00:00,11622.0
-2018-01-26 00:00:00,10935.0
-2018-01-24 01:00:00,10523.0
-2018-01-24 02:00:00,10156.0
-2018-01-24 03:00:00,9945.0
-2018-01-24 04:00:00,9804.0
-2018-01-24 05:00:00,9787.0
-2018-01-24 06:00:00,10080.0
-2018-01-24 07:00:00,10806.0
-2018-01-24 08:00:00,11844.0
-2018-01-24 09:00:00,12397.0
-2018-01-24 10:00:00,12467.0
-2018-01-24 11:00:00,12522.0
-2018-01-24 12:00:00,12620.0
-2018-01-24 13:00:00,12631.0
-2018-01-24 14:00:00,12617.0
-2018-01-24 15:00:00,12675.0
-2018-01-24 16:00:00,12545.0
-2018-01-24 17:00:00,12470.0
-2018-01-24 18:00:00,12775.0
-2018-01-24 19:00:00,13194.0
-2018-01-24 20:00:00,13037.0
-2018-01-24 21:00:00,12869.0
-2018-01-24 22:00:00,12542.0
-2018-01-24 23:00:00,12072.0
-2018-01-25 00:00:00,11315.0
-2018-01-23 01:00:00,9848.0
-2018-01-23 02:00:00,9512.0
-2018-01-23 03:00:00,9321.0
-2018-01-23 04:00:00,9226.0
-2018-01-23 05:00:00,9263.0
-2018-01-23 06:00:00,9596.0
-2018-01-23 07:00:00,10350.0
-2018-01-23 08:00:00,11495.0
-2018-01-23 09:00:00,12108.0
-2018-01-23 10:00:00,12210.0
-2018-01-23 11:00:00,12337.0
-2018-01-23 12:00:00,12491.0
-2018-01-23 13:00:00,12499.0
-2018-01-23 14:00:00,12485.0
-2018-01-23 15:00:00,12517.0
-2018-01-23 16:00:00,12445.0
-2018-01-23 17:00:00,12450.0
-2018-01-23 18:00:00,12698.0
-2018-01-23 19:00:00,13078.0
-2018-01-23 20:00:00,12911.0
-2018-01-23 21:00:00,12638.0
-2018-01-23 22:00:00,12358.0
-2018-01-23 23:00:00,11845.0
-2018-01-24 00:00:00,11177.0
-2018-01-22 01:00:00,9313.0
-2018-01-22 02:00:00,9022.0
-2018-01-22 03:00:00,8900.0
-2018-01-22 04:00:00,8788.0
-2018-01-22 05:00:00,8904.0
-2018-01-22 06:00:00,9173.0
-2018-01-22 07:00:00,9979.0
-2018-01-22 08:00:00,10990.0
-2018-01-22 09:00:00,11673.0
-2018-01-22 10:00:00,11697.0
-2018-01-22 11:00:00,11711.0
-2018-01-22 12:00:00,11779.0
-2018-01-22 13:00:00,11802.0
-2018-01-22 14:00:00,11751.0
-2018-01-22 15:00:00,11699.0
-2018-01-22 16:00:00,11449.0
-2018-01-22 17:00:00,11288.0
-2018-01-22 18:00:00,11536.0
-2018-01-22 19:00:00,12058.0
-2018-01-22 20:00:00,11968.0
-2018-01-22 21:00:00,11792.0
-2018-01-22 22:00:00,11555.0
-2018-01-22 23:00:00,11050.0
-2018-01-23 00:00:00,10434.0
-2018-01-21 01:00:00,9446.0
-2018-01-21 02:00:00,9108.0
-2018-01-21 03:00:00,8875.0
-2018-01-21 04:00:00,8706.0
-2018-01-21 05:00:00,8674.0
-2018-01-21 06:00:00,8669.0
-2018-01-21 07:00:00,8876.0
-2018-01-21 08:00:00,9117.0
-2018-01-21 09:00:00,9283.0
-2018-01-21 10:00:00,9494.0
-2018-01-21 11:00:00,9741.0
-2018-01-21 12:00:00,9916.0
-2018-01-21 13:00:00,10005.0
-2018-01-21 14:00:00,10044.0
-2018-01-21 15:00:00,10007.0
-2018-01-21 16:00:00,10087.0
-2018-01-21 17:00:00,10172.0
-2018-01-21 18:00:00,10550.0
-2018-01-21 19:00:00,11060.0
-2018-01-21 20:00:00,11011.0
-2018-01-21 21:00:00,10910.0
-2018-01-21 22:00:00,10621.0
-2018-01-21 23:00:00,10263.0
-2018-01-22 00:00:00,9769.0
-2018-01-20 01:00:00,10423.0
-2018-01-20 02:00:00,10067.0
-2018-01-20 03:00:00,9756.0
-2018-01-20 04:00:00,9533.0
-2018-01-20 05:00:00,9498.0
-2018-01-20 06:00:00,9527.0
-2018-01-20 07:00:00,9895.0
-2018-01-20 08:00:00,10316.0
-2018-01-20 09:00:00,10565.0
-2018-01-20 10:00:00,10681.0
-2018-01-20 11:00:00,10698.0
-2018-01-20 12:00:00,10682.0
-2018-01-20 13:00:00,10505.0
-2018-01-20 14:00:00,10357.0
-2018-01-20 15:00:00,10077.0
-2018-01-20 16:00:00,9976.0
-2018-01-20 17:00:00,9917.0
-2018-01-20 18:00:00,10296.0
-2018-01-20 19:00:00,10962.0
-2018-01-20 20:00:00,10997.0
-2018-01-20 21:00:00,10849.0
-2018-01-20 22:00:00,10657.0
-2018-01-20 23:00:00,10377.0
-2018-01-21 00:00:00,9920.0
-2018-01-19 01:00:00,11099.0
-2018-01-19 02:00:00,10726.0
-2018-01-19 03:00:00,10482.0
-2018-01-19 04:00:00,10362.0
-2018-01-19 05:00:00,10375.0
-2018-01-19 06:00:00,10604.0
-2018-01-19 07:00:00,11245.0
-2018-01-19 08:00:00,12284.0
-2018-01-19 09:00:00,12667.0
-2018-01-19 10:00:00,12586.0
-2018-01-19 11:00:00,12502.0
-2018-01-19 12:00:00,12432.0
-2018-01-19 13:00:00,12291.0
-2018-01-19 14:00:00,12148.0
-2018-01-19 15:00:00,12111.0
-2018-01-19 16:00:00,11961.0
-2018-01-19 17:00:00,11851.0
-2018-01-19 18:00:00,12244.0
-2018-01-19 19:00:00,12851.0
-2018-01-19 20:00:00,12729.0
-2018-01-19 21:00:00,12444.0
-2018-01-19 22:00:00,12132.0
-2018-01-19 23:00:00,11692.0
-2018-01-20 00:00:00,11073.0
-2018-01-18 01:00:00,11968.0
-2018-01-18 02:00:00,11601.0
-2018-01-18 03:00:00,11363.0
-2018-01-18 04:00:00,11239.0
-2018-01-18 05:00:00,11195.0
-2018-01-18 06:00:00,11476.0
-2018-01-18 07:00:00,12074.0
-2018-01-18 08:00:00,13134.0
-2018-01-18 09:00:00,13549.0
-2018-01-18 10:00:00,13483.0
-2018-01-18 11:00:00,13353.0
-2018-01-18 12:00:00,13253.0
-2018-01-18 13:00:00,13018.0
-2018-01-18 14:00:00,12850.0
-2018-01-18 15:00:00,12734.0
-2018-01-18 16:00:00,12588.0
-2018-01-18 17:00:00,12527.0
-2018-01-18 18:00:00,12846.0
-2018-01-18 19:00:00,13572.0
-2018-01-18 20:00:00,13496.0
-2018-01-18 21:00:00,13306.0
-2018-01-18 22:00:00,13001.0
-2018-01-18 23:00:00,12454.0
-2018-01-19 00:00:00,11745.0
-2018-01-17 01:00:00,11905.0
-2018-01-17 02:00:00,11578.0
-2018-01-17 03:00:00,11368.0
-2018-01-17 04:00:00,11326.0
-2018-01-17 05:00:00,11340.0
-2018-01-17 06:00:00,11593.0
-2018-01-17 07:00:00,12262.0
-2018-01-17 08:00:00,13351.0
-2018-01-17 09:00:00,13864.0
-2018-01-17 10:00:00,13798.0
-2018-01-17 11:00:00,13648.0
-2018-01-17 12:00:00,13572.0
-2018-01-17 13:00:00,13410.0
-2018-01-17 14:00:00,13279.0
-2018-01-17 15:00:00,13218.0
-2018-01-17 16:00:00,13098.0
-2018-01-17 17:00:00,13085.0
-2018-01-17 18:00:00,13484.0
-2018-01-17 19:00:00,14257.0
-2018-01-17 20:00:00,14244.0
-2018-01-17 21:00:00,14128.0
-2018-01-17 22:00:00,13848.0
-2018-01-17 23:00:00,13298.0
-2018-01-18 00:00:00,12590.0
-2018-01-16 01:00:00,12073.0
-2018-01-16 02:00:00,11735.0
-2018-01-16 03:00:00,11559.0
-2018-01-16 04:00:00,11475.0
-2018-01-16 05:00:00,11506.0
-2018-01-16 06:00:00,11684.0
-2018-01-16 07:00:00,12285.0
-2018-01-16 08:00:00,13219.0
-2018-01-16 09:00:00,13690.0
-2018-01-16 10:00:00,13687.0
-2018-01-16 11:00:00,13603.0
-2018-01-16 12:00:00,13511.0
-2018-01-16 13:00:00,13355.0
-2018-01-16 14:00:00,13110.0
-2018-01-16 15:00:00,13080.0
-2018-01-16 16:00:00,12958.0
-2018-01-16 17:00:00,12918.0
-2018-01-16 18:00:00,13319.0
-2018-01-16 19:00:00,14023.0
-2018-01-16 20:00:00,13992.0
-2018-01-16 21:00:00,13848.0
-2018-01-16 22:00:00,13586.0
-2018-01-16 23:00:00,13124.0
-2018-01-17 00:00:00,12487.0
-2018-01-15 01:00:00,11433.0
-2018-01-15 02:00:00,11170.0
-2018-01-15 03:00:00,10984.0
-2018-01-15 04:00:00,10789.0
-2018-01-15 05:00:00,10837.0
-2018-01-15 06:00:00,11060.0
-2018-01-15 07:00:00,11497.0
-2018-01-15 08:00:00,12318.0
-2018-01-15 09:00:00,12763.0
-2018-01-15 10:00:00,12967.0
-2018-01-15 11:00:00,13168.0
-2018-01-15 12:00:00,13137.0
-2018-01-15 13:00:00,13149.0
-2018-01-15 14:00:00,13190.0
-2018-01-15 15:00:00,13298.0
-2018-01-15 16:00:00,13310.0
-2018-01-15 17:00:00,13342.0
-2018-01-15 18:00:00,13667.0
-2018-01-15 19:00:00,14304.0
-2018-01-15 20:00:00,14191.0
-2018-01-15 21:00:00,14006.0
-2018-01-15 22:00:00,13756.0
-2018-01-15 23:00:00,13260.0
-2018-01-16 00:00:00,12642.0
-2018-01-14 01:00:00,11673.0
-2018-01-14 02:00:00,11383.0
-2018-01-14 03:00:00,11200.0
-2018-01-14 04:00:00,11063.0
-2018-01-14 05:00:00,11014.0
-2018-01-14 06:00:00,11049.0
-2018-01-14 07:00:00,11291.0
-2018-01-14 08:00:00,11567.0
-2018-01-14 09:00:00,11671.0
-2018-01-14 10:00:00,11656.0
-2018-01-14 11:00:00,11727.0
-2018-01-14 12:00:00,11812.0
-2018-01-14 13:00:00,11762.0
-2018-01-14 14:00:00,11746.0
-2018-01-14 15:00:00,11699.0
-2018-01-14 16:00:00,11778.0
-2018-01-14 17:00:00,11918.0
-2018-01-14 18:00:00,12467.0
-2018-01-14 19:00:00,12986.0
-2018-01-14 20:00:00,13004.0
-2018-01-14 21:00:00,12966.0
-2018-01-14 22:00:00,12738.0
-2018-01-14 23:00:00,12423.0
-2018-01-15 00:00:00,11942.0
-2018-01-13 01:00:00,11805.0
-2018-01-13 02:00:00,11415.0
-2018-01-13 03:00:00,11171.0
-2018-01-13 04:00:00,11024.0
-2018-01-13 05:00:00,10992.0
-2018-01-13 06:00:00,11143.0
-2018-01-13 07:00:00,11467.0
-2018-01-13 08:00:00,11884.0
-2018-01-13 09:00:00,12150.0
-2018-01-13 10:00:00,12231.0
-2018-01-13 11:00:00,12245.0
-2018-01-13 12:00:00,12191.0
-2018-01-13 13:00:00,12210.0
-2018-01-13 14:00:00,12077.0
-2018-01-13 15:00:00,11848.0
-2018-01-13 16:00:00,11714.0
-2018-01-13 17:00:00,11765.0
-2018-01-13 18:00:00,12172.0
-2018-01-13 19:00:00,12938.0
-2018-01-13 20:00:00,12928.0
-2018-01-13 21:00:00,12830.0
-2018-01-13 22:00:00,12706.0
-2018-01-13 23:00:00,12483.0
-2018-01-14 00:00:00,12113.0
-2018-01-12 01:00:00,10608.0
-2018-01-12 02:00:00,10278.0
-2018-01-12 03:00:00,10093.0
-2018-01-12 04:00:00,10058.0
-2018-01-12 05:00:00,10071.0
-2018-01-12 06:00:00,10345.0
-2018-01-12 07:00:00,11055.0
-2018-01-12 08:00:00,12101.0
-2018-01-12 09:00:00,12762.0
-2018-01-12 10:00:00,12967.0
-2018-01-12 11:00:00,13109.0
-2018-01-12 12:00:00,13232.0
-2018-01-12 13:00:00,13223.0
-2018-01-12 14:00:00,13221.0
-2018-01-12 15:00:00,13264.0
-2018-01-12 16:00:00,13175.0
-2018-01-12 17:00:00,13115.0
-2018-01-12 18:00:00,13425.0
-2018-01-12 19:00:00,13868.0
-2018-01-12 20:00:00,13749.0
-2018-01-12 21:00:00,13550.0
-2018-01-12 22:00:00,13321.0
-2018-01-12 23:00:00,12985.0
-2018-01-13 00:00:00,12391.0
-2018-01-11 01:00:00,9886.0
-2018-01-11 02:00:00,9427.0
-2018-01-11 03:00:00,9110.0
-2018-01-11 04:00:00,8947.0
-2018-01-11 05:00:00,8919.0
-2018-01-11 06:00:00,9125.0
-2018-01-11 07:00:00,9760.0
-2018-01-11 08:00:00,10694.0
-2018-01-11 09:00:00,11334.0
-2018-01-11 10:00:00,11396.0
-2018-01-11 11:00:00,11479.0
-2018-01-11 12:00:00,11528.0
-2018-01-11 13:00:00,11528.0
-2018-01-11 14:00:00,11527.0
-2018-01-11 15:00:00,11555.0
-2018-01-11 16:00:00,11470.0
-2018-01-11 17:00:00,11521.0
-2018-01-11 18:00:00,11955.0
-2018-01-11 19:00:00,12264.0
-2018-01-11 20:00:00,12242.0
-2018-01-11 21:00:00,12173.0
-2018-01-11 22:00:00,12074.0
-2018-01-11 23:00:00,11750.0
-2018-01-12 00:00:00,11155.0
-2018-01-10 01:00:00,10814.0
-2018-01-10 02:00:00,10372.0
-2018-01-10 03:00:00,10134.0
-2018-01-10 04:00:00,9995.0
-2018-01-10 05:00:00,9945.0
-2018-01-10 06:00:00,10193.0
-2018-01-10 07:00:00,10793.0
-2018-01-10 08:00:00,11782.0
-2018-01-10 09:00:00,12305.0
-2018-01-10 10:00:00,12317.0
-2018-01-10 11:00:00,12357.0
-2018-01-10 12:00:00,12408.0
-2018-01-10 13:00:00,12350.0
-2018-01-10 14:00:00,12278.0
-2018-01-10 15:00:00,12219.0
-2018-01-10 16:00:00,12134.0
-2018-01-10 17:00:00,12086.0
-2018-01-10 18:00:00,12429.0
-2018-01-10 19:00:00,12673.0
-2018-01-10 20:00:00,12405.0
-2018-01-10 21:00:00,12141.0
-2018-01-10 22:00:00,11797.0
-2018-01-10 23:00:00,11256.0
-2018-01-11 00:00:00,10546.0
-2018-01-09 01:00:00,10891.0
-2018-01-09 02:00:00,10452.0
-2018-01-09 03:00:00,10180.0
-2018-01-09 04:00:00,10039.0
-2018-01-09 05:00:00,10075.0
-2018-01-09 06:00:00,10362.0
-2018-01-09 07:00:00,11023.0
-2018-01-09 08:00:00,12075.0
-2018-01-09 09:00:00,12602.0
-2018-01-09 10:00:00,12597.0
-2018-01-09 11:00:00,12636.0
-2018-01-09 12:00:00,12602.0
-2018-01-09 13:00:00,12450.0
-2018-01-09 14:00:00,12302.0
-2018-01-09 15:00:00,12236.0
-2018-01-09 16:00:00,12138.0
-2018-01-09 17:00:00,12162.0
-2018-01-09 18:00:00,12663.0
-2018-01-09 19:00:00,13189.0
-2018-01-09 20:00:00,13064.0
-2018-01-09 21:00:00,12876.0
-2018-01-09 22:00:00,12610.0
-2018-01-09 23:00:00,12137.0
-2018-01-10 00:00:00,11442.0
-2018-01-08 01:00:00,10866.0
-2018-01-08 02:00:00,10525.0
-2018-01-08 03:00:00,10254.0
-2018-01-08 04:00:00,10060.0
-2018-01-08 05:00:00,10099.0
-2018-01-08 06:00:00,10312.0
-2018-01-08 07:00:00,10977.0
-2018-01-08 08:00:00,11998.0
-2018-01-08 09:00:00,12515.0
-2018-01-08 10:00:00,12514.0
-2018-01-08 11:00:00,12522.0
-2018-01-08 12:00:00,12445.0
-2018-01-08 13:00:00,12315.0
-2018-01-08 14:00:00,12221.0
-2018-01-08 15:00:00,12175.0
-2018-01-08 16:00:00,12032.0
-2018-01-08 17:00:00,11992.0
-2018-01-08 18:00:00,12469.0
-2018-01-08 19:00:00,13199.0
-2018-01-08 20:00:00,13105.0
-2018-01-08 21:00:00,12981.0
-2018-01-08 22:00:00,12733.0
-2018-01-08 23:00:00,12240.0
-2018-01-09 00:00:00,11540.0
-2018-01-07 01:00:00,12231.0
-2018-01-07 02:00:00,11820.0
-2018-01-07 03:00:00,11560.0
-2018-01-07 04:00:00,11310.0
-2018-01-07 05:00:00,11230.0
-2018-01-07 06:00:00,11187.0
-2018-01-07 07:00:00,11306.0
-2018-01-07 08:00:00,11417.0
-2018-01-07 09:00:00,11507.0
-2018-01-07 10:00:00,11727.0
-2018-01-07 11:00:00,11890.0
-2018-01-07 12:00:00,12053.0
-2018-01-07 13:00:00,12111.0
-2018-01-07 14:00:00,12066.0
-2018-01-07 15:00:00,12002.0
-2018-01-07 16:00:00,11988.0
-2018-01-07 17:00:00,11992.0
-2018-01-07 18:00:00,12483.0
-2018-01-07 19:00:00,12924.0
-2018-01-07 20:00:00,12828.0
-2018-01-07 21:00:00,12607.0
-2018-01-07 22:00:00,12361.0
-2018-01-07 23:00:00,11982.0
-2018-01-08 00:00:00,11409.0
-2018-01-06 01:00:00,12846.0
-2018-01-06 02:00:00,12423.0
-2018-01-06 03:00:00,12167.0
-2018-01-06 04:00:00,12013.0
-2018-01-06 05:00:00,11970.0
-2018-01-06 06:00:00,12032.0
-2018-01-06 07:00:00,12306.0
-2018-01-06 08:00:00,12691.0
-2018-01-06 09:00:00,12900.0
-2018-01-06 10:00:00,13008.0
-2018-01-06 11:00:00,13060.0
-2018-01-06 12:00:00,12967.0
-2018-01-06 13:00:00,12878.0
-2018-01-06 14:00:00,12630.0
-2018-01-06 15:00:00,12437.0
-2018-01-06 16:00:00,12235.0
-2018-01-06 17:00:00,12289.0
-2018-01-06 18:00:00,12814.0
-2018-01-06 19:00:00,13630.0
-2018-01-06 20:00:00,13666.0
-2018-01-06 21:00:00,13612.0
-2018-01-06 22:00:00,13461.0
-2018-01-06 23:00:00,13217.0
-2018-01-07 00:00:00,12725.0
-2018-01-05 01:00:00,12806.0
-2018-01-05 02:00:00,12388.0
-2018-01-05 03:00:00,12167.0
-2018-01-05 04:00:00,12032.0
-2018-01-05 05:00:00,12057.0
-2018-01-05 06:00:00,12243.0
-2018-01-05 07:00:00,12795.0
-2018-01-05 08:00:00,13647.0
-2018-01-05 09:00:00,14065.0
-2018-01-05 10:00:00,14152.0
-2018-01-05 11:00:00,14135.0
-2018-01-05 12:00:00,14123.0
-2018-01-05 13:00:00,13998.0
-2018-01-05 14:00:00,13844.0
-2018-01-05 15:00:00,13765.0
-2018-01-05 16:00:00,13640.0
-2018-01-05 17:00:00,13628.0
-2018-01-05 18:00:00,14143.0
-2018-01-05 19:00:00,14785.0
-2018-01-05 20:00:00,14783.0
-2018-01-05 21:00:00,14628.0
-2018-01-05 22:00:00,14418.0
-2018-01-05 23:00:00,14072.0
-2018-01-06 00:00:00,13426.0
-2018-01-04 01:00:00,12649.0
-2018-01-04 02:00:00,12250.0
-2018-01-04 03:00:00,12010.0
-2018-01-04 04:00:00,11867.0
-2018-01-04 05:00:00,11890.0
-2018-01-04 06:00:00,12099.0
-2018-01-04 07:00:00,12669.0
-2018-01-04 08:00:00,13507.0
-2018-01-04 09:00:00,13939.0
-2018-01-04 10:00:00,14054.0
-2018-01-04 11:00:00,14022.0
-2018-01-04 12:00:00,14000.0
-2018-01-04 13:00:00,13915.0
-2018-01-04 14:00:00,13794.0
-2018-01-04 15:00:00,13721.0
-2018-01-04 16:00:00,13624.0
-2018-01-04 17:00:00,13607.0
-2018-01-04 18:00:00,14149.0
-2018-01-04 19:00:00,14906.0
-2018-01-04 20:00:00,14875.0
-2018-01-04 21:00:00,14735.0
-2018-01-04 22:00:00,14518.0
-2018-01-04 23:00:00,14027.0
-2018-01-05 00:00:00,13453.0
-2018-01-03 01:00:00,12995.0
-2018-01-03 02:00:00,12494.0
-2018-01-03 03:00:00,12135.0
-2018-01-03 04:00:00,11901.0
-2018-01-03 05:00:00,11787.0
-2018-01-03 06:00:00,11923.0
-2018-01-03 07:00:00,12395.0
-2018-01-03 08:00:00,13135.0
-2018-01-03 09:00:00,13575.0
-2018-01-03 10:00:00,13753.0
-2018-01-03 11:00:00,13858.0
-2018-01-03 12:00:00,13913.0
-2018-01-03 13:00:00,13847.0
-2018-01-03 14:00:00,13802.0
-2018-01-03 15:00:00,13739.0
-2018-01-03 16:00:00,13672.0
-2018-01-03 17:00:00,13744.0
-2018-01-03 18:00:00,14294.0
-2018-01-03 19:00:00,14887.0
-2018-01-03 20:00:00,14866.0
-2018-01-03 21:00:00,14595.0
-2018-01-03 22:00:00,14314.0
-2018-01-03 23:00:00,13880.0
-2018-01-04 00:00:00,13234.0
-2018-01-02 01:00:00,12315.0
-2018-01-02 02:00:00,11981.0
-2018-01-02 03:00:00,11805.0
-2018-01-02 04:00:00,11684.0
-2018-01-02 05:00:00,11728.0
-2018-01-02 06:00:00,11991.0
-2018-01-02 07:00:00,12559.0
-2018-01-02 08:00:00,13379.0
-2018-01-02 09:00:00,13854.0
-2018-01-02 10:00:00,14040.0
-2018-01-02 11:00:00,14179.0
-2018-01-02 12:00:00,14241.0
-2018-01-02 13:00:00,14204.0
-2018-01-02 14:00:00,14138.0
-2018-01-02 15:00:00,14078.0
-2018-01-02 16:00:00,13984.0
-2018-01-02 17:00:00,14011.0
-2018-01-02 18:00:00,14614.0
-2018-01-02 19:00:00,15405.0
-2018-01-02 20:00:00,15408.0
-2018-01-02 21:00:00,15246.0
-2018-01-02 22:00:00,14933.0
-2018-01-02 23:00:00,14437.0
-2018-01-03 00:00:00,13704.0
-2018-01-01 01:00:00,12263.0
-2018-01-01 02:00:00,11982.0
-2018-01-01 03:00:00,11747.0
-2018-01-01 04:00:00,11581.0
-2018-01-01 05:00:00,11565.0
-2018-01-01 06:00:00,11585.0
-2018-01-01 07:00:00,11773.0
-2018-01-01 08:00:00,11949.0
-2018-01-01 09:00:00,11940.0
-2018-01-01 10:00:00,11891.0
-2018-01-01 11:00:00,11979.0
-2018-01-01 12:00:00,12096.0
-2018-01-01 13:00:00,12155.0
-2018-01-01 14:00:00,12131.0
-2018-01-01 15:00:00,12064.0
-2018-01-01 16:00:00,12053.0
-2018-01-01 17:00:00,12183.0
-2018-01-01 18:00:00,12926.0
-2018-01-01 19:00:00,13809.0
-2018-01-01 20:00:00,13858.0
-2018-01-01 21:00:00,13758.0
-2018-01-01 22:00:00,13627.0
-2018-01-01 23:00:00,13336.0
-2018-01-02 00:00:00,12816.0
diff --git a/docker/images/pinot-thirdeye/config/ephemeral/data/pageviews.csv b/docker/images/pinot-thirdeye/config/ephemeral/data/pageviews.csv
deleted file mode 100644
index ccba33d4efe8..000000000000
--- a/docker/images/pinot-thirdeye/config/ephemeral/data/pageviews.csv
+++ /dev/null
@@ -1,67 +0,0 @@
-timestamp,country,device,pageviews
-2011-01-01,us,android,1985
-2011-01-01,us,ios,985
-2011-01-01,in,android,2000
-2011-01-01,in,ios,909
-2011-01-01,cn,android,1983
-2011-01-01,cn,ios,1200
-2011-01-02,us,android,1785
-2011-01-02,us,ios,1085
-2011-01-02,in,android,2100
-2011-01-02,in,ios,919
-2011-01-02,cn,android,1883
-2011-01-02,cn,ios,1100
-2011-01-03,us,android,1885
-2011-01-03,us,ios,985
-2011-01-03,in,android,1990
-2011-01-03,in,ios,920
-2011-01-03,cn,android,1893
-2011-01-03,cn,ios,1200
-2011-01-04,us,android,1985
-2011-01-04,us,ios,885
-2011-01-04,in,android,1890
-2011-01-04,in,ios,820
-2011-01-04,cn,android,1993
-2011-01-04,cn,ios,1280
-2011-01-05,us,android,1890
-2011-01-05,us,ios,905
-2011-01-05,in,android,1890
-2011-01-05,in,ios,870
-2011-01-05,cn,android,1693
-2011-01-05,cn,ios,900
-2011-01-06,us,android,1690
-2011-01-06,us,ios,995
-2011-01-06,in,android,1790
-2011-01-06,in,ios,890
-2011-01-06,cn,android,1613
-2011-01-06,cn,ios,880
-2011-01-07,us,android,1785
-2011-01-07,us,ios,1085
-2011-01-07,in,android,2100
-2011-01-07,in,ios,919
-2011-01-07,cn,android,1883
-2011-01-07,cn,ios,1100
-2011-01-08,us,android,1995
-2011-01-08,us,ios,1085
-2011-01-08,in,android,950
-2011-01-08,in,ios,999
-2011-01-08,cn,android,1183
-2011-01-08,cn,ios,800
-2011-01-09,us,android,1990
-2011-01-09,us,ios,995
-2011-01-09,in,android,1790
-2011-01-09,in,ios,890
-2011-01-09,cn,android,1613
-2011-01-09,cn,ios,980
-2011-01-10,us,android,1690
-2011-01-10,us,ios,1095
-2011-01-10,in,android,1590
-2011-01-10,in,ios,790
-2011-01-10,cn,android,1713
-2011-01-10,cn,ios,999
-2011-01-11,us,android,1590
-2011-01-11,us,ios,1195
-2011-01-11,in,android,1890
-2011-01-11,in,ios,990
-2011-01-11,cn,android,1513
-2011-01-11,cn,ios,1300
\ No newline at end of file
diff --git a/docker/images/pinot-thirdeye/config/ephemeral/detector-config/anomaly-functions/alertFilterAutotune.properties b/docker/images/pinot-thirdeye/config/ephemeral/detector-config/anomaly-functions/alertFilterAutotune.properties
deleted file mode 100644
index e69de29bb2d1..000000000000
diff --git a/docker/images/pinot-thirdeye/config/ephemeral/detector-config/anomaly-functions/anomalyClassifier.properties b/docker/images/pinot-thirdeye/config/ephemeral/detector-config/anomaly-functions/anomalyClassifier.properties
deleted file mode 100644
index e69de29bb2d1..000000000000
diff --git a/docker/images/pinot-thirdeye/config/ephemeral/detector-config/anomaly-functions/functions.properties b/docker/images/pinot-thirdeye/config/ephemeral/detector-config/anomaly-functions/functions.properties
deleted file mode 100644
index e69de29bb2d1..000000000000
diff --git a/docker/images/pinot-thirdeye/config/ephemeral/detector.yml b/docker/images/pinot-thirdeye/config/ephemeral/detector.yml
deleted file mode 100644
index a8516ec45e30..000000000000
--- a/docker/images/pinot-thirdeye/config/ephemeral/detector.yml
+++ /dev/null
@@ -1,127 +0,0 @@
-logging:
- type: external
-server:
- requestLog:
- type: external
- type: default
- rootPath: '/api/*'
- applicationContextPath: /
- adminContextPath: /admin
- applicationConnectors:
- - type: http
- port: 1867
- adminConnectors:
- - type: http
- port: 1868
-alert: false
-autoload: false
-classifier: false
-holidayEventsLoader: false
-mockEventsLoader: true
-monitor: false
-pinotProxy: false
-scheduler: false
-worker: false
-detectionPipeline: false
-detectionAlert: false
-dashboardHost: "http://thirdeye-dashboard:1426"
-id: 0
-alerterConfiguration:
- smtpConfiguration:
- smtpHost: "localhost"
- smtpPort: 25
-# jiraConfiguration:
-# jiraUser:
-# jiraPassword:
-# jiraUrl:
-# jiraDefaultProject:
-# jiraIssueTypeId: 19
-failureFromAddress: "thirdeye@localhost"
-failureToAddress: "thirdeye@localhost"
-phantomJsPath: "/usr/local/bin/jstf"
-swagger:
- resourcePackage: "org.apache.pinot.thirdeye.dashboard.resources,org.apache.pinot.thirdeye.dashboard.resources.v2,org.apache.pinot.thirdeye.anomaly.onboard"
-holidayEventsLoaderConfiguration:
- calendars:
- - "en.australian#holiday@group.v.calendar.google.com"
- - "en.austrian#holiday@group.v.calendar.google.com"
- - "en.brazilian#holiday@group.v.calendar.google.com"
- - "en.canadian#holiday@group.v.calendar.google.com"
- - "en.china#holiday@group.v.calendar.google.com"
- - "en.christian#holiday@group.v.calendar.google.com"
- - "en.danish#holiday@group.v.calendar.google.com"
- - "en.dutch#holiday@group.v.calendar.google.com"
- - "en.finnish#holiday@group.v.calendar.google.com"
- - "en.french#holiday@group.v.calendar.google.com"
- - "en.german#holiday@group.v.calendar.google.com"
- - "en.greek#holiday@group.v.calendar.google.com"
- - "en.hong_kong#holiday@group.v.calendar.google.com"
- - "en.indian#holiday@group.v.calendar.google.com"
- - "en.indonesian#holiday@group.v.calendar.google.com"
- - "en.irish#holiday@group.v.calendar.google.com"
- - "en.islamic#holiday@group.v.calendar.google.com"
- - "en.italian#holiday@group.v.calendar.google.com"
- - "en.japanese#holiday@group.v.calendar.google.com"
- - "en.jewish#holiday@group.v.calendar.google.com"
- - "en.malaysia#holiday@group.v.calendar.google.com"
- - "en.mexican#holiday@group.v.calendar.google.com"
- - "en.new_zealand#holiday@group.v.calendar.google.com"
- - "en.norwegian#holiday@group.v.calendar.google.com"
- - "en.philippines#holiday@group.v.calendar.google.com"
- - "en.polish#holiday@group.v.calendar.google.com"
- - "en.portuguese#holiday@group.v.calendar.google.com"
- - "en.russian#holiday@group.v.calendar.google.com"
- - "en.singapore#holiday@group.v.calendar.google.com"
- - "en.sa#holiday@group.v.calendar.google.com"
- - "en.south_korea#holiday@group.v.calendar.google.com"
- - "en.spain#holiday@group.v.calendar.google.com"
- - "en.swedish#holiday@group.v.calendar.google.com"
- - "en.taiwan#holiday@group.v.calendar.google.com"
- - "en.thai#holiday@group.v.calendar.google.com"
- - "en.uk#holiday@group.v.calendar.google.com"
- - "en.usa#holiday@group.v.calendar.google.com"
- - "en.vietnamese#holiday@group.v.calendar.google.com"
- holidayLoadRange: 2592000000
- runFrequency: 7
-mockEventsLoaderConfiguration:
- generators:
- - type: HOLIDAY
- arrivalType: exponential
- arrivalMean: 86400000
- durationType: fixed
- durationMean: 86400000
- seed: 0
- namePrefixes: [First, Second, Third, Last, Funky, Happy, Sad, Glorious, Jolly, Unity, Pinot's]
- nameSuffixes: [day, day, days, celebration, rememberance, occurrence, moment]
- - type: INFORMED
- arrivalType: exponential
- arrivalMean: 43200000
- durationType: exponential
- durationMean: 3600000
- seed: 1
- namePrefixes: [Login, Web, Search, Catalog, Integration, Network, Backup, Ingress, Proxy, Failure, Pinot, ThirdEye]
- nameSuffixes: [backend, frontend, v1.1, v1.2, v1.3, v2.0, v3, v4, v5, storage, topic, container, database]
- - type: CM
- arrivalType: exponential
- arrivalMean: 21600000
- durationType: fixed
- durationMean: 1800000
- seed: 2
- namePrefixes: [Database, Web, Search, Catalog, Integration, Network, Backup, Ingress, Proxy, Failure, Pinot, ThirdEye]
- - type: CUSTOM
- arrivalType: exponential
- arrivalMean: 432000000
- durationType: exponential
- durationMean: 86400000
- seed: 3
- namePrefixes: [Marketing, Onboarding, Vaction, Outreach, InDay]
- nameSuffixes: [integration, campaign, meeting]
- - type: LIX
- arrivalType: exponential
- arrivalMean: 259200000
- durationType: exponential
- durationMean: 604800000
- seed: 4
- namePrefixes: [System, Model, Campaign, Welcome, Pinot, ThirdEye]
- nameSuffixes: [tuning, bugfix, rollout, test]
-
diff --git a/docker/images/pinot-thirdeye/config/ephemeral/persistence.yml b/docker/images/pinot-thirdeye/config/ephemeral/persistence.yml
deleted file mode 100644
index 991d18dcf07e..000000000000
--- a/docker/images/pinot-thirdeye/config/ephemeral/persistence.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-databaseConfiguration:
- url: jdbc:h2:tcp://localhost/h2db
- user: sa
- password: sa
- driver: org.h2.Driver
diff --git a/docker/images/pinot-thirdeye/config/ephemeral/rca.yml b/docker/images/pinot-thirdeye/config/ephemeral/rca.yml
deleted file mode 100644
index aecfd76a85fe..000000000000
--- a/docker/images/pinot-thirdeye/config/ephemeral/rca.yml
+++ /dev/null
@@ -1,98 +0,0 @@
-frameworks:
- identity:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.NullPipeline
-
- metricRelated:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.MetricMappingPipeline
-
- metricAnalysis:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.MetricAnalysisPipeline
-
- metricBreakdown:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.MetricBreakdownPipeline
-
- metricComponentAnalysis:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.MetricComponentAnalysisPipeline
- properties:
- excludeDimensions: ["environment", "continent"]
- parallelism: 5
- k: 5
-
- eventExperiment:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.ThirdEyeEventsPipeline
- properties:
- strategy: COMPOUND
- k: 500
- eventType: LIX
-
- eventHoliday:
- - outputName: METRIC_RELATED
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.MetricAnalysisPipeline
-
- - outputName: OUTPUT
- inputNames: [INPUT, METRIC_RELATED]
- className: org.apache.pinot.thirdeye.rootcause.impl.ThirdEyeEventsPipeline
- properties:
- strategy: COMPOUND
- k: 500
- eventType: HOLIDAY
-
- eventCustom:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.ThirdEyeEventsPipeline
- properties:
- strategy: COMPOUND
- k: 500
- eventType: CUSTOM
-
- eventAnomaly:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.AnomalyEventsPipeline
- properties:
- strategyClass: org.apache.pinot.thirdeye.rootcause.impl.AnomalyEventsPipeline$TimeRangeScoreStrategy
- strategyProperties:
- type: HYPERBOLA
- k: 500
-
- eventIssue:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.EmptyPipeline
-
- eventChange:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.ThirdEyeEventsPipeline
- properties:
- strategy: COMPOUND
- k: 500
- eventType: CM
-
- eventDeployment:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.ThirdEyeEventsPipeline
- properties:
- strategy: COMPOUND
- k: 500
- eventType: INFORMED
-
- eventAC:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.EmptyPipeline
diff --git a/docker/images/pinot-thirdeye/config/pinot-quickstart/bootstrap.sql b/docker/images/pinot-thirdeye/config/pinot-quickstart/bootstrap.sql
deleted file mode 100644
index b9ac3d0b85a0..000000000000
--- a/docker/images/pinot-thirdeye/config/pinot-quickstart/bootstrap.sql
+++ /dev/null
@@ -1,4 +0,0 @@
-INSERT INTO generic_json_entity (id, json_val, beanClass) VALUES (null, '{"id":null,"application":"test","recipients":""}', 'org.apache.pinot.thirdeye.datalayer.pojo.ApplicationBean');
-
-INSERT INTO application_index (base_id, application, recipients) VALUES (1, 'test', '');
-
diff --git a/docker/images/pinot-thirdeye/config/pinot-quickstart/dashboard.yml b/docker/images/pinot-thirdeye/config/pinot-quickstart/dashboard.yml
deleted file mode 100644
index b039b8dac040..000000000000
--- a/docker/images/pinot-thirdeye/config/pinot-quickstart/dashboard.yml
+++ /dev/null
@@ -1,40 +0,0 @@
-logging:
- type: external
-authConfig:
- authEnabled: false
- authKey: ""
- ldapUrl: ""
- domainSuffix: []
- cacheTTL: 3600
- cookieTTL: 604800
-resourceConfig: []
-rootCause:
- definitionsPath: rca.yml
- parallelism: 5
- formatters:
- - org.apache.pinot.thirdeye.dashboard.resources.v2.rootcause.AnomalyEventFormatter
- - org.apache.pinot.thirdeye.dashboard.resources.v2.rootcause.ThirdEyeEventFormatter
- - org.apache.pinot.thirdeye.dashboard.resources.v2.rootcause.MetricEntityFormatter
- - org.apache.pinot.thirdeye.dashboard.resources.v2.rootcause.DimensionEntityFormatter
- - org.apache.pinot.thirdeye.dashboard.resources.v2.rootcause.ServiceEntityFormatter
- - org.apache.pinot.thirdeye.dashboard.resources.v2.rootcause.DefaultEventEntityFormatter
-dashboardHost: "http://localhost:1426"
-failureFromAddress: thirdeye@localhost
-failureToAddress: user@localhost
-alerterConfiguration:
- smtpConfiguration:
- smtpHost: localhost
- smtpPort: 25
-server:
- requestLog:
- type: external
- type: default
- applicationConnectors:
- - type: http
- port: 1426
- adminConnectors:
- - type: http
- port: 1427
-whitelistDatasets: []
-swagger:
- resourcePackage: "org.apache.pinot.thirdeye.dashboard.resources,org.apache.pinot.thirdeye.dashboard.resources.v2,org.apache.pinot.thirdeye.anomaly.onboard,org.apache.pinot.thirdeye.detection,org.apache.pinot.thirdeye.detection.yaml"
diff --git a/docker/images/pinot-thirdeye/config/pinot-quickstart/data-sources/cache-config.yml b/docker/images/pinot-thirdeye/config/pinot-quickstart/data-sources/cache-config.yml
deleted file mode 100644
index 5672706ba36f..000000000000
--- a/docker/images/pinot-thirdeye/config/pinot-quickstart/data-sources/cache-config.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-useInMemoryCache: true
-useCentralizedCache: false
-
-centralizedCacheSettings:
- # TTL (time-to-live) for documents in seconds
- ttl: 3600
- # if inserting data points individually, max number of threads to spawn to parallel insert at a time
- maxParallelInserts: 10
- # which store to use
- cacheDataStoreName: 'couchbase'
- cacheDataSources:
- couchbase:
- className: org.apache.pinot.thirdeye.detection.cache.CouchbaseCacheDAO
- config:
- useCertificateBasedAuthentication: false
- # at least 1 host needed
- hosts:
- - 'host1' # ex. http://localhost:8091
- - 'host2' # ex. http://localhost:8092
- - 'host3' # ex. http://localhost:8093
- - 'host4' # and so on...
- bucketName: 'your_bucket_name'
- # if using certificate-based authentication, authUsername and authPassword values don't matter and won't be used
- authUsername: 'your_bucket_user_username'
- authPassword: 'your_bucket_user_password'
- enableDnsSrv: false
- # certificate based authentication is only available in Couchbase enterprise edition.
- keyStoreFilePath: 'key/store/path/keystore_file' # e.g. '/var/identity.p12'
- # if your keystore has a password, enter it here. by default, Java uses 'work_around_jdk-6879539' to enable empty passwords for certificates.
- keyStorePassword: 'work_around_jdk-6879539'
- trustStoreFilePath: 'trust/store/path/truststore_file' # e.g. '/etc/riddler/cacerts'
- trustStorePassword: ''
- # add your store of choice here
-
diff --git a/docker/images/pinot-thirdeye/config/pinot-quickstart/data-sources/data-sources-config.yml b/docker/images/pinot-thirdeye/config/pinot-quickstart/data-sources/data-sources-config.yml
deleted file mode 100644
index 9f1158ffcfa3..000000000000
--- a/docker/images/pinot-thirdeye/config/pinot-quickstart/data-sources/data-sources-config.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-# Please put the mock data source as the first in this configuration.
-dataSourceConfigs:
- - className: org.apache.pinot.thirdeye.datasource.pinot.PinotThirdEyeDataSource
- properties:
- zookeeperUrl: 'pinot-quickstart:2123'
- clusterName: 'QuickStartCluster'
- controllerConnectionScheme: 'http'
- controllerHost: 'pinot-quickstart'
- controllerPort: 9000
- cacheLoaderClassName: org.apache.pinot.thirdeye.datasource.pinot.PinotControllerResponseCacheLoader
- metadataSourceConfigs:
- - className: org.apache.pinot.thirdeye.auto.onboard.AutoOnboardPinotMetadataSource
-
diff --git a/docker/images/pinot-thirdeye/config/pinot-quickstart/data/README.md b/docker/images/pinot-thirdeye/config/pinot-quickstart/data/README.md
deleted file mode 100644
index 6f12739ddeee..000000000000
--- a/docker/images/pinot-thirdeye/config/pinot-quickstart/data/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-`daily.csv`: daily data
-
-From Kaggle: https://www.kaggle.com/marklvl/bike-sharing-dataset#Bike-Sharing-Dataset.zip
-
- `hourly.csv`: hourly data
-
- From Kaggle: https://www.kaggle.com/robikscube/hourly-energy-consumption
\ No newline at end of file
diff --git a/docker/images/pinot-thirdeye/config/pinot-quickstart/data/daily.csv b/docker/images/pinot-thirdeye/config/pinot-quickstart/data/daily.csv
deleted file mode 100644
index 094897484692..000000000000
--- a/docker/images/pinot-thirdeye/config/pinot-quickstart/data/daily.csv
+++ /dev/null
@@ -1,732 +0,0 @@
-date,value
-2011-01-01,985
-2011-01-02,801
-2011-01-03,1349
-2011-01-04,1562
-2011-01-05,1600
-2011-01-06,1606
-2011-01-07,1510
-2011-01-08,959
-2011-01-09,822
-2011-01-10,1321
-2011-01-11,1263
-2011-01-12,1162
-2011-01-13,1406
-2011-01-14,1421
-2011-01-15,1248
-2011-01-16,1204
-2011-01-17,1000
-2011-01-18,683
-2011-01-19,1650
-2011-01-20,1927
-2011-01-21,1543
-2011-01-22,981
-2011-01-23,986
-2011-01-24,1416
-2011-01-25,1985
-2011-01-26,506
-2011-01-27,431
-2011-01-28,1167
-2011-01-29,1098
-2011-01-30,1096
-2011-01-31,1501
-2011-02-01,1360
-2011-02-02,1526
-2011-02-03,1550
-2011-02-04,1708
-2011-02-05,1005
-2011-02-06,1623
-2011-02-07,1712
-2011-02-08,1530
-2011-02-09,1605
-2011-02-10,1538
-2011-02-11,1746
-2011-02-12,1472
-2011-02-13,1589
-2011-02-14,1913
-2011-02-15,1815
-2011-02-16,2115
-2011-02-17,2475
-2011-02-18,2927
-2011-02-19,1635
-2011-02-20,1812
-2011-02-21,1107
-2011-02-22,1450
-2011-02-23,1917
-2011-02-24,1807
-2011-02-25,1461
-2011-02-26,1969
-2011-02-27,2402
-2011-02-28,1446
-2011-03-01,1851
-2011-03-02,2134
-2011-03-03,1685
-2011-03-04,1944
-2011-03-05,2077
-2011-03-06,605
-2011-03-07,1872
-2011-03-08,2133
-2011-03-09,1891
-2011-03-10,623
-2011-03-11,1977
-2011-03-12,2132
-2011-03-13,2417
-2011-03-14,2046
-2011-03-15,2056
-2011-03-16,2192
-2011-03-17,2744
-2011-03-18,3239
-2011-03-19,3117
-2011-03-20,2471
-2011-03-21,2077
-2011-03-22,2703
-2011-03-23,2121
-2011-03-24,1865
-2011-03-25,2210
-2011-03-26,2496
-2011-03-27,1693
-2011-03-28,2028
-2011-03-29,2425
-2011-03-30,1536
-2011-03-31,1685
-2011-04-01,2227
-2011-04-02,2252
-2011-04-03,3249
-2011-04-04,3115
-2011-04-05,1795
-2011-04-06,2808
-2011-04-07,3141
-2011-04-08,1471
-2011-04-09,2455
-2011-04-10,2895
-2011-04-11,3348
-2011-04-12,2034
-2011-04-13,2162
-2011-04-14,3267
-2011-04-15,3126
-2011-04-16,795
-2011-04-17,3744
-2011-04-18,3429
-2011-04-19,3204
-2011-04-20,3944
-2011-04-21,4189
-2011-04-22,1683
-2011-04-23,4036
-2011-04-24,4191
-2011-04-25,4073
-2011-04-26,4400
-2011-04-27,3872
-2011-04-28,4058
-2011-04-29,4595
-2011-04-30,5312
-2011-05-01,3351
-2011-05-02,4401
-2011-05-03,4451
-2011-05-04,2633
-2011-05-05,4433
-2011-05-06,4608
-2011-05-07,4714
-2011-05-08,4333
-2011-05-09,4362
-2011-05-10,4803
-2011-05-11,4182
-2011-05-12,4864
-2011-05-13,4105
-2011-05-14,3409
-2011-05-15,4553
-2011-05-16,3958
-2011-05-17,4123
-2011-05-18,3855
-2011-05-19,4575
-2011-05-20,4917
-2011-05-21,5805
-2011-05-22,4660
-2011-05-23,4274
-2011-05-24,4492
-2011-05-25,4978
-2011-05-26,4677
-2011-05-27,4679
-2011-05-28,4758
-2011-05-29,4788
-2011-05-30,4098
-2011-05-31,3982
-2011-06-01,3974
-2011-06-02,4968
-2011-06-03,5312
-2011-06-04,5342
-2011-06-05,4906
-2011-06-06,4548
-2011-06-07,4833
-2011-06-08,4401
-2011-06-09,3915
-2011-06-10,4586
-2011-06-11,4966
-2011-06-12,4460
-2011-06-13,5020
-2011-06-14,4891
-2011-06-15,5180
-2011-06-16,3767
-2011-06-17,4844
-2011-06-18,5119
-2011-06-19,4744
-2011-06-20,4010
-2011-06-21,4835
-2011-06-22,4507
-2011-06-23,4790
-2011-06-24,4991
-2011-06-25,5202
-2011-06-26,5305
-2011-06-27,4708
-2011-06-28,4648
-2011-06-29,5225
-2011-06-30,5515
-2011-07-01,5362
-2011-07-02,5119
-2011-07-03,4649
-2011-07-04,6043
-2011-07-05,4665
-2011-07-06,4629
-2011-07-07,4592
-2011-07-08,4040
-2011-07-09,5336
-2011-07-10,4881
-2011-07-11,4086
-2011-07-12,4258
-2011-07-13,4342
-2011-07-14,5084
-2011-07-15,5538
-2011-07-16,5923
-2011-07-17,5302
-2011-07-18,4458
-2011-07-19,4541
-2011-07-20,4332
-2011-07-21,3784
-2011-07-22,3387
-2011-07-23,3285
-2011-07-24,3606
-2011-07-25,3840
-2011-07-26,4590
-2011-07-27,4656
-2011-07-28,4390
-2011-07-29,3846
-2011-07-30,4475
-2011-07-31,4302
-2011-08-01,4266
-2011-08-02,4845
-2011-08-03,3574
-2011-08-04,4576
-2011-08-05,4866
-2011-08-06,4294
-2011-08-07,3785
-2011-08-08,4326
-2011-08-09,4602
-2011-08-10,4780
-2011-08-11,4792
-2011-08-12,4905
-2011-08-13,4150
-2011-08-14,3820
-2011-08-15,4338
-2011-08-16,4725
-2011-08-17,4694
-2011-08-18,3805
-2011-08-19,4153
-2011-08-20,5191
-2011-08-21,3873
-2011-08-22,4758
-2011-08-23,5895
-2011-08-24,5130
-2011-08-25,3542
-2011-08-26,4661
-2011-08-27,1115
-2011-08-28,4334
-2011-08-29,4634
-2011-08-30,5204
-2011-08-31,5058
-2011-09-01,5115
-2011-09-02,4727
-2011-09-03,4484
-2011-09-04,4940
-2011-09-05,3351
-2011-09-06,2710
-2011-09-07,1996
-2011-09-08,1842
-2011-09-09,3544
-2011-09-10,5345
-2011-09-11,5046
-2011-09-12,4713
-2011-09-13,4763
-2011-09-14,4785
-2011-09-15,3659
-2011-09-16,4760
-2011-09-17,4511
-2011-09-18,4274
-2011-09-19,4539
-2011-09-20,3641
-2011-09-21,4352
-2011-09-22,4795
-2011-09-23,2395
-2011-09-24,5423
-2011-09-25,5010
-2011-09-26,4630
-2011-09-27,4120
-2011-09-28,3907
-2011-09-29,4839
-2011-09-30,5202
-2011-10-01,2429
-2011-10-02,2918
-2011-10-03,3570
-2011-10-04,4456
-2011-10-05,4826
-2011-10-06,4765
-2011-10-07,4985
-2011-10-08,5409
-2011-10-09,5511
-2011-10-10,5117
-2011-10-11,4563
-2011-10-12,2416
-2011-10-13,2913
-2011-10-14,3644
-2011-10-15,5217
-2011-10-16,5041
-2011-10-17,4570
-2011-10-18,4748
-2011-10-19,2424
-2011-10-20,4195
-2011-10-21,4304
-2011-10-22,4308
-2011-10-23,4381
-2011-10-24,4187
-2011-10-25,4687
-2011-10-26,3894
-2011-10-27,2659
-2011-10-28,3747
-2011-10-29,627
-2011-10-30,3331
-2011-10-31,3669
-2011-11-01,4068
-2011-11-02,4186
-2011-11-03,3974
-2011-11-04,4046
-2011-11-05,3926
-2011-11-06,3649
-2011-11-07,4035
-2011-11-08,4205
-2011-11-09,4109
-2011-11-10,2933
-2011-11-11,3368
-2011-11-12,4067
-2011-11-13,3717
-2011-11-14,4486
-2011-11-15,4195
-2011-11-16,1817
-2011-11-17,3053
-2011-11-18,3392
-2011-11-19,3663
-2011-11-20,3520
-2011-11-21,2765
-2011-11-22,1607
-2011-11-23,2566
-2011-11-24,1495
-2011-11-25,2792
-2011-11-26,3068
-2011-11-27,3071
-2011-11-28,3867
-2011-11-29,2914
-2011-11-30,3613
-2011-12-01,3727
-2011-12-02,3940
-2011-12-03,3614
-2011-12-04,3485
-2011-12-05,3811
-2011-12-06,2594
-2011-12-07,705
-2011-12-08,3322
-2011-12-09,3620
-2011-12-10,3190
-2011-12-11,2743
-2011-12-12,3310
-2011-12-13,3523
-2011-12-14,3740
-2011-12-15,3709
-2011-12-16,3577
-2011-12-17,2739
-2011-12-18,2431
-2011-12-19,3403
-2011-12-20,3750
-2011-12-21,2660
-2011-12-22,3068
-2011-12-23,2209
-2011-12-24,1011
-2011-12-25,754
-2011-12-26,1317
-2011-12-27,1162
-2011-12-28,2302
-2011-12-29,2423
-2011-12-30,2999
-2011-12-31,2485
-2012-01-01,2294
-2012-01-02,1951
-2012-01-03,2236
-2012-01-04,2368
-2012-01-05,3272
-2012-01-06,4098
-2012-01-07,4521
-2012-01-08,3425
-2012-01-09,2376
-2012-01-10,3598
-2012-01-11,2177
-2012-01-12,4097
-2012-01-13,3214
-2012-01-14,2493
-2012-01-15,2311
-2012-01-16,2298
-2012-01-17,2935
-2012-01-18,3376
-2012-01-19,3292
-2012-01-20,3163
-2012-01-21,1301
-2012-01-22,1977
-2012-01-23,2432
-2012-01-24,4339
-2012-01-25,4270
-2012-01-26,4075
-2012-01-27,3456
-2012-01-28,4023
-2012-01-29,3243
-2012-01-30,3624
-2012-01-31,4509
-2012-02-01,4579
-2012-02-02,3761
-2012-02-03,4151
-2012-02-04,2832
-2012-02-05,2947
-2012-02-06,3784
-2012-02-07,4375
-2012-02-08,2802
-2012-02-09,3830
-2012-02-10,3831
-2012-02-11,2169
-2012-02-12,1529
-2012-02-13,3422
-2012-02-14,3922
-2012-02-15,4169
-2012-02-16,3005
-2012-02-17,4154
-2012-02-18,4318
-2012-02-19,2689
-2012-02-20,3129
-2012-02-21,3777
-2012-02-22,4773
-2012-02-23,5062
-2012-02-24,3487
-2012-02-25,2732
-2012-02-26,3389
-2012-02-27,4322
-2012-02-28,4363
-2012-02-29,1834
-2012-03-01,4990
-2012-03-02,3194
-2012-03-03,4066
-2012-03-04,3423
-2012-03-05,3333
-2012-03-06,3956
-2012-03-07,4916
-2012-03-08,5382
-2012-03-09,4569
-2012-03-10,4118
-2012-03-11,4911
-2012-03-12,5298
-2012-03-13,5847
-2012-03-14,6312
-2012-03-15,6192
-2012-03-16,4378
-2012-03-17,7836
-2012-03-18,5892
-2012-03-19,6153
-2012-03-20,6093
-2012-03-21,6230
-2012-03-22,6871
-2012-03-23,8362
-2012-03-24,3372
-2012-03-25,4996
-2012-03-26,5558
-2012-03-27,5102
-2012-03-28,5698
-2012-03-29,6133
-2012-03-30,5459
-2012-03-31,6235
-2012-04-01,6041
-2012-04-02,5936
-2012-04-03,6772
-2012-04-04,6436
-2012-04-05,6457
-2012-04-06,6460
-2012-04-07,6857
-2012-04-08,5169
-2012-04-09,5585
-2012-04-10,5918
-2012-04-11,4862
-2012-04-12,5409
-2012-04-13,6398
-2012-04-14,7460
-2012-04-15,7132
-2012-04-16,6370
-2012-04-17,6691
-2012-04-18,4367
-2012-04-19,6565
-2012-04-20,7290
-2012-04-21,6624
-2012-04-22,1027
-2012-04-23,3214
-2012-04-24,5633
-2012-04-25,6196
-2012-04-26,5026
-2012-04-27,6233
-2012-04-28,4220
-2012-04-29,6304
-2012-04-30,5572
-2012-05-01,5740
-2012-05-02,6169
-2012-05-03,6421
-2012-05-04,6296
-2012-05-05,6883
-2012-05-06,6359
-2012-05-07,6273
-2012-05-08,5728
-2012-05-09,4717
-2012-05-10,6572
-2012-05-11,7030
-2012-05-12,7429
-2012-05-13,6118
-2012-05-14,2843
-2012-05-15,5115
-2012-05-16,7424
-2012-05-17,7384
-2012-05-18,7639
-2012-05-19,8294
-2012-05-20,7129
-2012-05-21,4359
-2012-05-22,6073
-2012-05-23,5260
-2012-05-24,6770
-2012-05-25,6734
-2012-05-26,6536
-2012-05-27,6591
-2012-05-28,6043
-2012-05-29,5743
-2012-05-30,6855
-2012-05-31,7338
-2012-06-01,4127
-2012-06-02,8120
-2012-06-03,7641
-2012-06-04,6998
-2012-06-05,7001
-2012-06-06,7055
-2012-06-07,7494
-2012-06-08,7736
-2012-06-09,7498
-2012-06-10,6598
-2012-06-11,6664
-2012-06-12,4972
-2012-06-13,7421
-2012-06-14,7363
-2012-06-15,7665
-2012-06-16,7702
-2012-06-17,6978
-2012-06-18,5099
-2012-06-19,6825
-2012-06-20,6211
-2012-06-21,5905
-2012-06-22,5823
-2012-06-23,7458
-2012-06-24,6891
-2012-06-25,6779
-2012-06-26,7442
-2012-06-27,7335
-2012-06-28,6879
-2012-06-29,5463
-2012-06-30,5687
-2012-07-01,5531
-2012-07-02,6227
-2012-07-03,6660
-2012-07-04,7403
-2012-07-05,6241
-2012-07-06,6207
-2012-07-07,4840
-2012-07-08,4672
-2012-07-09,6569
-2012-07-10,6290
-2012-07-11,7264
-2012-07-12,7446
-2012-07-13,7499
-2012-07-14,6969
-2012-07-15,6031
-2012-07-16,6830
-2012-07-17,6786
-2012-07-18,5713
-2012-07-19,6591
-2012-07-20,5870
-2012-07-21,4459
-2012-07-22,7410
-2012-07-23,6966
-2012-07-24,7592
-2012-07-25,8173
-2012-07-26,6861
-2012-07-27,6904
-2012-07-28,6685
-2012-07-29,6597
-2012-07-30,7105
-2012-07-31,7216
-2012-08-01,7580
-2012-08-02,7261
-2012-08-03,7175
-2012-08-04,6824
-2012-08-05,5464
-2012-08-06,7013
-2012-08-07,7273
-2012-08-08,7534
-2012-08-09,7286
-2012-08-10,5786
-2012-08-11,6299
-2012-08-12,6544
-2012-08-13,6883
-2012-08-14,6784
-2012-08-15,7347
-2012-08-16,7605
-2012-08-17,7148
-2012-08-18,7865
-2012-08-19,4549
-2012-08-20,6530
-2012-08-21,7006
-2012-08-22,7375
-2012-08-23,7765
-2012-08-24,7582
-2012-08-25,6053
-2012-08-26,5255
-2012-08-27,6917
-2012-08-28,7040
-2012-08-29,7697
-2012-08-30,7713
-2012-08-31,7350
-2012-09-01,6140
-2012-09-02,5810
-2012-09-03,6034
-2012-09-04,6864
-2012-09-05,7112
-2012-09-06,6203
-2012-09-07,7504
-2012-09-08,5976
-2012-09-09,8227
-2012-09-10,7525
-2012-09-11,7767
-2012-09-12,7870
-2012-09-13,7804
-2012-09-14,8009
-2012-09-15,8714
-2012-09-16,7333
-2012-09-17,6869
-2012-09-18,4073
-2012-09-19,7591
-2012-09-20,7720
-2012-09-21,8167
-2012-09-22,8395
-2012-09-23,7907
-2012-09-24,7436
-2012-09-25,7538
-2012-09-26,7733
-2012-09-27,7393
-2012-09-28,7415
-2012-09-29,8555
-2012-09-30,6889
-2012-10-01,6778
-2012-10-02,4639
-2012-10-03,7572
-2012-10-04,7328
-2012-10-05,8156
-2012-10-06,7965
-2012-10-07,3510
-2012-10-08,5478
-2012-10-09,6392
-2012-10-10,7691
-2012-10-11,7570
-2012-10-12,7282
-2012-10-13,7109
-2012-10-14,6639
-2012-10-15,5875
-2012-10-16,7534
-2012-10-17,7461
-2012-10-18,7509
-2012-10-19,5424
-2012-10-20,8090
-2012-10-21,6824
-2012-10-22,7058
-2012-10-23,7466
-2012-10-24,7693
-2012-10-25,7359
-2012-10-26,7444
-2012-10-27,7852
-2012-10-28,4459
-2012-10-29,22
-2012-10-30,1096
-2012-10-31,5566
-2012-11-01,5986
-2012-11-02,5847
-2012-11-03,5138
-2012-11-04,5107
-2012-11-05,5259
-2012-11-06,5686
-2012-11-07,5035
-2012-11-08,5315
-2012-11-09,5992
-2012-11-10,6536
-2012-11-11,6852
-2012-11-12,6269
-2012-11-13,4094
-2012-11-14,5495
-2012-11-15,5445
-2012-11-16,5698
-2012-11-17,5629
-2012-11-18,4669
-2012-11-19,5499
-2012-11-20,5634
-2012-11-21,5146
-2012-11-22,2425
-2012-11-23,3910
-2012-11-24,2277
-2012-11-25,2424
-2012-11-26,5087
-2012-11-27,3959
-2012-11-28,5260
-2012-11-29,5323
-2012-11-30,5668
-2012-12-01,5191
-2012-12-02,4649
-2012-12-03,6234
-2012-12-04,6606
-2012-12-05,5729
-2012-12-06,5375
-2012-12-07,5008
-2012-12-08,5582
-2012-12-09,3228
-2012-12-10,5170
-2012-12-11,5501
-2012-12-12,5319
-2012-12-13,5532
-2012-12-14,5611
-2012-12-15,5047
-2012-12-16,3786
-2012-12-17,4585
-2012-12-18,5557
-2012-12-19,5267
-2012-12-20,4128
-2012-12-21,3623
-2012-12-22,1749
-2012-12-23,1787
-2012-12-24,920
-2012-12-25,1013
-2012-12-26,441
-2012-12-27,2114
-2012-12-28,3095
-2012-12-29,1341
-2012-12-30,1796
-2012-12-31,2729
diff --git a/docker/images/pinot-thirdeye/config/pinot-quickstart/data/hourly.csv b/docker/images/pinot-thirdeye/config/pinot-quickstart/data/hourly.csv
deleted file mode 100755
index 7714a9380334..000000000000
--- a/docker/images/pinot-thirdeye/config/pinot-quickstart/data/hourly.csv
+++ /dev/null
@@ -1,66498 +0,0 @@
-datetime,value
-2011-12-31 01:00:00,9970.0
-2011-12-31 02:00:00,9428.0
-2011-12-31 03:00:00,9059.0
-2011-12-31 04:00:00,8817.0
-2011-12-31 05:00:00,8743.0
-2011-12-31 06:00:00,8735.0
-2011-12-31 07:00:00,8993.0
-2011-12-31 08:00:00,9363.0
-2011-12-31 09:00:00,9545.0
-2011-12-31 10:00:00,9676.0
-2011-12-31 11:00:00,9937.0
-2011-12-31 12:00:00,10139.0
-2011-12-31 13:00:00,10326.0
-2011-12-31 14:00:00,10359.0
-2011-12-31 15:00:00,10293.0
-2011-12-31 16:00:00,10240.0
-2011-12-31 17:00:00,10416.0
-2011-12-31 18:00:00,11225.0
-2011-12-31 19:00:00,11907.0
-2011-12-31 20:00:00,11812.0
-2011-12-31 21:00:00,11542.0
-2011-12-31 22:00:00,11149.0
-2011-12-31 23:00:00,10855.0
-2012-01-01 00:00:00,10335.0
-2011-12-30 01:00:00,10126.0
-2011-12-30 02:00:00,9535.0
-2011-12-30 03:00:00,9182.0
-2011-12-30 04:00:00,8945.0
-2011-12-30 05:00:00,8874.0
-2011-12-30 06:00:00,9070.0
-2011-12-30 07:00:00,9583.0
-2011-12-30 08:00:00,10329.0
-2011-12-30 09:00:00,10804.0
-2011-12-30 10:00:00,11100.0
-2011-12-30 11:00:00,11396.0
-2011-12-30 12:00:00,11586.0
-2011-12-30 13:00:00,11598.0
-2011-12-30 14:00:00,11511.0
-2011-12-30 15:00:00,11429.0
-2011-12-30 16:00:00,11317.0
-2011-12-30 17:00:00,11384.0
-2011-12-30 18:00:00,11996.0
-2011-12-30 19:00:00,12440.0
-2011-12-30 20:00:00,12248.0
-2011-12-30 21:00:00,12023.0
-2011-12-30 22:00:00,11717.0
-2011-12-30 23:00:00,11318.0
-2011-12-31 00:00:00,10728.0
-2011-12-29 01:00:00,10743.0
-2011-12-29 02:00:00,10083.0
-2011-12-29 03:00:00,9701.0
-2011-12-29 04:00:00,9448.0
-2011-12-29 05:00:00,9353.0
-2011-12-29 06:00:00,9531.0
-2011-12-29 07:00:00,10111.0
-2011-12-29 08:00:00,10975.0
-2011-12-29 09:00:00,11415.0
-2011-12-29 10:00:00,11541.0
-2011-12-29 11:00:00,11634.0
-2011-12-29 12:00:00,11659.0
-2011-12-29 13:00:00,11564.0
-2011-12-29 14:00:00,11432.0
-2011-12-29 15:00:00,11343.0
-2011-12-29 16:00:00,11216.0
-2011-12-29 17:00:00,11140.0
-2011-12-29 18:00:00,11904.0
-2011-12-29 19:00:00,12754.0
-2011-12-29 20:00:00,12593.0
-2011-12-29 21:00:00,12406.0
-2011-12-29 22:00:00,12140.0
-2011-12-29 23:00:00,11661.0
-2011-12-30 00:00:00,10980.0
-2011-12-28 01:00:00,10615.0
-2011-12-28 02:00:00,10017.0
-2011-12-28 03:00:00,9736.0
-2011-12-28 04:00:00,9552.0
-2011-12-28 05:00:00,9557.0
-2011-12-28 06:00:00,9797.0
-2011-12-28 07:00:00,10448.0
-2011-12-28 08:00:00,11364.0
-2011-12-28 09:00:00,11861.0
-2011-12-28 10:00:00,12095.0
-2011-12-28 11:00:00,12287.0
-2011-12-28 12:00:00,12392.0
-2011-12-28 13:00:00,12385.0
-2011-12-28 14:00:00,12344.0
-2011-12-28 15:00:00,12268.0
-2011-12-28 16:00:00,12222.0
-2011-12-28 17:00:00,12249.0
-2011-12-28 18:00:00,12971.0
-2011-12-28 19:00:00,13628.0
-2011-12-28 20:00:00,13447.0
-2011-12-28 21:00:00,13216.0
-2011-12-28 22:00:00,12936.0
-2011-12-28 23:00:00,12432.0
-2011-12-29 00:00:00,11590.0
-2011-12-27 01:00:00,9950.0
-2011-12-27 02:00:00,9391.0
-2011-12-27 03:00:00,9030.0
-2011-12-27 04:00:00,8868.0
-2011-12-27 05:00:00,8832.0
-2011-12-27 06:00:00,9077.0
-2011-12-27 07:00:00,9737.0
-2011-12-27 08:00:00,10649.0
-2011-12-27 09:00:00,11243.0
-2011-12-27 10:00:00,11551.0
-2011-12-27 11:00:00,11809.0
-2011-12-27 12:00:00,11973.0
-2011-12-27 13:00:00,12054.0
-2011-12-27 14:00:00,12040.0
-2011-12-27 15:00:00,12062.0
-2011-12-27 16:00:00,12062.0
-2011-12-27 17:00:00,12133.0
-2011-12-27 18:00:00,12849.0
-2011-12-27 19:00:00,13311.0
-2011-12-27 20:00:00,13093.0
-2011-12-27 21:00:00,12874.0
-2011-12-27 22:00:00,12629.0
-2011-12-27 23:00:00,12122.0
-2011-12-28 00:00:00,11386.0
-2011-12-26 01:00:00,9620.0
-2011-12-26 02:00:00,9171.0
-2011-12-26 03:00:00,8892.0
-2011-12-26 04:00:00,8728.0
-2011-12-26 05:00:00,8723.0
-2011-12-26 06:00:00,8875.0
-2011-12-26 07:00:00,9212.0
-2011-12-26 08:00:00,9625.0
-2011-12-26 09:00:00,9707.0
-2011-12-26 10:00:00,9786.0
-2011-12-26 11:00:00,9954.0
-2011-12-26 12:00:00,10040.0
-2011-12-26 13:00:00,10062.0
-2011-12-26 14:00:00,9983.0
-2011-12-26 15:00:00,9887.0
-2011-12-26 16:00:00,9898.0
-2011-12-26 17:00:00,10172.0
-2011-12-26 18:00:00,11219.0
-2011-12-26 19:00:00,11963.0
-2011-12-26 20:00:00,11908.0
-2011-12-26 21:00:00,11820.0
-2011-12-26 22:00:00,11667.0
-2011-12-26 23:00:00,11280.0
-2011-12-27 00:00:00,10655.0
-2011-12-25 01:00:00,10042.0
-2011-12-25 02:00:00,9487.0
-2011-12-25 03:00:00,9073.0
-2011-12-25 04:00:00,8800.0
-2011-12-25 05:00:00,8662.0
-2011-12-25 06:00:00,8634.0
-2011-12-25 07:00:00,8760.0
-2011-12-25 08:00:00,9005.0
-2011-12-25 09:00:00,9076.0
-2011-12-25 10:00:00,9133.0
-2011-12-25 11:00:00,9219.0
-2011-12-25 12:00:00,9213.0
-2011-12-25 13:00:00,9209.0
-2011-12-25 14:00:00,9137.0
-2011-12-25 15:00:00,9056.0
-2011-12-25 16:00:00,9031.0
-2011-12-25 17:00:00,9087.0
-2011-12-25 18:00:00,9751.0
-2011-12-25 19:00:00,10526.0
-2011-12-25 20:00:00,10577.0
-2011-12-25 21:00:00,10630.0
-2011-12-25 22:00:00,10627.0
-2011-12-25 23:00:00,10563.0
-2011-12-26 00:00:00,10187.0
-2011-12-24 01:00:00,10698.0
-2011-12-24 02:00:00,10021.0
-2011-12-24 03:00:00,9505.0
-2011-12-24 04:00:00,9355.0
-2011-12-24 05:00:00,9237.0
-2011-12-24 06:00:00,9261.0
-2011-12-24 07:00:00,9498.0
-2011-12-24 08:00:00,9864.0
-2011-12-24 09:00:00,10029.0
-2011-12-24 10:00:00,10187.0
-2011-12-24 11:00:00,10327.0
-2011-12-24 12:00:00,10329.0
-2011-12-24 13:00:00,10292.0
-2011-12-24 14:00:00,10211.0
-2011-12-24 15:00:00,10034.0
-2011-12-24 16:00:00,9904.0
-2011-12-24 17:00:00,9919.0
-2011-12-24 18:00:00,10743.0
-2011-12-24 19:00:00,11519.0
-2011-12-24 20:00:00,11437.0
-2011-12-24 21:00:00,11235.0
-2011-12-24 22:00:00,11126.0
-2011-12-24 23:00:00,10934.0
-2011-12-25 00:00:00,10584.0
-2011-12-23 01:00:00,10853.0
-2011-12-23 02:00:00,10177.0
-2011-12-23 03:00:00,9758.0
-2011-12-23 04:00:00,9560.0
-2011-12-23 05:00:00,9504.0
-2011-12-23 06:00:00,9718.0
-2011-12-23 07:00:00,10265.0
-2011-12-23 08:00:00,11162.0
-2011-12-23 09:00:00,11534.0
-2011-12-23 10:00:00,11686.0
-2011-12-23 11:00:00,11707.0
-2011-12-23 12:00:00,11686.0
-2011-12-23 13:00:00,11509.0
-2011-12-23 14:00:00,11374.0
-2011-12-23 15:00:00,11301.0
-2011-12-23 16:00:00,11395.0
-2011-12-23 17:00:00,11668.0
-2011-12-23 18:00:00,12618.0
-2011-12-23 19:00:00,13158.0
-2011-12-23 20:00:00,12967.0
-2011-12-23 21:00:00,12736.0
-2011-12-23 22:00:00,12512.0
-2011-12-23 23:00:00,12165.0
-2011-12-24 00:00:00,11489.0
-2011-12-22 01:00:00,10668.0
-2011-12-22 02:00:00,10013.0
-2011-12-22 03:00:00,9584.0
-2011-12-22 04:00:00,9325.0
-2011-12-22 05:00:00,9303.0
-2011-12-22 06:00:00,9550.0
-2011-12-22 07:00:00,10219.0
-2011-12-22 08:00:00,11347.0
-2011-12-22 09:00:00,11903.0
-2011-12-22 10:00:00,12167.0
-2011-12-22 11:00:00,12327.0
-2011-12-22 12:00:00,12451.0
-2011-12-22 13:00:00,12476.0
-2011-12-22 14:00:00,12405.0
-2011-12-22 15:00:00,12544.0
-2011-12-22 16:00:00,12593.0
-2011-12-22 17:00:00,12763.0
-2011-12-22 18:00:00,13401.0
-2011-12-22 19:00:00,13766.0
-2011-12-22 20:00:00,13530.0
-2011-12-22 21:00:00,13326.0
-2011-12-22 22:00:00,13032.0
-2011-12-22 23:00:00,12580.0
-2011-12-23 00:00:00,11779.0
-2011-12-21 01:00:00,10682.0
-2011-12-21 02:00:00,9935.0
-2011-12-21 03:00:00,9518.0
-2011-12-21 04:00:00,9292.0
-2011-12-21 05:00:00,9248.0
-2011-12-21 06:00:00,9439.0
-2011-12-21 07:00:00,10028.0
-2011-12-21 08:00:00,11174.0
-2011-12-21 09:00:00,11891.0
-2011-12-21 10:00:00,12165.0
-2011-12-21 11:00:00,12344.0
-2011-12-21 12:00:00,12374.0
-2011-12-21 13:00:00,12319.0
-2011-12-21 14:00:00,12366.0
-2011-12-21 15:00:00,12476.0
-2011-12-21 16:00:00,12467.0
-2011-12-21 17:00:00,12612.0
-2011-12-21 18:00:00,13355.0
-2011-12-21 19:00:00,13655.0
-2011-12-21 20:00:00,13412.0
-2011-12-21 21:00:00,13205.0
-2011-12-21 22:00:00,12939.0
-2011-12-21 23:00:00,12466.0
-2011-12-22 00:00:00,11630.0
-2011-12-20 01:00:00,10576.0
-2011-12-20 02:00:00,9883.0
-2011-12-20 03:00:00,9525.0
-2011-12-20 04:00:00,9305.0
-2011-12-20 05:00:00,9276.0
-2011-12-20 06:00:00,9538.0
-2011-12-20 07:00:00,10244.0
-2011-12-20 08:00:00,11431.0
-2011-12-20 09:00:00,12162.0
-2011-12-20 10:00:00,12330.0
-2011-12-20 11:00:00,12362.0
-2011-12-20 12:00:00,12456.0
-2011-12-20 13:00:00,12486.0
-2011-12-20 14:00:00,12454.0
-2011-12-20 15:00:00,12476.0
-2011-12-20 16:00:00,12426.0
-2011-12-20 17:00:00,12590.0
-2011-12-20 18:00:00,13293.0
-2011-12-20 19:00:00,13796.0
-2011-12-20 20:00:00,13616.0
-2011-12-20 21:00:00,13380.0
-2011-12-20 22:00:00,13078.0
-2011-12-20 23:00:00,12559.0
-2011-12-21 00:00:00,11634.0
-2011-12-19 01:00:00,10102.0
-2011-12-19 02:00:00,9535.0
-2011-12-19 03:00:00,9225.0
-2011-12-19 04:00:00,9070.0
-2011-12-19 05:00:00,9072.0
-2011-12-19 06:00:00,9330.0
-2011-12-19 07:00:00,10038.0
-2011-12-19 08:00:00,11245.0
-2011-12-19 09:00:00,11838.0
-2011-12-19 10:00:00,11903.0
-2011-12-19 11:00:00,11960.0
-2011-12-19 12:00:00,11970.0
-2011-12-19 13:00:00,11896.0
-2011-12-19 14:00:00,11829.0
-2011-12-19 15:00:00,11869.0
-2011-12-19 16:00:00,11856.0
-2011-12-19 17:00:00,12113.0
-2011-12-19 18:00:00,13039.0
-2011-12-19 19:00:00,13522.0
-2011-12-19 20:00:00,13371.0
-2011-12-19 21:00:00,13170.0
-2011-12-19 22:00:00,12904.0
-2011-12-19 23:00:00,12402.0
-2011-12-20 00:00:00,11514.0
-2011-12-18 01:00:00,10664.0
-2011-12-18 02:00:00,10059.0
-2011-12-18 03:00:00,9583.0
-2011-12-18 04:00:00,9400.0
-2011-12-18 05:00:00,9280.0
-2011-12-18 06:00:00,9277.0
-2011-12-18 07:00:00,9472.0
-2011-12-18 08:00:00,9810.0
-2011-12-18 09:00:00,10037.0
-2011-12-18 10:00:00,10272.0
-2011-12-18 11:00:00,10477.0
-2011-12-18 12:00:00,10425.0
-2011-12-18 13:00:00,10351.0
-2011-12-18 14:00:00,10285.0
-2011-12-18 15:00:00,10175.0
-2011-12-18 16:00:00,10142.0
-2011-12-18 17:00:00,10223.0
-2011-12-18 18:00:00,11250.0
-2011-12-18 19:00:00,12159.0
-2011-12-18 20:00:00,12308.0
-2011-12-18 21:00:00,12234.0
-2011-12-18 22:00:00,12058.0
-2011-12-18 23:00:00,11626.0
-2011-12-19 00:00:00,10939.0
-2011-12-17 01:00:00,11120.0
-2011-12-17 02:00:00,10415.0
-2011-12-17 03:00:00,10010.0
-2011-12-17 04:00:00,9770.0
-2011-12-17 05:00:00,9682.0
-2011-12-17 06:00:00,9775.0
-2011-12-17 07:00:00,10113.0
-2011-12-17 08:00:00,10607.0
-2011-12-17 09:00:00,10939.0
-2011-12-17 10:00:00,11264.0
-2011-12-17 11:00:00,11566.0
-2011-12-17 12:00:00,11700.0
-2011-12-17 13:00:00,11730.0
-2011-12-17 14:00:00,11550.0
-2011-12-17 15:00:00,11395.0
-2011-12-17 16:00:00,11277.0
-2011-12-17 17:00:00,11462.0
-2011-12-17 18:00:00,12203.0
-2011-12-17 19:00:00,12734.0
-2011-12-17 20:00:00,12666.0
-2011-12-17 21:00:00,12527.0
-2011-12-17 22:00:00,12334.0
-2011-12-17 23:00:00,11999.0
-2011-12-18 00:00:00,11395.0
-2011-12-16 01:00:00,10981.0
-2011-12-16 02:00:00,10314.0
-2011-12-16 03:00:00,9944.0
-2011-12-16 04:00:00,9797.0
-2011-12-16 05:00:00,9809.0
-2011-12-16 06:00:00,10044.0
-2011-12-16 07:00:00,10831.0
-2011-12-16 08:00:00,12069.0
-2011-12-16 09:00:00,12676.0
-2011-12-16 10:00:00,12735.0
-2011-12-16 11:00:00,12637.0
-2011-12-16 12:00:00,12576.0
-2011-12-16 13:00:00,12352.0
-2011-12-16 14:00:00,12191.0
-2011-12-16 15:00:00,12119.0
-2011-12-16 16:00:00,11987.0
-2011-12-16 17:00:00,12060.0
-2011-12-16 18:00:00,12946.0
-2011-12-16 19:00:00,13744.0
-2011-12-16 20:00:00,13666.0
-2011-12-16 21:00:00,13399.0
-2011-12-16 22:00:00,13124.0
-2011-12-16 23:00:00,12759.0
-2011-12-17 00:00:00,11979.0
-2011-12-15 01:00:00,10211.0
-2011-12-15 02:00:00,9511.0
-2011-12-15 03:00:00,9126.0
-2011-12-15 04:00:00,8896.0
-2011-12-15 05:00:00,8864.0
-2011-12-15 06:00:00,9066.0
-2011-12-15 07:00:00,9808.0
-2011-12-15 08:00:00,11073.0
-2011-12-15 09:00:00,11843.0
-2011-12-15 10:00:00,12094.0
-2011-12-15 11:00:00,12185.0
-2011-12-15 12:00:00,12308.0
-2011-12-15 13:00:00,12368.0
-2011-12-15 14:00:00,12408.0
-2011-12-15 15:00:00,12564.0
-2011-12-15 16:00:00,12607.0
-2011-12-15 17:00:00,12790.0
-2011-12-15 18:00:00,13511.0
-2011-12-15 19:00:00,14016.0
-2011-12-15 20:00:00,13872.0
-2011-12-15 21:00:00,13698.0
-2011-12-15 22:00:00,13340.0
-2011-12-15 23:00:00,12863.0
-2011-12-16 00:00:00,11935.0
-2011-12-14 01:00:00,10517.0
-2011-12-14 02:00:00,9852.0
-2011-12-14 03:00:00,9448.0
-2011-12-14 04:00:00,9284.0
-2011-12-14 05:00:00,9228.0
-2011-12-14 06:00:00,9439.0
-2011-12-14 07:00:00,10186.0
-2011-12-14 08:00:00,11439.0
-2011-12-14 09:00:00,12193.0
-2011-12-14 10:00:00,12480.0
-2011-12-14 11:00:00,12741.0
-2011-12-14 12:00:00,12739.0
-2011-12-14 13:00:00,12584.0
-2011-12-14 14:00:00,12477.0
-2011-12-14 15:00:00,12514.0
-2011-12-14 16:00:00,12521.0
-2011-12-14 17:00:00,12688.0
-2011-12-14 18:00:00,13394.0
-2011-12-14 19:00:00,13628.0
-2011-12-14 20:00:00,13361.0
-2011-12-14 21:00:00,13112.0
-2011-12-14 22:00:00,12789.0
-2011-12-14 23:00:00,12206.0
-2011-12-15 00:00:00,11214.0
-2011-12-13 01:00:00,10490.0
-2011-12-13 02:00:00,9902.0
-2011-12-13 03:00:00,9531.0
-2011-12-13 04:00:00,9334.0
-2011-12-13 05:00:00,9290.0
-2011-12-13 06:00:00,9534.0
-2011-12-13 07:00:00,10297.0
-2011-12-13 08:00:00,11545.0
-2011-12-13 09:00:00,12265.0
-2011-12-13 10:00:00,12345.0
-2011-12-13 11:00:00,12382.0
-2011-12-13 12:00:00,12576.0
-2011-12-13 13:00:00,12405.0
-2011-12-13 14:00:00,12307.0
-2011-12-13 15:00:00,12323.0
-2011-12-13 16:00:00,12219.0
-2011-12-13 17:00:00,12351.0
-2011-12-13 18:00:00,13234.0
-2011-12-13 19:00:00,13637.0
-2011-12-13 20:00:00,13455.0
-2011-12-13 21:00:00,13231.0
-2011-12-13 22:00:00,12939.0
-2011-12-13 23:00:00,12386.0
-2011-12-14 00:00:00,11474.0
-2011-12-12 01:00:00,10335.0
-2011-12-12 02:00:00,9882.0
-2011-12-12 03:00:00,9609.0
-2011-12-12 04:00:00,9536.0
-2011-12-12 05:00:00,9585.0
-2011-12-12 06:00:00,9905.0
-2011-12-12 07:00:00,10698.0
-2011-12-12 08:00:00,12007.0
-2011-12-12 09:00:00,12594.0
-2011-12-12 10:00:00,12641.0
-2011-12-12 11:00:00,12553.0
-2011-12-12 12:00:00,12436.0
-2011-12-12 13:00:00,12358.0
-2011-12-12 14:00:00,12198.0
-2011-12-12 15:00:00,12141.0
-2011-12-12 16:00:00,12122.0
-2011-12-12 17:00:00,12175.0
-2011-12-12 18:00:00,13078.0
-2011-12-12 19:00:00,13766.0
-2011-12-12 20:00:00,13557.0
-2011-12-12 21:00:00,13309.0
-2011-12-12 22:00:00,13019.0
-2011-12-12 23:00:00,12461.0
-2011-12-13 00:00:00,11463.0
-2011-12-11 01:00:00,10985.0
-2011-12-11 02:00:00,10416.0
-2011-12-11 03:00:00,9967.0
-2011-12-11 04:00:00,9730.0
-2011-12-11 05:00:00,9700.0
-2011-12-11 06:00:00,9689.0
-2011-12-11 07:00:00,9850.0
-2011-12-11 08:00:00,10135.0
-2011-12-11 09:00:00,10186.0
-2011-12-11 10:00:00,10342.0
-2011-12-11 11:00:00,10457.0
-2011-12-11 12:00:00,10492.0
-2011-12-11 13:00:00,10428.0
-2011-12-11 14:00:00,10368.0
-2011-12-11 15:00:00,10234.0
-2011-12-11 16:00:00,10183.0
-2011-12-11 17:00:00,10314.0
-2011-12-11 18:00:00,11315.0
-2011-12-11 19:00:00,12238.0
-2011-12-11 20:00:00,12396.0
-2011-12-11 21:00:00,12389.0
-2011-12-11 22:00:00,12186.0
-2011-12-11 23:00:00,11823.0
-2011-12-12 00:00:00,11079.0
-2011-12-10 01:00:00,11502.0
-2011-12-10 02:00:00,10836.0
-2011-12-10 03:00:00,10510.0
-2011-12-10 04:00:00,10311.0
-2011-12-10 05:00:00,10272.0
-2011-12-10 06:00:00,10350.0
-2011-12-10 07:00:00,10703.0
-2011-12-10 08:00:00,11274.0
-2011-12-10 09:00:00,11550.0
-2011-12-10 10:00:00,11748.0
-2011-12-10 11:00:00,11889.0
-2011-12-10 12:00:00,11888.0
-2011-12-10 13:00:00,11789.0
-2011-12-10 14:00:00,11553.0
-2011-12-10 15:00:00,11331.0
-2011-12-10 16:00:00,11224.0
-2011-12-10 17:00:00,11318.0
-2011-12-10 18:00:00,12308.0
-2011-12-10 19:00:00,13128.0
-2011-12-10 20:00:00,13050.0
-2011-12-10 21:00:00,12945.0
-2011-12-10 22:00:00,12677.0
-2011-12-10 23:00:00,12363.0
-2011-12-11 00:00:00,11705.0
-2011-12-09 01:00:00,10825.0
-2011-12-09 02:00:00,10237.0
-2011-12-09 03:00:00,9938.0
-2011-12-09 04:00:00,9762.0
-2011-12-09 05:00:00,9802.0
-2011-12-09 06:00:00,10064.0
-2011-12-09 07:00:00,10730.0
-2011-12-09 08:00:00,11993.0
-2011-12-09 09:00:00,12563.0
-2011-12-09 10:00:00,12736.0
-2011-12-09 11:00:00,12689.0
-2011-12-09 12:00:00,12695.0
-2011-12-09 13:00:00,12610.0
-2011-12-09 14:00:00,12539.0
-2011-12-09 15:00:00,12446.0
-2011-12-09 16:00:00,12375.0
-2011-12-09 17:00:00,12405.0
-2011-12-09 18:00:00,13367.0
-2011-12-09 19:00:00,14066.0
-2011-12-09 20:00:00,13947.0
-2011-12-09 21:00:00,13742.0
-2011-12-09 22:00:00,13478.0
-2011-12-09 23:00:00,13098.0
-2011-12-10 00:00:00,12315.0
-2011-12-08 01:00:00,10947.0
-2011-12-08 02:00:00,10329.0
-2011-12-08 03:00:00,10000.0
-2011-12-08 04:00:00,9807.0
-2011-12-08 05:00:00,9784.0
-2011-12-08 06:00:00,10039.0
-2011-12-08 07:00:00,10798.0
-2011-12-08 08:00:00,12064.0
-2011-12-08 09:00:00,12629.0
-2011-12-08 10:00:00,12718.0
-2011-12-08 11:00:00,12691.0
-2011-12-08 12:00:00,12688.0
-2011-12-08 13:00:00,12585.0
-2011-12-08 14:00:00,12481.0
-2011-12-08 15:00:00,12390.0
-2011-12-08 16:00:00,12307.0
-2011-12-08 17:00:00,12493.0
-2011-12-08 18:00:00,13399.0
-2011-12-08 19:00:00,13910.0
-2011-12-08 20:00:00,13781.0
-2011-12-08 21:00:00,13567.0
-2011-12-08 22:00:00,13230.0
-2011-12-08 23:00:00,12705.0
-2011-12-09 00:00:00,11738.0
-2011-12-07 01:00:00,10740.0
-2011-12-07 02:00:00,10122.0
-2011-12-07 03:00:00,9758.0
-2011-12-07 04:00:00,9520.0
-2011-12-07 05:00:00,9530.0
-2011-12-07 06:00:00,9791.0
-2011-12-07 07:00:00,10570.0
-2011-12-07 08:00:00,11858.0
-2011-12-07 09:00:00,12370.0
-2011-12-07 10:00:00,12497.0
-2011-12-07 11:00:00,12468.0
-2011-12-07 12:00:00,12522.0
-2011-12-07 13:00:00,12519.0
-2011-12-07 14:00:00,12350.0
-2011-12-07 15:00:00,12334.0
-2011-12-07 16:00:00,12249.0
-2011-12-07 17:00:00,12398.0
-2011-12-07 18:00:00,13331.0
-2011-12-07 19:00:00,14021.0
-2011-12-07 20:00:00,13890.0
-2011-12-07 21:00:00,13700.0
-2011-12-07 22:00:00,13392.0
-2011-12-07 23:00:00,12818.0
-2011-12-08 00:00:00,11873.0
-2011-12-06 01:00:00,10443.0
-2011-12-06 02:00:00,9834.0
-2011-12-06 03:00:00,9495.0
-2011-12-06 04:00:00,9320.0
-2011-12-06 05:00:00,9296.0
-2011-12-06 06:00:00,9590.0
-2011-12-06 07:00:00,10343.0
-2011-12-06 08:00:00,11633.0
-2011-12-06 09:00:00,12231.0
-2011-12-06 10:00:00,12414.0
-2011-12-06 11:00:00,12490.0
-2011-12-06 12:00:00,12560.0
-2011-12-06 13:00:00,12571.0
-2011-12-06 14:00:00,12495.0
-2011-12-06 15:00:00,12450.0
-2011-12-06 16:00:00,12339.0
-2011-12-06 17:00:00,12356.0
-2011-12-06 18:00:00,13219.0
-2011-12-06 19:00:00,13910.0
-2011-12-06 20:00:00,13774.0
-2011-12-06 21:00:00,13584.0
-2011-12-06 22:00:00,13301.0
-2011-12-06 23:00:00,12709.0
-2011-12-07 00:00:00,11701.0
-2011-12-05 01:00:00,9716.0
-2011-12-05 02:00:00,9266.0
-2011-12-05 03:00:00,9014.0
-2011-12-05 04:00:00,8926.0
-2011-12-05 05:00:00,8947.0
-2011-12-05 06:00:00,9268.0
-2011-12-05 07:00:00,10057.0
-2011-12-05 08:00:00,11419.0
-2011-12-05 09:00:00,11991.0
-2011-12-05 10:00:00,12165.0
-2011-12-05 11:00:00,12268.0
-2011-12-05 12:00:00,12356.0
-2011-12-05 13:00:00,12357.0
-2011-12-05 14:00:00,12352.0
-2011-12-05 15:00:00,12409.0
-2011-12-05 16:00:00,12411.0
-2011-12-05 17:00:00,12547.0
-2011-12-05 18:00:00,13304.0
-2011-12-05 19:00:00,13694.0
-2011-12-05 20:00:00,13485.0
-2011-12-05 21:00:00,13253.0
-2011-12-05 22:00:00,12955.0
-2011-12-05 23:00:00,12382.0
-2011-12-06 00:00:00,11383.0
-2011-12-04 01:00:00,9800.0
-2011-12-04 02:00:00,9175.0
-2011-12-04 03:00:00,8715.0
-2011-12-04 04:00:00,8542.0
-2011-12-04 05:00:00,8409.0
-2011-12-04 06:00:00,8375.0
-2011-12-04 07:00:00,8449.0
-2011-12-04 08:00:00,8703.0
-2011-12-04 09:00:00,8892.0
-2011-12-04 10:00:00,9218.0
-2011-12-04 11:00:00,9583.0
-2011-12-04 12:00:00,9863.0
-2011-12-04 13:00:00,10022.0
-2011-12-04 14:00:00,10165.0
-2011-12-04 15:00:00,10237.0
-2011-12-04 16:00:00,10322.0
-2011-12-04 17:00:00,10588.0
-2011-12-04 18:00:00,11359.0
-2011-12-04 19:00:00,11862.0
-2011-12-04 20:00:00,11844.0
-2011-12-04 21:00:00,11765.0
-2011-12-04 22:00:00,11516.0
-2011-12-04 23:00:00,11114.0
-2011-12-05 00:00:00,10400.0
-2011-12-03 01:00:00,10615.0
-2011-12-03 02:00:00,9917.0
-2011-12-03 03:00:00,9494.0
-2011-12-03 04:00:00,9195.0
-2011-12-03 05:00:00,9041.0
-2011-12-03 06:00:00,9014.0
-2011-12-03 07:00:00,9327.0
-2011-12-03 08:00:00,9808.0
-2011-12-03 09:00:00,10255.0
-2011-12-03 10:00:00,10549.0
-2011-12-03 11:00:00,10781.0
-2011-12-03 12:00:00,10884.0
-2011-12-03 13:00:00,10882.0
-2011-12-03 14:00:00,10786.0
-2011-12-03 15:00:00,10483.0
-2011-12-03 16:00:00,10304.0
-2011-12-03 17:00:00,10241.0
-2011-12-03 18:00:00,11142.0
-2011-12-03 19:00:00,11710.0
-2011-12-03 20:00:00,11689.0
-2011-12-03 21:00:00,11542.0
-2011-12-03 22:00:00,11358.0
-2011-12-03 23:00:00,11018.0
-2011-12-04 00:00:00,10488.0
-2011-12-02 01:00:00,10471.0
-2011-12-02 02:00:00,9923.0
-2011-12-02 03:00:00,9631.0
-2011-12-02 04:00:00,9434.0
-2011-12-02 05:00:00,9421.0
-2011-12-02 06:00:00,9650.0
-2011-12-02 07:00:00,10371.0
-2011-12-02 08:00:00,11618.0
-2011-12-02 09:00:00,12095.0
-2011-12-02 10:00:00,12174.0
-2011-12-02 11:00:00,12216.0
-2011-12-02 12:00:00,12172.0
-2011-12-02 13:00:00,12100.0
-2011-12-02 14:00:00,11925.0
-2011-12-02 15:00:00,11909.0
-2011-12-02 16:00:00,11811.0
-2011-12-02 17:00:00,11830.0
-2011-12-02 18:00:00,12647.0
-2011-12-02 19:00:00,13239.0
-2011-12-02 20:00:00,13121.0
-2011-12-02 21:00:00,12910.0
-2011-12-02 22:00:00,12627.0
-2011-12-02 23:00:00,12242.0
-2011-12-03 00:00:00,11475.0
-2011-12-01 01:00:00,10543.0
-2011-12-01 02:00:00,9986.0
-2011-12-01 03:00:00,9688.0
-2011-12-01 04:00:00,9476.0
-2011-12-01 05:00:00,9466.0
-2011-12-01 06:00:00,9742.0
-2011-12-01 07:00:00,10479.0
-2011-12-01 08:00:00,11728.0
-2011-12-01 09:00:00,12176.0
-2011-12-01 10:00:00,12288.0
-2011-12-01 11:00:00,12291.0
-2011-12-01 12:00:00,12286.0
-2011-12-01 13:00:00,12130.0
-2011-12-01 14:00:00,12038.0
-2011-12-01 15:00:00,11984.0
-2011-12-01 16:00:00,11982.0
-2011-12-01 17:00:00,12204.0
-2011-12-01 18:00:00,12906.0
-2011-12-01 19:00:00,13361.0
-2011-12-01 20:00:00,13269.0
-2011-12-01 21:00:00,13053.0
-2011-12-01 22:00:00,12740.0
-2011-12-01 23:00:00,12219.0
-2011-12-02 00:00:00,11298.0
-2011-11-30 01:00:00,10646.0
-2011-11-30 02:00:00,10080.0
-2011-11-30 03:00:00,9803.0
-2011-11-30 04:00:00,9658.0
-2011-11-30 05:00:00,9636.0
-2011-11-30 06:00:00,9908.0
-2011-11-30 07:00:00,10679.0
-2011-11-30 08:00:00,11919.0
-2011-11-30 09:00:00,12374.0
-2011-11-30 10:00:00,12448.0
-2011-11-30 11:00:00,12412.0
-2011-11-30 12:00:00,12356.0
-2011-11-30 13:00:00,12286.0
-2011-11-30 14:00:00,12118.0
-2011-11-30 15:00:00,12028.0
-2011-11-30 16:00:00,11901.0
-2011-11-30 17:00:00,11987.0
-2011-11-30 18:00:00,12831.0
-2011-11-30 19:00:00,13499.0
-2011-11-30 20:00:00,13379.0
-2011-11-30 21:00:00,13200.0
-2011-11-30 22:00:00,12912.0
-2011-11-30 23:00:00,12346.0
-2011-12-01 00:00:00,11408.0
-2011-11-29 01:00:00,10470.0
-2011-11-29 02:00:00,9879.0
-2011-11-29 03:00:00,9541.0
-2011-11-29 04:00:00,9353.0
-2011-11-29 05:00:00,9347.0
-2011-11-29 06:00:00,9572.0
-2011-11-29 07:00:00,10335.0
-2011-11-29 08:00:00,11618.0
-2011-11-29 09:00:00,12253.0
-2011-11-29 10:00:00,12387.0
-2011-11-29 11:00:00,12505.0
-2011-11-29 12:00:00,12568.0
-2011-11-29 13:00:00,12555.0
-2011-11-29 14:00:00,12458.0
-2011-11-29 15:00:00,12477.0
-2011-11-29 16:00:00,12430.0
-2011-11-29 17:00:00,12454.0
-2011-11-29 18:00:00,13153.0
-2011-11-29 19:00:00,13678.0
-2011-11-29 20:00:00,13531.0
-2011-11-29 21:00:00,13327.0
-2011-11-29 22:00:00,12984.0
-2011-11-29 23:00:00,12419.0
-2011-11-30 00:00:00,11519.0
-2011-11-28 01:00:00,9555.0
-2011-11-28 02:00:00,9090.0
-2011-11-28 03:00:00,8902.0
-2011-11-28 04:00:00,8741.0
-2011-11-28 05:00:00,8812.0
-2011-11-28 06:00:00,9075.0
-2011-11-28 07:00:00,9963.0
-2011-11-28 08:00:00,11258.0
-2011-11-28 09:00:00,11894.0
-2011-11-28 10:00:00,12029.0
-2011-11-28 11:00:00,12145.0
-2011-11-28 12:00:00,12166.0
-2011-11-28 13:00:00,12232.0
-2011-11-28 14:00:00,12206.0
-2011-11-28 15:00:00,12284.0
-2011-11-28 16:00:00,12265.0
-2011-11-28 17:00:00,12329.0
-2011-11-28 18:00:00,13027.0
-2011-11-28 19:00:00,13486.0
-2011-11-28 20:00:00,13326.0
-2011-11-28 21:00:00,13117.0
-2011-11-28 22:00:00,12824.0
-2011-11-28 23:00:00,12248.0
-2011-11-29 00:00:00,11322.0
-2011-11-27 01:00:00,9110.0
-2011-11-27 02:00:00,8628.0
-2011-11-27 03:00:00,8262.0
-2011-11-27 04:00:00,8068.0
-2011-11-27 05:00:00,7987.0
-2011-11-27 06:00:00,8064.0
-2011-11-27 07:00:00,8182.0
-2011-11-27 08:00:00,8525.0
-2011-11-27 09:00:00,8720.0
-2011-11-27 10:00:00,9128.0
-2011-11-27 11:00:00,9530.0
-2011-11-27 12:00:00,9822.0
-2011-11-27 13:00:00,9991.0
-2011-11-27 14:00:00,10132.0
-2011-11-27 15:00:00,10172.0
-2011-11-27 16:00:00,10262.0
-2011-11-27 17:00:00,10454.0
-2011-11-27 18:00:00,11161.0
-2011-11-27 19:00:00,11606.0
-2011-11-27 20:00:00,11574.0
-2011-11-27 21:00:00,11477.0
-2011-11-27 22:00:00,11219.0
-2011-11-27 23:00:00,10789.0
-2011-11-28 00:00:00,10146.0
-2011-11-26 01:00:00,8970.0
-2011-11-26 02:00:00,8441.0
-2011-11-26 03:00:00,8162.0
-2011-11-26 04:00:00,7919.0
-2011-11-26 05:00:00,7873.0
-2011-11-26 06:00:00,7873.0
-2011-11-26 07:00:00,8106.0
-2011-11-26 08:00:00,8501.0
-2011-11-26 09:00:00,8792.0
-2011-11-26 10:00:00,9253.0
-2011-11-26 11:00:00,9601.0
-2011-11-26 12:00:00,9920.0
-2011-11-26 13:00:00,10030.0
-2011-11-26 14:00:00,10085.0
-2011-11-26 15:00:00,10006.0
-2011-11-26 16:00:00,9962.0
-2011-11-26 17:00:00,10058.0
-2011-11-26 18:00:00,10590.0
-2011-11-26 19:00:00,10903.0
-2011-11-26 20:00:00,10838.0
-2011-11-26 21:00:00,10764.0
-2011-11-26 22:00:00,10505.0
-2011-11-26 23:00:00,10258.0
-2011-11-27 00:00:00,9763.0
-2011-11-25 01:00:00,8804.0
-2011-11-25 02:00:00,8450.0
-2011-11-25 03:00:00,8242.0
-2011-11-25 04:00:00,8110.0
-2011-11-25 05:00:00,8108.0
-2011-11-25 06:00:00,8284.0
-2011-11-25 07:00:00,8704.0
-2011-11-25 08:00:00,9181.0
-2011-11-25 09:00:00,9246.0
-2011-11-25 10:00:00,9427.0
-2011-11-25 11:00:00,9587.0
-2011-11-25 12:00:00,9636.0
-2011-11-25 13:00:00,9650.0
-2011-11-25 14:00:00,9568.0
-2011-11-25 15:00:00,9486.0
-2011-11-25 16:00:00,9548.0
-2011-11-25 17:00:00,9658.0
-2011-11-25 18:00:00,10523.0
-2011-11-25 19:00:00,10991.0
-2011-11-25 20:00:00,10843.0
-2011-11-25 21:00:00,10673.0
-2011-11-25 22:00:00,10409.0
-2011-11-25 23:00:00,10120.0
-2011-11-26 00:00:00,9556.0
-2011-11-24 01:00:00,9766.0
-2011-11-24 02:00:00,9161.0
-2011-11-24 03:00:00,8802.0
-2011-11-24 04:00:00,8542.0
-2011-11-24 05:00:00,8382.0
-2011-11-24 06:00:00,8395.0
-2011-11-24 07:00:00,8547.0
-2011-11-24 08:00:00,8774.0
-2011-11-24 09:00:00,8827.0
-2011-11-24 10:00:00,9096.0
-2011-11-24 11:00:00,9436.0
-2011-11-24 12:00:00,9659.0
-2011-11-24 13:00:00,9752.0
-2011-11-24 14:00:00,9673.0
-2011-11-24 15:00:00,9513.0
-2011-11-24 16:00:00,9299.0
-2011-11-24 17:00:00,9195.0
-2011-11-24 18:00:00,9571.0
-2011-11-24 19:00:00,9883.0
-2011-11-24 20:00:00,9777.0
-2011-11-24 21:00:00,9716.0
-2011-11-24 22:00:00,9640.0
-2011-11-24 23:00:00,9520.0
-2011-11-25 00:00:00,9223.0
-2011-11-23 01:00:00,10065.0
-2011-11-23 02:00:00,9524.0
-2011-11-23 03:00:00,9181.0
-2011-11-23 04:00:00,8995.0
-2011-11-23 05:00:00,8969.0
-2011-11-23 06:00:00,9226.0
-2011-11-23 07:00:00,9936.0
-2011-11-23 08:00:00,10926.0
-2011-11-23 09:00:00,11383.0
-2011-11-23 10:00:00,11672.0
-2011-11-23 11:00:00,11819.0
-2011-11-23 12:00:00,11847.0
-2011-11-23 13:00:00,11754.0
-2011-11-23 14:00:00,11551.0
-2011-11-23 15:00:00,11451.0
-2011-11-23 16:00:00,11291.0
-2011-11-23 17:00:00,11176.0
-2011-11-23 18:00:00,11737.0
-2011-11-23 19:00:00,12366.0
-2011-11-23 20:00:00,12178.0
-2011-11-23 21:00:00,11925.0
-2011-11-23 22:00:00,11677.0
-2011-11-23 23:00:00,11211.0
-2011-11-24 00:00:00,10557.0
-2011-11-22 01:00:00,9879.0
-2011-11-22 02:00:00,9363.0
-2011-11-22 03:00:00,9033.0
-2011-11-22 04:00:00,8832.0
-2011-11-22 05:00:00,8793.0
-2011-11-22 06:00:00,9032.0
-2011-11-22 07:00:00,9747.0
-2011-11-22 08:00:00,10938.0
-2011-11-22 09:00:00,11712.0
-2011-11-22 10:00:00,12020.0
-2011-11-22 11:00:00,12179.0
-2011-11-22 12:00:00,12323.0
-2011-11-22 13:00:00,12268.0
-2011-11-22 14:00:00,12290.0
-2011-11-22 15:00:00,12292.0
-2011-11-22 16:00:00,12252.0
-2011-11-22 17:00:00,12294.0
-2011-11-22 18:00:00,12773.0
-2011-11-22 19:00:00,13016.0
-2011-11-22 20:00:00,12774.0
-2011-11-22 21:00:00,12494.0
-2011-11-22 22:00:00,12144.0
-2011-11-22 23:00:00,11641.0
-2011-11-23 00:00:00,10862.0
-2011-11-21 01:00:00,9393.0
-2011-11-21 02:00:00,8975.0
-2011-11-21 03:00:00,8760.0
-2011-11-21 04:00:00,8660.0
-2011-11-21 05:00:00,8691.0
-2011-11-21 06:00:00,8971.0
-2011-11-21 07:00:00,9775.0
-2011-11-21 08:00:00,10939.0
-2011-11-21 09:00:00,11529.0
-2011-11-21 10:00:00,11796.0
-2011-11-21 11:00:00,11882.0
-2011-11-21 12:00:00,11938.0
-2011-11-21 13:00:00,11850.0
-2011-11-21 14:00:00,11709.0
-2011-11-21 15:00:00,11702.0
-2011-11-21 16:00:00,11618.0
-2011-11-21 17:00:00,11710.0
-2011-11-21 18:00:00,12370.0
-2011-11-21 19:00:00,12812.0
-2011-11-21 20:00:00,12604.0
-2011-11-21 21:00:00,12358.0
-2011-11-21 22:00:00,12054.0
-2011-11-21 23:00:00,11503.0
-2011-11-22 00:00:00,10693.0
-2011-11-20 01:00:00,9203.0
-2011-11-20 02:00:00,8709.0
-2011-11-20 03:00:00,8418.0
-2011-11-20 04:00:00,8272.0
-2011-11-20 05:00:00,8139.0
-2011-11-20 06:00:00,8160.0
-2011-11-20 07:00:00,8347.0
-2011-11-20 08:00:00,8614.0
-2011-11-20 09:00:00,8630.0
-2011-11-20 10:00:00,8980.0
-2011-11-20 11:00:00,9330.0
-2011-11-20 12:00:00,9599.0
-2011-11-20 13:00:00,9643.0
-2011-11-20 14:00:00,9789.0
-2011-11-20 15:00:00,9855.0
-2011-11-20 16:00:00,9919.0
-2011-11-20 17:00:00,10051.0
-2011-11-20 18:00:00,10739.0
-2011-11-20 19:00:00,11243.0
-2011-11-20 20:00:00,11244.0
-2011-11-20 21:00:00,11107.0
-2011-11-20 22:00:00,10891.0
-2011-11-20 23:00:00,10508.0
-2011-11-21 00:00:00,9950.0
-2011-11-19 01:00:00,10117.0
-2011-11-19 02:00:00,9514.0
-2011-11-19 03:00:00,9149.0
-2011-11-19 04:00:00,8903.0
-2011-11-19 05:00:00,8788.0
-2011-11-19 06:00:00,8873.0
-2011-11-19 07:00:00,9133.0
-2011-11-19 08:00:00,9646.0
-2011-11-19 09:00:00,9946.0
-2011-11-19 10:00:00,10383.0
-2011-11-19 11:00:00,10691.0
-2011-11-19 12:00:00,10784.0
-2011-11-19 13:00:00,10571.0
-2011-11-19 14:00:00,10388.0
-2011-11-19 15:00:00,10376.0
-2011-11-19 16:00:00,10290.0
-2011-11-19 17:00:00,10287.0
-2011-11-19 18:00:00,10794.0
-2011-11-19 19:00:00,11209.0
-2011-11-19 20:00:00,11118.0
-2011-11-19 21:00:00,10886.0
-2011-11-19 22:00:00,10693.0
-2011-11-19 23:00:00,10330.0
-2011-11-20 00:00:00,9766.0
-2011-11-18 01:00:00,10613.0
-2011-11-18 02:00:00,10120.0
-2011-11-18 03:00:00,9835.0
-2011-11-18 04:00:00,9655.0
-2011-11-18 05:00:00,9656.0
-2011-11-18 06:00:00,9886.0
-2011-11-18 07:00:00,10629.0
-2011-11-18 08:00:00,11720.0
-2011-11-18 09:00:00,12129.0
-2011-11-18 10:00:00,12220.0
-2011-11-18 11:00:00,12206.0
-2011-11-18 12:00:00,12231.0
-2011-11-18 13:00:00,12130.0
-2011-11-18 14:00:00,11998.0
-2011-11-18 15:00:00,11921.0
-2011-11-18 16:00:00,11706.0
-2011-11-18 17:00:00,11648.0
-2011-11-18 18:00:00,12170.0
-2011-11-18 19:00:00,12700.0
-2011-11-18 20:00:00,12528.0
-2011-11-18 21:00:00,12237.0
-2011-11-18 22:00:00,11929.0
-2011-11-18 23:00:00,11497.0
-2011-11-19 00:00:00,10812.0
-2011-11-17 01:00:00,10279.0
-2011-11-17 02:00:00,9795.0
-2011-11-17 03:00:00,9545.0
-2011-11-17 04:00:00,9367.0
-2011-11-17 05:00:00,9379.0
-2011-11-17 06:00:00,9658.0
-2011-11-17 07:00:00,10459.0
-2011-11-17 08:00:00,11604.0
-2011-11-17 09:00:00,12056.0
-2011-11-17 10:00:00,12195.0
-2011-11-17 11:00:00,12285.0
-2011-11-17 12:00:00,12331.0
-2011-11-17 13:00:00,12280.0
-2011-11-17 14:00:00,12196.0
-2011-11-17 15:00:00,12191.0
-2011-11-17 16:00:00,12073.0
-2011-11-17 17:00:00,12060.0
-2011-11-17 18:00:00,12638.0
-2011-11-17 19:00:00,13235.0
-2011-11-17 20:00:00,13171.0
-2011-11-17 21:00:00,12982.0
-2011-11-17 22:00:00,12704.0
-2011-11-17 23:00:00,12186.0
-2011-11-18 00:00:00,11400.0
-2011-11-16 01:00:00,9626.0
-2011-11-16 02:00:00,9160.0
-2011-11-16 03:00:00,8902.0
-2011-11-16 04:00:00,8745.0
-2011-11-16 05:00:00,8749.0
-2011-11-16 06:00:00,9050.0
-2011-11-16 07:00:00,9850.0
-2011-11-16 08:00:00,11063.0
-2011-11-16 09:00:00,11563.0
-2011-11-16 10:00:00,11783.0
-2011-11-16 11:00:00,11937.0
-2011-11-16 12:00:00,11990.0
-2011-11-16 13:00:00,11966.0
-2011-11-16 14:00:00,11925.0
-2011-11-16 15:00:00,11892.0
-2011-11-16 16:00:00,11790.0
-2011-11-16 17:00:00,11786.0
-2011-11-16 18:00:00,12336.0
-2011-11-16 19:00:00,12978.0
-2011-11-16 20:00:00,12810.0
-2011-11-16 21:00:00,12622.0
-2011-11-16 22:00:00,12329.0
-2011-11-16 23:00:00,11825.0
-2011-11-17 00:00:00,11040.0
-2011-11-15 01:00:00,9605.0
-2011-11-15 02:00:00,9095.0
-2011-11-15 03:00:00,8841.0
-2011-11-15 04:00:00,8689.0
-2011-11-15 05:00:00,8691.0
-2011-11-15 06:00:00,8978.0
-2011-11-15 07:00:00,9740.0
-2011-11-15 08:00:00,10898.0
-2011-11-15 09:00:00,11339.0
-2011-11-15 10:00:00,11455.0
-2011-11-15 11:00:00,11533.0
-2011-11-15 12:00:00,11588.0
-2011-11-15 13:00:00,11598.0
-2011-11-15 14:00:00,11536.0
-2011-11-15 15:00:00,11513.0
-2011-11-15 16:00:00,11427.0
-2011-11-15 17:00:00,11351.0
-2011-11-15 18:00:00,11733.0
-2011-11-15 19:00:00,12318.0
-2011-11-15 20:00:00,12200.0
-2011-11-15 21:00:00,11986.0
-2011-11-15 22:00:00,11677.0
-2011-11-15 23:00:00,11141.0
-2011-11-16 00:00:00,10349.0
-2011-11-14 01:00:00,8792.0
-2011-11-14 02:00:00,8423.0
-2011-11-14 03:00:00,8243.0
-2011-11-14 04:00:00,8129.0
-2011-11-14 05:00:00,8215.0
-2011-11-14 06:00:00,8498.0
-2011-11-14 07:00:00,9383.0
-2011-11-14 08:00:00,10601.0
-2011-11-14 09:00:00,11202.0
-2011-11-14 10:00:00,11485.0
-2011-11-14 11:00:00,11673.0
-2011-11-14 12:00:00,11841.0
-2011-11-14 13:00:00,11829.0
-2011-11-14 14:00:00,11791.0
-2011-11-14 15:00:00,11718.0
-2011-11-14 16:00:00,11528.0
-2011-11-14 17:00:00,11433.0
-2011-11-14 18:00:00,11954.0
-2011-11-14 19:00:00,12513.0
-2011-11-14 20:00:00,12333.0
-2011-11-14 21:00:00,12100.0
-2011-11-14 22:00:00,11754.0
-2011-11-14 23:00:00,11235.0
-2011-11-15 00:00:00,10404.0
-2011-11-13 01:00:00,9151.0
-2011-11-13 02:00:00,8673.0
-2011-11-13 03:00:00,8419.0
-2011-11-13 04:00:00,8140.0
-2011-11-13 05:00:00,8067.0
-2011-11-13 06:00:00,8054.0
-2011-11-13 07:00:00,8162.0
-2011-11-13 08:00:00,8341.0
-2011-11-13 09:00:00,8402.0
-2011-11-13 10:00:00,8767.0
-2011-11-13 11:00:00,9058.0
-2011-11-13 12:00:00,9306.0
-2011-11-13 13:00:00,9455.0
-2011-11-13 14:00:00,9415.0
-2011-11-13 15:00:00,9399.0
-2011-11-13 16:00:00,9329.0
-2011-11-13 17:00:00,9377.0
-2011-11-13 18:00:00,9850.0
-2011-11-13 19:00:00,10672.0
-2011-11-13 20:00:00,10682.0
-2011-11-13 21:00:00,10545.0
-2011-11-13 22:00:00,10337.0
-2011-11-13 23:00:00,9937.0
-2011-11-14 00:00:00,9376.0
-2011-11-12 01:00:00,10047.0
-2011-11-12 02:00:00,9577.0
-2011-11-12 03:00:00,9214.0
-2011-11-12 04:00:00,9021.0
-2011-11-12 05:00:00,8917.0
-2011-11-12 06:00:00,8979.0
-2011-11-12 07:00:00,9287.0
-2011-11-12 08:00:00,9641.0
-2011-11-12 09:00:00,9817.0
-2011-11-12 10:00:00,10042.0
-2011-11-12 11:00:00,10253.0
-2011-11-12 12:00:00,10255.0
-2011-11-12 13:00:00,10202.0
-2011-11-12 14:00:00,10013.0
-2011-11-12 15:00:00,9877.0
-2011-11-12 16:00:00,9732.0
-2011-11-12 17:00:00,9816.0
-2011-11-12 18:00:00,10399.0
-2011-11-12 19:00:00,11033.0
-2011-11-12 20:00:00,10958.0
-2011-11-12 21:00:00,10786.0
-2011-11-12 22:00:00,10523.0
-2011-11-12 23:00:00,10218.0
-2011-11-13 00:00:00,9703.0
-2011-11-11 01:00:00,10312.0
-2011-11-11 02:00:00,9799.0
-2011-11-11 03:00:00,9527.0
-2011-11-11 04:00:00,9325.0
-2011-11-11 05:00:00,9305.0
-2011-11-11 06:00:00,9536.0
-2011-11-11 07:00:00,10192.0
-2011-11-11 08:00:00,11116.0
-2011-11-11 09:00:00,11555.0
-2011-11-11 10:00:00,11908.0
-2011-11-11 11:00:00,12108.0
-2011-11-11 12:00:00,12178.0
-2011-11-11 13:00:00,12109.0
-2011-11-11 14:00:00,11929.0
-2011-11-11 15:00:00,11839.0
-2011-11-11 16:00:00,11623.0
-2011-11-11 17:00:00,11480.0
-2011-11-11 18:00:00,11896.0
-2011-11-11 19:00:00,12590.0
-2011-11-11 20:00:00,12400.0
-2011-11-11 21:00:00,12176.0
-2011-11-11 22:00:00,11854.0
-2011-11-11 23:00:00,11388.0
-2011-11-12 00:00:00,10785.0
-2011-11-10 01:00:00,10075.0
-2011-11-10 02:00:00,9549.0
-2011-11-10 03:00:00,9277.0
-2011-11-10 04:00:00,9117.0
-2011-11-10 05:00:00,9126.0
-2011-11-10 06:00:00,9404.0
-2011-11-10 07:00:00,10155.0
-2011-11-10 08:00:00,11312.0
-2011-11-10 09:00:00,11843.0
-2011-11-10 10:00:00,12105.0
-2011-11-10 11:00:00,12185.0
-2011-11-10 12:00:00,12407.0
-2011-11-10 13:00:00,12406.0
-2011-11-10 14:00:00,12346.0
-2011-11-10 15:00:00,12326.0
-2011-11-10 16:00:00,12215.0
-2011-11-10 17:00:00,12192.0
-2011-11-10 18:00:00,12588.0
-2011-11-10 19:00:00,13088.0
-2011-11-10 20:00:00,12886.0
-2011-11-10 21:00:00,12650.0
-2011-11-10 22:00:00,12298.0
-2011-11-10 23:00:00,11801.0
-2011-11-11 00:00:00,11024.0
-2011-11-09 01:00:00,9667.0
-2011-11-09 02:00:00,9169.0
-2011-11-09 03:00:00,8853.0
-2011-11-09 04:00:00,8678.0
-2011-11-09 05:00:00,8588.0
-2011-11-09 06:00:00,8834.0
-2011-11-09 07:00:00,9578.0
-2011-11-09 08:00:00,10867.0
-2011-11-09 09:00:00,11617.0
-2011-11-09 10:00:00,11770.0
-2011-11-09 11:00:00,11749.0
-2011-11-09 12:00:00,11831.0
-2011-11-09 13:00:00,11916.0
-2011-11-09 14:00:00,11905.0
-2011-11-09 15:00:00,11994.0
-2011-11-09 16:00:00,11969.0
-2011-11-09 17:00:00,12062.0
-2011-11-09 18:00:00,12579.0
-2011-11-09 19:00:00,13026.0
-2011-11-09 20:00:00,12809.0
-2011-11-09 21:00:00,12537.0
-2011-11-09 22:00:00,12177.0
-2011-11-09 23:00:00,11641.0
-2011-11-10 00:00:00,10838.0
-2011-11-08 01:00:00,9508.0
-2011-11-08 02:00:00,8967.0
-2011-11-08 03:00:00,8724.0
-2011-11-08 04:00:00,8544.0
-2011-11-08 05:00:00,8498.0
-2011-11-08 06:00:00,8724.0
-2011-11-08 07:00:00,9462.0
-2011-11-08 08:00:00,10670.0
-2011-11-08 09:00:00,11440.0
-2011-11-08 10:00:00,11905.0
-2011-11-08 11:00:00,12043.0
-2011-11-08 12:00:00,12146.0
-2011-11-08 13:00:00,12078.0
-2011-11-08 14:00:00,12041.0
-2011-11-08 15:00:00,12093.0
-2011-11-08 16:00:00,11967.0
-2011-11-08 17:00:00,12031.0
-2011-11-08 18:00:00,12477.0
-2011-11-08 19:00:00,12731.0
-2011-11-08 20:00:00,12483.0
-2011-11-08 21:00:00,12205.0
-2011-11-08 22:00:00,11848.0
-2011-11-08 23:00:00,11272.0
-2011-11-09 00:00:00,10424.0
-2011-11-07 01:00:00,8737.0
-2011-11-07 02:00:00,8366.0
-2011-11-07 03:00:00,8186.0
-2011-11-07 04:00:00,8058.0
-2011-11-07 05:00:00,8101.0
-2011-11-07 06:00:00,8358.0
-2011-11-07 07:00:00,9158.0
-2011-11-07 08:00:00,10396.0
-2011-11-07 09:00:00,11054.0
-2011-11-07 10:00:00,11349.0
-2011-11-07 11:00:00,11485.0
-2011-11-07 12:00:00,11663.0
-2011-11-07 13:00:00,11633.0
-2011-11-07 14:00:00,11596.0
-2011-11-07 15:00:00,11672.0
-2011-11-07 16:00:00,11550.0
-2011-11-07 17:00:00,11579.0
-2011-11-07 18:00:00,11985.0
-2011-11-07 19:00:00,12391.0
-2011-11-07 20:00:00,12198.0
-2011-11-07 21:00:00,11971.0
-2011-11-07 22:00:00,11591.0
-2011-11-07 23:00:00,11067.0
-2011-11-08 00:00:00,10276.0
-2011-11-06 01:00:00,9164.0
-2011-11-06 03:00:00,8298.0
-2011-11-06 04:00:00,8061.0
-2011-11-06 05:00:00,8045.0
-2011-11-06 06:00:00,8041.0
-2011-11-06 07:00:00,8266.0
-2011-11-06 08:00:00,8366.0
-2011-11-06 09:00:00,8574.0
-2011-11-06 10:00:00,8888.0
-2011-11-06 11:00:00,9126.0
-2011-11-06 12:00:00,9236.0
-2011-11-06 13:00:00,9403.0
-2011-11-06 14:00:00,9453.0
-2011-11-06 15:00:00,9534.0
-2011-11-06 16:00:00,9484.0
-2011-11-06 17:00:00,9588.0
-2011-11-06 18:00:00,10071.0
-2011-11-06 19:00:00,10750.0
-2011-11-06 20:00:00,10707.0
-2011-11-06 21:00:00,10597.0
-2011-11-06 22:00:00,10296.0
-2011-11-06 23:00:00,9861.0
-2011-11-07 00:00:00,9262.0
-2011-11-05 01:00:00,9781.0
-2011-11-05 02:00:00,9206.0
-2011-11-05 03:00:00,8922.0
-2011-11-05 04:00:00,8672.0
-2011-11-05 05:00:00,8600.0
-2011-11-05 06:00:00,8602.0
-2011-11-05 07:00:00,8945.0
-2011-11-05 08:00:00,9444.0
-2011-11-05 09:00:00,9879.0
-2011-11-05 10:00:00,10040.0
-2011-11-05 11:00:00,10199.0
-2011-11-05 12:00:00,10206.0
-2011-11-05 13:00:00,10171.0
-2011-11-05 14:00:00,9988.0
-2011-11-05 15:00:00,9792.0
-2011-11-05 16:00:00,9616.0
-2011-11-05 17:00:00,9522.0
-2011-11-05 18:00:00,9528.0
-2011-11-05 19:00:00,9857.0
-2011-11-05 20:00:00,10621.0
-2011-11-05 21:00:00,10539.0
-2011-11-05 22:00:00,10413.0
-2011-11-05 23:00:00,10124.0
-2011-11-06 00:00:00,9685.0
-2011-11-04 01:00:00,9861.0
-2011-11-04 02:00:00,9316.0
-2011-11-04 03:00:00,9008.0
-2011-11-04 04:00:00,8778.0
-2011-11-04 05:00:00,8752.0
-2011-11-04 06:00:00,8960.0
-2011-11-04 07:00:00,9648.0
-2011-11-04 08:00:00,10917.0
-2011-11-04 09:00:00,11612.0
-2011-11-04 10:00:00,11653.0
-2011-11-04 11:00:00,11658.0
-2011-11-04 12:00:00,11691.0
-2011-11-04 13:00:00,11626.0
-2011-11-04 14:00:00,11491.0
-2011-11-04 15:00:00,11468.0
-2011-11-04 16:00:00,11243.0
-2011-11-04 17:00:00,11088.0
-2011-11-04 18:00:00,11002.0
-2011-11-04 19:00:00,11137.0
-2011-11-04 20:00:00,11824.0
-2011-11-04 21:00:00,11727.0
-2011-11-04 22:00:00,11456.0
-2011-11-04 23:00:00,11107.0
-2011-11-05 00:00:00,10461.0
-2011-11-03 01:00:00,9509.0
-2011-11-03 02:00:00,9001.0
-2011-11-03 03:00:00,8690.0
-2011-11-03 04:00:00,8518.0
-2011-11-03 05:00:00,8452.0
-2011-11-03 06:00:00,8693.0
-2011-11-03 07:00:00,9405.0
-2011-11-03 08:00:00,10637.0
-2011-11-03 09:00:00,11661.0
-2011-11-03 10:00:00,11943.0
-2011-11-03 11:00:00,12106.0
-2011-11-03 12:00:00,12189.0
-2011-11-03 13:00:00,12192.0
-2011-11-03 14:00:00,12188.0
-2011-11-03 15:00:00,12192.0
-2011-11-03 16:00:00,12085.0
-2011-11-03 17:00:00,12021.0
-2011-11-03 18:00:00,12006.0
-2011-11-03 19:00:00,12247.0
-2011-11-03 20:00:00,12465.0
-2011-11-03 21:00:00,12283.0
-2011-11-03 22:00:00,11955.0
-2011-11-03 23:00:00,11418.0
-2011-11-04 00:00:00,10612.0
-2011-11-02 01:00:00,9496.0
-2011-11-02 02:00:00,8940.0
-2011-11-02 03:00:00,8623.0
-2011-11-02 04:00:00,8406.0
-2011-11-02 05:00:00,8362.0
-2011-11-02 06:00:00,8522.0
-2011-11-02 07:00:00,9224.0
-2011-11-02 08:00:00,10556.0
-2011-11-02 09:00:00,11270.0
-2011-11-02 10:00:00,11330.0
-2011-11-02 11:00:00,11454.0
-2011-11-02 12:00:00,11593.0
-2011-11-02 13:00:00,11638.0
-2011-11-02 14:00:00,11564.0
-2011-11-02 15:00:00,11596.0
-2011-11-02 16:00:00,11516.0
-2011-11-02 17:00:00,11411.0
-2011-11-02 18:00:00,11366.0
-2011-11-02 19:00:00,11637.0
-2011-11-02 20:00:00,12152.0
-2011-11-02 21:00:00,11981.0
-2011-11-02 22:00:00,11626.0
-2011-11-02 23:00:00,11101.0
-2011-11-03 00:00:00,10258.0
-2011-11-01 01:00:00,9614.0
-2011-11-01 02:00:00,9123.0
-2011-11-01 03:00:00,8842.0
-2011-11-01 04:00:00,8669.0
-2011-11-01 05:00:00,8655.0
-2011-11-01 06:00:00,8887.0
-2011-11-01 07:00:00,9605.0
-2011-11-01 08:00:00,10940.0
-2011-11-01 09:00:00,11670.0
-2011-11-01 10:00:00,11648.0
-2011-11-01 11:00:00,11627.0
-2011-11-01 12:00:00,11660.0
-2011-11-01 13:00:00,11587.0
-2011-11-01 14:00:00,11549.0
-2011-11-01 15:00:00,11549.0
-2011-11-01 16:00:00,11528.0
-2011-11-01 17:00:00,11459.0
-2011-11-01 18:00:00,11381.0
-2011-11-01 19:00:00,11535.0
-2011-11-01 20:00:00,12155.0
-2011-11-01 21:00:00,12044.0
-2011-11-01 22:00:00,11758.0
-2011-11-01 23:00:00,11178.0
-2011-11-02 00:00:00,10325.0
-2011-10-31 01:00:00,9009.0
-2011-10-31 02:00:00,8598.0
-2011-10-31 03:00:00,8367.0
-2011-10-31 04:00:00,8262.0
-2011-10-31 05:00:00,8281.0
-2011-10-31 06:00:00,8586.0
-2011-10-31 07:00:00,9371.0
-2011-10-31 08:00:00,10776.0
-2011-10-31 09:00:00,11477.0
-2011-10-31 10:00:00,11525.0
-2011-10-31 11:00:00,11482.0
-2011-10-31 12:00:00,11516.0
-2011-10-31 13:00:00,11493.0
-2011-10-31 14:00:00,11408.0
-2011-10-31 15:00:00,11465.0
-2011-10-31 16:00:00,11306.0
-2011-10-31 17:00:00,11233.0
-2011-10-31 18:00:00,11162.0
-2011-10-31 19:00:00,11338.0
-2011-10-31 20:00:00,11826.0
-2011-10-31 21:00:00,11782.0
-2011-10-31 22:00:00,11561.0
-2011-10-31 23:00:00,11116.0
-2011-11-01 00:00:00,10369.0
-2011-10-30 01:00:00,9158.0
-2011-10-30 02:00:00,8790.0
-2011-10-30 03:00:00,8515.0
-2011-10-30 04:00:00,8365.0
-2011-10-30 05:00:00,8218.0
-2011-10-30 06:00:00,8252.0
-2011-10-30 07:00:00,8333.0
-2011-10-30 08:00:00,8647.0
-2011-10-30 09:00:00,8841.0
-2011-10-30 10:00:00,9067.0
-2011-10-30 11:00:00,9288.0
-2011-10-30 12:00:00,9384.0
-2011-10-30 13:00:00,9346.0
-2011-10-30 14:00:00,9385.0
-2011-10-30 15:00:00,9391.0
-2011-10-30 16:00:00,9407.0
-2011-10-30 17:00:00,9627.0
-2011-10-30 18:00:00,9945.0
-2011-10-30 19:00:00,10322.0
-2011-10-30 20:00:00,10761.0
-2011-10-30 21:00:00,10718.0
-2011-10-30 22:00:00,10498.0
-2011-10-30 23:00:00,10160.0
-2011-10-31 00:00:00,9595.0
-2011-10-29 01:00:00,9577.0
-2011-10-29 02:00:00,9015.0
-2011-10-29 03:00:00,8694.0
-2011-10-29 04:00:00,8506.0
-2011-10-29 05:00:00,8426.0
-2011-10-29 06:00:00,8475.0
-2011-10-29 07:00:00,8757.0
-2011-10-29 08:00:00,9315.0
-2011-10-29 09:00:00,9636.0
-2011-10-29 10:00:00,9880.0
-2011-10-29 11:00:00,10033.0
-2011-10-29 12:00:00,10099.0
-2011-10-29 13:00:00,10054.0
-2011-10-29 14:00:00,9907.0
-2011-10-29 15:00:00,9742.0
-2011-10-29 16:00:00,9574.0
-2011-10-29 17:00:00,9544.0
-2011-10-29 18:00:00,9511.0
-2011-10-29 19:00:00,9814.0
-2011-10-29 20:00:00,10580.0
-2011-10-29 21:00:00,10629.0
-2011-10-29 22:00:00,10426.0
-2011-10-29 23:00:00,10206.0
-2011-10-30 00:00:00,9697.0
-2011-10-28 01:00:00,9791.0
-2011-10-28 02:00:00,9301.0
-2011-10-28 03:00:00,8972.0
-2011-10-28 04:00:00,8764.0
-2011-10-28 05:00:00,8719.0
-2011-10-28 06:00:00,8935.0
-2011-10-28 07:00:00,9645.0
-2011-10-28 08:00:00,10871.0
-2011-10-28 09:00:00,11574.0
-2011-10-28 10:00:00,11574.0
-2011-10-28 11:00:00,11530.0
-2011-10-28 12:00:00,11562.0
-2011-10-28 13:00:00,11466.0
-2011-10-28 14:00:00,11397.0
-2011-10-28 15:00:00,11323.0
-2011-10-28 16:00:00,11158.0
-2011-10-28 17:00:00,10988.0
-2011-10-28 18:00:00,10911.0
-2011-10-28 19:00:00,11080.0
-2011-10-28 20:00:00,11674.0
-2011-10-28 21:00:00,11576.0
-2011-10-28 22:00:00,11295.0
-2011-10-28 23:00:00,10939.0
-2011-10-29 00:00:00,10290.0
-2011-10-27 01:00:00,9546.0
-2011-10-27 02:00:00,9012.0
-2011-10-27 03:00:00,8747.0
-2011-10-27 04:00:00,8543.0
-2011-10-27 05:00:00,8452.0
-2011-10-27 06:00:00,8658.0
-2011-10-27 07:00:00,9380.0
-2011-10-27 08:00:00,10654.0
-2011-10-27 09:00:00,11467.0
-2011-10-27 10:00:00,11577.0
-2011-10-27 11:00:00,11609.0
-2011-10-27 12:00:00,11651.0
-2011-10-27 13:00:00,11565.0
-2011-10-27 14:00:00,11485.0
-2011-10-27 15:00:00,11497.0
-2011-10-27 16:00:00,11373.0
-2011-10-27 17:00:00,11255.0
-2011-10-27 18:00:00,11203.0
-2011-10-27 19:00:00,11394.0
-2011-10-27 20:00:00,12074.0
-2011-10-27 21:00:00,12080.0
-2011-10-27 22:00:00,11746.0
-2011-10-27 23:00:00,11327.0
-2011-10-28 00:00:00,10479.0
-2011-10-26 01:00:00,9381.0
-2011-10-26 02:00:00,8830.0
-2011-10-26 03:00:00,8512.0
-2011-10-26 04:00:00,8278.0
-2011-10-26 05:00:00,8242.0
-2011-10-26 06:00:00,8427.0
-2011-10-26 07:00:00,9065.0
-2011-10-26 08:00:00,10265.0
-2011-10-26 09:00:00,11182.0
-2011-10-26 10:00:00,11411.0
-2011-10-26 11:00:00,11545.0
-2011-10-26 12:00:00,11726.0
-2011-10-26 13:00:00,11731.0
-2011-10-26 14:00:00,11715.0
-2011-10-26 15:00:00,11776.0
-2011-10-26 16:00:00,11658.0
-2011-10-26 17:00:00,11648.0
-2011-10-26 18:00:00,11691.0
-2011-10-26 19:00:00,11898.0
-2011-10-26 20:00:00,12149.0
-2011-10-26 21:00:00,11978.0
-2011-10-26 22:00:00,11689.0
-2011-10-26 23:00:00,11168.0
-2011-10-27 00:00:00,10330.0
-2011-10-25 01:00:00,9413.0
-2011-10-25 02:00:00,8882.0
-2011-10-25 03:00:00,8580.0
-2011-10-25 04:00:00,8383.0
-2011-10-25 05:00:00,8326.0
-2011-10-25 06:00:00,8521.0
-2011-10-25 07:00:00,9213.0
-2011-10-25 08:00:00,10489.0
-2011-10-25 09:00:00,11217.0
-2011-10-25 10:00:00,11322.0
-2011-10-25 11:00:00,11479.0
-2011-10-25 12:00:00,11691.0
-2011-10-25 13:00:00,11760.0
-2011-10-25 14:00:00,11773.0
-2011-10-25 15:00:00,11797.0
-2011-10-25 16:00:00,11730.0
-2011-10-25 17:00:00,11627.0
-2011-10-25 18:00:00,11568.0
-2011-10-25 19:00:00,11836.0
-2011-10-25 20:00:00,12266.0
-2011-10-25 21:00:00,12140.0
-2011-10-25 22:00:00,11707.0
-2011-10-25 23:00:00,11106.0
-2011-10-26 00:00:00,10206.0
-2011-10-24 01:00:00,8684.0
-2011-10-24 02:00:00,8338.0
-2011-10-24 03:00:00,8081.0
-2011-10-24 04:00:00,7956.0
-2011-10-24 05:00:00,7922.0
-2011-10-24 06:00:00,8197.0
-2011-10-24 07:00:00,8888.0
-2011-10-24 08:00:00,10289.0
-2011-10-24 09:00:00,10924.0
-2011-10-24 10:00:00,11093.0
-2011-10-24 11:00:00,11250.0
-2011-10-24 12:00:00,11388.0
-2011-10-24 13:00:00,11449.0
-2011-10-24 14:00:00,11514.0
-2011-10-24 15:00:00,11540.0
-2011-10-24 16:00:00,11455.0
-2011-10-24 17:00:00,11335.0
-2011-10-24 18:00:00,11207.0
-2011-10-24 19:00:00,11242.0
-2011-10-24 20:00:00,11891.0
-2011-10-24 21:00:00,11845.0
-2011-10-24 22:00:00,11556.0
-2011-10-24 23:00:00,11035.0
-2011-10-25 00:00:00,10191.0
-2011-10-23 01:00:00,9083.0
-2011-10-23 02:00:00,8543.0
-2011-10-23 03:00:00,8234.0
-2011-10-23 04:00:00,8042.0
-2011-10-23 05:00:00,7979.0
-2011-10-23 06:00:00,7975.0
-2011-10-23 07:00:00,8239.0
-2011-10-23 08:00:00,8509.0
-2011-10-23 09:00:00,8603.0
-2011-10-23 10:00:00,8743.0
-2011-10-23 11:00:00,8934.0
-2011-10-23 12:00:00,9102.0
-2011-10-23 13:00:00,9257.0
-2011-10-23 14:00:00,9199.0
-2011-10-23 15:00:00,9274.0
-2011-10-23 16:00:00,9229.0
-2011-10-23 17:00:00,9246.0
-2011-10-23 18:00:00,9207.0
-2011-10-23 19:00:00,9489.0
-2011-10-23 20:00:00,10248.0
-2011-10-23 21:00:00,10430.0
-2011-10-23 22:00:00,10198.0
-2011-10-23 23:00:00,9817.0
-2011-10-24 00:00:00,9281.0
-2011-10-22 01:00:00,9773.0
-2011-10-22 02:00:00,9198.0
-2011-10-22 03:00:00,8753.0
-2011-10-22 04:00:00,8680.0
-2011-10-22 05:00:00,8576.0
-2011-10-22 06:00:00,8620.0
-2011-10-22 07:00:00,8890.0
-2011-10-22 08:00:00,9385.0
-2011-10-22 09:00:00,9580.0
-2011-10-22 10:00:00,9874.0
-2011-10-22 11:00:00,10075.0
-2011-10-22 12:00:00,10095.0
-2011-10-22 13:00:00,10097.0
-2011-10-22 14:00:00,9947.0
-2011-10-22 15:00:00,9848.0
-2011-10-22 16:00:00,9711.0
-2011-10-22 17:00:00,9638.0
-2011-10-22 18:00:00,9582.0
-2011-10-22 19:00:00,9671.0
-2011-10-22 20:00:00,10324.0
-2011-10-22 21:00:00,10351.0
-2011-10-22 22:00:00,10353.0
-2011-10-22 23:00:00,9995.0
-2011-10-23 00:00:00,9566.0
-2011-10-21 01:00:00,9851.0
-2011-10-21 02:00:00,9414.0
-2011-10-21 03:00:00,9078.0
-2011-10-21 04:00:00,8854.0
-2011-10-21 05:00:00,8803.0
-2011-10-21 06:00:00,9025.0
-2011-10-21 07:00:00,9731.0
-2011-10-21 08:00:00,11011.0
-2011-10-21 09:00:00,11539.0
-2011-10-21 10:00:00,11594.0
-2011-10-21 11:00:00,11594.0
-2011-10-21 12:00:00,11573.0
-2011-10-21 13:00:00,11554.0
-2011-10-21 14:00:00,11472.0
-2011-10-21 15:00:00,11384.0
-2011-10-21 16:00:00,11257.0
-2011-10-21 17:00:00,11036.0
-2011-10-21 18:00:00,10952.0
-2011-10-21 19:00:00,10908.0
-2011-10-21 20:00:00,11539.0
-2011-10-21 21:00:00,11555.0
-2011-10-21 22:00:00,11329.0
-2011-10-21 23:00:00,11054.0
-2011-10-22 00:00:00,10425.0
-2011-10-20 01:00:00,9825.0
-2011-10-20 02:00:00,9273.0
-2011-10-20 03:00:00,8987.0
-2011-10-20 04:00:00,8799.0
-2011-10-20 05:00:00,8725.0
-2011-10-20 06:00:00,8976.0
-2011-10-20 07:00:00,9676.0
-2011-10-20 08:00:00,10955.0
-2011-10-20 09:00:00,11743.0
-2011-10-20 10:00:00,11840.0
-2011-10-20 11:00:00,11983.0
-2011-10-20 12:00:00,12101.0
-2011-10-20 13:00:00,12098.0
-2011-10-20 14:00:00,12051.0
-2011-10-20 15:00:00,12024.0
-2011-10-20 16:00:00,11891.0
-2011-10-20 17:00:00,11766.0
-2011-10-20 18:00:00,11750.0
-2011-10-20 19:00:00,11916.0
-2011-10-20 20:00:00,12354.0
-2011-10-20 21:00:00,12281.0
-2011-10-20 22:00:00,11925.0
-2011-10-20 23:00:00,11443.0
-2011-10-21 00:00:00,10666.0
-2011-10-19 01:00:00,9554.0
-2011-10-19 02:00:00,9007.0
-2011-10-19 03:00:00,8693.0
-2011-10-19 04:00:00,8528.0
-2011-10-19 05:00:00,8460.0
-2011-10-19 06:00:00,8651.0
-2011-10-19 07:00:00,9391.0
-2011-10-19 08:00:00,10680.0
-2011-10-19 09:00:00,11436.0
-2011-10-19 10:00:00,11708.0
-2011-10-19 11:00:00,11763.0
-2011-10-19 12:00:00,11961.0
-2011-10-19 13:00:00,11953.0
-2011-10-19 14:00:00,11862.0
-2011-10-19 15:00:00,11888.0
-2011-10-19 16:00:00,11887.0
-2011-10-19 17:00:00,11919.0
-2011-10-19 18:00:00,12035.0
-2011-10-19 19:00:00,12215.0
-2011-10-19 20:00:00,12469.0
-2011-10-19 21:00:00,12328.0
-2011-10-19 22:00:00,12015.0
-2011-10-19 23:00:00,11490.0
-2011-10-20 00:00:00,10643.0
-2011-10-18 01:00:00,9402.0
-2011-10-18 02:00:00,8897.0
-2011-10-18 03:00:00,8599.0
-2011-10-18 04:00:00,8432.0
-2011-10-18 05:00:00,8390.0
-2011-10-18 06:00:00,8590.0
-2011-10-18 07:00:00,9289.0
-2011-10-18 08:00:00,10648.0
-2011-10-18 09:00:00,11329.0
-2011-10-18 10:00:00,11442.0
-2011-10-18 11:00:00,11566.0
-2011-10-18 12:00:00,11604.0
-2011-10-18 13:00:00,11576.0
-2011-10-18 14:00:00,11526.0
-2011-10-18 15:00:00,11512.0
-2011-10-18 16:00:00,11401.0
-2011-10-18 17:00:00,11536.0
-2011-10-18 18:00:00,11582.0
-2011-10-18 19:00:00,11731.0
-2011-10-18 20:00:00,12090.0
-2011-10-18 21:00:00,12019.0
-2011-10-18 22:00:00,11713.0
-2011-10-18 23:00:00,11165.0
-2011-10-19 00:00:00,10334.0
-2011-10-17 01:00:00,8596.0
-2011-10-17 02:00:00,8191.0
-2011-10-17 03:00:00,8027.0
-2011-10-17 04:00:00,7896.0
-2011-10-17 05:00:00,7934.0
-2011-10-17 06:00:00,8147.0
-2011-10-17 07:00:00,8958.0
-2011-10-17 08:00:00,10252.0
-2011-10-17 09:00:00,10939.0
-2011-10-17 10:00:00,11109.0
-2011-10-17 11:00:00,11202.0
-2011-10-17 12:00:00,11326.0
-2011-10-17 13:00:00,11385.0
-2011-10-17 14:00:00,11384.0
-2011-10-17 15:00:00,11410.0
-2011-10-17 16:00:00,11289.0
-2011-10-17 17:00:00,11153.0
-2011-10-17 18:00:00,11067.0
-2011-10-17 19:00:00,11183.0
-2011-10-17 20:00:00,11795.0
-2011-10-17 21:00:00,11853.0
-2011-10-17 22:00:00,11589.0
-2011-10-17 23:00:00,11037.0
-2011-10-18 00:00:00,10193.0
-2011-10-16 01:00:00,8785.0
-2011-10-16 02:00:00,8247.0
-2011-10-16 03:00:00,7950.0
-2011-10-16 04:00:00,7764.0
-2011-10-16 05:00:00,7645.0
-2011-10-16 06:00:00,7645.0
-2011-10-16 07:00:00,7746.0
-2011-10-16 08:00:00,8022.0
-2011-10-16 09:00:00,8291.0
-2011-10-16 10:00:00,8553.0
-2011-10-16 11:00:00,8847.0
-2011-10-16 12:00:00,9063.0
-2011-10-16 13:00:00,9128.0
-2011-10-16 14:00:00,9190.0
-2011-10-16 15:00:00,9108.0
-2011-10-16 16:00:00,9121.0
-2011-10-16 17:00:00,9050.0
-2011-10-16 18:00:00,9137.0
-2011-10-16 19:00:00,9173.0
-2011-10-16 20:00:00,9946.0
-2011-10-16 21:00:00,10259.0
-2011-10-16 22:00:00,10060.0
-2011-10-16 23:00:00,9753.0
-2011-10-17 00:00:00,9139.0
-2011-10-15 01:00:00,9383.0
-2011-10-15 02:00:00,8827.0
-2011-10-15 03:00:00,8433.0
-2011-10-15 04:00:00,8229.0
-2011-10-15 05:00:00,8101.0
-2011-10-15 06:00:00,8113.0
-2011-10-15 07:00:00,8366.0
-2011-10-15 08:00:00,8807.0
-2011-10-15 09:00:00,8972.0
-2011-10-15 10:00:00,9386.0
-2011-10-15 11:00:00,9619.0
-2011-10-15 12:00:00,9775.0
-2011-10-15 13:00:00,9784.0
-2011-10-15 14:00:00,9735.0
-2011-10-15 15:00:00,9619.0
-2011-10-15 16:00:00,9469.0
-2011-10-15 17:00:00,9430.0
-2011-10-15 18:00:00,9405.0
-2011-10-15 19:00:00,9463.0
-2011-10-15 20:00:00,10075.0
-2011-10-15 21:00:00,10240.0
-2011-10-15 22:00:00,10140.0
-2011-10-15 23:00:00,9827.0
-2011-10-16 00:00:00,9339.0
-2011-10-14 01:00:00,9500.0
-2011-10-14 02:00:00,8866.0
-2011-10-14 03:00:00,8543.0
-2011-10-14 04:00:00,8304.0
-2011-10-14 05:00:00,8270.0
-2011-10-14 06:00:00,8391.0
-2011-10-14 07:00:00,9027.0
-2011-10-14 08:00:00,10222.0
-2011-10-14 09:00:00,10754.0
-2011-10-14 10:00:00,10948.0
-2011-10-14 11:00:00,11095.0
-2011-10-14 12:00:00,11288.0
-2011-10-14 13:00:00,11311.0
-2011-10-14 14:00:00,11320.0
-2011-10-14 15:00:00,11332.0
-2011-10-14 16:00:00,11227.0
-2011-10-14 17:00:00,11058.0
-2011-10-14 18:00:00,10906.0
-2011-10-14 19:00:00,10840.0
-2011-10-14 20:00:00,11334.0
-2011-10-14 21:00:00,11468.0
-2011-10-14 22:00:00,11195.0
-2011-10-14 23:00:00,10773.0
-2011-10-15 00:00:00,10081.0
-2011-10-13 01:00:00,9804.0
-2011-10-13 02:00:00,9208.0
-2011-10-13 03:00:00,8836.0
-2011-10-13 04:00:00,8591.0
-2011-10-13 05:00:00,8560.0
-2011-10-13 06:00:00,8690.0
-2011-10-13 07:00:00,9314.0
-2011-10-13 08:00:00,10564.0
-2011-10-13 09:00:00,11387.0
-2011-10-13 10:00:00,11713.0
-2011-10-13 11:00:00,11912.0
-2011-10-13 12:00:00,12118.0
-2011-10-13 13:00:00,12173.0
-2011-10-13 14:00:00,12159.0
-2011-10-13 15:00:00,12197.0
-2011-10-13 16:00:00,12044.0
-2011-10-13 17:00:00,11905.0
-2011-10-13 18:00:00,11834.0
-2011-10-13 19:00:00,11812.0
-2011-10-13 20:00:00,12038.0
-2011-10-13 21:00:00,12140.0
-2011-10-13 22:00:00,11792.0
-2011-10-13 23:00:00,11250.0
-2011-10-14 00:00:00,10321.0
-2011-10-12 01:00:00,9865.0
-2011-10-12 02:00:00,9248.0
-2011-10-12 03:00:00,8832.0
-2011-10-12 04:00:00,8536.0
-2011-10-12 05:00:00,8428.0
-2011-10-12 06:00:00,8579.0
-2011-10-12 07:00:00,9154.0
-2011-10-12 08:00:00,10412.0
-2011-10-12 09:00:00,11010.0
-2011-10-12 10:00:00,11379.0
-2011-10-12 11:00:00,11800.0
-2011-10-12 12:00:00,12246.0
-2011-10-12 13:00:00,12554.0
-2011-10-12 14:00:00,12748.0
-2011-10-12 15:00:00,12951.0
-2011-10-12 16:00:00,12875.0
-2011-10-12 17:00:00,12758.0
-2011-10-12 18:00:00,12480.0
-2011-10-12 19:00:00,12287.0
-2011-10-12 20:00:00,12581.0
-2011-10-12 21:00:00,12649.0
-2011-10-12 22:00:00,12282.0
-2011-10-12 23:00:00,11671.0
-2011-10-13 00:00:00,10726.0
-2011-10-11 01:00:00,9740.0
-2011-10-11 02:00:00,9103.0
-2011-10-11 03:00:00,8750.0
-2011-10-11 04:00:00,8494.0
-2011-10-11 05:00:00,8387.0
-2011-10-11 06:00:00,8540.0
-2011-10-11 07:00:00,9193.0
-2011-10-11 08:00:00,10424.0
-2011-10-11 09:00:00,10981.0
-2011-10-11 10:00:00,11469.0
-2011-10-11 11:00:00,11949.0
-2011-10-11 12:00:00,12415.0
-2011-10-11 13:00:00,12696.0
-2011-10-11 14:00:00,12859.0
-2011-10-11 15:00:00,13015.0
-2011-10-11 16:00:00,12903.0
-2011-10-11 17:00:00,12807.0
-2011-10-11 18:00:00,12660.0
-2011-10-11 19:00:00,12428.0
-2011-10-11 20:00:00,12639.0
-2011-10-11 21:00:00,12778.0
-2011-10-11 22:00:00,12391.0
-2011-10-11 23:00:00,11770.0
-2011-10-12 00:00:00,10790.0
-2011-10-10 01:00:00,9126.0
-2011-10-10 02:00:00,8596.0
-2011-10-10 03:00:00,8311.0
-2011-10-10 04:00:00,8090.0
-2011-10-10 05:00:00,8074.0
-2011-10-10 06:00:00,8202.0
-2011-10-10 07:00:00,8816.0
-2011-10-10 08:00:00,9819.0
-2011-10-10 09:00:00,10417.0
-2011-10-10 10:00:00,10897.0
-2011-10-10 11:00:00,11432.0
-2011-10-10 12:00:00,11770.0
-2011-10-10 13:00:00,12008.0
-2011-10-10 14:00:00,12182.0
-2011-10-10 15:00:00,12388.0
-2011-10-10 16:00:00,12420.0
-2011-10-10 17:00:00,12400.0
-2011-10-10 18:00:00,12282.0
-2011-10-10 19:00:00,12078.0
-2011-10-10 20:00:00,12342.0
-2011-10-10 21:00:00,12464.0
-2011-10-10 22:00:00,12085.0
-2011-10-10 23:00:00,11498.0
-2011-10-11 00:00:00,10628.0
-2011-10-09 01:00:00,9490.0
-2011-10-09 02:00:00,8919.0
-2011-10-09 03:00:00,8468.0
-2011-10-09 04:00:00,8191.0
-2011-10-09 05:00:00,7945.0
-2011-10-09 06:00:00,7887.0
-2011-10-09 07:00:00,7890.0
-2011-10-09 08:00:00,8082.0
-2011-10-09 09:00:00,8020.0
-2011-10-09 10:00:00,8518.0
-2011-10-09 11:00:00,9031.0
-2011-10-09 12:00:00,9542.0
-2011-10-09 13:00:00,9909.0
-2011-10-09 14:00:00,10182.0
-2011-10-09 15:00:00,10395.0
-2011-10-09 16:00:00,10504.0
-2011-10-09 17:00:00,10595.0
-2011-10-09 18:00:00,10579.0
-2011-10-09 19:00:00,10509.0
-2011-10-09 20:00:00,10756.0
-2011-10-09 21:00:00,11034.0
-2011-10-09 22:00:00,10728.0
-2011-10-09 23:00:00,10355.0
-2011-10-10 00:00:00,9747.0
-2011-10-08 01:00:00,10140.0
-2011-10-08 02:00:00,9476.0
-2011-10-08 03:00:00,8962.0
-2011-10-08 04:00:00,8654.0
-2011-10-08 05:00:00,8447.0
-2011-10-08 06:00:00,8444.0
-2011-10-08 07:00:00,8593.0
-2011-10-08 08:00:00,9002.0
-2011-10-08 09:00:00,9139.0
-2011-10-08 10:00:00,9775.0
-2011-10-08 11:00:00,10304.0
-2011-10-08 12:00:00,10822.0
-2011-10-08 13:00:00,11145.0
-2011-10-08 14:00:00,11306.0
-2011-10-08 15:00:00,11404.0
-2011-10-08 16:00:00,11552.0
-2011-10-08 17:00:00,11623.0
-2011-10-08 18:00:00,11485.0
-2011-10-08 19:00:00,11319.0
-2011-10-08 20:00:00,11424.0
-2011-10-08 21:00:00,11580.0
-2011-10-08 22:00:00,11320.0
-2011-10-08 23:00:00,10862.0
-2011-10-09 00:00:00,10212.0
-2011-10-07 01:00:00,9784.0
-2011-10-07 02:00:00,9169.0
-2011-10-07 03:00:00,8753.0
-2011-10-07 04:00:00,8459.0
-2011-10-07 05:00:00,8356.0
-2011-10-07 06:00:00,8500.0
-2011-10-07 07:00:00,9127.0
-2011-10-07 08:00:00,10205.0
-2011-10-07 09:00:00,10821.0
-2011-10-07 10:00:00,11345.0
-2011-10-07 11:00:00,11798.0
-2011-10-07 12:00:00,12295.0
-2011-10-07 13:00:00,12638.0
-2011-10-07 14:00:00,12882.0
-2011-10-07 15:00:00,13047.0
-2011-10-07 16:00:00,13100.0
-2011-10-07 17:00:00,13091.0
-2011-10-07 18:00:00,12922.0
-2011-10-07 19:00:00,12554.0
-2011-10-07 20:00:00,12604.0
-2011-10-07 21:00:00,12714.0
-2011-10-07 22:00:00,12371.0
-2011-10-07 23:00:00,11823.0
-2011-10-08 00:00:00,11010.0
-2011-10-06 01:00:00,9555.0
-2011-10-06 02:00:00,8940.0
-2011-10-06 03:00:00,8552.0
-2011-10-06 04:00:00,8322.0
-2011-10-06 05:00:00,8230.0
-2011-10-06 06:00:00,8398.0
-2011-10-06 07:00:00,8984.0
-2011-10-06 08:00:00,10198.0
-2011-10-06 09:00:00,10805.0
-2011-10-06 10:00:00,11250.0
-2011-10-06 11:00:00,11641.0
-2011-10-06 12:00:00,12117.0
-2011-10-06 13:00:00,12349.0
-2011-10-06 14:00:00,12574.0
-2011-10-06 15:00:00,12762.0
-2011-10-06 16:00:00,12782.0
-2011-10-06 17:00:00,12786.0
-2011-10-06 18:00:00,12626.0
-2011-10-06 19:00:00,12356.0
-2011-10-06 20:00:00,12407.0
-2011-10-06 21:00:00,12593.0
-2011-10-06 22:00:00,12270.0
-2011-10-06 23:00:00,11624.0
-2011-10-07 00:00:00,10712.0
-2011-10-05 01:00:00,9311.0
-2011-10-05 02:00:00,8763.0
-2011-10-05 03:00:00,8435.0
-2011-10-05 04:00:00,8196.0
-2011-10-05 05:00:00,8112.0
-2011-10-05 06:00:00,8299.0
-2011-10-05 07:00:00,8937.0
-2011-10-05 08:00:00,10075.0
-2011-10-05 09:00:00,10658.0
-2011-10-05 10:00:00,11052.0
-2011-10-05 11:00:00,11400.0
-2011-10-05 12:00:00,11760.0
-2011-10-05 13:00:00,12020.0
-2011-10-05 14:00:00,12139.0
-2011-10-05 15:00:00,12360.0
-2011-10-05 16:00:00,12342.0
-2011-10-05 17:00:00,12292.0
-2011-10-05 18:00:00,12191.0
-2011-10-05 19:00:00,11941.0
-2011-10-05 20:00:00,11976.0
-2011-10-05 21:00:00,12264.0
-2011-10-05 22:00:00,11922.0
-2011-10-05 23:00:00,11302.0
-2011-10-06 00:00:00,10413.0
-2011-10-04 01:00:00,9201.0
-2011-10-04 02:00:00,8660.0
-2011-10-04 03:00:00,8356.0
-2011-10-04 04:00:00,8163.0
-2011-10-04 05:00:00,8105.0
-2011-10-04 06:00:00,8295.0
-2011-10-04 07:00:00,8955.0
-2011-10-04 08:00:00,10157.0
-2011-10-04 09:00:00,10670.0
-2011-10-04 10:00:00,11008.0
-2011-10-04 11:00:00,11279.0
-2011-10-04 12:00:00,11571.0
-2011-10-04 13:00:00,11711.0
-2011-10-04 14:00:00,11812.0
-2011-10-04 15:00:00,11937.0
-2011-10-04 16:00:00,11947.0
-2011-10-04 17:00:00,11863.0
-2011-10-04 18:00:00,11732.0
-2011-10-04 19:00:00,11519.0
-2011-10-04 20:00:00,11626.0
-2011-10-04 21:00:00,11981.0
-2011-10-04 22:00:00,11663.0
-2011-10-04 23:00:00,11068.0
-2011-10-05 00:00:00,10150.0
-2011-10-03 01:00:00,8532.0
-2011-10-03 02:00:00,8093.0
-2011-10-03 03:00:00,7916.0
-2011-10-03 04:00:00,7746.0
-2011-10-03 05:00:00,7797.0
-2011-10-03 06:00:00,8034.0
-2011-10-03 07:00:00,8736.0
-2011-10-03 08:00:00,9985.0
-2011-10-03 09:00:00,10593.0
-2011-10-03 10:00:00,10914.0
-2011-10-03 11:00:00,11130.0
-2011-10-03 12:00:00,11430.0
-2011-10-03 13:00:00,11555.0
-2011-10-03 14:00:00,11618.0
-2011-10-03 15:00:00,11682.0
-2011-10-03 16:00:00,11658.0
-2011-10-03 17:00:00,11500.0
-2011-10-03 18:00:00,11328.0
-2011-10-03 19:00:00,11145.0
-2011-10-03 20:00:00,11277.0
-2011-10-03 21:00:00,11684.0
-2011-10-03 22:00:00,11373.0
-2011-10-03 23:00:00,10863.0
-2011-10-04 00:00:00,10036.0
-2011-10-02 01:00:00,8769.0
-2011-10-02 02:00:00,8287.0
-2011-10-02 03:00:00,7997.0
-2011-10-02 04:00:00,7833.0
-2011-10-02 05:00:00,7730.0
-2011-10-02 06:00:00,7777.0
-2011-10-02 07:00:00,7867.0
-2011-10-02 08:00:00,8113.0
-2011-10-02 09:00:00,8140.0
-2011-10-02 10:00:00,8484.0
-2011-10-02 11:00:00,8700.0
-2011-10-02 12:00:00,8944.0
-2011-10-02 13:00:00,9024.0
-2011-10-02 14:00:00,9084.0
-2011-10-02 15:00:00,9058.0
-2011-10-02 16:00:00,9032.0
-2011-10-02 17:00:00,9025.0
-2011-10-02 18:00:00,9075.0
-2011-10-02 19:00:00,9155.0
-2011-10-02 20:00:00,9523.0
-2011-10-02 21:00:00,10175.0
-2011-10-02 22:00:00,10017.0
-2011-10-02 23:00:00,9672.0
-2011-10-03 00:00:00,9069.0
-2011-10-01 01:00:00,9365.0
-2011-10-01 02:00:00,8821.0
-2011-10-01 03:00:00,8481.0
-2011-10-01 04:00:00,8236.0
-2011-10-01 05:00:00,8143.0
-2011-10-01 06:00:00,8112.0
-2011-10-01 07:00:00,8382.0
-2011-10-01 08:00:00,8797.0
-2011-10-01 09:00:00,9005.0
-2011-10-01 10:00:00,9384.0
-2011-10-01 11:00:00,9654.0
-2011-10-01 12:00:00,9774.0
-2011-10-01 13:00:00,9739.0
-2011-10-01 14:00:00,9661.0
-2011-10-01 15:00:00,9517.0
-2011-10-01 16:00:00,9399.0
-2011-10-01 17:00:00,9307.0
-2011-10-01 18:00:00,9285.0
-2011-10-01 19:00:00,9282.0
-2011-10-01 20:00:00,9585.0
-2011-10-01 21:00:00,10149.0
-2011-10-01 22:00:00,10058.0
-2011-10-01 23:00:00,9785.0
-2011-10-02 00:00:00,9321.0
-2011-09-30 01:00:00,9380.0
-2011-09-30 02:00:00,8846.0
-2011-09-30 03:00:00,8532.0
-2011-09-30 04:00:00,8318.0
-2011-09-30 05:00:00,8279.0
-2011-09-30 06:00:00,8436.0
-2011-09-30 07:00:00,9075.0
-2011-09-30 08:00:00,10224.0
-2011-09-30 09:00:00,10810.0
-2011-09-30 10:00:00,10998.0
-2011-09-30 11:00:00,11104.0
-2011-09-30 12:00:00,11232.0
-2011-09-30 13:00:00,11214.0
-2011-09-30 14:00:00,11247.0
-2011-09-30 15:00:00,11270.0
-2011-09-30 16:00:00,11127.0
-2011-09-30 17:00:00,10950.0
-2011-09-30 18:00:00,10839.0
-2011-09-30 19:00:00,10734.0
-2011-09-30 20:00:00,11025.0
-2011-09-30 21:00:00,11305.0
-2011-09-30 22:00:00,11111.0
-2011-09-30 23:00:00,10746.0
-2011-10-01 00:00:00,10068.0
-2011-09-29 01:00:00,9352.0
-2011-09-29 02:00:00,8807.0
-2011-09-29 03:00:00,8483.0
-2011-09-29 04:00:00,8272.0
-2011-09-29 05:00:00,8241.0
-2011-09-29 06:00:00,8399.0
-2011-09-29 07:00:00,9050.0
-2011-09-29 08:00:00,10168.0
-2011-09-29 09:00:00,10735.0
-2011-09-29 10:00:00,11095.0
-2011-09-29 11:00:00,11369.0
-2011-09-29 12:00:00,11585.0
-2011-09-29 13:00:00,11750.0
-2011-09-29 14:00:00,11814.0
-2011-09-29 15:00:00,11863.0
-2011-09-29 16:00:00,11670.0
-2011-09-29 17:00:00,11510.0
-2011-09-29 18:00:00,11431.0
-2011-09-29 19:00:00,11365.0
-2011-09-29 20:00:00,11465.0
-2011-09-29 21:00:00,11800.0
-2011-09-29 22:00:00,11497.0
-2011-09-29 23:00:00,11023.0
-2011-09-30 00:00:00,10150.0
-2011-09-28 01:00:00,9295.0
-2011-09-28 02:00:00,8822.0
-2011-09-28 03:00:00,8503.0
-2011-09-28 04:00:00,8275.0
-2011-09-28 05:00:00,8226.0
-2011-09-28 06:00:00,8388.0
-2011-09-28 07:00:00,8994.0
-2011-09-28 08:00:00,10169.0
-2011-09-28 09:00:00,10845.0
-2011-09-28 10:00:00,11191.0
-2011-09-28 11:00:00,11393.0
-2011-09-28 12:00:00,11575.0
-2011-09-28 13:00:00,11661.0
-2011-09-28 14:00:00,11625.0
-2011-09-28 15:00:00,11707.0
-2011-09-28 16:00:00,11569.0
-2011-09-28 17:00:00,11505.0
-2011-09-28 18:00:00,11392.0
-2011-09-28 19:00:00,11325.0
-2011-09-28 20:00:00,11522.0
-2011-09-28 21:00:00,11822.0
-2011-09-28 22:00:00,11545.0
-2011-09-28 23:00:00,11018.0
-2011-09-29 00:00:00,10177.0
-2011-09-27 01:00:00,9300.0
-2011-09-27 02:00:00,8776.0
-2011-09-27 03:00:00,8477.0
-2011-09-27 04:00:00,8263.0
-2011-09-27 05:00:00,8199.0
-2011-09-27 06:00:00,8369.0
-2011-09-27 07:00:00,9039.0
-2011-09-27 08:00:00,10255.0
-2011-09-27 09:00:00,10931.0
-2011-09-27 10:00:00,11208.0
-2011-09-27 11:00:00,11459.0
-2011-09-27 12:00:00,11596.0
-2011-09-27 13:00:00,11647.0
-2011-09-27 14:00:00,11615.0
-2011-09-27 15:00:00,11639.0
-2011-09-27 16:00:00,11553.0
-2011-09-27 17:00:00,11413.0
-2011-09-27 18:00:00,11308.0
-2011-09-27 19:00:00,11260.0
-2011-09-27 20:00:00,11449.0
-2011-09-27 21:00:00,11779.0
-2011-09-27 22:00:00,11522.0
-2011-09-27 23:00:00,10968.0
-2011-09-28 00:00:00,10119.0
-2011-09-26 01:00:00,8581.0
-2011-09-26 02:00:00,8192.0
-2011-09-26 03:00:00,8007.0
-2011-09-26 04:00:00,7935.0
-2011-09-26 05:00:00,7931.0
-2011-09-26 06:00:00,8205.0
-2011-09-26 07:00:00,8897.0
-2011-09-26 08:00:00,10070.0
-2011-09-26 09:00:00,10824.0
-2011-09-26 10:00:00,11113.0
-2011-09-26 11:00:00,11314.0
-2011-09-26 12:00:00,11553.0
-2011-09-26 13:00:00,11576.0
-2011-09-26 14:00:00,11590.0
-2011-09-26 15:00:00,11610.0
-2011-09-26 16:00:00,11535.0
-2011-09-26 17:00:00,11362.0
-2011-09-26 18:00:00,11293.0
-2011-09-26 19:00:00,11254.0
-2011-09-26 20:00:00,11404.0
-2011-09-26 21:00:00,11765.0
-2011-09-26 22:00:00,11515.0
-2011-09-26 23:00:00,10971.0
-2011-09-27 00:00:00,10107.0
-2011-09-25 01:00:00,8712.0
-2011-09-25 02:00:00,8183.0
-2011-09-25 03:00:00,7925.0
-2011-09-25 04:00:00,7682.0
-2011-09-25 05:00:00,7575.0
-2011-09-25 06:00:00,7527.0
-2011-09-25 07:00:00,7630.0
-2011-09-25 08:00:00,7797.0
-2011-09-25 09:00:00,7960.0
-2011-09-25 10:00:00,8391.0
-2011-09-25 11:00:00,8786.0
-2011-09-25 12:00:00,9041.0
-2011-09-25 13:00:00,9211.0
-2011-09-25 14:00:00,9222.0
-2011-09-25 15:00:00,9284.0
-2011-09-25 16:00:00,9233.0
-2011-09-25 17:00:00,9221.0
-2011-09-25 18:00:00,9241.0
-2011-09-25 19:00:00,9312.0
-2011-09-25 20:00:00,9594.0
-2011-09-25 21:00:00,10235.0
-2011-09-25 22:00:00,10073.0
-2011-09-25 23:00:00,9716.0
-2011-09-26 00:00:00,9142.0
-2011-09-24 01:00:00,9181.0
-2011-09-24 02:00:00,8609.0
-2011-09-24 03:00:00,8252.0
-2011-09-24 04:00:00,8019.0
-2011-09-24 05:00:00,7871.0
-2011-09-24 06:00:00,7938.0
-2011-09-24 07:00:00,8134.0
-2011-09-24 08:00:00,8546.0
-2011-09-24 09:00:00,8740.0
-2011-09-24 10:00:00,9228.0
-2011-09-24 11:00:00,9580.0
-2011-09-24 12:00:00,9804.0
-2011-09-24 13:00:00,9865.0
-2011-09-24 14:00:00,9740.0
-2011-09-24 15:00:00,9639.0
-2011-09-24 16:00:00,9526.0
-2011-09-24 17:00:00,9461.0
-2011-09-24 18:00:00,9451.0
-2011-09-24 19:00:00,9449.0
-2011-09-24 20:00:00,9613.0
-2011-09-24 21:00:00,10093.0
-2011-09-24 22:00:00,10023.0
-2011-09-24 23:00:00,9755.0
-2011-09-25 00:00:00,9230.0
-2011-09-23 01:00:00,9294.0
-2011-09-23 02:00:00,8760.0
-2011-09-23 03:00:00,8435.0
-2011-09-23 04:00:00,8187.0
-2011-09-23 05:00:00,8131.0
-2011-09-23 06:00:00,8287.0
-2011-09-23 07:00:00,8875.0
-2011-09-23 08:00:00,9935.0
-2011-09-23 09:00:00,10535.0
-2011-09-23 10:00:00,10811.0
-2011-09-23 11:00:00,11014.0
-2011-09-23 12:00:00,11198.0
-2011-09-23 13:00:00,11243.0
-2011-09-23 14:00:00,11295.0
-2011-09-23 15:00:00,11336.0
-2011-09-23 16:00:00,11222.0
-2011-09-23 17:00:00,11017.0
-2011-09-23 18:00:00,10857.0
-2011-09-23 19:00:00,10742.0
-2011-09-23 20:00:00,10894.0
-2011-09-23 21:00:00,11205.0
-2011-09-23 22:00:00,10936.0
-2011-09-23 23:00:00,10571.0
-2011-09-24 00:00:00,9875.0
-2011-09-22 01:00:00,9397.0
-2011-09-22 02:00:00,8865.0
-2011-09-22 03:00:00,8511.0
-2011-09-22 04:00:00,8284.0
-2011-09-22 05:00:00,8245.0
-2011-09-22 06:00:00,8392.0
-2011-09-22 07:00:00,8971.0
-2011-09-22 08:00:00,10037.0
-2011-09-22 09:00:00,10596.0
-2011-09-22 10:00:00,11001.0
-2011-09-22 11:00:00,11290.0
-2011-09-22 12:00:00,11503.0
-2011-09-22 13:00:00,11534.0
-2011-09-22 14:00:00,11510.0
-2011-09-22 15:00:00,11551.0
-2011-09-22 16:00:00,11478.0
-2011-09-22 17:00:00,11368.0
-2011-09-22 18:00:00,11273.0
-2011-09-22 19:00:00,11086.0
-2011-09-22 20:00:00,11123.0
-2011-09-22 21:00:00,11649.0
-2011-09-22 22:00:00,11456.0
-2011-09-22 23:00:00,10936.0
-2011-09-23 00:00:00,10079.0
-2011-09-21 01:00:00,9723.0
-2011-09-21 02:00:00,9154.0
-2011-09-21 03:00:00,8753.0
-2011-09-21 04:00:00,8547.0
-2011-09-21 05:00:00,8433.0
-2011-09-21 06:00:00,8584.0
-2011-09-21 07:00:00,9206.0
-2011-09-21 08:00:00,10358.0
-2011-09-21 09:00:00,10989.0
-2011-09-21 10:00:00,11379.0
-2011-09-21 11:00:00,11683.0
-2011-09-21 12:00:00,11953.0
-2011-09-21 13:00:00,12100.0
-2011-09-21 14:00:00,12202.0
-2011-09-21 15:00:00,12307.0
-2011-09-21 16:00:00,12239.0
-2011-09-21 17:00:00,12130.0
-2011-09-21 18:00:00,11941.0
-2011-09-21 19:00:00,11654.0
-2011-09-21 20:00:00,11523.0
-2011-09-21 21:00:00,11987.0
-2011-09-21 22:00:00,11733.0
-2011-09-21 23:00:00,11153.0
-2011-09-22 00:00:00,10259.0
-2011-09-20 01:00:00,9425.0
-2011-09-20 02:00:00,8855.0
-2011-09-20 03:00:00,8513.0
-2011-09-20 04:00:00,8290.0
-2011-09-20 05:00:00,8209.0
-2011-09-20 06:00:00,8380.0
-2011-09-20 07:00:00,9004.0
-2011-09-20 08:00:00,10084.0
-2011-09-20 09:00:00,10679.0
-2011-09-20 10:00:00,11161.0
-2011-09-20 11:00:00,11515.0
-2011-09-20 12:00:00,11865.0
-2011-09-20 13:00:00,12069.0
-2011-09-20 14:00:00,12178.0
-2011-09-20 15:00:00,12319.0
-2011-09-20 16:00:00,12353.0
-2011-09-20 17:00:00,12313.0
-2011-09-20 18:00:00,12214.0
-2011-09-20 19:00:00,11980.0
-2011-09-20 20:00:00,11771.0
-2011-09-20 21:00:00,12264.0
-2011-09-20 22:00:00,12077.0
-2011-09-20 23:00:00,11464.0
-2011-09-21 00:00:00,10567.0
-2011-09-19 01:00:00,8809.0
-2011-09-19 02:00:00,8468.0
-2011-09-19 03:00:00,8208.0
-2011-09-19 04:00:00,8163.0
-2011-09-19 05:00:00,8122.0
-2011-09-19 06:00:00,8368.0
-2011-09-19 07:00:00,9027.0
-2011-09-19 08:00:00,10316.0
-2011-09-19 09:00:00,11165.0
-2011-09-19 10:00:00,11599.0
-2011-09-19 11:00:00,11793.0
-2011-09-19 12:00:00,12002.0
-2011-09-19 13:00:00,12072.0
-2011-09-19 14:00:00,12055.0
-2011-09-19 15:00:00,12087.0
-2011-09-19 16:00:00,11999.0
-2011-09-19 17:00:00,11859.0
-2011-09-19 18:00:00,11772.0
-2011-09-19 19:00:00,11608.0
-2011-09-19 20:00:00,11447.0
-2011-09-19 21:00:00,11958.0
-2011-09-19 22:00:00,11751.0
-2011-09-19 23:00:00,11164.0
-2011-09-20 00:00:00,10270.0
-2011-09-18 01:00:00,8712.0
-2011-09-18 02:00:00,8263.0
-2011-09-18 03:00:00,7921.0
-2011-09-18 04:00:00,7718.0
-2011-09-18 05:00:00,7582.0
-2011-09-18 06:00:00,7523.0
-2011-09-18 07:00:00,7651.0
-2011-09-18 08:00:00,7834.0
-2011-09-18 09:00:00,7977.0
-2011-09-18 10:00:00,8416.0
-2011-09-18 11:00:00,8769.0
-2011-09-18 12:00:00,9063.0
-2011-09-18 13:00:00,9258.0
-2011-09-18 14:00:00,9355.0
-2011-09-18 15:00:00,9391.0
-2011-09-18 16:00:00,9440.0
-2011-09-18 17:00:00,9490.0
-2011-09-18 18:00:00,9573.0
-2011-09-18 19:00:00,9730.0
-2011-09-18 20:00:00,10022.0
-2011-09-18 21:00:00,10448.0
-2011-09-18 22:00:00,10322.0
-2011-09-18 23:00:00,9963.0
-2011-09-19 00:00:00,9428.0
-2011-09-17 01:00:00,9223.0
-2011-09-17 02:00:00,8622.0
-2011-09-17 03:00:00,8320.0
-2011-09-17 04:00:00,8061.0
-2011-09-17 05:00:00,7976.0
-2011-09-17 06:00:00,7987.0
-2011-09-17 07:00:00,8213.0
-2011-09-17 08:00:00,8537.0
-2011-09-17 09:00:00,8765.0
-2011-09-17 10:00:00,9280.0
-2011-09-17 11:00:00,9620.0
-2011-09-17 12:00:00,9878.0
-2011-09-17 13:00:00,9941.0
-2011-09-17 14:00:00,9863.0
-2011-09-17 15:00:00,9815.0
-2011-09-17 16:00:00,9727.0
-2011-09-17 17:00:00,9738.0
-2011-09-17 18:00:00,9647.0
-2011-09-17 19:00:00,9552.0
-2011-09-17 20:00:00,9580.0
-2011-09-17 21:00:00,10152.0
-2011-09-17 22:00:00,10151.0
-2011-09-17 23:00:00,9817.0
-2011-09-18 00:00:00,9289.0
-2011-09-16 01:00:00,9233.0
-2011-09-16 02:00:00,8760.0
-2011-09-16 03:00:00,8437.0
-2011-09-16 04:00:00,8224.0
-2011-09-16 05:00:00,8139.0
-2011-09-16 06:00:00,8338.0
-2011-09-16 07:00:00,8957.0
-2011-09-16 08:00:00,10023.0
-2011-09-16 09:00:00,10667.0
-2011-09-16 10:00:00,11021.0
-2011-09-16 11:00:00,11241.0
-2011-09-16 12:00:00,11359.0
-2011-09-16 13:00:00,11417.0
-2011-09-16 14:00:00,11359.0
-2011-09-16 15:00:00,11311.0
-2011-09-16 16:00:00,11208.0
-2011-09-16 17:00:00,11058.0
-2011-09-16 18:00:00,10941.0
-2011-09-16 19:00:00,10804.0
-2011-09-16 20:00:00,10828.0
-2011-09-16 21:00:00,11216.0
-2011-09-16 22:00:00,11031.0
-2011-09-16 23:00:00,10650.0
-2011-09-17 00:00:00,9926.0
-2011-09-15 01:00:00,9257.0
-2011-09-15 02:00:00,8704.0
-2011-09-15 03:00:00,8377.0
-2011-09-15 04:00:00,8172.0
-2011-09-15 05:00:00,8116.0
-2011-09-15 06:00:00,8286.0
-2011-09-15 07:00:00,8914.0
-2011-09-15 08:00:00,9965.0
-2011-09-15 09:00:00,10548.0
-2011-09-15 10:00:00,10925.0
-2011-09-15 11:00:00,11084.0
-2011-09-15 12:00:00,11255.0
-2011-09-15 13:00:00,11304.0
-2011-09-15 14:00:00,11321.0
-2011-09-15 15:00:00,11384.0
-2011-09-15 16:00:00,11299.0
-2011-09-15 17:00:00,11191.0
-2011-09-15 18:00:00,11062.0
-2011-09-15 19:00:00,10864.0
-2011-09-15 20:00:00,10816.0
-2011-09-15 21:00:00,11388.0
-2011-09-15 22:00:00,11300.0
-2011-09-15 23:00:00,10864.0
-2011-09-16 00:00:00,9957.0
-2011-09-14 01:00:00,10012.0
-2011-09-14 02:00:00,9363.0
-2011-09-14 03:00:00,8959.0
-2011-09-14 04:00:00,8707.0
-2011-09-14 05:00:00,8590.0
-2011-09-14 06:00:00,8720.0
-2011-09-14 07:00:00,9334.0
-2011-09-14 08:00:00,10379.0
-2011-09-14 09:00:00,11023.0
-2011-09-14 10:00:00,11538.0
-2011-09-14 11:00:00,11731.0
-2011-09-14 12:00:00,11851.0
-2011-09-14 13:00:00,11887.0
-2011-09-14 14:00:00,11802.0
-2011-09-14 15:00:00,11781.0
-2011-09-14 16:00:00,11615.0
-2011-09-14 17:00:00,11396.0
-2011-09-14 18:00:00,11259.0
-2011-09-14 19:00:00,11060.0
-2011-09-14 20:00:00,10877.0
-2011-09-14 21:00:00,11395.0
-2011-09-14 22:00:00,11393.0
-2011-09-14 23:00:00,10876.0
-2011-09-15 00:00:00,10042.0
-2011-09-13 01:00:00,11723.0
-2011-09-13 02:00:00,10848.0
-2011-09-13 03:00:00,10265.0
-2011-09-13 04:00:00,9872.0
-2011-09-13 05:00:00,9667.0
-2011-09-13 06:00:00,9755.0
-2011-09-13 07:00:00,10402.0
-2011-09-13 08:00:00,11474.0
-2011-09-13 09:00:00,12120.0
-2011-09-13 10:00:00,12754.0
-2011-09-13 11:00:00,13169.0
-2011-09-13 12:00:00,13574.0
-2011-09-13 13:00:00,13757.0
-2011-09-13 14:00:00,13872.0
-2011-09-13 15:00:00,14058.0
-2011-09-13 16:00:00,14053.0
-2011-09-13 17:00:00,13987.0
-2011-09-13 18:00:00,13738.0
-2011-09-13 19:00:00,13266.0
-2011-09-13 20:00:00,12715.0
-2011-09-13 21:00:00,12909.0
-2011-09-13 22:00:00,12706.0
-2011-09-13 23:00:00,11989.0
-2011-09-14 00:00:00,10956.0
-2011-09-12 01:00:00,10448.0
-2011-09-12 02:00:00,9781.0
-2011-09-12 03:00:00,9372.0
-2011-09-12 04:00:00,9057.0
-2011-09-12 05:00:00,8948.0
-2011-09-12 06:00:00,9140.0
-2011-09-12 07:00:00,9910.0
-2011-09-12 08:00:00,11025.0
-2011-09-12 09:00:00,11901.0
-2011-09-12 10:00:00,12695.0
-2011-09-12 11:00:00,13490.0
-2011-09-12 12:00:00,14160.0
-2011-09-12 13:00:00,14782.0
-2011-09-12 14:00:00,15382.0
-2011-09-12 15:00:00,15931.0
-2011-09-12 16:00:00,16158.0
-2011-09-12 17:00:00,16325.0
-2011-09-12 18:00:00,16278.0
-2011-09-12 19:00:00,15891.0
-2011-09-12 20:00:00,15171.0
-2011-09-12 21:00:00,15253.0
-2011-09-12 22:00:00,15049.0
-2011-09-12 23:00:00,14173.0
-2011-09-13 00:00:00,12935.0
-2011-09-11 01:00:00,9860.0
-2011-09-11 02:00:00,9274.0
-2011-09-11 03:00:00,8798.0
-2011-09-11 04:00:00,8523.0
-2011-09-11 05:00:00,8308.0
-2011-09-11 06:00:00,8245.0
-2011-09-11 07:00:00,8232.0
-2011-09-11 08:00:00,8261.0
-2011-09-11 09:00:00,8429.0
-2011-09-11 10:00:00,9095.0
-2011-09-11 11:00:00,9756.0
-2011-09-11 12:00:00,10379.0
-2011-09-11 13:00:00,10933.0
-2011-09-11 14:00:00,11462.0
-2011-09-11 15:00:00,11794.0
-2011-09-11 16:00:00,12128.0
-2011-09-11 17:00:00,12333.0
-2011-09-11 18:00:00,12538.0
-2011-09-11 19:00:00,12554.0
-2011-09-11 20:00:00,12381.0
-2011-09-11 21:00:00,12644.0
-2011-09-11 22:00:00,12666.0
-2011-09-11 23:00:00,12146.0
-2011-09-12 00:00:00,11317.0
-2011-09-10 01:00:00,10144.0
-2011-09-10 02:00:00,9458.0
-2011-09-10 03:00:00,9055.0
-2011-09-10 04:00:00,8729.0
-2011-09-10 05:00:00,8587.0
-2011-09-10 06:00:00,8525.0
-2011-09-10 07:00:00,8687.0
-2011-09-10 08:00:00,8963.0
-2011-09-10 09:00:00,9314.0
-2011-09-10 10:00:00,9958.0
-2011-09-10 11:00:00,10509.0
-2011-09-10 12:00:00,10965.0
-2011-09-10 13:00:00,11270.0
-2011-09-10 14:00:00,11487.0
-2011-09-10 15:00:00,11508.0
-2011-09-10 16:00:00,11464.0
-2011-09-10 17:00:00,11448.0
-2011-09-10 18:00:00,11458.0
-2011-09-10 19:00:00,11416.0
-2011-09-10 20:00:00,11233.0
-2011-09-10 21:00:00,11569.0
-2011-09-10 22:00:00,11569.0
-2011-09-10 23:00:00,11169.0
-2011-09-11 00:00:00,10561.0
-2011-09-09 01:00:00,9973.0
-2011-09-09 02:00:00,9393.0
-2011-09-09 03:00:00,9089.0
-2011-09-09 04:00:00,8792.0
-2011-09-09 05:00:00,8713.0
-2011-09-09 06:00:00,8902.0
-2011-09-09 07:00:00,9558.0
-2011-09-09 08:00:00,10690.0
-2011-09-09 09:00:00,11363.0
-2011-09-09 10:00:00,11835.0
-2011-09-09 11:00:00,12199.0
-2011-09-09 12:00:00,12426.0
-2011-09-09 13:00:00,12487.0
-2011-09-09 14:00:00,12484.0
-2011-09-09 15:00:00,12538.0
-2011-09-09 16:00:00,12486.0
-2011-09-09 17:00:00,12453.0
-2011-09-09 18:00:00,12272.0
-2011-09-09 19:00:00,12001.0
-2011-09-09 20:00:00,11856.0
-2011-09-09 21:00:00,12193.0
-2011-09-09 22:00:00,12141.0
-2011-09-09 23:00:00,11680.0
-2011-09-10 00:00:00,10882.0
-2011-09-08 01:00:00,9527.0
-2011-09-08 02:00:00,8986.0
-2011-09-08 03:00:00,8641.0
-2011-09-08 04:00:00,8432.0
-2011-09-08 05:00:00,8361.0
-2011-09-08 06:00:00,8551.0
-2011-09-08 07:00:00,9189.0
-2011-09-08 08:00:00,10245.0
-2011-09-08 09:00:00,10942.0
-2011-09-08 10:00:00,11493.0
-2011-09-08 11:00:00,11895.0
-2011-09-08 12:00:00,12282.0
-2011-09-08 13:00:00,12461.0
-2011-09-08 14:00:00,12523.0
-2011-09-08 15:00:00,12625.0
-2011-09-08 16:00:00,12460.0
-2011-09-08 17:00:00,12304.0
-2011-09-08 18:00:00,12131.0
-2011-09-08 19:00:00,11971.0
-2011-09-08 20:00:00,11896.0
-2011-09-08 21:00:00,12279.0
-2011-09-08 22:00:00,12173.0
-2011-09-08 23:00:00,11659.0
-2011-09-09 00:00:00,10782.0
-2011-09-07 01:00:00,9429.0
-2011-09-07 02:00:00,8880.0
-2011-09-07 03:00:00,8545.0
-2011-09-07 04:00:00,8317.0
-2011-09-07 05:00:00,8244.0
-2011-09-07 06:00:00,8415.0
-2011-09-07 07:00:00,9032.0
-2011-09-07 08:00:00,9971.0
-2011-09-07 09:00:00,10667.0
-2011-09-07 10:00:00,11219.0
-2011-09-07 11:00:00,11604.0
-2011-09-07 12:00:00,11909.0
-2011-09-07 13:00:00,11999.0
-2011-09-07 14:00:00,12045.0
-2011-09-07 15:00:00,12185.0
-2011-09-07 16:00:00,12129.0
-2011-09-07 17:00:00,12085.0
-2011-09-07 18:00:00,11980.0
-2011-09-07 19:00:00,11756.0
-2011-09-07 20:00:00,11385.0
-2011-09-07 21:00:00,11681.0
-2011-09-07 22:00:00,11780.0
-2011-09-07 23:00:00,11225.0
-2011-09-08 00:00:00,10351.0
-2011-09-06 01:00:00,8437.0
-2011-09-06 02:00:00,8015.0
-2011-09-06 03:00:00,7803.0
-2011-09-06 04:00:00,7675.0
-2011-09-06 05:00:00,7686.0
-2011-09-06 06:00:00,7930.0
-2011-09-06 07:00:00,8655.0
-2011-09-06 08:00:00,9669.0
-2011-09-06 09:00:00,10399.0
-2011-09-06 10:00:00,10934.0
-2011-09-06 11:00:00,11272.0
-2011-09-06 12:00:00,11396.0
-2011-09-06 13:00:00,11754.0
-2011-09-06 14:00:00,11781.0
-2011-09-06 15:00:00,11940.0
-2011-09-06 16:00:00,11918.0
-2011-09-06 17:00:00,11838.0
-2011-09-06 18:00:00,11757.0
-2011-09-06 19:00:00,11522.0
-2011-09-06 20:00:00,11217.0
-2011-09-06 21:00:00,11533.0
-2011-09-06 22:00:00,11645.0
-2011-09-06 23:00:00,11078.0
-2011-09-07 00:00:00,10248.0
-2011-09-05 01:00:00,9270.0
-2011-09-05 02:00:00,8683.0
-2011-09-05 03:00:00,8324.0
-2011-09-05 04:00:00,8013.0
-2011-09-05 05:00:00,7891.0
-2011-09-05 06:00:00,7815.0
-2011-09-05 07:00:00,7948.0
-2011-09-05 08:00:00,7896.0
-2011-09-05 09:00:00,8012.0
-2011-09-05 10:00:00,8375.0
-2011-09-05 11:00:00,8834.0
-2011-09-05 12:00:00,9184.0
-2011-09-05 13:00:00,9350.0
-2011-09-05 14:00:00,9378.0
-2011-09-05 15:00:00,9345.0
-2011-09-05 16:00:00,9274.0
-2011-09-05 17:00:00,9255.0
-2011-09-05 18:00:00,9267.0
-2011-09-05 19:00:00,9311.0
-2011-09-05 20:00:00,9304.0
-2011-09-05 21:00:00,9718.0
-2011-09-05 22:00:00,9983.0
-2011-09-05 23:00:00,9650.0
-2011-09-06 00:00:00,9032.0
-2011-09-04 01:00:00,11655.0
-2011-09-04 02:00:00,10938.0
-2011-09-04 03:00:00,10275.0
-2011-09-04 04:00:00,9872.0
-2011-09-04 05:00:00,9593.0
-2011-09-04 06:00:00,9440.0
-2011-09-04 07:00:00,9429.0
-2011-09-04 08:00:00,9305.0
-2011-09-04 09:00:00,9317.0
-2011-09-04 10:00:00,9662.0
-2011-09-04 11:00:00,10095.0
-2011-09-04 12:00:00,10473.0
-2011-09-04 13:00:00,10883.0
-2011-09-04 14:00:00,11000.0
-2011-09-04 15:00:00,11139.0
-2011-09-04 16:00:00,11131.0
-2011-09-04 17:00:00,11073.0
-2011-09-04 18:00:00,10922.0
-2011-09-04 19:00:00,10697.0
-2011-09-04 20:00:00,10369.0
-2011-09-04 21:00:00,10486.0
-2011-09-04 22:00:00,10617.0
-2011-09-04 23:00:00,10363.0
-2011-09-05 00:00:00,9804.0
-2011-09-03 01:00:00,15121.0
-2011-09-03 02:00:00,13948.0
-2011-09-03 03:00:00,13139.0
-2011-09-03 04:00:00,12445.0
-2011-09-03 05:00:00,12002.0
-2011-09-03 06:00:00,11710.0
-2011-09-03 07:00:00,11721.0
-2011-09-03 08:00:00,11782.0
-2011-09-03 09:00:00,12271.0
-2011-09-03 10:00:00,13242.0
-2011-09-03 11:00:00,14440.0
-2011-09-03 12:00:00,15616.0
-2011-09-03 13:00:00,16476.0
-2011-09-03 14:00:00,17088.0
-2011-09-03 15:00:00,17126.0
-2011-09-03 16:00:00,16496.0
-2011-09-03 17:00:00,15421.0
-2011-09-03 18:00:00,14895.0
-2011-09-03 19:00:00,14456.0
-2011-09-03 20:00:00,14137.0
-2011-09-03 21:00:00,14017.0
-2011-09-03 22:00:00,13823.0
-2011-09-03 23:00:00,13233.0
-2011-09-04 00:00:00,12485.0
-2011-09-02 01:00:00,16524.0
-2011-09-02 02:00:00,15381.0
-2011-09-02 03:00:00,14539.0
-2011-09-02 04:00:00,13879.0
-2011-09-02 05:00:00,13445.0
-2011-09-02 06:00:00,13312.0
-2011-09-02 07:00:00,13841.0
-2011-09-02 08:00:00,14830.0
-2011-09-02 09:00:00,15591.0
-2011-09-02 10:00:00,16350.0
-2011-09-02 11:00:00,17170.0
-2011-09-02 12:00:00,18099.0
-2011-09-02 13:00:00,19109.0
-2011-09-02 14:00:00,20033.0
-2011-09-02 15:00:00,20745.0
-2011-09-02 16:00:00,21055.0
-2011-09-02 17:00:00,21169.0
-2011-09-02 18:00:00,21028.0
-2011-09-02 19:00:00,20567.0
-2011-09-02 20:00:00,19704.0
-2011-09-02 21:00:00,19148.0
-2011-09-02 22:00:00,18731.0
-2011-09-02 23:00:00,17808.0
-2011-09-03 00:00:00,16435.0
-2011-09-01 01:00:00,14098.0
-2011-09-01 02:00:00,13024.0
-2011-09-01 03:00:00,12219.0
-2011-09-01 04:00:00,11616.0
-2011-09-01 05:00:00,11343.0
-2011-09-01 06:00:00,11394.0
-2011-09-01 07:00:00,12029.0
-2011-09-01 08:00:00,13119.0
-2011-09-01 09:00:00,14253.0
-2011-09-01 10:00:00,15354.0
-2011-09-01 11:00:00,16552.0
-2011-09-01 12:00:00,17751.0
-2011-09-01 13:00:00,18772.0
-2011-09-01 14:00:00,19786.0
-2011-09-01 15:00:00,20587.0
-2011-09-01 16:00:00,20937.0
-2011-09-01 17:00:00,21525.0
-2011-09-01 18:00:00,21900.0
-2011-09-01 19:00:00,21635.0
-2011-09-01 20:00:00,21014.0
-2011-09-01 21:00:00,20666.0
-2011-09-01 22:00:00,20436.0
-2011-09-01 23:00:00,19448.0
-2011-09-02 00:00:00,17900.0
-2011-08-31 01:00:00,10992.0
-2011-08-31 02:00:00,10284.0
-2011-08-31 03:00:00,9811.0
-2011-08-31 04:00:00,9461.0
-2011-08-31 05:00:00,9322.0
-2011-08-31 06:00:00,9482.0
-2011-08-31 07:00:00,10201.0
-2011-08-31 08:00:00,11255.0
-2011-08-31 09:00:00,12091.0
-2011-08-31 10:00:00,12800.0
-2011-08-31 11:00:00,13490.0
-2011-08-31 12:00:00,14277.0
-2011-08-31 13:00:00,14937.0
-2011-08-31 14:00:00,15593.0
-2011-08-31 15:00:00,16422.0
-2011-08-31 16:00:00,17129.0
-2011-08-31 17:00:00,17823.0
-2011-08-31 18:00:00,18299.0
-2011-08-31 19:00:00,18358.0
-2011-08-31 20:00:00,17944.0
-2011-08-31 21:00:00,17767.0
-2011-08-31 22:00:00,17747.0
-2011-08-31 23:00:00,16902.0
-2011-09-01 00:00:00,15468.0
-2011-08-30 01:00:00,10971.0
-2011-08-30 02:00:00,10228.0
-2011-08-30 03:00:00,9712.0
-2011-08-30 04:00:00,9352.0
-2011-08-30 05:00:00,9181.0
-2011-08-30 06:00:00,9331.0
-2011-08-30 07:00:00,9966.0
-2011-08-30 08:00:00,10917.0
-2011-08-30 09:00:00,11685.0
-2011-08-30 10:00:00,12244.0
-2011-08-30 11:00:00,12775.0
-2011-08-30 12:00:00,13254.0
-2011-08-30 13:00:00,13497.0
-2011-08-30 14:00:00,13772.0
-2011-08-30 15:00:00,13912.0
-2011-08-30 16:00:00,13953.0
-2011-08-30 17:00:00,14001.0
-2011-08-30 18:00:00,13875.0
-2011-08-30 19:00:00,13571.0
-2011-08-30 20:00:00,13320.0
-2011-08-30 21:00:00,13549.0
-2011-08-30 22:00:00,13615.0
-2011-08-30 23:00:00,12992.0
-2011-08-31 00:00:00,11980.0
-2011-08-29 01:00:00,10043.0
-2011-08-29 02:00:00,9501.0
-2011-08-29 03:00:00,9115.0
-2011-08-29 04:00:00,8875.0
-2011-08-29 05:00:00,8799.0
-2011-08-29 06:00:00,8994.0
-2011-08-29 07:00:00,9668.0
-2011-08-29 08:00:00,10588.0
-2011-08-29 09:00:00,11579.0
-2011-08-29 10:00:00,12433.0
-2011-08-29 11:00:00,13052.0
-2011-08-29 12:00:00,13628.0
-2011-08-29 13:00:00,13952.0
-2011-08-29 14:00:00,14223.0
-2011-08-29 15:00:00,14558.0
-2011-08-29 16:00:00,14818.0
-2011-08-29 17:00:00,15033.0
-2011-08-29 18:00:00,15071.0
-2011-08-29 19:00:00,14859.0
-2011-08-29 20:00:00,14306.0
-2011-08-29 21:00:00,14047.0
-2011-08-29 22:00:00,14002.0
-2011-08-29 23:00:00,13222.0
-2011-08-30 00:00:00,12066.0
-2011-08-28 01:00:00,10578.0
-2011-08-28 02:00:00,9878.0
-2011-08-28 03:00:00,9381.0
-2011-08-28 04:00:00,8920.0
-2011-08-28 05:00:00,8770.0
-2011-08-28 06:00:00,8641.0
-2011-08-28 07:00:00,8682.0
-2011-08-28 08:00:00,8539.0
-2011-08-28 09:00:00,8872.0
-2011-08-28 10:00:00,9575.0
-2011-08-28 11:00:00,10260.0
-2011-08-28 12:00:00,10854.0
-2011-08-28 13:00:00,11223.0
-2011-08-28 14:00:00,11558.0
-2011-08-28 15:00:00,11792.0
-2011-08-28 16:00:00,12032.0
-2011-08-28 17:00:00,12129.0
-2011-08-28 18:00:00,12139.0
-2011-08-28 19:00:00,11924.0
-2011-08-28 20:00:00,11679.0
-2011-08-28 21:00:00,11726.0
-2011-08-28 22:00:00,11991.0
-2011-08-28 23:00:00,11585.0
-2011-08-29 00:00:00,10819.0
-2011-08-27 01:00:00,11769.0
-2011-08-27 02:00:00,10975.0
-2011-08-27 03:00:00,10383.0
-2011-08-27 04:00:00,9915.0
-2011-08-27 05:00:00,9733.0
-2011-08-27 06:00:00,9638.0
-2011-08-27 07:00:00,9810.0
-2011-08-27 08:00:00,9955.0
-2011-08-27 09:00:00,10663.0
-2011-08-27 10:00:00,11749.0
-2011-08-27 11:00:00,12858.0
-2011-08-27 12:00:00,13801.0
-2011-08-27 13:00:00,14423.0
-2011-08-27 14:00:00,14898.0
-2011-08-27 15:00:00,15026.0
-2011-08-27 16:00:00,15119.0
-2011-08-27 17:00:00,15062.0
-2011-08-27 18:00:00,14896.0
-2011-08-27 19:00:00,14442.0
-2011-08-27 20:00:00,13608.0
-2011-08-27 21:00:00,12989.0
-2011-08-27 22:00:00,12848.0
-2011-08-27 23:00:00,12273.0
-2011-08-28 00:00:00,11421.0
-2011-08-26 01:00:00,11554.0
-2011-08-26 02:00:00,10694.0
-2011-08-26 03:00:00,10059.0
-2011-08-26 04:00:00,9680.0
-2011-08-26 05:00:00,9460.0
-2011-08-26 06:00:00,9585.0
-2011-08-26 07:00:00,10102.0
-2011-08-26 08:00:00,10914.0
-2011-08-26 09:00:00,11832.0
-2011-08-26 10:00:00,12703.0
-2011-08-26 11:00:00,13393.0
-2011-08-26 12:00:00,14027.0
-2011-08-26 13:00:00,14490.0
-2011-08-26 14:00:00,14949.0
-2011-08-26 15:00:00,15461.0
-2011-08-26 16:00:00,15815.0
-2011-08-26 17:00:00,15863.0
-2011-08-26 18:00:00,15634.0
-2011-08-26 19:00:00,15223.0
-2011-08-26 20:00:00,14569.0
-2011-08-26 21:00:00,14264.0
-2011-08-26 22:00:00,14318.0
-2011-08-26 23:00:00,13745.0
-2011-08-27 00:00:00,12799.0
-2011-08-25 01:00:00,12677.0
-2011-08-25 02:00:00,11541.0
-2011-08-25 03:00:00,10758.0
-2011-08-25 04:00:00,10231.0
-2011-08-25 05:00:00,9968.0
-2011-08-25 06:00:00,10018.0
-2011-08-25 07:00:00,10568.0
-2011-08-25 08:00:00,11412.0
-2011-08-25 09:00:00,12361.0
-2011-08-25 10:00:00,13141.0
-2011-08-25 11:00:00,13843.0
-2011-08-25 12:00:00,14538.0
-2011-08-25 13:00:00,14984.0
-2011-08-25 14:00:00,15411.0
-2011-08-25 15:00:00,15882.0
-2011-08-25 16:00:00,16235.0
-2011-08-25 17:00:00,16534.0
-2011-08-25 18:00:00,16676.0
-2011-08-25 19:00:00,16392.0
-2011-08-25 20:00:00,15578.0
-2011-08-25 21:00:00,14944.0
-2011-08-25 22:00:00,14839.0
-2011-08-25 23:00:00,13987.0
-2011-08-26 00:00:00,12745.0
-2011-08-24 01:00:00,11252.0
-2011-08-24 02:00:00,10598.0
-2011-08-24 03:00:00,10154.0
-2011-08-24 04:00:00,9880.0
-2011-08-24 05:00:00,9774.0
-2011-08-24 06:00:00,9988.0
-2011-08-24 07:00:00,10719.0
-2011-08-24 08:00:00,11838.0
-2011-08-24 09:00:00,13031.0
-2011-08-24 10:00:00,14017.0
-2011-08-24 11:00:00,15213.0
-2011-08-24 12:00:00,16452.0
-2011-08-24 13:00:00,17490.0
-2011-08-24 14:00:00,18425.0
-2011-08-24 15:00:00,19367.0
-2011-08-24 16:00:00,20080.0
-2011-08-24 17:00:00,20495.0
-2011-08-24 18:00:00,20515.0
-2011-08-24 19:00:00,19966.0
-2011-08-24 20:00:00,18971.0
-2011-08-24 21:00:00,18029.0
-2011-08-24 22:00:00,17394.0
-2011-08-24 23:00:00,16033.0
-2011-08-25 00:00:00,14285.0
-2011-08-23 01:00:00,11787.0
-2011-08-23 02:00:00,10838.0
-2011-08-23 03:00:00,10205.0
-2011-08-23 04:00:00,9791.0
-2011-08-23 05:00:00,9568.0
-2011-08-23 06:00:00,9703.0
-2011-08-23 07:00:00,10304.0
-2011-08-23 08:00:00,11185.0
-2011-08-23 09:00:00,12069.0
-2011-08-23 10:00:00,12737.0
-2011-08-23 11:00:00,13219.0
-2011-08-23 12:00:00,13586.0
-2011-08-23 13:00:00,13637.0
-2011-08-23 14:00:00,13494.0
-2011-08-23 15:00:00,13480.0
-2011-08-23 16:00:00,13513.0
-2011-08-23 17:00:00,13500.0
-2011-08-23 18:00:00,13660.0
-2011-08-23 19:00:00,13788.0
-2011-08-23 20:00:00,13463.0
-2011-08-23 21:00:00,13456.0
-2011-08-23 22:00:00,13678.0
-2011-08-23 23:00:00,13191.0
-2011-08-24 00:00:00,12237.0
-2011-08-22 01:00:00,10750.0
-2011-08-22 02:00:00,10022.0
-2011-08-22 03:00:00,9529.0
-2011-08-22 04:00:00,9221.0
-2011-08-22 05:00:00,9128.0
-2011-08-22 06:00:00,9306.0
-2011-08-22 07:00:00,9934.0
-2011-08-22 08:00:00,10913.0
-2011-08-22 09:00:00,11862.0
-2011-08-22 10:00:00,12797.0
-2011-08-22 11:00:00,13518.0
-2011-08-22 12:00:00,14138.0
-2011-08-22 13:00:00,14604.0
-2011-08-22 14:00:00,15122.0
-2011-08-22 15:00:00,15565.0
-2011-08-22 16:00:00,15860.0
-2011-08-22 17:00:00,15991.0
-2011-08-22 18:00:00,16129.0
-2011-08-22 19:00:00,15977.0
-2011-08-22 20:00:00,15422.0
-2011-08-22 21:00:00,14964.0
-2011-08-22 22:00:00,14931.0
-2011-08-22 23:00:00,14136.0
-2011-08-23 00:00:00,12970.0
-2011-08-21 01:00:00,11719.0
-2011-08-21 02:00:00,10975.0
-2011-08-21 03:00:00,10319.0
-2011-08-21 04:00:00,9910.0
-2011-08-21 05:00:00,9650.0
-2011-08-21 06:00:00,9416.0
-2011-08-21 07:00:00,9367.0
-2011-08-21 08:00:00,9214.0
-2011-08-21 09:00:00,9559.0
-2011-08-21 10:00:00,10240.0
-2011-08-21 11:00:00,11087.0
-2011-08-21 12:00:00,11862.0
-2011-08-21 13:00:00,12485.0
-2011-08-21 14:00:00,12916.0
-2011-08-21 15:00:00,13219.0
-2011-08-21 16:00:00,13514.0
-2011-08-21 17:00:00,13745.0
-2011-08-21 18:00:00,13891.0
-2011-08-21 19:00:00,13692.0
-2011-08-21 20:00:00,13302.0
-2011-08-21 21:00:00,12903.0
-2011-08-21 22:00:00,13035.0
-2011-08-21 23:00:00,12573.0
-2011-08-22 00:00:00,11707.0
-2011-08-20 01:00:00,13582.0
-2011-08-20 02:00:00,12579.0
-2011-08-20 03:00:00,11838.0
-2011-08-20 04:00:00,11269.0
-2011-08-20 05:00:00,10911.0
-2011-08-20 06:00:00,10786.0
-2011-08-20 07:00:00,10931.0
-2011-08-20 08:00:00,11088.0
-2011-08-20 09:00:00,11564.0
-2011-08-20 10:00:00,12343.0
-2011-08-20 11:00:00,12902.0
-2011-08-20 12:00:00,13354.0
-2011-08-20 13:00:00,13175.0
-2011-08-20 14:00:00,13021.0
-2011-08-20 15:00:00,12963.0
-2011-08-20 16:00:00,13379.0
-2011-08-20 17:00:00,13832.0
-2011-08-20 18:00:00,14164.0
-2011-08-20 19:00:00,14251.0
-2011-08-20 20:00:00,13906.0
-2011-08-20 21:00:00,13569.0
-2011-08-20 22:00:00,13711.0
-2011-08-20 23:00:00,13251.0
-2011-08-21 00:00:00,12559.0
-2011-08-19 01:00:00,12340.0
-2011-08-19 02:00:00,11442.0
-2011-08-19 03:00:00,10762.0
-2011-08-19 04:00:00,10350.0
-2011-08-19 05:00:00,10130.0
-2011-08-19 06:00:00,10194.0
-2011-08-19 07:00:00,10697.0
-2011-08-19 08:00:00,11498.0
-2011-08-19 09:00:00,12416.0
-2011-08-19 10:00:00,13339.0
-2011-08-19 11:00:00,14287.0
-2011-08-19 12:00:00,15312.0
-2011-08-19 13:00:00,16205.0
-2011-08-19 14:00:00,16963.0
-2011-08-19 15:00:00,17590.0
-2011-08-19 16:00:00,18023.0
-2011-08-19 17:00:00,18344.0
-2011-08-19 18:00:00,18391.0
-2011-08-19 19:00:00,18122.0
-2011-08-19 20:00:00,17444.0
-2011-08-19 21:00:00,16840.0
-2011-08-19 22:00:00,16684.0
-2011-08-19 23:00:00,15947.0
-2011-08-20 00:00:00,14831.0
-2011-08-18 01:00:00,13137.0
-2011-08-18 02:00:00,12169.0
-2011-08-18 03:00:00,11543.0
-2011-08-18 04:00:00,11003.0
-2011-08-18 05:00:00,10733.0
-2011-08-18 06:00:00,10772.0
-2011-08-18 07:00:00,11289.0
-2011-08-18 08:00:00,12002.0
-2011-08-18 09:00:00,13061.0
-2011-08-18 10:00:00,14060.0
-2011-08-18 11:00:00,14924.0
-2011-08-18 12:00:00,15843.0
-2011-08-18 13:00:00,16430.0
-2011-08-18 14:00:00,16961.0
-2011-08-18 15:00:00,17513.0
-2011-08-18 16:00:00,17615.0
-2011-08-18 17:00:00,17609.0
-2011-08-18 18:00:00,17455.0
-2011-08-18 19:00:00,17221.0
-2011-08-18 20:00:00,16544.0
-2011-08-18 21:00:00,15848.0
-2011-08-18 22:00:00,15716.0
-2011-08-18 23:00:00,14857.0
-2011-08-19 00:00:00,13561.0
-2011-08-17 01:00:00,11885.0
-2011-08-17 02:00:00,10983.0
-2011-08-17 03:00:00,10345.0
-2011-08-17 04:00:00,9952.0
-2011-08-17 05:00:00,9734.0
-2011-08-17 06:00:00,9850.0
-2011-08-17 07:00:00,10459.0
-2011-08-17 08:00:00,11233.0
-2011-08-17 09:00:00,12099.0
-2011-08-17 10:00:00,13037.0
-2011-08-17 11:00:00,13936.0
-2011-08-17 12:00:00,14773.0
-2011-08-17 13:00:00,15377.0
-2011-08-17 14:00:00,15696.0
-2011-08-17 15:00:00,16097.0
-2011-08-17 16:00:00,16592.0
-2011-08-17 17:00:00,17113.0
-2011-08-17 18:00:00,17117.0
-2011-08-17 19:00:00,16834.0
-2011-08-17 20:00:00,16373.0
-2011-08-17 21:00:00,16066.0
-2011-08-17 22:00:00,16208.0
-2011-08-17 23:00:00,15609.0
-2011-08-18 00:00:00,14397.0
-2011-08-16 01:00:00,11249.0
-2011-08-16 02:00:00,10451.0
-2011-08-16 03:00:00,9933.0
-2011-08-16 04:00:00,9541.0
-2011-08-16 05:00:00,9388.0
-2011-08-16 06:00:00,9522.0
-2011-08-16 07:00:00,10082.0
-2011-08-16 08:00:00,10834.0
-2011-08-16 09:00:00,11830.0
-2011-08-16 10:00:00,12837.0
-2011-08-16 11:00:00,13659.0
-2011-08-16 12:00:00,14405.0
-2011-08-16 13:00:00,14931.0
-2011-08-16 14:00:00,15439.0
-2011-08-16 15:00:00,15894.0
-2011-08-16 16:00:00,16170.0
-2011-08-16 17:00:00,16376.0
-2011-08-16 18:00:00,16451.0
-2011-08-16 19:00:00,16230.0
-2011-08-16 20:00:00,15631.0
-2011-08-16 21:00:00,15037.0
-2011-08-16 22:00:00,14972.0
-2011-08-16 23:00:00,14315.0
-2011-08-17 00:00:00,13102.0
-2011-08-15 01:00:00,10033.0
-2011-08-15 02:00:00,9460.0
-2011-08-15 03:00:00,9032.0
-2011-08-15 04:00:00,8832.0
-2011-08-15 05:00:00,8768.0
-2011-08-15 06:00:00,8968.0
-2011-08-15 07:00:00,9542.0
-2011-08-15 08:00:00,10352.0
-2011-08-15 09:00:00,11362.0
-2011-08-15 10:00:00,12210.0
-2011-08-15 11:00:00,12969.0
-2011-08-15 12:00:00,13568.0
-2011-08-15 13:00:00,13969.0
-2011-08-15 14:00:00,14322.0
-2011-08-15 15:00:00,14696.0
-2011-08-15 16:00:00,14954.0
-2011-08-15 17:00:00,15134.0
-2011-08-15 18:00:00,15199.0
-2011-08-15 19:00:00,15057.0
-2011-08-15 20:00:00,14560.0
-2011-08-15 21:00:00,14065.0
-2011-08-15 22:00:00,14032.0
-2011-08-15 23:00:00,13380.0
-2011-08-16 00:00:00,12330.0
-2011-08-14 01:00:00,10680.0
-2011-08-14 02:00:00,9976.0
-2011-08-14 03:00:00,9531.0
-2011-08-14 04:00:00,9130.0
-2011-08-14 05:00:00,8955.0
-2011-08-14 06:00:00,8806.0
-2011-08-14 07:00:00,8865.0
-2011-08-14 08:00:00,8735.0
-2011-08-14 09:00:00,9019.0
-2011-08-14 10:00:00,9569.0
-2011-08-14 11:00:00,10123.0
-2011-08-14 12:00:00,10499.0
-2011-08-14 13:00:00,10758.0
-2011-08-14 14:00:00,10860.0
-2011-08-14 15:00:00,11029.0
-2011-08-14 16:00:00,11205.0
-2011-08-14 17:00:00,11447.0
-2011-08-14 18:00:00,11631.0
-2011-08-14 19:00:00,11729.0
-2011-08-14 20:00:00,11552.0
-2011-08-14 21:00:00,11397.0
-2011-08-14 22:00:00,11661.0
-2011-08-14 23:00:00,11436.0
-2011-08-15 00:00:00,10799.0
-2011-08-13 01:00:00,12027.0
-2011-08-13 02:00:00,11194.0
-2011-08-13 03:00:00,10671.0
-2011-08-13 04:00:00,10211.0
-2011-08-13 05:00:00,9993.0
-2011-08-13 06:00:00,9895.0
-2011-08-13 07:00:00,10053.0
-2011-08-13 08:00:00,10150.0
-2011-08-13 09:00:00,10680.0
-2011-08-13 10:00:00,11630.0
-2011-08-13 11:00:00,12761.0
-2011-08-13 12:00:00,13887.0
-2011-08-13 13:00:00,14579.0
-2011-08-13 14:00:00,15010.0
-2011-08-13 15:00:00,14668.0
-2011-08-13 16:00:00,13874.0
-2011-08-13 17:00:00,13447.0
-2011-08-13 18:00:00,13084.0
-2011-08-13 19:00:00,12684.0
-2011-08-13 20:00:00,12298.0
-2011-08-13 21:00:00,12142.0
-2011-08-13 22:00:00,12321.0
-2011-08-13 23:00:00,12052.0
-2011-08-14 00:00:00,11414.0
-2011-08-12 01:00:00,11619.0
-2011-08-12 02:00:00,10761.0
-2011-08-12 03:00:00,10179.0
-2011-08-12 04:00:00,9767.0
-2011-08-12 05:00:00,9544.0
-2011-08-12 06:00:00,9631.0
-2011-08-12 07:00:00,10180.0
-2011-08-12 08:00:00,10834.0
-2011-08-12 09:00:00,11790.0
-2011-08-12 10:00:00,12663.0
-2011-08-12 11:00:00,13378.0
-2011-08-12 12:00:00,13945.0
-2011-08-12 13:00:00,14417.0
-2011-08-12 14:00:00,14745.0
-2011-08-12 15:00:00,15090.0
-2011-08-12 16:00:00,15393.0
-2011-08-12 17:00:00,15579.0
-2011-08-12 18:00:00,15490.0
-2011-08-12 19:00:00,15190.0
-2011-08-12 20:00:00,14623.0
-2011-08-12 21:00:00,14270.0
-2011-08-12 22:00:00,14342.0
-2011-08-12 23:00:00,13897.0
-2011-08-13 00:00:00,12936.0
-2011-08-11 01:00:00,10965.0
-2011-08-11 02:00:00,10251.0
-2011-08-11 03:00:00,9752.0
-2011-08-11 04:00:00,9406.0
-2011-08-11 05:00:00,9287.0
-2011-08-11 06:00:00,9402.0
-2011-08-11 07:00:00,9887.0
-2011-08-11 08:00:00,10533.0
-2011-08-11 09:00:00,11546.0
-2011-08-11 10:00:00,12420.0
-2011-08-11 11:00:00,13038.0
-2011-08-11 12:00:00,13615.0
-2011-08-11 13:00:00,14042.0
-2011-08-11 14:00:00,14411.0
-2011-08-11 15:00:00,14814.0
-2011-08-11 16:00:00,15111.0
-2011-08-11 17:00:00,15325.0
-2011-08-11 18:00:00,15399.0
-2011-08-11 19:00:00,15256.0
-2011-08-11 20:00:00,14734.0
-2011-08-11 21:00:00,14237.0
-2011-08-11 22:00:00,14145.0
-2011-08-11 23:00:00,13697.0
-2011-08-12 00:00:00,12660.0
-2011-08-10 01:00:00,11932.0
-2011-08-10 02:00:00,11050.0
-2011-08-10 03:00:00,10373.0
-2011-08-10 04:00:00,9936.0
-2011-08-10 05:00:00,9684.0
-2011-08-10 06:00:00,9757.0
-2011-08-10 07:00:00,10235.0
-2011-08-10 08:00:00,10911.0
-2011-08-10 09:00:00,11867.0
-2011-08-10 10:00:00,12658.0
-2011-08-10 11:00:00,13238.0
-2011-08-10 12:00:00,13694.0
-2011-08-10 13:00:00,13967.0
-2011-08-10 14:00:00,14284.0
-2011-08-10 15:00:00,14560.0
-2011-08-10 16:00:00,14694.0
-2011-08-10 17:00:00,14697.0
-2011-08-10 18:00:00,14643.0
-2011-08-10 19:00:00,14397.0
-2011-08-10 20:00:00,13834.0
-2011-08-10 21:00:00,13345.0
-2011-08-10 22:00:00,13453.0
-2011-08-10 23:00:00,12977.0
-2011-08-11 00:00:00,12012.0
-2011-08-09 01:00:00,12158.0
-2011-08-09 02:00:00,11335.0
-2011-08-09 03:00:00,10707.0
-2011-08-09 04:00:00,10283.0
-2011-08-09 05:00:00,10082.0
-2011-08-09 06:00:00,10194.0
-2011-08-09 07:00:00,10717.0
-2011-08-09 08:00:00,11480.0
-2011-08-09 09:00:00,12541.0
-2011-08-09 10:00:00,13560.0
-2011-08-09 11:00:00,14480.0
-2011-08-09 12:00:00,15395.0
-2011-08-09 13:00:00,16007.0
-2011-08-09 14:00:00,16354.0
-2011-08-09 15:00:00,16496.0
-2011-08-09 16:00:00,16481.0
-2011-08-09 17:00:00,16507.0
-2011-08-09 18:00:00,16416.0
-2011-08-09 19:00:00,16052.0
-2011-08-09 20:00:00,15402.0
-2011-08-09 21:00:00,14702.0
-2011-08-09 22:00:00,14717.0
-2011-08-09 23:00:00,14196.0
-2011-08-10 00:00:00,13112.0
-2011-08-08 01:00:00,12546.0
-2011-08-08 02:00:00,11742.0
-2011-08-08 03:00:00,11111.0
-2011-08-08 04:00:00,10727.0
-2011-08-08 05:00:00,10515.0
-2011-08-08 06:00:00,10701.0
-2011-08-08 07:00:00,11220.0
-2011-08-08 08:00:00,12092.0
-2011-08-08 09:00:00,13273.0
-2011-08-08 10:00:00,14426.0
-2011-08-08 11:00:00,15204.0
-2011-08-08 12:00:00,16003.0
-2011-08-08 13:00:00,16665.0
-2011-08-08 14:00:00,17144.0
-2011-08-08 15:00:00,17590.0
-2011-08-08 16:00:00,17640.0
-2011-08-08 17:00:00,16955.0
-2011-08-08 18:00:00,16355.0
-2011-08-08 19:00:00,15765.0
-2011-08-08 20:00:00,15161.0
-2011-08-08 21:00:00,14749.0
-2011-08-08 22:00:00,14693.0
-2011-08-08 23:00:00,14194.0
-2011-08-09 00:00:00,13246.0
-2011-08-07 01:00:00,13210.0
-2011-08-07 02:00:00,12314.0
-2011-08-07 03:00:00,11624.0
-2011-08-07 04:00:00,10994.0
-2011-08-07 05:00:00,10726.0
-2011-08-07 06:00:00,10620.0
-2011-08-07 07:00:00,10565.0
-2011-08-07 08:00:00,10522.0
-2011-08-07 09:00:00,10842.0
-2011-08-07 10:00:00,11532.0
-2011-08-07 11:00:00,12254.0
-2011-08-07 12:00:00,12725.0
-2011-08-07 13:00:00,13745.0
-2011-08-07 14:00:00,14798.0
-2011-08-07 15:00:00,15700.0
-2011-08-07 16:00:00,16469.0
-2011-08-07 17:00:00,16957.0
-2011-08-07 18:00:00,16982.0
-2011-08-07 19:00:00,16387.0
-2011-08-07 20:00:00,15574.0
-2011-08-07 21:00:00,14943.0
-2011-08-07 22:00:00,14874.0
-2011-08-07 23:00:00,14436.0
-2011-08-08 00:00:00,13581.0
-2011-08-06 01:00:00,13984.0
-2011-08-06 02:00:00,13085.0
-2011-08-06 03:00:00,12380.0
-2011-08-06 04:00:00,11879.0
-2011-08-06 05:00:00,11474.0
-2011-08-06 06:00:00,11420.0
-2011-08-06 07:00:00,11519.0
-2011-08-06 08:00:00,11765.0
-2011-08-06 09:00:00,12207.0
-2011-08-06 10:00:00,12961.0
-2011-08-06 11:00:00,13674.0
-2011-08-06 12:00:00,14440.0
-2011-08-06 13:00:00,15397.0
-2011-08-06 14:00:00,16165.0
-2011-08-06 15:00:00,16423.0
-2011-08-06 16:00:00,16605.0
-2011-08-06 17:00:00,16718.0
-2011-08-06 18:00:00,16732.0
-2011-08-06 19:00:00,16609.0
-2011-08-06 20:00:00,16250.0
-2011-08-06 21:00:00,15742.0
-2011-08-06 22:00:00,15554.0
-2011-08-06 23:00:00,15122.0
-2011-08-07 00:00:00,14181.0
-2011-08-05 01:00:00,13331.0
-2011-08-05 02:00:00,12357.0
-2011-08-05 03:00:00,11686.0
-2011-08-05 04:00:00,11180.0
-2011-08-05 05:00:00,10936.0
-2011-08-05 06:00:00,11028.0
-2011-08-05 07:00:00,11523.0
-2011-08-05 08:00:00,12297.0
-2011-08-05 09:00:00,13484.0
-2011-08-05 10:00:00,14533.0
-2011-08-05 11:00:00,15370.0
-2011-08-05 12:00:00,16281.0
-2011-08-05 13:00:00,17039.0
-2011-08-05 14:00:00,17645.0
-2011-08-05 15:00:00,18013.0
-2011-08-05 16:00:00,18099.0
-2011-08-05 17:00:00,18216.0
-2011-08-05 18:00:00,18302.0
-2011-08-05 19:00:00,18025.0
-2011-08-05 20:00:00,17173.0
-2011-08-05 21:00:00,16493.0
-2011-08-05 22:00:00,16394.0
-2011-08-05 23:00:00,15959.0
-2011-08-06 00:00:00,14935.0
-2011-08-04 01:00:00,13615.0
-2011-08-04 02:00:00,12555.0
-2011-08-04 03:00:00,11826.0
-2011-08-04 04:00:00,11295.0
-2011-08-04 05:00:00,11018.0
-2011-08-04 06:00:00,11066.0
-2011-08-04 07:00:00,11573.0
-2011-08-04 08:00:00,12329.0
-2011-08-04 09:00:00,13520.0
-2011-08-04 10:00:00,14551.0
-2011-08-04 11:00:00,15317.0
-2011-08-04 12:00:00,16029.0
-2011-08-04 13:00:00,16725.0
-2011-08-04 14:00:00,17427.0
-2011-08-04 15:00:00,18059.0
-2011-08-04 16:00:00,18380.0
-2011-08-04 17:00:00,18588.0
-2011-08-04 18:00:00,18618.0
-2011-08-04 19:00:00,18317.0
-2011-08-04 20:00:00,17581.0
-2011-08-04 21:00:00,16686.0
-2011-08-04 22:00:00,16378.0
-2011-08-04 23:00:00,15770.0
-2011-08-05 00:00:00,14573.0
-2011-08-03 01:00:00,15308.0
-2011-08-03 02:00:00,14163.0
-2011-08-03 03:00:00,13418.0
-2011-08-03 04:00:00,12948.0
-2011-08-03 05:00:00,12688.0
-2011-08-03 06:00:00,12806.0
-2011-08-03 07:00:00,13355.0
-2011-08-03 08:00:00,14117.0
-2011-08-03 09:00:00,15069.0
-2011-08-03 10:00:00,15874.0
-2011-08-03 11:00:00,16489.0
-2011-08-03 12:00:00,17380.0
-2011-08-03 13:00:00,18212.0
-2011-08-03 14:00:00,18821.0
-2011-08-03 15:00:00,19354.0
-2011-08-03 16:00:00,19615.0
-2011-08-03 17:00:00,19670.0
-2011-08-03 18:00:00,19530.0
-2011-08-03 19:00:00,19157.0
-2011-08-03 20:00:00,18430.0
-2011-08-03 21:00:00,17499.0
-2011-08-03 22:00:00,17036.0
-2011-08-03 23:00:00,16343.0
-2011-08-04 00:00:00,14974.0
-2011-08-02 01:00:00,15873.0
-2011-08-02 02:00:00,14789.0
-2011-08-02 03:00:00,14048.0
-2011-08-02 04:00:00,13524.0
-2011-08-02 05:00:00,13224.0
-2011-08-02 06:00:00,13311.0
-2011-08-02 07:00:00,13844.0
-2011-08-02 08:00:00,14674.0
-2011-08-02 09:00:00,15751.0
-2011-08-02 10:00:00,16954.0
-2011-08-02 11:00:00,18132.0
-2011-08-02 12:00:00,19191.0
-2011-08-02 13:00:00,20073.0
-2011-08-02 14:00:00,20807.0
-2011-08-02 15:00:00,21481.0
-2011-08-02 16:00:00,22044.0
-2011-08-02 17:00:00,22409.0
-2011-08-02 18:00:00,22576.0
-2011-08-02 19:00:00,22343.0
-2011-08-02 20:00:00,21567.0
-2011-08-02 21:00:00,20767.0
-2011-08-02 22:00:00,20244.0
-2011-08-02 23:00:00,19164.0
-2011-08-03 00:00:00,16834.0
-2011-08-01 01:00:00,15079.0
-2011-08-01 02:00:00,14026.0
-2011-08-01 03:00:00,13313.0
-2011-08-01 04:00:00,12742.0
-2011-08-01 05:00:00,12432.0
-2011-08-01 06:00:00,12471.0
-2011-08-01 07:00:00,12912.0
-2011-08-01 08:00:00,13791.0
-2011-08-01 09:00:00,15173.0
-2011-08-01 10:00:00,16563.0
-2011-08-01 11:00:00,17876.0
-2011-08-01 12:00:00,19019.0
-2011-08-01 13:00:00,19779.0
-2011-08-01 14:00:00,20515.0
-2011-08-01 15:00:00,21091.0
-2011-08-01 16:00:00,21435.0
-2011-08-01 17:00:00,21472.0
-2011-08-01 18:00:00,21053.0
-2011-08-01 19:00:00,20550.0
-2011-08-01 20:00:00,19977.0
-2011-08-01 21:00:00,19413.0
-2011-08-01 22:00:00,19335.0
-2011-08-01 23:00:00,18632.0
-2011-08-02 00:00:00,17213.0
-2011-07-31 01:00:00,13847.0
-2011-07-31 02:00:00,12792.0
-2011-07-31 03:00:00,12031.0
-2011-07-31 04:00:00,11352.0
-2011-07-31 05:00:00,10954.0
-2011-07-31 06:00:00,10647.0
-2011-07-31 07:00:00,10449.0
-2011-07-31 08:00:00,10363.0
-2011-07-31 09:00:00,11235.0
-2011-07-31 10:00:00,12510.0
-2011-07-31 11:00:00,13948.0
-2011-07-31 12:00:00,15271.0
-2011-07-31 13:00:00,16413.0
-2011-07-31 14:00:00,17189.0
-2011-07-31 15:00:00,17862.0
-2011-07-31 16:00:00,18285.0
-2011-07-31 17:00:00,18606.0
-2011-07-31 18:00:00,18876.0
-2011-07-31 19:00:00,18945.0
-2011-07-31 20:00:00,18653.0
-2011-07-31 21:00:00,18116.0
-2011-07-31 22:00:00,17853.0
-2011-07-31 23:00:00,17460.0
-2011-08-01 00:00:00,16342.0
-2011-07-30 01:00:00,13493.0
-2011-07-30 02:00:00,12434.0
-2011-07-30 03:00:00,11647.0
-2011-07-30 04:00:00,11078.0
-2011-07-30 05:00:00,10665.0
-2011-07-30 06:00:00,10543.0
-2011-07-30 07:00:00,10537.0
-2011-07-30 08:00:00,10771.0
-2011-07-30 09:00:00,11693.0
-2011-07-30 10:00:00,12909.0
-2011-07-30 11:00:00,14077.0
-2011-07-30 12:00:00,15248.0
-2011-07-30 13:00:00,16086.0
-2011-07-30 14:00:00,16769.0
-2011-07-30 15:00:00,17180.0
-2011-07-30 16:00:00,17615.0
-2011-07-30 17:00:00,17960.0
-2011-07-30 18:00:00,18202.0
-2011-07-30 19:00:00,18154.0
-2011-07-30 20:00:00,17710.0
-2011-07-30 21:00:00,17005.0
-2011-07-30 22:00:00,16497.0
-2011-07-30 23:00:00,15994.0
-2011-07-31 00:00:00,14933.0
-2011-07-29 01:00:00,14641.0
-2011-07-29 02:00:00,13644.0
-2011-07-29 03:00:00,12869.0
-2011-07-29 04:00:00,12303.0
-2011-07-29 05:00:00,11991.0
-2011-07-29 06:00:00,12055.0
-2011-07-29 07:00:00,12547.0
-2011-07-29 08:00:00,13314.0
-2011-07-29 09:00:00,14220.0
-2011-07-29 10:00:00,15126.0
-2011-07-29 11:00:00,15752.0
-2011-07-29 12:00:00,16337.0
-2011-07-29 13:00:00,16863.0
-2011-07-29 14:00:00,17323.0
-2011-07-29 15:00:00,17789.0
-2011-07-29 16:00:00,18273.0
-2011-07-29 17:00:00,18811.0
-2011-07-29 18:00:00,19052.0
-2011-07-29 19:00:00,18840.0
-2011-07-29 20:00:00,18187.0
-2011-07-29 21:00:00,17160.0
-2011-07-29 22:00:00,16613.0
-2011-07-29 23:00:00,16004.0
-2011-07-30 00:00:00,14791.0
-2011-07-28 01:00:00,15063.0
-2011-07-28 02:00:00,13652.0
-2011-07-28 03:00:00,12608.0
-2011-07-28 04:00:00,12084.0
-2011-07-28 05:00:00,11778.0
-2011-07-28 06:00:00,11838.0
-2011-07-28 07:00:00,12433.0
-2011-07-28 08:00:00,13355.0
-2011-07-28 09:00:00,14200.0
-2011-07-28 10:00:00,14835.0
-2011-07-28 11:00:00,15349.0
-2011-07-28 12:00:00,15875.0
-2011-07-28 13:00:00,16129.0
-2011-07-28 14:00:00,16297.0
-2011-07-28 15:00:00,16572.0
-2011-07-28 16:00:00,17187.0
-2011-07-28 17:00:00,17833.0
-2011-07-28 18:00:00,18313.0
-2011-07-28 19:00:00,18327.0
-2011-07-28 20:00:00,17969.0
-2011-07-28 21:00:00,17521.0
-2011-07-28 22:00:00,17517.0
-2011-07-28 23:00:00,17052.0
-2011-07-29 00:00:00,15874.0
-2011-07-27 01:00:00,12864.0
-2011-07-27 02:00:00,11973.0
-2011-07-27 03:00:00,11361.0
-2011-07-27 04:00:00,10941.0
-2011-07-27 05:00:00,10740.0
-2011-07-27 06:00:00,10851.0
-2011-07-27 07:00:00,11325.0
-2011-07-27 08:00:00,12156.0
-2011-07-27 09:00:00,12998.0
-2011-07-27 10:00:00,13579.0
-2011-07-27 11:00:00,14088.0
-2011-07-27 12:00:00,14476.0
-2011-07-27 13:00:00,14820.0
-2011-07-27 14:00:00,15703.0
-2011-07-27 15:00:00,16553.0
-2011-07-27 16:00:00,17401.0
-2011-07-27 17:00:00,18288.0
-2011-07-27 18:00:00,18825.0
-2011-07-27 19:00:00,19011.0
-2011-07-27 20:00:00,18789.0
-2011-07-27 21:00:00,18406.0
-2011-07-27 22:00:00,18540.0
-2011-07-27 23:00:00,18036.0
-2011-07-28 00:00:00,16762.0
-2011-07-26 01:00:00,13991.0
-2011-07-26 02:00:00,12857.0
-2011-07-26 03:00:00,12052.0
-2011-07-26 04:00:00,11519.0
-2011-07-26 05:00:00,11266.0
-2011-07-26 06:00:00,11345.0
-2011-07-26 07:00:00,11701.0
-2011-07-26 08:00:00,12558.0
-2011-07-26 09:00:00,13990.0
-2011-07-26 10:00:00,15207.0
-2011-07-26 11:00:00,16277.0
-2011-07-26 12:00:00,17276.0
-2011-07-26 13:00:00,17982.0
-2011-07-26 14:00:00,18422.0
-2011-07-26 15:00:00,18832.0
-2011-07-26 16:00:00,18992.0
-2011-07-26 17:00:00,19041.0
-2011-07-26 18:00:00,18900.0
-2011-07-26 19:00:00,18432.0
-2011-07-26 20:00:00,17491.0
-2011-07-26 21:00:00,16472.0
-2011-07-26 22:00:00,15843.0
-2011-07-26 23:00:00,15308.0
-2011-07-27 00:00:00,14094.0
-2011-07-25 01:00:00,13275.0
-2011-07-25 02:00:00,12481.0
-2011-07-25 03:00:00,11884.0
-2011-07-25 04:00:00,11437.0
-2011-07-25 05:00:00,11293.0
-2011-07-25 06:00:00,11455.0
-2011-07-25 07:00:00,11955.0
-2011-07-25 08:00:00,12888.0
-2011-07-25 09:00:00,14144.0
-2011-07-25 10:00:00,15276.0
-2011-07-25 11:00:00,16117.0
-2011-07-25 12:00:00,16954.0
-2011-07-25 13:00:00,17529.0
-2011-07-25 14:00:00,18051.0
-2011-07-25 15:00:00,18503.0
-2011-07-25 16:00:00,18915.0
-2011-07-25 17:00:00,19249.0
-2011-07-25 18:00:00,19457.0
-2011-07-25 19:00:00,19422.0
-2011-07-25 20:00:00,18928.0
-2011-07-25 21:00:00,18168.0
-2011-07-25 22:00:00,17557.0
-2011-07-25 23:00:00,16918.0
-2011-07-26 00:00:00,15479.0
-2011-07-24 01:00:00,13905.0
-2011-07-24 02:00:00,12967.0
-2011-07-24 03:00:00,12183.0
-2011-07-24 04:00:00,11519.0
-2011-07-24 05:00:00,11197.0
-2011-07-24 06:00:00,11033.0
-2011-07-24 07:00:00,10955.0
-2011-07-24 08:00:00,11030.0
-2011-07-24 09:00:00,11463.0
-2011-07-24 10:00:00,12029.0
-2011-07-24 11:00:00,12297.0
-2011-07-24 12:00:00,12690.0
-2011-07-24 13:00:00,13192.0
-2011-07-24 14:00:00,13858.0
-2011-07-24 15:00:00,14701.0
-2011-07-24 16:00:00,15363.0
-2011-07-24 17:00:00,15539.0
-2011-07-24 18:00:00,15889.0
-2011-07-24 19:00:00,16252.0
-2011-07-24 20:00:00,16103.0
-2011-07-24 21:00:00,15600.0
-2011-07-24 22:00:00,15372.0
-2011-07-24 23:00:00,15155.0
-2011-07-25 00:00:00,14318.0
-2011-07-23 01:00:00,15569.0
-2011-07-23 02:00:00,14490.0
-2011-07-23 03:00:00,13337.0
-2011-07-23 04:00:00,12458.0
-2011-07-23 05:00:00,11959.0
-2011-07-23 06:00:00,11621.0
-2011-07-23 07:00:00,11611.0
-2011-07-23 08:00:00,11683.0
-2011-07-23 09:00:00,12211.0
-2011-07-23 10:00:00,12773.0
-2011-07-23 11:00:00,13400.0
-2011-07-23 12:00:00,13994.0
-2011-07-23 13:00:00,14538.0
-2011-07-23 14:00:00,14855.0
-2011-07-23 15:00:00,15161.0
-2011-07-23 16:00:00,15554.0
-2011-07-23 17:00:00,16039.0
-2011-07-23 18:00:00,16519.0
-2011-07-23 19:00:00,16591.0
-2011-07-23 20:00:00,16483.0
-2011-07-23 21:00:00,16209.0
-2011-07-23 22:00:00,15968.0
-2011-07-23 23:00:00,15720.0
-2011-07-24 00:00:00,14918.0
-2011-07-22 01:00:00,17671.0
-2011-07-22 02:00:00,16259.0
-2011-07-22 03:00:00,15164.0
-2011-07-22 04:00:00,14314.0
-2011-07-22 05:00:00,13798.0
-2011-07-22 06:00:00,13705.0
-2011-07-22 07:00:00,14039.0
-2011-07-22 08:00:00,14700.0
-2011-07-22 09:00:00,15529.0
-2011-07-22 10:00:00,16185.0
-2011-07-22 11:00:00,16511.0
-2011-07-22 12:00:00,16288.0
-2011-07-22 13:00:00,16099.0
-2011-07-22 14:00:00,16446.0
-2011-07-22 15:00:00,17205.0
-2011-07-22 16:00:00,17932.0
-2011-07-22 17:00:00,18677.0
-2011-07-22 18:00:00,19309.0
-2011-07-22 19:00:00,19551.0
-2011-07-22 20:00:00,19317.0
-2011-07-22 21:00:00,18811.0
-2011-07-22 22:00:00,18326.0
-2011-07-22 23:00:00,17829.0
-2011-07-23 00:00:00,16698.0
-2011-07-21 01:00:00,18510.0
-2011-07-21 02:00:00,17311.0
-2011-07-21 03:00:00,16438.0
-2011-07-21 04:00:00,15702.0
-2011-07-21 05:00:00,15201.0
-2011-07-21 06:00:00,15081.0
-2011-07-21 07:00:00,15341.0
-2011-07-21 08:00:00,16237.0
-2011-07-21 09:00:00,17725.0
-2011-07-21 10:00:00,19091.0
-2011-07-21 11:00:00,20346.0
-2011-07-21 12:00:00,21622.0
-2011-07-21 13:00:00,22510.0
-2011-07-21 14:00:00,23119.0
-2011-07-21 15:00:00,23446.0
-2011-07-21 16:00:00,23587.0
-2011-07-21 17:00:00,23670.0
-2011-07-21 18:00:00,23542.0
-2011-07-21 19:00:00,23160.0
-2011-07-21 20:00:00,22596.0
-2011-07-21 21:00:00,21843.0
-2011-07-21 22:00:00,21320.0
-2011-07-21 23:00:00,20673.0
-2011-07-22 00:00:00,19229.0
-2011-07-20 01:00:00,16669.0
-2011-07-20 02:00:00,15488.0
-2011-07-20 03:00:00,14599.0
-2011-07-20 04:00:00,13998.0
-2011-07-20 05:00:00,13630.0
-2011-07-20 06:00:00,13505.0
-2011-07-20 07:00:00,13902.0
-2011-07-20 08:00:00,14668.0
-2011-07-20 09:00:00,16041.0
-2011-07-20 10:00:00,17411.0
-2011-07-20 11:00:00,18980.0
-2011-07-20 12:00:00,20550.0
-2011-07-20 13:00:00,21773.0
-2011-07-20 14:00:00,22543.0
-2011-07-20 15:00:00,23194.0
-2011-07-20 16:00:00,23524.0
-2011-07-20 17:00:00,23713.0
-2011-07-20 18:00:00,23753.0
-2011-07-20 19:00:00,23582.0
-2011-07-20 20:00:00,23089.0
-2011-07-20 21:00:00,22458.0
-2011-07-20 22:00:00,22012.0
-2011-07-20 23:00:00,21407.0
-2011-07-21 00:00:00,20016.0
-2011-07-19 01:00:00,17146.0
-2011-07-19 02:00:00,16064.0
-2011-07-19 03:00:00,15301.0
-2011-07-19 04:00:00,14670.0
-2011-07-19 05:00:00,14287.0
-2011-07-19 06:00:00,14182.0
-2011-07-19 07:00:00,14420.0
-2011-07-19 08:00:00,15250.0
-2011-07-19 09:00:00,16672.0
-2011-07-19 10:00:00,18034.0
-2011-07-19 11:00:00,19274.0
-2011-07-19 12:00:00,20429.0
-2011-07-19 13:00:00,21191.0
-2011-07-19 14:00:00,21768.0
-2011-07-19 15:00:00,22278.0
-2011-07-19 16:00:00,22429.0
-2011-07-19 17:00:00,22463.0
-2011-07-19 18:00:00,22330.0
-2011-07-19 19:00:00,21969.0
-2011-07-19 20:00:00,21281.0
-2011-07-19 21:00:00,20584.0
-2011-07-19 22:00:00,20155.0
-2011-07-19 23:00:00,19599.0
-2011-07-20 00:00:00,18164.0
-2011-07-18 01:00:00,16257.0
-2011-07-18 02:00:00,15301.0
-2011-07-18 03:00:00,14622.0
-2011-07-18 04:00:00,14125.0
-2011-07-18 05:00:00,13933.0
-2011-07-18 06:00:00,13968.0
-2011-07-18 07:00:00,14500.0
-2011-07-18 08:00:00,15382.0
-2011-07-18 09:00:00,16669.0
-2011-07-18 10:00:00,17483.0
-2011-07-18 11:00:00,18443.0
-2011-07-18 12:00:00,19065.0
-2011-07-18 13:00:00,19535.0
-2011-07-18 14:00:00,20122.0
-2011-07-18 15:00:00,20650.0
-2011-07-18 16:00:00,20844.0
-2011-07-18 17:00:00,21037.0
-2011-07-18 18:00:00,21294.0
-2011-07-18 19:00:00,21278.0
-2011-07-18 20:00:00,20951.0
-2011-07-18 21:00:00,20461.0
-2011-07-18 22:00:00,20239.0
-2011-07-18 23:00:00,19866.0
-2011-07-19 00:00:00,18514.0
-2011-07-17 01:00:00,13153.0
-2011-07-17 02:00:00,12262.0
-2011-07-17 03:00:00,11504.0
-2011-07-17 04:00:00,11007.0
-2011-07-17 05:00:00,10582.0
-2011-07-17 06:00:00,10336.0
-2011-07-17 07:00:00,10133.0
-2011-07-17 08:00:00,10262.0
-2011-07-17 09:00:00,11105.0
-2011-07-17 10:00:00,12434.0
-2011-07-17 11:00:00,13928.0
-2011-07-17 12:00:00,15305.0
-2011-07-17 13:00:00,16467.0
-2011-07-17 14:00:00,17435.0
-2011-07-17 15:00:00,18224.0
-2011-07-17 16:00:00,18788.0
-2011-07-17 17:00:00,19225.0
-2011-07-17 18:00:00,19524.0
-2011-07-17 19:00:00,19566.0
-2011-07-17 20:00:00,19353.0
-2011-07-17 21:00:00,18862.0
-2011-07-17 22:00:00,18670.0
-2011-07-17 23:00:00,18448.0
-2011-07-18 00:00:00,17431.0
-2011-07-16 01:00:00,13141.0
-2011-07-16 02:00:00,12168.0
-2011-07-16 03:00:00,11417.0
-2011-07-16 04:00:00,10880.0
-2011-07-16 05:00:00,10677.0
-2011-07-16 06:00:00,10554.0
-2011-07-16 07:00:00,10666.0
-2011-07-16 08:00:00,10900.0
-2011-07-16 09:00:00,11506.0
-2011-07-16 10:00:00,12303.0
-2011-07-16 11:00:00,13012.0
-2011-07-16 12:00:00,13639.0
-2011-07-16 13:00:00,14143.0
-2011-07-16 14:00:00,14825.0
-2011-07-16 15:00:00,15460.0
-2011-07-16 16:00:00,15990.0
-2011-07-16 17:00:00,16365.0
-2011-07-16 18:00:00,16711.0
-2011-07-16 19:00:00,16682.0
-2011-07-16 20:00:00,16484.0
-2011-07-16 21:00:00,15920.0
-2011-07-16 22:00:00,15493.0
-2011-07-16 23:00:00,15153.0
-2011-07-17 00:00:00,14243.0
-2011-07-15 01:00:00,11911.0
-2011-07-15 02:00:00,11065.0
-2011-07-15 03:00:00,10472.0
-2011-07-15 04:00:00,10092.0
-2011-07-15 05:00:00,9949.0
-2011-07-15 06:00:00,10061.0
-2011-07-15 07:00:00,10559.0
-2011-07-15 08:00:00,11405.0
-2011-07-15 09:00:00,12623.0
-2011-07-15 10:00:00,13780.0
-2011-07-15 11:00:00,14837.0
-2011-07-15 12:00:00,15759.0
-2011-07-15 13:00:00,16480.0
-2011-07-15 14:00:00,17031.0
-2011-07-15 15:00:00,17573.0
-2011-07-15 16:00:00,17850.0
-2011-07-15 17:00:00,17810.0
-2011-07-15 18:00:00,17562.0
-2011-07-15 19:00:00,17314.0
-2011-07-15 20:00:00,16681.0
-2011-07-15 21:00:00,15839.0
-2011-07-15 22:00:00,15565.0
-2011-07-15 23:00:00,15249.0
-2011-07-16 00:00:00,14245.0
-2011-07-14 01:00:00,10980.0
-2011-07-14 02:00:00,10206.0
-2011-07-14 03:00:00,9694.0
-2011-07-14 04:00:00,9359.0
-2011-07-14 05:00:00,9225.0
-2011-07-14 06:00:00,9371.0
-2011-07-14 07:00:00,9784.0
-2011-07-14 08:00:00,10655.0
-2011-07-14 09:00:00,11683.0
-2011-07-14 10:00:00,12495.0
-2011-07-14 11:00:00,13226.0
-2011-07-14 12:00:00,13887.0
-2011-07-14 13:00:00,14354.0
-2011-07-14 14:00:00,14777.0
-2011-07-14 15:00:00,15251.0
-2011-07-14 16:00:00,15587.0
-2011-07-14 17:00:00,15821.0
-2011-07-14 18:00:00,15908.0
-2011-07-14 19:00:00,15634.0
-2011-07-14 20:00:00,14883.0
-2011-07-14 21:00:00,14235.0
-2011-07-14 22:00:00,13984.0
-2011-07-14 23:00:00,13855.0
-2011-07-15 00:00:00,12958.0
-2011-07-13 01:00:00,12527.0
-2011-07-13 02:00:00,11535.0
-2011-07-13 03:00:00,10899.0
-2011-07-13 04:00:00,10437.0
-2011-07-13 05:00:00,10194.0
-2011-07-13 06:00:00,10263.0
-2011-07-13 07:00:00,10636.0
-2011-07-13 08:00:00,11510.0
-2011-07-13 09:00:00,12471.0
-2011-07-13 10:00:00,13029.0
-2011-07-13 11:00:00,13446.0
-2011-07-13 12:00:00,13909.0
-2011-07-13 13:00:00,14255.0
-2011-07-13 14:00:00,14498.0
-2011-07-13 15:00:00,14660.0
-2011-07-13 16:00:00,14751.0
-2011-07-13 17:00:00,14780.0
-2011-07-13 18:00:00,14727.0
-2011-07-13 19:00:00,14426.0
-2011-07-13 20:00:00,13825.0
-2011-07-13 21:00:00,13254.0
-2011-07-13 22:00:00,12991.0
-2011-07-13 23:00:00,12817.0
-2011-07-14 00:00:00,11949.0
-2011-07-12 01:00:00,14050.0
-2011-07-12 02:00:00,12935.0
-2011-07-12 03:00:00,12146.0
-2011-07-12 04:00:00,11544.0
-2011-07-12 05:00:00,11188.0
-2011-07-12 06:00:00,11133.0
-2011-07-12 07:00:00,11363.0
-2011-07-12 08:00:00,12318.0
-2011-07-12 09:00:00,13732.0
-2011-07-12 10:00:00,14944.0
-2011-07-12 11:00:00,15977.0
-2011-07-12 12:00:00,16892.0
-2011-07-12 13:00:00,17421.0
-2011-07-12 14:00:00,17784.0
-2011-07-12 15:00:00,18194.0
-2011-07-12 16:00:00,18519.0
-2011-07-12 17:00:00,18644.0
-2011-07-12 18:00:00,18447.0
-2011-07-12 19:00:00,18021.0
-2011-07-12 20:00:00,17047.0
-2011-07-12 21:00:00,16275.0
-2011-07-12 22:00:00,15754.0
-2011-07-12 23:00:00,15015.0
-2011-07-13 00:00:00,13788.0
-2011-07-11 01:00:00,14707.0
-2011-07-11 02:00:00,13777.0
-2011-07-11 03:00:00,13115.0
-2011-07-11 04:00:00,12697.0
-2011-07-11 05:00:00,12536.0
-2011-07-11 06:00:00,12683.0
-2011-07-11 07:00:00,13218.0
-2011-07-11 08:00:00,14257.0
-2011-07-11 09:00:00,15368.0
-2011-07-11 10:00:00,13866.0
-2011-07-11 11:00:00,13831.0
-2011-07-11 12:00:00,14016.0
-2011-07-11 13:00:00,14366.0
-2011-07-11 14:00:00,14808.0
-2011-07-11 15:00:00,15813.0
-2011-07-11 16:00:00,16715.0
-2011-07-11 17:00:00,17321.0
-2011-07-11 18:00:00,17804.0
-2011-07-11 19:00:00,18023.0
-2011-07-11 20:00:00,17748.0
-2011-07-11 21:00:00,17258.0
-2011-07-11 22:00:00,16972.0
-2011-07-11 23:00:00,16630.0
-2011-07-12 00:00:00,15432.0
-2011-07-10 01:00:00,13861.0
-2011-07-10 02:00:00,12946.0
-2011-07-10 03:00:00,12245.0
-2011-07-10 04:00:00,11623.0
-2011-07-10 05:00:00,11198.0
-2011-07-10 06:00:00,10950.0
-2011-07-10 07:00:00,10642.0
-2011-07-10 08:00:00,10783.0
-2011-07-10 09:00:00,11641.0
-2011-07-10 10:00:00,12978.0
-2011-07-10 11:00:00,14349.0
-2011-07-10 12:00:00,15488.0
-2011-07-10 13:00:00,16345.0
-2011-07-10 14:00:00,16989.0
-2011-07-10 15:00:00,17488.0
-2011-07-10 16:00:00,17795.0
-2011-07-10 17:00:00,18001.0
-2011-07-10 18:00:00,18073.0
-2011-07-10 19:00:00,17833.0
-2011-07-10 20:00:00,17350.0
-2011-07-10 21:00:00,16982.0
-2011-07-10 22:00:00,16781.0
-2011-07-10 23:00:00,16700.0
-2011-07-11 00:00:00,15795.0
-2011-07-09 01:00:00,12393.0
-2011-07-09 02:00:00,11387.0
-2011-07-09 03:00:00,10628.0
-2011-07-09 04:00:00,10083.0
-2011-07-09 05:00:00,9782.0
-2011-07-09 06:00:00,9610.0
-2011-07-09 07:00:00,9524.0
-2011-07-09 08:00:00,9838.0
-2011-07-09 09:00:00,10771.0
-2011-07-09 10:00:00,11921.0
-2011-07-09 11:00:00,13075.0
-2011-07-09 12:00:00,14194.0
-2011-07-09 13:00:00,15066.0
-2011-07-09 14:00:00,15737.0
-2011-07-09 15:00:00,16221.0
-2011-07-09 16:00:00,16618.0
-2011-07-09 17:00:00,16978.0
-2011-07-09 18:00:00,17273.0
-2011-07-09 19:00:00,17278.0
-2011-07-09 20:00:00,16947.0
-2011-07-09 21:00:00,16399.0
-2011-07-09 22:00:00,16000.0
-2011-07-09 23:00:00,15770.0
-2011-07-10 00:00:00,14868.0
-2011-07-08 01:00:00,11595.0
-2011-07-08 02:00:00,10758.0
-2011-07-08 03:00:00,10185.0
-2011-07-08 04:00:00,9782.0
-2011-07-08 05:00:00,9574.0
-2011-07-08 06:00:00,9663.0
-2011-07-08 07:00:00,10006.0
-2011-07-08 08:00:00,10875.0
-2011-07-08 09:00:00,12037.0
-2011-07-08 10:00:00,13100.0
-2011-07-08 11:00:00,13991.0
-2011-07-08 12:00:00,14760.0
-2011-07-08 13:00:00,15374.0
-2011-07-08 14:00:00,15889.0
-2011-07-08 15:00:00,16440.0
-2011-07-08 16:00:00,16802.0
-2011-07-08 17:00:00,17098.0
-2011-07-08 18:00:00,17227.0
-2011-07-08 19:00:00,17053.0
-2011-07-08 20:00:00,16487.0
-2011-07-08 21:00:00,15730.0
-2011-07-08 22:00:00,15060.0
-2011-07-08 23:00:00,14711.0
-2011-07-09 00:00:00,13586.0
-2011-07-07 01:00:00,12381.0
-2011-07-07 02:00:00,11440.0
-2011-07-07 03:00:00,10792.0
-2011-07-07 04:00:00,10357.0
-2011-07-07 05:00:00,10158.0
-2011-07-07 06:00:00,10188.0
-2011-07-07 07:00:00,10606.0
-2011-07-07 08:00:00,11423.0
-2011-07-07 09:00:00,12392.0
-2011-07-07 10:00:00,13292.0
-2011-07-07 11:00:00,13884.0
-2011-07-07 12:00:00,14535.0
-2011-07-07 13:00:00,14895.0
-2011-07-07 14:00:00,15163.0
-2011-07-07 15:00:00,15435.0
-2011-07-07 16:00:00,15512.0
-2011-07-07 17:00:00,15476.0
-2011-07-07 18:00:00,15385.0
-2011-07-07 19:00:00,15363.0
-2011-07-07 20:00:00,14899.0
-2011-07-07 21:00:00,14342.0
-2011-07-07 22:00:00,13963.0
-2011-07-07 23:00:00,13749.0
-2011-07-08 00:00:00,12756.0
-2011-07-06 01:00:00,14566.0
-2011-07-06 02:00:00,13436.0
-2011-07-06 03:00:00,12596.0
-2011-07-06 04:00:00,11996.0
-2011-07-06 05:00:00,11660.0
-2011-07-06 06:00:00,11607.0
-2011-07-06 07:00:00,11868.0
-2011-07-06 08:00:00,12827.0
-2011-07-06 09:00:00,14194.0
-2011-07-06 10:00:00,15437.0
-2011-07-06 11:00:00,16547.0
-2011-07-06 12:00:00,17562.0
-2011-07-06 13:00:00,18207.0
-2011-07-06 14:00:00,18636.0
-2011-07-06 15:00:00,18950.0
-2011-07-06 16:00:00,19027.0
-2011-07-06 17:00:00,18936.0
-2011-07-06 18:00:00,18711.0
-2011-07-06 19:00:00,18288.0
-2011-07-06 20:00:00,17362.0
-2011-07-06 21:00:00,16267.0
-2011-07-06 22:00:00,15493.0
-2011-07-06 23:00:00,14943.0
-2011-07-07 00:00:00,13689.0
-2011-07-05 01:00:00,11997.0
-2011-07-05 02:00:00,11042.0
-2011-07-05 03:00:00,10338.0
-2011-07-05 04:00:00,9847.0
-2011-07-05 05:00:00,9640.0
-2011-07-05 06:00:00,9712.0
-2011-07-05 07:00:00,10088.0
-2011-07-05 08:00:00,11178.0
-2011-07-05 09:00:00,12691.0
-2011-07-05 10:00:00,14055.0
-2011-07-05 11:00:00,15300.0
-2011-07-05 12:00:00,16439.0
-2011-07-05 13:00:00,17334.0
-2011-07-05 14:00:00,18031.0
-2011-07-05 15:00:00,18712.0
-2011-07-05 16:00:00,19220.0
-2011-07-05 17:00:00,19570.0
-2011-07-05 18:00:00,19759.0
-2011-07-05 19:00:00,19593.0
-2011-07-05 20:00:00,18940.0
-2011-07-05 21:00:00,18158.0
-2011-07-05 22:00:00,17867.0
-2011-07-05 23:00:00,17371.0
-2011-07-06 00:00:00,16030.0
-2011-07-04 01:00:00,11163.0
-2011-07-04 02:00:00,10477.0
-2011-07-04 03:00:00,9855.0
-2011-07-04 04:00:00,9410.0
-2011-07-04 05:00:00,9161.0
-2011-07-04 06:00:00,9086.0
-2011-07-04 07:00:00,8938.0
-2011-07-04 08:00:00,9088.0
-2011-07-04 09:00:00,9739.0
-2011-07-04 10:00:00,10717.0
-2011-07-04 11:00:00,11779.0
-2011-07-04 12:00:00,12733.0
-2011-07-04 13:00:00,13517.0
-2011-07-04 14:00:00,14088.0
-2011-07-04 15:00:00,14515.0
-2011-07-04 16:00:00,14923.0
-2011-07-04 17:00:00,15290.0
-2011-07-04 18:00:00,15550.0
-2011-07-04 19:00:00,15553.0
-2011-07-04 20:00:00,15226.0
-2011-07-04 21:00:00,14657.0
-2011-07-04 22:00:00,14009.0
-2011-07-04 23:00:00,13531.0
-2011-07-05 00:00:00,12833.0
-2011-07-03 01:00:00,13038.0
-2011-07-03 02:00:00,11994.0
-2011-07-03 03:00:00,11183.0
-2011-07-03 04:00:00,10561.0
-2011-07-03 05:00:00,10183.0
-2011-07-03 06:00:00,9875.0
-2011-07-03 07:00:00,9604.0
-2011-07-03 08:00:00,9688.0
-2011-07-03 09:00:00,10446.0
-2011-07-03 10:00:00,11448.0
-2011-07-03 11:00:00,12395.0
-2011-07-03 12:00:00,13359.0
-2011-07-03 13:00:00,14095.0
-2011-07-03 14:00:00,14476.0
-2011-07-03 15:00:00,14564.0
-2011-07-03 16:00:00,14497.0
-2011-07-03 17:00:00,14513.0
-2011-07-03 18:00:00,14443.0
-2011-07-03 19:00:00,14234.0
-2011-07-03 20:00:00,13461.0
-2011-07-03 21:00:00,12838.0
-2011-07-03 22:00:00,12599.0
-2011-07-03 23:00:00,12463.0
-2011-07-04 00:00:00,11921.0
-2011-07-02 01:00:00,13191.0
-2011-07-02 02:00:00,12256.0
-2011-07-02 03:00:00,11640.0
-2011-07-02 04:00:00,11185.0
-2011-07-02 05:00:00,10931.0
-2011-07-02 06:00:00,10794.0
-2011-07-02 07:00:00,10756.0
-2011-07-02 08:00:00,11194.0
-2011-07-02 09:00:00,12398.0
-2011-07-02 10:00:00,13991.0
-2011-07-02 11:00:00,15398.0
-2011-07-02 12:00:00,16528.0
-2011-07-02 13:00:00,17292.0
-2011-07-02 14:00:00,17865.0
-2011-07-02 15:00:00,18082.0
-2011-07-02 16:00:00,18338.0
-2011-07-02 17:00:00,18387.0
-2011-07-02 18:00:00,18186.0
-2011-07-02 19:00:00,17823.0
-2011-07-02 20:00:00,17239.0
-2011-07-02 21:00:00,16377.0
-2011-07-02 22:00:00,15668.0
-2011-07-02 23:00:00,15182.0
-2011-07-03 00:00:00,14123.0
-2011-07-01 01:00:00,13174.0
-2011-07-01 02:00:00,12170.0
-2011-07-01 03:00:00,11461.0
-2011-07-01 04:00:00,10959.0
-2011-07-01 05:00:00,10726.0
-2011-07-01 06:00:00,10808.0
-2011-07-01 07:00:00,11245.0
-2011-07-01 08:00:00,12044.0
-2011-07-01 09:00:00,13198.0
-2011-07-01 10:00:00,13899.0
-2011-07-01 11:00:00,14275.0
-2011-07-01 12:00:00,14553.0
-2011-07-01 13:00:00,14711.0
-2011-07-01 14:00:00,14858.0
-2011-07-01 15:00:00,14924.0
-2011-07-01 16:00:00,15003.0
-2011-07-01 17:00:00,15316.0
-2011-07-01 18:00:00,15812.0
-2011-07-01 19:00:00,16202.0
-2011-07-01 20:00:00,16132.0
-2011-07-01 21:00:00,15697.0
-2011-07-01 22:00:00,15332.0
-2011-07-01 23:00:00,15177.0
-2011-07-02 00:00:00,14255.0
-2011-06-30 01:00:00,11474.0
-2011-06-30 02:00:00,10564.0
-2011-06-30 03:00:00,9929.0
-2011-06-30 04:00:00,9532.0
-2011-06-30 05:00:00,9320.0
-2011-06-30 06:00:00,9432.0
-2011-06-30 07:00:00,9798.0
-2011-06-30 08:00:00,10921.0
-2011-06-30 09:00:00,12166.0
-2011-06-30 10:00:00,13218.0
-2011-06-30 11:00:00,14210.0
-2011-06-30 12:00:00,15153.0
-2011-06-30 13:00:00,15858.0
-2011-06-30 14:00:00,16575.0
-2011-06-30 15:00:00,17272.0
-2011-06-30 16:00:00,17810.0
-2011-06-30 17:00:00,18276.0
-2011-06-30 18:00:00,18435.0
-2011-06-30 19:00:00,18178.0
-2011-06-30 20:00:00,17797.0
-2011-06-30 21:00:00,17257.0
-2011-06-30 22:00:00,16754.0
-2011-06-30 23:00:00,15669.0
-2011-07-01 00:00:00,14323.0
-2011-06-29 01:00:00,11468.0
-2011-06-29 02:00:00,10509.0
-2011-06-29 03:00:00,9877.0
-2011-06-29 04:00:00,9458.0
-2011-06-29 05:00:00,9265.0
-2011-06-29 06:00:00,9355.0
-2011-06-29 07:00:00,9654.0
-2011-06-29 08:00:00,10658.0
-2011-06-29 09:00:00,11860.0
-2011-06-29 10:00:00,12800.0
-2011-06-29 11:00:00,13522.0
-2011-06-29 12:00:00,14164.0
-2011-06-29 13:00:00,14653.0
-2011-06-29 14:00:00,15071.0
-2011-06-29 15:00:00,15519.0
-2011-06-29 16:00:00,15817.0
-2011-06-29 17:00:00,15991.0
-2011-06-29 18:00:00,16049.0
-2011-06-29 19:00:00,15874.0
-2011-06-29 20:00:00,15259.0
-2011-06-29 21:00:00,14531.0
-2011-06-29 22:00:00,14019.0
-2011-06-29 23:00:00,13716.0
-2011-06-30 00:00:00,12632.0
-2011-06-28 01:00:00,12421.0
-2011-06-28 02:00:00,11256.0
-2011-06-28 03:00:00,10454.0
-2011-06-28 04:00:00,9864.0
-2011-06-28 05:00:00,9562.0
-2011-06-28 06:00:00,9597.0
-2011-06-28 07:00:00,9915.0
-2011-06-28 08:00:00,10847.0
-2011-06-28 09:00:00,11874.0
-2011-06-28 10:00:00,12627.0
-2011-06-28 11:00:00,13207.0
-2011-06-28 12:00:00,13773.0
-2011-06-28 13:00:00,14140.0
-2011-06-28 14:00:00,14449.0
-2011-06-28 15:00:00,14807.0
-2011-06-28 16:00:00,15105.0
-2011-06-28 17:00:00,15349.0
-2011-06-28 18:00:00,15523.0
-2011-06-28 19:00:00,15417.0
-2011-06-28 20:00:00,15044.0
-2011-06-28 21:00:00,14465.0
-2011-06-28 22:00:00,14042.0
-2011-06-28 23:00:00,13781.0
-2011-06-29 00:00:00,12681.0
-2011-06-27 01:00:00,10363.0
-2011-06-27 02:00:00,9730.0
-2011-06-27 03:00:00,9331.0
-2011-06-27 04:00:00,9072.0
-2011-06-27 05:00:00,9030.0
-2011-06-27 06:00:00,9279.0
-2011-06-27 07:00:00,9859.0
-2011-06-27 08:00:00,10884.0
-2011-06-27 09:00:00,11894.0
-2011-06-27 10:00:00,12551.0
-2011-06-27 11:00:00,13048.0
-2011-06-27 12:00:00,13724.0
-2011-06-27 13:00:00,14240.0
-2011-06-27 14:00:00,14620.0
-2011-06-27 15:00:00,15212.0
-2011-06-27 16:00:00,15548.0
-2011-06-27 17:00:00,15612.0
-2011-06-27 18:00:00,15802.0
-2011-06-27 19:00:00,15811.0
-2011-06-27 20:00:00,15546.0
-2011-06-27 21:00:00,15210.0
-2011-06-27 22:00:00,14918.0
-2011-06-27 23:00:00,14836.0
-2011-06-28 00:00:00,13793.0
-2011-06-26 01:00:00,9961.0
-2011-06-26 02:00:00,9297.0
-2011-06-26 03:00:00,8862.0
-2011-06-26 04:00:00,8443.0
-2011-06-26 05:00:00,8302.0
-2011-06-26 06:00:00,8222.0
-2011-06-26 07:00:00,8052.0
-2011-06-26 08:00:00,8114.0
-2011-06-26 09:00:00,8651.0
-2011-06-26 10:00:00,9390.0
-2011-06-26 11:00:00,10114.0
-2011-06-26 12:00:00,10768.0
-2011-06-26 13:00:00,11177.0
-2011-06-26 14:00:00,11513.0
-2011-06-26 15:00:00,11789.0
-2011-06-26 16:00:00,12047.0
-2011-06-26 17:00:00,12287.0
-2011-06-26 18:00:00,12454.0
-2011-06-26 19:00:00,12421.0
-2011-06-26 20:00:00,12240.0
-2011-06-26 21:00:00,11900.0
-2011-06-26 22:00:00,11883.0
-2011-06-26 23:00:00,11881.0
-2011-06-27 00:00:00,11281.0
-2011-06-25 01:00:00,10039.0
-2011-06-25 02:00:00,9349.0
-2011-06-25 03:00:00,8948.0
-2011-06-25 04:00:00,8641.0
-2011-06-25 05:00:00,8510.0
-2011-06-25 06:00:00,8469.0
-2011-06-25 07:00:00,8406.0
-2011-06-25 08:00:00,8714.0
-2011-06-25 09:00:00,9489.0
-2011-06-25 10:00:00,10247.0
-2011-06-25 11:00:00,10942.0
-2011-06-25 12:00:00,11463.0
-2011-06-25 13:00:00,11794.0
-2011-06-25 14:00:00,11997.0
-2011-06-25 15:00:00,12032.0
-2011-06-25 16:00:00,12002.0
-2011-06-25 17:00:00,11834.0
-2011-06-25 18:00:00,11753.0
-2011-06-25 19:00:00,11465.0
-2011-06-25 20:00:00,11232.0
-2011-06-25 21:00:00,11068.0
-2011-06-25 22:00:00,11242.0
-2011-06-25 23:00:00,11236.0
-2011-06-26 00:00:00,10654.0
-2011-06-24 01:00:00,10105.0
-2011-06-24 02:00:00,9470.0
-2011-06-24 03:00:00,9055.0
-2011-06-24 04:00:00,8782.0
-2011-06-24 05:00:00,8663.0
-2011-06-24 06:00:00,8781.0
-2011-06-24 07:00:00,9224.0
-2011-06-24 08:00:00,9973.0
-2011-06-24 09:00:00,10777.0
-2011-06-24 10:00:00,11336.0
-2011-06-24 11:00:00,11716.0
-2011-06-24 12:00:00,11999.0
-2011-06-24 13:00:00,12069.0
-2011-06-24 14:00:00,12088.0
-2011-06-24 15:00:00,12117.0
-2011-06-24 16:00:00,11996.0
-2011-06-24 17:00:00,11811.0
-2011-06-24 18:00:00,11687.0
-2011-06-24 19:00:00,11483.0
-2011-06-24 20:00:00,11213.0
-2011-06-24 21:00:00,11212.0
-2011-06-24 22:00:00,11474.0
-2011-06-24 23:00:00,11336.0
-2011-06-25 00:00:00,10729.0
-2011-06-23 01:00:00,10455.0
-2011-06-23 02:00:00,9775.0
-2011-06-23 03:00:00,9297.0
-2011-06-23 04:00:00,9019.0
-2011-06-23 05:00:00,8896.0
-2011-06-23 06:00:00,9076.0
-2011-06-23 07:00:00,9602.0
-2011-06-23 08:00:00,10475.0
-2011-06-23 09:00:00,11416.0
-2011-06-23 10:00:00,12022.0
-2011-06-23 11:00:00,12374.0
-2011-06-23 12:00:00,12698.0
-2011-06-23 13:00:00,12938.0
-2011-06-23 14:00:00,13052.0
-2011-06-23 15:00:00,13078.0
-2011-06-23 16:00:00,12964.0
-2011-06-23 17:00:00,12790.0
-2011-06-23 18:00:00,12560.0
-2011-06-23 19:00:00,12287.0
-2011-06-23 20:00:00,11900.0
-2011-06-23 21:00:00,11773.0
-2011-06-23 22:00:00,11979.0
-2011-06-23 23:00:00,11798.0
-2011-06-24 00:00:00,10990.0
-2011-06-22 01:00:00,11919.0
-2011-06-22 02:00:00,11031.0
-2011-06-22 03:00:00,10446.0
-2011-06-22 04:00:00,10013.0
-2011-06-22 05:00:00,9797.0
-2011-06-22 06:00:00,9909.0
-2011-06-22 07:00:00,10317.0
-2011-06-22 08:00:00,11186.0
-2011-06-22 09:00:00,12148.0
-2011-06-22 10:00:00,12905.0
-2011-06-22 11:00:00,13361.0
-2011-06-22 12:00:00,13535.0
-2011-06-22 13:00:00,13595.0
-2011-06-22 14:00:00,13570.0
-2011-06-22 15:00:00,13668.0
-2011-06-22 16:00:00,13501.0
-2011-06-22 17:00:00,13241.0
-2011-06-22 18:00:00,13018.0
-2011-06-22 19:00:00,12694.0
-2011-06-22 20:00:00,12290.0
-2011-06-22 21:00:00,12130.0
-2011-06-22 22:00:00,12226.0
-2011-06-22 23:00:00,12103.0
-2011-06-23 00:00:00,11335.0
-2011-06-21 01:00:00,12172.0
-2011-06-21 02:00:00,11331.0
-2011-06-21 03:00:00,10774.0
-2011-06-21 04:00:00,10405.0
-2011-06-21 05:00:00,10277.0
-2011-06-21 06:00:00,10450.0
-2011-06-21 07:00:00,11010.0
-2011-06-21 08:00:00,12141.0
-2011-06-21 09:00:00,13635.0
-2011-06-21 10:00:00,14965.0
-2011-06-21 11:00:00,16119.0
-2011-06-21 12:00:00,17222.0
-2011-06-21 13:00:00,18048.0
-2011-06-21 14:00:00,18653.0
-2011-06-21 15:00:00,19140.0
-2011-06-21 16:00:00,19123.0
-2011-06-21 17:00:00,19225.0
-2011-06-21 18:00:00,19183.0
-2011-06-21 19:00:00,18971.0
-2011-06-21 20:00:00,18208.0
-2011-06-21 21:00:00,17719.0
-2011-06-21 22:00:00,16713.0
-2011-06-21 23:00:00,14233.0
-2011-06-22 00:00:00,13065.0
-2011-06-20 01:00:00,11629.0
-2011-06-20 02:00:00,10873.0
-2011-06-20 03:00:00,10259.0
-2011-06-20 04:00:00,9925.0
-2011-06-20 05:00:00,9732.0
-2011-06-20 06:00:00,9930.0
-2011-06-20 07:00:00,10538.0
-2011-06-20 08:00:00,11747.0
-2011-06-20 09:00:00,12620.0
-2011-06-20 10:00:00,13032.0
-2011-06-20 11:00:00,13438.0
-2011-06-20 12:00:00,13829.0
-2011-06-20 13:00:00,14013.0
-2011-06-20 14:00:00,14142.0
-2011-06-20 15:00:00,14556.0
-2011-06-20 16:00:00,14990.0
-2011-06-20 17:00:00,15331.0
-2011-06-20 18:00:00,15493.0
-2011-06-20 19:00:00,15327.0
-2011-06-20 20:00:00,14878.0
-2011-06-20 21:00:00,14487.0
-2011-06-20 22:00:00,14492.0
-2011-06-20 23:00:00,14311.0
-2011-06-21 00:00:00,13290.0
-2011-06-19 01:00:00,11001.0
-2011-06-19 02:00:00,10179.0
-2011-06-19 03:00:00,9598.0
-2011-06-19 04:00:00,9085.0
-2011-06-19 05:00:00,8881.0
-2011-06-19 06:00:00,8737.0
-2011-06-19 07:00:00,8516.0
-2011-06-19 08:00:00,8629.0
-2011-06-19 09:00:00,9155.0
-2011-06-19 10:00:00,9963.0
-2011-06-19 11:00:00,10719.0
-2011-06-19 12:00:00,11527.0
-2011-06-19 13:00:00,12359.0
-2011-06-19 14:00:00,12896.0
-2011-06-19 15:00:00,13247.0
-2011-06-19 16:00:00,13525.0
-2011-06-19 17:00:00,13674.0
-2011-06-19 18:00:00,13692.0
-2011-06-19 19:00:00,13714.0
-2011-06-19 20:00:00,13555.0
-2011-06-19 21:00:00,13308.0
-2011-06-19 22:00:00,13310.0
-2011-06-19 23:00:00,13417.0
-2011-06-20 00:00:00,12729.0
-2011-06-18 01:00:00,11166.0
-2011-06-18 02:00:00,10311.0
-2011-06-18 03:00:00,9736.0
-2011-06-18 04:00:00,9315.0
-2011-06-18 05:00:00,9076.0
-2011-06-18 06:00:00,8947.0
-2011-06-18 07:00:00,8895.0
-2011-06-18 08:00:00,9093.0
-2011-06-18 09:00:00,9835.0
-2011-06-18 10:00:00,10751.0
-2011-06-18 11:00:00,11774.0
-2011-06-18 12:00:00,12742.0
-2011-06-18 13:00:00,13389.0
-2011-06-18 14:00:00,13782.0
-2011-06-18 15:00:00,13999.0
-2011-06-18 16:00:00,14297.0
-2011-06-18 17:00:00,14473.0
-2011-06-18 18:00:00,14444.0
-2011-06-18 19:00:00,13907.0
-2011-06-18 20:00:00,13321.0
-2011-06-18 21:00:00,12847.0
-2011-06-18 22:00:00,12745.0
-2011-06-18 23:00:00,12583.0
-2011-06-19 00:00:00,11854.0
-2011-06-17 01:00:00,11021.0
-2011-06-17 02:00:00,10158.0
-2011-06-17 03:00:00,9623.0
-2011-06-17 04:00:00,9278.0
-2011-06-17 05:00:00,9115.0
-2011-06-17 06:00:00,9195.0
-2011-06-17 07:00:00,9499.0
-2011-06-17 08:00:00,10491.0
-2011-06-17 09:00:00,11673.0
-2011-06-17 10:00:00,12673.0
-2011-06-17 11:00:00,13493.0
-2011-06-17 12:00:00,14262.0
-2011-06-17 13:00:00,14821.0
-2011-06-17 14:00:00,15232.0
-2011-06-17 15:00:00,15629.0
-2011-06-17 16:00:00,15824.0
-2011-06-17 17:00:00,15868.0
-2011-06-17 18:00:00,15733.0
-2011-06-17 19:00:00,15293.0
-2011-06-17 20:00:00,14443.0
-2011-06-17 21:00:00,13675.0
-2011-06-17 22:00:00,13456.0
-2011-06-17 23:00:00,13146.0
-2011-06-18 00:00:00,12169.0
-2011-06-16 01:00:00,10240.0
-2011-06-16 02:00:00,9560.0
-2011-06-16 03:00:00,9119.0
-2011-06-16 04:00:00,8834.0
-2011-06-16 05:00:00,8724.0
-2011-06-16 06:00:00,8865.0
-2011-06-16 07:00:00,9327.0
-2011-06-16 08:00:00,10223.0
-2011-06-16 09:00:00,11069.0
-2011-06-16 10:00:00,11761.0
-2011-06-16 11:00:00,12366.0
-2011-06-16 12:00:00,12854.0
-2011-06-16 13:00:00,13107.0
-2011-06-16 14:00:00,13341.0
-2011-06-16 15:00:00,13679.0
-2011-06-16 16:00:00,13845.0
-2011-06-16 17:00:00,13975.0
-2011-06-16 18:00:00,14037.0
-2011-06-16 19:00:00,13925.0
-2011-06-16 20:00:00,13575.0
-2011-06-16 21:00:00,13254.0
-2011-06-16 22:00:00,13137.0
-2011-06-16 23:00:00,13014.0
-2011-06-17 00:00:00,12090.0
-2011-06-15 01:00:00,10171.0
-2011-06-15 02:00:00,9527.0
-2011-06-15 03:00:00,9096.0
-2011-06-15 04:00:00,8775.0
-2011-06-15 05:00:00,8669.0
-2011-06-15 06:00:00,8797.0
-2011-06-15 07:00:00,9329.0
-2011-06-15 08:00:00,10161.0
-2011-06-15 09:00:00,10826.0
-2011-06-15 10:00:00,11334.0
-2011-06-15 11:00:00,11800.0
-2011-06-15 12:00:00,12244.0
-2011-06-15 13:00:00,12527.0
-2011-06-15 14:00:00,12619.0
-2011-06-15 15:00:00,12687.0
-2011-06-15 16:00:00,12573.0
-2011-06-15 17:00:00,12438.0
-2011-06-15 18:00:00,12337.0
-2011-06-15 19:00:00,12243.0
-2011-06-15 20:00:00,11974.0
-2011-06-15 21:00:00,11903.0
-2011-06-15 22:00:00,12078.0
-2011-06-15 23:00:00,11932.0
-2011-06-16 00:00:00,11139.0
-2011-06-14 01:00:00,9683.0
-2011-06-14 02:00:00,9045.0
-2011-06-14 03:00:00,8638.0
-2011-06-14 04:00:00,8380.0
-2011-06-14 05:00:00,8289.0
-2011-06-14 06:00:00,8442.0
-2011-06-14 07:00:00,8775.0
-2011-06-14 08:00:00,9655.0
-2011-06-14 09:00:00,10576.0
-2011-06-14 10:00:00,11266.0
-2011-06-14 11:00:00,11662.0
-2011-06-14 12:00:00,12096.0
-2011-06-14 13:00:00,12397.0
-2011-06-14 14:00:00,12595.0
-2011-06-14 15:00:00,12863.0
-2011-06-14 16:00:00,12995.0
-2011-06-14 17:00:00,12981.0
-2011-06-14 18:00:00,12808.0
-2011-06-14 19:00:00,12517.0
-2011-06-14 20:00:00,12068.0
-2011-06-14 21:00:00,11791.0
-2011-06-14 22:00:00,12010.0
-2011-06-14 23:00:00,11891.0
-2011-06-15 00:00:00,11082.0
-2011-06-13 01:00:00,8795.0
-2011-06-13 02:00:00,8357.0
-2011-06-13 03:00:00,8065.0
-2011-06-13 04:00:00,7922.0
-2011-06-13 05:00:00,7892.0
-2011-06-13 06:00:00,8169.0
-2011-06-13 07:00:00,8641.0
-2011-06-13 08:00:00,9452.0
-2011-06-13 09:00:00,10451.0
-2011-06-13 10:00:00,11110.0
-2011-06-13 11:00:00,11630.0
-2011-06-13 12:00:00,12001.0
-2011-06-13 13:00:00,12157.0
-2011-06-13 14:00:00,12275.0
-2011-06-13 15:00:00,12439.0
-2011-06-13 16:00:00,12449.0
-2011-06-13 17:00:00,12425.0
-2011-06-13 18:00:00,12342.0
-2011-06-13 19:00:00,12118.0
-2011-06-13 20:00:00,11644.0
-2011-06-13 21:00:00,11334.0
-2011-06-13 22:00:00,11521.0
-2011-06-13 23:00:00,11425.0
-2011-06-14 00:00:00,10596.0
-2011-06-12 01:00:00,9038.0
-2011-06-12 02:00:00,8501.0
-2011-06-12 03:00:00,8193.0
-2011-06-12 04:00:00,7909.0
-2011-06-12 05:00:00,7774.0
-2011-06-12 06:00:00,7757.0
-2011-06-12 07:00:00,7583.0
-2011-06-12 08:00:00,7584.0
-2011-06-12 09:00:00,7857.0
-2011-06-12 10:00:00,8368.0
-2011-06-12 11:00:00,8811.0
-2011-06-12 12:00:00,9139.0
-2011-06-12 13:00:00,9256.0
-2011-06-12 14:00:00,9327.0
-2011-06-12 15:00:00,9316.0
-2011-06-12 16:00:00,9336.0
-2011-06-12 17:00:00,9325.0
-2011-06-12 18:00:00,9381.0
-2011-06-12 19:00:00,9440.0
-2011-06-12 20:00:00,9394.0
-2011-06-12 21:00:00,9416.0
-2011-06-12 22:00:00,9812.0
-2011-06-12 23:00:00,9868.0
-2011-06-13 00:00:00,9412.0
-2011-06-11 01:00:00,9726.0
-2011-06-11 02:00:00,9065.0
-2011-06-11 03:00:00,8639.0
-2011-06-11 04:00:00,8388.0
-2011-06-11 05:00:00,8243.0
-2011-06-11 06:00:00,8301.0
-2011-06-11 07:00:00,8346.0
-2011-06-11 08:00:00,8591.0
-2011-06-11 09:00:00,9044.0
-2011-06-11 10:00:00,9656.0
-2011-06-11 11:00:00,10043.0
-2011-06-11 12:00:00,10366.0
-2011-06-11 13:00:00,10324.0
-2011-06-11 14:00:00,10265.0
-2011-06-11 15:00:00,10163.0
-2011-06-11 16:00:00,10055.0
-2011-06-11 17:00:00,9996.0
-2011-06-11 18:00:00,9918.0
-2011-06-11 19:00:00,9813.0
-2011-06-11 20:00:00,9761.0
-2011-06-11 21:00:00,9779.0
-2011-06-11 22:00:00,10082.0
-2011-06-11 23:00:00,10079.0
-2011-06-12 00:00:00,9587.0
-2011-06-10 01:00:00,9533.0
-2011-06-10 02:00:00,8943.0
-2011-06-10 03:00:00,8572.0
-2011-06-10 04:00:00,8341.0
-2011-06-10 05:00:00,8215.0
-2011-06-10 06:00:00,8435.0
-2011-06-10 07:00:00,8857.0
-2011-06-10 08:00:00,9580.0
-2011-06-10 09:00:00,10466.0
-2011-06-10 10:00:00,11004.0
-2011-06-10 11:00:00,11408.0
-2011-06-10 12:00:00,11783.0
-2011-06-10 13:00:00,12033.0
-2011-06-10 14:00:00,12108.0
-2011-06-10 15:00:00,12210.0
-2011-06-10 16:00:00,12191.0
-2011-06-10 17:00:00,12112.0
-2011-06-10 18:00:00,11980.0
-2011-06-10 19:00:00,11686.0
-2011-06-10 20:00:00,11331.0
-2011-06-10 21:00:00,11196.0
-2011-06-10 22:00:00,11350.0
-2011-06-10 23:00:00,11270.0
-2011-06-11 00:00:00,10556.0
-2011-06-09 01:00:00,14194.0
-2011-06-09 02:00:00,12627.0
-2011-06-09 03:00:00,11723.0
-2011-06-09 04:00:00,11120.0
-2011-06-09 05:00:00,10661.0
-2011-06-09 06:00:00,10639.0
-2011-06-09 07:00:00,11131.0
-2011-06-09 08:00:00,12069.0
-2011-06-09 09:00:00,12958.0
-2011-06-09 10:00:00,13359.0
-2011-06-09 11:00:00,13269.0
-2011-06-09 12:00:00,13153.0
-2011-06-09 13:00:00,12956.0
-2011-06-09 14:00:00,12715.0
-2011-06-09 15:00:00,12535.0
-2011-06-09 16:00:00,12223.0
-2011-06-09 17:00:00,11909.0
-2011-06-09 18:00:00,11659.0
-2011-06-09 19:00:00,11388.0
-2011-06-09 20:00:00,11091.0
-2011-06-09 21:00:00,10966.0
-2011-06-09 22:00:00,11208.0
-2011-06-09 23:00:00,11075.0
-2011-06-10 00:00:00,10380.0
-2011-06-08 01:00:00,15690.0
-2011-06-08 02:00:00,14493.0
-2011-06-08 03:00:00,13656.0
-2011-06-08 04:00:00,13069.0
-2011-06-08 05:00:00,12727.0
-2011-06-08 06:00:00,12737.0
-2011-06-08 07:00:00,13101.0
-2011-06-08 08:00:00,14162.0
-2011-06-08 09:00:00,15637.0
-2011-06-08 10:00:00,16915.0
-2011-06-08 11:00:00,18064.0
-2011-06-08 12:00:00,19190.0
-2011-06-08 13:00:00,19908.0
-2011-06-08 14:00:00,20328.0
-2011-06-08 15:00:00,20707.0
-2011-06-08 16:00:00,21036.0
-2011-06-08 17:00:00,21236.0
-2011-06-08 18:00:00,21174.0
-2011-06-08 19:00:00,20819.0
-2011-06-08 20:00:00,20033.0
-2011-06-08 21:00:00,19268.0
-2011-06-08 22:00:00,19079.0
-2011-06-08 23:00:00,18361.0
-2011-06-09 00:00:00,16400.0
-2011-06-07 01:00:00,14996.0
-2011-06-07 02:00:00,13851.0
-2011-06-07 03:00:00,13007.0
-2011-06-07 04:00:00,12388.0
-2011-06-07 05:00:00,12046.0
-2011-06-07 06:00:00,12040.0
-2011-06-07 07:00:00,12426.0
-2011-06-07 08:00:00,13607.0
-2011-06-07 09:00:00,15152.0
-2011-06-07 10:00:00,16511.0
-2011-06-07 11:00:00,17573.0
-2011-06-07 12:00:00,18667.0
-2011-06-07 13:00:00,19608.0
-2011-06-07 14:00:00,20330.0
-2011-06-07 15:00:00,20722.0
-2011-06-07 16:00:00,21429.0
-2011-06-07 17:00:00,21423.0
-2011-06-07 18:00:00,21455.0
-2011-06-07 19:00:00,21218.0
-2011-06-07 20:00:00,20660.0
-2011-06-07 21:00:00,19600.0
-2011-06-07 22:00:00,19201.0
-2011-06-07 23:00:00,18713.0
-2011-06-08 00:00:00,17202.0
-2011-06-06 01:00:00,10123.0
-2011-06-06 02:00:00,9468.0
-2011-06-06 03:00:00,9023.0
-2011-06-06 04:00:00,8790.0
-2011-06-06 05:00:00,8718.0
-2011-06-06 06:00:00,8980.0
-2011-06-06 07:00:00,9424.0
-2011-06-06 08:00:00,10631.0
-2011-06-06 09:00:00,11907.0
-2011-06-06 10:00:00,12816.0
-2011-06-06 11:00:00,13441.0
-2011-06-06 12:00:00,14231.0
-2011-06-06 13:00:00,15057.0
-2011-06-06 14:00:00,16200.0
-2011-06-06 15:00:00,17245.0
-2011-06-06 16:00:00,18124.0
-2011-06-06 17:00:00,18810.0
-2011-06-06 18:00:00,19287.0
-2011-06-06 19:00:00,19375.0
-2011-06-06 20:00:00,19074.0
-2011-06-06 21:00:00,18573.0
-2011-06-06 22:00:00,18358.0
-2011-06-06 23:00:00,17972.0
-2011-06-07 00:00:00,16559.0
-2011-06-05 01:00:00,11140.0
-2011-06-05 02:00:00,10245.0
-2011-06-05 03:00:00,9663.0
-2011-06-05 04:00:00,9200.0
-2011-06-05 05:00:00,8943.0
-2011-06-05 06:00:00,8814.0
-2011-06-05 07:00:00,8531.0
-2011-06-05 08:00:00,8710.0
-2011-06-05 09:00:00,9213.0
-2011-06-05 10:00:00,9797.0
-2011-06-05 11:00:00,10318.0
-2011-06-05 12:00:00,10832.0
-2011-06-05 13:00:00,11516.0
-2011-06-05 14:00:00,12212.0
-2011-06-05 15:00:00,12681.0
-2011-06-05 16:00:00,13074.0
-2011-06-05 17:00:00,13423.0
-2011-06-05 18:00:00,13686.0
-2011-06-05 19:00:00,13663.0
-2011-06-05 20:00:00,13299.0
-2011-06-05 21:00:00,12704.0
-2011-06-05 22:00:00,12338.0
-2011-06-05 23:00:00,12028.0
-2011-06-06 00:00:00,11093.0
-2011-06-04 01:00:00,13157.0
-2011-06-04 02:00:00,12136.0
-2011-06-04 03:00:00,11352.0
-2011-06-04 04:00:00,10815.0
-2011-06-04 05:00:00,10475.0
-2011-06-04 06:00:00,10372.0
-2011-06-04 07:00:00,10347.0
-2011-06-04 08:00:00,10839.0
-2011-06-04 09:00:00,11989.0
-2011-06-04 10:00:00,13430.0
-2011-06-04 11:00:00,14804.0
-2011-06-04 12:00:00,15873.0
-2011-06-04 13:00:00,16624.0
-2011-06-04 14:00:00,17062.0
-2011-06-04 15:00:00,17272.0
-2011-06-04 16:00:00,17154.0
-2011-06-04 17:00:00,16392.0
-2011-06-04 18:00:00,15302.0
-2011-06-04 19:00:00,14651.0
-2011-06-04 20:00:00,14253.0
-2011-06-04 21:00:00,13560.0
-2011-06-04 22:00:00,13207.0
-2011-06-04 23:00:00,12968.0
-2011-06-05 00:00:00,12066.0
-2011-06-03 01:00:00,9798.0
-2011-06-03 02:00:00,9125.0
-2011-06-03 03:00:00,8764.0
-2011-06-03 04:00:00,8524.0
-2011-06-03 05:00:00,8492.0
-2011-06-03 06:00:00,8697.0
-2011-06-03 07:00:00,9174.0
-2011-06-03 08:00:00,10195.0
-2011-06-03 09:00:00,11197.0
-2011-06-03 10:00:00,11968.0
-2011-06-03 11:00:00,12579.0
-2011-06-03 12:00:00,13217.0
-2011-06-03 13:00:00,13786.0
-2011-06-03 14:00:00,14361.0
-2011-06-03 15:00:00,15060.0
-2011-06-03 16:00:00,15631.0
-2011-06-03 17:00:00,16134.0
-2011-06-03 18:00:00,16446.0
-2011-06-03 19:00:00,16454.0
-2011-06-03 20:00:00,16104.0
-2011-06-03 21:00:00,15652.0
-2011-06-03 22:00:00,15523.0
-2011-06-03 23:00:00,15343.0
-2011-06-04 00:00:00,14316.0
-2011-06-02 01:00:00,11020.0
-2011-06-02 02:00:00,10146.0
-2011-06-02 03:00:00,9520.0
-2011-06-02 04:00:00,9147.0
-2011-06-02 05:00:00,8883.0
-2011-06-02 06:00:00,8919.0
-2011-06-02 07:00:00,9132.0
-2011-06-02 08:00:00,10003.0
-2011-06-02 09:00:00,10945.0
-2011-06-02 10:00:00,11465.0
-2011-06-02 11:00:00,11790.0
-2011-06-02 12:00:00,12062.0
-2011-06-02 13:00:00,12270.0
-2011-06-02 14:00:00,12426.0
-2011-06-02 15:00:00,12596.0
-2011-06-02 16:00:00,12611.0
-2011-06-02 17:00:00,12599.0
-2011-06-02 18:00:00,12500.0
-2011-06-02 19:00:00,12152.0
-2011-06-02 20:00:00,11673.0
-2011-06-02 21:00:00,11489.0
-2011-06-02 22:00:00,11768.0
-2011-06-02 23:00:00,11565.0
-2011-06-03 00:00:00,10727.0
-2011-06-01 01:00:00,11714.0
-2011-06-01 02:00:00,10886.0
-2011-06-01 03:00:00,10325.0
-2011-06-01 04:00:00,9773.0
-2011-06-01 05:00:00,9330.0
-2011-06-01 06:00:00,9347.0
-2011-06-01 07:00:00,9644.0
-2011-06-01 08:00:00,10627.0
-2011-06-01 09:00:00,11710.0
-2011-06-01 10:00:00,12365.0
-2011-06-01 11:00:00,12871.0
-2011-06-01 12:00:00,13300.0
-2011-06-01 13:00:00,13592.0
-2011-06-01 14:00:00,13820.0
-2011-06-01 15:00:00,14106.0
-2011-06-01 16:00:00,14288.0
-2011-06-01 17:00:00,14521.0
-2011-06-01 18:00:00,14690.0
-2011-06-01 19:00:00,14628.0
-2011-06-01 20:00:00,14250.0
-2011-06-01 21:00:00,13742.0
-2011-06-01 22:00:00,13612.0
-2011-06-01 23:00:00,13347.0
-2011-06-02 00:00:00,12225.0
-2011-05-31 01:00:00,11692.0
-2011-05-31 02:00:00,10897.0
-2011-05-31 03:00:00,10328.0
-2011-05-31 04:00:00,9972.0
-2011-05-31 05:00:00,9796.0
-2011-05-31 06:00:00,9950.0
-2011-05-31 07:00:00,10407.0
-2011-05-31 08:00:00,11664.0
-2011-05-31 09:00:00,13261.0
-2011-05-31 10:00:00,14448.0
-2011-05-31 11:00:00,15194.0
-2011-05-31 12:00:00,15868.0
-2011-05-31 13:00:00,16224.0
-2011-05-31 14:00:00,16593.0
-2011-05-31 15:00:00,16753.0
-2011-05-31 16:00:00,16740.0
-2011-05-31 17:00:00,16324.0
-2011-05-31 18:00:00,16076.0
-2011-05-31 19:00:00,15862.0
-2011-05-31 20:00:00,15614.0
-2011-05-31 21:00:00,15162.0
-2011-05-31 22:00:00,14843.0
-2011-05-31 23:00:00,14397.0
-2011-06-01 00:00:00,13058.0
-2011-05-30 01:00:00,8938.0
-2011-05-30 02:00:00,8419.0
-2011-05-30 03:00:00,8072.0
-2011-05-30 04:00:00,7862.0
-2011-05-30 05:00:00,7758.0
-2011-05-30 06:00:00,7817.0
-2011-05-30 07:00:00,7786.0
-2011-05-30 08:00:00,7970.0
-2011-05-30 09:00:00,8462.0
-2011-05-30 10:00:00,9207.0
-2011-05-30 11:00:00,9992.0
-2011-05-30 12:00:00,10772.0
-2011-05-30 13:00:00,11465.0
-2011-05-30 14:00:00,11989.0
-2011-05-30 15:00:00,12471.0
-2011-05-30 16:00:00,12918.0
-2011-05-30 17:00:00,13315.0
-2011-05-30 18:00:00,13649.0
-2011-05-30 19:00:00,13835.0
-2011-05-30 20:00:00,13740.0
-2011-05-30 21:00:00,13493.0
-2011-05-30 22:00:00,13684.0
-2011-05-30 23:00:00,13608.0
-2011-05-31 00:00:00,12730.0
-2011-05-29 01:00:00,8730.0
-2011-05-29 02:00:00,8232.0
-2011-05-29 03:00:00,7912.0
-2011-05-29 04:00:00,7687.0
-2011-05-29 05:00:00,7544.0
-2011-05-29 06:00:00,7611.0
-2011-05-29 07:00:00,7504.0
-2011-05-29 08:00:00,7533.0
-2011-05-29 09:00:00,7859.0
-2011-05-29 10:00:00,8319.0
-2011-05-29 11:00:00,8734.0
-2011-05-29 12:00:00,9068.0
-2011-05-29 13:00:00,9593.0
-2011-05-29 14:00:00,9809.0
-2011-05-29 15:00:00,9931.0
-2011-05-29 16:00:00,9745.0
-2011-05-29 17:00:00,9491.0
-2011-05-29 18:00:00,9366.0
-2011-05-29 19:00:00,9329.0
-2011-05-29 20:00:00,9293.0
-2011-05-29 21:00:00,9362.0
-2011-05-29 22:00:00,9758.0
-2011-05-29 23:00:00,9897.0
-2011-05-30 00:00:00,9493.0
-2011-05-28 01:00:00,9099.0
-2011-05-28 02:00:00,8549.0
-2011-05-28 03:00:00,8180.0
-2011-05-28 04:00:00,7969.0
-2011-05-28 05:00:00,7849.0
-2011-05-28 06:00:00,7881.0
-2011-05-28 07:00:00,7899.0
-2011-05-28 08:00:00,8047.0
-2011-05-28 09:00:00,8496.0
-2011-05-28 10:00:00,9024.0
-2011-05-28 11:00:00,9398.0
-2011-05-28 12:00:00,9645.0
-2011-05-28 13:00:00,9671.0
-2011-05-28 14:00:00,9694.0
-2011-05-28 15:00:00,9579.0
-2011-05-28 16:00:00,9585.0
-2011-05-28 17:00:00,9542.0
-2011-05-28 18:00:00,9599.0
-2011-05-28 19:00:00,9615.0
-2011-05-28 20:00:00,9509.0
-2011-05-28 21:00:00,9565.0
-2011-05-28 22:00:00,9882.0
-2011-05-28 23:00:00,9756.0
-2011-05-29 00:00:00,9273.0
-2011-05-27 01:00:00,9690.0
-2011-05-27 02:00:00,9109.0
-2011-05-27 03:00:00,8801.0
-2011-05-27 04:00:00,8573.0
-2011-05-27 05:00:00,8519.0
-2011-05-27 06:00:00,8707.0
-2011-05-27 07:00:00,9129.0
-2011-05-27 08:00:00,9919.0
-2011-05-27 09:00:00,10688.0
-2011-05-27 10:00:00,11039.0
-2011-05-27 11:00:00,11126.0
-2011-05-27 12:00:00,11242.0
-2011-05-27 13:00:00,11228.0
-2011-05-27 14:00:00,11225.0
-2011-05-27 15:00:00,11224.0
-2011-05-27 16:00:00,11078.0
-2011-05-27 17:00:00,10891.0
-2011-05-27 18:00:00,10695.0
-2011-05-27 19:00:00,10562.0
-2011-05-27 20:00:00,10341.0
-2011-05-27 21:00:00,10410.0
-2011-05-27 22:00:00,10681.0
-2011-05-27 23:00:00,10504.0
-2011-05-28 00:00:00,9857.0
-2011-05-26 01:00:00,9527.0
-2011-05-26 02:00:00,8961.0
-2011-05-26 03:00:00,8626.0
-2011-05-26 04:00:00,8454.0
-2011-05-26 05:00:00,8426.0
-2011-05-26 06:00:00,8619.0
-2011-05-26 07:00:00,9194.0
-2011-05-26 08:00:00,10115.0
-2011-05-26 09:00:00,10958.0
-2011-05-26 10:00:00,11405.0
-2011-05-26 11:00:00,11597.0
-2011-05-26 12:00:00,11778.0
-2011-05-26 13:00:00,11778.0
-2011-05-26 14:00:00,11737.0
-2011-05-26 15:00:00,11710.0
-2011-05-26 16:00:00,11534.0
-2011-05-26 17:00:00,11410.0
-2011-05-26 18:00:00,11352.0
-2011-05-26 19:00:00,11228.0
-2011-05-26 20:00:00,11064.0
-2011-05-26 21:00:00,11126.0
-2011-05-26 22:00:00,11381.0
-2011-05-26 23:00:00,11276.0
-2011-05-27 00:00:00,10490.0
-2011-05-25 01:00:00,9318.0
-2011-05-25 02:00:00,8752.0
-2011-05-25 03:00:00,8408.0
-2011-05-25 04:00:00,8201.0
-2011-05-25 05:00:00,8152.0
-2011-05-25 06:00:00,8321.0
-2011-05-25 07:00:00,8822.0
-2011-05-25 08:00:00,9794.0
-2011-05-25 09:00:00,10998.0
-2011-05-25 10:00:00,11648.0
-2011-05-25 11:00:00,11931.0
-2011-05-25 12:00:00,12003.0
-2011-05-25 13:00:00,11980.0
-2011-05-25 14:00:00,11997.0
-2011-05-25 15:00:00,12128.0
-2011-05-25 16:00:00,12089.0
-2011-05-25 17:00:00,12041.0
-2011-05-25 18:00:00,11946.0
-2011-05-25 19:00:00,11678.0
-2011-05-25 20:00:00,11288.0
-2011-05-25 21:00:00,11277.0
-2011-05-25 22:00:00,11541.0
-2011-05-25 23:00:00,11182.0
-2011-05-26 00:00:00,10371.0
-2011-05-24 01:00:00,10556.0
-2011-05-24 02:00:00,9790.0
-2011-05-24 03:00:00,9285.0
-2011-05-24 04:00:00,8923.0
-2011-05-24 05:00:00,8774.0
-2011-05-24 06:00:00,8860.0
-2011-05-24 07:00:00,9183.0
-2011-05-24 08:00:00,10068.0
-2011-05-24 09:00:00,11063.0
-2011-05-24 10:00:00,11564.0
-2011-05-24 11:00:00,11867.0
-2011-05-24 12:00:00,12079.0
-2011-05-24 13:00:00,12167.0
-2011-05-24 14:00:00,12143.0
-2011-05-24 15:00:00,12144.0
-2011-05-24 16:00:00,11995.0
-2011-05-24 17:00:00,11849.0
-2011-05-24 18:00:00,11666.0
-2011-05-24 19:00:00,11365.0
-2011-05-24 20:00:00,10955.0
-2011-05-24 21:00:00,10813.0
-2011-05-24 22:00:00,11184.0
-2011-05-24 23:00:00,10927.0
-2011-05-25 00:00:00,10143.0
-2011-05-23 01:00:00,9658.0
-2011-05-23 02:00:00,9067.0
-2011-05-23 03:00:00,8690.0
-2011-05-23 04:00:00,8475.0
-2011-05-23 05:00:00,8521.0
-2011-05-23 06:00:00,8709.0
-2011-05-23 07:00:00,9264.0
-2011-05-23 08:00:00,10289.0
-2011-05-23 09:00:00,11487.0
-2011-05-23 10:00:00,12074.0
-2011-05-23 11:00:00,12460.0
-2011-05-23 12:00:00,12961.0
-2011-05-23 13:00:00,13328.0
-2011-05-23 14:00:00,13516.0
-2011-05-23 15:00:00,13735.0
-2011-05-23 16:00:00,13821.0
-2011-05-23 17:00:00,13836.0
-2011-05-23 18:00:00,13788.0
-2011-05-23 19:00:00,13505.0
-2011-05-23 20:00:00,12970.0
-2011-05-23 21:00:00,12631.0
-2011-05-23 22:00:00,12859.0
-2011-05-23 23:00:00,12626.0
-2011-05-24 00:00:00,11638.0
-2011-05-22 01:00:00,9532.0
-2011-05-22 02:00:00,8906.0
-2011-05-22 03:00:00,8511.0
-2011-05-22 04:00:00,8183.0
-2011-05-22 05:00:00,8065.0
-2011-05-22 06:00:00,7909.0
-2011-05-22 07:00:00,7816.0
-2011-05-22 08:00:00,7859.0
-2011-05-22 09:00:00,8318.0
-2011-05-22 10:00:00,8960.0
-2011-05-22 11:00:00,9548.0
-2011-05-22 12:00:00,10132.0
-2011-05-22 13:00:00,10698.0
-2011-05-22 14:00:00,11131.0
-2011-05-22 15:00:00,11571.0
-2011-05-22 16:00:00,11878.0
-2011-05-22 17:00:00,12039.0
-2011-05-22 18:00:00,11933.0
-2011-05-22 19:00:00,11557.0
-2011-05-22 20:00:00,11102.0
-2011-05-22 21:00:00,10900.0
-2011-05-22 22:00:00,11154.0
-2011-05-22 23:00:00,11016.0
-2011-05-23 00:00:00,10486.0
-2011-05-21 01:00:00,9565.0
-2011-05-21 02:00:00,8924.0
-2011-05-21 03:00:00,8531.0
-2011-05-21 04:00:00,8247.0
-2011-05-21 05:00:00,8085.0
-2011-05-21 06:00:00,8149.0
-2011-05-21 07:00:00,8158.0
-2011-05-21 08:00:00,8388.0
-2011-05-21 09:00:00,8943.0
-2011-05-21 10:00:00,9571.0
-2011-05-21 11:00:00,10043.0
-2011-05-21 12:00:00,10354.0
-2011-05-21 13:00:00,10446.0
-2011-05-21 14:00:00,10499.0
-2011-05-21 15:00:00,10373.0
-2011-05-21 16:00:00,10284.0
-2011-05-21 17:00:00,10252.0
-2011-05-21 18:00:00,10333.0
-2011-05-21 19:00:00,10342.0
-2011-05-21 20:00:00,10333.0
-2011-05-21 21:00:00,10302.0
-2011-05-21 22:00:00,10698.0
-2011-05-21 23:00:00,10630.0
-2011-05-22 00:00:00,10135.0
-2011-05-20 01:00:00,9516.0
-2011-05-20 02:00:00,8972.0
-2011-05-20 03:00:00,8575.0
-2011-05-20 04:00:00,8359.0
-2011-05-20 05:00:00,8307.0
-2011-05-20 06:00:00,8423.0
-2011-05-20 07:00:00,8854.0
-2011-05-20 08:00:00,9682.0
-2011-05-20 09:00:00,10676.0
-2011-05-20 10:00:00,11189.0
-2011-05-20 11:00:00,11609.0
-2011-05-20 12:00:00,11963.0
-2011-05-20 13:00:00,12064.0
-2011-05-20 14:00:00,12140.0
-2011-05-20 15:00:00,12302.0
-2011-05-20 16:00:00,12339.0
-2011-05-20 17:00:00,12289.0
-2011-05-20 18:00:00,12156.0
-2011-05-20 19:00:00,11880.0
-2011-05-20 20:00:00,11429.0
-2011-05-20 21:00:00,11177.0
-2011-05-20 22:00:00,11442.0
-2011-05-20 23:00:00,11232.0
-2011-05-21 00:00:00,10458.0
-2011-05-19 01:00:00,9371.0
-2011-05-19 02:00:00,8819.0
-2011-05-19 03:00:00,8484.0
-2011-05-19 04:00:00,8312.0
-2011-05-19 05:00:00,8252.0
-2011-05-19 06:00:00,8442.0
-2011-05-19 07:00:00,8980.0
-2011-05-19 08:00:00,9885.0
-2011-05-19 09:00:00,10693.0
-2011-05-19 10:00:00,11111.0
-2011-05-19 11:00:00,11381.0
-2011-05-19 12:00:00,11627.0
-2011-05-19 13:00:00,11735.0
-2011-05-19 14:00:00,11784.0
-2011-05-19 15:00:00,11883.0
-2011-05-19 16:00:00,11890.0
-2011-05-19 17:00:00,11828.0
-2011-05-19 18:00:00,11697.0
-2011-05-19 19:00:00,11495.0
-2011-05-19 20:00:00,11227.0
-2011-05-19 21:00:00,11135.0
-2011-05-19 22:00:00,11486.0
-2011-05-19 23:00:00,11267.0
-2011-05-20 00:00:00,10406.0
-2011-05-18 01:00:00,9336.0
-2011-05-18 02:00:00,8792.0
-2011-05-18 03:00:00,8466.0
-2011-05-18 04:00:00,8267.0
-2011-05-18 05:00:00,8230.0
-2011-05-18 06:00:00,8420.0
-2011-05-18 07:00:00,8968.0
-2011-05-18 08:00:00,9843.0
-2011-05-18 09:00:00,10687.0
-2011-05-18 10:00:00,11128.0
-2011-05-18 11:00:00,11333.0
-2011-05-18 12:00:00,11458.0
-2011-05-18 13:00:00,11500.0
-2011-05-18 14:00:00,11464.0
-2011-05-18 15:00:00,11490.0
-2011-05-18 16:00:00,11380.0
-2011-05-18 17:00:00,11268.0
-2011-05-18 18:00:00,11130.0
-2011-05-18 19:00:00,10978.0
-2011-05-18 20:00:00,10786.0
-2011-05-18 21:00:00,10862.0
-2011-05-18 22:00:00,11285.0
-2011-05-18 23:00:00,10994.0
-2011-05-19 00:00:00,10188.0
-2011-05-17 01:00:00,9438.0
-2011-05-17 02:00:00,8960.0
-2011-05-17 03:00:00,8667.0
-2011-05-17 04:00:00,8502.0
-2011-05-17 05:00:00,8486.0
-2011-05-17 06:00:00,8710.0
-2011-05-17 07:00:00,9238.0
-2011-05-17 08:00:00,10092.0
-2011-05-17 09:00:00,10858.0
-2011-05-17 10:00:00,11172.0
-2011-05-17 11:00:00,11297.0
-2011-05-17 12:00:00,11433.0
-2011-05-17 13:00:00,11405.0
-2011-05-17 14:00:00,11393.0
-2011-05-17 15:00:00,11406.0
-2011-05-17 16:00:00,11282.0
-2011-05-17 17:00:00,11144.0
-2011-05-17 18:00:00,11002.0
-2011-05-17 19:00:00,10806.0
-2011-05-17 20:00:00,10577.0
-2011-05-17 21:00:00,10552.0
-2011-05-17 22:00:00,11120.0
-2011-05-17 23:00:00,10965.0
-2011-05-18 00:00:00,10152.0
-2011-05-16 01:00:00,8957.0
-2011-05-16 02:00:00,8560.0
-2011-05-16 03:00:00,8354.0
-2011-05-16 04:00:00,8229.0
-2011-05-16 05:00:00,8269.0
-2011-05-16 06:00:00,8542.0
-2011-05-16 07:00:00,9170.0
-2011-05-16 08:00:00,10020.0
-2011-05-16 09:00:00,10843.0
-2011-05-16 10:00:00,11190.0
-2011-05-16 11:00:00,11330.0
-2011-05-16 12:00:00,11425.0
-2011-05-16 13:00:00,11406.0
-2011-05-16 14:00:00,11371.0
-2011-05-16 15:00:00,11350.0
-2011-05-16 16:00:00,11202.0
-2011-05-16 17:00:00,11058.0
-2011-05-16 18:00:00,10924.0
-2011-05-16 19:00:00,10775.0
-2011-05-16 20:00:00,10561.0
-2011-05-16 21:00:00,10620.0
-2011-05-16 22:00:00,11192.0
-2011-05-16 23:00:00,11040.0
-2011-05-17 00:00:00,10242.0
-2011-05-15 01:00:00,8871.0
-2011-05-15 02:00:00,8452.0
-2011-05-15 03:00:00,8141.0
-2011-05-15 04:00:00,7897.0
-2011-05-15 05:00:00,7852.0
-2011-05-15 06:00:00,7804.0
-2011-05-15 07:00:00,7912.0
-2011-05-15 08:00:00,7921.0
-2011-05-15 09:00:00,8248.0
-2011-05-15 10:00:00,8682.0
-2011-05-15 11:00:00,9048.0
-2011-05-15 12:00:00,9309.0
-2011-05-15 13:00:00,9396.0
-2011-05-15 14:00:00,9489.0
-2011-05-15 15:00:00,9432.0
-2011-05-15 16:00:00,9422.0
-2011-05-15 17:00:00,9389.0
-2011-05-15 18:00:00,9435.0
-2011-05-15 19:00:00,9532.0
-2011-05-15 20:00:00,9588.0
-2011-05-15 21:00:00,9765.0
-2011-05-15 22:00:00,10172.0
-2011-05-15 23:00:00,10008.0
-2011-05-16 00:00:00,9497.0
-2011-05-14 01:00:00,9326.0
-2011-05-14 02:00:00,8692.0
-2011-05-14 03:00:00,8353.0
-2011-05-14 04:00:00,8103.0
-2011-05-14 05:00:00,7992.0
-2011-05-14 06:00:00,8000.0
-2011-05-14 07:00:00,8175.0
-2011-05-14 08:00:00,8371.0
-2011-05-14 09:00:00,8856.0
-2011-05-14 10:00:00,9328.0
-2011-05-14 11:00:00,9744.0
-2011-05-14 12:00:00,9911.0
-2011-05-14 13:00:00,9930.0
-2011-05-14 14:00:00,9852.0
-2011-05-14 15:00:00,9735.0
-2011-05-14 16:00:00,9636.0
-2011-05-14 17:00:00,9606.0
-2011-05-14 18:00:00,9626.0
-2011-05-14 19:00:00,9723.0
-2011-05-14 20:00:00,9748.0
-2011-05-14 21:00:00,9921.0
-2011-05-14 22:00:00,10194.0
-2011-05-14 23:00:00,9962.0
-2011-05-15 00:00:00,9444.0
-2011-05-13 01:00:00,11525.0
-2011-05-13 02:00:00,10616.0
-2011-05-13 03:00:00,9999.0
-2011-05-13 04:00:00,9547.0
-2011-05-13 05:00:00,9394.0
-2011-05-13 06:00:00,9423.0
-2011-05-13 07:00:00,9865.0
-2011-05-13 08:00:00,10732.0
-2011-05-13 09:00:00,11944.0
-2011-05-13 10:00:00,12740.0
-2011-05-13 11:00:00,13357.0
-2011-05-13 12:00:00,13626.0
-2011-05-13 13:00:00,13433.0
-2011-05-13 14:00:00,13242.0
-2011-05-13 15:00:00,12878.0
-2011-05-13 16:00:00,12326.0
-2011-05-13 17:00:00,11911.0
-2011-05-13 18:00:00,11544.0
-2011-05-13 19:00:00,11257.0
-2011-05-13 20:00:00,10989.0
-2011-05-13 21:00:00,10929.0
-2011-05-13 22:00:00,11166.0
-2011-05-13 23:00:00,10839.0
-2011-05-14 00:00:00,10081.0
-2011-05-12 01:00:00,11143.0
-2011-05-12 02:00:00,10282.0
-2011-05-12 03:00:00,9688.0
-2011-05-12 04:00:00,9283.0
-2011-05-12 05:00:00,9089.0
-2011-05-12 06:00:00,9178.0
-2011-05-12 07:00:00,9699.0
-2011-05-12 08:00:00,10622.0
-2011-05-12 09:00:00,11650.0
-2011-05-12 10:00:00,12425.0
-2011-05-12 11:00:00,13079.0
-2011-05-12 12:00:00,13647.0
-2011-05-12 13:00:00,14098.0
-2011-05-12 14:00:00,14679.0
-2011-05-12 15:00:00,15278.0
-2011-05-12 16:00:00,15632.0
-2011-05-12 17:00:00,15951.0
-2011-05-12 18:00:00,16049.0
-2011-05-12 19:00:00,15883.0
-2011-05-12 20:00:00,15309.0
-2011-05-12 21:00:00,14855.0
-2011-05-12 22:00:00,14820.0
-2011-05-12 23:00:00,14145.0
-2011-05-13 00:00:00,12843.0
-2011-05-11 01:00:00,11618.0
-2011-05-11 02:00:00,10767.0
-2011-05-11 03:00:00,10175.0
-2011-05-11 04:00:00,9733.0
-2011-05-11 05:00:00,9486.0
-2011-05-11 06:00:00,9573.0
-2011-05-11 07:00:00,10061.0
-2011-05-11 08:00:00,11036.0
-2011-05-11 09:00:00,12254.0
-2011-05-11 10:00:00,13172.0
-2011-05-11 11:00:00,13921.0
-2011-05-11 12:00:00,14705.0
-2011-05-11 13:00:00,15356.0
-2011-05-11 14:00:00,15851.0
-2011-05-11 15:00:00,16127.0
-2011-05-11 16:00:00,16223.0
-2011-05-11 17:00:00,16169.0
-2011-05-11 18:00:00,15926.0
-2011-05-11 19:00:00,15539.0
-2011-05-11 20:00:00,14840.0
-2011-05-11 21:00:00,14377.0
-2011-05-11 22:00:00,14298.0
-2011-05-11 23:00:00,13619.0
-2011-05-12 00:00:00,12359.0
-2011-05-10 01:00:00,9288.0
-2011-05-10 02:00:00,8723.0
-2011-05-10 03:00:00,8373.0
-2011-05-10 04:00:00,8116.0
-2011-05-10 05:00:00,8065.0
-2011-05-10 06:00:00,8235.0
-2011-05-10 07:00:00,8801.0
-2011-05-10 08:00:00,9720.0
-2011-05-10 09:00:00,10680.0
-2011-05-10 10:00:00,11309.0
-2011-05-10 11:00:00,11796.0
-2011-05-10 12:00:00,12321.0
-2011-05-10 13:00:00,12711.0
-2011-05-10 14:00:00,13114.0
-2011-05-10 15:00:00,13524.0
-2011-05-10 16:00:00,13725.0
-2011-05-10 17:00:00,13954.0
-2011-05-10 18:00:00,14077.0
-2011-05-10 19:00:00,14072.0
-2011-05-10 20:00:00,13835.0
-2011-05-10 21:00:00,13732.0
-2011-05-10 22:00:00,14134.0
-2011-05-10 23:00:00,13773.0
-2011-05-11 00:00:00,12722.0
-2011-05-09 01:00:00,8378.0
-2011-05-09 02:00:00,8015.0
-2011-05-09 03:00:00,7787.0
-2011-05-09 04:00:00,7690.0
-2011-05-09 05:00:00,7696.0
-2011-05-09 06:00:00,7957.0
-2011-05-09 07:00:00,8537.0
-2011-05-09 08:00:00,9456.0
-2011-05-09 09:00:00,10391.0
-2011-05-09 10:00:00,10939.0
-2011-05-09 11:00:00,11123.0
-2011-05-09 12:00:00,11354.0
-2011-05-09 13:00:00,11459.0
-2011-05-09 14:00:00,11475.0
-2011-05-09 15:00:00,11531.0
-2011-05-09 16:00:00,11453.0
-2011-05-09 17:00:00,11371.0
-2011-05-09 18:00:00,11211.0
-2011-05-09 19:00:00,11049.0
-2011-05-09 20:00:00,10816.0
-2011-05-09 21:00:00,10944.0
-2011-05-09 22:00:00,11393.0
-2011-05-09 23:00:00,11026.0
-2011-05-10 00:00:00,10138.0
-2011-05-08 01:00:00,8749.0
-2011-05-08 02:00:00,8272.0
-2011-05-08 03:00:00,7982.0
-2011-05-08 04:00:00,7768.0
-2011-05-08 05:00:00,7626.0
-2011-05-08 06:00:00,7698.0
-2011-05-08 07:00:00,7719.0
-2011-05-08 08:00:00,7692.0
-2011-05-08 09:00:00,7932.0
-2011-05-08 10:00:00,8304.0
-2011-05-08 11:00:00,8582.0
-2011-05-08 12:00:00,8743.0
-2011-05-08 13:00:00,8801.0
-2011-05-08 14:00:00,8808.0
-2011-05-08 15:00:00,8759.0
-2011-05-08 16:00:00,8756.0
-2011-05-08 17:00:00,8679.0
-2011-05-08 18:00:00,8696.0
-2011-05-08 19:00:00,8694.0
-2011-05-08 20:00:00,8819.0
-2011-05-08 21:00:00,9034.0
-2011-05-08 22:00:00,9627.0
-2011-05-08 23:00:00,9510.0
-2011-05-09 00:00:00,8998.0
-2011-05-07 01:00:00,9209.0
-2011-05-07 02:00:00,8646.0
-2011-05-07 03:00:00,8206.0
-2011-05-07 04:00:00,8010.0
-2011-05-07 05:00:00,7931.0
-2011-05-07 06:00:00,7928.0
-2011-05-07 07:00:00,8116.0
-2011-05-07 08:00:00,8313.0
-2011-05-07 09:00:00,8754.0
-2011-05-07 10:00:00,9276.0
-2011-05-07 11:00:00,9584.0
-2011-05-07 12:00:00,9762.0
-2011-05-07 13:00:00,9710.0
-2011-05-07 14:00:00,9668.0
-2011-05-07 15:00:00,9508.0
-2011-05-07 16:00:00,9456.0
-2011-05-07 17:00:00,9370.0
-2011-05-07 18:00:00,9326.0
-2011-05-07 19:00:00,9277.0
-2011-05-07 20:00:00,9219.0
-2011-05-07 21:00:00,9312.0
-2011-05-07 22:00:00,9836.0
-2011-05-07 23:00:00,9741.0
-2011-05-08 00:00:00,9324.0
-2011-05-06 01:00:00,9424.0
-2011-05-06 02:00:00,8889.0
-2011-05-06 03:00:00,8551.0
-2011-05-06 04:00:00,8410.0
-2011-05-06 05:00:00,8369.0
-2011-05-06 06:00:00,8473.0
-2011-05-06 07:00:00,8997.0
-2011-05-06 08:00:00,9815.0
-2011-05-06 09:00:00,10559.0
-2011-05-06 10:00:00,10953.0
-2011-05-06 11:00:00,11115.0
-2011-05-06 12:00:00,11275.0
-2011-05-06 13:00:00,11298.0
-2011-05-06 14:00:00,11263.0
-2011-05-06 15:00:00,11267.0
-2011-05-06 16:00:00,11127.0
-2011-05-06 17:00:00,10935.0
-2011-05-06 18:00:00,10762.0
-2011-05-06 19:00:00,10525.0
-2011-05-06 20:00:00,10342.0
-2011-05-06 21:00:00,10429.0
-2011-05-06 22:00:00,10857.0
-2011-05-06 23:00:00,10628.0
-2011-05-07 00:00:00,9911.0
-2011-05-05 01:00:00,9403.0
-2011-05-05 02:00:00,8888.0
-2011-05-05 03:00:00,8565.0
-2011-05-05 04:00:00,8400.0
-2011-05-05 05:00:00,8406.0
-2011-05-05 06:00:00,8645.0
-2011-05-05 07:00:00,9233.0
-2011-05-05 08:00:00,10069.0
-2011-05-05 09:00:00,10835.0
-2011-05-05 10:00:00,11180.0
-2011-05-05 11:00:00,11317.0
-2011-05-05 12:00:00,11439.0
-2011-05-05 13:00:00,11325.0
-2011-05-05 14:00:00,11320.0
-2011-05-05 15:00:00,11330.0
-2011-05-05 16:00:00,11265.0
-2011-05-05 17:00:00,11235.0
-2011-05-05 18:00:00,11089.0
-2011-05-05 19:00:00,10934.0
-2011-05-05 20:00:00,10828.0
-2011-05-05 21:00:00,11079.0
-2011-05-05 22:00:00,11403.0
-2011-05-05 23:00:00,11010.0
-2011-05-06 00:00:00,10206.0
-2011-05-04 01:00:00,9652.0
-2011-05-04 02:00:00,9167.0
-2011-05-04 03:00:00,8871.0
-2011-05-04 04:00:00,8649.0
-2011-05-04 05:00:00,8603.0
-2011-05-04 06:00:00,8851.0
-2011-05-04 07:00:00,9505.0
-2011-05-04 08:00:00,10459.0
-2011-05-04 09:00:00,11158.0
-2011-05-04 10:00:00,11343.0
-2011-05-04 11:00:00,11383.0
-2011-05-04 12:00:00,11449.0
-2011-05-04 13:00:00,11381.0
-2011-05-04 14:00:00,11314.0
-2011-05-04 15:00:00,11316.0
-2011-05-04 16:00:00,11189.0
-2011-05-04 17:00:00,11071.0
-2011-05-04 18:00:00,10880.0
-2011-05-04 19:00:00,10727.0
-2011-05-04 20:00:00,10490.0
-2011-05-04 21:00:00,10608.0
-2011-05-04 22:00:00,11212.0
-2011-05-04 23:00:00,10938.0
-2011-05-05 00:00:00,10147.0
-2011-05-03 01:00:00,9334.0
-2011-05-03 02:00:00,8877.0
-2011-05-03 03:00:00,8594.0
-2011-05-03 04:00:00,8410.0
-2011-05-03 05:00:00,8395.0
-2011-05-03 06:00:00,8613.0
-2011-05-03 07:00:00,9259.0
-2011-05-03 08:00:00,10107.0
-2011-05-03 09:00:00,10785.0
-2011-05-03 10:00:00,11061.0
-2011-05-03 11:00:00,11173.0
-2011-05-03 12:00:00,11268.0
-2011-05-03 13:00:00,11286.0
-2011-05-03 14:00:00,11310.0
-2011-05-03 15:00:00,11397.0
-2011-05-03 16:00:00,11336.0
-2011-05-03 17:00:00,11282.0
-2011-05-03 18:00:00,11338.0
-2011-05-03 19:00:00,11412.0
-2011-05-03 20:00:00,11394.0
-2011-05-03 21:00:00,11532.0
-2011-05-03 22:00:00,11716.0
-2011-05-03 23:00:00,11274.0
-2011-05-04 00:00:00,10435.0
-2011-05-02 01:00:00,8621.0
-2011-05-02 02:00:00,8209.0
-2011-05-02 03:00:00,8001.0
-2011-05-02 04:00:00,7831.0
-2011-05-02 05:00:00,7848.0
-2011-05-02 06:00:00,8124.0
-2011-05-02 07:00:00,8790.0
-2011-05-02 08:00:00,9725.0
-2011-05-02 09:00:00,10484.0
-2011-05-02 10:00:00,10893.0
-2011-05-02 11:00:00,11045.0
-2011-05-02 12:00:00,11152.0
-2011-05-02 13:00:00,11164.0
-2011-05-02 14:00:00,11166.0
-2011-05-02 15:00:00,11201.0
-2011-05-02 16:00:00,11112.0
-2011-05-02 17:00:00,10954.0
-2011-05-02 18:00:00,10792.0
-2011-05-02 19:00:00,10661.0
-2011-05-02 20:00:00,10515.0
-2011-05-02 21:00:00,10718.0
-2011-05-02 22:00:00,11250.0
-2011-05-02 23:00:00,10859.0
-2011-05-03 00:00:00,10090.0
-2011-05-01 01:00:00,8829.0
-2011-05-01 02:00:00,8373.0
-2011-05-01 03:00:00,7993.0
-2011-05-01 04:00:00,7802.0
-2011-05-01 05:00:00,7637.0
-2011-05-01 06:00:00,7630.0
-2011-05-01 07:00:00,7698.0
-2011-05-01 08:00:00,7556.0
-2011-05-01 09:00:00,7854.0
-2011-05-01 10:00:00,8272.0
-2011-05-01 11:00:00,8597.0
-2011-05-01 12:00:00,8794.0
-2011-05-01 13:00:00,8892.0
-2011-05-01 14:00:00,8941.0
-2011-05-01 15:00:00,8904.0
-2011-05-01 16:00:00,8883.0
-2011-05-01 17:00:00,8835.0
-2011-05-01 18:00:00,8913.0
-2011-05-01 19:00:00,8973.0
-2011-05-01 20:00:00,9107.0
-2011-05-01 21:00:00,9420.0
-2011-05-01 22:00:00,9872.0
-2011-05-01 23:00:00,9643.0
-2011-05-02 00:00:00,9101.0
-2011-04-30 01:00:00,9360.0
-2011-04-30 02:00:00,8767.0
-2011-04-30 03:00:00,8434.0
-2011-04-30 04:00:00,8207.0
-2011-04-30 05:00:00,8137.0
-2011-04-30 06:00:00,8131.0
-2011-04-30 07:00:00,8418.0
-2011-04-30 08:00:00,8580.0
-2011-04-30 09:00:00,9028.0
-2011-04-30 10:00:00,9500.0
-2011-04-30 11:00:00,9704.0
-2011-04-30 12:00:00,9783.0
-2011-04-30 13:00:00,9796.0
-2011-04-30 14:00:00,9711.0
-2011-04-30 15:00:00,9592.0
-2011-04-30 16:00:00,9486.0
-2011-04-30 17:00:00,9466.0
-2011-04-30 18:00:00,9502.0
-2011-04-30 19:00:00,9598.0
-2011-04-30 20:00:00,9668.0
-2011-04-30 21:00:00,9910.0
-2011-04-30 22:00:00,10178.0
-2011-04-30 23:00:00,9939.0
-2011-05-01 00:00:00,9428.0
-2011-04-29 01:00:00,9745.0
-2011-04-29 02:00:00,9225.0
-2011-04-29 03:00:00,8895.0
-2011-04-29 04:00:00,8716.0
-2011-04-29 05:00:00,8648.0
-2011-04-29 06:00:00,8980.0
-2011-04-29 07:00:00,9591.0
-2011-04-29 08:00:00,10386.0
-2011-04-29 09:00:00,10965.0
-2011-04-29 10:00:00,11151.0
-2011-04-29 11:00:00,11207.0
-2011-04-29 12:00:00,11286.0
-2011-04-29 13:00:00,11279.0
-2011-04-29 14:00:00,11213.0
-2011-04-29 15:00:00,11203.0
-2011-04-29 16:00:00,11057.0
-2011-04-29 17:00:00,10846.0
-2011-04-29 18:00:00,10678.0
-2011-04-29 19:00:00,10472.0
-2011-04-29 20:00:00,10299.0
-2011-04-29 21:00:00,10551.0
-2011-04-29 22:00:00,10923.0
-2011-04-29 23:00:00,10676.0
-2011-04-30 00:00:00,10003.0
-2011-04-28 01:00:00,9508.0
-2011-04-28 02:00:00,9003.0
-2011-04-28 03:00:00,8709.0
-2011-04-28 04:00:00,8527.0
-2011-04-28 05:00:00,8506.0
-2011-04-28 06:00:00,8725.0
-2011-04-28 07:00:00,9380.0
-2011-04-28 08:00:00,10320.0
-2011-04-28 09:00:00,11103.0
-2011-04-28 10:00:00,11437.0
-2011-04-28 11:00:00,11573.0
-2011-04-28 12:00:00,11704.0
-2011-04-28 13:00:00,11730.0
-2011-04-28 14:00:00,11693.0
-2011-04-28 15:00:00,11661.0
-2011-04-28 16:00:00,11590.0
-2011-04-28 17:00:00,11486.0
-2011-04-28 18:00:00,11423.0
-2011-04-28 19:00:00,11369.0
-2011-04-28 20:00:00,11298.0
-2011-04-28 21:00:00,11522.0
-2011-04-28 22:00:00,11692.0
-2011-04-28 23:00:00,11342.0
-2011-04-29 00:00:00,10552.0
-2011-04-27 01:00:00,9475.0
-2011-04-27 02:00:00,8896.0
-2011-04-27 03:00:00,8574.0
-2011-04-27 04:00:00,8370.0
-2011-04-27 05:00:00,8287.0
-2011-04-27 06:00:00,8448.0
-2011-04-27 07:00:00,9086.0
-2011-04-27 08:00:00,10112.0
-2011-04-27 09:00:00,10964.0
-2011-04-27 10:00:00,11362.0
-2011-04-27 11:00:00,11514.0
-2011-04-27 12:00:00,11548.0
-2011-04-27 13:00:00,11523.0
-2011-04-27 14:00:00,11498.0
-2011-04-27 15:00:00,11551.0
-2011-04-27 16:00:00,11428.0
-2011-04-27 17:00:00,11261.0
-2011-04-27 18:00:00,11162.0
-2011-04-27 19:00:00,11152.0
-2011-04-27 20:00:00,11097.0
-2011-04-27 21:00:00,11302.0
-2011-04-27 22:00:00,11497.0
-2011-04-27 23:00:00,11075.0
-2011-04-28 00:00:00,10268.0
-2011-04-26 01:00:00,9584.0
-2011-04-26 02:00:00,9050.0
-2011-04-26 03:00:00,8744.0
-2011-04-26 04:00:00,8552.0
-2011-04-26 05:00:00,8511.0
-2011-04-26 06:00:00,8692.0
-2011-04-26 07:00:00,9366.0
-2011-04-26 08:00:00,10327.0
-2011-04-26 09:00:00,11041.0
-2011-04-26 10:00:00,11354.0
-2011-04-26 11:00:00,11528.0
-2011-04-26 12:00:00,11711.0
-2011-04-26 13:00:00,11736.0
-2011-04-26 14:00:00,11719.0
-2011-04-26 15:00:00,11726.0
-2011-04-26 16:00:00,11596.0
-2011-04-26 17:00:00,11450.0
-2011-04-26 18:00:00,11339.0
-2011-04-26 19:00:00,11181.0
-2011-04-26 20:00:00,11024.0
-2011-04-26 21:00:00,11196.0
-2011-04-26 22:00:00,11465.0
-2011-04-26 23:00:00,11004.0
-2011-04-27 00:00:00,10232.0
-2011-04-25 01:00:00,8418.0
-2011-04-25 02:00:00,8089.0
-2011-04-25 03:00:00,7886.0
-2011-04-25 04:00:00,7826.0
-2011-04-25 05:00:00,7827.0
-2011-04-25 06:00:00,8131.0
-2011-04-25 07:00:00,8868.0
-2011-04-25 08:00:00,9854.0
-2011-04-25 09:00:00,10699.0
-2011-04-25 10:00:00,11163.0
-2011-04-25 11:00:00,11353.0
-2011-04-25 12:00:00,11501.0
-2011-04-25 13:00:00,11449.0
-2011-04-25 14:00:00,11397.0
-2011-04-25 15:00:00,11351.0
-2011-04-25 16:00:00,11222.0
-2011-04-25 17:00:00,11104.0
-2011-04-25 18:00:00,11117.0
-2011-04-25 19:00:00,11160.0
-2011-04-25 20:00:00,11172.0
-2011-04-25 21:00:00,11467.0
-2011-04-25 22:00:00,11538.0
-2011-04-25 23:00:00,11068.0
-2011-04-26 00:00:00,10322.0
-2011-04-24 01:00:00,8678.0
-2011-04-24 02:00:00,8162.0
-2011-04-24 03:00:00,7893.0
-2011-04-24 04:00:00,7647.0
-2011-04-24 05:00:00,7570.0
-2011-04-24 06:00:00,7539.0
-2011-04-24 07:00:00,7671.0
-2011-04-24 08:00:00,7605.0
-2011-04-24 09:00:00,7875.0
-2011-04-24 10:00:00,8186.0
-2011-04-24 11:00:00,8407.0
-2011-04-24 12:00:00,8452.0
-2011-04-24 13:00:00,8530.0
-2011-04-24 14:00:00,8490.0
-2011-04-24 15:00:00,8429.0
-2011-04-24 16:00:00,8310.0
-2011-04-24 17:00:00,8246.0
-2011-04-24 18:00:00,8188.0
-2011-04-24 19:00:00,8267.0
-2011-04-24 20:00:00,8486.0
-2011-04-24 21:00:00,8977.0
-2011-04-24 22:00:00,9479.0
-2011-04-24 23:00:00,9341.0
-2011-04-25 00:00:00,8927.0
-2011-04-23 01:00:00,9243.0
-2011-04-23 02:00:00,8708.0
-2011-04-23 03:00:00,8372.0
-2011-04-23 04:00:00,8150.0
-2011-04-23 05:00:00,8044.0
-2011-04-23 06:00:00,8070.0
-2011-04-23 07:00:00,8260.0
-2011-04-23 08:00:00,8485.0
-2011-04-23 09:00:00,8709.0
-2011-04-23 10:00:00,9139.0
-2011-04-23 11:00:00,9466.0
-2011-04-23 12:00:00,9506.0
-2011-04-23 13:00:00,9519.0
-2011-04-23 14:00:00,9412.0
-2011-04-23 15:00:00,9271.0
-2011-04-23 16:00:00,9116.0
-2011-04-23 17:00:00,8991.0
-2011-04-23 18:00:00,8955.0
-2011-04-23 19:00:00,8932.0
-2011-04-23 20:00:00,8955.0
-2011-04-23 21:00:00,9295.0
-2011-04-23 22:00:00,9822.0
-2011-04-23 23:00:00,9671.0
-2011-04-24 00:00:00,9203.0
-2011-04-22 01:00:00,9713.0
-2011-04-22 02:00:00,9118.0
-2011-04-22 03:00:00,8857.0
-2011-04-22 04:00:00,8625.0
-2011-04-22 05:00:00,8591.0
-2011-04-22 06:00:00,8737.0
-2011-04-22 07:00:00,9247.0
-2011-04-22 08:00:00,9912.0
-2011-04-22 09:00:00,10399.0
-2011-04-22 10:00:00,10848.0
-2011-04-22 11:00:00,11102.0
-2011-04-22 12:00:00,11324.0
-2011-04-22 13:00:00,11425.0
-2011-04-22 14:00:00,11458.0
-2011-04-22 15:00:00,11309.0
-2011-04-22 16:00:00,11026.0
-2011-04-22 17:00:00,10754.0
-2011-04-22 18:00:00,10672.0
-2011-04-22 19:00:00,10743.0
-2011-04-22 20:00:00,10831.0
-2011-04-22 21:00:00,10966.0
-2011-04-22 22:00:00,10931.0
-2011-04-22 23:00:00,10597.0
-2011-04-23 00:00:00,9915.0
-2011-04-21 01:00:00,10013.0
-2011-04-21 02:00:00,9519.0
-2011-04-21 03:00:00,9229.0
-2011-04-21 04:00:00,9066.0
-2011-04-21 05:00:00,9067.0
-2011-04-21 06:00:00,9307.0
-2011-04-21 07:00:00,9962.0
-2011-04-21 08:00:00,10778.0
-2011-04-21 09:00:00,11350.0
-2011-04-21 10:00:00,11541.0
-2011-04-21 11:00:00,11525.0
-2011-04-21 12:00:00,11575.0
-2011-04-21 13:00:00,11519.0
-2011-04-21 14:00:00,11427.0
-2011-04-21 15:00:00,11396.0
-2011-04-21 16:00:00,11234.0
-2011-04-21 17:00:00,11052.0
-2011-04-21 18:00:00,10929.0
-2011-04-21 19:00:00,10939.0
-2011-04-21 20:00:00,10956.0
-2011-04-21 21:00:00,11309.0
-2011-04-21 22:00:00,11521.0
-2011-04-21 23:00:00,11200.0
-2011-04-22 00:00:00,10487.0
-2011-04-20 01:00:00,10279.0
-2011-04-20 02:00:00,9772.0
-2011-04-20 03:00:00,9479.0
-2011-04-20 04:00:00,9255.0
-2011-04-20 05:00:00,9238.0
-2011-04-20 06:00:00,9429.0
-2011-04-20 07:00:00,10128.0
-2011-04-20 08:00:00,11173.0
-2011-04-20 09:00:00,11832.0
-2011-04-20 10:00:00,12119.0
-2011-04-20 11:00:00,12226.0
-2011-04-20 12:00:00,12272.0
-2011-04-20 13:00:00,12176.0
-2011-04-20 14:00:00,12065.0
-2011-04-20 15:00:00,12029.0
-2011-04-20 16:00:00,11961.0
-2011-04-20 17:00:00,11917.0
-2011-04-20 18:00:00,11878.0
-2011-04-20 19:00:00,11800.0
-2011-04-20 20:00:00,11634.0
-2011-04-20 21:00:00,11801.0
-2011-04-20 22:00:00,12049.0
-2011-04-20 23:00:00,11611.0
-2011-04-21 00:00:00,10770.0
-2011-04-19 01:00:00,10136.0
-2011-04-19 02:00:00,9621.0
-2011-04-19 03:00:00,9312.0
-2011-04-19 04:00:00,9131.0
-2011-04-19 05:00:00,9123.0
-2011-04-19 06:00:00,9335.0
-2011-04-19 07:00:00,9985.0
-2011-04-19 08:00:00,11082.0
-2011-04-19 09:00:00,11887.0
-2011-04-19 10:00:00,12253.0
-2011-04-19 11:00:00,12468.0
-2011-04-19 12:00:00,12745.0
-2011-04-19 13:00:00,12726.0
-2011-04-19 14:00:00,12673.0
-2011-04-19 15:00:00,12676.0
-2011-04-19 16:00:00,12632.0
-2011-04-19 17:00:00,12562.0
-2011-04-19 18:00:00,12480.0
-2011-04-19 19:00:00,12452.0
-2011-04-19 20:00:00,12386.0
-2011-04-19 21:00:00,12674.0
-2011-04-19 22:00:00,12600.0
-2011-04-19 23:00:00,12074.0
-2011-04-20 00:00:00,11144.0
-2011-04-18 01:00:00,8922.0
-2011-04-18 02:00:00,8594.0
-2011-04-18 03:00:00,8489.0
-2011-04-18 04:00:00,8453.0
-2011-04-18 05:00:00,8587.0
-2011-04-18 06:00:00,8932.0
-2011-04-18 07:00:00,9739.0
-2011-04-18 08:00:00,10876.0
-2011-04-18 09:00:00,11618.0
-2011-04-18 10:00:00,11995.0
-2011-04-18 11:00:00,12082.0
-2011-04-18 12:00:00,12248.0
-2011-04-18 13:00:00,12166.0
-2011-04-18 14:00:00,12051.0
-2011-04-18 15:00:00,11957.0
-2011-04-18 16:00:00,11722.0
-2011-04-18 17:00:00,11450.0
-2011-04-18 18:00:00,11353.0
-2011-04-18 19:00:00,11349.0
-2011-04-18 20:00:00,11378.0
-2011-04-18 21:00:00,11839.0
-2011-04-18 22:00:00,12071.0
-2011-04-18 23:00:00,11636.0
-2011-04-19 00:00:00,10885.0
-2011-04-17 01:00:00,9542.0
-2011-04-17 02:00:00,9081.0
-2011-04-17 03:00:00,8710.0
-2011-04-17 04:00:00,8581.0
-2011-04-17 05:00:00,8510.0
-2011-04-17 06:00:00,8511.0
-2011-04-17 07:00:00,8696.0
-2011-04-17 08:00:00,8674.0
-2011-04-17 09:00:00,8886.0
-2011-04-17 10:00:00,9196.0
-2011-04-17 11:00:00,9375.0
-2011-04-17 12:00:00,9373.0
-2011-04-17 13:00:00,9304.0
-2011-04-17 14:00:00,9282.0
-2011-04-17 15:00:00,9195.0
-2011-04-17 16:00:00,9098.0
-2011-04-17 17:00:00,9022.0
-2011-04-17 18:00:00,9066.0
-2011-04-17 19:00:00,9142.0
-2011-04-17 20:00:00,9296.0
-2011-04-17 21:00:00,9893.0
-2011-04-17 22:00:00,10251.0
-2011-04-17 23:00:00,9964.0
-2011-04-18 00:00:00,9438.0
-2011-04-16 01:00:00,9712.0
-2011-04-16 02:00:00,9084.0
-2011-04-16 03:00:00,8728.0
-2011-04-16 04:00:00,8434.0
-2011-04-16 05:00:00,8338.0
-2011-04-16 06:00:00,8376.0
-2011-04-16 07:00:00,8641.0
-2011-04-16 08:00:00,8965.0
-2011-04-16 09:00:00,9366.0
-2011-04-16 10:00:00,9818.0
-2011-04-16 11:00:00,10166.0
-2011-04-16 12:00:00,10301.0
-2011-04-16 13:00:00,10331.0
-2011-04-16 14:00:00,10269.0
-2011-04-16 15:00:00,10285.0
-2011-04-16 16:00:00,10258.0
-2011-04-16 17:00:00,10288.0
-2011-04-16 18:00:00,10308.0
-2011-04-16 19:00:00,10438.0
-2011-04-16 20:00:00,10499.0
-2011-04-16 21:00:00,10800.0
-2011-04-16 22:00:00,10915.0
-2011-04-16 23:00:00,10607.0
-2011-04-17 00:00:00,10153.0
-2011-04-15 01:00:00,9751.0
-2011-04-15 02:00:00,9197.0
-2011-04-15 03:00:00,8923.0
-2011-04-15 04:00:00,8730.0
-2011-04-15 05:00:00,8732.0
-2011-04-15 06:00:00,8966.0
-2011-04-15 07:00:00,9678.0
-2011-04-15 08:00:00,10626.0
-2011-04-15 09:00:00,11215.0
-2011-04-15 10:00:00,11487.0
-2011-04-15 11:00:00,11562.0
-2011-04-15 12:00:00,11717.0
-2011-04-15 13:00:00,11675.0
-2011-04-15 14:00:00,11626.0
-2011-04-15 15:00:00,11604.0
-2011-04-15 16:00:00,11565.0
-2011-04-15 17:00:00,11532.0
-2011-04-15 18:00:00,11593.0
-2011-04-15 19:00:00,11617.0
-2011-04-15 20:00:00,11588.0
-2011-04-15 21:00:00,11712.0
-2011-04-15 22:00:00,11586.0
-2011-04-15 23:00:00,11215.0
-2011-04-16 00:00:00,10461.0
-2011-04-14 01:00:00,9276.0
-2011-04-14 02:00:00,8742.0
-2011-04-14 03:00:00,8379.0
-2011-04-14 04:00:00,8204.0
-2011-04-14 05:00:00,8166.0
-2011-04-14 06:00:00,8366.0
-2011-04-14 07:00:00,9050.0
-2011-04-14 08:00:00,10085.0
-2011-04-14 09:00:00,10830.0
-2011-04-14 10:00:00,11174.0
-2011-04-14 11:00:00,11310.0
-2011-04-14 12:00:00,11447.0
-2011-04-14 13:00:00,11424.0
-2011-04-14 14:00:00,11353.0
-2011-04-14 15:00:00,11357.0
-2011-04-14 16:00:00,11223.0
-2011-04-14 17:00:00,11085.0
-2011-04-14 18:00:00,10988.0
-2011-04-14 19:00:00,10931.0
-2011-04-14 20:00:00,11006.0
-2011-04-14 21:00:00,11545.0
-2011-04-14 22:00:00,11790.0
-2011-04-14 23:00:00,11353.0
-2011-04-15 00:00:00,10511.0
-2011-04-13 01:00:00,9429.0
-2011-04-13 02:00:00,8918.0
-2011-04-13 03:00:00,8622.0
-2011-04-13 04:00:00,8449.0
-2011-04-13 05:00:00,8414.0
-2011-04-13 06:00:00,8648.0
-2011-04-13 07:00:00,9350.0
-2011-04-13 08:00:00,10212.0
-2011-04-13 09:00:00,10855.0
-2011-04-13 10:00:00,11110.0
-2011-04-13 11:00:00,11169.0
-2011-04-13 12:00:00,11315.0
-2011-04-13 13:00:00,11333.0
-2011-04-13 14:00:00,11333.0
-2011-04-13 15:00:00,11405.0
-2011-04-13 16:00:00,11326.0
-2011-04-13 17:00:00,11240.0
-2011-04-13 18:00:00,11102.0
-2011-04-13 19:00:00,10913.0
-2011-04-13 20:00:00,10749.0
-2011-04-13 21:00:00,11091.0
-2011-04-13 22:00:00,11428.0
-2011-04-13 23:00:00,11008.0
-2011-04-14 00:00:00,10151.0
-2011-04-12 01:00:00,9274.0
-2011-04-12 02:00:00,8705.0
-2011-04-12 03:00:00,8412.0
-2011-04-12 04:00:00,8246.0
-2011-04-12 05:00:00,8188.0
-2011-04-12 06:00:00,8432.0
-2011-04-12 07:00:00,9120.0
-2011-04-12 08:00:00,10117.0
-2011-04-12 09:00:00,10781.0
-2011-04-12 10:00:00,11083.0
-2011-04-12 11:00:00,11185.0
-2011-04-12 12:00:00,11307.0
-2011-04-12 13:00:00,11288.0
-2011-04-12 14:00:00,11283.0
-2011-04-12 15:00:00,11314.0
-2011-04-12 16:00:00,11180.0
-2011-04-12 17:00:00,11028.0
-2011-04-12 18:00:00,10874.0
-2011-04-12 19:00:00,10719.0
-2011-04-12 20:00:00,10590.0
-2011-04-12 21:00:00,11003.0
-2011-04-12 22:00:00,11433.0
-2011-04-12 23:00:00,11007.0
-2011-04-13 00:00:00,10232.0
-2011-04-11 01:00:00,9607.0
-2011-04-11 02:00:00,9043.0
-2011-04-11 03:00:00,8582.0
-2011-04-11 04:00:00,8302.0
-2011-04-11 05:00:00,8105.0
-2011-04-11 06:00:00,8269.0
-2011-04-11 07:00:00,8866.0
-2011-04-11 08:00:00,9783.0
-2011-04-11 09:00:00,10449.0
-2011-04-11 10:00:00,10908.0
-2011-04-11 11:00:00,11099.0
-2011-04-11 12:00:00,11203.0
-2011-04-11 13:00:00,11298.0
-2011-04-11 14:00:00,11319.0
-2011-04-11 15:00:00,11374.0
-2011-04-11 16:00:00,11325.0
-2011-04-11 17:00:00,11241.0
-2011-04-11 18:00:00,11126.0
-2011-04-11 19:00:00,10989.0
-2011-04-11 20:00:00,10955.0
-2011-04-11 21:00:00,11332.0
-2011-04-11 22:00:00,11407.0
-2011-04-11 23:00:00,10907.0
-2011-04-12 00:00:00,10072.0
-2011-04-10 01:00:00,8934.0
-2011-04-10 02:00:00,8495.0
-2011-04-10 03:00:00,8168.0
-2011-04-10 04:00:00,7972.0
-2011-04-10 05:00:00,7793.0
-2011-04-10 06:00:00,7833.0
-2011-04-10 07:00:00,7923.0
-2011-04-10 08:00:00,7981.0
-2011-04-10 09:00:00,8099.0
-2011-04-10 10:00:00,8578.0
-2011-04-10 11:00:00,8959.0
-2011-04-10 12:00:00,9352.0
-2011-04-10 13:00:00,9561.0
-2011-04-10 14:00:00,9787.0
-2011-04-10 15:00:00,9924.0
-2011-04-10 16:00:00,10027.0
-2011-04-10 17:00:00,10128.0
-2011-04-10 18:00:00,10176.0
-2011-04-10 19:00:00,10423.0
-2011-04-10 20:00:00,10520.0
-2011-04-10 21:00:00,11012.0
-2011-04-10 22:00:00,11324.0
-2011-04-10 23:00:00,11001.0
-2011-04-11 00:00:00,10357.0
-2011-04-09 01:00:00,9695.0
-2011-04-09 02:00:00,9132.0
-2011-04-09 03:00:00,8807.0
-2011-04-09 04:00:00,8626.0
-2011-04-09 05:00:00,8478.0
-2011-04-09 06:00:00,8554.0
-2011-04-09 07:00:00,8779.0
-2011-04-09 08:00:00,9203.0
-2011-04-09 09:00:00,9534.0
-2011-04-09 10:00:00,9934.0
-2011-04-09 11:00:00,10110.0
-2011-04-09 12:00:00,10162.0
-2011-04-09 13:00:00,10038.0
-2011-04-09 14:00:00,9900.0
-2011-04-09 15:00:00,9682.0
-2011-04-09 16:00:00,9593.0
-2011-04-09 17:00:00,9445.0
-2011-04-09 18:00:00,9432.0
-2011-04-09 19:00:00,9383.0
-2011-04-09 20:00:00,9420.0
-2011-04-09 21:00:00,9848.0
-2011-04-09 22:00:00,10259.0
-2011-04-09 23:00:00,9983.0
-2011-04-10 00:00:00,9502.0
-2011-04-08 01:00:00,9944.0
-2011-04-08 02:00:00,9377.0
-2011-04-08 03:00:00,9067.0
-2011-04-08 04:00:00,8909.0
-2011-04-08 05:00:00,8947.0
-2011-04-08 06:00:00,9092.0
-2011-04-08 07:00:00,9768.0
-2011-04-08 08:00:00,10886.0
-2011-04-08 09:00:00,11611.0
-2011-04-08 10:00:00,11774.0
-2011-04-08 11:00:00,11882.0
-2011-04-08 12:00:00,11960.0
-2011-04-08 13:00:00,11970.0
-2011-04-08 14:00:00,11898.0
-2011-04-08 15:00:00,11851.0
-2011-04-08 16:00:00,11717.0
-2011-04-08 17:00:00,11558.0
-2011-04-08 18:00:00,11399.0
-2011-04-08 19:00:00,11234.0
-2011-04-08 20:00:00,11207.0
-2011-04-08 21:00:00,11548.0
-2011-04-08 22:00:00,11543.0
-2011-04-08 23:00:00,11184.0
-2011-04-09 00:00:00,10491.0
-2011-04-07 01:00:00,9661.0
-2011-04-07 02:00:00,9185.0
-2011-04-07 03:00:00,8884.0
-2011-04-07 04:00:00,8711.0
-2011-04-07 05:00:00,8687.0
-2011-04-07 06:00:00,8896.0
-2011-04-07 07:00:00,9573.0
-2011-04-07 08:00:00,10637.0
-2011-04-07 09:00:00,11331.0
-2011-04-07 10:00:00,11617.0
-2011-04-07 11:00:00,11712.0
-2011-04-07 12:00:00,11761.0
-2011-04-07 13:00:00,11698.0
-2011-04-07 14:00:00,11594.0
-2011-04-07 15:00:00,11621.0
-2011-04-07 16:00:00,11523.0
-2011-04-07 17:00:00,11401.0
-2011-04-07 18:00:00,11332.0
-2011-04-07 19:00:00,11383.0
-2011-04-07 20:00:00,11543.0
-2011-04-07 21:00:00,12019.0
-2011-04-07 22:00:00,11940.0
-2011-04-07 23:00:00,11513.0
-2011-04-08 00:00:00,10733.0
-2011-04-06 01:00:00,9757.0
-2011-04-06 02:00:00,9231.0
-2011-04-06 03:00:00,8909.0
-2011-04-06 04:00:00,8692.0
-2011-04-06 05:00:00,8616.0
-2011-04-06 06:00:00,8818.0
-2011-04-06 07:00:00,9519.0
-2011-04-06 08:00:00,10609.0
-2011-04-06 09:00:00,11245.0
-2011-04-06 10:00:00,11528.0
-2011-04-06 11:00:00,11674.0
-2011-04-06 12:00:00,11742.0
-2011-04-06 13:00:00,11646.0
-2011-04-06 14:00:00,11543.0
-2011-04-06 15:00:00,11545.0
-2011-04-06 16:00:00,11441.0
-2011-04-06 17:00:00,11305.0
-2011-04-06 18:00:00,11155.0
-2011-04-06 19:00:00,11016.0
-2011-04-06 20:00:00,10913.0
-2011-04-06 21:00:00,11417.0
-2011-04-06 22:00:00,11655.0
-2011-04-06 23:00:00,11225.0
-2011-04-07 00:00:00,10438.0
-2011-04-05 01:00:00,9839.0
-2011-04-05 02:00:00,9343.0
-2011-04-05 03:00:00,9026.0
-2011-04-05 04:00:00,8853.0
-2011-04-05 05:00:00,8866.0
-2011-04-05 06:00:00,9131.0
-2011-04-05 07:00:00,9915.0
-2011-04-05 08:00:00,10957.0
-2011-04-05 09:00:00,11460.0
-2011-04-05 10:00:00,11613.0
-2011-04-05 11:00:00,11635.0
-2011-04-05 12:00:00,11700.0
-2011-04-05 13:00:00,11693.0
-2011-04-05 14:00:00,11641.0
-2011-04-05 15:00:00,11560.0
-2011-04-05 16:00:00,11400.0
-2011-04-05 17:00:00,11202.0
-2011-04-05 18:00:00,11063.0
-2011-04-05 19:00:00,10960.0
-2011-04-05 20:00:00,10957.0
-2011-04-05 21:00:00,11491.0
-2011-04-05 22:00:00,11713.0
-2011-04-05 23:00:00,11321.0
-2011-04-06 00:00:00,10535.0
-2011-04-04 01:00:00,8802.0
-2011-04-04 02:00:00,8402.0
-2011-04-04 03:00:00,8035.0
-2011-04-04 04:00:00,8057.0
-2011-04-04 05:00:00,8059.0
-2011-04-04 06:00:00,8214.0
-2011-04-04 07:00:00,8910.0
-2011-04-04 08:00:00,10096.0
-2011-04-04 09:00:00,10908.0
-2011-04-04 10:00:00,11266.0
-2011-04-04 11:00:00,11593.0
-2011-04-04 12:00:00,11578.0
-2011-04-04 13:00:00,11582.0
-2011-04-04 14:00:00,11625.0
-2011-04-04 15:00:00,11676.0
-2011-04-04 16:00:00,11572.0
-2011-04-04 17:00:00,11413.0
-2011-04-04 18:00:00,11389.0
-2011-04-04 19:00:00,11446.0
-2011-04-04 20:00:00,11456.0
-2011-04-04 21:00:00,11893.0
-2011-04-04 22:00:00,11905.0
-2011-04-04 23:00:00,11442.0
-2011-04-05 00:00:00,10646.0
-2011-04-03 01:00:00,9318.0
-2011-04-03 02:00:00,8851.0
-2011-04-03 03:00:00,8539.0
-2011-04-03 04:00:00,8392.0
-2011-04-03 05:00:00,8263.0
-2011-04-03 06:00:00,8290.0
-2011-04-03 07:00:00,8416.0
-2011-04-03 08:00:00,8526.0
-2011-04-03 09:00:00,8755.0
-2011-04-03 10:00:00,9080.0
-2011-04-03 11:00:00,9345.0
-2011-04-03 12:00:00,9567.0
-2011-04-03 13:00:00,9633.0
-2011-04-03 14:00:00,9448.0
-2011-04-03 15:00:00,9482.0
-2011-04-03 16:00:00,9481.0
-2011-04-03 17:00:00,9453.0
-2011-04-03 18:00:00,9407.0
-2011-04-03 19:00:00,9465.0
-2011-04-03 20:00:00,9578.0
-2011-04-03 21:00:00,10151.0
-2011-04-03 22:00:00,10235.0
-2011-04-03 23:00:00,9908.0
-2011-04-04 00:00:00,9418.0
-2011-04-02 01:00:00,10059.0
-2011-04-02 02:00:00,9498.0
-2011-04-02 03:00:00,9143.0
-2011-04-02 04:00:00,8916.0
-2011-04-02 05:00:00,8833.0
-2011-04-02 06:00:00,8890.0
-2011-04-02 07:00:00,9106.0
-2011-04-02 08:00:00,9566.0
-2011-04-02 09:00:00,9727.0
-2011-04-02 10:00:00,10016.0
-2011-04-02 11:00:00,10122.0
-2011-04-02 12:00:00,10202.0
-2011-04-02 13:00:00,10157.0
-2011-04-02 14:00:00,10076.0
-2011-04-02 15:00:00,9857.0
-2011-04-02 16:00:00,9667.0
-2011-04-02 17:00:00,9514.0
-2011-04-02 18:00:00,9457.0
-2011-04-02 19:00:00,9402.0
-2011-04-02 20:00:00,9501.0
-2011-04-02 21:00:00,10145.0
-2011-04-02 22:00:00,10509.0
-2011-04-02 23:00:00,10345.0
-2011-04-03 00:00:00,9855.0
-2011-04-01 01:00:00,10059.0
-2011-04-01 02:00:00,9592.0
-2011-04-01 03:00:00,9317.0
-2011-04-01 04:00:00,9159.0
-2011-04-01 05:00:00,9134.0
-2011-04-01 06:00:00,9351.0
-2011-04-01 07:00:00,9980.0
-2011-04-01 08:00:00,10915.0
-2011-04-01 09:00:00,11441.0
-2011-04-01 10:00:00,11686.0
-2011-04-01 11:00:00,11796.0
-2011-04-01 12:00:00,11915.0
-2011-04-01 13:00:00,11927.0
-2011-04-01 14:00:00,12000.0
-2011-04-01 15:00:00,12110.0
-2011-04-01 16:00:00,11993.0
-2011-04-01 17:00:00,11790.0
-2011-04-01 18:00:00,11632.0
-2011-04-01 19:00:00,11562.0
-2011-04-01 20:00:00,11463.0
-2011-04-01 21:00:00,11800.0
-2011-04-01 22:00:00,11763.0
-2011-04-01 23:00:00,11403.0
-2011-04-02 00:00:00,10760.0
-2011-03-31 01:00:00,10220.0
-2011-03-31 02:00:00,9737.0
-2011-03-31 03:00:00,9466.0
-2011-03-31 04:00:00,9320.0
-2011-03-31 05:00:00,9347.0
-2011-03-31 06:00:00,9598.0
-2011-03-31 07:00:00,10289.0
-2011-03-31 08:00:00,11293.0
-2011-03-31 09:00:00,11744.0
-2011-03-31 10:00:00,11899.0
-2011-03-31 11:00:00,11899.0
-2011-03-31 12:00:00,11860.0
-2011-03-31 13:00:00,11740.0
-2011-03-31 14:00:00,11621.0
-2011-03-31 15:00:00,11557.0
-2011-03-31 16:00:00,11401.0
-2011-03-31 17:00:00,11211.0
-2011-03-31 18:00:00,11073.0
-2011-03-31 19:00:00,10972.0
-2011-03-31 20:00:00,10933.0
-2011-03-31 21:00:00,11557.0
-2011-03-31 22:00:00,11708.0
-2011-03-31 23:00:00,11398.0
-2011-04-01 00:00:00,10737.0
-2011-03-30 01:00:00,10374.0
-2011-03-30 02:00:00,9845.0
-2011-03-30 03:00:00,9508.0
-2011-03-30 04:00:00,9324.0
-2011-03-30 05:00:00,9309.0
-2011-03-30 06:00:00,9523.0
-2011-03-30 07:00:00,10196.0
-2011-03-30 08:00:00,11222.0
-2011-03-30 09:00:00,11771.0
-2011-03-30 10:00:00,12044.0
-2011-03-30 11:00:00,12060.0
-2011-03-30 12:00:00,12015.0
-2011-03-30 13:00:00,11905.0
-2011-03-30 14:00:00,11743.0
-2011-03-30 15:00:00,11649.0
-2011-03-30 16:00:00,11509.0
-2011-03-30 17:00:00,11307.0
-2011-03-30 18:00:00,11176.0
-2011-03-30 19:00:00,11085.0
-2011-03-30 20:00:00,11062.0
-2011-03-30 21:00:00,11680.0
-2011-03-30 22:00:00,11906.0
-2011-03-30 23:00:00,11547.0
-2011-03-31 00:00:00,10897.0
-2011-03-29 01:00:00,10480.0
-2011-03-29 02:00:00,9978.0
-2011-03-29 03:00:00,9712.0
-2011-03-29 04:00:00,9532.0
-2011-03-29 05:00:00,9530.0
-2011-03-29 06:00:00,9731.0
-2011-03-29 07:00:00,10419.0
-2011-03-29 08:00:00,11452.0
-2011-03-29 09:00:00,11952.0
-2011-03-29 10:00:00,12177.0
-2011-03-29 11:00:00,12153.0
-2011-03-29 12:00:00,12121.0
-2011-03-29 13:00:00,12024.0
-2011-03-29 14:00:00,11917.0
-2011-03-29 15:00:00,11821.0
-2011-03-29 16:00:00,11694.0
-2011-03-29 17:00:00,11524.0
-2011-03-29 18:00:00,11355.0
-2011-03-29 19:00:00,11323.0
-2011-03-29 20:00:00,11346.0
-2011-03-29 21:00:00,12047.0
-2011-03-29 22:00:00,12177.0
-2011-03-29 23:00:00,11769.0
-2011-03-30 00:00:00,11089.0
-2011-03-28 01:00:00,10056.0
-2011-03-28 02:00:00,9706.0
-2011-03-28 03:00:00,9501.0
-2011-03-28 04:00:00,9452.0
-2011-03-28 05:00:00,9499.0
-2011-03-28 06:00:00,9810.0
-2011-03-28 07:00:00,10558.0
-2011-03-28 08:00:00,11609.0
-2011-03-28 09:00:00,12104.0
-2011-03-28 10:00:00,12284.0
-2011-03-28 11:00:00,12263.0
-2011-03-28 12:00:00,12297.0
-2011-03-28 13:00:00,12201.0
-2011-03-28 14:00:00,12095.0
-2011-03-28 15:00:00,12035.0
-2011-03-28 16:00:00,11854.0
-2011-03-28 17:00:00,11612.0
-2011-03-28 18:00:00,11499.0
-2011-03-28 19:00:00,11444.0
-2011-03-28 20:00:00,11460.0
-2011-03-28 21:00:00,12202.0
-2011-03-28 22:00:00,12340.0
-2011-03-28 23:00:00,11940.0
-2011-03-29 00:00:00,11190.0
-2011-03-27 01:00:00,10244.0
-2011-03-27 02:00:00,9751.0
-2011-03-27 03:00:00,9484.0
-2011-03-27 04:00:00,9288.0
-2011-03-27 05:00:00,9195.0
-2011-03-27 06:00:00,9274.0
-2011-03-27 07:00:00,9402.0
-2011-03-27 08:00:00,9632.0
-2011-03-27 09:00:00,9561.0
-2011-03-27 10:00:00,9784.0
-2011-03-27 11:00:00,9948.0
-2011-03-27 12:00:00,10049.0
-2011-03-27 13:00:00,10066.0
-2011-03-27 14:00:00,9967.0
-2011-03-27 15:00:00,9895.0
-2011-03-27 16:00:00,9819.0
-2011-03-27 17:00:00,9786.0
-2011-03-27 18:00:00,9797.0
-2011-03-27 19:00:00,9916.0
-2011-03-27 20:00:00,10128.0
-2011-03-27 21:00:00,11042.0
-2011-03-27 22:00:00,11247.0
-2011-03-27 23:00:00,11032.0
-2011-03-28 00:00:00,10561.0
-2011-03-26 01:00:00,10695.0
-2011-03-26 02:00:00,10131.0
-2011-03-26 03:00:00,9841.0
-2011-03-26 04:00:00,9615.0
-2011-03-26 05:00:00,9572.0
-2011-03-26 06:00:00,9661.0
-2011-03-26 07:00:00,9947.0
-2011-03-26 08:00:00,10422.0
-2011-03-26 09:00:00,10657.0
-2011-03-26 10:00:00,11005.0
-2011-03-26 11:00:00,11285.0
-2011-03-26 12:00:00,11302.0
-2011-03-26 13:00:00,11221.0
-2011-03-26 14:00:00,10976.0
-2011-03-26 15:00:00,10759.0
-2011-03-26 16:00:00,10551.0
-2011-03-26 17:00:00,10405.0
-2011-03-26 18:00:00,10352.0
-2011-03-26 19:00:00,10461.0
-2011-03-26 20:00:00,10660.0
-2011-03-26 21:00:00,11394.0
-2011-03-26 22:00:00,11507.0
-2011-03-26 23:00:00,11247.0
-2011-03-27 00:00:00,10778.0
-2011-03-25 01:00:00,10608.0
-2011-03-25 02:00:00,10068.0
-2011-03-25 03:00:00,9801.0
-2011-03-25 04:00:00,9621.0
-2011-03-25 05:00:00,9607.0
-2011-03-25 06:00:00,9831.0
-2011-03-25 07:00:00,10498.0
-2011-03-25 08:00:00,11586.0
-2011-03-25 09:00:00,12127.0
-2011-03-25 10:00:00,12377.0
-2011-03-25 11:00:00,12453.0
-2011-03-25 12:00:00,12505.0
-2011-03-25 13:00:00,12305.0
-2011-03-25 14:00:00,12126.0
-2011-03-25 15:00:00,12039.0
-2011-03-25 16:00:00,11843.0
-2011-03-25 17:00:00,11639.0
-2011-03-25 18:00:00,11509.0
-2011-03-25 19:00:00,11400.0
-2011-03-25 20:00:00,11486.0
-2011-03-25 21:00:00,12158.0
-2011-03-25 22:00:00,12211.0
-2011-03-25 23:00:00,11899.0
-2011-03-26 00:00:00,11276.0
-2011-03-24 01:00:00,10575.0
-2011-03-24 02:00:00,10076.0
-2011-03-24 03:00:00,9788.0
-2011-03-24 04:00:00,9615.0
-2011-03-24 05:00:00,9613.0
-2011-03-24 06:00:00,9841.0
-2011-03-24 07:00:00,10523.0
-2011-03-24 08:00:00,11721.0
-2011-03-24 09:00:00,12234.0
-2011-03-24 10:00:00,12436.0
-2011-03-24 11:00:00,12451.0
-2011-03-24 12:00:00,12508.0
-2011-03-24 13:00:00,12395.0
-2011-03-24 14:00:00,12301.0
-2011-03-24 15:00:00,12189.0
-2011-03-24 16:00:00,12067.0
-2011-03-24 17:00:00,11898.0
-2011-03-24 18:00:00,11758.0
-2011-03-24 19:00:00,11689.0
-2011-03-24 20:00:00,11686.0
-2011-03-24 21:00:00,12381.0
-2011-03-24 22:00:00,12477.0
-2011-03-24 23:00:00,12067.0
-2011-03-25 00:00:00,11331.0
-2011-03-23 01:00:00,10228.0
-2011-03-23 02:00:00,9690.0
-2011-03-23 03:00:00,9351.0
-2011-03-23 04:00:00,9181.0
-2011-03-23 05:00:00,9133.0
-2011-03-23 06:00:00,9365.0
-2011-03-23 07:00:00,10052.0
-2011-03-23 08:00:00,11208.0
-2011-03-23 09:00:00,11879.0
-2011-03-23 10:00:00,12196.0
-2011-03-23 11:00:00,12285.0
-2011-03-23 12:00:00,12337.0
-2011-03-23 13:00:00,12197.0
-2011-03-23 14:00:00,12102.0
-2011-03-23 15:00:00,12047.0
-2011-03-23 16:00:00,12031.0
-2011-03-23 17:00:00,12025.0
-2011-03-23 18:00:00,12077.0
-2011-03-23 19:00:00,12148.0
-2011-03-23 20:00:00,12205.0
-2011-03-23 21:00:00,12646.0
-2011-03-23 22:00:00,12558.0
-2011-03-23 23:00:00,12125.0
-2011-03-24 00:00:00,11353.0
-2011-03-22 01:00:00,9767.0
-2011-03-22 02:00:00,9284.0
-2011-03-22 03:00:00,8986.0
-2011-03-22 04:00:00,8832.0
-2011-03-22 05:00:00,8797.0
-2011-03-22 06:00:00,9027.0
-2011-03-22 07:00:00,9694.0
-2011-03-22 08:00:00,10924.0
-2011-03-22 09:00:00,11789.0
-2011-03-22 10:00:00,12044.0
-2011-03-22 11:00:00,12202.0
-2011-03-22 12:00:00,12298.0
-2011-03-22 13:00:00,12269.0
-2011-03-22 14:00:00,12226.0
-2011-03-22 15:00:00,12291.0
-2011-03-22 16:00:00,12258.0
-2011-03-22 17:00:00,12282.0
-2011-03-22 18:00:00,12284.0
-2011-03-22 19:00:00,12308.0
-2011-03-22 20:00:00,12314.0
-2011-03-22 21:00:00,12593.0
-2011-03-22 22:00:00,12374.0
-2011-03-22 23:00:00,11829.0
-2011-03-23 00:00:00,11042.0
-2011-03-21 01:00:00,8971.0
-2011-03-21 02:00:00,8569.0
-2011-03-21 03:00:00,8303.0
-2011-03-21 04:00:00,8198.0
-2011-03-21 05:00:00,8215.0
-2011-03-21 06:00:00,8460.0
-2011-03-21 07:00:00,9226.0
-2011-03-21 08:00:00,10467.0
-2011-03-21 09:00:00,11198.0
-2011-03-21 10:00:00,11439.0
-2011-03-21 11:00:00,11567.0
-2011-03-21 12:00:00,11612.0
-2011-03-21 13:00:00,11531.0
-2011-03-21 14:00:00,11413.0
-2011-03-21 15:00:00,11389.0
-2011-03-21 16:00:00,11259.0
-2011-03-21 17:00:00,11104.0
-2011-03-21 18:00:00,10986.0
-2011-03-21 19:00:00,10953.0
-2011-03-21 20:00:00,11092.0
-2011-03-21 21:00:00,11757.0
-2011-03-21 22:00:00,11719.0
-2011-03-21 23:00:00,11266.0
-2011-03-22 00:00:00,10492.0
-2011-03-20 01:00:00,9400.0
-2011-03-20 02:00:00,8919.0
-2011-03-20 03:00:00,8573.0
-2011-03-20 04:00:00,8347.0
-2011-03-20 05:00:00,8267.0
-2011-03-20 06:00:00,8224.0
-2011-03-20 07:00:00,8363.0
-2011-03-20 08:00:00,8645.0
-2011-03-20 09:00:00,8807.0
-2011-03-20 10:00:00,9174.0
-2011-03-20 11:00:00,9563.0
-2011-03-20 12:00:00,9864.0
-2011-03-20 13:00:00,10145.0
-2011-03-20 14:00:00,10192.0
-2011-03-20 15:00:00,10066.0
-2011-03-20 16:00:00,9942.0
-2011-03-20 17:00:00,9863.0
-2011-03-20 18:00:00,9734.0
-2011-03-20 19:00:00,9685.0
-2011-03-20 20:00:00,9902.0
-2011-03-20 21:00:00,10559.0
-2011-03-20 22:00:00,10513.0
-2011-03-20 23:00:00,10149.0
-2011-03-21 00:00:00,9580.0
-2011-03-19 01:00:00,9751.0
-2011-03-19 02:00:00,9199.0
-2011-03-19 03:00:00,8905.0
-2011-03-19 04:00:00,8719.0
-2011-03-19 05:00:00,8640.0
-2011-03-19 06:00:00,8732.0
-2011-03-19 07:00:00,8988.0
-2011-03-19 08:00:00,9510.0
-2011-03-19 09:00:00,9715.0
-2011-03-19 10:00:00,10018.0
-2011-03-19 11:00:00,10164.0
-2011-03-19 12:00:00,10247.0
-2011-03-19 13:00:00,10128.0
-2011-03-19 14:00:00,9961.0
-2011-03-19 15:00:00,9754.0
-2011-03-19 16:00:00,9568.0
-2011-03-19 17:00:00,9445.0
-2011-03-19 18:00:00,9411.0
-2011-03-19 19:00:00,9495.0
-2011-03-19 20:00:00,9751.0
-2011-03-19 21:00:00,10500.0
-2011-03-19 22:00:00,10594.0
-2011-03-19 23:00:00,10385.0
-2011-03-20 00:00:00,9927.0
-2011-03-18 01:00:00,9529.0
-2011-03-18 02:00:00,8931.0
-2011-03-18 03:00:00,8585.0
-2011-03-18 04:00:00,8374.0
-2011-03-18 05:00:00,8343.0
-2011-03-18 06:00:00,8563.0
-2011-03-18 07:00:00,9204.0
-2011-03-18 08:00:00,10453.0
-2011-03-18 09:00:00,11043.0
-2011-03-18 10:00:00,11293.0
-2011-03-18 11:00:00,11361.0
-2011-03-18 12:00:00,11479.0
-2011-03-18 13:00:00,11387.0
-2011-03-18 14:00:00,11329.0
-2011-03-18 15:00:00,11284.0
-2011-03-18 16:00:00,11166.0
-2011-03-18 17:00:00,10967.0
-2011-03-18 18:00:00,10827.0
-2011-03-18 19:00:00,10703.0
-2011-03-18 20:00:00,10740.0
-2011-03-18 21:00:00,11349.0
-2011-03-18 22:00:00,11331.0
-2011-03-18 23:00:00,11034.0
-2011-03-19 00:00:00,10433.0
-2011-03-17 01:00:00,9770.0
-2011-03-17 02:00:00,9235.0
-2011-03-17 03:00:00,8912.0
-2011-03-17 04:00:00,8729.0
-2011-03-17 05:00:00,8670.0
-2011-03-17 06:00:00,8865.0
-2011-03-17 07:00:00,9530.0
-2011-03-17 08:00:00,10778.0
-2011-03-17 09:00:00,11420.0
-2011-03-17 10:00:00,11547.0
-2011-03-17 11:00:00,11572.0
-2011-03-17 12:00:00,11687.0
-2011-03-17 13:00:00,11697.0
-2011-03-17 14:00:00,11701.0
-2011-03-17 15:00:00,11744.0
-2011-03-17 16:00:00,11681.0
-2011-03-17 17:00:00,11577.0
-2011-03-17 18:00:00,11527.0
-2011-03-17 19:00:00,11430.0
-2011-03-17 20:00:00,11511.0
-2011-03-17 21:00:00,11879.0
-2011-03-17 22:00:00,11708.0
-2011-03-17 23:00:00,11203.0
-2011-03-18 00:00:00,10334.0
-2011-03-16 01:00:00,10377.0
-2011-03-16 02:00:00,9853.0
-2011-03-16 03:00:00,9534.0
-2011-03-16 04:00:00,9351.0
-2011-03-16 05:00:00,9327.0
-2011-03-16 06:00:00,9576.0
-2011-03-16 07:00:00,10281.0
-2011-03-16 08:00:00,11516.0
-2011-03-16 09:00:00,12053.0
-2011-03-16 10:00:00,12070.0
-2011-03-16 11:00:00,11986.0
-2011-03-16 12:00:00,11916.0
-2011-03-16 13:00:00,11849.0
-2011-03-16 14:00:00,11719.0
-2011-03-16 15:00:00,11684.0
-2011-03-16 16:00:00,11564.0
-2011-03-16 17:00:00,11380.0
-2011-03-16 18:00:00,11228.0
-2011-03-16 19:00:00,11042.0
-2011-03-16 20:00:00,11050.0
-2011-03-16 21:00:00,11707.0
-2011-03-16 22:00:00,11646.0
-2011-03-16 23:00:00,11259.0
-2011-03-17 00:00:00,10547.0
-2011-03-15 01:00:00,10527.0
-2011-03-15 02:00:00,9944.0
-2011-03-15 03:00:00,9644.0
-2011-03-15 04:00:00,9458.0
-2011-03-15 05:00:00,9448.0
-2011-03-15 06:00:00,9651.0
-2011-03-15 07:00:00,10372.0
-2011-03-15 08:00:00,11624.0
-2011-03-15 09:00:00,12340.0
-2011-03-15 10:00:00,12438.0
-2011-03-15 11:00:00,12432.0
-2011-03-15 12:00:00,12478.0
-2011-03-15 13:00:00,12481.0
-2011-03-15 14:00:00,12430.0
-2011-03-15 15:00:00,12462.0
-2011-03-15 16:00:00,12341.0
-2011-03-15 17:00:00,12183.0
-2011-03-15 18:00:00,12139.0
-2011-03-15 19:00:00,12202.0
-2011-03-15 20:00:00,12365.0
-2011-03-15 21:00:00,12706.0
-2011-03-15 22:00:00,12504.0
-2011-03-15 23:00:00,11978.0
-2011-03-16 00:00:00,11115.0
-2011-03-14 01:00:00,9943.0
-2011-03-14 02:00:00,9580.0
-2011-03-14 03:00:00,9349.0
-2011-03-14 04:00:00,9252.0
-2011-03-14 05:00:00,9298.0
-2011-03-14 06:00:00,9582.0
-2011-03-14 07:00:00,10345.0
-2011-03-14 08:00:00,11524.0
-2011-03-14 09:00:00,12226.0
-2011-03-14 10:00:00,12470.0
-2011-03-14 11:00:00,12480.0
-2011-03-14 12:00:00,12400.0
-2011-03-14 13:00:00,12218.0
-2011-03-14 14:00:00,12084.0
-2011-03-14 15:00:00,12000.0
-2011-03-14 16:00:00,11827.0
-2011-03-14 17:00:00,11638.0
-2011-03-14 18:00:00,11545.0
-2011-03-14 19:00:00,11502.0
-2011-03-14 20:00:00,11593.0
-2011-03-14 21:00:00,12458.0
-2011-03-14 22:00:00,12458.0
-2011-03-14 23:00:00,12039.0
-2011-03-15 00:00:00,11298.0
-2011-03-13 01:00:00,10149.0
-2011-03-13 02:00:00,9719.0
-2011-03-13 04:00:00,9477.0
-2011-03-13 05:00:00,9266.0
-2011-03-13 06:00:00,9290.0
-2011-03-13 07:00:00,9332.0
-2011-03-13 08:00:00,9621.0
-2011-03-13 09:00:00,9626.0
-2011-03-13 10:00:00,9831.0
-2011-03-13 11:00:00,10028.0
-2011-03-13 12:00:00,10079.0
-2011-03-13 13:00:00,10063.0
-2011-03-13 14:00:00,10006.0
-2011-03-13 15:00:00,9881.0
-2011-03-13 16:00:00,9842.0
-2011-03-13 17:00:00,9798.0
-2011-03-13 18:00:00,9929.0
-2011-03-13 19:00:00,10165.0
-2011-03-13 20:00:00,10505.0
-2011-03-13 21:00:00,11250.0
-2011-03-13 22:00:00,11262.0
-2011-03-13 23:00:00,11028.0
-2011-03-14 00:00:00,10529.0
-2011-03-12 01:00:00,10256.0
-2011-03-12 02:00:00,9653.0
-2011-03-12 03:00:00,9274.0
-2011-03-12 04:00:00,9098.0
-2011-03-12 05:00:00,9030.0
-2011-03-12 06:00:00,9091.0
-2011-03-12 07:00:00,9396.0
-2011-03-12 08:00:00,9779.0
-2011-03-12 09:00:00,10169.0
-2011-03-12 10:00:00,10653.0
-2011-03-12 11:00:00,11014.0
-2011-03-12 12:00:00,11200.0
-2011-03-12 13:00:00,11204.0
-2011-03-12 14:00:00,11078.0
-2011-03-12 15:00:00,10914.0
-2011-03-12 16:00:00,10757.0
-2011-03-12 17:00:00,10732.0
-2011-03-12 18:00:00,10795.0
-2011-03-12 19:00:00,11154.0
-2011-03-12 20:00:00,11704.0
-2011-03-12 21:00:00,11664.0
-2011-03-12 22:00:00,11477.0
-2011-03-12 23:00:00,11163.0
-2011-03-13 00:00:00,10650.0
-2011-03-11 01:00:00,10811.0
-2011-03-11 02:00:00,10288.0
-2011-03-11 03:00:00,10017.0
-2011-03-11 04:00:00,9844.0
-2011-03-11 05:00:00,9873.0
-2011-03-11 06:00:00,10151.0
-2011-03-11 07:00:00,10838.0
-2011-03-11 08:00:00,11679.0
-2011-03-11 09:00:00,12125.0
-2011-03-11 10:00:00,12206.0
-2011-03-11 11:00:00,12156.0
-2011-03-11 12:00:00,12154.0
-2011-03-11 13:00:00,12004.0
-2011-03-11 14:00:00,11851.0
-2011-03-11 15:00:00,11724.0
-2011-03-11 16:00:00,11523.0
-2011-03-11 17:00:00,11330.0
-2011-03-11 18:00:00,11323.0
-2011-03-11 19:00:00,11653.0
-2011-03-11 20:00:00,12272.0
-2011-03-11 21:00:00,12240.0
-2011-03-11 22:00:00,11964.0
-2011-03-11 23:00:00,11555.0
-2011-03-12 00:00:00,10931.0
-2011-03-10 01:00:00,10482.0
-2011-03-10 02:00:00,10003.0
-2011-03-10 03:00:00,9716.0
-2011-03-10 04:00:00,9588.0
-2011-03-10 05:00:00,9625.0
-2011-03-10 06:00:00,9913.0
-2011-03-10 07:00:00,10646.0
-2011-03-10 08:00:00,11751.0
-2011-03-10 09:00:00,12400.0
-2011-03-10 10:00:00,12683.0
-2011-03-10 11:00:00,12796.0
-2011-03-10 12:00:00,12897.0
-2011-03-10 13:00:00,12865.0
-2011-03-10 14:00:00,12805.0
-2011-03-10 15:00:00,12774.0
-2011-03-10 16:00:00,12678.0
-2011-03-10 17:00:00,12511.0
-2011-03-10 18:00:00,12383.0
-2011-03-10 19:00:00,12497.0
-2011-03-10 20:00:00,13189.0
-2011-03-10 21:00:00,13156.0
-2011-03-10 22:00:00,12839.0
-2011-03-10 23:00:00,12369.0
-2011-03-11 00:00:00,11533.0
-2011-03-09 01:00:00,10325.0
-2011-03-09 02:00:00,9796.0
-2011-03-09 03:00:00,9537.0
-2011-03-09 04:00:00,9420.0
-2011-03-09 05:00:00,9421.0
-2011-03-09 06:00:00,9723.0
-2011-03-09 07:00:00,10440.0
-2011-03-09 08:00:00,11487.0
-2011-03-09 09:00:00,12138.0
-2011-03-09 10:00:00,12321.0
-2011-03-09 11:00:00,12405.0
-2011-03-09 12:00:00,12455.0
-2011-03-09 13:00:00,12346.0
-2011-03-09 14:00:00,12250.0
-2011-03-09 15:00:00,12254.0
-2011-03-09 16:00:00,12217.0
-2011-03-09 17:00:00,12261.0
-2011-03-09 18:00:00,12409.0
-2011-03-09 19:00:00,12824.0
-2011-03-09 20:00:00,13007.0
-2011-03-09 21:00:00,12838.0
-2011-03-09 22:00:00,12542.0
-2011-03-09 23:00:00,12034.0
-2011-03-10 00:00:00,11250.0
-2011-03-08 01:00:00,10596.0
-2011-03-08 02:00:00,10116.0
-2011-03-08 03:00:00,9859.0
-2011-03-08 04:00:00,9691.0
-2011-03-08 05:00:00,9659.0
-2011-03-08 06:00:00,9923.0
-2011-03-08 07:00:00,10662.0
-2011-03-08 08:00:00,11599.0
-2011-03-08 09:00:00,12137.0
-2011-03-08 10:00:00,12247.0
-2011-03-08 11:00:00,12162.0
-2011-03-08 12:00:00,12161.0
-2011-03-08 13:00:00,12083.0
-2011-03-08 14:00:00,12020.0
-2011-03-08 15:00:00,12012.0
-2011-03-08 16:00:00,11943.0
-2011-03-08 17:00:00,11973.0
-2011-03-08 18:00:00,12292.0
-2011-03-08 19:00:00,12707.0
-2011-03-08 20:00:00,13144.0
-2011-03-08 21:00:00,12850.0
-2011-03-08 22:00:00,12529.0
-2011-03-08 23:00:00,11942.0
-2011-03-09 00:00:00,11073.0
-2011-03-07 01:00:00,10241.0
-2011-03-07 02:00:00,9882.0
-2011-03-07 03:00:00,9726.0
-2011-03-07 04:00:00,9626.0
-2011-03-07 05:00:00,9673.0
-2011-03-07 06:00:00,9989.0
-2011-03-07 07:00:00,10742.0
-2011-03-07 08:00:00,11687.0
-2011-03-07 09:00:00,12234.0
-2011-03-07 10:00:00,12547.0
-2011-03-07 11:00:00,12677.0
-2011-03-07 12:00:00,12770.0
-2011-03-07 13:00:00,12652.0
-2011-03-07 14:00:00,12610.0
-2011-03-07 15:00:00,12613.0
-2011-03-07 16:00:00,12553.0
-2011-03-07 17:00:00,12449.0
-2011-03-07 18:00:00,12511.0
-2011-03-07 19:00:00,12836.0
-2011-03-07 20:00:00,13273.0
-2011-03-07 21:00:00,13099.0
-2011-03-07 22:00:00,12800.0
-2011-03-07 23:00:00,12225.0
-2011-03-08 00:00:00,11337.0
-2011-03-06 01:00:00,10482.0
-2011-03-06 02:00:00,10075.0
-2011-03-06 03:00:00,9711.0
-2011-03-06 04:00:00,9564.0
-2011-03-06 05:00:00,9429.0
-2011-03-06 06:00:00,9519.0
-2011-03-06 07:00:00,9645.0
-2011-03-06 08:00:00,9745.0
-2011-03-06 09:00:00,9889.0
-2011-03-06 10:00:00,10247.0
-2011-03-06 11:00:00,10428.0
-2011-03-06 12:00:00,10549.0
-2011-03-06 13:00:00,10551.0
-2011-03-06 14:00:00,10431.0
-2011-03-06 15:00:00,10329.0
-2011-03-06 16:00:00,10204.0
-2011-03-06 17:00:00,10189.0
-2011-03-06 18:00:00,10379.0
-2011-03-06 19:00:00,10902.0
-2011-03-06 20:00:00,11816.0
-2011-03-06 21:00:00,11826.0
-2011-03-06 22:00:00,11681.0
-2011-03-06 23:00:00,11333.0
-2011-03-07 00:00:00,10783.0
-2011-03-05 01:00:00,10480.0
-2011-03-05 02:00:00,10000.0
-2011-03-05 03:00:00,9696.0
-2011-03-05 04:00:00,9506.0
-2011-03-05 05:00:00,9451.0
-2011-03-05 06:00:00,9505.0
-2011-03-05 07:00:00,9839.0
-2011-03-05 08:00:00,10234.0
-2011-03-05 09:00:00,10671.0
-2011-03-05 10:00:00,11082.0
-2011-03-05 11:00:00,11463.0
-2011-03-05 12:00:00,11585.0
-2011-03-05 13:00:00,11578.0
-2011-03-05 14:00:00,11500.0
-2011-03-05 15:00:00,11439.0
-2011-03-05 16:00:00,11320.0
-2011-03-05 17:00:00,11306.0
-2011-03-05 18:00:00,11377.0
-2011-03-05 19:00:00,11745.0
-2011-03-05 20:00:00,12180.0
-2011-03-05 21:00:00,12086.0
-2011-03-05 22:00:00,11854.0
-2011-03-05 23:00:00,11565.0
-2011-03-06 00:00:00,11025.0
-2011-03-04 01:00:00,10416.0
-2011-03-04 02:00:00,9909.0
-2011-03-04 03:00:00,9622.0
-2011-03-04 04:00:00,9418.0
-2011-03-04 05:00:00,9391.0
-2011-03-04 06:00:00,9596.0
-2011-03-04 07:00:00,10226.0
-2011-03-04 08:00:00,11347.0
-2011-03-04 09:00:00,11976.0
-2011-03-04 10:00:00,12190.0
-2011-03-04 11:00:00,12271.0
-2011-03-04 12:00:00,12166.0
-2011-03-04 13:00:00,11981.0
-2011-03-04 14:00:00,11830.0
-2011-03-04 15:00:00,11793.0
-2011-03-04 16:00:00,11765.0
-2011-03-04 17:00:00,11871.0
-2011-03-04 18:00:00,12206.0
-2011-03-04 19:00:00,12527.0
-2011-03-04 20:00:00,12606.0
-2011-03-04 21:00:00,12478.0
-2011-03-04 22:00:00,12300.0
-2011-03-04 23:00:00,11912.0
-2011-03-05 00:00:00,11180.0
-2011-03-03 01:00:00,11021.0
-2011-03-03 02:00:00,10536.0
-2011-03-03 03:00:00,10256.0
-2011-03-03 04:00:00,10098.0
-2011-03-03 05:00:00,10089.0
-2011-03-03 06:00:00,10333.0
-2011-03-03 07:00:00,11043.0
-2011-03-03 08:00:00,12099.0
-2011-03-03 09:00:00,12609.0
-2011-03-03 10:00:00,12742.0
-2011-03-03 11:00:00,12748.0
-2011-03-03 12:00:00,12705.0
-2011-03-03 13:00:00,12598.0
-2011-03-03 14:00:00,12429.0
-2011-03-03 15:00:00,12308.0
-2011-03-03 16:00:00,12170.0
-2011-03-03 17:00:00,12118.0
-2011-03-03 18:00:00,12231.0
-2011-03-03 19:00:00,12592.0
-2011-03-03 20:00:00,13092.0
-2011-03-03 21:00:00,12919.0
-2011-03-03 22:00:00,12565.0
-2011-03-03 23:00:00,12033.0
-2011-03-04 00:00:00,11166.0
-2011-03-02 01:00:00,10505.0
-2011-03-02 02:00:00,10043.0
-2011-03-02 03:00:00,9790.0
-2011-03-02 04:00:00,9649.0
-2011-03-02 05:00:00,9672.0
-2011-03-02 06:00:00,9965.0
-2011-03-02 07:00:00,10764.0
-2011-03-02 08:00:00,11779.0
-2011-03-02 09:00:00,12269.0
-2011-03-02 10:00:00,12412.0
-2011-03-02 11:00:00,12475.0
-2011-03-02 12:00:00,12527.0
-2011-03-02 13:00:00,12437.0
-2011-03-02 14:00:00,12362.0
-2011-03-02 15:00:00,12306.0
-2011-03-02 16:00:00,12166.0
-2011-03-02 17:00:00,12118.0
-2011-03-02 18:00:00,12224.0
-2011-03-02 19:00:00,12694.0
-2011-03-02 20:00:00,13402.0
-2011-03-02 21:00:00,13350.0
-2011-03-02 22:00:00,13090.0
-2011-03-02 23:00:00,12595.0
-2011-03-03 00:00:00,11750.0
-2011-03-01 01:00:00,10795.0
-2011-03-01 02:00:00,10351.0
-2011-03-01 03:00:00,10131.0
-2011-03-01 04:00:00,10005.0
-2011-03-01 05:00:00,10026.0
-2011-03-01 06:00:00,10314.0
-2011-03-01 07:00:00,11036.0
-2011-03-01 08:00:00,12041.0
-2011-03-01 09:00:00,12508.0
-2011-03-01 10:00:00,12621.0
-2011-03-01 11:00:00,12618.0
-2011-03-01 12:00:00,12581.0
-2011-03-01 13:00:00,12462.0
-2011-03-01 14:00:00,12307.0
-2011-03-01 15:00:00,12229.0
-2011-03-01 16:00:00,12086.0
-2011-03-01 17:00:00,12058.0
-2011-03-01 18:00:00,12128.0
-2011-03-01 19:00:00,12409.0
-2011-03-01 20:00:00,12987.0
-2011-03-01 21:00:00,12871.0
-2011-03-01 22:00:00,12587.0
-2011-03-01 23:00:00,12074.0
-2011-03-02 00:00:00,11278.0
-2011-02-28 01:00:00,10288.0
-2011-02-28 02:00:00,9917.0
-2011-02-28 03:00:00,9707.0
-2011-02-28 04:00:00,9652.0
-2011-02-28 05:00:00,9694.0
-2011-02-28 06:00:00,9998.0
-2011-02-28 07:00:00,10809.0
-2011-02-28 08:00:00,11976.0
-2011-02-28 09:00:00,12620.0
-2011-02-28 10:00:00,12764.0
-2011-02-28 11:00:00,12752.0
-2011-02-28 12:00:00,12769.0
-2011-02-28 13:00:00,12635.0
-2011-02-28 14:00:00,12479.0
-2011-02-28 15:00:00,12373.0
-2011-02-28 16:00:00,12198.0
-2011-02-28 17:00:00,12059.0
-2011-02-28 18:00:00,12126.0
-2011-02-28 19:00:00,12583.0
-2011-02-28 20:00:00,13257.0
-2011-02-28 21:00:00,13169.0
-2011-02-28 22:00:00,12900.0
-2011-02-28 23:00:00,12400.0
-2011-03-01 00:00:00,11527.0
-2011-02-27 01:00:00,10356.0
-2011-02-27 02:00:00,9890.0
-2011-02-27 03:00:00,9518.0
-2011-02-27 04:00:00,9372.0
-2011-02-27 05:00:00,9313.0
-2011-02-27 06:00:00,9371.0
-2011-02-27 07:00:00,9525.0
-2011-02-27 08:00:00,9664.0
-2011-02-27 09:00:00,9681.0
-2011-02-27 10:00:00,9917.0
-2011-02-27 11:00:00,9984.0
-2011-02-27 12:00:00,10072.0
-2011-02-27 13:00:00,10149.0
-2011-02-27 14:00:00,10307.0
-2011-02-27 15:00:00,10367.0
-2011-02-27 16:00:00,10516.0
-2011-02-27 17:00:00,10624.0
-2011-02-27 18:00:00,11018.0
-2011-02-27 19:00:00,11594.0
-2011-02-27 20:00:00,11941.0
-2011-02-27 21:00:00,11836.0
-2011-02-27 22:00:00,11679.0
-2011-02-27 23:00:00,11366.0
-2011-02-28 00:00:00,10878.0
-2011-02-26 01:00:00,10806.0
-2011-02-26 02:00:00,10280.0
-2011-02-26 03:00:00,9972.0
-2011-02-26 04:00:00,9785.0
-2011-02-26 05:00:00,9739.0
-2011-02-26 06:00:00,9779.0
-2011-02-26 07:00:00,10096.0
-2011-02-26 08:00:00,10466.0
-2011-02-26 09:00:00,10751.0
-2011-02-26 10:00:00,11216.0
-2011-02-26 11:00:00,11411.0
-2011-02-26 12:00:00,11588.0
-2011-02-26 13:00:00,11574.0
-2011-02-26 14:00:00,11458.0
-2011-02-26 15:00:00,11428.0
-2011-02-26 16:00:00,11267.0
-2011-02-26 17:00:00,11314.0
-2011-02-26 18:00:00,11456.0
-2011-02-26 19:00:00,11925.0
-2011-02-26 20:00:00,12181.0
-2011-02-26 21:00:00,12039.0
-2011-02-26 22:00:00,11845.0
-2011-02-26 23:00:00,11478.0
-2011-02-27 00:00:00,10967.0
-2011-02-25 01:00:00,10975.0
-2011-02-25 02:00:00,10444.0
-2011-02-25 03:00:00,10195.0
-2011-02-25 04:00:00,10064.0
-2011-02-25 05:00:00,10048.0
-2011-02-25 06:00:00,10286.0
-2011-02-25 07:00:00,10965.0
-2011-02-25 08:00:00,11942.0
-2011-02-25 09:00:00,12381.0
-2011-02-25 10:00:00,12623.0
-2011-02-25 11:00:00,12673.0
-2011-02-25 12:00:00,12689.0
-2011-02-25 13:00:00,12518.0
-2011-02-25 14:00:00,12428.0
-2011-02-25 15:00:00,12336.0
-2011-02-25 16:00:00,12122.0
-2011-02-25 17:00:00,11994.0
-2011-02-25 18:00:00,12124.0
-2011-02-25 19:00:00,12655.0
-2011-02-25 20:00:00,12977.0
-2011-02-25 21:00:00,12770.0
-2011-02-25 22:00:00,12495.0
-2011-02-25 23:00:00,12048.0
-2011-02-26 00:00:00,11438.0
-2011-02-24 01:00:00,10890.0
-2011-02-24 02:00:00,10336.0
-2011-02-24 03:00:00,9989.0
-2011-02-24 04:00:00,9817.0
-2011-02-24 05:00:00,9793.0
-2011-02-24 06:00:00,10042.0
-2011-02-24 07:00:00,10771.0
-2011-02-24 08:00:00,11901.0
-2011-02-24 09:00:00,12468.0
-2011-02-24 10:00:00,12683.0
-2011-02-24 11:00:00,12683.0
-2011-02-24 12:00:00,12651.0
-2011-02-24 13:00:00,12566.0
-2011-02-24 14:00:00,12544.0
-2011-02-24 15:00:00,12576.0
-2011-02-24 16:00:00,12525.0
-2011-02-24 17:00:00,12603.0
-2011-02-24 18:00:00,12851.0
-2011-02-24 19:00:00,13392.0
-2011-02-24 20:00:00,13584.0
-2011-02-24 21:00:00,13386.0
-2011-02-24 22:00:00,13015.0
-2011-02-24 23:00:00,12538.0
-2011-02-25 00:00:00,11757.0
-2011-02-23 01:00:00,11079.0
-2011-02-23 02:00:00,10578.0
-2011-02-23 03:00:00,10264.0
-2011-02-23 04:00:00,10095.0
-2011-02-23 05:00:00,10112.0
-2011-02-23 06:00:00,10394.0
-2011-02-23 07:00:00,11156.0
-2011-02-23 08:00:00,12316.0
-2011-02-23 09:00:00,12882.0
-2011-02-23 10:00:00,13108.0
-2011-02-23 11:00:00,13194.0
-2011-02-23 12:00:00,13226.0
-2011-02-23 13:00:00,13142.0
-2011-02-23 14:00:00,13020.0
-2011-02-23 15:00:00,12917.0
-2011-02-23 16:00:00,12754.0
-2011-02-23 17:00:00,12730.0
-2011-02-23 18:00:00,12925.0
-2011-02-23 19:00:00,13327.0
-2011-02-23 20:00:00,13616.0
-2011-02-23 21:00:00,13432.0
-2011-02-23 22:00:00,13122.0
-2011-02-23 23:00:00,12578.0
-2011-02-24 00:00:00,11699.0
-2011-02-22 01:00:00,11016.0
-2011-02-22 02:00:00,10550.0
-2011-02-22 03:00:00,10234.0
-2011-02-22 04:00:00,10073.0
-2011-02-22 05:00:00,10069.0
-2011-02-22 06:00:00,10349.0
-2011-02-22 07:00:00,11137.0
-2011-02-22 08:00:00,12262.0
-2011-02-22 09:00:00,12768.0
-2011-02-22 10:00:00,12965.0
-2011-02-22 11:00:00,13040.0
-2011-02-22 12:00:00,13126.0
-2011-02-22 13:00:00,13102.0
-2011-02-22 14:00:00,13082.0
-2011-02-22 15:00:00,13066.0
-2011-02-22 16:00:00,12950.0
-2011-02-22 17:00:00,12927.0
-2011-02-22 18:00:00,13020.0
-2011-02-22 19:00:00,13538.0
-2011-02-22 20:00:00,13823.0
-2011-02-22 21:00:00,13625.0
-2011-02-22 22:00:00,13283.0
-2011-02-22 23:00:00,12719.0
-2011-02-23 00:00:00,11855.0
-2011-02-21 01:00:00,10270.0
-2011-02-21 02:00:00,9838.0
-2011-02-21 03:00:00,9598.0
-2011-02-21 04:00:00,9514.0
-2011-02-21 05:00:00,9545.0
-2011-02-21 06:00:00,9809.0
-2011-02-21 07:00:00,10483.0
-2011-02-21 08:00:00,11411.0
-2011-02-21 09:00:00,12031.0
-2011-02-21 10:00:00,12446.0
-2011-02-21 11:00:00,12777.0
-2011-02-21 12:00:00,13026.0
-2011-02-21 13:00:00,13101.0
-2011-02-21 14:00:00,13086.0
-2011-02-21 15:00:00,13083.0
-2011-02-21 16:00:00,12988.0
-2011-02-21 17:00:00,12907.0
-2011-02-21 18:00:00,13085.0
-2011-02-21 19:00:00,13568.0
-2011-02-21 20:00:00,13721.0
-2011-02-21 21:00:00,13444.0
-2011-02-21 22:00:00,13137.0
-2011-02-21 23:00:00,12577.0
-2011-02-22 00:00:00,11764.0
-2011-02-20 01:00:00,10311.0
-2011-02-20 02:00:00,9854.0
-2011-02-20 03:00:00,9622.0
-2011-02-20 04:00:00,9338.0
-2011-02-20 05:00:00,9306.0
-2011-02-20 06:00:00,9277.0
-2011-02-20 07:00:00,9427.0
-2011-02-20 08:00:00,9682.0
-2011-02-20 09:00:00,9872.0
-2011-02-20 10:00:00,10207.0
-2011-02-20 11:00:00,10676.0
-2011-02-20 12:00:00,10794.0
-2011-02-20 13:00:00,10988.0
-2011-02-20 14:00:00,11006.0
-2011-02-20 15:00:00,11008.0
-2011-02-20 16:00:00,10978.0
-2011-02-20 17:00:00,11047.0
-2011-02-20 18:00:00,11370.0
-2011-02-20 19:00:00,11884.0
-2011-02-20 20:00:00,12027.0
-2011-02-20 21:00:00,11886.0
-2011-02-20 22:00:00,11679.0
-2011-02-20 23:00:00,11310.0
-2011-02-21 00:00:00,10815.0
-2011-02-19 01:00:00,10439.0
-2011-02-19 02:00:00,9912.0
-2011-02-19 03:00:00,9646.0
-2011-02-19 04:00:00,9447.0
-2011-02-19 05:00:00,9392.0
-2011-02-19 06:00:00,9506.0
-2011-02-19 07:00:00,9836.0
-2011-02-19 08:00:00,10269.0
-2011-02-19 09:00:00,10461.0
-2011-02-19 10:00:00,10772.0
-2011-02-19 11:00:00,10944.0
-2011-02-19 12:00:00,10990.0
-2011-02-19 13:00:00,10914.0
-2011-02-19 14:00:00,10760.0
-2011-02-19 15:00:00,10533.0
-2011-02-19 16:00:00,10317.0
-2011-02-19 17:00:00,10290.0
-2011-02-19 18:00:00,10442.0
-2011-02-19 19:00:00,11119.0
-2011-02-19 20:00:00,11738.0
-2011-02-19 21:00:00,11743.0
-2011-02-19 22:00:00,11595.0
-2011-02-19 23:00:00,11341.0
-2011-02-20 00:00:00,10810.0
-2011-02-18 01:00:00,9948.0
-2011-02-18 02:00:00,9394.0
-2011-02-18 03:00:00,9186.0
-2011-02-18 04:00:00,9024.0
-2011-02-18 05:00:00,9068.0
-2011-02-18 06:00:00,9361.0
-2011-02-18 07:00:00,10083.0
-2011-02-18 08:00:00,11179.0
-2011-02-18 09:00:00,11715.0
-2011-02-18 10:00:00,11836.0
-2011-02-18 11:00:00,11918.0
-2011-02-18 12:00:00,11963.0
-2011-02-18 13:00:00,11900.0
-2011-02-18 14:00:00,11803.0
-2011-02-18 15:00:00,11729.0
-2011-02-18 16:00:00,11549.0
-2011-02-18 17:00:00,11411.0
-2011-02-18 18:00:00,11480.0
-2011-02-18 19:00:00,11948.0
-2011-02-18 20:00:00,12402.0
-2011-02-18 21:00:00,12224.0
-2011-02-18 22:00:00,11979.0
-2011-02-18 23:00:00,11673.0
-2011-02-19 00:00:00,11026.0
-2011-02-17 01:00:00,9997.0
-2011-02-17 02:00:00,9511.0
-2011-02-17 03:00:00,9195.0
-2011-02-17 04:00:00,9008.0
-2011-02-17 05:00:00,8935.0
-2011-02-17 06:00:00,9178.0
-2011-02-17 07:00:00,9904.0
-2011-02-17 08:00:00,11017.0
-2011-02-17 09:00:00,11690.0
-2011-02-17 10:00:00,11886.0
-2011-02-17 11:00:00,12054.0
-2011-02-17 12:00:00,12139.0
-2011-02-17 13:00:00,12095.0
-2011-02-17 14:00:00,12058.0
-2011-02-17 15:00:00,12068.0
-2011-02-17 16:00:00,11983.0
-2011-02-17 17:00:00,11947.0
-2011-02-17 18:00:00,12042.0
-2011-02-17 19:00:00,12353.0
-2011-02-17 20:00:00,12627.0
-2011-02-17 21:00:00,12427.0
-2011-02-17 22:00:00,12067.0
-2011-02-17 23:00:00,11560.0
-2011-02-18 00:00:00,10722.0
-2011-02-16 01:00:00,10678.0
-2011-02-16 02:00:00,10103.0
-2011-02-16 03:00:00,9777.0
-2011-02-16 04:00:00,9614.0
-2011-02-16 05:00:00,9568.0
-2011-02-16 06:00:00,9811.0
-2011-02-16 07:00:00,10513.0
-2011-02-16 08:00:00,11607.0
-2011-02-16 09:00:00,12080.0
-2011-02-16 10:00:00,12232.0
-2011-02-16 11:00:00,12183.0
-2011-02-16 12:00:00,12120.0
-2011-02-16 13:00:00,12025.0
-2011-02-16 14:00:00,11858.0
-2011-02-16 15:00:00,11810.0
-2011-02-16 16:00:00,11724.0
-2011-02-16 17:00:00,11650.0
-2011-02-16 18:00:00,11629.0
-2011-02-16 19:00:00,12300.0
-2011-02-16 20:00:00,12697.0
-2011-02-16 21:00:00,12535.0
-2011-02-16 22:00:00,12185.0
-2011-02-16 23:00:00,11633.0
-2011-02-17 00:00:00,10814.0
-2011-02-15 01:00:00,10697.0
-2011-02-15 02:00:00,10233.0
-2011-02-15 03:00:00,9959.0
-2011-02-15 04:00:00,9814.0
-2011-02-15 05:00:00,9844.0
-2011-02-15 06:00:00,10132.0
-2011-02-15 07:00:00,10945.0
-2011-02-15 08:00:00,12091.0
-2011-02-15 09:00:00,12596.0
-2011-02-15 10:00:00,12666.0
-2011-02-15 11:00:00,12610.0
-2011-02-15 12:00:00,12697.0
-2011-02-15 13:00:00,12684.0
-2011-02-15 14:00:00,12608.0
-2011-02-15 15:00:00,12579.0
-2011-02-15 16:00:00,12505.0
-2011-02-15 17:00:00,12442.0
-2011-02-15 18:00:00,12617.0
-2011-02-15 19:00:00,13184.0
-2011-02-15 20:00:00,13472.0
-2011-02-15 21:00:00,13251.0
-2011-02-15 22:00:00,12919.0
-2011-02-15 23:00:00,12337.0
-2011-02-16 00:00:00,11480.0
-2011-02-14 01:00:00,9986.0
-2011-02-14 02:00:00,9583.0
-2011-02-14 03:00:00,9442.0
-2011-02-14 04:00:00,9387.0
-2011-02-14 05:00:00,9428.0
-2011-02-14 06:00:00,9704.0
-2011-02-14 07:00:00,10469.0
-2011-02-14 08:00:00,11676.0
-2011-02-14 09:00:00,12253.0
-2011-02-14 10:00:00,12492.0
-2011-02-14 11:00:00,12589.0
-2011-02-14 12:00:00,12503.0
-2011-02-14 13:00:00,12409.0
-2011-02-14 14:00:00,12295.0
-2011-02-14 15:00:00,12149.0
-2011-02-14 16:00:00,11980.0
-2011-02-14 17:00:00,11846.0
-2011-02-14 18:00:00,11941.0
-2011-02-14 19:00:00,12581.0
-2011-02-14 20:00:00,13013.0
-2011-02-14 21:00:00,12874.0
-2011-02-14 22:00:00,12629.0
-2011-02-14 23:00:00,12180.0
-2011-02-15 00:00:00,11431.0
-2011-02-13 01:00:00,10424.0
-2011-02-13 02:00:00,9944.0
-2011-02-13 03:00:00,9685.0
-2011-02-13 04:00:00,9497.0
-2011-02-13 05:00:00,9396.0
-2011-02-13 06:00:00,9490.0
-2011-02-13 07:00:00,9618.0
-2011-02-13 08:00:00,9878.0
-2011-02-13 09:00:00,9852.0
-2011-02-13 10:00:00,10175.0
-2011-02-13 11:00:00,10283.0
-2011-02-13 12:00:00,10300.0
-2011-02-13 13:00:00,10181.0
-2011-02-13 14:00:00,10128.0
-2011-02-13 15:00:00,9988.0
-2011-02-13 16:00:00,9912.0
-2011-02-13 17:00:00,9896.0
-2011-02-13 18:00:00,10164.0
-2011-02-13 19:00:00,11022.0
-2011-02-13 20:00:00,11726.0
-2011-02-13 21:00:00,11670.0
-2011-02-13 22:00:00,11499.0
-2011-02-13 23:00:00,11138.0
-2011-02-14 00:00:00,10560.0
-2011-02-12 01:00:00,11532.0
-2011-02-12 02:00:00,10968.0
-2011-02-12 03:00:00,10562.0
-2011-02-12 04:00:00,10299.0
-2011-02-12 05:00:00,10260.0
-2011-02-12 06:00:00,10302.0
-2011-02-12 07:00:00,10638.0
-2011-02-12 08:00:00,11059.0
-2011-02-12 09:00:00,11229.0
-2011-02-12 10:00:00,11430.0
-2011-02-12 11:00:00,11568.0
-2011-02-12 12:00:00,11533.0
-2011-02-12 13:00:00,11429.0
-2011-02-12 14:00:00,11213.0
-2011-02-12 15:00:00,11074.0
-2011-02-12 16:00:00,10984.0
-2011-02-12 17:00:00,11032.0
-2011-02-12 18:00:00,11221.0
-2011-02-12 19:00:00,11975.0
-2011-02-12 20:00:00,12212.0
-2011-02-12 21:00:00,12119.0
-2011-02-12 22:00:00,11923.0
-2011-02-12 23:00:00,11551.0
-2011-02-13 00:00:00,10995.0
-2011-02-11 01:00:00,12311.0
-2011-02-11 02:00:00,11892.0
-2011-02-11 03:00:00,11588.0
-2011-02-11 04:00:00,11482.0
-2011-02-11 05:00:00,11446.0
-2011-02-11 06:00:00,11669.0
-2011-02-11 07:00:00,12287.0
-2011-02-11 08:00:00,13296.0
-2011-02-11 09:00:00,13682.0
-2011-02-11 10:00:00,13832.0
-2011-02-11 11:00:00,13944.0
-2011-02-11 12:00:00,13971.0
-2011-02-11 13:00:00,13810.0
-2011-02-11 14:00:00,13674.0
-2011-02-11 15:00:00,13688.0
-2011-02-11 16:00:00,13620.0
-2011-02-11 17:00:00,13433.0
-2011-02-11 18:00:00,13524.0
-2011-02-11 19:00:00,14076.0
-2011-02-11 20:00:00,14173.0
-2011-02-11 21:00:00,13887.0
-2011-02-11 22:00:00,13513.0
-2011-02-11 23:00:00,13069.0
-2011-02-12 00:00:00,12302.0
-2011-02-10 01:00:00,12685.0
-2011-02-10 02:00:00,12249.0
-2011-02-10 03:00:00,12031.0
-2011-02-10 04:00:00,11918.0
-2011-02-10 05:00:00,11957.0
-2011-02-10 06:00:00,12206.0
-2011-02-10 07:00:00,12838.0
-2011-02-10 08:00:00,13973.0
-2011-02-10 09:00:00,14371.0
-2011-02-10 10:00:00,14402.0
-2011-02-10 11:00:00,14328.0
-2011-02-10 12:00:00,14259.0
-2011-02-10 13:00:00,14140.0
-2011-02-10 14:00:00,13991.0
-2011-02-10 15:00:00,13899.0
-2011-02-10 16:00:00,13758.0
-2011-02-10 17:00:00,13662.0
-2011-02-10 18:00:00,13821.0
-2011-02-10 19:00:00,14582.0
-2011-02-10 20:00:00,14965.0
-2011-02-10 21:00:00,14831.0
-2011-02-10 22:00:00,14469.0
-2011-02-10 23:00:00,13965.0
-2011-02-11 00:00:00,13120.0
-2011-02-09 01:00:00,12435.0
-2011-02-09 02:00:00,11947.0
-2011-02-09 03:00:00,11720.0
-2011-02-09 04:00:00,11593.0
-2011-02-09 05:00:00,11615.0
-2011-02-09 06:00:00,11848.0
-2011-02-09 07:00:00,12548.0
-2011-02-09 08:00:00,13669.0
-2011-02-09 09:00:00,14098.0
-2011-02-09 10:00:00,14219.0
-2011-02-09 11:00:00,14226.0
-2011-02-09 12:00:00,14162.0
-2011-02-09 13:00:00,14025.0
-2011-02-09 14:00:00,13860.0
-2011-02-09 15:00:00,13807.0
-2011-02-09 16:00:00,13681.0
-2011-02-09 17:00:00,13677.0
-2011-02-09 18:00:00,13873.0
-2011-02-09 19:00:00,14705.0
-2011-02-09 20:00:00,15052.0
-2011-02-09 21:00:00,14978.0
-2011-02-09 22:00:00,14728.0
-2011-02-09 23:00:00,14230.0
-2011-02-10 00:00:00,13420.0
-2011-02-08 01:00:00,11387.0
-2011-02-08 02:00:00,10950.0
-2011-02-08 03:00:00,10715.0
-2011-02-08 04:00:00,10628.0
-2011-02-08 05:00:00,10698.0
-2011-02-08 06:00:00,11005.0
-2011-02-08 07:00:00,11794.0
-2011-02-08 08:00:00,12997.0
-2011-02-08 09:00:00,13470.0
-2011-02-08 10:00:00,13618.0
-2011-02-08 11:00:00,13580.0
-2011-02-08 12:00:00,13547.0
-2011-02-08 13:00:00,13445.0
-2011-02-08 14:00:00,13335.0
-2011-02-08 15:00:00,13294.0
-2011-02-08 16:00:00,13191.0
-2011-02-08 17:00:00,13203.0
-2011-02-08 18:00:00,13503.0
-2011-02-08 19:00:00,14294.0
-2011-02-08 20:00:00,14795.0
-2011-02-08 21:00:00,14726.0
-2011-02-08 22:00:00,14527.0
-2011-02-08 23:00:00,13998.0
-2011-02-09 00:00:00,13195.0
-2011-02-07 01:00:00,10486.0
-2011-02-07 02:00:00,10087.0
-2011-02-07 03:00:00,9919.0
-2011-02-07 04:00:00,9782.0
-2011-02-07 05:00:00,9841.0
-2011-02-07 06:00:00,10185.0
-2011-02-07 07:00:00,11003.0
-2011-02-07 08:00:00,12238.0
-2011-02-07 09:00:00,12714.0
-2011-02-07 10:00:00,12851.0
-2011-02-07 11:00:00,12834.0
-2011-02-07 12:00:00,12803.0
-2011-02-07 13:00:00,12717.0
-2011-02-07 14:00:00,12667.0
-2011-02-07 15:00:00,12788.0
-2011-02-07 16:00:00,12809.0
-2011-02-07 17:00:00,12875.0
-2011-02-07 18:00:00,13095.0
-2011-02-07 19:00:00,13756.0
-2011-02-07 20:00:00,13894.0
-2011-02-07 21:00:00,13701.0
-2011-02-07 22:00:00,13445.0
-2011-02-07 23:00:00,12913.0
-2011-02-08 00:00:00,12116.0
-2011-02-06 01:00:00,10900.0
-2011-02-06 02:00:00,10404.0
-2011-02-06 03:00:00,10150.0
-2011-02-06 04:00:00,9912.0
-2011-02-06 05:00:00,9827.0
-2011-02-06 06:00:00,9818.0
-2011-02-06 07:00:00,9988.0
-2011-02-06 08:00:00,10253.0
-2011-02-06 09:00:00,10348.0
-2011-02-06 10:00:00,10571.0
-2011-02-06 11:00:00,10854.0
-2011-02-06 12:00:00,10988.0
-2011-02-06 13:00:00,11075.0
-2011-02-06 14:00:00,11088.0
-2011-02-06 15:00:00,11099.0
-2011-02-06 16:00:00,11144.0
-2011-02-06 17:00:00,11193.0
-2011-02-06 18:00:00,11487.0
-2011-02-06 19:00:00,12069.0
-2011-02-06 20:00:00,12143.0
-2011-02-06 21:00:00,11957.0
-2011-02-06 22:00:00,11795.0
-2011-02-06 23:00:00,11564.0
-2011-02-07 00:00:00,11071.0
-2011-02-05 01:00:00,11902.0
-2011-02-05 02:00:00,11404.0
-2011-02-05 03:00:00,11067.0
-2011-02-05 04:00:00,10888.0
-2011-02-05 05:00:00,10778.0
-2011-02-05 06:00:00,10879.0
-2011-02-05 07:00:00,11138.0
-2011-02-05 08:00:00,11600.0
-2011-02-05 09:00:00,11731.0
-2011-02-05 10:00:00,12002.0
-2011-02-05 11:00:00,12101.0
-2011-02-05 12:00:00,12126.0
-2011-02-05 13:00:00,11979.0
-2011-02-05 14:00:00,11747.0
-2011-02-05 15:00:00,11517.0
-2011-02-05 16:00:00,11296.0
-2011-02-05 17:00:00,11227.0
-2011-02-05 18:00:00,11512.0
-2011-02-05 19:00:00,12335.0
-2011-02-05 20:00:00,12675.0
-2011-02-05 21:00:00,12555.0
-2011-02-05 22:00:00,12337.0
-2011-02-05 23:00:00,12027.0
-2011-02-06 00:00:00,11457.0
-2011-02-04 01:00:00,12319.0
-2011-02-04 02:00:00,11865.0
-2011-02-04 03:00:00,11604.0
-2011-02-04 04:00:00,11428.0
-2011-02-04 05:00:00,11467.0
-2011-02-04 06:00:00,11642.0
-2011-02-04 07:00:00,12302.0
-2011-02-04 08:00:00,13349.0
-2011-02-04 09:00:00,13767.0
-2011-02-04 10:00:00,13739.0
-2011-02-04 11:00:00,13744.0
-2011-02-04 12:00:00,13671.0
-2011-02-04 13:00:00,13528.0
-2011-02-04 14:00:00,13364.0
-2011-02-04 15:00:00,13216.0
-2011-02-04 16:00:00,13014.0
-2011-02-04 17:00:00,12875.0
-2011-02-04 18:00:00,13047.0
-2011-02-04 19:00:00,13838.0
-2011-02-04 20:00:00,14093.0
-2011-02-04 21:00:00,13924.0
-2011-02-04 22:00:00,13619.0
-2011-02-04 23:00:00,13278.0
-2011-02-05 00:00:00,12631.0
-2011-02-03 01:00:00,11068.0
-2011-02-03 02:00:00,10773.0
-2011-02-03 03:00:00,10667.0
-2011-02-03 04:00:00,10618.0
-2011-02-03 05:00:00,10716.0
-2011-02-03 06:00:00,11028.0
-2011-02-03 07:00:00,11709.0
-2011-02-03 08:00:00,12649.0
-2011-02-03 09:00:00,13098.0
-2011-02-03 10:00:00,13350.0
-2011-02-03 11:00:00,13510.0
-2011-02-03 12:00:00,13592.0
-2011-02-03 13:00:00,13559.0
-2011-02-03 14:00:00,13518.0
-2011-02-03 15:00:00,13458.0
-2011-02-03 16:00:00,13356.0
-2011-02-03 17:00:00,13212.0
-2011-02-03 18:00:00,13445.0
-2011-02-03 19:00:00,14378.0
-2011-02-03 20:00:00,14721.0
-2011-02-03 21:00:00,14654.0
-2011-02-03 22:00:00,14382.0
-2011-02-03 23:00:00,13889.0
-2011-02-04 00:00:00,13072.0
-2011-02-02 01:00:00,11056.0
-2011-02-02 02:00:00,10554.0
-2011-02-02 03:00:00,10295.0
-2011-02-02 04:00:00,10153.0
-2011-02-02 05:00:00,10116.0
-2011-02-02 06:00:00,10207.0
-2011-02-02 07:00:00,10475.0
-2011-02-02 08:00:00,11086.0
-2011-02-02 09:00:00,11147.0
-2011-02-02 10:00:00,11352.0
-2011-02-02 11:00:00,11439.0
-2011-02-02 12:00:00,11394.0
-2011-02-02 13:00:00,11318.0
-2011-02-02 14:00:00,11176.0
-2011-02-02 15:00:00,11045.0
-2011-02-02 16:00:00,10999.0
-2011-02-02 17:00:00,11179.0
-2011-02-02 18:00:00,11605.0
-2011-02-02 19:00:00,12666.0
-2011-02-02 20:00:00,12960.0
-2011-02-02 21:00:00,12810.0
-2011-02-02 22:00:00,12552.0
-2011-02-02 23:00:00,12182.0
-2011-02-03 00:00:00,11580.0
-2011-02-01 01:00:00,11665.0
-2011-02-01 02:00:00,11152.0
-2011-02-01 03:00:00,10883.0
-2011-02-01 04:00:00,10762.0
-2011-02-01 05:00:00,10776.0
-2011-02-01 06:00:00,11058.0
-2011-02-01 07:00:00,11786.0
-2011-02-01 08:00:00,12961.0
-2011-02-01 09:00:00,13502.0
-2011-02-01 10:00:00,13695.0
-2011-02-01 11:00:00,13811.0
-2011-02-01 12:00:00,13937.0
-2011-02-01 13:00:00,13944.0
-2011-02-01 14:00:00,13892.0
-2011-02-01 15:00:00,13847.0
-2011-02-01 16:00:00,13629.0
-2011-02-01 17:00:00,13314.0
-2011-02-01 18:00:00,13517.0
-2011-02-01 19:00:00,14175.0
-2011-02-01 20:00:00,13967.0
-2011-02-01 21:00:00,13467.0
-2011-02-01 22:00:00,12972.0
-2011-02-01 23:00:00,12462.0
-2011-02-02 00:00:00,11754.0
-2011-01-31 01:00:00,10565.0
-2011-01-31 02:00:00,10175.0
-2011-01-31 03:00:00,10056.0
-2011-01-31 04:00:00,9992.0
-2011-01-31 05:00:00,10089.0
-2011-01-31 06:00:00,10470.0
-2011-01-31 07:00:00,11255.0
-2011-01-31 08:00:00,12599.0
-2011-01-31 09:00:00,13226.0
-2011-01-31 10:00:00,13447.0
-2011-01-31 11:00:00,13488.0
-2011-01-31 12:00:00,13521.0
-2011-01-31 13:00:00,13316.0
-2011-01-31 14:00:00,13210.0
-2011-01-31 15:00:00,13273.0
-2011-01-31 16:00:00,13249.0
-2011-01-31 17:00:00,13324.0
-2011-01-31 18:00:00,13631.0
-2011-01-31 19:00:00,14332.0
-2011-01-31 20:00:00,14390.0
-2011-01-31 21:00:00,14165.0
-2011-01-31 22:00:00,13907.0
-2011-01-31 23:00:00,13332.0
-2011-02-01 00:00:00,12453.0
-2011-01-30 01:00:00,10436.0
-2011-01-30 02:00:00,9949.0
-2011-01-30 03:00:00,9611.0
-2011-01-30 04:00:00,9433.0
-2011-01-30 05:00:00,9361.0
-2011-01-30 06:00:00,9339.0
-2011-01-30 07:00:00,9520.0
-2011-01-30 08:00:00,9816.0
-2011-01-30 09:00:00,9959.0
-2011-01-30 10:00:00,10282.0
-2011-01-30 11:00:00,10607.0
-2011-01-30 12:00:00,10829.0
-2011-01-30 13:00:00,10946.0
-2011-01-30 14:00:00,10953.0
-2011-01-30 15:00:00,10947.0
-2011-01-30 16:00:00,10923.0
-2011-01-30 17:00:00,10985.0
-2011-01-30 18:00:00,11351.0
-2011-01-30 19:00:00,12239.0
-2011-01-30 20:00:00,12435.0
-2011-01-30 21:00:00,12346.0
-2011-01-30 22:00:00,12140.0
-2011-01-30 23:00:00,11759.0
-2011-01-31 00:00:00,11165.0
-2011-01-29 01:00:00,11256.0
-2011-01-29 02:00:00,10679.0
-2011-01-29 03:00:00,10336.0
-2011-01-29 04:00:00,10057.0
-2011-01-29 05:00:00,10005.0
-2011-01-29 06:00:00,10013.0
-2011-01-29 07:00:00,10299.0
-2011-01-29 08:00:00,10750.0
-2011-01-29 09:00:00,11031.0
-2011-01-29 10:00:00,11375.0
-2011-01-29 11:00:00,11658.0
-2011-01-29 12:00:00,11704.0
-2011-01-29 13:00:00,11665.0
-2011-01-29 14:00:00,11464.0
-2011-01-29 15:00:00,11254.0
-2011-01-29 16:00:00,11073.0
-2011-01-29 17:00:00,11093.0
-2011-01-29 18:00:00,11382.0
-2011-01-29 19:00:00,12161.0
-2011-01-29 20:00:00,12223.0
-2011-01-29 21:00:00,12045.0
-2011-01-29 22:00:00,11866.0
-2011-01-29 23:00:00,11542.0
-2011-01-30 00:00:00,11001.0
-2011-01-28 01:00:00,11462.0
-2011-01-28 02:00:00,10937.0
-2011-01-28 03:00:00,10668.0
-2011-01-28 04:00:00,10445.0
-2011-01-28 05:00:00,10493.0
-2011-01-28 06:00:00,10737.0
-2011-01-28 07:00:00,11451.0
-2011-01-28 08:00:00,12591.0
-2011-01-28 09:00:00,13023.0
-2011-01-28 10:00:00,13058.0
-2011-01-28 11:00:00,13017.0
-2011-01-28 12:00:00,12893.0
-2011-01-28 13:00:00,12773.0
-2011-01-28 14:00:00,12650.0
-2011-01-28 15:00:00,12693.0
-2011-01-28 16:00:00,12619.0
-2011-01-28 17:00:00,12632.0
-2011-01-28 18:00:00,12966.0
-2011-01-28 19:00:00,13631.0
-2011-01-28 20:00:00,13557.0
-2011-01-28 21:00:00,13348.0
-2011-01-28 22:00:00,13073.0
-2011-01-28 23:00:00,12705.0
-2011-01-29 00:00:00,11965.0
-2011-01-27 01:00:00,11531.0
-2011-01-27 02:00:00,11061.0
-2011-01-27 03:00:00,10814.0
-2011-01-27 04:00:00,10643.0
-2011-01-27 05:00:00,10685.0
-2011-01-27 06:00:00,10967.0
-2011-01-27 07:00:00,11637.0
-2011-01-27 08:00:00,12812.0
-2011-01-27 09:00:00,13477.0
-2011-01-27 10:00:00,13580.0
-2011-01-27 11:00:00,13673.0
-2011-01-27 12:00:00,13743.0
-2011-01-27 13:00:00,13657.0
-2011-01-27 14:00:00,13504.0
-2011-01-27 15:00:00,13466.0
-2011-01-27 16:00:00,13365.0
-2011-01-27 17:00:00,13296.0
-2011-01-27 18:00:00,13541.0
-2011-01-27 19:00:00,14227.0
-2011-01-27 20:00:00,14222.0
-2011-01-27 21:00:00,14007.0
-2011-01-27 22:00:00,13644.0
-2011-01-27 23:00:00,13124.0
-2011-01-28 00:00:00,12248.0
-2011-01-26 01:00:00,11092.0
-2011-01-26 02:00:00,10603.0
-2011-01-26 03:00:00,10318.0
-2011-01-26 04:00:00,10146.0
-2011-01-26 05:00:00,10165.0
-2011-01-26 06:00:00,10425.0
-2011-01-26 07:00:00,11150.0
-2011-01-26 08:00:00,12347.0
-2011-01-26 09:00:00,13025.0
-2011-01-26 10:00:00,13166.0
-2011-01-26 11:00:00,13274.0
-2011-01-26 12:00:00,13423.0
-2011-01-26 13:00:00,13406.0
-2011-01-26 14:00:00,13391.0
-2011-01-26 15:00:00,13431.0
-2011-01-26 16:00:00,13385.0
-2011-01-26 17:00:00,13413.0
-2011-01-26 18:00:00,13796.0
-2011-01-26 19:00:00,14383.0
-2011-01-26 20:00:00,14267.0
-2011-01-26 21:00:00,14032.0
-2011-01-26 22:00:00,13722.0
-2011-01-26 23:00:00,13186.0
-2011-01-27 00:00:00,12318.0
-2011-01-25 01:00:00,11544.0
-2011-01-25 02:00:00,11034.0
-2011-01-25 03:00:00,10705.0
-2011-01-25 04:00:00,10515.0
-2011-01-25 05:00:00,10522.0
-2011-01-25 06:00:00,10784.0
-2011-01-25 07:00:00,11434.0
-2011-01-25 08:00:00,12621.0
-2011-01-25 09:00:00,13226.0
-2011-01-25 10:00:00,13318.0
-2011-01-25 11:00:00,13371.0
-2011-01-25 12:00:00,13459.0
-2011-01-25 13:00:00,13374.0
-2011-01-25 14:00:00,13195.0
-2011-01-25 15:00:00,13083.0
-2011-01-25 16:00:00,12981.0
-2011-01-25 17:00:00,13039.0
-2011-01-25 18:00:00,13386.0
-2011-01-25 19:00:00,14043.0
-2011-01-25 20:00:00,13949.0
-2011-01-25 21:00:00,13713.0
-2011-01-25 22:00:00,13393.0
-2011-01-25 23:00:00,12804.0
-2011-01-26 00:00:00,11914.0
-2011-01-24 01:00:00,11401.0
-2011-01-24 02:00:00,11005.0
-2011-01-24 03:00:00,10828.0
-2011-01-24 04:00:00,10756.0
-2011-01-24 05:00:00,10804.0
-2011-01-24 06:00:00,11059.0
-2011-01-24 07:00:00,11725.0
-2011-01-24 08:00:00,12900.0
-2011-01-24 09:00:00,13516.0
-2011-01-24 10:00:00,13630.0
-2011-01-24 11:00:00,13684.0
-2011-01-24 12:00:00,13740.0
-2011-01-24 13:00:00,13643.0
-2011-01-24 14:00:00,13576.0
-2011-01-24 15:00:00,13562.0
-2011-01-24 16:00:00,13469.0
-2011-01-24 17:00:00,13477.0
-2011-01-24 18:00:00,13763.0
-2011-01-24 19:00:00,14411.0
-2011-01-24 20:00:00,14334.0
-2011-01-24 21:00:00,14121.0
-2011-01-24 22:00:00,13799.0
-2011-01-24 23:00:00,13249.0
-2011-01-25 00:00:00,12371.0
-2011-01-23 01:00:00,11908.0
-2011-01-23 02:00:00,11503.0
-2011-01-23 03:00:00,11280.0
-2011-01-23 04:00:00,11068.0
-2011-01-23 05:00:00,11044.0
-2011-01-23 06:00:00,11026.0
-2011-01-23 07:00:00,11195.0
-2011-01-23 08:00:00,11471.0
-2011-01-23 09:00:00,11505.0
-2011-01-23 10:00:00,11715.0
-2011-01-23 11:00:00,11728.0
-2011-01-23 12:00:00,11728.0
-2011-01-23 13:00:00,11652.0
-2011-01-23 14:00:00,11635.0
-2011-01-23 15:00:00,11498.0
-2011-01-23 16:00:00,11373.0
-2011-01-23 17:00:00,11383.0
-2011-01-23 18:00:00,11847.0
-2011-01-23 19:00:00,12869.0
-2011-01-23 20:00:00,13215.0
-2011-01-23 21:00:00,13188.0
-2011-01-23 22:00:00,12980.0
-2011-01-23 23:00:00,12591.0
-2011-01-24 00:00:00,11924.0
-2011-01-22 01:00:00,12449.0
-2011-01-22 02:00:00,11964.0
-2011-01-22 03:00:00,11630.0
-2011-01-22 04:00:00,11388.0
-2011-01-22 05:00:00,11341.0
-2011-01-22 06:00:00,11402.0
-2011-01-22 07:00:00,11709.0
-2011-01-22 08:00:00,12111.0
-2011-01-22 09:00:00,12392.0
-2011-01-22 10:00:00,12665.0
-2011-01-22 11:00:00,12888.0
-2011-01-22 12:00:00,12900.0
-2011-01-22 13:00:00,12727.0
-2011-01-22 14:00:00,12459.0
-2011-01-22 15:00:00,12224.0
-2011-01-22 16:00:00,12165.0
-2011-01-22 17:00:00,12301.0
-2011-01-22 18:00:00,12693.0
-2011-01-22 19:00:00,13544.0
-2011-01-22 20:00:00,13573.0
-2011-01-22 21:00:00,13491.0
-2011-01-22 22:00:00,13287.0
-2011-01-22 23:00:00,12995.0
-2011-01-23 00:00:00,12447.0
-2011-01-21 01:00:00,12417.0
-2011-01-21 02:00:00,11993.0
-2011-01-21 03:00:00,11757.0
-2011-01-21 04:00:00,11632.0
-2011-01-21 05:00:00,11666.0
-2011-01-21 06:00:00,11953.0
-2011-01-21 07:00:00,12580.0
-2011-01-21 08:00:00,13734.0
-2011-01-21 09:00:00,14255.0
-2011-01-21 10:00:00,14292.0
-2011-01-21 11:00:00,14289.0
-2011-01-21 12:00:00,14262.0
-2011-01-21 13:00:00,14148.0
-2011-01-21 14:00:00,14030.0
-2011-01-21 15:00:00,13941.0
-2011-01-21 16:00:00,13802.0
-2011-01-21 17:00:00,13784.0
-2011-01-21 18:00:00,14153.0
-2011-01-21 19:00:00,14949.0
-2011-01-21 20:00:00,14945.0
-2011-01-21 21:00:00,14717.0
-2011-01-21 22:00:00,14449.0
-2011-01-21 23:00:00,13973.0
-2011-01-22 00:00:00,13245.0
-2011-01-20 01:00:00,11651.0
-2011-01-20 02:00:00,11176.0
-2011-01-20 03:00:00,10892.0
-2011-01-20 04:00:00,10713.0
-2011-01-20 05:00:00,10690.0
-2011-01-20 06:00:00,10952.0
-2011-01-20 07:00:00,11659.0
-2011-01-20 08:00:00,12925.0
-2011-01-20 09:00:00,13577.0
-2011-01-20 10:00:00,13719.0
-2011-01-20 11:00:00,13779.0
-2011-01-20 12:00:00,13836.0
-2011-01-20 13:00:00,13692.0
-2011-01-20 14:00:00,13573.0
-2011-01-20 15:00:00,13550.0
-2011-01-20 16:00:00,13418.0
-2011-01-20 17:00:00,13364.0
-2011-01-20 18:00:00,13766.0
-2011-01-20 19:00:00,14702.0
-2011-01-20 20:00:00,14725.0
-2011-01-20 21:00:00,14598.0
-2011-01-20 22:00:00,14363.0
-2011-01-20 23:00:00,13882.0
-2011-01-21 00:00:00,13108.0
-2011-01-19 01:00:00,11359.0
-2011-01-19 02:00:00,10884.0
-2011-01-19 03:00:00,10628.0
-2011-01-19 04:00:00,10469.0
-2011-01-19 05:00:00,10506.0
-2011-01-19 06:00:00,10780.0
-2011-01-19 07:00:00,11515.0
-2011-01-19 08:00:00,12736.0
-2011-01-19 09:00:00,13406.0
-2011-01-19 10:00:00,13477.0
-2011-01-19 11:00:00,13499.0
-2011-01-19 12:00:00,13511.0
-2011-01-19 13:00:00,13358.0
-2011-01-19 14:00:00,13185.0
-2011-01-19 15:00:00,13056.0
-2011-01-19 16:00:00,12943.0
-2011-01-19 17:00:00,12909.0
-2011-01-19 18:00:00,13370.0
-2011-01-19 19:00:00,14307.0
-2011-01-19 20:00:00,14311.0
-2011-01-19 21:00:00,14111.0
-2011-01-19 22:00:00,13821.0
-2011-01-19 23:00:00,13251.0
-2011-01-20 00:00:00,12420.0
-2011-01-18 01:00:00,10988.0
-2011-01-18 02:00:00,10481.0
-2011-01-18 03:00:00,10163.0
-2011-01-18 04:00:00,9974.0
-2011-01-18 05:00:00,9949.0
-2011-01-18 06:00:00,10203.0
-2011-01-18 07:00:00,10945.0
-2011-01-18 08:00:00,12172.0
-2011-01-18 09:00:00,12909.0
-2011-01-18 10:00:00,13043.0
-2011-01-18 11:00:00,13128.0
-2011-01-18 12:00:00,13213.0
-2011-01-18 13:00:00,13219.0
-2011-01-18 14:00:00,13204.0
-2011-01-18 15:00:00,13273.0
-2011-01-18 16:00:00,13295.0
-2011-01-18 17:00:00,13392.0
-2011-01-18 18:00:00,13830.0
-2011-01-18 19:00:00,14339.0
-2011-01-18 20:00:00,14155.0
-2011-01-18 21:00:00,13937.0
-2011-01-18 22:00:00,13648.0
-2011-01-18 23:00:00,13053.0
-2011-01-19 00:00:00,12164.0
-2011-01-17 01:00:00,11005.0
-2011-01-17 02:00:00,10594.0
-2011-01-17 03:00:00,10438.0
-2011-01-17 04:00:00,10329.0
-2011-01-17 05:00:00,10378.0
-2011-01-17 06:00:00,10642.0
-2011-01-17 07:00:00,11288.0
-2011-01-17 08:00:00,12217.0
-2011-01-17 09:00:00,12790.0
-2011-01-17 10:00:00,13115.0
-2011-01-17 11:00:00,13330.0
-2011-01-17 12:00:00,13451.0
-2011-01-17 13:00:00,13363.0
-2011-01-17 14:00:00,13213.0
-2011-01-17 15:00:00,13205.0
-2011-01-17 16:00:00,13142.0
-2011-01-17 17:00:00,13088.0
-2011-01-17 18:00:00,13531.0
-2011-01-17 19:00:00,14075.0
-2011-01-17 20:00:00,13871.0
-2011-01-17 21:00:00,13596.0
-2011-01-17 22:00:00,13231.0
-2011-01-17 23:00:00,12637.0
-2011-01-18 00:00:00,11764.0
-2011-01-16 01:00:00,11200.0
-2011-01-16 02:00:00,10725.0
-2011-01-16 03:00:00,10485.0
-2011-01-16 04:00:00,10306.0
-2011-01-16 05:00:00,10249.0
-2011-01-16 06:00:00,10362.0
-2011-01-16 07:00:00,10495.0
-2011-01-16 08:00:00,10836.0
-2011-01-16 09:00:00,10878.0
-2011-01-16 10:00:00,11154.0
-2011-01-16 11:00:00,11288.0
-2011-01-16 12:00:00,11423.0
-2011-01-16 13:00:00,11429.0
-2011-01-16 14:00:00,11411.0
-2011-01-16 15:00:00,11336.0
-2011-01-16 16:00:00,11257.0
-2011-01-16 17:00:00,11299.0
-2011-01-16 18:00:00,11847.0
-2011-01-16 19:00:00,12647.0
-2011-01-16 20:00:00,12667.0
-2011-01-16 21:00:00,12569.0
-2011-01-16 22:00:00,12332.0
-2011-01-16 23:00:00,12048.0
-2011-01-17 00:00:00,11518.0
-2011-01-15 01:00:00,11449.0
-2011-01-15 02:00:00,10892.0
-2011-01-15 03:00:00,10573.0
-2011-01-15 04:00:00,10343.0
-2011-01-15 05:00:00,10264.0
-2011-01-15 06:00:00,10317.0
-2011-01-15 07:00:00,10610.0
-2011-01-15 08:00:00,11076.0
-2011-01-15 09:00:00,11458.0
-2011-01-15 10:00:00,11750.0
-2011-01-15 11:00:00,11993.0
-2011-01-15 12:00:00,12001.0
-2011-01-15 13:00:00,12004.0
-2011-01-15 14:00:00,11787.0
-2011-01-15 15:00:00,11730.0
-2011-01-15 16:00:00,11633.0
-2011-01-15 17:00:00,11725.0
-2011-01-15 18:00:00,12095.0
-2011-01-15 19:00:00,12899.0
-2011-01-15 20:00:00,12841.0
-2011-01-15 21:00:00,12730.0
-2011-01-15 22:00:00,12555.0
-2011-01-15 23:00:00,12279.0
-2011-01-16 00:00:00,11734.0
-2011-01-14 01:00:00,11643.0
-2011-01-14 02:00:00,11173.0
-2011-01-14 03:00:00,10881.0
-2011-01-14 04:00:00,10703.0
-2011-01-14 05:00:00,10707.0
-2011-01-14 06:00:00,10916.0
-2011-01-14 07:00:00,11582.0
-2011-01-14 08:00:00,12694.0
-2011-01-14 09:00:00,13254.0
-2011-01-14 10:00:00,13345.0
-2011-01-14 11:00:00,13390.0
-2011-01-14 12:00:00,13386.0
-2011-01-14 13:00:00,13250.0
-2011-01-14 14:00:00,13114.0
-2011-01-14 15:00:00,13068.0
-2011-01-14 16:00:00,13000.0
-2011-01-14 17:00:00,12967.0
-2011-01-14 18:00:00,13336.0
-2011-01-14 19:00:00,13980.0
-2011-01-14 20:00:00,13812.0
-2011-01-14 21:00:00,13553.0
-2011-01-14 22:00:00,13231.0
-2011-01-14 23:00:00,12833.0
-2011-01-15 00:00:00,12120.0
-2011-01-13 01:00:00,11348.0
-2011-01-13 02:00:00,10848.0
-2011-01-13 03:00:00,10574.0
-2011-01-13 04:00:00,10405.0
-2011-01-13 05:00:00,10450.0
-2011-01-13 06:00:00,10711.0
-2011-01-13 07:00:00,11419.0
-2011-01-13 08:00:00,12626.0
-2011-01-13 09:00:00,13262.0
-2011-01-13 10:00:00,13315.0
-2011-01-13 11:00:00,13358.0
-2011-01-13 12:00:00,13324.0
-2011-01-13 13:00:00,13268.0
-2011-01-13 14:00:00,13098.0
-2011-01-13 15:00:00,13302.0
-2011-01-13 16:00:00,13310.0
-2011-01-13 17:00:00,13318.0
-2011-01-13 18:00:00,13767.0
-2011-01-13 19:00:00,14455.0
-2011-01-13 20:00:00,14322.0
-2011-01-13 21:00:00,14137.0
-2011-01-13 22:00:00,13850.0
-2011-01-13 23:00:00,13300.0
-2011-01-14 00:00:00,12455.0
-2011-01-12 01:00:00,11510.0
-2011-01-12 02:00:00,11043.0
-2011-01-12 03:00:00,10736.0
-2011-01-12 04:00:00,10593.0
-2011-01-12 05:00:00,10589.0
-2011-01-12 06:00:00,10853.0
-2011-01-12 07:00:00,11551.0
-2011-01-12 08:00:00,12726.0
-2011-01-12 09:00:00,13311.0
-2011-01-12 10:00:00,13364.0
-2011-01-12 11:00:00,13318.0
-2011-01-12 12:00:00,13293.0
-2011-01-12 13:00:00,13135.0
-2011-01-12 14:00:00,13083.0
-2011-01-12 15:00:00,13132.0
-2011-01-12 16:00:00,13154.0
-2011-01-12 17:00:00,13189.0
-2011-01-12 18:00:00,13615.0
-2011-01-12 19:00:00,14272.0
-2011-01-12 20:00:00,14129.0
-2011-01-12 21:00:00,13921.0
-2011-01-12 22:00:00,13606.0
-2011-01-12 23:00:00,13048.0
-2011-01-13 00:00:00,12149.0
-2011-01-11 01:00:00,11263.0
-2011-01-11 02:00:00,10747.0
-2011-01-11 03:00:00,10457.0
-2011-01-11 04:00:00,10320.0
-2011-01-11 05:00:00,10339.0
-2011-01-11 06:00:00,10630.0
-2011-01-11 07:00:00,11359.0
-2011-01-11 08:00:00,12537.0
-2011-01-11 09:00:00,13201.0
-2011-01-11 10:00:00,13279.0
-2011-01-11 11:00:00,13380.0
-2011-01-11 12:00:00,13468.0
-2011-01-11 13:00:00,13369.0
-2011-01-11 14:00:00,13317.0
-2011-01-11 15:00:00,13295.0
-2011-01-11 16:00:00,13226.0
-2011-01-11 17:00:00,13256.0
-2011-01-11 18:00:00,13699.0
-2011-01-11 19:00:00,14402.0
-2011-01-11 20:00:00,14278.0
-2011-01-11 21:00:00,14043.0
-2011-01-11 22:00:00,13739.0
-2011-01-11 23:00:00,13141.0
-2011-01-12 00:00:00,12275.0
-2011-01-10 01:00:00,10817.0
-2011-01-10 02:00:00,10462.0
-2011-01-10 03:00:00,10274.0
-2011-01-10 04:00:00,10202.0
-2011-01-10 05:00:00,10285.0
-2011-01-10 06:00:00,10606.0
-2011-01-10 07:00:00,11369.0
-2011-01-10 08:00:00,12574.0
-2011-01-10 09:00:00,13321.0
-2011-01-10 10:00:00,13208.0
-2011-01-10 11:00:00,13159.0
-2011-01-10 12:00:00,13089.0
-2011-01-10 13:00:00,13036.0
-2011-01-10 14:00:00,12909.0
-2011-01-10 15:00:00,12901.0
-2011-01-10 16:00:00,12871.0
-2011-01-10 17:00:00,13011.0
-2011-01-10 18:00:00,13620.0
-2011-01-10 19:00:00,14197.0
-2011-01-10 20:00:00,14018.0
-2011-01-10 21:00:00,13818.0
-2011-01-10 22:00:00,13482.0
-2011-01-10 23:00:00,12949.0
-2011-01-11 00:00:00,12073.0
-2011-01-09 01:00:00,11469.0
-2011-01-09 02:00:00,10936.0
-2011-01-09 03:00:00,10634.0
-2011-01-09 04:00:00,10531.0
-2011-01-09 05:00:00,10478.0
-2011-01-09 06:00:00,10499.0
-2011-01-09 07:00:00,10670.0
-2011-01-09 08:00:00,10955.0
-2011-01-09 09:00:00,11053.0
-2011-01-09 10:00:00,11113.0
-2011-01-09 11:00:00,11179.0
-2011-01-09 12:00:00,11154.0
-2011-01-09 13:00:00,11116.0
-2011-01-09 14:00:00,11028.0
-2011-01-09 15:00:00,10959.0
-2011-01-09 16:00:00,10880.0
-2011-01-09 17:00:00,11105.0
-2011-01-09 18:00:00,11772.0
-2011-01-09 19:00:00,12671.0
-2011-01-09 20:00:00,12716.0
-2011-01-09 21:00:00,12619.0
-2011-01-09 22:00:00,12368.0
-2011-01-09 23:00:00,11975.0
-2011-01-10 00:00:00,11382.0
-2011-01-08 01:00:00,12044.0
-2011-01-08 02:00:00,11494.0
-2011-01-08 03:00:00,11218.0
-2011-01-08 04:00:00,11035.0
-2011-01-08 05:00:00,10989.0
-2011-01-08 06:00:00,11025.0
-2011-01-08 07:00:00,11326.0
-2011-01-08 08:00:00,11757.0
-2011-01-08 09:00:00,11991.0
-2011-01-08 10:00:00,12164.0
-2011-01-08 11:00:00,12315.0
-2011-01-08 12:00:00,12376.0
-2011-01-08 13:00:00,12308.0
-2011-01-08 14:00:00,12151.0
-2011-01-08 15:00:00,11919.0
-2011-01-08 16:00:00,11717.0
-2011-01-08 17:00:00,11750.0
-2011-01-08 18:00:00,12316.0
-2011-01-08 19:00:00,13212.0
-2011-01-08 20:00:00,13196.0
-2011-01-08 21:00:00,13104.0
-2011-01-08 22:00:00,12897.0
-2011-01-08 23:00:00,12607.0
-2011-01-09 00:00:00,12011.0
-2011-01-07 01:00:00,11582.0
-2011-01-07 02:00:00,11132.0
-2011-01-07 03:00:00,10833.0
-2011-01-07 04:00:00,10653.0
-2011-01-07 05:00:00,10652.0
-2011-01-07 06:00:00,10913.0
-2011-01-07 07:00:00,11538.0
-2011-01-07 08:00:00,12665.0
-2011-01-07 09:00:00,13414.0
-2011-01-07 10:00:00,13499.0
-2011-01-07 11:00:00,13552.0
-2011-01-07 12:00:00,13553.0
-2011-01-07 13:00:00,13441.0
-2011-01-07 14:00:00,13323.0
-2011-01-07 15:00:00,13415.0
-2011-01-07 16:00:00,13504.0
-2011-01-07 17:00:00,13558.0
-2011-01-07 18:00:00,14028.0
-2011-01-07 19:00:00,14500.0
-2011-01-07 20:00:00,14361.0
-2011-01-07 21:00:00,14143.0
-2011-01-07 22:00:00,13832.0
-2011-01-07 23:00:00,13438.0
-2011-01-08 00:00:00,12724.0
-2011-01-06 01:00:00,11268.0
-2011-01-06 02:00:00,10736.0
-2011-01-06 03:00:00,10418.0
-2011-01-06 04:00:00,10252.0
-2011-01-06 05:00:00,10254.0
-2011-01-06 06:00:00,10522.0
-2011-01-06 07:00:00,11221.0
-2011-01-06 08:00:00,12410.0
-2011-01-06 09:00:00,13236.0
-2011-01-06 10:00:00,13349.0
-2011-01-06 11:00:00,13440.0
-2011-01-06 12:00:00,13426.0
-2011-01-06 13:00:00,13377.0
-2011-01-06 14:00:00,13247.0
-2011-01-06 15:00:00,13112.0
-2011-01-06 16:00:00,12965.0
-2011-01-06 17:00:00,12993.0
-2011-01-06 18:00:00,13607.0
-2011-01-06 19:00:00,14420.0
-2011-01-06 20:00:00,14296.0
-2011-01-06 21:00:00,14099.0
-2011-01-06 22:00:00,13771.0
-2011-01-06 23:00:00,13253.0
-2011-01-07 00:00:00,12388.0
-2011-01-05 01:00:00,11829.0
-2011-01-05 02:00:00,11324.0
-2011-01-05 03:00:00,11062.0
-2011-01-05 04:00:00,10908.0
-2011-01-05 05:00:00,10930.0
-2011-01-05 06:00:00,11194.0
-2011-01-05 07:00:00,11868.0
-2011-01-05 08:00:00,13012.0
-2011-01-05 09:00:00,13580.0
-2011-01-05 10:00:00,13579.0
-2011-01-05 11:00:00,13561.0
-2011-01-05 12:00:00,13584.0
-2011-01-05 13:00:00,13530.0
-2011-01-05 14:00:00,13442.0
-2011-01-05 15:00:00,13374.0
-2011-01-05 16:00:00,13244.0
-2011-01-05 17:00:00,13265.0
-2011-01-05 18:00:00,13826.0
-2011-01-05 19:00:00,14335.0
-2011-01-05 20:00:00,14122.0
-2011-01-05 21:00:00,13861.0
-2011-01-05 22:00:00,13526.0
-2011-01-05 23:00:00,12968.0
-2011-01-06 00:00:00,12062.0
-2011-01-04 01:00:00,10941.0
-2011-01-04 02:00:00,10426.0
-2011-01-04 03:00:00,10171.0
-2011-01-04 04:00:00,10044.0
-2011-01-04 05:00:00,10065.0
-2011-01-04 06:00:00,10370.0
-2011-01-04 07:00:00,11063.0
-2011-01-04 08:00:00,12341.0
-2011-01-04 09:00:00,13040.0
-2011-01-04 10:00:00,13114.0
-2011-01-04 11:00:00,13194.0
-2011-01-04 12:00:00,13257.0
-2011-01-04 13:00:00,13223.0
-2011-01-04 14:00:00,13173.0
-2011-01-04 15:00:00,13144.0
-2011-01-04 16:00:00,13049.0
-2011-01-04 17:00:00,13070.0
-2011-01-04 18:00:00,13705.0
-2011-01-04 19:00:00,14527.0
-2011-01-04 20:00:00,14466.0
-2011-01-04 21:00:00,14312.0
-2011-01-04 22:00:00,14038.0
-2011-01-04 23:00:00,13498.0
-2011-01-05 00:00:00,12600.0
-2011-01-03 01:00:00,10897.0
-2011-01-03 02:00:00,10494.0
-2011-01-03 03:00:00,10279.0
-2011-01-03 04:00:00,10165.0
-2011-01-03 05:00:00,10199.0
-2011-01-03 06:00:00,10440.0
-2011-01-03 07:00:00,11096.0
-2011-01-03 08:00:00,12125.0
-2011-01-03 09:00:00,12687.0
-2011-01-03 10:00:00,12682.0
-2011-01-03 11:00:00,12707.0
-2011-01-03 12:00:00,12662.0
-2011-01-03 13:00:00,12573.0
-2011-01-03 14:00:00,12514.0
-2011-01-03 15:00:00,12463.0
-2011-01-03 16:00:00,12500.0
-2011-01-03 17:00:00,12594.0
-2011-01-03 18:00:00,13206.0
-2011-01-03 19:00:00,13873.0
-2011-01-03 20:00:00,13712.0
-2011-01-03 21:00:00,13505.0
-2011-01-03 22:00:00,13175.0
-2011-01-03 23:00:00,12613.0
-2011-01-04 00:00:00,11763.0
-2011-01-02 01:00:00,11199.0
-2011-01-02 02:00:00,10682.0
-2011-01-02 03:00:00,10376.0
-2011-01-02 04:00:00,10247.0
-2011-01-02 05:00:00,10161.0
-2011-01-02 06:00:00,10220.0
-2011-01-02 07:00:00,10346.0
-2011-01-02 08:00:00,10651.0
-2011-01-02 09:00:00,10710.0
-2011-01-02 10:00:00,10834.0
-2011-01-02 11:00:00,10945.0
-2011-01-02 12:00:00,11078.0
-2011-01-02 13:00:00,11127.0
-2011-01-02 14:00:00,11141.0
-2011-01-02 15:00:00,11057.0
-2011-01-02 16:00:00,10973.0
-2011-01-02 17:00:00,11074.0
-2011-01-02 18:00:00,11929.0
-2011-01-02 19:00:00,12841.0
-2011-01-02 20:00:00,12956.0
-2011-01-02 21:00:00,12849.0
-2011-01-02 22:00:00,12689.0
-2011-01-02 23:00:00,12274.0
-2011-01-03 00:00:00,11662.0
-2011-01-01 01:00:00,9631.0
-2011-01-01 02:00:00,9273.0
-2011-01-01 03:00:00,9011.0
-2011-01-01 04:00:00,8741.0
-2011-01-01 05:00:00,8694.0
-2011-01-01 06:00:00,8711.0
-2011-01-01 07:00:00,8943.0
-2011-01-01 08:00:00,9222.0
-2011-01-01 09:00:00,9430.0
-2011-01-01 10:00:00,9670.0
-2011-01-01 11:00:00,10125.0
-2011-01-01 12:00:00,10538.0
-2011-01-01 13:00:00,10782.0
-2011-01-01 14:00:00,10861.0
-2011-01-01 15:00:00,10784.0
-2011-01-01 16:00:00,10928.0
-2011-01-01 17:00:00,11133.0
-2011-01-01 18:00:00,11924.0
-2011-01-01 19:00:00,12665.0
-2011-01-01 20:00:00,12701.0
-2011-01-01 21:00:00,12630.0
-2011-01-01 22:00:00,12513.0
-2011-01-01 23:00:00,12252.0
-2011-01-02 00:00:00,11778.0
-2012-12-31 01:00:00,10445.0
-2012-12-31 02:00:00,9897.0
-2012-12-31 03:00:00,9538.0
-2012-12-31 04:00:00,9333.0
-2012-12-31 05:00:00,9275.0
-2012-12-31 06:00:00,9463.0
-2012-12-31 07:00:00,9830.0
-2012-12-31 08:00:00,10443.0
-2012-12-31 09:00:00,10713.0
-2012-12-31 10:00:00,10845.0
-2012-12-31 11:00:00,11044.0
-2012-12-31 12:00:00,11269.0
-2012-12-31 13:00:00,11311.0
-2012-12-31 14:00:00,11349.0
-2012-12-31 15:00:00,11372.0
-2012-12-31 16:00:00,11297.0
-2012-12-31 17:00:00,11378.0
-2012-12-31 18:00:00,12062.0
-2012-12-31 19:00:00,12779.0
-2012-12-31 20:00:00,12508.0
-2012-12-31 21:00:00,12154.0
-2012-12-31 22:00:00,11812.0
-2012-12-31 23:00:00,11437.0
-2013-01-01 00:00:00,11009.0
-2012-12-30 01:00:00,10857.0
-2012-12-30 02:00:00,10294.0
-2012-12-30 03:00:00,10002.0
-2012-12-30 04:00:00,9823.0
-2012-12-30 05:00:00,9768.0
-2012-12-30 06:00:00,9810.0
-2012-12-30 07:00:00,9986.0
-2012-12-30 08:00:00,10244.0
-2012-12-30 09:00:00,10289.0
-2012-12-30 10:00:00,10399.0
-2012-12-30 11:00:00,10452.0
-2012-12-30 12:00:00,10528.0
-2012-12-30 13:00:00,10498.0
-2012-12-30 14:00:00,10459.0
-2012-12-30 15:00:00,10346.0
-2012-12-30 16:00:00,10337.0
-2012-12-30 17:00:00,10446.0
-2012-12-30 18:00:00,11412.0
-2012-12-30 19:00:00,12278.0
-2012-12-30 20:00:00,12309.0
-2012-12-30 21:00:00,12257.0
-2012-12-30 22:00:00,12031.0
-2012-12-30 23:00:00,11690.0
-2012-12-31 00:00:00,11071.0
-2012-12-29 01:00:00,10594.0
-2012-12-29 02:00:00,9985.0
-2012-12-29 03:00:00,9602.0
-2012-12-29 04:00:00,9378.0
-2012-12-29 05:00:00,9292.0
-2012-12-29 06:00:00,9357.0
-2012-12-29 07:00:00,9608.0
-2012-12-29 08:00:00,10059.0
-2012-12-29 09:00:00,10394.0
-2012-12-29 10:00:00,10587.0
-2012-12-29 11:00:00,10901.0
-2012-12-29 12:00:00,11107.0
-2012-12-29 13:00:00,11208.0
-2012-12-29 14:00:00,11146.0
-2012-12-29 15:00:00,11078.0
-2012-12-29 16:00:00,11051.0
-2012-12-29 17:00:00,11219.0
-2012-12-29 18:00:00,11992.0
-2012-12-29 19:00:00,12591.0
-2012-12-29 20:00:00,12579.0
-2012-12-29 21:00:00,12462.0
-2012-12-29 22:00:00,12320.0
-2012-12-29 23:00:00,12037.0
-2012-12-30 00:00:00,11455.0
-2012-12-28 01:00:00,10617.0
-2012-12-28 02:00:00,10002.0
-2012-12-28 03:00:00,9629.0
-2012-12-28 04:00:00,9443.0
-2012-12-28 05:00:00,9405.0
-2012-12-28 06:00:00,9593.0
-2012-12-28 07:00:00,10160.0
-2012-12-28 08:00:00,10999.0
-2012-12-28 09:00:00,11566.0
-2012-12-28 10:00:00,11845.0
-2012-12-28 11:00:00,12091.0
-2012-12-28 12:00:00,12193.0
-2012-12-28 13:00:00,12277.0
-2012-12-28 14:00:00,12265.0
-2012-12-28 15:00:00,12279.0
-2012-12-28 16:00:00,12223.0
-2012-12-28 17:00:00,12287.0
-2012-12-28 18:00:00,12946.0
-2012-12-28 19:00:00,13325.0
-2012-12-28 20:00:00,13075.0
-2012-12-28 21:00:00,12833.0
-2012-12-28 22:00:00,12498.0
-2012-12-28 23:00:00,12071.0
-2012-12-29 00:00:00,11339.0
-2012-12-27 01:00:00,10736.0
-2012-12-27 02:00:00,10073.0
-2012-12-27 03:00:00,9741.0
-2012-12-27 04:00:00,9534.0
-2012-12-27 05:00:00,9493.0
-2012-12-27 06:00:00,9726.0
-2012-12-27 07:00:00,10306.0
-2012-12-27 08:00:00,11186.0
-2012-12-27 09:00:00,11802.0
-2012-12-27 10:00:00,12050.0
-2012-12-27 11:00:00,12276.0
-2012-12-27 12:00:00,12469.0
-2012-12-27 13:00:00,12432.0
-2012-12-27 14:00:00,12318.0
-2012-12-27 15:00:00,12343.0
-2012-12-27 16:00:00,12293.0
-2012-12-27 17:00:00,12300.0
-2012-12-27 18:00:00,12986.0
-2012-12-27 19:00:00,13521.0
-2012-12-27 20:00:00,13300.0
-2012-12-27 21:00:00,13057.0
-2012-12-27 22:00:00,12749.0
-2012-12-27 23:00:00,12229.0
-2012-12-28 00:00:00,11425.0
-2012-12-26 01:00:00,9966.0
-2012-12-26 02:00:00,9487.0
-2012-12-26 03:00:00,9209.0
-2012-12-26 04:00:00,9093.0
-2012-12-26 05:00:00,9090.0
-2012-12-26 06:00:00,9342.0
-2012-12-26 07:00:00,10001.0
-2012-12-26 08:00:00,10954.0
-2012-12-26 09:00:00,11603.0
-2012-12-26 10:00:00,11908.0
-2012-12-26 11:00:00,12192.0
-2012-12-26 12:00:00,12418.0
-2012-12-26 13:00:00,12533.0
-2012-12-26 14:00:00,12558.0
-2012-12-26 15:00:00,12562.0
-2012-12-26 16:00:00,12511.0
-2012-12-26 17:00:00,12576.0
-2012-12-26 18:00:00,13239.0
-2012-12-26 19:00:00,13715.0
-2012-12-26 20:00:00,13449.0
-2012-12-26 21:00:00,13181.0
-2012-12-26 22:00:00,12881.0
-2012-12-26 23:00:00,12411.0
-2012-12-27 00:00:00,11588.0
-2012-12-25 01:00:00,10158.0
-2012-12-25 02:00:00,9654.0
-2012-12-25 03:00:00,9313.0
-2012-12-25 04:00:00,9095.0
-2012-12-25 05:00:00,9030.0
-2012-12-25 06:00:00,9073.0
-2012-12-25 07:00:00,9267.0
-2012-12-25 08:00:00,9571.0
-2012-12-25 09:00:00,9689.0
-2012-12-25 10:00:00,9813.0
-2012-12-25 11:00:00,10021.0
-2012-12-25 12:00:00,10109.0
-2012-12-25 13:00:00,10208.0
-2012-12-25 14:00:00,10227.0
-2012-12-25 15:00:00,10203.0
-2012-12-25 16:00:00,10185.0
-2012-12-25 17:00:00,10296.0
-2012-12-25 18:00:00,10957.0
-2012-12-25 19:00:00,11354.0
-2012-12-25 20:00:00,11309.0
-2012-12-25 21:00:00,11247.0
-2012-12-25 22:00:00,11198.0
-2012-12-25 23:00:00,10993.0
-2012-12-26 00:00:00,10547.0
-2012-12-24 01:00:00,10345.0
-2012-12-24 02:00:00,9777.0
-2012-12-24 03:00:00,9356.0
-2012-12-24 04:00:00,9180.0
-2012-12-24 05:00:00,9123.0
-2012-12-24 06:00:00,9291.0
-2012-12-24 07:00:00,9618.0
-2012-12-24 08:00:00,10155.0
-2012-12-24 09:00:00,10424.0
-2012-12-24 10:00:00,10616.0
-2012-12-24 11:00:00,10922.0
-2012-12-24 12:00:00,11133.0
-2012-12-24 13:00:00,11238.0
-2012-12-24 14:00:00,11227.0
-2012-12-24 15:00:00,11210.0
-2012-12-24 16:00:00,11195.0
-2012-12-24 17:00:00,11311.0
-2012-12-24 18:00:00,11934.0
-2012-12-24 19:00:00,12183.0
-2012-12-24 20:00:00,11808.0
-2012-12-24 21:00:00,11537.0
-2012-12-24 22:00:00,11336.0
-2012-12-24 23:00:00,11109.0
-2012-12-25 00:00:00,10695.0
-2012-12-23 01:00:00,10824.0
-2012-12-23 02:00:00,10248.0
-2012-12-23 03:00:00,9802.0
-2012-12-23 04:00:00,9627.0
-2012-12-23 05:00:00,9531.0
-2012-12-23 06:00:00,9618.0
-2012-12-23 07:00:00,9752.0
-2012-12-23 08:00:00,10079.0
-2012-12-23 09:00:00,10133.0
-2012-12-23 10:00:00,10276.0
-2012-12-23 11:00:00,10408.0
-2012-12-23 12:00:00,10470.0
-2012-12-23 13:00:00,10491.0
-2012-12-23 14:00:00,10465.0
-2012-12-23 15:00:00,10406.0
-2012-12-23 16:00:00,10458.0
-2012-12-23 17:00:00,10600.0
-2012-12-23 18:00:00,11498.0
-2012-12-23 19:00:00,12194.0
-2012-12-23 20:00:00,12223.0
-2012-12-23 21:00:00,12146.0
-2012-12-23 22:00:00,12003.0
-2012-12-23 23:00:00,11695.0
-2012-12-24 00:00:00,11114.0
-2012-12-22 01:00:00,11473.0
-2012-12-22 02:00:00,10813.0
-2012-12-22 03:00:00,10434.0
-2012-12-22 04:00:00,10210.0
-2012-12-22 05:00:00,10137.0
-2012-12-22 06:00:00,10178.0
-2012-12-22 07:00:00,10472.0
-2012-12-22 08:00:00,10970.0
-2012-12-22 09:00:00,11139.0
-2012-12-22 10:00:00,11337.0
-2012-12-22 11:00:00,11422.0
-2012-12-22 12:00:00,11360.0
-2012-12-22 13:00:00,11229.0
-2012-12-22 14:00:00,10978.0
-2012-12-22 15:00:00,10773.0
-2012-12-22 16:00:00,10691.0
-2012-12-22 17:00:00,10780.0
-2012-12-22 18:00:00,11662.0
-2012-12-22 19:00:00,12522.0
-2012-12-22 20:00:00,12564.0
-2012-12-22 21:00:00,12448.0
-2012-12-22 22:00:00,12338.0
-2012-12-22 23:00:00,12044.0
-2012-12-23 00:00:00,11528.0
-2012-12-21 01:00:00,11018.0
-2012-12-21 02:00:00,10378.0
-2012-12-21 03:00:00,10002.0
-2012-12-21 04:00:00,9849.0
-2012-12-21 05:00:00,9878.0
-2012-12-21 06:00:00,10136.0
-2012-12-21 07:00:00,10854.0
-2012-12-21 08:00:00,12041.0
-2012-12-21 09:00:00,12679.0
-2012-12-21 10:00:00,12802.0
-2012-12-21 11:00:00,12889.0
-2012-12-21 12:00:00,12826.0
-2012-12-21 13:00:00,12699.0
-2012-12-21 14:00:00,12553.0
-2012-12-21 15:00:00,12528.0
-2012-12-21 16:00:00,12449.0
-2012-12-21 17:00:00,12472.0
-2012-12-21 18:00:00,13387.0
-2012-12-21 19:00:00,14173.0
-2012-12-21 20:00:00,14040.0
-2012-12-21 21:00:00,13796.0
-2012-12-21 22:00:00,13510.0
-2012-12-21 23:00:00,13121.0
-2012-12-22 00:00:00,12345.0
-2012-12-20 01:00:00,10772.0
-2012-12-20 02:00:00,10101.0
-2012-12-20 03:00:00,9678.0
-2012-12-20 04:00:00,9469.0
-2012-12-20 05:00:00,9459.0
-2012-12-20 06:00:00,9717.0
-2012-12-20 07:00:00,10381.0
-2012-12-20 08:00:00,11518.0
-2012-12-20 09:00:00,12305.0
-2012-12-20 10:00:00,12462.0
-2012-12-20 11:00:00,12478.0
-2012-12-20 12:00:00,12520.0
-2012-12-20 13:00:00,12528.0
-2012-12-20 14:00:00,12505.0
-2012-12-20 15:00:00,12567.0
-2012-12-20 16:00:00,12477.0
-2012-12-20 17:00:00,12590.0
-2012-12-20 18:00:00,13306.0
-2012-12-20 19:00:00,13752.0
-2012-12-20 20:00:00,13708.0
-2012-12-20 21:00:00,13509.0
-2012-12-20 22:00:00,13284.0
-2012-12-20 23:00:00,12798.0
-2012-12-21 00:00:00,11915.0
-2012-12-19 01:00:00,10638.0
-2012-12-19 02:00:00,9997.0
-2012-12-19 03:00:00,9611.0
-2012-12-19 04:00:00,9410.0
-2012-12-19 05:00:00,9396.0
-2012-12-19 06:00:00,9627.0
-2012-12-19 07:00:00,10354.0
-2012-12-19 08:00:00,11581.0
-2012-12-19 09:00:00,12244.0
-2012-12-19 10:00:00,12322.0
-2012-12-19 11:00:00,12365.0
-2012-12-19 12:00:00,12395.0
-2012-12-19 13:00:00,12298.0
-2012-12-19 14:00:00,12184.0
-2012-12-19 15:00:00,12270.0
-2012-12-19 16:00:00,12250.0
-2012-12-19 17:00:00,12413.0
-2012-12-19 18:00:00,13260.0
-2012-12-19 19:00:00,13750.0
-2012-12-19 20:00:00,13593.0
-2012-12-19 21:00:00,13420.0
-2012-12-19 22:00:00,13175.0
-2012-12-19 23:00:00,12644.0
-2012-12-20 00:00:00,11696.0
-2012-12-18 01:00:00,10622.0
-2012-12-18 02:00:00,9948.0
-2012-12-18 03:00:00,9609.0
-2012-12-18 04:00:00,9405.0
-2012-12-18 05:00:00,9388.0
-2012-12-18 06:00:00,9600.0
-2012-12-18 07:00:00,10320.0
-2012-12-18 08:00:00,11614.0
-2012-12-18 09:00:00,12281.0
-2012-12-18 10:00:00,12412.0
-2012-12-18 11:00:00,12500.0
-2012-12-18 12:00:00,12590.0
-2012-12-18 13:00:00,12620.0
-2012-12-18 14:00:00,12514.0
-2012-12-18 15:00:00,12551.0
-2012-12-18 16:00:00,12544.0
-2012-12-18 17:00:00,12817.0
-2012-12-18 18:00:00,13556.0
-2012-12-18 19:00:00,13823.0
-2012-12-18 20:00:00,13555.0
-2012-12-18 21:00:00,13321.0
-2012-12-18 22:00:00,13027.0
-2012-12-18 23:00:00,12498.0
-2012-12-19 00:00:00,11558.0
-2012-12-17 01:00:00,9776.0
-2012-12-17 02:00:00,9225.0
-2012-12-17 03:00:00,8918.0
-2012-12-17 04:00:00,8837.0
-2012-12-17 05:00:00,8841.0
-2012-12-17 06:00:00,9163.0
-2012-12-17 07:00:00,9924.0
-2012-12-17 08:00:00,11258.0
-2012-12-17 09:00:00,12018.0
-2012-12-17 10:00:00,12135.0
-2012-12-17 11:00:00,12190.0
-2012-12-17 12:00:00,12236.0
-2012-12-17 13:00:00,12203.0
-2012-12-17 14:00:00,12167.0
-2012-12-17 15:00:00,12181.0
-2012-12-17 16:00:00,12126.0
-2012-12-17 17:00:00,12157.0
-2012-12-17 18:00:00,12978.0
-2012-12-17 19:00:00,13596.0
-2012-12-17 20:00:00,13517.0
-2012-12-17 21:00:00,13331.0
-2012-12-17 22:00:00,13059.0
-2012-12-17 23:00:00,12539.0
-2012-12-18 00:00:00,11566.0
-2012-12-16 01:00:00,9816.0
-2012-12-16 02:00:00,9147.0
-2012-12-16 03:00:00,8679.0
-2012-12-16 04:00:00,8470.0
-2012-12-16 05:00:00,8299.0
-2012-12-16 06:00:00,8356.0
-2012-12-16 07:00:00,8460.0
-2012-12-16 08:00:00,8799.0
-2012-12-16 09:00:00,9040.0
-2012-12-16 10:00:00,9404.0
-2012-12-16 11:00:00,9666.0
-2012-12-16 12:00:00,9879.0
-2012-12-16 13:00:00,10016.0
-2012-12-16 14:00:00,10124.0
-2012-12-16 15:00:00,10174.0
-2012-12-16 16:00:00,10275.0
-2012-12-16 17:00:00,10525.0
-2012-12-16 18:00:00,11410.0
-2012-12-16 19:00:00,11860.0
-2012-12-16 20:00:00,11920.0
-2012-12-16 21:00:00,11785.0
-2012-12-16 22:00:00,11671.0
-2012-12-16 23:00:00,11213.0
-2012-12-17 00:00:00,10556.0
-2012-12-15 01:00:00,10466.0
-2012-12-15 02:00:00,9743.0
-2012-12-15 03:00:00,9298.0
-2012-12-15 04:00:00,9085.0
-2012-12-15 05:00:00,8948.0
-2012-12-15 06:00:00,9020.0
-2012-12-15 07:00:00,9318.0
-2012-12-15 08:00:00,9868.0
-2012-12-15 09:00:00,10325.0
-2012-12-15 10:00:00,10811.0
-2012-12-15 11:00:00,11122.0
-2012-12-15 12:00:00,11337.0
-2012-12-15 13:00:00,11381.0
-2012-12-15 14:00:00,11328.0
-2012-12-15 15:00:00,11118.0
-2012-12-15 16:00:00,11089.0
-2012-12-15 17:00:00,11221.0
-2012-12-15 18:00:00,11779.0
-2012-12-15 19:00:00,12045.0
-2012-12-15 20:00:00,11964.0
-2012-12-15 21:00:00,11729.0
-2012-12-15 22:00:00,11498.0
-2012-12-15 23:00:00,11140.0
-2012-12-16 00:00:00,10546.0
-2012-12-14 01:00:00,10539.0
-2012-12-14 02:00:00,9931.0
-2012-12-14 03:00:00,9588.0
-2012-12-14 04:00:00,9404.0
-2012-12-14 05:00:00,9406.0
-2012-12-14 06:00:00,9687.0
-2012-12-14 07:00:00,10430.0
-2012-12-14 08:00:00,11687.0
-2012-12-14 09:00:00,12143.0
-2012-12-14 10:00:00,12169.0
-2012-12-14 11:00:00,12058.0
-2012-12-14 12:00:00,11963.0
-2012-12-14 13:00:00,11800.0
-2012-12-14 14:00:00,11618.0
-2012-12-14 15:00:00,11621.0
-2012-12-14 16:00:00,11538.0
-2012-12-14 17:00:00,11626.0
-2012-12-14 18:00:00,12626.0
-2012-12-14 19:00:00,13242.0
-2012-12-14 20:00:00,13108.0
-2012-12-14 21:00:00,12838.0
-2012-12-14 22:00:00,12515.0
-2012-12-14 23:00:00,12159.0
-2012-12-15 00:00:00,11313.0
-2012-12-13 01:00:00,10825.0
-2012-12-13 02:00:00,10195.0
-2012-12-13 03:00:00,9822.0
-2012-12-13 04:00:00,9627.0
-2012-12-13 05:00:00,9647.0
-2012-12-13 06:00:00,9895.0
-2012-12-13 07:00:00,10632.0
-2012-12-13 08:00:00,11862.0
-2012-12-13 09:00:00,12351.0
-2012-12-13 10:00:00,12347.0
-2012-12-13 11:00:00,12274.0
-2012-12-13 12:00:00,12163.0
-2012-12-13 13:00:00,12077.0
-2012-12-13 14:00:00,11962.0
-2012-12-13 15:00:00,11892.0
-2012-12-13 16:00:00,11800.0
-2012-12-13 17:00:00,11822.0
-2012-12-13 18:00:00,12784.0
-2012-12-13 19:00:00,13581.0
-2012-12-13 20:00:00,13427.0
-2012-12-13 21:00:00,13252.0
-2012-12-13 22:00:00,12952.0
-2012-12-13 23:00:00,12424.0
-2012-12-14 00:00:00,11468.0
-2012-12-12 01:00:00,11029.0
-2012-12-12 02:00:00,10428.0
-2012-12-12 03:00:00,10047.0
-2012-12-12 04:00:00,9866.0
-2012-12-12 05:00:00,9884.0
-2012-12-12 06:00:00,10166.0
-2012-12-12 07:00:00,10866.0
-2012-12-12 08:00:00,12122.0
-2012-12-12 09:00:00,12599.0
-2012-12-12 10:00:00,12543.0
-2012-12-12 11:00:00,12457.0
-2012-12-12 12:00:00,12413.0
-2012-12-12 13:00:00,12283.0
-2012-12-12 14:00:00,12109.0
-2012-12-12 15:00:00,12047.0
-2012-12-12 16:00:00,11909.0
-2012-12-12 17:00:00,11916.0
-2012-12-12 18:00:00,12838.0
-2012-12-12 19:00:00,13669.0
-2012-12-12 20:00:00,13626.0
-2012-12-12 21:00:00,13482.0
-2012-12-12 22:00:00,13230.0
-2012-12-12 23:00:00,12718.0
-2012-12-13 00:00:00,11742.0
-2012-12-11 01:00:00,10837.0
-2012-12-11 02:00:00,10219.0
-2012-12-11 03:00:00,9889.0
-2012-12-11 04:00:00,9695.0
-2012-12-11 05:00:00,9717.0
-2012-12-11 06:00:00,10007.0
-2012-12-11 07:00:00,10777.0
-2012-12-11 08:00:00,12082.0
-2012-12-11 09:00:00,12597.0
-2012-12-11 10:00:00,12586.0
-2012-12-11 11:00:00,12560.0
-2012-12-11 12:00:00,12564.0
-2012-12-11 13:00:00,12503.0
-2012-12-11 14:00:00,12383.0
-2012-12-11 15:00:00,12360.0
-2012-12-11 16:00:00,12263.0
-2012-12-11 17:00:00,12342.0
-2012-12-11 18:00:00,13265.0
-2012-12-11 19:00:00,14096.0
-2012-12-11 20:00:00,13929.0
-2012-12-11 21:00:00,13763.0
-2012-12-11 22:00:00,13496.0
-2012-12-11 23:00:00,12936.0
-2012-12-12 00:00:00,11990.0
-2012-12-10 01:00:00,9854.0
-2012-12-10 02:00:00,9334.0
-2012-12-10 03:00:00,9129.0
-2012-12-10 04:00:00,9067.0
-2012-12-10 05:00:00,9137.0
-2012-12-10 06:00:00,9471.0
-2012-12-10 07:00:00,10364.0
-2012-12-10 08:00:00,11637.0
-2012-12-10 09:00:00,12443.0
-2012-12-10 10:00:00,12528.0
-2012-12-10 11:00:00,12669.0
-2012-12-10 12:00:00,12782.0
-2012-12-10 13:00:00,12741.0
-2012-12-10 14:00:00,12696.0
-2012-12-10 15:00:00,12624.0
-2012-12-10 16:00:00,12559.0
-2012-12-10 17:00:00,12689.0
-2012-12-10 18:00:00,13495.0
-2012-12-10 19:00:00,14040.0
-2012-12-10 20:00:00,13873.0
-2012-12-10 21:00:00,13731.0
-2012-12-10 22:00:00,13407.0
-2012-12-10 23:00:00,12841.0
-2012-12-11 00:00:00,11797.0
-2012-12-09 01:00:00,10063.0
-2012-12-09 02:00:00,9464.0
-2012-12-09 03:00:00,9110.0
-2012-12-09 04:00:00,8933.0
-2012-12-09 05:00:00,8809.0
-2012-12-09 06:00:00,8814.0
-2012-12-09 07:00:00,8946.0
-2012-12-09 08:00:00,9257.0
-2012-12-09 09:00:00,9424.0
-2012-12-09 10:00:00,9749.0
-2012-12-09 11:00:00,10131.0
-2012-12-09 12:00:00,10410.0
-2012-12-09 13:00:00,10552.0
-2012-12-09 14:00:00,10607.0
-2012-12-09 15:00:00,10582.0
-2012-12-09 16:00:00,10618.0
-2012-12-09 17:00:00,10778.0
-2012-12-09 18:00:00,11508.0
-2012-12-09 19:00:00,12002.0
-2012-12-09 20:00:00,11976.0
-2012-12-09 21:00:00,11930.0
-2012-12-09 22:00:00,11685.0
-2012-12-09 23:00:00,11321.0
-2012-12-10 00:00:00,10576.0
-2012-12-08 01:00:00,10249.0
-2012-12-08 02:00:00,9634.0
-2012-12-08 03:00:00,9272.0
-2012-12-08 04:00:00,9021.0
-2012-12-08 05:00:00,8971.0
-2012-12-08 06:00:00,9006.0
-2012-12-08 07:00:00,9280.0
-2012-12-08 08:00:00,9820.0
-2012-12-08 09:00:00,10200.0
-2012-12-08 10:00:00,10517.0
-2012-12-08 11:00:00,10763.0
-2012-12-08 12:00:00,10898.0
-2012-12-08 13:00:00,10865.0
-2012-12-08 14:00:00,10709.0
-2012-12-08 15:00:00,10527.0
-2012-12-08 16:00:00,10462.0
-2012-12-08 17:00:00,10635.0
-2012-12-08 18:00:00,11526.0
-2012-12-08 19:00:00,12120.0
-2012-12-08 20:00:00,12060.0
-2012-12-08 21:00:00,11936.0
-2012-12-08 22:00:00,11726.0
-2012-12-08 23:00:00,11374.0
-2012-12-09 00:00:00,10765.0
-2012-12-07 01:00:00,10117.0
-2012-12-07 02:00:00,9506.0
-2012-12-07 03:00:00,9157.0
-2012-12-07 04:00:00,8999.0
-2012-12-07 05:00:00,8956.0
-2012-12-07 06:00:00,9185.0
-2012-12-07 07:00:00,9907.0
-2012-12-07 08:00:00,11073.0
-2012-12-07 09:00:00,11695.0
-2012-12-07 10:00:00,11794.0
-2012-12-07 11:00:00,11858.0
-2012-12-07 12:00:00,11903.0
-2012-12-07 13:00:00,11877.0
-2012-12-07 14:00:00,11899.0
-2012-12-07 15:00:00,11934.0
-2012-12-07 16:00:00,11892.0
-2012-12-07 17:00:00,12025.0
-2012-12-07 18:00:00,12807.0
-2012-12-07 19:00:00,13177.0
-2012-12-07 20:00:00,12971.0
-2012-12-07 21:00:00,12674.0
-2012-12-07 22:00:00,12361.0
-2012-12-07 23:00:00,11929.0
-2012-12-08 00:00:00,11106.0
-2012-12-06 01:00:00,10550.0
-2012-12-06 02:00:00,9929.0
-2012-12-06 03:00:00,9606.0
-2012-12-06 04:00:00,9427.0
-2012-12-06 05:00:00,9407.0
-2012-12-06 06:00:00,9655.0
-2012-12-06 07:00:00,10402.0
-2012-12-06 08:00:00,11641.0
-2012-12-06 09:00:00,12179.0
-2012-12-06 10:00:00,12299.0
-2012-12-06 11:00:00,12330.0
-2012-12-06 12:00:00,12320.0
-2012-12-06 13:00:00,12203.0
-2012-12-06 14:00:00,12082.0
-2012-12-06 15:00:00,12091.0
-2012-12-06 16:00:00,12053.0
-2012-12-06 17:00:00,12216.0
-2012-12-06 18:00:00,13058.0
-2012-12-06 19:00:00,13451.0
-2012-12-06 20:00:00,13239.0
-2012-12-06 21:00:00,13022.0
-2012-12-06 22:00:00,12670.0
-2012-12-06 23:00:00,12045.0
-2012-12-07 00:00:00,11080.0
-2012-12-05 01:00:00,9987.0
-2012-12-05 02:00:00,9448.0
-2012-12-05 03:00:00,9158.0
-2012-12-05 04:00:00,9055.0
-2012-12-05 05:00:00,9098.0
-2012-12-05 06:00:00,9413.0
-2012-12-05 07:00:00,10196.0
-2012-12-05 08:00:00,11519.0
-2012-12-05 09:00:00,11971.0
-2012-12-05 10:00:00,12009.0
-2012-12-05 11:00:00,12017.0
-2012-12-05 12:00:00,11999.0
-2012-12-05 13:00:00,11837.0
-2012-12-05 14:00:00,11825.0
-2012-12-05 15:00:00,11800.0
-2012-12-05 16:00:00,11735.0
-2012-12-05 17:00:00,11852.0
-2012-12-05 18:00:00,12826.0
-2012-12-05 19:00:00,13567.0
-2012-12-05 20:00:00,13451.0
-2012-12-05 21:00:00,13257.0
-2012-12-05 22:00:00,13011.0
-2012-12-05 23:00:00,12431.0
-2012-12-06 00:00:00,11446.0
-2012-12-04 01:00:00,9665.0
-2012-12-04 02:00:00,9016.0
-2012-12-04 03:00:00,8616.0
-2012-12-04 04:00:00,8441.0
-2012-12-04 05:00:00,8388.0
-2012-12-04 06:00:00,8581.0
-2012-12-04 07:00:00,9284.0
-2012-12-04 08:00:00,10506.0
-2012-12-04 09:00:00,11111.0
-2012-12-04 10:00:00,11281.0
-2012-12-04 11:00:00,11314.0
-2012-12-04 12:00:00,11357.0
-2012-12-04 13:00:00,11311.0
-2012-12-04 14:00:00,11278.0
-2012-12-04 15:00:00,11348.0
-2012-12-04 16:00:00,11241.0
-2012-12-04 17:00:00,11231.0
-2012-12-04 18:00:00,12030.0
-2012-12-04 19:00:00,12802.0
-2012-12-04 20:00:00,12732.0
-2012-12-04 21:00:00,12560.0
-2012-12-04 22:00:00,12289.0
-2012-12-04 23:00:00,11784.0
-2012-12-05 00:00:00,10851.0
-2012-12-03 01:00:00,9058.0
-2012-12-03 02:00:00,8655.0
-2012-12-03 03:00:00,8389.0
-2012-12-03 04:00:00,8254.0
-2012-12-03 05:00:00,8285.0
-2012-12-03 06:00:00,8512.0
-2012-12-03 07:00:00,9286.0
-2012-12-03 08:00:00,10530.0
-2012-12-03 09:00:00,11280.0
-2012-12-03 10:00:00,11551.0
-2012-12-03 11:00:00,11649.0
-2012-12-03 12:00:00,11799.0
-2012-12-03 13:00:00,11829.0
-2012-12-03 14:00:00,11801.0
-2012-12-03 15:00:00,11814.0
-2012-12-03 16:00:00,11726.0
-2012-12-03 17:00:00,11732.0
-2012-12-03 18:00:00,12544.0
-2012-12-03 19:00:00,13095.0
-2012-12-03 20:00:00,12963.0
-2012-12-03 21:00:00,12686.0
-2012-12-03 22:00:00,12317.0
-2012-12-03 23:00:00,11709.0
-2012-12-04 00:00:00,10689.0
-2012-12-02 01:00:00,9299.0
-2012-12-02 02:00:00,8724.0
-2012-12-02 03:00:00,8389.0
-2012-12-02 04:00:00,8080.0
-2012-12-02 05:00:00,7984.0
-2012-12-02 06:00:00,7932.0
-2012-12-02 07:00:00,8035.0
-2012-12-02 08:00:00,8362.0
-2012-12-02 09:00:00,8443.0
-2012-12-02 10:00:00,8702.0
-2012-12-02 11:00:00,8959.0
-2012-12-02 12:00:00,9171.0
-2012-12-02 13:00:00,9227.0
-2012-12-02 14:00:00,9295.0
-2012-12-02 15:00:00,9257.0
-2012-12-02 16:00:00,9230.0
-2012-12-02 17:00:00,9318.0
-2012-12-02 18:00:00,10329.0
-2012-12-02 19:00:00,11089.0
-2012-12-02 20:00:00,11190.0
-2012-12-02 21:00:00,11055.0
-2012-12-02 22:00:00,10873.0
-2012-12-02 23:00:00,10437.0
-2012-12-03 00:00:00,9762.0
-2012-12-01 01:00:00,10037.0
-2012-12-01 02:00:00,9512.0
-2012-12-01 03:00:00,9103.0
-2012-12-01 04:00:00,8918.0
-2012-12-01 05:00:00,8847.0
-2012-12-01 06:00:00,8936.0
-2012-12-01 07:00:00,9216.0
-2012-12-01 08:00:00,9740.0
-2012-12-01 09:00:00,9943.0
-2012-12-01 10:00:00,10198.0
-2012-12-01 11:00:00,10321.0
-2012-12-01 12:00:00,10316.0
-2012-12-01 13:00:00,10277.0
-2012-12-01 14:00:00,10174.0
-2012-12-01 15:00:00,10163.0
-2012-12-01 16:00:00,10084.0
-2012-12-01 17:00:00,10188.0
-2012-12-01 18:00:00,11054.0
-2012-12-01 19:00:00,11450.0
-2012-12-01 20:00:00,11331.0
-2012-12-01 21:00:00,11170.0
-2012-12-01 22:00:00,10966.0
-2012-12-01 23:00:00,10593.0
-2012-12-02 00:00:00,9988.0
-2012-11-30 01:00:00,10065.0
-2012-11-30 02:00:00,9537.0
-2012-11-30 03:00:00,9169.0
-2012-11-30 04:00:00,8979.0
-2012-11-30 05:00:00,8931.0
-2012-11-30 06:00:00,9171.0
-2012-11-30 07:00:00,9857.0
-2012-11-30 08:00:00,10987.0
-2012-11-30 09:00:00,11479.0
-2012-11-30 10:00:00,11524.0
-2012-11-30 11:00:00,11531.0
-2012-11-30 12:00:00,11582.0
-2012-11-30 13:00:00,11481.0
-2012-11-30 14:00:00,11336.0
-2012-11-30 15:00:00,11324.0
-2012-11-30 16:00:00,11217.0
-2012-11-30 17:00:00,11254.0
-2012-11-30 18:00:00,12091.0
-2012-11-30 19:00:00,12644.0
-2012-11-30 20:00:00,12488.0
-2012-11-30 21:00:00,12262.0
-2012-11-30 22:00:00,12005.0
-2012-11-30 23:00:00,11564.0
-2012-12-01 00:00:00,10861.0
-2012-11-29 01:00:00,10540.0
-2012-11-29 02:00:00,9960.0
-2012-11-29 03:00:00,9625.0
-2012-11-29 04:00:00,9468.0
-2012-11-29 05:00:00,9455.0
-2012-11-29 06:00:00,9747.0
-2012-11-29 07:00:00,10467.0
-2012-11-29 08:00:00,11650.0
-2012-11-29 09:00:00,12059.0
-2012-11-29 10:00:00,12063.0
-2012-11-29 11:00:00,12018.0
-2012-11-29 12:00:00,11976.0
-2012-11-29 13:00:00,11877.0
-2012-11-29 14:00:00,11727.0
-2012-11-29 15:00:00,11660.0
-2012-11-29 16:00:00,11587.0
-2012-11-29 17:00:00,11618.0
-2012-11-29 18:00:00,12463.0
-2012-11-29 19:00:00,13012.0
-2012-11-29 20:00:00,12855.0
-2012-11-29 21:00:00,12681.0
-2012-11-29 22:00:00,12322.0
-2012-11-29 23:00:00,11782.0
-2012-11-30 00:00:00,10900.0
-2012-11-28 01:00:00,10731.0
-2012-11-28 02:00:00,10158.0
-2012-11-28 03:00:00,9844.0
-2012-11-28 04:00:00,9663.0
-2012-11-28 05:00:00,9676.0
-2012-11-28 06:00:00,9936.0
-2012-11-28 07:00:00,10686.0
-2012-11-28 08:00:00,11900.0
-2012-11-28 09:00:00,12311.0
-2012-11-28 10:00:00,12308.0
-2012-11-28 11:00:00,12258.0
-2012-11-28 12:00:00,12226.0
-2012-11-28 13:00:00,12094.0
-2012-11-28 14:00:00,11974.0
-2012-11-28 15:00:00,11886.0
-2012-11-28 16:00:00,11784.0
-2012-11-28 17:00:00,11812.0
-2012-11-28 18:00:00,12588.0
-2012-11-28 19:00:00,13338.0
-2012-11-28 20:00:00,13265.0
-2012-11-28 21:00:00,13119.0
-2012-11-28 22:00:00,12857.0
-2012-11-28 23:00:00,12336.0
-2012-11-29 00:00:00,11423.0
-2012-11-27 01:00:00,10734.0
-2012-11-27 02:00:00,10260.0
-2012-11-27 03:00:00,9995.0
-2012-11-27 04:00:00,9880.0
-2012-11-27 05:00:00,9927.0
-2012-11-27 06:00:00,10238.0
-2012-11-27 07:00:00,11012.0
-2012-11-27 08:00:00,12220.0
-2012-11-27 09:00:00,12594.0
-2012-11-27 10:00:00,12609.0
-2012-11-27 11:00:00,12560.0
-2012-11-27 12:00:00,12535.0
-2012-11-27 13:00:00,12484.0
-2012-11-27 14:00:00,12352.0
-2012-11-27 15:00:00,12293.0
-2012-11-27 16:00:00,12156.0
-2012-11-27 17:00:00,12257.0
-2012-11-27 18:00:00,13103.0
-2012-11-27 19:00:00,13782.0
-2012-11-27 20:00:00,13648.0
-2012-11-27 21:00:00,13447.0
-2012-11-27 22:00:00,13138.0
-2012-11-27 23:00:00,12549.0
-2012-11-28 00:00:00,11625.0
-2012-11-26 01:00:00,9626.0
-2012-11-26 02:00:00,9259.0
-2012-11-26 03:00:00,9086.0
-2012-11-26 04:00:00,9043.0
-2012-11-26 05:00:00,9144.0
-2012-11-26 06:00:00,9530.0
-2012-11-26 07:00:00,10367.0
-2012-11-26 08:00:00,11620.0
-2012-11-26 09:00:00,12122.0
-2012-11-26 10:00:00,12329.0
-2012-11-26 11:00:00,12380.0
-2012-11-26 12:00:00,12421.0
-2012-11-26 13:00:00,12314.0
-2012-11-26 14:00:00,12228.0
-2012-11-26 15:00:00,12305.0
-2012-11-26 16:00:00,12309.0
-2012-11-26 17:00:00,12402.0
-2012-11-26 18:00:00,13150.0
-2012-11-26 19:00:00,13635.0
-2012-11-26 20:00:00,13491.0
-2012-11-26 21:00:00,13298.0
-2012-11-26 22:00:00,13012.0
-2012-11-26 23:00:00,12454.0
-2012-11-27 00:00:00,11547.0
-2012-11-25 01:00:00,9950.0
-2012-11-25 02:00:00,9397.0
-2012-11-25 03:00:00,9075.0
-2012-11-25 04:00:00,8825.0
-2012-11-25 05:00:00,8774.0
-2012-11-25 06:00:00,8781.0
-2012-11-25 07:00:00,8986.0
-2012-11-25 08:00:00,9233.0
-2012-11-25 09:00:00,9277.0
-2012-11-25 10:00:00,9461.0
-2012-11-25 11:00:00,9641.0
-2012-11-25 12:00:00,9716.0
-2012-11-25 13:00:00,9756.0
-2012-11-25 14:00:00,9727.0
-2012-11-25 15:00:00,9695.0
-2012-11-25 16:00:00,9724.0
-2012-11-25 17:00:00,9921.0
-2012-11-25 18:00:00,10917.0
-2012-11-25 19:00:00,11658.0
-2012-11-25 20:00:00,11772.0
-2012-11-25 21:00:00,11671.0
-2012-11-25 22:00:00,11421.0
-2012-11-25 23:00:00,10971.0
-2012-11-26 00:00:00,10302.0
-2012-11-24 01:00:00,9728.0
-2012-11-24 02:00:00,9221.0
-2012-11-24 03:00:00,8957.0
-2012-11-24 04:00:00,8786.0
-2012-11-24 05:00:00,8752.0
-2012-11-24 06:00:00,8864.0
-2012-11-24 07:00:00,9163.0
-2012-11-24 08:00:00,9618.0
-2012-11-24 09:00:00,9804.0
-2012-11-24 10:00:00,10231.0
-2012-11-24 11:00:00,10593.0
-2012-11-24 12:00:00,10713.0
-2012-11-24 13:00:00,10637.0
-2012-11-24 14:00:00,10479.0
-2012-11-24 15:00:00,10253.0
-2012-11-24 16:00:00,10149.0
-2012-11-24 17:00:00,10255.0
-2012-11-24 18:00:00,11162.0
-2012-11-24 19:00:00,11786.0
-2012-11-24 20:00:00,11761.0
-2012-11-24 21:00:00,11688.0
-2012-11-24 22:00:00,11469.0
-2012-11-24 23:00:00,11131.0
-2012-11-25 00:00:00,10603.0
-2012-11-23 01:00:00,8316.0
-2012-11-23 02:00:00,8014.0
-2012-11-23 03:00:00,7841.0
-2012-11-23 04:00:00,7742.0
-2012-11-23 05:00:00,7759.0
-2012-11-23 06:00:00,8010.0
-2012-11-23 07:00:00,8477.0
-2012-11-23 08:00:00,9154.0
-2012-11-23 09:00:00,9494.0
-2012-11-23 10:00:00,9845.0
-2012-11-23 11:00:00,10172.0
-2012-11-23 12:00:00,10367.0
-2012-11-23 13:00:00,10474.0
-2012-11-23 14:00:00,10446.0
-2012-11-23 15:00:00,10376.0
-2012-11-23 16:00:00,10446.0
-2012-11-23 17:00:00,10632.0
-2012-11-23 18:00:00,11328.0
-2012-11-23 19:00:00,11850.0
-2012-11-23 20:00:00,11714.0
-2012-11-23 21:00:00,11527.0
-2012-11-23 22:00:00,11247.0
-2012-11-23 23:00:00,10914.0
-2012-11-24 00:00:00,10365.0
-2012-11-22 01:00:00,9212.0
-2012-11-22 02:00:00,8624.0
-2012-11-22 03:00:00,8217.0
-2012-11-22 04:00:00,7970.0
-2012-11-22 05:00:00,7836.0
-2012-11-22 06:00:00,7869.0
-2012-11-22 07:00:00,8041.0
-2012-11-22 08:00:00,8249.0
-2012-11-22 09:00:00,8177.0
-2012-11-22 10:00:00,8389.0
-2012-11-22 11:00:00,8621.0
-2012-11-22 12:00:00,8792.0
-2012-11-22 13:00:00,8870.0
-2012-11-22 14:00:00,8817.0
-2012-11-22 15:00:00,8708.0
-2012-11-22 16:00:00,8593.0
-2012-11-22 17:00:00,8612.0
-2012-11-22 18:00:00,9226.0
-2012-11-22 19:00:00,9362.0
-2012-11-22 20:00:00,9271.0
-2012-11-22 21:00:00,9170.0
-2012-11-22 22:00:00,9081.0
-2012-11-22 23:00:00,8951.0
-2012-11-23 00:00:00,8666.0
-2012-11-21 01:00:00,9772.0
-2012-11-21 02:00:00,9238.0
-2012-11-21 03:00:00,8900.0
-2012-11-21 04:00:00,8717.0
-2012-11-21 05:00:00,8684.0
-2012-11-21 06:00:00,8938.0
-2012-11-21 07:00:00,9631.0
-2012-11-21 08:00:00,10635.0
-2012-11-21 09:00:00,11174.0
-2012-11-21 10:00:00,11515.0
-2012-11-21 11:00:00,11657.0
-2012-11-21 12:00:00,11697.0
-2012-11-21 13:00:00,11611.0
-2012-11-21 14:00:00,11532.0
-2012-11-21 15:00:00,11417.0
-2012-11-21 16:00:00,11243.0
-2012-11-21 17:00:00,11097.0
-2012-11-21 18:00:00,11562.0
-2012-11-21 19:00:00,12151.0
-2012-11-21 20:00:00,11961.0
-2012-11-21 21:00:00,11654.0
-2012-11-21 22:00:00,11377.0
-2012-11-21 23:00:00,10924.0
-2012-11-22 00:00:00,10071.0
-2012-11-20 01:00:00,9548.0
-2012-11-20 02:00:00,9035.0
-2012-11-20 03:00:00,8741.0
-2012-11-20 04:00:00,8496.0
-2012-11-20 05:00:00,8474.0
-2012-11-20 06:00:00,8737.0
-2012-11-20 07:00:00,9464.0
-2012-11-20 08:00:00,10577.0
-2012-11-20 09:00:00,11221.0
-2012-11-20 10:00:00,11456.0
-2012-11-20 11:00:00,11589.0
-2012-11-20 12:00:00,11637.0
-2012-11-20 13:00:00,11628.0
-2012-11-20 14:00:00,11599.0
-2012-11-20 15:00:00,11546.0
-2012-11-20 16:00:00,11438.0
-2012-11-20 17:00:00,11421.0
-2012-11-20 18:00:00,11911.0
-2012-11-20 19:00:00,12412.0
-2012-11-20 20:00:00,12239.0
-2012-11-20 21:00:00,12050.0
-2012-11-20 22:00:00,11791.0
-2012-11-20 23:00:00,11367.0
-2012-11-21 00:00:00,10596.0
-2012-11-19 01:00:00,9179.0
-2012-11-19 02:00:00,8771.0
-2012-11-19 03:00:00,8586.0
-2012-11-19 04:00:00,8498.0
-2012-11-19 05:00:00,8526.0
-2012-11-19 06:00:00,8808.0
-2012-11-19 07:00:00,9603.0
-2012-11-19 08:00:00,10772.0
-2012-11-19 09:00:00,11320.0
-2012-11-19 10:00:00,11591.0
-2012-11-19 11:00:00,11595.0
-2012-11-19 12:00:00,11582.0
-2012-11-19 13:00:00,11489.0
-2012-11-19 14:00:00,11404.0
-2012-11-19 15:00:00,11397.0
-2012-11-19 16:00:00,11323.0
-2012-11-19 17:00:00,11433.0
-2012-11-19 18:00:00,12143.0
-2012-11-19 19:00:00,12465.0
-2012-11-19 20:00:00,12211.0
-2012-11-19 21:00:00,12004.0
-2012-11-19 22:00:00,11710.0
-2012-11-19 23:00:00,11194.0
-2012-11-20 00:00:00,10372.0
-2012-11-18 01:00:00,9388.0
-2012-11-18 02:00:00,9023.0
-2012-11-18 03:00:00,8711.0
-2012-11-18 04:00:00,8524.0
-2012-11-18 05:00:00,8499.0
-2012-11-18 06:00:00,8560.0
-2012-11-18 07:00:00,8700.0
-2012-11-18 08:00:00,8897.0
-2012-11-18 09:00:00,8968.0
-2012-11-18 10:00:00,9135.0
-2012-11-18 11:00:00,9291.0
-2012-11-18 12:00:00,9324.0
-2012-11-18 13:00:00,9388.0
-2012-11-18 14:00:00,9351.0
-2012-11-18 15:00:00,9360.0
-2012-11-18 16:00:00,9300.0
-2012-11-18 17:00:00,9448.0
-2012-11-18 18:00:00,10151.0
-2012-11-18 19:00:00,10921.0
-2012-11-18 20:00:00,10910.0
-2012-11-18 21:00:00,10838.0
-2012-11-18 22:00:00,10587.0
-2012-11-18 23:00:00,10265.0
-2012-11-19 00:00:00,9701.0
-2012-11-17 01:00:00,9894.0
-2012-11-17 02:00:00,9415.0
-2012-11-17 03:00:00,9122.0
-2012-11-17 04:00:00,8931.0
-2012-11-17 05:00:00,8849.0
-2012-11-17 06:00:00,8954.0
-2012-11-17 07:00:00,9286.0
-2012-11-17 08:00:00,9723.0
-2012-11-17 09:00:00,9931.0
-2012-11-17 10:00:00,10177.0
-2012-11-17 11:00:00,10296.0
-2012-11-17 12:00:00,10307.0
-2012-11-17 13:00:00,10192.0
-2012-11-17 14:00:00,10074.0
-2012-11-17 15:00:00,9824.0
-2012-11-17 16:00:00,9741.0
-2012-11-17 17:00:00,9770.0
-2012-11-17 18:00:00,10395.0
-2012-11-17 19:00:00,11007.0
-2012-11-17 20:00:00,10973.0
-2012-11-17 21:00:00,10807.0
-2012-11-17 22:00:00,10673.0
-2012-11-17 23:00:00,10366.0
-2012-11-18 00:00:00,9939.0
-2012-11-16 01:00:00,10098.0
-2012-11-16 02:00:00,9600.0
-2012-11-16 03:00:00,9333.0
-2012-11-16 04:00:00,9152.0
-2012-11-16 05:00:00,9149.0
-2012-11-16 06:00:00,9429.0
-2012-11-16 07:00:00,10135.0
-2012-11-16 08:00:00,11223.0
-2012-11-16 09:00:00,11605.0
-2012-11-16 10:00:00,11638.0
-2012-11-16 11:00:00,11601.0
-2012-11-16 12:00:00,11584.0
-2012-11-16 13:00:00,11464.0
-2012-11-16 14:00:00,11371.0
-2012-11-16 15:00:00,11332.0
-2012-11-16 16:00:00,11214.0
-2012-11-16 17:00:00,11157.0
-2012-11-16 18:00:00,11675.0
-2012-11-16 19:00:00,12276.0
-2012-11-16 20:00:00,12144.0
-2012-11-16 21:00:00,11912.0
-2012-11-16 22:00:00,11613.0
-2012-11-16 23:00:00,11257.0
-2012-11-17 00:00:00,10543.0
-2012-11-15 01:00:00,10218.0
-2012-11-15 02:00:00,9736.0
-2012-11-15 03:00:00,9474.0
-2012-11-15 04:00:00,9299.0
-2012-11-15 05:00:00,9325.0
-2012-11-15 06:00:00,9562.0
-2012-11-15 07:00:00,10328.0
-2012-11-15 08:00:00,11406.0
-2012-11-15 09:00:00,11883.0
-2012-11-15 10:00:00,12028.0
-2012-11-15 11:00:00,12059.0
-2012-11-15 12:00:00,11994.0
-2012-11-15 13:00:00,11857.0
-2012-11-15 14:00:00,11697.0
-2012-11-15 15:00:00,11646.0
-2012-11-15 16:00:00,11517.0
-2012-11-15 17:00:00,11467.0
-2012-11-15 18:00:00,12015.0
-2012-11-15 19:00:00,12711.0
-2012-11-15 20:00:00,12581.0
-2012-11-15 21:00:00,12371.0
-2012-11-15 22:00:00,12101.0
-2012-11-15 23:00:00,11608.0
-2012-11-16 00:00:00,10803.0
-2012-11-14 01:00:00,10308.0
-2012-11-14 02:00:00,9854.0
-2012-11-14 03:00:00,9589.0
-2012-11-14 04:00:00,9431.0
-2012-11-14 05:00:00,9396.0
-2012-11-14 06:00:00,9654.0
-2012-11-14 07:00:00,10369.0
-2012-11-14 08:00:00,11468.0
-2012-11-14 09:00:00,11932.0
-2012-11-14 10:00:00,12005.0
-2012-11-14 11:00:00,12010.0
-2012-11-14 12:00:00,12027.0
-2012-11-14 13:00:00,11924.0
-2012-11-14 14:00:00,11776.0
-2012-11-14 15:00:00,11712.0
-2012-11-14 16:00:00,11626.0
-2012-11-14 17:00:00,11555.0
-2012-11-14 18:00:00,12108.0
-2012-11-14 19:00:00,12819.0
-2012-11-14 20:00:00,12721.0
-2012-11-14 21:00:00,12540.0
-2012-11-14 22:00:00,12274.0
-2012-11-14 23:00:00,11739.0
-2012-11-15 00:00:00,10955.0
-2012-11-13 01:00:00,10288.0
-2012-11-13 02:00:00,9824.0
-2012-11-13 03:00:00,9565.0
-2012-11-13 04:00:00,9455.0
-2012-11-13 05:00:00,9466.0
-2012-11-13 06:00:00,9749.0
-2012-11-13 07:00:00,10521.0
-2012-11-13 08:00:00,11625.0
-2012-11-13 09:00:00,12031.0
-2012-11-13 10:00:00,12130.0
-2012-11-13 11:00:00,12129.0
-2012-11-13 12:00:00,12115.0
-2012-11-13 13:00:00,12028.0
-2012-11-13 14:00:00,11914.0
-2012-11-13 15:00:00,11888.0
-2012-11-13 16:00:00,11696.0
-2012-11-13 17:00:00,11709.0
-2012-11-13 18:00:00,12245.0
-2012-11-13 19:00:00,12969.0
-2012-11-13 20:00:00,12880.0
-2012-11-13 21:00:00,12732.0
-2012-11-13 22:00:00,12415.0
-2012-11-13 23:00:00,11889.0
-2012-11-14 00:00:00,11064.0
-2012-11-12 01:00:00,8874.0
-2012-11-12 02:00:00,8564.0
-2012-11-12 03:00:00,8381.0
-2012-11-12 04:00:00,8358.0
-2012-11-12 05:00:00,8428.0
-2012-11-12 06:00:00,8788.0
-2012-11-12 07:00:00,9582.0
-2012-11-12 08:00:00,10806.0
-2012-11-12 09:00:00,11338.0
-2012-11-12 10:00:00,11560.0
-2012-11-12 11:00:00,11763.0
-2012-11-12 12:00:00,11884.0
-2012-11-12 13:00:00,11903.0
-2012-11-12 14:00:00,11863.0
-2012-11-12 15:00:00,11896.0
-2012-11-12 16:00:00,11942.0
-2012-11-12 17:00:00,12107.0
-2012-11-12 18:00:00,12731.0
-2012-11-12 19:00:00,13208.0
-2012-11-12 20:00:00,13005.0
-2012-11-12 21:00:00,12746.0
-2012-11-12 22:00:00,12402.0
-2012-11-12 23:00:00,11839.0
-2012-11-13 00:00:00,11014.0
-2012-11-11 01:00:00,8980.0
-2012-11-11 02:00:00,8486.0
-2012-11-11 03:00:00,8165.0
-2012-11-11 04:00:00,7922.0
-2012-11-11 05:00:00,7851.0
-2012-11-11 06:00:00,7787.0
-2012-11-11 07:00:00,7969.0
-2012-11-11 08:00:00,8121.0
-2012-11-11 09:00:00,8274.0
-2012-11-11 10:00:00,8605.0
-2012-11-11 11:00:00,8905.0
-2012-11-11 12:00:00,9126.0
-2012-11-11 13:00:00,9222.0
-2012-11-11 14:00:00,9278.0
-2012-11-11 15:00:00,9253.0
-2012-11-11 16:00:00,9325.0
-2012-11-11 17:00:00,9619.0
-2012-11-11 18:00:00,10343.0
-2012-11-11 19:00:00,10695.0
-2012-11-11 20:00:00,10640.0
-2012-11-11 21:00:00,10449.0
-2012-11-11 22:00:00,10199.0
-2012-11-11 23:00:00,9909.0
-2012-11-12 00:00:00,9432.0
-2012-11-10 01:00:00,9446.0
-2012-11-10 02:00:00,8948.0
-2012-11-10 03:00:00,8585.0
-2012-11-10 04:00:00,8381.0
-2012-11-10 05:00:00,8260.0
-2012-11-10 06:00:00,8362.0
-2012-11-10 07:00:00,8610.0
-2012-11-10 08:00:00,8957.0
-2012-11-10 09:00:00,9242.0
-2012-11-10 10:00:00,9660.0
-2012-11-10 11:00:00,9914.0
-2012-11-10 12:00:00,10031.0
-2012-11-10 13:00:00,10143.0
-2012-11-10 14:00:00,10158.0
-2012-11-10 15:00:00,10077.0
-2012-11-10 16:00:00,9872.0
-2012-11-10 17:00:00,9784.0
-2012-11-10 18:00:00,10265.0
-2012-11-10 19:00:00,10863.0
-2012-11-10 20:00:00,10790.0
-2012-11-10 21:00:00,10536.0
-2012-11-10 22:00:00,10400.0
-2012-11-10 23:00:00,10041.0
-2012-11-11 00:00:00,9521.0
-2012-11-09 01:00:00,9911.0
-2012-11-09 02:00:00,9436.0
-2012-11-09 03:00:00,9140.0
-2012-11-09 04:00:00,8970.0
-2012-11-09 05:00:00,8974.0
-2012-11-09 06:00:00,9197.0
-2012-11-09 07:00:00,9900.0
-2012-11-09 08:00:00,10930.0
-2012-11-09 09:00:00,11320.0
-2012-11-09 10:00:00,11481.0
-2012-11-09 11:00:00,11549.0
-2012-11-09 12:00:00,11514.0
-2012-11-09 13:00:00,11415.0
-2012-11-09 14:00:00,11359.0
-2012-11-09 15:00:00,11350.0
-2012-11-09 16:00:00,11264.0
-2012-11-09 17:00:00,11211.0
-2012-11-09 18:00:00,11608.0
-2012-11-09 19:00:00,12110.0
-2012-11-09 20:00:00,11899.0
-2012-11-09 21:00:00,11610.0
-2012-11-09 22:00:00,11299.0
-2012-11-09 23:00:00,10890.0
-2012-11-10 00:00:00,10196.0
-2012-11-08 01:00:00,9749.0
-2012-11-08 02:00:00,9277.0
-2012-11-08 03:00:00,8978.0
-2012-11-08 04:00:00,8783.0
-2012-11-08 05:00:00,8763.0
-2012-11-08 06:00:00,9007.0
-2012-11-08 07:00:00,9716.0
-2012-11-08 08:00:00,10868.0
-2012-11-08 09:00:00,11467.0
-2012-11-08 10:00:00,11677.0
-2012-11-08 11:00:00,11770.0
-2012-11-08 12:00:00,11909.0
-2012-11-08 13:00:00,11867.0
-2012-11-08 14:00:00,11814.0
-2012-11-08 15:00:00,11755.0
-2012-11-08 16:00:00,11673.0
-2012-11-08 17:00:00,11581.0
-2012-11-08 18:00:00,11909.0
-2012-11-08 19:00:00,12615.0
-2012-11-08 20:00:00,12511.0
-2012-11-08 21:00:00,12315.0
-2012-11-08 22:00:00,12006.0
-2012-11-08 23:00:00,11503.0
-2012-11-09 00:00:00,10662.0
-2012-11-07 01:00:00,10021.0
-2012-11-07 02:00:00,9546.0
-2012-11-07 03:00:00,9204.0
-2012-11-07 04:00:00,8984.0
-2012-11-07 05:00:00,8949.0
-2012-11-07 06:00:00,9194.0
-2012-11-07 07:00:00,9886.0
-2012-11-07 08:00:00,11064.0
-2012-11-07 09:00:00,11627.0
-2012-11-07 10:00:00,11851.0
-2012-11-07 11:00:00,11909.0
-2012-11-07 12:00:00,11892.0
-2012-11-07 13:00:00,11890.0
-2012-11-07 14:00:00,11814.0
-2012-11-07 15:00:00,11815.0
-2012-11-07 16:00:00,11749.0
-2012-11-07 17:00:00,11808.0
-2012-11-07 18:00:00,12282.0
-2012-11-07 19:00:00,12688.0
-2012-11-07 20:00:00,12471.0
-2012-11-07 21:00:00,12231.0
-2012-11-07 22:00:00,11888.0
-2012-11-07 23:00:00,11341.0
-2012-11-08 00:00:00,10530.0
-2012-11-06 01:00:00,9941.0
-2012-11-06 02:00:00,9487.0
-2012-11-06 03:00:00,9247.0
-2012-11-06 04:00:00,9117.0
-2012-11-06 05:00:00,9111.0
-2012-11-06 06:00:00,9422.0
-2012-11-06 07:00:00,10227.0
-2012-11-06 08:00:00,11213.0
-2012-11-06 09:00:00,11590.0
-2012-11-06 10:00:00,11776.0
-2012-11-06 11:00:00,11912.0
-2012-11-06 12:00:00,12104.0
-2012-11-06 13:00:00,12150.0
-2012-11-06 14:00:00,12109.0
-2012-11-06 15:00:00,12148.0
-2012-11-06 16:00:00,12077.0
-2012-11-06 17:00:00,12044.0
-2012-11-06 18:00:00,12537.0
-2012-11-06 19:00:00,12946.0
-2012-11-06 20:00:00,12730.0
-2012-11-06 21:00:00,12520.0
-2012-11-06 22:00:00,12171.0
-2012-11-06 23:00:00,11558.0
-2012-11-07 00:00:00,10753.0
-2012-11-05 01:00:00,9100.0
-2012-11-05 02:00:00,8797.0
-2012-11-05 03:00:00,8665.0
-2012-11-05 04:00:00,8600.0
-2012-11-05 05:00:00,8678.0
-2012-11-05 06:00:00,9003.0
-2012-11-05 07:00:00,9840.0
-2012-11-05 08:00:00,11004.0
-2012-11-05 09:00:00,11603.0
-2012-11-05 10:00:00,11777.0
-2012-11-05 11:00:00,11875.0
-2012-11-05 12:00:00,11907.0
-2012-11-05 13:00:00,11894.0
-2012-11-05 14:00:00,11848.0
-2012-11-05 15:00:00,11851.0
-2012-11-05 16:00:00,11776.0
-2012-11-05 17:00:00,11777.0
-2012-11-05 18:00:00,12182.0
-2012-11-05 19:00:00,12771.0
-2012-11-05 20:00:00,12599.0
-2012-11-05 21:00:00,12364.0
-2012-11-05 22:00:00,12052.0
-2012-11-05 23:00:00,11489.0
-2012-11-06 00:00:00,10660.0
-2012-11-04 01:00:00,9382.0
-2012-11-04 03:00:00,8546.0
-2012-11-04 04:00:00,8495.0
-2012-11-04 05:00:00,8424.0
-2012-11-04 06:00:00,8412.0
-2012-11-04 07:00:00,8621.0
-2012-11-04 08:00:00,8817.0
-2012-11-04 09:00:00,9009.0
-2012-11-04 10:00:00,9186.0
-2012-11-04 11:00:00,9106.0
-2012-11-04 12:00:00,9324.0
-2012-11-04 13:00:00,9331.0
-2012-11-04 14:00:00,9272.0
-2012-11-04 15:00:00,9223.0
-2012-11-04 16:00:00,9211.0
-2012-11-04 17:00:00,9260.0
-2012-11-04 18:00:00,9864.0
-2012-11-04 19:00:00,10779.0
-2012-11-04 20:00:00,10868.0
-2012-11-04 21:00:00,10808.0
-2012-11-04 22:00:00,10566.0
-2012-11-04 23:00:00,10240.0
-2012-11-05 00:00:00,9541.0
-2012-11-03 01:00:00,9726.0
-2012-11-03 02:00:00,9140.0
-2012-11-03 03:00:00,8827.0
-2012-11-03 04:00:00,8623.0
-2012-11-03 05:00:00,8537.0
-2012-11-03 06:00:00,8577.0
-2012-11-03 07:00:00,8830.0
-2012-11-03 08:00:00,9388.0
-2012-11-03 09:00:00,9839.0
-2012-11-03 10:00:00,10104.0
-2012-11-03 11:00:00,10347.0
-2012-11-03 12:00:00,10464.0
-2012-11-03 13:00:00,10415.0
-2012-11-03 14:00:00,10290.0
-2012-11-03 15:00:00,10078.0
-2012-11-03 16:00:00,9995.0
-2012-11-03 17:00:00,9915.0
-2012-11-03 18:00:00,10072.0
-2012-11-03 19:00:00,10411.0
-2012-11-03 20:00:00,10881.0
-2012-11-03 21:00:00,10775.0
-2012-11-03 22:00:00,10629.0
-2012-11-03 23:00:00,10337.0
-2012-11-04 00:00:00,9948.0
-2012-11-02 01:00:00,9729.0
-2012-11-02 02:00:00,9211.0
-2012-11-02 03:00:00,8924.0
-2012-11-02 04:00:00,8767.0
-2012-11-02 05:00:00,8779.0
-2012-11-02 06:00:00,9010.0
-2012-11-02 07:00:00,9729.0
-2012-11-02 08:00:00,10978.0
-2012-11-02 09:00:00,11704.0
-2012-11-02 10:00:00,11676.0
-2012-11-02 11:00:00,11664.0
-2012-11-02 12:00:00,11612.0
-2012-11-02 13:00:00,11493.0
-2012-11-02 14:00:00,11354.0
-2012-11-02 15:00:00,11282.0
-2012-11-02 16:00:00,11120.0
-2012-11-02 17:00:00,10948.0
-2012-11-02 18:00:00,10933.0
-2012-11-02 19:00:00,11280.0
-2012-11-02 20:00:00,11873.0
-2012-11-02 21:00:00,11744.0
-2012-11-02 22:00:00,11491.0
-2012-11-02 23:00:00,11093.0
-2012-11-03 00:00:00,10405.0
-2012-11-01 01:00:00,9753.0
-2012-11-01 02:00:00,9314.0
-2012-11-01 03:00:00,9054.0
-2012-11-01 04:00:00,8913.0
-2012-11-01 05:00:00,8912.0
-2012-11-01 06:00:00,9131.0
-2012-11-01 07:00:00,9891.0
-2012-11-01 08:00:00,11179.0
-2012-11-01 09:00:00,11863.0
-2012-11-01 10:00:00,11841.0
-2012-11-01 11:00:00,11785.0
-2012-11-01 12:00:00,11777.0
-2012-11-01 13:00:00,11687.0
-2012-11-01 14:00:00,11570.0
-2012-11-01 15:00:00,11497.0
-2012-11-01 16:00:00,11400.0
-2012-11-01 17:00:00,11262.0
-2012-11-01 18:00:00,11209.0
-2012-11-01 19:00:00,11494.0
-2012-11-01 20:00:00,12105.0
-2012-11-01 21:00:00,12023.0
-2012-11-01 22:00:00,11772.0
-2012-11-01 23:00:00,11288.0
-2012-11-02 00:00:00,10500.0
-2012-10-31 01:00:00,9878.0
-2012-10-31 02:00:00,9347.0
-2012-10-31 03:00:00,9032.0
-2012-10-31 04:00:00,8878.0
-2012-10-31 05:00:00,8856.0
-2012-10-31 06:00:00,9095.0
-2012-10-31 07:00:00,9852.0
-2012-10-31 08:00:00,11163.0
-2012-10-31 09:00:00,11931.0
-2012-10-31 10:00:00,11956.0
-2012-10-31 11:00:00,11951.0
-2012-10-31 12:00:00,11885.0
-2012-10-31 13:00:00,11764.0
-2012-10-31 14:00:00,11659.0
-2012-10-31 15:00:00,11620.0
-2012-10-31 16:00:00,11397.0
-2012-10-31 17:00:00,11302.0
-2012-10-31 18:00:00,11216.0
-2012-10-31 19:00:00,11463.0
-2012-10-31 20:00:00,11962.0
-2012-10-31 21:00:00,11878.0
-2012-10-31 22:00:00,11655.0
-2012-10-31 23:00:00,11228.0
-2012-11-01 00:00:00,10466.0
-2012-10-30 01:00:00,9739.0
-2012-10-30 02:00:00,9232.0
-2012-10-30 03:00:00,8913.0
-2012-10-30 04:00:00,8786.0
-2012-10-30 05:00:00,8756.0
-2012-10-30 06:00:00,9012.0
-2012-10-30 07:00:00,9745.0
-2012-10-30 08:00:00,11067.0
-2012-10-30 09:00:00,11890.0
-2012-10-30 10:00:00,11909.0
-2012-10-30 11:00:00,11998.0
-2012-10-30 12:00:00,12055.0
-2012-10-30 13:00:00,11915.0
-2012-10-30 14:00:00,11768.0
-2012-10-30 15:00:00,11724.0
-2012-10-30 16:00:00,11672.0
-2012-10-30 17:00:00,11546.0
-2012-10-30 18:00:00,11581.0
-2012-10-30 19:00:00,11873.0
-2012-10-30 20:00:00,12359.0
-2012-10-30 21:00:00,12275.0
-2012-10-30 22:00:00,11994.0
-2012-10-30 23:00:00,11507.0
-2012-10-31 00:00:00,10672.0
-2012-10-29 01:00:00,9084.0
-2012-10-29 02:00:00,8749.0
-2012-10-29 03:00:00,8525.0
-2012-10-29 04:00:00,8458.0
-2012-10-29 05:00:00,8412.0
-2012-10-29 06:00:00,8738.0
-2012-10-29 07:00:00,9544.0
-2012-10-29 08:00:00,10865.0
-2012-10-29 09:00:00,11656.0
-2012-10-29 10:00:00,11595.0
-2012-10-29 11:00:00,11566.0
-2012-10-29 12:00:00,11598.0
-2012-10-29 13:00:00,11545.0
-2012-10-29 14:00:00,11471.0
-2012-10-29 15:00:00,11427.0
-2012-10-29 16:00:00,11279.0
-2012-10-29 17:00:00,11170.0
-2012-10-29 18:00:00,11149.0
-2012-10-29 19:00:00,11396.0
-2012-10-29 20:00:00,12132.0
-2012-10-29 21:00:00,12076.0
-2012-10-29 22:00:00,11807.0
-2012-10-29 23:00:00,11315.0
-2012-10-30 00:00:00,10506.0
-2012-10-28 01:00:00,9182.0
-2012-10-28 02:00:00,8771.0
-2012-10-28 03:00:00,8454.0
-2012-10-28 04:00:00,8325.0
-2012-10-28 05:00:00,8218.0
-2012-10-28 06:00:00,8207.0
-2012-10-28 07:00:00,8329.0
-2012-10-28 08:00:00,8590.0
-2012-10-28 09:00:00,8826.0
-2012-10-28 10:00:00,8986.0
-2012-10-28 11:00:00,9201.0
-2012-10-28 12:00:00,9299.0
-2012-10-28 13:00:00,9366.0
-2012-10-28 14:00:00,9345.0
-2012-10-28 15:00:00,9319.0
-2012-10-28 16:00:00,9239.0
-2012-10-28 17:00:00,9220.0
-2012-10-28 18:00:00,9301.0
-2012-10-28 19:00:00,9715.0
-2012-10-28 20:00:00,10519.0
-2012-10-28 21:00:00,10636.0
-2012-10-28 22:00:00,10526.0
-2012-10-28 23:00:00,10193.0
-2012-10-29 00:00:00,9676.0
-2012-10-27 01:00:00,9576.0
-2012-10-27 02:00:00,9056.0
-2012-10-27 03:00:00,8752.0
-2012-10-27 04:00:00,8554.0
-2012-10-27 05:00:00,8471.0
-2012-10-27 06:00:00,8463.0
-2012-10-27 07:00:00,8796.0
-2012-10-27 08:00:00,9280.0
-2012-10-27 09:00:00,9666.0
-2012-10-27 10:00:00,9846.0
-2012-10-27 11:00:00,10028.0
-2012-10-27 12:00:00,10068.0
-2012-10-27 13:00:00,9997.0
-2012-10-27 14:00:00,9829.0
-2012-10-27 15:00:00,9664.0
-2012-10-27 16:00:00,9479.0
-2012-10-27 17:00:00,9413.0
-2012-10-27 18:00:00,9469.0
-2012-10-27 19:00:00,9814.0
-2012-10-27 20:00:00,10599.0
-2012-10-27 21:00:00,10625.0
-2012-10-27 22:00:00,10484.0
-2012-10-27 23:00:00,10196.0
-2012-10-28 00:00:00,9705.0
-2012-10-26 01:00:00,9283.0
-2012-10-26 02:00:00,8760.0
-2012-10-26 03:00:00,8406.0
-2012-10-26 04:00:00,8247.0
-2012-10-26 05:00:00,8183.0
-2012-10-26 06:00:00,8423.0
-2012-10-26 07:00:00,9150.0
-2012-10-26 08:00:00,10386.0
-2012-10-26 09:00:00,11115.0
-2012-10-26 10:00:00,11251.0
-2012-10-26 11:00:00,11374.0
-2012-10-26 12:00:00,11426.0
-2012-10-26 13:00:00,11373.0
-2012-10-26 14:00:00,11272.0
-2012-10-26 15:00:00,11209.0
-2012-10-26 16:00:00,11034.0
-2012-10-26 17:00:00,10867.0
-2012-10-26 18:00:00,10778.0
-2012-10-26 19:00:00,11022.0
-2012-10-26 20:00:00,11573.0
-2012-10-26 21:00:00,11499.0
-2012-10-26 22:00:00,11252.0
-2012-10-26 23:00:00,10894.0
-2012-10-27 00:00:00,10224.0
-2012-10-25 01:00:00,9989.0
-2012-10-25 02:00:00,9437.0
-2012-10-25 03:00:00,8881.0
-2012-10-25 04:00:00,8645.0
-2012-10-25 05:00:00,8515.0
-2012-10-25 06:00:00,8667.0
-2012-10-25 07:00:00,9334.0
-2012-10-25 08:00:00,10624.0
-2012-10-25 09:00:00,11290.0
-2012-10-25 10:00:00,11567.0
-2012-10-25 11:00:00,11860.0
-2012-10-25 12:00:00,12190.0
-2012-10-25 13:00:00,12315.0
-2012-10-25 14:00:00,12425.0
-2012-10-25 15:00:00,12527.0
-2012-10-25 16:00:00,12468.0
-2012-10-25 17:00:00,12397.0
-2012-10-25 18:00:00,12372.0
-2012-10-25 19:00:00,12365.0
-2012-10-25 20:00:00,12328.0
-2012-10-25 21:00:00,11938.0
-2012-10-25 22:00:00,11503.0
-2012-10-25 23:00:00,10935.0
-2012-10-26 00:00:00,10059.0
-2012-10-24 01:00:00,9549.0
-2012-10-24 02:00:00,8999.0
-2012-10-24 03:00:00,8582.0
-2012-10-24 04:00:00,8367.0
-2012-10-24 05:00:00,8286.0
-2012-10-24 06:00:00,8487.0
-2012-10-24 07:00:00,9120.0
-2012-10-24 08:00:00,10382.0
-2012-10-24 09:00:00,11094.0
-2012-10-24 10:00:00,11311.0
-2012-10-24 11:00:00,11562.0
-2012-10-24 12:00:00,11862.0
-2012-10-24 13:00:00,12032.0
-2012-10-24 14:00:00,12181.0
-2012-10-24 15:00:00,12405.0
-2012-10-24 16:00:00,12421.0
-2012-10-24 17:00:00,12409.0
-2012-10-24 18:00:00,12350.0
-2012-10-24 19:00:00,12377.0
-2012-10-24 20:00:00,12831.0
-2012-10-24 21:00:00,12778.0
-2012-10-24 22:00:00,12412.0
-2012-10-24 23:00:00,11794.0
-2012-10-25 00:00:00,10849.0
-2012-10-23 01:00:00,9507.0
-2012-10-23 02:00:00,8902.0
-2012-10-23 03:00:00,8502.0
-2012-10-23 04:00:00,8287.0
-2012-10-23 05:00:00,8224.0
-2012-10-23 06:00:00,8355.0
-2012-10-23 07:00:00,9028.0
-2012-10-23 08:00:00,10314.0
-2012-10-23 09:00:00,11175.0
-2012-10-23 10:00:00,11474.0
-2012-10-23 11:00:00,11608.0
-2012-10-23 12:00:00,11771.0
-2012-10-23 13:00:00,11809.0
-2012-10-23 14:00:00,11880.0
-2012-10-23 15:00:00,11961.0
-2012-10-23 16:00:00,11894.0
-2012-10-23 17:00:00,11796.0
-2012-10-23 18:00:00,11696.0
-2012-10-23 19:00:00,11643.0
-2012-10-23 20:00:00,12149.0
-2012-10-23 21:00:00,12083.0
-2012-10-23 22:00:00,11765.0
-2012-10-23 23:00:00,11181.0
-2012-10-24 00:00:00,10384.0
-2012-10-22 01:00:00,8576.0
-2012-10-22 02:00:00,8167.0
-2012-10-22 03:00:00,7931.0
-2012-10-22 04:00:00,7786.0
-2012-10-22 05:00:00,7800.0
-2012-10-22 06:00:00,8089.0
-2012-10-22 07:00:00,8797.0
-2012-10-22 08:00:00,10082.0
-2012-10-22 09:00:00,10834.0
-2012-10-22 10:00:00,11143.0
-2012-10-22 11:00:00,11345.0
-2012-10-22 12:00:00,11635.0
-2012-10-22 13:00:00,11845.0
-2012-10-22 14:00:00,11843.0
-2012-10-22 15:00:00,11784.0
-2012-10-22 16:00:00,11643.0
-2012-10-22 17:00:00,11569.0
-2012-10-22 18:00:00,11611.0
-2012-10-22 19:00:00,11842.0
-2012-10-22 20:00:00,12164.0
-2012-10-22 21:00:00,12048.0
-2012-10-22 22:00:00,11682.0
-2012-10-22 23:00:00,11155.0
-2012-10-23 00:00:00,10368.0
-2012-10-21 01:00:00,8914.0
-2012-10-21 02:00:00,8458.0
-2012-10-21 03:00:00,8208.0
-2012-10-21 04:00:00,7976.0
-2012-10-21 05:00:00,7909.0
-2012-10-21 06:00:00,7919.0
-2012-10-21 07:00:00,8102.0
-2012-10-21 08:00:00,8343.0
-2012-10-21 09:00:00,8420.0
-2012-10-21 10:00:00,8607.0
-2012-10-21 11:00:00,8799.0
-2012-10-21 12:00:00,8896.0
-2012-10-21 13:00:00,8988.0
-2012-10-21 14:00:00,8994.0
-2012-10-21 15:00:00,9019.0
-2012-10-21 16:00:00,8990.0
-2012-10-21 17:00:00,8998.0
-2012-10-21 18:00:00,9059.0
-2012-10-21 19:00:00,9280.0
-2012-10-21 20:00:00,10091.0
-2012-10-21 21:00:00,10311.0
-2012-10-21 22:00:00,10108.0
-2012-10-21 23:00:00,9746.0
-2012-10-22 00:00:00,9149.0
-2012-10-20 01:00:00,9426.0
-2012-10-20 02:00:00,8895.0
-2012-10-20 03:00:00,8599.0
-2012-10-20 04:00:00,8384.0
-2012-10-20 05:00:00,8285.0
-2012-10-20 06:00:00,8286.0
-2012-10-20 07:00:00,8628.0
-2012-10-20 08:00:00,9140.0
-2012-10-20 09:00:00,9415.0
-2012-10-20 10:00:00,9694.0
-2012-10-20 11:00:00,9821.0
-2012-10-20 12:00:00,9879.0
-2012-10-20 13:00:00,9806.0
-2012-10-20 14:00:00,9713.0
-2012-10-20 15:00:00,9519.0
-2012-10-20 16:00:00,9401.0
-2012-10-20 17:00:00,9283.0
-2012-10-20 18:00:00,9274.0
-2012-10-20 19:00:00,9400.0
-2012-10-20 20:00:00,10107.0
-2012-10-20 21:00:00,10266.0
-2012-10-20 22:00:00,10122.0
-2012-10-20 23:00:00,9885.0
-2012-10-21 00:00:00,9380.0
-2012-10-19 01:00:00,9530.0
-2012-10-19 02:00:00,8985.0
-2012-10-19 03:00:00,8646.0
-2012-10-19 04:00:00,8465.0
-2012-10-19 05:00:00,8403.0
-2012-10-19 06:00:00,8592.0
-2012-10-19 07:00:00,9252.0
-2012-10-19 08:00:00,10413.0
-2012-10-19 09:00:00,11165.0
-2012-10-19 10:00:00,11316.0
-2012-10-19 11:00:00,11384.0
-2012-10-19 12:00:00,11444.0
-2012-10-19 13:00:00,11401.0
-2012-10-19 14:00:00,11321.0
-2012-10-19 15:00:00,11277.0
-2012-10-19 16:00:00,11118.0
-2012-10-19 17:00:00,10997.0
-2012-10-19 18:00:00,10922.0
-2012-10-19 19:00:00,11058.0
-2012-10-19 20:00:00,11522.0
-2012-10-19 21:00:00,11443.0
-2012-10-19 22:00:00,11114.0
-2012-10-19 23:00:00,10751.0
-2012-10-20 00:00:00,10141.0
-2012-10-18 01:00:00,9271.0
-2012-10-18 02:00:00,8750.0
-2012-10-18 03:00:00,8416.0
-2012-10-18 04:00:00,8227.0
-2012-10-18 05:00:00,8161.0
-2012-10-18 06:00:00,8346.0
-2012-10-18 07:00:00,9050.0
-2012-10-18 08:00:00,10290.0
-2012-10-18 09:00:00,10968.0
-2012-10-18 10:00:00,11110.0
-2012-10-18 11:00:00,11200.0
-2012-10-18 12:00:00,11312.0
-2012-10-18 13:00:00,11397.0
-2012-10-18 14:00:00,11380.0
-2012-10-18 15:00:00,11407.0
-2012-10-18 16:00:00,11338.0
-2012-10-18 17:00:00,11279.0
-2012-10-18 18:00:00,11313.0
-2012-10-18 19:00:00,11509.0
-2012-10-18 20:00:00,11902.0
-2012-10-18 21:00:00,11875.0
-2012-10-18 22:00:00,11608.0
-2012-10-18 23:00:00,11116.0
-2012-10-19 00:00:00,10306.0
-2012-10-17 01:00:00,9445.0
-2012-10-17 02:00:00,8910.0
-2012-10-17 03:00:00,8575.0
-2012-10-17 04:00:00,8349.0
-2012-10-17 05:00:00,8252.0
-2012-10-17 06:00:00,8424.0
-2012-10-17 07:00:00,9063.0
-2012-10-17 08:00:00,10288.0
-2012-10-17 09:00:00,10819.0
-2012-10-17 10:00:00,11072.0
-2012-10-17 11:00:00,11284.0
-2012-10-17 12:00:00,11533.0
-2012-10-17 13:00:00,11592.0
-2012-10-17 14:00:00,11631.0
-2012-10-17 15:00:00,11669.0
-2012-10-17 16:00:00,11605.0
-2012-10-17 17:00:00,11595.0
-2012-10-17 18:00:00,11813.0
-2012-10-17 19:00:00,11887.0
-2012-10-17 20:00:00,12090.0
-2012-10-17 21:00:00,12005.0
-2012-10-17 22:00:00,11648.0
-2012-10-17 23:00:00,11041.0
-2012-10-18 00:00:00,10081.0
-2012-10-16 01:00:00,9420.0
-2012-10-16 02:00:00,8870.0
-2012-10-16 03:00:00,8564.0
-2012-10-16 04:00:00,8429.0
-2012-10-16 05:00:00,8413.0
-2012-10-16 06:00:00,8646.0
-2012-10-16 07:00:00,9344.0
-2012-10-16 08:00:00,10565.0
-2012-10-16 09:00:00,11131.0
-2012-10-16 10:00:00,11242.0
-2012-10-16 11:00:00,11290.0
-2012-10-16 12:00:00,11373.0
-2012-10-16 13:00:00,11422.0
-2012-10-16 14:00:00,11430.0
-2012-10-16 15:00:00,11531.0
-2012-10-16 16:00:00,11481.0
-2012-10-16 17:00:00,11367.0
-2012-10-16 18:00:00,11277.0
-2012-10-16 19:00:00,11277.0
-2012-10-16 20:00:00,11820.0
-2012-10-16 21:00:00,11945.0
-2012-10-16 22:00:00,11599.0
-2012-10-16 23:00:00,11080.0
-2012-10-17 00:00:00,10239.0
-2012-10-15 01:00:00,8624.0
-2012-10-15 02:00:00,8237.0
-2012-10-15 03:00:00,8030.0
-2012-10-15 04:00:00,7953.0
-2012-10-15 05:00:00,7962.0
-2012-10-15 06:00:00,8198.0
-2012-10-15 07:00:00,8975.0
-2012-10-15 08:00:00,10252.0
-2012-10-15 09:00:00,10889.0
-2012-10-15 10:00:00,11145.0
-2012-10-15 11:00:00,11185.0
-2012-10-15 12:00:00,11275.0
-2012-10-15 13:00:00,11244.0
-2012-10-15 14:00:00,11193.0
-2012-10-15 15:00:00,11225.0
-2012-10-15 16:00:00,11133.0
-2012-10-15 17:00:00,10996.0
-2012-10-15 18:00:00,10896.0
-2012-10-15 19:00:00,10927.0
-2012-10-15 20:00:00,11522.0
-2012-10-15 21:00:00,11678.0
-2012-10-15 22:00:00,11448.0
-2012-10-15 23:00:00,10959.0
-2012-10-16 00:00:00,10153.0
-2012-10-14 01:00:00,8972.0
-2012-10-14 02:00:00,8543.0
-2012-10-14 03:00:00,8160.0
-2012-10-14 04:00:00,8017.0
-2012-10-14 05:00:00,7911.0
-2012-10-14 06:00:00,7847.0
-2012-10-14 07:00:00,7969.0
-2012-10-14 08:00:00,8171.0
-2012-10-14 09:00:00,8341.0
-2012-10-14 10:00:00,8604.0
-2012-10-14 11:00:00,9037.0
-2012-10-14 12:00:00,9299.0
-2012-10-14 13:00:00,9549.0
-2012-10-14 14:00:00,9507.0
-2012-10-14 15:00:00,9508.0
-2012-10-14 16:00:00,9544.0
-2012-10-14 17:00:00,9567.0
-2012-10-14 18:00:00,9641.0
-2012-10-14 19:00:00,9882.0
-2012-10-14 20:00:00,10262.0
-2012-10-14 21:00:00,10339.0
-2012-10-14 22:00:00,10119.0
-2012-10-14 23:00:00,9776.0
-2012-10-15 00:00:00,9191.0
-2012-10-13 01:00:00,9508.0
-2012-10-13 02:00:00,8946.0
-2012-10-13 03:00:00,8593.0
-2012-10-13 04:00:00,8369.0
-2012-10-13 05:00:00,8271.0
-2012-10-13 06:00:00,8291.0
-2012-10-13 07:00:00,8538.0
-2012-10-13 08:00:00,8956.0
-2012-10-13 09:00:00,9256.0
-2012-10-13 10:00:00,9564.0
-2012-10-13 11:00:00,9894.0
-2012-10-13 12:00:00,10158.0
-2012-10-13 13:00:00,10321.0
-2012-10-13 14:00:00,10229.0
-2012-10-13 15:00:00,10057.0
-2012-10-13 16:00:00,9918.0
-2012-10-13 17:00:00,9956.0
-2012-10-13 18:00:00,10023.0
-2012-10-13 19:00:00,10221.0
-2012-10-13 20:00:00,10545.0
-2012-10-13 21:00:00,10534.0
-2012-10-13 22:00:00,10375.0
-2012-10-13 23:00:00,10074.0
-2012-10-14 00:00:00,9558.0
-2012-10-12 01:00:00,9413.0
-2012-10-12 02:00:00,8906.0
-2012-10-12 03:00:00,8554.0
-2012-10-12 04:00:00,8405.0
-2012-10-12 05:00:00,8397.0
-2012-10-12 06:00:00,8615.0
-2012-10-12 07:00:00,9360.0
-2012-10-12 08:00:00,10567.0
-2012-10-12 09:00:00,11098.0
-2012-10-12 10:00:00,11249.0
-2012-10-12 11:00:00,11274.0
-2012-10-12 12:00:00,11366.0
-2012-10-12 13:00:00,11283.0
-2012-10-12 14:00:00,11208.0
-2012-10-12 15:00:00,11166.0
-2012-10-12 16:00:00,11012.0
-2012-10-12 17:00:00,10854.0
-2012-10-12 18:00:00,10734.0
-2012-10-12 19:00:00,10694.0
-2012-10-12 20:00:00,11211.0
-2012-10-12 21:00:00,11401.0
-2012-10-12 22:00:00,11180.0
-2012-10-12 23:00:00,10847.0
-2012-10-13 00:00:00,10176.0
-2012-10-11 01:00:00,9656.0
-2012-10-11 02:00:00,9183.0
-2012-10-11 03:00:00,8883.0
-2012-10-11 04:00:00,8746.0
-2012-10-11 05:00:00,8708.0
-2012-10-11 06:00:00,8888.0
-2012-10-11 07:00:00,9626.0
-2012-10-11 08:00:00,10821.0
-2012-10-11 09:00:00,11337.0
-2012-10-11 10:00:00,11435.0
-2012-10-11 11:00:00,11462.0
-2012-10-11 12:00:00,11531.0
-2012-10-11 13:00:00,11524.0
-2012-10-11 14:00:00,11505.0
-2012-10-11 15:00:00,11522.0
-2012-10-11 16:00:00,11438.0
-2012-10-11 17:00:00,11312.0
-2012-10-11 18:00:00,11213.0
-2012-10-11 19:00:00,11207.0
-2012-10-11 20:00:00,11680.0
-2012-10-11 21:00:00,11790.0
-2012-10-11 22:00:00,11521.0
-2012-10-11 23:00:00,11013.0
-2012-10-12 00:00:00,10221.0
-2012-10-10 01:00:00,9445.0
-2012-10-10 02:00:00,8920.0
-2012-10-10 03:00:00,8598.0
-2012-10-10 04:00:00,8479.0
-2012-10-10 05:00:00,8455.0
-2012-10-10 06:00:00,8675.0
-2012-10-10 07:00:00,9413.0
-2012-10-10 08:00:00,10750.0
-2012-10-10 09:00:00,11293.0
-2012-10-10 10:00:00,11426.0
-2012-10-10 11:00:00,11486.0
-2012-10-10 12:00:00,11556.0
-2012-10-10 13:00:00,11493.0
-2012-10-10 14:00:00,11448.0
-2012-10-10 15:00:00,11405.0
-2012-10-10 16:00:00,11323.0
-2012-10-10 17:00:00,11182.0
-2012-10-10 18:00:00,11088.0
-2012-10-10 19:00:00,11084.0
-2012-10-10 20:00:00,11594.0
-2012-10-10 21:00:00,11883.0
-2012-10-10 22:00:00,11683.0
-2012-10-10 23:00:00,11219.0
-2012-10-11 00:00:00,10400.0
-2012-10-09 01:00:00,9368.0
-2012-10-09 02:00:00,8886.0
-2012-10-09 03:00:00,8571.0
-2012-10-09 04:00:00,8394.0
-2012-10-09 05:00:00,8380.0
-2012-10-09 06:00:00,8554.0
-2012-10-09 07:00:00,9283.0
-2012-10-09 08:00:00,10540.0
-2012-10-09 09:00:00,11022.0
-2012-10-09 10:00:00,11219.0
-2012-10-09 11:00:00,11339.0
-2012-10-09 12:00:00,11435.0
-2012-10-09 13:00:00,11436.0
-2012-10-09 14:00:00,11502.0
-2012-10-09 15:00:00,11496.0
-2012-10-09 16:00:00,11441.0
-2012-10-09 17:00:00,11312.0
-2012-10-09 18:00:00,11202.0
-2012-10-09 19:00:00,11234.0
-2012-10-09 20:00:00,11749.0
-2012-10-09 21:00:00,11910.0
-2012-10-09 22:00:00,11571.0
-2012-10-09 23:00:00,11018.0
-2012-10-10 00:00:00,10213.0
-2012-10-08 01:00:00,8961.0
-2012-10-08 02:00:00,8595.0
-2012-10-08 03:00:00,8423.0
-2012-10-08 04:00:00,8341.0
-2012-10-08 05:00:00,8378.0
-2012-10-08 06:00:00,8641.0
-2012-10-08 07:00:00,9401.0
-2012-10-08 08:00:00,10380.0
-2012-10-08 09:00:00,10924.0
-2012-10-08 10:00:00,11174.0
-2012-10-08 11:00:00,11326.0
-2012-10-08 12:00:00,11407.0
-2012-10-08 13:00:00,11367.0
-2012-10-08 14:00:00,11334.0
-2012-10-08 15:00:00,11299.0
-2012-10-08 16:00:00,11184.0
-2012-10-08 17:00:00,11032.0
-2012-10-08 18:00:00,10932.0
-2012-10-08 19:00:00,10956.0
-2012-10-08 20:00:00,11449.0
-2012-10-08 21:00:00,11753.0
-2012-10-08 22:00:00,11489.0
-2012-10-08 23:00:00,11014.0
-2012-10-09 00:00:00,10157.0
-2012-10-07 01:00:00,8960.0
-2012-10-07 02:00:00,8479.0
-2012-10-07 03:00:00,8189.0
-2012-10-07 04:00:00,8010.0
-2012-10-07 05:00:00,7902.0
-2012-10-07 06:00:00,7941.0
-2012-10-07 07:00:00,8061.0
-2012-10-07 08:00:00,8351.0
-2012-10-07 09:00:00,8410.0
-2012-10-07 10:00:00,8716.0
-2012-10-07 11:00:00,8943.0
-2012-10-07 12:00:00,9064.0
-2012-10-07 13:00:00,9090.0
-2012-10-07 14:00:00,9121.0
-2012-10-07 15:00:00,9048.0
-2012-10-07 16:00:00,9010.0
-2012-10-07 17:00:00,8966.0
-2012-10-07 18:00:00,8952.0
-2012-10-07 19:00:00,9127.0
-2012-10-07 20:00:00,9744.0
-2012-10-07 21:00:00,10279.0
-2012-10-07 22:00:00,10151.0
-2012-10-07 23:00:00,9924.0
-2012-10-08 00:00:00,9433.0
-2012-10-06 01:00:00,9488.0
-2012-10-06 02:00:00,8969.0
-2012-10-06 03:00:00,8600.0
-2012-10-06 04:00:00,8435.0
-2012-10-06 05:00:00,8260.0
-2012-10-06 06:00:00,8406.0
-2012-10-06 07:00:00,8627.0
-2012-10-06 08:00:00,9124.0
-2012-10-06 09:00:00,9310.0
-2012-10-06 10:00:00,9634.0
-2012-10-06 11:00:00,9866.0
-2012-10-06 12:00:00,9905.0
-2012-10-06 13:00:00,9880.0
-2012-10-06 14:00:00,9712.0
-2012-10-06 15:00:00,9597.0
-2012-10-06 16:00:00,9492.0
-2012-10-06 17:00:00,9476.0
-2012-10-06 18:00:00,9570.0
-2012-10-06 19:00:00,9736.0
-2012-10-06 20:00:00,10252.0
-2012-10-06 21:00:00,10449.0
-2012-10-06 22:00:00,10267.0
-2012-10-06 23:00:00,9961.0
-2012-10-07 00:00:00,9516.0
-2012-10-05 01:00:00,9277.0
-2012-10-05 02:00:00,8726.0
-2012-10-05 03:00:00,8376.0
-2012-10-05 04:00:00,8165.0
-2012-10-05 05:00:00,8082.0
-2012-10-05 06:00:00,8252.0
-2012-10-05 07:00:00,8877.0
-2012-10-05 08:00:00,9991.0
-2012-10-05 09:00:00,10582.0
-2012-10-05 10:00:00,10829.0
-2012-10-05 11:00:00,11019.0
-2012-10-05 12:00:00,11193.0
-2012-10-05 13:00:00,11235.0
-2012-10-05 14:00:00,11235.0
-2012-10-05 15:00:00,11259.0
-2012-10-05 16:00:00,11177.0
-2012-10-05 17:00:00,11053.0
-2012-10-05 18:00:00,10992.0
-2012-10-05 19:00:00,11025.0
-2012-10-05 20:00:00,11383.0
-2012-10-05 21:00:00,11385.0
-2012-10-05 22:00:00,11195.0
-2012-10-05 23:00:00,10789.0
-2012-10-06 00:00:00,10117.0
-2012-10-04 01:00:00,9520.0
-2012-10-04 02:00:00,8934.0
-2012-10-04 03:00:00,8572.0
-2012-10-04 04:00:00,8346.0
-2012-10-04 05:00:00,8264.0
-2012-10-04 06:00:00,8443.0
-2012-10-04 07:00:00,9034.0
-2012-10-04 08:00:00,10210.0
-2012-10-04 09:00:00,10790.0
-2012-10-04 10:00:00,11193.0
-2012-10-04 11:00:00,11538.0
-2012-10-04 12:00:00,11954.0
-2012-10-04 13:00:00,12191.0
-2012-10-04 14:00:00,12363.0
-2012-10-04 15:00:00,12545.0
-2012-10-04 16:00:00,12432.0
-2012-10-04 17:00:00,12161.0
-2012-10-04 18:00:00,11891.0
-2012-10-04 19:00:00,11794.0
-2012-10-04 20:00:00,11799.0
-2012-10-04 21:00:00,11784.0
-2012-10-04 22:00:00,11420.0
-2012-10-04 23:00:00,10890.0
-2012-10-05 00:00:00,10058.0
-2012-10-03 01:00:00,9366.0
-2012-10-03 02:00:00,8860.0
-2012-10-03 03:00:00,8536.0
-2012-10-03 04:00:00,8355.0
-2012-10-03 05:00:00,8277.0
-2012-10-03 06:00:00,8492.0
-2012-10-03 07:00:00,9151.0
-2012-10-03 08:00:00,10401.0
-2012-10-03 09:00:00,11202.0
-2012-10-03 10:00:00,11543.0
-2012-10-03 11:00:00,11743.0
-2012-10-03 12:00:00,11931.0
-2012-10-03 13:00:00,11971.0
-2012-10-03 14:00:00,11956.0
-2012-10-03 15:00:00,11972.0
-2012-10-03 16:00:00,11886.0
-2012-10-03 17:00:00,11821.0
-2012-10-03 18:00:00,11750.0
-2012-10-03 19:00:00,11688.0
-2012-10-03 20:00:00,11958.0
-2012-10-03 21:00:00,12132.0
-2012-10-03 22:00:00,11824.0
-2012-10-03 23:00:00,11230.0
-2012-10-04 00:00:00,10366.0
-2012-10-02 01:00:00,9190.0
-2012-10-02 02:00:00,8670.0
-2012-10-02 03:00:00,8332.0
-2012-10-02 04:00:00,8165.0
-2012-10-02 05:00:00,8086.0
-2012-10-02 06:00:00,8279.0
-2012-10-02 07:00:00,8940.0
-2012-10-02 08:00:00,10091.0
-2012-10-02 09:00:00,10646.0
-2012-10-02 10:00:00,11047.0
-2012-10-02 11:00:00,11362.0
-2012-10-02 12:00:00,11623.0
-2012-10-02 13:00:00,11769.0
-2012-10-02 14:00:00,11806.0
-2012-10-02 15:00:00,11909.0
-2012-10-02 16:00:00,11833.0
-2012-10-02 17:00:00,11734.0
-2012-10-02 18:00:00,11568.0
-2012-10-02 19:00:00,11345.0
-2012-10-02 20:00:00,11464.0
-2012-10-02 21:00:00,11838.0
-2012-10-02 22:00:00,11617.0
-2012-10-02 23:00:00,11054.0
-2012-10-03 00:00:00,10195.0
-2012-10-01 01:00:00,8452.0
-2012-10-01 02:00:00,8086.0
-2012-10-01 03:00:00,7870.0
-2012-10-01 04:00:00,7774.0
-2012-10-01 05:00:00,7773.0
-2012-10-01 06:00:00,8012.0
-2012-10-01 07:00:00,8722.0
-2012-10-01 08:00:00,9910.0
-2012-10-01 09:00:00,10512.0
-2012-10-01 10:00:00,10858.0
-2012-10-01 11:00:00,11055.0
-2012-10-01 12:00:00,11302.0
-2012-10-01 13:00:00,11426.0
-2012-10-01 14:00:00,11522.0
-2012-10-01 15:00:00,11574.0
-2012-10-01 16:00:00,11489.0
-2012-10-01 17:00:00,11309.0
-2012-10-01 18:00:00,11174.0
-2012-10-01 19:00:00,11082.0
-2012-10-01 20:00:00,11396.0
-2012-10-01 21:00:00,11710.0
-2012-10-01 22:00:00,11407.0
-2012-10-01 23:00:00,10843.0
-2012-10-02 00:00:00,9995.0
-2012-09-30 01:00:00,8746.0
-2012-09-30 02:00:00,8249.0
-2012-09-30 03:00:00,7882.0
-2012-09-30 04:00:00,7689.0
-2012-09-30 05:00:00,7555.0
-2012-09-30 06:00:00,7558.0
-2012-09-30 07:00:00,7636.0
-2012-09-30 08:00:00,7804.0
-2012-09-30 09:00:00,7844.0
-2012-09-30 10:00:00,8261.0
-2012-09-30 11:00:00,8636.0
-2012-09-30 12:00:00,8893.0
-2012-09-30 13:00:00,9064.0
-2012-09-30 14:00:00,9134.0
-2012-09-30 15:00:00,9182.0
-2012-09-30 16:00:00,9196.0
-2012-09-30 17:00:00,9194.0
-2012-09-30 18:00:00,9252.0
-2012-09-30 19:00:00,9273.0
-2012-09-30 20:00:00,9670.0
-2012-09-30 21:00:00,10132.0
-2012-09-30 22:00:00,10003.0
-2012-09-30 23:00:00,9598.0
-2012-10-01 00:00:00,9042.0
-2012-09-29 01:00:00,9115.0
-2012-09-29 02:00:00,8581.0
-2012-09-29 03:00:00,8187.0
-2012-09-29 04:00:00,7989.0
-2012-09-29 05:00:00,7850.0
-2012-09-29 06:00:00,7904.0
-2012-09-29 07:00:00,8121.0
-2012-09-29 08:00:00,8513.0
-2012-09-29 09:00:00,8670.0
-2012-09-29 10:00:00,9166.0
-2012-09-29 11:00:00,9521.0
-2012-09-29 12:00:00,9830.0
-2012-09-29 13:00:00,9941.0
-2012-09-29 14:00:00,10010.0
-2012-09-29 15:00:00,9951.0
-2012-09-29 16:00:00,10020.0
-2012-09-29 17:00:00,9955.0
-2012-09-29 18:00:00,9984.0
-2012-09-29 19:00:00,9844.0
-2012-09-29 20:00:00,9995.0
-2012-09-29 21:00:00,10364.0
-2012-09-29 22:00:00,10252.0
-2012-09-29 23:00:00,9868.0
-2012-09-30 00:00:00,9356.0
-2012-09-28 01:00:00,9272.0
-2012-09-28 02:00:00,8732.0
-2012-09-28 03:00:00,8418.0
-2012-09-28 04:00:00,8172.0
-2012-09-28 05:00:00,8095.0
-2012-09-28 06:00:00,8272.0
-2012-09-28 07:00:00,8923.0
-2012-09-28 08:00:00,9971.0
-2012-09-28 09:00:00,10516.0
-2012-09-28 10:00:00,10867.0
-2012-09-28 11:00:00,11140.0
-2012-09-28 12:00:00,11395.0
-2012-09-28 13:00:00,11473.0
-2012-09-28 14:00:00,11474.0
-2012-09-28 15:00:00,11537.0
-2012-09-28 16:00:00,11453.0
-2012-09-28 17:00:00,11325.0
-2012-09-28 18:00:00,11176.0
-2012-09-28 19:00:00,10993.0
-2012-09-28 20:00:00,11023.0
-2012-09-28 21:00:00,11307.0
-2012-09-28 22:00:00,11075.0
-2012-09-28 23:00:00,10574.0
-2012-09-29 00:00:00,9871.0
-2012-09-27 01:00:00,9302.0
-2012-09-27 02:00:00,8745.0
-2012-09-27 03:00:00,8406.0
-2012-09-27 04:00:00,8215.0
-2012-09-27 05:00:00,8134.0
-2012-09-27 06:00:00,8300.0
-2012-09-27 07:00:00,8893.0
-2012-09-27 08:00:00,10003.0
-2012-09-27 09:00:00,10551.0
-2012-09-27 10:00:00,10856.0
-2012-09-27 11:00:00,11160.0
-2012-09-27 12:00:00,11438.0
-2012-09-27 13:00:00,11535.0
-2012-09-27 14:00:00,11597.0
-2012-09-27 15:00:00,11601.0
-2012-09-27 16:00:00,11551.0
-2012-09-27 17:00:00,11407.0
-2012-09-27 18:00:00,11303.0
-2012-09-27 19:00:00,11090.0
-2012-09-27 20:00:00,11187.0
-2012-09-27 21:00:00,11702.0
-2012-09-27 22:00:00,11459.0
-2012-09-27 23:00:00,10932.0
-2012-09-28 00:00:00,10069.0
-2012-09-26 01:00:00,9728.0
-2012-09-26 02:00:00,9143.0
-2012-09-26 03:00:00,8728.0
-2012-09-26 04:00:00,8505.0
-2012-09-26 05:00:00,8396.0
-2012-09-26 06:00:00,8533.0
-2012-09-26 07:00:00,9120.0
-2012-09-26 08:00:00,10268.0
-2012-09-26 09:00:00,10808.0
-2012-09-26 10:00:00,11251.0
-2012-09-26 11:00:00,11527.0
-2012-09-26 12:00:00,11752.0
-2012-09-26 13:00:00,11868.0
-2012-09-26 14:00:00,11948.0
-2012-09-26 15:00:00,12056.0
-2012-09-26 16:00:00,11997.0
-2012-09-26 17:00:00,11857.0
-2012-09-26 18:00:00,11699.0
-2012-09-26 19:00:00,11459.0
-2012-09-26 20:00:00,11411.0
-2012-09-26 21:00:00,11805.0
-2012-09-26 22:00:00,11541.0
-2012-09-26 23:00:00,10986.0
-2012-09-27 00:00:00,10107.0
-2012-09-25 01:00:00,9253.0
-2012-09-25 02:00:00,8660.0
-2012-09-25 03:00:00,8295.0
-2012-09-25 04:00:00,8140.0
-2012-09-25 05:00:00,8063.0
-2012-09-25 06:00:00,8246.0
-2012-09-25 07:00:00,8914.0
-2012-09-25 08:00:00,10014.0
-2012-09-25 09:00:00,10619.0
-2012-09-25 10:00:00,11038.0
-2012-09-25 11:00:00,11262.0
-2012-09-25 12:00:00,11518.0
-2012-09-25 13:00:00,11716.0
-2012-09-25 14:00:00,11921.0
-2012-09-25 15:00:00,12149.0
-2012-09-25 16:00:00,12159.0
-2012-09-25 17:00:00,12156.0
-2012-09-25 18:00:00,12108.0
-2012-09-25 19:00:00,11969.0
-2012-09-25 20:00:00,11937.0
-2012-09-25 21:00:00,12390.0
-2012-09-25 22:00:00,12108.0
-2012-09-25 23:00:00,11519.0
-2012-09-26 00:00:00,10594.0
-2012-09-24 01:00:00,8435.0
-2012-09-24 02:00:00,8062.0
-2012-09-24 03:00:00,7867.0
-2012-09-24 04:00:00,7775.0
-2012-09-24 05:00:00,7806.0
-2012-09-24 06:00:00,8023.0
-2012-09-24 07:00:00,8804.0
-2012-09-24 08:00:00,10004.0
-2012-09-24 09:00:00,10597.0
-2012-09-24 10:00:00,10918.0
-2012-09-24 11:00:00,11067.0
-2012-09-24 12:00:00,11353.0
-2012-09-24 13:00:00,11378.0
-2012-09-24 14:00:00,11366.0
-2012-09-24 15:00:00,11465.0
-2012-09-24 16:00:00,11446.0
-2012-09-24 17:00:00,11401.0
-2012-09-24 18:00:00,11298.0
-2012-09-24 19:00:00,11205.0
-2012-09-24 20:00:00,11176.0
-2012-09-24 21:00:00,11745.0
-2012-09-24 22:00:00,11505.0
-2012-09-24 23:00:00,10945.0
-2012-09-25 00:00:00,10075.0
-2012-09-23 01:00:00,8680.0
-2012-09-23 02:00:00,8211.0
-2012-09-23 03:00:00,7906.0
-2012-09-23 04:00:00,7724.0
-2012-09-23 05:00:00,7604.0
-2012-09-23 06:00:00,7599.0
-2012-09-23 07:00:00,7669.0
-2012-09-23 08:00:00,7837.0
-2012-09-23 09:00:00,7910.0
-2012-09-23 10:00:00,8307.0
-2012-09-23 11:00:00,8558.0
-2012-09-23 12:00:00,8785.0
-2012-09-23 13:00:00,8918.0
-2012-09-23 14:00:00,8982.0
-2012-09-23 15:00:00,8981.0
-2012-09-23 16:00:00,8921.0
-2012-09-23 17:00:00,8948.0
-2012-09-23 18:00:00,8940.0
-2012-09-23 19:00:00,9080.0
-2012-09-23 20:00:00,9263.0
-2012-09-23 21:00:00,10002.0
-2012-09-23 22:00:00,9910.0
-2012-09-23 23:00:00,9584.0
-2012-09-24 00:00:00,8987.0
-2012-09-22 01:00:00,9164.0
-2012-09-22 02:00:00,8645.0
-2012-09-22 03:00:00,8258.0
-2012-09-22 04:00:00,8023.0
-2012-09-22 05:00:00,7894.0
-2012-09-22 06:00:00,7941.0
-2012-09-22 07:00:00,8149.0
-2012-09-22 08:00:00,8522.0
-2012-09-22 09:00:00,8762.0
-2012-09-22 10:00:00,9258.0
-2012-09-22 11:00:00,9570.0
-2012-09-22 12:00:00,9727.0
-2012-09-22 13:00:00,9775.0
-2012-09-22 14:00:00,9667.0
-2012-09-22 15:00:00,9501.0
-2012-09-22 16:00:00,9388.0
-2012-09-22 17:00:00,9354.0
-2012-09-22 18:00:00,9334.0
-2012-09-22 19:00:00,9346.0
-2012-09-22 20:00:00,9481.0
-2012-09-22 21:00:00,10089.0
-2012-09-22 22:00:00,10033.0
-2012-09-22 23:00:00,9755.0
-2012-09-23 00:00:00,9230.0
-2012-09-21 01:00:00,9239.0
-2012-09-21 02:00:00,8715.0
-2012-09-21 03:00:00,8409.0
-2012-09-21 04:00:00,8166.0
-2012-09-21 05:00:00,8145.0
-2012-09-21 06:00:00,8288.0
-2012-09-21 07:00:00,8874.0
-2012-09-21 08:00:00,9897.0
-2012-09-21 09:00:00,10495.0
-2012-09-21 10:00:00,10867.0
-2012-09-21 11:00:00,11214.0
-2012-09-21 12:00:00,11314.0
-2012-09-21 13:00:00,11375.0
-2012-09-21 14:00:00,11368.0
-2012-09-21 15:00:00,11369.0
-2012-09-21 16:00:00,11215.0
-2012-09-21 17:00:00,11086.0
-2012-09-21 18:00:00,11012.0
-2012-09-21 19:00:00,11025.0
-2012-09-21 20:00:00,11103.0
-2012-09-21 21:00:00,11212.0
-2012-09-21 22:00:00,11000.0
-2012-09-21 23:00:00,10557.0
-2012-09-22 00:00:00,9908.0
-2012-09-20 01:00:00,9368.0
-2012-09-20 02:00:00,8836.0
-2012-09-20 03:00:00,8488.0
-2012-09-20 04:00:00,8261.0
-2012-09-20 05:00:00,8156.0
-2012-09-20 06:00:00,8308.0
-2012-09-20 07:00:00,8953.0
-2012-09-20 08:00:00,10057.0
-2012-09-20 09:00:00,10592.0
-2012-09-20 10:00:00,11007.0
-2012-09-20 11:00:00,11418.0
-2012-09-20 12:00:00,11731.0
-2012-09-20 13:00:00,11910.0
-2012-09-20 14:00:00,11974.0
-2012-09-20 15:00:00,12030.0
-2012-09-20 16:00:00,11940.0
-2012-09-20 17:00:00,11861.0
-2012-09-20 18:00:00,11649.0
-2012-09-20 19:00:00,11405.0
-2012-09-20 20:00:00,11324.0
-2012-09-20 21:00:00,11805.0
-2012-09-20 22:00:00,11584.0
-2012-09-20 23:00:00,10965.0
-2012-09-21 00:00:00,10060.0
-2012-09-19 01:00:00,9164.0
-2012-09-19 02:00:00,8635.0
-2012-09-19 03:00:00,8294.0
-2012-09-19 04:00:00,8117.0
-2012-09-19 05:00:00,8072.0
-2012-09-19 06:00:00,8241.0
-2012-09-19 07:00:00,8880.0
-2012-09-19 08:00:00,9931.0
-2012-09-19 09:00:00,10522.0
-2012-09-19 10:00:00,10859.0
-2012-09-19 11:00:00,11108.0
-2012-09-19 12:00:00,11374.0
-2012-09-19 13:00:00,11480.0
-2012-09-19 14:00:00,11555.0
-2012-09-19 15:00:00,11712.0
-2012-09-19 16:00:00,11710.0
-2012-09-19 17:00:00,11676.0
-2012-09-19 18:00:00,11605.0
-2012-09-19 19:00:00,11449.0
-2012-09-19 20:00:00,11328.0
-2012-09-19 21:00:00,11879.0
-2012-09-19 22:00:00,11678.0
-2012-09-19 23:00:00,11099.0
-2012-09-20 00:00:00,10212.0
-2012-09-18 01:00:00,9718.0
-2012-09-18 02:00:00,9085.0
-2012-09-18 03:00:00,8690.0
-2012-09-18 04:00:00,8411.0
-2012-09-18 05:00:00,8273.0
-2012-09-18 06:00:00,8395.0
-2012-09-18 07:00:00,8986.0
-2012-09-18 08:00:00,10018.0
-2012-09-18 09:00:00,10533.0
-2012-09-18 10:00:00,10932.0
-2012-09-18 11:00:00,11196.0
-2012-09-18 12:00:00,11435.0
-2012-09-18 13:00:00,11513.0
-2012-09-18 14:00:00,11578.0
-2012-09-18 15:00:00,11619.0
-2012-09-18 16:00:00,11546.0
-2012-09-18 17:00:00,11422.0
-2012-09-18 18:00:00,11260.0
-2012-09-18 19:00:00,11058.0
-2012-09-18 20:00:00,10938.0
-2012-09-18 21:00:00,11489.0
-2012-09-18 22:00:00,11349.0
-2012-09-18 23:00:00,10814.0
-2012-09-19 00:00:00,9943.0
-2012-09-17 01:00:00,9092.0
-2012-09-17 02:00:00,8608.0
-2012-09-17 03:00:00,8300.0
-2012-09-17 04:00:00,8177.0
-2012-09-17 05:00:00,8115.0
-2012-09-17 06:00:00,8349.0
-2012-09-17 07:00:00,9034.0
-2012-09-17 08:00:00,10152.0
-2012-09-17 09:00:00,10856.0
-2012-09-17 10:00:00,11520.0
-2012-09-17 11:00:00,12031.0
-2012-09-17 12:00:00,12492.0
-2012-09-17 13:00:00,12745.0
-2012-09-17 14:00:00,12936.0
-2012-09-17 15:00:00,13240.0
-2012-09-17 16:00:00,13319.0
-2012-09-17 17:00:00,13361.0
-2012-09-17 18:00:00,13257.0
-2012-09-17 19:00:00,13000.0
-2012-09-17 20:00:00,12847.0
-2012-09-17 21:00:00,12826.0
-2012-09-17 22:00:00,12446.0
-2012-09-17 23:00:00,11664.0
-2012-09-18 00:00:00,10658.0
-2012-09-16 01:00:00,9252.0
-2012-09-16 02:00:00,8650.0
-2012-09-16 03:00:00,8301.0
-2012-09-16 04:00:00,8003.0
-2012-09-16 05:00:00,7842.0
-2012-09-16 06:00:00,7798.0
-2012-09-16 07:00:00,7838.0
-2012-09-16 08:00:00,7872.0
-2012-09-16 09:00:00,7976.0
-2012-09-16 10:00:00,8506.0
-2012-09-16 11:00:00,9066.0
-2012-09-16 12:00:00,9530.0
-2012-09-16 13:00:00,9911.0
-2012-09-16 14:00:00,10130.0
-2012-09-16 15:00:00,10334.0
-2012-09-16 16:00:00,10462.0
-2012-09-16 17:00:00,10595.0
-2012-09-16 18:00:00,10613.0
-2012-09-16 19:00:00,10591.0
-2012-09-16 20:00:00,10595.0
-2012-09-16 21:00:00,11081.0
-2012-09-16 22:00:00,10958.0
-2012-09-16 23:00:00,10495.0
-2012-09-17 00:00:00,9805.0
-2012-09-15 01:00:00,9633.0
-2012-09-15 02:00:00,9022.0
-2012-09-15 03:00:00,8613.0
-2012-09-15 04:00:00,8306.0
-2012-09-15 05:00:00,8146.0
-2012-09-15 06:00:00,8097.0
-2012-09-15 07:00:00,8302.0
-2012-09-15 08:00:00,8515.0
-2012-09-15 09:00:00,8846.0
-2012-09-15 10:00:00,9441.0
-2012-09-15 11:00:00,10013.0
-2012-09-15 12:00:00,10464.0
-2012-09-15 13:00:00,10716.0
-2012-09-15 14:00:00,10884.0
-2012-09-15 15:00:00,10950.0
-2012-09-15 16:00:00,11120.0
-2012-09-15 17:00:00,11235.0
-2012-09-15 18:00:00,11306.0
-2012-09-15 19:00:00,11152.0
-2012-09-15 20:00:00,10855.0
-2012-09-15 21:00:00,11173.0
-2012-09-15 22:00:00,11019.0
-2012-09-15 23:00:00,10599.0
-2012-09-16 00:00:00,9900.0
-2012-09-14 01:00:00,9634.0
-2012-09-14 02:00:00,9098.0
-2012-09-14 03:00:00,8657.0
-2012-09-14 04:00:00,8501.0
-2012-09-14 05:00:00,8374.0
-2012-09-14 06:00:00,8537.0
-2012-09-14 07:00:00,9089.0
-2012-09-14 08:00:00,10076.0
-2012-09-14 09:00:00,10601.0
-2012-09-14 10:00:00,11114.0
-2012-09-14 11:00:00,11510.0
-2012-09-14 12:00:00,11941.0
-2012-09-14 13:00:00,12090.0
-2012-09-14 14:00:00,12228.0
-2012-09-14 15:00:00,12409.0
-2012-09-14 16:00:00,12486.0
-2012-09-14 17:00:00,12498.0
-2012-09-14 18:00:00,12418.0
-2012-09-14 19:00:00,12201.0
-2012-09-14 20:00:00,11806.0
-2012-09-14 21:00:00,11983.0
-2012-09-14 22:00:00,11857.0
-2012-09-14 23:00:00,11271.0
-2012-09-15 00:00:00,10512.0
-2012-09-13 01:00:00,11515.0
-2012-09-13 02:00:00,10639.0
-2012-09-13 03:00:00,10075.0
-2012-09-13 04:00:00,9656.0
-2012-09-13 05:00:00,9460.0
-2012-09-13 06:00:00,9531.0
-2012-09-13 07:00:00,10160.0
-2012-09-13 08:00:00,11170.0
-2012-09-13 09:00:00,11775.0
-2012-09-13 10:00:00,12182.0
-2012-09-13 11:00:00,12599.0
-2012-09-13 12:00:00,12977.0
-2012-09-13 13:00:00,13112.0
-2012-09-13 14:00:00,13190.0
-2012-09-13 15:00:00,13054.0
-2012-09-13 16:00:00,12732.0
-2012-09-13 17:00:00,12407.0
-2012-09-13 18:00:00,12173.0
-2012-09-13 19:00:00,12000.0
-2012-09-13 20:00:00,12020.0
-2012-09-13 21:00:00,12165.0
-2012-09-13 22:00:00,11883.0
-2012-09-13 23:00:00,11404.0
-2012-09-14 00:00:00,10525.0
-2012-09-12 01:00:00,10907.0
-2012-09-12 02:00:00,10119.0
-2012-09-12 03:00:00,9586.0
-2012-09-12 04:00:00,9228.0
-2012-09-12 05:00:00,9078.0
-2012-09-12 06:00:00,9220.0
-2012-09-12 07:00:00,9849.0
-2012-09-12 08:00:00,10858.0
-2012-09-12 09:00:00,11575.0
-2012-09-12 10:00:00,12332.0
-2012-09-12 11:00:00,12987.0
-2012-09-12 12:00:00,13731.0
-2012-09-12 13:00:00,14405.0
-2012-09-12 14:00:00,14993.0
-2012-09-12 15:00:00,15624.0
-2012-09-12 16:00:00,16000.0
-2012-09-12 17:00:00,16346.0
-2012-09-12 18:00:00,16481.0
-2012-09-12 19:00:00,16190.0
-2012-09-12 20:00:00,15474.0
-2012-09-12 21:00:00,15422.0
-2012-09-12 22:00:00,14999.0
-2012-09-12 23:00:00,14072.0
-2012-09-13 00:00:00,12774.0
-2012-09-11 01:00:00,9991.0
-2012-09-11 02:00:00,9338.0
-2012-09-11 03:00:00,8928.0
-2012-09-11 04:00:00,8624.0
-2012-09-11 05:00:00,8536.0
-2012-09-11 06:00:00,8677.0
-2012-09-11 07:00:00,9364.0
-2012-09-11 08:00:00,10304.0
-2012-09-11 09:00:00,10966.0
-2012-09-11 10:00:00,11650.0
-2012-09-11 11:00:00,12164.0
-2012-09-11 12:00:00,12788.0
-2012-09-11 13:00:00,13147.0
-2012-09-11 14:00:00,13480.0
-2012-09-11 15:00:00,13900.0
-2012-09-11 16:00:00,14189.0
-2012-09-11 17:00:00,14447.0
-2012-09-11 18:00:00,14582.0
-2012-09-11 19:00:00,14393.0
-2012-09-11 20:00:00,13867.0
-2012-09-11 21:00:00,14006.0
-2012-09-11 22:00:00,13831.0
-2012-09-11 23:00:00,13080.0
-2012-09-12 00:00:00,11972.0
-2012-09-10 01:00:00,8963.0
-2012-09-10 02:00:00,8487.0
-2012-09-10 03:00:00,8200.0
-2012-09-10 04:00:00,8085.0
-2012-09-10 05:00:00,8038.0
-2012-09-10 06:00:00,8282.0
-2012-09-10 07:00:00,8928.0
-2012-09-10 08:00:00,9904.0
-2012-09-10 09:00:00,10620.0
-2012-09-10 10:00:00,11353.0
-2012-09-10 11:00:00,11806.0
-2012-09-10 12:00:00,12296.0
-2012-09-10 13:00:00,12470.0
-2012-09-10 14:00:00,12646.0
-2012-09-10 15:00:00,12845.0
-2012-09-10 16:00:00,12985.0
-2012-09-10 17:00:00,13068.0
-2012-09-10 18:00:00,13087.0
-2012-09-10 19:00:00,12899.0
-2012-09-10 20:00:00,12524.0
-2012-09-10 21:00:00,12740.0
-2012-09-10 22:00:00,12638.0
-2012-09-10 23:00:00,11952.0
-2012-09-11 00:00:00,10912.0
-2012-09-09 01:00:00,9341.0
-2012-09-09 02:00:00,8761.0
-2012-09-09 03:00:00,8402.0
-2012-09-09 04:00:00,8147.0
-2012-09-09 05:00:00,8025.0
-2012-09-09 06:00:00,7884.0
-2012-09-09 07:00:00,7989.0
-2012-09-09 08:00:00,7960.0
-2012-09-09 09:00:00,8074.0
-2012-09-09 10:00:00,8631.0
-2012-09-09 11:00:00,9080.0
-2012-09-09 12:00:00,9538.0
-2012-09-09 13:00:00,9807.0
-2012-09-09 14:00:00,9999.0
-2012-09-09 15:00:00,10052.0
-2012-09-09 16:00:00,10169.0
-2012-09-09 17:00:00,10203.0
-2012-09-09 18:00:00,10302.0
-2012-09-09 19:00:00,10287.0
-2012-09-09 20:00:00,10217.0
-2012-09-09 21:00:00,10574.0
-2012-09-09 22:00:00,10696.0
-2012-09-09 23:00:00,10286.0
-2012-09-10 00:00:00,9645.0
-2012-09-08 01:00:00,10243.0
-2012-09-08 02:00:00,9504.0
-2012-09-08 03:00:00,9019.0
-2012-09-08 04:00:00,8587.0
-2012-09-08 05:00:00,8485.0
-2012-09-08 06:00:00,8438.0
-2012-09-08 07:00:00,8633.0
-2012-09-08 08:00:00,8778.0
-2012-09-08 09:00:00,9096.0
-2012-09-08 10:00:00,9657.0
-2012-09-08 11:00:00,10164.0
-2012-09-08 12:00:00,10570.0
-2012-09-08 13:00:00,10734.0
-2012-09-08 14:00:00,10805.0
-2012-09-08 15:00:00,10792.0
-2012-09-08 16:00:00,10829.0
-2012-09-08 17:00:00,10837.0
-2012-09-08 18:00:00,10920.0
-2012-09-08 19:00:00,10754.0
-2012-09-08 20:00:00,10588.0
-2012-09-08 21:00:00,10872.0
-2012-09-08 22:00:00,10925.0
-2012-09-08 23:00:00,10609.0
-2012-09-09 00:00:00,10029.0
-2012-09-07 01:00:00,12152.0
-2012-09-07 02:00:00,11204.0
-2012-09-07 03:00:00,10625.0
-2012-09-07 04:00:00,10228.0
-2012-09-07 05:00:00,10089.0
-2012-09-07 06:00:00,10196.0
-2012-09-07 07:00:00,10827.0
-2012-09-07 08:00:00,12045.0
-2012-09-07 09:00:00,12759.0
-2012-09-07 10:00:00,13168.0
-2012-09-07 11:00:00,13330.0
-2012-09-07 12:00:00,13818.0
-2012-09-07 13:00:00,14247.0
-2012-09-07 14:00:00,14579.0
-2012-09-07 15:00:00,14991.0
-2012-09-07 16:00:00,14909.0
-2012-09-07 17:00:00,14682.0
-2012-09-07 18:00:00,14337.0
-2012-09-07 19:00:00,13848.0
-2012-09-07 20:00:00,13035.0
-2012-09-07 21:00:00,12979.0
-2012-09-07 22:00:00,12708.0
-2012-09-07 23:00:00,12097.0
-2012-09-08 00:00:00,11151.0
-2012-09-06 01:00:00,12918.0
-2012-09-06 02:00:00,11904.0
-2012-09-06 03:00:00,11206.0
-2012-09-06 04:00:00,10715.0
-2012-09-06 05:00:00,10441.0
-2012-09-06 06:00:00,10506.0
-2012-09-06 07:00:00,11121.0
-2012-09-06 08:00:00,12157.0
-2012-09-06 09:00:00,13029.0
-2012-09-06 10:00:00,13911.0
-2012-09-06 11:00:00,14814.0
-2012-09-06 12:00:00,15651.0
-2012-09-06 13:00:00,16202.0
-2012-09-06 14:00:00,16679.0
-2012-09-06 15:00:00,17177.0
-2012-09-06 16:00:00,17538.0
-2012-09-06 17:00:00,17828.0
-2012-09-06 18:00:00,17896.0
-2012-09-06 19:00:00,17514.0
-2012-09-06 20:00:00,16592.0
-2012-09-06 21:00:00,16204.0
-2012-09-06 22:00:00,15845.0
-2012-09-06 23:00:00,14850.0
-2012-09-07 00:00:00,13499.0
-2012-09-05 01:00:00,13087.0
-2012-09-05 02:00:00,11703.0
-2012-09-05 03:00:00,10892.0
-2012-09-05 04:00:00,10447.0
-2012-09-05 05:00:00,10219.0
-2012-09-05 06:00:00,10298.0
-2012-09-05 07:00:00,10962.0
-2012-09-05 08:00:00,12060.0
-2012-09-05 09:00:00,12807.0
-2012-09-05 10:00:00,13108.0
-2012-09-05 11:00:00,13422.0
-2012-09-05 12:00:00,14035.0
-2012-09-05 13:00:00,14731.0
-2012-09-05 14:00:00,15565.0
-2012-09-05 15:00:00,16403.0
-2012-09-05 16:00:00,16943.0
-2012-09-05 17:00:00,17294.0
-2012-09-05 18:00:00,17548.0
-2012-09-05 19:00:00,17512.0
-2012-09-05 20:00:00,16895.0
-2012-09-05 21:00:00,16758.0
-2012-09-05 22:00:00,16564.0
-2012-09-05 23:00:00,15651.0
-2012-09-06 00:00:00,14297.0
-2012-09-04 01:00:00,12910.0
-2012-09-04 02:00:00,12004.0
-2012-09-04 03:00:00,11415.0
-2012-09-04 04:00:00,11022.0
-2012-09-04 05:00:00,10850.0
-2012-09-04 06:00:00,10972.0
-2012-09-04 07:00:00,11728.0
-2012-09-04 08:00:00,12939.0
-2012-09-04 09:00:00,13904.0
-2012-09-04 10:00:00,14956.0
-2012-09-04 11:00:00,16023.0
-2012-09-04 12:00:00,17100.0
-2012-09-04 13:00:00,18011.0
-2012-09-04 14:00:00,18813.0
-2012-09-04 15:00:00,19496.0
-2012-09-04 16:00:00,19948.0
-2012-09-04 17:00:00,20216.0
-2012-09-04 18:00:00,20263.0
-2012-09-04 19:00:00,19827.0
-2012-09-04 20:00:00,18837.0
-2012-09-04 21:00:00,18335.0
-2012-09-04 22:00:00,17891.0
-2012-09-04 23:00:00,16773.0
-2012-09-05 00:00:00,15040.0
-2012-09-03 01:00:00,11668.0
-2012-09-03 02:00:00,10948.0
-2012-09-03 03:00:00,10401.0
-2012-09-03 04:00:00,9978.0
-2012-09-03 05:00:00,9746.0
-2012-09-03 06:00:00,9704.0
-2012-09-03 07:00:00,9825.0
-2012-09-03 08:00:00,9918.0
-2012-09-03 09:00:00,10258.0
-2012-09-03 10:00:00,11223.0
-2012-09-03 11:00:00,12367.0
-2012-09-03 12:00:00,13658.0
-2012-09-03 13:00:00,14737.0
-2012-09-03 14:00:00,15594.0
-2012-09-03 15:00:00,16268.0
-2012-09-03 16:00:00,16743.0
-2012-09-03 17:00:00,17052.0
-2012-09-03 18:00:00,17167.0
-2012-09-03 19:00:00,16970.0
-2012-09-03 20:00:00,16403.0
-2012-09-03 21:00:00,16240.0
-2012-09-03 22:00:00,16062.0
-2012-09-03 23:00:00,15224.0
-2012-09-04 00:00:00,14096.0
-2012-09-02 01:00:00,11262.0
-2012-09-02 02:00:00,10697.0
-2012-09-02 03:00:00,10231.0
-2012-09-02 04:00:00,9956.0
-2012-09-02 05:00:00,9748.0
-2012-09-02 06:00:00,9721.0
-2012-09-02 07:00:00,9777.0
-2012-09-02 08:00:00,9889.0
-2012-09-02 09:00:00,10078.0
-2012-09-02 10:00:00,10704.0
-2012-09-02 11:00:00,11303.0
-2012-09-02 12:00:00,11970.0
-2012-09-02 13:00:00,12526.0
-2012-09-02 14:00:00,13007.0
-2012-09-02 15:00:00,13464.0
-2012-09-02 16:00:00,13904.0
-2012-09-02 17:00:00,14088.0
-2012-09-02 18:00:00,14287.0
-2012-09-02 19:00:00,14157.0
-2012-09-02 20:00:00,13769.0
-2012-09-02 21:00:00,13642.0
-2012-09-02 22:00:00,13647.0
-2012-09-02 23:00:00,13191.0
-2012-09-03 00:00:00,12519.0
-2012-09-01 01:00:00,13371.0
-2012-09-01 02:00:00,12295.0
-2012-09-01 03:00:00,11555.0
-2012-09-01 04:00:00,11053.0
-2012-09-01 05:00:00,10723.0
-2012-09-01 06:00:00,10613.0
-2012-09-01 07:00:00,10744.0
-2012-09-01 08:00:00,10946.0
-2012-09-01 09:00:00,11251.0
-2012-09-01 10:00:00,11860.0
-2012-09-01 11:00:00,12362.0
-2012-09-01 12:00:00,12715.0
-2012-09-01 13:00:00,12904.0
-2012-09-01 14:00:00,12880.0
-2012-09-01 15:00:00,12780.0
-2012-09-01 16:00:00,12717.0
-2012-09-01 17:00:00,12618.0
-2012-09-01 18:00:00,12441.0
-2012-09-01 19:00:00,12253.0
-2012-09-01 20:00:00,12157.0
-2012-09-01 21:00:00,12460.0
-2012-09-01 22:00:00,12621.0
-2012-09-01 23:00:00,12394.0
-2012-09-02 00:00:00,11910.0
-2012-08-31 01:00:00,13461.0
-2012-08-31 02:00:00,12313.0
-2012-08-31 03:00:00,11473.0
-2012-08-31 04:00:00,10924.0
-2012-08-31 05:00:00,10603.0
-2012-08-31 06:00:00,10638.0
-2012-08-31 07:00:00,11237.0
-2012-08-31 08:00:00,12182.0
-2012-08-31 09:00:00,13212.0
-2012-08-31 10:00:00,14428.0
-2012-08-31 11:00:00,15821.0
-2012-08-31 12:00:00,17191.0
-2012-08-31 13:00:00,18392.0
-2012-08-31 14:00:00,19290.0
-2012-08-31 15:00:00,20015.0
-2012-08-31 16:00:00,20360.0
-2012-08-31 17:00:00,20190.0
-2012-08-31 18:00:00,19830.0
-2012-08-31 19:00:00,19181.0
-2012-08-31 20:00:00,18156.0
-2012-08-31 21:00:00,17598.0
-2012-08-31 22:00:00,17143.0
-2012-08-31 23:00:00,16076.0
-2012-09-01 00:00:00,14697.0
-2012-08-30 01:00:00,12639.0
-2012-08-30 02:00:00,11645.0
-2012-08-30 03:00:00,10929.0
-2012-08-30 04:00:00,10481.0
-2012-08-30 05:00:00,10202.0
-2012-08-30 06:00:00,10251.0
-2012-08-30 07:00:00,10877.0
-2012-08-30 08:00:00,11857.0
-2012-08-30 09:00:00,12767.0
-2012-08-30 10:00:00,13658.0
-2012-08-30 11:00:00,14608.0
-2012-08-30 12:00:00,15638.0
-2012-08-30 13:00:00,16488.0
-2012-08-30 14:00:00,17263.0
-2012-08-30 15:00:00,18074.0
-2012-08-30 16:00:00,18725.0
-2012-08-30 17:00:00,19199.0
-2012-08-30 18:00:00,19385.0
-2012-08-30 19:00:00,19110.0
-2012-08-30 20:00:00,18347.0
-2012-08-30 21:00:00,17755.0
-2012-08-30 22:00:00,17483.0
-2012-08-30 23:00:00,16457.0
-2012-08-31 00:00:00,14937.0
-2012-08-29 01:00:00,11909.0
-2012-08-29 02:00:00,11020.0
-2012-08-29 03:00:00,10413.0
-2012-08-29 04:00:00,10031.0
-2012-08-29 05:00:00,9856.0
-2012-08-29 06:00:00,9962.0
-2012-08-29 07:00:00,10631.0
-2012-08-29 08:00:00,11621.0
-2012-08-29 09:00:00,12524.0
-2012-08-29 10:00:00,13334.0
-2012-08-29 11:00:00,14061.0
-2012-08-29 12:00:00,14814.0
-2012-08-29 13:00:00,15498.0
-2012-08-29 14:00:00,16107.0
-2012-08-29 15:00:00,16784.0
-2012-08-29 16:00:00,17291.0
-2012-08-29 17:00:00,17645.0
-2012-08-29 18:00:00,17768.0
-2012-08-29 19:00:00,17480.0
-2012-08-29 20:00:00,16714.0
-2012-08-29 21:00:00,16210.0
-2012-08-29 22:00:00,16041.0
-2012-08-29 23:00:00,15182.0
-2012-08-30 00:00:00,13905.0
-2012-08-28 01:00:00,12077.0
-2012-08-28 02:00:00,11111.0
-2012-08-28 03:00:00,10445.0
-2012-08-28 04:00:00,10010.0
-2012-08-28 05:00:00,9798.0
-2012-08-28 06:00:00,9893.0
-2012-08-28 07:00:00,10533.0
-2012-08-28 08:00:00,11450.0
-2012-08-28 09:00:00,12438.0
-2012-08-28 10:00:00,13388.0
-2012-08-28 11:00:00,14224.0
-2012-08-28 12:00:00,15030.0
-2012-08-28 13:00:00,15735.0
-2012-08-28 14:00:00,16402.0
-2012-08-28 15:00:00,17045.0
-2012-08-28 16:00:00,17499.0
-2012-08-28 17:00:00,17793.0
-2012-08-28 18:00:00,17745.0
-2012-08-28 19:00:00,17197.0
-2012-08-28 20:00:00,16164.0
-2012-08-28 21:00:00,15557.0
-2012-08-28 22:00:00,15348.0
-2012-08-28 23:00:00,14439.0
-2012-08-29 00:00:00,13154.0
-2012-08-27 01:00:00,11064.0
-2012-08-27 02:00:00,10368.0
-2012-08-27 03:00:00,9977.0
-2012-08-27 04:00:00,9691.0
-2012-08-27 05:00:00,9697.0
-2012-08-27 06:00:00,9916.0
-2012-08-27 07:00:00,10704.0
-2012-08-27 08:00:00,11883.0
-2012-08-27 09:00:00,12881.0
-2012-08-27 10:00:00,13710.0
-2012-08-27 11:00:00,14599.0
-2012-08-27 12:00:00,15523.0
-2012-08-27 13:00:00,16277.0
-2012-08-27 14:00:00,16833.0
-2012-08-27 15:00:00,17278.0
-2012-08-27 16:00:00,17665.0
-2012-08-27 17:00:00,17947.0
-2012-08-27 18:00:00,18068.0
-2012-08-27 19:00:00,17746.0
-2012-08-27 20:00:00,16972.0
-2012-08-27 21:00:00,16228.0
-2012-08-27 22:00:00,15849.0
-2012-08-27 23:00:00,14815.0
-2012-08-28 00:00:00,13376.0
-2012-08-26 01:00:00,13151.0
-2012-08-26 02:00:00,12235.0
-2012-08-26 03:00:00,11474.0
-2012-08-26 04:00:00,10927.0
-2012-08-26 05:00:00,10509.0
-2012-08-26 06:00:00,10193.0
-2012-08-26 07:00:00,10157.0
-2012-08-26 08:00:00,10036.0
-2012-08-26 09:00:00,10462.0
-2012-08-26 10:00:00,11545.0
-2012-08-26 11:00:00,12407.0
-2012-08-26 12:00:00,12750.0
-2012-08-26 13:00:00,12792.0
-2012-08-26 14:00:00,12708.0
-2012-08-26 15:00:00,12730.0
-2012-08-26 16:00:00,12687.0
-2012-08-26 17:00:00,12710.0
-2012-08-26 18:00:00,12757.0
-2012-08-26 19:00:00,12867.0
-2012-08-26 20:00:00,13019.0
-2012-08-26 21:00:00,13245.0
-2012-08-26 22:00:00,13185.0
-2012-08-26 23:00:00,12680.0
-2012-08-27 00:00:00,11891.0
-2012-08-25 01:00:00,13708.0
-2012-08-25 02:00:00,12637.0
-2012-08-25 03:00:00,11836.0
-2012-08-25 04:00:00,11143.0
-2012-08-25 05:00:00,10685.0
-2012-08-25 06:00:00,10414.0
-2012-08-25 07:00:00,10483.0
-2012-08-25 08:00:00,10587.0
-2012-08-25 09:00:00,11273.0
-2012-08-25 10:00:00,12518.0
-2012-08-25 11:00:00,13910.0
-2012-08-25 12:00:00,15262.0
-2012-08-25 13:00:00,16400.0
-2012-08-25 14:00:00,17170.0
-2012-08-25 15:00:00,17545.0
-2012-08-25 16:00:00,17824.0
-2012-08-25 17:00:00,17940.0
-2012-08-25 18:00:00,17864.0
-2012-08-25 19:00:00,17553.0
-2012-08-25 20:00:00,16800.0
-2012-08-25 21:00:00,16317.0
-2012-08-25 22:00:00,16053.0
-2012-08-25 23:00:00,15346.0
-2012-08-26 00:00:00,14278.0
-2012-08-24 01:00:00,13198.0
-2012-08-24 02:00:00,12136.0
-2012-08-24 03:00:00,11373.0
-2012-08-24 04:00:00,10851.0
-2012-08-24 05:00:00,10521.0
-2012-08-24 06:00:00,10532.0
-2012-08-24 07:00:00,11088.0
-2012-08-24 08:00:00,11928.0
-2012-08-24 09:00:00,12881.0
-2012-08-24 10:00:00,13824.0
-2012-08-24 11:00:00,14855.0
-2012-08-24 12:00:00,16033.0
-2012-08-24 13:00:00,17075.0
-2012-08-24 14:00:00,17976.0
-2012-08-24 15:00:00,18804.0
-2012-08-24 16:00:00,19365.0
-2012-08-24 17:00:00,19602.0
-2012-08-24 18:00:00,19494.0
-2012-08-24 19:00:00,19045.0
-2012-08-24 20:00:00,18230.0
-2012-08-24 21:00:00,17644.0
-2012-08-24 22:00:00,17352.0
-2012-08-24 23:00:00,16445.0
-2012-08-25 00:00:00,15149.0
-2012-08-23 01:00:00,11522.0
-2012-08-23 02:00:00,10690.0
-2012-08-23 03:00:00,10142.0
-2012-08-23 04:00:00,9761.0
-2012-08-23 05:00:00,9582.0
-2012-08-23 06:00:00,9725.0
-2012-08-23 07:00:00,10369.0
-2012-08-23 08:00:00,11297.0
-2012-08-23 09:00:00,12240.0
-2012-08-23 10:00:00,12894.0
-2012-08-23 11:00:00,13412.0
-2012-08-23 12:00:00,14195.0
-2012-08-23 13:00:00,15089.0
-2012-08-23 14:00:00,16020.0
-2012-08-23 15:00:00,16915.0
-2012-08-23 16:00:00,17477.0
-2012-08-23 17:00:00,17881.0
-2012-08-23 18:00:00,18183.0
-2012-08-23 19:00:00,18082.0
-2012-08-23 20:00:00,17478.0
-2012-08-23 21:00:00,16990.0
-2012-08-23 22:00:00,16892.0
-2012-08-23 23:00:00,16027.0
-2012-08-24 00:00:00,14645.0
-2012-08-22 01:00:00,10440.0
-2012-08-22 02:00:00,9708.0
-2012-08-22 03:00:00,9229.0
-2012-08-22 04:00:00,8911.0
-2012-08-22 05:00:00,8774.0
-2012-08-22 06:00:00,8913.0
-2012-08-22 07:00:00,9517.0
-2012-08-22 08:00:00,10342.0
-2012-08-22 09:00:00,11205.0
-2012-08-22 10:00:00,11967.0
-2012-08-22 11:00:00,12664.0
-2012-08-22 12:00:00,13258.0
-2012-08-22 13:00:00,13721.0
-2012-08-22 14:00:00,14097.0
-2012-08-22 15:00:00,14588.0
-2012-08-22 16:00:00,14927.0
-2012-08-22 17:00:00,15269.0
-2012-08-22 18:00:00,15454.0
-2012-08-22 19:00:00,15373.0
-2012-08-22 20:00:00,14857.0
-2012-08-22 21:00:00,14505.0
-2012-08-22 22:00:00,14529.0
-2012-08-22 23:00:00,13856.0
-2012-08-23 00:00:00,12697.0
-2012-08-21 01:00:00,10283.0
-2012-08-21 02:00:00,9623.0
-2012-08-21 03:00:00,9170.0
-2012-08-21 04:00:00,8837.0
-2012-08-21 05:00:00,8694.0
-2012-08-21 06:00:00,8852.0
-2012-08-21 07:00:00,9437.0
-2012-08-21 08:00:00,10214.0
-2012-08-21 09:00:00,11074.0
-2012-08-21 10:00:00,11848.0
-2012-08-21 11:00:00,12438.0
-2012-08-21 12:00:00,12940.0
-2012-08-21 13:00:00,13264.0
-2012-08-21 14:00:00,13511.0
-2012-08-21 15:00:00,13837.0
-2012-08-21 16:00:00,14016.0
-2012-08-21 17:00:00,14091.0
-2012-08-21 18:00:00,14089.0
-2012-08-21 19:00:00,13906.0
-2012-08-21 20:00:00,13390.0
-2012-08-21 21:00:00,13054.0
-2012-08-21 22:00:00,13177.0
-2012-08-21 23:00:00,12584.0
-2012-08-22 00:00:00,11535.0
-2012-08-20 01:00:00,9900.0
-2012-08-20 02:00:00,9263.0
-2012-08-20 03:00:00,8899.0
-2012-08-20 04:00:00,8685.0
-2012-08-20 05:00:00,8615.0
-2012-08-20 06:00:00,8861.0
-2012-08-20 07:00:00,9474.0
-2012-08-20 08:00:00,10384.0
-2012-08-20 09:00:00,11218.0
-2012-08-20 10:00:00,12026.0
-2012-08-20 11:00:00,12567.0
-2012-08-20 12:00:00,13056.0
-2012-08-20 13:00:00,13245.0
-2012-08-20 14:00:00,13342.0
-2012-08-20 15:00:00,13439.0
-2012-08-20 16:00:00,13359.0
-2012-08-20 17:00:00,13344.0
-2012-08-20 18:00:00,13318.0
-2012-08-20 19:00:00,13120.0
-2012-08-20 20:00:00,12683.0
-2012-08-20 21:00:00,12514.0
-2012-08-20 22:00:00,12725.0
-2012-08-20 23:00:00,12191.0
-2012-08-21 00:00:00,11216.0
-2012-08-19 01:00:00,9753.0
-2012-08-19 02:00:00,9227.0
-2012-08-19 03:00:00,8726.0
-2012-08-19 04:00:00,8450.0
-2012-08-19 05:00:00,8238.0
-2012-08-19 06:00:00,8192.0
-2012-08-19 07:00:00,8228.0
-2012-08-19 08:00:00,8107.0
-2012-08-19 09:00:00,8306.0
-2012-08-19 10:00:00,8879.0
-2012-08-19 11:00:00,9394.0
-2012-08-19 12:00:00,9975.0
-2012-08-19 13:00:00,10522.0
-2012-08-19 14:00:00,10839.0
-2012-08-19 15:00:00,11087.0
-2012-08-19 16:00:00,11248.0
-2012-08-19 17:00:00,11429.0
-2012-08-19 18:00:00,11510.0
-2012-08-19 19:00:00,11543.0
-2012-08-19 20:00:00,11333.0
-2012-08-19 21:00:00,11294.0
-2012-08-19 22:00:00,11565.0
-2012-08-19 23:00:00,11305.0
-2012-08-20 00:00:00,10597.0
-2012-08-18 01:00:00,10202.0
-2012-08-18 02:00:00,9451.0
-2012-08-18 03:00:00,8970.0
-2012-08-18 04:00:00,8639.0
-2012-08-18 05:00:00,8506.0
-2012-08-18 06:00:00,8470.0
-2012-08-18 07:00:00,8611.0
-2012-08-18 08:00:00,8664.0
-2012-08-18 09:00:00,9200.0
-2012-08-18 10:00:00,9813.0
-2012-08-18 11:00:00,10409.0
-2012-08-18 12:00:00,10818.0
-2012-08-18 13:00:00,11061.0
-2012-08-18 14:00:00,11235.0
-2012-08-18 15:00:00,11255.0
-2012-08-18 16:00:00,11347.0
-2012-08-18 17:00:00,11503.0
-2012-08-18 18:00:00,11563.0
-2012-08-18 19:00:00,11508.0
-2012-08-18 20:00:00,11193.0
-2012-08-18 21:00:00,11057.0
-2012-08-18 22:00:00,11359.0
-2012-08-18 23:00:00,11025.0
-2012-08-19 00:00:00,10464.0
-2012-08-17 01:00:00,10575.0
-2012-08-17 02:00:00,9852.0
-2012-08-17 03:00:00,9323.0
-2012-08-17 04:00:00,8975.0
-2012-08-17 05:00:00,8822.0
-2012-08-17 06:00:00,8943.0
-2012-08-17 07:00:00,9461.0
-2012-08-17 08:00:00,10049.0
-2012-08-17 09:00:00,10832.0
-2012-08-17 10:00:00,11535.0
-2012-08-17 11:00:00,12055.0
-2012-08-17 12:00:00,12502.0
-2012-08-17 13:00:00,12723.0
-2012-08-17 14:00:00,12895.0
-2012-08-17 15:00:00,13087.0
-2012-08-17 16:00:00,13224.0
-2012-08-17 17:00:00,13315.0
-2012-08-17 18:00:00,13317.0
-2012-08-17 19:00:00,13077.0
-2012-08-17 20:00:00,12613.0
-2012-08-17 21:00:00,12196.0
-2012-08-17 22:00:00,12296.0
-2012-08-17 23:00:00,11879.0
-2012-08-18 00:00:00,11002.0
-2012-08-16 01:00:00,12420.0
-2012-08-16 02:00:00,11535.0
-2012-08-16 03:00:00,10868.0
-2012-08-16 04:00:00,10420.0
-2012-08-16 05:00:00,10177.0
-2012-08-16 06:00:00,10258.0
-2012-08-16 07:00:00,10867.0
-2012-08-16 08:00:00,11761.0
-2012-08-16 09:00:00,12710.0
-2012-08-16 10:00:00,13295.0
-2012-08-16 11:00:00,13470.0
-2012-08-16 12:00:00,13733.0
-2012-08-16 13:00:00,13843.0
-2012-08-16 14:00:00,14129.0
-2012-08-16 15:00:00,14349.0
-2012-08-16 16:00:00,14226.0
-2012-08-16 17:00:00,14064.0
-2012-08-16 18:00:00,13929.0
-2012-08-16 19:00:00,13714.0
-2012-08-16 20:00:00,13361.0
-2012-08-16 21:00:00,13034.0
-2012-08-16 22:00:00,13127.0
-2012-08-16 23:00:00,12590.0
-2012-08-17 00:00:00,11582.0
-2012-08-15 01:00:00,11240.0
-2012-08-15 02:00:00,10418.0
-2012-08-15 03:00:00,9865.0
-2012-08-15 04:00:00,9555.0
-2012-08-15 05:00:00,9402.0
-2012-08-15 06:00:00,9549.0
-2012-08-15 07:00:00,10167.0
-2012-08-15 08:00:00,11031.0
-2012-08-15 09:00:00,11823.0
-2012-08-15 10:00:00,12430.0
-2012-08-15 11:00:00,12935.0
-2012-08-15 12:00:00,13717.0
-2012-08-15 13:00:00,14524.0
-2012-08-15 14:00:00,15183.0
-2012-08-15 15:00:00,15795.0
-2012-08-15 16:00:00,16167.0
-2012-08-15 17:00:00,16479.0
-2012-08-15 18:00:00,16586.0
-2012-08-15 19:00:00,16425.0
-2012-08-15 20:00:00,15780.0
-2012-08-15 21:00:00,15352.0
-2012-08-15 22:00:00,15403.0
-2012-08-15 23:00:00,14765.0
-2012-08-16 00:00:00,13626.0
-2012-08-14 01:00:00,10175.0
-2012-08-14 02:00:00,9516.0
-2012-08-14 03:00:00,9118.0
-2012-08-14 04:00:00,8840.0
-2012-08-14 05:00:00,8733.0
-2012-08-14 06:00:00,8893.0
-2012-08-14 07:00:00,9435.0
-2012-08-14 08:00:00,10163.0
-2012-08-14 09:00:00,11060.0
-2012-08-14 10:00:00,11838.0
-2012-08-14 11:00:00,12523.0
-2012-08-14 12:00:00,13158.0
-2012-08-14 13:00:00,13659.0
-2012-08-14 14:00:00,14043.0
-2012-08-14 15:00:00,14408.0
-2012-08-14 16:00:00,14574.0
-2012-08-14 17:00:00,14655.0
-2012-08-14 18:00:00,14643.0
-2012-08-14 19:00:00,14419.0
-2012-08-14 20:00:00,13971.0
-2012-08-14 21:00:00,13712.0
-2012-08-14 22:00:00,13831.0
-2012-08-14 23:00:00,13317.0
-2012-08-15 00:00:00,12322.0
-2012-08-13 01:00:00,10021.0
-2012-08-13 02:00:00,9485.0
-2012-08-13 03:00:00,9147.0
-2012-08-13 04:00:00,8949.0
-2012-08-13 05:00:00,8882.0
-2012-08-13 06:00:00,9087.0
-2012-08-13 07:00:00,9784.0
-2012-08-13 08:00:00,10743.0
-2012-08-13 09:00:00,11467.0
-2012-08-13 10:00:00,11990.0
-2012-08-13 11:00:00,12418.0
-2012-08-13 12:00:00,12735.0
-2012-08-13 13:00:00,12793.0
-2012-08-13 14:00:00,12786.0
-2012-08-13 15:00:00,12769.0
-2012-08-13 16:00:00,12643.0
-2012-08-13 17:00:00,12495.0
-2012-08-13 18:00:00,12360.0
-2012-08-13 19:00:00,12200.0
-2012-08-13 20:00:00,11929.0
-2012-08-13 21:00:00,11895.0
-2012-08-13 22:00:00,12194.0
-2012-08-13 23:00:00,11825.0
-2012-08-14 00:00:00,11037.0
-2012-08-12 01:00:00,10015.0
-2012-08-12 02:00:00,9398.0
-2012-08-12 03:00:00,8901.0
-2012-08-12 04:00:00,8640.0
-2012-08-12 05:00:00,8429.0
-2012-08-12 06:00:00,8311.0
-2012-08-12 07:00:00,8283.0
-2012-08-12 08:00:00,8155.0
-2012-08-12 09:00:00,8438.0
-2012-08-12 10:00:00,8946.0
-2012-08-12 11:00:00,9442.0
-2012-08-12 12:00:00,9884.0
-2012-08-12 13:00:00,10249.0
-2012-08-12 14:00:00,10464.0
-2012-08-12 15:00:00,10630.0
-2012-08-12 16:00:00,10700.0
-2012-08-12 17:00:00,10766.0
-2012-08-12 18:00:00,10808.0
-2012-08-12 19:00:00,10879.0
-2012-08-12 20:00:00,10883.0
-2012-08-12 21:00:00,11058.0
-2012-08-12 22:00:00,11395.0
-2012-08-12 23:00:00,11231.0
-2012-08-13 00:00:00,10682.0
-2012-08-11 01:00:00,10244.0
-2012-08-11 02:00:00,9551.0
-2012-08-11 03:00:00,9081.0
-2012-08-11 04:00:00,8720.0
-2012-08-11 05:00:00,8549.0
-2012-08-11 06:00:00,8493.0
-2012-08-11 07:00:00,8618.0
-2012-08-11 08:00:00,8652.0
-2012-08-11 09:00:00,9117.0
-2012-08-11 10:00:00,9694.0
-2012-08-11 11:00:00,10323.0
-2012-08-11 12:00:00,10796.0
-2012-08-11 13:00:00,11112.0
-2012-08-11 14:00:00,11259.0
-2012-08-11 15:00:00,11409.0
-2012-08-11 16:00:00,11568.0
-2012-08-11 17:00:00,11750.0
-2012-08-11 18:00:00,11889.0
-2012-08-11 19:00:00,11916.0
-2012-08-11 20:00:00,11677.0
-2012-08-11 21:00:00,11437.0
-2012-08-11 22:00:00,11600.0
-2012-08-11 23:00:00,11382.0
-2012-08-12 00:00:00,10711.0
-2012-08-10 01:00:00,10817.0
-2012-08-10 02:00:00,10134.0
-2012-08-10 03:00:00,9680.0
-2012-08-10 04:00:00,9407.0
-2012-08-10 05:00:00,9252.0
-2012-08-10 06:00:00,9396.0
-2012-08-10 07:00:00,9925.0
-2012-08-10 08:00:00,10606.0
-2012-08-10 09:00:00,11320.0
-2012-08-10 10:00:00,11956.0
-2012-08-10 11:00:00,12409.0
-2012-08-10 12:00:00,12755.0
-2012-08-10 13:00:00,12990.0
-2012-08-10 14:00:00,13139.0
-2012-08-10 15:00:00,13271.0
-2012-08-10 16:00:00,13284.0
-2012-08-10 17:00:00,13220.0
-2012-08-10 18:00:00,12975.0
-2012-08-10 19:00:00,12654.0
-2012-08-10 20:00:00,12207.0
-2012-08-10 21:00:00,11885.0
-2012-08-10 22:00:00,12101.0
-2012-08-10 23:00:00,11840.0
-2012-08-11 00:00:00,11092.0
-2012-08-09 01:00:00,12192.0
-2012-08-09 02:00:00,11373.0
-2012-08-09 03:00:00,10823.0
-2012-08-09 04:00:00,10409.0
-2012-08-09 05:00:00,10246.0
-2012-08-09 06:00:00,10364.0
-2012-08-09 07:00:00,10982.0
-2012-08-09 08:00:00,11795.0
-2012-08-09 09:00:00,12613.0
-2012-08-09 10:00:00,13272.0
-2012-08-09 11:00:00,13744.0
-2012-08-09 12:00:00,14154.0
-2012-08-09 13:00:00,14386.0
-2012-08-09 14:00:00,14513.0
-2012-08-09 15:00:00,14649.0
-2012-08-09 16:00:00,14554.0
-2012-08-09 17:00:00,14268.0
-2012-08-09 18:00:00,13862.0
-2012-08-09 19:00:00,13454.0
-2012-08-09 20:00:00,13005.0
-2012-08-09 21:00:00,12848.0
-2012-08-09 22:00:00,12981.0
-2012-08-09 23:00:00,12586.0
-2012-08-10 00:00:00,11758.0
-2012-08-08 01:00:00,14792.0
-2012-08-08 02:00:00,13618.0
-2012-08-08 03:00:00,12801.0
-2012-08-08 04:00:00,12171.0
-2012-08-08 05:00:00,11787.0
-2012-08-08 06:00:00,11741.0
-2012-08-08 07:00:00,12197.0
-2012-08-08 08:00:00,12928.0
-2012-08-08 09:00:00,14077.0
-2012-08-08 10:00:00,15151.0
-2012-08-08 11:00:00,16024.0
-2012-08-08 12:00:00,16860.0
-2012-08-08 13:00:00,17359.0
-2012-08-08 14:00:00,17760.0
-2012-08-08 15:00:00,17803.0
-2012-08-08 16:00:00,17336.0
-2012-08-08 17:00:00,16692.0
-2012-08-08 18:00:00,15993.0
-2012-08-08 19:00:00,15387.0
-2012-08-08 20:00:00,14877.0
-2012-08-08 21:00:00,14516.0
-2012-08-08 22:00:00,14628.0
-2012-08-08 23:00:00,14159.0
-2012-08-09 00:00:00,13216.0
-2012-08-07 01:00:00,12471.0
-2012-08-07 02:00:00,11456.0
-2012-08-07 03:00:00,10762.0
-2012-08-07 04:00:00,10279.0
-2012-08-07 05:00:00,10028.0
-2012-08-07 06:00:00,10096.0
-2012-08-07 07:00:00,10606.0
-2012-08-07 08:00:00,11349.0
-2012-08-07 09:00:00,12414.0
-2012-08-07 10:00:00,13461.0
-2012-08-07 11:00:00,14499.0
-2012-08-07 12:00:00,15509.0
-2012-08-07 13:00:00,16429.0
-2012-08-07 14:00:00,17279.0
-2012-08-07 15:00:00,18395.0
-2012-08-07 16:00:00,19184.0
-2012-08-07 17:00:00,19659.0
-2012-08-07 18:00:00,19934.0
-2012-08-07 19:00:00,19989.0
-2012-08-07 20:00:00,19547.0
-2012-08-07 21:00:00,18835.0
-2012-08-07 22:00:00,18546.0
-2012-08-07 23:00:00,17784.0
-2012-08-08 00:00:00,16334.0
-2012-08-06 01:00:00,11568.0
-2012-08-06 02:00:00,10695.0
-2012-08-06 03:00:00,10157.0
-2012-08-06 04:00:00,9756.0
-2012-08-06 05:00:00,9630.0
-2012-08-06 06:00:00,9746.0
-2012-08-06 07:00:00,10297.0
-2012-08-06 08:00:00,11009.0
-2012-08-06 09:00:00,12210.0
-2012-08-06 10:00:00,13137.0
-2012-08-06 11:00:00,13960.0
-2012-08-06 12:00:00,14733.0
-2012-08-06 13:00:00,15364.0
-2012-08-06 14:00:00,15908.0
-2012-08-06 15:00:00,16497.0
-2012-08-06 16:00:00,16953.0
-2012-08-06 17:00:00,17338.0
-2012-08-06 18:00:00,17569.0
-2012-08-06 19:00:00,17571.0
-2012-08-06 20:00:00,17051.0
-2012-08-06 21:00:00,16282.0
-2012-08-06 22:00:00,15850.0
-2012-08-06 23:00:00,15088.0
-2012-08-07 00:00:00,13756.0
-2012-08-05 01:00:00,12357.0
-2012-08-05 02:00:00,11526.0
-2012-08-05 03:00:00,10995.0
-2012-08-05 04:00:00,10607.0
-2012-08-05 05:00:00,10290.0
-2012-08-05 06:00:00,10095.0
-2012-08-05 07:00:00,9889.0
-2012-08-05 08:00:00,9720.0
-2012-08-05 09:00:00,10223.0
-2012-08-05 10:00:00,11135.0
-2012-08-05 11:00:00,11982.0
-2012-08-05 12:00:00,12812.0
-2012-08-05 13:00:00,13373.0
-2012-08-05 14:00:00,13812.0
-2012-08-05 15:00:00,14172.0
-2012-08-05 16:00:00,14426.0
-2012-08-05 17:00:00,14705.0
-2012-08-05 18:00:00,14895.0
-2012-08-05 19:00:00,14916.0
-2012-08-05 20:00:00,14580.0
-2012-08-05 21:00:00,14027.0
-2012-08-05 22:00:00,13751.0
-2012-08-05 23:00:00,13419.0
-2012-08-06 00:00:00,12515.0
-2012-08-04 01:00:00,15392.0
-2012-08-04 02:00:00,14168.0
-2012-08-04 03:00:00,13303.0
-2012-08-04 04:00:00,12532.0
-2012-08-04 05:00:00,12077.0
-2012-08-04 06:00:00,11862.0
-2012-08-04 07:00:00,11874.0
-2012-08-04 08:00:00,11960.0
-2012-08-04 09:00:00,12894.0
-2012-08-04 10:00:00,14311.0
-2012-08-04 11:00:00,15831.0
-2012-08-04 12:00:00,17093.0
-2012-08-04 13:00:00,18070.0
-2012-08-04 14:00:00,18753.0
-2012-08-04 15:00:00,19271.0
-2012-08-04 16:00:00,19513.0
-2012-08-04 17:00:00,18617.0
-2012-08-04 18:00:00,16490.0
-2012-08-04 19:00:00,15274.0
-2012-08-04 20:00:00,14603.0
-2012-08-04 21:00:00,14148.0
-2012-08-04 22:00:00,14165.0
-2012-08-04 23:00:00,13945.0
-2012-08-05 00:00:00,13169.0
-2012-08-03 01:00:00,14335.0
-2012-08-03 02:00:00,13149.0
-2012-08-03 03:00:00,12336.0
-2012-08-03 04:00:00,11779.0
-2012-08-03 05:00:00,11486.0
-2012-08-03 06:00:00,11524.0
-2012-08-03 07:00:00,11985.0
-2012-08-03 08:00:00,12709.0
-2012-08-03 09:00:00,14045.0
-2012-08-03 10:00:00,15397.0
-2012-08-03 11:00:00,16684.0
-2012-08-03 12:00:00,17916.0
-2012-08-03 13:00:00,18951.0
-2012-08-03 14:00:00,19770.0
-2012-08-03 15:00:00,20415.0
-2012-08-03 16:00:00,20834.0
-2012-08-03 17:00:00,21053.0
-2012-08-03 18:00:00,21078.0
-2012-08-03 19:00:00,20709.0
-2012-08-03 20:00:00,20004.0
-2012-08-03 21:00:00,19116.0
-2012-08-03 22:00:00,18635.0
-2012-08-03 23:00:00,17957.0
-2012-08-04 00:00:00,16689.0
-2012-08-02 01:00:00,14139.0
-2012-08-02 02:00:00,12987.0
-2012-08-02 03:00:00,12191.0
-2012-08-02 04:00:00,11570.0
-2012-08-02 05:00:00,11255.0
-2012-08-02 06:00:00,11207.0
-2012-08-02 07:00:00,11622.0
-2012-08-02 08:00:00,12242.0
-2012-08-02 09:00:00,13413.0
-2012-08-02 10:00:00,14499.0
-2012-08-02 11:00:00,15359.0
-2012-08-02 12:00:00,16401.0
-2012-08-02 13:00:00,17559.0
-2012-08-02 14:00:00,18610.0
-2012-08-02 15:00:00,19603.0
-2012-08-02 16:00:00,20192.0
-2012-08-02 17:00:00,20240.0
-2012-08-02 18:00:00,19981.0
-2012-08-02 19:00:00,19800.0
-2012-08-02 20:00:00,19135.0
-2012-08-02 21:00:00,18288.0
-2012-08-02 22:00:00,17805.0
-2012-08-02 23:00:00,17333.0
-2012-08-03 00:00:00,15852.0
-2012-08-01 01:00:00,13303.0
-2012-08-01 02:00:00,12284.0
-2012-08-01 03:00:00,11497.0
-2012-08-01 04:00:00,10980.0
-2012-08-01 05:00:00,10707.0
-2012-08-01 06:00:00,10796.0
-2012-08-01 07:00:00,11314.0
-2012-08-01 08:00:00,12066.0
-2012-08-01 09:00:00,13280.0
-2012-08-01 10:00:00,14433.0
-2012-08-01 11:00:00,15381.0
-2012-08-01 12:00:00,16445.0
-2012-08-01 13:00:00,17277.0
-2012-08-01 14:00:00,17983.0
-2012-08-01 15:00:00,18601.0
-2012-08-01 16:00:00,19114.0
-2012-08-01 17:00:00,19507.0
-2012-08-01 18:00:00,19743.0
-2012-08-01 19:00:00,19632.0
-2012-08-01 20:00:00,19067.0
-2012-08-01 21:00:00,18215.0
-2012-08-01 22:00:00,17785.0
-2012-08-01 23:00:00,17029.0
-2012-08-02 00:00:00,15604.0
-2012-07-31 01:00:00,15400.0
-2012-07-31 02:00:00,14175.0
-2012-07-31 03:00:00,13299.0
-2012-07-31 04:00:00,12707.0
-2012-07-31 05:00:00,12107.0
-2012-07-31 06:00:00,11890.0
-2012-07-31 07:00:00,12251.0
-2012-07-31 08:00:00,12927.0
-2012-07-31 09:00:00,14120.0
-2012-07-31 10:00:00,15234.0
-2012-07-31 11:00:00,16237.0
-2012-07-31 12:00:00,17020.0
-2012-07-31 13:00:00,17713.0
-2012-07-31 14:00:00,18326.0
-2012-07-31 15:00:00,18953.0
-2012-07-31 16:00:00,19144.0
-2012-07-31 17:00:00,19258.0
-2012-07-31 18:00:00,19242.0
-2012-07-31 19:00:00,18940.0
-2012-07-31 20:00:00,18196.0
-2012-07-31 21:00:00,17174.0
-2012-07-31 22:00:00,16634.0
-2012-07-31 23:00:00,15963.0
-2012-08-01 00:00:00,14721.0
-2012-07-30 01:00:00,12343.0
-2012-07-30 02:00:00,11612.0
-2012-07-30 03:00:00,10946.0
-2012-07-30 04:00:00,10610.0
-2012-07-30 05:00:00,10446.0
-2012-07-30 06:00:00,10652.0
-2012-07-30 07:00:00,11182.0
-2012-07-30 08:00:00,11983.0
-2012-07-30 09:00:00,13123.0
-2012-07-30 10:00:00,14373.0
-2012-07-30 11:00:00,15638.0
-2012-07-30 12:00:00,16961.0
-2012-07-30 13:00:00,18111.0
-2012-07-30 14:00:00,18949.0
-2012-07-30 15:00:00,19635.0
-2012-07-30 16:00:00,20072.0
-2012-07-30 17:00:00,20295.0
-2012-07-30 18:00:00,20481.0
-2012-07-30 19:00:00,20473.0
-2012-07-30 20:00:00,20010.0
-2012-07-30 21:00:00,19329.0
-2012-07-30 22:00:00,19028.0
-2012-07-30 23:00:00,18307.0
-2012-07-31 00:00:00,16845.0
-2012-07-29 01:00:00,11669.0
-2012-07-29 02:00:00,10867.0
-2012-07-29 03:00:00,10235.0
-2012-07-29 04:00:00,9825.0
-2012-07-29 05:00:00,9467.0
-2012-07-29 06:00:00,9285.0
-2012-07-29 07:00:00,9176.0
-2012-07-29 08:00:00,9089.0
-2012-07-29 09:00:00,9625.0
-2012-07-29 10:00:00,10490.0
-2012-07-29 11:00:00,11511.0
-2012-07-29 12:00:00,12590.0
-2012-07-29 13:00:00,13546.0
-2012-07-29 14:00:00,14173.0
-2012-07-29 15:00:00,14611.0
-2012-07-29 16:00:00,14674.0
-2012-07-29 17:00:00,14438.0
-2012-07-29 18:00:00,14141.0
-2012-07-29 19:00:00,14022.0
-2012-07-29 20:00:00,13946.0
-2012-07-29 21:00:00,13790.0
-2012-07-29 22:00:00,14040.0
-2012-07-29 23:00:00,13908.0
-2012-07-30 00:00:00,13263.0
-2012-07-28 01:00:00,12442.0
-2012-07-28 02:00:00,11508.0
-2012-07-28 03:00:00,10857.0
-2012-07-28 04:00:00,10322.0
-2012-07-28 05:00:00,10074.0
-2012-07-28 06:00:00,9967.0
-2012-07-28 07:00:00,10029.0
-2012-07-28 08:00:00,10218.0
-2012-07-28 09:00:00,11073.0
-2012-07-28 10:00:00,12091.0
-2012-07-28 11:00:00,13012.0
-2012-07-28 12:00:00,13828.0
-2012-07-28 13:00:00,14341.0
-2012-07-28 14:00:00,14732.0
-2012-07-28 15:00:00,14988.0
-2012-07-28 16:00:00,15227.0
-2012-07-28 17:00:00,15421.0
-2012-07-28 18:00:00,15455.0
-2012-07-28 19:00:00,15206.0
-2012-07-28 20:00:00,14804.0
-2012-07-28 21:00:00,14109.0
-2012-07-28 22:00:00,13825.0
-2012-07-28 23:00:00,13472.0
-2012-07-29 00:00:00,12587.0
-2012-07-27 01:00:00,13604.0
-2012-07-27 02:00:00,12544.0
-2012-07-27 03:00:00,11768.0
-2012-07-27 04:00:00,11206.0
-2012-07-27 05:00:00,10948.0
-2012-07-27 06:00:00,10979.0
-2012-07-27 07:00:00,11429.0
-2012-07-27 08:00:00,12105.0
-2012-07-27 09:00:00,13030.0
-2012-07-27 10:00:00,13697.0
-2012-07-27 11:00:00,14428.0
-2012-07-27 12:00:00,15347.0
-2012-07-27 13:00:00,16216.0
-2012-07-27 14:00:00,16791.0
-2012-07-27 15:00:00,17244.0
-2012-07-27 16:00:00,17586.0
-2012-07-27 17:00:00,17674.0
-2012-07-27 18:00:00,17476.0
-2012-07-27 19:00:00,16929.0
-2012-07-27 20:00:00,16141.0
-2012-07-27 21:00:00,15308.0
-2012-07-27 22:00:00,14923.0
-2012-07-27 23:00:00,14531.0
-2012-07-28 00:00:00,13476.0
-2012-07-26 01:00:00,17368.0
-2012-07-26 02:00:00,16170.0
-2012-07-26 03:00:00,15370.0
-2012-07-26 04:00:00,14648.0
-2012-07-26 05:00:00,13951.0
-2012-07-26 06:00:00,13450.0
-2012-07-26 07:00:00,13652.0
-2012-07-26 08:00:00,14318.0
-2012-07-26 09:00:00,15015.0
-2012-07-26 10:00:00,15534.0
-2012-07-26 11:00:00,15920.0
-2012-07-26 12:00:00,16420.0
-2012-07-26 13:00:00,16860.0
-2012-07-26 14:00:00,17696.0
-2012-07-26 15:00:00,18362.0
-2012-07-26 16:00:00,18769.0
-2012-07-26 17:00:00,19293.0
-2012-07-26 18:00:00,19561.0
-2012-07-26 19:00:00,19046.0
-2012-07-26 20:00:00,18082.0
-2012-07-26 21:00:00,17272.0
-2012-07-26 22:00:00,16716.0
-2012-07-26 23:00:00,16256.0
-2012-07-27 00:00:00,14983.0
-2012-07-25 01:00:00,13388.0
-2012-07-25 02:00:00,12461.0
-2012-07-25 03:00:00,11800.0
-2012-07-25 04:00:00,11307.0
-2012-07-25 05:00:00,11081.0
-2012-07-25 06:00:00,11151.0
-2012-07-25 07:00:00,11642.0
-2012-07-25 08:00:00,12508.0
-2012-07-25 09:00:00,13478.0
-2012-07-25 10:00:00,14556.0
-2012-07-25 11:00:00,15656.0
-2012-07-25 12:00:00,17089.0
-2012-07-25 13:00:00,18377.0
-2012-07-25 14:00:00,19668.0
-2012-07-25 15:00:00,20855.0
-2012-07-25 16:00:00,21714.0
-2012-07-25 17:00:00,22311.0
-2012-07-25 18:00:00,22505.0
-2012-07-25 19:00:00,22431.0
-2012-07-25 20:00:00,21984.0
-2012-07-25 21:00:00,21264.0
-2012-07-25 22:00:00,20840.0
-2012-07-25 23:00:00,20259.0
-2012-07-26 00:00:00,18851.0
-2012-07-24 01:00:00,16872.0
-2012-07-24 02:00:00,15789.0
-2012-07-24 03:00:00,14908.0
-2012-07-24 04:00:00,14313.0
-2012-07-24 05:00:00,13947.0
-2012-07-24 06:00:00,13882.0
-2012-07-24 07:00:00,14229.0
-2012-07-24 08:00:00,14441.0
-2012-07-24 09:00:00,14537.0
-2012-07-24 10:00:00,14748.0
-2012-07-24 11:00:00,15223.0
-2012-07-24 12:00:00,15788.0
-2012-07-24 13:00:00,16325.0
-2012-07-24 14:00:00,16680.0
-2012-07-24 15:00:00,17217.0
-2012-07-24 16:00:00,17642.0
-2012-07-24 17:00:00,17794.0
-2012-07-24 18:00:00,17976.0
-2012-07-24 19:00:00,17872.0
-2012-07-24 20:00:00,17283.0
-2012-07-24 21:00:00,16406.0
-2012-07-24 22:00:00,16040.0
-2012-07-24 23:00:00,15655.0
-2012-07-25 00:00:00,14594.0
-2012-07-23 01:00:00,14096.0
-2012-07-23 02:00:00,13273.0
-2012-07-23 03:00:00,12710.0
-2012-07-23 04:00:00,12365.0
-2012-07-23 05:00:00,12162.0
-2012-07-23 06:00:00,12345.0
-2012-07-23 07:00:00,12977.0
-2012-07-23 08:00:00,13895.0
-2012-07-23 09:00:00,15244.0
-2012-07-23 10:00:00,16585.0
-2012-07-23 11:00:00,18014.0
-2012-07-23 12:00:00,19267.0
-2012-07-23 13:00:00,20194.0
-2012-07-23 14:00:00,20929.0
-2012-07-23 15:00:00,21273.0
-2012-07-23 16:00:00,21651.0
-2012-07-23 17:00:00,21876.0
-2012-07-23 18:00:00,21933.0
-2012-07-23 19:00:00,21611.0
-2012-07-23 20:00:00,20917.0
-2012-07-23 21:00:00,20423.0
-2012-07-23 22:00:00,20263.0
-2012-07-23 23:00:00,19640.0
-2012-07-24 00:00:00,18301.0
-2012-07-22 01:00:00,13711.0
-2012-07-22 02:00:00,12688.0
-2012-07-22 03:00:00,11983.0
-2012-07-22 04:00:00,11368.0
-2012-07-22 05:00:00,10945.0
-2012-07-22 06:00:00,10642.0
-2012-07-22 07:00:00,10341.0
-2012-07-22 08:00:00,10417.0
-2012-07-22 09:00:00,11080.0
-2012-07-22 10:00:00,11989.0
-2012-07-22 11:00:00,12980.0
-2012-07-22 12:00:00,13596.0
-2012-07-22 13:00:00,13976.0
-2012-07-22 14:00:00,14301.0
-2012-07-22 15:00:00,14650.0
-2012-07-22 16:00:00,14746.0
-2012-07-22 17:00:00,14989.0
-2012-07-22 18:00:00,15823.0
-2012-07-22 19:00:00,16407.0
-2012-07-22 20:00:00,16549.0
-2012-07-22 21:00:00,16189.0
-2012-07-22 22:00:00,16060.0
-2012-07-22 23:00:00,15892.0
-2012-07-23 00:00:00,15072.0
-2012-07-21 01:00:00,12120.0
-2012-07-21 02:00:00,11196.0
-2012-07-21 03:00:00,10539.0
-2012-07-21 04:00:00,10102.0
-2012-07-21 05:00:00,9864.0
-2012-07-21 06:00:00,9751.0
-2012-07-21 07:00:00,9772.0
-2012-07-21 08:00:00,10023.0
-2012-07-21 09:00:00,10870.0
-2012-07-21 10:00:00,11926.0
-2012-07-21 11:00:00,12995.0
-2012-07-21 12:00:00,14065.0
-2012-07-21 13:00:00,14963.0
-2012-07-21 14:00:00,15709.0
-2012-07-21 15:00:00,16274.0
-2012-07-21 16:00:00,16575.0
-2012-07-21 17:00:00,16619.0
-2012-07-21 18:00:00,16662.0
-2012-07-21 19:00:00,16425.0
-2012-07-21 20:00:00,16124.0
-2012-07-21 21:00:00,15816.0
-2012-07-21 22:00:00,15725.0
-2012-07-21 23:00:00,15572.0
-2012-07-22 00:00:00,14714.0
-2012-07-20 01:00:00,13141.0
-2012-07-20 02:00:00,12183.0
-2012-07-20 03:00:00,11581.0
-2012-07-20 04:00:00,11116.0
-2012-07-20 05:00:00,10913.0
-2012-07-20 06:00:00,11010.0
-2012-07-20 07:00:00,11534.0
-2012-07-20 08:00:00,12266.0
-2012-07-20 09:00:00,13041.0
-2012-07-20 10:00:00,13732.0
-2012-07-20 11:00:00,14473.0
-2012-07-20 12:00:00,15261.0
-2012-07-20 13:00:00,15785.0
-2012-07-20 14:00:00,16183.0
-2012-07-20 15:00:00,16519.0
-2012-07-20 16:00:00,16659.0
-2012-07-20 17:00:00,16856.0
-2012-07-20 18:00:00,16895.0
-2012-07-20 19:00:00,16601.0
-2012-07-20 20:00:00,15848.0
-2012-07-20 21:00:00,14987.0
-2012-07-20 22:00:00,14423.0
-2012-07-20 23:00:00,14090.0
-2012-07-21 00:00:00,13106.0
-2012-07-19 01:00:00,14568.0
-2012-07-19 02:00:00,13599.0
-2012-07-19 03:00:00,12741.0
-2012-07-19 04:00:00,12287.0
-2012-07-19 05:00:00,12046.0
-2012-07-19 06:00:00,12086.0
-2012-07-19 07:00:00,12651.0
-2012-07-19 08:00:00,13463.0
-2012-07-19 09:00:00,14308.0
-2012-07-19 10:00:00,15084.0
-2012-07-19 11:00:00,15734.0
-2012-07-19 12:00:00,16666.0
-2012-07-19 13:00:00,17319.0
-2012-07-19 14:00:00,17700.0
-2012-07-19 15:00:00,17982.0
-2012-07-19 16:00:00,18027.0
-2012-07-19 17:00:00,18213.0
-2012-07-19 18:00:00,18205.0
-2012-07-19 19:00:00,17725.0
-2012-07-19 20:00:00,16889.0
-2012-07-19 21:00:00,16190.0
-2012-07-19 22:00:00,15878.0
-2012-07-19 23:00:00,15419.0
-2012-07-20 00:00:00,14334.0
-2012-07-18 01:00:00,17414.0
-2012-07-18 02:00:00,16104.0
-2012-07-18 03:00:00,15210.0
-2012-07-18 04:00:00,14448.0
-2012-07-18 05:00:00,13940.0
-2012-07-18 06:00:00,13829.0
-2012-07-18 07:00:00,14131.0
-2012-07-18 08:00:00,14913.0
-2012-07-18 09:00:00,16194.0
-2012-07-18 10:00:00,17182.0
-2012-07-18 11:00:00,18058.0
-2012-07-18 12:00:00,18943.0
-2012-07-18 13:00:00,19767.0
-2012-07-18 14:00:00,20552.0
-2012-07-18 15:00:00,21034.0
-2012-07-18 16:00:00,21242.0
-2012-07-18 17:00:00,21434.0
-2012-07-18 18:00:00,21471.0
-2012-07-18 19:00:00,21149.0
-2012-07-18 20:00:00,20389.0
-2012-07-18 21:00:00,19451.0
-2012-07-18 22:00:00,18877.0
-2012-07-18 23:00:00,17931.0
-2012-07-19 00:00:00,15898.0
-2012-07-17 01:00:00,17035.0
-2012-07-17 02:00:00,15850.0
-2012-07-17 03:00:00,14963.0
-2012-07-17 04:00:00,14308.0
-2012-07-17 05:00:00,13882.0
-2012-07-17 06:00:00,13802.0
-2012-07-17 07:00:00,14121.0
-2012-07-17 08:00:00,15111.0
-2012-07-17 09:00:00,16691.0
-2012-07-17 10:00:00,18215.0
-2012-07-17 11:00:00,19653.0
-2012-07-17 12:00:00,20927.0
-2012-07-17 13:00:00,21883.0
-2012-07-17 14:00:00,22450.0
-2012-07-17 15:00:00,22915.0
-2012-07-17 16:00:00,23138.0
-2012-07-17 17:00:00,23269.0
-2012-07-17 18:00:00,23265.0
-2012-07-17 19:00:00,23064.0
-2012-07-17 20:00:00,22569.0
-2012-07-17 21:00:00,21902.0
-2012-07-17 22:00:00,21351.0
-2012-07-17 23:00:00,20605.0
-2012-07-18 00:00:00,19005.0
-2012-07-16 01:00:00,14692.0
-2012-07-16 02:00:00,13605.0
-2012-07-16 03:00:00,12892.0
-2012-07-16 04:00:00,12330.0
-2012-07-16 05:00:00,12035.0
-2012-07-16 06:00:00,12120.0
-2012-07-16 07:00:00,12552.0
-2012-07-16 08:00:00,13620.0
-2012-07-16 09:00:00,15209.0
-2012-07-16 10:00:00,16855.0
-2012-07-16 11:00:00,18204.0
-2012-07-16 12:00:00,19525.0
-2012-07-16 13:00:00,20504.0
-2012-07-16 14:00:00,21192.0
-2012-07-16 15:00:00,21695.0
-2012-07-16 16:00:00,22014.0
-2012-07-16 17:00:00,22301.0
-2012-07-16 18:00:00,22350.0
-2012-07-16 19:00:00,22233.0
-2012-07-16 20:00:00,21804.0
-2012-07-16 21:00:00,21051.0
-2012-07-16 22:00:00,20461.0
-2012-07-16 23:00:00,19914.0
-2012-07-17 00:00:00,18492.0
-2012-07-15 01:00:00,13066.0
-2012-07-15 02:00:00,12103.0
-2012-07-15 03:00:00,11448.0
-2012-07-15 04:00:00,10857.0
-2012-07-15 05:00:00,10456.0
-2012-07-15 06:00:00,10226.0
-2012-07-15 07:00:00,10002.0
-2012-07-15 08:00:00,10136.0
-2012-07-15 09:00:00,10984.0
-2012-07-15 10:00:00,12312.0
-2012-07-15 11:00:00,13778.0
-2012-07-15 12:00:00,15200.0
-2012-07-15 13:00:00,16275.0
-2012-07-15 14:00:00,16972.0
-2012-07-15 15:00:00,17544.0
-2012-07-15 16:00:00,18061.0
-2012-07-15 17:00:00,18404.0
-2012-07-15 18:00:00,18612.0
-2012-07-15 19:00:00,18659.0
-2012-07-15 20:00:00,18338.0
-2012-07-15 21:00:00,17735.0
-2012-07-15 22:00:00,17407.0
-2012-07-15 23:00:00,17034.0
-2012-07-16 00:00:00,15941.0
-2012-07-14 01:00:00,13413.0
-2012-07-14 02:00:00,12411.0
-2012-07-14 03:00:00,11738.0
-2012-07-14 04:00:00,11206.0
-2012-07-14 05:00:00,10888.0
-2012-07-14 06:00:00,10765.0
-2012-07-14 07:00:00,10782.0
-2012-07-14 08:00:00,11083.0
-2012-07-14 09:00:00,11951.0
-2012-07-14 10:00:00,13080.0
-2012-07-14 11:00:00,14250.0
-2012-07-14 12:00:00,15389.0
-2012-07-14 13:00:00,16279.0
-2012-07-14 14:00:00,16926.0
-2012-07-14 15:00:00,16852.0
-2012-07-14 16:00:00,16524.0
-2012-07-14 17:00:00,16380.0
-2012-07-14 18:00:00,16347.0
-2012-07-14 19:00:00,16379.0
-2012-07-14 20:00:00,16158.0
-2012-07-14 21:00:00,15703.0
-2012-07-14 22:00:00,15241.0
-2012-07-14 23:00:00,14986.0
-2012-07-15 00:00:00,14092.0
-2012-07-13 01:00:00,13981.0
-2012-07-13 02:00:00,12935.0
-2012-07-13 03:00:00,12125.0
-2012-07-13 04:00:00,11560.0
-2012-07-13 05:00:00,11236.0
-2012-07-13 06:00:00,11261.0
-2012-07-13 07:00:00,11594.0
-2012-07-13 08:00:00,12451.0
-2012-07-13 09:00:00,13806.0
-2012-07-13 10:00:00,15175.0
-2012-07-13 11:00:00,16463.0
-2012-07-13 12:00:00,17881.0
-2012-07-13 13:00:00,18898.0
-2012-07-13 14:00:00,19436.0
-2012-07-13 15:00:00,19407.0
-2012-07-13 16:00:00,18955.0
-2012-07-13 17:00:00,18555.0
-2012-07-13 18:00:00,18013.0
-2012-07-13 19:00:00,17160.0
-2012-07-13 20:00:00,16351.0
-2012-07-13 21:00:00,15809.0
-2012-07-13 22:00:00,15644.0
-2012-07-13 23:00:00,15460.0
-2012-07-14 00:00:00,14484.0
-2012-07-12 01:00:00,13168.0
-2012-07-12 02:00:00,12146.0
-2012-07-12 03:00:00,11376.0
-2012-07-12 04:00:00,10871.0
-2012-07-12 05:00:00,10550.0
-2012-07-12 06:00:00,10594.0
-2012-07-12 07:00:00,10960.0
-2012-07-12 08:00:00,11815.0
-2012-07-12 09:00:00,12969.0
-2012-07-12 10:00:00,14065.0
-2012-07-12 11:00:00,14987.0
-2012-07-12 12:00:00,16005.0
-2012-07-12 13:00:00,16667.0
-2012-07-12 14:00:00,17691.0
-2012-07-12 15:00:00,18299.0
-2012-07-12 16:00:00,18750.0
-2012-07-12 17:00:00,19004.0
-2012-07-12 18:00:00,19104.0
-2012-07-12 19:00:00,18909.0
-2012-07-12 20:00:00,18324.0
-2012-07-12 21:00:00,17523.0
-2012-07-12 22:00:00,16982.0
-2012-07-12 23:00:00,16568.0
-2012-07-13 00:00:00,15320.0
-2012-07-11 01:00:00,12119.0
-2012-07-11 02:00:00,11240.0
-2012-07-11 03:00:00,10616.0
-2012-07-11 04:00:00,10169.0
-2012-07-11 05:00:00,9981.0
-2012-07-11 06:00:00,10119.0
-2012-07-11 07:00:00,10476.0
-2012-07-11 08:00:00,11435.0
-2012-07-11 09:00:00,12626.0
-2012-07-11 10:00:00,13650.0
-2012-07-11 11:00:00,14511.0
-2012-07-11 12:00:00,15385.0
-2012-07-11 13:00:00,16109.0
-2012-07-11 14:00:00,16674.0
-2012-07-11 15:00:00,17264.0
-2012-07-11 16:00:00,17624.0
-2012-07-11 17:00:00,17896.0
-2012-07-11 18:00:00,18029.0
-2012-07-11 19:00:00,17874.0
-2012-07-11 20:00:00,17251.0
-2012-07-11 21:00:00,16528.0
-2012-07-11 22:00:00,15975.0
-2012-07-11 23:00:00,15587.0
-2012-07-12 00:00:00,14436.0
-2012-07-10 01:00:00,12978.0
-2012-07-10 02:00:00,12031.0
-2012-07-10 03:00:00,11354.0
-2012-07-10 04:00:00,10912.0
-2012-07-10 05:00:00,10628.0
-2012-07-10 06:00:00,10737.0
-2012-07-10 07:00:00,11150.0
-2012-07-10 08:00:00,12119.0
-2012-07-10 09:00:00,13261.0
-2012-07-10 10:00:00,14105.0
-2012-07-10 11:00:00,14879.0
-2012-07-10 12:00:00,15564.0
-2012-07-10 13:00:00,16107.0
-2012-07-10 14:00:00,16392.0
-2012-07-10 15:00:00,16548.0
-2012-07-10 16:00:00,16538.0
-2012-07-10 17:00:00,16535.0
-2012-07-10 18:00:00,16475.0
-2012-07-10 19:00:00,16289.0
-2012-07-10 20:00:00,15693.0
-2012-07-10 21:00:00,15016.0
-2012-07-10 22:00:00,14599.0
-2012-07-10 23:00:00,14367.0
-2012-07-11 00:00:00,13283.0
-2012-07-09 01:00:00,12154.0
-2012-07-09 02:00:00,11344.0
-2012-07-09 03:00:00,10736.0
-2012-07-09 04:00:00,10385.0
-2012-07-09 05:00:00,10193.0
-2012-07-09 06:00:00,10367.0
-2012-07-09 07:00:00,10701.0
-2012-07-09 08:00:00,11722.0
-2012-07-09 09:00:00,13045.0
-2012-07-09 10:00:00,14170.0
-2012-07-09 11:00:00,15220.0
-2012-07-09 12:00:00,16275.0
-2012-07-09 13:00:00,17194.0
-2012-07-09 14:00:00,17928.0
-2012-07-09 15:00:00,18492.0
-2012-07-09 16:00:00,18567.0
-2012-07-09 17:00:00,18425.0
-2012-07-09 18:00:00,18134.0
-2012-07-09 19:00:00,17533.0
-2012-07-09 20:00:00,16747.0
-2012-07-09 21:00:00,16121.0
-2012-07-09 22:00:00,15665.0
-2012-07-09 23:00:00,15339.0
-2012-07-10 00:00:00,14215.0
-2012-07-08 01:00:00,12912.0
-2012-07-08 02:00:00,12102.0
-2012-07-08 03:00:00,11518.0
-2012-07-08 04:00:00,11126.0
-2012-07-08 05:00:00,10788.0
-2012-07-08 06:00:00,10690.0
-2012-07-08 07:00:00,10527.0
-2012-07-08 08:00:00,10524.0
-2012-07-08 09:00:00,10920.0
-2012-07-08 10:00:00,11676.0
-2012-07-08 11:00:00,12497.0
-2012-07-08 12:00:00,13233.0
-2012-07-08 13:00:00,13738.0
-2012-07-08 14:00:00,14123.0
-2012-07-08 15:00:00,14378.0
-2012-07-08 16:00:00,14685.0
-2012-07-08 17:00:00,14988.0
-2012-07-08 18:00:00,15172.0
-2012-07-08 19:00:00,15180.0
-2012-07-08 20:00:00,14983.0
-2012-07-08 21:00:00,14443.0
-2012-07-08 22:00:00,14054.0
-2012-07-08 23:00:00,13932.0
-2012-07-09 00:00:00,13159.0
-2012-07-07 01:00:00,18165.0
-2012-07-07 02:00:00,16808.0
-2012-07-07 03:00:00,15853.0
-2012-07-07 04:00:00,15051.0
-2012-07-07 05:00:00,14511.0
-2012-07-07 06:00:00,14139.0
-2012-07-07 07:00:00,13916.0
-2012-07-07 08:00:00,14187.0
-2012-07-07 09:00:00,15446.0
-2012-07-07 10:00:00,16988.0
-2012-07-07 11:00:00,18441.0
-2012-07-07 12:00:00,19534.0
-2012-07-07 13:00:00,20109.0
-2012-07-07 14:00:00,20181.0
-2012-07-07 15:00:00,20056.0
-2012-07-07 16:00:00,19873.0
-2012-07-07 17:00:00,19603.0
-2012-07-07 18:00:00,19096.0
-2012-07-07 19:00:00,18075.0
-2012-07-07 20:00:00,16970.0
-2012-07-07 21:00:00,15852.0
-2012-07-07 22:00:00,15220.0
-2012-07-07 23:00:00,14728.0
-2012-07-08 00:00:00,13808.0
-2012-07-06 01:00:00,18076.0
-2012-07-06 02:00:00,16934.0
-2012-07-06 03:00:00,16045.0
-2012-07-06 04:00:00,15354.0
-2012-07-06 05:00:00,14876.0
-2012-07-06 06:00:00,14741.0
-2012-07-06 07:00:00,14903.0
-2012-07-06 08:00:00,15739.0
-2012-07-06 09:00:00,17176.0
-2012-07-06 10:00:00,18657.0
-2012-07-06 11:00:00,20078.0
-2012-07-06 12:00:00,21449.0
-2012-07-06 13:00:00,22430.0
-2012-07-06 14:00:00,23022.0
-2012-07-06 15:00:00,23376.0
-2012-07-06 16:00:00,23533.0
-2012-07-06 17:00:00,23603.0
-2012-07-06 18:00:00,23516.0
-2012-07-06 19:00:00,23230.0
-2012-07-06 20:00:00,22755.0
-2012-07-06 21:00:00,22117.0
-2012-07-06 22:00:00,21547.0
-2012-07-06 23:00:00,21011.0
-2012-07-07 00:00:00,19604.0
-2012-07-05 01:00:00,16796.0
-2012-07-05 02:00:00,15696.0
-2012-07-05 03:00:00,14751.0
-2012-07-05 04:00:00,14033.0
-2012-07-05 05:00:00,13546.0
-2012-07-05 06:00:00,13445.0
-2012-07-05 07:00:00,13637.0
-2012-07-05 08:00:00,14569.0
-2012-07-05 09:00:00,16119.0
-2012-07-05 10:00:00,17657.0
-2012-07-05 11:00:00,19115.0
-2012-07-05 12:00:00,20545.0
-2012-07-05 13:00:00,21708.0
-2012-07-05 14:00:00,22511.0
-2012-07-05 15:00:00,23046.0
-2012-07-05 16:00:00,23134.0
-2012-07-05 17:00:00,22647.0
-2012-07-05 18:00:00,22307.0
-2012-07-05 19:00:00,22213.0
-2012-07-05 20:00:00,22023.0
-2012-07-05 21:00:00,21413.0
-2012-07-05 22:00:00,21077.0
-2012-07-05 23:00:00,20684.0
-2012-07-06 00:00:00,19429.0
-2012-07-04 01:00:00,16751.0
-2012-07-04 02:00:00,15558.0
-2012-07-04 03:00:00,14594.0
-2012-07-04 04:00:00,13835.0
-2012-07-04 05:00:00,13330.0
-2012-07-04 06:00:00,13027.0
-2012-07-04 07:00:00,12770.0
-2012-07-04 08:00:00,12903.0
-2012-07-04 09:00:00,13794.0
-2012-07-04 10:00:00,15120.0
-2012-07-04 11:00:00,16659.0
-2012-07-04 12:00:00,18118.0
-2012-07-04 13:00:00,19219.0
-2012-07-04 14:00:00,19946.0
-2012-07-04 15:00:00,20355.0
-2012-07-04 16:00:00,20644.0
-2012-07-04 17:00:00,20769.0
-2012-07-04 18:00:00,20784.0
-2012-07-04 19:00:00,20646.0
-2012-07-04 20:00:00,20155.0
-2012-07-04 21:00:00,19534.0
-2012-07-04 22:00:00,19072.0
-2012-07-04 23:00:00,18661.0
-2012-07-05 00:00:00,17792.0
-2012-07-03 01:00:00,16861.0
-2012-07-03 02:00:00,15562.0
-2012-07-03 03:00:00,14516.0
-2012-07-03 04:00:00,13655.0
-2012-07-03 05:00:00,13132.0
-2012-07-03 06:00:00,12958.0
-2012-07-03 07:00:00,13123.0
-2012-07-03 08:00:00,13883.0
-2012-07-03 09:00:00,15026.0
-2012-07-03 10:00:00,16302.0
-2012-07-03 11:00:00,17422.0
-2012-07-03 12:00:00,18348.0
-2012-07-03 13:00:00,19266.0
-2012-07-03 14:00:00,20248.0
-2012-07-03 15:00:00,21101.0
-2012-07-03 16:00:00,21579.0
-2012-07-03 17:00:00,21837.0
-2012-07-03 18:00:00,21903.0
-2012-07-03 19:00:00,21721.0
-2012-07-03 20:00:00,21263.0
-2012-07-03 21:00:00,20526.0
-2012-07-03 22:00:00,19874.0
-2012-07-03 23:00:00,19313.0
-2012-07-04 00:00:00,18078.0
-2012-07-02 01:00:00,13413.0
-2012-07-02 02:00:00,12475.0
-2012-07-02 03:00:00,11815.0
-2012-07-02 04:00:00,11329.0
-2012-07-02 05:00:00,11088.0
-2012-07-02 06:00:00,11181.0
-2012-07-02 07:00:00,11558.0
-2012-07-02 08:00:00,12620.0
-2012-07-02 09:00:00,14114.0
-2012-07-02 10:00:00,15629.0
-2012-07-02 11:00:00,16926.0
-2012-07-02 12:00:00,18324.0
-2012-07-02 13:00:00,19402.0
-2012-07-02 14:00:00,20253.0
-2012-07-02 15:00:00,20891.0
-2012-07-02 16:00:00,21280.0
-2012-07-02 17:00:00,21537.0
-2012-07-02 18:00:00,21672.0
-2012-07-02 19:00:00,21567.0
-2012-07-02 20:00:00,21020.0
-2012-07-02 21:00:00,20345.0
-2012-07-02 22:00:00,19957.0
-2012-07-02 23:00:00,19540.0
-2012-07-03 00:00:00,18287.0
-2012-07-01 01:00:00,14048.0
-2012-07-01 02:00:00,12982.0
-2012-07-01 03:00:00,12215.0
-2012-07-01 04:00:00,11528.0
-2012-07-01 05:00:00,11105.0
-2012-07-01 06:00:00,10835.0
-2012-07-01 07:00:00,10509.0
-2012-07-01 08:00:00,10753.0
-2012-07-01 09:00:00,11684.0
-2012-07-01 10:00:00,12928.0
-2012-07-01 11:00:00,14225.0
-2012-07-01 12:00:00,15343.0
-2012-07-01 13:00:00,16127.0
-2012-07-01 14:00:00,15451.0
-2012-07-01 15:00:00,14084.0
-2012-07-01 16:00:00,14424.0
-2012-07-01 17:00:00,15323.0
-2012-07-01 18:00:00,15915.0
-2012-07-01 19:00:00,16247.0
-2012-07-01 20:00:00,16178.0
-2012-07-01 21:00:00,15827.0
-2012-07-01 22:00:00,15507.0
-2012-07-01 23:00:00,15351.0
-2012-07-02 00:00:00,14462.0
-2012-06-30 01:00:00,13421.0
-2012-06-30 02:00:00,12310.0
-2012-06-30 03:00:00,11507.0
-2012-06-30 04:00:00,10951.0
-2012-06-30 05:00:00,10637.0
-2012-06-30 06:00:00,10489.0
-2012-06-30 07:00:00,10395.0
-2012-06-30 08:00:00,10693.0
-2012-06-30 09:00:00,11605.0
-2012-06-30 10:00:00,12863.0
-2012-06-30 11:00:00,13996.0
-2012-06-30 12:00:00,15007.0
-2012-06-30 13:00:00,15619.0
-2012-06-30 14:00:00,16101.0
-2012-06-30 15:00:00,16761.0
-2012-06-30 16:00:00,17332.0
-2012-06-30 17:00:00,17719.0
-2012-06-30 18:00:00,17942.0
-2012-06-30 19:00:00,17970.0
-2012-06-30 20:00:00,17664.0
-2012-06-30 21:00:00,17039.0
-2012-06-30 22:00:00,16548.0
-2012-06-30 23:00:00,16149.0
-2012-07-01 00:00:00,15171.0
-2012-06-29 01:00:00,16987.0
-2012-06-29 02:00:00,15761.0
-2012-06-29 03:00:00,14838.0
-2012-06-29 04:00:00,14029.0
-2012-06-29 05:00:00,13350.0
-2012-06-29 06:00:00,13039.0
-2012-06-29 07:00:00,13055.0
-2012-06-29 08:00:00,13770.0
-2012-06-29 09:00:00,14997.0
-2012-06-29 10:00:00,16081.0
-2012-06-29 11:00:00,16980.0
-2012-06-29 12:00:00,17160.0
-2012-06-29 13:00:00,16526.0
-2012-06-29 14:00:00,15669.0
-2012-06-29 15:00:00,15598.0
-2012-06-29 16:00:00,16249.0
-2012-06-29 17:00:00,16895.0
-2012-06-29 18:00:00,17567.0
-2012-06-29 19:00:00,17901.0
-2012-06-29 20:00:00,17603.0
-2012-06-29 21:00:00,16823.0
-2012-06-29 22:00:00,16334.0
-2012-06-29 23:00:00,15837.0
-2012-06-30 00:00:00,14537.0
-2012-06-28 01:00:00,14449.0
-2012-06-28 02:00:00,13319.0
-2012-06-28 03:00:00,12520.0
-2012-06-28 04:00:00,11952.0
-2012-06-28 05:00:00,11615.0
-2012-06-28 06:00:00,11648.0
-2012-06-28 07:00:00,12052.0
-2012-06-28 08:00:00,13179.0
-2012-06-28 09:00:00,14774.0
-2012-06-28 10:00:00,16520.0
-2012-06-28 11:00:00,18159.0
-2012-06-28 12:00:00,19618.0
-2012-06-28 13:00:00,20637.0
-2012-06-28 14:00:00,21456.0
-2012-06-28 15:00:00,22187.0
-2012-06-28 16:00:00,22508.0
-2012-06-28 17:00:00,22749.0
-2012-06-28 18:00:00,22830.0
-2012-06-28 19:00:00,22363.0
-2012-06-28 20:00:00,21493.0
-2012-06-28 21:00:00,20729.0
-2012-06-28 22:00:00,20358.0
-2012-06-28 23:00:00,19889.0
-2012-06-29 00:00:00,18478.0
-2012-06-27 01:00:00,11590.0
-2012-06-27 02:00:00,10671.0
-2012-06-27 03:00:00,10062.0
-2012-06-27 04:00:00,9614.0
-2012-06-27 05:00:00,9417.0
-2012-06-27 06:00:00,9519.0
-2012-06-27 07:00:00,9849.0
-2012-06-27 08:00:00,10840.0
-2012-06-27 09:00:00,12024.0
-2012-06-27 10:00:00,13044.0
-2012-06-27 11:00:00,13892.0
-2012-06-27 12:00:00,14695.0
-2012-06-27 13:00:00,15299.0
-2012-06-27 14:00:00,16061.0
-2012-06-27 15:00:00,16894.0
-2012-06-27 16:00:00,17555.0
-2012-06-27 17:00:00,18153.0
-2012-06-27 18:00:00,18565.0
-2012-06-27 19:00:00,18790.0
-2012-06-27 20:00:00,18473.0
-2012-06-27 21:00:00,17917.0
-2012-06-27 22:00:00,17442.0
-2012-06-27 23:00:00,17129.0
-2012-06-28 00:00:00,15892.0
-2012-06-26 01:00:00,10452.0
-2012-06-26 02:00:00,9773.0
-2012-06-26 03:00:00,9315.0
-2012-06-26 04:00:00,9017.0
-2012-06-26 05:00:00,8876.0
-2012-06-26 06:00:00,9054.0
-2012-06-26 07:00:00,9348.0
-2012-06-26 08:00:00,10308.0
-2012-06-26 09:00:00,11369.0
-2012-06-26 10:00:00,12209.0
-2012-06-26 11:00:00,12815.0
-2012-06-26 12:00:00,13367.0
-2012-06-26 13:00:00,13775.0
-2012-06-26 14:00:00,14141.0
-2012-06-26 15:00:00,14661.0
-2012-06-26 16:00:00,15018.0
-2012-06-26 17:00:00,15283.0
-2012-06-26 18:00:00,15490.0
-2012-06-26 19:00:00,15401.0
-2012-06-26 20:00:00,14952.0
-2012-06-26 21:00:00,14415.0
-2012-06-26 22:00:00,14067.0
-2012-06-26 23:00:00,13828.0
-2012-06-27 00:00:00,12816.0
-2012-06-25 01:00:00,12228.0
-2012-06-25 02:00:00,11280.0
-2012-06-25 03:00:00,10571.0
-2012-06-25 04:00:00,10139.0
-2012-06-25 05:00:00,9837.0
-2012-06-25 06:00:00,9868.0
-2012-06-25 07:00:00,10072.0
-2012-06-25 08:00:00,11060.0
-2012-06-25 09:00:00,12032.0
-2012-06-25 10:00:00,12795.0
-2012-06-25 11:00:00,13263.0
-2012-06-25 12:00:00,13697.0
-2012-06-25 13:00:00,13893.0
-2012-06-25 14:00:00,14039.0
-2012-06-25 15:00:00,14142.0
-2012-06-25 16:00:00,14164.0
-2012-06-25 17:00:00,14142.0
-2012-06-25 18:00:00,14052.0
-2012-06-25 19:00:00,13778.0
-2012-06-25 20:00:00,13191.0
-2012-06-25 21:00:00,12612.0
-2012-06-25 22:00:00,12333.0
-2012-06-25 23:00:00,12241.0
-2012-06-26 00:00:00,11406.0
-2012-06-24 01:00:00,11654.0
-2012-06-24 02:00:00,10857.0
-2012-06-24 03:00:00,10301.0
-2012-06-24 04:00:00,9773.0
-2012-06-24 05:00:00,9502.0
-2012-06-24 06:00:00,9356.0
-2012-06-24 07:00:00,9154.0
-2012-06-24 08:00:00,9201.0
-2012-06-24 09:00:00,9947.0
-2012-06-24 10:00:00,10712.0
-2012-06-24 11:00:00,11609.0
-2012-06-24 12:00:00,12438.0
-2012-06-24 13:00:00,13371.0
-2012-06-24 14:00:00,14263.0
-2012-06-24 15:00:00,14986.0
-2012-06-24 16:00:00,15716.0
-2012-06-24 17:00:00,16197.0
-2012-06-24 18:00:00,16544.0
-2012-06-24 19:00:00,16395.0
-2012-06-24 20:00:00,15870.0
-2012-06-24 21:00:00,15142.0
-2012-06-24 22:00:00,14783.0
-2012-06-24 23:00:00,14422.0
-2012-06-25 00:00:00,13411.0
-2012-06-23 01:00:00,12037.0
-2012-06-23 02:00:00,11049.0
-2012-06-23 03:00:00,10385.0
-2012-06-23 04:00:00,9886.0
-2012-06-23 05:00:00,9591.0
-2012-06-23 06:00:00,9462.0
-2012-06-23 07:00:00,9347.0
-2012-06-23 08:00:00,9774.0
-2012-06-23 09:00:00,10633.0
-2012-06-23 10:00:00,11594.0
-2012-06-23 11:00:00,12542.0
-2012-06-23 12:00:00,13449.0
-2012-06-23 13:00:00,14168.0
-2012-06-23 14:00:00,14670.0
-2012-06-23 15:00:00,14924.0
-2012-06-23 16:00:00,15044.0
-2012-06-23 17:00:00,14795.0
-2012-06-23 18:00:00,14609.0
-2012-06-23 19:00:00,14271.0
-2012-06-23 20:00:00,13712.0
-2012-06-23 21:00:00,13357.0
-2012-06-23 22:00:00,13318.0
-2012-06-23 23:00:00,13166.0
-2012-06-24 00:00:00,12452.0
-2012-06-22 01:00:00,12617.0
-2012-06-22 02:00:00,11534.0
-2012-06-22 03:00:00,10733.0
-2012-06-22 04:00:00,10219.0
-2012-06-22 05:00:00,9899.0
-2012-06-22 06:00:00,9909.0
-2012-06-22 07:00:00,10175.0
-2012-06-22 08:00:00,11082.0
-2012-06-22 09:00:00,12322.0
-2012-06-22 10:00:00,13305.0
-2012-06-22 11:00:00,14039.0
-2012-06-22 12:00:00,14741.0
-2012-06-22 13:00:00,15190.0
-2012-06-22 14:00:00,15579.0
-2012-06-22 15:00:00,15976.0
-2012-06-22 16:00:00,16221.0
-2012-06-22 17:00:00,16414.0
-2012-06-22 18:00:00,16464.0
-2012-06-22 19:00:00,16233.0
-2012-06-22 20:00:00,15714.0
-2012-06-22 21:00:00,15041.0
-2012-06-22 22:00:00,14506.0
-2012-06-22 23:00:00,14234.0
-2012-06-23 00:00:00,13184.0
-2012-06-21 01:00:00,15398.0
-2012-06-21 02:00:00,14255.0
-2012-06-21 03:00:00,13447.0
-2012-06-21 04:00:00,12854.0
-2012-06-21 05:00:00,12551.0
-2012-06-21 06:00:00,12529.0
-2012-06-21 07:00:00,12769.0
-2012-06-21 08:00:00,13874.0
-2012-06-21 09:00:00,14991.0
-2012-06-21 10:00:00,15771.0
-2012-06-21 11:00:00,16281.0
-2012-06-21 12:00:00,16448.0
-2012-06-21 13:00:00,16284.0
-2012-06-21 14:00:00,16121.0
-2012-06-21 15:00:00,16170.0
-2012-06-21 16:00:00,16046.0
-2012-06-21 17:00:00,16384.0
-2012-06-21 18:00:00,16866.0
-2012-06-21 19:00:00,17030.0
-2012-06-21 20:00:00,16695.0
-2012-06-21 21:00:00,16107.0
-2012-06-21 22:00:00,15535.0
-2012-06-21 23:00:00,15151.0
-2012-06-22 00:00:00,13942.0
-2012-06-20 01:00:00,15974.0
-2012-06-20 02:00:00,14699.0
-2012-06-20 03:00:00,13765.0
-2012-06-20 04:00:00,13078.0
-2012-06-20 05:00:00,12635.0
-2012-06-20 06:00:00,12519.0
-2012-06-20 07:00:00,12778.0
-2012-06-20 08:00:00,13915.0
-2012-06-20 09:00:00,15276.0
-2012-06-20 10:00:00,16460.0
-2012-06-20 11:00:00,17542.0
-2012-06-20 12:00:00,18622.0
-2012-06-20 13:00:00,19469.0
-2012-06-20 14:00:00,20225.0
-2012-06-20 15:00:00,20861.0
-2012-06-20 16:00:00,21170.0
-2012-06-20 17:00:00,21303.0
-2012-06-20 18:00:00,21297.0
-2012-06-20 19:00:00,21027.0
-2012-06-20 20:00:00,20459.0
-2012-06-20 21:00:00,19617.0
-2012-06-20 22:00:00,18889.0
-2012-06-20 23:00:00,18358.0
-2012-06-21 00:00:00,16927.0
-2012-06-19 01:00:00,15494.0
-2012-06-19 02:00:00,14320.0
-2012-06-19 03:00:00,13399.0
-2012-06-19 04:00:00,12693.0
-2012-06-19 05:00:00,12319.0
-2012-06-19 06:00:00,12303.0
-2012-06-19 07:00:00,12591.0
-2012-06-19 08:00:00,13776.0
-2012-06-19 09:00:00,15230.0
-2012-06-19 10:00:00,16599.0
-2012-06-19 11:00:00,17733.0
-2012-06-19 12:00:00,18837.0
-2012-06-19 13:00:00,19704.0
-2012-06-19 14:00:00,20405.0
-2012-06-19 15:00:00,20969.0
-2012-06-19 16:00:00,21273.0
-2012-06-19 17:00:00,21368.0
-2012-06-19 18:00:00,21391.0
-2012-06-19 19:00:00,21165.0
-2012-06-19 20:00:00,20684.0
-2012-06-19 21:00:00,20034.0
-2012-06-19 22:00:00,19424.0
-2012-06-19 23:00:00,18944.0
-2012-06-20 00:00:00,17522.0
-2012-06-18 01:00:00,12279.0
-2012-06-18 02:00:00,11310.0
-2012-06-18 03:00:00,10742.0
-2012-06-18 04:00:00,10355.0
-2012-06-18 05:00:00,10280.0
-2012-06-18 06:00:00,10498.0
-2012-06-18 07:00:00,11101.0
-2012-06-18 08:00:00,12369.0
-2012-06-18 09:00:00,13742.0
-2012-06-18 10:00:00,14933.0
-2012-06-18 11:00:00,16253.0
-2012-06-18 12:00:00,17641.0
-2012-06-18 13:00:00,18686.0
-2012-06-18 14:00:00,19472.0
-2012-06-18 15:00:00,20156.0
-2012-06-18 16:00:00,20495.0
-2012-06-18 17:00:00,20633.0
-2012-06-18 18:00:00,20632.0
-2012-06-18 19:00:00,20458.0
-2012-06-18 20:00:00,19983.0
-2012-06-18 21:00:00,19299.0
-2012-06-18 22:00:00,18830.0
-2012-06-18 23:00:00,18431.0
-2012-06-19 00:00:00,17011.0
-2012-06-17 01:00:00,12564.0
-2012-06-17 02:00:00,11587.0
-2012-06-17 03:00:00,10804.0
-2012-06-17 04:00:00,10293.0
-2012-06-17 05:00:00,9906.0
-2012-06-17 06:00:00,9764.0
-2012-06-17 07:00:00,9563.0
-2012-06-17 08:00:00,9523.0
-2012-06-17 09:00:00,10085.0
-2012-06-17 10:00:00,10999.0
-2012-06-17 11:00:00,12144.0
-2012-06-17 12:00:00,13082.0
-2012-06-17 13:00:00,13809.0
-2012-06-17 14:00:00,14223.0
-2012-06-17 15:00:00,14482.0
-2012-06-17 16:00:00,14791.0
-2012-06-17 17:00:00,15179.0
-2012-06-17 18:00:00,15431.0
-2012-06-17 19:00:00,15521.0
-2012-06-17 20:00:00,15208.0
-2012-06-17 21:00:00,14726.0
-2012-06-17 22:00:00,14407.0
-2012-06-17 23:00:00,14267.0
-2012-06-18 00:00:00,13358.0
-2012-06-16 01:00:00,13163.0
-2012-06-16 02:00:00,12053.0
-2012-06-16 03:00:00,11158.0
-2012-06-16 04:00:00,10600.0
-2012-06-16 05:00:00,10211.0
-2012-06-16 06:00:00,10064.0
-2012-06-16 07:00:00,10059.0
-2012-06-16 08:00:00,10299.0
-2012-06-16 09:00:00,11097.0
-2012-06-16 10:00:00,12158.0
-2012-06-16 11:00:00,13327.0
-2012-06-16 12:00:00,14520.0
-2012-06-16 13:00:00,15395.0
-2012-06-16 14:00:00,16015.0
-2012-06-16 15:00:00,16319.0
-2012-06-16 16:00:00,16725.0
-2012-06-16 17:00:00,17135.0
-2012-06-16 18:00:00,17310.0
-2012-06-16 19:00:00,17229.0
-2012-06-16 20:00:00,16645.0
-2012-06-16 21:00:00,15912.0
-2012-06-16 22:00:00,15488.0
-2012-06-16 23:00:00,14899.0
-2012-06-17 00:00:00,13782.0
-2012-06-15 01:00:00,11436.0
-2012-06-15 02:00:00,10574.0
-2012-06-15 03:00:00,9954.0
-2012-06-15 04:00:00,9489.0
-2012-06-15 05:00:00,9203.0
-2012-06-15 06:00:00,9278.0
-2012-06-15 07:00:00,9563.0
-2012-06-15 08:00:00,10528.0
-2012-06-15 09:00:00,11762.0
-2012-06-15 10:00:00,12782.0
-2012-06-15 11:00:00,13677.0
-2012-06-15 12:00:00,14630.0
-2012-06-15 13:00:00,15389.0
-2012-06-15 14:00:00,16085.0
-2012-06-15 15:00:00,16830.0
-2012-06-15 16:00:00,17442.0
-2012-06-15 17:00:00,17860.0
-2012-06-15 18:00:00,18155.0
-2012-06-15 19:00:00,18054.0
-2012-06-15 20:00:00,17548.0
-2012-06-15 21:00:00,16804.0
-2012-06-15 22:00:00,16295.0
-2012-06-15 23:00:00,15798.0
-2012-06-16 00:00:00,14517.0
-2012-06-14 01:00:00,10049.0
-2012-06-14 02:00:00,9363.0
-2012-06-14 03:00:00,8959.0
-2012-06-14 04:00:00,8676.0
-2012-06-14 05:00:00,8605.0
-2012-06-14 06:00:00,8706.0
-2012-06-14 07:00:00,8989.0
-2012-06-14 08:00:00,9919.0
-2012-06-14 09:00:00,10956.0
-2012-06-14 10:00:00,11712.0
-2012-06-14 11:00:00,12279.0
-2012-06-14 12:00:00,12877.0
-2012-06-14 13:00:00,13355.0
-2012-06-14 14:00:00,13772.0
-2012-06-14 15:00:00,14238.0
-2012-06-14 16:00:00,14601.0
-2012-06-14 17:00:00,14835.0
-2012-06-14 18:00:00,14996.0
-2012-06-14 19:00:00,14899.0
-2012-06-14 20:00:00,14415.0
-2012-06-14 21:00:00,13954.0
-2012-06-14 22:00:00,13809.0
-2012-06-14 23:00:00,13594.0
-2012-06-15 00:00:00,12567.0
-2012-06-13 01:00:00,10395.0
-2012-06-13 02:00:00,9641.0
-2012-06-13 03:00:00,9132.0
-2012-06-13 04:00:00,8804.0
-2012-06-13 05:00:00,8667.0
-2012-06-13 06:00:00,8767.0
-2012-06-13 07:00:00,9062.0
-2012-06-13 08:00:00,10033.0
-2012-06-13 09:00:00,11079.0
-2012-06-13 10:00:00,11715.0
-2012-06-13 11:00:00,12188.0
-2012-06-13 12:00:00,12562.0
-2012-06-13 13:00:00,12775.0
-2012-06-13 14:00:00,12897.0
-2012-06-13 15:00:00,13023.0
-2012-06-13 16:00:00,12861.0
-2012-06-13 17:00:00,12757.0
-2012-06-13 18:00:00,12609.0
-2012-06-13 19:00:00,12291.0
-2012-06-13 20:00:00,11878.0
-2012-06-13 21:00:00,11621.0
-2012-06-13 22:00:00,11717.0
-2012-06-13 23:00:00,11720.0
-2012-06-14 00:00:00,10942.0
-2012-06-12 01:00:00,13461.0
-2012-06-12 02:00:00,12210.0
-2012-06-12 03:00:00,11294.0
-2012-06-12 04:00:00,10586.0
-2012-06-12 05:00:00,10167.0
-2012-06-12 06:00:00,10041.0
-2012-06-12 07:00:00,10171.0
-2012-06-12 08:00:00,11096.0
-2012-06-12 09:00:00,12102.0
-2012-06-12 10:00:00,12810.0
-2012-06-12 11:00:00,13268.0
-2012-06-12 12:00:00,13662.0
-2012-06-12 13:00:00,13829.0
-2012-06-12 14:00:00,14011.0
-2012-06-12 15:00:00,14289.0
-2012-06-12 16:00:00,14432.0
-2012-06-12 17:00:00,14519.0
-2012-06-12 18:00:00,14460.0
-2012-06-12 19:00:00,14149.0
-2012-06-12 20:00:00,13528.0
-2012-06-12 21:00:00,12873.0
-2012-06-12 22:00:00,12576.0
-2012-06-12 23:00:00,12381.0
-2012-06-13 00:00:00,11405.0
-2012-06-11 01:00:00,13223.0
-2012-06-11 02:00:00,12273.0
-2012-06-11 03:00:00,11588.0
-2012-06-11 04:00:00,11034.0
-2012-06-11 05:00:00,10757.0
-2012-06-11 06:00:00,10779.0
-2012-06-11 07:00:00,11136.0
-2012-06-11 08:00:00,12321.0
-2012-06-11 09:00:00,13566.0
-2012-06-11 10:00:00,14535.0
-2012-06-11 11:00:00,15665.0
-2012-06-11 12:00:00,16664.0
-2012-06-11 13:00:00,17239.0
-2012-06-11 14:00:00,17722.0
-2012-06-11 15:00:00,18282.0
-2012-06-11 16:00:00,18565.0
-2012-06-11 17:00:00,18762.0
-2012-06-11 18:00:00,18738.0
-2012-06-11 19:00:00,18313.0
-2012-06-11 20:00:00,17670.0
-2012-06-11 21:00:00,16987.0
-2012-06-11 22:00:00,16613.0
-2012-06-11 23:00:00,16220.0
-2012-06-12 00:00:00,14907.0
-2012-06-10 01:00:00,12206.0
-2012-06-10 02:00:00,11299.0
-2012-06-10 03:00:00,10570.0
-2012-06-10 04:00:00,10041.0
-2012-06-10 05:00:00,9635.0
-2012-06-10 06:00:00,9475.0
-2012-06-10 07:00:00,9107.0
-2012-06-10 08:00:00,9336.0
-2012-06-10 09:00:00,10104.0
-2012-06-10 10:00:00,11298.0
-2012-06-10 11:00:00,12558.0
-2012-06-10 12:00:00,13714.0
-2012-06-10 13:00:00,14616.0
-2012-06-10 14:00:00,15187.0
-2012-06-10 15:00:00,15615.0
-2012-06-10 16:00:00,15980.0
-2012-06-10 17:00:00,16296.0
-2012-06-10 18:00:00,16461.0
-2012-06-10 19:00:00,16494.0
-2012-06-10 20:00:00,16079.0
-2012-06-10 21:00:00,15504.0
-2012-06-10 22:00:00,15304.0
-2012-06-10 23:00:00,15194.0
-2012-06-11 00:00:00,14263.0
-2012-06-09 01:00:00,12061.0
-2012-06-09 02:00:00,11096.0
-2012-06-09 03:00:00,10302.0
-2012-06-09 04:00:00,9808.0
-2012-06-09 05:00:00,9489.0
-2012-06-09 06:00:00,9245.0
-2012-06-09 07:00:00,9107.0
-2012-06-09 08:00:00,9567.0
-2012-06-09 09:00:00,10470.0
-2012-06-09 10:00:00,11558.0
-2012-06-09 11:00:00,12648.0
-2012-06-09 12:00:00,13548.0
-2012-06-09 13:00:00,14125.0
-2012-06-09 14:00:00,14693.0
-2012-06-09 15:00:00,15054.0
-2012-06-09 16:00:00,15484.0
-2012-06-09 17:00:00,15844.0
-2012-06-09 18:00:00,16076.0
-2012-06-09 19:00:00,15993.0
-2012-06-09 20:00:00,15696.0
-2012-06-09 21:00:00,15091.0
-2012-06-09 22:00:00,14606.0
-2012-06-09 23:00:00,14253.0
-2012-06-10 00:00:00,13297.0
-2012-06-08 01:00:00,10424.0
-2012-06-08 02:00:00,9666.0
-2012-06-08 03:00:00,9161.0
-2012-06-08 04:00:00,8810.0
-2012-06-08 05:00:00,8633.0
-2012-06-08 06:00:00,8720.0
-2012-06-08 07:00:00,9035.0
-2012-06-08 08:00:00,9975.0
-2012-06-08 09:00:00,11116.0
-2012-06-08 10:00:00,12064.0
-2012-06-08 11:00:00,12799.0
-2012-06-08 12:00:00,13521.0
-2012-06-08 13:00:00,13992.0
-2012-06-08 14:00:00,14449.0
-2012-06-08 15:00:00,14958.0
-2012-06-08 16:00:00,15309.0
-2012-06-08 17:00:00,15638.0
-2012-06-08 18:00:00,15865.0
-2012-06-08 19:00:00,15815.0
-2012-06-08 20:00:00,15424.0
-2012-06-08 21:00:00,14873.0
-2012-06-08 22:00:00,14532.0
-2012-06-08 23:00:00,14277.0
-2012-06-09 00:00:00,13254.0
-2012-06-07 01:00:00,9898.0
-2012-06-07 02:00:00,9218.0
-2012-06-07 03:00:00,8762.0
-2012-06-07 04:00:00,8487.0
-2012-06-07 05:00:00,8352.0
-2012-06-07 06:00:00,8453.0
-2012-06-07 07:00:00,8762.0
-2012-06-07 08:00:00,9711.0
-2012-06-07 09:00:00,10756.0
-2012-06-07 10:00:00,11525.0
-2012-06-07 11:00:00,12080.0
-2012-06-07 12:00:00,12600.0
-2012-06-07 13:00:00,12883.0
-2012-06-07 14:00:00,13152.0
-2012-06-07 15:00:00,13443.0
-2012-06-07 16:00:00,13552.0
-2012-06-07 17:00:00,13639.0
-2012-06-07 18:00:00,13679.0
-2012-06-07 19:00:00,13563.0
-2012-06-07 20:00:00,13132.0
-2012-06-07 21:00:00,12715.0
-2012-06-07 22:00:00,12631.0
-2012-06-07 23:00:00,12459.0
-2012-06-08 00:00:00,11462.0
-2012-06-06 01:00:00,9682.0
-2012-06-06 02:00:00,9027.0
-2012-06-06 03:00:00,8615.0
-2012-06-06 04:00:00,8369.0
-2012-06-06 05:00:00,8254.0
-2012-06-06 06:00:00,8393.0
-2012-06-06 07:00:00,8735.0
-2012-06-06 08:00:00,9687.0
-2012-06-06 09:00:00,10707.0
-2012-06-06 10:00:00,11443.0
-2012-06-06 11:00:00,11961.0
-2012-06-06 12:00:00,12306.0
-2012-06-06 13:00:00,12539.0
-2012-06-06 14:00:00,12664.0
-2012-06-06 15:00:00,12827.0
-2012-06-06 16:00:00,12882.0
-2012-06-06 17:00:00,12880.0
-2012-06-06 18:00:00,12853.0
-2012-06-06 19:00:00,12666.0
-2012-06-06 20:00:00,12233.0
-2012-06-06 21:00:00,11892.0
-2012-06-06 22:00:00,11857.0
-2012-06-06 23:00:00,11725.0
-2012-06-07 00:00:00,10858.0
-2012-06-05 01:00:00,9863.0
-2012-06-05 02:00:00,9188.0
-2012-06-05 03:00:00,8767.0
-2012-06-05 04:00:00,8477.0
-2012-06-05 05:00:00,8346.0
-2012-06-05 06:00:00,8498.0
-2012-06-05 07:00:00,8847.0
-2012-06-05 08:00:00,9795.0
-2012-06-05 09:00:00,10846.0
-2012-06-05 10:00:00,11482.0
-2012-06-05 11:00:00,11885.0
-2012-06-05 12:00:00,12252.0
-2012-06-05 13:00:00,12388.0
-2012-06-05 14:00:00,12473.0
-2012-06-05 15:00:00,12545.0
-2012-06-05 16:00:00,12517.0
-2012-06-05 17:00:00,12484.0
-2012-06-05 18:00:00,12399.0
-2012-06-05 19:00:00,12182.0
-2012-06-05 20:00:00,11769.0
-2012-06-05 21:00:00,11426.0
-2012-06-05 22:00:00,11478.0
-2012-06-05 23:00:00,11400.0
-2012-06-06 00:00:00,10586.0
-2012-06-04 01:00:00,9667.0
-2012-06-04 02:00:00,9094.0
-2012-06-04 03:00:00,8724.0
-2012-06-04 04:00:00,8469.0
-2012-06-04 05:00:00,8388.0
-2012-06-04 06:00:00,8566.0
-2012-06-04 07:00:00,9083.0
-2012-06-04 08:00:00,9978.0
-2012-06-04 09:00:00,10958.0
-2012-06-04 10:00:00,11538.0
-2012-06-04 11:00:00,12021.0
-2012-06-04 12:00:00,12464.0
-2012-06-04 13:00:00,12744.0
-2012-06-04 14:00:00,12923.0
-2012-06-04 15:00:00,13135.0
-2012-06-04 16:00:00,13186.0
-2012-06-04 17:00:00,13192.0
-2012-06-04 18:00:00,13104.0
-2012-06-04 19:00:00,12816.0
-2012-06-04 20:00:00,12313.0
-2012-06-04 21:00:00,11836.0
-2012-06-04 22:00:00,11836.0
-2012-06-04 23:00:00,11697.0
-2012-06-05 00:00:00,10838.0
-2012-06-03 01:00:00,9089.0
-2012-06-03 02:00:00,8511.0
-2012-06-03 03:00:00,8135.0
-2012-06-03 04:00:00,7930.0
-2012-06-03 05:00:00,7731.0
-2012-06-03 06:00:00,7751.0
-2012-06-03 07:00:00,7521.0
-2012-06-03 08:00:00,7595.0
-2012-06-03 09:00:00,7989.0
-2012-06-03 10:00:00,8602.0
-2012-06-03 11:00:00,9161.0
-2012-06-03 12:00:00,9617.0
-2012-06-03 13:00:00,9966.0
-2012-06-03 14:00:00,10185.0
-2012-06-03 15:00:00,10368.0
-2012-06-03 16:00:00,10535.0
-2012-06-03 17:00:00,10717.0
-2012-06-03 18:00:00,10727.0
-2012-06-03 19:00:00,10686.0
-2012-06-03 20:00:00,10604.0
-2012-06-03 21:00:00,10599.0
-2012-06-03 22:00:00,10964.0
-2012-06-03 23:00:00,11017.0
-2012-06-04 00:00:00,10395.0
-2012-06-02 01:00:00,9239.0
-2012-06-02 02:00:00,8639.0
-2012-06-02 03:00:00,8310.0
-2012-06-02 04:00:00,8035.0
-2012-06-02 05:00:00,7948.0
-2012-06-02 06:00:00,7963.0
-2012-06-02 07:00:00,7930.0
-2012-06-02 08:00:00,8185.0
-2012-06-02 09:00:00,8651.0
-2012-06-02 10:00:00,9236.0
-2012-06-02 11:00:00,9655.0
-2012-06-02 12:00:00,10046.0
-2012-06-02 13:00:00,10157.0
-2012-06-02 14:00:00,10195.0
-2012-06-02 15:00:00,10093.0
-2012-06-02 16:00:00,10061.0
-2012-06-02 17:00:00,10032.0
-2012-06-02 18:00:00,10058.0
-2012-06-02 19:00:00,10011.0
-2012-06-02 20:00:00,9879.0
-2012-06-02 21:00:00,9783.0
-2012-06-02 22:00:00,10113.0
-2012-06-02 23:00:00,10218.0
-2012-06-03 00:00:00,9675.0
-2012-06-01 01:00:00,9341.0
-2012-06-01 02:00:00,8799.0
-2012-06-01 03:00:00,8451.0
-2012-06-01 04:00:00,8240.0
-2012-06-01 05:00:00,8139.0
-2012-06-01 06:00:00,8313.0
-2012-06-01 07:00:00,8788.0
-2012-06-01 08:00:00,9645.0
-2012-06-01 09:00:00,10415.0
-2012-06-01 10:00:00,10842.0
-2012-06-01 11:00:00,11055.0
-2012-06-01 12:00:00,11217.0
-2012-06-01 13:00:00,11267.0
-2012-06-01 14:00:00,11255.0
-2012-06-01 15:00:00,11275.0
-2012-06-01 16:00:00,11187.0
-2012-06-01 17:00:00,11052.0
-2012-06-01 18:00:00,10903.0
-2012-06-01 19:00:00,10723.0
-2012-06-01 20:00:00,10464.0
-2012-06-01 21:00:00,10325.0
-2012-06-01 22:00:00,10583.0
-2012-06-01 23:00:00,10621.0
-2012-06-02 00:00:00,9993.0
-2012-05-31 01:00:00,9385.0
-2012-05-31 02:00:00,8805.0
-2012-05-31 03:00:00,8455.0
-2012-05-31 04:00:00,8236.0
-2012-05-31 05:00:00,8113.0
-2012-05-31 06:00:00,8282.0
-2012-05-31 07:00:00,8750.0
-2012-05-31 08:00:00,9580.0
-2012-05-31 09:00:00,10466.0
-2012-05-31 10:00:00,10987.0
-2012-05-31 11:00:00,11258.0
-2012-05-31 12:00:00,11461.0
-2012-05-31 13:00:00,11547.0
-2012-05-31 14:00:00,11600.0
-2012-05-31 15:00:00,11583.0
-2012-05-31 16:00:00,11492.0
-2012-05-31 17:00:00,11336.0
-2012-05-31 18:00:00,11216.0
-2012-05-31 19:00:00,11086.0
-2012-05-31 20:00:00,10982.0
-2012-05-31 21:00:00,11101.0
-2012-05-31 22:00:00,11248.0
-2012-05-31 23:00:00,10900.0
-2012-06-01 00:00:00,10130.0
-2012-05-30 01:00:00,10738.0
-2012-05-30 02:00:00,9908.0
-2012-05-30 03:00:00,9352.0
-2012-05-30 04:00:00,8991.0
-2012-05-30 05:00:00,8794.0
-2012-05-30 06:00:00,8880.0
-2012-05-30 07:00:00,9188.0
-2012-05-30 08:00:00,10129.0
-2012-05-30 09:00:00,11102.0
-2012-05-30 10:00:00,11761.0
-2012-05-30 11:00:00,12110.0
-2012-05-30 12:00:00,12330.0
-2012-05-30 13:00:00,12369.0
-2012-05-30 14:00:00,12411.0
-2012-05-30 15:00:00,12427.0
-2012-05-30 16:00:00,12361.0
-2012-05-30 17:00:00,12177.0
-2012-05-30 18:00:00,11967.0
-2012-05-30 19:00:00,11718.0
-2012-05-30 20:00:00,11290.0
-2012-05-30 21:00:00,10962.0
-2012-05-30 22:00:00,11188.0
-2012-05-30 23:00:00,11026.0
-2012-05-31 00:00:00,10223.0
-2012-05-29 01:00:00,12803.0
-2012-05-29 02:00:00,11809.0
-2012-05-29 03:00:00,11115.0
-2012-05-29 04:00:00,10567.0
-2012-05-29 05:00:00,10171.0
-2012-05-29 06:00:00,10084.0
-2012-05-29 07:00:00,10296.0
-2012-05-29 08:00:00,11254.0
-2012-05-29 09:00:00,12362.0
-2012-05-29 10:00:00,13204.0
-2012-05-29 11:00:00,13925.0
-2012-05-29 12:00:00,14541.0
-2012-05-29 13:00:00,14951.0
-2012-05-29 14:00:00,15245.0
-2012-05-29 15:00:00,15703.0
-2012-05-29 16:00:00,15949.0
-2012-05-29 17:00:00,16074.0
-2012-05-29 18:00:00,16047.0
-2012-05-29 19:00:00,15677.0
-2012-05-29 20:00:00,14966.0
-2012-05-29 21:00:00,14075.0
-2012-05-29 22:00:00,13639.0
-2012-05-29 23:00:00,13112.0
-2012-05-30 00:00:00,11902.0
-2012-05-28 01:00:00,13087.0
-2012-05-28 02:00:00,12174.0
-2012-05-28 03:00:00,11411.0
-2012-05-28 04:00:00,10871.0
-2012-05-28 05:00:00,10465.0
-2012-05-28 06:00:00,10285.0
-2012-05-28 07:00:00,10133.0
-2012-05-28 08:00:00,10354.0
-2012-05-28 09:00:00,11200.0
-2012-05-28 10:00:00,12264.0
-2012-05-28 11:00:00,13464.0
-2012-05-28 12:00:00,14598.0
-2012-05-28 13:00:00,15291.0
-2012-05-28 14:00:00,15796.0
-2012-05-28 15:00:00,16069.0
-2012-05-28 16:00:00,16200.0
-2012-05-28 17:00:00,16494.0
-2012-05-28 18:00:00,16641.0
-2012-05-28 19:00:00,16518.0
-2012-05-28 20:00:00,16240.0
-2012-05-28 21:00:00,15828.0
-2012-05-28 22:00:00,15829.0
-2012-05-28 23:00:00,15418.0
-2012-05-29 00:00:00,14133.0
-2012-05-27 01:00:00,9942.0
-2012-05-27 02:00:00,9404.0
-2012-05-27 03:00:00,8914.0
-2012-05-27 04:00:00,8654.0
-2012-05-27 05:00:00,8579.0
-2012-05-27 06:00:00,8506.0
-2012-05-27 07:00:00,8419.0
-2012-05-27 08:00:00,8489.0
-2012-05-27 09:00:00,9246.0
-2012-05-27 10:00:00,10397.0
-2012-05-27 11:00:00,11669.0
-2012-05-27 12:00:00,12872.0
-2012-05-27 13:00:00,13944.0
-2012-05-27 14:00:00,14807.0
-2012-05-27 15:00:00,15516.0
-2012-05-27 16:00:00,15995.0
-2012-05-27 17:00:00,16343.0
-2012-05-27 18:00:00,16557.0
-2012-05-27 19:00:00,16547.0
-2012-05-27 20:00:00,16230.0
-2012-05-27 21:00:00,15665.0
-2012-05-27 22:00:00,15339.0
-2012-05-27 23:00:00,15014.0
-2012-05-28 00:00:00,14154.0
-2012-05-26 01:00:00,10261.0
-2012-05-26 02:00:00,9500.0
-2012-05-26 03:00:00,9070.0
-2012-05-26 04:00:00,8761.0
-2012-05-26 05:00:00,8597.0
-2012-05-26 06:00:00,8539.0
-2012-05-26 07:00:00,8599.0
-2012-05-26 08:00:00,8795.0
-2012-05-26 09:00:00,9143.0
-2012-05-26 10:00:00,9606.0
-2012-05-26 11:00:00,10149.0
-2012-05-26 12:00:00,10550.0
-2012-05-26 13:00:00,10869.0
-2012-05-26 14:00:00,11239.0
-2012-05-26 15:00:00,11603.0
-2012-05-26 16:00:00,12004.0
-2012-05-26 17:00:00,12431.0
-2012-05-26 18:00:00,12551.0
-2012-05-26 19:00:00,12176.0
-2012-05-26 20:00:00,11564.0
-2012-05-26 21:00:00,11112.0
-2012-05-26 22:00:00,11188.0
-2012-05-26 23:00:00,11089.0
-2012-05-27 00:00:00,10557.0
-2012-05-25 01:00:00,12937.0
-2012-05-25 02:00:00,12008.0
-2012-05-25 03:00:00,11333.0
-2012-05-25 04:00:00,10793.0
-2012-05-25 05:00:00,10360.0
-2012-05-25 06:00:00,10200.0
-2012-05-25 07:00:00,10381.0
-2012-05-25 08:00:00,11263.0
-2012-05-25 09:00:00,12318.0
-2012-05-25 10:00:00,13046.0
-2012-05-25 11:00:00,13596.0
-2012-05-25 12:00:00,14049.0
-2012-05-25 13:00:00,14321.0
-2012-05-25 14:00:00,14482.0
-2012-05-25 15:00:00,14659.0
-2012-05-25 16:00:00,14585.0
-2012-05-25 17:00:00,14445.0
-2012-05-25 18:00:00,14215.0
-2012-05-25 19:00:00,13697.0
-2012-05-25 20:00:00,12907.0
-2012-05-25 21:00:00,12351.0
-2012-05-25 22:00:00,12384.0
-2012-05-25 23:00:00,12017.0
-2012-05-26 00:00:00,11191.0
-2012-05-24 01:00:00,10316.0
-2012-05-24 02:00:00,9644.0
-2012-05-24 03:00:00,9199.0
-2012-05-24 04:00:00,8877.0
-2012-05-24 05:00:00,8751.0
-2012-05-24 06:00:00,8866.0
-2012-05-24 07:00:00,9278.0
-2012-05-24 08:00:00,10401.0
-2012-05-24 09:00:00,11563.0
-2012-05-24 10:00:00,12479.0
-2012-05-24 11:00:00,13128.0
-2012-05-24 12:00:00,13751.0
-2012-05-24 13:00:00,14211.0
-2012-05-24 14:00:00,14654.0
-2012-05-24 15:00:00,15184.0
-2012-05-24 16:00:00,15584.0
-2012-05-24 17:00:00,15984.0
-2012-05-24 18:00:00,16261.0
-2012-05-24 19:00:00,16186.0
-2012-05-24 20:00:00,15780.0
-2012-05-24 21:00:00,15409.0
-2012-05-24 22:00:00,15517.0
-2012-05-24 23:00:00,15212.0
-2012-05-25 00:00:00,14130.0
-2012-05-23 01:00:00,9457.0
-2012-05-23 02:00:00,8856.0
-2012-05-23 03:00:00,8449.0
-2012-05-23 04:00:00,8235.0
-2012-05-23 05:00:00,8166.0
-2012-05-23 06:00:00,8308.0
-2012-05-23 07:00:00,8678.0
-2012-05-23 08:00:00,9593.0
-2012-05-23 09:00:00,10551.0
-2012-05-23 10:00:00,11164.0
-2012-05-23 11:00:00,11655.0
-2012-05-23 12:00:00,12032.0
-2012-05-23 13:00:00,12302.0
-2012-05-23 14:00:00,12512.0
-2012-05-23 15:00:00,12819.0
-2012-05-23 16:00:00,12949.0
-2012-05-23 17:00:00,13091.0
-2012-05-23 18:00:00,13209.0
-2012-05-23 19:00:00,13055.0
-2012-05-23 20:00:00,12699.0
-2012-05-23 21:00:00,12353.0
-2012-05-23 22:00:00,12477.0
-2012-05-23 23:00:00,12234.0
-2012-05-24 00:00:00,11298.0
-2012-05-22 01:00:00,9363.0
-2012-05-22 02:00:00,8798.0
-2012-05-22 03:00:00,8443.0
-2012-05-22 04:00:00,8211.0
-2012-05-22 05:00:00,8126.0
-2012-05-22 06:00:00,8283.0
-2012-05-22 07:00:00,8674.0
-2012-05-22 08:00:00,9622.0
-2012-05-22 09:00:00,10571.0
-2012-05-22 10:00:00,11170.0
-2012-05-22 11:00:00,11545.0
-2012-05-22 12:00:00,11811.0
-2012-05-22 13:00:00,11958.0
-2012-05-22 14:00:00,12069.0
-2012-05-22 15:00:00,12164.0
-2012-05-22 16:00:00,12167.0
-2012-05-22 17:00:00,12161.0
-2012-05-22 18:00:00,12094.0
-2012-05-22 19:00:00,11944.0
-2012-05-22 20:00:00,11580.0
-2012-05-22 21:00:00,11308.0
-2012-05-22 22:00:00,11556.0
-2012-05-22 23:00:00,11257.0
-2012-05-23 00:00:00,10393.0
-2012-05-21 01:00:00,10758.0
-2012-05-21 02:00:00,9960.0
-2012-05-21 03:00:00,9413.0
-2012-05-21 04:00:00,9051.0
-2012-05-21 05:00:00,8850.0
-2012-05-21 06:00:00,8938.0
-2012-05-21 07:00:00,9312.0
-2012-05-21 08:00:00,10153.0
-2012-05-21 09:00:00,10895.0
-2012-05-21 10:00:00,11377.0
-2012-05-21 11:00:00,11596.0
-2012-05-21 12:00:00,11809.0
-2012-05-21 13:00:00,11846.0
-2012-05-21 14:00:00,11892.0
-2012-05-21 15:00:00,12008.0
-2012-05-21 16:00:00,11948.0
-2012-05-21 17:00:00,11893.0
-2012-05-21 18:00:00,11834.0
-2012-05-21 19:00:00,11650.0
-2012-05-21 20:00:00,11338.0
-2012-05-21 21:00:00,11102.0
-2012-05-21 22:00:00,11366.0
-2012-05-21 23:00:00,11106.0
-2012-05-22 00:00:00,10237.0
-2012-05-20 01:00:00,11200.0
-2012-05-20 02:00:00,10430.0
-2012-05-20 03:00:00,9895.0
-2012-05-20 04:00:00,9409.0
-2012-05-20 05:00:00,9101.0
-2012-05-20 06:00:00,8891.0
-2012-05-20 07:00:00,8683.0
-2012-05-20 08:00:00,8814.0
-2012-05-20 09:00:00,9470.0
-2012-05-20 10:00:00,10534.0
-2012-05-20 11:00:00,11600.0
-2012-05-20 12:00:00,12694.0
-2012-05-20 13:00:00,13484.0
-2012-05-20 14:00:00,14032.0
-2012-05-20 15:00:00,14431.0
-2012-05-20 16:00:00,14778.0
-2012-05-20 17:00:00,14981.0
-2012-05-20 18:00:00,14975.0
-2012-05-20 19:00:00,14384.0
-2012-05-20 20:00:00,13756.0
-2012-05-20 21:00:00,13334.0
-2012-05-20 22:00:00,13418.0
-2012-05-20 23:00:00,13003.0
-2012-05-21 00:00:00,11951.0
-2012-05-19 01:00:00,10155.0
-2012-05-19 02:00:00,9469.0
-2012-05-19 03:00:00,8955.0
-2012-05-19 04:00:00,8601.0
-2012-05-19 05:00:00,8424.0
-2012-05-19 06:00:00,8352.0
-2012-05-19 07:00:00,8376.0
-2012-05-19 08:00:00,8625.0
-2012-05-19 09:00:00,9329.0
-2012-05-19 10:00:00,10206.0
-2012-05-19 11:00:00,11062.0
-2012-05-19 12:00:00,11874.0
-2012-05-19 13:00:00,12478.0
-2012-05-19 14:00:00,12922.0
-2012-05-19 15:00:00,13195.0
-2012-05-19 16:00:00,13469.0
-2012-05-19 17:00:00,13696.0
-2012-05-19 18:00:00,13914.0
-2012-05-19 19:00:00,13917.0
-2012-05-19 20:00:00,13630.0
-2012-05-19 21:00:00,13242.0
-2012-05-19 22:00:00,13185.0
-2012-05-19 23:00:00,12879.0
-2012-05-20 00:00:00,12069.0
-2012-05-18 01:00:00,9444.0
-2012-05-18 02:00:00,8807.0
-2012-05-18 03:00:00,8449.0
-2012-05-18 04:00:00,8206.0
-2012-05-18 05:00:00,8113.0
-2012-05-18 06:00:00,8241.0
-2012-05-18 07:00:00,8612.0
-2012-05-18 08:00:00,9499.0
-2012-05-18 09:00:00,10499.0
-2012-05-18 10:00:00,11127.0
-2012-05-18 11:00:00,11572.0
-2012-05-18 12:00:00,11998.0
-2012-05-18 13:00:00,12222.0
-2012-05-18 14:00:00,12403.0
-2012-05-18 15:00:00,12641.0
-2012-05-18 16:00:00,12774.0
-2012-05-18 17:00:00,12867.0
-2012-05-18 18:00:00,12900.0
-2012-05-18 19:00:00,12780.0
-2012-05-18 20:00:00,12405.0
-2012-05-18 21:00:00,12069.0
-2012-05-18 22:00:00,12168.0
-2012-05-18 23:00:00,11912.0
-2012-05-19 00:00:00,11076.0
-2012-05-17 01:00:00,9211.0
-2012-05-17 02:00:00,8712.0
-2012-05-17 03:00:00,8353.0
-2012-05-17 04:00:00,8136.0
-2012-05-17 05:00:00,8068.0
-2012-05-17 06:00:00,8222.0
-2012-05-17 07:00:00,8655.0
-2012-05-17 08:00:00,9531.0
-2012-05-17 09:00:00,10403.0
-2012-05-17 10:00:00,10962.0
-2012-05-17 11:00:00,11335.0
-2012-05-17 12:00:00,11611.0
-2012-05-17 13:00:00,11758.0
-2012-05-17 14:00:00,11858.0
-2012-05-17 15:00:00,11996.0
-2012-05-17 16:00:00,12020.0
-2012-05-17 17:00:00,11992.0
-2012-05-17 18:00:00,11868.0
-2012-05-17 19:00:00,11606.0
-2012-05-17 20:00:00,11255.0
-2012-05-17 21:00:00,11111.0
-2012-05-17 22:00:00,11474.0
-2012-05-17 23:00:00,11171.0
-2012-05-18 00:00:00,10303.0
-2012-05-16 01:00:00,10315.0
-2012-05-16 02:00:00,9384.0
-2012-05-16 03:00:00,8812.0
-2012-05-16 04:00:00,8421.0
-2012-05-16 05:00:00,8263.0
-2012-05-16 06:00:00,8337.0
-2012-05-16 07:00:00,8753.0
-2012-05-16 08:00:00,9553.0
-2012-05-16 09:00:00,10439.0
-2012-05-16 10:00:00,10898.0
-2012-05-16 11:00:00,11224.0
-2012-05-16 12:00:00,11427.0
-2012-05-16 13:00:00,11525.0
-2012-05-16 14:00:00,11578.0
-2012-05-16 15:00:00,11643.0
-2012-05-16 16:00:00,11592.0
-2012-05-16 17:00:00,11527.0
-2012-05-16 18:00:00,11424.0
-2012-05-16 19:00:00,11230.0
-2012-05-16 20:00:00,10885.0
-2012-05-16 21:00:00,10760.0
-2012-05-16 22:00:00,11136.0
-2012-05-16 23:00:00,10883.0
-2012-05-17 00:00:00,10069.0
-2012-05-15 01:00:00,9568.0
-2012-05-15 02:00:00,8957.0
-2012-05-15 03:00:00,8580.0
-2012-05-15 04:00:00,8297.0
-2012-05-15 05:00:00,8195.0
-2012-05-15 06:00:00,8349.0
-2012-05-15 07:00:00,8775.0
-2012-05-15 08:00:00,9754.0
-2012-05-15 09:00:00,10758.0
-2012-05-15 10:00:00,11418.0
-2012-05-15 11:00:00,11929.0
-2012-05-15 12:00:00,12396.0
-2012-05-15 13:00:00,12667.0
-2012-05-15 14:00:00,12866.0
-2012-05-15 15:00:00,13130.0
-2012-05-15 16:00:00,13288.0
-2012-05-15 17:00:00,13442.0
-2012-05-15 18:00:00,13468.0
-2012-05-15 19:00:00,13378.0
-2012-05-15 20:00:00,12996.0
-2012-05-15 21:00:00,12935.0
-2012-05-15 22:00:00,12958.0
-2012-05-15 23:00:00,12342.0
-2012-05-16 00:00:00,11296.0
-2012-05-14 01:00:00,8333.0
-2012-05-14 02:00:00,7953.0
-2012-05-14 03:00:00,7678.0
-2012-05-14 04:00:00,7586.0
-2012-05-14 05:00:00,7550.0
-2012-05-14 06:00:00,7824.0
-2012-05-14 07:00:00,8367.0
-2012-05-14 08:00:00,9330.0
-2012-05-14 09:00:00,10219.0
-2012-05-14 10:00:00,10904.0
-2012-05-14 11:00:00,11326.0
-2012-05-14 12:00:00,11690.0
-2012-05-14 13:00:00,11917.0
-2012-05-14 14:00:00,12039.0
-2012-05-14 15:00:00,12233.0
-2012-05-14 16:00:00,12256.0
-2012-05-14 17:00:00,12234.0
-2012-05-14 18:00:00,12246.0
-2012-05-14 19:00:00,12103.0
-2012-05-14 20:00:00,11769.0
-2012-05-14 21:00:00,11559.0
-2012-05-14 22:00:00,11878.0
-2012-05-14 23:00:00,11464.0
-2012-05-15 00:00:00,10506.0
-2012-05-13 01:00:00,8556.0
-2012-05-13 02:00:00,8100.0
-2012-05-13 03:00:00,7702.0
-2012-05-13 04:00:00,7542.0
-2012-05-13 05:00:00,7445.0
-2012-05-13 06:00:00,7432.0
-2012-05-13 07:00:00,7411.0
-2012-05-13 08:00:00,7382.0
-2012-05-13 09:00:00,7707.0
-2012-05-13 10:00:00,8147.0
-2012-05-13 11:00:00,8503.0
-2012-05-13 12:00:00,8718.0
-2012-05-13 13:00:00,8851.0
-2012-05-13 14:00:00,8884.0
-2012-05-13 15:00:00,8867.0
-2012-05-13 16:00:00,8870.0
-2012-05-13 17:00:00,8883.0
-2012-05-13 18:00:00,8934.0
-2012-05-13 19:00:00,8954.0
-2012-05-13 20:00:00,8967.0
-2012-05-13 21:00:00,9010.0
-2012-05-13 22:00:00,9607.0
-2012-05-13 23:00:00,9506.0
-2012-05-14 00:00:00,8985.0
-2012-05-12 01:00:00,9654.0
-2012-05-12 02:00:00,8981.0
-2012-05-12 03:00:00,8575.0
-2012-05-12 04:00:00,8271.0
-2012-05-12 05:00:00,8139.0
-2012-05-12 06:00:00,8149.0
-2012-05-12 07:00:00,8237.0
-2012-05-12 08:00:00,8410.0
-2012-05-12 09:00:00,8858.0
-2012-05-12 10:00:00,9331.0
-2012-05-12 11:00:00,9603.0
-2012-05-12 12:00:00,9792.0
-2012-05-12 13:00:00,9783.0
-2012-05-12 14:00:00,9690.0
-2012-05-12 15:00:00,9542.0
-2012-05-12 16:00:00,9391.0
-2012-05-12 17:00:00,9280.0
-2012-05-12 18:00:00,9239.0
-2012-05-12 19:00:00,9190.0
-2012-05-12 20:00:00,9208.0
-2012-05-12 21:00:00,9386.0
-2012-05-12 22:00:00,9772.0
-2012-05-12 23:00:00,9610.0
-2012-05-13 00:00:00,9146.0
-2012-05-11 01:00:00,9255.0
-2012-05-11 02:00:00,8769.0
-2012-05-11 03:00:00,8417.0
-2012-05-11 04:00:00,8227.0
-2012-05-11 05:00:00,8134.0
-2012-05-11 06:00:00,8335.0
-2012-05-11 07:00:00,8763.0
-2012-05-11 08:00:00,9596.0
-2012-05-11 09:00:00,10436.0
-2012-05-11 10:00:00,10914.0
-2012-05-11 11:00:00,11260.0
-2012-05-11 12:00:00,11487.0
-2012-05-11 13:00:00,11648.0
-2012-05-11 14:00:00,11695.0
-2012-05-11 15:00:00,11821.0
-2012-05-11 16:00:00,11834.0
-2012-05-11 17:00:00,11764.0
-2012-05-11 18:00:00,11721.0
-2012-05-11 19:00:00,11506.0
-2012-05-11 20:00:00,11214.0
-2012-05-11 21:00:00,11135.0
-2012-05-11 22:00:00,11510.0
-2012-05-11 23:00:00,11242.0
-2012-05-12 00:00:00,10469.0
-2012-05-10 01:00:00,9208.0
-2012-05-10 02:00:00,8701.0
-2012-05-10 03:00:00,8368.0
-2012-05-10 04:00:00,8137.0
-2012-05-10 05:00:00,8112.0
-2012-05-10 06:00:00,8328.0
-2012-05-10 07:00:00,8860.0
-2012-05-10 08:00:00,9731.0
-2012-05-10 09:00:00,10533.0
-2012-05-10 10:00:00,10930.0
-2012-05-10 11:00:00,11186.0
-2012-05-10 12:00:00,11386.0
-2012-05-10 13:00:00,11422.0
-2012-05-10 14:00:00,11469.0
-2012-05-10 15:00:00,11574.0
-2012-05-10 16:00:00,11511.0
-2012-05-10 17:00:00,11379.0
-2012-05-10 18:00:00,11271.0
-2012-05-10 19:00:00,11085.0
-2012-05-10 20:00:00,10834.0
-2012-05-10 21:00:00,10801.0
-2012-05-10 22:00:00,11217.0
-2012-05-10 23:00:00,10931.0
-2012-05-11 00:00:00,10140.0
-2012-05-09 01:00:00,9321.0
-2012-05-09 02:00:00,8729.0
-2012-05-09 03:00:00,8341.0
-2012-05-09 04:00:00,8134.0
-2012-05-09 05:00:00,8050.0
-2012-05-09 06:00:00,8211.0
-2012-05-09 07:00:00,8642.0
-2012-05-09 08:00:00,9708.0
-2012-05-09 09:00:00,10432.0
-2012-05-09 10:00:00,10858.0
-2012-05-09 11:00:00,11084.0
-2012-05-09 12:00:00,11363.0
-2012-05-09 13:00:00,11352.0
-2012-05-09 14:00:00,11327.0
-2012-05-09 15:00:00,11320.0
-2012-05-09 16:00:00,11225.0
-2012-05-09 17:00:00,11088.0
-2012-05-09 18:00:00,10940.0
-2012-05-09 19:00:00,10740.0
-2012-05-09 20:00:00,10512.0
-2012-05-09 21:00:00,10554.0
-2012-05-09 22:00:00,11095.0
-2012-05-09 23:00:00,10779.0
-2012-05-10 00:00:00,10012.0
-2012-05-08 01:00:00,9248.0
-2012-05-08 02:00:00,8701.0
-2012-05-08 03:00:00,8376.0
-2012-05-08 04:00:00,8158.0
-2012-05-08 05:00:00,8077.0
-2012-05-08 06:00:00,8270.0
-2012-05-08 07:00:00,8799.0
-2012-05-08 08:00:00,9707.0
-2012-05-08 09:00:00,10572.0
-2012-05-08 10:00:00,11061.0
-2012-05-08 11:00:00,11392.0
-2012-05-08 12:00:00,11673.0
-2012-05-08 13:00:00,11771.0
-2012-05-08 14:00:00,11833.0
-2012-05-08 15:00:00,11887.0
-2012-05-08 16:00:00,11788.0
-2012-05-08 17:00:00,11671.0
-2012-05-08 18:00:00,11522.0
-2012-05-08 19:00:00,11314.0
-2012-05-08 20:00:00,11025.0
-2012-05-08 21:00:00,11029.0
-2012-05-08 22:00:00,11425.0
-2012-05-08 23:00:00,10984.0
-2012-05-09 00:00:00,10143.0
-2012-05-07 01:00:00,8609.0
-2012-05-07 02:00:00,8257.0
-2012-05-07 03:00:00,7981.0
-2012-05-07 04:00:00,7908.0
-2012-05-07 05:00:00,7802.0
-2012-05-07 06:00:00,8075.0
-2012-05-07 07:00:00,8708.0
-2012-05-07 08:00:00,9744.0
-2012-05-07 09:00:00,10625.0
-2012-05-07 10:00:00,11058.0
-2012-05-07 11:00:00,11312.0
-2012-05-07 12:00:00,11565.0
-2012-05-07 13:00:00,11525.0
-2012-05-07 14:00:00,11551.0
-2012-05-07 15:00:00,11601.0
-2012-05-07 16:00:00,11498.0
-2012-05-07 17:00:00,11387.0
-2012-05-07 18:00:00,11308.0
-2012-05-07 19:00:00,11194.0
-2012-05-07 20:00:00,10947.0
-2012-05-07 21:00:00,10926.0
-2012-05-07 22:00:00,11312.0
-2012-05-07 23:00:00,10924.0
-2012-05-08 00:00:00,10073.0
-2012-05-06 01:00:00,8636.0
-2012-05-06 02:00:00,8123.0
-2012-05-06 03:00:00,7850.0
-2012-05-06 04:00:00,7633.0
-2012-05-06 05:00:00,7545.0
-2012-05-06 06:00:00,7519.0
-2012-05-06 07:00:00,7478.0
-2012-05-06 08:00:00,7473.0
-2012-05-06 09:00:00,7719.0
-2012-05-06 10:00:00,8289.0
-2012-05-06 11:00:00,8635.0
-2012-05-06 12:00:00,9008.0
-2012-05-06 13:00:00,9351.0
-2012-05-06 14:00:00,9610.0
-2012-05-06 15:00:00,9482.0
-2012-05-06 16:00:00,9404.0
-2012-05-06 17:00:00,9346.0
-2012-05-06 18:00:00,9419.0
-2012-05-06 19:00:00,9555.0
-2012-05-06 20:00:00,9554.0
-2012-05-06 21:00:00,9582.0
-2012-05-06 22:00:00,10052.0
-2012-05-06 23:00:00,9778.0
-2012-05-07 00:00:00,9192.0
-2012-05-05 01:00:00,9329.0
-2012-05-05 02:00:00,8694.0
-2012-05-05 03:00:00,8253.0
-2012-05-05 04:00:00,7992.0
-2012-05-05 05:00:00,7880.0
-2012-05-05 06:00:00,7861.0
-2012-05-05 07:00:00,8068.0
-2012-05-05 08:00:00,8256.0
-2012-05-05 09:00:00,8699.0
-2012-05-05 10:00:00,9181.0
-2012-05-05 11:00:00,9565.0
-2012-05-05 12:00:00,9766.0
-2012-05-05 13:00:00,9754.0
-2012-05-05 14:00:00,9676.0
-2012-05-05 15:00:00,9520.0
-2012-05-05 16:00:00,9440.0
-2012-05-05 17:00:00,9382.0
-2012-05-05 18:00:00,9405.0
-2012-05-05 19:00:00,9362.0
-2012-05-05 20:00:00,9368.0
-2012-05-05 21:00:00,9483.0
-2012-05-05 22:00:00,9926.0
-2012-05-05 23:00:00,9734.0
-2012-05-06 00:00:00,9200.0
-2012-05-04 01:00:00,11447.0
-2012-05-04 02:00:00,10713.0
-2012-05-04 03:00:00,10202.0
-2012-05-04 04:00:00,9713.0
-2012-05-04 05:00:00,9406.0
-2012-05-04 06:00:00,9359.0
-2012-05-04 07:00:00,9881.0
-2012-05-04 08:00:00,10732.0
-2012-05-04 09:00:00,11528.0
-2012-05-04 10:00:00,11824.0
-2012-05-04 11:00:00,12066.0
-2012-05-04 12:00:00,12307.0
-2012-05-04 13:00:00,12448.0
-2012-05-04 14:00:00,12566.0
-2012-05-04 15:00:00,12691.0
-2012-05-04 16:00:00,12649.0
-2012-05-04 17:00:00,12510.0
-2012-05-04 18:00:00,12185.0
-2012-05-04 19:00:00,11763.0
-2012-05-04 20:00:00,11203.0
-2012-05-04 21:00:00,11036.0
-2012-05-04 22:00:00,11269.0
-2012-05-04 23:00:00,10856.0
-2012-05-05 00:00:00,10112.0
-2012-05-03 01:00:00,10067.0
-2012-05-03 02:00:00,9442.0
-2012-05-03 03:00:00,9011.0
-2012-05-03 04:00:00,8768.0
-2012-05-03 05:00:00,8664.0
-2012-05-03 06:00:00,8858.0
-2012-05-03 07:00:00,9498.0
-2012-05-03 08:00:00,10411.0
-2012-05-03 09:00:00,11460.0
-2012-05-03 10:00:00,12181.0
-2012-05-03 11:00:00,12805.0
-2012-05-03 12:00:00,13365.0
-2012-05-03 13:00:00,13676.0
-2012-05-03 14:00:00,13900.0
-2012-05-03 15:00:00,14171.0
-2012-05-03 16:00:00,14368.0
-2012-05-03 17:00:00,14566.0
-2012-05-03 18:00:00,14630.0
-2012-05-03 19:00:00,14496.0
-2012-05-03 20:00:00,14161.0
-2012-05-03 21:00:00,14137.0
-2012-05-03 22:00:00,14304.0
-2012-05-03 23:00:00,13820.0
-2012-05-04 00:00:00,12673.0
-2012-05-02 01:00:00,9269.0
-2012-05-02 02:00:00,8729.0
-2012-05-02 03:00:00,8428.0
-2012-05-02 04:00:00,8213.0
-2012-05-02 05:00:00,8159.0
-2012-05-02 06:00:00,8364.0
-2012-05-02 07:00:00,9014.0
-2012-05-02 08:00:00,9937.0
-2012-05-02 09:00:00,10941.0
-2012-05-02 10:00:00,11445.0
-2012-05-02 11:00:00,11735.0
-2012-05-02 12:00:00,12031.0
-2012-05-02 13:00:00,12103.0
-2012-05-02 14:00:00,12097.0
-2012-05-02 15:00:00,12142.0
-2012-05-02 16:00:00,12111.0
-2012-05-02 17:00:00,12094.0
-2012-05-02 18:00:00,12077.0
-2012-05-02 19:00:00,11981.0
-2012-05-02 20:00:00,11731.0
-2012-05-02 21:00:00,11890.0
-2012-05-02 22:00:00,12272.0
-2012-05-02 23:00:00,11845.0
-2012-05-03 00:00:00,10937.0
-2012-05-01 01:00:00,9214.0
-2012-05-01 02:00:00,8678.0
-2012-05-01 03:00:00,8350.0
-2012-05-01 04:00:00,8153.0
-2012-05-01 05:00:00,8083.0
-2012-05-01 06:00:00,8272.0
-2012-05-01 07:00:00,8866.0
-2012-05-01 08:00:00,9759.0
-2012-05-01 09:00:00,10548.0
-2012-05-01 10:00:00,10892.0
-2012-05-01 11:00:00,11106.0
-2012-05-01 12:00:00,11247.0
-2012-05-01 13:00:00,11305.0
-2012-05-01 14:00:00,11357.0
-2012-05-01 15:00:00,11374.0
-2012-05-01 16:00:00,11261.0
-2012-05-01 17:00:00,11196.0
-2012-05-01 18:00:00,11147.0
-2012-05-01 19:00:00,11103.0
-2012-05-01 20:00:00,10995.0
-2012-05-01 21:00:00,11165.0
-2012-05-01 22:00:00,11396.0
-2012-05-01 23:00:00,10893.0
-2012-05-02 00:00:00,10074.0
-2012-04-30 01:00:00,8563.0
-2012-04-30 02:00:00,8194.0
-2012-04-30 03:00:00,7956.0
-2012-04-30 04:00:00,7851.0
-2012-04-30 05:00:00,7865.0
-2012-04-30 06:00:00,8101.0
-2012-04-30 07:00:00,8850.0
-2012-04-30 08:00:00,9852.0
-2012-04-30 09:00:00,10634.0
-2012-04-30 10:00:00,10976.0
-2012-04-30 11:00:00,11247.0
-2012-04-30 12:00:00,11413.0
-2012-04-30 13:00:00,11558.0
-2012-04-30 14:00:00,11584.0
-2012-04-30 15:00:00,11600.0
-2012-04-30 16:00:00,11405.0
-2012-04-30 17:00:00,11262.0
-2012-04-30 18:00:00,11137.0
-2012-04-30 19:00:00,11071.0
-2012-04-30 20:00:00,11004.0
-2012-04-30 21:00:00,11240.0
-2012-04-30 22:00:00,11296.0
-2012-04-30 23:00:00,10790.0
-2012-05-01 00:00:00,9993.0
-2012-04-29 01:00:00,8937.0
-2012-04-29 02:00:00,8511.0
-2012-04-29 03:00:00,8157.0
-2012-04-29 04:00:00,8040.0
-2012-04-29 05:00:00,7939.0
-2012-04-29 06:00:00,7951.0
-2012-04-29 07:00:00,8034.0
-2012-04-29 08:00:00,7901.0
-2012-04-29 09:00:00,8150.0
-2012-04-29 10:00:00,8490.0
-2012-04-29 11:00:00,8714.0
-2012-04-29 12:00:00,8806.0
-2012-04-29 13:00:00,8917.0
-2012-04-29 14:00:00,8912.0
-2012-04-29 15:00:00,8879.0
-2012-04-29 16:00:00,8849.0
-2012-04-29 17:00:00,8933.0
-2012-04-29 18:00:00,9127.0
-2012-04-29 19:00:00,9326.0
-2012-04-29 20:00:00,9521.0
-2012-04-29 21:00:00,9834.0
-2012-04-29 22:00:00,10041.0
-2012-04-29 23:00:00,9716.0
-2012-04-30 00:00:00,9156.0
-2012-04-28 01:00:00,9435.0
-2012-04-28 02:00:00,8890.0
-2012-04-28 03:00:00,8507.0
-2012-04-28 04:00:00,8324.0
-2012-04-28 05:00:00,8179.0
-2012-04-28 06:00:00,8247.0
-2012-04-28 07:00:00,8481.0
-2012-04-28 08:00:00,8909.0
-2012-04-28 09:00:00,9271.0
-2012-04-28 10:00:00,9773.0
-2012-04-28 11:00:00,10111.0
-2012-04-28 12:00:00,10276.0
-2012-04-28 13:00:00,10235.0
-2012-04-28 14:00:00,10137.0
-2012-04-28 15:00:00,9886.0
-2012-04-28 16:00:00,9709.0
-2012-04-28 17:00:00,9563.0
-2012-04-28 18:00:00,9551.0
-2012-04-28 19:00:00,9424.0
-2012-04-28 20:00:00,9430.0
-2012-04-28 21:00:00,9688.0
-2012-04-28 22:00:00,10189.0
-2012-04-28 23:00:00,9967.0
-2012-04-29 00:00:00,9512.0
-2012-04-27 01:00:00,9470.0
-2012-04-27 02:00:00,8972.0
-2012-04-27 03:00:00,8707.0
-2012-04-27 04:00:00,8525.0
-2012-04-27 05:00:00,8504.0
-2012-04-27 06:00:00,8753.0
-2012-04-27 07:00:00,9389.0
-2012-04-27 08:00:00,10213.0
-2012-04-27 09:00:00,10840.0
-2012-04-27 10:00:00,11121.0
-2012-04-27 11:00:00,11197.0
-2012-04-27 12:00:00,11249.0
-2012-04-27 13:00:00,11201.0
-2012-04-27 14:00:00,11090.0
-2012-04-27 15:00:00,11078.0
-2012-04-27 16:00:00,10929.0
-2012-04-27 17:00:00,10768.0
-2012-04-27 18:00:00,10702.0
-2012-04-27 19:00:00,10667.0
-2012-04-27 20:00:00,10601.0
-2012-04-27 21:00:00,10748.0
-2012-04-27 22:00:00,11117.0
-2012-04-27 23:00:00,10833.0
-2012-04-28 00:00:00,10155.0
-2012-04-26 01:00:00,9239.0
-2012-04-26 02:00:00,8712.0
-2012-04-26 03:00:00,8410.0
-2012-04-26 04:00:00,8213.0
-2012-04-26 05:00:00,8167.0
-2012-04-26 06:00:00,8373.0
-2012-04-26 07:00:00,9028.0
-2012-04-26 08:00:00,9856.0
-2012-04-26 09:00:00,10588.0
-2012-04-26 10:00:00,10942.0
-2012-04-26 11:00:00,11077.0
-2012-04-26 12:00:00,11304.0
-2012-04-26 13:00:00,11302.0
-2012-04-26 14:00:00,11242.0
-2012-04-26 15:00:00,11157.0
-2012-04-26 16:00:00,11004.0
-2012-04-26 17:00:00,10851.0
-2012-04-26 18:00:00,10732.0
-2012-04-26 19:00:00,10566.0
-2012-04-26 20:00:00,10390.0
-2012-04-26 21:00:00,10652.0
-2012-04-26 22:00:00,11228.0
-2012-04-26 23:00:00,10897.0
-2012-04-27 00:00:00,10193.0
-2012-04-25 01:00:00,9186.0
-2012-04-25 02:00:00,8687.0
-2012-04-25 03:00:00,8387.0
-2012-04-25 04:00:00,8215.0
-2012-04-25 05:00:00,8156.0
-2012-04-25 06:00:00,8356.0
-2012-04-25 07:00:00,9026.0
-2012-04-25 08:00:00,9913.0
-2012-04-25 09:00:00,10739.0
-2012-04-25 10:00:00,11169.0
-2012-04-25 11:00:00,11206.0
-2012-04-25 12:00:00,11384.0
-2012-04-25 13:00:00,11449.0
-2012-04-25 14:00:00,11451.0
-2012-04-25 15:00:00,11447.0
-2012-04-25 16:00:00,11319.0
-2012-04-25 17:00:00,11223.0
-2012-04-25 18:00:00,11084.0
-2012-04-25 19:00:00,10927.0
-2012-04-25 20:00:00,10676.0
-2012-04-25 21:00:00,10930.0
-2012-04-25 22:00:00,11256.0
-2012-04-25 23:00:00,10804.0
-2012-04-26 00:00:00,9981.0
-2012-04-24 01:00:00,9296.0
-2012-04-24 02:00:00,8823.0
-2012-04-24 03:00:00,8565.0
-2012-04-24 04:00:00,8380.0
-2012-04-24 05:00:00,8397.0
-2012-04-24 06:00:00,8614.0
-2012-04-24 07:00:00,9301.0
-2012-04-24 08:00:00,10175.0
-2012-04-24 09:00:00,10795.0
-2012-04-24 10:00:00,11038.0
-2012-04-24 11:00:00,11155.0
-2012-04-24 12:00:00,11252.0
-2012-04-24 13:00:00,11286.0
-2012-04-24 14:00:00,11269.0
-2012-04-24 15:00:00,11294.0
-2012-04-24 16:00:00,11179.0
-2012-04-24 17:00:00,11024.0
-2012-04-24 18:00:00,10873.0
-2012-04-24 19:00:00,10730.0
-2012-04-24 20:00:00,10515.0
-2012-04-24 21:00:00,10694.0
-2012-04-24 22:00:00,11153.0
-2012-04-24 23:00:00,10770.0
-2012-04-25 00:00:00,9958.0
-2012-04-23 01:00:00,8800.0
-2012-04-23 02:00:00,8469.0
-2012-04-23 03:00:00,8267.0
-2012-04-23 04:00:00,8198.0
-2012-04-23 05:00:00,8243.0
-2012-04-23 06:00:00,8546.0
-2012-04-23 07:00:00,9307.0
-2012-04-23 08:00:00,10229.0
-2012-04-23 09:00:00,10883.0
-2012-04-23 10:00:00,11157.0
-2012-04-23 11:00:00,11210.0
-2012-04-23 12:00:00,11362.0
-2012-04-23 13:00:00,11329.0
-2012-04-23 14:00:00,11284.0
-2012-04-23 15:00:00,11269.0
-2012-04-23 16:00:00,11173.0
-2012-04-23 17:00:00,11002.0
-2012-04-23 18:00:00,10866.0
-2012-04-23 19:00:00,10728.0
-2012-04-23 20:00:00,10576.0
-2012-04-23 21:00:00,10793.0
-2012-04-23 22:00:00,11224.0
-2012-04-23 23:00:00,10836.0
-2012-04-24 00:00:00,10079.0
-2012-04-22 01:00:00,8930.0
-2012-04-22 02:00:00,8480.0
-2012-04-22 03:00:00,8127.0
-2012-04-22 04:00:00,8011.0
-2012-04-22 05:00:00,7897.0
-2012-04-22 06:00:00,7913.0
-2012-04-22 07:00:00,8050.0
-2012-04-22 08:00:00,8039.0
-2012-04-22 09:00:00,8227.0
-2012-04-22 10:00:00,8576.0
-2012-04-22 11:00:00,8760.0
-2012-04-22 12:00:00,8946.0
-2012-04-22 13:00:00,8990.0
-2012-04-22 14:00:00,9000.0
-2012-04-22 15:00:00,8939.0
-2012-04-22 16:00:00,8888.0
-2012-04-22 17:00:00,8859.0
-2012-04-22 18:00:00,8913.0
-2012-04-22 19:00:00,9015.0
-2012-04-22 20:00:00,9109.0
-2012-04-22 21:00:00,9501.0
-2012-04-22 22:00:00,10072.0
-2012-04-22 23:00:00,9894.0
-2012-04-23 00:00:00,9341.0
-2012-04-21 01:00:00,9543.0
-2012-04-21 02:00:00,8987.0
-2012-04-21 03:00:00,8647.0
-2012-04-21 04:00:00,8406.0
-2012-04-21 05:00:00,8357.0
-2012-04-21 06:00:00,8398.0
-2012-04-21 07:00:00,8668.0
-2012-04-21 08:00:00,8800.0
-2012-04-21 09:00:00,9190.0
-2012-04-21 10:00:00,9534.0
-2012-04-21 11:00:00,9762.0
-2012-04-21 12:00:00,9827.0
-2012-04-21 13:00:00,9780.0
-2012-04-21 14:00:00,9603.0
-2012-04-21 15:00:00,9426.0
-2012-04-21 16:00:00,9248.0
-2012-04-21 17:00:00,9171.0
-2012-04-21 18:00:00,9113.0
-2012-04-21 19:00:00,9142.0
-2012-04-21 20:00:00,9213.0
-2012-04-21 21:00:00,9645.0
-2012-04-21 22:00:00,10078.0
-2012-04-21 23:00:00,9905.0
-2012-04-22 00:00:00,9452.0
-2012-04-20 01:00:00,9268.0
-2012-04-20 02:00:00,8766.0
-2012-04-20 03:00:00,8438.0
-2012-04-20 04:00:00,8235.0
-2012-04-20 05:00:00,8160.0
-2012-04-20 06:00:00,8367.0
-2012-04-20 07:00:00,9050.0
-2012-04-20 08:00:00,10103.0
-2012-04-20 09:00:00,10926.0
-2012-04-20 10:00:00,11297.0
-2012-04-20 11:00:00,11523.0
-2012-04-20 12:00:00,11672.0
-2012-04-20 13:00:00,11626.0
-2012-04-20 14:00:00,11536.0
-2012-04-20 15:00:00,11550.0
-2012-04-20 16:00:00,11407.0
-2012-04-20 17:00:00,11309.0
-2012-04-20 18:00:00,11192.0
-2012-04-20 19:00:00,11065.0
-2012-04-20 20:00:00,10926.0
-2012-04-20 21:00:00,11078.0
-2012-04-20 22:00:00,11312.0
-2012-04-20 23:00:00,11007.0
-2012-04-21 00:00:00,10287.0
-2012-04-19 01:00:00,9332.0
-2012-04-19 02:00:00,8755.0
-2012-04-19 03:00:00,8385.0
-2012-04-19 04:00:00,8159.0
-2012-04-19 05:00:00,8086.0
-2012-04-19 06:00:00,8262.0
-2012-04-19 07:00:00,8898.0
-2012-04-19 08:00:00,9829.0
-2012-04-19 09:00:00,10630.0
-2012-04-19 10:00:00,10986.0
-2012-04-19 11:00:00,11140.0
-2012-04-19 12:00:00,11303.0
-2012-04-19 13:00:00,11324.0
-2012-04-19 14:00:00,11363.0
-2012-04-19 15:00:00,11396.0
-2012-04-19 16:00:00,11279.0
-2012-04-19 17:00:00,11145.0
-2012-04-19 18:00:00,11037.0
-2012-04-19 19:00:00,10879.0
-2012-04-19 20:00:00,10844.0
-2012-04-19 21:00:00,11121.0
-2012-04-19 22:00:00,11316.0
-2012-04-19 23:00:00,10845.0
-2012-04-20 00:00:00,10042.0
-2012-04-18 01:00:00,9340.0
-2012-04-18 02:00:00,8840.0
-2012-04-18 03:00:00,8537.0
-2012-04-18 04:00:00,8350.0
-2012-04-18 05:00:00,8326.0
-2012-04-18 06:00:00,8533.0
-2012-04-18 07:00:00,9197.0
-2012-04-18 08:00:00,10107.0
-2012-04-18 09:00:00,10725.0
-2012-04-18 10:00:00,11030.0
-2012-04-18 11:00:00,11207.0
-2012-04-18 12:00:00,11384.0
-2012-04-18 13:00:00,11468.0
-2012-04-18 14:00:00,11508.0
-2012-04-18 15:00:00,11605.0
-2012-04-18 16:00:00,11540.0
-2012-04-18 17:00:00,11430.0
-2012-04-18 18:00:00,11302.0
-2012-04-18 19:00:00,11184.0
-2012-04-18 20:00:00,11025.0
-2012-04-18 21:00:00,11324.0
-2012-04-18 22:00:00,11543.0
-2012-04-18 23:00:00,11027.0
-2012-04-19 00:00:00,10148.0
-2012-04-17 01:00:00,9234.0
-2012-04-17 02:00:00,8751.0
-2012-04-17 03:00:00,8445.0
-2012-04-17 04:00:00,8259.0
-2012-04-17 05:00:00,8209.0
-2012-04-17 06:00:00,8449.0
-2012-04-17 07:00:00,9209.0
-2012-04-17 08:00:00,10115.0
-2012-04-17 09:00:00,10751.0
-2012-04-17 10:00:00,11037.0
-2012-04-17 11:00:00,11098.0
-2012-04-17 12:00:00,11226.0
-2012-04-17 13:00:00,11211.0
-2012-04-17 14:00:00,11162.0
-2012-04-17 15:00:00,11204.0
-2012-04-17 16:00:00,11111.0
-2012-04-17 17:00:00,10951.0
-2012-04-17 18:00:00,10827.0
-2012-04-17 19:00:00,10650.0
-2012-04-17 20:00:00,10476.0
-2012-04-17 21:00:00,10791.0
-2012-04-17 22:00:00,11238.0
-2012-04-17 23:00:00,10868.0
-2012-04-18 00:00:00,10092.0
-2012-04-16 01:00:00,9038.0
-2012-04-16 02:00:00,8581.0
-2012-04-16 03:00:00,8290.0
-2012-04-16 04:00:00,8035.0
-2012-04-16 05:00:00,7987.0
-2012-04-16 06:00:00,8110.0
-2012-04-16 07:00:00,8781.0
-2012-04-16 08:00:00,9685.0
-2012-04-16 09:00:00,10548.0
-2012-04-16 10:00:00,10946.0
-2012-04-16 11:00:00,11163.0
-2012-04-16 12:00:00,11337.0
-2012-04-16 13:00:00,11331.0
-2012-04-16 14:00:00,11309.0
-2012-04-16 15:00:00,11338.0
-2012-04-16 16:00:00,11219.0
-2012-04-16 17:00:00,11031.0
-2012-04-16 18:00:00,10861.0
-2012-04-16 19:00:00,10727.0
-2012-04-16 20:00:00,10578.0
-2012-04-16 21:00:00,10860.0
-2012-04-16 22:00:00,11262.0
-2012-04-16 23:00:00,10832.0
-2012-04-17 00:00:00,10027.0
-2012-04-15 01:00:00,8905.0
-2012-04-15 02:00:00,8438.0
-2012-04-15 03:00:00,8136.0
-2012-04-15 04:00:00,7836.0
-2012-04-15 05:00:00,7732.0
-2012-04-15 06:00:00,7631.0
-2012-04-15 07:00:00,7756.0
-2012-04-15 08:00:00,7751.0
-2012-04-15 09:00:00,7928.0
-2012-04-15 10:00:00,8361.0
-2012-04-15 11:00:00,8770.0
-2012-04-15 12:00:00,9104.0
-2012-04-15 13:00:00,9360.0
-2012-04-15 14:00:00,9428.0
-2012-04-15 15:00:00,9552.0
-2012-04-15 16:00:00,9526.0
-2012-04-15 17:00:00,9585.0
-2012-04-15 18:00:00,9622.0
-2012-04-15 19:00:00,9810.0
-2012-04-15 20:00:00,10058.0
-2012-04-15 21:00:00,10430.0
-2012-04-15 22:00:00,10549.0
-2012-04-15 23:00:00,10262.0
-2012-04-16 00:00:00,9700.0
-2012-04-14 01:00:00,9249.0
-2012-04-14 02:00:00,8679.0
-2012-04-14 03:00:00,8341.0
-2012-04-14 04:00:00,8102.0
-2012-04-14 05:00:00,8006.0
-2012-04-14 06:00:00,8005.0
-2012-04-14 07:00:00,8267.0
-2012-04-14 08:00:00,8489.0
-2012-04-14 09:00:00,8859.0
-2012-04-14 10:00:00,9313.0
-2012-04-14 11:00:00,9651.0
-2012-04-14 12:00:00,9838.0
-2012-04-14 13:00:00,9831.0
-2012-04-14 14:00:00,9818.0
-2012-04-14 15:00:00,9675.0
-2012-04-14 16:00:00,9613.0
-2012-04-14 17:00:00,9592.0
-2012-04-14 18:00:00,9565.0
-2012-04-14 19:00:00,9600.0
-2012-04-14 20:00:00,9551.0
-2012-04-14 21:00:00,9989.0
-2012-04-14 22:00:00,10207.0
-2012-04-14 23:00:00,9968.0
-2012-04-15 00:00:00,9490.0
-2012-04-13 01:00:00,9423.0
-2012-04-13 02:00:00,8883.0
-2012-04-13 03:00:00,8569.0
-2012-04-13 04:00:00,8381.0
-2012-04-13 05:00:00,8367.0
-2012-04-13 06:00:00,8550.0
-2012-04-13 07:00:00,9239.0
-2012-04-13 08:00:00,10081.0
-2012-04-13 09:00:00,10695.0
-2012-04-13 10:00:00,11021.0
-2012-04-13 11:00:00,11049.0
-2012-04-13 12:00:00,11229.0
-2012-04-13 13:00:00,11234.0
-2012-04-13 14:00:00,11232.0
-2012-04-13 15:00:00,11240.0
-2012-04-13 16:00:00,11097.0
-2012-04-13 17:00:00,10923.0
-2012-04-13 18:00:00,10769.0
-2012-04-13 19:00:00,10655.0
-2012-04-13 20:00:00,10521.0
-2012-04-13 21:00:00,10812.0
-2012-04-13 22:00:00,11036.0
-2012-04-13 23:00:00,10676.0
-2012-04-14 00:00:00,9969.0
-2012-04-12 01:00:00,9556.0
-2012-04-12 02:00:00,9090.0
-2012-04-12 03:00:00,8801.0
-2012-04-12 04:00:00,8647.0
-2012-04-12 05:00:00,8641.0
-2012-04-12 06:00:00,8867.0
-2012-04-12 07:00:00,9612.0
-2012-04-12 08:00:00,10538.0
-2012-04-12 09:00:00,11046.0
-2012-04-12 10:00:00,11228.0
-2012-04-12 11:00:00,11311.0
-2012-04-12 12:00:00,11372.0
-2012-04-12 13:00:00,11334.0
-2012-04-12 14:00:00,11305.0
-2012-04-12 15:00:00,11295.0
-2012-04-12 16:00:00,11204.0
-2012-04-12 17:00:00,11063.0
-2012-04-12 18:00:00,10907.0
-2012-04-12 19:00:00,10732.0
-2012-04-12 20:00:00,10636.0
-2012-04-12 21:00:00,11053.0
-2012-04-12 22:00:00,11312.0
-2012-04-12 23:00:00,10899.0
-2012-04-13 00:00:00,10110.0
-2012-04-11 01:00:00,9702.0
-2012-04-11 02:00:00,9256.0
-2012-04-11 03:00:00,8973.0
-2012-04-11 04:00:00,8795.0
-2012-04-11 05:00:00,8819.0
-2012-04-11 06:00:00,9025.0
-2012-04-11 07:00:00,9769.0
-2012-04-11 08:00:00,10709.0
-2012-04-11 09:00:00,11256.0
-2012-04-11 10:00:00,11446.0
-2012-04-11 11:00:00,11486.0
-2012-04-11 12:00:00,11493.0
-2012-04-11 13:00:00,11428.0
-2012-04-11 14:00:00,11365.0
-2012-04-11 15:00:00,11318.0
-2012-04-11 16:00:00,11171.0
-2012-04-11 17:00:00,11002.0
-2012-04-11 18:00:00,10849.0
-2012-04-11 19:00:00,10729.0
-2012-04-11 20:00:00,10617.0
-2012-04-11 21:00:00,11070.0
-2012-04-11 22:00:00,11462.0
-2012-04-11 23:00:00,11081.0
-2012-04-12 00:00:00,10311.0
-2012-04-10 01:00:00,9179.0
-2012-04-10 02:00:00,8733.0
-2012-04-10 03:00:00,8487.0
-2012-04-10 04:00:00,8323.0
-2012-04-10 05:00:00,8351.0
-2012-04-10 06:00:00,8609.0
-2012-04-10 07:00:00,9358.0
-2012-04-10 08:00:00,10374.0
-2012-04-10 09:00:00,11009.0
-2012-04-10 10:00:00,11317.0
-2012-04-10 11:00:00,11446.0
-2012-04-10 12:00:00,11522.0
-2012-04-10 13:00:00,11482.0
-2012-04-10 14:00:00,11466.0
-2012-04-10 15:00:00,11467.0
-2012-04-10 16:00:00,11325.0
-2012-04-10 17:00:00,11143.0
-2012-04-10 18:00:00,10998.0
-2012-04-10 19:00:00,10950.0
-2012-04-10 20:00:00,10859.0
-2012-04-10 21:00:00,11314.0
-2012-04-10 22:00:00,11638.0
-2012-04-10 23:00:00,11214.0
-2012-04-11 00:00:00,10451.0
-2012-04-09 01:00:00,8222.0
-2012-04-09 02:00:00,7858.0
-2012-04-09 03:00:00,7683.0
-2012-04-09 04:00:00,7564.0
-2012-04-09 05:00:00,7626.0
-2012-04-09 06:00:00,7895.0
-2012-04-09 07:00:00,8609.0
-2012-04-09 08:00:00,9610.0
-2012-04-09 09:00:00,10236.0
-2012-04-09 10:00:00,10624.0
-2012-04-09 11:00:00,10899.0
-2012-04-09 12:00:00,11087.0
-2012-04-09 13:00:00,11154.0
-2012-04-09 14:00:00,11153.0
-2012-04-09 15:00:00,11180.0
-2012-04-09 16:00:00,11096.0
-2012-04-09 17:00:00,10918.0
-2012-04-09 18:00:00,10775.0
-2012-04-09 19:00:00,10624.0
-2012-04-09 20:00:00,10484.0
-2012-04-09 21:00:00,10884.0
-2012-04-09 22:00:00,11170.0
-2012-04-09 23:00:00,10720.0
-2012-04-10 00:00:00,9924.0
-2012-04-08 01:00:00,8536.0
-2012-04-08 02:00:00,8012.0
-2012-04-08 03:00:00,7706.0
-2012-04-08 04:00:00,7557.0
-2012-04-08 05:00:00,7413.0
-2012-04-08 06:00:00,7471.0
-2012-04-08 07:00:00,7585.0
-2012-04-08 08:00:00,7679.0
-2012-04-08 09:00:00,7771.0
-2012-04-08 10:00:00,8092.0
-2012-04-08 11:00:00,8301.0
-2012-04-08 12:00:00,8411.0
-2012-04-08 13:00:00,8482.0
-2012-04-08 14:00:00,8448.0
-2012-04-08 15:00:00,8419.0
-2012-04-08 16:00:00,8291.0
-2012-04-08 17:00:00,8246.0
-2012-04-08 18:00:00,8200.0
-2012-04-08 19:00:00,8258.0
-2012-04-08 20:00:00,8509.0
-2012-04-08 21:00:00,9024.0
-2012-04-08 22:00:00,9366.0
-2012-04-08 23:00:00,9153.0
-2012-04-09 00:00:00,8699.0
-2012-04-07 01:00:00,8967.0
-2012-04-07 02:00:00,8480.0
-2012-04-07 03:00:00,8240.0
-2012-04-07 04:00:00,8039.0
-2012-04-07 05:00:00,7997.0
-2012-04-07 06:00:00,8040.0
-2012-04-07 07:00:00,8305.0
-2012-04-07 08:00:00,8480.0
-2012-04-07 09:00:00,8687.0
-2012-04-07 10:00:00,9011.0
-2012-04-07 11:00:00,9239.0
-2012-04-07 12:00:00,9351.0
-2012-04-07 13:00:00,9369.0
-2012-04-07 14:00:00,9285.0
-2012-04-07 15:00:00,9165.0
-2012-04-07 16:00:00,9065.0
-2012-04-07 17:00:00,9031.0
-2012-04-07 18:00:00,9001.0
-2012-04-07 19:00:00,9057.0
-2012-04-07 20:00:00,9220.0
-2012-04-07 21:00:00,9706.0
-2012-04-07 22:00:00,9773.0
-2012-04-07 23:00:00,9538.0
-2012-04-08 00:00:00,9059.0
-2012-04-06 01:00:00,9564.0
-2012-04-06 02:00:00,9050.0
-2012-04-06 03:00:00,8693.0
-2012-04-06 04:00:00,8531.0
-2012-04-06 05:00:00,8440.0
-2012-04-06 06:00:00,8645.0
-2012-04-06 07:00:00,9140.0
-2012-04-06 08:00:00,9718.0
-2012-04-06 09:00:00,9979.0
-2012-04-06 10:00:00,10215.0
-2012-04-06 11:00:00,10359.0
-2012-04-06 12:00:00,10429.0
-2012-04-06 13:00:00,10362.0
-2012-04-06 14:00:00,10254.0
-2012-04-06 15:00:00,10167.0
-2012-04-06 16:00:00,10023.0
-2012-04-06 17:00:00,9852.0
-2012-04-06 18:00:00,9776.0
-2012-04-06 19:00:00,9701.0
-2012-04-06 20:00:00,9630.0
-2012-04-06 21:00:00,10068.0
-2012-04-06 22:00:00,10375.0
-2012-04-06 23:00:00,10131.0
-2012-04-07 00:00:00,9618.0
-2012-04-05 01:00:00,9356.0
-2012-04-05 02:00:00,8837.0
-2012-04-05 03:00:00,8547.0
-2012-04-05 04:00:00,8349.0
-2012-04-05 05:00:00,8330.0
-2012-04-05 06:00:00,8573.0
-2012-04-05 07:00:00,9286.0
-2012-04-05 08:00:00,10237.0
-2012-04-05 09:00:00,10771.0
-2012-04-05 10:00:00,11066.0
-2012-04-05 11:00:00,11191.0
-2012-04-05 12:00:00,11239.0
-2012-04-05 13:00:00,11187.0
-2012-04-05 14:00:00,11132.0
-2012-04-05 15:00:00,11142.0
-2012-04-05 16:00:00,11010.0
-2012-04-05 17:00:00,10831.0
-2012-04-05 18:00:00,10701.0
-2012-04-05 19:00:00,10579.0
-2012-04-05 20:00:00,10587.0
-2012-04-05 21:00:00,11119.0
-2012-04-05 22:00:00,11355.0
-2012-04-05 23:00:00,11060.0
-2012-04-06 00:00:00,10307.0
-2012-04-04 01:00:00,9223.0
-2012-04-04 02:00:00,8717.0
-2012-04-04 03:00:00,8415.0
-2012-04-04 04:00:00,8185.0
-2012-04-04 05:00:00,8172.0
-2012-04-04 06:00:00,8382.0
-2012-04-04 07:00:00,9075.0
-2012-04-04 08:00:00,10047.0
-2012-04-04 09:00:00,10560.0
-2012-04-04 10:00:00,10823.0
-2012-04-04 11:00:00,10989.0
-2012-04-04 12:00:00,11115.0
-2012-04-04 13:00:00,11152.0
-2012-04-04 14:00:00,11109.0
-2012-04-04 15:00:00,11144.0
-2012-04-04 16:00:00,11039.0
-2012-04-04 17:00:00,10866.0
-2012-04-04 18:00:00,10732.0
-2012-04-04 19:00:00,10593.0
-2012-04-04 20:00:00,10484.0
-2012-04-04 21:00:00,11032.0
-2012-04-04 22:00:00,11274.0
-2012-04-04 23:00:00,10864.0
-2012-04-05 00:00:00,10094.0
-2012-04-03 01:00:00,9151.0
-2012-04-03 02:00:00,8607.0
-2012-04-03 03:00:00,8289.0
-2012-04-03 04:00:00,8093.0
-2012-04-03 05:00:00,8033.0
-2012-04-03 06:00:00,8207.0
-2012-04-03 07:00:00,8836.0
-2012-04-03 08:00:00,9832.0
-2012-04-03 09:00:00,10352.0
-2012-04-03 10:00:00,10753.0
-2012-04-03 11:00:00,10989.0
-2012-04-03 12:00:00,11229.0
-2012-04-03 13:00:00,11370.0
-2012-04-03 14:00:00,11472.0
-2012-04-03 15:00:00,11621.0
-2012-04-03 16:00:00,11504.0
-2012-04-03 17:00:00,11308.0
-2012-04-03 18:00:00,11008.0
-2012-04-03 19:00:00,10757.0
-2012-04-03 20:00:00,10617.0
-2012-04-03 21:00:00,11108.0
-2012-04-03 22:00:00,11250.0
-2012-04-03 23:00:00,10766.0
-2012-04-04 00:00:00,9988.0
-2012-04-02 01:00:00,8685.0
-2012-04-02 02:00:00,8339.0
-2012-04-02 03:00:00,8086.0
-2012-04-02 04:00:00,8011.0
-2012-04-02 05:00:00,8002.0
-2012-04-02 06:00:00,8327.0
-2012-04-02 07:00:00,9018.0
-2012-04-02 08:00:00,10074.0
-2012-04-02 09:00:00,10650.0
-2012-04-02 10:00:00,10841.0
-2012-04-02 11:00:00,10969.0
-2012-04-02 12:00:00,11082.0
-2012-04-02 13:00:00,11091.0
-2012-04-02 14:00:00,11083.0
-2012-04-02 15:00:00,11098.0
-2012-04-02 16:00:00,11010.0
-2012-04-02 17:00:00,10863.0
-2012-04-02 18:00:00,10739.0
-2012-04-02 19:00:00,10603.0
-2012-04-02 20:00:00,10463.0
-2012-04-02 21:00:00,10980.0
-2012-04-02 22:00:00,11183.0
-2012-04-02 23:00:00,10736.0
-2012-04-03 00:00:00,9928.0
-2012-04-01 01:00:00,8982.0
-2012-04-01 02:00:00,8533.0
-2012-04-01 03:00:00,8210.0
-2012-04-01 04:00:00,8022.0
-2012-04-01 05:00:00,7910.0
-2012-04-01 06:00:00,7868.0
-2012-04-01 07:00:00,7984.0
-2012-04-01 08:00:00,8143.0
-2012-04-01 09:00:00,8184.0
-2012-04-01 10:00:00,8415.0
-2012-04-01 11:00:00,8729.0
-2012-04-01 12:00:00,8862.0
-2012-04-01 13:00:00,8939.0
-2012-04-01 14:00:00,8915.0
-2012-04-01 15:00:00,8949.0
-2012-04-01 16:00:00,8871.0
-2012-04-01 17:00:00,8819.0
-2012-04-01 18:00:00,8864.0
-2012-04-01 19:00:00,9003.0
-2012-04-01 20:00:00,9213.0
-2012-04-01 21:00:00,9834.0
-2012-04-01 22:00:00,10031.0
-2012-04-01 23:00:00,9733.0
-2012-04-02 00:00:00,9249.0
-2012-03-31 01:00:00,9464.0
-2012-03-31 02:00:00,8962.0
-2012-03-31 03:00:00,8660.0
-2012-03-31 04:00:00,8407.0
-2012-03-31 05:00:00,8343.0
-2012-03-31 06:00:00,8336.0
-2012-03-31 07:00:00,8635.0
-2012-03-31 08:00:00,9073.0
-2012-03-31 09:00:00,9391.0
-2012-03-31 10:00:00,9785.0
-2012-03-31 11:00:00,10111.0
-2012-03-31 12:00:00,10237.0
-2012-03-31 13:00:00,10194.0
-2012-03-31 14:00:00,10018.0
-2012-03-31 15:00:00,9697.0
-2012-03-31 16:00:00,9502.0
-2012-03-31 17:00:00,9326.0
-2012-03-31 18:00:00,9310.0
-2012-03-31 19:00:00,9320.0
-2012-03-31 20:00:00,9436.0
-2012-03-31 21:00:00,10010.0
-2012-03-31 22:00:00,10220.0
-2012-03-31 23:00:00,9984.0
-2012-04-01 00:00:00,9531.0
-2012-03-30 01:00:00,9493.0
-2012-03-30 02:00:00,8977.0
-2012-03-30 03:00:00,8669.0
-2012-03-30 04:00:00,8446.0
-2012-03-30 05:00:00,8383.0
-2012-03-30 06:00:00,8531.0
-2012-03-30 07:00:00,9126.0
-2012-03-30 08:00:00,10159.0
-2012-03-30 09:00:00,10786.0
-2012-03-30 10:00:00,11079.0
-2012-03-30 11:00:00,11170.0
-2012-03-30 12:00:00,11253.0
-2012-03-30 13:00:00,11265.0
-2012-03-30 14:00:00,11117.0
-2012-03-30 15:00:00,11100.0
-2012-03-30 16:00:00,10912.0
-2012-03-30 17:00:00,10752.0
-2012-03-30 18:00:00,10677.0
-2012-03-30 19:00:00,10636.0
-2012-03-30 20:00:00,10703.0
-2012-03-30 21:00:00,11170.0
-2012-03-30 22:00:00,11074.0
-2012-03-30 23:00:00,10799.0
-2012-03-31 00:00:00,10149.0
-2012-03-29 01:00:00,9180.0
-2012-03-29 02:00:00,8656.0
-2012-03-29 03:00:00,8374.0
-2012-03-29 04:00:00,8182.0
-2012-03-29 05:00:00,8163.0
-2012-03-29 06:00:00,8372.0
-2012-03-29 07:00:00,9031.0
-2012-03-29 08:00:00,10044.0
-2012-03-29 09:00:00,10461.0
-2012-03-29 10:00:00,10837.0
-2012-03-29 11:00:00,10976.0
-2012-03-29 12:00:00,11123.0
-2012-03-29 13:00:00,11072.0
-2012-03-29 14:00:00,11014.0
-2012-03-29 15:00:00,11046.0
-2012-03-29 16:00:00,10903.0
-2012-03-29 17:00:00,10759.0
-2012-03-29 18:00:00,10673.0
-2012-03-29 19:00:00,10633.0
-2012-03-29 20:00:00,10671.0
-2012-03-29 21:00:00,11202.0
-2012-03-29 22:00:00,11304.0
-2012-03-29 23:00:00,10909.0
-2012-03-30 00:00:00,10202.0
-2012-03-28 01:00:00,9383.0
-2012-03-28 02:00:00,8782.0
-2012-03-28 03:00:00,8436.0
-2012-03-28 04:00:00,8221.0
-2012-03-28 05:00:00,8138.0
-2012-03-28 06:00:00,8283.0
-2012-03-28 07:00:00,8877.0
-2012-03-28 08:00:00,9817.0
-2012-03-28 09:00:00,10296.0
-2012-03-28 10:00:00,10717.0
-2012-03-28 11:00:00,10982.0
-2012-03-28 12:00:00,11295.0
-2012-03-28 13:00:00,11320.0
-2012-03-28 14:00:00,11321.0
-2012-03-28 15:00:00,11424.0
-2012-03-28 16:00:00,11324.0
-2012-03-28 17:00:00,11192.0
-2012-03-28 18:00:00,10978.0
-2012-03-28 19:00:00,10762.0
-2012-03-28 20:00:00,10541.0
-2012-03-28 21:00:00,10969.0
-2012-03-28 22:00:00,11052.0
-2012-03-28 23:00:00,10596.0
-2012-03-29 00:00:00,9886.0
-2012-03-27 01:00:00,9546.0
-2012-03-27 02:00:00,9065.0
-2012-03-27 03:00:00,8722.0
-2012-03-27 04:00:00,8536.0
-2012-03-27 05:00:00,8499.0
-2012-03-27 06:00:00,8720.0
-2012-03-27 07:00:00,9406.0
-2012-03-27 08:00:00,10495.0
-2012-03-27 09:00:00,10964.0
-2012-03-27 10:00:00,11183.0
-2012-03-27 11:00:00,11309.0
-2012-03-27 12:00:00,11380.0
-2012-03-27 13:00:00,11355.0
-2012-03-27 14:00:00,11337.0
-2012-03-27 15:00:00,11325.0
-2012-03-27 16:00:00,11265.0
-2012-03-27 17:00:00,11144.0
-2012-03-27 18:00:00,11039.0
-2012-03-27 19:00:00,10958.0
-2012-03-27 20:00:00,10836.0
-2012-03-27 21:00:00,11360.0
-2012-03-27 22:00:00,11415.0
-2012-03-27 23:00:00,10947.0
-2012-03-28 00:00:00,10143.0
-2012-03-26 01:00:00,8522.0
-2012-03-26 02:00:00,8170.0
-2012-03-26 03:00:00,7962.0
-2012-03-26 04:00:00,7886.0
-2012-03-26 05:00:00,7889.0
-2012-03-26 06:00:00,8200.0
-2012-03-26 07:00:00,8889.0
-2012-03-26 08:00:00,10102.0
-2012-03-26 09:00:00,10765.0
-2012-03-26 10:00:00,11197.0
-2012-03-26 11:00:00,11420.0
-2012-03-26 12:00:00,11464.0
-2012-03-26 13:00:00,11360.0
-2012-03-26 14:00:00,11282.0
-2012-03-26 15:00:00,11243.0
-2012-03-26 16:00:00,11104.0
-2012-03-26 17:00:00,10917.0
-2012-03-26 18:00:00,10854.0
-2012-03-26 19:00:00,10873.0
-2012-03-26 20:00:00,10997.0
-2012-03-26 21:00:00,11565.0
-2012-03-26 22:00:00,11544.0
-2012-03-26 23:00:00,11044.0
-2012-03-27 00:00:00,10324.0
-2012-03-25 01:00:00,8681.0
-2012-03-25 02:00:00,8239.0
-2012-03-25 03:00:00,7841.0
-2012-03-25 04:00:00,7722.0
-2012-03-25 05:00:00,7563.0
-2012-03-25 06:00:00,7569.0
-2012-03-25 07:00:00,7623.0
-2012-03-25 08:00:00,7862.0
-2012-03-25 09:00:00,7883.0
-2012-03-25 10:00:00,8243.0
-2012-03-25 11:00:00,8576.0
-2012-03-25 12:00:00,8857.0
-2012-03-25 13:00:00,9046.0
-2012-03-25 14:00:00,9146.0
-2012-03-25 15:00:00,9185.0
-2012-03-25 16:00:00,9176.0
-2012-03-25 17:00:00,9110.0
-2012-03-25 18:00:00,9092.0
-2012-03-25 19:00:00,9066.0
-2012-03-25 20:00:00,9122.0
-2012-03-25 21:00:00,9697.0
-2012-03-25 22:00:00,9825.0
-2012-03-25 23:00:00,9528.0
-2012-03-26 00:00:00,9053.0
-2012-03-24 01:00:00,9288.0
-2012-03-24 02:00:00,8664.0
-2012-03-24 03:00:00,8323.0
-2012-03-24 04:00:00,8043.0
-2012-03-24 05:00:00,7937.0
-2012-03-24 06:00:00,7958.0
-2012-03-24 07:00:00,8163.0
-2012-03-24 08:00:00,8564.0
-2012-03-24 09:00:00,8801.0
-2012-03-24 10:00:00,9255.0
-2012-03-24 11:00:00,9594.0
-2012-03-24 12:00:00,9833.0
-2012-03-24 13:00:00,9857.0
-2012-03-24 14:00:00,9781.0
-2012-03-24 15:00:00,9639.0
-2012-03-24 16:00:00,9508.0
-2012-03-24 17:00:00,9434.0
-2012-03-24 18:00:00,9434.0
-2012-03-24 19:00:00,9382.0
-2012-03-24 20:00:00,9450.0
-2012-03-24 21:00:00,9958.0
-2012-03-24 22:00:00,9954.0
-2012-03-24 23:00:00,9669.0
-2012-03-25 00:00:00,9256.0
-2012-03-23 01:00:00,10170.0
-2012-03-23 02:00:00,9446.0
-2012-03-23 03:00:00,8985.0
-2012-03-23 04:00:00,8611.0
-2012-03-23 05:00:00,8513.0
-2012-03-23 06:00:00,8711.0
-2012-03-23 07:00:00,9273.0
-2012-03-23 08:00:00,10453.0
-2012-03-23 09:00:00,10985.0
-2012-03-23 10:00:00,11400.0
-2012-03-23 11:00:00,11639.0
-2012-03-23 12:00:00,11850.0
-2012-03-23 13:00:00,11937.0
-2012-03-23 14:00:00,11862.0
-2012-03-23 15:00:00,11925.0
-2012-03-23 16:00:00,11775.0
-2012-03-23 17:00:00,11555.0
-2012-03-23 18:00:00,11337.0
-2012-03-23 19:00:00,11128.0
-2012-03-23 20:00:00,11036.0
-2012-03-23 21:00:00,11419.0
-2012-03-23 22:00:00,11164.0
-2012-03-23 23:00:00,10719.0
-2012-03-24 00:00:00,9996.0
-2012-03-22 01:00:00,10360.0
-2012-03-22 02:00:00,9689.0
-2012-03-22 03:00:00,9215.0
-2012-03-22 04:00:00,8975.0
-2012-03-22 05:00:00,8848.0
-2012-03-22 06:00:00,8949.0
-2012-03-22 07:00:00,9567.0
-2012-03-22 08:00:00,10721.0
-2012-03-22 09:00:00,11261.0
-2012-03-22 10:00:00,11842.0
-2012-03-22 11:00:00,12302.0
-2012-03-22 12:00:00,12807.0
-2012-03-22 13:00:00,13112.0
-2012-03-22 14:00:00,13420.0
-2012-03-22 15:00:00,13680.0
-2012-03-22 16:00:00,13583.0
-2012-03-22 17:00:00,13230.0
-2012-03-22 18:00:00,13013.0
-2012-03-22 19:00:00,12750.0
-2012-03-22 20:00:00,12631.0
-2012-03-22 21:00:00,13033.0
-2012-03-22 22:00:00,12716.0
-2012-03-22 23:00:00,12060.0
-2012-03-23 00:00:00,11079.0
-2012-03-21 01:00:00,10341.0
-2012-03-21 02:00:00,9641.0
-2012-03-21 03:00:00,9215.0
-2012-03-21 04:00:00,8910.0
-2012-03-21 05:00:00,8773.0
-2012-03-21 06:00:00,8903.0
-2012-03-21 07:00:00,9559.0
-2012-03-21 08:00:00,10766.0
-2012-03-21 09:00:00,11361.0
-2012-03-21 10:00:00,11941.0
-2012-03-21 11:00:00,12440.0
-2012-03-21 12:00:00,12915.0
-2012-03-21 13:00:00,13317.0
-2012-03-21 14:00:00,13618.0
-2012-03-21 15:00:00,13878.0
-2012-03-21 16:00:00,13958.0
-2012-03-21 17:00:00,13962.0
-2012-03-21 18:00:00,13819.0
-2012-03-21 19:00:00,13519.0
-2012-03-21 20:00:00,13089.0
-2012-03-21 21:00:00,13360.0
-2012-03-21 22:00:00,13149.0
-2012-03-21 23:00:00,12394.0
-2012-03-22 00:00:00,11331.0
-2012-03-20 01:00:00,10035.0
-2012-03-20 02:00:00,9383.0
-2012-03-20 03:00:00,8949.0
-2012-03-20 04:00:00,8683.0
-2012-03-20 05:00:00,8540.0
-2012-03-20 06:00:00,8708.0
-2012-03-20 07:00:00,9329.0
-2012-03-20 08:00:00,10505.0
-2012-03-20 09:00:00,11124.0
-2012-03-20 10:00:00,11537.0
-2012-03-20 11:00:00,11966.0
-2012-03-20 12:00:00,12429.0
-2012-03-20 13:00:00,12718.0
-2012-03-20 14:00:00,12926.0
-2012-03-20 15:00:00,13168.0
-2012-03-20 16:00:00,13287.0
-2012-03-20 17:00:00,13323.0
-2012-03-20 18:00:00,13266.0
-2012-03-20 19:00:00,13084.0
-2012-03-20 20:00:00,12729.0
-2012-03-20 21:00:00,13097.0
-2012-03-20 22:00:00,12996.0
-2012-03-20 23:00:00,12339.0
-2012-03-21 00:00:00,11318.0
-2012-03-19 01:00:00,9303.0
-2012-03-19 02:00:00,8823.0
-2012-03-19 03:00:00,8485.0
-2012-03-19 04:00:00,8264.0
-2012-03-19 05:00:00,8246.0
-2012-03-19 06:00:00,8421.0
-2012-03-19 07:00:00,9171.0
-2012-03-19 08:00:00,10427.0
-2012-03-19 09:00:00,11090.0
-2012-03-19 10:00:00,11553.0
-2012-03-19 11:00:00,11889.0
-2012-03-19 12:00:00,12116.0
-2012-03-19 13:00:00,12170.0
-2012-03-19 14:00:00,12187.0
-2012-03-19 15:00:00,12185.0
-2012-03-19 16:00:00,12151.0
-2012-03-19 17:00:00,12312.0
-2012-03-19 18:00:00,12375.0
-2012-03-19 19:00:00,12203.0
-2012-03-19 20:00:00,11957.0
-2012-03-19 21:00:00,12476.0
-2012-03-19 22:00:00,12383.0
-2012-03-19 23:00:00,11834.0
-2012-03-20 00:00:00,10936.0
-2012-03-18 01:00:00,9258.0
-2012-03-18 02:00:00,8718.0
-2012-03-18 03:00:00,8270.0
-2012-03-18 04:00:00,7947.0
-2012-03-18 05:00:00,7748.0
-2012-03-18 06:00:00,7774.0
-2012-03-18 07:00:00,7824.0
-2012-03-18 08:00:00,8000.0
-2012-03-18 09:00:00,8053.0
-2012-03-18 10:00:00,8412.0
-2012-03-18 11:00:00,8914.0
-2012-03-18 12:00:00,9346.0
-2012-03-18 13:00:00,9683.0
-2012-03-18 14:00:00,9903.0
-2012-03-18 15:00:00,10059.0
-2012-03-18 16:00:00,10197.0
-2012-03-18 17:00:00,10257.0
-2012-03-18 18:00:00,10328.0
-2012-03-18 19:00:00,10328.0
-2012-03-18 20:00:00,10323.0
-2012-03-18 21:00:00,10932.0
-2012-03-18 22:00:00,10981.0
-2012-03-18 23:00:00,10631.0
-2012-03-19 00:00:00,9975.0
-2012-03-17 01:00:00,9701.0
-2012-03-17 02:00:00,9005.0
-2012-03-17 03:00:00,8565.0
-2012-03-17 04:00:00,8294.0
-2012-03-17 05:00:00,8116.0
-2012-03-17 06:00:00,8114.0
-2012-03-17 07:00:00,8253.0
-2012-03-17 08:00:00,8676.0
-2012-03-17 09:00:00,8860.0
-2012-03-17 10:00:00,9429.0
-2012-03-17 11:00:00,9919.0
-2012-03-17 12:00:00,10288.0
-2012-03-17 13:00:00,10499.0
-2012-03-17 14:00:00,10554.0
-2012-03-17 15:00:00,10571.0
-2012-03-17 16:00:00,10542.0
-2012-03-17 17:00:00,10587.0
-2012-03-17 18:00:00,10583.0
-2012-03-17 19:00:00,10522.0
-2012-03-17 20:00:00,10430.0
-2012-03-17 21:00:00,10899.0
-2012-03-17 22:00:00,10849.0
-2012-03-17 23:00:00,10490.0
-2012-03-18 00:00:00,9923.0
-2012-03-16 01:00:00,9545.0
-2012-03-16 02:00:00,8921.0
-2012-03-16 03:00:00,8542.0
-2012-03-16 04:00:00,8303.0
-2012-03-16 05:00:00,8192.0
-2012-03-16 06:00:00,8347.0
-2012-03-16 07:00:00,8911.0
-2012-03-16 08:00:00,10084.0
-2012-03-16 09:00:00,10604.0
-2012-03-16 10:00:00,10911.0
-2012-03-16 11:00:00,11164.0
-2012-03-16 12:00:00,11471.0
-2012-03-16 13:00:00,11700.0
-2012-03-16 14:00:00,11827.0
-2012-03-16 15:00:00,12073.0
-2012-03-16 16:00:00,12094.0
-2012-03-16 17:00:00,12011.0
-2012-03-16 18:00:00,11846.0
-2012-03-16 19:00:00,11606.0
-2012-03-16 20:00:00,11392.0
-2012-03-16 21:00:00,11855.0
-2012-03-16 22:00:00,11721.0
-2012-03-16 23:00:00,11319.0
-2012-03-17 00:00:00,10518.0
-2012-03-15 01:00:00,9757.0
-2012-03-15 02:00:00,9139.0
-2012-03-15 03:00:00,8764.0
-2012-03-15 04:00:00,8504.0
-2012-03-15 05:00:00,8413.0
-2012-03-15 06:00:00,8538.0
-2012-03-15 07:00:00,9137.0
-2012-03-15 08:00:00,10355.0
-2012-03-15 09:00:00,10965.0
-2012-03-15 10:00:00,11337.0
-2012-03-15 11:00:00,11629.0
-2012-03-15 12:00:00,11940.0
-2012-03-15 13:00:00,12111.0
-2012-03-15 14:00:00,12291.0
-2012-03-15 15:00:00,12480.0
-2012-03-15 16:00:00,12550.0
-2012-03-15 17:00:00,12508.0
-2012-03-15 18:00:00,12384.0
-2012-03-15 19:00:00,12126.0
-2012-03-15 20:00:00,11858.0
-2012-03-15 21:00:00,12233.0
-2012-03-15 22:00:00,11960.0
-2012-03-15 23:00:00,11347.0
-2012-03-16 00:00:00,10352.0
-2012-03-14 01:00:00,9327.0
-2012-03-14 02:00:00,8760.0
-2012-03-14 03:00:00,8448.0
-2012-03-14 04:00:00,8240.0
-2012-03-14 05:00:00,8218.0
-2012-03-14 06:00:00,8372.0
-2012-03-14 07:00:00,9040.0
-2012-03-14 08:00:00,10292.0
-2012-03-14 09:00:00,10843.0
-2012-03-14 10:00:00,11104.0
-2012-03-14 11:00:00,11306.0
-2012-03-14 12:00:00,11528.0
-2012-03-14 13:00:00,11634.0
-2012-03-14 14:00:00,11807.0
-2012-03-14 15:00:00,11928.0
-2012-03-14 16:00:00,11955.0
-2012-03-14 17:00:00,11884.0
-2012-03-14 18:00:00,11798.0
-2012-03-14 19:00:00,11612.0
-2012-03-14 20:00:00,11465.0
-2012-03-14 21:00:00,12062.0
-2012-03-14 22:00:00,11966.0
-2012-03-14 23:00:00,11462.0
-2012-03-15 00:00:00,10625.0
-2012-03-13 01:00:00,9401.0
-2012-03-13 02:00:00,8844.0
-2012-03-13 03:00:00,8531.0
-2012-03-13 04:00:00,8305.0
-2012-03-13 05:00:00,8244.0
-2012-03-13 06:00:00,8444.0
-2012-03-13 07:00:00,9086.0
-2012-03-13 08:00:00,10347.0
-2012-03-13 09:00:00,10910.0
-2012-03-13 10:00:00,11055.0
-2012-03-13 11:00:00,11100.0
-2012-03-13 12:00:00,11266.0
-2012-03-13 13:00:00,11328.0
-2012-03-13 14:00:00,11322.0
-2012-03-13 15:00:00,11358.0
-2012-03-13 16:00:00,11257.0
-2012-03-13 17:00:00,11134.0
-2012-03-13 18:00:00,10995.0
-2012-03-13 19:00:00,10854.0
-2012-03-13 20:00:00,10780.0
-2012-03-13 21:00:00,11465.0
-2012-03-13 22:00:00,11368.0
-2012-03-13 23:00:00,10889.0
-2012-03-14 00:00:00,10109.0
-2012-03-12 01:00:00,8814.0
-2012-03-12 02:00:00,8387.0
-2012-03-12 03:00:00,8195.0
-2012-03-12 04:00:00,8070.0
-2012-03-12 05:00:00,8074.0
-2012-03-12 06:00:00,8256.0
-2012-03-12 07:00:00,8934.0
-2012-03-12 08:00:00,10179.0
-2012-03-12 09:00:00,11120.0
-2012-03-12 10:00:00,11246.0
-2012-03-12 11:00:00,11377.0
-2012-03-12 12:00:00,11550.0
-2012-03-12 13:00:00,11581.0
-2012-03-12 14:00:00,11569.0
-2012-03-12 15:00:00,11593.0
-2012-03-12 16:00:00,11454.0
-2012-03-12 17:00:00,11312.0
-2012-03-12 18:00:00,11159.0
-2012-03-12 19:00:00,10972.0
-2012-03-12 20:00:00,10919.0
-2012-03-12 21:00:00,11563.0
-2012-03-12 22:00:00,11475.0
-2012-03-12 23:00:00,10996.0
-2012-03-13 00:00:00,10167.0
-2012-03-11 01:00:00,9158.0
-2012-03-11 02:00:00,8773.0
-2012-03-11 04:00:00,8502.0
-2012-03-11 05:00:00,8387.0
-2012-03-11 06:00:00,8293.0
-2012-03-11 07:00:00,8428.0
-2012-03-11 08:00:00,8674.0
-2012-03-11 09:00:00,8684.0
-2012-03-11 10:00:00,8808.0
-2012-03-11 11:00:00,8953.0
-2012-03-11 12:00:00,9006.0
-2012-03-11 13:00:00,9116.0
-2012-03-11 14:00:00,9068.0
-2012-03-11 15:00:00,9041.0
-2012-03-11 16:00:00,8948.0
-2012-03-11 17:00:00,8944.0
-2012-03-11 18:00:00,8934.0
-2012-03-11 19:00:00,9145.0
-2012-03-11 20:00:00,9452.0
-2012-03-11 21:00:00,10199.0
-2012-03-11 22:00:00,10173.0
-2012-03-11 23:00:00,9925.0
-2012-03-12 00:00:00,9348.0
-2012-03-10 01:00:00,10302.0
-2012-03-10 02:00:00,9838.0
-2012-03-10 03:00:00,9530.0
-2012-03-10 04:00:00,9318.0
-2012-03-10 05:00:00,9257.0
-2012-03-10 06:00:00,9351.0
-2012-03-10 07:00:00,9625.0
-2012-03-10 08:00:00,9819.0
-2012-03-10 09:00:00,10168.0
-2012-03-10 10:00:00,10426.0
-2012-03-10 11:00:00,10597.0
-2012-03-10 12:00:00,10598.0
-2012-03-10 13:00:00,10442.0
-2012-03-10 14:00:00,10209.0
-2012-03-10 15:00:00,9919.0
-2012-03-10 16:00:00,9676.0
-2012-03-10 17:00:00,9523.0
-2012-03-10 18:00:00,9542.0
-2012-03-10 19:00:00,9745.0
-2012-03-10 20:00:00,10601.0
-2012-03-10 21:00:00,10553.0
-2012-03-10 22:00:00,10412.0
-2012-03-10 23:00:00,10106.0
-2012-03-11 00:00:00,9652.0
-2012-03-09 01:00:00,10103.0
-2012-03-09 02:00:00,9609.0
-2012-03-09 03:00:00,9343.0
-2012-03-09 04:00:00,9193.0
-2012-03-09 05:00:00,9213.0
-2012-03-09 06:00:00,9493.0
-2012-03-09 07:00:00,10265.0
-2012-03-09 08:00:00,11179.0
-2012-03-09 09:00:00,11671.0
-2012-03-09 10:00:00,11962.0
-2012-03-09 11:00:00,12024.0
-2012-03-09 12:00:00,12088.0
-2012-03-09 13:00:00,12018.0
-2012-03-09 14:00:00,11902.0
-2012-03-09 15:00:00,11779.0
-2012-03-09 16:00:00,11584.0
-2012-03-09 17:00:00,11394.0
-2012-03-09 18:00:00,11370.0
-2012-03-09 19:00:00,11592.0
-2012-03-09 20:00:00,12328.0
-2012-03-09 21:00:00,12300.0
-2012-03-09 22:00:00,12003.0
-2012-03-09 23:00:00,11671.0
-2012-03-10 00:00:00,11007.0
-2012-03-08 01:00:00,9414.0
-2012-03-08 02:00:00,8935.0
-2012-03-08 03:00:00,8678.0
-2012-03-08 04:00:00,8486.0
-2012-03-08 05:00:00,8454.0
-2012-03-08 06:00:00,8682.0
-2012-03-08 07:00:00,9428.0
-2012-03-08 08:00:00,10664.0
-2012-03-08 09:00:00,11413.0
-2012-03-08 10:00:00,11702.0
-2012-03-08 11:00:00,11756.0
-2012-03-08 12:00:00,11750.0
-2012-03-08 13:00:00,11679.0
-2012-03-08 14:00:00,11584.0
-2012-03-08 15:00:00,11490.0
-2012-03-08 16:00:00,11367.0
-2012-03-08 17:00:00,11330.0
-2012-03-08 18:00:00,11333.0
-2012-03-08 19:00:00,11599.0
-2012-03-08 20:00:00,12314.0
-2012-03-08 21:00:00,12325.0
-2012-03-08 22:00:00,12079.0
-2012-03-08 23:00:00,11588.0
-2012-03-09 00:00:00,10803.0
-2012-03-07 01:00:00,9534.0
-2012-03-07 02:00:00,9040.0
-2012-03-07 03:00:00,8762.0
-2012-03-07 04:00:00,8595.0
-2012-03-07 05:00:00,8574.0
-2012-03-07 06:00:00,8806.0
-2012-03-07 07:00:00,9495.0
-2012-03-07 08:00:00,10507.0
-2012-03-07 09:00:00,11072.0
-2012-03-07 10:00:00,11313.0
-2012-03-07 11:00:00,11408.0
-2012-03-07 12:00:00,11488.0
-2012-03-07 13:00:00,11490.0
-2012-03-07 14:00:00,11456.0
-2012-03-07 15:00:00,11416.0
-2012-03-07 16:00:00,11349.0
-2012-03-07 17:00:00,11248.0
-2012-03-07 18:00:00,11398.0
-2012-03-07 19:00:00,11695.0
-2012-03-07 20:00:00,12044.0
-2012-03-07 21:00:00,11884.0
-2012-03-07 22:00:00,11538.0
-2012-03-07 23:00:00,10952.0
-2012-03-08 00:00:00,10162.0
-2012-03-06 01:00:00,10473.0
-2012-03-06 02:00:00,9989.0
-2012-03-06 03:00:00,9716.0
-2012-03-06 04:00:00,9537.0
-2012-03-06 05:00:00,9524.0
-2012-03-06 06:00:00,9774.0
-2012-03-06 07:00:00,10538.0
-2012-03-06 08:00:00,11516.0
-2012-03-06 09:00:00,11931.0
-2012-03-06 10:00:00,11997.0
-2012-03-06 11:00:00,11915.0
-2012-03-06 12:00:00,11857.0
-2012-03-06 13:00:00,11723.0
-2012-03-06 14:00:00,11644.0
-2012-03-06 15:00:00,11573.0
-2012-03-06 16:00:00,11424.0
-2012-03-06 17:00:00,11210.0
-2012-03-06 18:00:00,11161.0
-2012-03-06 19:00:00,11379.0
-2012-03-06 20:00:00,12001.0
-2012-03-06 21:00:00,11886.0
-2012-03-06 22:00:00,11588.0
-2012-03-06 23:00:00,11007.0
-2012-03-07 00:00:00,10188.0
-2012-03-05 01:00:00,10100.0
-2012-03-05 02:00:00,9792.0
-2012-03-05 03:00:00,9602.0
-2012-03-05 04:00:00,9570.0
-2012-03-05 05:00:00,9625.0
-2012-03-05 06:00:00,9966.0
-2012-03-05 07:00:00,10787.0
-2012-03-05 08:00:00,11750.0
-2012-03-05 09:00:00,12153.0
-2012-03-05 10:00:00,12296.0
-2012-03-05 11:00:00,12336.0
-2012-03-05 12:00:00,12440.0
-2012-03-05 13:00:00,12396.0
-2012-03-05 14:00:00,12252.0
-2012-03-05 15:00:00,12148.0
-2012-03-05 16:00:00,11945.0
-2012-03-05 17:00:00,11839.0
-2012-03-05 18:00:00,11952.0
-2012-03-05 19:00:00,12411.0
-2012-03-05 20:00:00,12930.0
-2012-03-05 21:00:00,12836.0
-2012-03-05 22:00:00,12573.0
-2012-03-05 23:00:00,12058.0
-2012-03-06 00:00:00,11222.0
-2012-03-04 01:00:00,10086.0
-2012-03-04 02:00:00,9643.0
-2012-03-04 03:00:00,9329.0
-2012-03-04 04:00:00,9146.0
-2012-03-04 05:00:00,9065.0
-2012-03-04 06:00:00,8997.0
-2012-03-04 07:00:00,9229.0
-2012-03-04 08:00:00,9364.0
-2012-03-04 09:00:00,9465.0
-2012-03-04 10:00:00,9842.0
-2012-03-04 11:00:00,10071.0
-2012-03-04 12:00:00,10160.0
-2012-03-04 13:00:00,10146.0
-2012-03-04 14:00:00,10153.0
-2012-03-04 15:00:00,10032.0
-2012-03-04 16:00:00,10075.0
-2012-03-04 17:00:00,10158.0
-2012-03-04 18:00:00,10477.0
-2012-03-04 19:00:00,11124.0
-2012-03-04 20:00:00,11721.0
-2012-03-04 21:00:00,11695.0
-2012-03-04 22:00:00,11530.0
-2012-03-04 23:00:00,11161.0
-2012-03-05 00:00:00,10635.0
-2012-03-03 01:00:00,10466.0
-2012-03-03 02:00:00,9897.0
-2012-03-03 03:00:00,9661.0
-2012-03-03 04:00:00,9453.0
-2012-03-03 05:00:00,9374.0
-2012-03-03 06:00:00,9429.0
-2012-03-03 07:00:00,9724.0
-2012-03-03 08:00:00,10122.0
-2012-03-03 09:00:00,10386.0
-2012-03-03 10:00:00,10878.0
-2012-03-03 11:00:00,11174.0
-2012-03-03 12:00:00,11362.0
-2012-03-03 13:00:00,11259.0
-2012-03-03 14:00:00,11159.0
-2012-03-03 15:00:00,11014.0
-2012-03-03 16:00:00,10915.0
-2012-03-03 17:00:00,10828.0
-2012-03-03 18:00:00,10989.0
-2012-03-03 19:00:00,11386.0
-2012-03-03 20:00:00,11831.0
-2012-03-03 21:00:00,11714.0
-2012-03-03 22:00:00,11521.0
-2012-03-03 23:00:00,11197.0
-2012-03-04 00:00:00,10672.0
-2012-03-02 01:00:00,10192.0
-2012-03-02 02:00:00,9686.0
-2012-03-02 03:00:00,9411.0
-2012-03-02 04:00:00,9262.0
-2012-03-02 05:00:00,9192.0
-2012-03-02 06:00:00,9459.0
-2012-03-02 07:00:00,10181.0
-2012-03-02 08:00:00,11203.0
-2012-03-02 09:00:00,11793.0
-2012-03-02 10:00:00,12094.0
-2012-03-02 11:00:00,12294.0
-2012-03-02 12:00:00,12375.0
-2012-03-02 13:00:00,12406.0
-2012-03-02 14:00:00,12331.0
-2012-03-02 15:00:00,12225.0
-2012-03-02 16:00:00,12217.0
-2012-03-02 17:00:00,12322.0
-2012-03-02 18:00:00,12417.0
-2012-03-02 19:00:00,12664.0
-2012-03-02 20:00:00,12878.0
-2012-03-02 21:00:00,12683.0
-2012-03-02 22:00:00,12349.0
-2012-03-02 23:00:00,11825.0
-2012-03-03 00:00:00,11165.0
-2012-03-01 01:00:00,10241.0
-2012-03-01 02:00:00,9707.0
-2012-03-01 03:00:00,9419.0
-2012-03-01 04:00:00,9225.0
-2012-03-01 05:00:00,9199.0
-2012-03-01 06:00:00,9428.0
-2012-03-01 07:00:00,10145.0
-2012-03-01 08:00:00,11342.0
-2012-03-01 09:00:00,11939.0
-2012-03-01 10:00:00,12197.0
-2012-03-01 11:00:00,12315.0
-2012-03-01 12:00:00,12382.0
-2012-03-01 13:00:00,12325.0
-2012-03-01 14:00:00,12295.0
-2012-03-01 15:00:00,12331.0
-2012-03-01 16:00:00,12230.0
-2012-03-01 17:00:00,12112.0
-2012-03-01 18:00:00,12185.0
-2012-03-01 19:00:00,12550.0
-2012-03-01 20:00:00,12771.0
-2012-03-01 21:00:00,12587.0
-2012-03-01 22:00:00,12288.0
-2012-03-01 23:00:00,11757.0
-2012-03-02 00:00:00,10947.0
-2012-02-29 01:00:00,10327.0
-2012-02-29 02:00:00,9826.0
-2012-02-29 03:00:00,9513.0
-2012-02-29 04:00:00,9290.0
-2012-02-29 05:00:00,9243.0
-2012-02-29 06:00:00,9434.0
-2012-02-29 07:00:00,10100.0
-2012-02-29 08:00:00,11176.0
-2012-02-29 09:00:00,11482.0
-2012-02-29 10:00:00,11521.0
-2012-02-29 11:00:00,11541.0
-2012-02-29 12:00:00,11599.0
-2012-02-29 13:00:00,11598.0
-2012-02-29 14:00:00,11504.0
-2012-02-29 15:00:00,11518.0
-2012-02-29 16:00:00,11392.0
-2012-02-29 17:00:00,11425.0
-2012-02-29 18:00:00,11789.0
-2012-02-29 19:00:00,12303.0
-2012-02-29 20:00:00,12665.0
-2012-02-29 21:00:00,12535.0
-2012-02-29 22:00:00,12276.0
-2012-02-29 23:00:00,11809.0
-2012-03-01 00:00:00,10983.0
-2012-02-28 01:00:00,10571.0
-2012-02-28 02:00:00,10115.0
-2012-02-28 03:00:00,9888.0
-2012-02-28 04:00:00,9753.0
-2012-02-28 05:00:00,9739.0
-2012-02-28 06:00:00,9988.0
-2012-02-28 07:00:00,10758.0
-2012-02-28 08:00:00,11837.0
-2012-02-28 09:00:00,12293.0
-2012-02-28 10:00:00,12444.0
-2012-02-28 11:00:00,12519.0
-2012-02-28 12:00:00,12483.0
-2012-02-28 13:00:00,12310.0
-2012-02-28 14:00:00,12288.0
-2012-02-28 15:00:00,12219.0
-2012-02-28 16:00:00,12046.0
-2012-02-28 17:00:00,12009.0
-2012-02-28 18:00:00,12237.0
-2012-02-28 19:00:00,12684.0
-2012-02-28 20:00:00,12947.0
-2012-02-28 21:00:00,12772.0
-2012-02-28 22:00:00,12477.0
-2012-02-28 23:00:00,11921.0
-2012-02-29 00:00:00,11083.0
-2012-02-27 01:00:00,9564.0
-2012-02-27 02:00:00,9196.0
-2012-02-27 03:00:00,9042.0
-2012-02-27 04:00:00,8943.0
-2012-02-27 05:00:00,9075.0
-2012-02-27 06:00:00,9475.0
-2012-02-27 07:00:00,10321.0
-2012-02-27 08:00:00,11495.0
-2012-02-27 09:00:00,12105.0
-2012-02-27 10:00:00,12360.0
-2012-02-27 11:00:00,12532.0
-2012-02-27 12:00:00,12427.0
-2012-02-27 13:00:00,12341.0
-2012-02-27 14:00:00,12224.0
-2012-02-27 15:00:00,12097.0
-2012-02-27 16:00:00,11938.0
-2012-02-27 17:00:00,11839.0
-2012-02-27 18:00:00,11910.0
-2012-02-27 19:00:00,12409.0
-2012-02-27 20:00:00,13003.0
-2012-02-27 21:00:00,12920.0
-2012-02-27 22:00:00,12654.0
-2012-02-27 23:00:00,12133.0
-2012-02-28 00:00:00,11298.0
-2012-02-26 01:00:00,10482.0
-2012-02-26 02:00:00,10102.0
-2012-02-26 03:00:00,9740.0
-2012-02-26 04:00:00,9638.0
-2012-02-26 05:00:00,9570.0
-2012-02-26 06:00:00,9561.0
-2012-02-26 07:00:00,9760.0
-2012-02-26 08:00:00,9868.0
-2012-02-26 09:00:00,9864.0
-2012-02-26 10:00:00,10118.0
-2012-02-26 11:00:00,10184.0
-2012-02-26 12:00:00,10212.0
-2012-02-26 13:00:00,10188.0
-2012-02-26 14:00:00,10059.0
-2012-02-26 15:00:00,9888.0
-2012-02-26 16:00:00,9769.0
-2012-02-26 17:00:00,9679.0
-2012-02-26 18:00:00,9839.0
-2012-02-26 19:00:00,10431.0
-2012-02-26 20:00:00,11252.0
-2012-02-26 21:00:00,11162.0
-2012-02-26 22:00:00,10948.0
-2012-02-26 23:00:00,10605.0
-2012-02-27 00:00:00,10042.0
-2012-02-25 01:00:00,10882.0
-2012-02-25 02:00:00,10356.0
-2012-02-25 03:00:00,10046.0
-2012-02-25 04:00:00,9850.0
-2012-02-25 05:00:00,9859.0
-2012-02-25 06:00:00,9997.0
-2012-02-25 07:00:00,10290.0
-2012-02-25 08:00:00,10678.0
-2012-02-25 09:00:00,10924.0
-2012-02-25 10:00:00,11146.0
-2012-02-25 11:00:00,11287.0
-2012-02-25 12:00:00,11310.0
-2012-02-25 13:00:00,11229.0
-2012-02-25 14:00:00,11003.0
-2012-02-25 15:00:00,10775.0
-2012-02-25 16:00:00,10533.0
-2012-02-25 17:00:00,10485.0
-2012-02-25 18:00:00,10612.0
-2012-02-25 19:00:00,11223.0
-2012-02-25 20:00:00,11985.0
-2012-02-25 21:00:00,11936.0
-2012-02-25 22:00:00,11823.0
-2012-02-25 23:00:00,11496.0
-2012-02-26 00:00:00,11040.0
-2012-02-24 01:00:00,10532.0
-2012-02-24 02:00:00,10029.0
-2012-02-24 03:00:00,9758.0
-2012-02-24 04:00:00,9635.0
-2012-02-24 05:00:00,9635.0
-2012-02-24 06:00:00,9894.0
-2012-02-24 07:00:00,10547.0
-2012-02-24 08:00:00,11608.0
-2012-02-24 09:00:00,12135.0
-2012-02-24 10:00:00,12377.0
-2012-02-24 11:00:00,12463.0
-2012-02-24 12:00:00,12559.0
-2012-02-24 13:00:00,12511.0
-2012-02-24 14:00:00,12454.0
-2012-02-24 15:00:00,12368.0
-2012-02-24 16:00:00,12265.0
-2012-02-24 17:00:00,12256.0
-2012-02-24 18:00:00,12426.0
-2012-02-24 19:00:00,12913.0
-2012-02-24 20:00:00,13154.0
-2012-02-24 21:00:00,12935.0
-2012-02-24 22:00:00,12664.0
-2012-02-24 23:00:00,12215.0
-2012-02-25 00:00:00,11538.0
-2012-02-23 01:00:00,10182.0
-2012-02-23 02:00:00,9700.0
-2012-02-23 03:00:00,9404.0
-2012-02-23 04:00:00,9271.0
-2012-02-23 05:00:00,9259.0
-2012-02-23 06:00:00,9529.0
-2012-02-23 07:00:00,10331.0
-2012-02-23 08:00:00,11490.0
-2012-02-23 09:00:00,11989.0
-2012-02-23 10:00:00,12255.0
-2012-02-23 11:00:00,12330.0
-2012-02-23 12:00:00,12461.0
-2012-02-23 13:00:00,12446.0
-2012-02-23 14:00:00,12495.0
-2012-02-23 15:00:00,12552.0
-2012-02-23 16:00:00,12483.0
-2012-02-23 17:00:00,12496.0
-2012-02-23 18:00:00,12709.0
-2012-02-23 19:00:00,13144.0
-2012-02-23 20:00:00,13159.0
-2012-02-23 21:00:00,12925.0
-2012-02-23 22:00:00,12620.0
-2012-02-23 23:00:00,12085.0
-2012-02-24 00:00:00,11293.0
-2012-02-22 01:00:00,10331.0
-2012-02-22 02:00:00,9828.0
-2012-02-22 03:00:00,9547.0
-2012-02-22 04:00:00,9377.0
-2012-02-22 05:00:00,9357.0
-2012-02-22 06:00:00,9547.0
-2012-02-22 07:00:00,10251.0
-2012-02-22 08:00:00,11530.0
-2012-02-22 09:00:00,12048.0
-2012-02-22 10:00:00,12197.0
-2012-02-22 11:00:00,12266.0
-2012-02-22 12:00:00,12296.0
-2012-02-22 13:00:00,12194.0
-2012-02-22 14:00:00,12021.0
-2012-02-22 15:00:00,11982.0
-2012-02-22 16:00:00,11875.0
-2012-02-22 17:00:00,11825.0
-2012-02-22 18:00:00,11986.0
-2012-02-22 19:00:00,12433.0
-2012-02-22 20:00:00,12674.0
-2012-02-22 21:00:00,12475.0
-2012-02-22 22:00:00,12194.0
-2012-02-22 23:00:00,11714.0
-2012-02-23 00:00:00,10911.0
-2012-02-21 01:00:00,10264.0
-2012-02-21 02:00:00,9768.0
-2012-02-21 03:00:00,9479.0
-2012-02-21 04:00:00,9327.0
-2012-02-21 05:00:00,9330.0
-2012-02-21 06:00:00,9631.0
-2012-02-21 07:00:00,10431.0
-2012-02-21 08:00:00,11632.0
-2012-02-21 09:00:00,12170.0
-2012-02-21 10:00:00,12395.0
-2012-02-21 11:00:00,12467.0
-2012-02-21 12:00:00,12537.0
-2012-02-21 13:00:00,12550.0
-2012-02-21 14:00:00,12514.0
-2012-02-21 15:00:00,12603.0
-2012-02-21 16:00:00,12493.0
-2012-02-21 17:00:00,12301.0
-2012-02-21 18:00:00,12244.0
-2012-02-21 19:00:00,12670.0
-2012-02-21 20:00:00,12967.0
-2012-02-21 21:00:00,12795.0
-2012-02-21 22:00:00,12493.0
-2012-02-21 23:00:00,11978.0
-2012-02-22 00:00:00,11103.0
-2012-02-20 01:00:00,9966.0
-2012-02-20 02:00:00,9663.0
-2012-02-20 03:00:00,9461.0
-2012-02-20 04:00:00,9403.0
-2012-02-20 05:00:00,9443.0
-2012-02-20 06:00:00,9744.0
-2012-02-20 07:00:00,10389.0
-2012-02-20 08:00:00,11305.0
-2012-02-20 09:00:00,11678.0
-2012-02-20 10:00:00,11925.0
-2012-02-20 11:00:00,12015.0
-2012-02-20 12:00:00,12060.0
-2012-02-20 13:00:00,11970.0
-2012-02-20 14:00:00,11835.0
-2012-02-20 15:00:00,11752.0
-2012-02-20 16:00:00,11592.0
-2012-02-20 17:00:00,11536.0
-2012-02-20 18:00:00,11755.0
-2012-02-20 19:00:00,12490.0
-2012-02-20 20:00:00,12783.0
-2012-02-20 21:00:00,12633.0
-2012-02-20 22:00:00,12339.0
-2012-02-20 23:00:00,11836.0
-2012-02-21 00:00:00,11031.0
-2012-02-19 01:00:00,9976.0
-2012-02-19 02:00:00,9549.0
-2012-02-19 03:00:00,9289.0
-2012-02-19 04:00:00,9176.0
-2012-02-19 05:00:00,9084.0
-2012-02-19 06:00:00,9146.0
-2012-02-19 07:00:00,9297.0
-2012-02-19 08:00:00,9559.0
-2012-02-19 09:00:00,9519.0
-2012-02-19 10:00:00,9681.0
-2012-02-19 11:00:00,9809.0
-2012-02-19 12:00:00,9903.0
-2012-02-19 13:00:00,9879.0
-2012-02-19 14:00:00,9872.0
-2012-02-19 15:00:00,9738.0
-2012-02-19 16:00:00,9682.0
-2012-02-19 17:00:00,9618.0
-2012-02-19 18:00:00,9862.0
-2012-02-19 19:00:00,10616.0
-2012-02-19 20:00:00,11381.0
-2012-02-19 21:00:00,11321.0
-2012-02-19 22:00:00,11200.0
-2012-02-19 23:00:00,10899.0
-2012-02-20 00:00:00,10447.0
-2012-02-18 01:00:00,10155.0
-2012-02-18 02:00:00,9654.0
-2012-02-18 03:00:00,9390.0
-2012-02-18 04:00:00,9204.0
-2012-02-18 05:00:00,9178.0
-2012-02-18 06:00:00,9208.0
-2012-02-18 07:00:00,9554.0
-2012-02-18 08:00:00,10047.0
-2012-02-18 09:00:00,10213.0
-2012-02-18 10:00:00,10539.0
-2012-02-18 11:00:00,10687.0
-2012-02-18 12:00:00,10737.0
-2012-02-18 13:00:00,10661.0
-2012-02-18 14:00:00,10496.0
-2012-02-18 15:00:00,10271.0
-2012-02-18 16:00:00,10064.0
-2012-02-18 17:00:00,9985.0
-2012-02-18 18:00:00,10168.0
-2012-02-18 19:00:00,10833.0
-2012-02-18 20:00:00,11439.0
-2012-02-18 21:00:00,11353.0
-2012-02-18 22:00:00,11245.0
-2012-02-18 23:00:00,10955.0
-2012-02-19 00:00:00,10473.0
-2012-02-17 01:00:00,10429.0
-2012-02-17 02:00:00,9962.0
-2012-02-17 03:00:00,9629.0
-2012-02-17 04:00:00,9498.0
-2012-02-17 05:00:00,9506.0
-2012-02-17 06:00:00,9778.0
-2012-02-17 07:00:00,10505.0
-2012-02-17 08:00:00,11702.0
-2012-02-17 09:00:00,12051.0
-2012-02-17 10:00:00,12125.0
-2012-02-17 11:00:00,12073.0
-2012-02-17 12:00:00,12133.0
-2012-02-17 13:00:00,12016.0
-2012-02-17 14:00:00,11907.0
-2012-02-17 15:00:00,11785.0
-2012-02-17 16:00:00,11601.0
-2012-02-17 17:00:00,11455.0
-2012-02-17 18:00:00,11580.0
-2012-02-17 19:00:00,12086.0
-2012-02-17 20:00:00,12332.0
-2012-02-17 21:00:00,12133.0
-2012-02-17 22:00:00,11823.0
-2012-02-17 23:00:00,11488.0
-2012-02-18 00:00:00,10815.0
-2012-02-16 01:00:00,10323.0
-2012-02-16 02:00:00,9800.0
-2012-02-16 03:00:00,9489.0
-2012-02-16 04:00:00,9249.0
-2012-02-16 05:00:00,9243.0
-2012-02-16 06:00:00,9483.0
-2012-02-16 07:00:00,10216.0
-2012-02-16 08:00:00,11442.0
-2012-02-16 09:00:00,11946.0
-2012-02-16 10:00:00,12167.0
-2012-02-16 11:00:00,12138.0
-2012-02-16 12:00:00,12125.0
-2012-02-16 13:00:00,11993.0
-2012-02-16 14:00:00,11901.0
-2012-02-16 15:00:00,11886.0
-2012-02-16 16:00:00,11714.0
-2012-02-16 17:00:00,11573.0
-2012-02-16 18:00:00,11654.0
-2012-02-16 19:00:00,12290.0
-2012-02-16 20:00:00,12769.0
-2012-02-16 21:00:00,12700.0
-2012-02-16 22:00:00,12438.0
-2012-02-16 23:00:00,11987.0
-2012-02-17 00:00:00,11189.0
-2012-02-15 01:00:00,10558.0
-2012-02-15 02:00:00,10022.0
-2012-02-15 03:00:00,9769.0
-2012-02-15 04:00:00,9606.0
-2012-02-15 05:00:00,9580.0
-2012-02-15 06:00:00,9837.0
-2012-02-15 07:00:00,10575.0
-2012-02-15 08:00:00,11766.0
-2012-02-15 09:00:00,12206.0
-2012-02-15 10:00:00,12308.0
-2012-02-15 11:00:00,12189.0
-2012-02-15 12:00:00,12232.0
-2012-02-15 13:00:00,12239.0
-2012-02-15 14:00:00,12211.0
-2012-02-15 15:00:00,12304.0
-2012-02-15 16:00:00,12245.0
-2012-02-15 17:00:00,12295.0
-2012-02-15 18:00:00,12539.0
-2012-02-15 19:00:00,13010.0
-2012-02-15 20:00:00,13010.0
-2012-02-15 21:00:00,12810.0
-2012-02-15 22:00:00,12539.0
-2012-02-15 23:00:00,12047.0
-2012-02-16 00:00:00,11167.0
-2012-02-14 01:00:00,10952.0
-2012-02-14 02:00:00,10435.0
-2012-02-14 03:00:00,10085.0
-2012-02-14 04:00:00,9926.0
-2012-02-14 05:00:00,9896.0
-2012-02-14 06:00:00,10144.0
-2012-02-14 07:00:00,10870.0
-2012-02-14 08:00:00,12085.0
-2012-02-14 09:00:00,12565.0
-2012-02-14 10:00:00,12730.0
-2012-02-14 11:00:00,12794.0
-2012-02-14 12:00:00,12835.0
-2012-02-14 13:00:00,12780.0
-2012-02-14 14:00:00,12658.0
-2012-02-14 15:00:00,12651.0
-2012-02-14 16:00:00,12577.0
-2012-02-14 17:00:00,12570.0
-2012-02-14 18:00:00,12773.0
-2012-02-14 19:00:00,13235.0
-2012-02-14 20:00:00,13211.0
-2012-02-14 21:00:00,13001.0
-2012-02-14 22:00:00,12695.0
-2012-02-14 23:00:00,12128.0
-2012-02-15 00:00:00,11291.0
-2012-02-13 01:00:00,10471.0
-2012-02-13 02:00:00,10098.0
-2012-02-13 03:00:00,9944.0
-2012-02-13 04:00:00,9945.0
-2012-02-13 05:00:00,9940.0
-2012-02-13 06:00:00,10279.0
-2012-02-13 07:00:00,11144.0
-2012-02-13 08:00:00,12344.0
-2012-02-13 09:00:00,12883.0
-2012-02-13 10:00:00,13114.0
-2012-02-13 11:00:00,13186.0
-2012-02-13 12:00:00,13221.0
-2012-02-13 13:00:00,13144.0
-2012-02-13 14:00:00,13049.0
-2012-02-13 15:00:00,12993.0
-2012-02-13 16:00:00,12835.0
-2012-02-13 17:00:00,12720.0
-2012-02-13 18:00:00,12890.0
-2012-02-13 19:00:00,13513.0
-2012-02-13 20:00:00,13595.0
-2012-02-13 21:00:00,13435.0
-2012-02-13 22:00:00,13132.0
-2012-02-13 23:00:00,12596.0
-2012-02-14 00:00:00,11762.0
-2012-02-12 01:00:00,11294.0
-2012-02-12 02:00:00,10869.0
-2012-02-12 03:00:00,10548.0
-2012-02-12 04:00:00,10354.0
-2012-02-12 05:00:00,10323.0
-2012-02-12 06:00:00,10305.0
-2012-02-12 07:00:00,10479.0
-2012-02-12 08:00:00,10705.0
-2012-02-12 09:00:00,10670.0
-2012-02-12 10:00:00,10788.0
-2012-02-12 11:00:00,10852.0
-2012-02-12 12:00:00,10942.0
-2012-02-12 13:00:00,10885.0
-2012-02-12 14:00:00,10792.0
-2012-02-12 15:00:00,10611.0
-2012-02-12 16:00:00,10474.0
-2012-02-12 17:00:00,10419.0
-2012-02-12 18:00:00,10636.0
-2012-02-12 19:00:00,11546.0
-2012-02-12 20:00:00,12080.0
-2012-02-12 21:00:00,12060.0
-2012-02-12 22:00:00,11865.0
-2012-02-12 23:00:00,11548.0
-2012-02-13 00:00:00,11004.0
-2012-02-11 01:00:00,11664.0
-2012-02-11 02:00:00,11258.0
-2012-02-11 03:00:00,10932.0
-2012-02-11 04:00:00,10797.0
-2012-02-11 05:00:00,10684.0
-2012-02-11 06:00:00,10822.0
-2012-02-11 07:00:00,11134.0
-2012-02-11 08:00:00,11629.0
-2012-02-11 09:00:00,11773.0
-2012-02-11 10:00:00,12031.0
-2012-02-11 11:00:00,12144.0
-2012-02-11 12:00:00,12211.0
-2012-02-11 13:00:00,12077.0
-2012-02-11 14:00:00,11970.0
-2012-02-11 15:00:00,11733.0
-2012-02-11 16:00:00,11571.0
-2012-02-11 17:00:00,11510.0
-2012-02-11 18:00:00,11708.0
-2012-02-11 19:00:00,12525.0
-2012-02-11 20:00:00,12957.0
-2012-02-11 21:00:00,12874.0
-2012-02-11 22:00:00,12679.0
-2012-02-11 23:00:00,12373.0
-2012-02-12 00:00:00,11830.0
-2012-02-10 01:00:00,10717.0
-2012-02-10 02:00:00,10223.0
-2012-02-10 03:00:00,9924.0
-2012-02-10 04:00:00,9765.0
-2012-02-10 05:00:00,9721.0
-2012-02-10 06:00:00,9945.0
-2012-02-10 07:00:00,10624.0
-2012-02-10 08:00:00,11864.0
-2012-02-10 09:00:00,12538.0
-2012-02-10 10:00:00,12700.0
-2012-02-10 11:00:00,12756.0
-2012-02-10 12:00:00,12868.0
-2012-02-10 13:00:00,12870.0
-2012-02-10 14:00:00,12832.0
-2012-02-10 15:00:00,12882.0
-2012-02-10 16:00:00,12861.0
-2012-02-10 17:00:00,12866.0
-2012-02-10 18:00:00,13118.0
-2012-02-10 19:00:00,13716.0
-2012-02-10 20:00:00,13890.0
-2012-02-10 21:00:00,13737.0
-2012-02-10 22:00:00,13484.0
-2012-02-10 23:00:00,13089.0
-2012-02-11 00:00:00,12403.0
-2012-02-09 01:00:00,10875.0
-2012-02-09 02:00:00,10395.0
-2012-02-09 03:00:00,10161.0
-2012-02-09 04:00:00,10005.0
-2012-02-09 05:00:00,10045.0
-2012-02-09 06:00:00,10328.0
-2012-02-09 07:00:00,11119.0
-2012-02-09 08:00:00,12382.0
-2012-02-09 09:00:00,12790.0
-2012-02-09 10:00:00,12806.0
-2012-02-09 11:00:00,12740.0
-2012-02-09 12:00:00,12727.0
-2012-02-09 13:00:00,12622.0
-2012-02-09 14:00:00,12532.0
-2012-02-09 15:00:00,12432.0
-2012-02-09 16:00:00,12230.0
-2012-02-09 17:00:00,12157.0
-2012-02-09 18:00:00,12361.0
-2012-02-09 19:00:00,13182.0
-2012-02-09 20:00:00,13415.0
-2012-02-09 21:00:00,13247.0
-2012-02-09 22:00:00,12916.0
-2012-02-09 23:00:00,12365.0
-2012-02-10 00:00:00,11484.0
-2012-02-08 01:00:00,10778.0
-2012-02-08 02:00:00,10279.0
-2012-02-08 03:00:00,9995.0
-2012-02-08 04:00:00,9833.0
-2012-02-08 05:00:00,9814.0
-2012-02-08 06:00:00,10089.0
-2012-02-08 07:00:00,10840.0
-2012-02-08 08:00:00,12095.0
-2012-02-08 09:00:00,12616.0
-2012-02-08 10:00:00,12818.0
-2012-02-08 11:00:00,12800.0
-2012-02-08 12:00:00,12700.0
-2012-02-08 13:00:00,12544.0
-2012-02-08 14:00:00,12365.0
-2012-02-08 15:00:00,12337.0
-2012-02-08 16:00:00,12141.0
-2012-02-08 17:00:00,12068.0
-2012-02-08 18:00:00,12220.0
-2012-02-08 19:00:00,13022.0
-2012-02-08 20:00:00,13297.0
-2012-02-08 21:00:00,13170.0
-2012-02-08 22:00:00,12917.0
-2012-02-08 23:00:00,12432.0
-2012-02-09 00:00:00,11631.0
-2012-02-07 01:00:00,10613.0
-2012-02-07 02:00:00,10090.0
-2012-02-07 03:00:00,9807.0
-2012-02-07 04:00:00,9633.0
-2012-02-07 05:00:00,9618.0
-2012-02-07 06:00:00,9870.0
-2012-02-07 07:00:00,10593.0
-2012-02-07 08:00:00,11825.0
-2012-02-07 09:00:00,12442.0
-2012-02-07 10:00:00,12653.0
-2012-02-07 11:00:00,12830.0
-2012-02-07 12:00:00,12944.0
-2012-02-07 13:00:00,12947.0
-2012-02-07 14:00:00,12875.0
-2012-02-07 15:00:00,12895.0
-2012-02-07 16:00:00,12782.0
-2012-02-07 17:00:00,12832.0
-2012-02-07 18:00:00,13040.0
-2012-02-07 19:00:00,13599.0
-2012-02-07 20:00:00,13536.0
-2012-02-07 21:00:00,13296.0
-2012-02-07 22:00:00,12963.0
-2012-02-07 23:00:00,12421.0
-2012-02-08 00:00:00,11543.0
-2012-02-06 01:00:00,9696.0
-2012-02-06 02:00:00,9333.0
-2012-02-06 03:00:00,9158.0
-2012-02-06 04:00:00,9062.0
-2012-02-06 05:00:00,9209.0
-2012-02-06 06:00:00,9510.0
-2012-02-06 07:00:00,10360.0
-2012-02-06 08:00:00,11600.0
-2012-02-06 09:00:00,12341.0
-2012-02-06 10:00:00,12534.0
-2012-02-06 11:00:00,12660.0
-2012-02-06 12:00:00,12752.0
-2012-02-06 13:00:00,12704.0
-2012-02-06 14:00:00,12606.0
-2012-02-06 15:00:00,12619.0
-2012-02-06 16:00:00,12514.0
-2012-02-06 17:00:00,12515.0
-2012-02-06 18:00:00,12778.0
-2012-02-06 19:00:00,13422.0
-2012-02-06 20:00:00,13453.0
-2012-02-06 21:00:00,13252.0
-2012-02-06 22:00:00,12884.0
-2012-02-06 23:00:00,12294.0
-2012-02-07 00:00:00,11411.0
-2012-02-05 01:00:00,9831.0
-2012-02-05 02:00:00,9460.0
-2012-02-05 03:00:00,9142.0
-2012-02-05 04:00:00,8975.0
-2012-02-05 05:00:00,8962.0
-2012-02-05 06:00:00,8985.0
-2012-02-05 07:00:00,9124.0
-2012-02-05 08:00:00,9338.0
-2012-02-05 09:00:00,9385.0
-2012-02-05 10:00:00,9622.0
-2012-02-05 11:00:00,9825.0
-2012-02-05 12:00:00,9932.0
-2012-02-05 13:00:00,9988.0
-2012-02-05 14:00:00,9963.0
-2012-02-05 15:00:00,9833.0
-2012-02-05 16:00:00,9757.0
-2012-02-05 17:00:00,9653.0
-2012-02-05 18:00:00,9907.0
-2012-02-05 19:00:00,10811.0
-2012-02-05 20:00:00,11068.0
-2012-02-05 21:00:00,11021.0
-2012-02-05 22:00:00,10887.0
-2012-02-05 23:00:00,10699.0
-2012-02-06 00:00:00,10234.0
-2012-02-04 01:00:00,10328.0
-2012-02-04 02:00:00,9812.0
-2012-02-04 03:00:00,9455.0
-2012-02-04 04:00:00,9257.0
-2012-02-04 05:00:00,9139.0
-2012-02-04 06:00:00,9156.0
-2012-02-04 07:00:00,9396.0
-2012-02-04 08:00:00,9913.0
-2012-02-04 09:00:00,10216.0
-2012-02-04 10:00:00,10595.0
-2012-02-04 11:00:00,10858.0
-2012-02-04 12:00:00,10966.0
-2012-02-04 13:00:00,10823.0
-2012-02-04 14:00:00,10634.0
-2012-02-04 15:00:00,10411.0
-2012-02-04 16:00:00,10319.0
-2012-02-04 17:00:00,10287.0
-2012-02-04 18:00:00,10585.0
-2012-02-04 19:00:00,11329.0
-2012-02-04 20:00:00,11520.0
-2012-02-04 21:00:00,11342.0
-2012-02-04 22:00:00,11200.0
-2012-02-04 23:00:00,10880.0
-2012-02-05 00:00:00,10425.0
-2012-02-03 01:00:00,10174.0
-2012-02-03 02:00:00,9658.0
-2012-02-03 03:00:00,9393.0
-2012-02-03 04:00:00,9217.0
-2012-02-03 05:00:00,9189.0
-2012-02-03 06:00:00,9446.0
-2012-02-03 07:00:00,10164.0
-2012-02-03 08:00:00,11370.0
-2012-02-03 09:00:00,11981.0
-2012-02-03 10:00:00,12190.0
-2012-02-03 11:00:00,12285.0
-2012-02-03 12:00:00,12338.0
-2012-02-03 13:00:00,12265.0
-2012-02-03 14:00:00,12168.0
-2012-02-03 15:00:00,12158.0
-2012-02-03 16:00:00,12059.0
-2012-02-03 17:00:00,12052.0
-2012-02-03 18:00:00,12311.0
-2012-02-03 19:00:00,12879.0
-2012-02-03 20:00:00,12758.0
-2012-02-03 21:00:00,12470.0
-2012-02-03 22:00:00,12189.0
-2012-02-03 23:00:00,11716.0
-2012-02-04 00:00:00,11052.0
-2012-02-02 01:00:00,10167.0
-2012-02-02 02:00:00,9675.0
-2012-02-02 03:00:00,9425.0
-2012-02-02 04:00:00,9268.0
-2012-02-02 05:00:00,9244.0
-2012-02-02 06:00:00,9459.0
-2012-02-02 07:00:00,10192.0
-2012-02-02 08:00:00,11407.0
-2012-02-02 09:00:00,12032.0
-2012-02-02 10:00:00,12170.0
-2012-02-02 11:00:00,12234.0
-2012-02-02 12:00:00,12272.0
-2012-02-02 13:00:00,12142.0
-2012-02-02 14:00:00,12033.0
-2012-02-02 15:00:00,11926.0
-2012-02-02 16:00:00,11765.0
-2012-02-02 17:00:00,11710.0
-2012-02-02 18:00:00,11941.0
-2012-02-02 19:00:00,12676.0
-2012-02-02 20:00:00,12721.0
-2012-02-02 21:00:00,12562.0
-2012-02-02 22:00:00,12234.0
-2012-02-02 23:00:00,11770.0
-2012-02-03 00:00:00,10941.0
-2012-02-01 01:00:00,9792.0
-2012-02-01 02:00:00,9338.0
-2012-02-01 03:00:00,9077.0
-2012-02-01 04:00:00,8916.0
-2012-02-01 05:00:00,8944.0
-2012-02-01 06:00:00,9208.0
-2012-02-01 07:00:00,9977.0
-2012-02-01 08:00:00,11279.0
-2012-02-01 09:00:00,11918.0
-2012-02-01 10:00:00,12082.0
-2012-02-01 11:00:00,12114.0
-2012-02-01 12:00:00,12057.0
-2012-02-01 13:00:00,11919.0
-2012-02-01 14:00:00,11741.0
-2012-02-01 15:00:00,11690.0
-2012-02-01 16:00:00,11557.0
-2012-02-01 17:00:00,11524.0
-2012-02-01 18:00:00,11768.0
-2012-02-01 19:00:00,12617.0
-2012-02-01 20:00:00,12684.0
-2012-02-01 21:00:00,12539.0
-2012-02-01 22:00:00,12262.0
-2012-02-01 23:00:00,11755.0
-2012-02-02 00:00:00,10923.0
-2012-01-31 01:00:00,10155.0
-2012-01-31 02:00:00,9649.0
-2012-01-31 03:00:00,9333.0
-2012-01-31 04:00:00,9177.0
-2012-01-31 05:00:00,9148.0
-2012-01-31 06:00:00,9380.0
-2012-01-31 07:00:00,10108.0
-2012-01-31 08:00:00,11375.0
-2012-01-31 09:00:00,11778.0
-2012-01-31 10:00:00,11821.0
-2012-01-31 11:00:00,11793.0
-2012-01-31 12:00:00,11792.0
-2012-01-31 13:00:00,11787.0
-2012-01-31 14:00:00,11727.0
-2012-01-31 15:00:00,11751.0
-2012-01-31 16:00:00,11674.0
-2012-01-31 17:00:00,11686.0
-2012-01-31 18:00:00,11962.0
-2012-01-31 19:00:00,12531.0
-2012-01-31 20:00:00,12407.0
-2012-01-31 21:00:00,12194.0
-2012-01-31 22:00:00,11843.0
-2012-01-31 23:00:00,11323.0
-2012-02-01 00:00:00,10515.0
-2012-01-30 01:00:00,10430.0
-2012-01-30 02:00:00,10059.0
-2012-01-30 03:00:00,9865.0
-2012-01-30 04:00:00,9752.0
-2012-01-30 05:00:00,9770.0
-2012-01-30 06:00:00,10084.0
-2012-01-30 07:00:00,10863.0
-2012-01-30 08:00:00,12167.0
-2012-01-30 09:00:00,12845.0
-2012-01-30 10:00:00,13019.0
-2012-01-30 11:00:00,12996.0
-2012-01-30 12:00:00,12936.0
-2012-01-30 13:00:00,12744.0
-2012-01-30 14:00:00,12516.0
-2012-01-30 15:00:00,12295.0
-2012-01-30 16:00:00,11988.0
-2012-01-30 17:00:00,11862.0
-2012-01-30 18:00:00,12009.0
-2012-01-30 19:00:00,12834.0
-2012-01-30 20:00:00,12920.0
-2012-01-30 21:00:00,12701.0
-2012-01-30 22:00:00,12381.0
-2012-01-30 23:00:00,11834.0
-2012-01-31 00:00:00,10923.0
-2012-01-29 01:00:00,10382.0
-2012-01-29 02:00:00,9925.0
-2012-01-29 03:00:00,9666.0
-2012-01-29 04:00:00,9413.0
-2012-01-29 05:00:00,9391.0
-2012-01-29 06:00:00,9377.0
-2012-01-29 07:00:00,9522.0
-2012-01-29 08:00:00,9828.0
-2012-01-29 09:00:00,9977.0
-2012-01-29 10:00:00,10254.0
-2012-01-29 11:00:00,10534.0
-2012-01-29 12:00:00,10606.0
-2012-01-29 13:00:00,10652.0
-2012-01-29 14:00:00,10561.0
-2012-01-29 15:00:00,10435.0
-2012-01-29 16:00:00,10338.0
-2012-01-29 17:00:00,10386.0
-2012-01-29 18:00:00,10787.0
-2012-01-29 19:00:00,11904.0
-2012-01-29 20:00:00,12157.0
-2012-01-29 21:00:00,12125.0
-2012-01-29 22:00:00,11942.0
-2012-01-29 23:00:00,11594.0
-2012-01-30 00:00:00,11020.0
-2012-01-28 01:00:00,10522.0
-2012-01-28 02:00:00,9983.0
-2012-01-28 03:00:00,9702.0
-2012-01-28 04:00:00,9478.0
-2012-01-28 05:00:00,9413.0
-2012-01-28 06:00:00,9482.0
-2012-01-28 07:00:00,9824.0
-2012-01-28 08:00:00,10406.0
-2012-01-28 09:00:00,10653.0
-2012-01-28 10:00:00,10931.0
-2012-01-28 11:00:00,11085.0
-2012-01-28 12:00:00,11205.0
-2012-01-28 13:00:00,11163.0
-2012-01-28 14:00:00,11081.0
-2012-01-28 15:00:00,10842.0
-2012-01-28 16:00:00,10701.0
-2012-01-28 17:00:00,10657.0
-2012-01-28 18:00:00,11006.0
-2012-01-28 19:00:00,11938.0
-2012-01-28 20:00:00,12103.0
-2012-01-28 21:00:00,11969.0
-2012-01-28 22:00:00,11746.0
-2012-01-28 23:00:00,11432.0
-2012-01-29 00:00:00,10903.0
-2012-01-27 01:00:00,10551.0
-2012-01-27 02:00:00,10086.0
-2012-01-27 03:00:00,9775.0
-2012-01-27 04:00:00,9595.0
-2012-01-27 05:00:00,9560.0
-2012-01-27 06:00:00,9812.0
-2012-01-27 07:00:00,10471.0
-2012-01-27 08:00:00,11731.0
-2012-01-27 09:00:00,12148.0
-2012-01-27 10:00:00,12186.0
-2012-01-27 11:00:00,12172.0
-2012-01-27 12:00:00,12160.0
-2012-01-27 13:00:00,12049.0
-2012-01-27 14:00:00,11907.0
-2012-01-27 15:00:00,11849.0
-2012-01-27 16:00:00,11658.0
-2012-01-27 17:00:00,11621.0
-2012-01-27 18:00:00,12004.0
-2012-01-27 19:00:00,12716.0
-2012-01-27 20:00:00,12666.0
-2012-01-27 21:00:00,12411.0
-2012-01-27 22:00:00,12138.0
-2012-01-27 23:00:00,11798.0
-2012-01-28 00:00:00,11125.0
-2012-01-26 01:00:00,10694.0
-2012-01-26 02:00:00,10187.0
-2012-01-26 03:00:00,9897.0
-2012-01-26 04:00:00,9703.0
-2012-01-26 05:00:00,9698.0
-2012-01-26 06:00:00,9932.0
-2012-01-26 07:00:00,10636.0
-2012-01-26 08:00:00,11906.0
-2012-01-26 09:00:00,12512.0
-2012-01-26 10:00:00,12597.0
-2012-01-26 11:00:00,12692.0
-2012-01-26 12:00:00,12787.0
-2012-01-26 13:00:00,12730.0
-2012-01-26 14:00:00,12638.0
-2012-01-26 15:00:00,12580.0
-2012-01-26 16:00:00,12466.0
-2012-01-26 17:00:00,12475.0
-2012-01-26 18:00:00,12796.0
-2012-01-26 19:00:00,13337.0
-2012-01-26 20:00:00,13299.0
-2012-01-26 21:00:00,13044.0
-2012-01-26 22:00:00,12668.0
-2012-01-26 23:00:00,12160.0
-2012-01-27 00:00:00,11346.0
-2012-01-25 01:00:00,10894.0
-2012-01-25 02:00:00,10410.0
-2012-01-25 03:00:00,10174.0
-2012-01-25 04:00:00,10023.0
-2012-01-25 05:00:00,10019.0
-2012-01-25 06:00:00,10300.0
-2012-01-25 07:00:00,11026.0
-2012-01-25 08:00:00,12274.0
-2012-01-25 09:00:00,12819.0
-2012-01-25 10:00:00,12850.0
-2012-01-25 11:00:00,12831.0
-2012-01-25 12:00:00,12845.0
-2012-01-25 13:00:00,12840.0
-2012-01-25 14:00:00,12781.0
-2012-01-25 15:00:00,12811.0
-2012-01-25 16:00:00,12716.0
-2012-01-25 17:00:00,12720.0
-2012-01-25 18:00:00,13064.0
-2012-01-25 19:00:00,13611.0
-2012-01-25 20:00:00,13486.0
-2012-01-25 21:00:00,13299.0
-2012-01-25 22:00:00,12970.0
-2012-01-25 23:00:00,12397.0
-2012-01-26 00:00:00,11501.0
-2012-01-24 01:00:00,10977.0
-2012-01-24 02:00:00,10479.0
-2012-01-24 03:00:00,10181.0
-2012-01-24 04:00:00,10012.0
-2012-01-24 05:00:00,9990.0
-2012-01-24 06:00:00,10269.0
-2012-01-24 07:00:00,11093.0
-2012-01-24 08:00:00,12370.0
-2012-01-24 09:00:00,12941.0
-2012-01-24 10:00:00,12918.0
-2012-01-24 11:00:00,12860.0
-2012-01-24 12:00:00,12778.0
-2012-01-24 13:00:00,12642.0
-2012-01-24 14:00:00,12510.0
-2012-01-24 15:00:00,12430.0
-2012-01-24 16:00:00,12273.0
-2012-01-24 17:00:00,12225.0
-2012-01-24 18:00:00,12583.0
-2012-01-24 19:00:00,13472.0
-2012-01-24 20:00:00,13451.0
-2012-01-24 21:00:00,13266.0
-2012-01-24 22:00:00,12999.0
-2012-01-24 23:00:00,12489.0
-2012-01-25 00:00:00,11641.0
-2012-01-23 01:00:00,10192.0
-2012-01-23 02:00:00,9742.0
-2012-01-23 03:00:00,9466.0
-2012-01-23 04:00:00,9293.0
-2012-01-23 05:00:00,9313.0
-2012-01-23 06:00:00,9565.0
-2012-01-23 07:00:00,10308.0
-2012-01-23 08:00:00,11570.0
-2012-01-23 09:00:00,12327.0
-2012-01-23 10:00:00,12447.0
-2012-01-23 11:00:00,12642.0
-2012-01-23 12:00:00,12847.0
-2012-01-23 13:00:00,12929.0
-2012-01-23 14:00:00,12989.0
-2012-01-23 15:00:00,13049.0
-2012-01-23 16:00:00,13054.0
-2012-01-23 17:00:00,13172.0
-2012-01-23 18:00:00,13582.0
-2012-01-23 19:00:00,14074.0
-2012-01-23 20:00:00,13851.0
-2012-01-23 21:00:00,13571.0
-2012-01-23 22:00:00,13240.0
-2012-01-23 23:00:00,12666.0
-2012-01-24 00:00:00,11787.0
-2012-01-22 01:00:00,11098.0
-2012-01-22 02:00:00,10670.0
-2012-01-22 03:00:00,10396.0
-2012-01-22 04:00:00,10262.0
-2012-01-22 05:00:00,10107.0
-2012-01-22 06:00:00,10166.0
-2012-01-22 07:00:00,10246.0
-2012-01-22 08:00:00,10522.0
-2012-01-22 09:00:00,10604.0
-2012-01-22 10:00:00,10837.0
-2012-01-22 11:00:00,11095.0
-2012-01-22 12:00:00,11242.0
-2012-01-22 13:00:00,11302.0
-2012-01-22 14:00:00,11318.0
-2012-01-22 15:00:00,11248.0
-2012-01-22 16:00:00,11270.0
-2012-01-22 17:00:00,11343.0
-2012-01-22 18:00:00,11707.0
-2012-01-22 19:00:00,12403.0
-2012-01-22 20:00:00,12429.0
-2012-01-22 21:00:00,12202.0
-2012-01-22 22:00:00,11930.0
-2012-01-22 23:00:00,11479.0
-2012-01-23 00:00:00,10872.0
-2012-01-21 01:00:00,11578.0
-2012-01-21 02:00:00,11009.0
-2012-01-21 03:00:00,10693.0
-2012-01-21 04:00:00,10480.0
-2012-01-21 05:00:00,10418.0
-2012-01-21 06:00:00,10491.0
-2012-01-21 07:00:00,10746.0
-2012-01-21 08:00:00,11191.0
-2012-01-21 09:00:00,11471.0
-2012-01-21 10:00:00,11785.0
-2012-01-21 11:00:00,11993.0
-2012-01-21 12:00:00,12161.0
-2012-01-21 13:00:00,12091.0
-2012-01-21 14:00:00,11964.0
-2012-01-21 15:00:00,11728.0
-2012-01-21 16:00:00,11558.0
-2012-01-21 17:00:00,11524.0
-2012-01-21 18:00:00,11813.0
-2012-01-21 19:00:00,12698.0
-2012-01-21 20:00:00,12764.0
-2012-01-21 21:00:00,12638.0
-2012-01-21 22:00:00,12391.0
-2012-01-21 23:00:00,12132.0
-2012-01-22 00:00:00,11657.0
-2012-01-20 01:00:00,12316.0
-2012-01-20 02:00:00,11848.0
-2012-01-20 03:00:00,11541.0
-2012-01-20 04:00:00,11355.0
-2012-01-20 05:00:00,11321.0
-2012-01-20 06:00:00,11572.0
-2012-01-20 07:00:00,12183.0
-2012-01-20 08:00:00,13348.0
-2012-01-20 09:00:00,13978.0
-2012-01-20 10:00:00,13997.0
-2012-01-20 11:00:00,13981.0
-2012-01-20 12:00:00,14092.0
-2012-01-20 13:00:00,14083.0
-2012-01-20 14:00:00,14064.0
-2012-01-20 15:00:00,13977.0
-2012-01-20 16:00:00,13812.0
-2012-01-20 17:00:00,13660.0
-2012-01-20 18:00:00,13948.0
-2012-01-20 19:00:00,14536.0
-2012-01-20 20:00:00,14429.0
-2012-01-20 21:00:00,14093.0
-2012-01-20 22:00:00,13664.0
-2012-01-20 23:00:00,13160.0
-2012-01-21 00:00:00,12327.0
-2012-01-19 01:00:00,11487.0
-2012-01-19 02:00:00,10963.0
-2012-01-19 03:00:00,10617.0
-2012-01-19 04:00:00,10406.0
-2012-01-19 05:00:00,10382.0
-2012-01-19 06:00:00,10652.0
-2012-01-19 07:00:00,11383.0
-2012-01-19 08:00:00,12631.0
-2012-01-19 09:00:00,13353.0
-2012-01-19 10:00:00,13539.0
-2012-01-19 11:00:00,13698.0
-2012-01-19 12:00:00,13788.0
-2012-01-19 13:00:00,13717.0
-2012-01-19 14:00:00,13589.0
-2012-01-19 15:00:00,13503.0
-2012-01-19 16:00:00,13336.0
-2012-01-19 17:00:00,13298.0
-2012-01-19 18:00:00,13794.0
-2012-01-19 19:00:00,14721.0
-2012-01-19 20:00:00,14813.0
-2012-01-19 21:00:00,14649.0
-2012-01-19 22:00:00,14389.0
-2012-01-19 23:00:00,13864.0
-2012-01-20 00:00:00,13064.0
-2012-01-18 01:00:00,11441.0
-2012-01-18 02:00:00,10975.0
-2012-01-18 03:00:00,10736.0
-2012-01-18 04:00:00,10615.0
-2012-01-18 05:00:00,10619.0
-2012-01-18 06:00:00,10945.0
-2012-01-18 07:00:00,11662.0
-2012-01-18 08:00:00,12902.0
-2012-01-18 09:00:00,13448.0
-2012-01-18 10:00:00,13397.0
-2012-01-18 11:00:00,13377.0
-2012-01-18 12:00:00,13341.0
-2012-01-18 13:00:00,13209.0
-2012-01-18 14:00:00,13104.0
-2012-01-18 15:00:00,13042.0
-2012-01-18 16:00:00,12994.0
-2012-01-18 17:00:00,13061.0
-2012-01-18 18:00:00,13490.0
-2012-01-18 19:00:00,14249.0
-2012-01-18 20:00:00,14178.0
-2012-01-18 21:00:00,13964.0
-2012-01-18 22:00:00,13654.0
-2012-01-18 23:00:00,13136.0
-2012-01-19 00:00:00,12257.0
-2012-01-17 01:00:00,10209.0
-2012-01-17 02:00:00,9747.0
-2012-01-17 03:00:00,9476.0
-2012-01-17 04:00:00,9330.0
-2012-01-17 05:00:00,9355.0
-2012-01-17 06:00:00,9623.0
-2012-01-17 07:00:00,10393.0
-2012-01-17 08:00:00,11626.0
-2012-01-17 09:00:00,12493.0
-2012-01-17 10:00:00,12769.0
-2012-01-17 11:00:00,12914.0
-2012-01-17 12:00:00,13047.0
-2012-01-17 13:00:00,13145.0
-2012-01-17 14:00:00,13142.0
-2012-01-17 15:00:00,13177.0
-2012-01-17 16:00:00,13037.0
-2012-01-17 17:00:00,13045.0
-2012-01-17 18:00:00,13462.0
-2012-01-17 19:00:00,14080.0
-2012-01-17 20:00:00,13951.0
-2012-01-17 21:00:00,13787.0
-2012-01-17 22:00:00,13517.0
-2012-01-17 23:00:00,13009.0
-2012-01-18 00:00:00,12191.0
-2012-01-16 01:00:00,10603.0
-2012-01-16 02:00:00,10162.0
-2012-01-16 03:00:00,9958.0
-2012-01-16 04:00:00,9817.0
-2012-01-16 05:00:00,9805.0
-2012-01-16 06:00:00,10048.0
-2012-01-16 07:00:00,10626.0
-2012-01-16 08:00:00,11593.0
-2012-01-16 09:00:00,11988.0
-2012-01-16 10:00:00,12100.0
-2012-01-16 11:00:00,12106.0
-2012-01-16 12:00:00,12295.0
-2012-01-16 13:00:00,12208.0
-2012-01-16 14:00:00,12251.0
-2012-01-16 15:00:00,12333.0
-2012-01-16 16:00:00,12312.0
-2012-01-16 17:00:00,12348.0
-2012-01-16 18:00:00,12727.0
-2012-01-16 19:00:00,13161.0
-2012-01-16 20:00:00,12971.0
-2012-01-16 21:00:00,12709.0
-2012-01-16 22:00:00,12352.0
-2012-01-16 23:00:00,11823.0
-2012-01-17 00:00:00,10981.0
-2012-01-15 01:00:00,11051.0
-2012-01-15 02:00:00,10573.0
-2012-01-15 03:00:00,10319.0
-2012-01-15 04:00:00,10098.0
-2012-01-15 05:00:00,10079.0
-2012-01-15 06:00:00,10057.0
-2012-01-15 07:00:00,10157.0
-2012-01-15 08:00:00,10447.0
-2012-01-15 09:00:00,10493.0
-2012-01-15 10:00:00,10719.0
-2012-01-15 11:00:00,10788.0
-2012-01-15 12:00:00,10970.0
-2012-01-15 13:00:00,10928.0
-2012-01-15 14:00:00,10821.0
-2012-01-15 15:00:00,10667.0
-2012-01-15 16:00:00,10626.0
-2012-01-15 17:00:00,10718.0
-2012-01-15 18:00:00,11236.0
-2012-01-15 19:00:00,12311.0
-2012-01-15 20:00:00,12448.0
-2012-01-15 21:00:00,12339.0
-2012-01-15 22:00:00,12062.0
-2012-01-15 23:00:00,11726.0
-2012-01-16 00:00:00,11143.0
-2012-01-14 01:00:00,11423.0
-2012-01-14 02:00:00,10865.0
-2012-01-14 03:00:00,10604.0
-2012-01-14 04:00:00,10344.0
-2012-01-14 05:00:00,10299.0
-2012-01-14 06:00:00,10363.0
-2012-01-14 07:00:00,10674.0
-2012-01-14 08:00:00,11150.0
-2012-01-14 09:00:00,11482.0
-2012-01-14 10:00:00,11755.0
-2012-01-14 11:00:00,12014.0
-2012-01-14 12:00:00,11982.0
-2012-01-14 13:00:00,11915.0
-2012-01-14 14:00:00,11683.0
-2012-01-14 15:00:00,11397.0
-2012-01-14 16:00:00,11226.0
-2012-01-14 17:00:00,11292.0
-2012-01-14 18:00:00,11706.0
-2012-01-14 19:00:00,12710.0
-2012-01-14 20:00:00,12797.0
-2012-01-14 21:00:00,12651.0
-2012-01-14 22:00:00,12511.0
-2012-01-14 23:00:00,12148.0
-2012-01-15 00:00:00,11627.0
-2012-01-13 01:00:00,11291.0
-2012-01-13 02:00:00,10843.0
-2012-01-13 03:00:00,10582.0
-2012-01-13 04:00:00,10489.0
-2012-01-13 05:00:00,10496.0
-2012-01-13 06:00:00,10752.0
-2012-01-13 07:00:00,11449.0
-2012-01-13 08:00:00,12606.0
-2012-01-13 09:00:00,13108.0
-2012-01-13 10:00:00,13188.0
-2012-01-13 11:00:00,13249.0
-2012-01-13 12:00:00,13343.0
-2012-01-13 13:00:00,13291.0
-2012-01-13 14:00:00,13158.0
-2012-01-13 15:00:00,13121.0
-2012-01-13 16:00:00,13041.0
-2012-01-13 17:00:00,13000.0
-2012-01-13 18:00:00,13384.0
-2012-01-13 19:00:00,14011.0
-2012-01-13 20:00:00,13883.0
-2012-01-13 21:00:00,13611.0
-2012-01-13 22:00:00,13280.0
-2012-01-13 23:00:00,12837.0
-2012-01-14 00:00:00,12124.0
-2012-01-12 01:00:00,10139.0
-2012-01-12 02:00:00,9669.0
-2012-01-12 03:00:00,9385.0
-2012-01-12 04:00:00,9229.0
-2012-01-12 05:00:00,9227.0
-2012-01-12 06:00:00,9501.0
-2012-01-12 07:00:00,10291.0
-2012-01-12 08:00:00,11551.0
-2012-01-12 09:00:00,12310.0
-2012-01-12 10:00:00,12524.0
-2012-01-12 11:00:00,12649.0
-2012-01-12 12:00:00,12854.0
-2012-01-12 13:00:00,12887.0
-2012-01-12 14:00:00,12838.0
-2012-01-12 15:00:00,12852.0
-2012-01-12 16:00:00,12819.0
-2012-01-12 17:00:00,12812.0
-2012-01-12 18:00:00,13274.0
-2012-01-12 19:00:00,13983.0
-2012-01-12 20:00:00,13927.0
-2012-01-12 21:00:00,13760.0
-2012-01-12 22:00:00,13444.0
-2012-01-12 23:00:00,12919.0
-2012-01-13 00:00:00,12110.0
-2012-01-11 01:00:00,10106.0
-2012-01-11 02:00:00,9593.0
-2012-01-11 03:00:00,9328.0
-2012-01-11 04:00:00,9169.0
-2012-01-11 05:00:00,9188.0
-2012-01-11 06:00:00,9449.0
-2012-01-11 07:00:00,10221.0
-2012-01-11 08:00:00,11476.0
-2012-01-11 09:00:00,12140.0
-2012-01-11 10:00:00,12083.0
-2012-01-11 11:00:00,12021.0
-2012-01-11 12:00:00,11974.0
-2012-01-11 13:00:00,11864.0
-2012-01-11 14:00:00,11709.0
-2012-01-11 15:00:00,11661.0
-2012-01-11 16:00:00,11529.0
-2012-01-11 17:00:00,11485.0
-2012-01-11 18:00:00,11858.0
-2012-01-11 19:00:00,12685.0
-2012-01-11 20:00:00,12639.0
-2012-01-11 21:00:00,12475.0
-2012-01-11 22:00:00,12182.0
-2012-01-11 23:00:00,11703.0
-2012-01-12 00:00:00,10918.0
-2012-01-10 01:00:00,10354.0
-2012-01-10 02:00:00,9801.0
-2012-01-10 03:00:00,9524.0
-2012-01-10 04:00:00,9350.0
-2012-01-10 05:00:00,9321.0
-2012-01-10 06:00:00,9607.0
-2012-01-10 07:00:00,10353.0
-2012-01-10 08:00:00,11621.0
-2012-01-10 09:00:00,12214.0
-2012-01-10 10:00:00,12173.0
-2012-01-10 11:00:00,12137.0
-2012-01-10 12:00:00,12117.0
-2012-01-10 13:00:00,11940.0
-2012-01-10 14:00:00,11833.0
-2012-01-10 15:00:00,11784.0
-2012-01-10 16:00:00,11617.0
-2012-01-10 17:00:00,11530.0
-2012-01-10 18:00:00,11940.0
-2012-01-10 19:00:00,12771.0
-2012-01-10 20:00:00,12660.0
-2012-01-10 21:00:00,12466.0
-2012-01-10 22:00:00,12228.0
-2012-01-10 23:00:00,11689.0
-2012-01-11 00:00:00,10864.0
-2012-01-09 01:00:00,9786.0
-2012-01-09 02:00:00,9494.0
-2012-01-09 03:00:00,9301.0
-2012-01-09 04:00:00,9212.0
-2012-01-09 05:00:00,9268.0
-2012-01-09 06:00:00,9620.0
-2012-01-09 07:00:00,10395.0
-2012-01-09 08:00:00,11740.0
-2012-01-09 09:00:00,12435.0
-2012-01-09 10:00:00,12487.0
-2012-01-09 11:00:00,12611.0
-2012-01-09 12:00:00,12617.0
-2012-01-09 13:00:00,12516.0
-2012-01-09 14:00:00,12307.0
-2012-01-09 15:00:00,12195.0
-2012-01-09 16:00:00,11998.0
-2012-01-09 17:00:00,11965.0
-2012-01-09 18:00:00,12407.0
-2012-01-09 19:00:00,13192.0
-2012-01-09 20:00:00,13091.0
-2012-01-09 21:00:00,12882.0
-2012-01-09 22:00:00,12590.0
-2012-01-09 23:00:00,12022.0
-2012-01-10 00:00:00,11171.0
-2012-01-08 01:00:00,9926.0
-2012-01-08 02:00:00,9441.0
-2012-01-08 03:00:00,9182.0
-2012-01-08 04:00:00,9056.0
-2012-01-08 05:00:00,8965.0
-2012-01-08 06:00:00,9049.0
-2012-01-08 07:00:00,9187.0
-2012-01-08 08:00:00,9475.0
-2012-01-08 09:00:00,9528.0
-2012-01-08 10:00:00,9661.0
-2012-01-08 11:00:00,9790.0
-2012-01-08 12:00:00,9825.0
-2012-01-08 13:00:00,9887.0
-2012-01-08 14:00:00,9913.0
-2012-01-08 15:00:00,9838.0
-2012-01-08 16:00:00,9897.0
-2012-01-08 17:00:00,10162.0
-2012-01-08 18:00:00,10869.0
-2012-01-08 19:00:00,11529.0
-2012-01-08 20:00:00,11573.0
-2012-01-08 21:00:00,11454.0
-2012-01-08 22:00:00,11319.0
-2012-01-08 23:00:00,10952.0
-2012-01-09 00:00:00,10352.0
-2012-01-07 01:00:00,10120.0
-2012-01-07 02:00:00,9538.0
-2012-01-07 03:00:00,9199.0
-2012-01-07 04:00:00,8992.0
-2012-01-07 05:00:00,8937.0
-2012-01-07 06:00:00,9031.0
-2012-01-07 07:00:00,9346.0
-2012-01-07 08:00:00,9869.0
-2012-01-07 09:00:00,10100.0
-2012-01-07 10:00:00,10306.0
-2012-01-07 11:00:00,10463.0
-2012-01-07 12:00:00,10543.0
-2012-01-07 13:00:00,10515.0
-2012-01-07 14:00:00,10377.0
-2012-01-07 15:00:00,10172.0
-2012-01-07 16:00:00,9981.0
-2012-01-07 17:00:00,10039.0
-2012-01-07 18:00:00,10688.0
-2012-01-07 19:00:00,11534.0
-2012-01-07 20:00:00,11511.0
-2012-01-07 21:00:00,11426.0
-2012-01-07 22:00:00,11220.0
-2012-01-07 23:00:00,10990.0
-2012-01-08 00:00:00,10443.0
-2012-01-06 01:00:00,10301.0
-2012-01-06 02:00:00,9755.0
-2012-01-06 03:00:00,9393.0
-2012-01-06 04:00:00,9196.0
-2012-01-06 05:00:00,9170.0
-2012-01-06 06:00:00,9391.0
-2012-01-06 07:00:00,10031.0
-2012-01-06 08:00:00,11147.0
-2012-01-06 09:00:00,11787.0
-2012-01-06 10:00:00,11855.0
-2012-01-06 11:00:00,11821.0
-2012-01-06 12:00:00,11795.0
-2012-01-06 13:00:00,11702.0
-2012-01-06 14:00:00,11603.0
-2012-01-06 15:00:00,11526.0
-2012-01-06 16:00:00,11352.0
-2012-01-06 17:00:00,11248.0
-2012-01-06 18:00:00,11805.0
-2012-01-06 19:00:00,12473.0
-2012-01-06 20:00:00,12359.0
-2012-01-06 21:00:00,12134.0
-2012-01-06 22:00:00,11845.0
-2012-01-06 23:00:00,11500.0
-2012-01-07 00:00:00,10802.0
-2012-01-05 01:00:00,10877.0
-2012-01-05 02:00:00,10326.0
-2012-01-05 03:00:00,10003.0
-2012-01-05 04:00:00,9803.0
-2012-01-05 05:00:00,9804.0
-2012-01-05 06:00:00,10055.0
-2012-01-05 07:00:00,10742.0
-2012-01-05 08:00:00,11893.0
-2012-01-05 09:00:00,12431.0
-2012-01-05 10:00:00,12460.0
-2012-01-05 11:00:00,12373.0
-2012-01-05 12:00:00,12309.0
-2012-01-05 13:00:00,12245.0
-2012-01-05 14:00:00,12111.0
-2012-01-05 15:00:00,12067.0
-2012-01-05 16:00:00,11874.0
-2012-01-05 17:00:00,11756.0
-2012-01-05 18:00:00,12304.0
-2012-01-05 19:00:00,13126.0
-2012-01-05 20:00:00,13087.0
-2012-01-05 21:00:00,12861.0
-2012-01-05 22:00:00,12514.0
-2012-01-05 23:00:00,11971.0
-2012-01-06 00:00:00,11141.0
-2012-01-04 01:00:00,11391.0
-2012-01-04 02:00:00,10810.0
-2012-01-04 03:00:00,10471.0
-2012-01-04 04:00:00,10253.0
-2012-01-04 05:00:00,10166.0
-2012-01-04 06:00:00,10406.0
-2012-01-04 07:00:00,11046.0
-2012-01-04 08:00:00,12155.0
-2012-01-04 09:00:00,12692.0
-2012-01-04 10:00:00,12660.0
-2012-01-04 11:00:00,12598.0
-2012-01-04 12:00:00,12575.0
-2012-01-04 13:00:00,12472.0
-2012-01-04 14:00:00,12356.0
-2012-01-04 15:00:00,12404.0
-2012-01-04 16:00:00,12418.0
-2012-01-04 17:00:00,12450.0
-2012-01-04 18:00:00,13102.0
-2012-01-04 19:00:00,13701.0
-2012-01-04 20:00:00,13553.0
-2012-01-04 21:00:00,13362.0
-2012-01-04 22:00:00,13045.0
-2012-01-04 23:00:00,12501.0
-2012-01-05 00:00:00,11664.0
-2012-01-03 01:00:00,11130.0
-2012-01-03 02:00:00,10698.0
-2012-01-03 03:00:00,10440.0
-2012-01-03 04:00:00,10315.0
-2012-01-03 05:00:00,10348.0
-2012-01-03 06:00:00,10620.0
-2012-01-03 07:00:00,11331.0
-2012-01-03 08:00:00,12475.0
-2012-01-03 09:00:00,13078.0
-2012-01-03 10:00:00,13169.0
-2012-01-03 11:00:00,13180.0
-2012-01-03 12:00:00,13205.0
-2012-01-03 13:00:00,13140.0
-2012-01-03 14:00:00,13083.0
-2012-01-03 15:00:00,13062.0
-2012-01-03 16:00:00,12815.0
-2012-01-03 17:00:00,12811.0
-2012-01-03 18:00:00,13523.0
-2012-01-03 19:00:00,14300.0
-2012-01-03 20:00:00,14226.0
-2012-01-03 21:00:00,14046.0
-2012-01-03 22:00:00,13751.0
-2012-01-03 23:00:00,13152.0
-2012-01-04 00:00:00,12282.0
-2012-01-02 01:00:00,10170.0
-2012-01-02 02:00:00,9731.0
-2012-01-02 03:00:00,9459.0
-2012-01-02 04:00:00,9297.0
-2012-01-02 05:00:00,9323.0
-2012-01-02 06:00:00,9451.0
-2012-01-02 07:00:00,9880.0
-2012-01-02 08:00:00,10399.0
-2012-01-02 09:00:00,10675.0
-2012-01-02 10:00:00,10873.0
-2012-01-02 11:00:00,11237.0
-2012-01-02 12:00:00,11503.0
-2012-01-02 13:00:00,11639.0
-2012-01-02 14:00:00,11675.0
-2012-01-02 15:00:00,11673.0
-2012-01-02 16:00:00,11686.0
-2012-01-02 17:00:00,11855.0
-2012-01-02 18:00:00,12670.0
-2012-01-02 19:00:00,13332.0
-2012-01-02 20:00:00,13308.0
-2012-01-02 21:00:00,13179.0
-2012-01-02 22:00:00,12956.0
-2012-01-02 23:00:00,12536.0
-2012-01-03 00:00:00,11810.0
-2012-01-01 01:00:00,9906.0
-2012-01-01 02:00:00,9407.0
-2012-01-01 03:00:00,9086.0
-2012-01-01 04:00:00,8758.0
-2012-01-01 05:00:00,8483.0
-2012-01-01 06:00:00,8432.0
-2012-01-01 07:00:00,8487.0
-2012-01-01 08:00:00,8686.0
-2012-01-01 09:00:00,8953.0
-2012-01-01 10:00:00,9050.0
-2012-01-01 11:00:00,9366.0
-2012-01-01 12:00:00,9387.0
-2012-01-01 13:00:00,9597.0
-2012-01-01 14:00:00,9924.0
-2012-01-01 15:00:00,10089.0
-2012-01-01 16:00:00,10130.0
-2012-01-01 17:00:00,10363.0
-2012-01-01 18:00:00,11132.0
-2012-01-01 19:00:00,11757.0
-2012-01-01 20:00:00,11799.0
-2012-01-01 21:00:00,11681.0
-2012-01-01 22:00:00,11490.0
-2012-01-01 23:00:00,11158.0
-2012-01-02 00:00:00,10721.0
-2013-12-31 01:00:00,11979.0
-2013-12-31 02:00:00,11438.0
-2013-12-31 03:00:00,11113.0
-2013-12-31 04:00:00,10928.0
-2013-12-31 05:00:00,10926.0
-2013-12-31 06:00:00,11078.0
-2013-12-31 07:00:00,11492.0
-2013-12-31 08:00:00,12172.0
-2013-12-31 09:00:00,12473.0
-2013-12-31 10:00:00,12597.0
-2013-12-31 11:00:00,12732.0
-2013-12-31 12:00:00,12828.0
-2013-12-31 13:00:00,12902.0
-2013-12-31 14:00:00,12832.0
-2013-12-31 15:00:00,12794.0
-2013-12-31 16:00:00,12768.0
-2013-12-31 17:00:00,12735.0
-2013-12-31 18:00:00,13383.0
-2013-12-31 19:00:00,14041.0
-2013-12-31 20:00:00,13768.0
-2013-12-31 21:00:00,13358.0
-2013-12-31 22:00:00,12922.0
-2013-12-31 23:00:00,12503.0
-2014-01-01 00:00:00,12035.0
-2013-12-30 01:00:00,11183.0
-2013-12-30 02:00:00,10850.0
-2013-12-30 03:00:00,10682.0
-2013-12-30 04:00:00,10640.0
-2013-12-30 05:00:00,10702.0
-2013-12-30 06:00:00,10971.0
-2013-12-30 07:00:00,11538.0
-2013-12-30 08:00:00,12475.0
-2013-12-30 09:00:00,12903.0
-2013-12-30 10:00:00,13042.0
-2013-12-30 11:00:00,13193.0
-2013-12-30 12:00:00,13307.0
-2013-12-30 13:00:00,13328.0
-2013-12-30 14:00:00,13221.0
-2013-12-30 15:00:00,13127.0
-2013-12-30 16:00:00,13062.0
-2013-12-30 17:00:00,13069.0
-2013-12-30 18:00:00,13834.0
-2013-12-30 19:00:00,14525.0
-2013-12-30 20:00:00,14427.0
-2013-12-30 21:00:00,14260.0
-2013-12-30 22:00:00,14018.0
-2013-12-30 23:00:00,13530.0
-2013-12-31 00:00:00,12756.0
-2013-12-29 01:00:00,10088.0
-2013-12-29 02:00:00,9621.0
-2013-12-29 03:00:00,9309.0
-2013-12-29 04:00:00,9074.0
-2013-12-29 05:00:00,8998.0
-2013-12-29 06:00:00,8997.0
-2013-12-29 07:00:00,9180.0
-2013-12-29 08:00:00,9457.0
-2013-12-29 09:00:00,9634.0
-2013-12-29 10:00:00,9874.0
-2013-12-29 11:00:00,10336.0
-2013-12-29 12:00:00,10678.0
-2013-12-29 13:00:00,10933.0
-2013-12-29 14:00:00,11032.0
-2013-12-29 15:00:00,11157.0
-2013-12-29 16:00:00,11267.0
-2013-12-29 17:00:00,11444.0
-2013-12-29 18:00:00,12134.0
-2013-12-29 19:00:00,12695.0
-2013-12-29 20:00:00,12741.0
-2013-12-29 21:00:00,12694.0
-2013-12-29 22:00:00,12569.0
-2013-12-29 23:00:00,12273.0
-2013-12-30 00:00:00,11754.0
-2013-12-28 01:00:00,10643.0
-2013-12-28 02:00:00,10069.0
-2013-12-28 03:00:00,9710.0
-2013-12-28 04:00:00,9477.0
-2013-12-28 05:00:00,9404.0
-2013-12-28 06:00:00,9469.0
-2013-12-28 07:00:00,9699.0
-2013-12-28 08:00:00,10157.0
-2013-12-28 09:00:00,10341.0
-2013-12-28 10:00:00,10451.0
-2013-12-28 11:00:00,10541.0
-2013-12-28 12:00:00,10577.0
-2013-12-28 13:00:00,10531.0
-2013-12-28 14:00:00,10354.0
-2013-12-28 15:00:00,10112.0
-2013-12-28 16:00:00,9979.0
-2013-12-28 17:00:00,10070.0
-2013-12-28 18:00:00,10796.0
-2013-12-28 19:00:00,11684.0
-2013-12-28 20:00:00,11678.0
-2013-12-28 21:00:00,11598.0
-2013-12-28 22:00:00,11456.0
-2013-12-28 23:00:00,11176.0
-2013-12-29 00:00:00,10687.0
-2013-12-27 01:00:00,10909.0
-2013-12-27 02:00:00,10319.0
-2013-12-27 03:00:00,9958.0
-2013-12-27 04:00:00,9749.0
-2013-12-27 05:00:00,9732.0
-2013-12-27 06:00:00,9975.0
-2013-12-27 07:00:00,10572.0
-2013-12-27 08:00:00,11436.0
-2013-12-27 09:00:00,11814.0
-2013-12-27 10:00:00,11965.0
-2013-12-27 11:00:00,11983.0
-2013-12-27 12:00:00,12002.0
-2013-12-27 13:00:00,11917.0
-2013-12-27 14:00:00,11794.0
-2013-12-27 15:00:00,11712.0
-2013-12-27 16:00:00,11619.0
-2013-12-27 17:00:00,11583.0
-2013-12-27 18:00:00,12311.0
-2013-12-27 19:00:00,13092.0
-2013-12-27 20:00:00,12973.0
-2013-12-27 21:00:00,12770.0
-2013-12-27 22:00:00,12476.0
-2013-12-27 23:00:00,12116.0
-2013-12-28 00:00:00,11410.0
-2013-12-26 01:00:00,10587.0
-2013-12-26 02:00:00,10159.0
-2013-12-26 03:00:00,9979.0
-2013-12-26 04:00:00,9928.0
-2013-12-26 05:00:00,10002.0
-2013-12-26 06:00:00,10259.0
-2013-12-26 07:00:00,10883.0
-2013-12-26 08:00:00,11772.0
-2013-12-26 09:00:00,12194.0
-2013-12-26 10:00:00,12431.0
-2013-12-26 11:00:00,12706.0
-2013-12-26 12:00:00,12845.0
-2013-12-26 13:00:00,12885.0
-2013-12-26 14:00:00,12799.0
-2013-12-26 15:00:00,12628.0
-2013-12-26 16:00:00,12462.0
-2013-12-26 17:00:00,12487.0
-2013-12-26 18:00:00,13261.0
-2013-12-26 19:00:00,13895.0
-2013-12-26 20:00:00,13646.0
-2013-12-26 21:00:00,13345.0
-2013-12-26 22:00:00,13076.0
-2013-12-26 23:00:00,12530.0
-2013-12-27 00:00:00,11718.0
-2013-12-25 01:00:00,11426.0
-2013-12-25 02:00:00,10915.0
-2013-12-25 03:00:00,10537.0
-2013-12-25 04:00:00,10316.0
-2013-12-25 05:00:00,10204.0
-2013-12-25 06:00:00,10210.0
-2013-12-25 07:00:00,10359.0
-2013-12-25 08:00:00,10586.0
-2013-12-25 09:00:00,10732.0
-2013-12-25 10:00:00,10843.0
-2013-12-25 11:00:00,11057.0
-2013-12-25 12:00:00,11162.0
-2013-12-25 13:00:00,11176.0
-2013-12-25 14:00:00,11173.0
-2013-12-25 15:00:00,11078.0
-2013-12-25 16:00:00,11020.0
-2013-12-25 17:00:00,11045.0
-2013-12-25 18:00:00,11627.0
-2013-12-25 19:00:00,11996.0
-2013-12-25 20:00:00,11953.0
-2013-12-25 21:00:00,11874.0
-2013-12-25 22:00:00,11788.0
-2013-12-25 23:00:00,11603.0
-2013-12-26 00:00:00,11152.0
-2013-12-24 01:00:00,12691.0
-2013-12-24 02:00:00,12058.0
-2013-12-24 03:00:00,11664.0
-2013-12-24 04:00:00,11421.0
-2013-12-24 05:00:00,11370.0
-2013-12-24 06:00:00,11437.0
-2013-12-24 07:00:00,11794.0
-2013-12-24 08:00:00,12318.0
-2013-12-24 09:00:00,12609.0
-2013-12-24 10:00:00,12785.0
-2013-12-24 11:00:00,12924.0
-2013-12-24 12:00:00,12885.0
-2013-12-24 13:00:00,12695.0
-2013-12-24 14:00:00,12413.0
-2013-12-24 15:00:00,12162.0
-2013-12-24 16:00:00,11966.0
-2013-12-24 17:00:00,12003.0
-2013-12-24 18:00:00,12855.0
-2013-12-24 19:00:00,13438.0
-2013-12-24 20:00:00,13158.0
-2013-12-24 21:00:00,12857.0
-2013-12-24 22:00:00,12660.0
-2013-12-24 23:00:00,12396.0
-2013-12-25 00:00:00,11944.0
-2013-12-23 01:00:00,10968.0
-2013-12-23 02:00:00,10424.0
-2013-12-23 03:00:00,10161.0
-2013-12-23 04:00:00,10020.0
-2013-12-23 05:00:00,10013.0
-2013-12-23 06:00:00,10285.0
-2013-12-23 07:00:00,10938.0
-2013-12-23 08:00:00,11847.0
-2013-12-23 09:00:00,12478.0
-2013-12-23 10:00:00,12717.0
-2013-12-23 11:00:00,12896.0
-2013-12-23 12:00:00,12894.0
-2013-12-23 13:00:00,12894.0
-2013-12-23 14:00:00,12831.0
-2013-12-23 15:00:00,12831.0
-2013-12-23 16:00:00,12814.0
-2013-12-23 17:00:00,12931.0
-2013-12-23 18:00:00,13879.0
-2013-12-23 19:00:00,14828.0
-2013-12-23 20:00:00,14817.0
-2013-12-23 21:00:00,14733.0
-2013-12-23 22:00:00,14577.0
-2013-12-23 23:00:00,14239.0
-2013-12-24 00:00:00,13487.0
-2013-12-22 01:00:00,10813.0
-2013-12-22 02:00:00,10257.0
-2013-12-22 03:00:00,9913.0
-2013-12-22 04:00:00,9659.0
-2013-12-22 05:00:00,9572.0
-2013-12-22 06:00:00,9562.0
-2013-12-22 07:00:00,9722.0
-2013-12-22 08:00:00,10012.0
-2013-12-22 09:00:00,10226.0
-2013-12-22 10:00:00,10408.0
-2013-12-22 11:00:00,10597.0
-2013-12-22 12:00:00,10794.0
-2013-12-22 13:00:00,10844.0
-2013-12-22 14:00:00,10867.0
-2013-12-22 15:00:00,10885.0
-2013-12-22 16:00:00,10942.0
-2013-12-22 17:00:00,11150.0
-2013-12-22 18:00:00,12025.0
-2013-12-22 19:00:00,12727.0
-2013-12-22 20:00:00,12748.0
-2013-12-22 21:00:00,12734.0
-2013-12-22 22:00:00,12574.0
-2013-12-22 23:00:00,12263.0
-2013-12-23 00:00:00,11657.0
-2013-12-21 01:00:00,10950.0
-2013-12-21 02:00:00,10359.0
-2013-12-21 03:00:00,9949.0
-2013-12-21 04:00:00,9692.0
-2013-12-21 05:00:00,9646.0
-2013-12-21 06:00:00,9695.0
-2013-12-21 07:00:00,9975.0
-2013-12-21 08:00:00,10500.0
-2013-12-21 09:00:00,10969.0
-2013-12-21 10:00:00,11251.0
-2013-12-21 11:00:00,11551.0
-2013-12-21 12:00:00,11731.0
-2013-12-21 13:00:00,11762.0
-2013-12-21 14:00:00,11686.0
-2013-12-21 15:00:00,11587.0
-2013-12-21 16:00:00,11518.0
-2013-12-21 17:00:00,11724.0
-2013-12-21 18:00:00,12439.0
-2013-12-21 19:00:00,12815.0
-2013-12-21 20:00:00,12751.0
-2013-12-21 21:00:00,12628.0
-2013-12-21 22:00:00,12410.0
-2013-12-21 23:00:00,12083.0
-2013-12-22 00:00:00,11486.0
-2013-12-20 01:00:00,10932.0
-2013-12-20 02:00:00,10322.0
-2013-12-20 03:00:00,9925.0
-2013-12-20 04:00:00,9735.0
-2013-12-20 05:00:00,9712.0
-2013-12-20 06:00:00,9968.0
-2013-12-20 07:00:00,10664.0
-2013-12-20 08:00:00,11853.0
-2013-12-20 09:00:00,12618.0
-2013-12-20 10:00:00,12777.0
-2013-12-20 11:00:00,12880.0
-2013-12-20 12:00:00,12983.0
-2013-12-20 13:00:00,12933.0
-2013-12-20 14:00:00,12839.0
-2013-12-20 15:00:00,12826.0
-2013-12-20 16:00:00,12775.0
-2013-12-20 17:00:00,12808.0
-2013-12-20 18:00:00,13509.0
-2013-12-20 19:00:00,13792.0
-2013-12-20 20:00:00,13586.0
-2013-12-20 21:00:00,13353.0
-2013-12-20 22:00:00,12973.0
-2013-12-20 23:00:00,12526.0
-2013-12-21 00:00:00,11818.0
-2013-12-19 01:00:00,11438.0
-2013-12-19 02:00:00,10791.0
-2013-12-19 03:00:00,10401.0
-2013-12-19 04:00:00,10176.0
-2013-12-19 05:00:00,10146.0
-2013-12-19 06:00:00,10355.0
-2013-12-19 07:00:00,11099.0
-2013-12-19 08:00:00,12245.0
-2013-12-19 09:00:00,12766.0
-2013-12-19 10:00:00,12777.0
-2013-12-19 11:00:00,12676.0
-2013-12-19 12:00:00,12628.0
-2013-12-19 13:00:00,12538.0
-2013-12-19 14:00:00,12498.0
-2013-12-19 15:00:00,12573.0
-2013-12-19 16:00:00,12551.0
-2013-12-19 17:00:00,12677.0
-2013-12-19 18:00:00,13535.0
-2013-12-19 19:00:00,13984.0
-2013-12-19 20:00:00,13779.0
-2013-12-19 21:00:00,13570.0
-2013-12-19 22:00:00,13312.0
-2013-12-19 23:00:00,12818.0
-2013-12-20 00:00:00,11879.0
-2013-12-18 01:00:00,11688.0
-2013-12-18 02:00:00,11110.0
-2013-12-18 03:00:00,10896.0
-2013-12-18 04:00:00,10624.0
-2013-12-18 05:00:00,10731.0
-2013-12-18 06:00:00,11036.0
-2013-12-18 07:00:00,11825.0
-2013-12-18 08:00:00,12895.0
-2013-12-18 09:00:00,13473.0
-2013-12-18 10:00:00,13451.0
-2013-12-18 11:00:00,13476.0
-2013-12-18 12:00:00,13358.0
-2013-12-18 13:00:00,13114.0
-2013-12-18 14:00:00,12928.0
-2013-12-18 15:00:00,12892.0
-2013-12-18 16:00:00,12844.0
-2013-12-18 17:00:00,12923.0
-2013-12-18 18:00:00,13835.0
-2013-12-18 19:00:00,14588.0
-2013-12-18 20:00:00,14429.0
-2013-12-18 21:00:00,14212.0
-2013-12-18 22:00:00,13933.0
-2013-12-18 23:00:00,13339.0
-2013-12-19 00:00:00,12406.0
-2013-12-17 01:00:00,12083.0
-2013-12-17 02:00:00,11488.0
-2013-12-17 03:00:00,11213.0
-2013-12-17 04:00:00,11068.0
-2013-12-17 05:00:00,11037.0
-2013-12-17 06:00:00,11254.0
-2013-12-17 07:00:00,11975.0
-2013-12-17 08:00:00,13162.0
-2013-12-17 09:00:00,13650.0
-2013-12-17 10:00:00,13700.0
-2013-12-17 11:00:00,13637.0
-2013-12-17 12:00:00,13707.0
-2013-12-17 13:00:00,13445.0
-2013-12-17 14:00:00,13183.0
-2013-12-17 15:00:00,13052.0
-2013-12-17 16:00:00,12911.0
-2013-12-17 17:00:00,13027.0
-2013-12-17 18:00:00,13861.0
-2013-12-17 19:00:00,14629.0
-2013-12-17 20:00:00,14538.0
-2013-12-17 21:00:00,14362.0
-2013-12-17 22:00:00,14075.0
-2013-12-17 23:00:00,13519.0
-2013-12-18 00:00:00,12609.0
-2013-12-16 01:00:00,11707.0
-2013-12-16 02:00:00,11261.0
-2013-12-16 03:00:00,11018.0
-2013-12-16 04:00:00,10917.0
-2013-12-16 05:00:00,10932.0
-2013-12-16 06:00:00,11282.0
-2013-12-16 07:00:00,11989.0
-2013-12-16 08:00:00,13276.0
-2013-12-16 09:00:00,13740.0
-2013-12-16 10:00:00,13819.0
-2013-12-16 11:00:00,13841.0
-2013-12-16 12:00:00,13752.0
-2013-12-16 13:00:00,13717.0
-2013-12-16 14:00:00,13633.0
-2013-12-16 15:00:00,13614.0
-2013-12-16 16:00:00,13567.0
-2013-12-16 17:00:00,13728.0
-2013-12-16 18:00:00,14565.0
-2013-12-16 19:00:00,15091.0
-2013-12-16 20:00:00,14944.0
-2013-12-16 21:00:00,14743.0
-2013-12-16 22:00:00,14495.0
-2013-12-16 23:00:00,13932.0
-2013-12-17 00:00:00,13022.0
-2013-12-15 01:00:00,11178.0
-2013-12-15 02:00:00,10710.0
-2013-12-15 03:00:00,10360.0
-2013-12-15 04:00:00,10226.0
-2013-12-15 05:00:00,10186.0
-2013-12-15 06:00:00,10262.0
-2013-12-15 07:00:00,10442.0
-2013-12-15 08:00:00,10854.0
-2013-12-15 09:00:00,10967.0
-2013-12-15 10:00:00,11367.0
-2013-12-15 11:00:00,11580.0
-2013-12-15 12:00:00,11771.0
-2013-12-15 13:00:00,11831.0
-2013-12-15 14:00:00,11874.0
-2013-12-15 15:00:00,11821.0
-2013-12-15 16:00:00,11750.0
-2013-12-15 17:00:00,11886.0
-2013-12-15 18:00:00,12856.0
-2013-12-15 19:00:00,13755.0
-2013-12-15 20:00:00,13821.0
-2013-12-15 21:00:00,13811.0
-2013-12-15 22:00:00,13574.0
-2013-12-15 23:00:00,13188.0
-2013-12-16 00:00:00,12442.0
-2013-12-14 01:00:00,11618.0
-2013-12-14 02:00:00,10961.0
-2013-12-14 03:00:00,10516.0
-2013-12-14 04:00:00,10314.0
-2013-12-14 05:00:00,10212.0
-2013-12-14 06:00:00,10302.0
-2013-12-14 07:00:00,10587.0
-2013-12-14 08:00:00,11158.0
-2013-12-14 09:00:00,11452.0
-2013-12-14 10:00:00,11805.0
-2013-12-14 11:00:00,12055.0
-2013-12-14 12:00:00,12152.0
-2013-12-14 13:00:00,12118.0
-2013-12-14 14:00:00,11972.0
-2013-12-14 15:00:00,11900.0
-2013-12-14 16:00:00,11787.0
-2013-12-14 17:00:00,11929.0
-2013-12-14 18:00:00,12725.0
-2013-12-14 19:00:00,13352.0
-2013-12-14 20:00:00,13217.0
-2013-12-14 21:00:00,13058.0
-2013-12-14 22:00:00,12854.0
-2013-12-14 23:00:00,12468.0
-2013-12-15 00:00:00,11921.0
-2013-12-13 01:00:00,12245.0
-2013-12-13 02:00:00,11606.0
-2013-12-13 03:00:00,11239.0
-2013-12-13 04:00:00,11038.0
-2013-12-13 05:00:00,10978.0
-2013-12-13 06:00:00,11196.0
-2013-12-13 07:00:00,11833.0
-2013-12-13 08:00:00,12998.0
-2013-12-13 09:00:00,13416.0
-2013-12-13 10:00:00,13450.0
-2013-12-13 11:00:00,13370.0
-2013-12-13 12:00:00,13257.0
-2013-12-13 13:00:00,13037.0
-2013-12-13 14:00:00,12840.0
-2013-12-13 15:00:00,12852.0
-2013-12-13 16:00:00,12861.0
-2013-12-13 17:00:00,13039.0
-2013-12-13 18:00:00,13905.0
-2013-12-13 19:00:00,14309.0
-2013-12-13 20:00:00,14112.0
-2013-12-13 21:00:00,13897.0
-2013-12-13 22:00:00,13577.0
-2013-12-13 23:00:00,13203.0
-2013-12-14 00:00:00,12436.0
-2013-12-12 01:00:00,12870.0
-2013-12-12 02:00:00,12306.0
-2013-12-12 03:00:00,12005.0
-2013-12-12 04:00:00,11870.0
-2013-12-12 05:00:00,11901.0
-2013-12-12 06:00:00,12154.0
-2013-12-12 07:00:00,12827.0
-2013-12-12 08:00:00,13972.0
-2013-12-12 09:00:00,14507.0
-2013-12-12 10:00:00,14574.0
-2013-12-12 11:00:00,14634.0
-2013-12-12 12:00:00,14507.0
-2013-12-12 13:00:00,14257.0
-2013-12-12 14:00:00,14049.0
-2013-12-12 15:00:00,13882.0
-2013-12-12 16:00:00,13709.0
-2013-12-12 17:00:00,13782.0
-2013-12-12 18:00:00,14668.0
-2013-12-12 19:00:00,15346.0
-2013-12-12 20:00:00,15165.0
-2013-12-12 21:00:00,14976.0
-2013-12-12 22:00:00,14721.0
-2013-12-12 23:00:00,14108.0
-2013-12-13 00:00:00,13170.0
-2013-12-11 01:00:00,12299.0
-2013-12-11 02:00:00,11680.0
-2013-12-11 03:00:00,11391.0
-2013-12-11 04:00:00,11215.0
-2013-12-11 05:00:00,11111.0
-2013-12-11 06:00:00,11339.0
-2013-12-11 07:00:00,12027.0
-2013-12-11 08:00:00,13152.0
-2013-12-11 09:00:00,13612.0
-2013-12-11 10:00:00,13692.0
-2013-12-11 11:00:00,13410.0
-2013-12-11 12:00:00,13641.0
-2013-12-11 13:00:00,13611.0
-2013-12-11 14:00:00,13488.0
-2013-12-11 15:00:00,13488.0
-2013-12-11 16:00:00,13408.0
-2013-12-11 17:00:00,13549.0
-2013-12-11 18:00:00,14552.0
-2013-12-11 19:00:00,15443.0
-2013-12-11 20:00:00,15428.0
-2013-12-11 21:00:00,15310.0
-2013-12-11 22:00:00,15096.0
-2013-12-11 23:00:00,14608.0
-2013-12-12 00:00:00,13749.0
-2013-12-10 01:00:00,12568.0
-2013-12-10 02:00:00,12013.0
-2013-12-10 03:00:00,11736.0
-2013-12-10 04:00:00,11588.0
-2013-12-10 05:00:00,11608.0
-2013-12-10 06:00:00,11834.0
-2013-12-10 07:00:00,12521.0
-2013-12-10 08:00:00,13720.0
-2013-12-10 09:00:00,14239.0
-2013-12-10 10:00:00,14343.0
-2013-12-10 11:00:00,14299.0
-2013-12-10 12:00:00,14105.0
-2013-12-10 13:00:00,13928.0
-2013-12-10 14:00:00,13811.0
-2013-12-10 15:00:00,13736.0
-2013-12-10 16:00:00,13557.0
-2013-12-10 17:00:00,13627.0
-2013-12-10 18:00:00,14619.0
-2013-12-10 19:00:00,15372.0
-2013-12-10 20:00:00,15304.0
-2013-12-10 21:00:00,15126.0
-2013-12-10 22:00:00,14818.0
-2013-12-10 23:00:00,14180.0
-2013-12-11 00:00:00,13258.0
-2013-12-09 01:00:00,10946.0
-2013-12-09 02:00:00,10487.0
-2013-12-09 03:00:00,10323.0
-2013-12-09 04:00:00,10205.0
-2013-12-09 05:00:00,10333.0
-2013-12-09 06:00:00,10653.0
-2013-12-09 07:00:00,11396.0
-2013-12-09 08:00:00,12662.0
-2013-12-09 09:00:00,13265.0
-2013-12-09 10:00:00,13356.0
-2013-12-09 11:00:00,13440.0
-2013-12-09 12:00:00,13376.0
-2013-12-09 13:00:00,13272.0
-2013-12-09 14:00:00,13224.0
-2013-12-09 15:00:00,13277.0
-2013-12-09 16:00:00,13385.0
-2013-12-09 17:00:00,13608.0
-2013-12-09 18:00:00,14595.0
-2013-12-09 19:00:00,15338.0
-2013-12-09 20:00:00,15288.0
-2013-12-09 21:00:00,15147.0
-2013-12-09 22:00:00,14916.0
-2013-12-09 23:00:00,14399.0
-2013-12-10 00:00:00,13530.0
-2013-12-08 01:00:00,11575.0
-2013-12-08 02:00:00,11001.0
-2013-12-08 03:00:00,10691.0
-2013-12-08 04:00:00,10421.0
-2013-12-08 05:00:00,10366.0
-2013-12-08 06:00:00,10343.0
-2013-12-08 07:00:00,10483.0
-2013-12-08 08:00:00,10721.0
-2013-12-08 09:00:00,10836.0
-2013-12-08 10:00:00,11098.0
-2013-12-08 11:00:00,11362.0
-2013-12-08 12:00:00,11593.0
-2013-12-08 13:00:00,11718.0
-2013-12-08 14:00:00,11753.0
-2013-12-08 15:00:00,11739.0
-2013-12-08 16:00:00,11784.0
-2013-12-08 17:00:00,11960.0
-2013-12-08 18:00:00,12828.0
-2013-12-08 19:00:00,13421.0
-2013-12-08 20:00:00,13437.0
-2013-12-08 21:00:00,13332.0
-2013-12-08 22:00:00,13084.0
-2013-12-08 23:00:00,12550.0
-2013-12-09 00:00:00,11699.0
-2013-12-07 01:00:00,12003.0
-2013-12-07 02:00:00,11365.0
-2013-12-07 03:00:00,11057.0
-2013-12-07 04:00:00,10855.0
-2013-12-07 05:00:00,10798.0
-2013-12-07 06:00:00,10859.0
-2013-12-07 07:00:00,11212.0
-2013-12-07 08:00:00,11770.0
-2013-12-07 09:00:00,11987.0
-2013-12-07 10:00:00,12205.0
-2013-12-07 11:00:00,12345.0
-2013-12-07 12:00:00,12344.0
-2013-12-07 13:00:00,12209.0
-2013-12-07 14:00:00,12013.0
-2013-12-07 15:00:00,11757.0
-2013-12-07 16:00:00,11663.0
-2013-12-07 17:00:00,11763.0
-2013-12-07 18:00:00,12726.0
-2013-12-07 19:00:00,13504.0
-2013-12-07 20:00:00,13456.0
-2013-12-07 21:00:00,13366.0
-2013-12-07 22:00:00,13144.0
-2013-12-07 23:00:00,12923.0
-2013-12-08 00:00:00,12268.0
-2013-12-06 01:00:00,11360.0
-2013-12-06 02:00:00,10732.0
-2013-12-06 03:00:00,10413.0
-2013-12-06 04:00:00,10240.0
-2013-12-06 05:00:00,10257.0
-2013-12-06 06:00:00,10539.0
-2013-12-06 07:00:00,11254.0
-2013-12-06 08:00:00,12427.0
-2013-12-06 09:00:00,13115.0
-2013-12-06 10:00:00,13215.0
-2013-12-06 11:00:00,13358.0
-2013-12-06 12:00:00,13436.0
-2013-12-06 13:00:00,13365.0
-2013-12-06 14:00:00,13277.0
-2013-12-06 15:00:00,13234.0
-2013-12-06 16:00:00,13160.0
-2013-12-06 17:00:00,13078.0
-2013-12-06 18:00:00,13812.0
-2013-12-06 19:00:00,14435.0
-2013-12-06 20:00:00,14287.0
-2013-12-06 21:00:00,14088.0
-2013-12-06 22:00:00,13822.0
-2013-12-06 23:00:00,13517.0
-2013-12-07 00:00:00,12761.0
-2013-12-05 01:00:00,10095.0
-2013-12-05 02:00:00,9549.0
-2013-12-05 03:00:00,9312.0
-2013-12-05 04:00:00,9190.0
-2013-12-05 05:00:00,9256.0
-2013-12-05 06:00:00,9563.0
-2013-12-05 07:00:00,10413.0
-2013-12-05 08:00:00,11699.0
-2013-12-05 09:00:00,12413.0
-2013-12-05 10:00:00,12535.0
-2013-12-05 11:00:00,12558.0
-2013-12-05 12:00:00,12540.0
-2013-12-05 13:00:00,12518.0
-2013-12-05 14:00:00,12537.0
-2013-12-05 15:00:00,12651.0
-2013-12-05 16:00:00,12708.0
-2013-12-05 17:00:00,12854.0
-2013-12-05 18:00:00,13716.0
-2013-12-05 19:00:00,14206.0
-2013-12-05 20:00:00,14067.0
-2013-12-05 21:00:00,13867.0
-2013-12-05 22:00:00,13587.0
-2013-12-05 23:00:00,13064.0
-2013-12-06 00:00:00,12225.0
-2013-12-04 01:00:00,9944.0
-2013-12-04 02:00:00,9365.0
-2013-12-04 03:00:00,9020.0
-2013-12-04 04:00:00,8816.0
-2013-12-04 05:00:00,8779.0
-2013-12-04 06:00:00,8998.0
-2013-12-04 07:00:00,9730.0
-2013-12-04 08:00:00,10944.0
-2013-12-04 09:00:00,11581.0
-2013-12-04 10:00:00,11753.0
-2013-12-04 11:00:00,11894.0
-2013-12-04 12:00:00,11970.0
-2013-12-04 13:00:00,11961.0
-2013-12-04 14:00:00,11927.0
-2013-12-04 15:00:00,11959.0
-2013-12-04 16:00:00,11975.0
-2013-12-04 17:00:00,12122.0
-2013-12-04 18:00:00,12734.0
-2013-12-04 19:00:00,13002.0
-2013-12-04 20:00:00,12782.0
-2013-12-04 21:00:00,12573.0
-2013-12-04 22:00:00,12230.0
-2013-12-04 23:00:00,11659.0
-2013-12-05 00:00:00,10847.0
-2013-12-03 01:00:00,10426.0
-2013-12-03 02:00:00,9856.0
-2013-12-03 03:00:00,9505.0
-2013-12-03 04:00:00,9317.0
-2013-12-03 05:00:00,9312.0
-2013-12-03 06:00:00,9554.0
-2013-12-03 07:00:00,10241.0
-2013-12-03 08:00:00,11425.0
-2013-12-03 09:00:00,12088.0
-2013-12-03 10:00:00,12153.0
-2013-12-03 11:00:00,12221.0
-2013-12-03 12:00:00,12235.0
-2013-12-03 13:00:00,12135.0
-2013-12-03 14:00:00,12109.0
-2013-12-03 15:00:00,12132.0
-2013-12-03 16:00:00,12100.0
-2013-12-03 17:00:00,12188.0
-2013-12-03 18:00:00,12847.0
-2013-12-03 19:00:00,13131.0
-2013-12-03 20:00:00,12945.0
-2013-12-03 21:00:00,12661.0
-2013-12-03 22:00:00,12345.0
-2013-12-03 23:00:00,11738.0
-2013-12-04 00:00:00,10861.0
-2013-12-02 01:00:00,9790.0
-2013-12-02 02:00:00,9414.0
-2013-12-02 03:00:00,9163.0
-2013-12-02 04:00:00,9114.0
-2013-12-02 05:00:00,9130.0
-2013-12-02 06:00:00,9510.0
-2013-12-02 07:00:00,10313.0
-2013-12-02 08:00:00,11479.0
-2013-12-02 09:00:00,12066.0
-2013-12-02 10:00:00,12181.0
-2013-12-02 11:00:00,12145.0
-2013-12-02 12:00:00,12152.0
-2013-12-02 13:00:00,12081.0
-2013-12-02 14:00:00,12021.0
-2013-12-02 15:00:00,12056.0
-2013-12-02 16:00:00,12068.0
-2013-12-02 17:00:00,12142.0
-2013-12-02 18:00:00,12949.0
-2013-12-02 19:00:00,13467.0
-2013-12-02 20:00:00,13307.0
-2013-12-02 21:00:00,13108.0
-2013-12-02 22:00:00,12806.0
-2013-12-02 23:00:00,12243.0
-2013-12-03 00:00:00,11332.0
-2013-12-01 01:00:00,9777.0
-2013-12-01 02:00:00,9258.0
-2013-12-01 03:00:00,8953.0
-2013-12-01 04:00:00,8776.0
-2013-12-01 05:00:00,8788.0
-2013-12-01 06:00:00,8762.0
-2013-12-01 07:00:00,8978.0
-2013-12-01 08:00:00,9207.0
-2013-12-01 09:00:00,9312.0
-2013-12-01 10:00:00,9512.0
-2013-12-01 11:00:00,9634.0
-2013-12-01 12:00:00,9699.0
-2013-12-01 13:00:00,9721.0
-2013-12-01 14:00:00,9680.0
-2013-12-01 15:00:00,9676.0
-2013-12-01 16:00:00,9699.0
-2013-12-01 17:00:00,9868.0
-2013-12-01 18:00:00,10884.0
-2013-12-01 19:00:00,11655.0
-2013-12-01 20:00:00,11735.0
-2013-12-01 21:00:00,11650.0
-2013-12-01 22:00:00,11449.0
-2013-12-01 23:00:00,11035.0
-2013-12-02 00:00:00,10435.0
-2013-11-30 01:00:00,10135.0
-2013-11-30 02:00:00,9652.0
-2013-11-30 03:00:00,9366.0
-2013-11-30 04:00:00,9159.0
-2013-11-30 05:00:00,9105.0
-2013-11-30 06:00:00,9198.0
-2013-11-30 07:00:00,9492.0
-2013-11-30 08:00:00,9894.0
-2013-11-30 09:00:00,10134.0
-2013-11-30 10:00:00,10309.0
-2013-11-30 11:00:00,10405.0
-2013-11-30 12:00:00,10378.0
-2013-11-30 13:00:00,10300.0
-2013-11-30 14:00:00,10135.0
-2013-11-30 15:00:00,9884.0
-2013-11-30 16:00:00,9757.0
-2013-11-30 17:00:00,9835.0
-2013-11-30 18:00:00,10628.0
-2013-11-30 19:00:00,11272.0
-2013-11-30 20:00:00,11277.0
-2013-11-30 21:00:00,11162.0
-2013-11-30 22:00:00,11081.0
-2013-11-30 23:00:00,10774.0
-2013-12-01 00:00:00,10290.0
-2013-11-29 01:00:00,9938.0
-2013-11-29 02:00:00,9643.0
-2013-11-29 03:00:00,9476.0
-2013-11-29 04:00:00,9382.0
-2013-11-29 05:00:00,9429.0
-2013-11-29 06:00:00,9637.0
-2013-11-29 07:00:00,10076.0
-2013-11-29 08:00:00,10602.0
-2013-11-29 09:00:00,10730.0
-2013-11-29 10:00:00,10786.0
-2013-11-29 11:00:00,10847.0
-2013-11-29 12:00:00,10823.0
-2013-11-29 13:00:00,10761.0
-2013-11-29 14:00:00,10658.0
-2013-11-29 15:00:00,10563.0
-2013-11-29 16:00:00,10536.0
-2013-11-29 17:00:00,10691.0
-2013-11-29 18:00:00,11547.0
-2013-11-29 19:00:00,12098.0
-2013-11-29 20:00:00,11950.0
-2013-11-29 21:00:00,11816.0
-2013-11-29 22:00:00,11584.0
-2013-11-29 23:00:00,11271.0
-2013-11-30 00:00:00,10705.0
-2013-11-28 01:00:00,10886.0
-2013-11-28 02:00:00,10326.0
-2013-11-28 03:00:00,9965.0
-2013-11-28 04:00:00,9756.0
-2013-11-28 05:00:00,9649.0
-2013-11-28 06:00:00,9688.0
-2013-11-28 07:00:00,9858.0
-2013-11-28 08:00:00,10142.0
-2013-11-28 09:00:00,10171.0
-2013-11-28 10:00:00,10315.0
-2013-11-28 11:00:00,10490.0
-2013-11-28 12:00:00,10539.0
-2013-11-28 13:00:00,10458.0
-2013-11-28 14:00:00,10268.0
-2013-11-28 15:00:00,10049.0
-2013-11-28 16:00:00,9906.0
-2013-11-28 17:00:00,9911.0
-2013-11-28 18:00:00,10365.0
-2013-11-28 19:00:00,10763.0
-2013-11-28 20:00:00,10717.0
-2013-11-28 21:00:00,10702.0
-2013-11-28 22:00:00,10681.0
-2013-11-28 23:00:00,10572.0
-2013-11-29 00:00:00,10283.0
-2013-11-27 01:00:00,11324.0
-2013-11-27 02:00:00,10837.0
-2013-11-27 03:00:00,10588.0
-2013-11-27 04:00:00,10451.0
-2013-11-27 05:00:00,10454.0
-2013-11-27 06:00:00,10734.0
-2013-11-27 07:00:00,11456.0
-2013-11-27 08:00:00,12408.0
-2013-11-27 09:00:00,12816.0
-2013-11-27 10:00:00,12993.0
-2013-11-27 11:00:00,13071.0
-2013-11-27 12:00:00,13059.0
-2013-11-27 13:00:00,12946.0
-2013-11-27 14:00:00,12789.0
-2013-11-27 15:00:00,12636.0
-2013-11-27 16:00:00,12467.0
-2013-11-27 17:00:00,12433.0
-2013-11-27 18:00:00,13132.0
-2013-11-27 19:00:00,13696.0
-2013-11-27 20:00:00,13435.0
-2013-11-27 21:00:00,13193.0
-2013-11-27 22:00:00,12882.0
-2013-11-27 23:00:00,12410.0
-2013-11-28 00:00:00,11659.0
-2013-11-26 01:00:00,10842.0
-2013-11-26 02:00:00,10344.0
-2013-11-26 03:00:00,10022.0
-2013-11-26 04:00:00,9852.0
-2013-11-26 05:00:00,9846.0
-2013-11-26 06:00:00,10089.0
-2013-11-26 07:00:00,10830.0
-2013-11-26 08:00:00,11940.0
-2013-11-26 09:00:00,12515.0
-2013-11-26 10:00:00,12714.0
-2013-11-26 11:00:00,12833.0
-2013-11-26 12:00:00,12872.0
-2013-11-26 13:00:00,12825.0
-2013-11-26 14:00:00,12785.0
-2013-11-26 15:00:00,12899.0
-2013-11-26 16:00:00,12916.0
-2013-11-26 17:00:00,12963.0
-2013-11-26 18:00:00,13441.0
-2013-11-26 19:00:00,13791.0
-2013-11-26 20:00:00,13575.0
-2013-11-26 21:00:00,13452.0
-2013-11-26 22:00:00,13217.0
-2013-11-26 23:00:00,12780.0
-2013-11-27 00:00:00,12034.0
-2013-11-25 01:00:00,10800.0
-2013-11-25 02:00:00,10420.0
-2013-11-25 03:00:00,10207.0
-2013-11-25 04:00:00,10094.0
-2013-11-25 05:00:00,10087.0
-2013-11-25 06:00:00,10386.0
-2013-11-25 07:00:00,11167.0
-2013-11-25 08:00:00,12323.0
-2013-11-25 09:00:00,12899.0
-2013-11-25 10:00:00,13085.0
-2013-11-25 11:00:00,13193.0
-2013-11-25 12:00:00,13275.0
-2013-11-25 13:00:00,13254.0
-2013-11-25 14:00:00,13196.0
-2013-11-25 15:00:00,13221.0
-2013-11-25 16:00:00,13144.0
-2013-11-25 17:00:00,13116.0
-2013-11-25 18:00:00,13660.0
-2013-11-25 19:00:00,13928.0
-2013-11-25 20:00:00,13710.0
-2013-11-25 21:00:00,13429.0
-2013-11-25 22:00:00,13067.0
-2013-11-25 23:00:00,12455.0
-2013-11-26 00:00:00,11620.0
-2013-11-24 01:00:00,10971.0
-2013-11-24 02:00:00,10542.0
-2013-11-24 03:00:00,10311.0
-2013-11-24 04:00:00,10140.0
-2013-11-24 05:00:00,10118.0
-2013-11-24 06:00:00,10150.0
-2013-11-24 07:00:00,10304.0
-2013-11-24 08:00:00,10551.0
-2013-11-24 09:00:00,10567.0
-2013-11-24 10:00:00,10767.0
-2013-11-24 11:00:00,10883.0
-2013-11-24 12:00:00,10958.0
-2013-11-24 13:00:00,10973.0
-2013-11-24 14:00:00,10873.0
-2013-11-24 15:00:00,10792.0
-2013-11-24 16:00:00,10730.0
-2013-11-24 17:00:00,10881.0
-2013-11-24 18:00:00,11713.0
-2013-11-24 19:00:00,12513.0
-2013-11-24 20:00:00,12531.0
-2013-11-24 21:00:00,12489.0
-2013-11-24 22:00:00,12253.0
-2013-11-24 23:00:00,11939.0
-2013-11-25 00:00:00,11364.0
-2013-11-23 01:00:00,10590.0
-2013-11-23 02:00:00,10120.0
-2013-11-23 03:00:00,9881.0
-2013-11-23 04:00:00,9626.0
-2013-11-23 05:00:00,9603.0
-2013-11-23 06:00:00,9723.0
-2013-11-23 07:00:00,10072.0
-2013-11-23 08:00:00,10576.0
-2013-11-23 09:00:00,10801.0
-2013-11-23 10:00:00,11209.0
-2013-11-23 11:00:00,11453.0
-2013-11-23 12:00:00,11549.0
-2013-11-23 13:00:00,11516.0
-2013-11-23 14:00:00,11379.0
-2013-11-23 15:00:00,11158.0
-2013-11-23 16:00:00,11126.0
-2013-11-23 17:00:00,11215.0
-2013-11-23 18:00:00,11967.0
-2013-11-23 19:00:00,12658.0
-2013-11-23 20:00:00,12636.0
-2013-11-23 21:00:00,12514.0
-2013-11-23 22:00:00,12346.0
-2013-11-23 23:00:00,12067.0
-2013-11-24 00:00:00,11512.0
-2013-11-22 01:00:00,9797.0
-2013-11-22 02:00:00,9292.0
-2013-11-22 03:00:00,9011.0
-2013-11-22 04:00:00,8817.0
-2013-11-22 05:00:00,8842.0
-2013-11-22 06:00:00,9124.0
-2013-11-22 07:00:00,9875.0
-2013-11-22 08:00:00,11050.0
-2013-11-22 09:00:00,11854.0
-2013-11-22 10:00:00,12047.0
-2013-11-22 11:00:00,12195.0
-2013-11-22 12:00:00,12290.0
-2013-11-22 13:00:00,12134.0
-2013-11-22 14:00:00,11937.0
-2013-11-22 15:00:00,11963.0
-2013-11-22 16:00:00,11938.0
-2013-11-22 17:00:00,11932.0
-2013-11-22 18:00:00,12520.0
-2013-11-22 19:00:00,12961.0
-2013-11-22 20:00:00,12776.0
-2013-11-22 21:00:00,12548.0
-2013-11-22 22:00:00,12265.0
-2013-11-22 23:00:00,11903.0
-2013-11-23 00:00:00,11317.0
-2013-11-21 01:00:00,10007.0
-2013-11-21 02:00:00,9462.0
-2013-11-21 03:00:00,9161.0
-2013-11-21 04:00:00,8964.0
-2013-11-21 05:00:00,8919.0
-2013-11-21 06:00:00,9178.0
-2013-11-21 07:00:00,9913.0
-2013-11-21 08:00:00,11069.0
-2013-11-21 09:00:00,11545.0
-2013-11-21 10:00:00,11671.0
-2013-11-21 11:00:00,11710.0
-2013-11-21 12:00:00,11714.0
-2013-11-21 13:00:00,11793.0
-2013-11-21 14:00:00,11772.0
-2013-11-21 15:00:00,11838.0
-2013-11-21 16:00:00,11745.0
-2013-11-21 17:00:00,11857.0
-2013-11-21 18:00:00,12427.0
-2013-11-21 19:00:00,12634.0
-2013-11-21 20:00:00,12384.0
-2013-11-21 21:00:00,12134.0
-2013-11-21 22:00:00,11843.0
-2013-11-21 23:00:00,11283.0
-2013-11-22 00:00:00,10530.0
-2013-11-20 01:00:00,10235.0
-2013-11-20 02:00:00,9728.0
-2013-11-20 03:00:00,9447.0
-2013-11-20 04:00:00,9295.0
-2013-11-20 05:00:00,9329.0
-2013-11-20 06:00:00,9587.0
-2013-11-20 07:00:00,10388.0
-2013-11-20 08:00:00,11547.0
-2013-11-20 09:00:00,12017.0
-2013-11-20 10:00:00,12123.0
-2013-11-20 11:00:00,12103.0
-2013-11-20 12:00:00,12061.0
-2013-11-20 13:00:00,11968.0
-2013-11-20 14:00:00,11822.0
-2013-11-20 15:00:00,11843.0
-2013-11-20 16:00:00,11886.0
-2013-11-20 17:00:00,11983.0
-2013-11-20 18:00:00,12629.0
-2013-11-20 19:00:00,12990.0
-2013-11-20 20:00:00,12760.0
-2013-11-20 21:00:00,12502.0
-2013-11-20 22:00:00,12189.0
-2013-11-20 23:00:00,11615.0
-2013-11-21 00:00:00,10791.0
-2013-11-19 01:00:00,10190.0
-2013-11-19 02:00:00,9740.0
-2013-11-19 03:00:00,9497.0
-2013-11-19 04:00:00,9365.0
-2013-11-19 05:00:00,9385.0
-2013-11-19 06:00:00,9668.0
-2013-11-19 07:00:00,10489.0
-2013-11-19 08:00:00,11625.0
-2013-11-19 09:00:00,12004.0
-2013-11-19 10:00:00,12013.0
-2013-11-19 11:00:00,11987.0
-2013-11-19 12:00:00,11980.0
-2013-11-19 13:00:00,11891.0
-2013-11-19 14:00:00,11767.0
-2013-11-19 15:00:00,11763.0
-2013-11-19 16:00:00,11664.0
-2013-11-19 17:00:00,11696.0
-2013-11-19 18:00:00,12366.0
-2013-11-19 19:00:00,12964.0
-2013-11-19 20:00:00,12827.0
-2013-11-19 21:00:00,12630.0
-2013-11-19 22:00:00,12326.0
-2013-11-19 23:00:00,11795.0
-2013-11-20 00:00:00,11004.0
-2013-11-18 01:00:00,9016.0
-2013-11-18 02:00:00,8731.0
-2013-11-18 03:00:00,8564.0
-2013-11-18 04:00:00,8510.0
-2013-11-18 05:00:00,8587.0
-2013-11-18 06:00:00,8956.0
-2013-11-18 07:00:00,9790.0
-2013-11-18 08:00:00,11064.0
-2013-11-18 09:00:00,11554.0
-2013-11-18 10:00:00,11814.0
-2013-11-18 11:00:00,11890.0
-2013-11-18 12:00:00,11880.0
-2013-11-18 13:00:00,11818.0
-2013-11-18 14:00:00,11726.0
-2013-11-18 15:00:00,11693.0
-2013-11-18 16:00:00,11617.0
-2013-11-18 17:00:00,11599.0
-2013-11-18 18:00:00,12184.0
-2013-11-18 19:00:00,12887.0
-2013-11-18 20:00:00,12719.0
-2013-11-18 21:00:00,12520.0
-2013-11-18 22:00:00,12233.0
-2013-11-18 23:00:00,11716.0
-2013-11-19 00:00:00,10935.0
-2013-11-17 01:00:00,9072.0
-2013-11-17 02:00:00,8622.0
-2013-11-17 03:00:00,8293.0
-2013-11-17 04:00:00,8021.0
-2013-11-17 05:00:00,7942.0
-2013-11-17 06:00:00,7917.0
-2013-11-17 07:00:00,8040.0
-2013-11-17 08:00:00,8338.0
-2013-11-17 09:00:00,8439.0
-2013-11-17 10:00:00,8773.0
-2013-11-17 11:00:00,9122.0
-2013-11-17 12:00:00,9305.0
-2013-11-17 13:00:00,9726.0
-2013-11-17 14:00:00,9935.0
-2013-11-17 15:00:00,9693.0
-2013-11-17 16:00:00,9369.0
-2013-11-17 17:00:00,9622.0
-2013-11-17 18:00:00,10164.0
-2013-11-17 19:00:00,10692.0
-2013-11-17 20:00:00,10707.0
-2013-11-17 21:00:00,10631.0
-2013-11-17 22:00:00,10399.0
-2013-11-17 23:00:00,10034.0
-2013-11-18 00:00:00,9538.0
-2013-11-16 01:00:00,9975.0
-2013-11-16 02:00:00,9479.0
-2013-11-16 03:00:00,9097.0
-2013-11-16 04:00:00,8904.0
-2013-11-16 05:00:00,8768.0
-2013-11-16 06:00:00,8844.0
-2013-11-16 07:00:00,9131.0
-2013-11-16 08:00:00,9592.0
-2013-11-16 09:00:00,9939.0
-2013-11-16 10:00:00,10311.0
-2013-11-16 11:00:00,10612.0
-2013-11-16 12:00:00,10800.0
-2013-11-16 13:00:00,10780.0
-2013-11-16 14:00:00,10640.0
-2013-11-16 15:00:00,10499.0
-2013-11-16 16:00:00,10360.0
-2013-11-16 17:00:00,10398.0
-2013-11-16 18:00:00,10907.0
-2013-11-16 19:00:00,11181.0
-2013-11-16 20:00:00,11046.0
-2013-11-16 21:00:00,10876.0
-2013-11-16 22:00:00,10610.0
-2013-11-16 23:00:00,10204.0
-2013-11-17 00:00:00,9701.0
-2013-11-15 01:00:00,10100.0
-2013-11-15 02:00:00,9639.0
-2013-11-15 03:00:00,9361.0
-2013-11-15 04:00:00,9176.0
-2013-11-15 05:00:00,9184.0
-2013-11-15 06:00:00,9470.0
-2013-11-15 07:00:00,10198.0
-2013-11-15 08:00:00,11252.0
-2013-11-15 09:00:00,11724.0
-2013-11-15 10:00:00,11873.0
-2013-11-15 11:00:00,11873.0
-2013-11-15 12:00:00,11845.0
-2013-11-15 13:00:00,11770.0
-2013-11-15 14:00:00,11633.0
-2013-11-15 15:00:00,11648.0
-2013-11-15 16:00:00,11451.0
-2013-11-15 17:00:00,11404.0
-2013-11-15 18:00:00,11943.0
-2013-11-15 19:00:00,12488.0
-2013-11-15 20:00:00,12315.0
-2013-11-15 21:00:00,12056.0
-2013-11-15 22:00:00,11741.0
-2013-11-15 23:00:00,11344.0
-2013-11-16 00:00:00,10670.0
-2013-11-14 01:00:00,10659.0
-2013-11-14 02:00:00,10196.0
-2013-11-14 03:00:00,9889.0
-2013-11-14 04:00:00,9734.0
-2013-11-14 05:00:00,9744.0
-2013-11-14 06:00:00,10003.0
-2013-11-14 07:00:00,10725.0
-2013-11-14 08:00:00,11768.0
-2013-11-14 09:00:00,12138.0
-2013-11-14 10:00:00,12189.0
-2013-11-14 11:00:00,12170.0
-2013-11-14 12:00:00,12144.0
-2013-11-14 13:00:00,12007.0
-2013-11-14 14:00:00,11882.0
-2013-11-14 15:00:00,11850.0
-2013-11-14 16:00:00,11739.0
-2013-11-14 17:00:00,11774.0
-2013-11-14 18:00:00,12329.0
-2013-11-14 19:00:00,12909.0
-2013-11-14 20:00:00,12724.0
-2013-11-14 21:00:00,12506.0
-2013-11-14 22:00:00,12210.0
-2013-11-14 23:00:00,11643.0
-2013-11-15 00:00:00,10848.0
-2013-11-13 01:00:00,10786.0
-2013-11-13 02:00:00,10365.0
-2013-11-13 03:00:00,10132.0
-2013-11-13 04:00:00,10010.0
-2013-11-13 05:00:00,10020.0
-2013-11-13 06:00:00,10316.0
-2013-11-13 07:00:00,11085.0
-2013-11-13 08:00:00,12128.0
-2013-11-13 09:00:00,12495.0
-2013-11-13 10:00:00,12562.0
-2013-11-13 11:00:00,12564.0
-2013-11-13 12:00:00,12551.0
-2013-11-13 13:00:00,12473.0
-2013-11-13 14:00:00,12364.0
-2013-11-13 15:00:00,12292.0
-2013-11-13 16:00:00,12145.0
-2013-11-13 17:00:00,12174.0
-2013-11-13 18:00:00,12777.0
-2013-11-13 19:00:00,13513.0
-2013-11-13 20:00:00,13343.0
-2013-11-13 21:00:00,13107.0
-2013-11-13 22:00:00,12824.0
-2013-11-13 23:00:00,12281.0
-2013-11-14 00:00:00,11474.0
-2013-11-12 01:00:00,10494.0
-2013-11-12 02:00:00,10099.0
-2013-11-12 03:00:00,9840.0
-2013-11-12 04:00:00,9671.0
-2013-11-12 05:00:00,9731.0
-2013-11-12 06:00:00,10037.0
-2013-11-12 07:00:00,10797.0
-2013-11-12 08:00:00,11913.0
-2013-11-12 09:00:00,12294.0
-2013-11-12 10:00:00,12368.0
-2013-11-12 11:00:00,12381.0
-2013-11-12 12:00:00,12387.0
-2013-11-12 13:00:00,12324.0
-2013-11-12 14:00:00,12238.0
-2013-11-12 15:00:00,12189.0
-2013-11-12 16:00:00,12076.0
-2013-11-12 17:00:00,12088.0
-2013-11-12 18:00:00,12663.0
-2013-11-12 19:00:00,13432.0
-2013-11-12 20:00:00,13319.0
-2013-11-12 21:00:00,13111.0
-2013-11-12 22:00:00,12805.0
-2013-11-12 23:00:00,12275.0
-2013-11-13 00:00:00,11526.0
-2013-11-11 01:00:00,9042.0
-2013-11-11 02:00:00,8706.0
-2013-11-11 03:00:00,8521.0
-2013-11-11 04:00:00,8413.0
-2013-11-11 05:00:00,8432.0
-2013-11-11 06:00:00,8735.0
-2013-11-11 07:00:00,9487.0
-2013-11-11 08:00:00,10523.0
-2013-11-11 09:00:00,11068.0
-2013-11-11 10:00:00,11462.0
-2013-11-11 11:00:00,11682.0
-2013-11-11 12:00:00,11875.0
-2013-11-11 13:00:00,11993.0
-2013-11-11 14:00:00,12129.0
-2013-11-11 15:00:00,12243.0
-2013-11-11 16:00:00,12262.0
-2013-11-11 17:00:00,12441.0
-2013-11-11 18:00:00,12918.0
-2013-11-11 19:00:00,13326.0
-2013-11-11 20:00:00,13094.0
-2013-11-11 21:00:00,12877.0
-2013-11-11 22:00:00,12568.0
-2013-11-11 23:00:00,12027.0
-2013-11-12 00:00:00,11213.0
-2013-11-10 01:00:00,9226.0
-2013-11-10 02:00:00,8833.0
-2013-11-10 03:00:00,8590.0
-2013-11-10 04:00:00,8424.0
-2013-11-10 05:00:00,8376.0
-2013-11-10 06:00:00,8434.0
-2013-11-10 07:00:00,8618.0
-2013-11-10 08:00:00,8778.0
-2013-11-10 09:00:00,8792.0
-2013-11-10 10:00:00,9006.0
-2013-11-10 11:00:00,9173.0
-2013-11-10 12:00:00,9198.0
-2013-11-10 13:00:00,9246.0
-2013-11-10 14:00:00,9205.0
-2013-11-10 15:00:00,9144.0
-2013-11-10 16:00:00,9076.0
-2013-11-10 17:00:00,9172.0
-2013-11-10 18:00:00,9745.0
-2013-11-10 19:00:00,10618.0
-2013-11-10 20:00:00,10669.0
-2013-11-10 21:00:00,10582.0
-2013-11-10 22:00:00,10362.0
-2013-11-10 23:00:00,10029.0
-2013-11-11 00:00:00,9543.0
-2013-11-09 01:00:00,9836.0
-2013-11-09 02:00:00,9286.0
-2013-11-09 03:00:00,8954.0
-2013-11-09 04:00:00,8732.0
-2013-11-09 05:00:00,8644.0
-2013-11-09 06:00:00,8711.0
-2013-11-09 07:00:00,9033.0
-2013-11-09 08:00:00,9389.0
-2013-11-09 09:00:00,9561.0
-2013-11-09 10:00:00,9867.0
-2013-11-09 11:00:00,10023.0
-2013-11-09 12:00:00,10063.0
-2013-11-09 13:00:00,10024.0
-2013-11-09 14:00:00,9888.0
-2013-11-09 15:00:00,9741.0
-2013-11-09 16:00:00,9612.0
-2013-11-09 17:00:00,9635.0
-2013-11-09 18:00:00,10064.0
-2013-11-09 19:00:00,10796.0
-2013-11-09 20:00:00,10775.0
-2013-11-09 21:00:00,10622.0
-2013-11-09 22:00:00,10439.0
-2013-11-09 23:00:00,10158.0
-2013-11-10 00:00:00,9726.0
-2013-11-08 01:00:00,10170.0
-2013-11-08 02:00:00,9687.0
-2013-11-08 03:00:00,9361.0
-2013-11-08 04:00:00,9266.0
-2013-11-08 05:00:00,9252.0
-2013-11-08 06:00:00,9574.0
-2013-11-08 07:00:00,10312.0
-2013-11-08 08:00:00,11285.0
-2013-11-08 09:00:00,11724.0
-2013-11-08 10:00:00,11848.0
-2013-11-08 11:00:00,11835.0
-2013-11-08 12:00:00,11840.0
-2013-11-08 13:00:00,11733.0
-2013-11-08 14:00:00,11584.0
-2013-11-08 15:00:00,11549.0
-2013-11-08 16:00:00,11470.0
-2013-11-08 17:00:00,11530.0
-2013-11-08 18:00:00,11982.0
-2013-11-08 19:00:00,12534.0
-2013-11-08 20:00:00,12288.0
-2013-11-08 21:00:00,12041.0
-2013-11-08 22:00:00,11698.0
-2013-11-08 23:00:00,11238.0
-2013-11-09 00:00:00,10538.0
-2013-11-07 01:00:00,9889.0
-2013-11-07 02:00:00,9456.0
-2013-11-07 03:00:00,9211.0
-2013-11-07 04:00:00,9085.0
-2013-11-07 05:00:00,9095.0
-2013-11-07 06:00:00,9366.0
-2013-11-07 07:00:00,10141.0
-2013-11-07 08:00:00,11212.0
-2013-11-07 09:00:00,11624.0
-2013-11-07 10:00:00,11781.0
-2013-11-07 11:00:00,11789.0
-2013-11-07 12:00:00,11794.0
-2013-11-07 13:00:00,11781.0
-2013-11-07 14:00:00,11844.0
-2013-11-07 15:00:00,12005.0
-2013-11-07 16:00:00,11961.0
-2013-11-07 17:00:00,11908.0
-2013-11-07 18:00:00,12268.0
-2013-11-07 19:00:00,12917.0
-2013-11-07 20:00:00,12719.0
-2013-11-07 21:00:00,12512.0
-2013-11-07 22:00:00,12156.0
-2013-11-07 23:00:00,11617.0
-2013-11-08 00:00:00,10860.0
-2013-11-06 01:00:00,9526.0
-2013-11-06 02:00:00,9093.0
-2013-11-06 03:00:00,8775.0
-2013-11-06 04:00:00,8616.0
-2013-11-06 05:00:00,8550.0
-2013-11-06 06:00:00,8833.0
-2013-11-06 07:00:00,9533.0
-2013-11-06 08:00:00,10666.0
-2013-11-06 09:00:00,11392.0
-2013-11-06 10:00:00,11617.0
-2013-11-06 11:00:00,11712.0
-2013-11-06 12:00:00,11842.0
-2013-11-06 13:00:00,11871.0
-2013-11-06 14:00:00,11782.0
-2013-11-06 15:00:00,11815.0
-2013-11-06 16:00:00,11776.0
-2013-11-06 17:00:00,11791.0
-2013-11-06 18:00:00,12157.0
-2013-11-06 19:00:00,12607.0
-2013-11-06 20:00:00,12414.0
-2013-11-06 21:00:00,12158.0
-2013-11-06 22:00:00,11849.0
-2013-11-06 23:00:00,11342.0
-2013-11-07 00:00:00,10578.0
-2013-11-05 01:00:00,9494.0
-2013-11-05 02:00:00,8998.0
-2013-11-05 03:00:00,8728.0
-2013-11-05 04:00:00,8520.0
-2013-11-05 05:00:00,8500.0
-2013-11-05 06:00:00,8718.0
-2013-11-05 07:00:00,9435.0
-2013-11-05 08:00:00,10512.0
-2013-11-05 09:00:00,11055.0
-2013-11-05 10:00:00,11229.0
-2013-11-05 11:00:00,11360.0
-2013-11-05 12:00:00,11516.0
-2013-11-05 13:00:00,11585.0
-2013-11-05 14:00:00,11615.0
-2013-11-05 15:00:00,11650.0
-2013-11-05 16:00:00,11606.0
-2013-11-05 17:00:00,11622.0
-2013-11-05 18:00:00,12018.0
-2013-11-05 19:00:00,12444.0
-2013-11-05 20:00:00,12245.0
-2013-11-05 21:00:00,12003.0
-2013-11-05 22:00:00,11665.0
-2013-11-05 23:00:00,11049.0
-2013-11-06 00:00:00,10289.0
-2013-11-04 01:00:00,9005.0
-2013-11-04 02:00:00,8692.0
-2013-11-04 03:00:00,8546.0
-2013-11-04 04:00:00,8492.0
-2013-11-04 05:00:00,8536.0
-2013-11-04 06:00:00,8837.0
-2013-11-04 07:00:00,9681.0
-2013-11-04 08:00:00,10753.0
-2013-11-04 09:00:00,11343.0
-2013-11-04 10:00:00,11596.0
-2013-11-04 11:00:00,11612.0
-2013-11-04 12:00:00,11612.0
-2013-11-04 13:00:00,11581.0
-2013-11-04 14:00:00,11546.0
-2013-11-04 15:00:00,11475.0
-2013-11-04 16:00:00,11368.0
-2013-11-04 17:00:00,11295.0
-2013-11-04 18:00:00,11539.0
-2013-11-04 19:00:00,12224.0
-2013-11-04 20:00:00,12061.0
-2013-11-04 21:00:00,12011.0
-2013-11-04 22:00:00,11607.0
-2013-11-04 23:00:00,11047.0
-2013-11-05 00:00:00,10252.0
-2013-11-03 01:00:00,9230.0
-2013-11-03 03:00:00,8459.0
-2013-11-03 04:00:00,8336.0
-2013-11-03 05:00:00,8372.0
-2013-11-03 06:00:00,8386.0
-2013-11-03 07:00:00,8659.0
-2013-11-03 08:00:00,8813.0
-2013-11-03 09:00:00,8945.0
-2013-11-03 10:00:00,9137.0
-2013-11-03 11:00:00,9247.0
-2013-11-03 12:00:00,9287.0
-2013-11-03 13:00:00,9315.0
-2013-11-03 14:00:00,9300.0
-2013-11-03 15:00:00,9252.0
-2013-11-03 16:00:00,9227.0
-2013-11-03 17:00:00,9332.0
-2013-11-03 18:00:00,9861.0
-2013-11-03 19:00:00,10722.0
-2013-11-03 20:00:00,10819.0
-2013-11-03 21:00:00,10759.0
-2013-11-03 22:00:00,10525.0
-2013-11-03 23:00:00,10110.0
-2013-11-04 00:00:00,9555.0
-2013-11-02 01:00:00,9622.0
-2013-11-02 02:00:00,9090.0
-2013-11-02 03:00:00,8797.0
-2013-11-02 04:00:00,8577.0
-2013-11-02 05:00:00,8526.0
-2013-11-02 06:00:00,8559.0
-2013-11-02 07:00:00,8834.0
-2013-11-02 08:00:00,9358.0
-2013-11-02 09:00:00,9777.0
-2013-11-02 10:00:00,10019.0
-2013-11-02 11:00:00,10242.0
-2013-11-02 12:00:00,10343.0
-2013-11-02 13:00:00,10313.0
-2013-11-02 14:00:00,10153.0
-2013-11-02 15:00:00,10020.0
-2013-11-02 16:00:00,9888.0
-2013-11-02 17:00:00,9829.0
-2013-11-02 18:00:00,9936.0
-2013-11-02 19:00:00,10307.0
-2013-11-02 20:00:00,10768.0
-2013-11-02 21:00:00,10644.0
-2013-11-02 22:00:00,10495.0
-2013-11-02 23:00:00,10174.0
-2013-11-03 00:00:00,9726.0
-2013-11-01 01:00:00,9408.0
-2013-11-01 02:00:00,8925.0
-2013-11-01 03:00:00,8665.0
-2013-11-01 04:00:00,8475.0
-2013-11-01 05:00:00,8458.0
-2013-11-01 06:00:00,8680.0
-2013-11-01 07:00:00,9359.0
-2013-11-01 08:00:00,10526.0
-2013-11-01 09:00:00,11355.0
-2013-11-01 10:00:00,11523.0
-2013-11-01 11:00:00,11601.0
-2013-11-01 12:00:00,11703.0
-2013-11-01 13:00:00,11679.0
-2013-11-01 14:00:00,11590.0
-2013-11-01 15:00:00,11581.0
-2013-11-01 16:00:00,11508.0
-2013-11-01 17:00:00,11433.0
-2013-11-01 18:00:00,11541.0
-2013-11-01 19:00:00,11757.0
-2013-11-01 20:00:00,11920.0
-2013-11-01 21:00:00,11714.0
-2013-11-01 22:00:00,11390.0
-2013-11-01 23:00:00,10995.0
-2013-11-02 00:00:00,10317.0
-2013-10-31 01:00:00,9601.0
-2013-10-31 02:00:00,9058.0
-2013-10-31 03:00:00,8733.0
-2013-10-31 04:00:00,8580.0
-2013-10-31 05:00:00,8509.0
-2013-10-31 06:00:00,8715.0
-2013-10-31 07:00:00,9321.0
-2013-10-31 08:00:00,10494.0
-2013-10-31 09:00:00,11442.0
-2013-10-31 10:00:00,11710.0
-2013-10-31 11:00:00,11791.0
-2013-10-31 12:00:00,11870.0
-2013-10-31 13:00:00,11878.0
-2013-10-31 14:00:00,11879.0
-2013-10-31 15:00:00,11907.0
-2013-10-31 16:00:00,11840.0
-2013-10-31 17:00:00,11740.0
-2013-10-31 18:00:00,11715.0
-2013-10-31 19:00:00,11718.0
-2013-10-31 20:00:00,11879.0
-2013-10-31 21:00:00,11603.0
-2013-10-31 22:00:00,11275.0
-2013-10-31 23:00:00,10822.0
-2013-11-01 00:00:00,10119.0
-2013-10-30 01:00:00,9497.0
-2013-10-30 02:00:00,8988.0
-2013-10-30 03:00:00,8635.0
-2013-10-30 04:00:00,8457.0
-2013-10-30 05:00:00,8432.0
-2013-10-30 06:00:00,8637.0
-2013-10-30 07:00:00,9336.0
-2013-10-30 08:00:00,10556.0
-2013-10-30 09:00:00,11310.0
-2013-10-30 10:00:00,11358.0
-2013-10-30 11:00:00,11452.0
-2013-10-30 12:00:00,11550.0
-2013-10-30 13:00:00,11542.0
-2013-10-30 14:00:00,11326.0
-2013-10-30 15:00:00,11545.0
-2013-10-30 16:00:00,11495.0
-2013-10-30 17:00:00,11522.0
-2013-10-30 18:00:00,11636.0
-2013-10-30 19:00:00,12053.0
-2013-10-30 20:00:00,12189.0
-2013-10-30 21:00:00,11984.0
-2013-10-30 22:00:00,11667.0
-2013-10-30 23:00:00,11069.0
-2013-10-31 00:00:00,10300.0
-2013-10-29 01:00:00,9727.0
-2013-10-29 02:00:00,9226.0
-2013-10-29 03:00:00,8950.0
-2013-10-29 04:00:00,8779.0
-2013-10-29 05:00:00,8736.0
-2013-10-29 06:00:00,8973.0
-2013-10-29 07:00:00,9686.0
-2013-10-29 08:00:00,10846.0
-2013-10-29 09:00:00,11556.0
-2013-10-29 10:00:00,11590.0
-2013-10-29 11:00:00,11649.0
-2013-10-29 12:00:00,11701.0
-2013-10-29 13:00:00,11619.0
-2013-10-29 14:00:00,11505.0
-2013-10-29 15:00:00,11417.0
-2013-10-29 16:00:00,11275.0
-2013-10-29 17:00:00,11148.0
-2013-10-29 18:00:00,11129.0
-2013-10-29 19:00:00,11455.0
-2013-10-29 20:00:00,11981.0
-2013-10-29 21:00:00,11870.0
-2013-10-29 22:00:00,11568.0
-2013-10-29 23:00:00,11034.0
-2013-10-30 00:00:00,10263.0
-2013-10-28 01:00:00,9016.0
-2013-10-28 02:00:00,8655.0
-2013-10-28 03:00:00,8463.0
-2013-10-28 04:00:00,8369.0
-2013-10-28 05:00:00,8438.0
-2013-10-28 06:00:00,8764.0
-2013-10-28 07:00:00,9612.0
-2013-10-28 08:00:00,10893.0
-2013-10-28 09:00:00,11600.0
-2013-10-28 10:00:00,11574.0
-2013-10-28 11:00:00,11560.0
-2013-10-28 12:00:00,11625.0
-2013-10-28 13:00:00,11551.0
-2013-10-28 14:00:00,11494.0
-2013-10-28 15:00:00,11445.0
-2013-10-28 16:00:00,11314.0
-2013-10-28 17:00:00,11188.0
-2013-10-28 18:00:00,11239.0
-2013-10-28 19:00:00,11567.0
-2013-10-28 20:00:00,12153.0
-2013-10-28 21:00:00,12053.0
-2013-10-28 22:00:00,11783.0
-2013-10-28 23:00:00,11259.0
-2013-10-29 00:00:00,10491.0
-2013-10-27 01:00:00,9213.0
-2013-10-27 02:00:00,8802.0
-2013-10-27 03:00:00,8527.0
-2013-10-27 04:00:00,8425.0
-2013-10-27 05:00:00,8337.0
-2013-10-27 06:00:00,8406.0
-2013-10-27 07:00:00,8529.0
-2013-10-27 08:00:00,8883.0
-2013-10-27 09:00:00,8954.0
-2013-10-27 10:00:00,9154.0
-2013-10-27 11:00:00,9227.0
-2013-10-27 12:00:00,9297.0
-2013-10-27 13:00:00,9288.0
-2013-10-27 14:00:00,9292.0
-2013-10-27 15:00:00,9186.0
-2013-10-27 16:00:00,9131.0
-2013-10-27 17:00:00,9069.0
-2013-10-27 18:00:00,9201.0
-2013-10-27 19:00:00,9534.0
-2013-10-27 20:00:00,10409.0
-2013-10-27 21:00:00,10547.0
-2013-10-27 22:00:00,10438.0
-2013-10-27 23:00:00,10111.0
-2013-10-28 00:00:00,9607.0
-2013-10-26 01:00:00,9829.0
-2013-10-26 02:00:00,9340.0
-2013-10-26 03:00:00,8986.0
-2013-10-26 04:00:00,8823.0
-2013-10-26 05:00:00,8654.0
-2013-10-26 06:00:00,8753.0
-2013-10-26 07:00:00,8959.0
-2013-10-26 08:00:00,9471.0
-2013-10-26 09:00:00,9861.0
-2013-10-26 10:00:00,10013.0
-2013-10-26 11:00:00,10191.0
-2013-10-26 12:00:00,10206.0
-2013-10-26 13:00:00,10099.0
-2013-10-26 14:00:00,9969.0
-2013-10-26 15:00:00,9855.0
-2013-10-26 16:00:00,9731.0
-2013-10-26 17:00:00,9679.0
-2013-10-26 18:00:00,9761.0
-2013-10-26 19:00:00,9910.0
-2013-10-26 20:00:00,10571.0
-2013-10-26 21:00:00,10566.0
-2013-10-26 22:00:00,10470.0
-2013-10-26 23:00:00,10168.0
-2013-10-27 00:00:00,9711.0
-2013-10-25 01:00:00,10059.0
-2013-10-25 02:00:00,9579.0
-2013-10-25 03:00:00,9293.0
-2013-10-25 04:00:00,9204.0
-2013-10-25 05:00:00,9193.0
-2013-10-25 06:00:00,9395.0
-2013-10-25 07:00:00,10169.0
-2013-10-25 08:00:00,11397.0
-2013-10-25 09:00:00,11951.0
-2013-10-25 10:00:00,11954.0
-2013-10-25 11:00:00,11910.0
-2013-10-25 12:00:00,11841.0
-2013-10-25 13:00:00,11708.0
-2013-10-25 14:00:00,11585.0
-2013-10-25 15:00:00,11532.0
-2013-10-25 16:00:00,11354.0
-2013-10-25 17:00:00,11133.0
-2013-10-25 18:00:00,11039.0
-2013-10-25 19:00:00,11166.0
-2013-10-25 20:00:00,11781.0
-2013-10-25 21:00:00,11788.0
-2013-10-25 22:00:00,11544.0
-2013-10-25 23:00:00,11221.0
-2013-10-26 00:00:00,10559.0
-2013-10-24 01:00:00,9888.0
-2013-10-24 02:00:00,9376.0
-2013-10-24 03:00:00,9077.0
-2013-10-24 04:00:00,8916.0
-2013-10-24 05:00:00,8912.0
-2013-10-24 06:00:00,9164.0
-2013-10-24 07:00:00,9915.0
-2013-10-24 08:00:00,11183.0
-2013-10-24 09:00:00,11841.0
-2013-10-24 10:00:00,11916.0
-2013-10-24 11:00:00,11865.0
-2013-10-24 12:00:00,11849.0
-2013-10-24 13:00:00,11792.0
-2013-10-24 14:00:00,11759.0
-2013-10-24 15:00:00,11744.0
-2013-10-24 16:00:00,11613.0
-2013-10-24 17:00:00,11590.0
-2013-10-24 18:00:00,11693.0
-2013-10-24 19:00:00,11952.0
-2013-10-24 20:00:00,12355.0
-2013-10-24 21:00:00,12264.0
-2013-10-24 22:00:00,12027.0
-2013-10-24 23:00:00,11534.0
-2013-10-25 00:00:00,10789.0
-2013-10-23 01:00:00,9902.0
-2013-10-23 02:00:00,9409.0
-2013-10-23 03:00:00,9156.0
-2013-10-23 04:00:00,9010.0
-2013-10-23 05:00:00,9019.0
-2013-10-23 06:00:00,9267.0
-2013-10-23 07:00:00,10031.0
-2013-10-23 08:00:00,11247.0
-2013-10-23 09:00:00,11876.0
-2013-10-23 10:00:00,11848.0
-2013-10-23 11:00:00,11806.0
-2013-10-23 12:00:00,11791.0
-2013-10-23 13:00:00,11712.0
-2013-10-23 14:00:00,11616.0
-2013-10-23 15:00:00,11600.0
-2013-10-23 16:00:00,11609.0
-2013-10-23 17:00:00,11604.0
-2013-10-23 18:00:00,11651.0
-2013-10-23 19:00:00,11891.0
-2013-10-23 20:00:00,12345.0
-2013-10-23 21:00:00,12225.0
-2013-10-23 22:00:00,11961.0
-2013-10-23 23:00:00,11453.0
-2013-10-24 00:00:00,10634.0
-2013-10-22 01:00:00,9702.0
-2013-10-22 02:00:00,9252.0
-2013-10-22 03:00:00,9003.0
-2013-10-22 04:00:00,8831.0
-2013-10-22 05:00:00,8857.0
-2013-10-22 06:00:00,9126.0
-2013-10-22 07:00:00,9894.0
-2013-10-22 08:00:00,11176.0
-2013-10-22 09:00:00,11751.0
-2013-10-22 10:00:00,11785.0
-2013-10-22 11:00:00,11830.0
-2013-10-22 12:00:00,11821.0
-2013-10-22 13:00:00,11820.0
-2013-10-22 14:00:00,11830.0
-2013-10-22 15:00:00,11903.0
-2013-10-22 16:00:00,11863.0
-2013-10-22 17:00:00,11746.0
-2013-10-22 18:00:00,11744.0
-2013-10-22 19:00:00,11940.0
-2013-10-22 20:00:00,12374.0
-2013-10-22 21:00:00,12255.0
-2013-10-22 22:00:00,11970.0
-2013-10-22 23:00:00,11413.0
-2013-10-23 00:00:00,10639.0
-2013-10-21 01:00:00,8691.0
-2013-10-21 02:00:00,8327.0
-2013-10-21 03:00:00,8058.0
-2013-10-21 04:00:00,7974.0
-2013-10-21 05:00:00,7984.0
-2013-10-21 06:00:00,8255.0
-2013-10-21 07:00:00,9012.0
-2013-10-21 08:00:00,10315.0
-2013-10-21 09:00:00,11072.0
-2013-10-21 10:00:00,11244.0
-2013-10-21 11:00:00,11331.0
-2013-10-21 12:00:00,11434.0
-2013-10-21 13:00:00,11408.0
-2013-10-21 14:00:00,11388.0
-2013-10-21 15:00:00,11377.0
-2013-10-21 16:00:00,11268.0
-2013-10-21 17:00:00,11130.0
-2013-10-21 18:00:00,11086.0
-2013-10-21 19:00:00,11257.0
-2013-10-21 20:00:00,11929.0
-2013-10-21 21:00:00,12028.0
-2013-10-21 22:00:00,11795.0
-2013-10-21 23:00:00,11264.0
-2013-10-22 00:00:00,10479.0
-2013-10-20 01:00:00,9014.0
-2013-10-20 02:00:00,8542.0
-2013-10-20 03:00:00,8275.0
-2013-10-20 04:00:00,8078.0
-2013-10-20 05:00:00,8000.0
-2013-10-20 06:00:00,7991.0
-2013-10-20 07:00:00,8151.0
-2013-10-20 08:00:00,8435.0
-2013-10-20 09:00:00,8512.0
-2013-10-20 10:00:00,8783.0
-2013-10-20 11:00:00,8952.0
-2013-10-20 12:00:00,9090.0
-2013-10-20 13:00:00,9169.0
-2013-10-20 14:00:00,9199.0
-2013-10-20 15:00:00,9160.0
-2013-10-20 16:00:00,9146.0
-2013-10-20 17:00:00,9125.0
-2013-10-20 18:00:00,9233.0
-2013-10-20 19:00:00,9641.0
-2013-10-20 20:00:00,10336.0
-2013-10-20 21:00:00,10387.0
-2013-10-20 22:00:00,10198.0
-2013-10-20 23:00:00,9816.0
-2013-10-21 00:00:00,9250.0
-2013-10-19 01:00:00,9552.0
-2013-10-19 02:00:00,9023.0
-2013-10-19 03:00:00,8679.0
-2013-10-19 04:00:00,8468.0
-2013-10-19 05:00:00,8368.0
-2013-10-19 06:00:00,8367.0
-2013-10-19 07:00:00,8640.0
-2013-10-19 08:00:00,9163.0
-2013-10-19 09:00:00,9440.0
-2013-10-19 10:00:00,9649.0
-2013-10-19 11:00:00,9872.0
-2013-10-19 12:00:00,9881.0
-2013-10-19 13:00:00,9819.0
-2013-10-19 14:00:00,9725.0
-2013-10-19 15:00:00,9610.0
-2013-10-19 16:00:00,9546.0
-2013-10-19 17:00:00,9467.0
-2013-10-19 18:00:00,9603.0
-2013-10-19 19:00:00,9872.0
-2013-10-19 20:00:00,10457.0
-2013-10-19 21:00:00,10461.0
-2013-10-19 22:00:00,10282.0
-2013-10-19 23:00:00,10038.0
-2013-10-20 00:00:00,9513.0
-2013-10-18 01:00:00,9500.0
-2013-10-18 02:00:00,8995.0
-2013-10-18 03:00:00,8676.0
-2013-10-18 04:00:00,8468.0
-2013-10-18 05:00:00,8429.0
-2013-10-18 06:00:00,8669.0
-2013-10-18 07:00:00,9335.0
-2013-10-18 08:00:00,10513.0
-2013-10-18 09:00:00,11078.0
-2013-10-18 10:00:00,11241.0
-2013-10-18 11:00:00,11426.0
-2013-10-18 12:00:00,11573.0
-2013-10-18 13:00:00,11602.0
-2013-10-18 14:00:00,11524.0
-2013-10-18 15:00:00,11497.0
-2013-10-18 16:00:00,11353.0
-2013-10-18 17:00:00,11257.0
-2013-10-18 18:00:00,11248.0
-2013-10-18 19:00:00,11394.0
-2013-10-18 20:00:00,11764.0
-2013-10-18 21:00:00,11603.0
-2013-10-18 22:00:00,11337.0
-2013-10-18 23:00:00,10928.0
-2013-10-19 00:00:00,10273.0
-2013-10-17 01:00:00,9329.0
-2013-10-17 02:00:00,8811.0
-2013-10-17 03:00:00,8515.0
-2013-10-17 04:00:00,8311.0
-2013-10-17 05:00:00,8257.0
-2013-10-17 06:00:00,8468.0
-2013-10-17 07:00:00,9131.0
-2013-10-17 08:00:00,10306.0
-2013-10-17 09:00:00,11093.0
-2013-10-17 10:00:00,11287.0
-2013-10-17 11:00:00,11403.0
-2013-10-17 12:00:00,11519.0
-2013-10-17 13:00:00,11500.0
-2013-10-17 14:00:00,11386.0
-2013-10-17 15:00:00,11350.0
-2013-10-17 16:00:00,11283.0
-2013-10-17 17:00:00,11177.0
-2013-10-17 18:00:00,11115.0
-2013-10-17 19:00:00,11069.0
-2013-10-17 20:00:00,11620.0
-2013-10-17 21:00:00,11743.0
-2013-10-17 22:00:00,11497.0
-2013-10-17 23:00:00,10977.0
-2013-10-18 00:00:00,10268.0
-2013-10-16 01:00:00,9286.0
-2013-10-16 02:00:00,8747.0
-2013-10-16 03:00:00,8421.0
-2013-10-16 04:00:00,8238.0
-2013-10-16 05:00:00,8200.0
-2013-10-16 06:00:00,8414.0
-2013-10-16 07:00:00,9056.0
-2013-10-16 08:00:00,10223.0
-2013-10-16 09:00:00,10935.0
-2013-10-16 10:00:00,11120.0
-2013-10-16 11:00:00,11264.0
-2013-10-16 12:00:00,11386.0
-2013-10-16 13:00:00,11360.0
-2013-10-16 14:00:00,11277.0
-2013-10-16 15:00:00,11331.0
-2013-10-16 16:00:00,11281.0
-2013-10-16 17:00:00,11210.0
-2013-10-16 18:00:00,11198.0
-2013-10-16 19:00:00,11394.0
-2013-10-16 20:00:00,11846.0
-2013-10-16 21:00:00,11777.0
-2013-10-16 22:00:00,11467.0
-2013-10-16 23:00:00,10898.0
-2013-10-17 00:00:00,10086.0
-2013-10-15 01:00:00,9308.0
-2013-10-15 02:00:00,8785.0
-2013-10-15 03:00:00,8461.0
-2013-10-15 04:00:00,8242.0
-2013-10-15 05:00:00,8195.0
-2013-10-15 06:00:00,8372.0
-2013-10-15 07:00:00,9024.0
-2013-10-15 08:00:00,10175.0
-2013-10-15 09:00:00,10905.0
-2013-10-15 10:00:00,11131.0
-2013-10-15 11:00:00,11282.0
-2013-10-15 12:00:00,11529.0
-2013-10-15 13:00:00,11627.0
-2013-10-15 14:00:00,11715.0
-2013-10-15 15:00:00,11848.0
-2013-10-15 16:00:00,11794.0
-2013-10-15 17:00:00,11723.0
-2013-10-15 18:00:00,11673.0
-2013-10-15 19:00:00,11627.0
-2013-10-15 20:00:00,11998.0
-2013-10-15 21:00:00,12055.0
-2013-10-15 22:00:00,11667.0
-2013-10-15 23:00:00,10940.0
-2013-10-16 00:00:00,10066.0
-2013-10-14 01:00:00,8467.0
-2013-10-14 02:00:00,8100.0
-2013-10-14 03:00:00,7931.0
-2013-10-14 04:00:00,7806.0
-2013-10-14 05:00:00,7809.0
-2013-10-14 06:00:00,8016.0
-2013-10-14 07:00:00,8681.0
-2013-10-14 08:00:00,9650.0
-2013-10-14 09:00:00,10225.0
-2013-10-14 10:00:00,10569.0
-2013-10-14 11:00:00,10811.0
-2013-10-14 12:00:00,11108.0
-2013-10-14 13:00:00,11188.0
-2013-10-14 14:00:00,11189.0
-2013-10-14 15:00:00,11273.0
-2013-10-14 16:00:00,11215.0
-2013-10-14 17:00:00,11139.0
-2013-10-14 18:00:00,11063.0
-2013-10-14 19:00:00,11009.0
-2013-10-14 20:00:00,11487.0
-2013-10-14 21:00:00,11648.0
-2013-10-14 22:00:00,11345.0
-2013-10-14 23:00:00,10861.0
-2013-10-15 00:00:00,10081.0
-2013-10-13 01:00:00,8721.0
-2013-10-13 02:00:00,8300.0
-2013-10-13 03:00:00,7916.0
-2013-10-13 04:00:00,7742.0
-2013-10-13 05:00:00,7604.0
-2013-10-13 06:00:00,7618.0
-2013-10-13 07:00:00,7676.0
-2013-10-13 08:00:00,7910.0
-2013-10-13 09:00:00,7874.0
-2013-10-13 10:00:00,8207.0
-2013-10-13 11:00:00,8519.0
-2013-10-13 12:00:00,8779.0
-2013-10-13 13:00:00,8874.0
-2013-10-13 14:00:00,8911.0
-2013-10-13 15:00:00,8919.0
-2013-10-13 16:00:00,8984.0
-2013-10-13 17:00:00,8951.0
-2013-10-13 18:00:00,9002.0
-2013-10-13 19:00:00,9165.0
-2013-10-13 20:00:00,9705.0
-2013-10-13 21:00:00,9998.0
-2013-10-13 22:00:00,9804.0
-2013-10-13 23:00:00,9492.0
-2013-10-14 00:00:00,9013.0
-2013-10-12 01:00:00,9558.0
-2013-10-12 02:00:00,8901.0
-2013-10-12 03:00:00,8558.0
-2013-10-12 04:00:00,8281.0
-2013-10-12 05:00:00,8216.0
-2013-10-12 06:00:00,8180.0
-2013-10-12 07:00:00,8426.0
-2013-10-12 08:00:00,8816.0
-2013-10-12 09:00:00,9046.0
-2013-10-12 10:00:00,9529.0
-2013-10-12 11:00:00,9991.0
-2013-10-12 12:00:00,10378.0
-2013-10-12 13:00:00,10516.0
-2013-10-12 14:00:00,10465.0
-2013-10-12 15:00:00,10406.0
-2013-10-12 16:00:00,10275.0
-2013-10-12 17:00:00,10184.0
-2013-10-12 18:00:00,10202.0
-2013-10-12 19:00:00,10144.0
-2013-10-12 20:00:00,10521.0
-2013-10-12 21:00:00,10641.0
-2013-10-12 22:00:00,10358.0
-2013-10-12 23:00:00,9931.0
-2013-10-13 00:00:00,9366.0
-2013-10-11 01:00:00,9537.0
-2013-10-11 02:00:00,8944.0
-2013-10-11 03:00:00,8575.0
-2013-10-11 04:00:00,8323.0
-2013-10-11 05:00:00,8260.0
-2013-10-11 06:00:00,8398.0
-2013-10-11 07:00:00,8989.0
-2013-10-11 08:00:00,10052.0
-2013-10-11 09:00:00,10619.0
-2013-10-11 10:00:00,11022.0
-2013-10-11 11:00:00,11398.0
-2013-10-11 12:00:00,11771.0
-2013-10-11 13:00:00,11995.0
-2013-10-11 14:00:00,12179.0
-2013-10-11 15:00:00,12348.0
-2013-10-11 16:00:00,12323.0
-2013-10-11 17:00:00,12192.0
-2013-10-11 18:00:00,12016.0
-2013-10-11 19:00:00,11716.0
-2013-10-11 20:00:00,11833.0
-2013-10-11 21:00:00,11900.0
-2013-10-11 22:00:00,11549.0
-2013-10-11 23:00:00,11079.0
-2013-10-12 00:00:00,10288.0
-2013-10-10 01:00:00,9374.0
-2013-10-10 02:00:00,8822.0
-2013-10-10 03:00:00,8477.0
-2013-10-10 04:00:00,8271.0
-2013-10-10 05:00:00,8184.0
-2013-10-10 06:00:00,8349.0
-2013-10-10 07:00:00,9005.0
-2013-10-10 08:00:00,10099.0
-2013-10-10 09:00:00,10621.0
-2013-10-10 10:00:00,10939.0
-2013-10-10 11:00:00,11294.0
-2013-10-10 12:00:00,11693.0
-2013-10-10 13:00:00,11921.0
-2013-10-10 14:00:00,12054.0
-2013-10-10 15:00:00,12211.0
-2013-10-10 16:00:00,12252.0
-2013-10-10 17:00:00,12187.0
-2013-10-10 18:00:00,12061.0
-2013-10-10 19:00:00,11860.0
-2013-10-10 20:00:00,11992.0
-2013-10-10 21:00:00,12173.0
-2013-10-10 22:00:00,11812.0
-2013-10-10 23:00:00,11208.0
-2013-10-11 00:00:00,10354.0
-2013-10-09 01:00:00,9527.0
-2013-10-09 02:00:00,8928.0
-2013-10-09 03:00:00,8552.0
-2013-10-09 04:00:00,8340.0
-2013-10-09 05:00:00,8285.0
-2013-10-09 06:00:00,8430.0
-2013-10-09 07:00:00,9057.0
-2013-10-09 08:00:00,10125.0
-2013-10-09 09:00:00,10634.0
-2013-10-09 10:00:00,10987.0
-2013-10-09 11:00:00,11294.0
-2013-10-09 12:00:00,11620.0
-2013-10-09 13:00:00,11781.0
-2013-10-09 14:00:00,11887.0
-2013-10-09 15:00:00,12058.0
-2013-10-09 16:00:00,12059.0
-2013-10-09 17:00:00,11992.0
-2013-10-09 18:00:00,11897.0
-2013-10-09 19:00:00,11696.0
-2013-10-09 20:00:00,11816.0
-2013-10-09 21:00:00,11999.0
-2013-10-09 22:00:00,11645.0
-2013-10-09 23:00:00,11061.0
-2013-10-10 00:00:00,10217.0
-2013-10-08 01:00:00,9259.0
-2013-10-08 02:00:00,8724.0
-2013-10-08 03:00:00,8429.0
-2013-10-08 04:00:00,8218.0
-2013-10-08 05:00:00,8170.0
-2013-10-08 06:00:00,8367.0
-2013-10-08 07:00:00,9048.0
-2013-10-08 08:00:00,10167.0
-2013-10-08 09:00:00,10693.0
-2013-10-08 10:00:00,10952.0
-2013-10-08 11:00:00,11240.0
-2013-10-08 12:00:00,11572.0
-2013-10-08 13:00:00,11787.0
-2013-10-08 14:00:00,11945.0
-2013-10-08 15:00:00,12149.0
-2013-10-08 16:00:00,12207.0
-2013-10-08 17:00:00,12182.0
-2013-10-08 18:00:00,12112.0
-2013-10-08 19:00:00,11919.0
-2013-10-08 20:00:00,12038.0
-2013-10-08 21:00:00,12213.0
-2013-10-08 22:00:00,11850.0
-2013-10-08 23:00:00,11218.0
-2013-10-09 00:00:00,10339.0
-2013-10-07 01:00:00,8547.0
-2013-10-07 02:00:00,8169.0
-2013-10-07 03:00:00,7957.0
-2013-10-07 04:00:00,7901.0
-2013-10-07 05:00:00,7883.0
-2013-10-07 06:00:00,8135.0
-2013-10-07 07:00:00,8840.0
-2013-10-07 08:00:00,10020.0
-2013-10-07 09:00:00,10698.0
-2013-10-07 10:00:00,10978.0
-2013-10-07 11:00:00,11057.0
-2013-10-07 12:00:00,11143.0
-2013-10-07 13:00:00,11252.0
-2013-10-07 14:00:00,11337.0
-2013-10-07 15:00:00,11451.0
-2013-10-07 16:00:00,11489.0
-2013-10-07 17:00:00,11428.0
-2013-10-07 18:00:00,11372.0
-2013-10-07 19:00:00,11285.0
-2013-10-07 20:00:00,11506.0
-2013-10-07 21:00:00,11774.0
-2013-10-07 22:00:00,11468.0
-2013-10-07 23:00:00,10888.0
-2013-10-08 00:00:00,10074.0
-2013-10-06 01:00:00,10248.0
-2013-10-06 02:00:00,9543.0
-2013-10-06 03:00:00,8908.0
-2013-10-06 04:00:00,8463.0
-2013-10-06 05:00:00,8201.0
-2013-10-06 06:00:00,8046.0
-2013-10-06 07:00:00,8073.0
-2013-10-06 08:00:00,8241.0
-2013-10-06 09:00:00,8245.0
-2013-10-06 10:00:00,8579.0
-2013-10-06 11:00:00,8890.0
-2013-10-06 12:00:00,9148.0
-2013-10-06 13:00:00,9354.0
-2013-10-06 14:00:00,9499.0
-2013-10-06 15:00:00,9492.0
-2013-10-06 16:00:00,9421.0
-2013-10-06 17:00:00,9369.0
-2013-10-06 18:00:00,9483.0
-2013-10-06 19:00:00,9708.0
-2013-10-06 20:00:00,10082.0
-2013-10-06 21:00:00,10209.0
-2013-10-06 22:00:00,10015.0
-2013-10-06 23:00:00,9623.0
-2013-10-07 00:00:00,9118.0
-2013-10-05 01:00:00,10570.0
-2013-10-05 02:00:00,9832.0
-2013-10-05 03:00:00,9392.0
-2013-10-05 04:00:00,9098.0
-2013-10-05 05:00:00,8973.0
-2013-10-05 06:00:00,8978.0
-2013-10-05 07:00:00,9206.0
-2013-10-05 08:00:00,9692.0
-2013-10-05 09:00:00,9989.0
-2013-10-05 10:00:00,10718.0
-2013-10-05 11:00:00,11288.0
-2013-10-05 12:00:00,11799.0
-2013-10-05 13:00:00,12175.0
-2013-10-05 14:00:00,12474.0
-2013-10-05 15:00:00,12662.0
-2013-10-05 16:00:00,12851.0
-2013-10-05 17:00:00,12796.0
-2013-10-05 18:00:00,12621.0
-2013-10-05 19:00:00,12316.0
-2013-10-05 20:00:00,12389.0
-2013-10-05 21:00:00,12385.0
-2013-10-05 22:00:00,12102.0
-2013-10-05 23:00:00,11665.0
-2013-10-06 00:00:00,11037.0
-2013-10-04 01:00:00,10702.0
-2013-10-04 02:00:00,10067.0
-2013-10-04 03:00:00,9486.0
-2013-10-04 04:00:00,9179.0
-2013-10-04 05:00:00,9030.0
-2013-10-04 06:00:00,9211.0
-2013-10-04 07:00:00,9900.0
-2013-10-04 08:00:00,11114.0
-2013-10-04 09:00:00,11797.0
-2013-10-04 10:00:00,12364.0
-2013-10-04 11:00:00,12838.0
-2013-10-04 12:00:00,13181.0
-2013-10-04 13:00:00,13272.0
-2013-10-04 14:00:00,13381.0
-2013-10-04 15:00:00,13563.0
-2013-10-04 16:00:00,13494.0
-2013-10-04 17:00:00,13387.0
-2013-10-04 18:00:00,13254.0
-2013-10-04 19:00:00,13104.0
-2013-10-04 20:00:00,13186.0
-2013-10-04 21:00:00,13275.0
-2013-10-04 22:00:00,12836.0
-2013-10-04 23:00:00,12255.0
-2013-10-05 00:00:00,11422.0
-2013-10-03 01:00:00,10141.0
-2013-10-03 02:00:00,9463.0
-2013-10-03 03:00:00,9083.0
-2013-10-03 04:00:00,8874.0
-2013-10-03 05:00:00,8814.0
-2013-10-03 06:00:00,9025.0
-2013-10-03 07:00:00,9775.0
-2013-10-03 08:00:00,11126.0
-2013-10-03 09:00:00,11912.0
-2013-10-03 10:00:00,12412.0
-2013-10-03 11:00:00,12755.0
-2013-10-03 12:00:00,13019.0
-2013-10-03 13:00:00,12985.0
-2013-10-03 14:00:00,13065.0
-2013-10-03 15:00:00,13293.0
-2013-10-03 16:00:00,13539.0
-2013-10-03 17:00:00,13689.0
-2013-10-03 18:00:00,13595.0
-2013-10-03 19:00:00,13451.0
-2013-10-03 20:00:00,13457.0
-2013-10-03 21:00:00,13650.0
-2013-10-03 22:00:00,13321.0
-2013-10-03 23:00:00,12582.0
-2013-10-04 00:00:00,11610.0
-2013-10-02 01:00:00,10453.0
-2013-10-02 02:00:00,9818.0
-2013-10-02 03:00:00,9349.0
-2013-10-02 04:00:00,9055.0
-2013-10-02 05:00:00,8943.0
-2013-10-02 06:00:00,9128.0
-2013-10-02 07:00:00,9758.0
-2013-10-02 08:00:00,10864.0
-2013-10-02 09:00:00,11438.0
-2013-10-02 10:00:00,11870.0
-2013-10-02 11:00:00,12318.0
-2013-10-02 12:00:00,12668.0
-2013-10-02 13:00:00,12893.0
-2013-10-02 14:00:00,13080.0
-2013-10-02 15:00:00,13347.0
-2013-10-02 16:00:00,13483.0
-2013-10-02 17:00:00,13521.0
-2013-10-02 18:00:00,13357.0
-2013-10-02 19:00:00,12987.0
-2013-10-02 20:00:00,12748.0
-2013-10-02 21:00:00,12956.0
-2013-10-02 22:00:00,12606.0
-2013-10-02 23:00:00,11937.0
-2013-10-03 00:00:00,11001.0
-2013-10-01 01:00:00,9678.0
-2013-10-01 02:00:00,9126.0
-2013-10-01 03:00:00,8750.0
-2013-10-01 04:00:00,8577.0
-2013-10-01 05:00:00,8499.0
-2013-10-01 06:00:00,8701.0
-2013-10-01 07:00:00,9387.0
-2013-10-01 08:00:00,10613.0
-2013-10-01 09:00:00,11353.0
-2013-10-01 10:00:00,11779.0
-2013-10-01 11:00:00,12050.0
-2013-10-01 12:00:00,12296.0
-2013-10-01 13:00:00,12374.0
-2013-10-01 14:00:00,12483.0
-2013-10-01 15:00:00,12800.0
-2013-10-01 16:00:00,13034.0
-2013-10-01 17:00:00,13189.0
-2013-10-01 18:00:00,13243.0
-2013-10-01 19:00:00,13104.0
-2013-10-01 20:00:00,12974.0
-2013-10-01 21:00:00,13295.0
-2013-10-01 22:00:00,12986.0
-2013-10-01 23:00:00,12290.0
-2013-10-02 00:00:00,11387.0
-2013-09-30 01:00:00,8653.0
-2013-09-30 02:00:00,8268.0
-2013-09-30 03:00:00,8039.0
-2013-09-30 04:00:00,7947.0
-2013-09-30 05:00:00,7891.0
-2013-09-30 06:00:00,8137.0
-2013-09-30 07:00:00,8815.0
-2013-09-30 08:00:00,9966.0
-2013-09-30 09:00:00,10560.0
-2013-09-30 10:00:00,10977.0
-2013-09-30 11:00:00,11356.0
-2013-09-30 12:00:00,11750.0
-2013-09-30 13:00:00,11894.0
-2013-09-30 14:00:00,11997.0
-2013-09-30 15:00:00,12201.0
-2013-09-30 16:00:00,12262.0
-2013-09-30 17:00:00,12272.0
-2013-09-30 18:00:00,12205.0
-2013-09-30 19:00:00,12040.0
-2013-09-30 20:00:00,11968.0
-2013-09-30 21:00:00,12275.0
-2013-09-30 22:00:00,11930.0
-2013-09-30 23:00:00,11368.0
-2013-10-01 00:00:00,10513.0
-2013-09-29 01:00:00,10212.0
-2013-09-29 02:00:00,9600.0
-2013-09-29 03:00:00,9045.0
-2013-09-29 04:00:00,8533.0
-2013-09-29 05:00:00,8158.0
-2013-09-29 06:00:00,8041.0
-2013-09-29 07:00:00,8029.0
-2013-09-29 08:00:00,8112.0
-2013-09-29 09:00:00,8095.0
-2013-09-29 10:00:00,8567.0
-2013-09-29 11:00:00,8960.0
-2013-09-29 12:00:00,9360.0
-2013-09-29 13:00:00,9545.0
-2013-09-29 14:00:00,9787.0
-2013-09-29 15:00:00,9802.0
-2013-09-29 16:00:00,9915.0
-2013-09-29 17:00:00,9897.0
-2013-09-29 18:00:00,9948.0
-2013-09-29 19:00:00,9887.0
-2013-09-29 20:00:00,10061.0
-2013-09-29 21:00:00,10481.0
-2013-09-29 22:00:00,10277.0
-2013-09-29 23:00:00,9845.0
-2013-09-30 00:00:00,9298.0
-2013-09-28 01:00:00,9803.0
-2013-09-28 02:00:00,9175.0
-2013-09-28 03:00:00,8708.0
-2013-09-28 04:00:00,8455.0
-2013-09-28 05:00:00,8261.0
-2013-09-28 06:00:00,8283.0
-2013-09-28 07:00:00,8454.0
-2013-09-28 08:00:00,8806.0
-2013-09-28 09:00:00,9053.0
-2013-09-28 10:00:00,9628.0
-2013-09-28 11:00:00,10219.0
-2013-09-28 12:00:00,10671.0
-2013-09-28 13:00:00,11046.0
-2013-09-28 14:00:00,11366.0
-2013-09-28 15:00:00,11628.0
-2013-09-28 16:00:00,11809.0
-2013-09-28 17:00:00,11801.0
-2013-09-28 18:00:00,11743.0
-2013-09-28 19:00:00,11503.0
-2013-09-28 20:00:00,11724.0
-2013-09-28 21:00:00,11995.0
-2013-09-28 22:00:00,11895.0
-2013-09-28 23:00:00,11537.0
-2013-09-29 00:00:00,10948.0
-2013-09-27 01:00:00,9646.0
-2013-09-27 02:00:00,9007.0
-2013-09-27 03:00:00,8630.0
-2013-09-27 04:00:00,8377.0
-2013-09-27 05:00:00,8275.0
-2013-09-27 06:00:00,8415.0
-2013-09-27 07:00:00,9036.0
-2013-09-27 08:00:00,10032.0
-2013-09-27 09:00:00,10580.0
-2013-09-27 10:00:00,11098.0
-2013-09-27 11:00:00,11582.0
-2013-09-27 12:00:00,12008.0
-2013-09-27 13:00:00,12342.0
-2013-09-27 14:00:00,12610.0
-2013-09-27 15:00:00,12908.0
-2013-09-27 16:00:00,13035.0
-2013-09-27 17:00:00,13100.0
-2013-09-27 18:00:00,13021.0
-2013-09-27 19:00:00,12667.0
-2013-09-27 20:00:00,12308.0
-2013-09-27 21:00:00,12475.0
-2013-09-27 22:00:00,12055.0
-2013-09-27 23:00:00,11471.0
-2013-09-28 00:00:00,10689.0
-2013-09-26 01:00:00,9471.0
-2013-09-26 02:00:00,8916.0
-2013-09-26 03:00:00,8588.0
-2013-09-26 04:00:00,8354.0
-2013-09-26 05:00:00,8274.0
-2013-09-26 06:00:00,8430.0
-2013-09-26 07:00:00,9080.0
-2013-09-26 08:00:00,10108.0
-2013-09-26 09:00:00,10632.0
-2013-09-26 10:00:00,11132.0
-2013-09-26 11:00:00,11522.0
-2013-09-26 12:00:00,11882.0
-2013-09-26 13:00:00,12077.0
-2013-09-26 14:00:00,12223.0
-2013-09-26 15:00:00,12411.0
-2013-09-26 16:00:00,12521.0
-2013-09-26 17:00:00,12577.0
-2013-09-26 18:00:00,12509.0
-2013-09-26 19:00:00,12241.0
-2013-09-26 20:00:00,12013.0
-2013-09-26 21:00:00,12330.0
-2013-09-26 22:00:00,11989.0
-2013-09-26 23:00:00,11384.0
-2013-09-27 00:00:00,10459.0
-2013-09-25 01:00:00,9379.0
-2013-09-25 02:00:00,8810.0
-2013-09-25 03:00:00,8456.0
-2013-09-25 04:00:00,8266.0
-2013-09-25 05:00:00,8181.0
-2013-09-25 06:00:00,8385.0
-2013-09-25 07:00:00,9012.0
-2013-09-25 08:00:00,10038.0
-2013-09-25 09:00:00,10574.0
-2013-09-25 10:00:00,11011.0
-2013-09-25 11:00:00,11416.0
-2013-09-25 12:00:00,11730.0
-2013-09-25 13:00:00,11862.0
-2013-09-25 14:00:00,11954.0
-2013-09-25 15:00:00,12098.0
-2013-09-25 16:00:00,12145.0
-2013-09-25 17:00:00,12122.0
-2013-09-25 18:00:00,12027.0
-2013-09-25 19:00:00,11791.0
-2013-09-25 20:00:00,11576.0
-2013-09-25 21:00:00,11992.0
-2013-09-25 22:00:00,11699.0
-2013-09-25 23:00:00,11091.0
-2013-09-26 00:00:00,10260.0
-2013-09-24 01:00:00,9297.0
-2013-09-24 02:00:00,8749.0
-2013-09-24 03:00:00,8399.0
-2013-09-24 04:00:00,8203.0
-2013-09-24 05:00:00,8137.0
-2013-09-24 06:00:00,8281.0
-2013-09-24 07:00:00,8903.0
-2013-09-24 08:00:00,9938.0
-2013-09-24 09:00:00,10454.0
-2013-09-24 10:00:00,10829.0
-2013-09-24 11:00:00,11137.0
-2013-09-24 12:00:00,11489.0
-2013-09-24 13:00:00,11702.0
-2013-09-24 14:00:00,11781.0
-2013-09-24 15:00:00,11949.0
-2013-09-24 16:00:00,12002.0
-2013-09-24 17:00:00,11936.0
-2013-09-24 18:00:00,11851.0
-2013-09-24 19:00:00,11598.0
-2013-09-24 20:00:00,11422.0
-2013-09-24 21:00:00,11844.0
-2013-09-24 22:00:00,11600.0
-2013-09-24 23:00:00,10997.0
-2013-09-25 00:00:00,10156.0
-2013-09-23 01:00:00,8578.0
-2013-09-23 02:00:00,8152.0
-2013-09-23 03:00:00,7940.0
-2013-09-23 04:00:00,7830.0
-2013-09-23 05:00:00,7862.0
-2013-09-23 06:00:00,8062.0
-2013-09-23 07:00:00,8777.0
-2013-09-23 08:00:00,9842.0
-2013-09-23 09:00:00,10385.0
-2013-09-23 10:00:00,10706.0
-2013-09-23 11:00:00,11008.0
-2013-09-23 12:00:00,11273.0
-2013-09-23 13:00:00,11437.0
-2013-09-23 14:00:00,11519.0
-2013-09-23 15:00:00,11657.0
-2013-09-23 16:00:00,11698.0
-2013-09-23 17:00:00,11664.0
-2013-09-23 18:00:00,11589.0
-2013-09-23 19:00:00,11422.0
-2013-09-23 20:00:00,11314.0
-2013-09-23 21:00:00,11757.0
-2013-09-23 22:00:00,11502.0
-2013-09-23 23:00:00,10923.0
-2013-09-24 00:00:00,10113.0
-2013-09-22 01:00:00,8727.0
-2013-09-22 02:00:00,8215.0
-2013-09-22 03:00:00,7925.0
-2013-09-22 04:00:00,7686.0
-2013-09-22 05:00:00,7580.0
-2013-09-22 06:00:00,7549.0
-2013-09-22 07:00:00,7650.0
-2013-09-22 08:00:00,7722.0
-2013-09-22 09:00:00,7837.0
-2013-09-22 10:00:00,8270.0
-2013-09-22 11:00:00,8704.0
-2013-09-22 12:00:00,8998.0
-2013-09-22 13:00:00,9205.0
-2013-09-22 14:00:00,9291.0
-2013-09-22 15:00:00,9378.0
-2013-09-22 16:00:00,9387.0
-2013-09-22 17:00:00,9481.0
-2013-09-22 18:00:00,9490.0
-2013-09-22 19:00:00,9555.0
-2013-09-22 20:00:00,9660.0
-2013-09-22 21:00:00,10262.0
-2013-09-22 22:00:00,10137.0
-2013-09-22 23:00:00,9741.0
-2013-09-23 00:00:00,9186.0
-2013-09-21 01:00:00,9809.0
-2013-09-21 02:00:00,9237.0
-2013-09-21 03:00:00,8773.0
-2013-09-21 04:00:00,8512.0
-2013-09-21 05:00:00,8346.0
-2013-09-21 06:00:00,8336.0
-2013-09-21 07:00:00,8545.0
-2013-09-21 08:00:00,8799.0
-2013-09-21 09:00:00,8976.0
-2013-09-21 10:00:00,9484.0
-2013-09-21 11:00:00,9899.0
-2013-09-21 12:00:00,10151.0
-2013-09-21 13:00:00,10245.0
-2013-09-21 14:00:00,10258.0
-2013-09-21 15:00:00,10140.0
-2013-09-21 16:00:00,10073.0
-2013-09-21 17:00:00,9979.0
-2013-09-21 18:00:00,9947.0
-2013-09-21 19:00:00,9826.0
-2013-09-21 20:00:00,9808.0
-2013-09-21 21:00:00,10269.0
-2013-09-21 22:00:00,10152.0
-2013-09-21 23:00:00,9827.0
-2013-09-22 00:00:00,9287.0
-2013-09-20 01:00:00,12274.0
-2013-09-20 02:00:00,11342.0
-2013-09-20 03:00:00,10579.0
-2013-09-20 04:00:00,10017.0
-2013-09-20 05:00:00,9801.0
-2013-09-20 06:00:00,9883.0
-2013-09-20 07:00:00,10564.0
-2013-09-20 08:00:00,11762.0
-2013-09-20 09:00:00,12435.0
-2013-09-20 10:00:00,12855.0
-2013-09-20 11:00:00,13151.0
-2013-09-20 12:00:00,13455.0
-2013-09-20 13:00:00,13727.0
-2013-09-20 14:00:00,13929.0
-2013-09-20 15:00:00,14082.0
-2013-09-20 16:00:00,13866.0
-2013-09-20 17:00:00,13646.0
-2013-09-20 18:00:00,13223.0
-2013-09-20 19:00:00,12648.0
-2013-09-20 20:00:00,12229.0
-2013-09-20 21:00:00,12370.0
-2013-09-20 22:00:00,11953.0
-2013-09-20 23:00:00,11447.0
-2013-09-21 00:00:00,10624.0
-2013-09-19 01:00:00,10498.0
-2013-09-19 02:00:00,9864.0
-2013-09-19 03:00:00,9518.0
-2013-09-19 04:00:00,9270.0
-2013-09-19 05:00:00,9211.0
-2013-09-19 06:00:00,9350.0
-2013-09-19 07:00:00,10148.0
-2013-09-19 08:00:00,11439.0
-2013-09-19 09:00:00,12376.0
-2013-09-19 10:00:00,12843.0
-2013-09-19 11:00:00,13223.0
-2013-09-19 12:00:00,13596.0
-2013-09-19 13:00:00,13863.0
-2013-09-19 14:00:00,14264.0
-2013-09-19 15:00:00,14976.0
-2013-09-19 16:00:00,15499.0
-2013-09-19 17:00:00,15943.0
-2013-09-19 18:00:00,16253.0
-2013-09-19 19:00:00,16112.0
-2013-09-19 20:00:00,15648.0
-2013-09-19 21:00:00,15824.0
-2013-09-19 22:00:00,15466.0
-2013-09-19 23:00:00,14574.0
-2013-09-20 00:00:00,13429.0
-2013-09-18 01:00:00,9483.0
-2013-09-18 02:00:00,8920.0
-2013-09-18 03:00:00,8561.0
-2013-09-18 04:00:00,8371.0
-2013-09-18 05:00:00,8283.0
-2013-09-18 06:00:00,8465.0
-2013-09-18 07:00:00,9107.0
-2013-09-18 08:00:00,10252.0
-2013-09-18 09:00:00,10975.0
-2013-09-18 10:00:00,11406.0
-2013-09-18 11:00:00,11710.0
-2013-09-18 12:00:00,12216.0
-2013-09-18 13:00:00,12629.0
-2013-09-18 14:00:00,12985.0
-2013-09-18 15:00:00,13367.0
-2013-09-18 16:00:00,13439.0
-2013-09-18 17:00:00,13436.0
-2013-09-18 18:00:00,13380.0
-2013-09-18 19:00:00,13206.0
-2013-09-18 20:00:00,12938.0
-2013-09-18 21:00:00,13180.0
-2013-09-18 22:00:00,12975.0
-2013-09-18 23:00:00,12359.0
-2013-09-19 00:00:00,11469.0
-2013-09-17 01:00:00,9159.0
-2013-09-17 02:00:00,8622.0
-2013-09-17 03:00:00,8338.0
-2013-09-17 04:00:00,8154.0
-2013-09-17 05:00:00,8099.0
-2013-09-17 06:00:00,8290.0
-2013-09-17 07:00:00,8928.0
-2013-09-17 08:00:00,9865.0
-2013-09-17 09:00:00,10444.0
-2013-09-17 10:00:00,10829.0
-2013-09-17 11:00:00,11120.0
-2013-09-17 12:00:00,11440.0
-2013-09-17 13:00:00,11581.0
-2013-09-17 14:00:00,11688.0
-2013-09-17 15:00:00,11795.0
-2013-09-17 16:00:00,11856.0
-2013-09-17 17:00:00,11746.0
-2013-09-17 18:00:00,11593.0
-2013-09-17 19:00:00,11448.0
-2013-09-17 20:00:00,11436.0
-2013-09-17 21:00:00,11930.0
-2013-09-17 22:00:00,11747.0
-2013-09-17 23:00:00,11153.0
-2013-09-18 00:00:00,10334.0
-2013-09-16 01:00:00,8718.0
-2013-09-16 02:00:00,8353.0
-2013-09-16 03:00:00,8139.0
-2013-09-16 04:00:00,8003.0
-2013-09-16 05:00:00,7999.0
-2013-09-16 06:00:00,8250.0
-2013-09-16 07:00:00,8896.0
-2013-09-16 08:00:00,9970.0
-2013-09-16 09:00:00,10548.0
-2013-09-16 10:00:00,10843.0
-2013-09-16 11:00:00,11028.0
-2013-09-16 12:00:00,11275.0
-2013-09-16 13:00:00,11409.0
-2013-09-16 14:00:00,11480.0
-2013-09-16 15:00:00,11577.0
-2013-09-16 16:00:00,11536.0
-2013-09-16 17:00:00,11455.0
-2013-09-16 18:00:00,11344.0
-2013-09-16 19:00:00,11140.0
-2013-09-16 20:00:00,10973.0
-2013-09-16 21:00:00,11466.0
-2013-09-16 22:00:00,11346.0
-2013-09-16 23:00:00,10796.0
-2013-09-17 00:00:00,9966.0
-2013-09-15 01:00:00,8916.0
-2013-09-15 02:00:00,8468.0
-2013-09-15 03:00:00,8105.0
-2013-09-15 04:00:00,7868.0
-2013-09-15 05:00:00,7802.0
-2013-09-15 06:00:00,7734.0
-2013-09-15 07:00:00,7816.0
-2013-09-15 08:00:00,7939.0
-2013-09-15 09:00:00,8131.0
-2013-09-15 10:00:00,8505.0
-2013-09-15 11:00:00,8957.0
-2013-09-15 12:00:00,9215.0
-2013-09-15 13:00:00,9444.0
-2013-09-15 14:00:00,9475.0
-2013-09-15 15:00:00,9497.0
-2013-09-15 16:00:00,9543.0
-2013-09-15 17:00:00,9573.0
-2013-09-15 18:00:00,9683.0
-2013-09-15 19:00:00,9771.0
-2013-09-15 20:00:00,9943.0
-2013-09-15 21:00:00,10297.0
-2013-09-15 22:00:00,10196.0
-2013-09-15 23:00:00,9796.0
-2013-09-16 00:00:00,9290.0
-2013-09-14 01:00:00,9375.0
-2013-09-14 02:00:00,8764.0
-2013-09-14 03:00:00,8398.0
-2013-09-14 04:00:00,8136.0
-2013-09-14 05:00:00,8025.0
-2013-09-14 06:00:00,8020.0
-2013-09-14 07:00:00,8230.0
-2013-09-14 08:00:00,8488.0
-2013-09-14 09:00:00,8738.0
-2013-09-14 10:00:00,9270.0
-2013-09-14 11:00:00,9628.0
-2013-09-14 12:00:00,10007.0
-2013-09-14 13:00:00,10133.0
-2013-09-14 14:00:00,10192.0
-2013-09-14 15:00:00,10187.0
-2013-09-14 16:00:00,10215.0
-2013-09-14 17:00:00,10232.0
-2013-09-14 18:00:00,10216.0
-2013-09-14 19:00:00,10123.0
-2013-09-14 20:00:00,10053.0
-2013-09-14 21:00:00,10452.0
-2013-09-14 22:00:00,10388.0
-2013-09-14 23:00:00,10038.0
-2013-09-15 00:00:00,9477.0
-2013-09-13 01:00:00,10599.0
-2013-09-13 02:00:00,9892.0
-2013-09-13 03:00:00,9404.0
-2013-09-13 04:00:00,9064.0
-2013-09-13 05:00:00,8877.0
-2013-09-13 06:00:00,8910.0
-2013-09-13 07:00:00,9376.0
-2013-09-13 08:00:00,10149.0
-2013-09-13 09:00:00,10636.0
-2013-09-13 10:00:00,11013.0
-2013-09-13 11:00:00,11308.0
-2013-09-13 12:00:00,11644.0
-2013-09-13 13:00:00,11801.0
-2013-09-13 14:00:00,11881.0
-2013-09-13 15:00:00,11941.0
-2013-09-13 16:00:00,11921.0
-2013-09-13 17:00:00,11842.0
-2013-09-13 18:00:00,11687.0
-2013-09-13 19:00:00,11431.0
-2013-09-13 20:00:00,11022.0
-2013-09-13 21:00:00,11353.0
-2013-09-13 22:00:00,11236.0
-2013-09-13 23:00:00,10804.0
-2013-09-14 00:00:00,10103.0
-2013-09-12 01:00:00,13327.0
-2013-09-12 02:00:00,12402.0
-2013-09-12 03:00:00,11653.0
-2013-09-12 04:00:00,11146.0
-2013-09-12 05:00:00,10876.0
-2013-09-12 06:00:00,10887.0
-2013-09-12 07:00:00,11473.0
-2013-09-12 08:00:00,12439.0
-2013-09-12 09:00:00,13086.0
-2013-09-12 10:00:00,13786.0
-2013-09-12 11:00:00,14566.0
-2013-09-12 12:00:00,15326.0
-2013-09-12 13:00:00,15834.0
-2013-09-12 14:00:00,16183.0
-2013-09-12 15:00:00,16376.0
-2013-09-12 16:00:00,16407.0
-2013-09-12 17:00:00,16162.0
-2013-09-12 18:00:00,15621.0
-2013-09-12 19:00:00,14818.0
-2013-09-12 20:00:00,13902.0
-2013-09-12 21:00:00,13835.0
-2013-09-12 22:00:00,13512.0
-2013-09-12 23:00:00,12719.0
-2013-09-13 00:00:00,11663.0
-2013-09-11 01:00:00,15302.0
-2013-09-11 02:00:00,14159.0
-2013-09-11 03:00:00,13380.0
-2013-09-11 04:00:00,12808.0
-2013-09-11 05:00:00,12403.0
-2013-09-11 06:00:00,12347.0
-2013-09-11 07:00:00,12926.0
-2013-09-11 08:00:00,13897.0
-2013-09-11 09:00:00,14750.0
-2013-09-11 10:00:00,15625.0
-2013-09-11 11:00:00,16506.0
-2013-09-11 12:00:00,17509.0
-2013-09-11 13:00:00,18412.0
-2013-09-11 14:00:00,19157.0
-2013-09-11 15:00:00,19649.0
-2013-09-11 16:00:00,19353.0
-2013-09-11 17:00:00,18743.0
-2013-09-11 18:00:00,18227.0
-2013-09-11 19:00:00,17860.0
-2013-09-11 20:00:00,17315.0
-2013-09-11 21:00:00,17363.0
-2013-09-11 22:00:00,16984.0
-2013-09-11 23:00:00,16015.0
-2013-09-12 00:00:00,14666.0
-2013-09-10 01:00:00,15941.0
-2013-09-10 02:00:00,14771.0
-2013-09-10 03:00:00,13945.0
-2013-09-10 04:00:00,13288.0
-2013-09-10 05:00:00,12824.0
-2013-09-10 06:00:00,12736.0
-2013-09-10 07:00:00,13244.0
-2013-09-10 08:00:00,14154.0
-2013-09-10 09:00:00,14941.0
-2013-09-10 10:00:00,15985.0
-2013-09-10 11:00:00,17169.0
-2013-09-10 12:00:00,18369.0
-2013-09-10 13:00:00,19398.0
-2013-09-10 14:00:00,20215.0
-2013-09-10 15:00:00,20888.0
-2013-09-10 16:00:00,21315.0
-2013-09-10 17:00:00,21572.0
-2013-09-10 18:00:00,21550.0
-2013-09-10 19:00:00,21132.0
-2013-09-10 20:00:00,20319.0
-2013-09-10 21:00:00,20046.0
-2013-09-10 22:00:00,19489.0
-2013-09-10 23:00:00,18321.0
-2013-09-11 00:00:00,16762.0
-2013-09-09 01:00:00,11147.0
-2013-09-09 02:00:00,10479.0
-2013-09-09 03:00:00,10090.0
-2013-09-09 04:00:00,9848.0
-2013-09-09 05:00:00,9693.0
-2013-09-09 06:00:00,9984.0
-2013-09-09 07:00:00,10829.0
-2013-09-09 08:00:00,12035.0
-2013-09-09 09:00:00,12975.0
-2013-09-09 10:00:00,13908.0
-2013-09-09 11:00:00,14980.0
-2013-09-09 12:00:00,16187.0
-2013-09-09 13:00:00,17377.0
-2013-09-09 14:00:00,18455.0
-2013-09-09 15:00:00,19483.0
-2013-09-09 16:00:00,20246.0
-2013-09-09 17:00:00,20883.0
-2013-09-09 18:00:00,21256.0
-2013-09-09 19:00:00,21081.0
-2013-09-09 20:00:00,20478.0
-2013-09-09 21:00:00,20381.0
-2013-09-09 22:00:00,19974.0
-2013-09-09 23:00:00,18939.0
-2013-09-10 00:00:00,17422.0
-2013-09-08 01:00:00,12014.0
-2013-09-08 02:00:00,11330.0
-2013-09-08 03:00:00,10759.0
-2013-09-08 04:00:00,10294.0
-2013-09-08 05:00:00,10001.0
-2013-09-08 06:00:00,9808.0
-2013-09-08 07:00:00,9836.0
-2013-09-08 08:00:00,10020.0
-2013-09-08 09:00:00,10173.0
-2013-09-08 10:00:00,10709.0
-2013-09-08 11:00:00,11295.0
-2013-09-08 12:00:00,11870.0
-2013-09-08 13:00:00,12629.0
-2013-09-08 14:00:00,13072.0
-2013-09-08 15:00:00,13235.0
-2013-09-08 16:00:00,13278.0
-2013-09-08 17:00:00,13288.0
-2013-09-08 18:00:00,13360.0
-2013-09-08 19:00:00,13252.0
-2013-09-08 20:00:00,12968.0
-2013-09-08 21:00:00,13243.0
-2013-09-08 22:00:00,13299.0
-2013-09-08 23:00:00,12844.0
-2013-09-09 00:00:00,11988.0
-2013-09-07 01:00:00,12200.0
-2013-09-07 02:00:00,11266.0
-2013-09-07 03:00:00,10587.0
-2013-09-07 04:00:00,10101.0
-2013-09-07 05:00:00,9785.0
-2013-09-07 06:00:00,9688.0
-2013-09-07 07:00:00,9867.0
-2013-09-07 08:00:00,10094.0
-2013-09-07 09:00:00,10518.0
-2013-09-07 10:00:00,11408.0
-2013-09-07 11:00:00,12215.0
-2013-09-07 12:00:00,13189.0
-2013-09-07 13:00:00,14161.0
-2013-09-07 14:00:00,14849.0
-2013-09-07 15:00:00,15116.0
-2013-09-07 16:00:00,15133.0
-2013-09-07 17:00:00,15279.0
-2013-09-07 18:00:00,15206.0
-2013-09-07 19:00:00,15088.0
-2013-09-07 20:00:00,14633.0
-2013-09-07 21:00:00,14592.0
-2013-09-07 22:00:00,14446.0
-2013-09-07 23:00:00,13829.0
-2013-09-08 00:00:00,12960.0
-2013-09-06 01:00:00,10292.0
-2013-09-06 02:00:00,9634.0
-2013-09-06 03:00:00,9222.0
-2013-09-06 04:00:00,8955.0
-2013-09-06 05:00:00,8844.0
-2013-09-06 06:00:00,8997.0
-2013-09-06 07:00:00,9615.0
-2013-09-06 08:00:00,10516.0
-2013-09-06 09:00:00,11230.0
-2013-09-06 10:00:00,11776.0
-2013-09-06 11:00:00,12266.0
-2013-09-06 12:00:00,12862.0
-2013-09-06 13:00:00,13376.0
-2013-09-06 14:00:00,13933.0
-2013-09-06 15:00:00,14651.0
-2013-09-06 16:00:00,15187.0
-2013-09-06 17:00:00,15681.0
-2013-09-06 18:00:00,15973.0
-2013-09-06 19:00:00,15878.0
-2013-09-06 20:00:00,15410.0
-2013-09-06 21:00:00,15263.0
-2013-09-06 22:00:00,14993.0
-2013-09-06 23:00:00,14366.0
-2013-09-07 00:00:00,13311.0
-2013-09-05 01:00:00,11224.0
-2013-09-05 02:00:00,10450.0
-2013-09-05 03:00:00,9976.0
-2013-09-05 04:00:00,9722.0
-2013-09-05 05:00:00,9587.0
-2013-09-05 06:00:00,9796.0
-2013-09-05 07:00:00,10459.0
-2013-09-05 08:00:00,11551.0
-2013-09-05 09:00:00,12256.0
-2013-09-05 10:00:00,12639.0
-2013-09-05 11:00:00,12900.0
-2013-09-05 12:00:00,13208.0
-2013-09-05 13:00:00,13430.0
-2013-09-05 14:00:00,13642.0
-2013-09-05 15:00:00,13943.0
-2013-09-05 16:00:00,14079.0
-2013-09-05 17:00:00,14138.0
-2013-09-05 18:00:00,14046.0
-2013-09-05 19:00:00,13686.0
-2013-09-05 20:00:00,13049.0
-2013-09-05 21:00:00,12927.0
-2013-09-05 22:00:00,12831.0
-2013-09-05 23:00:00,12099.0
-2013-09-06 00:00:00,11184.0
-2013-09-04 01:00:00,10231.0
-2013-09-04 02:00:00,9584.0
-2013-09-04 03:00:00,9119.0
-2013-09-04 04:00:00,8856.0
-2013-09-04 05:00:00,8740.0
-2013-09-04 06:00:00,8914.0
-2013-09-04 07:00:00,9538.0
-2013-09-04 08:00:00,10419.0
-2013-09-04 09:00:00,11198.0
-2013-09-04 10:00:00,11874.0
-2013-09-04 11:00:00,12478.0
-2013-09-04 12:00:00,13020.0
-2013-09-04 13:00:00,13447.0
-2013-09-04 14:00:00,13785.0
-2013-09-04 15:00:00,14313.0
-2013-09-04 16:00:00,14705.0
-2013-09-04 17:00:00,15032.0
-2013-09-04 18:00:00,15259.0
-2013-09-04 19:00:00,15135.0
-2013-09-04 20:00:00,14563.0
-2013-09-04 21:00:00,14487.0
-2013-09-04 22:00:00,14348.0
-2013-09-04 23:00:00,13516.0
-2013-09-05 00:00:00,12373.0
-2013-09-03 01:00:00,9599.0
-2013-09-03 02:00:00,8996.0
-2013-09-03 03:00:00,8637.0
-2013-09-03 04:00:00,8435.0
-2013-09-03 05:00:00,8370.0
-2013-09-03 06:00:00,8565.0
-2013-09-03 07:00:00,9215.0
-2013-09-03 08:00:00,10172.0
-2013-09-03 09:00:00,10965.0
-2013-09-03 10:00:00,11689.0
-2013-09-03 11:00:00,12259.0
-2013-09-03 12:00:00,12653.0
-2013-09-03 13:00:00,12965.0
-2013-09-03 14:00:00,13186.0
-2013-09-03 15:00:00,13527.0
-2013-09-03 16:00:00,13771.0
-2013-09-03 17:00:00,13974.0
-2013-09-03 18:00:00,13843.0
-2013-09-03 19:00:00,13535.0
-2013-09-03 20:00:00,13028.0
-2013-09-03 21:00:00,13063.0
-2013-09-03 22:00:00,13045.0
-2013-09-03 23:00:00,12310.0
-2013-09-04 00:00:00,11242.0
-2013-09-02 01:00:00,11495.0
-2013-09-02 02:00:00,10670.0
-2013-09-02 03:00:00,10011.0
-2013-09-02 04:00:00,9607.0
-2013-09-02 05:00:00,9301.0
-2013-09-02 06:00:00,9192.0
-2013-09-02 07:00:00,9282.0
-2013-09-02 08:00:00,9243.0
-2013-09-02 09:00:00,9504.0
-2013-09-02 10:00:00,10216.0
-2013-09-02 11:00:00,10945.0
-2013-09-02 12:00:00,11604.0
-2013-09-02 13:00:00,12007.0
-2013-09-02 14:00:00,12378.0
-2013-09-02 15:00:00,12620.0
-2013-09-02 16:00:00,12747.0
-2013-09-02 17:00:00,12734.0
-2013-09-02 18:00:00,12620.0
-2013-09-02 19:00:00,12323.0
-2013-09-02 20:00:00,11835.0
-2013-09-02 21:00:00,11783.0
-2013-09-02 22:00:00,11849.0
-2013-09-02 23:00:00,11312.0
-2013-09-03 00:00:00,10439.0
-2013-09-01 01:00:00,11161.0
-2013-09-01 02:00:00,10435.0
-2013-09-01 03:00:00,9946.0
-2013-09-01 04:00:00,9542.0
-2013-09-01 05:00:00,9248.0
-2013-09-01 06:00:00,9181.0
-2013-09-01 07:00:00,9149.0
-2013-09-01 08:00:00,9148.0
-2013-09-01 09:00:00,9433.0
-2013-09-01 10:00:00,10348.0
-2013-09-01 11:00:00,11279.0
-2013-09-01 12:00:00,12227.0
-2013-09-01 13:00:00,12862.0
-2013-09-01 14:00:00,13526.0
-2013-09-01 15:00:00,14169.0
-2013-09-01 16:00:00,14690.0
-2013-09-01 17:00:00,15099.0
-2013-09-01 18:00:00,15172.0
-2013-09-01 19:00:00,15055.0
-2013-09-01 20:00:00,14590.0
-2013-09-01 21:00:00,14444.0
-2013-09-01 22:00:00,14446.0
-2013-09-01 23:00:00,13687.0
-2013-09-02 00:00:00,12527.0
-2013-08-31 01:00:00,12789.0
-2013-08-31 02:00:00,11898.0
-2013-08-31 03:00:00,11190.0
-2013-08-31 04:00:00,10634.0
-2013-08-31 05:00:00,10395.0
-2013-08-31 06:00:00,10251.0
-2013-08-31 07:00:00,10440.0
-2013-08-31 08:00:00,10578.0
-2013-08-31 09:00:00,10974.0
-2013-08-31 10:00:00,11712.0
-2013-08-31 11:00:00,12326.0
-2013-08-31 12:00:00,12665.0
-2013-08-31 13:00:00,12834.0
-2013-08-31 14:00:00,12895.0
-2013-08-31 15:00:00,13057.0
-2013-08-31 16:00:00,13276.0
-2013-08-31 17:00:00,13409.0
-2013-08-31 18:00:00,13262.0
-2013-08-31 19:00:00,13034.0
-2013-08-31 20:00:00,12685.0
-2013-08-31 21:00:00,12801.0
-2013-08-31 22:00:00,12895.0
-2013-08-31 23:00:00,12565.0
-2013-09-01 00:00:00,11921.0
-2013-08-30 01:00:00,13268.0
-2013-08-30 02:00:00,12223.0
-2013-08-30 03:00:00,11518.0
-2013-08-30 04:00:00,10991.0
-2013-08-30 05:00:00,10729.0
-2013-08-30 06:00:00,10823.0
-2013-08-30 07:00:00,11509.0
-2013-08-30 08:00:00,12460.0
-2013-08-30 09:00:00,13579.0
-2013-08-30 10:00:00,14740.0
-2013-08-30 11:00:00,16010.0
-2013-08-30 12:00:00,17298.0
-2013-08-30 13:00:00,18561.0
-2013-08-30 14:00:00,19688.0
-2013-08-30 15:00:00,20637.0
-2013-08-30 16:00:00,21204.0
-2013-08-30 17:00:00,21488.0
-2013-08-30 18:00:00,21519.0
-2013-08-30 19:00:00,20372.0
-2013-08-30 20:00:00,17922.0
-2013-08-30 21:00:00,16861.0
-2013-08-30 22:00:00,16081.0
-2013-08-30 23:00:00,15281.0
-2013-08-31 00:00:00,14093.0
-2013-08-29 01:00:00,12887.0
-2013-08-29 02:00:00,11977.0
-2013-08-29 03:00:00,11350.0
-2013-08-29 04:00:00,10933.0
-2013-08-29 05:00:00,10703.0
-2013-08-29 06:00:00,10797.0
-2013-08-29 07:00:00,11492.0
-2013-08-29 08:00:00,12542.0
-2013-08-29 09:00:00,13425.0
-2013-08-29 10:00:00,14197.0
-2013-08-29 11:00:00,15287.0
-2013-08-29 12:00:00,16446.0
-2013-08-29 13:00:00,17320.0
-2013-08-29 14:00:00,18108.0
-2013-08-29 15:00:00,18813.0
-2013-08-29 16:00:00,19274.0
-2013-08-29 17:00:00,19592.0
-2013-08-29 18:00:00,19702.0
-2013-08-29 19:00:00,19322.0
-2013-08-29 20:00:00,18404.0
-2013-08-29 21:00:00,17694.0
-2013-08-29 22:00:00,17357.0
-2013-08-29 23:00:00,16203.0
-2013-08-30 00:00:00,14684.0
-2013-08-28 01:00:00,15993.0
-2013-08-28 02:00:00,14782.0
-2013-08-28 03:00:00,13974.0
-2013-08-28 04:00:00,13326.0
-2013-08-28 05:00:00,12961.0
-2013-08-28 06:00:00,12883.0
-2013-08-28 07:00:00,13387.0
-2013-08-28 08:00:00,14317.0
-2013-08-28 09:00:00,15183.0
-2013-08-28 10:00:00,15948.0
-2013-08-28 11:00:00,16408.0
-2013-08-28 12:00:00,16820.0
-2013-08-28 13:00:00,17183.0
-2013-08-28 14:00:00,17505.0
-2013-08-28 15:00:00,18019.0
-2013-08-28 16:00:00,18323.0
-2013-08-28 17:00:00,18507.0
-2013-08-28 18:00:00,18388.0
-2013-08-28 19:00:00,17998.0
-2013-08-28 20:00:00,17308.0
-2013-08-28 21:00:00,16733.0
-2013-08-28 22:00:00,16483.0
-2013-08-28 23:00:00,15543.0
-2013-08-29 00:00:00,14178.0
-2013-08-27 01:00:00,14682.0
-2013-08-27 02:00:00,13609.0
-2013-08-27 03:00:00,12934.0
-2013-08-27 04:00:00,12440.0
-2013-08-27 05:00:00,12165.0
-2013-08-27 06:00:00,12292.0
-2013-08-27 07:00:00,12985.0
-2013-08-27 08:00:00,14026.0
-2013-08-27 09:00:00,14942.0
-2013-08-27 10:00:00,15780.0
-2013-08-27 11:00:00,16944.0
-2013-08-27 12:00:00,18057.0
-2013-08-27 13:00:00,19119.0
-2013-08-27 14:00:00,20112.0
-2013-08-27 15:00:00,20953.0
-2013-08-27 16:00:00,21495.0
-2013-08-27 17:00:00,21843.0
-2013-08-27 18:00:00,21960.0
-2013-08-27 19:00:00,21716.0
-2013-08-27 20:00:00,21076.0
-2013-08-27 21:00:00,20613.0
-2013-08-27 22:00:00,20392.0
-2013-08-27 23:00:00,19281.0
-2013-08-28 00:00:00,17580.0
-2013-08-26 01:00:00,13027.0
-2013-08-26 02:00:00,12011.0
-2013-08-26 03:00:00,11373.0
-2013-08-26 04:00:00,10955.0
-2013-08-26 05:00:00,10656.0
-2013-08-26 06:00:00,10718.0
-2013-08-26 07:00:00,11463.0
-2013-08-26 08:00:00,12509.0
-2013-08-26 09:00:00,13462.0
-2013-08-26 10:00:00,14287.0
-2013-08-26 11:00:00,14969.0
-2013-08-26 12:00:00,16171.0
-2013-08-26 13:00:00,17241.0
-2013-08-26 14:00:00,18364.0
-2013-08-26 15:00:00,19327.0
-2013-08-26 16:00:00,19882.0
-2013-08-26 17:00:00,20351.0
-2013-08-26 18:00:00,20460.0
-2013-08-26 19:00:00,20154.0
-2013-08-26 20:00:00,19611.0
-2013-08-26 21:00:00,19145.0
-2013-08-26 22:00:00,18888.0
-2013-08-26 23:00:00,17775.0
-2013-08-27 00:00:00,16212.0
-2013-08-25 01:00:00,11543.0
-2013-08-25 02:00:00,10704.0
-2013-08-25 03:00:00,10032.0
-2013-08-25 04:00:00,9577.0
-2013-08-25 05:00:00,9261.0
-2013-08-25 06:00:00,9134.0
-2013-08-25 07:00:00,9075.0
-2013-08-25 08:00:00,9024.0
-2013-08-25 09:00:00,9419.0
-2013-08-25 10:00:00,10308.0
-2013-08-25 11:00:00,11441.0
-2013-08-25 12:00:00,12708.0
-2013-08-25 13:00:00,13862.0
-2013-08-25 14:00:00,14854.0
-2013-08-25 15:00:00,15705.0
-2013-08-25 16:00:00,16409.0
-2013-08-25 17:00:00,16914.0
-2013-08-25 18:00:00,17236.0
-2013-08-25 19:00:00,17170.0
-2013-08-25 20:00:00,16726.0
-2013-08-25 21:00:00,16243.0
-2013-08-25 22:00:00,16232.0
-2013-08-25 23:00:00,15439.0
-2013-08-26 00:00:00,14307.0
-2013-08-24 01:00:00,11084.0
-2013-08-24 02:00:00,10234.0
-2013-08-24 03:00:00,9686.0
-2013-08-24 04:00:00,9306.0
-2013-08-24 05:00:00,9087.0
-2013-08-24 06:00:00,9002.0
-2013-08-24 07:00:00,9170.0
-2013-08-24 08:00:00,9259.0
-2013-08-24 09:00:00,9881.0
-2013-08-24 10:00:00,10735.0
-2013-08-24 11:00:00,11596.0
-2013-08-24 12:00:00,12432.0
-2013-08-24 13:00:00,13085.0
-2013-08-24 14:00:00,13797.0
-2013-08-24 15:00:00,14321.0
-2013-08-24 16:00:00,14804.0
-2013-08-24 17:00:00,15244.0
-2013-08-24 18:00:00,15387.0
-2013-08-24 19:00:00,15270.0
-2013-08-24 20:00:00,14771.0
-2013-08-24 21:00:00,14232.0
-2013-08-24 22:00:00,14140.0
-2013-08-24 23:00:00,13509.0
-2013-08-25 00:00:00,12546.0
-2013-08-23 01:00:00,11369.0
-2013-08-23 02:00:00,10539.0
-2013-08-23 03:00:00,10019.0
-2013-08-23 04:00:00,9636.0
-2013-08-23 05:00:00,9451.0
-2013-08-23 06:00:00,9595.0
-2013-08-23 07:00:00,10222.0
-2013-08-23 08:00:00,11059.0
-2013-08-23 09:00:00,12033.0
-2013-08-23 10:00:00,12871.0
-2013-08-23 11:00:00,13600.0
-2013-08-23 12:00:00,14192.0
-2013-08-23 13:00:00,14622.0
-2013-08-23 14:00:00,14962.0
-2013-08-23 15:00:00,15342.0
-2013-08-23 16:00:00,15602.0
-2013-08-23 17:00:00,15797.0
-2013-08-23 18:00:00,15772.0
-2013-08-23 19:00:00,15452.0
-2013-08-23 20:00:00,14697.0
-2013-08-23 21:00:00,13947.0
-2013-08-23 22:00:00,13721.0
-2013-08-23 23:00:00,13098.0
-2013-08-24 00:00:00,12075.0
-2013-08-22 01:00:00,14215.0
-2013-08-22 02:00:00,13111.0
-2013-08-22 03:00:00,12215.0
-2013-08-22 04:00:00,11595.0
-2013-08-22 05:00:00,11306.0
-2013-08-22 06:00:00,11379.0
-2013-08-22 07:00:00,12052.0
-2013-08-22 08:00:00,13085.0
-2013-08-22 09:00:00,13973.0
-2013-08-22 10:00:00,14370.0
-2013-08-22 11:00:00,14591.0
-2013-08-22 12:00:00,14841.0
-2013-08-22 13:00:00,14734.0
-2013-08-22 14:00:00,14502.0
-2013-08-22 15:00:00,14415.0
-2013-08-22 16:00:00,14255.0
-2013-08-22 17:00:00,14280.0
-2013-08-22 18:00:00,14221.0
-2013-08-22 19:00:00,14159.0
-2013-08-22 20:00:00,14016.0
-2013-08-22 21:00:00,13869.0
-2013-08-22 22:00:00,14078.0
-2013-08-22 23:00:00,13453.0
-2013-08-23 00:00:00,12413.0
-2013-08-21 01:00:00,12995.0
-2013-08-21 02:00:00,11993.0
-2013-08-21 03:00:00,11247.0
-2013-08-21 04:00:00,10795.0
-2013-08-21 05:00:00,10533.0
-2013-08-21 06:00:00,10607.0
-2013-08-21 07:00:00,11266.0
-2013-08-21 08:00:00,12202.0
-2013-08-21 09:00:00,13210.0
-2013-08-21 10:00:00,14196.0
-2013-08-21 11:00:00,15356.0
-2013-08-21 12:00:00,16523.0
-2013-08-21 13:00:00,17506.0
-2013-08-21 14:00:00,18210.0
-2013-08-21 15:00:00,18839.0
-2013-08-21 16:00:00,19354.0
-2013-08-21 17:00:00,19674.0
-2013-08-21 18:00:00,19741.0
-2013-08-21 19:00:00,19430.0
-2013-08-21 20:00:00,18700.0
-2013-08-21 21:00:00,18201.0
-2013-08-21 22:00:00,18057.0
-2013-08-21 23:00:00,17124.0
-2013-08-22 00:00:00,15627.0
-2013-08-20 01:00:00,12193.0
-2013-08-20 02:00:00,11261.0
-2013-08-20 03:00:00,10600.0
-2013-08-20 04:00:00,10207.0
-2013-08-20 05:00:00,9971.0
-2013-08-20 06:00:00,10089.0
-2013-08-20 07:00:00,10714.0
-2013-08-20 08:00:00,11568.0
-2013-08-20 09:00:00,12633.0
-2013-08-20 10:00:00,13703.0
-2013-08-20 11:00:00,14649.0
-2013-08-20 12:00:00,15593.0
-2013-08-20 13:00:00,16313.0
-2013-08-20 14:00:00,16887.0
-2013-08-20 15:00:00,17535.0
-2013-08-20 16:00:00,17866.0
-2013-08-20 17:00:00,18095.0
-2013-08-20 18:00:00,18187.0
-2013-08-20 19:00:00,18018.0
-2013-08-20 20:00:00,17436.0
-2013-08-20 21:00:00,16831.0
-2013-08-20 22:00:00,16713.0
-2013-08-20 23:00:00,15802.0
-2013-08-21 00:00:00,14428.0
-2013-08-19 01:00:00,10605.0
-2013-08-19 02:00:00,9901.0
-2013-08-19 03:00:00,9418.0
-2013-08-19 04:00:00,9088.0
-2013-08-19 05:00:00,9025.0
-2013-08-19 06:00:00,9166.0
-2013-08-19 07:00:00,9872.0
-2013-08-19 08:00:00,10671.0
-2013-08-19 09:00:00,11742.0
-2013-08-19 10:00:00,12638.0
-2013-08-19 11:00:00,13461.0
-2013-08-19 12:00:00,14338.0
-2013-08-19 13:00:00,14985.0
-2013-08-19 14:00:00,15535.0
-2013-08-19 15:00:00,16086.0
-2013-08-19 16:00:00,16487.0
-2013-08-19 17:00:00,16609.0
-2013-08-19 18:00:00,16441.0
-2013-08-19 19:00:00,16212.0
-2013-08-19 20:00:00,15752.0
-2013-08-19 21:00:00,15398.0
-2013-08-19 22:00:00,15484.0
-2013-08-19 23:00:00,14731.0
-2013-08-20 00:00:00,13440.0
-2013-08-18 01:00:00,10258.0
-2013-08-18 02:00:00,9597.0
-2013-08-18 03:00:00,9120.0
-2013-08-18 04:00:00,8792.0
-2013-08-18 05:00:00,8540.0
-2013-08-18 06:00:00,8453.0
-2013-08-18 07:00:00,8442.0
-2013-08-18 08:00:00,8269.0
-2013-08-18 09:00:00,8645.0
-2013-08-18 10:00:00,9416.0
-2013-08-18 11:00:00,10201.0
-2013-08-18 12:00:00,10967.0
-2013-08-18 13:00:00,11536.0
-2013-08-18 14:00:00,12043.0
-2013-08-18 15:00:00,12416.0
-2013-08-18 16:00:00,12853.0
-2013-08-18 17:00:00,13102.0
-2013-08-18 18:00:00,13324.0
-2013-08-18 19:00:00,13317.0
-2013-08-18 20:00:00,13032.0
-2013-08-18 21:00:00,12686.0
-2013-08-18 22:00:00,12848.0
-2013-08-18 23:00:00,12340.0
-2013-08-19 00:00:00,11567.0
-2013-08-17 01:00:00,10604.0
-2013-08-17 02:00:00,9831.0
-2013-08-17 03:00:00,9283.0
-2013-08-17 04:00:00,8967.0
-2013-08-17 05:00:00,8800.0
-2013-08-17 06:00:00,8774.0
-2013-08-17 07:00:00,8908.0
-2013-08-17 08:00:00,8963.0
-2013-08-17 09:00:00,9556.0
-2013-08-17 10:00:00,10405.0
-2013-08-17 11:00:00,11101.0
-2013-08-17 12:00:00,11712.0
-2013-08-17 13:00:00,12073.0
-2013-08-17 14:00:00,12343.0
-2013-08-17 15:00:00,12520.0
-2013-08-17 16:00:00,12712.0
-2013-08-17 17:00:00,12862.0
-2013-08-17 18:00:00,12993.0
-2013-08-17 19:00:00,12863.0
-2013-08-17 20:00:00,12447.0
-2013-08-17 21:00:00,12035.0
-2013-08-17 22:00:00,12115.0
-2013-08-17 23:00:00,11715.0
-2013-08-18 00:00:00,10998.0
-2013-08-16 01:00:00,10152.0
-2013-08-16 02:00:00,9502.0
-2013-08-16 03:00:00,9059.0
-2013-08-16 04:00:00,8750.0
-2013-08-16 05:00:00,8683.0
-2013-08-16 06:00:00,8766.0
-2013-08-16 07:00:00,9272.0
-2013-08-16 08:00:00,9953.0
-2013-08-16 09:00:00,10807.0
-2013-08-16 10:00:00,11541.0
-2013-08-16 11:00:00,12192.0
-2013-08-16 12:00:00,12782.0
-2013-08-16 13:00:00,13186.0
-2013-08-16 14:00:00,13433.0
-2013-08-16 15:00:00,13770.0
-2013-08-16 16:00:00,13957.0
-2013-08-16 17:00:00,14090.0
-2013-08-16 18:00:00,14092.0
-2013-08-16 19:00:00,13865.0
-2013-08-16 20:00:00,13378.0
-2013-08-16 21:00:00,12867.0
-2013-08-16 22:00:00,12895.0
-2013-08-16 23:00:00,12427.0
-2013-08-17 00:00:00,11551.0
-2013-08-15 01:00:00,9936.0
-2013-08-15 02:00:00,9296.0
-2013-08-15 03:00:00,8893.0
-2013-08-15 04:00:00,8600.0
-2013-08-15 05:00:00,8476.0
-2013-08-15 06:00:00,8651.0
-2013-08-15 07:00:00,9179.0
-2013-08-15 08:00:00,9812.0
-2013-08-15 09:00:00,10672.0
-2013-08-15 10:00:00,11330.0
-2013-08-15 11:00:00,11824.0
-2013-08-15 12:00:00,12286.0
-2013-08-15 13:00:00,12601.0
-2013-08-15 14:00:00,12784.0
-2013-08-15 15:00:00,12894.0
-2013-08-15 16:00:00,12833.0
-2013-08-15 17:00:00,12722.0
-2013-08-15 18:00:00,12599.0
-2013-08-15 19:00:00,12392.0
-2013-08-15 20:00:00,12086.0
-2013-08-15 21:00:00,12010.0
-2013-08-15 22:00:00,12309.0
-2013-08-15 23:00:00,11900.0
-2013-08-16 00:00:00,11064.0
-2013-08-14 01:00:00,10009.0
-2013-08-14 02:00:00,9375.0
-2013-08-14 03:00:00,8953.0
-2013-08-14 04:00:00,8680.0
-2013-08-14 05:00:00,8548.0
-2013-08-14 06:00:00,8716.0
-2013-08-14 07:00:00,9284.0
-2013-08-14 08:00:00,9920.0
-2013-08-14 09:00:00,10757.0
-2013-08-14 10:00:00,11360.0
-2013-08-14 11:00:00,11799.0
-2013-08-14 12:00:00,12172.0
-2013-08-14 13:00:00,12377.0
-2013-08-14 14:00:00,12503.0
-2013-08-14 15:00:00,12651.0
-2013-08-14 16:00:00,12712.0
-2013-08-14 17:00:00,12682.0
-2013-08-14 18:00:00,12653.0
-2013-08-14 19:00:00,12510.0
-2013-08-14 20:00:00,12125.0
-2013-08-14 21:00:00,11892.0
-2013-08-14 22:00:00,12138.0
-2013-08-14 23:00:00,11666.0
-2013-08-15 00:00:00,10836.0
-2013-08-13 01:00:00,11966.0
-2013-08-13 02:00:00,11076.0
-2013-08-13 03:00:00,10374.0
-2013-08-13 04:00:00,9911.0
-2013-08-13 05:00:00,9599.0
-2013-08-13 06:00:00,9622.0
-2013-08-13 07:00:00,10042.0
-2013-08-13 08:00:00,10625.0
-2013-08-13 09:00:00,11365.0
-2013-08-13 10:00:00,11976.0
-2013-08-13 11:00:00,12398.0
-2013-08-13 12:00:00,12766.0
-2013-08-13 13:00:00,12930.0
-2013-08-13 14:00:00,12979.0
-2013-08-13 15:00:00,13120.0
-2013-08-13 16:00:00,13108.0
-2013-08-13 17:00:00,12977.0
-2013-08-13 18:00:00,12806.0
-2013-08-13 19:00:00,12573.0
-2013-08-13 20:00:00,12167.0
-2013-08-13 21:00:00,11870.0
-2013-08-13 22:00:00,12113.0
-2013-08-13 23:00:00,11728.0
-2013-08-14 00:00:00,10907.0
-2013-08-12 01:00:00,11236.0
-2013-08-12 02:00:00,10540.0
-2013-08-12 03:00:00,10050.0
-2013-08-12 04:00:00,9758.0
-2013-08-12 05:00:00,9613.0
-2013-08-12 06:00:00,9831.0
-2013-08-12 07:00:00,10572.0
-2013-08-12 08:00:00,11471.0
-2013-08-12 09:00:00,12381.0
-2013-08-12 10:00:00,13264.0
-2013-08-12 11:00:00,14089.0
-2013-08-12 12:00:00,14961.0
-2013-08-12 13:00:00,15605.0
-2013-08-12 14:00:00,16185.0
-2013-08-12 15:00:00,16687.0
-2013-08-12 16:00:00,16649.0
-2013-08-12 17:00:00,16367.0
-2013-08-12 18:00:00,16221.0
-2013-08-12 19:00:00,16084.0
-2013-08-12 20:00:00,15621.0
-2013-08-12 21:00:00,15071.0
-2013-08-12 22:00:00,15032.0
-2013-08-12 23:00:00,14379.0
-2013-08-13 00:00:00,13191.0
-2013-08-11 01:00:00,10710.0
-2013-08-11 02:00:00,9986.0
-2013-08-11 03:00:00,9443.0
-2013-08-11 04:00:00,9091.0
-2013-08-11 05:00:00,8808.0
-2013-08-11 06:00:00,8677.0
-2013-08-11 07:00:00,8630.0
-2013-08-11 08:00:00,8482.0
-2013-08-11 09:00:00,8887.0
-2013-08-11 10:00:00,9675.0
-2013-08-11 11:00:00,10455.0
-2013-08-11 12:00:00,11093.0
-2013-08-11 13:00:00,11685.0
-2013-08-11 14:00:00,12014.0
-2013-08-11 15:00:00,12299.0
-2013-08-11 16:00:00,12755.0
-2013-08-11 17:00:00,13033.0
-2013-08-11 18:00:00,13145.0
-2013-08-11 19:00:00,12982.0
-2013-08-11 20:00:00,12823.0
-2013-08-11 21:00:00,12723.0
-2013-08-11 22:00:00,13024.0
-2013-08-11 23:00:00,12784.0
-2013-08-12 00:00:00,12093.0
-2013-08-10 01:00:00,12112.0
-2013-08-10 02:00:00,11246.0
-2013-08-10 03:00:00,10566.0
-2013-08-10 04:00:00,10065.0
-2013-08-10 05:00:00,9716.0
-2013-08-10 06:00:00,9590.0
-2013-08-10 07:00:00,9650.0
-2013-08-10 08:00:00,9691.0
-2013-08-10 09:00:00,10422.0
-2013-08-10 10:00:00,11439.0
-2013-08-10 11:00:00,12335.0
-2013-08-10 12:00:00,13019.0
-2013-08-10 13:00:00,13432.0
-2013-08-10 14:00:00,13733.0
-2013-08-10 15:00:00,13825.0
-2013-08-10 16:00:00,13941.0
-2013-08-10 17:00:00,13923.0
-2013-08-10 18:00:00,13852.0
-2013-08-10 19:00:00,13588.0
-2013-08-10 20:00:00,13042.0
-2013-08-10 21:00:00,12538.0
-2013-08-10 22:00:00,12570.0
-2013-08-10 23:00:00,12250.0
-2013-08-11 00:00:00,11523.0
-2013-08-09 01:00:00,11056.0
-2013-08-09 02:00:00,10329.0
-2013-08-09 03:00:00,9803.0
-2013-08-09 04:00:00,9441.0
-2013-08-09 05:00:00,9242.0
-2013-08-09 06:00:00,9334.0
-2013-08-09 07:00:00,9835.0
-2013-08-09 08:00:00,10405.0
-2013-08-09 09:00:00,11442.0
-2013-08-09 10:00:00,12271.0
-2013-08-09 11:00:00,13022.0
-2013-08-09 12:00:00,13844.0
-2013-08-09 13:00:00,14481.0
-2013-08-09 14:00:00,14934.0
-2013-08-09 15:00:00,15425.0
-2013-08-09 16:00:00,15675.0
-2013-08-09 17:00:00,15703.0
-2013-08-09 18:00:00,15635.0
-2013-08-09 19:00:00,15322.0
-2013-08-09 20:00:00,14854.0
-2013-08-09 21:00:00,14491.0
-2013-08-09 22:00:00,14553.0
-2013-08-09 23:00:00,14165.0
-2013-08-10 00:00:00,13184.0
-2013-08-08 01:00:00,12245.0
-2013-08-08 02:00:00,11238.0
-2013-08-08 03:00:00,10568.0
-2013-08-08 04:00:00,10132.0
-2013-08-08 05:00:00,9886.0
-2013-08-08 06:00:00,9964.0
-2013-08-08 07:00:00,10511.0
-2013-08-08 08:00:00,11251.0
-2013-08-08 09:00:00,12211.0
-2013-08-08 10:00:00,12933.0
-2013-08-08 11:00:00,13558.0
-2013-08-08 12:00:00,14118.0
-2013-08-08 13:00:00,14505.0
-2013-08-08 14:00:00,14836.0
-2013-08-08 15:00:00,15102.0
-2013-08-08 16:00:00,15224.0
-2013-08-08 17:00:00,15262.0
-2013-08-08 18:00:00,15180.0
-2013-08-08 19:00:00,14777.0
-2013-08-08 20:00:00,13974.0
-2013-08-08 21:00:00,13434.0
-2013-08-08 22:00:00,13517.0
-2013-08-08 23:00:00,13000.0
-2013-08-09 00:00:00,12062.0
-2013-08-07 01:00:00,12823.0
-2013-08-07 02:00:00,11875.0
-2013-08-07 03:00:00,11234.0
-2013-08-07 04:00:00,10764.0
-2013-08-07 05:00:00,10578.0
-2013-08-07 06:00:00,10718.0
-2013-08-07 07:00:00,11306.0
-2013-08-07 08:00:00,12194.0
-2013-08-07 09:00:00,13326.0
-2013-08-07 10:00:00,14528.0
-2013-08-07 11:00:00,15711.0
-2013-08-07 12:00:00,16791.0
-2013-08-07 13:00:00,17553.0
-2013-08-07 14:00:00,18003.0
-2013-08-07 15:00:00,18483.0
-2013-08-07 16:00:00,18613.0
-2013-08-07 17:00:00,18514.0
-2013-08-07 18:00:00,18497.0
-2013-08-07 19:00:00,18230.0
-2013-08-07 20:00:00,17324.0
-2013-08-07 21:00:00,16211.0
-2013-08-07 22:00:00,15672.0
-2013-08-07 23:00:00,14792.0
-2013-08-08 00:00:00,13537.0
-2013-08-06 01:00:00,10596.0
-2013-08-06 02:00:00,10023.0
-2013-08-06 03:00:00,9589.0
-2013-08-06 04:00:00,9339.0
-2013-08-06 05:00:00,9237.0
-2013-08-06 06:00:00,9441.0
-2013-08-06 07:00:00,10043.0
-2013-08-06 08:00:00,10909.0
-2013-08-06 09:00:00,11722.0
-2013-08-06 10:00:00,12423.0
-2013-08-06 11:00:00,12964.0
-2013-08-06 12:00:00,13521.0
-2013-08-06 13:00:00,14022.0
-2013-08-06 14:00:00,14570.0
-2013-08-06 15:00:00,15170.0
-2013-08-06 16:00:00,15467.0
-2013-08-06 17:00:00,15863.0
-2013-08-06 18:00:00,16307.0
-2013-08-06 19:00:00,16188.0
-2013-08-06 20:00:00,15773.0
-2013-08-06 21:00:00,15492.0
-2013-08-06 22:00:00,15549.0
-2013-08-06 23:00:00,15059.0
-2013-08-07 00:00:00,13993.0
-2013-08-05 01:00:00,9880.0
-2013-08-05 02:00:00,9292.0
-2013-08-05 03:00:00,8953.0
-2013-08-05 04:00:00,8713.0
-2013-08-05 05:00:00,8606.0
-2013-08-05 06:00:00,8796.0
-2013-08-05 07:00:00,9379.0
-2013-08-05 08:00:00,10051.0
-2013-08-05 09:00:00,10968.0
-2013-08-05 10:00:00,11572.0
-2013-08-05 11:00:00,11953.0
-2013-08-05 12:00:00,12337.0
-2013-08-05 13:00:00,12608.0
-2013-08-05 14:00:00,12803.0
-2013-08-05 15:00:00,13053.0
-2013-08-05 16:00:00,13156.0
-2013-08-05 17:00:00,12959.0
-2013-08-05 18:00:00,12688.0
-2013-08-05 19:00:00,12469.0
-2013-08-05 20:00:00,12155.0
-2013-08-05 21:00:00,12122.0
-2013-08-05 22:00:00,12453.0
-2013-08-05 23:00:00,12173.0
-2013-08-06 00:00:00,11468.0
-2013-08-04 01:00:00,10248.0
-2013-08-04 02:00:00,9636.0
-2013-08-04 03:00:00,9098.0
-2013-08-04 04:00:00,8805.0
-2013-08-04 05:00:00,8489.0
-2013-08-04 06:00:00,8398.0
-2013-08-04 07:00:00,8298.0
-2013-08-04 08:00:00,8228.0
-2013-08-04 09:00:00,8661.0
-2013-08-04 10:00:00,9366.0
-2013-08-04 11:00:00,9978.0
-2013-08-04 12:00:00,10499.0
-2013-08-04 13:00:00,10894.0
-2013-08-04 14:00:00,11153.0
-2013-08-04 15:00:00,11385.0
-2013-08-04 16:00:00,11509.0
-2013-08-04 17:00:00,11700.0
-2013-08-04 18:00:00,11708.0
-2013-08-04 19:00:00,11483.0
-2013-08-04 20:00:00,11132.0
-2013-08-04 21:00:00,10989.0
-2013-08-04 22:00:00,11277.0
-2013-08-04 23:00:00,11144.0
-2013-08-05 00:00:00,10555.0
-2013-08-03 01:00:00,11838.0
-2013-08-03 02:00:00,10880.0
-2013-08-03 03:00:00,10275.0
-2013-08-03 04:00:00,9736.0
-2013-08-03 05:00:00,9464.0
-2013-08-03 06:00:00,9244.0
-2013-08-03 07:00:00,9273.0
-2013-08-03 08:00:00,9379.0
-2013-08-03 09:00:00,10130.0
-2013-08-03 10:00:00,11006.0
-2013-08-03 11:00:00,11846.0
-2013-08-03 12:00:00,12433.0
-2013-08-03 13:00:00,12795.0
-2013-08-03 14:00:00,12949.0
-2013-08-03 15:00:00,12991.0
-2013-08-03 16:00:00,13092.0
-2013-08-03 17:00:00,13160.0
-2013-08-03 18:00:00,13136.0
-2013-08-03 19:00:00,12919.0
-2013-08-03 20:00:00,12542.0
-2013-08-03 21:00:00,11997.0
-2013-08-03 22:00:00,12005.0
-2013-08-03 23:00:00,11723.0
-2013-08-04 00:00:00,11055.0
-2013-08-02 01:00:00,10840.0
-2013-08-02 02:00:00,10101.0
-2013-08-02 03:00:00,9632.0
-2013-08-02 04:00:00,9376.0
-2013-08-02 05:00:00,9193.0
-2013-08-02 06:00:00,9321.0
-2013-08-02 07:00:00,9862.0
-2013-08-02 08:00:00,10566.0
-2013-08-02 09:00:00,11318.0
-2013-08-02 10:00:00,11983.0
-2013-08-02 11:00:00,12620.0
-2013-08-02 12:00:00,13363.0
-2013-08-02 13:00:00,14111.0
-2013-08-02 14:00:00,14795.0
-2013-08-02 15:00:00,15456.0
-2013-08-02 16:00:00,15668.0
-2013-08-02 17:00:00,15734.0
-2013-08-02 18:00:00,15515.0
-2013-08-02 19:00:00,15092.0
-2013-08-02 20:00:00,14576.0
-2013-08-02 21:00:00,14225.0
-2013-08-02 22:00:00,14246.0
-2013-08-02 23:00:00,13796.0
-2013-08-03 00:00:00,12826.0
-2013-08-01 01:00:00,10640.0
-2013-08-01 02:00:00,9914.0
-2013-08-01 03:00:00,9405.0
-2013-08-01 04:00:00,9077.0
-2013-08-01 05:00:00,8934.0
-2013-08-01 06:00:00,9055.0
-2013-08-01 07:00:00,9499.0
-2013-08-01 08:00:00,10217.0
-2013-08-01 09:00:00,11221.0
-2013-08-01 10:00:00,12023.0
-2013-08-01 11:00:00,12667.0
-2013-08-01 12:00:00,13264.0
-2013-08-01 13:00:00,13558.0
-2013-08-01 14:00:00,13671.0
-2013-08-01 15:00:00,14041.0
-2013-08-01 16:00:00,14232.0
-2013-08-01 17:00:00,14322.0
-2013-08-01 18:00:00,14320.0
-2013-08-01 19:00:00,14176.0
-2013-08-01 20:00:00,13718.0
-2013-08-01 21:00:00,13219.0
-2013-08-01 22:00:00,13149.0
-2013-08-01 23:00:00,12821.0
-2013-08-02 00:00:00,11841.0
-2013-07-31 01:00:00,10361.0
-2013-07-31 02:00:00,9721.0
-2013-07-31 03:00:00,9348.0
-2013-07-31 04:00:00,9108.0
-2013-07-31 05:00:00,9045.0
-2013-07-31 06:00:00,9208.0
-2013-07-31 07:00:00,9800.0
-2013-07-31 08:00:00,10713.0
-2013-07-31 09:00:00,11432.0
-2013-07-31 10:00:00,12020.0
-2013-07-31 11:00:00,12360.0
-2013-07-31 12:00:00,12705.0
-2013-07-31 13:00:00,12870.0
-2013-07-31 14:00:00,12976.0
-2013-07-31 15:00:00,13085.0
-2013-07-31 16:00:00,13067.0
-2013-07-31 17:00:00,13022.0
-2013-07-31 18:00:00,12984.0
-2013-07-31 19:00:00,12961.0
-2013-07-31 20:00:00,12808.0
-2013-07-31 21:00:00,12620.0
-2013-07-31 22:00:00,12847.0
-2013-07-31 23:00:00,12537.0
-2013-08-01 00:00:00,11619.0
-2013-07-30 01:00:00,10221.0
-2013-07-30 02:00:00,9534.0
-2013-07-30 03:00:00,9126.0
-2013-07-30 04:00:00,8833.0
-2013-07-30 05:00:00,8710.0
-2013-07-30 06:00:00,8832.0
-2013-07-30 07:00:00,9291.0
-2013-07-30 08:00:00,9964.0
-2013-07-30 09:00:00,10909.0
-2013-07-30 10:00:00,11584.0
-2013-07-30 11:00:00,12045.0
-2013-07-30 12:00:00,12465.0
-2013-07-30 13:00:00,12666.0
-2013-07-30 14:00:00,12674.0
-2013-07-30 15:00:00,12716.0
-2013-07-30 16:00:00,12641.0
-2013-07-30 17:00:00,12507.0
-2013-07-30 18:00:00,12396.0
-2013-07-30 19:00:00,12239.0
-2013-07-30 20:00:00,11983.0
-2013-07-30 21:00:00,11947.0
-2013-07-30 22:00:00,12238.0
-2013-07-30 23:00:00,11951.0
-2013-07-31 00:00:00,11160.0
-2013-07-29 01:00:00,8981.0
-2013-07-29 02:00:00,8474.0
-2013-07-29 03:00:00,8218.0
-2013-07-29 04:00:00,8023.0
-2013-07-29 05:00:00,8027.0
-2013-07-29 06:00:00,8222.0
-2013-07-29 07:00:00,8738.0
-2013-07-29 08:00:00,9450.0
-2013-07-29 09:00:00,10454.0
-2013-07-29 10:00:00,11099.0
-2013-07-29 11:00:00,11622.0
-2013-07-29 12:00:00,12032.0
-2013-07-29 13:00:00,12284.0
-2013-07-29 14:00:00,12472.0
-2013-07-29 15:00:00,12754.0
-2013-07-29 16:00:00,12883.0
-2013-07-29 17:00:00,12962.0
-2013-07-29 18:00:00,12958.0
-2013-07-29 19:00:00,12853.0
-2013-07-29 20:00:00,12488.0
-2013-07-29 21:00:00,12133.0
-2013-07-29 22:00:00,12229.0
-2013-07-29 23:00:00,11970.0
-2013-07-30 00:00:00,11148.0
-2013-07-28 01:00:00,8870.0
-2013-07-28 02:00:00,8371.0
-2013-07-28 03:00:00,8043.0
-2013-07-28 04:00:00,7814.0
-2013-07-28 05:00:00,7643.0
-2013-07-28 06:00:00,7664.0
-2013-07-28 07:00:00,7652.0
-2013-07-28 08:00:00,7607.0
-2013-07-28 09:00:00,7779.0
-2013-07-28 10:00:00,8219.0
-2013-07-28 11:00:00,8637.0
-2013-07-28 12:00:00,8930.0
-2013-07-28 13:00:00,9109.0
-2013-07-28 14:00:00,9229.0
-2013-07-28 15:00:00,9269.0
-2013-07-28 16:00:00,9387.0
-2013-07-28 17:00:00,9395.0
-2013-07-28 18:00:00,9500.0
-2013-07-28 19:00:00,9558.0
-2013-07-28 20:00:00,9576.0
-2013-07-28 21:00:00,9575.0
-2013-07-28 22:00:00,9900.0
-2013-07-28 23:00:00,9976.0
-2013-07-29 00:00:00,9489.0
-2013-07-27 01:00:00,10449.0
-2013-07-27 02:00:00,9696.0
-2013-07-27 03:00:00,9218.0
-2013-07-27 04:00:00,8841.0
-2013-07-27 05:00:00,8677.0
-2013-07-27 06:00:00,8601.0
-2013-07-27 07:00:00,8751.0
-2013-07-27 08:00:00,8807.0
-2013-07-27 09:00:00,9243.0
-2013-07-27 10:00:00,9667.0
-2013-07-27 11:00:00,10039.0
-2013-07-27 12:00:00,10280.0
-2013-07-27 13:00:00,10418.0
-2013-07-27 14:00:00,10428.0
-2013-07-27 15:00:00,10218.0
-2013-07-27 16:00:00,10000.0
-2013-07-27 17:00:00,9873.0
-2013-07-27 18:00:00,9787.0
-2013-07-27 19:00:00,9669.0
-2013-07-27 20:00:00,9533.0
-2013-07-27 21:00:00,9518.0
-2013-07-27 22:00:00,9840.0
-2013-07-27 23:00:00,9851.0
-2013-07-28 00:00:00,9393.0
-2013-07-26 01:00:00,11399.0
-2013-07-26 02:00:00,10588.0
-2013-07-26 03:00:00,10024.0
-2013-07-26 04:00:00,9676.0
-2013-07-26 05:00:00,9491.0
-2013-07-26 06:00:00,9581.0
-2013-07-26 07:00:00,10128.0
-2013-07-26 08:00:00,10877.0
-2013-07-26 09:00:00,11556.0
-2013-07-26 10:00:00,12145.0
-2013-07-26 11:00:00,12431.0
-2013-07-26 12:00:00,12687.0
-2013-07-26 13:00:00,12821.0
-2013-07-26 14:00:00,12801.0
-2013-07-26 15:00:00,12837.0
-2013-07-26 16:00:00,12764.0
-2013-07-26 17:00:00,12639.0
-2013-07-26 18:00:00,12522.0
-2013-07-26 19:00:00,12339.0
-2013-07-26 20:00:00,12104.0
-2013-07-26 21:00:00,11927.0
-2013-07-26 22:00:00,12025.0
-2013-07-26 23:00:00,11970.0
-2013-07-27 00:00:00,11285.0
-2013-07-25 01:00:00,10329.0
-2013-07-25 02:00:00,9625.0
-2013-07-25 03:00:00,9170.0
-2013-07-25 04:00:00,8879.0
-2013-07-25 05:00:00,8742.0
-2013-07-25 06:00:00,8913.0
-2013-07-25 07:00:00,9347.0
-2013-07-25 08:00:00,10015.0
-2013-07-25 09:00:00,11030.0
-2013-07-25 10:00:00,11751.0
-2013-07-25 11:00:00,12296.0
-2013-07-25 12:00:00,12819.0
-2013-07-25 13:00:00,13227.0
-2013-07-25 14:00:00,13615.0
-2013-07-25 15:00:00,13997.0
-2013-07-25 16:00:00,14264.0
-2013-07-25 17:00:00,14485.0
-2013-07-25 18:00:00,14549.0
-2013-07-25 19:00:00,14324.0
-2013-07-25 20:00:00,13791.0
-2013-07-25 21:00:00,13410.0
-2013-07-25 22:00:00,13524.0
-2013-07-25 23:00:00,13273.0
-2013-07-26 00:00:00,12403.0
-2013-07-24 01:00:00,10753.0
-2013-07-24 02:00:00,10038.0
-2013-07-24 03:00:00,9525.0
-2013-07-24 04:00:00,9196.0
-2013-07-24 05:00:00,9025.0
-2013-07-24 06:00:00,9140.0
-2013-07-24 07:00:00,9514.0
-2013-07-24 08:00:00,10188.0
-2013-07-24 09:00:00,11190.0
-2013-07-24 10:00:00,11855.0
-2013-07-24 11:00:00,12265.0
-2013-07-24 12:00:00,12644.0
-2013-07-24 13:00:00,12903.0
-2013-07-24 14:00:00,13104.0
-2013-07-24 15:00:00,13331.0
-2013-07-24 16:00:00,13428.0
-2013-07-24 17:00:00,13489.0
-2013-07-24 18:00:00,13458.0
-2013-07-24 19:00:00,13253.0
-2013-07-24 20:00:00,12807.0
-2013-07-24 21:00:00,12355.0
-2013-07-24 22:00:00,12264.0
-2013-07-24 23:00:00,12134.0
-2013-07-25 00:00:00,11259.0
-2013-07-23 01:00:00,14400.0
-2013-07-23 02:00:00,12938.0
-2013-07-23 03:00:00,11878.0
-2013-07-23 04:00:00,11366.0
-2013-07-23 05:00:00,11081.0
-2013-07-23 06:00:00,11036.0
-2013-07-23 07:00:00,11389.0
-2013-07-23 08:00:00,12103.0
-2013-07-23 09:00:00,13212.0
-2013-07-23 10:00:00,14067.0
-2013-07-23 11:00:00,14696.0
-2013-07-23 12:00:00,15133.0
-2013-07-23 13:00:00,15453.0
-2013-07-23 14:00:00,15711.0
-2013-07-23 15:00:00,16017.0
-2013-07-23 16:00:00,16107.0
-2013-07-23 17:00:00,16067.0
-2013-07-23 18:00:00,15818.0
-2013-07-23 19:00:00,15240.0
-2013-07-23 20:00:00,14336.0
-2013-07-23 21:00:00,13410.0
-2013-07-23 22:00:00,13052.0
-2013-07-23 23:00:00,12686.0
-2013-07-24 00:00:00,11778.0
-2013-07-22 01:00:00,12281.0
-2013-07-22 02:00:00,11530.0
-2013-07-22 03:00:00,11058.0
-2013-07-22 04:00:00,10738.0
-2013-07-22 05:00:00,10613.0
-2013-07-22 06:00:00,10804.0
-2013-07-22 07:00:00,11354.0
-2013-07-22 08:00:00,12169.0
-2013-07-22 09:00:00,13309.0
-2013-07-22 10:00:00,14422.0
-2013-07-22 11:00:00,15348.0
-2013-07-22 12:00:00,16404.0
-2013-07-22 13:00:00,17253.0
-2013-07-22 14:00:00,17927.0
-2013-07-22 15:00:00,18568.0
-2013-07-22 16:00:00,19018.0
-2013-07-22 17:00:00,19227.0
-2013-07-22 18:00:00,19427.0
-2013-07-22 19:00:00,19362.0
-2013-07-22 20:00:00,18901.0
-2013-07-22 21:00:00,18163.0
-2013-07-22 22:00:00,17696.0
-2013-07-22 23:00:00,17084.0
-2013-07-23 00:00:00,15773.0
-2013-07-21 01:00:00,12795.0
-2013-07-21 02:00:00,11936.0
-2013-07-21 03:00:00,11221.0
-2013-07-21 04:00:00,10655.0
-2013-07-21 05:00:00,10323.0
-2013-07-21 06:00:00,10097.0
-2013-07-21 07:00:00,9897.0
-2013-07-21 08:00:00,9892.0
-2013-07-21 09:00:00,10620.0
-2013-07-21 10:00:00,11541.0
-2013-07-21 11:00:00,12511.0
-2013-07-21 12:00:00,13470.0
-2013-07-21 13:00:00,14456.0
-2013-07-21 14:00:00,15280.0
-2013-07-21 15:00:00,15865.0
-2013-07-21 16:00:00,16269.0
-2013-07-21 17:00:00,16433.0
-2013-07-21 18:00:00,16311.0
-2013-07-21 19:00:00,16037.0
-2013-07-21 20:00:00,15509.0
-2013-07-21 21:00:00,14914.0
-2013-07-21 22:00:00,14687.0
-2013-07-21 23:00:00,14084.0
-2013-07-22 00:00:00,13190.0
-2013-07-20 01:00:00,15356.0
-2013-07-20 02:00:00,14217.0
-2013-07-20 03:00:00,13335.0
-2013-07-20 04:00:00,12631.0
-2013-07-20 05:00:00,12166.0
-2013-07-20 06:00:00,11758.0
-2013-07-20 07:00:00,11606.0
-2013-07-20 08:00:00,11732.0
-2013-07-20 09:00:00,12680.0
-2013-07-20 10:00:00,13771.0
-2013-07-20 11:00:00,14884.0
-2013-07-20 12:00:00,15833.0
-2013-07-20 13:00:00,16443.0
-2013-07-20 14:00:00,16874.0
-2013-07-20 15:00:00,17116.0
-2013-07-20 16:00:00,17381.0
-2013-07-20 17:00:00,17610.0
-2013-07-20 18:00:00,17702.0
-2013-07-20 19:00:00,17459.0
-2013-07-20 20:00:00,16856.0
-2013-07-20 21:00:00,15966.0
-2013-07-20 22:00:00,15600.0
-2013-07-20 23:00:00,14941.0
-2013-07-21 00:00:00,13944.0
-2013-07-19 01:00:00,17044.0
-2013-07-19 02:00:00,15856.0
-2013-07-19 03:00:00,14971.0
-2013-07-19 04:00:00,14315.0
-2013-07-19 05:00:00,13917.0
-2013-07-19 06:00:00,13858.0
-2013-07-19 07:00:00,14174.0
-2013-07-19 08:00:00,15013.0
-2013-07-19 09:00:00,16496.0
-2013-07-19 10:00:00,17839.0
-2013-07-19 11:00:00,19035.0
-2013-07-19 12:00:00,20165.0
-2013-07-19 13:00:00,20951.0
-2013-07-19 14:00:00,21469.0
-2013-07-19 15:00:00,21875.0
-2013-07-19 16:00:00,22032.0
-2013-07-19 17:00:00,22038.0
-2013-07-19 18:00:00,21955.0
-2013-07-19 19:00:00,21675.0
-2013-07-19 20:00:00,21177.0
-2013-07-19 21:00:00,20387.0
-2013-07-19 22:00:00,19788.0
-2013-07-19 23:00:00,18814.0
-2013-07-20 00:00:00,16805.0
-2013-07-18 01:00:00,16696.0
-2013-07-18 02:00:00,15428.0
-2013-07-18 03:00:00,14533.0
-2013-07-18 04:00:00,13888.0
-2013-07-18 05:00:00,13503.0
-2013-07-18 06:00:00,13438.0
-2013-07-18 07:00:00,13777.0
-2013-07-18 08:00:00,14740.0
-2013-07-18 09:00:00,16283.0
-2013-07-18 10:00:00,17764.0
-2013-07-18 11:00:00,19076.0
-2013-07-18 12:00:00,20267.0
-2013-07-18 13:00:00,20978.0
-2013-07-18 14:00:00,21501.0
-2013-07-18 15:00:00,21949.0
-2013-07-18 16:00:00,22208.0
-2013-07-18 17:00:00,22269.0
-2013-07-18 18:00:00,21989.0
-2013-07-18 19:00:00,21464.0
-2013-07-18 20:00:00,20961.0
-2013-07-18 21:00:00,20458.0
-2013-07-18 22:00:00,20082.0
-2013-07-18 23:00:00,19710.0
-2013-07-19 00:00:00,18424.0
-2013-07-17 01:00:00,16249.0
-2013-07-17 02:00:00,14982.0
-2013-07-17 03:00:00,14054.0
-2013-07-17 04:00:00,13381.0
-2013-07-17 05:00:00,12971.0
-2013-07-17 06:00:00,12919.0
-2013-07-17 07:00:00,13260.0
-2013-07-17 08:00:00,14244.0
-2013-07-17 09:00:00,15780.0
-2013-07-17 10:00:00,17126.0
-2013-07-17 11:00:00,18425.0
-2013-07-17 12:00:00,19601.0
-2013-07-17 13:00:00,20293.0
-2013-07-17 14:00:00,20883.0
-2013-07-17 15:00:00,21383.0
-2013-07-17 16:00:00,21616.0
-2013-07-17 17:00:00,21778.0
-2013-07-17 18:00:00,21801.0
-2013-07-17 19:00:00,21664.0
-2013-07-17 20:00:00,21262.0
-2013-07-17 21:00:00,20720.0
-2013-07-17 22:00:00,20250.0
-2013-07-17 23:00:00,19695.0
-2013-07-18 00:00:00,18244.0
-2013-07-16 01:00:00,14922.0
-2013-07-16 02:00:00,13818.0
-2013-07-16 03:00:00,13068.0
-2013-07-16 04:00:00,12490.0
-2013-07-16 05:00:00,12169.0
-2013-07-16 06:00:00,12219.0
-2013-07-16 07:00:00,12643.0
-2013-07-16 08:00:00,13665.0
-2013-07-16 09:00:00,15173.0
-2013-07-16 10:00:00,16577.0
-2013-07-16 11:00:00,17747.0
-2013-07-16 12:00:00,18778.0
-2013-07-16 13:00:00,19540.0
-2013-07-16 14:00:00,20146.0
-2013-07-16 15:00:00,20733.0
-2013-07-16 16:00:00,21088.0
-2013-07-16 17:00:00,21287.0
-2013-07-16 18:00:00,21381.0
-2013-07-16 19:00:00,21210.0
-2013-07-16 20:00:00,20802.0
-2013-07-16 21:00:00,20188.0
-2013-07-16 22:00:00,19727.0
-2013-07-16 23:00:00,19216.0
-2013-07-17 00:00:00,17810.0
-2013-07-15 01:00:00,13349.0
-2013-07-15 02:00:00,12419.0
-2013-07-15 03:00:00,11737.0
-2013-07-15 04:00:00,11291.0
-2013-07-15 05:00:00,11094.0
-2013-07-15 06:00:00,11209.0
-2013-07-15 07:00:00,11685.0
-2013-07-15 08:00:00,12841.0
-2013-07-15 09:00:00,14478.0
-2013-07-15 10:00:00,15936.0
-2013-07-15 11:00:00,17309.0
-2013-07-15 12:00:00,18522.0
-2013-07-15 13:00:00,19221.0
-2013-07-15 14:00:00,19550.0
-2013-07-15 15:00:00,19759.0
-2013-07-15 16:00:00,19781.0
-2013-07-15 17:00:00,19751.0
-2013-07-15 18:00:00,19536.0
-2013-07-15 19:00:00,19153.0
-2013-07-15 20:00:00,18745.0
-2013-07-15 21:00:00,18261.0
-2013-07-15 22:00:00,17989.0
-2013-07-15 23:00:00,17573.0
-2013-07-16 00:00:00,16347.0
-2013-07-14 01:00:00,11922.0
-2013-07-14 02:00:00,11095.0
-2013-07-14 03:00:00,10489.0
-2013-07-14 04:00:00,10113.0
-2013-07-14 05:00:00,9835.0
-2013-07-14 06:00:00,9674.0
-2013-07-14 07:00:00,9481.0
-2013-07-14 08:00:00,9664.0
-2013-07-14 09:00:00,10443.0
-2013-07-14 10:00:00,11526.0
-2013-07-14 11:00:00,12723.0
-2013-07-14 12:00:00,13924.0
-2013-07-14 13:00:00,14842.0
-2013-07-14 14:00:00,15528.0
-2013-07-14 15:00:00,16047.0
-2013-07-14 16:00:00,16399.0
-2013-07-14 17:00:00,16703.0
-2013-07-14 18:00:00,16933.0
-2013-07-14 19:00:00,16998.0
-2013-07-14 20:00:00,16774.0
-2013-07-14 21:00:00,16242.0
-2013-07-14 22:00:00,15862.0
-2013-07-14 23:00:00,15575.0
-2013-07-15 00:00:00,14535.0
-2013-07-13 01:00:00,11765.0
-2013-07-13 02:00:00,10844.0
-2013-07-13 03:00:00,10181.0
-2013-07-13 04:00:00,9735.0
-2013-07-13 05:00:00,9422.0
-2013-07-13 06:00:00,9301.0
-2013-07-13 07:00:00,9214.0
-2013-07-13 08:00:00,9570.0
-2013-07-13 09:00:00,10384.0
-2013-07-13 10:00:00,11388.0
-2013-07-13 11:00:00,12271.0
-2013-07-13 12:00:00,13084.0
-2013-07-13 13:00:00,13686.0
-2013-07-13 14:00:00,14110.0
-2013-07-13 15:00:00,14442.0
-2013-07-13 16:00:00,14781.0
-2013-07-13 17:00:00,15105.0
-2013-07-13 18:00:00,15321.0
-2013-07-13 19:00:00,15292.0
-2013-07-13 20:00:00,14918.0
-2013-07-13 21:00:00,14347.0
-2013-07-13 22:00:00,13887.0
-2013-07-13 23:00:00,13637.0
-2013-07-14 00:00:00,12815.0
-2013-07-12 01:00:00,11374.0
-2013-07-12 02:00:00,10470.0
-2013-07-12 03:00:00,9802.0
-2013-07-12 04:00:00,9360.0
-2013-07-12 05:00:00,9235.0
-2013-07-12 06:00:00,9245.0
-2013-07-12 07:00:00,9550.0
-2013-07-12 08:00:00,10351.0
-2013-07-12 09:00:00,11521.0
-2013-07-12 10:00:00,12453.0
-2013-07-12 11:00:00,13150.0
-2013-07-12 12:00:00,13806.0
-2013-07-12 13:00:00,14322.0
-2013-07-12 14:00:00,14733.0
-2013-07-12 15:00:00,15254.0
-2013-07-12 16:00:00,15687.0
-2013-07-12 17:00:00,15985.0
-2013-07-12 18:00:00,16185.0
-2013-07-12 19:00:00,16045.0
-2013-07-12 20:00:00,15559.0
-2013-07-12 21:00:00,14784.0
-2013-07-12 22:00:00,14165.0
-2013-07-12 23:00:00,13808.0
-2013-07-13 00:00:00,12806.0
-2013-07-11 01:00:00,11984.0
-2013-07-11 02:00:00,11016.0
-2013-07-11 03:00:00,10383.0
-2013-07-11 04:00:00,9991.0
-2013-07-11 05:00:00,9778.0
-2013-07-11 06:00:00,9840.0
-2013-07-11 07:00:00,10160.0
-2013-07-11 08:00:00,10994.0
-2013-07-11 09:00:00,12128.0
-2013-07-11 10:00:00,13069.0
-2013-07-11 11:00:00,13766.0
-2013-07-11 12:00:00,14375.0
-2013-07-11 13:00:00,14790.0
-2013-07-11 14:00:00,15104.0
-2013-07-11 15:00:00,15468.0
-2013-07-11 16:00:00,15724.0
-2013-07-11 17:00:00,15950.0
-2013-07-11 18:00:00,16049.0
-2013-07-11 19:00:00,15866.0
-2013-07-11 20:00:00,15275.0
-2013-07-11 21:00:00,14555.0
-2013-07-11 22:00:00,13956.0
-2013-07-11 23:00:00,13620.0
-2013-07-12 00:00:00,12555.0
-2013-07-10 01:00:00,14662.0
-2013-07-10 02:00:00,13599.0
-2013-07-10 03:00:00,12915.0
-2013-07-10 04:00:00,12366.0
-2013-07-10 05:00:00,12070.0
-2013-07-10 06:00:00,12142.0
-2013-07-10 07:00:00,12545.0
-2013-07-10 08:00:00,13616.0
-2013-07-10 09:00:00,14929.0
-2013-07-10 10:00:00,16060.0
-2013-07-10 11:00:00,16920.0
-2013-07-10 12:00:00,17676.0
-2013-07-10 13:00:00,18130.0
-2013-07-10 14:00:00,18381.0
-2013-07-10 15:00:00,18538.0
-2013-07-10 16:00:00,18477.0
-2013-07-10 17:00:00,18339.0
-2013-07-10 18:00:00,18109.0
-2013-07-10 19:00:00,17613.0
-2013-07-10 20:00:00,16797.0
-2013-07-10 21:00:00,15751.0
-2013-07-10 22:00:00,15059.0
-2013-07-10 23:00:00,14531.0
-2013-07-11 00:00:00,13326.0
-2013-07-09 01:00:00,14054.0
-2013-07-09 02:00:00,12955.0
-2013-07-09 03:00:00,12177.0
-2013-07-09 04:00:00,11638.0
-2013-07-09 05:00:00,11315.0
-2013-07-09 06:00:00,11353.0
-2013-07-09 07:00:00,11765.0
-2013-07-09 08:00:00,12824.0
-2013-07-09 09:00:00,14203.0
-2013-07-09 10:00:00,15322.0
-2013-07-09 11:00:00,16274.0
-2013-07-09 12:00:00,17352.0
-2013-07-09 13:00:00,17787.0
-2013-07-09 14:00:00,17623.0
-2013-07-09 15:00:00,17470.0
-2013-07-09 16:00:00,17415.0
-2013-07-09 17:00:00,17199.0
-2013-07-09 18:00:00,17536.0
-2013-07-09 19:00:00,17992.0
-2013-07-09 20:00:00,17861.0
-2013-07-09 21:00:00,17533.0
-2013-07-09 22:00:00,17342.0
-2013-07-09 23:00:00,17128.0
-2013-07-10 00:00:00,15957.0
-2013-07-08 01:00:00,13514.0
-2013-07-08 02:00:00,12587.0
-2013-07-08 03:00:00,11939.0
-2013-07-08 04:00:00,11582.0
-2013-07-08 05:00:00,11366.0
-2013-07-08 06:00:00,11485.0
-2013-07-08 07:00:00,12025.0
-2013-07-08 08:00:00,13047.0
-2013-07-08 09:00:00,13964.0
-2013-07-08 10:00:00,14382.0
-2013-07-08 11:00:00,14694.0
-2013-07-08 12:00:00,14899.0
-2013-07-08 13:00:00,15038.0
-2013-07-08 14:00:00,15305.0
-2013-07-08 15:00:00,16172.0
-2013-07-08 16:00:00,17111.0
-2013-07-08 17:00:00,17786.0
-2013-07-08 18:00:00,18074.0
-2013-07-08 19:00:00,18244.0
-2013-07-08 20:00:00,18029.0
-2013-07-08 21:00:00,17569.0
-2013-07-08 22:00:00,17171.0
-2013-07-08 23:00:00,16709.0
-2013-07-09 00:00:00,15462.0
-2013-07-07 01:00:00,11669.0
-2013-07-07 02:00:00,10920.0
-2013-07-07 03:00:00,10309.0
-2013-07-07 04:00:00,9906.0
-2013-07-07 05:00:00,9611.0
-2013-07-07 06:00:00,9486.0
-2013-07-07 07:00:00,9283.0
-2013-07-07 08:00:00,9197.0
-2013-07-07 09:00:00,9761.0
-2013-07-07 10:00:00,10709.0
-2013-07-07 11:00:00,11771.0
-2013-07-07 12:00:00,12745.0
-2013-07-07 13:00:00,13640.0
-2013-07-07 14:00:00,14522.0
-2013-07-07 15:00:00,15234.0
-2013-07-07 16:00:00,15805.0
-2013-07-07 17:00:00,16179.0
-2013-07-07 18:00:00,16194.0
-2013-07-07 19:00:00,16258.0
-2013-07-07 20:00:00,16051.0
-2013-07-07 21:00:00,15753.0
-2013-07-07 22:00:00,15674.0
-2013-07-07 23:00:00,15483.0
-2013-07-08 00:00:00,14605.0
-2013-07-06 01:00:00,11780.0
-2013-07-06 02:00:00,10849.0
-2013-07-06 03:00:00,10232.0
-2013-07-06 04:00:00,9730.0
-2013-07-06 05:00:00,9431.0
-2013-07-06 06:00:00,9273.0
-2013-07-06 07:00:00,9177.0
-2013-07-06 08:00:00,9397.0
-2013-07-06 09:00:00,10264.0
-2013-07-06 10:00:00,11325.0
-2013-07-06 11:00:00,12426.0
-2013-07-06 12:00:00,13324.0
-2013-07-06 13:00:00,13995.0
-2013-07-06 14:00:00,14361.0
-2013-07-06 15:00:00,14437.0
-2013-07-06 16:00:00,14415.0
-2013-07-06 17:00:00,14296.0
-2013-07-06 18:00:00,14174.0
-2013-07-06 19:00:00,13948.0
-2013-07-06 20:00:00,13613.0
-2013-07-06 21:00:00,13224.0
-2013-07-06 22:00:00,13205.0
-2013-07-06 23:00:00,13075.0
-2013-07-07 00:00:00,12449.0
-2013-07-05 01:00:00,10426.0
-2013-07-05 02:00:00,9718.0
-2013-07-05 03:00:00,9157.0
-2013-07-05 04:00:00,8741.0
-2013-07-05 05:00:00,8509.0
-2013-07-05 06:00:00,8538.0
-2013-07-05 07:00:00,8716.0
-2013-07-05 08:00:00,9309.0
-2013-07-05 09:00:00,10277.0
-2013-07-05 10:00:00,11327.0
-2013-07-05 11:00:00,12371.0
-2013-07-05 12:00:00,13285.0
-2013-07-05 13:00:00,14017.0
-2013-07-05 14:00:00,14535.0
-2013-07-05 15:00:00,14946.0
-2013-07-05 16:00:00,15228.0
-2013-07-05 17:00:00,15475.0
-2013-07-05 18:00:00,15638.0
-2013-07-05 19:00:00,15498.0
-2013-07-05 20:00:00,14992.0
-2013-07-05 21:00:00,14362.0
-2013-07-05 22:00:00,13971.0
-2013-07-05 23:00:00,13774.0
-2013-07-06 00:00:00,12795.0
-2013-07-04 01:00:00,9828.0
-2013-07-04 02:00:00,9197.0
-2013-07-04 03:00:00,8751.0
-2013-07-04 04:00:00,8399.0
-2013-07-04 05:00:00,8197.0
-2013-07-04 06:00:00,8139.0
-2013-07-04 07:00:00,7991.0
-2013-07-04 08:00:00,8005.0
-2013-07-04 09:00:00,8357.0
-2013-07-04 10:00:00,8921.0
-2013-07-04 11:00:00,9605.0
-2013-07-04 12:00:00,10273.0
-2013-07-04 13:00:00,10861.0
-2013-07-04 14:00:00,11348.0
-2013-07-04 15:00:00,11729.0
-2013-07-04 16:00:00,11982.0
-2013-07-04 17:00:00,12136.0
-2013-07-04 18:00:00,12282.0
-2013-07-04 19:00:00,12276.0
-2013-07-04 20:00:00,12017.0
-2013-07-04 21:00:00,11574.0
-2013-07-04 22:00:00,11405.0
-2013-07-04 23:00:00,11303.0
-2013-07-05 00:00:00,10952.0
-2013-07-03 01:00:00,9654.0
-2013-07-03 02:00:00,9066.0
-2013-07-03 03:00:00,8695.0
-2013-07-03 04:00:00,8454.0
-2013-07-03 05:00:00,8389.0
-2013-07-03 06:00:00,8522.0
-2013-07-03 07:00:00,9004.0
-2013-07-03 08:00:00,9805.0
-2013-07-03 09:00:00,10605.0
-2013-07-03 10:00:00,11157.0
-2013-07-03 11:00:00,11538.0
-2013-07-03 12:00:00,11845.0
-2013-07-03 13:00:00,11967.0
-2013-07-03 14:00:00,12023.0
-2013-07-03 15:00:00,12170.0
-2013-07-03 16:00:00,12184.0
-2013-07-03 17:00:00,12096.0
-2013-07-03 18:00:00,11941.0
-2013-07-03 19:00:00,11800.0
-2013-07-03 20:00:00,11458.0
-2013-07-03 21:00:00,11225.0
-2013-07-03 22:00:00,11284.0
-2013-07-03 23:00:00,11270.0
-2013-07-04 00:00:00,10596.0
-2013-07-02 01:00:00,10081.0
-2013-07-02 02:00:00,9380.0
-2013-07-02 03:00:00,8934.0
-2013-07-02 04:00:00,8637.0
-2013-07-02 05:00:00,8504.0
-2013-07-02 06:00:00,8637.0
-2013-07-02 07:00:00,9019.0
-2013-07-02 08:00:00,9735.0
-2013-07-02 09:00:00,10573.0
-2013-07-02 10:00:00,11148.0
-2013-07-02 11:00:00,11557.0
-2013-07-02 12:00:00,11850.0
-2013-07-02 13:00:00,11930.0
-2013-07-02 14:00:00,12030.0
-2013-07-02 15:00:00,12192.0
-2013-07-02 16:00:00,12154.0
-2013-07-02 17:00:00,12012.0
-2013-07-02 18:00:00,11793.0
-2013-07-02 19:00:00,11580.0
-2013-07-02 20:00:00,11224.0
-2013-07-02 21:00:00,11050.0
-2013-07-02 22:00:00,11237.0
-2013-07-02 23:00:00,11195.0
-2013-07-03 00:00:00,10445.0
-2013-07-01 01:00:00,9372.0
-2013-07-01 02:00:00,8872.0
-2013-07-01 03:00:00,8576.0
-2013-07-01 04:00:00,8392.0
-2013-07-01 05:00:00,8339.0
-2013-07-01 06:00:00,8515.0
-2013-07-01 07:00:00,8923.0
-2013-07-01 08:00:00,9744.0
-2013-07-01 09:00:00,10765.0
-2013-07-01 10:00:00,11473.0
-2013-07-01 11:00:00,11995.0
-2013-07-01 12:00:00,12430.0
-2013-07-01 13:00:00,12651.0
-2013-07-01 14:00:00,12845.0
-2013-07-01 15:00:00,13037.0
-2013-07-01 16:00:00,13115.0
-2013-07-01 17:00:00,13140.0
-2013-07-01 18:00:00,13050.0
-2013-07-01 19:00:00,12836.0
-2013-07-01 20:00:00,12410.0
-2013-07-01 21:00:00,11971.0
-2013-07-01 22:00:00,11861.0
-2013-07-01 23:00:00,11833.0
-2013-07-02 00:00:00,10997.0
-2013-06-30 01:00:00,9582.0
-2013-06-30 02:00:00,9065.0
-2013-06-30 03:00:00,8641.0
-2013-06-30 04:00:00,8464.0
-2013-06-30 05:00:00,8266.0
-2013-06-30 06:00:00,8215.0
-2013-06-30 07:00:00,8093.0
-2013-06-30 08:00:00,8067.0
-2013-06-30 09:00:00,8447.0
-2013-06-30 10:00:00,9020.0
-2013-06-30 11:00:00,9634.0
-2013-06-30 12:00:00,10174.0
-2013-06-30 13:00:00,10600.0
-2013-06-30 14:00:00,10929.0
-2013-06-30 15:00:00,11139.0
-2013-06-30 16:00:00,11341.0
-2013-06-30 17:00:00,11427.0
-2013-06-30 18:00:00,11457.0
-2013-06-30 19:00:00,11371.0
-2013-06-30 20:00:00,11030.0
-2013-06-30 21:00:00,10613.0
-2013-06-30 22:00:00,10600.0
-2013-06-30 23:00:00,10668.0
-2013-07-01 00:00:00,10116.0
-2013-06-29 01:00:00,11434.0
-2013-06-29 02:00:00,10570.0
-2013-06-29 03:00:00,9979.0
-2013-06-29 04:00:00,9519.0
-2013-06-29 05:00:00,9280.0
-2013-06-29 06:00:00,9173.0
-2013-06-29 07:00:00,9261.0
-2013-06-29 08:00:00,9425.0
-2013-06-29 09:00:00,9928.0
-2013-06-29 10:00:00,10466.0
-2013-06-29 11:00:00,10921.0
-2013-06-29 12:00:00,11187.0
-2013-06-29 13:00:00,11321.0
-2013-06-29 14:00:00,11284.0
-2013-06-29 15:00:00,11166.0
-2013-06-29 16:00:00,11121.0
-2013-06-29 17:00:00,11118.0
-2013-06-29 18:00:00,11126.0
-2013-06-29 19:00:00,11074.0
-2013-06-29 20:00:00,10769.0
-2013-06-29 21:00:00,10544.0
-2013-06-29 22:00:00,10650.0
-2013-06-29 23:00:00,10704.0
-2013-06-30 00:00:00,10228.0
-2013-06-28 01:00:00,13005.0
-2013-06-28 02:00:00,11860.0
-2013-06-28 03:00:00,11075.0
-2013-06-28 04:00:00,10529.0
-2013-06-28 05:00:00,10253.0
-2013-06-28 06:00:00,10220.0
-2013-06-28 07:00:00,10501.0
-2013-06-28 08:00:00,11497.0
-2013-06-28 09:00:00,12682.0
-2013-06-28 10:00:00,13653.0
-2013-06-28 11:00:00,14539.0
-2013-06-28 12:00:00,15290.0
-2013-06-28 13:00:00,15816.0
-2013-06-28 14:00:00,16115.0
-2013-06-28 15:00:00,16406.0
-2013-06-28 16:00:00,16253.0
-2013-06-28 17:00:00,15666.0
-2013-06-28 18:00:00,15296.0
-2013-06-28 19:00:00,15054.0
-2013-06-28 20:00:00,14489.0
-2013-06-28 21:00:00,13862.0
-2013-06-28 22:00:00,13506.0
-2013-06-28 23:00:00,13308.0
-2013-06-29 00:00:00,12472.0
-2013-06-27 01:00:00,11982.0
-2013-06-27 02:00:00,10981.0
-2013-06-27 03:00:00,10324.0
-2013-06-27 04:00:00,9896.0
-2013-06-27 05:00:00,9729.0
-2013-06-27 06:00:00,9840.0
-2013-06-27 07:00:00,10197.0
-2013-06-27 08:00:00,11337.0
-2013-06-27 09:00:00,12637.0
-2013-06-27 10:00:00,13878.0
-2013-06-27 11:00:00,15041.0
-2013-06-27 12:00:00,16195.0
-2013-06-27 13:00:00,17064.0
-2013-06-27 14:00:00,17784.0
-2013-06-27 15:00:00,18418.0
-2013-06-27 16:00:00,18832.0
-2013-06-27 17:00:00,19173.0
-2013-06-27 18:00:00,19232.0
-2013-06-27 19:00:00,18539.0
-2013-06-27 20:00:00,17337.0
-2013-06-27 21:00:00,16644.0
-2013-06-27 22:00:00,15994.0
-2013-06-27 23:00:00,15619.0
-2013-06-28 00:00:00,14434.0
-2013-06-26 01:00:00,12543.0
-2013-06-26 02:00:00,11561.0
-2013-06-26 03:00:00,10848.0
-2013-06-26 04:00:00,10389.0
-2013-06-26 05:00:00,10177.0
-2013-06-26 06:00:00,10313.0
-2013-06-26 07:00:00,10856.0
-2013-06-26 08:00:00,11843.0
-2013-06-26 09:00:00,12641.0
-2013-06-26 10:00:00,13026.0
-2013-06-26 11:00:00,13362.0
-2013-06-26 12:00:00,13690.0
-2013-06-26 13:00:00,14032.0
-2013-06-26 14:00:00,14488.0
-2013-06-26 15:00:00,15092.0
-2013-06-26 16:00:00,15294.0
-2013-06-26 17:00:00,15422.0
-2013-06-26 18:00:00,15554.0
-2013-06-26 19:00:00,15599.0
-2013-06-26 20:00:00,15268.0
-2013-06-26 21:00:00,14877.0
-2013-06-26 22:00:00,14607.0
-2013-06-26 23:00:00,14335.0
-2013-06-27 00:00:00,13272.0
-2013-06-25 01:00:00,11589.0
-2013-06-25 02:00:00,10745.0
-2013-06-25 03:00:00,10202.0
-2013-06-25 04:00:00,9907.0
-2013-06-25 05:00:00,9836.0
-2013-06-25 06:00:00,9904.0
-2013-06-25 07:00:00,10404.0
-2013-06-25 08:00:00,11331.0
-2013-06-25 09:00:00,12348.0
-2013-06-25 10:00:00,13091.0
-2013-06-25 11:00:00,13718.0
-2013-06-25 12:00:00,14214.0
-2013-06-25 13:00:00,14473.0
-2013-06-25 14:00:00,15080.0
-2013-06-25 15:00:00,16056.0
-2013-06-25 16:00:00,16647.0
-2013-06-25 17:00:00,16814.0
-2013-06-25 18:00:00,16985.0
-2013-06-25 19:00:00,16614.0
-2013-06-25 20:00:00,16134.0
-2013-06-25 21:00:00,15735.0
-2013-06-25 22:00:00,15462.0
-2013-06-25 23:00:00,15024.0
-2013-06-26 00:00:00,13858.0
-2013-06-24 01:00:00,12095.0
-2013-06-24 02:00:00,11312.0
-2013-06-24 03:00:00,10788.0
-2013-06-24 04:00:00,10388.0
-2013-06-24 05:00:00,10214.0
-2013-06-24 06:00:00,10370.0
-2013-06-24 07:00:00,10908.0
-2013-06-24 08:00:00,11965.0
-2013-06-24 09:00:00,12906.0
-2013-06-24 10:00:00,13416.0
-2013-06-24 11:00:00,13744.0
-2013-06-24 12:00:00,13989.0
-2013-06-24 13:00:00,14477.0
-2013-06-24 14:00:00,15128.0
-2013-06-24 15:00:00,16017.0
-2013-06-24 16:00:00,16747.0
-2013-06-24 17:00:00,17370.0
-2013-06-24 18:00:00,17702.0
-2013-06-24 19:00:00,17257.0
-2013-06-24 20:00:00,15189.0
-2013-06-24 21:00:00,14263.0
-2013-06-24 22:00:00,13899.0
-2013-06-24 23:00:00,13476.0
-2013-06-25 00:00:00,12618.0
-2013-06-23 01:00:00,11289.0
-2013-06-23 02:00:00,10483.0
-2013-06-23 03:00:00,9831.0
-2013-06-23 04:00:00,9414.0
-2013-06-23 05:00:00,9173.0
-2013-06-23 06:00:00,9074.0
-2013-06-23 07:00:00,8933.0
-2013-06-23 08:00:00,8904.0
-2013-06-23 09:00:00,9545.0
-2013-06-23 10:00:00,10616.0
-2013-06-23 11:00:00,11722.0
-2013-06-23 12:00:00,12687.0
-2013-06-23 13:00:00,13604.0
-2013-06-23 14:00:00,14347.0
-2013-06-23 15:00:00,15067.0
-2013-06-23 16:00:00,15655.0
-2013-06-23 17:00:00,16017.0
-2013-06-23 18:00:00,15918.0
-2013-06-23 19:00:00,15361.0
-2013-06-23 20:00:00,14565.0
-2013-06-23 21:00:00,14065.0
-2013-06-23 22:00:00,13926.0
-2013-06-23 23:00:00,13836.0
-2013-06-24 00:00:00,13044.0
-2013-06-22 01:00:00,11614.0
-2013-06-22 02:00:00,10911.0
-2013-06-22 03:00:00,10370.0
-2013-06-22 04:00:00,10021.0
-2013-06-22 05:00:00,9684.0
-2013-06-22 06:00:00,9666.0
-2013-06-22 07:00:00,9772.0
-2013-06-22 08:00:00,10039.0
-2013-06-22 09:00:00,10559.0
-2013-06-22 10:00:00,11233.0
-2013-06-22 11:00:00,11971.0
-2013-06-22 12:00:00,12548.0
-2013-06-22 13:00:00,13117.0
-2013-06-22 14:00:00,13444.0
-2013-06-22 15:00:00,13393.0
-2013-06-22 16:00:00,13255.0
-2013-06-22 17:00:00,13294.0
-2013-06-22 18:00:00,13368.0
-2013-06-22 19:00:00,13440.0
-2013-06-22 20:00:00,13404.0
-2013-06-22 21:00:00,13129.0
-2013-06-22 22:00:00,13037.0
-2013-06-22 23:00:00,12937.0
-2013-06-23 00:00:00,12140.0
-2013-06-21 01:00:00,12415.0
-2013-06-21 02:00:00,11432.0
-2013-06-21 03:00:00,10729.0
-2013-06-21 04:00:00,10298.0
-2013-06-21 05:00:00,10056.0
-2013-06-21 06:00:00,10102.0
-2013-06-21 07:00:00,10435.0
-2013-06-21 08:00:00,11517.0
-2013-06-21 09:00:00,12801.0
-2013-06-21 10:00:00,13971.0
-2013-06-21 11:00:00,14879.0
-2013-06-21 12:00:00,15551.0
-2013-06-21 13:00:00,15800.0
-2013-06-21 14:00:00,15592.0
-2013-06-21 15:00:00,14999.0
-2013-06-21 16:00:00,14374.0
-2013-06-21 17:00:00,13850.0
-2013-06-21 18:00:00,13641.0
-2013-06-21 19:00:00,13444.0
-2013-06-21 20:00:00,13169.0
-2013-06-21 21:00:00,12950.0
-2013-06-21 22:00:00,13061.0
-2013-06-21 23:00:00,13124.0
-2013-06-22 00:00:00,12464.0
-2013-06-20 01:00:00,10216.0
-2013-06-20 02:00:00,9476.0
-2013-06-20 03:00:00,8996.0
-2013-06-20 04:00:00,8729.0
-2013-06-20 05:00:00,8606.0
-2013-06-20 06:00:00,8760.0
-2013-06-20 07:00:00,9069.0
-2013-06-20 08:00:00,10033.0
-2013-06-20 09:00:00,11153.0
-2013-06-20 10:00:00,11918.0
-2013-06-20 11:00:00,12740.0
-2013-06-20 12:00:00,13574.0
-2013-06-20 13:00:00,14281.0
-2013-06-20 14:00:00,14830.0
-2013-06-20 15:00:00,15399.0
-2013-06-20 16:00:00,15797.0
-2013-06-20 17:00:00,16140.0
-2013-06-20 18:00:00,16336.0
-2013-06-20 19:00:00,16321.0
-2013-06-20 20:00:00,15906.0
-2013-06-20 21:00:00,15367.0
-2013-06-20 22:00:00,15022.0
-2013-06-20 23:00:00,14686.0
-2013-06-21 00:00:00,13638.0
-2013-06-19 01:00:00,9838.0
-2013-06-19 02:00:00,9169.0
-2013-06-19 03:00:00,8739.0
-2013-06-19 04:00:00,8466.0
-2013-06-19 05:00:00,8369.0
-2013-06-19 06:00:00,8493.0
-2013-06-19 07:00:00,8839.0
-2013-06-19 08:00:00,9711.0
-2013-06-19 09:00:00,10658.0
-2013-06-19 10:00:00,11351.0
-2013-06-19 11:00:00,11858.0
-2013-06-19 12:00:00,12308.0
-2013-06-19 13:00:00,12645.0
-2013-06-19 14:00:00,12848.0
-2013-06-19 15:00:00,13084.0
-2013-06-19 16:00:00,13208.0
-2013-06-19 17:00:00,13311.0
-2013-06-19 18:00:00,13316.0
-2013-06-19 19:00:00,13211.0
-2013-06-19 20:00:00,12842.0
-2013-06-19 21:00:00,12428.0
-2013-06-19 22:00:00,12215.0
-2013-06-19 23:00:00,12027.0
-2013-06-20 00:00:00,11209.0
-2013-06-18 01:00:00,11067.0
-2013-06-18 02:00:00,10154.0
-2013-06-18 03:00:00,9532.0
-2013-06-18 04:00:00,9088.0
-2013-06-18 05:00:00,8918.0
-2013-06-18 06:00:00,8949.0
-2013-06-18 07:00:00,9275.0
-2013-06-18 08:00:00,10057.0
-2013-06-18 09:00:00,10858.0
-2013-06-18 10:00:00,11387.0
-2013-06-18 11:00:00,11718.0
-2013-06-18 12:00:00,12007.0
-2013-06-18 13:00:00,12259.0
-2013-06-18 14:00:00,12461.0
-2013-06-18 15:00:00,12673.0
-2013-06-18 16:00:00,12753.0
-2013-06-18 17:00:00,12790.0
-2013-06-18 18:00:00,12753.0
-2013-06-18 19:00:00,12552.0
-2013-06-18 20:00:00,12074.0
-2013-06-18 21:00:00,11641.0
-2013-06-18 22:00:00,11552.0
-2013-06-18 23:00:00,11460.0
-2013-06-19 00:00:00,10689.0
-2013-06-17 01:00:00,11355.0
-2013-06-17 02:00:00,10500.0
-2013-06-17 03:00:00,9863.0
-2013-06-17 04:00:00,9449.0
-2013-06-17 05:00:00,9233.0
-2013-06-17 06:00:00,9352.0
-2013-06-17 07:00:00,9684.0
-2013-06-17 08:00:00,10860.0
-2013-06-17 09:00:00,12215.0
-2013-06-17 10:00:00,13368.0
-2013-06-17 11:00:00,14258.0
-2013-06-17 12:00:00,15087.0
-2013-06-17 13:00:00,15769.0
-2013-06-17 14:00:00,16312.0
-2013-06-17 15:00:00,16846.0
-2013-06-17 16:00:00,17160.0
-2013-06-17 17:00:00,17401.0
-2013-06-17 18:00:00,17430.0
-2013-06-17 19:00:00,17089.0
-2013-06-17 20:00:00,16384.0
-2013-06-17 21:00:00,15511.0
-2013-06-17 22:00:00,14683.0
-2013-06-17 23:00:00,13863.0
-2013-06-18 00:00:00,12375.0
-2013-06-16 01:00:00,10923.0
-2013-06-16 02:00:00,10221.0
-2013-06-16 03:00:00,9463.0
-2013-06-16 04:00:00,9068.0
-2013-06-16 05:00:00,8780.0
-2013-06-16 06:00:00,8584.0
-2013-06-16 07:00:00,8370.0
-2013-06-16 08:00:00,8489.0
-2013-06-16 09:00:00,9114.0
-2013-06-16 10:00:00,10003.0
-2013-06-16 11:00:00,10854.0
-2013-06-16 12:00:00,11682.0
-2013-06-16 13:00:00,12363.0
-2013-06-16 14:00:00,12812.0
-2013-06-16 15:00:00,13192.0
-2013-06-16 16:00:00,13528.0
-2013-06-16 17:00:00,13842.0
-2013-06-16 18:00:00,14011.0
-2013-06-16 19:00:00,14062.0
-2013-06-16 20:00:00,13857.0
-2013-06-16 21:00:00,13480.0
-2013-06-16 22:00:00,13291.0
-2013-06-16 23:00:00,13245.0
-2013-06-17 00:00:00,12424.0
-2013-06-15 01:00:00,9841.0
-2013-06-15 02:00:00,9119.0
-2013-06-15 03:00:00,8653.0
-2013-06-15 04:00:00,8444.0
-2013-06-15 05:00:00,8334.0
-2013-06-15 06:00:00,8353.0
-2013-06-15 07:00:00,8439.0
-2013-06-15 08:00:00,8664.0
-2013-06-15 09:00:00,9190.0
-2013-06-15 10:00:00,9798.0
-2013-06-15 11:00:00,10333.0
-2013-06-15 12:00:00,10641.0
-2013-06-15 13:00:00,10811.0
-2013-06-15 14:00:00,10959.0
-2013-06-15 15:00:00,11027.0
-2013-06-15 16:00:00,11152.0
-2013-06-15 17:00:00,11409.0
-2013-06-15 18:00:00,11785.0
-2013-06-15 19:00:00,12057.0
-2013-06-15 20:00:00,11994.0
-2013-06-15 21:00:00,11907.0
-2013-06-15 22:00:00,12132.0
-2013-06-15 23:00:00,12210.0
-2013-06-16 00:00:00,11701.0
-2013-06-14 01:00:00,9964.0
-2013-06-14 02:00:00,9270.0
-2013-06-14 03:00:00,8784.0
-2013-06-14 04:00:00,8554.0
-2013-06-14 05:00:00,8401.0
-2013-06-14 06:00:00,8535.0
-2013-06-14 07:00:00,8785.0
-2013-06-14 08:00:00,9606.0
-2013-06-14 09:00:00,10586.0
-2013-06-14 10:00:00,11241.0
-2013-06-14 11:00:00,11743.0
-2013-06-14 12:00:00,12162.0
-2013-06-14 13:00:00,12425.0
-2013-06-14 14:00:00,12605.0
-2013-06-14 15:00:00,12891.0
-2013-06-14 16:00:00,13071.0
-2013-06-14 17:00:00,13193.0
-2013-06-14 18:00:00,13207.0
-2013-06-14 19:00:00,13008.0
-2013-06-14 20:00:00,12492.0
-2013-06-14 21:00:00,11812.0
-2013-06-14 22:00:00,11644.0
-2013-06-14 23:00:00,11502.0
-2013-06-15 00:00:00,10722.0
-2013-06-13 01:00:00,10963.0
-2013-06-13 02:00:00,10085.0
-2013-06-13 03:00:00,9504.0
-2013-06-13 04:00:00,9172.0
-2013-06-13 05:00:00,9017.0
-2013-06-13 06:00:00,9121.0
-2013-06-13 07:00:00,9471.0
-2013-06-13 08:00:00,10220.0
-2013-06-13 09:00:00,11240.0
-2013-06-13 10:00:00,11987.0
-2013-06-13 11:00:00,12479.0
-2013-06-13 12:00:00,12875.0
-2013-06-13 13:00:00,13100.0
-2013-06-13 14:00:00,13270.0
-2013-06-13 15:00:00,13495.0
-2013-06-13 16:00:00,13563.0
-2013-06-13 17:00:00,13512.0
-2013-06-13 18:00:00,13447.0
-2013-06-13 19:00:00,13215.0
-2013-06-13 20:00:00,12648.0
-2013-06-13 21:00:00,12097.0
-2013-06-13 22:00:00,11939.0
-2013-06-13 23:00:00,11826.0
-2013-06-14 00:00:00,10966.0
-2013-06-12 01:00:00,12011.0
-2013-06-12 02:00:00,11036.0
-2013-06-12 03:00:00,10383.0
-2013-06-12 04:00:00,9943.0
-2013-06-12 05:00:00,9755.0
-2013-06-12 06:00:00,9800.0
-2013-06-12 07:00:00,10276.0
-2013-06-12 08:00:00,11203.0
-2013-06-12 09:00:00,12172.0
-2013-06-12 10:00:00,12788.0
-2013-06-12 11:00:00,13272.0
-2013-06-12 12:00:00,13761.0
-2013-06-12 13:00:00,14148.0
-2013-06-12 14:00:00,14643.0
-2013-06-12 15:00:00,15405.0
-2013-06-12 16:00:00,15863.0
-2013-06-12 17:00:00,15890.0
-2013-06-12 18:00:00,15698.0
-2013-06-12 19:00:00,15149.0
-2013-06-12 20:00:00,14590.0
-2013-06-12 21:00:00,14176.0
-2013-06-12 22:00:00,13842.0
-2013-06-12 23:00:00,13047.0
-2013-06-13 00:00:00,11989.0
-2013-06-11 01:00:00,10567.0
-2013-06-11 02:00:00,9813.0
-2013-06-11 03:00:00,9321.0
-2013-06-11 04:00:00,8989.0
-2013-06-11 05:00:00,8860.0
-2013-06-11 06:00:00,8978.0
-2013-06-11 07:00:00,9345.0
-2013-06-11 08:00:00,10421.0
-2013-06-11 09:00:00,11617.0
-2013-06-11 10:00:00,12561.0
-2013-06-11 11:00:00,13305.0
-2013-06-11 12:00:00,14022.0
-2013-06-11 13:00:00,14569.0
-2013-06-11 14:00:00,15005.0
-2013-06-11 15:00:00,15483.0
-2013-06-11 16:00:00,15712.0
-2013-06-11 17:00:00,15735.0
-2013-06-11 18:00:00,15290.0
-2013-06-11 19:00:00,15182.0
-2013-06-11 20:00:00,14971.0
-2013-06-11 21:00:00,14588.0
-2013-06-11 22:00:00,14573.0
-2013-06-11 23:00:00,14280.0
-2013-06-12 00:00:00,13244.0
-2013-06-10 01:00:00,9803.0
-2013-06-10 02:00:00,9244.0
-2013-06-10 03:00:00,8870.0
-2013-06-10 04:00:00,8618.0
-2013-06-10 05:00:00,8531.0
-2013-06-10 06:00:00,8715.0
-2013-06-10 07:00:00,9207.0
-2013-06-10 08:00:00,10173.0
-2013-06-10 09:00:00,11274.0
-2013-06-10 10:00:00,12020.0
-2013-06-10 11:00:00,12667.0
-2013-06-10 12:00:00,13173.0
-2013-06-10 13:00:00,13490.0
-2013-06-10 14:00:00,13636.0
-2013-06-10 15:00:00,13804.0
-2013-06-10 16:00:00,13892.0
-2013-06-10 17:00:00,13847.0
-2013-06-10 18:00:00,13712.0
-2013-06-10 19:00:00,13562.0
-2013-06-10 20:00:00,13239.0
-2013-06-10 21:00:00,12861.0
-2013-06-10 22:00:00,12814.0
-2013-06-10 23:00:00,12561.0
-2013-06-11 00:00:00,11586.0
-2013-06-09 01:00:00,8935.0
-2013-06-09 02:00:00,8350.0
-2013-06-09 03:00:00,8036.0
-2013-06-09 04:00:00,7803.0
-2013-06-09 05:00:00,7672.0
-2013-06-09 06:00:00,7632.0
-2013-06-09 07:00:00,7485.0
-2013-06-09 08:00:00,7523.0
-2013-06-09 09:00:00,7959.0
-2013-06-09 10:00:00,8519.0
-2013-06-09 11:00:00,9154.0
-2013-06-09 12:00:00,9694.0
-2013-06-09 13:00:00,10089.0
-2013-06-09 14:00:00,10358.0
-2013-06-09 15:00:00,10529.0
-2013-06-09 16:00:00,10625.0
-2013-06-09 17:00:00,10593.0
-2013-06-09 18:00:00,10705.0
-2013-06-09 19:00:00,10687.0
-2013-06-09 20:00:00,10634.0
-2013-06-09 21:00:00,10642.0
-2013-06-09 22:00:00,11029.0
-2013-06-09 23:00:00,11061.0
-2013-06-10 00:00:00,10546.0
-2013-06-08 01:00:00,9252.0
-2013-06-08 02:00:00,8636.0
-2013-06-08 03:00:00,8264.0
-2013-06-08 04:00:00,8008.0
-2013-06-08 05:00:00,7867.0
-2013-06-08 06:00:00,7908.0
-2013-06-08 07:00:00,7846.0
-2013-06-08 08:00:00,8120.0
-2013-06-08 09:00:00,8662.0
-2013-06-08 10:00:00,9246.0
-2013-06-08 11:00:00,9688.0
-2013-06-08 12:00:00,10017.0
-2013-06-08 13:00:00,10232.0
-2013-06-08 14:00:00,10271.0
-2013-06-08 15:00:00,10260.0
-2013-06-08 16:00:00,10204.0
-2013-06-08 17:00:00,10201.0
-2013-06-08 18:00:00,10160.0
-2013-06-08 19:00:00,10056.0
-2013-06-08 20:00:00,9903.0
-2013-06-08 21:00:00,9747.0
-2013-06-08 22:00:00,10024.0
-2013-06-08 23:00:00,10016.0
-2013-06-09 00:00:00,9542.0
-2013-06-07 01:00:00,9408.0
-2013-06-07 02:00:00,8785.0
-2013-06-07 03:00:00,8440.0
-2013-06-07 04:00:00,8208.0
-2013-06-07 05:00:00,8135.0
-2013-06-07 06:00:00,8283.0
-2013-06-07 07:00:00,8641.0
-2013-06-07 08:00:00,9412.0
-2013-06-07 09:00:00,10254.0
-2013-06-07 10:00:00,10728.0
-2013-06-07 11:00:00,11034.0
-2013-06-07 12:00:00,11310.0
-2013-06-07 13:00:00,11422.0
-2013-06-07 14:00:00,11461.0
-2013-06-07 15:00:00,11515.0
-2013-06-07 16:00:00,11477.0
-2013-06-07 17:00:00,11344.0
-2013-06-07 18:00:00,11252.0
-2013-06-07 19:00:00,11077.0
-2013-06-07 20:00:00,10818.0
-2013-06-07 21:00:00,10556.0
-2013-06-07 22:00:00,10649.0
-2013-06-07 23:00:00,10685.0
-2013-06-08 00:00:00,10000.0
-2013-06-06 01:00:00,9480.0
-2013-06-06 02:00:00,8869.0
-2013-06-06 03:00:00,8500.0
-2013-06-06 04:00:00,8298.0
-2013-06-06 05:00:00,8235.0
-2013-06-06 06:00:00,8377.0
-2013-06-06 07:00:00,8870.0
-2013-06-06 08:00:00,9710.0
-2013-06-06 09:00:00,10573.0
-2013-06-06 10:00:00,11058.0
-2013-06-06 11:00:00,11393.0
-2013-06-06 12:00:00,11589.0
-2013-06-06 13:00:00,11589.0
-2013-06-06 14:00:00,11584.0
-2013-06-06 15:00:00,11631.0
-2013-06-06 16:00:00,11518.0
-2013-06-06 17:00:00,11406.0
-2013-06-06 18:00:00,11289.0
-2013-06-06 19:00:00,11094.0
-2013-06-06 20:00:00,10813.0
-2013-06-06 21:00:00,10633.0
-2013-06-06 22:00:00,10901.0
-2013-06-06 23:00:00,10850.0
-2013-06-07 00:00:00,10245.0
-2013-06-05 01:00:00,9496.0
-2013-06-05 02:00:00,8902.0
-2013-06-05 03:00:00,8507.0
-2013-06-05 04:00:00,8276.0
-2013-06-05 05:00:00,8209.0
-2013-06-05 06:00:00,8353.0
-2013-06-05 07:00:00,8826.0
-2013-06-05 08:00:00,9620.0
-2013-06-05 09:00:00,10574.0
-2013-06-05 10:00:00,11177.0
-2013-06-05 11:00:00,11577.0
-2013-06-05 12:00:00,11842.0
-2013-06-05 13:00:00,12048.0
-2013-06-05 14:00:00,12081.0
-2013-06-05 15:00:00,12196.0
-2013-06-05 16:00:00,12128.0
-2013-06-05 17:00:00,11887.0
-2013-06-05 18:00:00,11682.0
-2013-06-05 19:00:00,11445.0
-2013-06-05 20:00:00,11172.0
-2013-06-05 21:00:00,11153.0
-2013-06-05 22:00:00,11391.0
-2013-06-05 23:00:00,11076.0
-2013-06-06 00:00:00,10286.0
-2013-06-04 01:00:00,9343.0
-2013-06-04 02:00:00,8763.0
-2013-06-04 03:00:00,8399.0
-2013-06-04 04:00:00,8172.0
-2013-06-04 05:00:00,8120.0
-2013-06-04 06:00:00,8314.0
-2013-06-04 07:00:00,8680.0
-2013-06-04 08:00:00,9547.0
-2013-06-04 09:00:00,10444.0
-2013-06-04 10:00:00,10971.0
-2013-06-04 11:00:00,11325.0
-2013-06-04 12:00:00,11617.0
-2013-06-04 13:00:00,11798.0
-2013-06-04 14:00:00,11939.0
-2013-06-04 15:00:00,12052.0
-2013-06-04 16:00:00,12044.0
-2013-06-04 17:00:00,11888.0
-2013-06-04 18:00:00,11733.0
-2013-06-04 19:00:00,11591.0
-2013-06-04 20:00:00,11237.0
-2013-06-04 21:00:00,11008.0
-2013-06-04 22:00:00,11275.0
-2013-06-04 23:00:00,11148.0
-2013-06-05 00:00:00,10371.0
-2013-06-03 01:00:00,8612.0
-2013-06-03 02:00:00,8209.0
-2013-06-03 03:00:00,7983.0
-2013-06-03 04:00:00,7857.0
-2013-06-03 05:00:00,7844.0
-2013-06-03 06:00:00,8093.0
-2013-06-03 07:00:00,8508.0
-2013-06-03 08:00:00,9439.0
-2013-06-03 09:00:00,10325.0
-2013-06-03 10:00:00,10845.0
-2013-06-03 11:00:00,11074.0
-2013-06-03 12:00:00,11362.0
-2013-06-03 13:00:00,11485.0
-2013-06-03 14:00:00,11547.0
-2013-06-03 15:00:00,11680.0
-2013-06-03 16:00:00,11643.0
-2013-06-03 17:00:00,11583.0
-2013-06-03 18:00:00,11476.0
-2013-06-03 19:00:00,11318.0
-2013-06-03 20:00:00,11005.0
-2013-06-03 21:00:00,10871.0
-2013-06-03 22:00:00,11070.0
-2013-06-03 23:00:00,10977.0
-2013-06-04 00:00:00,10207.0
-2013-06-02 01:00:00,9731.0
-2013-06-02 02:00:00,9078.0
-2013-06-02 03:00:00,8639.0
-2013-06-02 04:00:00,8329.0
-2013-06-02 05:00:00,8160.0
-2013-06-02 06:00:00,8103.0
-2013-06-02 07:00:00,7950.0
-2013-06-02 08:00:00,7967.0
-2013-06-02 09:00:00,8220.0
-2013-06-02 10:00:00,8569.0
-2013-06-02 11:00:00,8856.0
-2013-06-02 12:00:00,9075.0
-2013-06-02 13:00:00,9165.0
-2013-06-02 14:00:00,9185.0
-2013-06-02 15:00:00,9147.0
-2013-06-02 16:00:00,9109.0
-2013-06-02 17:00:00,9064.0
-2013-06-02 18:00:00,9102.0
-2013-06-02 19:00:00,9155.0
-2013-06-02 20:00:00,9197.0
-2013-06-02 21:00:00,9326.0
-2013-06-02 22:00:00,9672.0
-2013-06-02 23:00:00,9665.0
-2013-06-03 00:00:00,9173.0
-2013-06-01 01:00:00,11378.0
-2013-06-01 02:00:00,10584.0
-2013-06-01 03:00:00,9973.0
-2013-06-01 04:00:00,9451.0
-2013-06-01 05:00:00,9184.0
-2013-06-01 06:00:00,9043.0
-2013-06-01 07:00:00,9054.0
-2013-06-01 08:00:00,9290.0
-2013-06-01 09:00:00,9980.0
-2013-06-01 10:00:00,10590.0
-2013-06-01 11:00:00,11143.0
-2013-06-01 12:00:00,11598.0
-2013-06-01 13:00:00,11855.0
-2013-06-01 14:00:00,11909.0
-2013-06-01 15:00:00,11805.0
-2013-06-01 16:00:00,11751.0
-2013-06-01 17:00:00,11794.0
-2013-06-01 18:00:00,11760.0
-2013-06-01 19:00:00,11579.0
-2013-06-01 20:00:00,11278.0
-2013-06-01 21:00:00,11156.0
-2013-06-01 22:00:00,11137.0
-2013-06-01 23:00:00,11044.0
-2013-06-02 00:00:00,10395.0
-2013-05-31 01:00:00,11208.0
-2013-05-31 02:00:00,10317.0
-2013-05-31 03:00:00,9797.0
-2013-05-31 04:00:00,9503.0
-2013-05-31 05:00:00,9312.0
-2013-05-31 06:00:00,9446.0
-2013-05-31 07:00:00,9905.0
-2013-05-31 08:00:00,10872.0
-2013-05-31 09:00:00,11928.0
-2013-05-31 10:00:00,12755.0
-2013-05-31 11:00:00,13255.0
-2013-05-31 12:00:00,13845.0
-2013-05-31 13:00:00,14197.0
-2013-05-31 14:00:00,14289.0
-2013-05-31 15:00:00,14462.0
-2013-05-31 16:00:00,14456.0
-2013-05-31 17:00:00,14168.0
-2013-05-31 18:00:00,13916.0
-2013-05-31 19:00:00,13689.0
-2013-05-31 20:00:00,13392.0
-2013-05-31 21:00:00,13088.0
-2013-05-31 22:00:00,13059.0
-2013-05-31 23:00:00,12992.0
-2013-06-01 00:00:00,12220.0
-2013-05-30 01:00:00,11907.0
-2013-05-30 02:00:00,11005.0
-2013-05-30 03:00:00,10374.0
-2013-05-30 04:00:00,9976.0
-2013-05-30 05:00:00,9799.0
-2013-05-30 06:00:00,9897.0
-2013-05-30 07:00:00,10362.0
-2013-05-30 08:00:00,11432.0
-2013-05-30 09:00:00,12770.0
-2013-05-30 10:00:00,13696.0
-2013-05-30 11:00:00,14433.0
-2013-05-30 12:00:00,15085.0
-2013-05-30 13:00:00,15577.0
-2013-05-30 14:00:00,15899.0
-2013-05-30 15:00:00,16093.0
-2013-05-30 16:00:00,16018.0
-2013-05-30 17:00:00,15837.0
-2013-05-30 18:00:00,15532.0
-2013-05-30 19:00:00,15239.0
-2013-05-30 20:00:00,14903.0
-2013-05-30 21:00:00,14529.0
-2013-05-30 22:00:00,14447.0
-2013-05-30 23:00:00,13743.0
-2013-05-31 00:00:00,12451.0
-2013-05-29 01:00:00,10207.0
-2013-05-29 02:00:00,9575.0
-2013-05-29 03:00:00,9150.0
-2013-05-29 04:00:00,8899.0
-2013-05-29 05:00:00,8801.0
-2013-05-29 06:00:00,8948.0
-2013-05-29 07:00:00,9470.0
-2013-05-29 08:00:00,10451.0
-2013-05-29 09:00:00,11319.0
-2013-05-29 10:00:00,11906.0
-2013-05-29 11:00:00,12290.0
-2013-05-29 12:00:00,12668.0
-2013-05-29 13:00:00,13056.0
-2013-05-29 14:00:00,13461.0
-2013-05-29 15:00:00,13991.0
-2013-05-29 16:00:00,14340.0
-2013-05-29 17:00:00,14643.0
-2013-05-29 18:00:00,14840.0
-2013-05-29 19:00:00,14842.0
-2013-05-29 20:00:00,14599.0
-2013-05-29 21:00:00,14345.0
-2013-05-29 22:00:00,14409.0
-2013-05-29 23:00:00,14117.0
-2013-05-30 00:00:00,13111.0
-2013-05-28 01:00:00,8407.0
-2013-05-28 02:00:00,7977.0
-2013-05-28 03:00:00,7779.0
-2013-05-28 04:00:00,7660.0
-2013-05-28 05:00:00,7662.0
-2013-05-28 06:00:00,7936.0
-2013-05-28 07:00:00,8582.0
-2013-05-28 08:00:00,9642.0
-2013-05-28 09:00:00,10745.0
-2013-05-28 10:00:00,11332.0
-2013-05-28 11:00:00,11676.0
-2013-05-28 12:00:00,12049.0
-2013-05-28 13:00:00,12242.0
-2013-05-28 14:00:00,12417.0
-2013-05-28 15:00:00,12604.0
-2013-05-28 16:00:00,12585.0
-2013-05-28 17:00:00,12577.0
-2013-05-28 18:00:00,12557.0
-2013-05-28 19:00:00,12455.0
-2013-05-28 20:00:00,12283.0
-2013-05-28 21:00:00,12618.0
-2013-05-28 22:00:00,12760.0
-2013-05-28 23:00:00,12097.0
-2013-05-29 00:00:00,11156.0
-2013-05-27 01:00:00,8380.0
-2013-05-27 02:00:00,7966.0
-2013-05-27 03:00:00,7664.0
-2013-05-27 04:00:00,7492.0
-2013-05-27 05:00:00,7394.0
-2013-05-27 06:00:00,7480.0
-2013-05-27 07:00:00,7561.0
-2013-05-27 08:00:00,7654.0
-2013-05-27 09:00:00,7904.0
-2013-05-27 10:00:00,8239.0
-2013-05-27 11:00:00,8542.0
-2013-05-27 12:00:00,8835.0
-2013-05-27 13:00:00,8978.0
-2013-05-27 14:00:00,8997.0
-2013-05-27 15:00:00,8983.0
-2013-05-27 16:00:00,8946.0
-2013-05-27 17:00:00,8906.0
-2013-05-27 18:00:00,8962.0
-2013-05-27 19:00:00,9056.0
-2013-05-27 20:00:00,9066.0
-2013-05-27 21:00:00,9133.0
-2013-05-27 22:00:00,9546.0
-2013-05-27 23:00:00,9504.0
-2013-05-28 00:00:00,8988.0
-2013-05-26 01:00:00,8642.0
-2013-05-26 02:00:00,8173.0
-2013-05-26 03:00:00,7915.0
-2013-05-26 04:00:00,7727.0
-2013-05-26 05:00:00,7641.0
-2013-05-26 06:00:00,7643.0
-2013-05-26 07:00:00,7503.0
-2013-05-26 08:00:00,7506.0
-2013-05-26 09:00:00,7782.0
-2013-05-26 10:00:00,8110.0
-2013-05-26 11:00:00,8435.0
-2013-05-26 12:00:00,8661.0
-2013-05-26 13:00:00,8791.0
-2013-05-26 14:00:00,8788.0
-2013-05-26 15:00:00,8827.0
-2013-05-26 16:00:00,8784.0
-2013-05-26 17:00:00,8743.0
-2013-05-26 18:00:00,8718.0
-2013-05-26 19:00:00,8819.0
-2013-05-26 20:00:00,8852.0
-2013-05-26 21:00:00,9015.0
-2013-05-26 22:00:00,9331.0
-2013-05-26 23:00:00,9284.0
-2013-05-27 00:00:00,8889.0
-2013-05-25 01:00:00,9110.0
-2013-05-25 02:00:00,8591.0
-2013-05-25 03:00:00,8242.0
-2013-05-25 04:00:00,8076.0
-2013-05-25 05:00:00,7919.0
-2013-05-25 06:00:00,7986.0
-2013-05-25 07:00:00,7969.0
-2013-05-25 08:00:00,8100.0
-2013-05-25 09:00:00,8541.0
-2013-05-25 10:00:00,8982.0
-2013-05-25 11:00:00,9326.0
-2013-05-25 12:00:00,9474.0
-2013-05-25 13:00:00,9581.0
-2013-05-25 14:00:00,9488.0
-2013-05-25 15:00:00,9324.0
-2013-05-25 16:00:00,9196.0
-2013-05-25 17:00:00,9099.0
-2013-05-25 18:00:00,9096.0
-2013-05-25 19:00:00,9068.0
-2013-05-25 20:00:00,9141.0
-2013-05-25 21:00:00,9209.0
-2013-05-25 22:00:00,9631.0
-2013-05-25 23:00:00,9590.0
-2013-05-26 00:00:00,9140.0
-2013-05-24 01:00:00,9262.0
-2013-05-24 02:00:00,8763.0
-2013-05-24 03:00:00,8455.0
-2013-05-24 04:00:00,8297.0
-2013-05-24 05:00:00,8247.0
-2013-05-24 06:00:00,8431.0
-2013-05-24 07:00:00,8893.0
-2013-05-24 08:00:00,9679.0
-2013-05-24 09:00:00,10426.0
-2013-05-24 10:00:00,10791.0
-2013-05-24 11:00:00,10926.0
-2013-05-24 12:00:00,11058.0
-2013-05-24 13:00:00,11021.0
-2013-05-24 14:00:00,11001.0
-2013-05-24 15:00:00,11031.0
-2013-05-24 16:00:00,10888.0
-2013-05-24 17:00:00,10714.0
-2013-05-24 18:00:00,10542.0
-2013-05-24 19:00:00,10397.0
-2013-05-24 20:00:00,10177.0
-2013-05-24 21:00:00,10082.0
-2013-05-24 22:00:00,10450.0
-2013-05-24 23:00:00,10412.0
-2013-05-25 00:00:00,9801.0
-2013-05-23 01:00:00,9922.0
-2013-05-23 02:00:00,9243.0
-2013-05-23 03:00:00,8813.0
-2013-05-23 04:00:00,8515.0
-2013-05-23 05:00:00,8397.0
-2013-05-23 06:00:00,8527.0
-2013-05-23 07:00:00,9071.0
-2013-05-23 08:00:00,9914.0
-2013-05-23 09:00:00,10717.0
-2013-05-23 10:00:00,11134.0
-2013-05-23 11:00:00,11301.0
-2013-05-23 12:00:00,11410.0
-2013-05-23 13:00:00,11372.0
-2013-05-23 14:00:00,11336.0
-2013-05-23 15:00:00,11285.0
-2013-05-23 16:00:00,11110.0
-2013-05-23 17:00:00,10927.0
-2013-05-23 18:00:00,10782.0
-2013-05-23 19:00:00,10638.0
-2013-05-23 20:00:00,10423.0
-2013-05-23 21:00:00,10379.0
-2013-05-23 22:00:00,10842.0
-2013-05-23 23:00:00,10743.0
-2013-05-24 00:00:00,10015.0
-2013-05-22 01:00:00,11472.0
-2013-05-22 02:00:00,10625.0
-2013-05-22 03:00:00,10018.0
-2013-05-22 04:00:00,9616.0
-2013-05-22 05:00:00,9490.0
-2013-05-22 06:00:00,9620.0
-2013-05-22 07:00:00,10239.0
-2013-05-22 08:00:00,11298.0
-2013-05-22 09:00:00,12157.0
-2013-05-22 10:00:00,12596.0
-2013-05-22 11:00:00,12998.0
-2013-05-22 12:00:00,13497.0
-2013-05-22 13:00:00,13541.0
-2013-05-22 14:00:00,13290.0
-2013-05-22 15:00:00,13122.0
-2013-05-22 16:00:00,13158.0
-2013-05-22 17:00:00,13302.0
-2013-05-22 18:00:00,13286.0
-2013-05-22 19:00:00,12972.0
-2013-05-22 20:00:00,12484.0
-2013-05-22 21:00:00,12199.0
-2013-05-22 22:00:00,12342.0
-2013-05-22 23:00:00,11877.0
-2013-05-23 00:00:00,10883.0
-2013-05-21 01:00:00,12197.0
-2013-05-21 02:00:00,11155.0
-2013-05-21 03:00:00,10461.0
-2013-05-21 04:00:00,9979.0
-2013-05-21 05:00:00,9718.0
-2013-05-21 06:00:00,9758.0
-2013-05-21 07:00:00,10193.0
-2013-05-21 08:00:00,11081.0
-2013-05-21 09:00:00,12189.0
-2013-05-21 10:00:00,12926.0
-2013-05-21 11:00:00,13491.0
-2013-05-21 12:00:00,13906.0
-2013-05-21 13:00:00,14147.0
-2013-05-21 14:00:00,14585.0
-2013-05-21 15:00:00,15100.0
-2013-05-21 16:00:00,15329.0
-2013-05-21 17:00:00,15478.0
-2013-05-21 18:00:00,15539.0
-2013-05-21 19:00:00,15351.0
-2013-05-21 20:00:00,14837.0
-2013-05-21 21:00:00,14297.0
-2013-05-21 22:00:00,14249.0
-2013-05-21 23:00:00,13874.0
-2013-05-22 00:00:00,12666.0
-2013-05-20 01:00:00,11070.0
-2013-05-20 02:00:00,10542.0
-2013-05-20 03:00:00,10172.0
-2013-05-20 04:00:00,9918.0
-2013-05-20 05:00:00,9769.0
-2013-05-20 06:00:00,9936.0
-2013-05-20 07:00:00,10562.0
-2013-05-20 08:00:00,11703.0
-2013-05-20 09:00:00,13021.0
-2013-05-20 10:00:00,13520.0
-2013-05-20 11:00:00,13880.0
-2013-05-20 12:00:00,14379.0
-2013-05-20 13:00:00,14861.0
-2013-05-20 14:00:00,15291.0
-2013-05-20 15:00:00,15842.0
-2013-05-20 16:00:00,16260.0
-2013-05-20 17:00:00,16563.0
-2013-05-20 18:00:00,16629.0
-2013-05-20 19:00:00,16537.0
-2013-05-20 20:00:00,16161.0
-2013-05-20 21:00:00,15574.0
-2013-05-20 22:00:00,15492.0
-2013-05-20 23:00:00,15123.0
-2013-05-21 00:00:00,13871.0
-2013-05-19 01:00:00,9585.0
-2013-05-19 02:00:00,8950.0
-2013-05-19 03:00:00,8529.0
-2013-05-19 04:00:00,8219.0
-2013-05-19 05:00:00,8022.0
-2013-05-19 06:00:00,7977.0
-2013-05-19 07:00:00,7859.0
-2013-05-19 08:00:00,7915.0
-2013-05-19 09:00:00,8445.0
-2013-05-19 10:00:00,9096.0
-2013-05-19 11:00:00,9836.0
-2013-05-19 12:00:00,10553.0
-2013-05-19 13:00:00,11189.0
-2013-05-19 14:00:00,11618.0
-2013-05-19 15:00:00,11981.0
-2013-05-19 16:00:00,12281.0
-2013-05-19 17:00:00,12630.0
-2013-05-19 18:00:00,12897.0
-2013-05-19 19:00:00,13030.0
-2013-05-19 20:00:00,12860.0
-2013-05-19 21:00:00,12668.0
-2013-05-19 22:00:00,12824.0
-2013-05-19 23:00:00,12641.0
-2013-05-20 00:00:00,11935.0
-2013-05-18 01:00:00,9376.0
-2013-05-18 02:00:00,8799.0
-2013-05-18 03:00:00,8451.0
-2013-05-18 04:00:00,8222.0
-2013-05-18 05:00:00,8088.0
-2013-05-18 06:00:00,8044.0
-2013-05-18 07:00:00,8120.0
-2013-05-18 08:00:00,8323.0
-2013-05-18 09:00:00,8865.0
-2013-05-18 10:00:00,9579.0
-2013-05-18 11:00:00,10061.0
-2013-05-18 12:00:00,10556.0
-2013-05-18 13:00:00,10827.0
-2013-05-18 14:00:00,11027.0
-2013-05-18 15:00:00,11045.0
-2013-05-18 16:00:00,11061.0
-2013-05-18 17:00:00,11180.0
-2013-05-18 18:00:00,11320.0
-2013-05-18 19:00:00,11337.0
-2013-05-18 20:00:00,11114.0
-2013-05-18 21:00:00,10858.0
-2013-05-18 22:00:00,11109.0
-2013-05-18 23:00:00,10932.0
-2013-05-19 00:00:00,10286.0
-2013-05-17 01:00:00,9666.0
-2013-05-17 02:00:00,9024.0
-2013-05-17 03:00:00,8664.0
-2013-05-17 04:00:00,8418.0
-2013-05-17 05:00:00,8332.0
-2013-05-17 06:00:00,8440.0
-2013-05-17 07:00:00,8935.0
-2013-05-17 08:00:00,9713.0
-2013-05-17 09:00:00,10645.0
-2013-05-17 10:00:00,11218.0
-2013-05-17 11:00:00,11617.0
-2013-05-17 12:00:00,11938.0
-2013-05-17 13:00:00,12052.0
-2013-05-17 14:00:00,11975.0
-2013-05-17 15:00:00,11968.0
-2013-05-17 16:00:00,11904.0
-2013-05-17 17:00:00,11782.0
-2013-05-17 18:00:00,11600.0
-2013-05-17 19:00:00,11324.0
-2013-05-17 20:00:00,11063.0
-2013-05-17 21:00:00,10965.0
-2013-05-17 22:00:00,11157.0
-2013-05-17 23:00:00,10873.0
-2013-05-18 00:00:00,10137.0
-2013-05-16 01:00:00,10087.0
-2013-05-16 02:00:00,9344.0
-2013-05-16 03:00:00,8838.0
-2013-05-16 04:00:00,8587.0
-2013-05-16 05:00:00,8468.0
-2013-05-16 06:00:00,8567.0
-2013-05-16 07:00:00,9007.0
-2013-05-16 08:00:00,9873.0
-2013-05-16 09:00:00,10971.0
-2013-05-16 10:00:00,11655.0
-2013-05-16 11:00:00,12155.0
-2013-05-16 12:00:00,12603.0
-2013-05-16 13:00:00,12875.0
-2013-05-16 14:00:00,13203.0
-2013-05-16 15:00:00,13478.0
-2013-05-16 16:00:00,13683.0
-2013-05-16 17:00:00,13825.0
-2013-05-16 18:00:00,13808.0
-2013-05-16 19:00:00,13466.0
-2013-05-16 20:00:00,12866.0
-2013-05-16 21:00:00,12192.0
-2013-05-16 22:00:00,12180.0
-2013-05-16 23:00:00,11624.0
-2013-05-17 00:00:00,10603.0
-2013-05-15 01:00:00,10844.0
-2013-05-15 02:00:00,10161.0
-2013-05-15 03:00:00,9723.0
-2013-05-15 04:00:00,9384.0
-2013-05-15 05:00:00,9224.0
-2013-05-15 06:00:00,9292.0
-2013-05-15 07:00:00,9781.0
-2013-05-15 08:00:00,10621.0
-2013-05-15 09:00:00,11657.0
-2013-05-15 10:00:00,12272.0
-2013-05-15 11:00:00,12753.0
-2013-05-15 12:00:00,13164.0
-2013-05-15 13:00:00,13452.0
-2013-05-15 14:00:00,13627.0
-2013-05-15 15:00:00,13861.0
-2013-05-15 16:00:00,13898.0
-2013-05-15 17:00:00,13893.0
-2013-05-15 18:00:00,13774.0
-2013-05-15 19:00:00,13495.0
-2013-05-15 20:00:00,12919.0
-2013-05-15 21:00:00,12538.0
-2013-05-15 22:00:00,12629.0
-2013-05-15 23:00:00,12203.0
-2013-05-16 00:00:00,11128.0
-2013-05-14 01:00:00,9160.0
-2013-05-14 02:00:00,8636.0
-2013-05-14 03:00:00,8329.0
-2013-05-14 04:00:00,8142.0
-2013-05-14 05:00:00,8091.0
-2013-05-14 06:00:00,8281.0
-2013-05-14 07:00:00,8855.0
-2013-05-14 08:00:00,9700.0
-2013-05-14 09:00:00,10542.0
-2013-05-14 10:00:00,11038.0
-2013-05-14 11:00:00,11392.0
-2013-05-14 12:00:00,11697.0
-2013-05-14 13:00:00,11995.0
-2013-05-14 14:00:00,12288.0
-2013-05-14 15:00:00,12623.0
-2013-05-14 16:00:00,12914.0
-2013-05-14 17:00:00,13002.0
-2013-05-14 18:00:00,13085.0
-2013-05-14 19:00:00,13013.0
-2013-05-14 20:00:00,12759.0
-2013-05-14 21:00:00,12668.0
-2013-05-14 22:00:00,13024.0
-2013-05-14 23:00:00,12726.0
-2013-05-15 00:00:00,11783.0
-2013-05-13 01:00:00,8573.0
-2013-05-13 02:00:00,8196.0
-2013-05-13 03:00:00,8027.0
-2013-05-13 04:00:00,7951.0
-2013-05-13 05:00:00,8021.0
-2013-05-13 06:00:00,8313.0
-2013-05-13 07:00:00,9041.0
-2013-05-13 08:00:00,9864.0
-2013-05-13 09:00:00,10593.0
-2013-05-13 10:00:00,10858.0
-2013-05-13 11:00:00,11011.0
-2013-05-13 12:00:00,11159.0
-2013-05-13 13:00:00,11187.0
-2013-05-13 14:00:00,11219.0
-2013-05-13 15:00:00,11270.0
-2013-05-13 16:00:00,11164.0
-2013-05-13 17:00:00,11006.0
-2013-05-13 18:00:00,10879.0
-2013-05-13 19:00:00,10690.0
-2013-05-13 20:00:00,10548.0
-2013-05-13 21:00:00,10719.0
-2013-05-13 22:00:00,11147.0
-2013-05-13 23:00:00,10743.0
-2013-05-14 00:00:00,9922.0
-2013-05-12 01:00:00,8813.0
-2013-05-12 02:00:00,8373.0
-2013-05-12 03:00:00,8084.0
-2013-05-12 04:00:00,7929.0
-2013-05-12 05:00:00,7819.0
-2013-05-12 06:00:00,7865.0
-2013-05-12 07:00:00,7823.0
-2013-05-12 08:00:00,7829.0
-2013-05-12 09:00:00,8086.0
-2013-05-12 10:00:00,8430.0
-2013-05-12 11:00:00,8575.0
-2013-05-12 12:00:00,8743.0
-2013-05-12 13:00:00,8728.0
-2013-05-12 14:00:00,8695.0
-2013-05-12 15:00:00,8612.0
-2013-05-12 16:00:00,8556.0
-2013-05-12 17:00:00,8506.0
-2013-05-12 18:00:00,8529.0
-2013-05-12 19:00:00,8600.0
-2013-05-12 20:00:00,8606.0
-2013-05-12 21:00:00,8850.0
-2013-05-12 22:00:00,9535.0
-2013-05-12 23:00:00,9535.0
-2013-05-13 00:00:00,9038.0
-2013-05-11 01:00:00,9247.0
-2013-05-11 02:00:00,8729.0
-2013-05-11 03:00:00,8382.0
-2013-05-11 04:00:00,8189.0
-2013-05-11 05:00:00,8066.0
-2013-05-11 06:00:00,8127.0
-2013-05-11 07:00:00,8270.0
-2013-05-11 08:00:00,8424.0
-2013-05-11 09:00:00,8874.0
-2013-05-11 10:00:00,9277.0
-2013-05-11 11:00:00,9570.0
-2013-05-11 12:00:00,9788.0
-2013-05-11 13:00:00,9786.0
-2013-05-11 14:00:00,9648.0
-2013-05-11 15:00:00,9420.0
-2013-05-11 16:00:00,9260.0
-2013-05-11 17:00:00,9171.0
-2013-05-11 18:00:00,9146.0
-2013-05-11 19:00:00,9123.0
-2013-05-11 20:00:00,9079.0
-2013-05-11 21:00:00,9237.0
-2013-05-11 22:00:00,9778.0
-2013-05-11 23:00:00,9789.0
-2013-05-12 00:00:00,9321.0
-2013-05-10 01:00:00,9218.0
-2013-05-10 02:00:00,8672.0
-2013-05-10 03:00:00,8293.0
-2013-05-10 04:00:00,8097.0
-2013-05-10 05:00:00,8035.0
-2013-05-10 06:00:00,8219.0
-2013-05-10 07:00:00,8777.0
-2013-05-10 08:00:00,9690.0
-2013-05-10 09:00:00,10504.0
-2013-05-10 10:00:00,10870.0
-2013-05-10 11:00:00,11064.0
-2013-05-10 12:00:00,11190.0
-2013-05-10 13:00:00,11210.0
-2013-05-10 14:00:00,11171.0
-2013-05-10 15:00:00,11155.0
-2013-05-10 16:00:00,11016.0
-2013-05-10 17:00:00,10865.0
-2013-05-10 18:00:00,10748.0
-2013-05-10 19:00:00,10661.0
-2013-05-10 20:00:00,10553.0
-2013-05-10 21:00:00,10697.0
-2013-05-10 22:00:00,10972.0
-2013-05-10 23:00:00,10653.0
-2013-05-11 00:00:00,10007.0
-2013-05-09 01:00:00,9444.0
-2013-05-09 02:00:00,8847.0
-2013-05-09 03:00:00,8492.0
-2013-05-09 04:00:00,8246.0
-2013-05-09 05:00:00,8193.0
-2013-05-09 06:00:00,8316.0
-2013-05-09 07:00:00,8818.0
-2013-05-09 08:00:00,9638.0
-2013-05-09 09:00:00,10576.0
-2013-05-09 10:00:00,11089.0
-2013-05-09 11:00:00,11422.0
-2013-05-09 12:00:00,11605.0
-2013-05-09 13:00:00,11748.0
-2013-05-09 14:00:00,11873.0
-2013-05-09 15:00:00,11973.0
-2013-05-09 16:00:00,11917.0
-2013-05-09 17:00:00,11777.0
-2013-05-09 18:00:00,11648.0
-2013-05-09 19:00:00,11478.0
-2013-05-09 20:00:00,11240.0
-2013-05-09 21:00:00,11263.0
-2013-05-09 22:00:00,11460.0
-2013-05-09 23:00:00,10985.0
-2013-05-10 00:00:00,10113.0
-2013-05-08 01:00:00,9264.0
-2013-05-08 02:00:00,8695.0
-2013-05-08 03:00:00,8318.0
-2013-05-08 04:00:00,8134.0
-2013-05-08 05:00:00,8042.0
-2013-05-08 06:00:00,8227.0
-2013-05-08 07:00:00,8762.0
-2013-05-08 08:00:00,9534.0
-2013-05-08 09:00:00,10480.0
-2013-05-08 10:00:00,11053.0
-2013-05-08 11:00:00,11443.0
-2013-05-08 12:00:00,11816.0
-2013-05-08 13:00:00,11956.0
-2013-05-08 14:00:00,12118.0
-2013-05-08 15:00:00,12289.0
-2013-05-08 16:00:00,12358.0
-2013-05-08 17:00:00,12291.0
-2013-05-08 18:00:00,12193.0
-2013-05-08 19:00:00,11968.0
-2013-05-08 20:00:00,11539.0
-2013-05-08 21:00:00,11417.0
-2013-05-08 22:00:00,11742.0
-2013-05-08 23:00:00,11279.0
-2013-05-09 00:00:00,10349.0
-2013-05-07 01:00:00,9046.0
-2013-05-07 02:00:00,8529.0
-2013-05-07 03:00:00,8186.0
-2013-05-07 04:00:00,8027.0
-2013-05-07 05:00:00,7995.0
-2013-05-07 06:00:00,8177.0
-2013-05-07 07:00:00,8757.0
-2013-05-07 08:00:00,9569.0
-2013-05-07 09:00:00,10392.0
-2013-05-07 10:00:00,10846.0
-2013-05-07 11:00:00,11154.0
-2013-05-07 12:00:00,11436.0
-2013-05-07 13:00:00,11610.0
-2013-05-07 14:00:00,11733.0
-2013-05-07 15:00:00,11873.0
-2013-05-07 16:00:00,11931.0
-2013-05-07 17:00:00,11856.0
-2013-05-07 18:00:00,11767.0
-2013-05-07 19:00:00,11583.0
-2013-05-07 20:00:00,11231.0
-2013-05-07 21:00:00,11124.0
-2013-05-07 22:00:00,11523.0
-2013-05-07 23:00:00,11109.0
-2013-05-08 00:00:00,10174.0
-2013-05-06 01:00:00,8392.0
-2013-05-06 02:00:00,8022.0
-2013-05-06 03:00:00,7775.0
-2013-05-06 04:00:00,7683.0
-2013-05-06 05:00:00,7681.0
-2013-05-06 06:00:00,7909.0
-2013-05-06 07:00:00,8578.0
-2013-05-06 08:00:00,9497.0
-2013-05-06 09:00:00,10439.0
-2013-05-06 10:00:00,10766.0
-2013-05-06 11:00:00,10976.0
-2013-05-06 12:00:00,11209.0
-2013-05-06 13:00:00,11317.0
-2013-05-06 14:00:00,11356.0
-2013-05-06 15:00:00,11469.0
-2013-05-06 16:00:00,11410.0
-2013-05-06 17:00:00,11279.0
-2013-05-06 18:00:00,11202.0
-2013-05-06 19:00:00,11008.0
-2013-05-06 20:00:00,10723.0
-2013-05-06 21:00:00,10743.0
-2013-05-06 22:00:00,11234.0
-2013-05-06 23:00:00,10756.0
-2013-05-07 00:00:00,9887.0
-2013-05-05 01:00:00,8600.0
-2013-05-05 02:00:00,8167.0
-2013-05-05 03:00:00,7846.0
-2013-05-05 04:00:00,7656.0
-2013-05-05 05:00:00,7538.0
-2013-05-05 06:00:00,7578.0
-2013-05-05 07:00:00,7587.0
-2013-05-05 08:00:00,7512.0
-2013-05-05 09:00:00,7791.0
-2013-05-05 10:00:00,8202.0
-2013-05-05 11:00:00,8483.0
-2013-05-05 12:00:00,8739.0
-2013-05-05 13:00:00,8830.0
-2013-05-05 14:00:00,8939.0
-2013-05-05 15:00:00,8958.0
-2013-05-05 16:00:00,8963.0
-2013-05-05 17:00:00,8980.0
-2013-05-05 18:00:00,9021.0
-2013-05-05 19:00:00,9041.0
-2013-05-05 20:00:00,9066.0
-2013-05-05 21:00:00,9207.0
-2013-05-05 22:00:00,9788.0
-2013-05-05 23:00:00,9550.0
-2013-05-06 00:00:00,8973.0
-2013-05-04 01:00:00,9402.0
-2013-05-04 02:00:00,8804.0
-2013-05-04 03:00:00,8461.0
-2013-05-04 04:00:00,8249.0
-2013-05-04 05:00:00,8144.0
-2013-05-04 06:00:00,8165.0
-2013-05-04 07:00:00,8303.0
-2013-05-04 08:00:00,8476.0
-2013-05-04 09:00:00,8865.0
-2013-05-04 10:00:00,9322.0
-2013-05-04 11:00:00,9546.0
-2013-05-04 12:00:00,9672.0
-2013-05-04 13:00:00,9638.0
-2013-05-04 14:00:00,9545.0
-2013-05-04 15:00:00,9439.0
-2013-05-04 16:00:00,9345.0
-2013-05-04 17:00:00,9280.0
-2013-05-04 18:00:00,9257.0
-2013-05-04 19:00:00,9204.0
-2013-05-04 20:00:00,9197.0
-2013-05-04 21:00:00,9369.0
-2013-05-04 22:00:00,9835.0
-2013-05-04 23:00:00,9659.0
-2013-05-05 00:00:00,9155.0
-2013-05-03 01:00:00,9187.0
-2013-05-03 02:00:00,8691.0
-2013-05-03 03:00:00,8427.0
-2013-05-03 04:00:00,8256.0
-2013-05-03 05:00:00,8198.0
-2013-05-03 06:00:00,8416.0
-2013-05-03 07:00:00,9091.0
-2013-05-03 08:00:00,9986.0
-2013-05-03 09:00:00,10815.0
-2013-05-03 10:00:00,11199.0
-2013-05-03 11:00:00,11334.0
-2013-05-03 12:00:00,11425.0
-2013-05-03 13:00:00,11358.0
-2013-05-03 14:00:00,11264.0
-2013-05-03 15:00:00,11234.0
-2013-05-03 16:00:00,11166.0
-2013-05-03 17:00:00,11025.0
-2013-05-03 18:00:00,10860.0
-2013-05-03 19:00:00,10753.0
-2013-05-03 20:00:00,10690.0
-2013-05-03 21:00:00,10903.0
-2013-05-03 22:00:00,11121.0
-2013-05-03 23:00:00,10799.0
-2013-05-04 00:00:00,10119.0
-2013-05-02 01:00:00,10221.0
-2013-05-02 02:00:00,9439.0
-2013-05-02 03:00:00,8848.0
-2013-05-02 04:00:00,8478.0
-2013-05-02 05:00:00,8270.0
-2013-05-02 06:00:00,8344.0
-2013-05-02 07:00:00,8891.0
-2013-05-02 08:00:00,9564.0
-2013-05-02 09:00:00,10380.0
-2013-05-02 10:00:00,10704.0
-2013-05-02 11:00:00,10595.0
-2013-05-02 12:00:00,10958.0
-2013-05-02 13:00:00,11164.0
-2013-05-02 14:00:00,11075.0
-2013-05-02 15:00:00,11136.0
-2013-05-02 16:00:00,11021.0
-2013-05-02 17:00:00,10870.0
-2013-05-02 18:00:00,10752.0
-2013-05-02 19:00:00,10660.0
-2013-05-02 20:00:00,10595.0
-2013-05-02 21:00:00,10893.0
-2013-05-02 22:00:00,11124.0
-2013-05-02 23:00:00,10684.0
-2013-05-03 00:00:00,9974.0
-2013-05-01 01:00:00,10247.0
-2013-05-01 02:00:00,9575.0
-2013-05-01 03:00:00,9122.0
-2013-05-01 04:00:00,8795.0
-2013-05-01 05:00:00,8631.0
-2013-05-01 06:00:00,8729.0
-2013-05-01 07:00:00,9304.0
-2013-05-01 08:00:00,10121.0
-2013-05-01 09:00:00,11108.0
-2013-05-01 10:00:00,11741.0
-2013-05-01 11:00:00,12206.0
-2013-05-01 12:00:00,12699.0
-2013-05-01 13:00:00,12937.0
-2013-05-01 14:00:00,13133.0
-2013-05-01 15:00:00,13322.0
-2013-05-01 16:00:00,13421.0
-2013-05-01 17:00:00,13461.0
-2013-05-01 18:00:00,13409.0
-2013-05-01 19:00:00,13194.0
-2013-05-01 20:00:00,12763.0
-2013-05-01 21:00:00,12566.0
-2013-05-01 22:00:00,12859.0
-2013-05-01 23:00:00,12318.0
-2013-05-02 00:00:00,11269.0
-2013-04-30 01:00:00,9056.0
-2013-04-30 02:00:00,8534.0
-2013-04-30 03:00:00,8221.0
-2013-04-30 04:00:00,8184.0
-2013-04-30 05:00:00,8104.0
-2013-04-30 06:00:00,8282.0
-2013-04-30 07:00:00,8923.0
-2013-04-30 08:00:00,9737.0
-2013-04-30 09:00:00,10571.0
-2013-04-30 10:00:00,11015.0
-2013-04-30 11:00:00,11298.0
-2013-04-30 12:00:00,11622.0
-2013-04-30 13:00:00,11864.0
-2013-04-30 14:00:00,12064.0
-2013-04-30 15:00:00,12266.0
-2013-04-30 16:00:00,12416.0
-2013-04-30 17:00:00,12453.0
-2013-04-30 18:00:00,12445.0
-2013-04-30 19:00:00,12310.0
-2013-04-30 20:00:00,12014.0
-2013-04-30 21:00:00,12034.0
-2013-04-30 22:00:00,12474.0
-2013-04-30 23:00:00,12056.0
-2013-05-01 00:00:00,11139.0
-2013-04-29 01:00:00,8415.0
-2013-04-29 02:00:00,8061.0
-2013-04-29 03:00:00,7772.0
-2013-04-29 04:00:00,7678.0
-2013-04-29 05:00:00,7700.0
-2013-04-29 06:00:00,7931.0
-2013-04-29 07:00:00,8661.0
-2013-04-29 08:00:00,9447.0
-2013-04-29 09:00:00,10282.0
-2013-04-29 10:00:00,10733.0
-2013-04-29 11:00:00,10943.0
-2013-04-29 12:00:00,11193.0
-2013-04-29 13:00:00,11294.0
-2013-04-29 14:00:00,11382.0
-2013-04-29 15:00:00,11482.0
-2013-04-29 16:00:00,11432.0
-2013-04-29 17:00:00,11270.0
-2013-04-29 18:00:00,11141.0
-2013-04-29 19:00:00,11017.0
-2013-04-29 20:00:00,10784.0
-2013-04-29 21:00:00,10881.0
-2013-04-29 22:00:00,11370.0
-2013-04-29 23:00:00,10922.0
-2013-04-30 00:00:00,9868.0
-2013-04-28 01:00:00,8566.0
-2013-04-28 02:00:00,8140.0
-2013-04-28 03:00:00,7813.0
-2013-04-28 04:00:00,7638.0
-2013-04-28 05:00:00,7544.0
-2013-04-28 06:00:00,7535.0
-2013-04-28 07:00:00,7666.0
-2013-04-28 08:00:00,7656.0
-2013-04-28 09:00:00,7881.0
-2013-04-28 10:00:00,8235.0
-2013-04-28 11:00:00,8556.0
-2013-04-28 12:00:00,8789.0
-2013-04-28 13:00:00,8870.0
-2013-04-28 14:00:00,8878.0
-2013-04-28 15:00:00,8838.0
-2013-04-28 16:00:00,8820.0
-2013-04-28 17:00:00,8781.0
-2013-04-28 18:00:00,8836.0
-2013-04-28 19:00:00,8899.0
-2013-04-28 20:00:00,9036.0
-2013-04-28 21:00:00,9272.0
-2013-04-28 22:00:00,9806.0
-2013-04-28 23:00:00,9578.0
-2013-04-29 00:00:00,9001.0
-2013-04-27 01:00:00,9066.0
-2013-04-27 02:00:00,8537.0
-2013-04-27 03:00:00,8219.0
-2013-04-27 04:00:00,8010.0
-2013-04-27 05:00:00,7947.0
-2013-04-27 06:00:00,7995.0
-2013-04-27 07:00:00,8258.0
-2013-04-27 08:00:00,8354.0
-2013-04-27 09:00:00,8739.0
-2013-04-27 10:00:00,9102.0
-2013-04-27 11:00:00,9366.0
-2013-04-27 12:00:00,9505.0
-2013-04-27 13:00:00,9478.0
-2013-04-27 14:00:00,9439.0
-2013-04-27 15:00:00,9273.0
-2013-04-27 16:00:00,9187.0
-2013-04-27 17:00:00,9155.0
-2013-04-27 18:00:00,9093.0
-2013-04-27 19:00:00,9091.0
-2013-04-27 20:00:00,9076.0
-2013-04-27 21:00:00,9430.0
-2013-04-27 22:00:00,9762.0
-2013-04-27 23:00:00,9571.0
-2013-04-28 00:00:00,9075.0
-2013-04-26 01:00:00,9576.0
-2013-04-26 02:00:00,9113.0
-2013-04-26 03:00:00,8805.0
-2013-04-26 04:00:00,8661.0
-2013-04-26 05:00:00,8662.0
-2013-04-26 06:00:00,8898.0
-2013-04-26 07:00:00,9657.0
-2013-04-26 08:00:00,10404.0
-2013-04-26 09:00:00,10967.0
-2013-04-26 10:00:00,11067.0
-2013-04-26 11:00:00,11210.0
-2013-04-26 12:00:00,11275.0
-2013-04-26 13:00:00,11239.0
-2013-04-26 14:00:00,11201.0
-2013-04-26 15:00:00,11177.0
-2013-04-26 16:00:00,11012.0
-2013-04-26 17:00:00,10825.0
-2013-04-26 18:00:00,10649.0
-2013-04-26 19:00:00,10448.0
-2013-04-26 20:00:00,10228.0
-2013-04-26 21:00:00,10331.0
-2013-04-26 22:00:00,10744.0
-2013-04-26 23:00:00,10474.0
-2013-04-27 00:00:00,9861.0
-2013-04-25 01:00:00,9666.0
-2013-04-25 02:00:00,9194.0
-2013-04-25 03:00:00,8924.0
-2013-04-25 04:00:00,8755.0
-2013-04-25 05:00:00,8751.0
-2013-04-25 06:00:00,8994.0
-2013-04-25 07:00:00,9686.0
-2013-04-25 08:00:00,10515.0
-2013-04-25 09:00:00,11152.0
-2013-04-25 10:00:00,11383.0
-2013-04-25 11:00:00,11510.0
-2013-04-25 12:00:00,11585.0
-2013-04-25 13:00:00,11559.0
-2013-04-25 14:00:00,11454.0
-2013-04-25 15:00:00,11378.0
-2013-04-25 16:00:00,11238.0
-2013-04-25 17:00:00,11075.0
-2013-04-25 18:00:00,10904.0
-2013-04-25 19:00:00,10731.0
-2013-04-25 20:00:00,10592.0
-2013-04-25 21:00:00,10825.0
-2013-04-25 22:00:00,11376.0
-2013-04-25 23:00:00,11073.0
-2013-04-26 00:00:00,10328.0
-2013-04-24 01:00:00,9638.0
-2013-04-24 02:00:00,9177.0
-2013-04-24 03:00:00,8894.0
-2013-04-24 04:00:00,8735.0
-2013-04-24 05:00:00,8728.0
-2013-04-24 06:00:00,8948.0
-2013-04-24 07:00:00,9667.0
-2013-04-24 08:00:00,10653.0
-2013-04-24 09:00:00,11403.0
-2013-04-24 10:00:00,11751.0
-2013-04-24 11:00:00,11829.0
-2013-04-24 12:00:00,11747.0
-2013-04-24 13:00:00,11607.0
-2013-04-24 14:00:00,11484.0
-2013-04-24 15:00:00,11424.0
-2013-04-24 16:00:00,11268.0
-2013-04-24 17:00:00,11094.0
-2013-04-24 18:00:00,10955.0
-2013-04-24 19:00:00,10803.0
-2013-04-24 20:00:00,10595.0
-2013-04-24 21:00:00,10886.0
-2013-04-24 22:00:00,11415.0
-2013-04-24 23:00:00,11102.0
-2013-04-25 00:00:00,10372.0
-2013-04-23 01:00:00,9188.0
-2013-04-23 02:00:00,8680.0
-2013-04-23 03:00:00,8360.0
-2013-04-23 04:00:00,8190.0
-2013-04-23 05:00:00,8152.0
-2013-04-23 06:00:00,8356.0
-2013-04-23 07:00:00,9084.0
-2013-04-23 08:00:00,9988.0
-2013-04-23 09:00:00,10652.0
-2013-04-23 10:00:00,11000.0
-2013-04-23 11:00:00,11151.0
-2013-04-23 12:00:00,11313.0
-2013-04-23 13:00:00,11391.0
-2013-04-23 14:00:00,11450.0
-2013-04-23 15:00:00,11587.0
-2013-04-23 16:00:00,11478.0
-2013-04-23 17:00:00,11414.0
-2013-04-23 18:00:00,11488.0
-2013-04-23 19:00:00,11579.0
-2013-04-23 20:00:00,11573.0
-2013-04-23 21:00:00,11724.0
-2013-04-23 22:00:00,11691.0
-2013-04-23 23:00:00,11201.0
-2013-04-24 00:00:00,10356.0
-2013-04-22 01:00:00,8938.0
-2013-04-22 02:00:00,8613.0
-2013-04-22 03:00:00,8407.0
-2013-04-22 04:00:00,8350.0
-2013-04-22 05:00:00,8353.0
-2013-04-22 06:00:00,8677.0
-2013-04-22 07:00:00,9493.0
-2013-04-22 08:00:00,10332.0
-2013-04-22 09:00:00,10942.0
-2013-04-22 10:00:00,11117.0
-2013-04-22 11:00:00,11138.0
-2013-04-22 12:00:00,11200.0
-2013-04-22 13:00:00,11216.0
-2013-04-22 14:00:00,11139.0
-2013-04-22 15:00:00,11180.0
-2013-04-22 16:00:00,11100.0
-2013-04-22 17:00:00,10916.0
-2013-04-22 18:00:00,10769.0
-2013-04-22 19:00:00,10636.0
-2013-04-22 20:00:00,10454.0
-2013-04-22 21:00:00,10760.0
-2013-04-22 22:00:00,11179.0
-2013-04-22 23:00:00,10755.0
-2013-04-23 00:00:00,9955.0
-2013-04-21 01:00:00,9481.0
-2013-04-21 02:00:00,9126.0
-2013-04-21 03:00:00,8851.0
-2013-04-21 04:00:00,8697.0
-2013-04-21 05:00:00,8610.0
-2013-04-21 06:00:00,8683.0
-2013-04-21 07:00:00,8791.0
-2013-04-21 08:00:00,8764.0
-2013-04-21 09:00:00,8934.0
-2013-04-21 10:00:00,9213.0
-2013-04-21 11:00:00,9252.0
-2013-04-21 12:00:00,9366.0
-2013-04-21 13:00:00,9349.0
-2013-04-21 14:00:00,9284.0
-2013-04-21 15:00:00,9235.0
-2013-04-21 16:00:00,9126.0
-2013-04-21 17:00:00,9047.0
-2013-04-21 18:00:00,9058.0
-2013-04-21 19:00:00,9103.0
-2013-04-21 20:00:00,9249.0
-2013-04-21 21:00:00,9662.0
-2013-04-21 22:00:00,10228.0
-2013-04-21 23:00:00,10027.0
-2013-04-22 00:00:00,9502.0
-2013-04-20 01:00:00,10280.0
-2013-04-20 02:00:00,9729.0
-2013-04-20 03:00:00,9393.0
-2013-04-20 04:00:00,9181.0
-2013-04-20 05:00:00,9081.0
-2013-04-20 06:00:00,9146.0
-2013-04-20 07:00:00,9381.0
-2013-04-20 08:00:00,9561.0
-2013-04-20 09:00:00,9823.0
-2013-04-20 10:00:00,10133.0
-2013-04-20 11:00:00,10290.0
-2013-04-20 12:00:00,10349.0
-2013-04-20 13:00:00,10281.0
-2013-04-20 14:00:00,10118.0
-2013-04-20 15:00:00,9916.0
-2013-04-20 16:00:00,9689.0
-2013-04-20 17:00:00,9577.0
-2013-04-20 18:00:00,9514.0
-2013-04-20 19:00:00,9551.0
-2013-04-20 20:00:00,9581.0
-2013-04-20 21:00:00,9991.0
-2013-04-20 22:00:00,10576.0
-2013-04-20 23:00:00,10403.0
-2013-04-21 00:00:00,10006.0
-2013-04-19 01:00:00,9836.0
-2013-04-19 02:00:00,9304.0
-2013-04-19 03:00:00,9073.0
-2013-04-19 04:00:00,8938.0
-2013-04-19 05:00:00,8930.0
-2013-04-19 06:00:00,9161.0
-2013-04-19 07:00:00,9857.0
-2013-04-19 08:00:00,10879.0
-2013-04-19 09:00:00,11623.0
-2013-04-19 10:00:00,11949.0
-2013-04-19 11:00:00,12057.0
-2013-04-19 12:00:00,12261.0
-2013-04-19 13:00:00,12245.0
-2013-04-19 14:00:00,12186.0
-2013-04-19 15:00:00,12166.0
-2013-04-19 16:00:00,12068.0
-2013-04-19 17:00:00,11953.0
-2013-04-19 18:00:00,11915.0
-2013-04-19 19:00:00,11758.0
-2013-04-19 20:00:00,11695.0
-2013-04-19 21:00:00,11928.0
-2013-04-19 22:00:00,12012.0
-2013-04-19 23:00:00,11665.0
-2013-04-20 00:00:00,10939.0
-2013-04-18 01:00:00,9869.0
-2013-04-18 02:00:00,9372.0
-2013-04-18 03:00:00,9091.0
-2013-04-18 04:00:00,8916.0
-2013-04-18 05:00:00,8880.0
-2013-04-18 06:00:00,9118.0
-2013-04-18 07:00:00,9762.0
-2013-04-18 08:00:00,10783.0
-2013-04-18 09:00:00,11556.0
-2013-04-18 10:00:00,11694.0
-2013-04-18 11:00:00,11876.0
-2013-04-18 12:00:00,12003.0
-2013-04-18 13:00:00,11924.0
-2013-04-18 14:00:00,11924.0
-2013-04-18 15:00:00,11917.0
-2013-04-18 16:00:00,11778.0
-2013-04-18 17:00:00,11658.0
-2013-04-18 18:00:00,11612.0
-2013-04-18 19:00:00,11660.0
-2013-04-18 20:00:00,11601.0
-2013-04-18 21:00:00,11844.0
-2013-04-18 22:00:00,11847.0
-2013-04-18 23:00:00,11323.0
-2013-04-19 00:00:00,10542.0
-2013-04-17 01:00:00,9544.0
-2013-04-17 02:00:00,9050.0
-2013-04-17 03:00:00,8768.0
-2013-04-17 04:00:00,8600.0
-2013-04-17 05:00:00,8600.0
-2013-04-17 06:00:00,8826.0
-2013-04-17 07:00:00,9539.0
-2013-04-17 08:00:00,10470.0
-2013-04-17 09:00:00,11186.0
-2013-04-17 10:00:00,11566.0
-2013-04-17 11:00:00,11829.0
-2013-04-17 12:00:00,11950.0
-2013-04-17 13:00:00,12021.0
-2013-04-17 14:00:00,12070.0
-2013-04-17 15:00:00,12124.0
-2013-04-17 16:00:00,12097.0
-2013-04-17 17:00:00,12196.0
-2013-04-17 18:00:00,12255.0
-2013-04-17 19:00:00,12236.0
-2013-04-17 20:00:00,11978.0
-2013-04-17 21:00:00,12073.0
-2013-04-17 22:00:00,11901.0
-2013-04-17 23:00:00,11389.0
-2013-04-18 00:00:00,10584.0
-2013-04-16 01:00:00,9337.0
-2013-04-16 02:00:00,8816.0
-2013-04-16 03:00:00,8545.0
-2013-04-16 04:00:00,8416.0
-2013-04-16 05:00:00,8385.0
-2013-04-16 06:00:00,8593.0
-2013-04-16 07:00:00,9331.0
-2013-04-16 08:00:00,10287.0
-2013-04-16 09:00:00,10939.0
-2013-04-16 10:00:00,11073.0
-2013-04-16 11:00:00,11171.0
-2013-04-16 12:00:00,11241.0
-2013-04-16 13:00:00,11223.0
-2013-04-16 14:00:00,11192.0
-2013-04-16 15:00:00,11176.0
-2013-04-16 16:00:00,11091.0
-2013-04-16 17:00:00,10937.0
-2013-04-16 18:00:00,10848.0
-2013-04-16 19:00:00,10830.0
-2013-04-16 20:00:00,10805.0
-2013-04-16 21:00:00,11260.0
-2013-04-16 22:00:00,11472.0
-2013-04-16 23:00:00,11020.0
-2013-04-17 00:00:00,10287.0
-2013-04-15 01:00:00,8757.0
-2013-04-15 02:00:00,8397.0
-2013-04-15 03:00:00,8136.0
-2013-04-15 04:00:00,7992.0
-2013-04-15 05:00:00,7997.0
-2013-04-15 06:00:00,8148.0
-2013-04-15 07:00:00,8924.0
-2013-04-15 08:00:00,9982.0
-2013-04-15 09:00:00,10687.0
-2013-04-15 10:00:00,11062.0
-2013-04-15 11:00:00,11198.0
-2013-04-15 12:00:00,11311.0
-2013-04-15 13:00:00,11328.0
-2013-04-15 14:00:00,11329.0
-2013-04-15 15:00:00,11370.0
-2013-04-15 16:00:00,11264.0
-2013-04-15 17:00:00,11193.0
-2013-04-15 18:00:00,11252.0
-2013-04-15 19:00:00,11246.0
-2013-04-15 20:00:00,11230.0
-2013-04-15 21:00:00,11497.0
-2013-04-15 22:00:00,11400.0
-2013-04-15 23:00:00,10895.0
-2013-04-16 00:00:00,10063.0
-2013-04-14 01:00:00,9397.0
-2013-04-14 02:00:00,8930.0
-2013-04-14 03:00:00,8686.0
-2013-04-14 04:00:00,8460.0
-2013-04-14 05:00:00,8456.0
-2013-04-14 06:00:00,8466.0
-2013-04-14 07:00:00,8661.0
-2013-04-14 08:00:00,8756.0
-2013-04-14 09:00:00,8863.0
-2013-04-14 10:00:00,9146.0
-2013-04-14 11:00:00,9489.0
-2013-04-14 12:00:00,9537.0
-2013-04-14 13:00:00,9425.0
-2013-04-14 14:00:00,9329.0
-2013-04-14 15:00:00,9231.0
-2013-04-14 16:00:00,9128.0
-2013-04-14 17:00:00,9059.0
-2013-04-14 18:00:00,9074.0
-2013-04-14 19:00:00,9185.0
-2013-04-14 20:00:00,9266.0
-2013-04-14 21:00:00,9827.0
-2013-04-14 22:00:00,10213.0
-2013-04-14 23:00:00,9925.0
-2013-04-15 00:00:00,9331.0
-2013-04-13 01:00:00,10025.0
-2013-04-13 02:00:00,9471.0
-2013-04-13 03:00:00,9139.0
-2013-04-13 04:00:00,8948.0
-2013-04-13 05:00:00,8916.0
-2013-04-13 06:00:00,8927.0
-2013-04-13 07:00:00,9227.0
-2013-04-13 08:00:00,9592.0
-2013-04-13 09:00:00,9905.0
-2013-04-13 10:00:00,10392.0
-2013-04-13 11:00:00,10603.0
-2013-04-13 12:00:00,10699.0
-2013-04-13 13:00:00,10667.0
-2013-04-13 14:00:00,10504.0
-2013-04-13 15:00:00,10208.0
-2013-04-13 16:00:00,10026.0
-2013-04-13 17:00:00,9848.0
-2013-04-13 18:00:00,9720.0
-2013-04-13 19:00:00,9710.0
-2013-04-13 20:00:00,9800.0
-2013-04-13 21:00:00,10227.0
-2013-04-13 22:00:00,10608.0
-2013-04-13 23:00:00,10435.0
-2013-04-14 00:00:00,9905.0
-2013-04-12 01:00:00,9949.0
-2013-04-12 02:00:00,9407.0
-2013-04-12 03:00:00,9103.0
-2013-04-12 04:00:00,8931.0
-2013-04-12 05:00:00,8972.0
-2013-04-12 06:00:00,9241.0
-2013-04-12 07:00:00,9924.0
-2013-04-12 08:00:00,11012.0
-2013-04-12 09:00:00,11620.0
-2013-04-12 10:00:00,11945.0
-2013-04-12 11:00:00,12023.0
-2013-04-12 12:00:00,12057.0
-2013-04-12 13:00:00,11915.0
-2013-04-12 14:00:00,11799.0
-2013-04-12 15:00:00,11823.0
-2013-04-12 16:00:00,11658.0
-2013-04-12 17:00:00,11658.0
-2013-04-12 18:00:00,11675.0
-2013-04-12 19:00:00,11643.0
-2013-04-12 20:00:00,11663.0
-2013-04-12 21:00:00,11852.0
-2013-04-12 22:00:00,11794.0
-2013-04-12 23:00:00,11468.0
-2013-04-13 00:00:00,10734.0
-2013-04-11 01:00:00,10222.0
-2013-04-11 02:00:00,9787.0
-2013-04-11 03:00:00,9466.0
-2013-04-11 04:00:00,9229.0
-2013-04-11 05:00:00,9139.0
-2013-04-11 06:00:00,9315.0
-2013-04-11 07:00:00,10013.0
-2013-04-11 08:00:00,11122.0
-2013-04-11 09:00:00,11767.0
-2013-04-11 10:00:00,12001.0
-2013-04-11 11:00:00,12128.0
-2013-04-11 12:00:00,12204.0
-2013-04-11 13:00:00,12119.0
-2013-04-11 14:00:00,12058.0
-2013-04-11 15:00:00,11997.0
-2013-04-11 16:00:00,11856.0
-2013-04-11 17:00:00,11729.0
-2013-04-11 18:00:00,11724.0
-2013-04-11 19:00:00,11732.0
-2013-04-11 20:00:00,11742.0
-2013-04-11 21:00:00,11928.0
-2013-04-11 22:00:00,11908.0
-2013-04-11 23:00:00,11467.0
-2013-04-12 00:00:00,10687.0
-2013-04-10 01:00:00,9710.0
-2013-04-10 02:00:00,9233.0
-2013-04-10 03:00:00,8933.0
-2013-04-10 04:00:00,8743.0
-2013-04-10 05:00:00,8743.0
-2013-04-10 06:00:00,9011.0
-2013-04-10 07:00:00,9776.0
-2013-04-10 08:00:00,10985.0
-2013-04-10 09:00:00,11812.0
-2013-04-10 10:00:00,12083.0
-2013-04-10 11:00:00,11936.0
-2013-04-10 12:00:00,12113.0
-2013-04-10 13:00:00,12078.0
-2013-04-10 14:00:00,12060.0
-2013-04-10 15:00:00,12133.0
-2013-04-10 16:00:00,12016.0
-2013-04-10 17:00:00,11936.0
-2013-04-10 18:00:00,11923.0
-2013-04-10 19:00:00,11955.0
-2013-04-10 20:00:00,11874.0
-2013-04-10 21:00:00,12184.0
-2013-04-10 22:00:00,12153.0
-2013-04-10 23:00:00,11675.0
-2013-04-11 00:00:00,10911.0
-2013-04-09 01:00:00,9322.0
-2013-04-09 02:00:00,8838.0
-2013-04-09 03:00:00,8595.0
-2013-04-09 04:00:00,8462.0
-2013-04-09 05:00:00,8473.0
-2013-04-09 06:00:00,8701.0
-2013-04-09 07:00:00,9425.0
-2013-04-09 08:00:00,10477.0
-2013-04-09 09:00:00,11227.0
-2013-04-09 10:00:00,11576.0
-2013-04-09 11:00:00,11730.0
-2013-04-09 12:00:00,11808.0
-2013-04-09 13:00:00,11742.0
-2013-04-09 14:00:00,11571.0
-2013-04-09 15:00:00,11531.0
-2013-04-09 16:00:00,11364.0
-2013-04-09 17:00:00,11241.0
-2013-04-09 18:00:00,11178.0
-2013-04-09 19:00:00,11182.0
-2013-04-09 20:00:00,11219.0
-2013-04-09 21:00:00,11719.0
-2013-04-09 22:00:00,11801.0
-2013-04-09 23:00:00,11332.0
-2013-04-10 00:00:00,10504.0
-2013-04-08 01:00:00,8857.0
-2013-04-08 02:00:00,8448.0
-2013-04-08 03:00:00,8275.0
-2013-04-08 04:00:00,8172.0
-2013-04-08 05:00:00,8204.0
-2013-04-08 06:00:00,8457.0
-2013-04-08 07:00:00,9244.0
-2013-04-08 08:00:00,10483.0
-2013-04-08 09:00:00,11205.0
-2013-04-08 10:00:00,11391.0
-2013-04-08 11:00:00,11480.0
-2013-04-08 12:00:00,11482.0
-2013-04-08 13:00:00,11408.0
-2013-04-08 14:00:00,11328.0
-2013-04-08 15:00:00,11247.0
-2013-04-08 16:00:00,11090.0
-2013-04-08 17:00:00,10959.0
-2013-04-08 18:00:00,10829.0
-2013-04-08 19:00:00,10673.0
-2013-04-08 20:00:00,10551.0
-2013-04-08 21:00:00,11038.0
-2013-04-08 22:00:00,11225.0
-2013-04-08 23:00:00,10793.0
-2013-04-09 00:00:00,10038.0
-2013-04-07 01:00:00,8869.0
-2013-04-07 02:00:00,8452.0
-2013-04-07 03:00:00,8119.0
-2013-04-07 04:00:00,7969.0
-2013-04-07 05:00:00,7850.0
-2013-04-07 06:00:00,7891.0
-2013-04-07 07:00:00,7974.0
-2013-04-07 08:00:00,8145.0
-2013-04-07 09:00:00,8227.0
-2013-04-07 10:00:00,8495.0
-2013-04-07 11:00:00,8715.0
-2013-04-07 12:00:00,8830.0
-2013-04-07 13:00:00,8852.0
-2013-04-07 14:00:00,8890.0
-2013-04-07 15:00:00,8814.0
-2013-04-07 16:00:00,8792.0
-2013-04-07 17:00:00,8769.0
-2013-04-07 18:00:00,8819.0
-2013-04-07 19:00:00,8907.0
-2013-04-07 20:00:00,9097.0
-2013-04-07 21:00:00,9701.0
-2013-04-07 22:00:00,10148.0
-2013-04-07 23:00:00,9894.0
-2013-04-08 00:00:00,9369.0
-2013-04-06 01:00:00,9854.0
-2013-04-06 02:00:00,9408.0
-2013-04-06 03:00:00,9102.0
-2013-04-06 04:00:00,8945.0
-2013-04-06 05:00:00,8866.0
-2013-04-06 06:00:00,8880.0
-2013-04-06 07:00:00,9164.0
-2013-04-06 08:00:00,9521.0
-2013-04-06 09:00:00,9763.0
-2013-04-06 10:00:00,10151.0
-2013-04-06 11:00:00,10269.0
-2013-04-06 12:00:00,10354.0
-2013-04-06 13:00:00,10238.0
-2013-04-06 14:00:00,10020.0
-2013-04-06 15:00:00,9809.0
-2013-04-06 16:00:00,9635.0
-2013-04-06 17:00:00,9523.0
-2013-04-06 18:00:00,9597.0
-2013-04-06 19:00:00,9659.0
-2013-04-06 20:00:00,9737.0
-2013-04-06 21:00:00,10210.0
-2013-04-06 22:00:00,10226.0
-2013-04-06 23:00:00,9978.0
-2013-04-07 00:00:00,9454.0
-2013-04-05 01:00:00,9694.0
-2013-04-05 02:00:00,9167.0
-2013-04-05 03:00:00,8923.0
-2013-04-05 04:00:00,8719.0
-2013-04-05 05:00:00,8782.0
-2013-04-05 06:00:00,9034.0
-2013-04-05 07:00:00,9772.0
-2013-04-05 08:00:00,10730.0
-2013-04-05 09:00:00,11229.0
-2013-04-05 10:00:00,11433.0
-2013-04-05 11:00:00,11444.0
-2013-04-05 12:00:00,11463.0
-2013-04-05 13:00:00,11371.0
-2013-04-05 14:00:00,11317.0
-2013-04-05 15:00:00,11241.0
-2013-04-05 16:00:00,11055.0
-2013-04-05 17:00:00,10815.0
-2013-04-05 18:00:00,10685.0
-2013-04-05 19:00:00,10619.0
-2013-04-05 20:00:00,10783.0
-2013-04-05 21:00:00,11374.0
-2013-04-05 22:00:00,11539.0
-2013-04-05 23:00:00,11275.0
-2013-04-06 00:00:00,10613.0
-2013-04-04 01:00:00,10172.0
-2013-04-04 02:00:00,9691.0
-2013-04-04 03:00:00,9415.0
-2013-04-04 04:00:00,9292.0
-2013-04-04 05:00:00,9310.0
-2013-04-04 06:00:00,9569.0
-2013-04-04 07:00:00,10325.0
-2013-04-04 08:00:00,11330.0
-2013-04-04 09:00:00,11742.0
-2013-04-04 10:00:00,11836.0
-2013-04-04 11:00:00,11681.0
-2013-04-04 12:00:00,11732.0
-2013-04-04 13:00:00,11601.0
-2013-04-04 14:00:00,11434.0
-2013-04-04 15:00:00,11395.0
-2013-04-04 16:00:00,11205.0
-2013-04-04 17:00:00,11024.0
-2013-04-04 18:00:00,10847.0
-2013-04-04 19:00:00,10719.0
-2013-04-04 20:00:00,10753.0
-2013-04-04 21:00:00,11273.0
-2013-04-04 22:00:00,11427.0
-2013-04-04 23:00:00,11059.0
-2013-04-05 00:00:00,10389.0
-2013-04-03 01:00:00,10157.0
-2013-04-03 02:00:00,9689.0
-2013-04-03 03:00:00,9431.0
-2013-04-03 04:00:00,9312.0
-2013-04-03 05:00:00,9351.0
-2013-04-03 06:00:00,9608.0
-2013-04-03 07:00:00,10323.0
-2013-04-03 08:00:00,11373.0
-2013-04-03 09:00:00,11810.0
-2013-04-03 10:00:00,11859.0
-2013-04-03 11:00:00,11820.0
-2013-04-03 12:00:00,11805.0
-2013-04-03 13:00:00,11717.0
-2013-04-03 14:00:00,11620.0
-2013-04-03 15:00:00,11552.0
-2013-04-03 16:00:00,11407.0
-2013-04-03 17:00:00,11224.0
-2013-04-03 18:00:00,11073.0
-2013-04-03 19:00:00,11085.0
-2013-04-03 20:00:00,11128.0
-2013-04-03 21:00:00,11755.0
-2013-04-03 22:00:00,11973.0
-2013-04-03 23:00:00,11606.0
-2013-04-04 00:00:00,10884.0
-2013-04-02 01:00:00,10171.0
-2013-04-02 02:00:00,9729.0
-2013-04-02 03:00:00,9469.0
-2013-04-02 04:00:00,9366.0
-2013-04-02 05:00:00,9379.0
-2013-04-02 06:00:00,9648.0
-2013-04-02 07:00:00,10372.0
-2013-04-02 08:00:00,11449.0
-2013-04-02 09:00:00,11854.0
-2013-04-02 10:00:00,11954.0
-2013-04-02 11:00:00,11925.0
-2013-04-02 12:00:00,11901.0
-2013-04-02 13:00:00,11818.0
-2013-04-02 14:00:00,11732.0
-2013-04-02 15:00:00,11656.0
-2013-04-02 16:00:00,11486.0
-2013-04-02 17:00:00,11297.0
-2013-04-02 18:00:00,11217.0
-2013-04-02 19:00:00,11152.0
-2013-04-02 20:00:00,11128.0
-2013-04-02 21:00:00,11741.0
-2013-04-02 22:00:00,11956.0
-2013-04-02 23:00:00,11586.0
-2013-04-03 00:00:00,10869.0
-2013-04-01 01:00:00,8983.0
-2013-04-01 02:00:00,8663.0
-2013-04-01 03:00:00,8503.0
-2013-04-01 04:00:00,8451.0
-2013-04-01 05:00:00,8542.0
-2013-04-01 06:00:00,8861.0
-2013-04-01 07:00:00,9688.0
-2013-04-01 08:00:00,10744.0
-2013-04-01 09:00:00,11325.0
-2013-04-01 10:00:00,11601.0
-2013-04-01 11:00:00,11732.0
-2013-04-01 12:00:00,11854.0
-2013-04-01 13:00:00,11774.0
-2013-04-01 14:00:00,11702.0
-2013-04-01 15:00:00,11648.0
-2013-04-01 16:00:00,11482.0
-2013-04-01 17:00:00,11236.0
-2013-04-01 18:00:00,11153.0
-2013-04-01 19:00:00,11112.0
-2013-04-01 20:00:00,11136.0
-2013-04-01 21:00:00,11761.0
-2013-04-01 22:00:00,11992.0
-2013-04-01 23:00:00,11575.0
-2013-04-02 00:00:00,10865.0
-2013-03-31 01:00:00,8918.0
-2013-03-31 02:00:00,8477.0
-2013-03-31 03:00:00,8140.0
-2013-03-31 04:00:00,7990.0
-2013-03-31 05:00:00,7907.0
-2013-03-31 06:00:00,7923.0
-2013-03-31 07:00:00,8006.0
-2013-03-31 08:00:00,8235.0
-2013-03-31 09:00:00,8298.0
-2013-03-31 10:00:00,8596.0
-2013-03-31 11:00:00,8729.0
-2013-03-31 12:00:00,8787.0
-2013-03-31 13:00:00,8723.0
-2013-03-31 14:00:00,8707.0
-2013-03-31 15:00:00,8585.0
-2013-03-31 16:00:00,8517.0
-2013-03-31 17:00:00,8409.0
-2013-03-31 18:00:00,8437.0
-2013-03-31 19:00:00,8511.0
-2013-03-31 20:00:00,8759.0
-2013-03-31 21:00:00,9561.0
-2013-03-31 22:00:00,9923.0
-2013-03-31 23:00:00,9799.0
-2013-04-01 00:00:00,9403.0
-2013-03-30 01:00:00,9361.0
-2013-03-30 02:00:00,8931.0
-2013-03-30 03:00:00,8749.0
-2013-03-30 04:00:00,8557.0
-2013-03-30 05:00:00,8542.0
-2013-03-30 06:00:00,8591.0
-2013-03-30 07:00:00,8829.0
-2013-03-30 08:00:00,9223.0
-2013-03-30 09:00:00,9318.0
-2013-03-30 10:00:00,9636.0
-2013-03-30 11:00:00,9671.0
-2013-03-30 12:00:00,9700.0
-2013-03-30 13:00:00,9605.0
-2013-03-30 14:00:00,9477.0
-2013-03-30 15:00:00,9335.0
-2013-03-30 16:00:00,9242.0
-2013-03-30 17:00:00,9155.0
-2013-03-30 18:00:00,9170.0
-2013-03-30 19:00:00,9307.0
-2013-03-30 20:00:00,9516.0
-2013-03-30 21:00:00,10072.0
-2013-03-30 22:00:00,10049.0
-2013-03-30 23:00:00,9831.0
-2013-03-31 00:00:00,9447.0
-2013-03-29 01:00:00,9776.0
-2013-03-29 02:00:00,9282.0
-2013-03-29 03:00:00,8986.0
-2013-03-29 04:00:00,8800.0
-2013-03-29 05:00:00,8757.0
-2013-03-29 06:00:00,8956.0
-2013-03-29 07:00:00,9471.0
-2013-03-29 08:00:00,10121.0
-2013-03-29 09:00:00,10359.0
-2013-03-29 10:00:00,10522.0
-2013-03-29 11:00:00,10588.0
-2013-03-29 12:00:00,10569.0
-2013-03-29 13:00:00,10483.0
-2013-03-29 14:00:00,10367.0
-2013-03-29 15:00:00,10254.0
-2013-03-29 16:00:00,10082.0
-2013-03-29 17:00:00,9925.0
-2013-03-29 18:00:00,9840.0
-2013-03-29 19:00:00,9823.0
-2013-03-29 20:00:00,9854.0
-2013-03-29 21:00:00,10438.0
-2013-03-29 22:00:00,10629.0
-2013-03-29 23:00:00,10454.0
-2013-03-30 00:00:00,9949.0
-2013-03-28 01:00:00,10296.0
-2013-03-28 02:00:00,9818.0
-2013-03-28 03:00:00,9577.0
-2013-03-28 04:00:00,9447.0
-2013-03-28 05:00:00,9449.0
-2013-03-28 06:00:00,9702.0
-2013-03-28 07:00:00,10389.0
-2013-03-28 08:00:00,11258.0
-2013-03-28 09:00:00,11612.0
-2013-03-28 10:00:00,11735.0
-2013-03-28 11:00:00,11687.0
-2013-03-28 12:00:00,11613.0
-2013-03-28 13:00:00,11508.0
-2013-03-28 14:00:00,11407.0
-2013-03-28 15:00:00,11342.0
-2013-03-28 16:00:00,11109.0
-2013-03-28 17:00:00,10900.0
-2013-03-28 18:00:00,10753.0
-2013-03-28 19:00:00,10667.0
-2013-03-28 20:00:00,10630.0
-2013-03-28 21:00:00,11266.0
-2013-03-28 22:00:00,11360.0
-2013-03-28 23:00:00,11046.0
-2013-03-29 00:00:00,10412.0
-2013-03-27 01:00:00,10279.0
-2013-03-27 02:00:00,9803.0
-2013-03-27 03:00:00,9497.0
-2013-03-27 04:00:00,9348.0
-2013-03-27 05:00:00,9346.0
-2013-03-27 06:00:00,9583.0
-2013-03-27 07:00:00,10237.0
-2013-03-27 08:00:00,11198.0
-2013-03-27 09:00:00,11641.0
-2013-03-27 10:00:00,11926.0
-2013-03-27 11:00:00,11926.0
-2013-03-27 12:00:00,11944.0
-2013-03-27 13:00:00,11885.0
-2013-03-27 14:00:00,11897.0
-2013-03-27 15:00:00,11864.0
-2013-03-27 16:00:00,11740.0
-2013-03-27 17:00:00,11595.0
-2013-03-27 18:00:00,11527.0
-2013-03-27 19:00:00,11491.0
-2013-03-27 20:00:00,11512.0
-2013-03-27 21:00:00,12006.0
-2013-03-27 22:00:00,11971.0
-2013-03-27 23:00:00,11592.0
-2013-03-28 00:00:00,10944.0
-2013-03-26 01:00:00,10469.0
-2013-03-26 02:00:00,10002.0
-2013-03-26 03:00:00,9686.0
-2013-03-26 04:00:00,9528.0
-2013-03-26 05:00:00,9527.0
-2013-03-26 06:00:00,9751.0
-2013-03-26 07:00:00,10399.0
-2013-03-26 08:00:00,11396.0
-2013-03-26 09:00:00,11801.0
-2013-03-26 10:00:00,12074.0
-2013-03-26 11:00:00,12113.0
-2013-03-26 12:00:00,12034.0
-2013-03-26 13:00:00,11955.0
-2013-03-26 14:00:00,11925.0
-2013-03-26 15:00:00,11871.0
-2013-03-26 16:00:00,11773.0
-2013-03-26 17:00:00,11664.0
-2013-03-26 18:00:00,11637.0
-2013-03-26 19:00:00,11629.0
-2013-03-26 20:00:00,11600.0
-2013-03-26 21:00:00,12059.0
-2013-03-26 22:00:00,12007.0
-2013-03-26 23:00:00,11641.0
-2013-03-27 00:00:00,10934.0
-2013-03-25 01:00:00,10037.0
-2013-03-25 02:00:00,9682.0
-2013-03-25 03:00:00,9474.0
-2013-03-25 04:00:00,9398.0
-2013-03-25 05:00:00,9415.0
-2013-03-25 06:00:00,9713.0
-2013-03-25 07:00:00,10392.0
-2013-03-25 08:00:00,11478.0
-2013-03-25 09:00:00,11990.0
-2013-03-25 10:00:00,12369.0
-2013-03-25 11:00:00,12512.0
-2013-03-25 12:00:00,12554.0
-2013-03-25 13:00:00,12514.0
-2013-03-25 14:00:00,12431.0
-2013-03-25 15:00:00,12402.0
-2013-03-25 16:00:00,12310.0
-2013-03-25 17:00:00,12219.0
-2013-03-25 18:00:00,12176.0
-2013-03-25 19:00:00,12225.0
-2013-03-25 20:00:00,12222.0
-2013-03-25 21:00:00,12598.0
-2013-03-25 22:00:00,12388.0
-2013-03-25 23:00:00,11932.0
-2013-03-26 00:00:00,11190.0
-2013-03-24 01:00:00,9799.0
-2013-03-24 02:00:00,9293.0
-2013-03-24 03:00:00,9102.0
-2013-03-24 04:00:00,8916.0
-2013-03-24 05:00:00,8860.0
-2013-03-24 06:00:00,8874.0
-2013-03-24 07:00:00,9046.0
-2013-03-24 08:00:00,9298.0
-2013-03-24 09:00:00,9443.0
-2013-03-24 10:00:00,9740.0
-2013-03-24 11:00:00,9986.0
-2013-03-24 12:00:00,10033.0
-2013-03-24 13:00:00,10203.0
-2013-03-24 14:00:00,10152.0
-2013-03-24 15:00:00,10200.0
-2013-03-24 16:00:00,10254.0
-2013-03-24 17:00:00,10373.0
-2013-03-24 18:00:00,10476.0
-2013-03-24 19:00:00,10732.0
-2013-03-24 20:00:00,11062.0
-2013-03-24 21:00:00,11448.0
-2013-03-24 22:00:00,11369.0
-2013-03-24 23:00:00,11089.0
-2013-03-25 00:00:00,10584.0
-2013-03-23 01:00:00,10376.0
-2013-03-23 02:00:00,9850.0
-2013-03-23 03:00:00,9554.0
-2013-03-23 04:00:00,9357.0
-2013-03-23 05:00:00,9333.0
-2013-03-23 06:00:00,9385.0
-2013-03-23 07:00:00,9697.0
-2013-03-23 08:00:00,10153.0
-2013-03-23 09:00:00,10330.0
-2013-03-23 10:00:00,10538.0
-2013-03-23 11:00:00,10634.0
-2013-03-23 12:00:00,10599.0
-2013-03-23 13:00:00,10505.0
-2013-03-23 14:00:00,10314.0
-2013-03-23 15:00:00,10087.0
-2013-03-23 16:00:00,9859.0
-2013-03-23 17:00:00,9750.0
-2013-03-23 18:00:00,9681.0
-2013-03-23 19:00:00,9835.0
-2013-03-23 20:00:00,10094.0
-2013-03-23 21:00:00,10906.0
-2013-03-23 22:00:00,10981.0
-2013-03-23 23:00:00,10815.0
-2013-03-24 00:00:00,10324.0
-2013-03-22 01:00:00,10777.0
-2013-03-22 02:00:00,10305.0
-2013-03-22 03:00:00,10036.0
-2013-03-22 04:00:00,9900.0
-2013-03-22 05:00:00,9928.0
-2013-03-22 06:00:00,10191.0
-2013-03-22 07:00:00,10891.0
-2013-03-22 08:00:00,12081.0
-2013-03-22 09:00:00,12457.0
-2013-03-22 10:00:00,12459.0
-2013-03-22 11:00:00,12421.0
-2013-03-22 12:00:00,12344.0
-2013-03-22 13:00:00,12176.0
-2013-03-22 14:00:00,12003.0
-2013-03-22 15:00:00,11884.0
-2013-03-22 16:00:00,11603.0
-2013-03-22 17:00:00,11359.0
-2013-03-22 18:00:00,11189.0
-2013-03-22 19:00:00,11112.0
-2013-03-22 20:00:00,11184.0
-2013-03-22 21:00:00,11869.0
-2013-03-22 22:00:00,11899.0
-2013-03-22 23:00:00,11658.0
-2013-03-23 00:00:00,11042.0
-2013-03-21 01:00:00,11351.0
-2013-03-21 02:00:00,10797.0
-2013-03-21 03:00:00,10542.0
-2013-03-21 04:00:00,10395.0
-2013-03-21 05:00:00,10398.0
-2013-03-21 06:00:00,10649.0
-2013-03-21 07:00:00,11360.0
-2013-03-21 08:00:00,12559.0
-2013-03-21 09:00:00,12973.0
-2013-03-21 10:00:00,13002.0
-2013-03-21 11:00:00,12912.0
-2013-03-21 12:00:00,12866.0
-2013-03-21 13:00:00,12660.0
-2013-03-21 14:00:00,12498.0
-2013-03-21 15:00:00,12394.0
-2013-03-21 16:00:00,12152.0
-2013-03-21 17:00:00,11916.0
-2013-03-21 18:00:00,11786.0
-2013-03-21 19:00:00,11715.0
-2013-03-21 20:00:00,11790.0
-2013-03-21 21:00:00,12526.0
-2013-03-21 22:00:00,12616.0
-2013-03-21 23:00:00,12237.0
-2013-03-22 00:00:00,11501.0
-2013-03-20 01:00:00,11116.0
-2013-03-20 02:00:00,10633.0
-2013-03-20 03:00:00,10383.0
-2013-03-20 04:00:00,10295.0
-2013-03-20 05:00:00,10341.0
-2013-03-20 06:00:00,10631.0
-2013-03-20 07:00:00,11436.0
-2013-03-20 08:00:00,12681.0
-2013-03-20 09:00:00,13146.0
-2013-03-20 10:00:00,13230.0
-2013-03-20 11:00:00,13255.0
-2013-03-20 12:00:00,13249.0
-2013-03-20 13:00:00,13150.0
-2013-03-20 14:00:00,13077.0
-2013-03-20 15:00:00,12998.0
-2013-03-20 16:00:00,12838.0
-2013-03-20 17:00:00,12730.0
-2013-03-20 18:00:00,12708.0
-2013-03-20 19:00:00,12799.0
-2013-03-20 20:00:00,12997.0
-2013-03-20 21:00:00,13514.0
-2013-03-20 22:00:00,13353.0
-2013-03-20 23:00:00,12885.0
-2013-03-21 00:00:00,12085.0
-2013-03-19 01:00:00,11261.0
-2013-03-19 02:00:00,10780.0
-2013-03-19 03:00:00,10545.0
-2013-03-19 04:00:00,10406.0
-2013-03-19 05:00:00,10421.0
-2013-03-19 06:00:00,10699.0
-2013-03-19 07:00:00,11437.0
-2013-03-19 08:00:00,12684.0
-2013-03-19 09:00:00,13214.0
-2013-03-19 10:00:00,13276.0
-2013-03-19 11:00:00,13227.0
-2013-03-19 12:00:00,13209.0
-2013-03-19 13:00:00,13074.0
-2013-03-19 14:00:00,12960.0
-2013-03-19 15:00:00,12863.0
-2013-03-19 16:00:00,12626.0
-2013-03-19 17:00:00,12368.0
-2013-03-19 18:00:00,12239.0
-2013-03-19 19:00:00,12189.0
-2013-03-19 20:00:00,12276.0
-2013-03-19 21:00:00,13007.0
-2013-03-19 22:00:00,13074.0
-2013-03-19 23:00:00,12639.0
-2013-03-20 00:00:00,11841.0
-2013-03-18 01:00:00,10168.0
-2013-03-18 02:00:00,9774.0
-2013-03-18 03:00:00,9602.0
-2013-03-18 04:00:00,9480.0
-2013-03-18 05:00:00,9529.0
-2013-03-18 06:00:00,9811.0
-2013-03-18 07:00:00,10583.0
-2013-03-18 08:00:00,11827.0
-2013-03-18 09:00:00,12555.0
-2013-03-18 10:00:00,12661.0
-2013-03-18 11:00:00,12790.0
-2013-03-18 12:00:00,12908.0
-2013-03-18 13:00:00,12890.0
-2013-03-18 14:00:00,12763.0
-2013-03-18 15:00:00,12723.0
-2013-03-18 16:00:00,12628.0
-2013-03-18 17:00:00,12532.0
-2013-03-18 18:00:00,12518.0
-2013-03-18 19:00:00,12639.0
-2013-03-18 20:00:00,12874.0
-2013-03-18 21:00:00,13244.0
-2013-03-18 22:00:00,13118.0
-2013-03-18 23:00:00,12721.0
-2013-03-19 00:00:00,11997.0
-2013-03-17 01:00:00,10139.0
-2013-03-17 02:00:00,9736.0
-2013-03-17 03:00:00,9452.0
-2013-03-17 04:00:00,9334.0
-2013-03-17 05:00:00,9282.0
-2013-03-17 06:00:00,9328.0
-2013-03-17 07:00:00,9435.0
-2013-03-17 08:00:00,9728.0
-2013-03-17 09:00:00,9786.0
-2013-03-17 10:00:00,10062.0
-2013-03-17 11:00:00,10297.0
-2013-03-17 12:00:00,10409.0
-2013-03-17 13:00:00,10447.0
-2013-03-17 14:00:00,10392.0
-2013-03-17 15:00:00,10282.0
-2013-03-17 16:00:00,10164.0
-2013-03-17 17:00:00,10060.0
-2013-03-17 18:00:00,10128.0
-2013-03-17 19:00:00,10295.0
-2013-03-17 20:00:00,10691.0
-2013-03-17 21:00:00,11466.0
-2013-03-17 22:00:00,11510.0
-2013-03-17 23:00:00,11220.0
-2013-03-18 00:00:00,10724.0
-2013-03-16 01:00:00,10512.0
-2013-03-16 02:00:00,9993.0
-2013-03-16 03:00:00,9618.0
-2013-03-16 04:00:00,9447.0
-2013-03-16 05:00:00,9281.0
-2013-03-16 06:00:00,9372.0
-2013-03-16 07:00:00,9657.0
-2013-03-16 08:00:00,10161.0
-2013-03-16 09:00:00,10627.0
-2013-03-16 10:00:00,10982.0
-2013-03-16 11:00:00,11381.0
-2013-03-16 12:00:00,11545.0
-2013-03-16 13:00:00,11494.0
-2013-03-16 14:00:00,11278.0
-2013-03-16 15:00:00,11089.0
-2013-03-16 16:00:00,10917.0
-2013-03-16 17:00:00,10772.0
-2013-03-16 18:00:00,10722.0
-2013-03-16 19:00:00,10837.0
-2013-03-16 20:00:00,11041.0
-2013-03-16 21:00:00,11538.0
-2013-03-16 22:00:00,11408.0
-2013-03-16 23:00:00,11190.0
-2013-03-17 00:00:00,10715.0
-2013-03-15 01:00:00,10790.0
-2013-03-15 02:00:00,10248.0
-2013-03-15 03:00:00,9967.0
-2013-03-15 04:00:00,9798.0
-2013-03-15 05:00:00,9802.0
-2013-03-15 06:00:00,9976.0
-2013-03-15 07:00:00,10652.0
-2013-03-15 08:00:00,11858.0
-2013-03-15 09:00:00,12293.0
-2013-03-15 10:00:00,12319.0
-2013-03-15 11:00:00,12320.0
-2013-03-15 12:00:00,12210.0
-2013-03-15 13:00:00,12081.0
-2013-03-15 14:00:00,12020.0
-2013-03-15 15:00:00,12040.0
-2013-03-15 16:00:00,11946.0
-2013-03-15 17:00:00,11826.0
-2013-03-15 18:00:00,11860.0
-2013-03-15 19:00:00,11952.0
-2013-03-15 20:00:00,12128.0
-2013-03-15 21:00:00,12382.0
-2013-03-15 22:00:00,12175.0
-2013-03-15 23:00:00,11818.0
-2013-03-16 00:00:00,11223.0
-2013-03-14 01:00:00,10927.0
-2013-03-14 02:00:00,10442.0
-2013-03-14 03:00:00,10160.0
-2013-03-14 04:00:00,9994.0
-2013-03-14 05:00:00,10006.0
-2013-03-14 06:00:00,10266.0
-2013-03-14 07:00:00,10976.0
-2013-03-14 08:00:00,12220.0
-2013-03-14 09:00:00,12715.0
-2013-03-14 10:00:00,12666.0
-2013-03-14 11:00:00,12629.0
-2013-03-14 12:00:00,12619.0
-2013-03-14 13:00:00,12537.0
-2013-03-14 14:00:00,12475.0
-2013-03-14 15:00:00,12468.0
-2013-03-14 16:00:00,12386.0
-2013-03-14 17:00:00,12236.0
-2013-03-14 18:00:00,12014.0
-2013-03-14 19:00:00,11995.0
-2013-03-14 20:00:00,12348.0
-2013-03-14 21:00:00,12833.0
-2013-03-14 22:00:00,12682.0
-2013-03-14 23:00:00,12280.0
-2013-03-15 00:00:00,11525.0
-2013-03-13 01:00:00,11072.0
-2013-03-13 02:00:00,10538.0
-2013-03-13 03:00:00,10256.0
-2013-03-13 04:00:00,10068.0
-2013-03-13 05:00:00,10048.0
-2013-03-13 06:00:00,10302.0
-2013-03-13 07:00:00,11076.0
-2013-03-13 08:00:00,12334.0
-2013-03-13 09:00:00,12810.0
-2013-03-13 10:00:00,12864.0
-2013-03-13 11:00:00,12847.0
-2013-03-13 12:00:00,12908.0
-2013-03-13 13:00:00,12792.0
-2013-03-13 14:00:00,12693.0
-2013-03-13 15:00:00,12569.0
-2013-03-13 16:00:00,12370.0
-2013-03-13 17:00:00,12165.0
-2013-03-13 18:00:00,12018.0
-2013-03-13 19:00:00,12019.0
-2013-03-13 20:00:00,12178.0
-2013-03-13 21:00:00,12897.0
-2013-03-13 22:00:00,12878.0
-2013-03-13 23:00:00,12455.0
-2013-03-14 00:00:00,11704.0
-2013-03-12 01:00:00,10707.0
-2013-03-12 02:00:00,10196.0
-2013-03-12 03:00:00,9889.0
-2013-03-12 04:00:00,9733.0
-2013-03-12 05:00:00,9698.0
-2013-03-12 06:00:00,9963.0
-2013-03-12 07:00:00,10684.0
-2013-03-12 08:00:00,11934.0
-2013-03-12 09:00:00,12578.0
-2013-03-12 10:00:00,12640.0
-2013-03-12 11:00:00,12625.0
-2013-03-12 12:00:00,12523.0
-2013-03-12 13:00:00,12492.0
-2013-03-12 14:00:00,12413.0
-2013-03-12 15:00:00,12497.0
-2013-03-12 16:00:00,12451.0
-2013-03-12 17:00:00,12420.0
-2013-03-12 18:00:00,12498.0
-2013-03-12 19:00:00,12455.0
-2013-03-12 20:00:00,12689.0
-2013-03-12 21:00:00,13197.0
-2013-03-12 22:00:00,13091.0
-2013-03-12 23:00:00,12637.0
-2013-03-13 00:00:00,11819.0
-2013-03-11 01:00:00,9498.0
-2013-03-11 02:00:00,9092.0
-2013-03-11 03:00:00,8810.0
-2013-03-11 04:00:00,8736.0
-2013-03-11 05:00:00,8743.0
-2013-03-11 06:00:00,9013.0
-2013-03-11 07:00:00,9723.0
-2013-03-11 08:00:00,11062.0
-2013-03-11 09:00:00,11895.0
-2013-03-11 10:00:00,12067.0
-2013-03-11 11:00:00,12142.0
-2013-03-11 12:00:00,12278.0
-2013-03-11 13:00:00,12323.0
-2013-03-11 14:00:00,12435.0
-2013-03-11 15:00:00,12467.0
-2013-03-11 16:00:00,12390.0
-2013-03-11 17:00:00,12329.0
-2013-03-11 18:00:00,12372.0
-2013-03-11 19:00:00,12467.0
-2013-03-11 20:00:00,12677.0
-2013-03-11 21:00:00,12917.0
-2013-03-11 22:00:00,12707.0
-2013-03-11 23:00:00,12225.0
-2013-03-12 00:00:00,11446.0
-2013-03-10 01:00:00,9739.0
-2013-03-10 02:00:00,9334.0
-2013-03-10 04:00:00,9060.0
-2013-03-10 05:00:00,8992.0
-2013-03-10 06:00:00,8927.0
-2013-03-10 07:00:00,9042.0
-2013-03-10 08:00:00,9218.0
-2013-03-10 09:00:00,9374.0
-2013-03-10 10:00:00,9468.0
-2013-03-10 11:00:00,9786.0
-2013-03-10 12:00:00,9896.0
-2013-03-10 13:00:00,10004.0
-2013-03-10 14:00:00,10012.0
-2013-03-10 15:00:00,10125.0
-2013-03-10 16:00:00,10140.0
-2013-03-10 17:00:00,10245.0
-2013-03-10 18:00:00,10387.0
-2013-03-10 19:00:00,10601.0
-2013-03-10 20:00:00,10784.0
-2013-03-10 21:00:00,11162.0
-2013-03-10 22:00:00,10998.0
-2013-03-10 23:00:00,10644.0
-2013-03-11 00:00:00,10084.0
-2013-03-09 01:00:00,10589.0
-2013-03-09 02:00:00,10076.0
-2013-03-09 03:00:00,9745.0
-2013-03-09 04:00:00,9619.0
-2013-03-09 05:00:00,9502.0
-2013-03-09 06:00:00,9582.0
-2013-03-09 07:00:00,9867.0
-2013-03-09 08:00:00,10275.0
-2013-03-09 09:00:00,10564.0
-2013-03-09 10:00:00,10990.0
-2013-03-09 11:00:00,11164.0
-2013-03-09 12:00:00,11222.0
-2013-03-09 13:00:00,11137.0
-2013-03-09 14:00:00,10955.0
-2013-03-09 15:00:00,10723.0
-2013-03-09 16:00:00,10532.0
-2013-03-09 17:00:00,10472.0
-2013-03-09 18:00:00,10693.0
-2013-03-09 19:00:00,11022.0
-2013-03-09 20:00:00,11559.0
-2013-03-09 21:00:00,11427.0
-2013-03-09 22:00:00,11253.0
-2013-03-09 23:00:00,10837.0
-2013-03-10 00:00:00,10314.0
-2013-03-08 01:00:00,10722.0
-2013-03-08 02:00:00,10298.0
-2013-03-08 03:00:00,10065.0
-2013-03-08 04:00:00,9887.0
-2013-03-08 05:00:00,9930.0
-2013-03-08 06:00:00,10212.0
-2013-03-08 07:00:00,11013.0
-2013-03-08 08:00:00,11855.0
-2013-03-08 09:00:00,12214.0
-2013-03-08 10:00:00,12227.0
-2013-03-08 11:00:00,12228.0
-2013-03-08 12:00:00,12139.0
-2013-03-08 13:00:00,12063.0
-2013-03-08 14:00:00,11891.0
-2013-03-08 15:00:00,11817.0
-2013-03-08 16:00:00,11572.0
-2013-03-08 17:00:00,11461.0
-2013-03-08 18:00:00,11502.0
-2013-03-08 19:00:00,11806.0
-2013-03-08 20:00:00,12549.0
-2013-03-08 21:00:00,12535.0
-2013-03-08 22:00:00,12249.0
-2013-03-08 23:00:00,11859.0
-2013-03-09 00:00:00,11246.0
-2013-03-07 01:00:00,10729.0
-2013-03-07 02:00:00,10228.0
-2013-03-07 03:00:00,9977.0
-2013-03-07 04:00:00,9825.0
-2013-03-07 05:00:00,9826.0
-2013-03-07 06:00:00,10100.0
-2013-03-07 07:00:00,10817.0
-2013-03-07 08:00:00,11707.0
-2013-03-07 09:00:00,12178.0
-2013-03-07 10:00:00,12228.0
-2013-03-07 11:00:00,12222.0
-2013-03-07 12:00:00,12259.0
-2013-03-07 13:00:00,12174.0
-2013-03-07 14:00:00,12028.0
-2013-03-07 15:00:00,11982.0
-2013-03-07 16:00:00,11841.0
-2013-03-07 17:00:00,11759.0
-2013-03-07 18:00:00,11863.0
-2013-03-07 19:00:00,12194.0
-2013-03-07 20:00:00,13028.0
-2013-03-07 21:00:00,12967.0
-2013-03-07 22:00:00,12695.0
-2013-03-07 23:00:00,12230.0
-2013-03-08 00:00:00,11422.0
-2013-03-06 01:00:00,10737.0
-2013-03-06 02:00:00,10286.0
-2013-03-06 03:00:00,10032.0
-2013-03-06 04:00:00,9890.0
-2013-03-06 05:00:00,9937.0
-2013-03-06 06:00:00,10230.0
-2013-03-06 07:00:00,11005.0
-2013-03-06 08:00:00,11974.0
-2013-03-06 09:00:00,12452.0
-2013-03-06 10:00:00,12712.0
-2013-03-06 11:00:00,12796.0
-2013-03-06 12:00:00,12835.0
-2013-03-06 13:00:00,12638.0
-2013-03-06 14:00:00,12516.0
-2013-03-06 15:00:00,12538.0
-2013-03-06 16:00:00,12479.0
-2013-03-06 17:00:00,12446.0
-2013-03-06 18:00:00,12558.0
-2013-03-06 19:00:00,12869.0
-2013-03-06 20:00:00,13293.0
-2013-03-06 21:00:00,13136.0
-2013-03-06 22:00:00,12833.0
-2013-03-06 23:00:00,12290.0
-2013-03-07 00:00:00,11471.0
-2013-03-05 01:00:00,10762.0
-2013-03-05 02:00:00,10296.0
-2013-03-05 03:00:00,10035.0
-2013-03-05 04:00:00,9836.0
-2013-03-05 05:00:00,9846.0
-2013-03-05 06:00:00,10088.0
-2013-03-05 07:00:00,10786.0
-2013-03-05 08:00:00,11728.0
-2013-03-05 09:00:00,12323.0
-2013-03-05 10:00:00,12641.0
-2013-03-05 11:00:00,12822.0
-2013-03-05 12:00:00,12924.0
-2013-03-05 13:00:00,13052.0
-2013-03-05 14:00:00,13049.0
-2013-03-05 15:00:00,12980.0
-2013-03-05 16:00:00,12805.0
-2013-03-05 17:00:00,12687.0
-2013-03-05 18:00:00,12746.0
-2013-03-05 19:00:00,13124.0
-2013-03-05 20:00:00,13556.0
-2013-03-05 21:00:00,13344.0
-2013-03-05 22:00:00,12979.0
-2013-03-05 23:00:00,12398.0
-2013-03-06 00:00:00,11522.0
-2013-03-04 01:00:00,10425.0
-2013-03-04 02:00:00,10079.0
-2013-03-04 03:00:00,9958.0
-2013-03-04 04:00:00,9919.0
-2013-03-04 05:00:00,10039.0
-2013-03-04 06:00:00,10340.0
-2013-03-04 07:00:00,11133.0
-2013-03-04 08:00:00,12058.0
-2013-03-04 09:00:00,12584.0
-2013-03-04 10:00:00,12742.0
-2013-03-04 11:00:00,12813.0
-2013-03-04 12:00:00,12834.0
-2013-03-04 13:00:00,12763.0
-2013-03-04 14:00:00,12682.0
-2013-03-04 15:00:00,12729.0
-2013-03-04 16:00:00,12669.0
-2013-03-04 17:00:00,12603.0
-2013-03-04 18:00:00,12653.0
-2013-03-04 19:00:00,12984.0
-2013-03-04 20:00:00,13452.0
-2013-03-04 21:00:00,13257.0
-2013-03-04 22:00:00,12870.0
-2013-03-04 23:00:00,12319.0
-2013-03-05 00:00:00,11520.0
-2013-03-03 01:00:00,10702.0
-2013-03-03 02:00:00,10336.0
-2013-03-03 03:00:00,10064.0
-2013-03-03 04:00:00,9970.0
-2013-03-03 05:00:00,9906.0
-2013-03-03 06:00:00,9956.0
-2013-03-03 07:00:00,10125.0
-2013-03-03 08:00:00,10203.0
-2013-03-03 09:00:00,10168.0
-2013-03-03 10:00:00,10244.0
-2013-03-03 11:00:00,10301.0
-2013-03-03 12:00:00,10298.0
-2013-03-03 13:00:00,10284.0
-2013-03-03 14:00:00,10217.0
-2013-03-03 15:00:00,10171.0
-2013-03-03 16:00:00,10062.0
-2013-03-03 17:00:00,10081.0
-2013-03-03 18:00:00,10245.0
-2013-03-03 19:00:00,10888.0
-2013-03-03 20:00:00,11786.0
-2013-03-03 21:00:00,11897.0
-2013-03-03 22:00:00,11728.0
-2013-03-03 23:00:00,11451.0
-2013-03-04 00:00:00,10874.0
-2013-03-02 01:00:00,10992.0
-2013-03-02 02:00:00,10553.0
-2013-03-02 03:00:00,10209.0
-2013-03-02 04:00:00,10026.0
-2013-03-02 05:00:00,9970.0
-2013-03-02 06:00:00,10039.0
-2013-03-02 07:00:00,10285.0
-2013-03-02 08:00:00,10645.0
-2013-03-02 09:00:00,10900.0
-2013-03-02 10:00:00,11260.0
-2013-03-02 11:00:00,11327.0
-2013-03-02 12:00:00,11294.0
-2013-03-02 13:00:00,11196.0
-2013-03-02 14:00:00,11001.0
-2013-03-02 15:00:00,10776.0
-2013-03-02 16:00:00,10664.0
-2013-03-02 17:00:00,10609.0
-2013-03-02 18:00:00,10801.0
-2013-03-02 19:00:00,11228.0
-2013-03-02 20:00:00,12039.0
-2013-03-02 21:00:00,11998.0
-2013-03-02 22:00:00,11902.0
-2013-03-02 23:00:00,11608.0
-2013-03-03 00:00:00,11171.0
-2013-03-01 01:00:00,10818.0
-2013-03-01 02:00:00,10340.0
-2013-03-01 03:00:00,10056.0
-2013-03-01 04:00:00,9948.0
-2013-03-01 05:00:00,9932.0
-2013-03-01 06:00:00,10210.0
-2013-03-01 07:00:00,10930.0
-2013-03-01 08:00:00,11949.0
-2013-03-01 09:00:00,12479.0
-2013-03-01 10:00:00,12728.0
-2013-03-01 11:00:00,12830.0
-2013-03-01 12:00:00,12899.0
-2013-03-01 13:00:00,12884.0
-2013-03-01 14:00:00,12784.0
-2013-03-01 15:00:00,12795.0
-2013-03-01 16:00:00,12773.0
-2013-03-01 17:00:00,12745.0
-2013-03-01 18:00:00,12884.0
-2013-03-01 19:00:00,13215.0
-2013-03-01 20:00:00,13367.0
-2013-03-01 21:00:00,13131.0
-2013-03-01 22:00:00,12880.0
-2013-03-01 23:00:00,12453.0
-2013-03-02 00:00:00,11765.0
-2013-02-28 01:00:00,10794.0
-2013-02-28 02:00:00,10298.0
-2013-02-28 03:00:00,10017.0
-2013-02-28 04:00:00,9885.0
-2013-02-28 05:00:00,9892.0
-2013-02-28 06:00:00,10107.0
-2013-02-28 07:00:00,10837.0
-2013-02-28 08:00:00,11901.0
-2013-02-28 09:00:00,12395.0
-2013-02-28 10:00:00,12510.0
-2013-02-28 11:00:00,12620.0
-2013-02-28 12:00:00,12630.0
-2013-02-28 13:00:00,12607.0
-2013-02-28 14:00:00,12489.0
-2013-02-28 15:00:00,12547.0
-2013-02-28 16:00:00,12459.0
-2013-02-28 17:00:00,12505.0
-2013-02-28 18:00:00,12648.0
-2013-02-28 19:00:00,13021.0
-2013-02-28 20:00:00,13253.0
-2013-02-28 21:00:00,13053.0
-2013-02-28 22:00:00,12831.0
-2013-02-28 23:00:00,12331.0
-2013-03-01 00:00:00,11525.0
-2013-02-27 01:00:00,10811.0
-2013-02-27 02:00:00,10287.0
-2013-02-27 03:00:00,10026.0
-2013-02-27 04:00:00,9855.0
-2013-02-27 05:00:00,9814.0
-2013-02-27 06:00:00,10097.0
-2013-02-27 07:00:00,10854.0
-2013-02-27 08:00:00,11920.0
-2013-02-27 09:00:00,12431.0
-2013-02-27 10:00:00,12577.0
-2013-02-27 11:00:00,12662.0
-2013-02-27 12:00:00,12714.0
-2013-02-27 13:00:00,12662.0
-2013-02-27 14:00:00,12635.0
-2013-02-27 15:00:00,12644.0
-2013-02-27 16:00:00,12563.0
-2013-02-27 17:00:00,12507.0
-2013-02-27 18:00:00,12661.0
-2013-02-27 19:00:00,13114.0
-2013-02-27 20:00:00,13440.0
-2013-02-27 21:00:00,13232.0
-2013-02-27 22:00:00,12952.0
-2013-02-27 23:00:00,12427.0
-2013-02-28 00:00:00,11514.0
-2013-02-26 01:00:00,10539.0
-2013-02-26 02:00:00,10089.0
-2013-02-26 03:00:00,9832.0
-2013-02-26 04:00:00,9733.0
-2013-02-26 05:00:00,9758.0
-2013-02-26 06:00:00,10069.0
-2013-02-26 07:00:00,10857.0
-2013-02-26 08:00:00,11969.0
-2013-02-26 09:00:00,12519.0
-2013-02-26 10:00:00,12766.0
-2013-02-26 11:00:00,12884.0
-2013-02-26 12:00:00,13080.0
-2013-02-26 13:00:00,13205.0
-2013-02-26 14:00:00,13264.0
-2013-02-26 15:00:00,13261.0
-2013-02-26 16:00:00,13104.0
-2013-02-26 17:00:00,12942.0
-2013-02-26 18:00:00,13045.0
-2013-02-26 19:00:00,13532.0
-2013-02-26 20:00:00,13801.0
-2013-02-26 21:00:00,13520.0
-2013-02-26 22:00:00,13102.0
-2013-02-26 23:00:00,12460.0
-2013-02-27 00:00:00,11566.0
-2013-02-25 01:00:00,10100.0
-2013-02-25 02:00:00,9780.0
-2013-02-25 03:00:00,9667.0
-2013-02-25 04:00:00,9590.0
-2013-02-25 05:00:00,9693.0
-2013-02-25 06:00:00,10027.0
-2013-02-25 07:00:00,10864.0
-2013-02-25 08:00:00,11915.0
-2013-02-25 09:00:00,12322.0
-2013-02-25 10:00:00,12298.0
-2013-02-25 11:00:00,12245.0
-2013-02-25 12:00:00,12205.0
-2013-02-25 13:00:00,12065.0
-2013-02-25 14:00:00,11947.0
-2013-02-25 15:00:00,11863.0
-2013-02-25 16:00:00,11723.0
-2013-02-25 17:00:00,11638.0
-2013-02-25 18:00:00,11801.0
-2013-02-25 19:00:00,12492.0
-2013-02-25 20:00:00,12935.0
-2013-02-25 21:00:00,12849.0
-2013-02-25 22:00:00,12576.0
-2013-02-25 23:00:00,12095.0
-2013-02-26 00:00:00,11267.0
-2013-02-24 01:00:00,10603.0
-2013-02-24 02:00:00,10201.0
-2013-02-24 03:00:00,9951.0
-2013-02-24 04:00:00,9849.0
-2013-02-24 05:00:00,9763.0
-2013-02-24 06:00:00,9838.0
-2013-02-24 07:00:00,9985.0
-2013-02-24 08:00:00,10103.0
-2013-02-24 09:00:00,10095.0
-2013-02-24 10:00:00,10192.0
-2013-02-24 11:00:00,10219.0
-2013-02-24 12:00:00,10245.0
-2013-02-24 13:00:00,10175.0
-2013-02-24 14:00:00,10089.0
-2013-02-24 15:00:00,9979.0
-2013-02-24 16:00:00,9875.0
-2013-02-24 17:00:00,9838.0
-2013-02-24 18:00:00,10123.0
-2013-02-24 19:00:00,10812.0
-2013-02-24 20:00:00,11651.0
-2013-02-24 21:00:00,11603.0
-2013-02-24 22:00:00,11490.0
-2013-02-24 23:00:00,11156.0
-2013-02-25 00:00:00,10683.0
-2013-02-23 01:00:00,11017.0
-2013-02-23 02:00:00,10496.0
-2013-02-23 03:00:00,10170.0
-2013-02-23 04:00:00,10013.0
-2013-02-23 05:00:00,9938.0
-2013-02-23 06:00:00,9951.0
-2013-02-23 07:00:00,10288.0
-2013-02-23 08:00:00,10610.0
-2013-02-23 09:00:00,10834.0
-2013-02-23 10:00:00,11163.0
-2013-02-23 11:00:00,11310.0
-2013-02-23 12:00:00,11484.0
-2013-02-23 13:00:00,11411.0
-2013-02-23 14:00:00,11244.0
-2013-02-23 15:00:00,11042.0
-2013-02-23 16:00:00,10991.0
-2013-02-23 17:00:00,10987.0
-2013-02-23 18:00:00,11121.0
-2013-02-23 19:00:00,11664.0
-2013-02-23 20:00:00,12193.0
-2013-02-23 21:00:00,12080.0
-2013-02-23 22:00:00,11886.0
-2013-02-23 23:00:00,11620.0
-2013-02-24 00:00:00,11129.0
-2013-02-22 01:00:00,11515.0
-2013-02-22 02:00:00,10992.0
-2013-02-22 03:00:00,10708.0
-2013-02-22 04:00:00,10531.0
-2013-02-22 05:00:00,10566.0
-2013-02-22 06:00:00,10782.0
-2013-02-22 07:00:00,11423.0
-2013-02-22 08:00:00,12316.0
-2013-02-22 09:00:00,12681.0
-2013-02-22 10:00:00,12889.0
-2013-02-22 11:00:00,13048.0
-2013-02-22 12:00:00,13117.0
-2013-02-22 13:00:00,13065.0
-2013-02-22 14:00:00,12914.0
-2013-02-22 15:00:00,12849.0
-2013-02-22 16:00:00,12788.0
-2013-02-22 17:00:00,12773.0
-2013-02-22 18:00:00,12859.0
-2013-02-22 19:00:00,13259.0
-2013-02-22 20:00:00,13440.0
-2013-02-22 21:00:00,13191.0
-2013-02-22 22:00:00,12787.0
-2013-02-22 23:00:00,12392.0
-2013-02-23 00:00:00,11684.0
-2013-02-21 01:00:00,11566.0
-2013-02-21 02:00:00,11102.0
-2013-02-21 03:00:00,10831.0
-2013-02-21 04:00:00,10661.0
-2013-02-21 05:00:00,10622.0
-2013-02-21 06:00:00,10823.0
-2013-02-21 07:00:00,11523.0
-2013-02-21 08:00:00,12655.0
-2013-02-21 09:00:00,13156.0
-2013-02-21 10:00:00,13229.0
-2013-02-21 11:00:00,13312.0
-2013-02-21 12:00:00,13362.0
-2013-02-21 13:00:00,13326.0
-2013-02-21 14:00:00,13329.0
-2013-02-21 15:00:00,13345.0
-2013-02-21 16:00:00,13317.0
-2013-02-21 17:00:00,13302.0
-2013-02-21 18:00:00,13509.0
-2013-02-21 19:00:00,13956.0
-2013-02-21 20:00:00,14129.0
-2013-02-21 21:00:00,13924.0
-2013-02-21 22:00:00,13621.0
-2013-02-21 23:00:00,13095.0
-2013-02-22 00:00:00,12220.0
-2013-02-20 01:00:00,12086.0
-2013-02-20 02:00:00,11642.0
-2013-02-20 03:00:00,11407.0
-2013-02-20 04:00:00,11283.0
-2013-02-20 05:00:00,11251.0
-2013-02-20 06:00:00,11496.0
-2013-02-20 07:00:00,12265.0
-2013-02-20 08:00:00,13286.0
-2013-02-20 09:00:00,13596.0
-2013-02-20 10:00:00,13567.0
-2013-02-20 11:00:00,13528.0
-2013-02-20 12:00:00,13478.0
-2013-02-20 13:00:00,13343.0
-2013-02-20 14:00:00,13191.0
-2013-02-20 15:00:00,13090.0
-2013-02-20 16:00:00,12866.0
-2013-02-20 17:00:00,12786.0
-2013-02-20 18:00:00,12955.0
-2013-02-20 19:00:00,13614.0
-2013-02-20 20:00:00,14077.0
-2013-02-20 21:00:00,13942.0
-2013-02-20 22:00:00,13651.0
-2013-02-20 23:00:00,13159.0
-2013-02-21 00:00:00,12330.0
-2013-02-19 01:00:00,10578.0
-2013-02-19 02:00:00,10238.0
-2013-02-19 03:00:00,10124.0
-2013-02-19 04:00:00,10109.0
-2013-02-19 05:00:00,10243.0
-2013-02-19 06:00:00,10617.0
-2013-02-19 07:00:00,11447.0
-2013-02-19 08:00:00,12740.0
-2013-02-19 09:00:00,13295.0
-2013-02-19 10:00:00,13519.0
-2013-02-19 11:00:00,13644.0
-2013-02-19 12:00:00,13710.0
-2013-02-19 13:00:00,13782.0
-2013-02-19 14:00:00,13754.0
-2013-02-19 15:00:00,13830.0
-2013-02-19 16:00:00,13806.0
-2013-02-19 17:00:00,13788.0
-2013-02-19 18:00:00,13945.0
-2013-02-19 19:00:00,14472.0
-2013-02-19 20:00:00,14716.0
-2013-02-19 21:00:00,14549.0
-2013-02-19 22:00:00,14260.0
-2013-02-19 23:00:00,13723.0
-2013-02-20 00:00:00,12859.0
-2013-02-18 01:00:00,10620.0
-2013-02-18 02:00:00,10221.0
-2013-02-18 03:00:00,10052.0
-2013-02-18 04:00:00,9903.0
-2013-02-18 05:00:00,9955.0
-2013-02-18 06:00:00,10161.0
-2013-02-18 07:00:00,10867.0
-2013-02-18 08:00:00,11726.0
-2013-02-18 09:00:00,12026.0
-2013-02-18 10:00:00,12129.0
-2013-02-18 11:00:00,12217.0
-2013-02-18 12:00:00,12201.0
-2013-02-18 13:00:00,12054.0
-2013-02-18 14:00:00,11955.0
-2013-02-18 15:00:00,12108.0
-2013-02-18 16:00:00,12103.0
-2013-02-18 17:00:00,12110.0
-2013-02-18 18:00:00,12443.0
-2013-02-18 19:00:00,12920.0
-2013-02-18 20:00:00,12890.0
-2013-02-18 21:00:00,12758.0
-2013-02-18 22:00:00,12383.0
-2013-02-18 23:00:00,11842.0
-2013-02-19 00:00:00,11118.0
-2013-02-17 01:00:00,11221.0
-2013-02-17 02:00:00,10789.0
-2013-02-17 03:00:00,10563.0
-2013-02-17 04:00:00,10392.0
-2013-02-17 05:00:00,10387.0
-2013-02-17 06:00:00,10384.0
-2013-02-17 07:00:00,10559.0
-2013-02-17 08:00:00,10740.0
-2013-02-17 09:00:00,10691.0
-2013-02-17 10:00:00,10768.0
-2013-02-17 11:00:00,10785.0
-2013-02-17 12:00:00,10831.0
-2013-02-17 13:00:00,10798.0
-2013-02-17 14:00:00,10696.0
-2013-02-17 15:00:00,10563.0
-2013-02-17 16:00:00,10420.0
-2013-02-17 17:00:00,10455.0
-2013-02-17 18:00:00,10749.0
-2013-02-17 19:00:00,11600.0
-2013-02-17 20:00:00,12174.0
-2013-02-17 21:00:00,12189.0
-2013-02-17 22:00:00,11997.0
-2013-02-17 23:00:00,11710.0
-2013-02-18 00:00:00,11167.0
-2013-02-16 01:00:00,11105.0
-2013-02-16 02:00:00,10672.0
-2013-02-16 03:00:00,10416.0
-2013-02-16 04:00:00,10267.0
-2013-02-16 05:00:00,10257.0
-2013-02-16 06:00:00,10326.0
-2013-02-16 07:00:00,10653.0
-2013-02-16 08:00:00,11041.0
-2013-02-16 09:00:00,11139.0
-2013-02-16 10:00:00,11367.0
-2013-02-16 11:00:00,11547.0
-2013-02-16 12:00:00,11793.0
-2013-02-16 13:00:00,11862.0
-2013-02-16 14:00:00,11776.0
-2013-02-16 15:00:00,11627.0
-2013-02-16 16:00:00,11559.0
-2013-02-16 17:00:00,11531.0
-2013-02-16 18:00:00,11757.0
-2013-02-16 19:00:00,12310.0
-2013-02-16 20:00:00,12666.0
-2013-02-16 21:00:00,12586.0
-2013-02-16 22:00:00,12477.0
-2013-02-16 23:00:00,12224.0
-2013-02-17 00:00:00,11696.0
-2013-02-15 01:00:00,10677.0
-2013-02-15 02:00:00,10170.0
-2013-02-15 03:00:00,9879.0
-2013-02-15 04:00:00,9750.0
-2013-02-15 05:00:00,9740.0
-2013-02-15 06:00:00,10074.0
-2013-02-15 07:00:00,10822.0
-2013-02-15 08:00:00,11964.0
-2013-02-15 09:00:00,12436.0
-2013-02-15 10:00:00,12520.0
-2013-02-15 11:00:00,12497.0
-2013-02-15 12:00:00,12467.0
-2013-02-15 13:00:00,12360.0
-2013-02-15 14:00:00,12213.0
-2013-02-15 15:00:00,12157.0
-2013-02-15 16:00:00,11985.0
-2013-02-15 17:00:00,11925.0
-2013-02-15 18:00:00,12135.0
-2013-02-15 19:00:00,12802.0
-2013-02-15 20:00:00,13095.0
-2013-02-15 21:00:00,12930.0
-2013-02-15 22:00:00,12666.0
-2013-02-15 23:00:00,12331.0
-2013-02-16 00:00:00,11690.0
-2013-02-14 01:00:00,10457.0
-2013-02-14 02:00:00,9943.0
-2013-02-14 03:00:00,9682.0
-2013-02-14 04:00:00,9514.0
-2013-02-14 05:00:00,9524.0
-2013-02-14 06:00:00,9772.0
-2013-02-14 07:00:00,10529.0
-2013-02-14 08:00:00,11691.0
-2013-02-14 09:00:00,12081.0
-2013-02-14 10:00:00,12232.0
-2013-02-14 11:00:00,12435.0
-2013-02-14 12:00:00,12566.0
-2013-02-14 13:00:00,12579.0
-2013-02-14 14:00:00,12577.0
-2013-02-14 15:00:00,12582.0
-2013-02-14 16:00:00,12453.0
-2013-02-14 17:00:00,12390.0
-2013-02-14 18:00:00,12530.0
-2013-02-14 19:00:00,13074.0
-2013-02-14 20:00:00,13218.0
-2013-02-14 21:00:00,12988.0
-2013-02-14 22:00:00,12609.0
-2013-02-14 23:00:00,12136.0
-2013-02-15 00:00:00,11387.0
-2013-02-13 01:00:00,11046.0
-2013-02-13 02:00:00,10571.0
-2013-02-13 03:00:00,10276.0
-2013-02-13 04:00:00,10129.0
-2013-02-13 05:00:00,10142.0
-2013-02-13 06:00:00,10385.0
-2013-02-13 07:00:00,11143.0
-2013-02-13 08:00:00,12296.0
-2013-02-13 09:00:00,12581.0
-2013-02-13 10:00:00,12539.0
-2013-02-13 11:00:00,12435.0
-2013-02-13 12:00:00,12367.0
-2013-02-13 13:00:00,12208.0
-2013-02-13 14:00:00,12065.0
-2013-02-13 15:00:00,11979.0
-2013-02-13 16:00:00,11824.0
-2013-02-13 17:00:00,11748.0
-2013-02-13 18:00:00,11895.0
-2013-02-13 19:00:00,12523.0
-2013-02-13 20:00:00,12932.0
-2013-02-13 21:00:00,12795.0
-2013-02-13 22:00:00,12542.0
-2013-02-13 23:00:00,12051.0
-2013-02-14 00:00:00,11234.0
-2013-02-12 01:00:00,10864.0
-2013-02-12 02:00:00,10391.0
-2013-02-12 03:00:00,10123.0
-2013-02-12 04:00:00,10009.0
-2013-02-12 05:00:00,10049.0
-2013-02-12 06:00:00,10337.0
-2013-02-12 07:00:00,11083.0
-2013-02-12 08:00:00,12204.0
-2013-02-12 09:00:00,12675.0
-2013-02-12 10:00:00,12855.0
-2013-02-12 11:00:00,12954.0
-2013-02-12 12:00:00,13024.0
-2013-02-12 13:00:00,13015.0
-2013-02-12 14:00:00,12947.0
-2013-02-12 15:00:00,12948.0
-2013-02-12 16:00:00,12840.0
-2013-02-12 17:00:00,12741.0
-2013-02-12 18:00:00,12823.0
-2013-02-12 19:00:00,13393.0
-2013-02-12 20:00:00,13584.0
-2013-02-12 21:00:00,13438.0
-2013-02-12 22:00:00,13148.0
-2013-02-12 23:00:00,12653.0
-2013-02-13 00:00:00,11829.0
-2013-02-11 01:00:00,9747.0
-2013-02-11 02:00:00,9383.0
-2013-02-11 03:00:00,9264.0
-2013-02-11 04:00:00,9268.0
-2013-02-11 05:00:00,9402.0
-2013-02-11 06:00:00,9740.0
-2013-02-11 07:00:00,10671.0
-2013-02-11 08:00:00,11918.0
-2013-02-11 09:00:00,12622.0
-2013-02-11 10:00:00,12845.0
-2013-02-11 11:00:00,12917.0
-2013-02-11 12:00:00,13015.0
-2013-02-11 13:00:00,13051.0
-2013-02-11 14:00:00,13053.0
-2013-02-11 15:00:00,13099.0
-2013-02-11 16:00:00,12976.0
-2013-02-11 17:00:00,12937.0
-2013-02-11 18:00:00,13122.0
-2013-02-11 19:00:00,13648.0
-2013-02-11 20:00:00,13645.0
-2013-02-11 21:00:00,13419.0
-2013-02-11 22:00:00,13067.0
-2013-02-11 23:00:00,12469.0
-2013-02-12 00:00:00,11620.0
-2013-02-10 01:00:00,10410.0
-2013-02-10 02:00:00,9902.0
-2013-02-10 03:00:00,9619.0
-2013-02-10 04:00:00,9401.0
-2013-02-10 05:00:00,9368.0
-2013-02-10 06:00:00,9297.0
-2013-02-10 07:00:00,9434.0
-2013-02-10 08:00:00,9698.0
-2013-02-10 09:00:00,9671.0
-2013-02-10 10:00:00,10115.0
-2013-02-10 11:00:00,10441.0
-2013-02-10 12:00:00,10737.0
-2013-02-10 13:00:00,10844.0
-2013-02-10 14:00:00,10858.0
-2013-02-10 15:00:00,10797.0
-2013-02-10 16:00:00,10692.0
-2013-02-10 17:00:00,10806.0
-2013-02-10 18:00:00,11166.0
-2013-02-10 19:00:00,11671.0
-2013-02-10 20:00:00,11752.0
-2013-02-10 21:00:00,11578.0
-2013-02-10 22:00:00,11284.0
-2013-02-10 23:00:00,10884.0
-2013-02-11 00:00:00,10267.0
-2013-02-09 01:00:00,11084.0
-2013-02-09 02:00:00,10556.0
-2013-02-09 03:00:00,10234.0
-2013-02-09 04:00:00,10044.0
-2013-02-09 05:00:00,9951.0
-2013-02-09 06:00:00,10010.0
-2013-02-09 07:00:00,10263.0
-2013-02-09 08:00:00,10759.0
-2013-02-09 09:00:00,10927.0
-2013-02-09 10:00:00,11308.0
-2013-02-09 11:00:00,11510.0
-2013-02-09 12:00:00,11537.0
-2013-02-09 13:00:00,11416.0
-2013-02-09 14:00:00,11183.0
-2013-02-09 15:00:00,10945.0
-2013-02-09 16:00:00,10775.0
-2013-02-09 17:00:00,10666.0
-2013-02-09 18:00:00,10865.0
-2013-02-09 19:00:00,11696.0
-2013-02-09 20:00:00,12060.0
-2013-02-09 21:00:00,11961.0
-2013-02-09 22:00:00,11743.0
-2013-02-09 23:00:00,11497.0
-2013-02-10 00:00:00,10956.0
-2013-02-08 01:00:00,11015.0
-2013-02-08 02:00:00,10524.0
-2013-02-08 03:00:00,10290.0
-2013-02-08 04:00:00,10211.0
-2013-02-08 05:00:00,10245.0
-2013-02-08 06:00:00,10573.0
-2013-02-08 07:00:00,11246.0
-2013-02-08 08:00:00,12397.0
-2013-02-08 09:00:00,12853.0
-2013-02-08 10:00:00,13043.0
-2013-02-08 11:00:00,13107.0
-2013-02-08 12:00:00,13127.0
-2013-02-08 13:00:00,12989.0
-2013-02-08 14:00:00,12878.0
-2013-02-08 15:00:00,12781.0
-2013-02-08 16:00:00,12685.0
-2013-02-08 17:00:00,12593.0
-2013-02-08 18:00:00,12751.0
-2013-02-08 19:00:00,13390.0
-2013-02-08 20:00:00,13492.0
-2013-02-08 21:00:00,13229.0
-2013-02-08 22:00:00,12905.0
-2013-02-08 23:00:00,12499.0
-2013-02-09 00:00:00,11755.0
-2013-02-07 01:00:00,10846.0
-2013-02-07 02:00:00,10293.0
-2013-02-07 03:00:00,10022.0
-2013-02-07 04:00:00,9814.0
-2013-02-07 05:00:00,9835.0
-2013-02-07 06:00:00,10152.0
-2013-02-07 07:00:00,10880.0
-2013-02-07 08:00:00,12073.0
-2013-02-07 09:00:00,12640.0
-2013-02-07 10:00:00,12687.0
-2013-02-07 11:00:00,12848.0
-2013-02-07 12:00:00,12956.0
-2013-02-07 13:00:00,12994.0
-2013-02-07 14:00:00,12967.0
-2013-02-07 15:00:00,12963.0
-2013-02-07 16:00:00,12938.0
-2013-02-07 17:00:00,12912.0
-2013-02-07 18:00:00,13159.0
-2013-02-07 19:00:00,13614.0
-2013-02-07 20:00:00,13639.0
-2013-02-07 21:00:00,13441.0
-2013-02-07 22:00:00,13082.0
-2013-02-07 23:00:00,12548.0
-2013-02-08 00:00:00,11718.0
-2013-02-06 01:00:00,11113.0
-2013-02-06 02:00:00,10615.0
-2013-02-06 03:00:00,10342.0
-2013-02-06 04:00:00,10243.0
-2013-02-06 05:00:00,10283.0
-2013-02-06 06:00:00,10584.0
-2013-02-06 07:00:00,11375.0
-2013-02-06 08:00:00,12545.0
-2013-02-06 09:00:00,12899.0
-2013-02-06 10:00:00,12902.0
-2013-02-06 11:00:00,12787.0
-2013-02-06 12:00:00,12728.0
-2013-02-06 13:00:00,12592.0
-2013-02-06 14:00:00,12436.0
-2013-02-06 15:00:00,12419.0
-2013-02-06 16:00:00,12325.0
-2013-02-06 17:00:00,12309.0
-2013-02-06 18:00:00,12571.0
-2013-02-06 19:00:00,13273.0
-2013-02-06 20:00:00,13386.0
-2013-02-06 21:00:00,13224.0
-2013-02-06 22:00:00,12935.0
-2013-02-06 23:00:00,12405.0
-2013-02-07 00:00:00,11604.0
-2013-02-05 01:00:00,11494.0
-2013-02-05 02:00:00,11039.0
-2013-02-05 03:00:00,10814.0
-2013-02-05 04:00:00,10681.0
-2013-02-05 05:00:00,10689.0
-2013-02-05 06:00:00,10932.0
-2013-02-05 07:00:00,11623.0
-2013-02-05 08:00:00,12810.0
-2013-02-05 09:00:00,13196.0
-2013-02-05 10:00:00,13353.0
-2013-02-05 11:00:00,13308.0
-2013-02-05 12:00:00,13337.0
-2013-02-05 13:00:00,13287.0
-2013-02-05 14:00:00,13254.0
-2013-02-05 15:00:00,13307.0
-2013-02-05 16:00:00,13157.0
-2013-02-05 17:00:00,13028.0
-2013-02-05 18:00:00,13237.0
-2013-02-05 19:00:00,13868.0
-2013-02-05 20:00:00,13874.0
-2013-02-05 21:00:00,13638.0
-2013-02-05 22:00:00,13272.0
-2013-02-05 23:00:00,12711.0
-2013-02-06 00:00:00,11875.0
-2013-02-04 01:00:00,11078.0
-2013-02-04 02:00:00,10665.0
-2013-02-04 03:00:00,10412.0
-2013-02-04 04:00:00,10318.0
-2013-02-04 05:00:00,10356.0
-2013-02-04 06:00:00,10640.0
-2013-02-04 07:00:00,11294.0
-2013-02-04 08:00:00,12454.0
-2013-02-04 09:00:00,12941.0
-2013-02-04 10:00:00,13096.0
-2013-02-04 11:00:00,13238.0
-2013-02-04 12:00:00,13301.0
-2013-02-04 13:00:00,13243.0
-2013-02-04 14:00:00,13164.0
-2013-02-04 15:00:00,13173.0
-2013-02-04 16:00:00,13123.0
-2013-02-04 17:00:00,13056.0
-2013-02-04 18:00:00,13240.0
-2013-02-04 19:00:00,13919.0
-2013-02-04 20:00:00,14030.0
-2013-02-04 21:00:00,13830.0
-2013-02-04 22:00:00,13552.0
-2013-02-04 23:00:00,13045.0
-2013-02-05 00:00:00,12215.0
-2013-02-03 01:00:00,11609.0
-2013-02-03 02:00:00,11151.0
-2013-02-03 03:00:00,10777.0
-2013-02-03 04:00:00,10664.0
-2013-02-03 05:00:00,10582.0
-2013-02-03 06:00:00,10624.0
-2013-02-03 07:00:00,10716.0
-2013-02-03 08:00:00,11034.0
-2013-02-03 09:00:00,11067.0
-2013-02-03 10:00:00,11314.0
-2013-02-03 11:00:00,11558.0
-2013-02-03 12:00:00,11637.0
-2013-02-03 13:00:00,11518.0
-2013-02-03 14:00:00,11441.0
-2013-02-03 15:00:00,11352.0
-2013-02-03 16:00:00,11329.0
-2013-02-03 17:00:00,11412.0
-2013-02-03 18:00:00,11719.0
-2013-02-03 19:00:00,12535.0
-2013-02-03 20:00:00,12674.0
-2013-02-03 21:00:00,12545.0
-2013-02-03 22:00:00,12334.0
-2013-02-03 23:00:00,12050.0
-2013-02-04 00:00:00,11582.0
-2013-02-02 01:00:00,12204.0
-2013-02-02 02:00:00,11675.0
-2013-02-02 03:00:00,11299.0
-2013-02-02 04:00:00,11013.0
-2013-02-02 05:00:00,10837.0
-2013-02-02 06:00:00,10865.0
-2013-02-02 07:00:00,11061.0
-2013-02-02 08:00:00,11441.0
-2013-02-02 09:00:00,11675.0
-2013-02-02 10:00:00,11928.0
-2013-02-02 11:00:00,12203.0
-2013-02-02 12:00:00,12355.0
-2013-02-02 13:00:00,12419.0
-2013-02-02 14:00:00,12199.0
-2013-02-02 15:00:00,12074.0
-2013-02-02 16:00:00,11936.0
-2013-02-02 17:00:00,11967.0
-2013-02-02 18:00:00,12227.0
-2013-02-02 19:00:00,13065.0
-2013-02-02 20:00:00,13284.0
-2013-02-02 21:00:00,13173.0
-2013-02-02 22:00:00,13007.0
-2013-02-02 23:00:00,12681.0
-2013-02-03 00:00:00,12171.0
-2013-02-01 01:00:00,12514.0
-2013-02-01 02:00:00,12084.0
-2013-02-01 03:00:00,11823.0
-2013-02-01 04:00:00,11695.0
-2013-02-01 05:00:00,11713.0
-2013-02-01 06:00:00,11939.0
-2013-02-01 07:00:00,12596.0
-2013-02-01 08:00:00,13693.0
-2013-02-01 09:00:00,14098.0
-2013-02-01 10:00:00,14109.0
-2013-02-01 11:00:00,14158.0
-2013-02-01 12:00:00,14176.0
-2013-02-01 13:00:00,14053.0
-2013-02-01 14:00:00,13944.0
-2013-02-01 15:00:00,13841.0
-2013-02-01 16:00:00,13659.0
-2013-02-01 17:00:00,13525.0
-2013-02-01 18:00:00,13709.0
-2013-02-01 19:00:00,14555.0
-2013-02-01 20:00:00,14689.0
-2013-02-01 21:00:00,14444.0
-2013-02-01 22:00:00,14110.0
-2013-02-01 23:00:00,13692.0
-2013-02-02 00:00:00,12926.0
-2013-01-31 01:00:00,11346.0
-2013-01-31 02:00:00,10916.0
-2013-01-31 03:00:00,10630.0
-2013-01-31 04:00:00,10533.0
-2013-01-31 05:00:00,10590.0
-2013-01-31 06:00:00,10882.0
-2013-01-31 07:00:00,11608.0
-2013-01-31 08:00:00,12878.0
-2013-01-31 09:00:00,13421.0
-2013-01-31 10:00:00,13562.0
-2013-01-31 11:00:00,13615.0
-2013-01-31 12:00:00,13639.0
-2013-01-31 13:00:00,13641.0
-2013-01-31 14:00:00,13652.0
-2013-01-31 15:00:00,13746.0
-2013-01-31 16:00:00,13698.0
-2013-01-31 17:00:00,13732.0
-2013-01-31 18:00:00,14033.0
-2013-01-31 19:00:00,14753.0
-2013-01-31 20:00:00,14918.0
-2013-01-31 21:00:00,14748.0
-2013-01-31 22:00:00,14537.0
-2013-01-31 23:00:00,14065.0
-2013-02-01 00:00:00,13227.0
-2013-01-30 01:00:00,9826.0
-2013-01-30 02:00:00,9341.0
-2013-01-30 03:00:00,9084.0
-2013-01-30 04:00:00,8946.0
-2013-01-30 05:00:00,8956.0
-2013-01-30 06:00:00,9227.0
-2013-01-30 07:00:00,10001.0
-2013-01-30 08:00:00,11303.0
-2013-01-30 09:00:00,12098.0
-2013-01-30 10:00:00,12238.0
-2013-01-30 11:00:00,12376.0
-2013-01-30 12:00:00,12544.0
-2013-01-30 13:00:00,12534.0
-2013-01-30 14:00:00,12457.0
-2013-01-30 15:00:00,12571.0
-2013-01-30 16:00:00,12600.0
-2013-01-30 17:00:00,12705.0
-2013-01-30 18:00:00,13090.0
-2013-01-30 19:00:00,13652.0
-2013-01-30 20:00:00,13599.0
-2013-01-30 21:00:00,13429.0
-2013-01-30 22:00:00,13246.0
-2013-01-30 23:00:00,12779.0
-2013-01-31 00:00:00,12024.0
-2013-01-29 01:00:00,10329.0
-2013-01-29 02:00:00,9785.0
-2013-01-29 03:00:00,9414.0
-2013-01-29 04:00:00,9179.0
-2013-01-29 05:00:00,9048.0
-2013-01-29 06:00:00,9190.0
-2013-01-29 07:00:00,9816.0
-2013-01-29 08:00:00,11015.0
-2013-01-29 09:00:00,11686.0
-2013-01-29 10:00:00,11749.0
-2013-01-29 11:00:00,11796.0
-2013-01-29 12:00:00,11951.0
-2013-01-29 13:00:00,11931.0
-2013-01-29 14:00:00,11939.0
-2013-01-29 15:00:00,11883.0
-2013-01-29 16:00:00,11929.0
-2013-01-29 17:00:00,11932.0
-2013-01-29 18:00:00,12292.0
-2013-01-29 19:00:00,12691.0
-2013-01-29 20:00:00,12559.0
-2013-01-29 21:00:00,12257.0
-2013-01-29 22:00:00,11911.0
-2013-01-29 23:00:00,11370.0
-2013-01-30 00:00:00,10604.0
-2013-01-28 01:00:00,10369.0
-2013-01-28 02:00:00,9926.0
-2013-01-28 03:00:00,9581.0
-2013-01-28 04:00:00,9490.0
-2013-01-28 05:00:00,9450.0
-2013-01-28 06:00:00,9712.0
-2013-01-28 07:00:00,10351.0
-2013-01-28 08:00:00,11551.0
-2013-01-28 09:00:00,12167.0
-2013-01-28 10:00:00,12211.0
-2013-01-28 11:00:00,12260.0
-2013-01-28 12:00:00,12253.0
-2013-01-28 13:00:00,12178.0
-2013-01-28 14:00:00,12050.0
-2013-01-28 15:00:00,11990.0
-2013-01-28 16:00:00,11785.0
-2013-01-28 17:00:00,11704.0
-2013-01-28 18:00:00,12012.0
-2013-01-28 19:00:00,12830.0
-2013-01-28 20:00:00,12828.0
-2013-01-28 21:00:00,12651.0
-2013-01-28 22:00:00,12356.0
-2013-01-28 23:00:00,11834.0
-2013-01-29 00:00:00,11084.0
-2013-01-27 01:00:00,10753.0
-2013-01-27 02:00:00,10331.0
-2013-01-27 03:00:00,10081.0
-2013-01-27 04:00:00,9880.0
-2013-01-27 05:00:00,9852.0
-2013-01-27 06:00:00,9863.0
-2013-01-27 07:00:00,10028.0
-2013-01-27 08:00:00,10250.0
-2013-01-27 09:00:00,10364.0
-2013-01-27 10:00:00,10611.0
-2013-01-27 11:00:00,10927.0
-2013-01-27 12:00:00,11065.0
-2013-01-27 13:00:00,11203.0
-2013-01-27 14:00:00,11212.0
-2013-01-27 15:00:00,11322.0
-2013-01-27 16:00:00,11352.0
-2013-01-27 17:00:00,11614.0
-2013-01-27 18:00:00,12143.0
-2013-01-27 19:00:00,12706.0
-2013-01-27 20:00:00,12613.0
-2013-01-27 21:00:00,12443.0
-2013-01-27 22:00:00,12079.0
-2013-01-27 23:00:00,11634.0
-2013-01-28 00:00:00,10950.0
-2013-01-26 01:00:00,11497.0
-2013-01-26 02:00:00,11026.0
-2013-01-26 03:00:00,10731.0
-2013-01-26 04:00:00,10568.0
-2013-01-26 05:00:00,10551.0
-2013-01-26 06:00:00,10661.0
-2013-01-26 07:00:00,10978.0
-2013-01-26 08:00:00,11478.0
-2013-01-26 09:00:00,11684.0
-2013-01-26 10:00:00,11887.0
-2013-01-26 11:00:00,11952.0
-2013-01-26 12:00:00,11896.0
-2013-01-26 13:00:00,11742.0
-2013-01-26 14:00:00,11538.0
-2013-01-26 15:00:00,11270.0
-2013-01-26 16:00:00,11016.0
-2013-01-26 17:00:00,10997.0
-2013-01-26 18:00:00,11306.0
-2013-01-26 19:00:00,12327.0
-2013-01-26 20:00:00,12531.0
-2013-01-26 21:00:00,12378.0
-2013-01-26 22:00:00,12183.0
-2013-01-26 23:00:00,11828.0
-2013-01-27 00:00:00,11313.0
-2013-01-25 01:00:00,11850.0
-2013-01-25 02:00:00,11352.0
-2013-01-25 03:00:00,11065.0
-2013-01-25 04:00:00,10877.0
-2013-01-25 05:00:00,10842.0
-2013-01-25 06:00:00,11102.0
-2013-01-25 07:00:00,11767.0
-2013-01-25 08:00:00,12848.0
-2013-01-25 09:00:00,13324.0
-2013-01-25 10:00:00,13411.0
-2013-01-25 11:00:00,13591.0
-2013-01-25 12:00:00,13661.0
-2013-01-25 13:00:00,13577.0
-2013-01-25 14:00:00,13473.0
-2013-01-25 15:00:00,13425.0
-2013-01-25 16:00:00,13313.0
-2013-01-25 17:00:00,13213.0
-2013-01-25 18:00:00,13399.0
-2013-01-25 19:00:00,14005.0
-2013-01-25 20:00:00,13892.0
-2013-01-25 21:00:00,13699.0
-2013-01-25 22:00:00,13333.0
-2013-01-25 23:00:00,12933.0
-2013-01-26 00:00:00,12175.0
-2013-01-24 01:00:00,12231.0
-2013-01-24 02:00:00,11758.0
-2013-01-24 03:00:00,11513.0
-2013-01-24 04:00:00,11423.0
-2013-01-24 05:00:00,11436.0
-2013-01-24 06:00:00,11691.0
-2013-01-24 07:00:00,12382.0
-2013-01-24 08:00:00,13548.0
-2013-01-24 09:00:00,14077.0
-2013-01-24 10:00:00,14092.0
-2013-01-24 11:00:00,14104.0
-2013-01-24 12:00:00,14057.0
-2013-01-24 13:00:00,13934.0
-2013-01-24 14:00:00,13764.0
-2013-01-24 15:00:00,13637.0
-2013-01-24 16:00:00,13509.0
-2013-01-24 17:00:00,13482.0
-2013-01-24 18:00:00,13933.0
-2013-01-24 19:00:00,14623.0
-2013-01-24 20:00:00,14509.0
-2013-01-24 21:00:00,14337.0
-2013-01-24 22:00:00,14021.0
-2013-01-24 23:00:00,13508.0
-2013-01-25 00:00:00,12609.0
-2013-01-23 01:00:00,12327.0
-2013-01-23 02:00:00,11875.0
-2013-01-23 03:00:00,11572.0
-2013-01-23 04:00:00,11409.0
-2013-01-23 05:00:00,11399.0
-2013-01-23 06:00:00,11592.0
-2013-01-23 07:00:00,12200.0
-2013-01-23 08:00:00,13307.0
-2013-01-23 09:00:00,13933.0
-2013-01-23 10:00:00,13999.0
-2013-01-23 11:00:00,14074.0
-2013-01-23 12:00:00,14194.0
-2013-01-23 13:00:00,14138.0
-2013-01-23 14:00:00,14071.0
-2013-01-23 15:00:00,14001.0
-2013-01-23 16:00:00,13884.0
-2013-01-23 17:00:00,13844.0
-2013-01-23 18:00:00,14121.0
-2013-01-23 19:00:00,14777.0
-2013-01-23 20:00:00,14683.0
-2013-01-23 21:00:00,14543.0
-2013-01-23 22:00:00,14239.0
-2013-01-23 23:00:00,13800.0
-2013-01-24 00:00:00,12943.0
-2013-01-22 01:00:00,12472.0
-2013-01-22 02:00:00,11983.0
-2013-01-22 03:00:00,11744.0
-2013-01-22 04:00:00,11615.0
-2013-01-22 05:00:00,11629.0
-2013-01-22 06:00:00,11851.0
-2013-01-22 07:00:00,12557.0
-2013-01-22 08:00:00,13741.0
-2013-01-22 09:00:00,14229.0
-2013-01-22 10:00:00,14206.0
-2013-01-22 11:00:00,14274.0
-2013-01-22 12:00:00,14259.0
-2013-01-22 13:00:00,14169.0
-2013-01-22 14:00:00,14085.0
-2013-01-22 15:00:00,13951.0
-2013-01-22 16:00:00,13879.0
-2013-01-22 17:00:00,13901.0
-2013-01-22 18:00:00,14401.0
-2013-01-22 19:00:00,15139.0
-2013-01-22 20:00:00,15052.0
-2013-01-22 21:00:00,14849.0
-2013-01-22 22:00:00,14534.0
-2013-01-22 23:00:00,13977.0
-2013-01-23 00:00:00,13116.0
-2013-01-21 01:00:00,11200.0
-2013-01-21 02:00:00,10827.0
-2013-01-21 03:00:00,10670.0
-2013-01-21 04:00:00,10608.0
-2013-01-21 05:00:00,10673.0
-2013-01-21 06:00:00,10954.0
-2013-01-21 07:00:00,11581.0
-2013-01-21 08:00:00,12575.0
-2013-01-21 09:00:00,13122.0
-2013-01-21 10:00:00,13352.0
-2013-01-21 11:00:00,13544.0
-2013-01-21 12:00:00,13739.0
-2013-01-21 13:00:00,13776.0
-2013-01-21 14:00:00,13773.0
-2013-01-21 15:00:00,13697.0
-2013-01-21 16:00:00,13582.0
-2013-01-21 17:00:00,13558.0
-2013-01-21 18:00:00,13975.0
-2013-01-21 19:00:00,14914.0
-2013-01-21 20:00:00,14950.0
-2013-01-21 21:00:00,14789.0
-2013-01-21 22:00:00,14518.0
-2013-01-21 23:00:00,14025.0
-2013-01-22 00:00:00,13183.0
-2013-01-20 01:00:00,10358.0
-2013-01-20 02:00:00,10024.0
-2013-01-20 03:00:00,9926.0
-2013-01-20 04:00:00,9820.0
-2013-01-20 05:00:00,9854.0
-2013-01-20 06:00:00,9932.0
-2013-01-20 07:00:00,10148.0
-2013-01-20 08:00:00,10419.0
-2013-01-20 09:00:00,10539.0
-2013-01-20 10:00:00,10727.0
-2013-01-20 11:00:00,10876.0
-2013-01-20 12:00:00,10962.0
-2013-01-20 13:00:00,11023.0
-2013-01-20 14:00:00,11071.0
-2013-01-20 15:00:00,11054.0
-2013-01-20 16:00:00,11117.0
-2013-01-20 17:00:00,11217.0
-2013-01-20 18:00:00,11751.0
-2013-01-20 19:00:00,12641.0
-2013-01-20 20:00:00,12756.0
-2013-01-20 21:00:00,12658.0
-2013-01-20 22:00:00,12510.0
-2013-01-20 23:00:00,12207.0
-2013-01-21 00:00:00,11689.0
-2013-01-19 01:00:00,10622.0
-2013-01-19 02:00:00,10049.0
-2013-01-19 03:00:00,9705.0
-2013-01-19 04:00:00,9475.0
-2013-01-19 05:00:00,9415.0
-2013-01-19 06:00:00,9458.0
-2013-01-19 07:00:00,9743.0
-2013-01-19 08:00:00,10194.0
-2013-01-19 09:00:00,10513.0
-2013-01-19 10:00:00,10782.0
-2013-01-19 11:00:00,11063.0
-2013-01-19 12:00:00,11077.0
-2013-01-19 13:00:00,10896.0
-2013-01-19 14:00:00,10804.0
-2013-01-19 15:00:00,10715.0
-2013-01-19 16:00:00,10512.0
-2013-01-19 17:00:00,10381.0
-2013-01-19 18:00:00,10643.0
-2013-01-19 19:00:00,11509.0
-2013-01-19 20:00:00,11545.0
-2013-01-19 21:00:00,11452.0
-2013-01-19 22:00:00,11317.0
-2013-01-19 23:00:00,11099.0
-2013-01-20 00:00:00,10713.0
-2013-01-18 01:00:00,11199.0
-2013-01-18 02:00:00,10729.0
-2013-01-18 03:00:00,10444.0
-2013-01-18 04:00:00,10323.0
-2013-01-18 05:00:00,10297.0
-2013-01-18 06:00:00,10538.0
-2013-01-18 07:00:00,11254.0
-2013-01-18 08:00:00,12424.0
-2013-01-18 09:00:00,13064.0
-2013-01-18 10:00:00,13140.0
-2013-01-18 11:00:00,13165.0
-2013-01-18 12:00:00,13153.0
-2013-01-18 13:00:00,12952.0
-2013-01-18 14:00:00,12652.0
-2013-01-18 15:00:00,12498.0
-2013-01-18 16:00:00,12260.0
-2013-01-18 17:00:00,12162.0
-2013-01-18 18:00:00,12426.0
-2013-01-18 19:00:00,13240.0
-2013-01-18 20:00:00,13159.0
-2013-01-18 21:00:00,12889.0
-2013-01-18 22:00:00,12536.0
-2013-01-18 23:00:00,12063.0
-2013-01-19 00:00:00,11318.0
-2013-01-17 01:00:00,10738.0
-2013-01-17 02:00:00,10203.0
-2013-01-17 03:00:00,9910.0
-2013-01-17 04:00:00,9783.0
-2013-01-17 05:00:00,9804.0
-2013-01-17 06:00:00,10096.0
-2013-01-17 07:00:00,10910.0
-2013-01-17 08:00:00,12213.0
-2013-01-17 09:00:00,12809.0
-2013-01-17 10:00:00,12756.0
-2013-01-17 11:00:00,12742.0
-2013-01-17 12:00:00,12762.0
-2013-01-17 13:00:00,12709.0
-2013-01-17 14:00:00,12617.0
-2013-01-17 15:00:00,12571.0
-2013-01-17 16:00:00,12419.0
-2013-01-17 17:00:00,12414.0
-2013-01-17 18:00:00,12816.0
-2013-01-17 19:00:00,13724.0
-2013-01-17 20:00:00,13670.0
-2013-01-17 21:00:00,13486.0
-2013-01-17 22:00:00,13228.0
-2013-01-17 23:00:00,12717.0
-2013-01-18 00:00:00,11903.0
-2013-01-16 01:00:00,11160.0
-2013-01-16 02:00:00,10707.0
-2013-01-16 03:00:00,10466.0
-2013-01-16 04:00:00,10351.0
-2013-01-16 05:00:00,10376.0
-2013-01-16 06:00:00,10662.0
-2013-01-16 07:00:00,11414.0
-2013-01-16 08:00:00,12684.0
-2013-01-16 09:00:00,13210.0
-2013-01-16 10:00:00,13047.0
-2013-01-16 11:00:00,13054.0
-2013-01-16 12:00:00,13049.0
-2013-01-16 13:00:00,12916.0
-2013-01-16 14:00:00,12803.0
-2013-01-16 15:00:00,12809.0
-2013-01-16 16:00:00,12862.0
-2013-01-16 17:00:00,12947.0
-2013-01-16 18:00:00,13371.0
-2013-01-16 19:00:00,13873.0
-2013-01-16 20:00:00,13644.0
-2013-01-16 21:00:00,13364.0
-2013-01-16 22:00:00,12990.0
-2013-01-16 23:00:00,12401.0
-2013-01-17 00:00:00,11499.0
-2013-01-15 01:00:00,11382.0
-2013-01-15 02:00:00,10925.0
-2013-01-15 03:00:00,10633.0
-2013-01-15 04:00:00,10530.0
-2013-01-15 05:00:00,10547.0
-2013-01-15 06:00:00,10814.0
-2013-01-15 07:00:00,11546.0
-2013-01-15 08:00:00,12796.0
-2013-01-15 09:00:00,13323.0
-2013-01-15 10:00:00,13202.0
-2013-01-15 11:00:00,13096.0
-2013-01-15 12:00:00,12999.0
-2013-01-15 13:00:00,12908.0
-2013-01-15 14:00:00,12774.0
-2013-01-15 15:00:00,12768.0
-2013-01-15 16:00:00,12638.0
-2013-01-15 17:00:00,12589.0
-2013-01-15 18:00:00,12977.0
-2013-01-15 19:00:00,13851.0
-2013-01-15 20:00:00,13771.0
-2013-01-15 21:00:00,13592.0
-2013-01-15 22:00:00,13321.0
-2013-01-15 23:00:00,12765.0
-2013-01-16 00:00:00,11919.0
-2013-01-14 01:00:00,10871.0
-2013-01-14 02:00:00,10564.0
-2013-01-14 03:00:00,10337.0
-2013-01-14 04:00:00,10301.0
-2013-01-14 05:00:00,10363.0
-2013-01-14 06:00:00,10661.0
-2013-01-14 07:00:00,11432.0
-2013-01-14 08:00:00,12777.0
-2013-01-14 09:00:00,13402.0
-2013-01-14 10:00:00,13373.0
-2013-01-14 11:00:00,13299.0
-2013-01-14 12:00:00,13277.0
-2013-01-14 13:00:00,13252.0
-2013-01-14 14:00:00,13121.0
-2013-01-14 15:00:00,13041.0
-2013-01-14 16:00:00,12792.0
-2013-01-14 17:00:00,12712.0
-2013-01-14 18:00:00,13154.0
-2013-01-14 19:00:00,14041.0
-2013-01-14 20:00:00,14023.0
-2013-01-14 21:00:00,13857.0
-2013-01-14 22:00:00,13522.0
-2013-01-14 23:00:00,12993.0
-2013-01-15 00:00:00,12140.0
-2013-01-13 01:00:00,10076.0
-2013-01-13 02:00:00,9666.0
-2013-01-13 03:00:00,9312.0
-2013-01-13 04:00:00,9151.0
-2013-01-13 05:00:00,8997.0
-2013-01-13 06:00:00,9074.0
-2013-01-13 07:00:00,9197.0
-2013-01-13 08:00:00,9546.0
-2013-01-13 09:00:00,9805.0
-2013-01-13 10:00:00,10087.0
-2013-01-13 11:00:00,10367.0
-2013-01-13 12:00:00,10689.0
-2013-01-13 13:00:00,10826.0
-2013-01-13 14:00:00,10966.0
-2013-01-13 15:00:00,11011.0
-2013-01-13 16:00:00,11022.0
-2013-01-13 17:00:00,11185.0
-2013-01-13 18:00:00,11804.0
-2013-01-13 19:00:00,12507.0
-2013-01-13 20:00:00,12609.0
-2013-01-13 21:00:00,12504.0
-2013-01-13 22:00:00,12345.0
-2013-01-13 23:00:00,12005.0
-2013-01-14 00:00:00,11457.0
-2013-01-12 01:00:00,9962.0
-2013-01-12 02:00:00,9393.0
-2013-01-12 03:00:00,9031.0
-2013-01-12 04:00:00,8760.0
-2013-01-12 05:00:00,8659.0
-2013-01-12 06:00:00,8657.0
-2013-01-12 07:00:00,8897.0
-2013-01-12 08:00:00,9369.0
-2013-01-12 09:00:00,9676.0
-2013-01-12 10:00:00,9939.0
-2013-01-12 11:00:00,10227.0
-2013-01-12 12:00:00,10444.0
-2013-01-12 13:00:00,10480.0
-2013-01-12 14:00:00,10430.0
-2013-01-12 15:00:00,10328.0
-2013-01-12 16:00:00,10369.0
-2013-01-12 17:00:00,10511.0
-2013-01-12 18:00:00,11052.0
-2013-01-12 19:00:00,11628.0
-2013-01-12 20:00:00,11559.0
-2013-01-12 21:00:00,11427.0
-2013-01-12 22:00:00,11330.0
-2013-01-12 23:00:00,11069.0
-2013-01-13 00:00:00,10598.0
-2013-01-11 01:00:00,10377.0
-2013-01-11 02:00:00,9781.0
-2013-01-11 03:00:00,9452.0
-2013-01-11 04:00:00,9244.0
-2013-01-11 05:00:00,9162.0
-2013-01-11 06:00:00,9310.0
-2013-01-11 07:00:00,9931.0
-2013-01-11 08:00:00,11057.0
-2013-01-11 09:00:00,11711.0
-2013-01-11 10:00:00,11778.0
-2013-01-11 11:00:00,11856.0
-2013-01-11 12:00:00,11988.0
-2013-01-11 13:00:00,11952.0
-2013-01-11 14:00:00,11945.0
-2013-01-11 15:00:00,11900.0
-2013-01-11 16:00:00,11773.0
-2013-01-11 17:00:00,11700.0
-2013-01-11 18:00:00,12109.0
-2013-01-11 19:00:00,12559.0
-2013-01-11 20:00:00,12403.0
-2013-01-11 21:00:00,12116.0
-2013-01-11 22:00:00,11797.0
-2013-01-11 23:00:00,11384.0
-2013-01-12 00:00:00,10667.0
-2013-01-10 01:00:00,10495.0
-2013-01-10 02:00:00,10057.0
-2013-01-10 03:00:00,9792.0
-2013-01-10 04:00:00,9680.0
-2013-01-10 05:00:00,9692.0
-2013-01-10 06:00:00,9962.0
-2013-01-10 07:00:00,10707.0
-2013-01-10 08:00:00,11963.0
-2013-01-10 09:00:00,12658.0
-2013-01-10 10:00:00,12559.0
-2013-01-10 11:00:00,12494.0
-2013-01-10 12:00:00,12589.0
-2013-01-10 13:00:00,12510.0
-2013-01-10 14:00:00,12300.0
-2013-01-10 15:00:00,12297.0
-2013-01-10 16:00:00,12302.0
-2013-01-10 17:00:00,12414.0
-2013-01-10 18:00:00,12978.0
-2013-01-10 19:00:00,13430.0
-2013-01-10 20:00:00,13219.0
-2013-01-10 21:00:00,12967.0
-2013-01-10 22:00:00,12641.0
-2013-01-10 23:00:00,12084.0
-2013-01-11 00:00:00,11182.0
-2013-01-09 01:00:00,10617.0
-2013-01-09 02:00:00,10080.0
-2013-01-09 03:00:00,9749.0
-2013-01-09 04:00:00,9564.0
-2013-01-09 05:00:00,9587.0
-2013-01-09 06:00:00,9808.0
-2013-01-09 07:00:00,10562.0
-2013-01-09 08:00:00,11802.0
-2013-01-09 09:00:00,12376.0
-2013-01-09 10:00:00,12230.0
-2013-01-09 11:00:00,12187.0
-2013-01-09 12:00:00,12134.0
-2013-01-09 13:00:00,12078.0
-2013-01-09 14:00:00,12006.0
-2013-01-09 15:00:00,11950.0
-2013-01-09 16:00:00,11851.0
-2013-01-09 17:00:00,11799.0
-2013-01-09 18:00:00,12362.0
-2013-01-09 19:00:00,13144.0
-2013-01-09 20:00:00,13017.0
-2013-01-09 21:00:00,12858.0
-2013-01-09 22:00:00,12583.0
-2013-01-09 23:00:00,12068.0
-2013-01-10 00:00:00,11263.0
-2013-01-08 01:00:00,10806.0
-2013-01-08 02:00:00,10318.0
-2013-01-08 03:00:00,10031.0
-2013-01-08 04:00:00,9887.0
-2013-01-08 05:00:00,9877.0
-2013-01-08 06:00:00,10135.0
-2013-01-08 07:00:00,10855.0
-2013-01-08 08:00:00,12113.0
-2013-01-08 09:00:00,12684.0
-2013-01-08 10:00:00,12613.0
-2013-01-08 11:00:00,12590.0
-2013-01-08 12:00:00,12568.0
-2013-01-08 13:00:00,12374.0
-2013-01-08 14:00:00,12264.0
-2013-01-08 15:00:00,12244.0
-2013-01-08 16:00:00,12117.0
-2013-01-08 17:00:00,12085.0
-2013-01-08 18:00:00,12636.0
-2013-01-08 19:00:00,13467.0
-2013-01-08 20:00:00,13313.0
-2013-01-08 21:00:00,13119.0
-2013-01-08 22:00:00,12837.0
-2013-01-08 23:00:00,12286.0
-2013-01-09 00:00:00,11419.0
-2013-01-07 01:00:00,10612.0
-2013-01-07 02:00:00,10244.0
-2013-01-07 03:00:00,10072.0
-2013-01-07 04:00:00,9992.0
-2013-01-07 05:00:00,10095.0
-2013-01-07 06:00:00,10442.0
-2013-01-07 07:00:00,11264.0
-2013-01-07 08:00:00,12518.0
-2013-01-07 09:00:00,13104.0
-2013-01-07 10:00:00,12949.0
-2013-01-07 11:00:00,12937.0
-2013-01-07 12:00:00,12901.0
-2013-01-07 13:00:00,12751.0
-2013-01-07 14:00:00,12619.0
-2013-01-07 15:00:00,12546.0
-2013-01-07 16:00:00,12365.0
-2013-01-07 17:00:00,12348.0
-2013-01-07 18:00:00,12972.0
-2013-01-07 19:00:00,13747.0
-2013-01-07 20:00:00,13626.0
-2013-01-07 21:00:00,13382.0
-2013-01-07 22:00:00,13046.0
-2013-01-07 23:00:00,12452.0
-2013-01-08 00:00:00,11632.0
-2013-01-06 01:00:00,10533.0
-2013-01-06 02:00:00,9985.0
-2013-01-06 03:00:00,9639.0
-2013-01-06 04:00:00,9348.0
-2013-01-06 05:00:00,9275.0
-2013-01-06 06:00:00,9300.0
-2013-01-06 07:00:00,9547.0
-2013-01-06 08:00:00,9837.0
-2013-01-06 09:00:00,10050.0
-2013-01-06 10:00:00,10192.0
-2013-01-06 11:00:00,10452.0
-2013-01-06 12:00:00,10641.0
-2013-01-06 13:00:00,10677.0
-2013-01-06 14:00:00,10624.0
-2013-01-06 15:00:00,10514.0
-2013-01-06 16:00:00,10450.0
-2013-01-06 17:00:00,10582.0
-2013-01-06 18:00:00,11293.0
-2013-01-06 19:00:00,12373.0
-2013-01-06 20:00:00,12421.0
-2013-01-06 21:00:00,12396.0
-2013-01-06 22:00:00,12109.0
-2013-01-06 23:00:00,11775.0
-2013-01-07 00:00:00,11164.0
-2013-01-05 01:00:00,11261.0
-2013-01-05 02:00:00,10728.0
-2013-01-05 03:00:00,10307.0
-2013-01-05 04:00:00,10126.0
-2013-01-05 05:00:00,9997.0
-2013-01-05 06:00:00,10081.0
-2013-01-05 07:00:00,10348.0
-2013-01-05 08:00:00,10821.0
-2013-01-05 09:00:00,11064.0
-2013-01-05 10:00:00,11161.0
-2013-01-05 11:00:00,11275.0
-2013-01-05 12:00:00,11369.0
-2013-01-05 13:00:00,11346.0
-2013-01-05 14:00:00,11257.0
-2013-01-05 15:00:00,11289.0
-2013-01-05 16:00:00,11446.0
-2013-01-05 17:00:00,11459.0
-2013-01-05 18:00:00,12013.0
-2013-01-05 19:00:00,12557.0
-2013-01-05 20:00:00,12525.0
-2013-01-05 21:00:00,12330.0
-2013-01-05 22:00:00,12175.0
-2013-01-05 23:00:00,11806.0
-2013-01-06 00:00:00,11183.0
-2013-01-04 01:00:00,11528.0
-2013-01-04 02:00:00,11019.0
-2013-01-04 03:00:00,10708.0
-2013-01-04 04:00:00,10598.0
-2013-01-04 05:00:00,10648.0
-2013-01-04 06:00:00,10915.0
-2013-01-04 07:00:00,11604.0
-2013-01-04 08:00:00,12587.0
-2013-01-04 09:00:00,13111.0
-2013-01-04 10:00:00,13173.0
-2013-01-04 11:00:00,13165.0
-2013-01-04 12:00:00,13127.0
-2013-01-04 13:00:00,13000.0
-2013-01-04 14:00:00,12777.0
-2013-01-04 15:00:00,12650.0
-2013-01-04 16:00:00,12490.0
-2013-01-04 17:00:00,12391.0
-2013-01-04 18:00:00,12977.0
-2013-01-04 19:00:00,13784.0
-2013-01-04 20:00:00,13693.0
-2013-01-04 21:00:00,13383.0
-2013-01-04 22:00:00,13151.0
-2013-01-04 23:00:00,12716.0
-2013-01-05 00:00:00,12061.0
-2013-01-03 01:00:00,11443.0
-2013-01-03 02:00:00,10882.0
-2013-01-03 03:00:00,10526.0
-2013-01-03 04:00:00,10267.0
-2013-01-03 05:00:00,10213.0
-2013-01-03 06:00:00,10399.0
-2013-01-03 07:00:00,10982.0
-2013-01-03 08:00:00,11955.0
-2013-01-03 09:00:00,12607.0
-2013-01-03 10:00:00,12789.0
-2013-01-03 11:00:00,12968.0
-2013-01-03 12:00:00,13112.0
-2013-01-03 13:00:00,13178.0
-2013-01-03 14:00:00,13179.0
-2013-01-03 15:00:00,13182.0
-2013-01-03 16:00:00,13069.0
-2013-01-03 17:00:00,13001.0
-2013-01-03 18:00:00,13570.0
-2013-01-03 19:00:00,14201.0
-2013-01-03 20:00:00,14044.0
-2013-01-03 21:00:00,13833.0
-2013-01-03 22:00:00,13521.0
-2013-01-03 23:00:00,13076.0
-2013-01-04 00:00:00,12279.0
-2013-01-02 01:00:00,10780.0
-2013-01-02 02:00:00,10391.0
-2013-01-02 03:00:00,10157.0
-2013-01-02 04:00:00,10051.0
-2013-01-02 05:00:00,10087.0
-2013-01-02 06:00:00,10331.0
-2013-01-02 07:00:00,10980.0
-2013-01-02 08:00:00,12081.0
-2013-01-02 09:00:00,12656.0
-2013-01-02 10:00:00,12811.0
-2013-01-02 11:00:00,12887.0
-2013-01-02 12:00:00,12930.0
-2013-01-02 13:00:00,12900.0
-2013-01-02 14:00:00,12808.0
-2013-01-02 15:00:00,12705.0
-2013-01-02 16:00:00,12583.0
-2013-01-02 17:00:00,12562.0
-2013-01-02 18:00:00,13237.0
-2013-01-02 19:00:00,14138.0
-2013-01-02 20:00:00,14039.0
-2013-01-02 21:00:00,13857.0
-2013-01-02 22:00:00,13574.0
-2013-01-02 23:00:00,13098.0
-2013-01-03 00:00:00,12287.0
-2013-01-01 01:00:00,10581.0
-2013-01-01 02:00:00,10175.0
-2013-01-01 03:00:00,9866.0
-2013-01-01 04:00:00,9631.0
-2013-01-01 05:00:00,9536.0
-2013-01-01 06:00:00,9583.0
-2013-01-01 07:00:00,9778.0
-2013-01-01 08:00:00,10059.0
-2013-01-01 09:00:00,10047.0
-2013-01-01 10:00:00,9984.0
-2013-01-01 11:00:00,10102.0
-2013-01-01 12:00:00,10227.0
-2013-01-01 13:00:00,10262.0
-2013-01-01 14:00:00,10263.0
-2013-01-01 15:00:00,10216.0
-2013-01-01 16:00:00,10173.0
-2013-01-01 17:00:00,10339.0
-2013-01-01 18:00:00,11208.0
-2013-01-01 19:00:00,12355.0
-2013-01-01 20:00:00,12429.0
-2013-01-01 21:00:00,12364.0
-2013-01-01 22:00:00,12229.0
-2013-01-01 23:00:00,11909.0
-2013-01-02 00:00:00,11381.0
-2014-12-31 01:00:00,11633.0
-2014-12-31 02:00:00,11139.0
-2014-12-31 03:00:00,10871.0
-2014-12-31 04:00:00,10735.0
-2014-12-31 05:00:00,10714.0
-2014-12-31 06:00:00,10886.0
-2014-12-31 07:00:00,11404.0
-2014-12-31 08:00:00,12098.0
-2014-12-31 09:00:00,12409.0
-2014-12-31 10:00:00,12526.0
-2014-12-31 11:00:00,12620.0
-2014-12-31 12:00:00,12672.0
-2014-12-31 13:00:00,12608.0
-2014-12-31 14:00:00,12441.0
-2014-12-31 15:00:00,12281.0
-2014-12-31 16:00:00,12123.0
-2014-12-31 17:00:00,12081.0
-2014-12-31 18:00:00,12851.0
-2014-12-31 19:00:00,13663.0
-2014-12-31 20:00:00,13419.0
-2014-12-31 21:00:00,13067.0
-2014-12-31 22:00:00,12672.0
-2014-12-31 23:00:00,12244.0
-2015-01-01 00:00:00,11774.0
-2014-12-30 01:00:00,10988.0
-2014-12-30 02:00:00,10521.0
-2014-12-30 03:00:00,10264.0
-2014-12-30 04:00:00,10114.0
-2014-12-30 05:00:00,10150.0
-2014-12-30 06:00:00,10432.0
-2014-12-30 07:00:00,11105.0
-2014-12-30 08:00:00,12020.0
-2014-12-30 09:00:00,12496.0
-2014-12-30 10:00:00,12593.0
-2014-12-30 11:00:00,12687.0
-2014-12-30 12:00:00,12708.0
-2014-12-30 13:00:00,12651.0
-2014-12-30 14:00:00,12541.0
-2014-12-30 15:00:00,12490.0
-2014-12-30 16:00:00,12405.0
-2014-12-30 17:00:00,12460.0
-2014-12-30 18:00:00,13201.0
-2014-12-30 19:00:00,14012.0
-2014-12-30 20:00:00,13869.0
-2014-12-30 21:00:00,13705.0
-2014-12-30 22:00:00,13503.0
-2014-12-30 23:00:00,13083.0
-2014-12-31 00:00:00,12388.0
-2014-12-29 01:00:00,10290.0
-2014-12-29 02:00:00,9809.0
-2014-12-29 03:00:00,9606.0
-2014-12-29 04:00:00,9442.0
-2014-12-29 05:00:00,9491.0
-2014-12-29 06:00:00,9703.0
-2014-12-29 07:00:00,10364.0
-2014-12-29 08:00:00,11238.0
-2014-12-29 09:00:00,11754.0
-2014-12-29 10:00:00,11909.0
-2014-12-29 11:00:00,12058.0
-2014-12-29 12:00:00,12126.0
-2014-12-29 13:00:00,12088.0
-2014-12-29 14:00:00,12095.0
-2014-12-29 15:00:00,12114.0
-2014-12-29 16:00:00,12107.0
-2014-12-29 17:00:00,12162.0
-2014-12-29 18:00:00,12891.0
-2014-12-29 19:00:00,13514.0
-2014-12-29 20:00:00,13355.0
-2014-12-29 21:00:00,13105.0
-2014-12-29 22:00:00,12884.0
-2014-12-29 23:00:00,12414.0
-2014-12-30 00:00:00,11710.0
-2014-12-28 01:00:00,10030.0
-2014-12-28 02:00:00,9590.0
-2014-12-28 03:00:00,9225.0
-2014-12-28 04:00:00,9082.0
-2014-12-28 05:00:00,8985.0
-2014-12-28 06:00:00,9069.0
-2014-12-28 07:00:00,9246.0
-2014-12-28 08:00:00,9559.0
-2014-12-28 09:00:00,9707.0
-2014-12-28 10:00:00,9868.0
-2014-12-28 11:00:00,10041.0
-2014-12-28 12:00:00,10108.0
-2014-12-28 13:00:00,10165.0
-2014-12-28 14:00:00,10064.0
-2014-12-28 15:00:00,9957.0
-2014-12-28 16:00:00,9864.0
-2014-12-28 17:00:00,9984.0
-2014-12-28 18:00:00,10794.0
-2014-12-28 19:00:00,11746.0
-2014-12-28 20:00:00,11832.0
-2014-12-28 21:00:00,11807.0
-2014-12-28 22:00:00,11634.0
-2014-12-28 23:00:00,11395.0
-2014-12-29 00:00:00,10835.0
-2014-12-27 01:00:00,9464.0
-2014-12-27 02:00:00,8989.0
-2014-12-27 03:00:00,8591.0
-2014-12-27 04:00:00,8412.0
-2014-12-27 05:00:00,8301.0
-2014-12-27 06:00:00,8385.0
-2014-12-27 07:00:00,8587.0
-2014-12-27 08:00:00,9034.0
-2014-12-27 09:00:00,9334.0
-2014-12-27 10:00:00,9602.0
-2014-12-27 11:00:00,9948.0
-2014-12-27 12:00:00,10225.0
-2014-12-27 13:00:00,10397.0
-2014-12-27 14:00:00,10477.0
-2014-12-27 15:00:00,10354.0
-2014-12-27 16:00:00,10348.0
-2014-12-27 17:00:00,10522.0
-2014-12-27 18:00:00,11248.0
-2014-12-27 19:00:00,11691.0
-2014-12-27 20:00:00,11684.0
-2014-12-27 21:00:00,11523.0
-2014-12-27 22:00:00,11403.0
-2014-12-27 23:00:00,11107.0
-2014-12-28 00:00:00,10640.0
-2014-12-26 01:00:00,9388.0
-2014-12-26 02:00:00,8952.0
-2014-12-26 03:00:00,8688.0
-2014-12-26 04:00:00,8555.0
-2014-12-26 05:00:00,8566.0
-2014-12-26 06:00:00,8766.0
-2014-12-26 07:00:00,9258.0
-2014-12-26 08:00:00,9919.0
-2014-12-26 09:00:00,10180.0
-2014-12-26 10:00:00,10275.0
-2014-12-26 11:00:00,10399.0
-2014-12-26 12:00:00,10440.0
-2014-12-26 13:00:00,10394.0
-2014-12-26 14:00:00,10294.0
-2014-12-26 15:00:00,10187.0
-2014-12-26 16:00:00,10087.0
-2014-12-26 17:00:00,10114.0
-2014-12-26 18:00:00,10882.0
-2014-12-26 19:00:00,11661.0
-2014-12-26 20:00:00,11542.0
-2014-12-26 21:00:00,11346.0
-2014-12-26 22:00:00,11049.0
-2014-12-26 23:00:00,10730.0
-2014-12-27 00:00:00,10164.0
-2014-12-25 01:00:00,9681.0
-2014-12-25 02:00:00,9210.0
-2014-12-25 03:00:00,8851.0
-2014-12-25 04:00:00,8632.0
-2014-12-25 05:00:00,8526.0
-2014-12-25 06:00:00,8601.0
-2014-12-25 07:00:00,8798.0
-2014-12-25 08:00:00,9088.0
-2014-12-25 09:00:00,9251.0
-2014-12-25 10:00:00,9449.0
-2014-12-25 11:00:00,9696.0
-2014-12-25 12:00:00,9757.0
-2014-12-25 13:00:00,9640.0
-2014-12-25 14:00:00,9501.0
-2014-12-25 15:00:00,9310.0
-2014-12-25 16:00:00,9150.0
-2014-12-25 17:00:00,9218.0
-2014-12-25 18:00:00,9865.0
-2014-12-25 19:00:00,10499.0
-2014-12-25 20:00:00,10477.0
-2014-12-25 21:00:00,10491.0
-2014-12-25 22:00:00,10451.0
-2014-12-25 23:00:00,10272.0
-2014-12-26 00:00:00,9901.0
-2014-12-24 01:00:00,10159.0
-2014-12-24 02:00:00,9477.0
-2014-12-24 03:00:00,9055.0
-2014-12-24 04:00:00,8789.0
-2014-12-24 05:00:00,8735.0
-2014-12-24 06:00:00,8874.0
-2014-12-24 07:00:00,9265.0
-2014-12-24 08:00:00,9863.0
-2014-12-24 09:00:00,10291.0
-2014-12-24 10:00:00,10530.0
-2014-12-24 11:00:00,10824.0
-2014-12-24 12:00:00,10955.0
-2014-12-24 13:00:00,10948.0
-2014-12-24 14:00:00,10845.0
-2014-12-24 15:00:00,10790.0
-2014-12-24 16:00:00,10718.0
-2014-12-24 17:00:00,10835.0
-2014-12-24 18:00:00,11428.0
-2014-12-24 19:00:00,11655.0
-2014-12-24 20:00:00,11259.0
-2014-12-24 21:00:00,10963.0
-2014-12-24 22:00:00,10770.0
-2014-12-24 23:00:00,10549.0
-2014-12-25 00:00:00,10183.0
-2014-12-23 01:00:00,10667.0
-2014-12-23 02:00:00,10019.0
-2014-12-23 03:00:00,9584.0
-2014-12-23 04:00:00,9315.0
-2014-12-23 05:00:00,9215.0
-2014-12-23 06:00:00,9356.0
-2014-12-23 07:00:00,9926.0
-2014-12-23 08:00:00,10816.0
-2014-12-23 09:00:00,11427.0
-2014-12-23 10:00:00,11511.0
-2014-12-23 11:00:00,11566.0
-2014-12-23 12:00:00,11683.0
-2014-12-23 13:00:00,11589.0
-2014-12-23 14:00:00,11480.0
-2014-12-23 15:00:00,11448.0
-2014-12-23 16:00:00,11344.0
-2014-12-23 17:00:00,11303.0
-2014-12-23 18:00:00,12019.0
-2014-12-23 19:00:00,12710.0
-2014-12-23 20:00:00,12570.0
-2014-12-23 21:00:00,12353.0
-2014-12-23 22:00:00,12128.0
-2014-12-23 23:00:00,11727.0
-2014-12-24 00:00:00,10984.0
-2014-12-22 01:00:00,10467.0
-2014-12-22 02:00:00,10035.0
-2014-12-22 03:00:00,9735.0
-2014-12-22 04:00:00,9598.0
-2014-12-22 05:00:00,9617.0
-2014-12-22 06:00:00,9879.0
-2014-12-22 07:00:00,10577.0
-2014-12-22 08:00:00,11505.0
-2014-12-22 09:00:00,12200.0
-2014-12-22 10:00:00,12404.0
-2014-12-22 11:00:00,12544.0
-2014-12-22 12:00:00,12672.0
-2014-12-22 13:00:00,12631.0
-2014-12-22 14:00:00,12586.0
-2014-12-22 15:00:00,12578.0
-2014-12-22 16:00:00,12598.0
-2014-12-22 17:00:00,12731.0
-2014-12-22 18:00:00,13341.0
-2014-12-22 19:00:00,13590.0
-2014-12-22 20:00:00,13361.0
-2014-12-22 21:00:00,13088.0
-2014-12-22 22:00:00,12789.0
-2014-12-22 23:00:00,12323.0
-2014-12-23 00:00:00,11510.0
-2014-12-21 01:00:00,10568.0
-2014-12-21 02:00:00,9990.0
-2014-12-21 03:00:00,9606.0
-2014-12-21 04:00:00,9388.0
-2014-12-21 05:00:00,9319.0
-2014-12-21 06:00:00,9329.0
-2014-12-21 07:00:00,9521.0
-2014-12-21 08:00:00,9783.0
-2014-12-21 09:00:00,10085.0
-2014-12-21 10:00:00,10320.0
-2014-12-21 11:00:00,10600.0
-2014-12-21 12:00:00,10763.0
-2014-12-21 13:00:00,10869.0
-2014-12-21 14:00:00,10810.0
-2014-12-21 15:00:00,10729.0
-2014-12-21 16:00:00,10690.0
-2014-12-21 17:00:00,10792.0
-2014-12-21 18:00:00,11622.0
-2014-12-21 19:00:00,12251.0
-2014-12-21 20:00:00,12236.0
-2014-12-21 21:00:00,12193.0
-2014-12-21 22:00:00,12020.0
-2014-12-21 23:00:00,11733.0
-2014-12-22 00:00:00,11189.0
-2014-12-20 01:00:00,10977.0
-2014-12-20 02:00:00,10418.0
-2014-12-20 03:00:00,10012.0
-2014-12-20 04:00:00,9823.0
-2014-12-20 05:00:00,9677.0
-2014-12-20 06:00:00,9794.0
-2014-12-20 07:00:00,10039.0
-2014-12-20 08:00:00,10527.0
-2014-12-20 09:00:00,10887.0
-2014-12-20 10:00:00,11158.0
-2014-12-20 11:00:00,11480.0
-2014-12-20 12:00:00,11585.0
-2014-12-20 13:00:00,11567.0
-2014-12-20 14:00:00,11490.0
-2014-12-20 15:00:00,11263.0
-2014-12-20 16:00:00,11202.0
-2014-12-20 17:00:00,11265.0
-2014-12-20 18:00:00,12046.0
-2014-12-20 19:00:00,12439.0
-2014-12-20 20:00:00,12394.0
-2014-12-20 21:00:00,12269.0
-2014-12-20 22:00:00,12112.0
-2014-12-20 23:00:00,11745.0
-2014-12-21 00:00:00,11256.0
-2014-12-19 01:00:00,11185.0
-2014-12-19 02:00:00,10589.0
-2014-12-19 03:00:00,10237.0
-2014-12-19 04:00:00,10016.0
-2014-12-19 05:00:00,9998.0
-2014-12-19 06:00:00,10221.0
-2014-12-19 07:00:00,10933.0
-2014-12-19 08:00:00,12023.0
-2014-12-19 09:00:00,12665.0
-2014-12-19 10:00:00,12752.0
-2014-12-19 11:00:00,12837.0
-2014-12-19 12:00:00,12848.0
-2014-12-19 13:00:00,12802.0
-2014-12-19 14:00:00,12605.0
-2014-12-19 15:00:00,12561.0
-2014-12-19 16:00:00,12534.0
-2014-12-19 17:00:00,12690.0
-2014-12-19 18:00:00,13439.0
-2014-12-19 19:00:00,13775.0
-2014-12-19 20:00:00,13566.0
-2014-12-19 21:00:00,13325.0
-2014-12-19 22:00:00,12947.0
-2014-12-19 23:00:00,12560.0
-2014-12-20 00:00:00,11837.0
-2014-12-18 01:00:00,11283.0
-2014-12-18 02:00:00,10654.0
-2014-12-18 03:00:00,10355.0
-2014-12-18 04:00:00,10198.0
-2014-12-18 05:00:00,10170.0
-2014-12-18 06:00:00,10438.0
-2014-12-18 07:00:00,11228.0
-2014-12-18 08:00:00,12379.0
-2014-12-18 09:00:00,12865.0
-2014-12-18 10:00:00,12931.0
-2014-12-18 11:00:00,13040.0
-2014-12-18 12:00:00,13051.0
-2014-12-18 13:00:00,12966.0
-2014-12-18 14:00:00,12841.0
-2014-12-18 15:00:00,12829.0
-2014-12-18 16:00:00,12759.0
-2014-12-18 17:00:00,12840.0
-2014-12-18 18:00:00,13667.0
-2014-12-18 19:00:00,14095.0
-2014-12-18 20:00:00,13923.0
-2014-12-18 21:00:00,13716.0
-2014-12-18 22:00:00,13429.0
-2014-12-18 23:00:00,12907.0
-2014-12-19 00:00:00,12068.0
-2014-12-17 01:00:00,10849.0
-2014-12-17 02:00:00,10278.0
-2014-12-17 03:00:00,9950.0
-2014-12-17 04:00:00,9804.0
-2014-12-17 05:00:00,9827.0
-2014-12-17 06:00:00,10130.0
-2014-12-17 07:00:00,10919.0
-2014-12-17 08:00:00,12134.0
-2014-12-17 09:00:00,12784.0
-2014-12-17 10:00:00,12897.0
-2014-12-17 11:00:00,12974.0
-2014-12-17 12:00:00,13072.0
-2014-12-17 13:00:00,13040.0
-2014-12-17 14:00:00,12995.0
-2014-12-17 15:00:00,13053.0
-2014-12-17 16:00:00,13005.0
-2014-12-17 17:00:00,13117.0
-2014-12-17 18:00:00,13848.0
-2014-12-17 19:00:00,14310.0
-2014-12-17 20:00:00,14099.0
-2014-12-17 21:00:00,13856.0
-2014-12-17 22:00:00,13600.0
-2014-12-17 23:00:00,13054.0
-2014-12-18 00:00:00,12179.0
-2014-12-16 01:00:00,10292.0
-2014-12-16 02:00:00,9677.0
-2014-12-16 03:00:00,9295.0
-2014-12-16 04:00:00,9104.0
-2014-12-16 05:00:00,9071.0
-2014-12-16 06:00:00,9313.0
-2014-12-16 07:00:00,10013.0
-2014-12-16 08:00:00,11169.0
-2014-12-16 09:00:00,11849.0
-2014-12-16 10:00:00,12004.0
-2014-12-16 11:00:00,12091.0
-2014-12-16 12:00:00,12204.0
-2014-12-16 13:00:00,12230.0
-2014-12-16 14:00:00,12227.0
-2014-12-16 15:00:00,12323.0
-2014-12-16 16:00:00,12350.0
-2014-12-16 17:00:00,12556.0
-2014-12-16 18:00:00,13293.0
-2014-12-16 19:00:00,13705.0
-2014-12-16 20:00:00,13577.0
-2014-12-16 21:00:00,13388.0
-2014-12-16 22:00:00,13095.0
-2014-12-16 23:00:00,12580.0
-2014-12-17 00:00:00,11700.0
-2014-12-15 01:00:00,9637.0
-2014-12-15 02:00:00,9162.0
-2014-12-15 03:00:00,8892.0
-2014-12-15 04:00:00,8784.0
-2014-12-15 05:00:00,8800.0
-2014-12-15 06:00:00,9160.0
-2014-12-15 07:00:00,9926.0
-2014-12-15 08:00:00,11138.0
-2014-12-15 09:00:00,11787.0
-2014-12-15 10:00:00,11933.0
-2014-12-15 11:00:00,11966.0
-2014-12-15 12:00:00,12048.0
-2014-12-15 13:00:00,12060.0
-2014-12-15 14:00:00,12047.0
-2014-12-15 15:00:00,12059.0
-2014-12-15 16:00:00,11997.0
-2014-12-15 17:00:00,12156.0
-2014-12-15 18:00:00,12910.0
-2014-12-15 19:00:00,13317.0
-2014-12-15 20:00:00,13092.0
-2014-12-15 21:00:00,12928.0
-2014-12-15 22:00:00,12598.0
-2014-12-15 23:00:00,12050.0
-2014-12-16 00:00:00,11157.0
-2014-12-14 01:00:00,9871.0
-2014-12-14 02:00:00,9309.0
-2014-12-14 03:00:00,8941.0
-2014-12-14 04:00:00,8679.0
-2014-12-14 05:00:00,8546.0
-2014-12-14 06:00:00,8548.0
-2014-12-14 07:00:00,8662.0
-2014-12-14 08:00:00,8966.0
-2014-12-14 09:00:00,9147.0
-2014-12-14 10:00:00,9361.0
-2014-12-14 11:00:00,9640.0
-2014-12-14 12:00:00,9756.0
-2014-12-14 13:00:00,9824.0
-2014-12-14 14:00:00,9861.0
-2014-12-14 15:00:00,9878.0
-2014-12-14 16:00:00,9917.0
-2014-12-14 17:00:00,10101.0
-2014-12-14 18:00:00,10943.0
-2014-12-14 19:00:00,11478.0
-2014-12-14 20:00:00,11549.0
-2014-12-14 21:00:00,11519.0
-2014-12-14 22:00:00,11298.0
-2014-12-14 23:00:00,10940.0
-2014-12-15 00:00:00,10271.0
-2014-12-13 01:00:00,10850.0
-2014-12-13 02:00:00,10204.0
-2014-12-13 03:00:00,9774.0
-2014-12-13 04:00:00,9561.0
-2014-12-13 05:00:00,9444.0
-2014-12-13 06:00:00,9493.0
-2014-12-13 07:00:00,9785.0
-2014-12-13 08:00:00,10301.0
-2014-12-13 09:00:00,10627.0
-2014-12-13 10:00:00,10950.0
-2014-12-13 11:00:00,11142.0
-2014-12-13 12:00:00,11216.0
-2014-12-13 13:00:00,11126.0
-2014-12-13 14:00:00,11040.0
-2014-12-13 15:00:00,10850.0
-2014-12-13 16:00:00,10699.0
-2014-12-13 17:00:00,10761.0
-2014-12-13 18:00:00,11493.0
-2014-12-13 19:00:00,11930.0
-2014-12-13 20:00:00,11826.0
-2014-12-13 21:00:00,11653.0
-2014-12-13 22:00:00,11456.0
-2014-12-13 23:00:00,11104.0
-2014-12-14 00:00:00,10506.0
-2014-12-12 01:00:00,11201.0
-2014-12-12 02:00:00,10646.0
-2014-12-12 03:00:00,10351.0
-2014-12-12 04:00:00,10183.0
-2014-12-12 05:00:00,10217.0
-2014-12-12 06:00:00,10469.0
-2014-12-12 07:00:00,11195.0
-2014-12-12 08:00:00,12275.0
-2014-12-12 09:00:00,12839.0
-2014-12-12 10:00:00,12971.0
-2014-12-12 11:00:00,13012.0
-2014-12-12 12:00:00,13017.0
-2014-12-12 13:00:00,12947.0
-2014-12-12 14:00:00,12786.0
-2014-12-12 15:00:00,12696.0
-2014-12-12 16:00:00,12604.0
-2014-12-12 17:00:00,12670.0
-2014-12-12 18:00:00,13383.0
-2014-12-12 19:00:00,13693.0
-2014-12-12 20:00:00,13464.0
-2014-12-12 21:00:00,13168.0
-2014-12-12 22:00:00,12840.0
-2014-12-12 23:00:00,12428.0
-2014-12-13 00:00:00,11647.0
-2014-12-11 01:00:00,10971.0
-2014-12-11 02:00:00,10429.0
-2014-12-11 03:00:00,10125.0
-2014-12-11 04:00:00,9967.0
-2014-12-11 05:00:00,9939.0
-2014-12-11 06:00:00,10225.0
-2014-12-11 07:00:00,11011.0
-2014-12-11 08:00:00,12198.0
-2014-12-11 09:00:00,12762.0
-2014-12-11 10:00:00,12853.0
-2014-12-11 11:00:00,12845.0
-2014-12-11 12:00:00,12774.0
-2014-12-11 13:00:00,12665.0
-2014-12-11 14:00:00,12487.0
-2014-12-11 15:00:00,12421.0
-2014-12-11 16:00:00,12307.0
-2014-12-11 17:00:00,12373.0
-2014-12-11 18:00:00,13257.0
-2014-12-11 19:00:00,13900.0
-2014-12-11 20:00:00,13794.0
-2014-12-11 21:00:00,13600.0
-2014-12-11 22:00:00,13344.0
-2014-12-11 23:00:00,12872.0
-2014-12-12 00:00:00,12006.0
-2014-12-10 01:00:00,10838.0
-2014-12-10 02:00:00,10289.0
-2014-12-10 03:00:00,9969.0
-2014-12-10 04:00:00,9789.0
-2014-12-10 05:00:00,9810.0
-2014-12-10 06:00:00,10044.0
-2014-12-10 07:00:00,10811.0
-2014-12-10 08:00:00,11943.0
-2014-12-10 09:00:00,12548.0
-2014-12-10 10:00:00,12645.0
-2014-12-10 11:00:00,12740.0
-2014-12-10 12:00:00,12800.0
-2014-12-10 13:00:00,12747.0
-2014-12-10 14:00:00,12687.0
-2014-12-10 15:00:00,12695.0
-2014-12-10 16:00:00,12691.0
-2014-12-10 17:00:00,12842.0
-2014-12-10 18:00:00,13593.0
-2014-12-10 19:00:00,13963.0
-2014-12-10 20:00:00,13751.0
-2014-12-10 21:00:00,13530.0
-2014-12-10 22:00:00,13225.0
-2014-12-10 23:00:00,12705.0
-2014-12-11 00:00:00,11819.0
-2014-12-09 01:00:00,10740.0
-2014-12-09 02:00:00,10158.0
-2014-12-09 03:00:00,9819.0
-2014-12-09 04:00:00,9683.0
-2014-12-09 05:00:00,9675.0
-2014-12-09 06:00:00,9926.0
-2014-12-09 07:00:00,10651.0
-2014-12-09 08:00:00,11792.0
-2014-12-09 09:00:00,12465.0
-2014-12-09 10:00:00,12576.0
-2014-12-09 11:00:00,12591.0
-2014-12-09 12:00:00,12618.0
-2014-12-09 13:00:00,12567.0
-2014-12-09 14:00:00,12465.0
-2014-12-09 15:00:00,12505.0
-2014-12-09 16:00:00,12503.0
-2014-12-09 17:00:00,12637.0
-2014-12-09 18:00:00,13383.0
-2014-12-09 19:00:00,13747.0
-2014-12-09 20:00:00,13623.0
-2014-12-09 21:00:00,13441.0
-2014-12-09 22:00:00,13140.0
-2014-12-09 23:00:00,12573.0
-2014-12-10 00:00:00,11678.0
-2014-12-08 01:00:00,10345.0
-2014-12-08 02:00:00,9863.0
-2014-12-08 03:00:00,9641.0
-2014-12-08 04:00:00,9557.0
-2014-12-08 05:00:00,9579.0
-2014-12-08 06:00:00,9899.0
-2014-12-08 07:00:00,10734.0
-2014-12-08 08:00:00,11889.0
-2014-12-08 09:00:00,12623.0
-2014-12-08 10:00:00,12742.0
-2014-12-08 11:00:00,12859.0
-2014-12-08 12:00:00,12926.0
-2014-12-08 13:00:00,12891.0
-2014-12-08 14:00:00,12843.0
-2014-12-08 15:00:00,12809.0
-2014-12-08 16:00:00,12793.0
-2014-12-08 17:00:00,12963.0
-2014-12-08 18:00:00,13562.0
-2014-12-08 19:00:00,13812.0
-2014-12-08 20:00:00,13603.0
-2014-12-08 21:00:00,13360.0
-2014-12-08 22:00:00,13087.0
-2014-12-08 23:00:00,12522.0
-2014-12-09 00:00:00,11607.0
-2014-12-07 01:00:00,10463.0
-2014-12-07 02:00:00,9963.0
-2014-12-07 03:00:00,9581.0
-2014-12-07 04:00:00,9453.0
-2014-12-07 05:00:00,9372.0
-2014-12-07 06:00:00,9396.0
-2014-12-07 07:00:00,9604.0
-2014-12-07 08:00:00,9862.0
-2014-12-07 09:00:00,9976.0
-2014-12-07 10:00:00,10181.0
-2014-12-07 11:00:00,10432.0
-2014-12-07 12:00:00,10487.0
-2014-12-07 13:00:00,10473.0
-2014-12-07 14:00:00,10491.0
-2014-12-07 15:00:00,10507.0
-2014-12-07 16:00:00,10607.0
-2014-12-07 17:00:00,10861.0
-2014-12-07 18:00:00,11783.0
-2014-12-07 19:00:00,12348.0
-2014-12-07 20:00:00,12379.0
-2014-12-07 21:00:00,12351.0
-2014-12-07 22:00:00,12144.0
-2014-12-07 23:00:00,11733.0
-2014-12-08 00:00:00,11013.0
-2014-12-06 01:00:00,10541.0
-2014-12-06 02:00:00,9952.0
-2014-12-06 03:00:00,9587.0
-2014-12-06 04:00:00,9438.0
-2014-12-06 05:00:00,9383.0
-2014-12-06 06:00:00,9472.0
-2014-12-06 07:00:00,9783.0
-2014-12-06 08:00:00,10314.0
-2014-12-06 09:00:00,10756.0
-2014-12-06 10:00:00,11031.0
-2014-12-06 11:00:00,11251.0
-2014-12-06 12:00:00,11281.0
-2014-12-06 13:00:00,11125.0
-2014-12-06 14:00:00,10930.0
-2014-12-06 15:00:00,10719.0
-2014-12-06 16:00:00,10697.0
-2014-12-06 17:00:00,10752.0
-2014-12-06 18:00:00,11613.0
-2014-12-06 19:00:00,12233.0
-2014-12-06 20:00:00,12192.0
-2014-12-06 21:00:00,12063.0
-2014-12-06 22:00:00,11913.0
-2014-12-06 23:00:00,11619.0
-2014-12-07 00:00:00,11101.0
-2014-12-05 01:00:00,10859.0
-2014-12-05 02:00:00,10271.0
-2014-12-05 03:00:00,9934.0
-2014-12-05 04:00:00,9711.0
-2014-12-05 05:00:00,9676.0
-2014-12-05 06:00:00,9926.0
-2014-12-05 07:00:00,10619.0
-2014-12-05 08:00:00,11768.0
-2014-12-05 09:00:00,12346.0
-2014-12-05 10:00:00,12445.0
-2014-12-05 11:00:00,12579.0
-2014-12-05 12:00:00,12597.0
-2014-12-05 13:00:00,12525.0
-2014-12-05 14:00:00,12375.0
-2014-12-05 15:00:00,12218.0
-2014-12-05 16:00:00,12178.0
-2014-12-05 17:00:00,12149.0
-2014-12-05 18:00:00,12867.0
-2014-12-05 19:00:00,13207.0
-2014-12-05 20:00:00,13024.0
-2014-12-05 21:00:00,12801.0
-2014-12-05 22:00:00,12444.0
-2014-12-05 23:00:00,12077.0
-2014-12-06 00:00:00,11363.0
-2014-12-04 01:00:00,11043.0
-2014-12-04 02:00:00,10522.0
-2014-12-04 03:00:00,10226.0
-2014-12-04 04:00:00,10111.0
-2014-12-04 05:00:00,10118.0
-2014-12-04 06:00:00,10382.0
-2014-12-04 07:00:00,11142.0
-2014-12-04 08:00:00,12301.0
-2014-12-04 09:00:00,12756.0
-2014-12-04 10:00:00,12747.0
-2014-12-04 11:00:00,12617.0
-2014-12-04 12:00:00,12606.0
-2014-12-04 13:00:00,12539.0
-2014-12-04 14:00:00,12531.0
-2014-12-04 15:00:00,12612.0
-2014-12-04 16:00:00,12545.0
-2014-12-04 17:00:00,12661.0
-2014-12-04 18:00:00,13411.0
-2014-12-04 19:00:00,13770.0
-2014-12-04 20:00:00,13574.0
-2014-12-04 21:00:00,13367.0
-2014-12-04 22:00:00,13061.0
-2014-12-04 23:00:00,12504.0
-2014-12-05 00:00:00,11654.0
-2014-12-03 01:00:00,11000.0
-2014-12-03 02:00:00,10492.0
-2014-12-03 03:00:00,10205.0
-2014-12-03 04:00:00,10090.0
-2014-12-03 05:00:00,10106.0
-2014-12-03 06:00:00,10407.0
-2014-12-03 07:00:00,11168.0
-2014-12-03 08:00:00,12343.0
-2014-12-03 09:00:00,12778.0
-2014-12-03 10:00:00,12716.0
-2014-12-03 11:00:00,12670.0
-2014-12-03 12:00:00,12646.0
-2014-12-03 13:00:00,12504.0
-2014-12-03 14:00:00,12370.0
-2014-12-03 15:00:00,12323.0
-2014-12-03 16:00:00,12192.0
-2014-12-03 17:00:00,12242.0
-2014-12-03 18:00:00,13129.0
-2014-12-03 19:00:00,13763.0
-2014-12-03 20:00:00,13631.0
-2014-12-03 21:00:00,13469.0
-2014-12-03 22:00:00,13227.0
-2014-12-03 23:00:00,12657.0
-2014-12-04 00:00:00,11809.0
-2014-12-02 01:00:00,11384.0
-2014-12-02 02:00:00,10872.0
-2014-12-02 03:00:00,10546.0
-2014-12-02 04:00:00,10433.0
-2014-12-02 05:00:00,10418.0
-2014-12-02 06:00:00,10679.0
-2014-12-02 07:00:00,11449.0
-2014-12-02 08:00:00,12563.0
-2014-12-02 09:00:00,12991.0
-2014-12-02 10:00:00,12958.0
-2014-12-02 11:00:00,12836.0
-2014-12-02 12:00:00,12839.0
-2014-12-02 13:00:00,12730.0
-2014-12-02 14:00:00,12629.0
-2014-12-02 15:00:00,12660.0
-2014-12-02 16:00:00,12607.0
-2014-12-02 17:00:00,12770.0
-2014-12-02 18:00:00,13545.0
-2014-12-02 19:00:00,13958.0
-2014-12-02 20:00:00,13781.0
-2014-12-02 21:00:00,13560.0
-2014-12-02 22:00:00,13226.0
-2014-12-02 23:00:00,12704.0
-2014-12-03 00:00:00,11823.0
-2014-12-01 01:00:00,10074.0
-2014-12-01 02:00:00,9764.0
-2014-12-01 03:00:00,9646.0
-2014-12-01 04:00:00,9593.0
-2014-12-01 05:00:00,9689.0
-2014-12-01 06:00:00,10089.0
-2014-12-01 07:00:00,10905.0
-2014-12-01 08:00:00,12188.0
-2014-12-01 09:00:00,12824.0
-2014-12-01 10:00:00,12999.0
-2014-12-01 11:00:00,13032.0
-2014-12-01 12:00:00,13082.0
-2014-12-01 13:00:00,13097.0
-2014-12-01 14:00:00,13055.0
-2014-12-01 15:00:00,13168.0
-2014-12-01 16:00:00,13180.0
-2014-12-01 17:00:00,13289.0
-2014-12-01 18:00:00,14029.0
-2014-12-01 19:00:00,14494.0
-2014-12-01 20:00:00,14378.0
-2014-12-01 21:00:00,14155.0
-2014-12-01 22:00:00,13828.0
-2014-12-01 23:00:00,13199.0
-2014-12-02 00:00:00,12238.0
-2014-11-30 01:00:00,9460.0
-2014-11-30 02:00:00,8953.0
-2014-11-30 03:00:00,8641.0
-2014-11-30 04:00:00,8407.0
-2014-11-30 05:00:00,8310.0
-2014-11-30 06:00:00,8303.0
-2014-11-30 07:00:00,8508.0
-2014-11-30 08:00:00,8725.0
-2014-11-30 09:00:00,8725.0
-2014-11-30 10:00:00,8943.0
-2014-11-30 11:00:00,9188.0
-2014-11-30 12:00:00,9383.0
-2014-11-30 13:00:00,9544.0
-2014-11-30 14:00:00,9793.0
-2014-11-30 15:00:00,10044.0
-2014-11-30 16:00:00,10280.0
-2014-11-30 17:00:00,10570.0
-2014-11-30 18:00:00,11324.0
-2014-11-30 19:00:00,11788.0
-2014-11-30 20:00:00,11835.0
-2014-11-30 21:00:00,11737.0
-2014-11-30 22:00:00,11523.0
-2014-11-30 23:00:00,11176.0
-2014-12-01 00:00:00,10582.0
-2014-11-29 01:00:00,10104.0
-2014-11-29 02:00:00,9661.0
-2014-11-29 03:00:00,9382.0
-2014-11-29 04:00:00,9205.0
-2014-11-29 05:00:00,9123.0
-2014-11-29 06:00:00,9180.0
-2014-11-29 07:00:00,9425.0
-2014-11-29 08:00:00,9819.0
-2014-11-29 09:00:00,9964.0
-2014-11-29 10:00:00,10137.0
-2014-11-29 11:00:00,10259.0
-2014-11-29 12:00:00,10258.0
-2014-11-29 13:00:00,10210.0
-2014-11-29 14:00:00,10083.0
-2014-11-29 15:00:00,9868.0
-2014-11-29 16:00:00,9781.0
-2014-11-29 17:00:00,9896.0
-2014-11-29 18:00:00,10664.0
-2014-11-29 19:00:00,11211.0
-2014-11-29 20:00:00,11117.0
-2014-11-29 21:00:00,10965.0
-2014-11-29 22:00:00,10768.0
-2014-11-29 23:00:00,10486.0
-2014-11-30 00:00:00,10018.0
-2014-11-28 01:00:00,10309.0
-2014-11-28 02:00:00,10002.0
-2014-11-28 03:00:00,9778.0
-2014-11-28 04:00:00,9653.0
-2014-11-28 05:00:00,9653.0
-2014-11-28 06:00:00,9804.0
-2014-11-28 07:00:00,10215.0
-2014-11-28 08:00:00,10757.0
-2014-11-28 09:00:00,10984.0
-2014-11-28 10:00:00,11167.0
-2014-11-28 11:00:00,11373.0
-2014-11-28 12:00:00,11390.0
-2014-11-28 13:00:00,11290.0
-2014-11-28 14:00:00,11323.0
-2014-11-28 15:00:00,11240.0
-2014-11-28 16:00:00,11199.0
-2014-11-28 17:00:00,11347.0
-2014-11-28 18:00:00,12007.0
-2014-11-28 19:00:00,12366.0
-2014-11-28 20:00:00,12111.0
-2014-11-28 21:00:00,11884.0
-2014-11-28 22:00:00,11595.0
-2014-11-28 23:00:00,11266.0
-2014-11-29 00:00:00,10710.0
-2014-11-27 01:00:00,10691.0
-2014-11-27 02:00:00,10138.0
-2014-11-27 03:00:00,9845.0
-2014-11-27 04:00:00,9680.0
-2014-11-27 05:00:00,9579.0
-2014-11-27 06:00:00,9615.0
-2014-11-27 07:00:00,9789.0
-2014-11-27 08:00:00,10029.0
-2014-11-27 09:00:00,10059.0
-2014-11-27 10:00:00,10271.0
-2014-11-27 11:00:00,10435.0
-2014-11-27 12:00:00,10640.0
-2014-11-27 13:00:00,10747.0
-2014-11-27 14:00:00,10696.0
-2014-11-27 15:00:00,10623.0
-2014-11-27 16:00:00,10510.0
-2014-11-27 17:00:00,10476.0
-2014-11-27 18:00:00,10913.0
-2014-11-27 19:00:00,11178.0
-2014-11-27 20:00:00,11120.0
-2014-11-27 21:00:00,11078.0
-2014-11-27 22:00:00,11057.0
-2014-11-27 23:00:00,10972.0
-2014-11-28 00:00:00,10681.0
-2014-11-26 01:00:00,11240.0
-2014-11-26 02:00:00,10720.0
-2014-11-26 03:00:00,10449.0
-2014-11-26 04:00:00,10285.0
-2014-11-26 05:00:00,10285.0
-2014-11-26 06:00:00,10523.0
-2014-11-26 07:00:00,11164.0
-2014-11-26 08:00:00,12046.0
-2014-11-26 09:00:00,12480.0
-2014-11-26 10:00:00,12782.0
-2014-11-26 11:00:00,12910.0
-2014-11-26 12:00:00,13009.0
-2014-11-26 13:00:00,12937.0
-2014-11-26 14:00:00,12857.0
-2014-11-26 15:00:00,12831.0
-2014-11-26 16:00:00,12749.0
-2014-11-26 17:00:00,12680.0
-2014-11-26 18:00:00,13191.0
-2014-11-26 19:00:00,13455.0
-2014-11-26 20:00:00,13179.0
-2014-11-26 21:00:00,12904.0
-2014-11-26 22:00:00,12567.0
-2014-11-26 23:00:00,12120.0
-2014-11-27 00:00:00,11416.0
-2014-11-25 01:00:00,10967.0
-2014-11-25 02:00:00,10474.0
-2014-11-25 03:00:00,10204.0
-2014-11-25 04:00:00,10071.0
-2014-11-25 05:00:00,10093.0
-2014-11-25 06:00:00,10380.0
-2014-11-25 07:00:00,11092.0
-2014-11-25 08:00:00,12174.0
-2014-11-25 09:00:00,12641.0
-2014-11-25 10:00:00,12841.0
-2014-11-25 11:00:00,12807.0
-2014-11-25 12:00:00,12701.0
-2014-11-25 13:00:00,12590.0
-2014-11-25 14:00:00,12486.0
-2014-11-25 15:00:00,12487.0
-2014-11-25 16:00:00,12467.0
-2014-11-25 17:00:00,12569.0
-2014-11-25 18:00:00,13241.0
-2014-11-25 19:00:00,13790.0
-2014-11-25 20:00:00,13655.0
-2014-11-25 21:00:00,13449.0
-2014-11-25 22:00:00,13179.0
-2014-11-25 23:00:00,12683.0
-2014-11-26 00:00:00,11947.0
-2014-11-24 01:00:00,9230.0
-2014-11-24 02:00:00,8822.0
-2014-11-24 03:00:00,8645.0
-2014-11-24 04:00:00,8512.0
-2014-11-24 05:00:00,8581.0
-2014-11-24 06:00:00,8838.0
-2014-11-24 07:00:00,9618.0
-2014-11-24 08:00:00,10800.0
-2014-11-24 09:00:00,11578.0
-2014-11-24 10:00:00,11837.0
-2014-11-24 11:00:00,12095.0
-2014-11-24 12:00:00,12435.0
-2014-11-24 13:00:00,12633.0
-2014-11-24 14:00:00,12633.0
-2014-11-24 15:00:00,12685.0
-2014-11-24 16:00:00,12767.0
-2014-11-24 17:00:00,12856.0
-2014-11-24 18:00:00,13485.0
-2014-11-24 19:00:00,13818.0
-2014-11-24 20:00:00,13650.0
-2014-11-24 21:00:00,13446.0
-2014-11-24 22:00:00,13124.0
-2014-11-24 23:00:00,12597.0
-2014-11-25 00:00:00,11773.0
-2014-11-23 01:00:00,9513.0
-2014-11-23 02:00:00,9078.0
-2014-11-23 03:00:00,8748.0
-2014-11-23 04:00:00,8560.0
-2014-11-23 05:00:00,8442.0
-2014-11-23 06:00:00,8461.0
-2014-11-23 07:00:00,8591.0
-2014-11-23 08:00:00,8808.0
-2014-11-23 09:00:00,8961.0
-2014-11-23 10:00:00,9306.0
-2014-11-23 11:00:00,9558.0
-2014-11-23 12:00:00,9692.0
-2014-11-23 13:00:00,9753.0
-2014-11-23 14:00:00,9846.0
-2014-11-23 15:00:00,9899.0
-2014-11-23 16:00:00,10011.0
-2014-11-23 17:00:00,10231.0
-2014-11-23 18:00:00,10888.0
-2014-11-23 19:00:00,11174.0
-2014-11-23 20:00:00,11068.0
-2014-11-23 21:00:00,10961.0
-2014-11-23 22:00:00,10690.0
-2014-11-23 23:00:00,10366.0
-2014-11-24 00:00:00,9756.0
-2014-11-22 01:00:00,10973.0
-2014-11-22 02:00:00,10412.0
-2014-11-22 03:00:00,10131.0
-2014-11-22 04:00:00,9911.0
-2014-11-22 05:00:00,9845.0
-2014-11-22 06:00:00,9910.0
-2014-11-22 07:00:00,10161.0
-2014-11-22 08:00:00,10566.0
-2014-11-22 09:00:00,10851.0
-2014-11-22 10:00:00,11163.0
-2014-11-22 11:00:00,11389.0
-2014-11-22 12:00:00,11470.0
-2014-11-22 13:00:00,11408.0
-2014-11-22 14:00:00,11246.0
-2014-11-22 15:00:00,10954.0
-2014-11-22 16:00:00,10831.0
-2014-11-22 17:00:00,10863.0
-2014-11-22 18:00:00,11259.0
-2014-11-22 19:00:00,11554.0
-2014-11-22 20:00:00,11424.0
-2014-11-22 21:00:00,11202.0
-2014-11-22 22:00:00,10967.0
-2014-11-22 23:00:00,10607.0
-2014-11-23 00:00:00,10069.0
-2014-11-21 01:00:00,11469.0
-2014-11-21 02:00:00,11073.0
-2014-11-21 03:00:00,10819.0
-2014-11-21 04:00:00,10711.0
-2014-11-21 05:00:00,10755.0
-2014-11-21 06:00:00,11055.0
-2014-11-21 07:00:00,11818.0
-2014-11-21 08:00:00,12856.0
-2014-11-21 09:00:00,13116.0
-2014-11-21 10:00:00,13135.0
-2014-11-21 11:00:00,13009.0
-2014-11-21 12:00:00,12947.0
-2014-11-21 13:00:00,12790.0
-2014-11-21 14:00:00,12670.0
-2014-11-21 15:00:00,12518.0
-2014-11-21 16:00:00,12359.0
-2014-11-21 17:00:00,12335.0
-2014-11-21 18:00:00,13006.0
-2014-11-21 19:00:00,13525.0
-2014-11-21 20:00:00,13402.0
-2014-11-21 21:00:00,13149.0
-2014-11-21 22:00:00,12770.0
-2014-11-21 23:00:00,12378.0
-2014-11-22 00:00:00,11655.0
-2014-11-20 01:00:00,11345.0
-2014-11-20 02:00:00,10942.0
-2014-11-20 03:00:00,10700.0
-2014-11-20 04:00:00,10614.0
-2014-11-20 05:00:00,10628.0
-2014-11-20 06:00:00,10941.0
-2014-11-20 07:00:00,11664.0
-2014-11-20 08:00:00,12713.0
-2014-11-20 09:00:00,13019.0
-2014-11-20 10:00:00,13025.0
-2014-11-20 11:00:00,12999.0
-2014-11-20 12:00:00,13001.0
-2014-11-20 13:00:00,12933.0
-2014-11-20 14:00:00,12826.0
-2014-11-20 15:00:00,12793.0
-2014-11-20 16:00:00,12698.0
-2014-11-20 17:00:00,12739.0
-2014-11-20 18:00:00,13383.0
-2014-11-20 19:00:00,13997.0
-2014-11-20 20:00:00,13876.0
-2014-11-20 21:00:00,13695.0
-2014-11-20 22:00:00,13425.0
-2014-11-20 23:00:00,12946.0
-2014-11-21 00:00:00,12168.0
-2014-11-19 01:00:00,11668.0
-2014-11-19 02:00:00,11225.0
-2014-11-19 03:00:00,10974.0
-2014-11-19 04:00:00,10818.0
-2014-11-19 05:00:00,10808.0
-2014-11-19 06:00:00,11025.0
-2014-11-19 07:00:00,11706.0
-2014-11-19 08:00:00,12744.0
-2014-11-19 09:00:00,13146.0
-2014-11-19 10:00:00,13196.0
-2014-11-19 11:00:00,13080.0
-2014-11-19 12:00:00,13068.0
-2014-11-19 13:00:00,13111.0
-2014-11-19 14:00:00,13155.0
-2014-11-19 15:00:00,13314.0
-2014-11-19 16:00:00,13346.0
-2014-11-19 17:00:00,13384.0
-2014-11-19 18:00:00,13969.0
-2014-11-19 19:00:00,14310.0
-2014-11-19 20:00:00,14087.0
-2014-11-19 21:00:00,13855.0
-2014-11-19 22:00:00,13503.0
-2014-11-19 23:00:00,12856.0
-2014-11-20 00:00:00,12089.0
-2014-11-18 01:00:00,11859.0
-2014-11-18 02:00:00,11458.0
-2014-11-18 03:00:00,11205.0
-2014-11-18 04:00:00,11102.0
-2014-11-18 05:00:00,11115.0
-2014-11-18 06:00:00,11363.0
-2014-11-18 07:00:00,12098.0
-2014-11-18 08:00:00,13146.0
-2014-11-18 09:00:00,13527.0
-2014-11-18 10:00:00,13590.0
-2014-11-18 11:00:00,13621.0
-2014-11-18 12:00:00,13687.0
-2014-11-18 13:00:00,13654.0
-2014-11-18 14:00:00,13615.0
-2014-11-18 15:00:00,13633.0
-2014-11-18 16:00:00,13537.0
-2014-11-18 17:00:00,13699.0
-2014-11-18 18:00:00,14299.0
-2014-11-18 19:00:00,14653.0
-2014-11-18 20:00:00,14441.0
-2014-11-18 21:00:00,14204.0
-2014-11-18 22:00:00,13848.0
-2014-11-18 23:00:00,13246.0
-2014-11-19 00:00:00,12418.0
-2014-11-17 01:00:00,10263.0
-2014-11-17 02:00:00,10002.0
-2014-11-17 03:00:00,9922.0
-2014-11-17 04:00:00,9880.0
-2014-11-17 05:00:00,10080.0
-2014-11-17 06:00:00,10431.0
-2014-11-17 07:00:00,11302.0
-2014-11-17 08:00:00,12420.0
-2014-11-17 09:00:00,12958.0
-2014-11-17 10:00:00,13041.0
-2014-11-17 11:00:00,13071.0
-2014-11-17 12:00:00,13064.0
-2014-11-17 13:00:00,13125.0
-2014-11-17 14:00:00,13235.0
-2014-11-17 15:00:00,13399.0
-2014-11-17 16:00:00,13419.0
-2014-11-17 17:00:00,13548.0
-2014-11-17 18:00:00,14166.0
-2014-11-17 19:00:00,14623.0
-2014-11-17 20:00:00,14507.0
-2014-11-17 21:00:00,14339.0
-2014-11-17 22:00:00,14006.0
-2014-11-17 23:00:00,13429.0
-2014-11-18 00:00:00,12606.0
-2014-11-16 01:00:00,10153.0
-2014-11-16 02:00:00,9749.0
-2014-11-16 03:00:00,9497.0
-2014-11-16 04:00:00,9322.0
-2014-11-16 05:00:00,9275.0
-2014-11-16 06:00:00,9320.0
-2014-11-16 07:00:00,9467.0
-2014-11-16 08:00:00,9709.0
-2014-11-16 09:00:00,9767.0
-2014-11-16 10:00:00,10139.0
-2014-11-16 11:00:00,10408.0
-2014-11-16 12:00:00,10563.0
-2014-11-16 13:00:00,10645.0
-2014-11-16 14:00:00,10673.0
-2014-11-16 15:00:00,10714.0
-2014-11-16 16:00:00,10801.0
-2014-11-16 17:00:00,10985.0
-2014-11-16 18:00:00,11523.0
-2014-11-16 19:00:00,11938.0
-2014-11-16 20:00:00,11866.0
-2014-11-16 21:00:00,11782.0
-2014-11-16 22:00:00,11539.0
-2014-11-16 23:00:00,11223.0
-2014-11-17 00:00:00,10669.0
-2014-11-15 01:00:00,10650.0
-2014-11-15 02:00:00,10243.0
-2014-11-15 03:00:00,10036.0
-2014-11-15 04:00:00,9834.0
-2014-11-15 05:00:00,9794.0
-2014-11-15 06:00:00,9914.0
-2014-11-15 07:00:00,10255.0
-2014-11-15 08:00:00,10662.0
-2014-11-15 09:00:00,10860.0
-2014-11-15 10:00:00,11029.0
-2014-11-15 11:00:00,11125.0
-2014-11-15 12:00:00,11148.0
-2014-11-15 13:00:00,11128.0
-2014-11-15 14:00:00,10951.0
-2014-11-15 15:00:00,10847.0
-2014-11-15 16:00:00,10792.0
-2014-11-15 17:00:00,10981.0
-2014-11-15 18:00:00,11581.0
-2014-11-15 19:00:00,11975.0
-2014-11-15 20:00:00,11857.0
-2014-11-15 21:00:00,11779.0
-2014-11-15 22:00:00,11541.0
-2014-11-15 23:00:00,11228.0
-2014-11-16 00:00:00,10689.0
-2014-11-14 01:00:00,10712.0
-2014-11-14 02:00:00,10238.0
-2014-11-14 03:00:00,9953.0
-2014-11-14 04:00:00,9845.0
-2014-11-14 05:00:00,9814.0
-2014-11-14 06:00:00,10094.0
-2014-11-14 07:00:00,10838.0
-2014-11-14 08:00:00,11843.0
-2014-11-14 09:00:00,12284.0
-2014-11-14 10:00:00,12457.0
-2014-11-14 11:00:00,12449.0
-2014-11-14 12:00:00,12490.0
-2014-11-14 13:00:00,12551.0
-2014-11-14 14:00:00,12510.0
-2014-11-14 15:00:00,12519.0
-2014-11-14 16:00:00,12454.0
-2014-11-14 17:00:00,12440.0
-2014-11-14 18:00:00,12929.0
-2014-11-14 19:00:00,13257.0
-2014-11-14 20:00:00,13053.0
-2014-11-14 21:00:00,12780.0
-2014-11-14 22:00:00,12479.0
-2014-11-14 23:00:00,12050.0
-2014-11-15 00:00:00,11298.0
-2014-11-13 01:00:00,10551.0
-2014-11-13 02:00:00,10117.0
-2014-11-13 03:00:00,9838.0
-2014-11-13 04:00:00,9706.0
-2014-11-13 05:00:00,9696.0
-2014-11-13 06:00:00,9987.0
-2014-11-13 07:00:00,10775.0
-2014-11-13 08:00:00,11881.0
-2014-11-13 09:00:00,12287.0
-2014-11-13 10:00:00,12423.0
-2014-11-13 11:00:00,12498.0
-2014-11-13 12:00:00,12630.0
-2014-11-13 13:00:00,12694.0
-2014-11-13 14:00:00,12655.0
-2014-11-13 15:00:00,12664.0
-2014-11-13 16:00:00,12656.0
-2014-11-13 17:00:00,12602.0
-2014-11-13 18:00:00,13062.0
-2014-11-13 19:00:00,13464.0
-2014-11-13 20:00:00,13317.0
-2014-11-13 21:00:00,13087.0
-2014-11-13 22:00:00,12736.0
-2014-11-13 23:00:00,12184.0
-2014-11-14 00:00:00,11408.0
-2014-11-12 01:00:00,10207.0
-2014-11-12 02:00:00,9685.0
-2014-11-12 03:00:00,9439.0
-2014-11-12 04:00:00,9309.0
-2014-11-12 05:00:00,9335.0
-2014-11-12 06:00:00,9643.0
-2014-11-12 07:00:00,10396.0
-2014-11-12 08:00:00,11476.0
-2014-11-12 09:00:00,11860.0
-2014-11-12 10:00:00,12006.0
-2014-11-12 11:00:00,12216.0
-2014-11-12 12:00:00,12387.0
-2014-11-12 13:00:00,12316.0
-2014-11-12 14:00:00,12126.0
-2014-11-12 15:00:00,12188.0
-2014-11-12 16:00:00,12190.0
-2014-11-12 17:00:00,12335.0
-2014-11-12 18:00:00,12860.0
-2014-11-12 19:00:00,13380.0
-2014-11-12 20:00:00,13181.0
-2014-11-12 21:00:00,12936.0
-2014-11-12 22:00:00,12626.0
-2014-11-12 23:00:00,12014.0
-2014-11-13 00:00:00,11292.0
-2014-11-11 01:00:00,9376.0
-2014-11-11 02:00:00,8891.0
-2014-11-11 03:00:00,8578.0
-2014-11-11 04:00:00,8353.0
-2014-11-11 05:00:00,8342.0
-2014-11-11 06:00:00,8558.0
-2014-11-11 07:00:00,9213.0
-2014-11-11 08:00:00,10235.0
-2014-11-11 09:00:00,10854.0
-2014-11-11 10:00:00,11327.0
-2014-11-11 11:00:00,11709.0
-2014-11-11 12:00:00,11807.0
-2014-11-11 13:00:00,11808.0
-2014-11-11 14:00:00,11790.0
-2014-11-11 15:00:00,11847.0
-2014-11-11 16:00:00,11831.0
-2014-11-11 17:00:00,11936.0
-2014-11-11 18:00:00,12417.0
-2014-11-11 19:00:00,12810.0
-2014-11-11 20:00:00,12633.0
-2014-11-11 21:00:00,12428.0
-2014-11-11 22:00:00,12109.0
-2014-11-11 23:00:00,11563.0
-2014-11-12 00:00:00,10859.0
-2014-11-10 01:00:00,8898.0
-2014-11-10 02:00:00,8568.0
-2014-11-10 03:00:00,8359.0
-2014-11-10 04:00:00,8297.0
-2014-11-10 05:00:00,8303.0
-2014-11-10 06:00:00,8676.0
-2014-11-10 07:00:00,9482.0
-2014-11-10 08:00:00,10611.0
-2014-11-10 09:00:00,11098.0
-2014-11-10 10:00:00,11366.0
-2014-11-10 11:00:00,11441.0
-2014-11-10 12:00:00,11425.0
-2014-11-10 13:00:00,11358.0
-2014-11-10 14:00:00,11324.0
-2014-11-10 15:00:00,11305.0
-2014-11-10 16:00:00,11208.0
-2014-11-10 17:00:00,11121.0
-2014-11-10 18:00:00,11482.0
-2014-11-10 19:00:00,12159.0
-2014-11-10 20:00:00,11991.0
-2014-11-10 21:00:00,11728.0
-2014-11-10 22:00:00,11392.0
-2014-11-10 23:00:00,10814.0
-2014-11-11 00:00:00,10095.0
-2014-11-09 01:00:00,9279.0
-2014-11-09 02:00:00,8886.0
-2014-11-09 03:00:00,8627.0
-2014-11-09 04:00:00,8478.0
-2014-11-09 05:00:00,8465.0
-2014-11-09 06:00:00,8461.0
-2014-11-09 07:00:00,8662.0
-2014-11-09 08:00:00,8832.0
-2014-11-09 09:00:00,8943.0
-2014-11-09 10:00:00,9248.0
-2014-11-09 11:00:00,9504.0
-2014-11-09 12:00:00,9507.0
-2014-11-09 13:00:00,9538.0
-2014-11-09 14:00:00,9452.0
-2014-11-09 15:00:00,9414.0
-2014-11-09 16:00:00,9347.0
-2014-11-09 17:00:00,9349.0
-2014-11-09 18:00:00,10018.0
-2014-11-09 19:00:00,10717.0
-2014-11-09 20:00:00,10698.0
-2014-11-09 21:00:00,10539.0
-2014-11-09 22:00:00,10310.0
-2014-11-09 23:00:00,9914.0
-2014-11-10 00:00:00,9410.0
-2014-11-08 01:00:00,9790.0
-2014-11-08 02:00:00,9296.0
-2014-11-08 03:00:00,8978.0
-2014-11-08 04:00:00,8764.0
-2014-11-08 05:00:00,8679.0
-2014-11-08 06:00:00,8741.0
-2014-11-08 07:00:00,9044.0
-2014-11-08 08:00:00,9521.0
-2014-11-08 09:00:00,9873.0
-2014-11-08 10:00:00,10270.0
-2014-11-08 11:00:00,10455.0
-2014-11-08 12:00:00,10507.0
-2014-11-08 13:00:00,10462.0
-2014-11-08 14:00:00,10340.0
-2014-11-08 15:00:00,10122.0
-2014-11-08 16:00:00,9971.0
-2014-11-08 17:00:00,9875.0
-2014-11-08 18:00:00,10411.0
-2014-11-08 19:00:00,10997.0
-2014-11-08 20:00:00,10942.0
-2014-11-08 21:00:00,10700.0
-2014-11-08 22:00:00,10563.0
-2014-11-08 23:00:00,10252.0
-2014-11-09 00:00:00,9780.0
-2014-11-07 01:00:00,9717.0
-2014-11-07 02:00:00,9313.0
-2014-11-07 03:00:00,9069.0
-2014-11-07 04:00:00,8919.0
-2014-11-07 05:00:00,8922.0
-2014-11-07 06:00:00,9199.0
-2014-11-07 07:00:00,9956.0
-2014-11-07 08:00:00,10942.0
-2014-11-07 09:00:00,11348.0
-2014-11-07 10:00:00,11475.0
-2014-11-07 11:00:00,11473.0
-2014-11-07 12:00:00,11510.0
-2014-11-07 13:00:00,11417.0
-2014-11-07 14:00:00,11320.0
-2014-11-07 15:00:00,11328.0
-2014-11-07 16:00:00,11314.0
-2014-11-07 17:00:00,11324.0
-2014-11-07 18:00:00,11754.0
-2014-11-07 19:00:00,12263.0
-2014-11-07 20:00:00,12080.0
-2014-11-07 21:00:00,11849.0
-2014-11-07 22:00:00,11513.0
-2014-11-07 23:00:00,11083.0
-2014-11-08 00:00:00,10407.0
-2014-11-06 01:00:00,9376.0
-2014-11-06 02:00:00,8910.0
-2014-11-06 03:00:00,8631.0
-2014-11-06 04:00:00,8510.0
-2014-11-06 05:00:00,8481.0
-2014-11-06 06:00:00,8706.0
-2014-11-06 07:00:00,9464.0
-2014-11-06 08:00:00,10582.0
-2014-11-06 09:00:00,11179.0
-2014-11-06 10:00:00,11513.0
-2014-11-06 11:00:00,11685.0
-2014-11-06 12:00:00,11772.0
-2014-11-06 13:00:00,11752.0
-2014-11-06 14:00:00,11742.0
-2014-11-06 15:00:00,11830.0
-2014-11-06 16:00:00,11806.0
-2014-11-06 17:00:00,11886.0
-2014-11-06 18:00:00,12280.0
-2014-11-06 19:00:00,12639.0
-2014-11-06 20:00:00,12399.0
-2014-11-06 21:00:00,12154.0
-2014-11-06 22:00:00,11776.0
-2014-11-06 23:00:00,11207.0
-2014-11-07 00:00:00,10438.0
-2014-11-05 01:00:00,9517.0
-2014-11-05 02:00:00,9075.0
-2014-11-05 03:00:00,8836.0
-2014-11-05 04:00:00,8662.0
-2014-11-05 05:00:00,8653.0
-2014-11-05 06:00:00,8918.0
-2014-11-05 07:00:00,9707.0
-2014-11-05 08:00:00,10734.0
-2014-11-05 09:00:00,11117.0
-2014-11-05 10:00:00,11217.0
-2014-11-05 11:00:00,11244.0
-2014-11-05 12:00:00,11306.0
-2014-11-05 13:00:00,11287.0
-2014-11-05 14:00:00,11248.0
-2014-11-05 15:00:00,11272.0
-2014-11-05 16:00:00,11203.0
-2014-11-05 17:00:00,11179.0
-2014-11-05 18:00:00,11684.0
-2014-11-05 19:00:00,12177.0
-2014-11-05 20:00:00,11970.0
-2014-11-05 21:00:00,11732.0
-2014-11-05 22:00:00,11359.0
-2014-11-05 23:00:00,10799.0
-2014-11-06 00:00:00,10072.0
-2014-11-04 01:00:00,9324.0
-2014-11-04 02:00:00,8867.0
-2014-11-04 03:00:00,8564.0
-2014-11-04 04:00:00,8370.0
-2014-11-04 05:00:00,8407.0
-2014-11-04 06:00:00,8647.0
-2014-11-04 07:00:00,9362.0
-2014-11-04 08:00:00,10414.0
-2014-11-04 09:00:00,10966.0
-2014-11-04 10:00:00,11295.0
-2014-11-04 11:00:00,11384.0
-2014-11-04 12:00:00,11448.0
-2014-11-04 13:00:00,11383.0
-2014-11-04 14:00:00,11362.0
-2014-11-04 15:00:00,11351.0
-2014-11-04 16:00:00,11272.0
-2014-11-04 17:00:00,11272.0
-2014-11-04 18:00:00,11628.0
-2014-11-04 19:00:00,12209.0
-2014-11-04 20:00:00,12098.0
-2014-11-04 21:00:00,11883.0
-2014-11-04 22:00:00,11520.0
-2014-11-04 23:00:00,10952.0
-2014-11-05 00:00:00,10176.0
-2014-11-03 01:00:00,9009.0
-2014-11-03 02:00:00,8707.0
-2014-11-03 03:00:00,8510.0
-2014-11-03 04:00:00,8448.0
-2014-11-03 05:00:00,8560.0
-2014-11-03 06:00:00,8865.0
-2014-11-03 07:00:00,9760.0
-2014-11-03 08:00:00,10725.0
-2014-11-03 09:00:00,11259.0
-2014-11-03 10:00:00,11415.0
-2014-11-03 11:00:00,11466.0
-2014-11-03 12:00:00,11492.0
-2014-11-03 13:00:00,11478.0
-2014-11-03 14:00:00,11377.0
-2014-11-03 15:00:00,11374.0
-2014-11-03 16:00:00,11298.0
-2014-11-03 17:00:00,11323.0
-2014-11-03 18:00:00,11616.0
-2014-11-03 19:00:00,12221.0
-2014-11-03 20:00:00,12050.0
-2014-11-03 21:00:00,11812.0
-2014-11-03 22:00:00,11443.0
-2014-11-03 23:00:00,10824.0
-2014-11-04 00:00:00,10018.0
-2014-11-02 01:00:00,9573.0
-2014-11-02 02:00:00,8869.0
-2014-11-02 02:00:00,9184.0
-2014-11-02 03:00:00,8788.0
-2014-11-02 04:00:00,8678.0
-2014-11-02 05:00:00,8693.0
-2014-11-02 06:00:00,8725.0
-2014-11-02 07:00:00,8995.0
-2014-11-02 08:00:00,9110.0
-2014-11-02 09:00:00,9237.0
-2014-11-02 10:00:00,9445.0
-2014-11-02 11:00:00,9536.0
-2014-11-02 12:00:00,9501.0
-2014-11-02 13:00:00,9465.0
-2014-11-02 14:00:00,9417.0
-2014-11-02 15:00:00,9392.0
-2014-11-02 16:00:00,9365.0
-2014-11-02 17:00:00,9496.0
-2014-11-02 18:00:00,9927.0
-2014-11-02 19:00:00,10831.0
-2014-11-02 20:00:00,10868.0
-2014-11-02 21:00:00,10725.0
-2014-11-02 22:00:00,10441.0
-2014-11-02 23:00:00,10064.0
-2014-11-03 00:00:00,9472.0
-2014-11-01 01:00:00,9970.0
-2014-11-01 02:00:00,9413.0
-2014-11-01 03:00:00,9114.0
-2014-11-01 04:00:00,8907.0
-2014-11-01 05:00:00,8821.0
-2014-11-01 06:00:00,8852.0
-2014-11-01 07:00:00,9212.0
-2014-11-01 08:00:00,9694.0
-2014-11-01 09:00:00,10105.0
-2014-11-01 10:00:00,10312.0
-2014-11-01 11:00:00,10594.0
-2014-11-01 12:00:00,10614.0
-2014-11-01 13:00:00,10536.0
-2014-11-01 14:00:00,10349.0
-2014-11-01 15:00:00,10069.0
-2014-11-01 16:00:00,9878.0
-2014-11-01 17:00:00,9736.0
-2014-11-01 18:00:00,9767.0
-2014-11-01 19:00:00,10106.0
-2014-11-01 20:00:00,10900.0
-2014-11-01 21:00:00,10900.0
-2014-11-01 22:00:00,10797.0
-2014-11-01 23:00:00,10522.0
-2014-11-02 00:00:00,10105.0
-2014-10-31 01:00:00,9627.0
-2014-10-31 02:00:00,9049.0
-2014-10-31 03:00:00,8739.0
-2014-10-31 04:00:00,8607.0
-2014-10-31 05:00:00,8610.0
-2014-10-31 06:00:00,8831.0
-2014-10-31 07:00:00,9579.0
-2014-10-31 08:00:00,10826.0
-2014-10-31 09:00:00,11629.0
-2014-10-31 10:00:00,11717.0
-2014-10-31 11:00:00,11820.0
-2014-10-31 12:00:00,11928.0
-2014-10-31 13:00:00,11964.0
-2014-10-31 14:00:00,11892.0
-2014-10-31 15:00:00,11779.0
-2014-10-31 16:00:00,11672.0
-2014-10-31 17:00:00,11598.0
-2014-10-31 18:00:00,11603.0
-2014-10-31 19:00:00,11801.0
-2014-10-31 20:00:00,12211.0
-2014-10-31 21:00:00,12055.0
-2014-10-31 22:00:00,11735.0
-2014-10-31 23:00:00,11311.0
-2014-11-01 00:00:00,10676.0
-2014-10-30 01:00:00,9566.0
-2014-10-30 02:00:00,9099.0
-2014-10-30 03:00:00,8783.0
-2014-10-30 04:00:00,8659.0
-2014-10-30 05:00:00,8644.0
-2014-10-30 06:00:00,8859.0
-2014-10-30 07:00:00,9579.0
-2014-10-30 08:00:00,10823.0
-2014-10-30 09:00:00,11430.0
-2014-10-30 10:00:00,11400.0
-2014-10-30 11:00:00,11404.0
-2014-10-30 12:00:00,11392.0
-2014-10-30 13:00:00,11310.0
-2014-10-30 14:00:00,11275.0
-2014-10-30 15:00:00,11335.0
-2014-10-30 16:00:00,11210.0
-2014-10-30 17:00:00,11149.0
-2014-10-30 18:00:00,11201.0
-2014-10-30 19:00:00,11524.0
-2014-10-30 20:00:00,11968.0
-2014-10-30 21:00:00,11857.0
-2014-10-30 22:00:00,11586.0
-2014-10-30 23:00:00,11046.0
-2014-10-31 00:00:00,10297.0
-2014-10-29 01:00:00,9213.0
-2014-10-29 02:00:00,8728.0
-2014-10-29 03:00:00,8436.0
-2014-10-29 04:00:00,8319.0
-2014-10-29 05:00:00,8256.0
-2014-10-29 06:00:00,8489.0
-2014-10-29 07:00:00,9207.0
-2014-10-29 08:00:00,10403.0
-2014-10-29 09:00:00,11172.0
-2014-10-29 10:00:00,11254.0
-2014-10-29 11:00:00,11360.0
-2014-10-29 12:00:00,11462.0
-2014-10-29 13:00:00,11422.0
-2014-10-29 14:00:00,11365.0
-2014-10-29 15:00:00,11401.0
-2014-10-29 16:00:00,11279.0
-2014-10-29 17:00:00,11137.0
-2014-10-29 18:00:00,11090.0
-2014-10-29 19:00:00,11315.0
-2014-10-29 20:00:00,11871.0
-2014-10-29 21:00:00,11815.0
-2014-10-29 22:00:00,11547.0
-2014-10-29 23:00:00,11039.0
-2014-10-30 00:00:00,10304.0
-2014-10-28 01:00:00,9439.0
-2014-10-28 02:00:00,8887.0
-2014-10-28 03:00:00,8522.0
-2014-10-28 04:00:00,8315.0
-2014-10-28 05:00:00,8231.0
-2014-10-28 06:00:00,8349.0
-2014-10-28 07:00:00,8968.0
-2014-10-28 08:00:00,10073.0
-2014-10-28 09:00:00,10858.0
-2014-10-28 10:00:00,10975.0
-2014-10-28 11:00:00,11081.0
-2014-10-28 12:00:00,11194.0
-2014-10-28 13:00:00,11245.0
-2014-10-28 14:00:00,11216.0
-2014-10-28 15:00:00,11228.0
-2014-10-28 16:00:00,11134.0
-2014-10-28 17:00:00,11025.0
-2014-10-28 18:00:00,10947.0
-2014-10-28 19:00:00,11068.0
-2014-10-28 20:00:00,11584.0
-2014-10-28 21:00:00,11483.0
-2014-10-28 22:00:00,11182.0
-2014-10-28 23:00:00,10671.0
-2014-10-29 00:00:00,9952.0
-2014-10-27 01:00:00,8492.0
-2014-10-27 02:00:00,8101.0
-2014-10-27 03:00:00,7885.0
-2014-10-27 04:00:00,7777.0
-2014-10-27 05:00:00,7753.0
-2014-10-27 06:00:00,8030.0
-2014-10-27 07:00:00,8795.0
-2014-10-27 08:00:00,10055.0
-2014-10-27 09:00:00,10816.0
-2014-10-27 10:00:00,10929.0
-2014-10-27 11:00:00,11166.0
-2014-10-27 12:00:00,11502.0
-2014-10-27 13:00:00,11631.0
-2014-10-27 14:00:00,11715.0
-2014-10-27 15:00:00,11847.0
-2014-10-27 16:00:00,11899.0
-2014-10-27 17:00:00,11774.0
-2014-10-27 18:00:00,11631.0
-2014-10-27 19:00:00,11717.0
-2014-10-27 20:00:00,12201.0
-2014-10-27 21:00:00,12105.0
-2014-10-27 22:00:00,11741.0
-2014-10-27 23:00:00,11119.0
-2014-10-28 00:00:00,10237.0
-2014-10-26 01:00:00,8504.0
-2014-10-26 02:00:00,8027.0
-2014-10-26 03:00:00,7835.0
-2014-10-26 04:00:00,7644.0
-2014-10-26 05:00:00,7579.0
-2014-10-26 06:00:00,7578.0
-2014-10-26 07:00:00,7757.0
-2014-10-26 08:00:00,8006.0
-2014-10-26 09:00:00,8171.0
-2014-10-26 10:00:00,8368.0
-2014-10-26 11:00:00,8626.0
-2014-10-26 12:00:00,8754.0
-2014-10-26 13:00:00,8883.0
-2014-10-26 14:00:00,8889.0
-2014-10-26 15:00:00,8953.0
-2014-10-26 16:00:00,8899.0
-2014-10-26 17:00:00,8893.0
-2014-10-26 18:00:00,8925.0
-2014-10-26 19:00:00,9166.0
-2014-10-26 20:00:00,9953.0
-2014-10-26 21:00:00,10144.0
-2014-10-26 22:00:00,9933.0
-2014-10-26 23:00:00,9597.0
-2014-10-27 00:00:00,9074.0
-2014-10-25 01:00:00,9098.0
-2014-10-25 02:00:00,8608.0
-2014-10-25 03:00:00,8229.0
-2014-10-25 04:00:00,8041.0
-2014-10-25 05:00:00,7916.0
-2014-10-25 06:00:00,7980.0
-2014-10-25 07:00:00,8197.0
-2014-10-25 08:00:00,8698.0
-2014-10-25 09:00:00,8987.0
-2014-10-25 10:00:00,9308.0
-2014-10-25 11:00:00,9619.0
-2014-10-25 12:00:00,9818.0
-2014-10-25 13:00:00,9849.0
-2014-10-25 14:00:00,9835.0
-2014-10-25 15:00:00,9710.0
-2014-10-25 16:00:00,9608.0
-2014-10-25 17:00:00,9531.0
-2014-10-25 18:00:00,9483.0
-2014-10-25 19:00:00,9538.0
-2014-10-25 20:00:00,10079.0
-2014-10-25 21:00:00,10112.0
-2014-10-25 22:00:00,9900.0
-2014-10-25 23:00:00,9580.0
-2014-10-26 00:00:00,9019.0
-2014-10-24 01:00:00,9159.0
-2014-10-24 02:00:00,8684.0
-2014-10-24 03:00:00,8402.0
-2014-10-24 04:00:00,8186.0
-2014-10-24 05:00:00,8142.0
-2014-10-24 06:00:00,8337.0
-2014-10-24 07:00:00,9018.0
-2014-10-24 08:00:00,10152.0
-2014-10-24 09:00:00,10818.0
-2014-10-24 10:00:00,10947.0
-2014-10-24 11:00:00,10991.0
-2014-10-24 12:00:00,11180.0
-2014-10-24 13:00:00,11264.0
-2014-10-24 14:00:00,11167.0
-2014-10-24 15:00:00,11188.0
-2014-10-24 16:00:00,11145.0
-2014-10-24 17:00:00,11018.0
-2014-10-24 18:00:00,10844.0
-2014-10-24 19:00:00,10831.0
-2014-10-24 20:00:00,11324.0
-2014-10-24 21:00:00,11203.0
-2014-10-24 22:00:00,10847.0
-2014-10-24 23:00:00,10441.0
-2014-10-25 00:00:00,9822.0
-2014-10-23 01:00:00,9367.0
-2014-10-23 02:00:00,8905.0
-2014-10-23 03:00:00,8627.0
-2014-10-23 04:00:00,8463.0
-2014-10-23 05:00:00,8475.0
-2014-10-23 06:00:00,8698.0
-2014-10-23 07:00:00,9399.0
-2014-10-23 08:00:00,10625.0
-2014-10-23 09:00:00,11092.0
-2014-10-23 10:00:00,11162.0
-2014-10-23 11:00:00,11140.0
-2014-10-23 12:00:00,11202.0
-2014-10-23 13:00:00,10889.0
-2014-10-23 14:00:00,10916.0
-2014-10-23 15:00:00,11160.0
-2014-10-23 16:00:00,11066.0
-2014-10-23 17:00:00,10947.0
-2014-10-23 18:00:00,10917.0
-2014-10-23 19:00:00,11166.0
-2014-10-23 20:00:00,11611.0
-2014-10-23 21:00:00,11549.0
-2014-10-23 22:00:00,11251.0
-2014-10-23 23:00:00,10729.0
-2014-10-24 00:00:00,9944.0
-2014-10-22 01:00:00,9342.0
-2014-10-22 02:00:00,8854.0
-2014-10-22 03:00:00,8604.0
-2014-10-22 04:00:00,8445.0
-2014-10-22 05:00:00,8413.0
-2014-10-22 06:00:00,8650.0
-2014-10-22 07:00:00,9323.0
-2014-10-22 08:00:00,10530.0
-2014-10-22 09:00:00,11163.0
-2014-10-22 10:00:00,11187.0
-2014-10-22 11:00:00,11228.0
-2014-10-22 12:00:00,11217.0
-2014-10-22 13:00:00,11222.0
-2014-10-22 14:00:00,11166.0
-2014-10-22 15:00:00,11166.0
-2014-10-22 16:00:00,11075.0
-2014-10-22 17:00:00,10945.0
-2014-10-22 18:00:00,10859.0
-2014-10-22 19:00:00,10907.0
-2014-10-22 20:00:00,11519.0
-2014-10-22 21:00:00,11590.0
-2014-10-22 22:00:00,11328.0
-2014-10-22 23:00:00,10833.0
-2014-10-23 00:00:00,10093.0
-2014-10-21 01:00:00,9110.0
-2014-10-21 02:00:00,8618.0
-2014-10-21 03:00:00,8364.0
-2014-10-21 04:00:00,8194.0
-2014-10-21 05:00:00,8159.0
-2014-10-21 06:00:00,8374.0
-2014-10-21 07:00:00,9050.0
-2014-10-21 08:00:00,10256.0
-2014-10-21 09:00:00,10858.0
-2014-10-21 10:00:00,10997.0
-2014-10-21 11:00:00,11064.0
-2014-10-21 12:00:00,11174.0
-2014-10-21 13:00:00,11211.0
-2014-10-21 14:00:00,11177.0
-2014-10-21 15:00:00,11207.0
-2014-10-21 16:00:00,11147.0
-2014-10-21 17:00:00,11123.0
-2014-10-21 18:00:00,11148.0
-2014-10-21 19:00:00,11344.0
-2014-10-21 20:00:00,11766.0
-2014-10-21 21:00:00,11682.0
-2014-10-21 22:00:00,11424.0
-2014-10-21 23:00:00,10919.0
-2014-10-22 00:00:00,10114.0
-2014-10-20 01:00:00,8638.0
-2014-10-20 02:00:00,8332.0
-2014-10-20 03:00:00,8073.0
-2014-10-20 04:00:00,7997.0
-2014-10-20 05:00:00,7991.0
-2014-10-20 06:00:00,8272.0
-2014-10-20 07:00:00,9040.0
-2014-10-20 08:00:00,10335.0
-2014-10-20 09:00:00,10910.0
-2014-10-20 10:00:00,11040.0
-2014-10-20 11:00:00,11007.0
-2014-10-20 12:00:00,11110.0
-2014-10-20 13:00:00,11163.0
-2014-10-20 14:00:00,11204.0
-2014-10-20 15:00:00,11248.0
-2014-10-20 16:00:00,11179.0
-2014-10-20 17:00:00,11036.0
-2014-10-20 18:00:00,10955.0
-2014-10-20 19:00:00,11012.0
-2014-10-20 20:00:00,11461.0
-2014-10-20 21:00:00,11468.0
-2014-10-20 22:00:00,11164.0
-2014-10-20 23:00:00,10621.0
-2014-10-21 00:00:00,9847.0
-2014-10-19 01:00:00,8944.0
-2014-10-19 02:00:00,8513.0
-2014-10-19 03:00:00,8282.0
-2014-10-19 04:00:00,8080.0
-2014-10-19 05:00:00,8023.0
-2014-10-19 06:00:00,8033.0
-2014-10-19 07:00:00,8209.0
-2014-10-19 08:00:00,8453.0
-2014-10-19 09:00:00,8567.0
-2014-10-19 10:00:00,8765.0
-2014-10-19 11:00:00,8947.0
-2014-10-19 12:00:00,9007.0
-2014-10-19 13:00:00,9060.0
-2014-10-19 14:00:00,9026.0
-2014-10-19 15:00:00,8984.0
-2014-10-19 16:00:00,8902.0
-2014-10-19 17:00:00,8917.0
-2014-10-19 18:00:00,8972.0
-2014-10-19 19:00:00,9335.0
-2014-10-19 20:00:00,10084.0
-2014-10-19 21:00:00,10241.0
-2014-10-19 22:00:00,10018.0
-2014-10-19 23:00:00,9726.0
-2014-10-20 00:00:00,9184.0
-2014-10-18 01:00:00,9142.0
-2014-10-18 02:00:00,8648.0
-2014-10-18 03:00:00,8269.0
-2014-10-18 04:00:00,8120.0
-2014-10-18 05:00:00,8003.0
-2014-10-18 06:00:00,8054.0
-2014-10-18 07:00:00,8292.0
-2014-10-18 08:00:00,8807.0
-2014-10-18 09:00:00,9142.0
-2014-10-18 10:00:00,9505.0
-2014-10-18 11:00:00,9799.0
-2014-10-18 12:00:00,9934.0
-2014-10-18 13:00:00,9906.0
-2014-10-18 14:00:00,9842.0
-2014-10-18 15:00:00,9604.0
-2014-10-18 16:00:00,9455.0
-2014-10-18 17:00:00,9397.0
-2014-10-18 18:00:00,9479.0
-2014-10-18 19:00:00,9514.0
-2014-10-18 20:00:00,10091.0
-2014-10-18 21:00:00,10241.0
-2014-10-18 22:00:00,10095.0
-2014-10-18 23:00:00,9859.0
-2014-10-19 00:00:00,9409.0
-2014-10-17 01:00:00,9252.0
-2014-10-17 02:00:00,8769.0
-2014-10-17 03:00:00,8472.0
-2014-10-17 04:00:00,8274.0
-2014-10-17 05:00:00,8205.0
-2014-10-17 06:00:00,8386.0
-2014-10-17 07:00:00,9055.0
-2014-10-17 08:00:00,10142.0
-2014-10-17 09:00:00,10613.0
-2014-10-17 10:00:00,10781.0
-2014-10-17 11:00:00,10875.0
-2014-10-17 12:00:00,11038.0
-2014-10-17 13:00:00,11067.0
-2014-10-17 14:00:00,11020.0
-2014-10-17 15:00:00,11072.0
-2014-10-17 16:00:00,11013.0
-2014-10-17 17:00:00,10925.0
-2014-10-17 18:00:00,10978.0
-2014-10-17 19:00:00,11105.0
-2014-10-17 20:00:00,11311.0
-2014-10-17 21:00:00,11143.0
-2014-10-17 22:00:00,10874.0
-2014-10-17 23:00:00,10412.0
-2014-10-18 00:00:00,9821.0
-2014-10-16 01:00:00,9166.0
-2014-10-16 02:00:00,8654.0
-2014-10-16 03:00:00,8353.0
-2014-10-16 04:00:00,8172.0
-2014-10-16 05:00:00,8105.0
-2014-10-16 06:00:00,8303.0
-2014-10-16 07:00:00,8985.0
-2014-10-16 08:00:00,10176.0
-2014-10-16 09:00:00,10775.0
-2014-10-16 10:00:00,10888.0
-2014-10-16 11:00:00,11021.0
-2014-10-16 12:00:00,11141.0
-2014-10-16 13:00:00,11130.0
-2014-10-16 14:00:00,11078.0
-2014-10-16 15:00:00,11085.0
-2014-10-16 16:00:00,11079.0
-2014-10-16 17:00:00,11074.0
-2014-10-16 18:00:00,11199.0
-2014-10-16 19:00:00,11182.0
-2014-10-16 20:00:00,11403.0
-2014-10-16 21:00:00,11434.0
-2014-10-16 22:00:00,11194.0
-2014-10-16 23:00:00,10729.0
-2014-10-17 00:00:00,9982.0
-2014-10-15 01:00:00,9150.0
-2014-10-15 02:00:00,8658.0
-2014-10-15 03:00:00,8331.0
-2014-10-15 04:00:00,8129.0
-2014-10-15 05:00:00,8076.0
-2014-10-15 06:00:00,8312.0
-2014-10-15 07:00:00,8948.0
-2014-10-15 08:00:00,10114.0
-2014-10-15 09:00:00,10804.0
-2014-10-15 10:00:00,11010.0
-2014-10-15 11:00:00,11116.0
-2014-10-15 12:00:00,11260.0
-2014-10-15 13:00:00,11269.0
-2014-10-15 14:00:00,11206.0
-2014-10-15 15:00:00,11230.0
-2014-10-15 16:00:00,11148.0
-2014-10-15 17:00:00,11017.0
-2014-10-15 18:00:00,11006.0
-2014-10-15 19:00:00,11133.0
-2014-10-15 20:00:00,11513.0
-2014-10-15 21:00:00,11465.0
-2014-10-15 22:00:00,11152.0
-2014-10-15 23:00:00,10657.0
-2014-10-16 00:00:00,9902.0
-2014-10-14 01:00:00,9391.0
-2014-10-14 02:00:00,8837.0
-2014-10-14 03:00:00,8498.0
-2014-10-14 04:00:00,8269.0
-2014-10-14 05:00:00,8185.0
-2014-10-14 06:00:00,8337.0
-2014-10-14 07:00:00,9052.0
-2014-10-14 08:00:00,10223.0
-2014-10-14 09:00:00,11067.0
-2014-10-14 10:00:00,11364.0
-2014-10-14 11:00:00,11487.0
-2014-10-14 12:00:00,11572.0
-2014-10-14 13:00:00,11591.0
-2014-10-14 14:00:00,11551.0
-2014-10-14 15:00:00,11564.0
-2014-10-14 16:00:00,11474.0
-2014-10-14 17:00:00,11398.0
-2014-10-14 18:00:00,11425.0
-2014-10-14 19:00:00,11544.0
-2014-10-14 20:00:00,11735.0
-2014-10-14 21:00:00,11659.0
-2014-10-14 22:00:00,11297.0
-2014-10-14 23:00:00,10709.0
-2014-10-15 00:00:00,9889.0
-2014-10-13 01:00:00,8425.0
-2014-10-13 02:00:00,8054.0
-2014-10-13 03:00:00,7831.0
-2014-10-13 04:00:00,7694.0
-2014-10-13 05:00:00,7720.0
-2014-10-13 06:00:00,7927.0
-2014-10-13 07:00:00,8629.0
-2014-10-13 08:00:00,9599.0
-2014-10-13 09:00:00,10248.0
-2014-10-13 10:00:00,10584.0
-2014-10-13 11:00:00,10865.0
-2014-10-13 12:00:00,11129.0
-2014-10-13 13:00:00,11232.0
-2014-10-13 14:00:00,11275.0
-2014-10-13 15:00:00,11363.0
-2014-10-13 16:00:00,11394.0
-2014-10-13 17:00:00,11393.0
-2014-10-13 18:00:00,11504.0
-2014-10-13 19:00:00,11667.0
-2014-10-13 20:00:00,11916.0
-2014-10-13 21:00:00,11851.0
-2014-10-13 22:00:00,11504.0
-2014-10-13 23:00:00,10941.0
-2014-10-14 00:00:00,10170.0
-2014-10-12 01:00:00,8587.0
-2014-10-12 02:00:00,8210.0
-2014-10-12 03:00:00,7919.0
-2014-10-12 04:00:00,7747.0
-2014-10-12 05:00:00,7697.0
-2014-10-12 06:00:00,7718.0
-2014-10-12 07:00:00,7871.0
-2014-10-12 08:00:00,8145.0
-2014-10-12 09:00:00,8169.0
-2014-10-12 10:00:00,8392.0
-2014-10-12 11:00:00,8573.0
-2014-10-12 12:00:00,8706.0
-2014-10-12 13:00:00,8797.0
-2014-10-12 14:00:00,8813.0
-2014-10-12 15:00:00,8829.0
-2014-10-12 16:00:00,8773.0
-2014-10-12 17:00:00,8829.0
-2014-10-12 18:00:00,8898.0
-2014-10-12 19:00:00,9138.0
-2014-10-12 20:00:00,9713.0
-2014-10-12 21:00:00,9896.0
-2014-10-12 22:00:00,9628.0
-2014-10-12 23:00:00,9349.0
-2014-10-13 00:00:00,8880.0
-2014-10-11 01:00:00,9140.0
-2014-10-11 02:00:00,8642.0
-2014-10-11 03:00:00,8346.0
-2014-10-11 04:00:00,8160.0
-2014-10-11 05:00:00,8084.0
-2014-10-11 06:00:00,8158.0
-2014-10-11 07:00:00,8411.0
-2014-10-11 08:00:00,8926.0
-2014-10-11 09:00:00,9120.0
-2014-10-11 10:00:00,9432.0
-2014-10-11 11:00:00,9585.0
-2014-10-11 12:00:00,9654.0
-2014-10-11 13:00:00,9610.0
-2014-10-11 14:00:00,9470.0
-2014-10-11 15:00:00,9341.0
-2014-10-11 16:00:00,9201.0
-2014-10-11 17:00:00,9149.0
-2014-10-11 18:00:00,9096.0
-2014-10-11 19:00:00,9138.0
-2014-10-11 20:00:00,9640.0
-2014-10-11 21:00:00,9922.0
-2014-10-11 22:00:00,9758.0
-2014-10-11 23:00:00,9497.0
-2014-10-12 00:00:00,9116.0
-2014-10-10 01:00:00,9053.0
-2014-10-10 02:00:00,8602.0
-2014-10-10 03:00:00,8315.0
-2014-10-10 04:00:00,8125.0
-2014-10-10 05:00:00,8103.0
-2014-10-10 06:00:00,8327.0
-2014-10-10 07:00:00,8995.0
-2014-10-10 08:00:00,10119.0
-2014-10-10 09:00:00,10560.0
-2014-10-10 10:00:00,10761.0
-2014-10-10 11:00:00,10884.0
-2014-10-10 12:00:00,10991.0
-2014-10-10 13:00:00,10997.0
-2014-10-10 14:00:00,10915.0
-2014-10-10 15:00:00,10904.0
-2014-10-10 16:00:00,10799.0
-2014-10-10 17:00:00,10620.0
-2014-10-10 18:00:00,10504.0
-2014-10-10 19:00:00,10463.0
-2014-10-10 20:00:00,10931.0
-2014-10-10 21:00:00,11047.0
-2014-10-10 22:00:00,10744.0
-2014-10-10 23:00:00,10407.0
-2014-10-11 00:00:00,9738.0
-2014-10-09 01:00:00,9057.0
-2014-10-09 02:00:00,8565.0
-2014-10-09 03:00:00,8265.0
-2014-10-09 04:00:00,8083.0
-2014-10-09 05:00:00,8052.0
-2014-10-09 06:00:00,8233.0
-2014-10-09 07:00:00,8886.0
-2014-10-09 08:00:00,10070.0
-2014-10-09 09:00:00,10605.0
-2014-10-09 10:00:00,10769.0
-2014-10-09 11:00:00,10867.0
-2014-10-09 12:00:00,10996.0
-2014-10-09 13:00:00,11001.0
-2014-10-09 14:00:00,10996.0
-2014-10-09 15:00:00,11078.0
-2014-10-09 16:00:00,11052.0
-2014-10-09 17:00:00,10940.0
-2014-10-09 18:00:00,10806.0
-2014-10-09 19:00:00,10691.0
-2014-10-09 20:00:00,11025.0
-2014-10-09 21:00:00,11282.0
-2014-10-09 22:00:00,11011.0
-2014-10-09 23:00:00,10519.0
-2014-10-10 00:00:00,9826.0
-2014-10-08 01:00:00,9045.0
-2014-10-08 02:00:00,8560.0
-2014-10-08 03:00:00,8260.0
-2014-10-08 04:00:00,8081.0
-2014-10-08 05:00:00,8088.0
-2014-10-08 06:00:00,8282.0
-2014-10-08 07:00:00,8985.0
-2014-10-08 08:00:00,10153.0
-2014-10-08 09:00:00,10653.0
-2014-10-08 10:00:00,10803.0
-2014-10-08 11:00:00,10867.0
-2014-10-08 12:00:00,11133.0
-2014-10-08 13:00:00,11104.0
-2014-10-08 14:00:00,11122.0
-2014-10-08 15:00:00,11171.0
-2014-10-08 16:00:00,11121.0
-2014-10-08 17:00:00,11051.0
-2014-10-08 18:00:00,10937.0
-2014-10-08 19:00:00,10840.0
-2014-10-08 20:00:00,11154.0
-2014-10-08 21:00:00,11381.0
-2014-10-08 22:00:00,11101.0
-2014-10-08 23:00:00,10552.0
-2014-10-09 00:00:00,9780.0
-2014-10-07 01:00:00,9095.0
-2014-10-07 02:00:00,8621.0
-2014-10-07 03:00:00,8340.0
-2014-10-07 04:00:00,8165.0
-2014-10-07 05:00:00,8117.0
-2014-10-07 06:00:00,8337.0
-2014-10-07 07:00:00,9010.0
-2014-10-07 08:00:00,10155.0
-2014-10-07 09:00:00,10620.0
-2014-10-07 10:00:00,10840.0
-2014-10-07 11:00:00,10981.0
-2014-10-07 12:00:00,11120.0
-2014-10-07 13:00:00,11178.0
-2014-10-07 14:00:00,11219.0
-2014-10-07 15:00:00,11268.0
-2014-10-07 16:00:00,11186.0
-2014-10-07 17:00:00,11039.0
-2014-10-07 18:00:00,10959.0
-2014-10-07 19:00:00,10835.0
-2014-10-07 20:00:00,11128.0
-2014-10-07 21:00:00,11417.0
-2014-10-07 22:00:00,11129.0
-2014-10-07 23:00:00,10561.0
-2014-10-08 00:00:00,9807.0
-2014-10-06 01:00:00,8439.0
-2014-10-06 02:00:00,8143.0
-2014-10-06 03:00:00,7943.0
-2014-10-06 04:00:00,7867.0
-2014-10-06 05:00:00,7836.0
-2014-10-06 06:00:00,8187.0
-2014-10-06 07:00:00,8896.0
-2014-10-06 08:00:00,10154.0
-2014-10-06 09:00:00,10800.0
-2014-10-06 10:00:00,10969.0
-2014-10-06 11:00:00,11011.0
-2014-10-06 12:00:00,11119.0
-2014-10-06 13:00:00,11141.0
-2014-10-06 14:00:00,11083.0
-2014-10-06 15:00:00,11136.0
-2014-10-06 16:00:00,10997.0
-2014-10-06 17:00:00,10862.0
-2014-10-06 18:00:00,10778.0
-2014-10-06 19:00:00,10719.0
-2014-10-06 20:00:00,11092.0
-2014-10-06 21:00:00,11469.0
-2014-10-06 22:00:00,11171.0
-2014-10-06 23:00:00,10621.0
-2014-10-07 00:00:00,9864.0
-2014-10-05 01:00:00,8749.0
-2014-10-05 02:00:00,8334.0
-2014-10-05 03:00:00,8047.0
-2014-10-05 04:00:00,7920.0
-2014-10-05 05:00:00,7832.0
-2014-10-05 06:00:00,7834.0
-2014-10-05 07:00:00,7925.0
-2014-10-05 08:00:00,8138.0
-2014-10-05 09:00:00,8202.0
-2014-10-05 10:00:00,8454.0
-2014-10-05 11:00:00,8691.0
-2014-10-05 12:00:00,8790.0
-2014-10-05 13:00:00,8889.0
-2014-10-05 14:00:00,8869.0
-2014-10-05 15:00:00,8870.0
-2014-10-05 16:00:00,8774.0
-2014-10-05 17:00:00,8779.0
-2014-10-05 18:00:00,8873.0
-2014-10-05 19:00:00,9197.0
-2014-10-05 20:00:00,9755.0
-2014-10-05 21:00:00,10003.0
-2014-10-05 22:00:00,9882.0
-2014-10-05 23:00:00,9495.0
-2014-10-06 00:00:00,9007.0
-2014-10-04 01:00:00,9105.0
-2014-10-04 02:00:00,8575.0
-2014-10-04 03:00:00,8270.0
-2014-10-04 04:00:00,8101.0
-2014-10-04 05:00:00,7979.0
-2014-10-04 06:00:00,8052.0
-2014-10-04 07:00:00,8304.0
-2014-10-04 08:00:00,8769.0
-2014-10-04 09:00:00,9049.0
-2014-10-04 10:00:00,9564.0
-2014-10-04 11:00:00,9943.0
-2014-10-04 12:00:00,10141.0
-2014-10-04 13:00:00,10066.0
-2014-10-04 14:00:00,10010.0
-2014-10-04 15:00:00,9818.0
-2014-10-04 16:00:00,9701.0
-2014-10-04 17:00:00,9583.0
-2014-10-04 18:00:00,9583.0
-2014-10-04 19:00:00,9588.0
-2014-10-04 20:00:00,9949.0
-2014-10-04 21:00:00,10240.0
-2014-10-04 22:00:00,10060.0
-2014-10-04 23:00:00,9785.0
-2014-10-05 00:00:00,9341.0
-2014-10-03 01:00:00,9903.0
-2014-10-03 02:00:00,9336.0
-2014-10-03 03:00:00,8979.0
-2014-10-03 04:00:00,8684.0
-2014-10-03 05:00:00,8690.0
-2014-10-03 06:00:00,8869.0
-2014-10-03 07:00:00,9366.0
-2014-10-03 08:00:00,10300.0
-2014-10-03 09:00:00,10966.0
-2014-10-03 10:00:00,11124.0
-2014-10-03 11:00:00,11263.0
-2014-10-03 12:00:00,11316.0
-2014-10-03 13:00:00,11315.0
-2014-10-03 14:00:00,11252.0
-2014-10-03 15:00:00,11180.0
-2014-10-03 16:00:00,10989.0
-2014-10-03 17:00:00,10789.0
-2014-10-03 18:00:00,10697.0
-2014-10-03 19:00:00,10643.0
-2014-10-03 20:00:00,10929.0
-2014-10-03 21:00:00,11031.0
-2014-10-03 22:00:00,10790.0
-2014-10-03 23:00:00,10452.0
-2014-10-04 00:00:00,9783.0
-2014-10-02 01:00:00,9308.0
-2014-10-02 02:00:00,8776.0
-2014-10-02 03:00:00,8479.0
-2014-10-02 04:00:00,8260.0
-2014-10-02 05:00:00,8219.0
-2014-10-02 06:00:00,8424.0
-2014-10-02 07:00:00,9081.0
-2014-10-02 08:00:00,10328.0
-2014-10-02 09:00:00,11008.0
-2014-10-02 10:00:00,11369.0
-2014-10-02 11:00:00,11717.0
-2014-10-02 12:00:00,12023.0
-2014-10-02 13:00:00,12223.0
-2014-10-02 14:00:00,12342.0
-2014-10-02 15:00:00,12366.0
-2014-10-02 16:00:00,12318.0
-2014-10-02 17:00:00,12259.0
-2014-10-02 18:00:00,12195.0
-2014-10-02 19:00:00,12097.0
-2014-10-02 20:00:00,12375.0
-2014-10-02 21:00:00,12538.0
-2014-10-02 22:00:00,12185.0
-2014-10-02 23:00:00,11561.0
-2014-10-03 00:00:00,10701.0
-2014-10-01 01:00:00,9024.0
-2014-10-01 02:00:00,8517.0
-2014-10-01 03:00:00,8223.0
-2014-10-01 04:00:00,8039.0
-2014-10-01 05:00:00,7982.0
-2014-10-01 06:00:00,8172.0
-2014-10-01 07:00:00,8830.0
-2014-10-01 08:00:00,9930.0
-2014-10-01 09:00:00,10403.0
-2014-10-01 10:00:00,10688.0
-2014-10-01 11:00:00,10934.0
-2014-10-01 12:00:00,11106.0
-2014-10-01 13:00:00,11264.0
-2014-10-01 14:00:00,11412.0
-2014-10-01 15:00:00,11567.0
-2014-10-01 16:00:00,11578.0
-2014-10-01 17:00:00,11496.0
-2014-10-01 18:00:00,11452.0
-2014-10-01 19:00:00,11312.0
-2014-10-01 20:00:00,11442.0
-2014-10-01 21:00:00,11783.0
-2014-10-01 22:00:00,11496.0
-2014-10-01 23:00:00,10932.0
-2014-10-02 00:00:00,10117.0
-2014-09-30 01:00:00,9333.0
-2014-09-30 02:00:00,8736.0
-2014-09-30 03:00:00,8387.0
-2014-09-30 04:00:00,8167.0
-2014-09-30 05:00:00,8061.0
-2014-09-30 06:00:00,8221.0
-2014-09-30 07:00:00,8844.0
-2014-09-30 08:00:00,9951.0
-2014-09-30 09:00:00,10501.0
-2014-09-30 10:00:00,10750.0
-2014-09-30 11:00:00,10921.0
-2014-09-30 12:00:00,11040.0
-2014-09-30 13:00:00,11060.0
-2014-09-30 14:00:00,11041.0
-2014-09-30 15:00:00,11094.0
-2014-09-30 16:00:00,11014.0
-2014-09-30 17:00:00,10912.0
-2014-09-30 18:00:00,10802.0
-2014-09-30 19:00:00,10777.0
-2014-09-30 20:00:00,11084.0
-2014-09-30 21:00:00,11387.0
-2014-09-30 22:00:00,11105.0
-2014-09-30 23:00:00,10554.0
-2014-10-01 00:00:00,9762.0
-2014-09-29 01:00:00,8922.0
-2014-09-29 02:00:00,8460.0
-2014-09-29 03:00:00,8214.0
-2014-09-29 04:00:00,8034.0
-2014-09-29 05:00:00,8047.0
-2014-09-29 06:00:00,8227.0
-2014-09-29 07:00:00,8979.0
-2014-09-29 08:00:00,10098.0
-2014-09-29 09:00:00,10735.0
-2014-09-29 10:00:00,11204.0
-2014-09-29 11:00:00,11771.0
-2014-09-29 12:00:00,12261.0
-2014-09-29 13:00:00,12700.0
-2014-09-29 14:00:00,13076.0
-2014-09-29 15:00:00,13447.0
-2014-09-29 16:00:00,13644.0
-2014-09-29 17:00:00,13699.0
-2014-09-29 18:00:00,13600.0
-2014-09-29 19:00:00,13217.0
-2014-09-29 20:00:00,12691.0
-2014-09-29 21:00:00,12603.0
-2014-09-29 22:00:00,11968.0
-2014-09-29 23:00:00,11170.0
-2014-09-30 00:00:00,10210.0
-2014-09-28 01:00:00,9114.0
-2014-09-28 02:00:00,8623.0
-2014-09-28 03:00:00,8241.0
-2014-09-28 04:00:00,8023.0
-2014-09-28 05:00:00,7839.0
-2014-09-28 06:00:00,7839.0
-2014-09-28 07:00:00,7830.0
-2014-09-28 08:00:00,8026.0
-2014-09-28 09:00:00,8039.0
-2014-09-28 10:00:00,8625.0
-2014-09-28 11:00:00,9111.0
-2014-09-28 12:00:00,9603.0
-2014-09-28 13:00:00,10029.0
-2014-09-28 14:00:00,10310.0
-2014-09-28 15:00:00,10514.0
-2014-09-28 16:00:00,10727.0
-2014-09-28 17:00:00,10856.0
-2014-09-28 18:00:00,10826.0
-2014-09-28 19:00:00,10799.0
-2014-09-28 20:00:00,10792.0
-2014-09-28 21:00:00,11183.0
-2014-09-28 22:00:00,10862.0
-2014-09-28 23:00:00,10324.0
-2014-09-29 00:00:00,9595.0
-2014-09-27 01:00:00,9687.0
-2014-09-27 02:00:00,9036.0
-2014-09-27 03:00:00,8622.0
-2014-09-27 04:00:00,8277.0
-2014-09-27 05:00:00,8175.0
-2014-09-27 06:00:00,8172.0
-2014-09-27 07:00:00,8385.0
-2014-09-27 08:00:00,8707.0
-2014-09-27 09:00:00,8978.0
-2014-09-27 10:00:00,9628.0
-2014-09-27 11:00:00,10151.0
-2014-09-27 12:00:00,10580.0
-2014-09-27 13:00:00,10869.0
-2014-09-27 14:00:00,11068.0
-2014-09-27 15:00:00,11066.0
-2014-09-27 16:00:00,11151.0
-2014-09-27 17:00:00,11079.0
-2014-09-27 18:00:00,11012.0
-2014-09-27 19:00:00,10755.0
-2014-09-27 20:00:00,10749.0
-2014-09-27 21:00:00,11029.0
-2014-09-27 22:00:00,10810.0
-2014-09-27 23:00:00,10375.0
-2014-09-28 00:00:00,9793.0
-2014-09-26 01:00:00,9456.0
-2014-09-26 02:00:00,8881.0
-2014-09-26 03:00:00,8521.0
-2014-09-26 04:00:00,8290.0
-2014-09-26 05:00:00,8201.0
-2014-09-26 06:00:00,8361.0
-2014-09-26 07:00:00,8982.0
-2014-09-26 08:00:00,9957.0
-2014-09-26 09:00:00,10458.0
-2014-09-26 10:00:00,11023.0
-2014-09-26 11:00:00,11509.0
-2014-09-26 12:00:00,11959.0
-2014-09-26 13:00:00,12254.0
-2014-09-26 14:00:00,12458.0
-2014-09-26 15:00:00,12659.0
-2014-09-26 16:00:00,12750.0
-2014-09-26 17:00:00,12721.0
-2014-09-26 18:00:00,12580.0
-2014-09-26 19:00:00,12195.0
-2014-09-26 20:00:00,11912.0
-2014-09-26 21:00:00,12126.0
-2014-09-26 22:00:00,11749.0
-2014-09-26 23:00:00,11257.0
-2014-09-27 00:00:00,10460.0
-2014-09-25 01:00:00,9306.0
-2014-09-25 02:00:00,8749.0
-2014-09-25 03:00:00,8402.0
-2014-09-25 04:00:00,8213.0
-2014-09-25 05:00:00,8117.0
-2014-09-25 06:00:00,8279.0
-2014-09-25 07:00:00,8941.0
-2014-09-25 08:00:00,9999.0
-2014-09-25 09:00:00,10589.0
-2014-09-25 10:00:00,10977.0
-2014-09-25 11:00:00,11278.0
-2014-09-25 12:00:00,11547.0
-2014-09-25 13:00:00,11705.0
-2014-09-25 14:00:00,11848.0
-2014-09-25 15:00:00,12066.0
-2014-09-25 16:00:00,12135.0
-2014-09-25 17:00:00,12062.0
-2014-09-25 18:00:00,11962.0
-2014-09-25 19:00:00,11732.0
-2014-09-25 20:00:00,11622.0
-2014-09-25 21:00:00,12042.0
-2014-09-25 22:00:00,11745.0
-2014-09-25 23:00:00,11123.0
-2014-09-26 00:00:00,10294.0
-2014-09-24 01:00:00,9202.0
-2014-09-24 02:00:00,8681.0
-2014-09-24 03:00:00,8341.0
-2014-09-24 04:00:00,8143.0
-2014-09-24 05:00:00,8071.0
-2014-09-24 06:00:00,8247.0
-2014-09-24 07:00:00,8890.0
-2014-09-24 08:00:00,9888.0
-2014-09-24 09:00:00,10419.0
-2014-09-24 10:00:00,10866.0
-2014-09-24 11:00:00,11197.0
-2014-09-24 12:00:00,11523.0
-2014-09-24 13:00:00,11728.0
-2014-09-24 14:00:00,11887.0
-2014-09-24 15:00:00,12005.0
-2014-09-24 16:00:00,12023.0
-2014-09-24 17:00:00,11987.0
-2014-09-24 18:00:00,11924.0
-2014-09-24 19:00:00,11660.0
-2014-09-24 20:00:00,11560.0
-2014-09-24 21:00:00,11908.0
-2014-09-24 22:00:00,11588.0
-2014-09-24 23:00:00,10966.0
-2014-09-25 00:00:00,10124.0
-2014-09-23 01:00:00,8982.0
-2014-09-23 02:00:00,8463.0
-2014-09-23 03:00:00,8155.0
-2014-09-23 04:00:00,7978.0
-2014-09-23 05:00:00,7910.0
-2014-09-23 06:00:00,8110.0
-2014-09-23 07:00:00,8712.0
-2014-09-23 08:00:00,9768.0
-2014-09-23 09:00:00,10319.0
-2014-09-23 10:00:00,10675.0
-2014-09-23 11:00:00,10955.0
-2014-09-23 12:00:00,11302.0
-2014-09-23 13:00:00,11509.0
-2014-09-23 14:00:00,11643.0
-2014-09-23 15:00:00,11845.0
-2014-09-23 16:00:00,11896.0
-2014-09-23 17:00:00,11853.0
-2014-09-23 18:00:00,11820.0
-2014-09-23 19:00:00,11633.0
-2014-09-23 20:00:00,11473.0
-2014-09-23 21:00:00,11805.0
-2014-09-23 22:00:00,11502.0
-2014-09-23 23:00:00,10867.0
-2014-09-24 00:00:00,10020.0
-2014-09-22 01:00:00,8306.0
-2014-09-22 02:00:00,7942.0
-2014-09-22 03:00:00,7720.0
-2014-09-22 04:00:00,7549.0
-2014-09-22 05:00:00,7617.0
-2014-09-22 06:00:00,7861.0
-2014-09-22 07:00:00,8565.0
-2014-09-22 08:00:00,9689.0
-2014-09-22 09:00:00,10248.0
-2014-09-22 10:00:00,10565.0
-2014-09-22 11:00:00,10767.0
-2014-09-22 12:00:00,11014.0
-2014-09-22 13:00:00,11111.0
-2014-09-22 14:00:00,11175.0
-2014-09-22 15:00:00,11318.0
-2014-09-22 16:00:00,11315.0
-2014-09-22 17:00:00,11291.0
-2014-09-22 18:00:00,11225.0
-2014-09-22 19:00:00,11060.0
-2014-09-22 20:00:00,10972.0
-2014-09-22 21:00:00,11429.0
-2014-09-22 22:00:00,11153.0
-2014-09-22 23:00:00,10560.0
-2014-09-23 00:00:00,9816.0
-2014-09-21 01:00:00,9651.0
-2014-09-21 02:00:00,9102.0
-2014-09-21 03:00:00,8618.0
-2014-09-21 04:00:00,8301.0
-2014-09-21 05:00:00,7992.0
-2014-09-21 06:00:00,7858.0
-2014-09-21 07:00:00,7865.0
-2014-09-21 08:00:00,7910.0
-2014-09-21 09:00:00,7946.0
-2014-09-21 10:00:00,8409.0
-2014-09-21 11:00:00,8715.0
-2014-09-21 12:00:00,8971.0
-2014-09-21 13:00:00,9052.0
-2014-09-21 14:00:00,9175.0
-2014-09-21 15:00:00,9215.0
-2014-09-21 16:00:00,9235.0
-2014-09-21 17:00:00,9215.0
-2014-09-21 18:00:00,9288.0
-2014-09-21 19:00:00,9344.0
-2014-09-21 20:00:00,9467.0
-2014-09-21 21:00:00,10010.0
-2014-09-21 22:00:00,9863.0
-2014-09-21 23:00:00,9463.0
-2014-09-22 00:00:00,8914.0
-2014-09-20 01:00:00,9427.0
-2014-09-20 02:00:00,8761.0
-2014-09-20 03:00:00,8423.0
-2014-09-20 04:00:00,8130.0
-2014-09-20 05:00:00,8006.0
-2014-09-20 06:00:00,7986.0
-2014-09-20 07:00:00,8287.0
-2014-09-20 08:00:00,8659.0
-2014-09-20 09:00:00,8907.0
-2014-09-20 10:00:00,9442.0
-2014-09-20 11:00:00,9917.0
-2014-09-20 12:00:00,10358.0
-2014-09-20 13:00:00,10721.0
-2014-09-20 14:00:00,10931.0
-2014-09-20 15:00:00,10920.0
-2014-09-20 16:00:00,10918.0
-2014-09-20 17:00:00,10855.0
-2014-09-20 18:00:00,10863.0
-2014-09-20 19:00:00,10905.0
-2014-09-20 20:00:00,10847.0
-2014-09-20 21:00:00,11259.0
-2014-09-20 22:00:00,11112.0
-2014-09-20 23:00:00,10750.0
-2014-09-21 00:00:00,10231.0
-2014-09-19 01:00:00,9365.0
-2014-09-19 02:00:00,8837.0
-2014-09-19 03:00:00,8505.0
-2014-09-19 04:00:00,8331.0
-2014-09-19 05:00:00,8241.0
-2014-09-19 06:00:00,8396.0
-2014-09-19 07:00:00,8982.0
-2014-09-19 08:00:00,9900.0
-2014-09-19 09:00:00,10471.0
-2014-09-19 10:00:00,10873.0
-2014-09-19 11:00:00,11175.0
-2014-09-19 12:00:00,11499.0
-2014-09-19 13:00:00,11709.0
-2014-09-19 14:00:00,11787.0
-2014-09-19 15:00:00,11927.0
-2014-09-19 16:00:00,11932.0
-2014-09-19 17:00:00,11845.0
-2014-09-19 18:00:00,11721.0
-2014-09-19 19:00:00,11422.0
-2014-09-19 20:00:00,11150.0
-2014-09-19 21:00:00,11508.0
-2014-09-19 22:00:00,11288.0
-2014-09-19 23:00:00,10873.0
-2014-09-20 00:00:00,10112.0
-2014-09-18 01:00:00,9128.0
-2014-09-18 02:00:00,8616.0
-2014-09-18 03:00:00,8296.0
-2014-09-18 04:00:00,8092.0
-2014-09-18 05:00:00,8013.0
-2014-09-18 06:00:00,8208.0
-2014-09-18 07:00:00,8843.0
-2014-09-18 08:00:00,9850.0
-2014-09-18 09:00:00,10422.0
-2014-09-18 10:00:00,10755.0
-2014-09-18 11:00:00,11117.0
-2014-09-18 12:00:00,11437.0
-2014-09-18 13:00:00,11575.0
-2014-09-18 14:00:00,11657.0
-2014-09-18 15:00:00,11781.0
-2014-09-18 16:00:00,11773.0
-2014-09-18 17:00:00,11698.0
-2014-09-18 18:00:00,11588.0
-2014-09-18 19:00:00,11344.0
-2014-09-18 20:00:00,11153.0
-2014-09-18 21:00:00,11648.0
-2014-09-18 22:00:00,11443.0
-2014-09-18 23:00:00,10960.0
-2014-09-19 00:00:00,10153.0
-2014-09-17 01:00:00,9054.0
-2014-09-17 02:00:00,8540.0
-2014-09-17 03:00:00,8208.0
-2014-09-17 04:00:00,8032.0
-2014-09-17 05:00:00,7996.0
-2014-09-17 06:00:00,8184.0
-2014-09-17 07:00:00,8848.0
-2014-09-17 08:00:00,9829.0
-2014-09-17 09:00:00,10359.0
-2014-09-17 10:00:00,10702.0
-2014-09-17 11:00:00,10967.0
-2014-09-17 12:00:00,11220.0
-2014-09-17 13:00:00,11362.0
-2014-09-17 14:00:00,11458.0
-2014-09-17 15:00:00,11559.0
-2014-09-17 16:00:00,11583.0
-2014-09-17 17:00:00,11510.0
-2014-09-17 18:00:00,11421.0
-2014-09-17 19:00:00,11259.0
-2014-09-17 20:00:00,11058.0
-2014-09-17 21:00:00,11496.0
-2014-09-17 22:00:00,11315.0
-2014-09-17 23:00:00,10729.0
-2014-09-18 00:00:00,9941.0
-2014-09-16 01:00:00,9035.0
-2014-09-16 02:00:00,8538.0
-2014-09-16 03:00:00,8253.0
-2014-09-16 04:00:00,8101.0
-2014-09-16 05:00:00,8065.0
-2014-09-16 06:00:00,8261.0
-2014-09-16 07:00:00,8921.0
-2014-09-16 08:00:00,9934.0
-2014-09-16 09:00:00,10445.0
-2014-09-16 10:00:00,10719.0
-2014-09-16 11:00:00,10942.0
-2014-09-16 12:00:00,11160.0
-2014-09-16 13:00:00,11233.0
-2014-09-16 14:00:00,11231.0
-2014-09-16 15:00:00,11354.0
-2014-09-16 16:00:00,11341.0
-2014-09-16 17:00:00,11267.0
-2014-09-16 18:00:00,11186.0
-2014-09-16 19:00:00,11028.0
-2014-09-16 20:00:00,10844.0
-2014-09-16 21:00:00,11326.0
-2014-09-16 22:00:00,11185.0
-2014-09-16 23:00:00,10625.0
-2014-09-17 00:00:00,9809.0
-2014-09-15 01:00:00,8413.0
-2014-09-15 02:00:00,8021.0
-2014-09-15 03:00:00,7827.0
-2014-09-15 04:00:00,7691.0
-2014-09-15 05:00:00,7695.0
-2014-09-15 06:00:00,7948.0
-2014-09-15 07:00:00,8652.0
-2014-09-15 08:00:00,9752.0
-2014-09-15 09:00:00,10439.0
-2014-09-15 10:00:00,10704.0
-2014-09-15 11:00:00,10999.0
-2014-09-15 12:00:00,11253.0
-2014-09-15 13:00:00,11273.0
-2014-09-15 14:00:00,11246.0
-2014-09-15 15:00:00,11282.0
-2014-09-15 16:00:00,11208.0
-2014-09-15 17:00:00,11095.0
-2014-09-15 18:00:00,11031.0
-2014-09-15 19:00:00,10966.0
-2014-09-15 20:00:00,10982.0
-2014-09-15 21:00:00,11315.0
-2014-09-15 22:00:00,11100.0
-2014-09-15 23:00:00,10556.0
-2014-09-16 00:00:00,9781.0
-2014-09-14 01:00:00,8534.0
-2014-09-14 02:00:00,8157.0
-2014-09-14 03:00:00,7850.0
-2014-09-14 04:00:00,7690.0
-2014-09-14 05:00:00,7533.0
-2014-09-14 06:00:00,7583.0
-2014-09-14 07:00:00,7690.0
-2014-09-14 08:00:00,7824.0
-2014-09-14 09:00:00,7888.0
-2014-09-14 10:00:00,8267.0
-2014-09-14 11:00:00,8501.0
-2014-09-14 12:00:00,8762.0
-2014-09-14 13:00:00,8833.0
-2014-09-14 14:00:00,8926.0
-2014-09-14 15:00:00,8935.0
-2014-09-14 16:00:00,8977.0
-2014-09-14 17:00:00,8979.0
-2014-09-14 18:00:00,9080.0
-2014-09-14 19:00:00,9116.0
-2014-09-14 20:00:00,9248.0
-2014-09-14 21:00:00,9848.0
-2014-09-14 22:00:00,9857.0
-2014-09-14 23:00:00,9562.0
-2014-09-15 00:00:00,8991.0
-2014-09-13 01:00:00,9152.0
-2014-09-13 02:00:00,8620.0
-2014-09-13 03:00:00,8332.0
-2014-09-13 04:00:00,8041.0
-2014-09-13 05:00:00,8006.0
-2014-09-13 06:00:00,8037.0
-2014-09-13 07:00:00,8351.0
-2014-09-13 08:00:00,8637.0
-2014-09-13 09:00:00,8947.0
-2014-09-13 10:00:00,9311.0
-2014-09-13 11:00:00,9586.0
-2014-09-13 12:00:00,9740.0
-2014-09-13 13:00:00,9680.0
-2014-09-13 14:00:00,9540.0
-2014-09-13 15:00:00,9437.0
-2014-09-13 16:00:00,9366.0
-2014-09-13 17:00:00,9254.0
-2014-09-13 18:00:00,9228.0
-2014-09-13 19:00:00,9177.0
-2014-09-13 20:00:00,9235.0
-2014-09-13 21:00:00,9734.0
-2014-09-13 22:00:00,9843.0
-2014-09-13 23:00:00,9540.0
-2014-09-14 00:00:00,9102.0
-2014-09-12 01:00:00,9119.0
-2014-09-12 02:00:00,8605.0
-2014-09-12 03:00:00,8318.0
-2014-09-12 04:00:00,8146.0
-2014-09-12 05:00:00,8071.0
-2014-09-12 06:00:00,8279.0
-2014-09-12 07:00:00,8856.0
-2014-09-12 08:00:00,9897.0
-2014-09-12 09:00:00,10468.0
-2014-09-12 10:00:00,10800.0
-2014-09-12 11:00:00,10930.0
-2014-09-12 12:00:00,11058.0
-2014-09-12 13:00:00,11080.0
-2014-09-12 14:00:00,10979.0
-2014-09-12 15:00:00,11028.0
-2014-09-12 16:00:00,10955.0
-2014-09-12 17:00:00,10855.0
-2014-09-12 18:00:00,10802.0
-2014-09-12 19:00:00,10791.0
-2014-09-12 20:00:00,10790.0
-2014-09-12 21:00:00,11058.0
-2014-09-12 22:00:00,10908.0
-2014-09-12 23:00:00,10481.0
-2014-09-13 00:00:00,9808.0
-2014-09-11 01:00:00,9837.0
-2014-09-11 02:00:00,9178.0
-2014-09-11 03:00:00,8775.0
-2014-09-11 04:00:00,8519.0
-2014-09-11 05:00:00,8389.0
-2014-09-11 06:00:00,8474.0
-2014-09-11 07:00:00,9063.0
-2014-09-11 08:00:00,10014.0
-2014-09-11 09:00:00,10602.0
-2014-09-11 10:00:00,10882.0
-2014-09-11 11:00:00,11011.0
-2014-09-11 12:00:00,11100.0
-2014-09-11 13:00:00,11089.0
-2014-09-11 14:00:00,11043.0
-2014-09-11 15:00:00,11045.0
-2014-09-11 16:00:00,10965.0
-2014-09-11 17:00:00,10870.0
-2014-09-11 18:00:00,10824.0
-2014-09-11 19:00:00,10766.0
-2014-09-11 20:00:00,10839.0
-2014-09-11 21:00:00,11237.0
-2014-09-11 22:00:00,11099.0
-2014-09-11 23:00:00,10614.0
-2014-09-12 00:00:00,9882.0
-2014-09-10 01:00:00,11516.0
-2014-09-10 02:00:00,10768.0
-2014-09-10 03:00:00,10190.0
-2014-09-10 04:00:00,9813.0
-2014-09-10 05:00:00,9704.0
-2014-09-10 06:00:00,9869.0
-2014-09-10 07:00:00,10604.0
-2014-09-10 08:00:00,11824.0
-2014-09-10 09:00:00,12692.0
-2014-09-10 10:00:00,13214.0
-2014-09-10 11:00:00,13543.0
-2014-09-10 12:00:00,13829.0
-2014-09-10 13:00:00,14062.0
-2014-09-10 14:00:00,14350.0
-2014-09-10 15:00:00,14795.0
-2014-09-10 16:00:00,15094.0
-2014-09-10 17:00:00,15094.0
-2014-09-10 18:00:00,15013.0
-2014-09-10 19:00:00,14647.0
-2014-09-10 20:00:00,13967.0
-2014-09-10 21:00:00,13662.0
-2014-09-10 22:00:00,12975.0
-2014-09-10 23:00:00,11995.0
-2014-09-11 00:00:00,10870.0
-2014-09-09 01:00:00,10484.0
-2014-09-09 02:00:00,9806.0
-2014-09-09 03:00:00,9348.0
-2014-09-09 04:00:00,9077.0
-2014-09-09 05:00:00,8966.0
-2014-09-09 06:00:00,9151.0
-2014-09-09 07:00:00,9834.0
-2014-09-09 08:00:00,10952.0
-2014-09-09 09:00:00,11645.0
-2014-09-09 10:00:00,12127.0
-2014-09-09 11:00:00,12570.0
-2014-09-09 12:00:00,12947.0
-2014-09-09 13:00:00,13442.0
-2014-09-09 14:00:00,13984.0
-2014-09-09 15:00:00,14538.0
-2014-09-09 16:00:00,14750.0
-2014-09-09 17:00:00,15078.0
-2014-09-09 18:00:00,15181.0
-2014-09-09 19:00:00,14783.0
-2014-09-09 20:00:00,14391.0
-2014-09-09 21:00:00,14708.0
-2014-09-09 22:00:00,14524.0
-2014-09-09 23:00:00,13753.0
-2014-09-10 00:00:00,12658.0
-2014-09-08 01:00:00,9476.0
-2014-09-08 02:00:00,8918.0
-2014-09-08 03:00:00,8601.0
-2014-09-08 04:00:00,8476.0
-2014-09-08 05:00:00,8431.0
-2014-09-08 06:00:00,8586.0
-2014-09-08 07:00:00,9263.0
-2014-09-08 08:00:00,10251.0
-2014-09-08 09:00:00,11013.0
-2014-09-08 10:00:00,11624.0
-2014-09-08 11:00:00,12200.0
-2014-09-08 12:00:00,12710.0
-2014-09-08 13:00:00,13004.0
-2014-09-08 14:00:00,13247.0
-2014-09-08 15:00:00,13606.0
-2014-09-08 16:00:00,13789.0
-2014-09-08 17:00:00,13893.0
-2014-09-08 18:00:00,13930.0
-2014-09-08 19:00:00,13646.0
-2014-09-08 20:00:00,13132.0
-2014-09-08 21:00:00,13273.0
-2014-09-08 22:00:00,13136.0
-2014-09-08 23:00:00,12452.0
-2014-09-09 00:00:00,11442.0
-2014-09-07 01:00:00,9453.0
-2014-09-07 02:00:00,8879.0
-2014-09-07 03:00:00,8463.0
-2014-09-07 04:00:00,8204.0
-2014-09-07 05:00:00,8032.0
-2014-09-07 06:00:00,7963.0
-2014-09-07 07:00:00,8036.0
-2014-09-07 08:00:00,8000.0
-2014-09-07 09:00:00,8196.0
-2014-09-07 10:00:00,8843.0
-2014-09-07 11:00:00,9441.0
-2014-09-07 12:00:00,9976.0
-2014-09-07 13:00:00,10510.0
-2014-09-07 14:00:00,10868.0
-2014-09-07 15:00:00,11174.0
-2014-09-07 16:00:00,11415.0
-2014-09-07 17:00:00,11631.0
-2014-09-07 18:00:00,11758.0
-2014-09-07 19:00:00,11736.0
-2014-09-07 20:00:00,11448.0
-2014-09-07 21:00:00,11554.0
-2014-09-07 22:00:00,11539.0
-2014-09-07 23:00:00,10966.0
-2014-09-08 00:00:00,10220.0
-2014-09-06 01:00:00,10941.0
-2014-09-06 02:00:00,10168.0
-2014-09-06 03:00:00,9586.0
-2014-09-06 04:00:00,9175.0
-2014-09-06 05:00:00,8963.0
-2014-09-06 06:00:00,8912.0
-2014-09-06 07:00:00,9061.0
-2014-09-06 08:00:00,9223.0
-2014-09-06 09:00:00,9424.0
-2014-09-06 10:00:00,10030.0
-2014-09-06 11:00:00,10568.0
-2014-09-06 12:00:00,11041.0
-2014-09-06 13:00:00,11233.0
-2014-09-06 14:00:00,11312.0
-2014-09-06 15:00:00,11382.0
-2014-09-06 16:00:00,11499.0
-2014-09-06 17:00:00,11674.0
-2014-09-06 18:00:00,11741.0
-2014-09-06 19:00:00,11656.0
-2014-09-06 20:00:00,11300.0
-2014-09-06 21:00:00,11305.0
-2014-09-06 22:00:00,11280.0
-2014-09-06 23:00:00,10794.0
-2014-09-07 00:00:00,10157.0
-2014-09-05 01:00:00,13672.0
-2014-09-05 02:00:00,12826.0
-2014-09-05 03:00:00,12239.0
-2014-09-05 04:00:00,11831.0
-2014-09-05 05:00:00,11579.0
-2014-09-05 06:00:00,11706.0
-2014-09-05 07:00:00,12331.0
-2014-09-05 08:00:00,13461.0
-2014-09-05 09:00:00,14530.0
-2014-09-05 10:00:00,15700.0
-2014-09-05 11:00:00,16700.0
-2014-09-05 12:00:00,17624.0
-2014-09-05 13:00:00,18097.0
-2014-09-05 14:00:00,18434.0
-2014-09-05 15:00:00,19016.0
-2014-09-05 16:00:00,18974.0
-2014-09-05 17:00:00,17453.0
-2014-09-05 18:00:00,16558.0
-2014-09-05 19:00:00,15659.0
-2014-09-05 20:00:00,14528.0
-2014-09-05 21:00:00,13901.0
-2014-09-05 22:00:00,13434.0
-2014-09-05 23:00:00,12850.0
-2014-09-06 00:00:00,11915.0
-2014-09-04 01:00:00,12596.0
-2014-09-04 02:00:00,11660.0
-2014-09-04 03:00:00,11090.0
-2014-09-04 04:00:00,10777.0
-2014-09-04 05:00:00,10598.0
-2014-09-04 06:00:00,10738.0
-2014-09-04 07:00:00,11508.0
-2014-09-04 08:00:00,12745.0
-2014-09-04 09:00:00,13558.0
-2014-09-04 10:00:00,13896.0
-2014-09-04 11:00:00,14179.0
-2014-09-04 12:00:00,14315.0
-2014-09-04 13:00:00,14312.0
-2014-09-04 14:00:00,14203.0
-2014-09-04 15:00:00,14336.0
-2014-09-04 16:00:00,14764.0
-2014-09-04 17:00:00,15583.0
-2014-09-04 18:00:00,16440.0
-2014-09-04 19:00:00,16774.0
-2014-09-04 20:00:00,16614.0
-2014-09-04 21:00:00,16616.0
-2014-09-04 22:00:00,16626.0
-2014-09-04 23:00:00,16009.0
-2014-09-05 00:00:00,14885.0
-2014-09-03 01:00:00,11632.0
-2014-09-03 02:00:00,10764.0
-2014-09-03 03:00:00,10193.0
-2014-09-03 04:00:00,9810.0
-2014-09-03 05:00:00,9605.0
-2014-09-03 06:00:00,9711.0
-2014-09-03 07:00:00,10279.0
-2014-09-03 08:00:00,11211.0
-2014-09-03 09:00:00,12099.0
-2014-09-03 10:00:00,12994.0
-2014-09-03 11:00:00,13782.0
-2014-09-03 12:00:00,14555.0
-2014-09-03 13:00:00,15167.0
-2014-09-03 14:00:00,15723.0
-2014-09-03 15:00:00,16446.0
-2014-09-03 16:00:00,17003.0
-2014-09-03 17:00:00,17473.0
-2014-09-03 18:00:00,17697.0
-2014-09-03 19:00:00,17527.0
-2014-09-03 20:00:00,16896.0
-2014-09-03 21:00:00,16472.0
-2014-09-03 22:00:00,16169.0
-2014-09-03 23:00:00,15201.0
-2014-09-04 00:00:00,13827.0
-2014-09-02 01:00:00,11443.0
-2014-09-02 02:00:00,10721.0
-2014-09-02 03:00:00,10192.0
-2014-09-02 04:00:00,9816.0
-2014-09-02 05:00:00,9699.0
-2014-09-02 06:00:00,9892.0
-2014-09-02 07:00:00,10662.0
-2014-09-02 08:00:00,11741.0
-2014-09-02 09:00:00,12579.0
-2014-09-02 10:00:00,13411.0
-2014-09-02 11:00:00,14135.0
-2014-09-02 12:00:00,14899.0
-2014-09-02 13:00:00,15488.0
-2014-09-02 14:00:00,15958.0
-2014-09-02 15:00:00,16454.0
-2014-09-02 16:00:00,16765.0
-2014-09-02 17:00:00,16986.0
-2014-09-02 18:00:00,16962.0
-2014-09-02 19:00:00,16641.0
-2014-09-02 20:00:00,15827.0
-2014-09-02 21:00:00,15412.0
-2014-09-02 22:00:00,15197.0
-2014-09-02 23:00:00,14229.0
-2014-09-03 00:00:00,12900.0
-2014-09-01 01:00:00,12223.0
-2014-09-01 02:00:00,11421.0
-2014-09-01 03:00:00,10883.0
-2014-09-01 04:00:00,10455.0
-2014-09-01 05:00:00,10200.0
-2014-09-01 06:00:00,10100.0
-2014-09-01 07:00:00,10299.0
-2014-09-01 08:00:00,10408.0
-2014-09-01 09:00:00,10689.0
-2014-09-01 10:00:00,11343.0
-2014-09-01 11:00:00,12030.0
-2014-09-01 12:00:00,12492.0
-2014-09-01 13:00:00,12961.0
-2014-09-01 14:00:00,13622.0
-2014-09-01 15:00:00,14330.0
-2014-09-01 16:00:00,14869.0
-2014-09-01 17:00:00,15160.0
-2014-09-01 18:00:00,15270.0
-2014-09-01 19:00:00,15110.0
-2014-09-01 20:00:00,14639.0
-2014-09-01 21:00:00,14326.0
-2014-09-01 22:00:00,14236.0
-2014-09-01 23:00:00,13515.0
-2014-09-02 00:00:00,12511.0
-2014-08-31 01:00:00,11729.0
-2014-08-31 02:00:00,10952.0
-2014-08-31 03:00:00,10328.0
-2014-08-31 04:00:00,9900.0
-2014-08-31 05:00:00,9582.0
-2014-08-31 06:00:00,9486.0
-2014-08-31 07:00:00,9486.0
-2014-08-31 08:00:00,9476.0
-2014-08-31 09:00:00,9809.0
-2014-08-31 10:00:00,10735.0
-2014-08-31 11:00:00,11852.0
-2014-08-31 12:00:00,12905.0
-2014-08-31 13:00:00,13735.0
-2014-08-31 14:00:00,14393.0
-2014-08-31 15:00:00,14895.0
-2014-08-31 16:00:00,15363.0
-2014-08-31 17:00:00,15680.0
-2014-08-31 18:00:00,15774.0
-2014-08-31 19:00:00,15682.0
-2014-08-31 20:00:00,15154.0
-2014-08-31 21:00:00,14702.0
-2014-08-31 22:00:00,14516.0
-2014-08-31 23:00:00,13932.0
-2014-09-01 00:00:00,13051.0
-2014-08-30 01:00:00,13079.0
-2014-08-30 02:00:00,12107.0
-2014-08-30 03:00:00,11419.0
-2014-08-30 04:00:00,10912.0
-2014-08-30 05:00:00,10716.0
-2014-08-30 06:00:00,10548.0
-2014-08-30 07:00:00,10702.0
-2014-08-30 08:00:00,10835.0
-2014-08-30 09:00:00,11320.0
-2014-08-30 10:00:00,12084.0
-2014-08-30 11:00:00,12970.0
-2014-08-30 12:00:00,13522.0
-2014-08-30 13:00:00,13893.0
-2014-08-30 14:00:00,14359.0
-2014-08-30 15:00:00,14673.0
-2014-08-30 16:00:00,15004.0
-2014-08-30 17:00:00,15265.0
-2014-08-30 18:00:00,15323.0
-2014-08-30 19:00:00,15121.0
-2014-08-30 20:00:00,14622.0
-2014-08-30 21:00:00,14208.0
-2014-08-30 22:00:00,14057.0
-2014-08-30 23:00:00,13421.0
-2014-08-31 00:00:00,12616.0
-2014-08-29 01:00:00,11491.0
-2014-08-29 02:00:00,10778.0
-2014-08-29 03:00:00,10285.0
-2014-08-29 04:00:00,9965.0
-2014-08-29 05:00:00,9848.0
-2014-08-29 06:00:00,10007.0
-2014-08-29 07:00:00,10728.0
-2014-08-29 08:00:00,11803.0
-2014-08-29 09:00:00,12617.0
-2014-08-29 10:00:00,13266.0
-2014-08-29 11:00:00,14014.0
-2014-08-29 12:00:00,15063.0
-2014-08-29 13:00:00,15962.0
-2014-08-29 14:00:00,16606.0
-2014-08-29 15:00:00,17264.0
-2014-08-29 16:00:00,17629.0
-2014-08-29 17:00:00,17982.0
-2014-08-29 18:00:00,18139.0
-2014-08-29 19:00:00,17739.0
-2014-08-29 20:00:00,16957.0
-2014-08-29 21:00:00,16547.0
-2014-08-29 22:00:00,16153.0
-2014-08-29 23:00:00,15348.0
-2014-08-30 00:00:00,14213.0
-2014-08-28 01:00:00,11301.0
-2014-08-28 02:00:00,10511.0
-2014-08-28 03:00:00,9991.0
-2014-08-28 04:00:00,9673.0
-2014-08-28 05:00:00,9533.0
-2014-08-28 06:00:00,9646.0
-2014-08-28 07:00:00,10332.0
-2014-08-28 08:00:00,11216.0
-2014-08-28 09:00:00,11932.0
-2014-08-28 10:00:00,12639.0
-2014-08-28 11:00:00,13197.0
-2014-08-28 12:00:00,13750.0
-2014-08-28 13:00:00,14201.0
-2014-08-28 14:00:00,14550.0
-2014-08-28 15:00:00,15005.0
-2014-08-28 16:00:00,15231.0
-2014-08-28 17:00:00,15370.0
-2014-08-28 18:00:00,15247.0
-2014-08-28 19:00:00,14644.0
-2014-08-28 20:00:00,14024.0
-2014-08-28 21:00:00,14099.0
-2014-08-28 22:00:00,14072.0
-2014-08-28 23:00:00,13435.0
-2014-08-29 00:00:00,12478.0
-2014-08-27 01:00:00,12253.0
-2014-08-27 02:00:00,11365.0
-2014-08-27 03:00:00,10711.0
-2014-08-27 04:00:00,10315.0
-2014-08-27 05:00:00,10128.0
-2014-08-27 06:00:00,10249.0
-2014-08-27 07:00:00,10887.0
-2014-08-27 08:00:00,11818.0
-2014-08-27 09:00:00,12725.0
-2014-08-27 10:00:00,13600.0
-2014-08-27 11:00:00,14241.0
-2014-08-27 12:00:00,14906.0
-2014-08-27 13:00:00,15515.0
-2014-08-27 14:00:00,15993.0
-2014-08-27 15:00:00,16536.0
-2014-08-27 16:00:00,16837.0
-2014-08-27 17:00:00,16712.0
-2014-08-27 18:00:00,16279.0
-2014-08-27 19:00:00,15543.0
-2014-08-27 20:00:00,14695.0
-2014-08-27 21:00:00,14371.0
-2014-08-27 22:00:00,14309.0
-2014-08-27 23:00:00,13581.0
-2014-08-28 00:00:00,12427.0
-2014-08-26 01:00:00,12154.0
-2014-08-26 02:00:00,11317.0
-2014-08-26 03:00:00,10785.0
-2014-08-26 04:00:00,10400.0
-2014-08-26 05:00:00,10303.0
-2014-08-26 06:00:00,10455.0
-2014-08-26 07:00:00,11149.0
-2014-08-26 08:00:00,12207.0
-2014-08-26 09:00:00,13149.0
-2014-08-26 10:00:00,14022.0
-2014-08-26 11:00:00,14919.0
-2014-08-26 12:00:00,15347.0
-2014-08-26 13:00:00,15023.0
-2014-08-26 14:00:00,14954.0
-2014-08-26 15:00:00,15658.0
-2014-08-26 16:00:00,16398.0
-2014-08-26 17:00:00,17087.0
-2014-08-26 18:00:00,17515.0
-2014-08-26 19:00:00,17381.0
-2014-08-26 20:00:00,16782.0
-2014-08-26 21:00:00,16215.0
-2014-08-26 22:00:00,15959.0
-2014-08-26 23:00:00,14966.0
-2014-08-27 00:00:00,13604.0
-2014-08-25 01:00:00,13546.0
-2014-08-25 02:00:00,12667.0
-2014-08-25 03:00:00,12051.0
-2014-08-25 04:00:00,11774.0
-2014-08-25 05:00:00,11627.0
-2014-08-25 06:00:00,11845.0
-2014-08-25 07:00:00,12624.0
-2014-08-25 08:00:00,13750.0
-2014-08-25 09:00:00,14893.0
-2014-08-25 10:00:00,15974.0
-2014-08-25 11:00:00,17155.0
-2014-08-25 12:00:00,18276.0
-2014-08-25 13:00:00,18893.0
-2014-08-25 14:00:00,18476.0
-2014-08-25 15:00:00,17458.0
-2014-08-25 16:00:00,16526.0
-2014-08-25 17:00:00,16034.0
-2014-08-25 18:00:00,16040.0
-2014-08-25 19:00:00,15810.0
-2014-08-25 20:00:00,15413.0
-2014-08-25 21:00:00,15284.0
-2014-08-25 22:00:00,15247.0
-2014-08-25 23:00:00,14491.0
-2014-08-26 00:00:00,13360.0
-2014-08-24 01:00:00,11284.0
-2014-08-24 02:00:00,10606.0
-2014-08-24 03:00:00,10122.0
-2014-08-24 04:00:00,9794.0
-2014-08-24 05:00:00,9581.0
-2014-08-24 06:00:00,9545.0
-2014-08-24 07:00:00,9654.0
-2014-08-24 08:00:00,9659.0
-2014-08-24 09:00:00,9937.0
-2014-08-24 10:00:00,10795.0
-2014-08-24 11:00:00,11846.0
-2014-08-24 12:00:00,13042.0
-2014-08-24 13:00:00,14189.0
-2014-08-24 14:00:00,15108.0
-2014-08-24 15:00:00,15839.0
-2014-08-24 16:00:00,16502.0
-2014-08-24 17:00:00,16898.0
-2014-08-24 18:00:00,17129.0
-2014-08-24 19:00:00,17139.0
-2014-08-24 20:00:00,16767.0
-2014-08-24 21:00:00,16392.0
-2014-08-24 22:00:00,16362.0
-2014-08-24 23:00:00,15735.0
-2014-08-25 00:00:00,14626.0
-2014-08-23 01:00:00,13612.0
-2014-08-23 02:00:00,12593.0
-2014-08-23 03:00:00,11825.0
-2014-08-23 04:00:00,11331.0
-2014-08-23 05:00:00,10949.0
-2014-08-23 06:00:00,10824.0
-2014-08-23 07:00:00,10999.0
-2014-08-23 08:00:00,11209.0
-2014-08-23 09:00:00,11939.0
-2014-08-23 10:00:00,13124.0
-2014-08-23 11:00:00,14411.0
-2014-08-23 12:00:00,15389.0
-2014-08-23 13:00:00,16063.0
-2014-08-23 14:00:00,16148.0
-2014-08-23 15:00:00,15666.0
-2014-08-23 16:00:00,14642.0
-2014-08-23 17:00:00,13859.0
-2014-08-23 18:00:00,13389.0
-2014-08-23 19:00:00,13194.0
-2014-08-23 20:00:00,13004.0
-2014-08-23 21:00:00,12974.0
-2014-08-23 22:00:00,13203.0
-2014-08-23 23:00:00,12845.0
-2014-08-24 00:00:00,12099.0
-2014-08-22 01:00:00,12577.0
-2014-08-22 02:00:00,11745.0
-2014-08-22 03:00:00,11223.0
-2014-08-22 04:00:00,10848.0
-2014-08-22 05:00:00,10709.0
-2014-08-22 06:00:00,10840.0
-2014-08-22 07:00:00,11486.0
-2014-08-22 08:00:00,12440.0
-2014-08-22 09:00:00,13523.0
-2014-08-22 10:00:00,14468.0
-2014-08-22 11:00:00,15165.0
-2014-08-22 12:00:00,15747.0
-2014-08-22 13:00:00,15939.0
-2014-08-22 14:00:00,16391.0
-2014-08-22 15:00:00,17250.0
-2014-08-22 16:00:00,17732.0
-2014-08-22 17:00:00,18118.0
-2014-08-22 18:00:00,18253.0
-2014-08-22 19:00:00,17953.0
-2014-08-22 20:00:00,17290.0
-2014-08-22 21:00:00,16803.0
-2014-08-22 22:00:00,16603.0
-2014-08-22 23:00:00,15958.0
-2014-08-23 00:00:00,14843.0
-2014-08-21 01:00:00,13189.0
-2014-08-21 02:00:00,12169.0
-2014-08-21 03:00:00,11465.0
-2014-08-21 04:00:00,10958.0
-2014-08-21 05:00:00,10692.0
-2014-08-21 06:00:00,10852.0
-2014-08-21 07:00:00,11474.0
-2014-08-21 08:00:00,12576.0
-2014-08-21 09:00:00,13531.0
-2014-08-21 10:00:00,13913.0
-2014-08-21 11:00:00,14177.0
-2014-08-21 12:00:00,14619.0
-2014-08-21 13:00:00,15052.0
-2014-08-21 14:00:00,15264.0
-2014-08-21 15:00:00,15295.0
-2014-08-21 16:00:00,15437.0
-2014-08-21 17:00:00,15244.0
-2014-08-21 18:00:00,15437.0
-2014-08-21 19:00:00,15466.0
-2014-08-21 20:00:00,15258.0
-2014-08-21 21:00:00,15147.0
-2014-08-21 22:00:00,15284.0
-2014-08-21 23:00:00,14706.0
-2014-08-22 00:00:00,13736.0
-2014-08-20 01:00:00,12399.0
-2014-08-20 02:00:00,11390.0
-2014-08-20 03:00:00,10680.0
-2014-08-20 04:00:00,10228.0
-2014-08-20 05:00:00,9995.0
-2014-08-20 06:00:00,10067.0
-2014-08-20 07:00:00,10676.0
-2014-08-20 08:00:00,11495.0
-2014-08-20 09:00:00,12495.0
-2014-08-20 10:00:00,13452.0
-2014-08-20 11:00:00,14375.0
-2014-08-20 12:00:00,15378.0
-2014-08-20 13:00:00,16138.0
-2014-08-20 14:00:00,16729.0
-2014-08-20 15:00:00,17354.0
-2014-08-20 16:00:00,17759.0
-2014-08-20 17:00:00,18060.0
-2014-08-20 18:00:00,18150.0
-2014-08-20 19:00:00,17940.0
-2014-08-20 20:00:00,17337.0
-2014-08-20 21:00:00,16785.0
-2014-08-20 22:00:00,16731.0
-2014-08-20 23:00:00,15864.0
-2014-08-21 00:00:00,14496.0
-2014-08-19 01:00:00,12310.0
-2014-08-19 02:00:00,11404.0
-2014-08-19 03:00:00,10752.0
-2014-08-19 04:00:00,10363.0
-2014-08-19 05:00:00,10226.0
-2014-08-19 06:00:00,10374.0
-2014-08-19 07:00:00,11031.0
-2014-08-19 08:00:00,12055.0
-2014-08-19 09:00:00,12897.0
-2014-08-19 10:00:00,13809.0
-2014-08-19 11:00:00,14678.0
-2014-08-19 12:00:00,15387.0
-2014-08-19 13:00:00,15748.0
-2014-08-19 14:00:00,15791.0
-2014-08-19 15:00:00,16021.0
-2014-08-19 16:00:00,16456.0
-2014-08-19 17:00:00,16924.0
-2014-08-19 18:00:00,17227.0
-2014-08-19 19:00:00,17139.0
-2014-08-19 20:00:00,16528.0
-2014-08-19 21:00:00,15960.0
-2014-08-19 22:00:00,15920.0
-2014-08-19 23:00:00,15073.0
-2014-08-20 00:00:00,13754.0
-2014-08-18 01:00:00,9937.0
-2014-08-18 02:00:00,9435.0
-2014-08-18 03:00:00,9084.0
-2014-08-18 04:00:00,8909.0
-2014-08-18 05:00:00,8858.0
-2014-08-18 06:00:00,9109.0
-2014-08-18 07:00:00,9842.0
-2014-08-18 08:00:00,10797.0
-2014-08-18 09:00:00,11605.0
-2014-08-18 10:00:00,12192.0
-2014-08-18 11:00:00,12592.0
-2014-08-18 12:00:00,13027.0
-2014-08-18 13:00:00,13577.0
-2014-08-18 14:00:00,14357.0
-2014-08-18 15:00:00,15132.0
-2014-08-18 16:00:00,15731.0
-2014-08-18 17:00:00,16138.0
-2014-08-18 18:00:00,16344.0
-2014-08-18 19:00:00,16209.0
-2014-08-18 20:00:00,15745.0
-2014-08-18 21:00:00,15348.0
-2014-08-18 22:00:00,15392.0
-2014-08-18 23:00:00,14711.0
-2014-08-19 00:00:00,13542.0
-2014-08-17 01:00:00,10942.0
-2014-08-17 02:00:00,10200.0
-2014-08-17 03:00:00,9615.0
-2014-08-17 04:00:00,9201.0
-2014-08-17 05:00:00,8940.0
-2014-08-17 06:00:00,8814.0
-2014-08-17 07:00:00,8856.0
-2014-08-17 08:00:00,8792.0
-2014-08-17 09:00:00,9104.0
-2014-08-17 10:00:00,9659.0
-2014-08-17 11:00:00,10196.0
-2014-08-17 12:00:00,10627.0
-2014-08-17 13:00:00,10960.0
-2014-08-17 14:00:00,11253.0
-2014-08-17 15:00:00,11436.0
-2014-08-17 16:00:00,11534.0
-2014-08-17 17:00:00,11612.0
-2014-08-17 18:00:00,11697.0
-2014-08-17 19:00:00,11604.0
-2014-08-17 20:00:00,11435.0
-2014-08-17 21:00:00,11349.0
-2014-08-17 22:00:00,11595.0
-2014-08-17 23:00:00,11236.0
-2014-08-18 00:00:00,10616.0
-2014-08-16 01:00:00,10360.0
-2014-08-16 02:00:00,9726.0
-2014-08-16 03:00:00,9191.0
-2014-08-16 04:00:00,8860.0
-2014-08-16 05:00:00,8643.0
-2014-08-16 06:00:00,8626.0
-2014-08-16 07:00:00,8840.0
-2014-08-16 08:00:00,8941.0
-2014-08-16 09:00:00,9540.0
-2014-08-16 10:00:00,10378.0
-2014-08-16 11:00:00,11147.0
-2014-08-16 12:00:00,11827.0
-2014-08-16 13:00:00,12302.0
-2014-08-16 14:00:00,12662.0
-2014-08-16 15:00:00,12871.0
-2014-08-16 16:00:00,13167.0
-2014-08-16 17:00:00,13373.0
-2014-08-16 18:00:00,13511.0
-2014-08-16 19:00:00,13415.0
-2014-08-16 20:00:00,13061.0
-2014-08-16 21:00:00,12781.0
-2014-08-16 22:00:00,12916.0
-2014-08-16 23:00:00,12484.0
-2014-08-17 00:00:00,11738.0
-2014-08-15 01:00:00,9782.0
-2014-08-15 02:00:00,9186.0
-2014-08-15 03:00:00,8750.0
-2014-08-15 04:00:00,8475.0
-2014-08-15 05:00:00,8374.0
-2014-08-15 06:00:00,8500.0
-2014-08-15 07:00:00,9000.0
-2014-08-15 08:00:00,9546.0
-2014-08-15 09:00:00,10385.0
-2014-08-15 10:00:00,11072.0
-2014-08-15 11:00:00,11577.0
-2014-08-15 12:00:00,12001.0
-2014-08-15 13:00:00,12285.0
-2014-08-15 14:00:00,12541.0
-2014-08-15 15:00:00,12873.0
-2014-08-15 16:00:00,13084.0
-2014-08-15 17:00:00,13293.0
-2014-08-15 18:00:00,13404.0
-2014-08-15 19:00:00,13256.0
-2014-08-15 20:00:00,12830.0
-2014-08-15 21:00:00,12421.0
-2014-08-15 22:00:00,12520.0
-2014-08-15 23:00:00,12104.0
-2014-08-16 00:00:00,11267.0
-2014-08-14 01:00:00,10564.0
-2014-08-14 02:00:00,9855.0
-2014-08-14 03:00:00,9378.0
-2014-08-14 04:00:00,9049.0
-2014-08-14 05:00:00,8899.0
-2014-08-14 06:00:00,8988.0
-2014-08-14 07:00:00,9495.0
-2014-08-14 08:00:00,10123.0
-2014-08-14 09:00:00,10916.0
-2014-08-14 10:00:00,11579.0
-2014-08-14 11:00:00,12040.0
-2014-08-14 12:00:00,12456.0
-2014-08-14 13:00:00,12725.0
-2014-08-14 14:00:00,12882.0
-2014-08-14 15:00:00,13131.0
-2014-08-14 16:00:00,13241.0
-2014-08-14 17:00:00,13346.0
-2014-08-14 18:00:00,13268.0
-2014-08-14 19:00:00,12921.0
-2014-08-14 20:00:00,12295.0
-2014-08-14 21:00:00,11823.0
-2014-08-14 22:00:00,11974.0
-2014-08-14 23:00:00,11482.0
-2014-08-15 00:00:00,10679.0
-2014-08-13 01:00:00,9940.0
-2014-08-13 02:00:00,9318.0
-2014-08-13 03:00:00,8928.0
-2014-08-13 04:00:00,8639.0
-2014-08-13 05:00:00,8506.0
-2014-08-13 06:00:00,8640.0
-2014-08-13 07:00:00,9137.0
-2014-08-13 08:00:00,9791.0
-2014-08-13 09:00:00,10672.0
-2014-08-13 10:00:00,11393.0
-2014-08-13 11:00:00,11902.0
-2014-08-13 12:00:00,12414.0
-2014-08-13 13:00:00,12916.0
-2014-08-13 14:00:00,13359.0
-2014-08-13 15:00:00,13852.0
-2014-08-13 16:00:00,14102.0
-2014-08-13 17:00:00,14218.0
-2014-08-13 18:00:00,14194.0
-2014-08-13 19:00:00,13953.0
-2014-08-13 20:00:00,13423.0
-2014-08-13 21:00:00,12984.0
-2014-08-13 22:00:00,13056.0
-2014-08-13 23:00:00,12556.0
-2014-08-14 00:00:00,11559.0
-2014-08-12 01:00:00,11747.0
-2014-08-12 02:00:00,10829.0
-2014-08-12 03:00:00,10246.0
-2014-08-12 04:00:00,9858.0
-2014-08-12 05:00:00,9705.0
-2014-08-12 06:00:00,9756.0
-2014-08-12 07:00:00,10332.0
-2014-08-12 08:00:00,11105.0
-2014-08-12 09:00:00,11622.0
-2014-08-12 10:00:00,11949.0
-2014-08-12 11:00:00,12121.0
-2014-08-12 12:00:00,12271.0
-2014-08-12 13:00:00,12268.0
-2014-08-12 14:00:00,12259.0
-2014-08-12 15:00:00,12270.0
-2014-08-12 16:00:00,12158.0
-2014-08-12 17:00:00,12027.0
-2014-08-12 18:00:00,11948.0
-2014-08-12 19:00:00,11792.0
-2014-08-12 20:00:00,11627.0
-2014-08-12 21:00:00,11564.0
-2014-08-12 22:00:00,11869.0
-2014-08-12 23:00:00,11485.0
-2014-08-13 00:00:00,10753.0
-2014-08-11 01:00:00,11075.0
-2014-08-11 02:00:00,10450.0
-2014-08-11 03:00:00,9964.0
-2014-08-11 04:00:00,9685.0
-2014-08-11 05:00:00,9605.0
-2014-08-11 06:00:00,9864.0
-2014-08-11 07:00:00,10580.0
-2014-08-11 08:00:00,11469.0
-2014-08-11 09:00:00,12261.0
-2014-08-11 10:00:00,12899.0
-2014-08-11 11:00:00,13523.0
-2014-08-11 12:00:00,14158.0
-2014-08-11 13:00:00,14656.0
-2014-08-11 14:00:00,15064.0
-2014-08-11 15:00:00,15404.0
-2014-08-11 16:00:00,15733.0
-2014-08-11 17:00:00,16099.0
-2014-08-11 18:00:00,16294.0
-2014-08-11 19:00:00,16110.0
-2014-08-11 20:00:00,15398.0
-2014-08-11 21:00:00,14855.0
-2014-08-11 22:00:00,14771.0
-2014-08-11 23:00:00,14110.0
-2014-08-12 00:00:00,12966.0
-2014-08-10 01:00:00,10750.0
-2014-08-10 02:00:00,10139.0
-2014-08-10 03:00:00,9669.0
-2014-08-10 04:00:00,9312.0
-2014-08-10 05:00:00,9140.0
-2014-08-10 06:00:00,8975.0
-2014-08-10 07:00:00,8933.0
-2014-08-10 08:00:00,8860.0
-2014-08-10 09:00:00,9180.0
-2014-08-10 10:00:00,9910.0
-2014-08-10 11:00:00,10818.0
-2014-08-10 12:00:00,11605.0
-2014-08-10 13:00:00,12250.0
-2014-08-10 14:00:00,12741.0
-2014-08-10 15:00:00,13129.0
-2014-08-10 16:00:00,13340.0
-2014-08-10 17:00:00,13368.0
-2014-08-10 18:00:00,13287.0
-2014-08-10 19:00:00,13053.0
-2014-08-10 20:00:00,12754.0
-2014-08-10 21:00:00,12650.0
-2014-08-10 22:00:00,12889.0
-2014-08-10 23:00:00,12591.0
-2014-08-11 00:00:00,11903.0
-2014-08-09 01:00:00,11412.0
-2014-08-09 02:00:00,10628.0
-2014-08-09 03:00:00,10073.0
-2014-08-09 04:00:00,9579.0
-2014-08-09 05:00:00,9369.0
-2014-08-09 06:00:00,9209.0
-2014-08-09 07:00:00,9309.0
-2014-08-09 08:00:00,9396.0
-2014-08-09 09:00:00,10061.0
-2014-08-09 10:00:00,10971.0
-2014-08-09 11:00:00,11833.0
-2014-08-09 12:00:00,12612.0
-2014-08-09 13:00:00,13133.0
-2014-08-09 14:00:00,13450.0
-2014-08-09 15:00:00,13556.0
-2014-08-09 16:00:00,13699.0
-2014-08-09 17:00:00,13801.0
-2014-08-09 18:00:00,13852.0
-2014-08-09 19:00:00,13574.0
-2014-08-09 20:00:00,13116.0
-2014-08-09 21:00:00,12494.0
-2014-08-09 22:00:00,12533.0
-2014-08-09 23:00:00,12182.0
-2014-08-10 00:00:00,11475.0
-2014-08-08 01:00:00,11238.0
-2014-08-08 02:00:00,10441.0
-2014-08-08 03:00:00,9877.0
-2014-08-08 04:00:00,9514.0
-2014-08-08 05:00:00,9348.0
-2014-08-08 06:00:00,9456.0
-2014-08-08 07:00:00,10033.0
-2014-08-08 08:00:00,10803.0
-2014-08-08 09:00:00,11680.0
-2014-08-08 10:00:00,12512.0
-2014-08-08 11:00:00,13127.0
-2014-08-08 12:00:00,13728.0
-2014-08-08 13:00:00,14269.0
-2014-08-08 14:00:00,14679.0
-2014-08-08 15:00:00,15125.0
-2014-08-08 16:00:00,15441.0
-2014-08-08 17:00:00,15620.0
-2014-08-08 18:00:00,15541.0
-2014-08-08 19:00:00,15140.0
-2014-08-08 20:00:00,14405.0
-2014-08-08 21:00:00,13730.0
-2014-08-08 22:00:00,13684.0
-2014-08-08 23:00:00,13242.0
-2014-08-09 00:00:00,12376.0
-2014-08-07 01:00:00,10829.0
-2014-08-07 02:00:00,10056.0
-2014-08-07 03:00:00,9556.0
-2014-08-07 04:00:00,9244.0
-2014-08-07 05:00:00,9116.0
-2014-08-07 06:00:00,9273.0
-2014-08-07 07:00:00,9809.0
-2014-08-07 08:00:00,10517.0
-2014-08-07 09:00:00,11405.0
-2014-08-07 10:00:00,12199.0
-2014-08-07 11:00:00,12689.0
-2014-08-07 12:00:00,13367.0
-2014-08-07 13:00:00,13963.0
-2014-08-07 14:00:00,14376.0
-2014-08-07 15:00:00,14771.0
-2014-08-07 16:00:00,15120.0
-2014-08-07 17:00:00,15303.0
-2014-08-07 18:00:00,15256.0
-2014-08-07 19:00:00,15019.0
-2014-08-07 20:00:00,14427.0
-2014-08-07 21:00:00,13782.0
-2014-08-07 22:00:00,13697.0
-2014-08-07 23:00:00,13227.0
-2014-08-08 00:00:00,12237.0
-2014-08-06 01:00:00,11275.0
-2014-08-06 02:00:00,10447.0
-2014-08-06 03:00:00,9855.0
-2014-08-06 04:00:00,9495.0
-2014-08-06 05:00:00,9272.0
-2014-08-06 06:00:00,9402.0
-2014-08-06 07:00:00,9909.0
-2014-08-06 08:00:00,10615.0
-2014-08-06 09:00:00,11492.0
-2014-08-06 10:00:00,12274.0
-2014-08-06 11:00:00,12951.0
-2014-08-06 12:00:00,13687.0
-2014-08-06 13:00:00,14220.0
-2014-08-06 14:00:00,14676.0
-2014-08-06 15:00:00,15083.0
-2014-08-06 16:00:00,15291.0
-2014-08-06 17:00:00,15319.0
-2014-08-06 18:00:00,15059.0
-2014-08-06 19:00:00,14615.0
-2014-08-06 20:00:00,13819.0
-2014-08-06 21:00:00,13313.0
-2014-08-06 22:00:00,13317.0
-2014-08-06 23:00:00,12830.0
-2014-08-07 00:00:00,11849.0
-2014-08-05 01:00:00,11769.0
-2014-08-05 02:00:00,10900.0
-2014-08-05 03:00:00,10367.0
-2014-08-05 04:00:00,9957.0
-2014-08-05 05:00:00,9785.0
-2014-08-05 06:00:00,9904.0
-2014-08-05 07:00:00,10532.0
-2014-08-05 08:00:00,11322.0
-2014-08-05 09:00:00,12188.0
-2014-08-05 10:00:00,12788.0
-2014-08-05 11:00:00,13263.0
-2014-08-05 12:00:00,13744.0
-2014-08-05 13:00:00,14293.0
-2014-08-05 14:00:00,14826.0
-2014-08-05 15:00:00,15327.0
-2014-08-05 16:00:00,15689.0
-2014-08-05 17:00:00,15941.0
-2014-08-05 18:00:00,15913.0
-2014-08-05 19:00:00,15525.0
-2014-08-05 20:00:00,14845.0
-2014-08-05 21:00:00,14169.0
-2014-08-05 22:00:00,14052.0
-2014-08-05 23:00:00,13490.0
-2014-08-06 00:00:00,12423.0
-2014-08-04 01:00:00,11446.0
-2014-08-04 02:00:00,10595.0
-2014-08-04 03:00:00,10063.0
-2014-08-04 04:00:00,9710.0
-2014-08-04 05:00:00,9567.0
-2014-08-04 06:00:00,9703.0
-2014-08-04 07:00:00,10265.0
-2014-08-04 08:00:00,11051.0
-2014-08-04 09:00:00,12122.0
-2014-08-04 10:00:00,13015.0
-2014-08-04 11:00:00,13814.0
-2014-08-04 12:00:00,14774.0
-2014-08-04 13:00:00,15598.0
-2014-08-04 14:00:00,16237.0
-2014-08-04 15:00:00,16736.0
-2014-08-04 16:00:00,16994.0
-2014-08-04 17:00:00,17026.0
-2014-08-04 18:00:00,16792.0
-2014-08-04 19:00:00,16194.0
-2014-08-04 20:00:00,15418.0
-2014-08-04 21:00:00,14893.0
-2014-08-04 22:00:00,14698.0
-2014-08-04 23:00:00,14005.0
-2014-08-05 00:00:00,12876.0
-2014-08-03 01:00:00,10815.0
-2014-08-03 02:00:00,10007.0
-2014-08-03 03:00:00,9494.0
-2014-08-03 04:00:00,9056.0
-2014-08-03 05:00:00,8811.0
-2014-08-03 06:00:00,8640.0
-2014-08-03 07:00:00,8620.0
-2014-08-03 08:00:00,8495.0
-2014-08-03 09:00:00,9023.0
-2014-08-03 10:00:00,9891.0
-2014-08-03 11:00:00,10949.0
-2014-08-03 12:00:00,12014.0
-2014-08-03 13:00:00,12856.0
-2014-08-03 14:00:00,13474.0
-2014-08-03 15:00:00,13880.0
-2014-08-03 16:00:00,14206.0
-2014-08-03 17:00:00,14431.0
-2014-08-03 18:00:00,14589.0
-2014-08-03 19:00:00,14549.0
-2014-08-03 20:00:00,14256.0
-2014-08-03 21:00:00,13793.0
-2014-08-03 22:00:00,13781.0
-2014-08-03 23:00:00,13365.0
-2014-08-04 00:00:00,12437.0
-2014-08-02 01:00:00,10768.0
-2014-08-02 02:00:00,9992.0
-2014-08-02 03:00:00,9445.0
-2014-08-02 04:00:00,9063.0
-2014-08-02 05:00:00,8841.0
-2014-08-02 06:00:00,8768.0
-2014-08-02 07:00:00,8892.0
-2014-08-02 08:00:00,8964.0
-2014-08-02 09:00:00,9590.0
-2014-08-02 10:00:00,10328.0
-2014-08-02 11:00:00,11125.0
-2014-08-02 12:00:00,11786.0
-2014-08-02 13:00:00,12370.0
-2014-08-02 14:00:00,12766.0
-2014-08-02 15:00:00,13204.0
-2014-08-02 16:00:00,13467.0
-2014-08-02 17:00:00,13926.0
-2014-08-02 18:00:00,14174.0
-2014-08-02 19:00:00,14059.0
-2014-08-02 20:00:00,13645.0
-2014-08-02 21:00:00,12994.0
-2014-08-02 22:00:00,12790.0
-2014-08-02 23:00:00,12447.0
-2014-08-03 00:00:00,11624.0
-2014-08-01 01:00:00,11496.0
-2014-08-01 02:00:00,10634.0
-2014-08-01 03:00:00,10005.0
-2014-08-01 04:00:00,9620.0
-2014-08-01 05:00:00,9385.0
-2014-08-01 06:00:00,9439.0
-2014-08-01 07:00:00,9933.0
-2014-08-01 08:00:00,10578.0
-2014-08-01 09:00:00,11538.0
-2014-08-01 10:00:00,12335.0
-2014-08-01 11:00:00,13022.0
-2014-08-01 12:00:00,13875.0
-2014-08-01 13:00:00,14529.0
-2014-08-01 14:00:00,14889.0
-2014-08-01 15:00:00,15152.0
-2014-08-01 16:00:00,15230.0
-2014-08-01 17:00:00,15125.0
-2014-08-01 18:00:00,14836.0
-2014-08-01 19:00:00,14333.0
-2014-08-01 20:00:00,13732.0
-2014-08-01 21:00:00,13188.0
-2014-08-01 22:00:00,13035.0
-2014-08-01 23:00:00,12647.0
-2014-08-02 00:00:00,11696.0
-2014-07-31 01:00:00,10583.0
-2014-07-31 02:00:00,9832.0
-2014-07-31 03:00:00,9344.0
-2014-07-31 04:00:00,9014.0
-2014-07-31 05:00:00,8858.0
-2014-07-31 06:00:00,8988.0
-2014-07-31 07:00:00,9508.0
-2014-07-31 08:00:00,10150.0
-2014-07-31 09:00:00,10983.0
-2014-07-31 10:00:00,11729.0
-2014-07-31 11:00:00,12428.0
-2014-07-31 12:00:00,13149.0
-2014-07-31 13:00:00,13778.0
-2014-07-31 14:00:00,14339.0
-2014-07-31 15:00:00,14828.0
-2014-07-31 16:00:00,15095.0
-2014-07-31 17:00:00,15283.0
-2014-07-31 18:00:00,15322.0
-2014-07-31 19:00:00,15141.0
-2014-07-31 20:00:00,14632.0
-2014-07-31 21:00:00,14087.0
-2014-07-31 22:00:00,14048.0
-2014-07-31 23:00:00,13641.0
-2014-08-01 00:00:00,12625.0
-2014-07-30 01:00:00,10469.0
-2014-07-30 02:00:00,9747.0
-2014-07-30 03:00:00,9251.0
-2014-07-30 04:00:00,8927.0
-2014-07-30 05:00:00,8768.0
-2014-07-30 06:00:00,8890.0
-2014-07-30 07:00:00,9402.0
-2014-07-30 08:00:00,10079.0
-2014-07-30 09:00:00,10996.0
-2014-07-30 10:00:00,11714.0
-2014-07-30 11:00:00,12310.0
-2014-07-30 12:00:00,12905.0
-2014-07-30 13:00:00,13311.0
-2014-07-30 14:00:00,13677.0
-2014-07-30 15:00:00,14027.0
-2014-07-30 16:00:00,14231.0
-2014-07-30 17:00:00,14248.0
-2014-07-30 18:00:00,14143.0
-2014-07-30 19:00:00,13892.0
-2014-07-30 20:00:00,13347.0
-2014-07-30 21:00:00,12870.0
-2014-07-30 22:00:00,12817.0
-2014-07-30 23:00:00,12488.0
-2014-07-31 00:00:00,11575.0
-2014-07-29 01:00:00,9942.0
-2014-07-29 02:00:00,9331.0
-2014-07-29 03:00:00,8965.0
-2014-07-29 04:00:00,8710.0
-2014-07-29 05:00:00,8590.0
-2014-07-29 06:00:00,8759.0
-2014-07-29 07:00:00,9254.0
-2014-07-29 08:00:00,9910.0
-2014-07-29 09:00:00,10734.0
-2014-07-29 10:00:00,11450.0
-2014-07-29 11:00:00,11983.0
-2014-07-29 12:00:00,12585.0
-2014-07-29 13:00:00,12990.0
-2014-07-29 14:00:00,13356.0
-2014-07-29 15:00:00,13663.0
-2014-07-29 16:00:00,13806.0
-2014-07-29 17:00:00,13764.0
-2014-07-29 18:00:00,13644.0
-2014-07-29 19:00:00,13443.0
-2014-07-29 20:00:00,13057.0
-2014-07-29 21:00:00,12684.0
-2014-07-29 22:00:00,12783.0
-2014-07-29 23:00:00,12479.0
-2014-07-30 00:00:00,11525.0
-2014-07-28 01:00:00,10503.0
-2014-07-28 02:00:00,9798.0
-2014-07-28 03:00:00,9320.0
-2014-07-28 04:00:00,8949.0
-2014-07-28 05:00:00,8811.0
-2014-07-28 06:00:00,8945.0
-2014-07-28 07:00:00,9449.0
-2014-07-28 08:00:00,10015.0
-2014-07-28 09:00:00,10915.0
-2014-07-28 10:00:00,11473.0
-2014-07-28 11:00:00,11899.0
-2014-07-28 12:00:00,12245.0
-2014-07-28 13:00:00,12438.0
-2014-07-28 14:00:00,12545.0
-2014-07-28 15:00:00,12657.0
-2014-07-28 16:00:00,12716.0
-2014-07-28 17:00:00,12675.0
-2014-07-28 18:00:00,12567.0
-2014-07-28 19:00:00,12382.0
-2014-07-28 20:00:00,11997.0
-2014-07-28 21:00:00,11674.0
-2014-07-28 22:00:00,11840.0
-2014-07-28 23:00:00,11568.0
-2014-07-29 00:00:00,10830.0
-2014-07-27 01:00:00,12092.0
-2014-07-27 02:00:00,11332.0
-2014-07-27 03:00:00,10611.0
-2014-07-27 04:00:00,10141.0
-2014-07-27 05:00:00,9813.0
-2014-07-27 06:00:00,9680.0
-2014-07-27 07:00:00,9550.0
-2014-07-27 08:00:00,9578.0
-2014-07-27 09:00:00,10202.0
-2014-07-27 10:00:00,11360.0
-2014-07-27 11:00:00,12611.0
-2014-07-27 12:00:00,13779.0
-2014-07-27 13:00:00,14492.0
-2014-07-27 14:00:00,14763.0
-2014-07-27 15:00:00,14878.0
-2014-07-27 16:00:00,14808.0
-2014-07-27 17:00:00,14612.0
-2014-07-27 18:00:00,14283.0
-2014-07-27 19:00:00,13836.0
-2014-07-27 20:00:00,13284.0
-2014-07-27 21:00:00,12600.0
-2014-07-27 22:00:00,12421.0
-2014-07-27 23:00:00,12196.0
-2014-07-28 00:00:00,11434.0
-2014-07-26 01:00:00,10646.0
-2014-07-26 02:00:00,9925.0
-2014-07-26 03:00:00,9513.0
-2014-07-26 04:00:00,9176.0
-2014-07-26 05:00:00,9022.0
-2014-07-26 06:00:00,8978.0
-2014-07-26 07:00:00,9143.0
-2014-07-26 08:00:00,9339.0
-2014-07-26 09:00:00,9876.0
-2014-07-26 10:00:00,10642.0
-2014-07-26 11:00:00,11456.0
-2014-07-26 12:00:00,12311.0
-2014-07-26 13:00:00,12803.0
-2014-07-26 14:00:00,13344.0
-2014-07-26 15:00:00,13839.0
-2014-07-26 16:00:00,14116.0
-2014-07-26 17:00:00,14183.0
-2014-07-26 18:00:00,14274.0
-2014-07-26 19:00:00,14208.0
-2014-07-26 20:00:00,13946.0
-2014-07-26 21:00:00,13672.0
-2014-07-26 22:00:00,13814.0
-2014-07-26 23:00:00,13657.0
-2014-07-27 00:00:00,12997.0
-2014-07-25 01:00:00,10203.0
-2014-07-25 02:00:00,9576.0
-2014-07-25 03:00:00,9114.0
-2014-07-25 04:00:00,8813.0
-2014-07-25 05:00:00,8679.0
-2014-07-25 06:00:00,8802.0
-2014-07-25 07:00:00,9165.0
-2014-07-25 08:00:00,9839.0
-2014-07-25 09:00:00,10634.0
-2014-07-25 10:00:00,11260.0
-2014-07-25 11:00:00,11745.0
-2014-07-25 12:00:00,12050.0
-2014-07-25 13:00:00,12286.0
-2014-07-25 14:00:00,12441.0
-2014-07-25 15:00:00,12560.0
-2014-07-25 16:00:00,12664.0
-2014-07-25 17:00:00,12581.0
-2014-07-25 18:00:00,12491.0
-2014-07-25 19:00:00,12339.0
-2014-07-25 20:00:00,12248.0
-2014-07-25 21:00:00,11967.0
-2014-07-25 22:00:00,12126.0
-2014-07-25 23:00:00,12062.0
-2014-07-26 00:00:00,11404.0
-2014-07-24 01:00:00,10144.0
-2014-07-24 02:00:00,9509.0
-2014-07-24 03:00:00,9093.0
-2014-07-24 04:00:00,8814.0
-2014-07-24 05:00:00,8695.0
-2014-07-24 06:00:00,8807.0
-2014-07-24 07:00:00,9222.0
-2014-07-24 08:00:00,9920.0
-2014-07-24 09:00:00,10882.0
-2014-07-24 10:00:00,11608.0
-2014-07-24 11:00:00,12056.0
-2014-07-24 12:00:00,12468.0
-2014-07-24 13:00:00,12684.0
-2014-07-24 14:00:00,12911.0
-2014-07-24 15:00:00,13160.0
-2014-07-24 16:00:00,13318.0
-2014-07-24 17:00:00,13415.0
-2014-07-24 18:00:00,13463.0
-2014-07-24 19:00:00,13370.0
-2014-07-24 20:00:00,12910.0
-2014-07-24 21:00:00,12303.0
-2014-07-24 22:00:00,12259.0
-2014-07-24 23:00:00,11950.0
-2014-07-25 00:00:00,11116.0
-2014-07-23 01:00:00,15069.0
-2014-07-23 02:00:00,13577.0
-2014-07-23 03:00:00,12397.0
-2014-07-23 04:00:00,11391.0
-2014-07-23 05:00:00,10750.0
-2014-07-23 06:00:00,10575.0
-2014-07-23 07:00:00,10801.0
-2014-07-23 08:00:00,11342.0
-2014-07-23 09:00:00,12199.0
-2014-07-23 10:00:00,12875.0
-2014-07-23 11:00:00,13268.0
-2014-07-23 12:00:00,13629.0
-2014-07-23 13:00:00,13821.0
-2014-07-23 14:00:00,13899.0
-2014-07-23 15:00:00,14022.0
-2014-07-23 16:00:00,13998.0
-2014-07-23 17:00:00,14011.0
-2014-07-23 18:00:00,13915.0
-2014-07-23 19:00:00,13583.0
-2014-07-23 20:00:00,12919.0
-2014-07-23 21:00:00,12291.0
-2014-07-23 22:00:00,12120.0
-2014-07-23 23:00:00,11869.0
-2014-07-24 00:00:00,11051.0
-2014-07-22 01:00:00,13296.0
-2014-07-22 02:00:00,12233.0
-2014-07-22 03:00:00,11414.0
-2014-07-22 04:00:00,10850.0
-2014-07-22 05:00:00,10587.0
-2014-07-22 06:00:00,10628.0
-2014-07-22 07:00:00,11094.0
-2014-07-22 08:00:00,11921.0
-2014-07-22 09:00:00,13166.0
-2014-07-22 10:00:00,14300.0
-2014-07-22 11:00:00,15334.0
-2014-07-22 12:00:00,16404.0
-2014-07-22 13:00:00,17276.0
-2014-07-22 14:00:00,18019.0
-2014-07-22 15:00:00,18783.0
-2014-07-22 16:00:00,19359.0
-2014-07-22 17:00:00,19721.0
-2014-07-22 18:00:00,19673.0
-2014-07-22 19:00:00,19497.0
-2014-07-22 20:00:00,19145.0
-2014-07-22 21:00:00,18658.0
-2014-07-22 22:00:00,18486.0
-2014-07-22 23:00:00,17952.0
-2014-07-23 00:00:00,16665.0
-2014-07-21 01:00:00,11131.0
-2014-07-21 02:00:00,10343.0
-2014-07-21 03:00:00,9801.0
-2014-07-21 04:00:00,9464.0
-2014-07-21 05:00:00,9302.0
-2014-07-21 06:00:00,9508.0
-2014-07-21 07:00:00,10063.0
-2014-07-21 08:00:00,10948.0
-2014-07-21 09:00:00,12055.0
-2014-07-21 10:00:00,13068.0
-2014-07-21 11:00:00,13990.0
-2014-07-21 12:00:00,14857.0
-2014-07-21 13:00:00,15560.0
-2014-07-21 14:00:00,16254.0
-2014-07-21 15:00:00,16937.0
-2014-07-21 16:00:00,17468.0
-2014-07-21 17:00:00,17843.0
-2014-07-21 18:00:00,18066.0
-2014-07-21 19:00:00,18017.0
-2014-07-21 20:00:00,17570.0
-2014-07-21 21:00:00,16862.0
-2014-07-21 22:00:00,16426.0
-2014-07-21 23:00:00,15932.0
-2014-07-22 00:00:00,14677.0
-2014-07-20 01:00:00,10438.0
-2014-07-20 02:00:00,9711.0
-2014-07-20 03:00:00,9229.0
-2014-07-20 04:00:00,8842.0
-2014-07-20 05:00:00,8621.0
-2014-07-20 06:00:00,8516.0
-2014-07-20 07:00:00,8412.0
-2014-07-20 08:00:00,8342.0
-2014-07-20 09:00:00,8781.0
-2014-07-20 10:00:00,9500.0
-2014-07-20 11:00:00,10271.0
-2014-07-20 12:00:00,11134.0
-2014-07-20 13:00:00,11822.0
-2014-07-20 14:00:00,12308.0
-2014-07-20 15:00:00,12764.0
-2014-07-20 16:00:00,13072.0
-2014-07-20 17:00:00,13398.0
-2014-07-20 18:00:00,13611.0
-2014-07-20 19:00:00,13690.0
-2014-07-20 20:00:00,13478.0
-2014-07-20 21:00:00,13060.0
-2014-07-20 22:00:00,12968.0
-2014-07-20 23:00:00,12869.0
-2014-07-21 00:00:00,12082.0
-2014-07-19 01:00:00,10712.0
-2014-07-19 02:00:00,9964.0
-2014-07-19 03:00:00,9405.0
-2014-07-19 04:00:00,9025.0
-2014-07-19 05:00:00,8792.0
-2014-07-19 06:00:00,8715.0
-2014-07-19 07:00:00,8739.0
-2014-07-19 08:00:00,8854.0
-2014-07-19 09:00:00,9500.0
-2014-07-19 10:00:00,10325.0
-2014-07-19 11:00:00,11112.0
-2014-07-19 12:00:00,11732.0
-2014-07-19 13:00:00,12205.0
-2014-07-19 14:00:00,12469.0
-2014-07-19 15:00:00,12619.0
-2014-07-19 16:00:00,12777.0
-2014-07-19 17:00:00,12961.0
-2014-07-19 18:00:00,13023.0
-2014-07-19 19:00:00,12908.0
-2014-07-19 20:00:00,12484.0
-2014-07-19 21:00:00,12080.0
-2014-07-19 22:00:00,12004.0
-2014-07-19 23:00:00,11867.0
-2014-07-20 00:00:00,11195.0
-2014-07-18 01:00:00,10347.0
-2014-07-18 02:00:00,9684.0
-2014-07-18 03:00:00,9207.0
-2014-07-18 04:00:00,8951.0
-2014-07-18 05:00:00,8811.0
-2014-07-18 06:00:00,8936.0
-2014-07-18 07:00:00,9341.0
-2014-07-18 08:00:00,10010.0
-2014-07-18 09:00:00,10908.0
-2014-07-18 10:00:00,11680.0
-2014-07-18 11:00:00,12362.0
-2014-07-18 12:00:00,12968.0
-2014-07-18 13:00:00,13342.0
-2014-07-18 14:00:00,13601.0
-2014-07-18 15:00:00,13904.0
-2014-07-18 16:00:00,14080.0
-2014-07-18 17:00:00,14165.0
-2014-07-18 18:00:00,14128.0
-2014-07-18 19:00:00,13908.0
-2014-07-18 20:00:00,13387.0
-2014-07-18 21:00:00,12860.0
-2014-07-18 22:00:00,12703.0
-2014-07-18 23:00:00,12435.0
-2014-07-19 00:00:00,11623.0
-2014-07-17 01:00:00,9830.0
-2014-07-17 02:00:00,9185.0
-2014-07-17 03:00:00,8773.0
-2014-07-17 04:00:00,8499.0
-2014-07-17 05:00:00,8420.0
-2014-07-17 06:00:00,8538.0
-2014-07-17 07:00:00,8904.0
-2014-07-17 08:00:00,9671.0
-2014-07-17 09:00:00,10532.0
-2014-07-17 10:00:00,11227.0
-2014-07-17 11:00:00,11742.0
-2014-07-17 12:00:00,12205.0
-2014-07-17 13:00:00,12516.0
-2014-07-17 14:00:00,12765.0
-2014-07-17 15:00:00,13053.0
-2014-07-17 16:00:00,13151.0
-2014-07-17 17:00:00,13174.0
-2014-07-17 18:00:00,13221.0
-2014-07-17 19:00:00,13121.0
-2014-07-17 20:00:00,12787.0
-2014-07-17 21:00:00,12368.0
-2014-07-17 22:00:00,12398.0
-2014-07-17 23:00:00,12149.0
-2014-07-18 00:00:00,11299.0
-2014-07-16 01:00:00,9729.0
-2014-07-16 02:00:00,9163.0
-2014-07-16 03:00:00,8799.0
-2014-07-16 04:00:00,8545.0
-2014-07-16 05:00:00,8474.0
-2014-07-16 06:00:00,8602.0
-2014-07-16 07:00:00,8994.0
-2014-07-16 08:00:00,9692.0
-2014-07-16 09:00:00,10520.0
-2014-07-16 10:00:00,11184.0
-2014-07-16 11:00:00,11626.0
-2014-07-16 12:00:00,11991.0
-2014-07-16 13:00:00,12152.0
-2014-07-16 14:00:00,12258.0
-2014-07-16 15:00:00,12420.0
-2014-07-16 16:00:00,12438.0
-2014-07-16 17:00:00,12444.0
-2014-07-16 18:00:00,12412.0
-2014-07-16 19:00:00,12274.0
-2014-07-16 20:00:00,11896.0
-2014-07-16 21:00:00,11571.0
-2014-07-16 22:00:00,11598.0
-2014-07-16 23:00:00,11479.0
-2014-07-17 00:00:00,10710.0
-2014-07-15 01:00:00,10556.0
-2014-07-15 02:00:00,9790.0
-2014-07-15 03:00:00,9274.0
-2014-07-15 04:00:00,8909.0
-2014-07-15 05:00:00,8760.0
-2014-07-15 06:00:00,8868.0
-2014-07-15 07:00:00,9163.0
-2014-07-15 08:00:00,9808.0
-2014-07-15 09:00:00,10631.0
-2014-07-15 10:00:00,11202.0
-2014-07-15 11:00:00,11505.0
-2014-07-15 12:00:00,11842.0
-2014-07-15 13:00:00,12023.0
-2014-07-15 14:00:00,12136.0
-2014-07-15 15:00:00,12261.0
-2014-07-15 16:00:00,12263.0
-2014-07-15 17:00:00,12163.0
-2014-07-15 18:00:00,12061.0
-2014-07-15 19:00:00,11834.0
-2014-07-15 20:00:00,11491.0
-2014-07-15 21:00:00,11283.0
-2014-07-15 22:00:00,11439.0
-2014-07-15 23:00:00,11273.0
-2014-07-16 00:00:00,10569.0
-2014-07-14 01:00:00,11857.0
-2014-07-14 02:00:00,10809.0
-2014-07-14 03:00:00,10144.0
-2014-07-14 04:00:00,9683.0
-2014-07-14 05:00:00,9460.0
-2014-07-14 06:00:00,9552.0
-2014-07-14 07:00:00,10015.0
-2014-07-14 08:00:00,10828.0
-2014-07-14 09:00:00,11792.0
-2014-07-14 10:00:00,12437.0
-2014-07-14 11:00:00,13113.0
-2014-07-14 12:00:00,13622.0
-2014-07-14 13:00:00,14005.0
-2014-07-14 14:00:00,14268.0
-2014-07-14 15:00:00,14769.0
-2014-07-14 16:00:00,15097.0
-2014-07-14 17:00:00,15214.0
-2014-07-14 18:00:00,15161.0
-2014-07-14 19:00:00,14794.0
-2014-07-14 20:00:00,14030.0
-2014-07-14 21:00:00,13298.0
-2014-07-14 22:00:00,12933.0
-2014-07-14 23:00:00,12589.0
-2014-07-15 00:00:00,11572.0
-2014-07-13 01:00:00,12554.0
-2014-07-13 02:00:00,11423.0
-2014-07-13 03:00:00,10694.0
-2014-07-13 04:00:00,10151.0
-2014-07-13 05:00:00,9925.0
-2014-07-13 06:00:00,9687.0
-2014-07-13 07:00:00,9447.0
-2014-07-13 08:00:00,9401.0
-2014-07-13 09:00:00,9827.0
-2014-07-13 10:00:00,10406.0
-2014-07-13 11:00:00,11206.0
-2014-07-13 12:00:00,12113.0
-2014-07-13 13:00:00,12969.0
-2014-07-13 14:00:00,13587.0
-2014-07-13 15:00:00,14091.0
-2014-07-13 16:00:00,14573.0
-2014-07-13 17:00:00,15070.0
-2014-07-13 18:00:00,15316.0
-2014-07-13 19:00:00,15360.0
-2014-07-13 20:00:00,14974.0
-2014-07-13 21:00:00,14546.0
-2014-07-13 22:00:00,14413.0
-2014-07-13 23:00:00,14080.0
-2014-07-14 00:00:00,13095.0
-2014-07-12 01:00:00,11549.0
-2014-07-12 02:00:00,10810.0
-2014-07-12 03:00:00,10313.0
-2014-07-12 04:00:00,9945.0
-2014-07-12 05:00:00,9748.0
-2014-07-12 06:00:00,9691.0
-2014-07-12 07:00:00,9802.0
-2014-07-12 08:00:00,10061.0
-2014-07-12 09:00:00,10635.0
-2014-07-12 10:00:00,11381.0
-2014-07-12 11:00:00,12020.0
-2014-07-12 12:00:00,12426.0
-2014-07-12 13:00:00,12559.0
-2014-07-12 14:00:00,12910.0
-2014-07-12 15:00:00,13163.0
-2014-07-12 16:00:00,13258.0
-2014-07-12 17:00:00,13418.0
-2014-07-12 18:00:00,13639.0
-2014-07-12 19:00:00,13691.0
-2014-07-12 20:00:00,13563.0
-2014-07-12 21:00:00,13588.0
-2014-07-12 22:00:00,13837.0
-2014-07-12 23:00:00,13835.0
-2014-07-13 00:00:00,13386.0
-2014-07-11 01:00:00,10832.0
-2014-07-11 02:00:00,10051.0
-2014-07-11 03:00:00,9513.0
-2014-07-11 04:00:00,9171.0
-2014-07-11 05:00:00,9036.0
-2014-07-11 06:00:00,9099.0
-2014-07-11 07:00:00,9411.0
-2014-07-11 08:00:00,10215.0
-2014-07-11 09:00:00,11250.0
-2014-07-11 10:00:00,12159.0
-2014-07-11 11:00:00,12835.0
-2014-07-11 12:00:00,13495.0
-2014-07-11 13:00:00,13963.0
-2014-07-11 14:00:00,14353.0
-2014-07-11 15:00:00,14690.0
-2014-07-11 16:00:00,14712.0
-2014-07-11 17:00:00,14561.0
-2014-07-11 18:00:00,14233.0
-2014-07-11 19:00:00,13764.0
-2014-07-11 20:00:00,13389.0
-2014-07-11 21:00:00,13143.0
-2014-07-11 22:00:00,13262.0
-2014-07-11 23:00:00,13141.0
-2014-07-12 00:00:00,12400.0
-2014-07-10 01:00:00,10858.0
-2014-07-10 02:00:00,10063.0
-2014-07-10 03:00:00,9536.0
-2014-07-10 04:00:00,9155.0
-2014-07-10 05:00:00,9015.0
-2014-07-10 06:00:00,9115.0
-2014-07-10 07:00:00,9455.0
-2014-07-10 08:00:00,10317.0
-2014-07-10 09:00:00,11380.0
-2014-07-10 10:00:00,12183.0
-2014-07-10 11:00:00,12782.0
-2014-07-10 12:00:00,13326.0
-2014-07-10 13:00:00,13760.0
-2014-07-10 14:00:00,14099.0
-2014-07-10 15:00:00,14472.0
-2014-07-10 16:00:00,14715.0
-2014-07-10 17:00:00,14899.0
-2014-07-10 18:00:00,14942.0
-2014-07-10 19:00:00,14729.0
-2014-07-10 20:00:00,14197.0
-2014-07-10 21:00:00,13509.0
-2014-07-10 22:00:00,13172.0
-2014-07-10 23:00:00,12849.0
-2014-07-11 00:00:00,11894.0
-2014-07-09 01:00:00,11685.0
-2014-07-09 02:00:00,10753.0
-2014-07-09 03:00:00,10115.0
-2014-07-09 04:00:00,9698.0
-2014-07-09 05:00:00,9499.0
-2014-07-09 06:00:00,9566.0
-2014-07-09 07:00:00,9884.0
-2014-07-09 08:00:00,10678.0
-2014-07-09 09:00:00,11712.0
-2014-07-09 10:00:00,12561.0
-2014-07-09 11:00:00,13264.0
-2014-07-09 12:00:00,13869.0
-2014-07-09 13:00:00,14179.0
-2014-07-09 14:00:00,14410.0
-2014-07-09 15:00:00,14670.0
-2014-07-09 16:00:00,14839.0
-2014-07-09 17:00:00,14979.0
-2014-07-09 18:00:00,14999.0
-2014-07-09 19:00:00,14817.0
-2014-07-09 20:00:00,14263.0
-2014-07-09 21:00:00,13611.0
-2014-07-09 22:00:00,13184.0
-2014-07-09 23:00:00,12902.0
-2014-07-10 00:00:00,11927.0
-2014-07-08 01:00:00,13452.0
-2014-07-08 02:00:00,12421.0
-2014-07-08 03:00:00,11754.0
-2014-07-08 04:00:00,11227.0
-2014-07-08 05:00:00,11056.0
-2014-07-08 06:00:00,11133.0
-2014-07-08 07:00:00,11666.0
-2014-07-08 08:00:00,12341.0
-2014-07-08 09:00:00,13049.0
-2014-07-08 10:00:00,13820.0
-2014-07-08 11:00:00,14502.0
-2014-07-08 12:00:00,15219.0
-2014-07-08 13:00:00,15735.0
-2014-07-08 14:00:00,16003.0
-2014-07-08 15:00:00,16254.0
-2014-07-08 16:00:00,16413.0
-2014-07-08 17:00:00,16526.0
-2014-07-08 18:00:00,16502.0
-2014-07-08 19:00:00,16261.0
-2014-07-08 20:00:00,15631.0
-2014-07-08 21:00:00,14894.0
-2014-07-08 22:00:00,14349.0
-2014-07-08 23:00:00,13991.0
-2014-07-09 00:00:00,12895.0
-2014-07-07 01:00:00,12938.0
-2014-07-07 02:00:00,12128.0
-2014-07-07 03:00:00,11409.0
-2014-07-07 04:00:00,10815.0
-2014-07-07 05:00:00,10547.0
-2014-07-07 06:00:00,10583.0
-2014-07-07 07:00:00,11105.0
-2014-07-07 08:00:00,12125.0
-2014-07-07 09:00:00,13471.0
-2014-07-07 10:00:00,14494.0
-2014-07-07 11:00:00,15551.0
-2014-07-07 12:00:00,16483.0
-2014-07-07 13:00:00,17187.0
-2014-07-07 14:00:00,17695.0
-2014-07-07 15:00:00,18109.0
-2014-07-07 16:00:00,18342.0
-2014-07-07 17:00:00,18489.0
-2014-07-07 18:00:00,18544.0
-2014-07-07 19:00:00,18431.0
-2014-07-07 20:00:00,17887.0
-2014-07-07 21:00:00,17107.0
-2014-07-07 22:00:00,16563.0
-2014-07-07 23:00:00,16073.0
-2014-07-08 00:00:00,14783.0
-2014-07-06 01:00:00,9832.0
-2014-07-06 02:00:00,9225.0
-2014-07-06 03:00:00,8799.0
-2014-07-06 04:00:00,8490.0
-2014-07-06 05:00:00,8241.0
-2014-07-06 06:00:00,8214.0
-2014-07-06 07:00:00,8025.0
-2014-07-06 08:00:00,8042.0
-2014-07-06 09:00:00,8468.0
-2014-07-06 10:00:00,9002.0
-2014-07-06 11:00:00,9992.0
-2014-07-06 12:00:00,10948.0
-2014-07-06 13:00:00,11953.0
-2014-07-06 14:00:00,12550.0
-2014-07-06 15:00:00,13160.0
-2014-07-06 16:00:00,13943.0
-2014-07-06 17:00:00,14731.0
-2014-07-06 18:00:00,15167.0
-2014-07-06 19:00:00,15224.0
-2014-07-06 20:00:00,15006.0
-2014-07-06 21:00:00,14700.0
-2014-07-06 22:00:00,14598.0
-2014-07-06 23:00:00,14607.0
-2014-07-07 00:00:00,13860.0
-2014-07-05 01:00:00,9356.0
-2014-07-05 02:00:00,8816.0
-2014-07-05 03:00:00,8351.0
-2014-07-05 04:00:00,8067.0
-2014-07-05 05:00:00,7979.0
-2014-07-05 06:00:00,7918.0
-2014-07-05 07:00:00,7918.0
-2014-07-05 08:00:00,8038.0
-2014-07-05 09:00:00,8677.0
-2014-07-05 10:00:00,9373.0
-2014-07-05 11:00:00,10008.0
-2014-07-05 12:00:00,10608.0
-2014-07-05 13:00:00,10916.0
-2014-07-05 14:00:00,11147.0
-2014-07-05 15:00:00,11174.0
-2014-07-05 16:00:00,11240.0
-2014-07-05 17:00:00,11266.0
-2014-07-05 18:00:00,11314.0
-2014-07-05 19:00:00,11164.0
-2014-07-05 20:00:00,10904.0
-2014-07-05 21:00:00,10739.0
-2014-07-05 22:00:00,10938.0
-2014-07-05 23:00:00,10879.0
-2014-07-06 00:00:00,10441.0
-2014-07-04 01:00:00,9654.0
-2014-07-04 02:00:00,8972.0
-2014-07-04 03:00:00,8534.0
-2014-07-04 04:00:00,8232.0
-2014-07-04 05:00:00,8036.0
-2014-07-04 06:00:00,7992.0
-2014-07-04 07:00:00,7861.0
-2014-07-04 08:00:00,7925.0
-2014-07-04 09:00:00,8364.0
-2014-07-04 10:00:00,8906.0
-2014-07-04 11:00:00,9445.0
-2014-07-04 12:00:00,9927.0
-2014-07-04 13:00:00,10311.0
-2014-07-04 14:00:00,10606.0
-2014-07-04 15:00:00,10848.0
-2014-07-04 16:00:00,11040.0
-2014-07-04 17:00:00,11246.0
-2014-07-04 18:00:00,11364.0
-2014-07-04 19:00:00,11334.0
-2014-07-04 20:00:00,11103.0
-2014-07-04 21:00:00,10637.0
-2014-07-04 22:00:00,10262.0
-2014-07-04 23:00:00,10128.0
-2014-07-05 00:00:00,9767.0
-2014-07-03 01:00:00,9634.0
-2014-07-03 02:00:00,9086.0
-2014-07-03 03:00:00,8749.0
-2014-07-03 04:00:00,8523.0
-2014-07-03 05:00:00,8451.0
-2014-07-03 06:00:00,8542.0
-2014-07-03 07:00:00,8861.0
-2014-07-03 08:00:00,9460.0
-2014-07-03 09:00:00,10335.0
-2014-07-03 10:00:00,11057.0
-2014-07-03 11:00:00,11554.0
-2014-07-03 12:00:00,12001.0
-2014-07-03 13:00:00,12241.0
-2014-07-03 14:00:00,12293.0
-2014-07-03 15:00:00,12446.0
-2014-07-03 16:00:00,12493.0
-2014-07-03 17:00:00,12525.0
-2014-07-03 18:00:00,12501.0
-2014-07-03 19:00:00,12375.0
-2014-07-03 20:00:00,11983.0
-2014-07-03 21:00:00,11570.0
-2014-07-03 22:00:00,11321.0
-2014-07-03 23:00:00,11141.0
-2014-07-04 00:00:00,10443.0
-2014-07-02 01:00:00,11802.0
-2014-07-02 02:00:00,10843.0
-2014-07-02 03:00:00,10200.0
-2014-07-02 04:00:00,9682.0
-2014-07-02 05:00:00,9402.0
-2014-07-02 06:00:00,9383.0
-2014-07-02 07:00:00,9656.0
-2014-07-02 08:00:00,10400.0
-2014-07-02 09:00:00,11271.0
-2014-07-02 10:00:00,12007.0
-2014-07-02 11:00:00,12488.0
-2014-07-02 12:00:00,12863.0
-2014-07-02 13:00:00,13020.0
-2014-07-02 14:00:00,12939.0
-2014-07-02 15:00:00,12815.0
-2014-07-02 16:00:00,12486.0
-2014-07-02 17:00:00,12172.0
-2014-07-02 18:00:00,11887.0
-2014-07-02 19:00:00,11632.0
-2014-07-02 20:00:00,11281.0
-2014-07-02 21:00:00,11181.0
-2014-07-02 22:00:00,11346.0
-2014-07-02 23:00:00,11148.0
-2014-07-03 00:00:00,10453.0
-2014-07-01 01:00:00,11331.0
-2014-07-01 02:00:00,10522.0
-2014-07-01 03:00:00,10003.0
-2014-07-01 04:00:00,9670.0
-2014-07-01 05:00:00,9534.0
-2014-07-01 06:00:00,9609.0
-2014-07-01 07:00:00,10092.0
-2014-07-01 08:00:00,10921.0
-2014-07-01 09:00:00,11981.0
-2014-07-01 10:00:00,12967.0
-2014-07-01 11:00:00,13727.0
-2014-07-01 12:00:00,14367.0
-2014-07-01 13:00:00,14815.0
-2014-07-01 14:00:00,15187.0
-2014-07-01 15:00:00,15519.0
-2014-07-01 16:00:00,15584.0
-2014-07-01 17:00:00,15702.0
-2014-07-01 18:00:00,15686.0
-2014-07-01 19:00:00,15486.0
-2014-07-01 20:00:00,15028.0
-2014-07-01 21:00:00,14474.0
-2014-07-01 22:00:00,14115.0
-2014-07-01 23:00:00,13879.0
-2014-07-02 00:00:00,12931.0
-2014-06-30 01:00:00,13495.0
-2014-06-30 02:00:00,12544.0
-2014-06-30 03:00:00,11884.0
-2014-06-30 04:00:00,11405.0
-2014-06-30 05:00:00,11058.0
-2014-06-30 06:00:00,11123.0
-2014-06-30 07:00:00,11655.0
-2014-06-30 08:00:00,12498.0
-2014-06-30 09:00:00,13355.0
-2014-06-30 10:00:00,14256.0
-2014-06-30 11:00:00,15010.0
-2014-06-30 12:00:00,15593.0
-2014-06-30 13:00:00,15958.0
-2014-06-30 14:00:00,16591.0
-2014-06-30 15:00:00,17556.0
-2014-06-30 16:00:00,18422.0
-2014-06-30 17:00:00,18874.0
-2014-06-30 18:00:00,18483.0
-2014-06-30 19:00:00,18012.0
-2014-06-30 20:00:00,17542.0
-2014-06-30 21:00:00,16111.0
-2014-06-30 22:00:00,15059.0
-2014-06-30 23:00:00,14189.0
-2014-07-01 00:00:00,12568.0
-2014-06-29 01:00:00,12791.0
-2014-06-29 02:00:00,11989.0
-2014-06-29 03:00:00,11367.0
-2014-06-29 04:00:00,10897.0
-2014-06-29 05:00:00,10582.0
-2014-06-29 06:00:00,10261.0
-2014-06-29 07:00:00,9871.0
-2014-06-29 08:00:00,9814.0
-2014-06-29 09:00:00,10363.0
-2014-06-29 10:00:00,11095.0
-2014-06-29 11:00:00,12025.0
-2014-06-29 12:00:00,13015.0
-2014-06-29 13:00:00,13869.0
-2014-06-29 14:00:00,14463.0
-2014-06-29 15:00:00,15017.0
-2014-06-29 16:00:00,15447.0
-2014-06-29 17:00:00,15868.0
-2014-06-29 18:00:00,16230.0
-2014-06-29 19:00:00,16378.0
-2014-06-29 20:00:00,16231.0
-2014-06-29 21:00:00,15850.0
-2014-06-29 22:00:00,15497.0
-2014-06-29 23:00:00,15404.0
-2014-06-30 00:00:00,14515.0
-2014-06-28 01:00:00,13192.0
-2014-06-28 02:00:00,12136.0
-2014-06-28 03:00:00,11427.0
-2014-06-28 04:00:00,10780.0
-2014-06-28 05:00:00,10502.0
-2014-06-28 06:00:00,10339.0
-2014-06-28 07:00:00,10355.0
-2014-06-28 08:00:00,10691.0
-2014-06-28 09:00:00,11441.0
-2014-06-28 10:00:00,12491.0
-2014-06-28 11:00:00,13601.0
-2014-06-28 12:00:00,14514.0
-2014-06-28 13:00:00,15379.0
-2014-06-28 14:00:00,15935.0
-2014-06-28 15:00:00,16097.0
-2014-06-28 16:00:00,16357.0
-2014-06-28 17:00:00,16540.0
-2014-06-28 18:00:00,16687.0
-2014-06-28 19:00:00,16505.0
-2014-06-28 20:00:00,15902.0
-2014-06-28 21:00:00,15083.0
-2014-06-28 22:00:00,14614.0
-2014-06-28 23:00:00,14435.0
-2014-06-29 00:00:00,13655.0
-2014-06-27 01:00:00,10649.0
-2014-06-27 02:00:00,9886.0
-2014-06-27 03:00:00,9381.0
-2014-06-27 04:00:00,9125.0
-2014-06-27 05:00:00,8996.0
-2014-06-27 06:00:00,9137.0
-2014-06-27 07:00:00,9538.0
-2014-06-27 08:00:00,10320.0
-2014-06-27 09:00:00,11346.0
-2014-06-27 10:00:00,12345.0
-2014-06-27 11:00:00,13238.0
-2014-06-27 12:00:00,14211.0
-2014-06-27 13:00:00,15053.0
-2014-06-27 14:00:00,15760.0
-2014-06-27 15:00:00,16401.0
-2014-06-27 16:00:00,16888.0
-2014-06-27 17:00:00,17154.0
-2014-06-27 18:00:00,17251.0
-2014-06-27 19:00:00,17086.0
-2014-06-27 20:00:00,16507.0
-2014-06-27 21:00:00,15861.0
-2014-06-27 22:00:00,15567.0
-2014-06-27 23:00:00,15299.0
-2014-06-28 00:00:00,14323.0
-2014-06-26 01:00:00,10510.0
-2014-06-26 02:00:00,9817.0
-2014-06-26 03:00:00,9358.0
-2014-06-26 04:00:00,9106.0
-2014-06-26 05:00:00,8971.0
-2014-06-26 06:00:00,9088.0
-2014-06-26 07:00:00,9515.0
-2014-06-26 08:00:00,10249.0
-2014-06-26 09:00:00,11085.0
-2014-06-26 10:00:00,11578.0
-2014-06-26 11:00:00,11946.0
-2014-06-26 12:00:00,12386.0
-2014-06-26 13:00:00,12771.0
-2014-06-26 14:00:00,13199.0
-2014-06-26 15:00:00,13728.0
-2014-06-26 16:00:00,14150.0
-2014-06-26 17:00:00,14488.0
-2014-06-26 18:00:00,14658.0
-2014-06-26 19:00:00,14519.0
-2014-06-26 20:00:00,13925.0
-2014-06-26 21:00:00,13254.0
-2014-06-26 22:00:00,12925.0
-2014-06-26 23:00:00,12618.0
-2014-06-27 00:00:00,11644.0
-2014-06-25 01:00:00,12388.0
-2014-06-25 02:00:00,11385.0
-2014-06-25 03:00:00,10669.0
-2014-06-25 04:00:00,10189.0
-2014-06-25 05:00:00,9870.0
-2014-06-25 06:00:00,9909.0
-2014-06-25 07:00:00,10238.0
-2014-06-25 08:00:00,11000.0
-2014-06-25 09:00:00,11738.0
-2014-06-25 10:00:00,12398.0
-2014-06-25 11:00:00,12947.0
-2014-06-25 12:00:00,13778.0
-2014-06-25 13:00:00,14447.0
-2014-06-25 14:00:00,14970.0
-2014-06-25 15:00:00,15362.0
-2014-06-25 16:00:00,15130.0
-2014-06-25 17:00:00,14720.0
-2014-06-25 18:00:00,14271.0
-2014-06-25 19:00:00,13568.0
-2014-06-25 20:00:00,12895.0
-2014-06-25 21:00:00,12415.0
-2014-06-25 22:00:00,12199.0
-2014-06-25 23:00:00,12322.0
-2014-06-26 00:00:00,11434.0
-2014-06-24 01:00:00,12153.0
-2014-06-24 02:00:00,11247.0
-2014-06-24 03:00:00,10632.0
-2014-06-24 04:00:00,10263.0
-2014-06-24 05:00:00,10078.0
-2014-06-24 06:00:00,10224.0
-2014-06-24 07:00:00,10745.0
-2014-06-24 08:00:00,11683.0
-2014-06-24 09:00:00,12603.0
-2014-06-24 10:00:00,13325.0
-2014-06-24 11:00:00,14023.0
-2014-06-24 12:00:00,14951.0
-2014-06-24 13:00:00,15595.0
-2014-06-24 14:00:00,16245.0
-2014-06-24 15:00:00,16786.0
-2014-06-24 16:00:00,17241.0
-2014-06-24 17:00:00,17563.0
-2014-06-24 18:00:00,17684.0
-2014-06-24 19:00:00,17405.0
-2014-06-24 20:00:00,16585.0
-2014-06-24 21:00:00,15735.0
-2014-06-24 22:00:00,15262.0
-2014-06-24 23:00:00,14791.0
-2014-06-25 00:00:00,13646.0
-2014-06-23 01:00:00,10676.0
-2014-06-23 02:00:00,9951.0
-2014-06-23 03:00:00,9566.0
-2014-06-23 04:00:00,9267.0
-2014-06-23 05:00:00,9225.0
-2014-06-23 06:00:00,9470.0
-2014-06-23 07:00:00,10096.0
-2014-06-23 08:00:00,11072.0
-2014-06-23 09:00:00,12031.0
-2014-06-23 10:00:00,12643.0
-2014-06-23 11:00:00,13067.0
-2014-06-23 12:00:00,13519.0
-2014-06-23 13:00:00,13993.0
-2014-06-23 14:00:00,14316.0
-2014-06-23 15:00:00,14673.0
-2014-06-23 16:00:00,15165.0
-2014-06-23 17:00:00,15545.0
-2014-06-23 18:00:00,15754.0
-2014-06-23 19:00:00,15760.0
-2014-06-23 20:00:00,15387.0
-2014-06-23 21:00:00,14864.0
-2014-06-23 22:00:00,14636.0
-2014-06-23 23:00:00,14379.0
-2014-06-24 00:00:00,13362.0
-2014-06-22 01:00:00,10466.0
-2014-06-22 02:00:00,9845.0
-2014-06-22 03:00:00,9337.0
-2014-06-22 04:00:00,8977.0
-2014-06-22 05:00:00,8743.0
-2014-06-22 06:00:00,8654.0
-2014-06-22 07:00:00,8505.0
-2014-06-22 08:00:00,8566.0
-2014-06-22 09:00:00,8905.0
-2014-06-22 10:00:00,9554.0
-2014-06-22 11:00:00,10309.0
-2014-06-22 12:00:00,11246.0
-2014-06-22 13:00:00,11990.0
-2014-06-22 14:00:00,12690.0
-2014-06-22 15:00:00,13187.0
-2014-06-22 16:00:00,13583.0
-2014-06-22 17:00:00,13832.0
-2014-06-22 18:00:00,14060.0
-2014-06-22 19:00:00,13926.0
-2014-06-22 20:00:00,13457.0
-2014-06-22 21:00:00,12832.0
-2014-06-22 22:00:00,12687.0
-2014-06-22 23:00:00,12431.0
-2014-06-23 00:00:00,11619.0
-2014-06-21 01:00:00,11285.0
-2014-06-21 02:00:00,10430.0
-2014-06-21 03:00:00,9862.0
-2014-06-21 04:00:00,9449.0
-2014-06-21 05:00:00,9196.0
-2014-06-21 06:00:00,9120.0
-2014-06-21 07:00:00,9106.0
-2014-06-21 08:00:00,9248.0
-2014-06-21 09:00:00,9813.0
-2014-06-21 10:00:00,10361.0
-2014-06-21 11:00:00,11049.0
-2014-06-21 12:00:00,11714.0
-2014-06-21 13:00:00,12406.0
-2014-06-21 14:00:00,13124.0
-2014-06-21 15:00:00,13631.0
-2014-06-21 16:00:00,13847.0
-2014-06-21 17:00:00,14090.0
-2014-06-21 18:00:00,13909.0
-2014-06-21 19:00:00,13415.0
-2014-06-21 20:00:00,12933.0
-2014-06-21 21:00:00,12314.0
-2014-06-21 22:00:00,12073.0
-2014-06-21 23:00:00,11890.0
-2014-06-22 00:00:00,11263.0
-2014-06-20 01:00:00,11336.0
-2014-06-20 02:00:00,10639.0
-2014-06-20 03:00:00,10145.0
-2014-06-20 04:00:00,9832.0
-2014-06-20 05:00:00,9718.0
-2014-06-20 06:00:00,9869.0
-2014-06-20 07:00:00,10335.0
-2014-06-20 08:00:00,11246.0
-2014-06-20 09:00:00,12193.0
-2014-06-20 10:00:00,12996.0
-2014-06-20 11:00:00,13740.0
-2014-06-20 12:00:00,14511.0
-2014-06-20 13:00:00,15121.0
-2014-06-20 14:00:00,15590.0
-2014-06-20 15:00:00,16121.0
-2014-06-20 16:00:00,16487.0
-2014-06-20 17:00:00,16766.0
-2014-06-20 18:00:00,16775.0
-2014-06-20 19:00:00,16390.0
-2014-06-20 20:00:00,15590.0
-2014-06-20 21:00:00,14736.0
-2014-06-20 22:00:00,13918.0
-2014-06-20 23:00:00,13410.0
-2014-06-21 00:00:00,12333.0
-2014-06-19 01:00:00,10874.0
-2014-06-19 02:00:00,10162.0
-2014-06-19 03:00:00,9693.0
-2014-06-19 04:00:00,9361.0
-2014-06-19 05:00:00,9195.0
-2014-06-19 06:00:00,9290.0
-2014-06-19 07:00:00,9684.0
-2014-06-19 08:00:00,10466.0
-2014-06-19 09:00:00,11291.0
-2014-06-19 10:00:00,11909.0
-2014-06-19 11:00:00,12407.0
-2014-06-19 12:00:00,12847.0
-2014-06-19 13:00:00,13401.0
-2014-06-19 14:00:00,14069.0
-2014-06-19 15:00:00,14718.0
-2014-06-19 16:00:00,15164.0
-2014-06-19 17:00:00,15399.0
-2014-06-19 18:00:00,15282.0
-2014-06-19 19:00:00,14954.0
-2014-06-19 20:00:00,14254.0
-2014-06-19 21:00:00,13834.0
-2014-06-19 22:00:00,13848.0
-2014-06-19 23:00:00,13397.0
-2014-06-20 00:00:00,12470.0
-2014-06-18 01:00:00,14419.0
-2014-06-18 02:00:00,13445.0
-2014-06-18 03:00:00,12789.0
-2014-06-18 04:00:00,12346.0
-2014-06-18 05:00:00,12082.0
-2014-06-18 06:00:00,12098.0
-2014-06-18 07:00:00,12508.0
-2014-06-18 08:00:00,13404.0
-2014-06-18 09:00:00,14557.0
-2014-06-18 10:00:00,15428.0
-2014-06-18 11:00:00,15970.0
-2014-06-18 12:00:00,16361.0
-2014-06-18 13:00:00,15763.0
-2014-06-18 14:00:00,14905.0
-2014-06-18 15:00:00,15019.0
-2014-06-18 16:00:00,15348.0
-2014-06-18 17:00:00,15433.0
-2014-06-18 18:00:00,15440.0
-2014-06-18 19:00:00,15266.0
-2014-06-18 20:00:00,14651.0
-2014-06-18 21:00:00,14045.0
-2014-06-18 22:00:00,13528.0
-2014-06-18 23:00:00,12856.0
-2014-06-19 00:00:00,11893.0
-2014-06-17 01:00:00,13950.0
-2014-06-17 02:00:00,13012.0
-2014-06-17 03:00:00,12380.0
-2014-06-17 04:00:00,11882.0
-2014-06-17 05:00:00,11601.0
-2014-06-17 06:00:00,11641.0
-2014-06-17 07:00:00,12226.0
-2014-06-17 08:00:00,13152.0
-2014-06-17 09:00:00,14090.0
-2014-06-17 10:00:00,14702.0
-2014-06-17 11:00:00,15197.0
-2014-06-17 12:00:00,16061.0
-2014-06-17 13:00:00,16780.0
-2014-06-17 14:00:00,17387.0
-2014-06-17 15:00:00,18011.0
-2014-06-17 16:00:00,18592.0
-2014-06-17 17:00:00,19125.0
-2014-06-17 18:00:00,19412.0
-2014-06-17 19:00:00,19275.0
-2014-06-17 20:00:00,18758.0
-2014-06-17 21:00:00,18032.0
-2014-06-17 22:00:00,17563.0
-2014-06-17 23:00:00,17075.0
-2014-06-18 00:00:00,15732.0
-2014-06-16 01:00:00,11594.0
-2014-06-16 02:00:00,10759.0
-2014-06-16 03:00:00,10169.0
-2014-06-16 04:00:00,9752.0
-2014-06-16 05:00:00,9565.0
-2014-06-16 06:00:00,9598.0
-2014-06-16 07:00:00,10001.0
-2014-06-16 08:00:00,11092.0
-2014-06-16 09:00:00,12436.0
-2014-06-16 10:00:00,13642.0
-2014-06-16 11:00:00,14628.0
-2014-06-16 12:00:00,15505.0
-2014-06-16 13:00:00,16121.0
-2014-06-16 14:00:00,16650.0
-2014-06-16 15:00:00,17170.0
-2014-06-16 16:00:00,17621.0
-2014-06-16 17:00:00,17940.0
-2014-06-16 18:00:00,18122.0
-2014-06-16 19:00:00,17933.0
-2014-06-16 20:00:00,17159.0
-2014-06-16 21:00:00,16571.0
-2014-06-16 22:00:00,16499.0
-2014-06-16 23:00:00,16241.0
-2014-06-17 00:00:00,15188.0
-2014-06-15 01:00:00,9563.0
-2014-06-15 02:00:00,8943.0
-2014-06-15 03:00:00,8536.0
-2014-06-15 04:00:00,8223.0
-2014-06-15 05:00:00,8015.0
-2014-06-15 06:00:00,7934.0
-2014-06-15 07:00:00,7725.0
-2014-06-15 08:00:00,7861.0
-2014-06-15 09:00:00,8314.0
-2014-06-15 10:00:00,8967.0
-2014-06-15 11:00:00,9522.0
-2014-06-15 12:00:00,10078.0
-2014-06-15 13:00:00,10542.0
-2014-06-15 14:00:00,10937.0
-2014-06-15 15:00:00,11317.0
-2014-06-15 16:00:00,11784.0
-2014-06-15 17:00:00,12108.0
-2014-06-15 18:00:00,12461.0
-2014-06-15 19:00:00,12787.0
-2014-06-15 20:00:00,12966.0
-2014-06-15 21:00:00,12923.0
-2014-06-15 22:00:00,13049.0
-2014-06-15 23:00:00,13206.0
-2014-06-16 00:00:00,12570.0
-2014-06-14 01:00:00,9667.0
-2014-06-14 02:00:00,9013.0
-2014-06-14 03:00:00,8549.0
-2014-06-14 04:00:00,8287.0
-2014-06-14 05:00:00,8123.0
-2014-06-14 06:00:00,8127.0
-2014-06-14 07:00:00,8047.0
-2014-06-14 08:00:00,8385.0
-2014-06-14 09:00:00,8958.0
-2014-06-14 10:00:00,9596.0
-2014-06-14 11:00:00,10117.0
-2014-06-14 12:00:00,10564.0
-2014-06-14 13:00:00,10796.0
-2014-06-14 14:00:00,10941.0
-2014-06-14 15:00:00,10954.0
-2014-06-14 16:00:00,11068.0
-2014-06-14 17:00:00,11204.0
-2014-06-14 18:00:00,11362.0
-2014-06-14 19:00:00,11349.0
-2014-06-14 20:00:00,11152.0
-2014-06-14 21:00:00,10866.0
-2014-06-14 22:00:00,10780.0
-2014-06-14 23:00:00,10796.0
-2014-06-15 00:00:00,10234.0
-2014-06-13 01:00:00,10162.0
-2014-06-13 02:00:00,9404.0
-2014-06-13 03:00:00,8895.0
-2014-06-13 04:00:00,8588.0
-2014-06-13 05:00:00,8419.0
-2014-06-13 06:00:00,8515.0
-2014-06-13 07:00:00,8759.0
-2014-06-13 08:00:00,9527.0
-2014-06-13 09:00:00,10394.0
-2014-06-13 10:00:00,11009.0
-2014-06-13 11:00:00,11384.0
-2014-06-13 12:00:00,11742.0
-2014-06-13 13:00:00,11900.0
-2014-06-13 14:00:00,11995.0
-2014-06-13 15:00:00,12127.0
-2014-06-13 16:00:00,12128.0
-2014-06-13 17:00:00,12156.0
-2014-06-13 18:00:00,12148.0
-2014-06-13 19:00:00,12000.0
-2014-06-13 20:00:00,11687.0
-2014-06-13 21:00:00,11287.0
-2014-06-13 22:00:00,11238.0
-2014-06-13 23:00:00,11168.0
-2014-06-14 00:00:00,10416.0
-2014-06-12 01:00:00,9665.0
-2014-06-12 02:00:00,9116.0
-2014-06-12 03:00:00,8748.0
-2014-06-12 04:00:00,8510.0
-2014-06-12 05:00:00,8435.0
-2014-06-12 06:00:00,8609.0
-2014-06-12 07:00:00,9094.0
-2014-06-12 08:00:00,9937.0
-2014-06-12 09:00:00,10822.0
-2014-06-12 10:00:00,11544.0
-2014-06-12 11:00:00,12152.0
-2014-06-12 12:00:00,12760.0
-2014-06-12 13:00:00,13268.0
-2014-06-12 14:00:00,13625.0
-2014-06-12 15:00:00,13745.0
-2014-06-12 16:00:00,13656.0
-2014-06-12 17:00:00,13575.0
-2014-06-12 18:00:00,13507.0
-2014-06-12 19:00:00,13234.0
-2014-06-12 20:00:00,12717.0
-2014-06-12 21:00:00,12320.0
-2014-06-12 22:00:00,12270.0
-2014-06-12 23:00:00,12037.0
-2014-06-13 00:00:00,11146.0
-2014-06-11 01:00:00,9660.0
-2014-06-11 02:00:00,9133.0
-2014-06-11 03:00:00,8778.0
-2014-06-11 04:00:00,8570.0
-2014-06-11 05:00:00,8503.0
-2014-06-11 06:00:00,8645.0
-2014-06-11 07:00:00,9158.0
-2014-06-11 08:00:00,9934.0
-2014-06-11 09:00:00,10720.0
-2014-06-11 10:00:00,11204.0
-2014-06-11 11:00:00,11518.0
-2014-06-11 12:00:00,11761.0
-2014-06-11 13:00:00,11877.0
-2014-06-11 14:00:00,11922.0
-2014-06-11 15:00:00,11998.0
-2014-06-11 16:00:00,12008.0
-2014-06-11 17:00:00,11897.0
-2014-06-11 18:00:00,11759.0
-2014-06-11 19:00:00,11563.0
-2014-06-11 20:00:00,11276.0
-2014-06-11 21:00:00,11183.0
-2014-06-11 22:00:00,11484.0
-2014-06-11 23:00:00,11230.0
-2014-06-12 00:00:00,10491.0
-2014-06-10 01:00:00,9676.0
-2014-06-10 02:00:00,9071.0
-2014-06-10 03:00:00,8691.0
-2014-06-10 04:00:00,8482.0
-2014-06-10 05:00:00,8413.0
-2014-06-10 06:00:00,8562.0
-2014-06-10 07:00:00,9011.0
-2014-06-10 08:00:00,9845.0
-2014-06-10 09:00:00,10619.0
-2014-06-10 10:00:00,11075.0
-2014-06-10 11:00:00,11369.0
-2014-06-10 12:00:00,11672.0
-2014-06-10 13:00:00,11807.0
-2014-06-10 14:00:00,11873.0
-2014-06-10 15:00:00,11963.0
-2014-06-10 16:00:00,11728.0
-2014-06-10 17:00:00,11752.0
-2014-06-10 18:00:00,11630.0
-2014-06-10 19:00:00,11449.0
-2014-06-10 20:00:00,11375.0
-2014-06-10 21:00:00,11376.0
-2014-06-10 22:00:00,11477.0
-2014-06-10 23:00:00,11136.0
-2014-06-11 00:00:00,10460.0
-2014-06-09 01:00:00,8807.0
-2014-06-09 02:00:00,8365.0
-2014-06-09 03:00:00,8018.0
-2014-06-09 04:00:00,7848.0
-2014-06-09 05:00:00,7824.0
-2014-06-09 06:00:00,8028.0
-2014-06-09 07:00:00,8438.0
-2014-06-09 08:00:00,9375.0
-2014-06-09 09:00:00,10415.0
-2014-06-09 10:00:00,11126.0
-2014-06-09 11:00:00,11591.0
-2014-06-09 12:00:00,12077.0
-2014-06-09 13:00:00,12394.0
-2014-06-09 14:00:00,12701.0
-2014-06-09 15:00:00,13041.0
-2014-06-09 16:00:00,13217.0
-2014-06-09 17:00:00,13263.0
-2014-06-09 18:00:00,13153.0
-2014-06-09 19:00:00,12794.0
-2014-06-09 20:00:00,12237.0
-2014-06-09 21:00:00,11827.0
-2014-06-09 22:00:00,11809.0
-2014-06-09 23:00:00,11511.0
-2014-06-10 00:00:00,10601.0
-2014-06-08 01:00:00,9992.0
-2014-06-08 02:00:00,9294.0
-2014-06-08 03:00:00,8793.0
-2014-06-08 04:00:00,8343.0
-2014-06-08 05:00:00,8092.0
-2014-06-08 06:00:00,7971.0
-2014-06-08 07:00:00,7875.0
-2014-06-08 08:00:00,7758.0
-2014-06-08 09:00:00,8015.0
-2014-06-08 10:00:00,8538.0
-2014-06-08 11:00:00,9111.0
-2014-06-08 12:00:00,9462.0
-2014-06-08 13:00:00,9720.0
-2014-06-08 14:00:00,9795.0
-2014-06-08 15:00:00,9904.0
-2014-06-08 16:00:00,10036.0
-2014-06-08 17:00:00,10096.0
-2014-06-08 18:00:00,10102.0
-2014-06-08 19:00:00,10008.0
-2014-06-08 20:00:00,9763.0
-2014-06-08 21:00:00,9615.0
-2014-06-08 22:00:00,9897.0
-2014-06-08 23:00:00,9980.0
-2014-06-09 00:00:00,9496.0
-2014-06-07 01:00:00,10182.0
-2014-06-07 02:00:00,9442.0
-2014-06-07 03:00:00,8912.0
-2014-06-07 04:00:00,8556.0
-2014-06-07 05:00:00,8388.0
-2014-06-07 06:00:00,8368.0
-2014-06-07 07:00:00,8260.0
-2014-06-07 08:00:00,8670.0
-2014-06-07 09:00:00,9378.0
-2014-06-07 10:00:00,10271.0
-2014-06-07 11:00:00,11017.0
-2014-06-07 12:00:00,11639.0
-2014-06-07 13:00:00,12063.0
-2014-06-07 14:00:00,12456.0
-2014-06-07 15:00:00,12703.0
-2014-06-07 16:00:00,12863.0
-2014-06-07 17:00:00,12603.0
-2014-06-07 18:00:00,12306.0
-2014-06-07 19:00:00,11925.0
-2014-06-07 20:00:00,11643.0
-2014-06-07 21:00:00,11457.0
-2014-06-07 22:00:00,11609.0
-2014-06-07 23:00:00,11407.0
-2014-06-08 00:00:00,10775.0
-2014-06-06 01:00:00,9790.0
-2014-06-06 02:00:00,9174.0
-2014-06-06 03:00:00,8736.0
-2014-06-06 04:00:00,8501.0
-2014-06-06 05:00:00,8350.0
-2014-06-06 06:00:00,8514.0
-2014-06-06 07:00:00,8776.0
-2014-06-06 08:00:00,9638.0
-2014-06-06 09:00:00,10600.0
-2014-06-06 10:00:00,11303.0
-2014-06-06 11:00:00,11804.0
-2014-06-06 12:00:00,12325.0
-2014-06-06 13:00:00,12623.0
-2014-06-06 14:00:00,12911.0
-2014-06-06 15:00:00,13246.0
-2014-06-06 16:00:00,13494.0
-2014-06-06 17:00:00,13712.0
-2014-06-06 18:00:00,13816.0
-2014-06-06 19:00:00,13634.0
-2014-06-06 20:00:00,13146.0
-2014-06-06 21:00:00,12544.0
-2014-06-06 22:00:00,12173.0
-2014-06-06 23:00:00,11966.0
-2014-06-07 00:00:00,11120.0
-2014-06-05 01:00:00,9642.0
-2014-06-05 02:00:00,9038.0
-2014-06-05 03:00:00,8665.0
-2014-06-05 04:00:00,8392.0
-2014-06-05 05:00:00,8294.0
-2014-06-05 06:00:00,8421.0
-2014-06-05 07:00:00,8747.0
-2014-06-05 08:00:00,9648.0
-2014-06-05 09:00:00,10547.0
-2014-06-05 10:00:00,11119.0
-2014-06-05 11:00:00,11558.0
-2014-06-05 12:00:00,11964.0
-2014-06-05 13:00:00,12178.0
-2014-06-05 14:00:00,12289.0
-2014-06-05 15:00:00,12393.0
-2014-06-05 16:00:00,12574.0
-2014-06-05 17:00:00,12710.0
-2014-06-05 18:00:00,12758.0
-2014-06-05 19:00:00,12607.0
-2014-06-05 20:00:00,12213.0
-2014-06-05 21:00:00,11854.0
-2014-06-05 22:00:00,11785.0
-2014-06-05 23:00:00,11640.0
-2014-06-06 00:00:00,10782.0
-2014-06-04 01:00:00,11041.0
-2014-06-04 02:00:00,10273.0
-2014-06-04 03:00:00,9723.0
-2014-06-04 04:00:00,9412.0
-2014-06-04 05:00:00,9276.0
-2014-06-04 06:00:00,9349.0
-2014-06-04 07:00:00,9823.0
-2014-06-04 08:00:00,10610.0
-2014-06-04 09:00:00,11332.0
-2014-06-04 10:00:00,11808.0
-2014-06-04 11:00:00,12128.0
-2014-06-04 12:00:00,12231.0
-2014-06-04 13:00:00,12182.0
-2014-06-04 14:00:00,12096.0
-2014-06-04 15:00:00,12109.0
-2014-06-04 16:00:00,12055.0
-2014-06-04 17:00:00,11937.0
-2014-06-04 18:00:00,11786.0
-2014-06-04 19:00:00,11656.0
-2014-06-04 20:00:00,11458.0
-2014-06-04 21:00:00,11255.0
-2014-06-04 22:00:00,11366.0
-2014-06-04 23:00:00,11279.0
-2014-06-05 00:00:00,10497.0
-2014-06-03 01:00:00,12031.0
-2014-06-03 02:00:00,11100.0
-2014-06-03 03:00:00,10481.0
-2014-06-03 04:00:00,10064.0
-2014-06-03 05:00:00,9854.0
-2014-06-03 06:00:00,9896.0
-2014-06-03 07:00:00,10216.0
-2014-06-03 08:00:00,11252.0
-2014-06-03 09:00:00,12380.0
-2014-06-03 10:00:00,13118.0
-2014-06-03 11:00:00,13554.0
-2014-06-03 12:00:00,13964.0
-2014-06-03 13:00:00,14257.0
-2014-06-03 14:00:00,14532.0
-2014-06-03 15:00:00,14838.0
-2014-06-03 16:00:00,15127.0
-2014-06-03 17:00:00,15424.0
-2014-06-03 18:00:00,15563.0
-2014-06-03 19:00:00,15443.0
-2014-06-03 20:00:00,14912.0
-2014-06-03 21:00:00,14187.0
-2014-06-03 22:00:00,13797.0
-2014-06-03 23:00:00,13346.0
-2014-06-04 00:00:00,12221.0
-2014-06-02 01:00:00,11873.0
-2014-06-02 02:00:00,11082.0
-2014-06-02 03:00:00,10579.0
-2014-06-02 04:00:00,10202.0
-2014-06-02 05:00:00,10091.0
-2014-06-02 06:00:00,10305.0
-2014-06-02 07:00:00,10907.0
-2014-06-02 08:00:00,12168.0
-2014-06-02 09:00:00,13441.0
-2014-06-02 10:00:00,14274.0
-2014-06-02 11:00:00,14833.0
-2014-06-02 12:00:00,14938.0
-2014-06-02 13:00:00,15090.0
-2014-06-02 14:00:00,14828.0
-2014-06-02 15:00:00,15161.0
-2014-06-02 16:00:00,15585.0
-2014-06-02 17:00:00,15891.0
-2014-06-02 18:00:00,16121.0
-2014-06-02 19:00:00,16075.0
-2014-06-02 20:00:00,15635.0
-2014-06-02 21:00:00,15093.0
-2014-06-02 22:00:00,14760.0
-2014-06-02 23:00:00,14391.0
-2014-06-03 00:00:00,13293.0
-2014-06-01 01:00:00,10490.0
-2014-06-01 02:00:00,9741.0
-2014-06-01 03:00:00,9253.0
-2014-06-01 04:00:00,8880.0
-2014-06-01 05:00:00,8609.0
-2014-06-01 06:00:00,8513.0
-2014-06-01 07:00:00,8283.0
-2014-06-01 08:00:00,8413.0
-2014-06-01 09:00:00,9057.0
-2014-06-01 10:00:00,9938.0
-2014-06-01 11:00:00,10813.0
-2014-06-01 12:00:00,11739.0
-2014-06-01 13:00:00,12427.0
-2014-06-01 14:00:00,13310.0
-2014-06-01 15:00:00,13908.0
-2014-06-01 16:00:00,14345.0
-2014-06-01 17:00:00,14607.0
-2014-06-01 18:00:00,14858.0
-2014-06-01 19:00:00,15028.0
-2014-06-01 20:00:00,14665.0
-2014-06-01 21:00:00,14283.0
-2014-06-01 22:00:00,14041.0
-2014-06-01 23:00:00,13684.0
-2014-06-02 00:00:00,12867.0
-2014-05-31 01:00:00,10087.0
-2014-05-31 02:00:00,9316.0
-2014-05-31 03:00:00,8818.0
-2014-05-31 04:00:00,8506.0
-2014-05-31 05:00:00,8312.0
-2014-05-31 06:00:00,8307.0
-2014-05-31 07:00:00,8177.0
-2014-05-31 08:00:00,8479.0
-2014-05-31 09:00:00,9192.0
-2014-05-31 10:00:00,10007.0
-2014-05-31 11:00:00,10827.0
-2014-05-31 12:00:00,11511.0
-2014-05-31 13:00:00,12013.0
-2014-05-31 14:00:00,12549.0
-2014-05-31 15:00:00,12866.0
-2014-05-31 16:00:00,13214.0
-2014-05-31 17:00:00,13576.0
-2014-05-31 18:00:00,13752.0
-2014-05-31 19:00:00,13766.0
-2014-05-31 20:00:00,13426.0
-2014-05-31 21:00:00,12827.0
-2014-05-31 22:00:00,12522.0
-2014-05-31 23:00:00,12229.0
-2014-06-01 00:00:00,11425.0
-2014-05-30 01:00:00,9697.0
-2014-05-30 02:00:00,9054.0
-2014-05-30 03:00:00,8649.0
-2014-05-30 04:00:00,8357.0
-2014-05-30 05:00:00,8254.0
-2014-05-30 06:00:00,8403.0
-2014-05-30 07:00:00,8768.0
-2014-05-30 08:00:00,9696.0
-2014-05-30 09:00:00,10702.0
-2014-05-30 10:00:00,11362.0
-2014-05-30 11:00:00,11861.0
-2014-05-30 12:00:00,12349.0
-2014-05-30 13:00:00,12792.0
-2014-05-30 14:00:00,13071.0
-2014-05-30 15:00:00,13352.0
-2014-05-30 16:00:00,13559.0
-2014-05-30 17:00:00,13715.0
-2014-05-30 18:00:00,13757.0
-2014-05-30 19:00:00,13533.0
-2014-05-30 20:00:00,13066.0
-2014-05-30 21:00:00,12447.0
-2014-05-30 22:00:00,12211.0
-2014-05-30 23:00:00,11913.0
-2014-05-31 00:00:00,11015.0
-2014-05-29 01:00:00,9614.0
-2014-05-29 02:00:00,8962.0
-2014-05-29 03:00:00,8586.0
-2014-05-29 04:00:00,8356.0
-2014-05-29 05:00:00,8274.0
-2014-05-29 06:00:00,8435.0
-2014-05-29 07:00:00,8910.0
-2014-05-29 08:00:00,9789.0
-2014-05-29 09:00:00,10660.0
-2014-05-29 10:00:00,11272.0
-2014-05-29 11:00:00,11713.0
-2014-05-29 12:00:00,12191.0
-2014-05-29 13:00:00,12488.0
-2014-05-29 14:00:00,12755.0
-2014-05-29 15:00:00,13013.0
-2014-05-29 16:00:00,13066.0
-2014-05-29 17:00:00,13160.0
-2014-05-29 18:00:00,13231.0
-2014-05-29 19:00:00,13051.0
-2014-05-29 20:00:00,12595.0
-2014-05-29 21:00:00,12127.0
-2014-05-29 22:00:00,12009.0
-2014-05-29 23:00:00,11679.0
-2014-05-30 00:00:00,10705.0
-2014-05-28 01:00:00,10656.0
-2014-05-28 02:00:00,9877.0
-2014-05-28 03:00:00,9437.0
-2014-05-28 04:00:00,9189.0
-2014-05-28 05:00:00,9042.0
-2014-05-28 06:00:00,9131.0
-2014-05-28 07:00:00,9574.0
-2014-05-28 08:00:00,10351.0
-2014-05-28 09:00:00,11139.0
-2014-05-28 10:00:00,11606.0
-2014-05-28 11:00:00,11965.0
-2014-05-28 12:00:00,12331.0
-2014-05-28 13:00:00,12552.0
-2014-05-28 14:00:00,12757.0
-2014-05-28 15:00:00,13006.0
-2014-05-28 16:00:00,13113.0
-2014-05-28 17:00:00,13119.0
-2014-05-28 18:00:00,12999.0
-2014-05-28 19:00:00,12631.0
-2014-05-28 20:00:00,11998.0
-2014-05-28 21:00:00,11559.0
-2014-05-28 22:00:00,11610.0
-2014-05-28 23:00:00,11324.0
-2014-05-29 00:00:00,10488.0
-2014-05-27 01:00:00,10633.0
-2014-05-27 02:00:00,9994.0
-2014-05-27 03:00:00,9545.0
-2014-05-27 04:00:00,9253.0
-2014-05-27 05:00:00,9109.0
-2014-05-27 06:00:00,9307.0
-2014-05-27 07:00:00,9896.0
-2014-05-27 08:00:00,11027.0
-2014-05-27 09:00:00,12249.0
-2014-05-27 10:00:00,12982.0
-2014-05-27 11:00:00,13523.0
-2014-05-27 12:00:00,14264.0
-2014-05-27 13:00:00,14928.0
-2014-05-27 14:00:00,15475.0
-2014-05-27 15:00:00,15948.0
-2014-05-27 16:00:00,16141.0
-2014-05-27 17:00:00,16287.0
-2014-05-27 18:00:00,16122.0
-2014-05-27 19:00:00,15397.0
-2014-05-27 20:00:00,14514.0
-2014-05-27 21:00:00,13964.0
-2014-05-27 22:00:00,13809.0
-2014-05-27 23:00:00,13146.0
-2014-05-28 00:00:00,11891.0
-2014-05-26 01:00:00,9233.0
-2014-05-26 02:00:00,8690.0
-2014-05-26 03:00:00,8342.0
-2014-05-26 04:00:00,8081.0
-2014-05-26 05:00:00,7927.0
-2014-05-26 06:00:00,7912.0
-2014-05-26 07:00:00,7889.0
-2014-05-26 08:00:00,7981.0
-2014-05-26 09:00:00,8501.0
-2014-05-26 10:00:00,9135.0
-2014-05-26 11:00:00,9833.0
-2014-05-26 12:00:00,10600.0
-2014-05-26 13:00:00,11391.0
-2014-05-26 14:00:00,12104.0
-2014-05-26 15:00:00,12639.0
-2014-05-26 16:00:00,13032.0
-2014-05-26 17:00:00,13328.0
-2014-05-26 18:00:00,13371.0
-2014-05-26 19:00:00,13163.0
-2014-05-26 20:00:00,12797.0
-2014-05-26 21:00:00,12603.0
-2014-05-26 22:00:00,12726.0
-2014-05-26 23:00:00,12388.0
-2014-05-27 00:00:00,11530.0
-2014-05-25 01:00:00,8598.0
-2014-05-25 02:00:00,8119.0
-2014-05-25 03:00:00,7785.0
-2014-05-25 04:00:00,7600.0
-2014-05-25 05:00:00,7443.0
-2014-05-25 06:00:00,7447.0
-2014-05-25 07:00:00,7237.0
-2014-05-25 08:00:00,7269.0
-2014-05-25 09:00:00,7657.0
-2014-05-25 10:00:00,8239.0
-2014-05-25 11:00:00,8718.0
-2014-05-25 12:00:00,9203.0
-2014-05-25 13:00:00,9507.0
-2014-05-25 14:00:00,9775.0
-2014-05-25 15:00:00,9990.0
-2014-05-25 16:00:00,10260.0
-2014-05-25 17:00:00,10512.0
-2014-05-25 18:00:00,10728.0
-2014-05-25 19:00:00,10837.0
-2014-05-25 20:00:00,10600.0
-2014-05-25 21:00:00,10299.0
-2014-05-25 22:00:00,10421.0
-2014-05-25 23:00:00,10383.0
-2014-05-26 00:00:00,9816.0
-2014-05-24 01:00:00,9064.0
-2014-05-24 02:00:00,8532.0
-2014-05-24 03:00:00,8124.0
-2014-05-24 04:00:00,7951.0
-2014-05-24 05:00:00,7817.0
-2014-05-24 06:00:00,7815.0
-2014-05-24 07:00:00,7745.0
-2014-05-24 08:00:00,7940.0
-2014-05-24 09:00:00,8332.0
-2014-05-24 10:00:00,8894.0
-2014-05-24 11:00:00,9278.0
-2014-05-24 12:00:00,9567.0
-2014-05-24 13:00:00,9728.0
-2014-05-24 14:00:00,9799.0
-2014-05-24 15:00:00,9814.0
-2014-05-24 16:00:00,9812.0
-2014-05-24 17:00:00,9843.0
-2014-05-24 18:00:00,9785.0
-2014-05-24 19:00:00,9703.0
-2014-05-24 20:00:00,9525.0
-2014-05-24 21:00:00,9444.0
-2014-05-24 22:00:00,9764.0
-2014-05-24 23:00:00,9719.0
-2014-05-25 00:00:00,9215.0
-2014-05-23 01:00:00,9447.0
-2014-05-23 02:00:00,8880.0
-2014-05-23 03:00:00,8492.0
-2014-05-23 04:00:00,8282.0
-2014-05-23 05:00:00,8206.0
-2014-05-23 06:00:00,8347.0
-2014-05-23 07:00:00,8690.0
-2014-05-23 08:00:00,9512.0
-2014-05-23 09:00:00,10392.0
-2014-05-23 10:00:00,10915.0
-2014-05-23 11:00:00,11243.0
-2014-05-23 12:00:00,11497.0
-2014-05-23 13:00:00,11573.0
-2014-05-23 14:00:00,11601.0
-2014-05-23 15:00:00,11666.0
-2014-05-23 16:00:00,11644.0
-2014-05-23 17:00:00,11567.0
-2014-05-23 18:00:00,11460.0
-2014-05-23 19:00:00,11198.0
-2014-05-23 20:00:00,10852.0
-2014-05-23 21:00:00,10521.0
-2014-05-23 22:00:00,10696.0
-2014-05-23 23:00:00,10537.0
-2014-05-24 00:00:00,9847.0
-2014-05-22 01:00:00,11068.0
-2014-05-22 02:00:00,10127.0
-2014-05-22 03:00:00,9477.0
-2014-05-22 04:00:00,9080.0
-2014-05-22 05:00:00,8861.0
-2014-05-22 06:00:00,8926.0
-2014-05-22 07:00:00,9217.0
-2014-05-22 08:00:00,10065.0
-2014-05-22 09:00:00,10976.0
-2014-05-22 10:00:00,11590.0
-2014-05-22 11:00:00,11999.0
-2014-05-22 12:00:00,12282.0
-2014-05-22 13:00:00,12371.0
-2014-05-22 14:00:00,12421.0
-2014-05-22 15:00:00,12537.0
-2014-05-22 16:00:00,12501.0
-2014-05-22 17:00:00,12399.0
-2014-05-22 18:00:00,12172.0
-2014-05-22 19:00:00,11846.0
-2014-05-22 20:00:00,11501.0
-2014-05-22 21:00:00,11189.0
-2014-05-22 22:00:00,11357.0
-2014-05-22 23:00:00,11159.0
-2014-05-23 00:00:00,10301.0
-2014-05-21 01:00:00,11066.0
-2014-05-21 02:00:00,10344.0
-2014-05-21 03:00:00,9842.0
-2014-05-21 04:00:00,9465.0
-2014-05-21 05:00:00,9257.0
-2014-05-21 06:00:00,9351.0
-2014-05-21 07:00:00,9918.0
-2014-05-21 08:00:00,10884.0
-2014-05-21 09:00:00,11787.0
-2014-05-21 10:00:00,12357.0
-2014-05-21 11:00:00,12935.0
-2014-05-21 12:00:00,13556.0
-2014-05-21 13:00:00,14038.0
-2014-05-21 14:00:00,14435.0
-2014-05-21 15:00:00,14851.0
-2014-05-21 16:00:00,15107.0
-2014-05-21 17:00:00,15361.0
-2014-05-21 18:00:00,15512.0
-2014-05-21 19:00:00,15395.0
-2014-05-21 20:00:00,14993.0
-2014-05-21 21:00:00,14441.0
-2014-05-21 22:00:00,14299.0
-2014-05-21 23:00:00,13715.0
-2014-05-22 00:00:00,12376.0
-2014-05-20 01:00:00,9273.0
-2014-05-20 02:00:00,8759.0
-2014-05-20 03:00:00,8432.0
-2014-05-20 04:00:00,8237.0
-2014-05-20 05:00:00,8193.0
-2014-05-20 06:00:00,8360.0
-2014-05-20 07:00:00,8880.0
-2014-05-20 08:00:00,9775.0
-2014-05-20 09:00:00,10694.0
-2014-05-20 10:00:00,11314.0
-2014-05-20 11:00:00,11815.0
-2014-05-20 12:00:00,12289.0
-2014-05-20 13:00:00,12671.0
-2014-05-20 14:00:00,13041.0
-2014-05-20 15:00:00,13487.0
-2014-05-20 16:00:00,13753.0
-2014-05-20 17:00:00,14025.0
-2014-05-20 18:00:00,14202.0
-2014-05-20 19:00:00,14176.0
-2014-05-20 20:00:00,13903.0
-2014-05-20 21:00:00,14069.0
-2014-05-20 22:00:00,14008.0
-2014-05-20 23:00:00,13252.0
-2014-05-21 00:00:00,12137.0
-2014-05-19 01:00:00,8600.0
-2014-05-19 02:00:00,8141.0
-2014-05-19 03:00:00,7942.0
-2014-05-19 04:00:00,7857.0
-2014-05-19 05:00:00,7867.0
-2014-05-19 06:00:00,8119.0
-2014-05-19 07:00:00,8683.0
-2014-05-19 08:00:00,9569.0
-2014-05-19 09:00:00,10440.0
-2014-05-19 10:00:00,10853.0
-2014-05-19 11:00:00,11155.0
-2014-05-19 12:00:00,11412.0
-2014-05-19 13:00:00,11499.0
-2014-05-19 14:00:00,11504.0
-2014-05-19 15:00:00,11559.0
-2014-05-19 16:00:00,11495.0
-2014-05-19 17:00:00,11373.0
-2014-05-19 18:00:00,11197.0
-2014-05-19 19:00:00,11003.0
-2014-05-19 20:00:00,10864.0
-2014-05-19 21:00:00,11017.0
-2014-05-19 22:00:00,11205.0
-2014-05-19 23:00:00,10811.0
-2014-05-20 00:00:00,10005.0
-2014-05-18 01:00:00,8723.0
-2014-05-18 02:00:00,8309.0
-2014-05-18 03:00:00,8087.0
-2014-05-18 04:00:00,7904.0
-2014-05-18 05:00:00,7828.0
-2014-05-18 06:00:00,7821.0
-2014-05-18 07:00:00,7833.0
-2014-05-18 08:00:00,7760.0
-2014-05-18 09:00:00,8050.0
-2014-05-18 10:00:00,8306.0
-2014-05-18 11:00:00,8634.0
-2014-05-18 12:00:00,8792.0
-2014-05-18 13:00:00,8916.0
-2014-05-18 14:00:00,8957.0
-2014-05-18 15:00:00,8975.0
-2014-05-18 16:00:00,8979.0
-2014-05-18 17:00:00,9032.0
-2014-05-18 18:00:00,9048.0
-2014-05-18 19:00:00,9109.0
-2014-05-18 20:00:00,9135.0
-2014-05-18 21:00:00,9258.0
-2014-05-18 22:00:00,9766.0
-2014-05-18 23:00:00,9712.0
-2014-05-19 00:00:00,9188.0
-2014-05-17 01:00:00,9510.0
-2014-05-17 02:00:00,8952.0
-2014-05-17 03:00:00,8657.0
-2014-05-17 04:00:00,8476.0
-2014-05-17 05:00:00,8416.0
-2014-05-17 06:00:00,8490.0
-2014-05-17 07:00:00,8602.0
-2014-05-17 08:00:00,8834.0
-2014-05-17 09:00:00,9176.0
-2014-05-17 10:00:00,9500.0
-2014-05-17 11:00:00,9653.0
-2014-05-17 12:00:00,9787.0
-2014-05-17 13:00:00,9713.0
-2014-05-17 14:00:00,9592.0
-2014-05-17 15:00:00,9446.0
-2014-05-17 16:00:00,9315.0
-2014-05-17 17:00:00,9216.0
-2014-05-17 18:00:00,9177.0
-2014-05-17 19:00:00,9144.0
-2014-05-17 20:00:00,9089.0
-2014-05-17 21:00:00,9183.0
-2014-05-17 22:00:00,9681.0
-2014-05-17 23:00:00,9658.0
-2014-05-18 00:00:00,9207.0
-2014-05-16 01:00:00,9399.0
-2014-05-16 02:00:00,8909.0
-2014-05-16 03:00:00,8624.0
-2014-05-16 04:00:00,8454.0
-2014-05-16 05:00:00,8405.0
-2014-05-16 06:00:00,8639.0
-2014-05-16 07:00:00,9292.0
-2014-05-16 08:00:00,10227.0
-2014-05-16 09:00:00,10970.0
-2014-05-16 10:00:00,11354.0
-2014-05-16 11:00:00,11567.0
-2014-05-16 12:00:00,11616.0
-2014-05-16 13:00:00,11591.0
-2014-05-16 14:00:00,11454.0
-2014-05-16 15:00:00,11400.0
-2014-05-16 16:00:00,11285.0
-2014-05-16 17:00:00,11096.0
-2014-05-16 18:00:00,10981.0
-2014-05-16 19:00:00,10810.0
-2014-05-16 20:00:00,10737.0
-2014-05-16 21:00:00,10852.0
-2014-05-16 22:00:00,11114.0
-2014-05-16 23:00:00,10871.0
-2014-05-17 00:00:00,10208.0
-2014-05-15 01:00:00,9254.0
-2014-05-15 02:00:00,8781.0
-2014-05-15 03:00:00,8533.0
-2014-05-15 04:00:00,8321.0
-2014-05-15 05:00:00,8300.0
-2014-05-15 06:00:00,8511.0
-2014-05-15 07:00:00,9203.0
-2014-05-15 08:00:00,10144.0
-2014-05-15 09:00:00,10924.0
-2014-05-15 10:00:00,11342.0
-2014-05-15 11:00:00,11480.0
-2014-05-15 12:00:00,11497.0
-2014-05-15 13:00:00,11330.0
-2014-05-15 14:00:00,11167.0
-2014-05-15 15:00:00,11194.0
-2014-05-15 16:00:00,11100.0
-2014-05-15 17:00:00,10977.0
-2014-05-15 18:00:00,10851.0
-2014-05-15 19:00:00,10692.0
-2014-05-15 20:00:00,10563.0
-2014-05-15 21:00:00,10635.0
-2014-05-15 22:00:00,11096.0
-2014-05-15 23:00:00,10858.0
-2014-05-16 00:00:00,10116.0
-2014-05-14 01:00:00,9184.0
-2014-05-14 02:00:00,8651.0
-2014-05-14 03:00:00,8332.0
-2014-05-14 04:00:00,8147.0
-2014-05-14 05:00:00,8090.0
-2014-05-14 06:00:00,8257.0
-2014-05-14 07:00:00,8786.0
-2014-05-14 08:00:00,9576.0
-2014-05-14 09:00:00,10359.0
-2014-05-14 10:00:00,10700.0
-2014-05-14 11:00:00,10858.0
-2014-05-14 12:00:00,10994.0
-2014-05-14 13:00:00,11009.0
-2014-05-14 14:00:00,10997.0
-2014-05-14 15:00:00,11030.0
-2014-05-14 16:00:00,10914.0
-2014-05-14 17:00:00,10809.0
-2014-05-14 18:00:00,10723.0
-2014-05-14 19:00:00,10653.0
-2014-05-14 20:00:00,10614.0
-2014-05-14 21:00:00,10683.0
-2014-05-14 22:00:00,11029.0
-2014-05-14 23:00:00,10685.0
-2014-05-15 00:00:00,9919.0
-2014-05-13 01:00:00,11165.0
-2014-05-13 02:00:00,10160.0
-2014-05-13 03:00:00,9669.0
-2014-05-13 04:00:00,9360.0
-2014-05-13 05:00:00,9276.0
-2014-05-13 06:00:00,9368.0
-2014-05-13 07:00:00,9896.0
-2014-05-13 08:00:00,10741.0
-2014-05-13 09:00:00,11577.0
-2014-05-13 10:00:00,12002.0
-2014-05-13 11:00:00,12082.0
-2014-05-13 12:00:00,12132.0
-2014-05-13 13:00:00,12046.0
-2014-05-13 14:00:00,11988.0
-2014-05-13 15:00:00,11919.0
-2014-05-13 16:00:00,11682.0
-2014-05-13 17:00:00,11507.0
-2014-05-13 18:00:00,11282.0
-2014-05-13 19:00:00,11115.0
-2014-05-13 20:00:00,10923.0
-2014-05-13 21:00:00,10939.0
-2014-05-13 22:00:00,11168.0
-2014-05-13 23:00:00,10780.0
-2014-05-14 00:00:00,9999.0
-2014-05-12 01:00:00,9212.0
-2014-05-12 02:00:00,8708.0
-2014-05-12 03:00:00,8440.0
-2014-05-12 04:00:00,8248.0
-2014-05-12 05:00:00,8227.0
-2014-05-12 06:00:00,8500.0
-2014-05-12 07:00:00,9193.0
-2014-05-12 08:00:00,10247.0
-2014-05-12 09:00:00,11394.0
-2014-05-12 10:00:00,12154.0
-2014-05-12 11:00:00,12718.0
-2014-05-12 12:00:00,13281.0
-2014-05-12 13:00:00,13604.0
-2014-05-12 14:00:00,13843.0
-2014-05-12 15:00:00,14151.0
-2014-05-12 16:00:00,14299.0
-2014-05-12 17:00:00,14384.0
-2014-05-12 18:00:00,14494.0
-2014-05-12 19:00:00,14482.0
-2014-05-12 20:00:00,14172.0
-2014-05-12 21:00:00,14060.0
-2014-05-12 22:00:00,14135.0
-2014-05-12 23:00:00,13442.0
-2014-05-13 00:00:00,12363.0
-2014-05-11 01:00:00,8869.0
-2014-05-11 02:00:00,8353.0
-2014-05-11 03:00:00,8039.0
-2014-05-11 04:00:00,7787.0
-2014-05-11 05:00:00,7649.0
-2014-05-11 06:00:00,7583.0
-2014-05-11 07:00:00,7565.0
-2014-05-11 08:00:00,7506.0
-2014-05-11 09:00:00,8012.0
-2014-05-11 10:00:00,8411.0
-2014-05-11 11:00:00,8875.0
-2014-05-11 12:00:00,9245.0
-2014-05-11 13:00:00,9554.0
-2014-05-11 14:00:00,9841.0
-2014-05-11 15:00:00,10117.0
-2014-05-11 16:00:00,10401.0
-2014-05-11 17:00:00,10490.0
-2014-05-11 18:00:00,10516.0
-2014-05-11 19:00:00,10721.0
-2014-05-11 20:00:00,10721.0
-2014-05-11 21:00:00,10696.0
-2014-05-11 22:00:00,10768.0
-2014-05-11 23:00:00,10480.0
-2014-05-12 00:00:00,9860.0
-2014-05-10 01:00:00,9277.0
-2014-05-10 02:00:00,8713.0
-2014-05-10 03:00:00,8282.0
-2014-05-10 04:00:00,7980.0
-2014-05-10 05:00:00,7868.0
-2014-05-10 06:00:00,7906.0
-2014-05-10 07:00:00,7933.0
-2014-05-10 08:00:00,8133.0
-2014-05-10 09:00:00,8619.0
-2014-05-10 10:00:00,9172.0
-2014-05-10 11:00:00,9507.0
-2014-05-10 12:00:00,9801.0
-2014-05-10 13:00:00,9909.0
-2014-05-10 14:00:00,9951.0
-2014-05-10 15:00:00,9863.0
-2014-05-10 16:00:00,9907.0
-2014-05-10 17:00:00,9898.0
-2014-05-10 18:00:00,9955.0
-2014-05-10 19:00:00,9935.0
-2014-05-10 20:00:00,9832.0
-2014-05-10 21:00:00,9740.0
-2014-05-10 22:00:00,10064.0
-2014-05-10 23:00:00,9987.0
-2014-05-11 00:00:00,9449.0
-2014-05-09 01:00:00,10891.0
-2014-05-09 02:00:00,10097.0
-2014-05-09 03:00:00,9589.0
-2014-05-09 04:00:00,9240.0
-2014-05-09 05:00:00,9017.0
-2014-05-09 06:00:00,9141.0
-2014-05-09 07:00:00,9720.0
-2014-05-09 08:00:00,10663.0
-2014-05-09 09:00:00,11496.0
-2014-05-09 10:00:00,11914.0
-2014-05-09 11:00:00,12081.0
-2014-05-09 12:00:00,12300.0
-2014-05-09 13:00:00,12428.0
-2014-05-09 14:00:00,12505.0
-2014-05-09 15:00:00,12546.0
-2014-05-09 16:00:00,12397.0
-2014-05-09 17:00:00,12253.0
-2014-05-09 18:00:00,12080.0
-2014-05-09 19:00:00,11750.0
-2014-05-09 20:00:00,11315.0
-2014-05-09 21:00:00,10932.0
-2014-05-09 22:00:00,11112.0
-2014-05-09 23:00:00,10792.0
-2014-05-10 00:00:00,10085.0
-2014-05-08 01:00:00,9200.0
-2014-05-08 02:00:00,8733.0
-2014-05-08 03:00:00,8435.0
-2014-05-08 04:00:00,8219.0
-2014-05-08 05:00:00,8187.0
-2014-05-08 06:00:00,8379.0
-2014-05-08 07:00:00,9001.0
-2014-05-08 08:00:00,9820.0
-2014-05-08 09:00:00,10730.0
-2014-05-08 10:00:00,11290.0
-2014-05-08 11:00:00,11637.0
-2014-05-08 12:00:00,11947.0
-2014-05-08 13:00:00,12197.0
-2014-05-08 14:00:00,12455.0
-2014-05-08 15:00:00,12863.0
-2014-05-08 16:00:00,13090.0
-2014-05-08 17:00:00,13222.0
-2014-05-08 18:00:00,13366.0
-2014-05-08 19:00:00,13197.0
-2014-05-08 20:00:00,12876.0
-2014-05-08 21:00:00,12850.0
-2014-05-08 22:00:00,13223.0
-2014-05-08 23:00:00,12849.0
-2014-05-09 00:00:00,11929.0
-2014-05-07 01:00:00,9064.0
-2014-05-07 02:00:00,8564.0
-2014-05-07 03:00:00,8267.0
-2014-05-07 04:00:00,8106.0
-2014-05-07 05:00:00,8071.0
-2014-05-07 06:00:00,8282.0
-2014-05-07 07:00:00,8890.0
-2014-05-07 08:00:00,9629.0
-2014-05-07 09:00:00,10324.0
-2014-05-07 10:00:00,10649.0
-2014-05-07 11:00:00,10865.0
-2014-05-07 12:00:00,11091.0
-2014-05-07 13:00:00,11165.0
-2014-05-07 14:00:00,11254.0
-2014-05-07 15:00:00,11411.0
-2014-05-07 16:00:00,11413.0
-2014-05-07 17:00:00,11408.0
-2014-05-07 18:00:00,11098.0
-2014-05-07 19:00:00,10900.0
-2014-05-07 20:00:00,10622.0
-2014-05-07 21:00:00,10561.0
-2014-05-07 22:00:00,11068.0
-2014-05-07 23:00:00,10753.0
-2014-05-08 00:00:00,9997.0
-2014-05-06 01:00:00,9199.0
-2014-05-06 02:00:00,8768.0
-2014-05-06 03:00:00,8496.0
-2014-05-06 04:00:00,8342.0
-2014-05-06 05:00:00,8314.0
-2014-05-06 06:00:00,8531.0
-2014-05-06 07:00:00,9172.0
-2014-05-06 08:00:00,9919.0
-2014-05-06 09:00:00,10552.0
-2014-05-06 10:00:00,10774.0
-2014-05-06 11:00:00,10879.0
-2014-05-06 12:00:00,11011.0
-2014-05-06 13:00:00,11016.0
-2014-05-06 14:00:00,11002.0
-2014-05-06 15:00:00,11010.0
-2014-05-06 16:00:00,10906.0
-2014-05-06 17:00:00,10759.0
-2014-05-06 18:00:00,10627.0
-2014-05-06 19:00:00,10452.0
-2014-05-06 20:00:00,10299.0
-2014-05-06 21:00:00,10472.0
-2014-05-06 22:00:00,10942.0
-2014-05-06 23:00:00,10561.0
-2014-05-07 00:00:00,9816.0
-2014-05-05 01:00:00,8506.0
-2014-05-05 02:00:00,8169.0
-2014-05-05 03:00:00,8025.0
-2014-05-05 04:00:00,7934.0
-2014-05-05 05:00:00,7982.0
-2014-05-05 06:00:00,8239.0
-2014-05-05 07:00:00,9011.0
-2014-05-05 08:00:00,10021.0
-2014-05-05 09:00:00,10669.0
-2014-05-05 10:00:00,10893.0
-2014-05-05 11:00:00,11008.0
-2014-05-05 12:00:00,11041.0
-2014-05-05 13:00:00,10991.0
-2014-05-05 14:00:00,10920.0
-2014-05-05 15:00:00,10909.0
-2014-05-05 16:00:00,10783.0
-2014-05-05 17:00:00,10617.0
-2014-05-05 18:00:00,10502.0
-2014-05-05 19:00:00,10367.0
-2014-05-05 20:00:00,10225.0
-2014-05-05 21:00:00,10370.0
-2014-05-05 22:00:00,10953.0
-2014-05-05 23:00:00,10664.0
-2014-05-06 00:00:00,9934.0
-2014-05-04 01:00:00,8408.0
-2014-05-04 02:00:00,8009.0
-2014-05-04 03:00:00,7743.0
-2014-05-04 04:00:00,7560.0
-2014-05-04 05:00:00,7465.0
-2014-05-04 06:00:00,7483.0
-2014-05-04 07:00:00,7524.0
-2014-05-04 08:00:00,7469.0
-2014-05-04 09:00:00,7752.0
-2014-05-04 10:00:00,8112.0
-2014-05-04 11:00:00,8381.0
-2014-05-04 12:00:00,8582.0
-2014-05-04 13:00:00,8602.0
-2014-05-04 14:00:00,8635.0
-2014-05-04 15:00:00,8663.0
-2014-05-04 16:00:00,8623.0
-2014-05-04 17:00:00,8607.0
-2014-05-04 18:00:00,8603.0
-2014-05-04 19:00:00,8666.0
-2014-05-04 20:00:00,8710.0
-2014-05-04 21:00:00,9001.0
-2014-05-04 22:00:00,9639.0
-2014-05-04 23:00:00,9538.0
-2014-05-05 00:00:00,9042.0
-2014-05-03 01:00:00,9325.0
-2014-05-03 02:00:00,8747.0
-2014-05-03 03:00:00,8439.0
-2014-05-03 04:00:00,8207.0
-2014-05-03 05:00:00,8127.0
-2014-05-03 06:00:00,8153.0
-2014-05-03 07:00:00,8360.0
-2014-05-03 08:00:00,8528.0
-2014-05-03 09:00:00,8857.0
-2014-05-03 10:00:00,9159.0
-2014-05-03 11:00:00,9344.0
-2014-05-03 12:00:00,9482.0
-2014-05-03 13:00:00,9437.0
-2014-05-03 14:00:00,9390.0
-2014-05-03 15:00:00,9237.0
-2014-05-03 16:00:00,9107.0
-2014-05-03 17:00:00,9046.0
-2014-05-03 18:00:00,8995.0
-2014-05-03 19:00:00,8987.0
-2014-05-03 20:00:00,8950.0
-2014-05-03 21:00:00,9167.0
-2014-05-03 22:00:00,9623.0
-2014-05-03 23:00:00,9429.0
-2014-05-04 00:00:00,8931.0
-2014-05-02 01:00:00,9406.0
-2014-05-02 02:00:00,8909.0
-2014-05-02 03:00:00,8596.0
-2014-05-02 04:00:00,8394.0
-2014-05-02 05:00:00,8376.0
-2014-05-02 06:00:00,8588.0
-2014-05-02 07:00:00,9227.0
-2014-05-02 08:00:00,10038.0
-2014-05-02 09:00:00,10689.0
-2014-05-02 10:00:00,11008.0
-2014-05-02 11:00:00,11160.0
-2014-05-02 12:00:00,11233.0
-2014-05-02 13:00:00,11191.0
-2014-05-02 14:00:00,11170.0
-2014-05-02 15:00:00,11157.0
-2014-05-02 16:00:00,11046.0
-2014-05-02 17:00:00,10900.0
-2014-05-02 18:00:00,10803.0
-2014-05-02 19:00:00,10610.0
-2014-05-02 20:00:00,10514.0
-2014-05-02 21:00:00,10711.0
-2014-05-02 22:00:00,10890.0
-2014-05-02 23:00:00,10624.0
-2014-05-03 00:00:00,9992.0
-2014-05-01 01:00:00,9352.0
-2014-05-01 02:00:00,8880.0
-2014-05-01 03:00:00,8602.0
-2014-05-01 04:00:00,8468.0
-2014-05-01 05:00:00,8419.0
-2014-05-01 06:00:00,8660.0
-2014-05-01 07:00:00,9335.0
-2014-05-01 08:00:00,10308.0
-2014-05-01 09:00:00,10973.0
-2014-05-01 10:00:00,11273.0
-2014-05-01 11:00:00,11439.0
-2014-05-01 12:00:00,11543.0
-2014-05-01 13:00:00,11482.0
-2014-05-01 14:00:00,11375.0
-2014-05-01 15:00:00,11407.0
-2014-05-01 16:00:00,11291.0
-2014-05-01 17:00:00,11206.0
-2014-05-01 18:00:00,11192.0
-2014-05-01 19:00:00,11126.0
-2014-05-01 20:00:00,10964.0
-2014-05-01 21:00:00,11103.0
-2014-05-01 22:00:00,11343.0
-2014-05-01 23:00:00,10941.0
-2014-05-02 00:00:00,10190.0
-2014-04-30 01:00:00,9103.0
-2014-04-30 02:00:00,8621.0
-2014-04-30 03:00:00,8358.0
-2014-04-30 04:00:00,8171.0
-2014-04-30 05:00:00,8150.0
-2014-04-30 06:00:00,8318.0
-2014-04-30 07:00:00,9011.0
-2014-04-30 08:00:00,9868.0
-2014-04-30 09:00:00,10545.0
-2014-04-30 10:00:00,10877.0
-2014-04-30 11:00:00,11019.0
-2014-04-30 12:00:00,11154.0
-2014-04-30 13:00:00,11132.0
-2014-04-30 14:00:00,11080.0
-2014-04-30 15:00:00,11105.0
-2014-04-30 16:00:00,11020.0
-2014-04-30 17:00:00,10945.0
-2014-04-30 18:00:00,10927.0
-2014-04-30 19:00:00,10887.0
-2014-04-30 20:00:00,10777.0
-2014-04-30 21:00:00,10902.0
-2014-04-30 22:00:00,11199.0
-2014-04-30 23:00:00,10844.0
-2014-05-01 00:00:00,10097.0
-2014-04-29 01:00:00,9233.0
-2014-04-29 02:00:00,8772.0
-2014-04-29 03:00:00,8466.0
-2014-04-29 04:00:00,8317.0
-2014-04-29 05:00:00,8247.0
-2014-04-29 06:00:00,8432.0
-2014-04-29 07:00:00,9078.0
-2014-04-29 08:00:00,9949.0
-2014-04-29 09:00:00,10611.0
-2014-04-29 10:00:00,10887.0
-2014-04-29 11:00:00,11001.0
-2014-04-29 12:00:00,11105.0
-2014-04-29 13:00:00,11149.0
-2014-04-29 14:00:00,11184.0
-2014-04-29 15:00:00,11155.0
-2014-04-29 16:00:00,11047.0
-2014-04-29 17:00:00,10885.0
-2014-04-29 18:00:00,10792.0
-2014-04-29 19:00:00,10703.0
-2014-04-29 20:00:00,10548.0
-2014-04-29 21:00:00,10777.0
-2014-04-29 22:00:00,11011.0
-2014-04-29 23:00:00,10603.0
-2014-04-30 00:00:00,9832.0
-2014-04-28 01:00:00,8574.0
-2014-04-28 02:00:00,8287.0
-2014-04-28 03:00:00,8125.0
-2014-04-28 04:00:00,7949.0
-2014-04-28 05:00:00,8020.0
-2014-04-28 06:00:00,8255.0
-2014-04-28 07:00:00,9086.0
-2014-04-28 08:00:00,10200.0
-2014-04-28 09:00:00,10975.0
-2014-04-28 10:00:00,11137.0
-2014-04-28 11:00:00,11215.0
-2014-04-28 12:00:00,11390.0
-2014-04-28 13:00:00,11527.0
-2014-04-28 14:00:00,11412.0
-2014-04-28 15:00:00,11329.0
-2014-04-28 16:00:00,11176.0
-2014-04-28 17:00:00,11052.0
-2014-04-28 18:00:00,11018.0
-2014-04-28 19:00:00,11099.0
-2014-04-28 20:00:00,11052.0
-2014-04-28 21:00:00,11214.0
-2014-04-28 22:00:00,11269.0
-2014-04-28 23:00:00,10797.0
-2014-04-29 00:00:00,9972.0
-2014-04-27 01:00:00,8842.0
-2014-04-27 02:00:00,8390.0
-2014-04-27 03:00:00,8153.0
-2014-04-27 04:00:00,7970.0
-2014-04-27 05:00:00,7883.0
-2014-04-27 06:00:00,7846.0
-2014-04-27 07:00:00,8028.0
-2014-04-27 08:00:00,8060.0
-2014-04-27 09:00:00,8307.0
-2014-04-27 10:00:00,8667.0
-2014-04-27 11:00:00,8886.0
-2014-04-27 12:00:00,8911.0
-2014-04-27 13:00:00,8988.0
-2014-04-27 14:00:00,8946.0
-2014-04-27 15:00:00,8916.0
-2014-04-27 16:00:00,8869.0
-2014-04-27 17:00:00,8837.0
-2014-04-27 18:00:00,8882.0
-2014-04-27 19:00:00,9116.0
-2014-04-27 20:00:00,9391.0
-2014-04-27 21:00:00,9734.0
-2014-04-27 22:00:00,9821.0
-2014-04-27 23:00:00,9558.0
-2014-04-28 00:00:00,9050.0
-2014-04-26 01:00:00,9119.0
-2014-04-26 02:00:00,8584.0
-2014-04-26 03:00:00,8230.0
-2014-04-26 04:00:00,8036.0
-2014-04-26 05:00:00,7899.0
-2014-04-26 06:00:00,7962.0
-2014-04-26 07:00:00,8149.0
-2014-04-26 08:00:00,8280.0
-2014-04-26 09:00:00,8683.0
-2014-04-26 10:00:00,9106.0
-2014-04-26 11:00:00,9315.0
-2014-04-26 12:00:00,9465.0
-2014-04-26 13:00:00,9452.0
-2014-04-26 14:00:00,9355.0
-2014-04-26 15:00:00,9179.0
-2014-04-26 16:00:00,9089.0
-2014-04-26 17:00:00,9002.0
-2014-04-26 18:00:00,9005.0
-2014-04-26 19:00:00,9007.0
-2014-04-26 20:00:00,9088.0
-2014-04-26 21:00:00,9431.0
-2014-04-26 22:00:00,10004.0
-2014-04-26 23:00:00,9829.0
-2014-04-27 00:00:00,9391.0
-2014-04-25 01:00:00,9179.0
-2014-04-25 02:00:00,8688.0
-2014-04-25 03:00:00,8447.0
-2014-04-25 04:00:00,8300.0
-2014-04-25 05:00:00,8217.0
-2014-04-25 06:00:00,8407.0
-2014-04-25 07:00:00,9076.0
-2014-04-25 08:00:00,9996.0
-2014-04-25 09:00:00,10628.0
-2014-04-25 10:00:00,10850.0
-2014-04-25 11:00:00,10864.0
-2014-04-25 12:00:00,10946.0
-2014-04-25 13:00:00,10974.0
-2014-04-25 14:00:00,10978.0
-2014-04-25 15:00:00,11023.0
-2014-04-25 16:00:00,10975.0
-2014-04-25 17:00:00,10825.0
-2014-04-25 18:00:00,10678.0
-2014-04-25 19:00:00,10473.0
-2014-04-25 20:00:00,10242.0
-2014-04-25 21:00:00,10348.0
-2014-04-25 22:00:00,10704.0
-2014-04-25 23:00:00,10409.0
-2014-04-26 00:00:00,9752.0
-2014-04-24 01:00:00,9497.0
-2014-04-24 02:00:00,9000.0
-2014-04-24 03:00:00,8705.0
-2014-04-24 04:00:00,8545.0
-2014-04-24 05:00:00,8498.0
-2014-04-24 06:00:00,8763.0
-2014-04-24 07:00:00,9439.0
-2014-04-24 08:00:00,10288.0
-2014-04-24 09:00:00,10942.0
-2014-04-24 10:00:00,11196.0
-2014-04-24 11:00:00,11213.0
-2014-04-24 12:00:00,11278.0
-2014-04-24 13:00:00,11253.0
-2014-04-24 14:00:00,11199.0
-2014-04-24 15:00:00,11235.0
-2014-04-24 16:00:00,11107.0
-2014-04-24 17:00:00,10957.0
-2014-04-24 18:00:00,10856.0
-2014-04-24 19:00:00,10766.0
-2014-04-24 20:00:00,10704.0
-2014-04-24 21:00:00,11043.0
-2014-04-24 22:00:00,11145.0
-2014-04-24 23:00:00,10663.0
-2014-04-25 00:00:00,9886.0
-2014-04-23 01:00:00,9296.0
-2014-04-23 02:00:00,8853.0
-2014-04-23 03:00:00,8558.0
-2014-04-23 04:00:00,8436.0
-2014-04-23 05:00:00,8446.0
-2014-04-23 06:00:00,8722.0
-2014-04-23 07:00:00,9437.0
-2014-04-23 08:00:00,10247.0
-2014-04-23 09:00:00,10836.0
-2014-04-23 10:00:00,11108.0
-2014-04-23 11:00:00,11176.0
-2014-04-23 12:00:00,11210.0
-2014-04-23 13:00:00,11158.0
-2014-04-23 14:00:00,11091.0
-2014-04-23 15:00:00,11084.0
-2014-04-23 16:00:00,10973.0
-2014-04-23 17:00:00,10805.0
-2014-04-23 18:00:00,10696.0
-2014-04-23 19:00:00,10644.0
-2014-04-23 20:00:00,10656.0
-2014-04-23 21:00:00,11091.0
-2014-04-23 22:00:00,11317.0
-2014-04-23 23:00:00,10903.0
-2014-04-24 00:00:00,10191.0
-2014-04-22 01:00:00,9224.0
-2014-04-22 02:00:00,8687.0
-2014-04-22 03:00:00,8340.0
-2014-04-22 04:00:00,8098.0
-2014-04-22 05:00:00,8011.0
-2014-04-22 06:00:00,8211.0
-2014-04-22 07:00:00,8822.0
-2014-04-22 08:00:00,9615.0
-2014-04-22 09:00:00,10316.0
-2014-04-22 10:00:00,10646.0
-2014-04-22 11:00:00,10804.0
-2014-04-22 12:00:00,10903.0
-2014-04-22 13:00:00,10879.0
-2014-04-22 14:00:00,10853.0
-2014-04-22 15:00:00,10903.0
-2014-04-22 16:00:00,10799.0
-2014-04-22 17:00:00,10658.0
-2014-04-22 18:00:00,10537.0
-2014-04-22 19:00:00,10429.0
-2014-04-22 20:00:00,10273.0
-2014-04-22 21:00:00,10555.0
-2014-04-22 22:00:00,11041.0
-2014-04-22 23:00:00,10688.0
-2014-04-23 00:00:00,10006.0
-2014-04-21 01:00:00,8299.0
-2014-04-21 02:00:00,7913.0
-2014-04-21 03:00:00,7728.0
-2014-04-21 04:00:00,7554.0
-2014-04-21 05:00:00,7563.0
-2014-04-21 06:00:00,7777.0
-2014-04-21 07:00:00,8472.0
-2014-04-21 08:00:00,9313.0
-2014-04-21 09:00:00,10142.0
-2014-04-21 10:00:00,10638.0
-2014-04-21 11:00:00,10929.0
-2014-04-21 12:00:00,11170.0
-2014-04-21 13:00:00,11275.0
-2014-04-21 14:00:00,11387.0
-2014-04-21 15:00:00,11526.0
-2014-04-21 16:00:00,11511.0
-2014-04-21 17:00:00,11367.0
-2014-04-21 18:00:00,11280.0
-2014-04-21 19:00:00,11238.0
-2014-04-21 20:00:00,11136.0
-2014-04-21 21:00:00,11299.0
-2014-04-21 22:00:00,11352.0
-2014-04-21 23:00:00,10827.0
-2014-04-22 00:00:00,10019.0
-2014-04-20 01:00:00,8582.0
-2014-04-20 02:00:00,8148.0
-2014-04-20 03:00:00,7833.0
-2014-04-20 04:00:00,7678.0
-2014-04-20 05:00:00,7548.0
-2014-04-20 06:00:00,7610.0
-2014-04-20 07:00:00,7681.0
-2014-04-20 08:00:00,7705.0
-2014-04-20 09:00:00,7878.0
-2014-04-20 10:00:00,8174.0
-2014-04-20 11:00:00,8309.0
-2014-04-20 12:00:00,8464.0
-2014-04-20 13:00:00,8501.0
-2014-04-20 14:00:00,8547.0
-2014-04-20 15:00:00,8480.0
-2014-04-20 16:00:00,8474.0
-2014-04-20 17:00:00,8433.0
-2014-04-20 18:00:00,8479.0
-2014-04-20 19:00:00,8502.0
-2014-04-20 20:00:00,8557.0
-2014-04-20 21:00:00,8961.0
-2014-04-20 22:00:00,9530.0
-2014-04-20 23:00:00,9341.0
-2014-04-21 00:00:00,8838.0
-2014-04-19 01:00:00,9149.0
-2014-04-19 02:00:00,8726.0
-2014-04-19 03:00:00,8438.0
-2014-04-19 04:00:00,8282.0
-2014-04-19 05:00:00,8208.0
-2014-04-19 06:00:00,8280.0
-2014-04-19 07:00:00,8533.0
-2014-04-19 08:00:00,8677.0
-2014-04-19 09:00:00,8977.0
-2014-04-19 10:00:00,9291.0
-2014-04-19 11:00:00,9461.0
-2014-04-19 12:00:00,9502.0
-2014-04-19 13:00:00,9430.0
-2014-04-19 14:00:00,9334.0
-2014-04-19 15:00:00,9200.0
-2014-04-19 16:00:00,9069.0
-2014-04-19 17:00:00,9049.0
-2014-04-19 18:00:00,8983.0
-2014-04-19 19:00:00,8989.0
-2014-04-19 20:00:00,8982.0
-2014-04-19 21:00:00,9326.0
-2014-04-19 22:00:00,9790.0
-2014-04-19 23:00:00,9572.0
-2014-04-20 00:00:00,9156.0
-2014-04-18 01:00:00,9192.0
-2014-04-18 02:00:00,8633.0
-2014-04-18 03:00:00,8353.0
-2014-04-18 04:00:00,8179.0
-2014-04-18 05:00:00,8132.0
-2014-04-18 06:00:00,8310.0
-2014-04-18 07:00:00,8843.0
-2014-04-18 08:00:00,9318.0
-2014-04-18 09:00:00,9713.0
-2014-04-18 10:00:00,9986.0
-2014-04-18 11:00:00,10138.0
-2014-04-18 12:00:00,10251.0
-2014-04-18 13:00:00,10217.0
-2014-04-18 14:00:00,10152.0
-2014-04-18 15:00:00,10107.0
-2014-04-18 16:00:00,9962.0
-2014-04-18 17:00:00,9852.0
-2014-04-18 18:00:00,9755.0
-2014-04-18 19:00:00,9702.0
-2014-04-18 20:00:00,9641.0
-2014-04-18 21:00:00,9979.0
-2014-04-18 22:00:00,10419.0
-2014-04-18 23:00:00,10277.0
-2014-04-19 00:00:00,9729.0
-2014-04-17 01:00:00,9758.0
-2014-04-17 02:00:00,9319.0
-2014-04-17 03:00:00,9012.0
-2014-04-17 04:00:00,8834.0
-2014-04-17 05:00:00,8860.0
-2014-04-17 06:00:00,9098.0
-2014-04-17 07:00:00,9798.0
-2014-04-17 08:00:00,10645.0
-2014-04-17 09:00:00,11153.0
-2014-04-17 10:00:00,11297.0
-2014-04-17 11:00:00,11342.0
-2014-04-17 12:00:00,11476.0
-2014-04-17 13:00:00,11268.0
-2014-04-17 14:00:00,11171.0
-2014-04-17 15:00:00,11176.0
-2014-04-17 16:00:00,11027.0
-2014-04-17 17:00:00,10831.0
-2014-04-17 18:00:00,10674.0
-2014-04-17 19:00:00,10512.0
-2014-04-17 20:00:00,10383.0
-2014-04-17 21:00:00,10712.0
-2014-04-17 22:00:00,10983.0
-2014-04-17 23:00:00,10612.0
-2014-04-18 00:00:00,9904.0
-2014-04-16 01:00:00,10172.0
-2014-04-16 02:00:00,9704.0
-2014-04-16 03:00:00,9455.0
-2014-04-16 04:00:00,9313.0
-2014-04-16 05:00:00,9346.0
-2014-04-16 06:00:00,9575.0
-2014-04-16 07:00:00,10285.0
-2014-04-16 08:00:00,11132.0
-2014-04-16 09:00:00,11630.0
-2014-04-16 10:00:00,11796.0
-2014-04-16 11:00:00,11818.0
-2014-04-16 12:00:00,11853.0
-2014-04-16 13:00:00,11735.0
-2014-04-16 14:00:00,11606.0
-2014-04-16 15:00:00,11499.0
-2014-04-16 16:00:00,11362.0
-2014-04-16 17:00:00,11109.0
-2014-04-16 18:00:00,11012.0
-2014-04-16 19:00:00,10928.0
-2014-04-16 20:00:00,10837.0
-2014-04-16 21:00:00,11347.0
-2014-04-16 22:00:00,11634.0
-2014-04-16 23:00:00,11246.0
-2014-04-17 00:00:00,10487.0
-2014-04-15 01:00:00,10120.0
-2014-04-15 02:00:00,9673.0
-2014-04-15 03:00:00,9404.0
-2014-04-15 04:00:00,9268.0
-2014-04-15 05:00:00,9285.0
-2014-04-15 06:00:00,9535.0
-2014-04-15 07:00:00,10266.0
-2014-04-15 08:00:00,11136.0
-2014-04-15 09:00:00,11664.0
-2014-04-15 10:00:00,11843.0
-2014-04-15 11:00:00,11882.0
-2014-04-15 12:00:00,11946.0
-2014-04-15 13:00:00,11940.0
-2014-04-15 14:00:00,11872.0
-2014-04-15 15:00:00,11853.0
-2014-04-15 16:00:00,11681.0
-2014-04-15 17:00:00,11567.0
-2014-04-15 18:00:00,11437.0
-2014-04-15 19:00:00,11410.0
-2014-04-15 20:00:00,11299.0
-2014-04-15 21:00:00,11681.0
-2014-04-15 22:00:00,12034.0
-2014-04-15 23:00:00,11627.0
-2014-04-16 00:00:00,10915.0
-2014-04-14 01:00:00,8709.0
-2014-04-14 02:00:00,8306.0
-2014-04-14 03:00:00,8110.0
-2014-04-14 04:00:00,7990.0
-2014-04-14 05:00:00,8015.0
-2014-04-14 06:00:00,8210.0
-2014-04-14 07:00:00,8968.0
-2014-04-14 08:00:00,10099.0
-2014-04-14 09:00:00,10908.0
-2014-04-14 10:00:00,11278.0
-2014-04-14 11:00:00,11460.0
-2014-04-14 12:00:00,11605.0
-2014-04-14 13:00:00,11642.0
-2014-04-14 14:00:00,11615.0
-2014-04-14 15:00:00,11566.0
-2014-04-14 16:00:00,11515.0
-2014-04-14 17:00:00,11544.0
-2014-04-14 18:00:00,11606.0
-2014-04-14 19:00:00,11702.0
-2014-04-14 20:00:00,11734.0
-2014-04-14 21:00:00,12043.0
-2014-04-14 22:00:00,12103.0
-2014-04-14 23:00:00,11631.0
-2014-04-15 00:00:00,10854.0
-2014-04-13 01:00:00,8841.0
-2014-04-13 02:00:00,8357.0
-2014-04-13 03:00:00,8053.0
-2014-04-13 04:00:00,7829.0
-2014-04-13 05:00:00,7724.0
-2014-04-13 06:00:00,7652.0
-2014-04-13 07:00:00,7718.0
-2014-04-13 08:00:00,7754.0
-2014-04-13 09:00:00,7893.0
-2014-04-13 10:00:00,8314.0
-2014-04-13 11:00:00,8620.0
-2014-04-13 12:00:00,8970.0
-2014-04-13 13:00:00,9038.0
-2014-04-13 14:00:00,9037.0
-2014-04-13 15:00:00,9036.0
-2014-04-13 16:00:00,9083.0
-2014-04-13 17:00:00,9164.0
-2014-04-13 18:00:00,9234.0
-2014-04-13 19:00:00,9347.0
-2014-04-13 20:00:00,9681.0
-2014-04-13 21:00:00,10031.0
-2014-04-13 22:00:00,10063.0
-2014-04-13 23:00:00,9752.0
-2014-04-14 00:00:00,9214.0
-2014-04-12 01:00:00,9188.0
-2014-04-12 02:00:00,8663.0
-2014-04-12 03:00:00,8304.0
-2014-04-12 04:00:00,8123.0
-2014-04-12 05:00:00,8026.0
-2014-04-12 06:00:00,8089.0
-2014-04-12 07:00:00,8345.0
-2014-04-12 08:00:00,8613.0
-2014-04-12 09:00:00,8937.0
-2014-04-12 10:00:00,9357.0
-2014-04-12 11:00:00,9626.0
-2014-04-12 12:00:00,9918.0
-2014-04-12 13:00:00,9975.0
-2014-04-12 14:00:00,9866.0
-2014-04-12 15:00:00,9706.0
-2014-04-12 16:00:00,9675.0
-2014-04-12 17:00:00,9605.0
-2014-04-12 18:00:00,9591.0
-2014-04-12 19:00:00,9571.0
-2014-04-12 20:00:00,9588.0
-2014-04-12 21:00:00,9986.0
-2014-04-12 22:00:00,10210.0
-2014-04-12 23:00:00,9936.0
-2014-04-13 00:00:00,9408.0
-2014-04-11 01:00:00,9232.0
-2014-04-11 02:00:00,8765.0
-2014-04-11 03:00:00,8509.0
-2014-04-11 04:00:00,8395.0
-2014-04-11 05:00:00,8394.0
-2014-04-11 06:00:00,8595.0
-2014-04-11 07:00:00,9311.0
-2014-04-11 08:00:00,10217.0
-2014-04-11 09:00:00,10710.0
-2014-04-11 10:00:00,10920.0
-2014-04-11 11:00:00,10988.0
-2014-04-11 12:00:00,11099.0
-2014-04-11 13:00:00,11099.0
-2014-04-11 14:00:00,11053.0
-2014-04-11 15:00:00,11066.0
-2014-04-11 16:00:00,10950.0
-2014-04-11 17:00:00,10790.0
-2014-04-11 18:00:00,10641.0
-2014-04-11 19:00:00,10459.0
-2014-04-11 20:00:00,10294.0
-2014-04-11 21:00:00,10590.0
-2014-04-11 22:00:00,10817.0
-2014-04-11 23:00:00,10442.0
-2014-04-12 00:00:00,9872.0
-2014-04-10 01:00:00,9376.0
-2014-04-10 02:00:00,8896.0
-2014-04-10 03:00:00,8614.0
-2014-04-10 04:00:00,8464.0
-2014-04-10 05:00:00,8443.0
-2014-04-10 06:00:00,8638.0
-2014-04-10 07:00:00,9320.0
-2014-04-10 08:00:00,10200.0
-2014-04-10 09:00:00,10761.0
-2014-04-10 10:00:00,11022.0
-2014-04-10 11:00:00,11137.0
-2014-04-10 12:00:00,11240.0
-2014-04-10 13:00:00,11222.0
-2014-04-10 14:00:00,11178.0
-2014-04-10 15:00:00,11175.0
-2014-04-10 16:00:00,11075.0
-2014-04-10 17:00:00,10907.0
-2014-04-10 18:00:00,10816.0
-2014-04-10 19:00:00,10699.0
-2014-04-10 20:00:00,10635.0
-2014-04-10 21:00:00,10899.0
-2014-04-10 22:00:00,11127.0
-2014-04-10 23:00:00,10707.0
-2014-04-11 00:00:00,9934.0
-2014-04-09 01:00:00,9476.0
-2014-04-09 02:00:00,9068.0
-2014-04-09 03:00:00,8810.0
-2014-04-09 04:00:00,8669.0
-2014-04-09 05:00:00,8723.0
-2014-04-09 06:00:00,8934.0
-2014-04-09 07:00:00,9693.0
-2014-04-09 08:00:00,10665.0
-2014-04-09 09:00:00,11073.0
-2014-04-09 10:00:00,11217.0
-2014-04-09 11:00:00,11214.0
-2014-04-09 12:00:00,11247.0
-2014-04-09 13:00:00,11204.0
-2014-04-09 14:00:00,11162.0
-2014-04-09 15:00:00,11132.0
-2014-04-09 16:00:00,11003.0
-2014-04-09 17:00:00,10886.0
-2014-04-09 18:00:00,10759.0
-2014-04-09 19:00:00,10646.0
-2014-04-09 20:00:00,10538.0
-2014-04-09 21:00:00,11064.0
-2014-04-09 22:00:00,11290.0
-2014-04-09 23:00:00,10840.0
-2014-04-10 00:00:00,10093.0
-2014-04-08 01:00:00,9582.0
-2014-04-08 02:00:00,9111.0
-2014-04-08 03:00:00,8809.0
-2014-04-08 04:00:00,8696.0
-2014-04-08 05:00:00,8658.0
-2014-04-08 06:00:00,8886.0
-2014-04-08 07:00:00,9587.0
-2014-04-08 08:00:00,10600.0
-2014-04-08 09:00:00,11121.0
-2014-04-08 10:00:00,11329.0
-2014-04-08 11:00:00,11360.0
-2014-04-08 12:00:00,11395.0
-2014-04-08 13:00:00,11305.0
-2014-04-08 14:00:00,11230.0
-2014-04-08 15:00:00,11224.0
-2014-04-08 16:00:00,11081.0
-2014-04-08 17:00:00,10941.0
-2014-04-08 18:00:00,10866.0
-2014-04-08 19:00:00,10795.0
-2014-04-08 20:00:00,10665.0
-2014-04-08 21:00:00,11084.0
-2014-04-08 22:00:00,11342.0
-2014-04-08 23:00:00,10916.0
-2014-04-09 00:00:00,10188.0
-2014-04-07 01:00:00,8896.0
-2014-04-07 02:00:00,8575.0
-2014-04-07 03:00:00,8418.0
-2014-04-07 04:00:00,8389.0
-2014-04-07 05:00:00,8465.0
-2014-04-07 06:00:00,8782.0
-2014-04-07 07:00:00,9564.0
-2014-04-07 08:00:00,10609.0
-2014-04-07 09:00:00,11246.0
-2014-04-07 10:00:00,11512.0
-2014-04-07 11:00:00,11568.0
-2014-04-07 12:00:00,11549.0
-2014-04-07 13:00:00,11465.0
-2014-04-07 14:00:00,11374.0
-2014-04-07 15:00:00,11373.0
-2014-04-07 16:00:00,11245.0
-2014-04-07 17:00:00,11137.0
-2014-04-07 18:00:00,11077.0
-2014-04-07 19:00:00,11097.0
-2014-04-07 20:00:00,11074.0
-2014-04-07 21:00:00,11513.0
-2014-04-07 22:00:00,11538.0
-2014-04-07 23:00:00,11104.0
-2014-04-08 00:00:00,10362.0
-2014-04-06 01:00:00,9321.0
-2014-04-06 02:00:00,8926.0
-2014-04-06 03:00:00,8698.0
-2014-04-06 04:00:00,8572.0
-2014-04-06 05:00:00,8503.0
-2014-04-06 06:00:00,8569.0
-2014-04-06 07:00:00,8716.0
-2014-04-06 08:00:00,8838.0
-2014-04-06 09:00:00,8884.0
-2014-04-06 10:00:00,9015.0
-2014-04-06 11:00:00,9130.0
-2014-04-06 12:00:00,9148.0
-2014-04-06 13:00:00,9105.0
-2014-04-06 14:00:00,9108.0
-2014-04-06 15:00:00,9040.0
-2014-04-06 16:00:00,8942.0
-2014-04-06 17:00:00,8848.0
-2014-04-06 18:00:00,8960.0
-2014-04-06 19:00:00,9105.0
-2014-04-06 20:00:00,9293.0
-2014-04-06 21:00:00,9842.0
-2014-04-06 22:00:00,10131.0
-2014-04-06 23:00:00,9849.0
-2014-04-07 00:00:00,9399.0
-2014-04-05 01:00:00,10347.0
-2014-04-05 02:00:00,9759.0
-2014-04-05 03:00:00,9424.0
-2014-04-05 04:00:00,9194.0
-2014-04-05 05:00:00,9125.0
-2014-04-05 06:00:00,9176.0
-2014-04-05 07:00:00,9475.0
-2014-04-05 08:00:00,9828.0
-2014-04-05 09:00:00,9999.0
-2014-04-05 10:00:00,10228.0
-2014-04-05 11:00:00,10298.0
-2014-04-05 12:00:00,10259.0
-2014-04-05 13:00:00,10109.0
-2014-04-05 14:00:00,9938.0
-2014-04-05 15:00:00,9734.0
-2014-04-05 16:00:00,9564.0
-2014-04-05 17:00:00,9406.0
-2014-04-05 18:00:00,9349.0
-2014-04-05 19:00:00,9351.0
-2014-04-05 20:00:00,9451.0
-2014-04-05 21:00:00,9971.0
-2014-04-05 22:00:00,10355.0
-2014-04-05 23:00:00,10215.0
-2014-04-06 00:00:00,9801.0
-2014-04-04 01:00:00,10164.0
-2014-04-04 02:00:00,9662.0
-2014-04-04 03:00:00,9305.0
-2014-04-04 04:00:00,9164.0
-2014-04-04 05:00:00,9111.0
-2014-04-04 06:00:00,9330.0
-2014-04-04 07:00:00,9995.0
-2014-04-04 08:00:00,11075.0
-2014-04-04 09:00:00,11678.0
-2014-04-04 10:00:00,11833.0
-2014-04-04 11:00:00,11910.0
-2014-04-04 12:00:00,12086.0
-2014-04-04 13:00:00,12149.0
-2014-04-04 14:00:00,12121.0
-2014-04-04 15:00:00,12165.0
-2014-04-04 16:00:00,12053.0
-2014-04-04 17:00:00,11990.0
-2014-04-04 18:00:00,11939.0
-2014-04-04 19:00:00,11871.0
-2014-04-04 20:00:00,11857.0
-2014-04-04 21:00:00,12097.0
-2014-04-04 22:00:00,11988.0
-2014-04-04 23:00:00,11621.0
-2014-04-05 00:00:00,11004.0
-2014-04-03 01:00:00,10083.0
-2014-04-03 02:00:00,9599.0
-2014-04-03 03:00:00,9297.0
-2014-04-03 04:00:00,9142.0
-2014-04-03 05:00:00,9067.0
-2014-04-03 06:00:00,9309.0
-2014-04-03 07:00:00,10069.0
-2014-04-03 08:00:00,11245.0
-2014-04-03 09:00:00,12072.0
-2014-04-03 10:00:00,12389.0
-2014-04-03 11:00:00,12454.0
-2014-04-03 12:00:00,12436.0
-2014-04-03 13:00:00,12371.0
-2014-04-03 14:00:00,12297.0
-2014-04-03 15:00:00,12299.0
-2014-04-03 16:00:00,12213.0
-2014-04-03 17:00:00,12093.0
-2014-04-03 18:00:00,12086.0
-2014-04-03 19:00:00,12038.0
-2014-04-03 20:00:00,11987.0
-2014-04-03 21:00:00,12322.0
-2014-04-03 22:00:00,12191.0
-2014-04-03 23:00:00,11720.0
-2014-04-04 00:00:00,10895.0
-2014-04-02 01:00:00,9795.0
-2014-04-02 02:00:00,9308.0
-2014-04-02 03:00:00,9034.0
-2014-04-02 04:00:00,8858.0
-2014-04-02 05:00:00,8879.0
-2014-04-02 06:00:00,9153.0
-2014-04-02 07:00:00,9898.0
-2014-04-02 08:00:00,10966.0
-2014-04-02 09:00:00,11405.0
-2014-04-02 10:00:00,11598.0
-2014-04-02 11:00:00,11642.0
-2014-04-02 12:00:00,11636.0
-2014-04-02 13:00:00,11573.0
-2014-04-02 14:00:00,11472.0
-2014-04-02 15:00:00,11479.0
-2014-04-02 16:00:00,11342.0
-2014-04-02 17:00:00,11203.0
-2014-04-02 18:00:00,11215.0
-2014-04-02 19:00:00,11329.0
-2014-04-02 20:00:00,11500.0
-2014-04-02 21:00:00,12030.0
-2014-04-02 22:00:00,12002.0
-2014-04-02 23:00:00,11574.0
-2014-04-03 00:00:00,10801.0
-2014-04-01 01:00:00,9407.0
-2014-04-01 02:00:00,8906.0
-2014-04-01 03:00:00,8580.0
-2014-04-01 04:00:00,8468.0
-2014-04-01 05:00:00,8477.0
-2014-04-01 06:00:00,8718.0
-2014-04-01 07:00:00,9433.0
-2014-04-01 08:00:00,10727.0
-2014-04-01 09:00:00,11429.0
-2014-04-01 10:00:00,11804.0
-2014-04-01 11:00:00,11924.0
-2014-04-01 12:00:00,12088.0
-2014-04-01 13:00:00,12072.0
-2014-04-01 14:00:00,11956.0
-2014-04-01 15:00:00,11856.0
-2014-04-01 16:00:00,11637.0
-2014-04-01 17:00:00,11390.0
-2014-04-01 18:00:00,11166.0
-2014-04-01 19:00:00,11081.0
-2014-04-01 20:00:00,11103.0
-2014-04-01 21:00:00,11707.0
-2014-04-01 22:00:00,11722.0
-2014-04-01 23:00:00,11277.0
-2014-04-02 00:00:00,10535.0
-2014-03-31 01:00:00,9112.0
-2014-03-31 02:00:00,8791.0
-2014-03-31 03:00:00,8598.0
-2014-03-31 04:00:00,8532.0
-2014-03-31 05:00:00,8566.0
-2014-03-31 06:00:00,8860.0
-2014-03-31 07:00:00,9644.0
-2014-03-31 08:00:00,10647.0
-2014-03-31 09:00:00,11147.0
-2014-03-31 10:00:00,11354.0
-2014-03-31 11:00:00,11404.0
-2014-03-31 12:00:00,11412.0
-2014-03-31 13:00:00,11366.0
-2014-03-31 14:00:00,11327.0
-2014-03-31 15:00:00,11351.0
-2014-03-31 16:00:00,11196.0
-2014-03-31 17:00:00,11087.0
-2014-03-31 18:00:00,10991.0
-2014-03-31 19:00:00,10932.0
-2014-03-31 20:00:00,10839.0
-2014-03-31 21:00:00,11324.0
-2014-03-31 22:00:00,11355.0
-2014-03-31 23:00:00,10893.0
-2014-04-01 00:00:00,10104.0
-2014-03-30 01:00:00,9950.0
-2014-03-30 02:00:00,9585.0
-2014-03-30 03:00:00,9301.0
-2014-03-30 04:00:00,9172.0
-2014-03-30 05:00:00,9108.0
-2014-03-30 06:00:00,9170.0
-2014-03-30 07:00:00,9304.0
-2014-03-30 08:00:00,9481.0
-2014-03-30 09:00:00,9458.0
-2014-03-30 10:00:00,9604.0
-2014-03-30 11:00:00,9645.0
-2014-03-30 12:00:00,9641.0
-2014-03-30 13:00:00,9589.0
-2014-03-30 14:00:00,9495.0
-2014-03-30 15:00:00,9380.0
-2014-03-30 16:00:00,9258.0
-2014-03-30 17:00:00,9173.0
-2014-03-30 18:00:00,9147.0
-2014-03-30 19:00:00,9255.0
-2014-03-30 20:00:00,9430.0
-2014-03-30 21:00:00,10186.0
-2014-03-30 22:00:00,10353.0
-2014-03-30 23:00:00,10121.0
-2014-03-31 00:00:00,9627.0
-2014-03-29 01:00:00,10225.0
-2014-03-29 02:00:00,9737.0
-2014-03-29 03:00:00,9469.0
-2014-03-29 04:00:00,9261.0
-2014-03-29 05:00:00,9228.0
-2014-03-29 06:00:00,9220.0
-2014-03-29 07:00:00,9544.0
-2014-03-29 08:00:00,9985.0
-2014-03-29 09:00:00,10345.0
-2014-03-29 10:00:00,10749.0
-2014-03-29 11:00:00,11011.0
-2014-03-29 12:00:00,11162.0
-2014-03-29 13:00:00,11086.0
-2014-03-29 14:00:00,10914.0
-2014-03-29 15:00:00,10653.0
-2014-03-29 16:00:00,10425.0
-2014-03-29 17:00:00,10136.0
-2014-03-29 18:00:00,10035.0
-2014-03-29 19:00:00,9947.0
-2014-03-29 20:00:00,10082.0
-2014-03-29 21:00:00,10760.0
-2014-03-29 22:00:00,11011.0
-2014-03-29 23:00:00,10857.0
-2014-03-30 00:00:00,10425.0
-2014-03-28 01:00:00,9988.0
-2014-03-28 02:00:00,9489.0
-2014-03-28 03:00:00,9135.0
-2014-03-28 04:00:00,9006.0
-2014-03-28 05:00:00,9032.0
-2014-03-28 06:00:00,9254.0
-2014-03-28 07:00:00,9938.0
-2014-03-28 08:00:00,10993.0
-2014-03-28 09:00:00,11667.0
-2014-03-28 10:00:00,11885.0
-2014-03-28 11:00:00,12073.0
-2014-03-28 12:00:00,12159.0
-2014-03-28 13:00:00,12018.0
-2014-03-28 14:00:00,11905.0
-2014-03-28 15:00:00,11813.0
-2014-03-28 16:00:00,11716.0
-2014-03-28 17:00:00,11564.0
-2014-03-28 18:00:00,11516.0
-2014-03-28 19:00:00,11521.0
-2014-03-28 20:00:00,11623.0
-2014-03-28 21:00:00,12003.0
-2014-03-28 22:00:00,11867.0
-2014-03-28 23:00:00,11533.0
-2014-03-29 00:00:00,10944.0
-2014-03-27 01:00:00,10485.0
-2014-03-27 02:00:00,10000.0
-2014-03-27 03:00:00,9672.0
-2014-03-27 04:00:00,9490.0
-2014-03-27 05:00:00,9477.0
-2014-03-27 06:00:00,9747.0
-2014-03-27 07:00:00,10433.0
-2014-03-27 08:00:00,11501.0
-2014-03-27 09:00:00,12094.0
-2014-03-27 10:00:00,12398.0
-2014-03-27 11:00:00,12530.0
-2014-03-27 12:00:00,12657.0
-2014-03-27 13:00:00,12642.0
-2014-03-27 14:00:00,12564.0
-2014-03-27 15:00:00,12502.0
-2014-03-27 16:00:00,12316.0
-2014-03-27 17:00:00,12109.0
-2014-03-27 18:00:00,12066.0
-2014-03-27 19:00:00,12010.0
-2014-03-27 20:00:00,12089.0
-2014-03-27 21:00:00,12306.0
-2014-03-27 22:00:00,12082.0
-2014-03-27 23:00:00,11573.0
-2014-03-28 00:00:00,10772.0
-2014-03-26 01:00:00,11005.0
-2014-03-26 02:00:00,10542.0
-2014-03-26 03:00:00,10325.0
-2014-03-26 04:00:00,10227.0
-2014-03-26 05:00:00,10249.0
-2014-03-26 06:00:00,10505.0
-2014-03-26 07:00:00,11231.0
-2014-03-26 08:00:00,12223.0
-2014-03-26 09:00:00,12591.0
-2014-03-26 10:00:00,12632.0
-2014-03-26 11:00:00,12590.0
-2014-03-26 12:00:00,12562.0
-2014-03-26 13:00:00,12438.0
-2014-03-26 14:00:00,12260.0
-2014-03-26 15:00:00,12163.0
-2014-03-26 16:00:00,11966.0
-2014-03-26 17:00:00,11711.0
-2014-03-26 18:00:00,11602.0
-2014-03-26 19:00:00,11627.0
-2014-03-26 20:00:00,11814.0
-2014-03-26 21:00:00,12410.0
-2014-03-26 22:00:00,12369.0
-2014-03-26 23:00:00,11941.0
-2014-03-27 00:00:00,11201.0
-2014-03-25 01:00:00,10631.0
-2014-03-25 02:00:00,10150.0
-2014-03-25 03:00:00,9908.0
-2014-03-25 04:00:00,9781.0
-2014-03-25 05:00:00,9806.0
-2014-03-25 06:00:00,10102.0
-2014-03-25 07:00:00,10828.0
-2014-03-25 08:00:00,11923.0
-2014-03-25 09:00:00,12332.0
-2014-03-25 10:00:00,12461.0
-2014-03-25 11:00:00,12564.0
-2014-03-25 12:00:00,12676.0
-2014-03-25 13:00:00,12698.0
-2014-03-25 14:00:00,12577.0
-2014-03-25 15:00:00,12565.0
-2014-03-25 16:00:00,12393.0
-2014-03-25 17:00:00,12218.0
-2014-03-25 18:00:00,12137.0
-2014-03-25 19:00:00,12096.0
-2014-03-25 20:00:00,12143.0
-2014-03-25 21:00:00,12781.0
-2014-03-25 22:00:00,12821.0
-2014-03-25 23:00:00,12379.0
-2014-03-26 00:00:00,11719.0
-2014-03-24 01:00:00,10264.0
-2014-03-24 02:00:00,9981.0
-2014-03-24 03:00:00,9809.0
-2014-03-24 04:00:00,9753.0
-2014-03-24 05:00:00,9842.0
-2014-03-24 06:00:00,10140.0
-2014-03-24 07:00:00,10814.0
-2014-03-24 08:00:00,11954.0
-2014-03-24 09:00:00,12462.0
-2014-03-24 10:00:00,12571.0
-2014-03-24 11:00:00,12506.0
-2014-03-24 12:00:00,12430.0
-2014-03-24 13:00:00,12322.0
-2014-03-24 14:00:00,12176.0
-2014-03-24 15:00:00,12114.0
-2014-03-24 16:00:00,11904.0
-2014-03-24 17:00:00,11705.0
-2014-03-24 18:00:00,11572.0
-2014-03-24 19:00:00,11573.0
-2014-03-24 20:00:00,11649.0
-2014-03-24 21:00:00,12347.0
-2014-03-24 22:00:00,12404.0
-2014-03-24 23:00:00,11997.0
-2014-03-25 00:00:00,11336.0
-2014-03-23 01:00:00,9954.0
-2014-03-23 02:00:00,9575.0
-2014-03-23 03:00:00,9401.0
-2014-03-23 04:00:00,9280.0
-2014-03-23 05:00:00,9266.0
-2014-03-23 06:00:00,9311.0
-2014-03-23 07:00:00,9516.0
-2014-03-23 08:00:00,9790.0
-2014-03-23 09:00:00,9888.0
-2014-03-23 10:00:00,10139.0
-2014-03-23 11:00:00,10261.0
-2014-03-23 12:00:00,10254.0
-2014-03-23 13:00:00,10280.0
-2014-03-23 14:00:00,10254.0
-2014-03-23 15:00:00,10147.0
-2014-03-23 16:00:00,10042.0
-2014-03-23 17:00:00,10031.0
-2014-03-23 18:00:00,10009.0
-2014-03-23 19:00:00,10208.0
-2014-03-23 20:00:00,10508.0
-2014-03-23 21:00:00,11285.0
-2014-03-23 22:00:00,11425.0
-2014-03-23 23:00:00,11177.0
-2014-03-24 00:00:00,10754.0
-2014-03-22 01:00:00,9889.0
-2014-03-22 02:00:00,9439.0
-2014-03-22 03:00:00,9114.0
-2014-03-22 04:00:00,8961.0
-2014-03-22 05:00:00,8873.0
-2014-03-22 06:00:00,8946.0
-2014-03-22 07:00:00,9202.0
-2014-03-22 08:00:00,9710.0
-2014-03-22 09:00:00,9979.0
-2014-03-22 10:00:00,10384.0
-2014-03-22 11:00:00,10578.0
-2014-03-22 12:00:00,10705.0
-2014-03-22 13:00:00,10656.0
-2014-03-22 14:00:00,10539.0
-2014-03-22 15:00:00,10331.0
-2014-03-22 16:00:00,10133.0
-2014-03-22 17:00:00,10099.0
-2014-03-22 18:00:00,10041.0
-2014-03-22 19:00:00,10091.0
-2014-03-22 20:00:00,10295.0
-2014-03-22 21:00:00,10975.0
-2014-03-22 22:00:00,11051.0
-2014-03-22 23:00:00,10863.0
-2014-03-23 00:00:00,10426.0
-2014-03-21 01:00:00,10257.0
-2014-03-21 02:00:00,9754.0
-2014-03-21 03:00:00,9450.0
-2014-03-21 04:00:00,9331.0
-2014-03-21 05:00:00,9303.0
-2014-03-21 06:00:00,9543.0
-2014-03-21 07:00:00,10254.0
-2014-03-21 08:00:00,11399.0
-2014-03-21 09:00:00,11853.0
-2014-03-21 10:00:00,11926.0
-2014-03-21 11:00:00,11852.0
-2014-03-21 12:00:00,11767.0
-2014-03-21 13:00:00,11617.0
-2014-03-21 14:00:00,11446.0
-2014-03-21 15:00:00,11401.0
-2014-03-21 16:00:00,11197.0
-2014-03-21 17:00:00,11009.0
-2014-03-21 18:00:00,10975.0
-2014-03-21 19:00:00,11000.0
-2014-03-21 20:00:00,11138.0
-2014-03-21 21:00:00,11540.0
-2014-03-21 22:00:00,11370.0
-2014-03-21 23:00:00,11041.0
-2014-03-22 00:00:00,10487.0
-2014-03-20 01:00:00,10477.0
-2014-03-20 02:00:00,9955.0
-2014-03-20 03:00:00,9655.0
-2014-03-20 04:00:00,9490.0
-2014-03-20 05:00:00,9486.0
-2014-03-20 06:00:00,9741.0
-2014-03-20 07:00:00,10440.0
-2014-03-20 08:00:00,11641.0
-2014-03-20 09:00:00,12218.0
-2014-03-20 10:00:00,12333.0
-2014-03-20 11:00:00,12213.0
-2014-03-20 12:00:00,12134.0
-2014-03-20 13:00:00,11972.0
-2014-03-20 14:00:00,11806.0
-2014-03-20 15:00:00,11731.0
-2014-03-20 16:00:00,11538.0
-2014-03-20 17:00:00,11343.0
-2014-03-20 18:00:00,11230.0
-2014-03-20 19:00:00,11159.0
-2014-03-20 20:00:00,11214.0
-2014-03-20 21:00:00,11897.0
-2014-03-20 22:00:00,11982.0
-2014-03-20 23:00:00,11646.0
-2014-03-21 00:00:00,10960.0
-2014-03-19 01:00:00,10129.0
-2014-03-19 02:00:00,9633.0
-2014-03-19 03:00:00,9310.0
-2014-03-19 04:00:00,9159.0
-2014-03-19 05:00:00,9163.0
-2014-03-19 06:00:00,9380.0
-2014-03-19 07:00:00,10047.0
-2014-03-19 08:00:00,11274.0
-2014-03-19 09:00:00,12035.0
-2014-03-19 10:00:00,12169.0
-2014-03-19 11:00:00,12173.0
-2014-03-19 12:00:00,12272.0
-2014-03-19 13:00:00,12329.0
-2014-03-19 14:00:00,12307.0
-2014-03-19 15:00:00,12336.0
-2014-03-19 16:00:00,12253.0
-2014-03-19 17:00:00,12208.0
-2014-03-19 18:00:00,12227.0
-2014-03-19 19:00:00,12361.0
-2014-03-19 20:00:00,12453.0
-2014-03-19 21:00:00,12700.0
-2014-03-19 22:00:00,12503.0
-2014-03-19 23:00:00,11984.0
-2014-03-20 00:00:00,11230.0
-2014-03-18 01:00:00,10689.0
-2014-03-18 02:00:00,10218.0
-2014-03-18 03:00:00,9959.0
-2014-03-18 04:00:00,9869.0
-2014-03-18 05:00:00,9874.0
-2014-03-18 06:00:00,10122.0
-2014-03-18 07:00:00,10847.0
-2014-03-18 08:00:00,12012.0
-2014-03-18 09:00:00,12396.0
-2014-03-18 10:00:00,12438.0
-2014-03-18 11:00:00,12361.0
-2014-03-18 12:00:00,12257.0
-2014-03-18 13:00:00,12135.0
-2014-03-18 14:00:00,11980.0
-2014-03-18 15:00:00,11968.0
-2014-03-18 16:00:00,11760.0
-2014-03-18 17:00:00,11617.0
-2014-03-18 18:00:00,11488.0
-2014-03-18 19:00:00,11393.0
-2014-03-18 20:00:00,11547.0
-2014-03-18 21:00:00,12172.0
-2014-03-18 22:00:00,12136.0
-2014-03-18 23:00:00,11633.0
-2014-03-19 00:00:00,10911.0
-2014-03-17 01:00:00,10713.0
-2014-03-17 02:00:00,10411.0
-2014-03-17 03:00:00,10291.0
-2014-03-17 04:00:00,10213.0
-2014-03-17 05:00:00,10334.0
-2014-03-17 06:00:00,10583.0
-2014-03-17 07:00:00,11395.0
-2014-03-17 08:00:00,12572.0
-2014-03-17 09:00:00,13036.0
-2014-03-17 10:00:00,12994.0
-2014-03-17 11:00:00,12940.0
-2014-03-17 12:00:00,12845.0
-2014-03-17 13:00:00,12742.0
-2014-03-17 14:00:00,12572.0
-2014-03-17 15:00:00,12475.0
-2014-03-17 16:00:00,12209.0
-2014-03-17 17:00:00,11995.0
-2014-03-17 18:00:00,11868.0
-2014-03-17 19:00:00,11809.0
-2014-03-17 20:00:00,11908.0
-2014-03-17 21:00:00,12619.0
-2014-03-17 22:00:00,12601.0
-2014-03-17 23:00:00,12195.0
-2014-03-18 00:00:00,11448.0
-2014-03-16 01:00:00,10385.0
-2014-03-16 02:00:00,9958.0
-2014-03-16 03:00:00,9758.0
-2014-03-16 04:00:00,9620.0
-2014-03-16 05:00:00,9655.0
-2014-03-16 06:00:00,9752.0
-2014-03-16 07:00:00,9935.0
-2014-03-16 08:00:00,10304.0
-2014-03-16 09:00:00,10441.0
-2014-03-16 10:00:00,10734.0
-2014-03-16 11:00:00,10958.0
-2014-03-16 12:00:00,11047.0
-2014-03-16 13:00:00,11050.0
-2014-03-16 14:00:00,10983.0
-2014-03-16 15:00:00,10894.0
-2014-03-16 16:00:00,10791.0
-2014-03-16 17:00:00,10661.0
-2014-03-16 18:00:00,10764.0
-2014-03-16 19:00:00,10912.0
-2014-03-16 20:00:00,11230.0
-2014-03-16 21:00:00,12047.0
-2014-03-16 22:00:00,12166.0
-2014-03-16 23:00:00,11854.0
-2014-03-17 00:00:00,11292.0
-2014-03-15 01:00:00,10290.0
-2014-03-15 02:00:00,9799.0
-2014-03-15 03:00:00,9478.0
-2014-03-15 04:00:00,9297.0
-2014-03-15 05:00:00,9186.0
-2014-03-15 06:00:00,9263.0
-2014-03-15 07:00:00,9593.0
-2014-03-15 08:00:00,10130.0
-2014-03-15 09:00:00,10426.0
-2014-03-15 10:00:00,10715.0
-2014-03-15 11:00:00,10917.0
-2014-03-15 12:00:00,10886.0
-2014-03-15 13:00:00,10670.0
-2014-03-15 14:00:00,10592.0
-2014-03-15 15:00:00,10314.0
-2014-03-15 16:00:00,10181.0
-2014-03-15 17:00:00,10109.0
-2014-03-15 18:00:00,10155.0
-2014-03-15 19:00:00,10349.0
-2014-03-15 20:00:00,10686.0
-2014-03-15 21:00:00,11355.0
-2014-03-15 22:00:00,11388.0
-2014-03-15 23:00:00,11240.0
-2014-03-16 00:00:00,10831.0
-2014-03-14 01:00:00,10995.0
-2014-03-14 02:00:00,10461.0
-2014-03-14 03:00:00,10105.0
-2014-03-14 04:00:00,9954.0
-2014-03-14 05:00:00,9878.0
-2014-03-14 06:00:00,10047.0
-2014-03-14 07:00:00,10727.0
-2014-03-14 08:00:00,11868.0
-2014-03-14 09:00:00,12271.0
-2014-03-14 10:00:00,12201.0
-2014-03-14 11:00:00,12131.0
-2014-03-14 12:00:00,12061.0
-2014-03-14 13:00:00,11940.0
-2014-03-14 14:00:00,11743.0
-2014-03-14 15:00:00,11631.0
-2014-03-14 16:00:00,11430.0
-2014-03-14 17:00:00,11217.0
-2014-03-14 18:00:00,11103.0
-2014-03-14 19:00:00,11058.0
-2014-03-14 20:00:00,11256.0
-2014-03-14 21:00:00,11886.0
-2014-03-14 22:00:00,11837.0
-2014-03-14 23:00:00,11574.0
-2014-03-15 00:00:00,10941.0
-2014-03-13 01:00:00,11362.0
-2014-03-13 02:00:00,10874.0
-2014-03-13 03:00:00,10618.0
-2014-03-13 04:00:00,10545.0
-2014-03-13 05:00:00,10566.0
-2014-03-13 06:00:00,10822.0
-2014-03-13 07:00:00,11489.0
-2014-03-13 08:00:00,12672.0
-2014-03-13 09:00:00,13136.0
-2014-03-13 10:00:00,13042.0
-2014-03-13 11:00:00,12999.0
-2014-03-13 12:00:00,12967.0
-2014-03-13 13:00:00,12997.0
-2014-03-13 14:00:00,13006.0
-2014-03-13 15:00:00,12964.0
-2014-03-13 16:00:00,12789.0
-2014-03-13 17:00:00,12551.0
-2014-03-13 18:00:00,12315.0
-2014-03-13 19:00:00,12210.0
-2014-03-13 20:00:00,12373.0
-2014-03-13 21:00:00,13073.0
-2014-03-13 22:00:00,12970.0
-2014-03-13 23:00:00,12558.0
-2014-03-14 00:00:00,11789.0
-2014-03-12 01:00:00,10430.0
-2014-03-12 02:00:00,10095.0
-2014-03-12 03:00:00,9844.0
-2014-03-12 04:00:00,9742.0
-2014-03-12 05:00:00,9735.0
-2014-03-12 06:00:00,9972.0
-2014-03-12 07:00:00,10602.0
-2014-03-12 08:00:00,11716.0
-2014-03-12 09:00:00,12313.0
-2014-03-12 10:00:00,12522.0
-2014-03-12 11:00:00,12650.0
-2014-03-12 12:00:00,12639.0
-2014-03-12 13:00:00,12530.0
-2014-03-12 14:00:00,12468.0
-2014-03-12 15:00:00,12500.0
-2014-03-12 16:00:00,12355.0
-2014-03-12 17:00:00,12211.0
-2014-03-12 18:00:00,12181.0
-2014-03-12 19:00:00,12213.0
-2014-03-12 20:00:00,12411.0
-2014-03-12 21:00:00,13161.0
-2014-03-12 22:00:00,13174.0
-2014-03-12 23:00:00,12774.0
-2014-03-13 00:00:00,12079.0
-2014-03-11 01:00:00,9963.0
-2014-03-11 02:00:00,9517.0
-2014-03-11 03:00:00,9196.0
-2014-03-11 04:00:00,9059.0
-2014-03-11 05:00:00,9016.0
-2014-03-11 06:00:00,9205.0
-2014-03-11 07:00:00,9910.0
-2014-03-11 08:00:00,11147.0
-2014-03-11 09:00:00,11804.0
-2014-03-11 10:00:00,11877.0
-2014-03-11 11:00:00,11865.0
-2014-03-11 12:00:00,11881.0
-2014-03-11 13:00:00,11774.0
-2014-03-11 14:00:00,11688.0
-2014-03-11 15:00:00,11753.0
-2014-03-11 16:00:00,11705.0
-2014-03-11 17:00:00,11700.0
-2014-03-11 18:00:00,11761.0
-2014-03-11 19:00:00,11874.0
-2014-03-11 20:00:00,12070.0
-2014-03-11 21:00:00,12577.0
-2014-03-11 22:00:00,12426.0
-2014-03-11 23:00:00,12000.0
-2014-03-12 00:00:00,11305.0
-2014-03-10 01:00:00,10076.0
-2014-03-10 02:00:00,9655.0
-2014-03-10 03:00:00,9416.0
-2014-03-10 04:00:00,9261.0
-2014-03-10 05:00:00,9233.0
-2014-03-10 06:00:00,9496.0
-2014-03-10 07:00:00,10223.0
-2014-03-10 08:00:00,11397.0
-2014-03-10 09:00:00,11996.0
-2014-03-10 10:00:00,11928.0
-2014-03-10 11:00:00,11831.0
-2014-03-10 12:00:00,11798.0
-2014-03-10 13:00:00,11669.0
-2014-03-10 14:00:00,11515.0
-2014-03-10 15:00:00,11467.0
-2014-03-10 16:00:00,11284.0
-2014-03-10 17:00:00,11111.0
-2014-03-10 18:00:00,11034.0
-2014-03-10 19:00:00,11029.0
-2014-03-10 20:00:00,11236.0
-2014-03-10 21:00:00,11978.0
-2014-03-10 22:00:00,11850.0
-2014-03-10 23:00:00,11418.0
-2014-03-11 00:00:00,10709.0
-2014-03-09 01:00:00,10586.0
-2014-03-09 02:00:00,10268.0
-2014-03-09 04:00:00,10030.0
-2014-03-09 05:00:00,9854.0
-2014-03-09 06:00:00,9912.0
-2014-03-09 07:00:00,9976.0
-2014-03-09 08:00:00,10219.0
-2014-03-09 09:00:00,10237.0
-2014-03-09 10:00:00,10290.0
-2014-03-09 11:00:00,10327.0
-2014-03-09 12:00:00,10371.0
-2014-03-09 13:00:00,10332.0
-2014-03-09 14:00:00,10275.0
-2014-03-09 15:00:00,10171.0
-2014-03-09 16:00:00,10084.0
-2014-03-09 17:00:00,10052.0
-2014-03-09 18:00:00,10203.0
-2014-03-09 19:00:00,10422.0
-2014-03-09 20:00:00,10854.0
-2014-03-09 21:00:00,11575.0
-2014-03-09 22:00:00,11494.0
-2014-03-09 23:00:00,11220.0
-2014-03-10 00:00:00,10618.0
-2014-03-08 01:00:00,10359.0
-2014-03-08 02:00:00,9901.0
-2014-03-08 03:00:00,9701.0
-2014-03-08 04:00:00,9574.0
-2014-03-08 05:00:00,9555.0
-2014-03-08 06:00:00,9688.0
-2014-03-08 07:00:00,10028.0
-2014-03-08 08:00:00,10401.0
-2014-03-08 09:00:00,10775.0
-2014-03-08 10:00:00,11228.0
-2014-03-08 11:00:00,11516.0
-2014-03-08 12:00:00,11555.0
-2014-03-08 13:00:00,11443.0
-2014-03-08 14:00:00,11238.0
-2014-03-08 15:00:00,11068.0
-2014-03-08 16:00:00,10883.0
-2014-03-08 17:00:00,10842.0
-2014-03-08 18:00:00,10916.0
-2014-03-08 19:00:00,11240.0
-2014-03-08 20:00:00,11940.0
-2014-03-08 21:00:00,11980.0
-2014-03-08 22:00:00,11807.0
-2014-03-08 23:00:00,11590.0
-2014-03-09 00:00:00,11090.0
-2014-03-07 01:00:00,11360.0
-2014-03-07 02:00:00,11001.0
-2014-03-07 03:00:00,10755.0
-2014-03-07 04:00:00,10639.0
-2014-03-07 05:00:00,10594.0
-2014-03-07 06:00:00,10912.0
-2014-03-07 07:00:00,11572.0
-2014-03-07 08:00:00,12391.0
-2014-03-07 09:00:00,12671.0
-2014-03-07 10:00:00,12617.0
-2014-03-07 11:00:00,12469.0
-2014-03-07 12:00:00,12348.0
-2014-03-07 13:00:00,12184.0
-2014-03-07 14:00:00,12003.0
-2014-03-07 15:00:00,11895.0
-2014-03-07 16:00:00,11749.0
-2014-03-07 17:00:00,11615.0
-2014-03-07 18:00:00,11724.0
-2014-03-07 19:00:00,12022.0
-2014-03-07 20:00:00,12558.0
-2014-03-07 21:00:00,12377.0
-2014-03-07 22:00:00,12095.0
-2014-03-07 23:00:00,11687.0
-2014-03-08 00:00:00,10998.0
-2014-03-06 01:00:00,11665.0
-2014-03-06 02:00:00,11214.0
-2014-03-06 03:00:00,10989.0
-2014-03-06 04:00:00,10873.0
-2014-03-06 05:00:00,10903.0
-2014-03-06 06:00:00,11201.0
-2014-03-06 07:00:00,11911.0
-2014-03-06 08:00:00,12799.0
-2014-03-06 09:00:00,13112.0
-2014-03-06 10:00:00,13120.0
-2014-03-06 11:00:00,13026.0
-2014-03-06 12:00:00,12958.0
-2014-03-06 13:00:00,12808.0
-2014-03-06 14:00:00,12620.0
-2014-03-06 15:00:00,12536.0
-2014-03-06 16:00:00,12401.0
-2014-03-06 17:00:00,12305.0
-2014-03-06 18:00:00,12396.0
-2014-03-06 19:00:00,12732.0
-2014-03-06 20:00:00,13527.0
-2014-03-06 21:00:00,13550.0
-2014-03-06 22:00:00,13340.0
-2014-03-06 23:00:00,12885.0
-2014-03-07 00:00:00,12053.0
-2014-03-05 01:00:00,11523.0
-2014-03-05 02:00:00,11076.0
-2014-03-05 03:00:00,10839.0
-2014-03-05 04:00:00,10742.0
-2014-03-05 05:00:00,10793.0
-2014-03-05 06:00:00,11067.0
-2014-03-05 07:00:00,11798.0
-2014-03-05 08:00:00,12739.0
-2014-03-05 09:00:00,13232.0
-2014-03-05 10:00:00,13565.0
-2014-03-05 11:00:00,13441.0
-2014-03-05 12:00:00,13515.0
-2014-03-05 13:00:00,13419.0
-2014-03-05 14:00:00,13277.0
-2014-03-05 15:00:00,13199.0
-2014-03-05 16:00:00,13066.0
-2014-03-05 17:00:00,12995.0
-2014-03-05 18:00:00,13125.0
-2014-03-05 19:00:00,13557.0
-2014-03-05 20:00:00,14131.0
-2014-03-05 21:00:00,13991.0
-2014-03-05 22:00:00,13712.0
-2014-03-05 23:00:00,13176.0
-2014-03-06 00:00:00,12379.0
-2014-03-04 01:00:00,12006.0
-2014-03-04 02:00:00,11548.0
-2014-03-04 03:00:00,11308.0
-2014-03-04 04:00:00,11189.0
-2014-03-04 05:00:00,11183.0
-2014-03-04 06:00:00,11406.0
-2014-03-04 07:00:00,12090.0
-2014-03-04 08:00:00,13026.0
-2014-03-04 09:00:00,13457.0
-2014-03-04 10:00:00,13658.0
-2014-03-04 11:00:00,13625.0
-2014-03-04 12:00:00,13538.0
-2014-03-04 13:00:00,13293.0
-2014-03-04 14:00:00,13104.0
-2014-03-04 15:00:00,13010.0
-2014-03-04 16:00:00,12792.0
-2014-03-04 17:00:00,12683.0
-2014-03-04 18:00:00,12800.0
-2014-03-04 19:00:00,13203.0
-2014-03-04 20:00:00,13879.0
-2014-03-04 21:00:00,13825.0
-2014-03-04 22:00:00,13586.0
-2014-03-04 23:00:00,13023.0
-2014-03-05 00:00:00,12233.0
-2014-03-03 01:00:00,11911.0
-2014-03-03 02:00:00,11603.0
-2014-03-03 03:00:00,11453.0
-2014-03-03 04:00:00,11382.0
-2014-03-03 05:00:00,11464.0
-2014-03-03 06:00:00,11703.0
-2014-03-03 07:00:00,12494.0
-2014-03-03 08:00:00,13350.0
-2014-03-03 09:00:00,13847.0
-2014-03-03 10:00:00,13928.0
-2014-03-03 11:00:00,13945.0
-2014-03-03 12:00:00,13848.0
-2014-03-03 13:00:00,13729.0
-2014-03-03 14:00:00,13541.0
-2014-03-03 15:00:00,13380.0
-2014-03-03 16:00:00,13182.0
-2014-03-03 17:00:00,13026.0
-2014-03-03 18:00:00,13192.0
-2014-03-03 19:00:00,13717.0
-2014-03-03 20:00:00,14466.0
-2014-03-03 21:00:00,14387.0
-2014-03-03 22:00:00,14110.0
-2014-03-03 23:00:00,13557.0
-2014-03-04 00:00:00,12753.0
-2014-03-02 01:00:00,11503.0
-2014-03-02 02:00:00,11124.0
-2014-03-02 03:00:00,10934.0
-2014-03-02 04:00:00,10724.0
-2014-03-02 05:00:00,10681.0
-2014-03-02 06:00:00,10749.0
-2014-03-02 07:00:00,10920.0
-2014-03-02 08:00:00,11052.0
-2014-03-02 09:00:00,11172.0
-2014-03-02 10:00:00,11443.0
-2014-03-02 11:00:00,11626.0
-2014-03-02 12:00:00,11619.0
-2014-03-02 13:00:00,11525.0
-2014-03-02 14:00:00,11451.0
-2014-03-02 15:00:00,11449.0
-2014-03-02 16:00:00,11484.0
-2014-03-02 17:00:00,11636.0
-2014-03-02 18:00:00,11915.0
-2014-03-02 19:00:00,12530.0
-2014-03-02 20:00:00,13377.0
-2014-03-02 21:00:00,13386.0
-2014-03-02 22:00:00,13224.0
-2014-03-02 23:00:00,12883.0
-2014-03-03 00:00:00,12429.0
-2014-03-01 01:00:00,11406.0
-2014-03-01 02:00:00,10816.0
-2014-03-01 03:00:00,10484.0
-2014-03-01 04:00:00,10291.0
-2014-03-01 05:00:00,10202.0
-2014-03-01 06:00:00,10294.0
-2014-03-01 07:00:00,10577.0
-2014-03-01 08:00:00,11035.0
-2014-03-01 09:00:00,11371.0
-2014-03-01 10:00:00,11799.0
-2014-03-01 11:00:00,12003.0
-2014-03-01 12:00:00,12092.0
-2014-03-01 13:00:00,11990.0
-2014-03-01 14:00:00,11807.0
-2014-03-01 15:00:00,11671.0
-2014-03-01 16:00:00,11664.0
-2014-03-01 17:00:00,11757.0
-2014-03-01 18:00:00,12057.0
-2014-03-01 19:00:00,12584.0
-2014-03-01 20:00:00,13051.0
-2014-03-01 21:00:00,13005.0
-2014-03-01 22:00:00,12833.0
-2014-03-01 23:00:00,12521.0
-2014-03-02 00:00:00,12028.0
-2014-02-28 01:00:00,12586.0
-2014-02-28 02:00:00,12201.0
-2014-02-28 03:00:00,11983.0
-2014-02-28 04:00:00,11865.0
-2014-02-28 05:00:00,11885.0
-2014-02-28 06:00:00,12084.0
-2014-02-28 07:00:00,12705.0
-2014-02-28 08:00:00,13500.0
-2014-02-28 09:00:00,13918.0
-2014-02-28 10:00:00,14178.0
-2014-02-28 11:00:00,14147.0
-2014-02-28 12:00:00,14071.0
-2014-02-28 13:00:00,13783.0
-2014-02-28 14:00:00,13483.0
-2014-02-28 15:00:00,13366.0
-2014-02-28 16:00:00,13170.0
-2014-02-28 17:00:00,13017.0
-2014-02-28 18:00:00,12994.0
-2014-02-28 19:00:00,13348.0
-2014-02-28 20:00:00,13839.0
-2014-02-28 21:00:00,13632.0
-2014-02-28 22:00:00,13285.0
-2014-02-28 23:00:00,12884.0
-2014-03-01 00:00:00,12100.0
-2014-02-27 01:00:00,12421.0
-2014-02-27 02:00:00,11964.0
-2014-02-27 03:00:00,11739.0
-2014-02-27 04:00:00,11683.0
-2014-02-27 05:00:00,11725.0
-2014-02-27 06:00:00,12043.0
-2014-02-27 07:00:00,12733.0
-2014-02-27 08:00:00,13648.0
-2014-02-27 09:00:00,14017.0
-2014-02-27 10:00:00,14081.0
-2014-02-27 11:00:00,14098.0
-2014-02-27 12:00:00,14081.0
-2014-02-27 13:00:00,13952.0
-2014-02-27 14:00:00,13797.0
-2014-02-27 15:00:00,13668.0
-2014-02-27 16:00:00,13509.0
-2014-02-27 17:00:00,13367.0
-2014-02-27 18:00:00,13470.0
-2014-02-27 19:00:00,14022.0
-2014-02-27 20:00:00,14745.0
-2014-02-27 21:00:00,14735.0
-2014-02-27 22:00:00,14548.0
-2014-02-27 23:00:00,14087.0
-2014-02-28 00:00:00,13298.0
-2014-02-26 01:00:00,12446.0
-2014-02-26 02:00:00,12073.0
-2014-02-26 03:00:00,11875.0
-2014-02-26 04:00:00,11759.0
-2014-02-26 05:00:00,11783.0
-2014-02-26 06:00:00,12051.0
-2014-02-26 07:00:00,12735.0
-2014-02-26 08:00:00,13655.0
-2014-02-26 09:00:00,13985.0
-2014-02-26 10:00:00,14050.0
-2014-02-26 11:00:00,14057.0
-2014-02-26 12:00:00,14094.0
-2014-02-26 13:00:00,13982.0
-2014-02-26 14:00:00,13909.0
-2014-02-26 15:00:00,13874.0
-2014-02-26 16:00:00,13794.0
-2014-02-26 17:00:00,13745.0
-2014-02-26 18:00:00,13884.0
-2014-02-26 19:00:00,14451.0
-2014-02-26 20:00:00,15065.0
-2014-02-26 21:00:00,14928.0
-2014-02-26 22:00:00,14631.0
-2014-02-26 23:00:00,14071.0
-2014-02-27 00:00:00,13208.0
-2014-02-25 01:00:00,11545.0
-2014-02-25 02:00:00,11121.0
-2014-02-25 03:00:00,10867.0
-2014-02-25 04:00:00,10758.0
-2014-02-25 05:00:00,10757.0
-2014-02-25 06:00:00,11048.0
-2014-02-25 07:00:00,11825.0
-2014-02-25 08:00:00,12805.0
-2014-02-25 09:00:00,13161.0
-2014-02-25 10:00:00,13225.0
-2014-02-25 11:00:00,13196.0
-2014-02-25 12:00:00,13163.0
-2014-02-25 13:00:00,13084.0
-2014-02-25 14:00:00,12995.0
-2014-02-25 15:00:00,13036.0
-2014-02-25 16:00:00,13030.0
-2014-02-25 17:00:00,12999.0
-2014-02-25 18:00:00,13141.0
-2014-02-25 19:00:00,13736.0
-2014-02-25 20:00:00,14477.0
-2014-02-25 21:00:00,14501.0
-2014-02-25 22:00:00,14294.0
-2014-02-25 23:00:00,13897.0
-2014-02-26 00:00:00,13132.0
-2014-02-24 01:00:00,11045.0
-2014-02-24 02:00:00,10758.0
-2014-02-24 03:00:00,10679.0
-2014-02-24 04:00:00,10653.0
-2014-02-24 05:00:00,10701.0
-2014-02-24 06:00:00,11029.0
-2014-02-24 07:00:00,11765.0
-2014-02-24 08:00:00,12815.0
-2014-02-24 09:00:00,13187.0
-2014-02-24 10:00:00,13254.0
-2014-02-24 11:00:00,13202.0
-2014-02-24 12:00:00,13163.0
-2014-02-24 13:00:00,13085.0
-2014-02-24 14:00:00,12957.0
-2014-02-24 15:00:00,12900.0
-2014-02-24 16:00:00,12742.0
-2014-02-24 17:00:00,12708.0
-2014-02-24 18:00:00,12921.0
-2014-02-24 19:00:00,13548.0
-2014-02-24 20:00:00,14017.0
-2014-02-24 21:00:00,13898.0
-2014-02-24 22:00:00,13599.0
-2014-02-24 23:00:00,13106.0
-2014-02-25 00:00:00,12273.0
-2014-02-23 01:00:00,10730.0
-2014-02-23 02:00:00,10347.0
-2014-02-23 03:00:00,10168.0
-2014-02-23 04:00:00,10026.0
-2014-02-23 05:00:00,9992.0
-2014-02-23 06:00:00,10032.0
-2014-02-23 07:00:00,10231.0
-2014-02-23 08:00:00,10429.0
-2014-02-23 09:00:00,10531.0
-2014-02-23 10:00:00,10784.0
-2014-02-23 11:00:00,10856.0
-2014-02-23 12:00:00,10792.0
-2014-02-23 13:00:00,10686.0
-2014-02-23 14:00:00,10645.0
-2014-02-23 15:00:00,10587.0
-2014-02-23 16:00:00,10481.0
-2014-02-23 17:00:00,10527.0
-2014-02-23 18:00:00,10840.0
-2014-02-23 19:00:00,11618.0
-2014-02-23 20:00:00,12435.0
-2014-02-23 21:00:00,12545.0
-2014-02-23 22:00:00,12353.0
-2014-02-23 23:00:00,12071.0
-2014-02-24 00:00:00,11574.0
-2014-02-22 01:00:00,11124.0
-2014-02-22 02:00:00,10628.0
-2014-02-22 03:00:00,10338.0
-2014-02-22 04:00:00,10207.0
-2014-02-22 05:00:00,10157.0
-2014-02-22 06:00:00,10283.0
-2014-02-22 07:00:00,10615.0
-2014-02-22 08:00:00,10984.0
-2014-02-22 09:00:00,11080.0
-2014-02-22 10:00:00,11467.0
-2014-02-22 11:00:00,11628.0
-2014-02-22 12:00:00,11708.0
-2014-02-22 13:00:00,11535.0
-2014-02-22 14:00:00,11156.0
-2014-02-22 15:00:00,10907.0
-2014-02-22 16:00:00,10788.0
-2014-02-22 17:00:00,10755.0
-2014-02-22 18:00:00,10976.0
-2014-02-22 19:00:00,11518.0
-2014-02-22 20:00:00,12084.0
-2014-02-22 21:00:00,11994.0
-2014-02-22 22:00:00,11882.0
-2014-02-22 23:00:00,11580.0
-2014-02-23 00:00:00,11121.0
-2014-02-21 01:00:00,10832.0
-2014-02-21 02:00:00,10367.0
-2014-02-21 03:00:00,10072.0
-2014-02-21 04:00:00,9946.0
-2014-02-21 05:00:00,10010.0
-2014-02-21 06:00:00,10277.0
-2014-02-21 07:00:00,11069.0
-2014-02-21 08:00:00,12265.0
-2014-02-21 09:00:00,12708.0
-2014-02-21 10:00:00,12993.0
-2014-02-21 11:00:00,13039.0
-2014-02-21 12:00:00,13009.0
-2014-02-21 13:00:00,12938.0
-2014-02-21 14:00:00,12811.0
-2014-02-21 15:00:00,12683.0
-2014-02-21 16:00:00,12476.0
-2014-02-21 17:00:00,12313.0
-2014-02-21 18:00:00,12356.0
-2014-02-21 19:00:00,12869.0
-2014-02-21 20:00:00,13313.0
-2014-02-21 21:00:00,13104.0
-2014-02-21 22:00:00,12769.0
-2014-02-21 23:00:00,12396.0
-2014-02-22 00:00:00,11738.0
-2014-02-20 01:00:00,10493.0
-2014-02-20 02:00:00,10018.0
-2014-02-20 03:00:00,9757.0
-2014-02-20 04:00:00,9624.0
-2014-02-20 05:00:00,9654.0
-2014-02-20 06:00:00,9998.0
-2014-02-20 07:00:00,10802.0
-2014-02-20 08:00:00,11896.0
-2014-02-20 09:00:00,12425.0
-2014-02-20 10:00:00,12559.0
-2014-02-20 11:00:00,12619.0
-2014-02-20 12:00:00,12725.0
-2014-02-20 13:00:00,12728.0
-2014-02-20 14:00:00,12743.0
-2014-02-20 15:00:00,12742.0
-2014-02-20 16:00:00,12722.0
-2014-02-20 17:00:00,12754.0
-2014-02-20 18:00:00,12802.0
-2014-02-20 19:00:00,13122.0
-2014-02-20 20:00:00,13079.0
-2014-02-20 21:00:00,12862.0
-2014-02-20 22:00:00,12717.0
-2014-02-20 23:00:00,12269.0
-2014-02-21 00:00:00,11523.0
-2014-02-19 01:00:00,10615.0
-2014-02-19 02:00:00,10191.0
-2014-02-19 03:00:00,9902.0
-2014-02-19 04:00:00,9748.0
-2014-02-19 05:00:00,9760.0
-2014-02-19 06:00:00,10019.0
-2014-02-19 07:00:00,10864.0
-2014-02-19 08:00:00,11897.0
-2014-02-19 09:00:00,12200.0
-2014-02-19 10:00:00,12172.0
-2014-02-19 11:00:00,12104.0
-2014-02-19 12:00:00,12056.0
-2014-02-19 13:00:00,11975.0
-2014-02-19 14:00:00,11861.0
-2014-02-19 15:00:00,11786.0
-2014-02-19 16:00:00,11637.0
-2014-02-19 17:00:00,11562.0
-2014-02-19 18:00:00,11705.0
-2014-02-19 19:00:00,12357.0
-2014-02-19 20:00:00,12853.0
-2014-02-19 21:00:00,12728.0
-2014-02-19 22:00:00,12552.0
-2014-02-19 23:00:00,12030.0
-2014-02-20 00:00:00,11233.0
-2014-02-18 01:00:00,11271.0
-2014-02-18 02:00:00,10834.0
-2014-02-18 03:00:00,10529.0
-2014-02-18 04:00:00,10378.0
-2014-02-18 05:00:00,10352.0
-2014-02-18 06:00:00,10603.0
-2014-02-18 07:00:00,11321.0
-2014-02-18 08:00:00,12380.0
-2014-02-18 09:00:00,12731.0
-2014-02-18 10:00:00,12635.0
-2014-02-18 11:00:00,12540.0
-2014-02-18 12:00:00,12458.0
-2014-02-18 13:00:00,12321.0
-2014-02-18 14:00:00,12193.0
-2014-02-18 15:00:00,12112.0
-2014-02-18 16:00:00,12001.0
-2014-02-18 17:00:00,12072.0
-2014-02-18 18:00:00,12191.0
-2014-02-18 19:00:00,12753.0
-2014-02-18 20:00:00,13179.0
-2014-02-18 21:00:00,12967.0
-2014-02-18 22:00:00,12686.0
-2014-02-18 23:00:00,12100.0
-2014-02-19 00:00:00,11378.0
-2014-02-17 01:00:00,10825.0
-2014-02-17 02:00:00,10490.0
-2014-02-17 03:00:00,10315.0
-2014-02-17 04:00:00,10271.0
-2014-02-17 05:00:00,10287.0
-2014-02-17 06:00:00,10589.0
-2014-02-17 07:00:00,11236.0
-2014-02-17 08:00:00,12228.0
-2014-02-17 09:00:00,12720.0
-2014-02-17 10:00:00,13137.0
-2014-02-17 11:00:00,13421.0
-2014-02-17 12:00:00,13550.0
-2014-02-17 13:00:00,13629.0
-2014-02-17 14:00:00,13610.0
-2014-02-17 15:00:00,13620.0
-2014-02-17 16:00:00,13571.0
-2014-02-17 17:00:00,13241.0
-2014-02-17 18:00:00,13236.0
-2014-02-17 19:00:00,13776.0
-2014-02-17 20:00:00,13984.0
-2014-02-17 21:00:00,13815.0
-2014-02-17 22:00:00,13452.0
-2014-02-17 23:00:00,12859.0
-2014-02-18 00:00:00,12010.0
-2014-02-16 01:00:00,11314.0
-2014-02-16 02:00:00,10836.0
-2014-02-16 03:00:00,10544.0
-2014-02-16 04:00:00,10343.0
-2014-02-16 05:00:00,10303.0
-2014-02-16 06:00:00,10235.0
-2014-02-16 07:00:00,10353.0
-2014-02-16 08:00:00,10650.0
-2014-02-16 09:00:00,10673.0
-2014-02-16 10:00:00,10950.0
-2014-02-16 11:00:00,11031.0
-2014-02-16 12:00:00,10978.0
-2014-02-16 13:00:00,10849.0
-2014-02-16 14:00:00,10791.0
-2014-02-16 15:00:00,10699.0
-2014-02-16 16:00:00,10713.0
-2014-02-16 17:00:00,10836.0
-2014-02-16 18:00:00,11280.0
-2014-02-16 19:00:00,12067.0
-2014-02-16 20:00:00,12514.0
-2014-02-16 21:00:00,12444.0
-2014-02-16 22:00:00,12229.0
-2014-02-16 23:00:00,11889.0
-2014-02-17 00:00:00,11380.0
-2014-02-15 01:00:00,11840.0
-2014-02-15 02:00:00,11342.0
-2014-02-15 03:00:00,11155.0
-2014-02-15 04:00:00,11024.0
-2014-02-15 05:00:00,10937.0
-2014-02-15 06:00:00,11030.0
-2014-02-15 07:00:00,11318.0
-2014-02-15 08:00:00,11800.0
-2014-02-15 09:00:00,11918.0
-2014-02-15 10:00:00,12037.0
-2014-02-15 11:00:00,12064.0
-2014-02-15 12:00:00,12004.0
-2014-02-15 13:00:00,11815.0
-2014-02-15 14:00:00,11636.0
-2014-02-15 15:00:00,11520.0
-2014-02-15 16:00:00,11529.0
-2014-02-15 17:00:00,11653.0
-2014-02-15 18:00:00,11885.0
-2014-02-15 19:00:00,12571.0
-2014-02-15 20:00:00,12854.0
-2014-02-15 21:00:00,12797.0
-2014-02-15 22:00:00,12651.0
-2014-02-15 23:00:00,12373.0
-2014-02-16 00:00:00,11830.0
-2014-02-14 01:00:00,11593.0
-2014-02-14 02:00:00,11107.0
-2014-02-14 03:00:00,10868.0
-2014-02-14 04:00:00,10793.0
-2014-02-14 05:00:00,10772.0
-2014-02-14 06:00:00,11102.0
-2014-02-14 07:00:00,11791.0
-2014-02-14 08:00:00,12812.0
-2014-02-14 09:00:00,13204.0
-2014-02-14 10:00:00,13436.0
-2014-02-14 11:00:00,13532.0
-2014-02-14 12:00:00,13493.0
-2014-02-14 13:00:00,13361.0
-2014-02-14 14:00:00,13156.0
-2014-02-14 15:00:00,13113.0
-2014-02-14 16:00:00,12977.0
-2014-02-14 17:00:00,12847.0
-2014-02-14 18:00:00,12901.0
-2014-02-14 19:00:00,13484.0
-2014-02-14 20:00:00,13843.0
-2014-02-14 21:00:00,13666.0
-2014-02-14 22:00:00,13441.0
-2014-02-14 23:00:00,12998.0
-2014-02-15 00:00:00,12464.0
-2014-02-13 01:00:00,11776.0
-2014-02-13 02:00:00,11309.0
-2014-02-13 03:00:00,11125.0
-2014-02-13 04:00:00,10957.0
-2014-02-13 05:00:00,10964.0
-2014-02-13 06:00:00,11194.0
-2014-02-13 07:00:00,11883.0
-2014-02-13 08:00:00,12939.0
-2014-02-13 09:00:00,13272.0
-2014-02-13 10:00:00,13360.0
-2014-02-13 11:00:00,13361.0
-2014-02-13 12:00:00,13426.0
-2014-02-13 13:00:00,13472.0
-2014-02-13 14:00:00,13446.0
-2014-02-13 15:00:00,13259.0
-2014-02-13 16:00:00,12868.0
-2014-02-13 17:00:00,12758.0
-2014-02-13 18:00:00,13019.0
-2014-02-13 19:00:00,13688.0
-2014-02-13 20:00:00,13845.0
-2014-02-13 21:00:00,13660.0
-2014-02-13 22:00:00,13405.0
-2014-02-13 23:00:00,13039.0
-2014-02-14 00:00:00,12346.0
-2014-02-12 01:00:00,12605.0
-2014-02-12 02:00:00,12194.0
-2014-02-12 03:00:00,11942.0
-2014-02-12 04:00:00,11838.0
-2014-02-12 05:00:00,11881.0
-2014-02-12 06:00:00,12087.0
-2014-02-12 07:00:00,12687.0
-2014-02-12 08:00:00,13637.0
-2014-02-12 09:00:00,13969.0
-2014-02-12 10:00:00,14149.0
-2014-02-12 11:00:00,14167.0
-2014-02-12 12:00:00,14067.0
-2014-02-12 13:00:00,13870.0
-2014-02-12 14:00:00,13690.0
-2014-02-12 15:00:00,13497.0
-2014-02-12 16:00:00,13317.0
-2014-02-12 17:00:00,13147.0
-2014-02-12 18:00:00,13251.0
-2014-02-12 19:00:00,14025.0
-2014-02-12 20:00:00,14254.0
-2014-02-12 21:00:00,14090.0
-2014-02-12 22:00:00,13834.0
-2014-02-12 23:00:00,13328.0
-2014-02-13 00:00:00,12511.0
-2014-02-11 01:00:00,12557.0
-2014-02-11 02:00:00,12194.0
-2014-02-11 03:00:00,11988.0
-2014-02-11 04:00:00,11868.0
-2014-02-11 05:00:00,11889.0
-2014-02-11 06:00:00,12085.0
-2014-02-11 07:00:00,12783.0
-2014-02-11 08:00:00,13829.0
-2014-02-11 09:00:00,14231.0
-2014-02-11 10:00:00,14208.0
-2014-02-11 11:00:00,14126.0
-2014-02-11 12:00:00,14014.0
-2014-02-11 13:00:00,13901.0
-2014-02-11 14:00:00,13743.0
-2014-02-11 15:00:00,13646.0
-2014-02-11 16:00:00,13459.0
-2014-02-11 17:00:00,13387.0
-2014-02-11 18:00:00,13570.0
-2014-02-11 19:00:00,14366.0
-2014-02-11 20:00:00,14804.0
-2014-02-11 21:00:00,14717.0
-2014-02-11 22:00:00,14543.0
-2014-02-11 23:00:00,14063.0
-2014-02-12 00:00:00,13341.0
-2014-02-10 01:00:00,11752.0
-2014-02-10 02:00:00,11459.0
-2014-02-10 03:00:00,11323.0
-2014-02-10 04:00:00,11280.0
-2014-02-10 05:00:00,11393.0
-2014-02-10 06:00:00,11695.0
-2014-02-10 07:00:00,12502.0
-2014-02-10 08:00:00,13548.0
-2014-02-10 09:00:00,14019.0
-2014-02-10 10:00:00,14078.0
-2014-02-10 11:00:00,14030.0
-2014-02-10 12:00:00,13968.0
-2014-02-10 13:00:00,13840.0
-2014-02-10 14:00:00,13729.0
-2014-02-10 15:00:00,13619.0
-2014-02-10 16:00:00,13493.0
-2014-02-10 17:00:00,13418.0
-2014-02-10 18:00:00,13649.0
-2014-02-10 19:00:00,14479.0
-2014-02-10 20:00:00,14931.0
-2014-02-10 21:00:00,14855.0
-2014-02-10 22:00:00,14618.0
-2014-02-10 23:00:00,14125.0
-2014-02-11 00:00:00,13270.0
-2014-02-09 01:00:00,11551.0
-2014-02-09 02:00:00,11117.0
-2014-02-09 03:00:00,10864.0
-2014-02-09 04:00:00,10689.0
-2014-02-09 05:00:00,10659.0
-2014-02-09 06:00:00,10658.0
-2014-02-09 07:00:00,10846.0
-2014-02-09 08:00:00,11137.0
-2014-02-09 09:00:00,11192.0
-2014-02-09 10:00:00,11321.0
-2014-02-09 11:00:00,11421.0
-2014-02-09 12:00:00,11421.0
-2014-02-09 13:00:00,11408.0
-2014-02-09 14:00:00,11323.0
-2014-02-09 15:00:00,11301.0
-2014-02-09 16:00:00,11330.0
-2014-02-09 17:00:00,11506.0
-2014-02-09 18:00:00,11798.0
-2014-02-09 19:00:00,12822.0
-2014-02-09 20:00:00,13271.0
-2014-02-09 21:00:00,13249.0
-2014-02-09 22:00:00,13062.0
-2014-02-09 23:00:00,12811.0
-2014-02-10 00:00:00,12227.0
-2014-02-08 01:00:00,12448.0
-2014-02-08 02:00:00,12023.0
-2014-02-08 03:00:00,11706.0
-2014-02-08 04:00:00,11547.0
-2014-02-08 05:00:00,11394.0
-2014-02-08 06:00:00,11454.0
-2014-02-08 07:00:00,11654.0
-2014-02-08 08:00:00,12090.0
-2014-02-08 09:00:00,12237.0
-2014-02-08 10:00:00,12588.0
-2014-02-08 11:00:00,12737.0
-2014-02-08 12:00:00,12805.0
-2014-02-08 13:00:00,12720.0
-2014-02-08 14:00:00,12737.0
-2014-02-08 15:00:00,12595.0
-2014-02-08 16:00:00,12437.0
-2014-02-08 17:00:00,12374.0
-2014-02-08 18:00:00,12546.0
-2014-02-08 19:00:00,13202.0
-2014-02-08 20:00:00,13470.0
-2014-02-08 21:00:00,13283.0
-2014-02-08 22:00:00,13071.0
-2014-02-08 23:00:00,12711.0
-2014-02-09 00:00:00,12119.0
-2014-02-07 01:00:00,12946.0
-2014-02-07 02:00:00,12507.0
-2014-02-07 03:00:00,12258.0
-2014-02-07 04:00:00,12114.0
-2014-02-07 05:00:00,12104.0
-2014-02-07 06:00:00,12355.0
-2014-02-07 07:00:00,12960.0
-2014-02-07 08:00:00,14006.0
-2014-02-07 09:00:00,14320.0
-2014-02-07 10:00:00,14318.0
-2014-02-07 11:00:00,14229.0
-2014-02-07 12:00:00,14152.0
-2014-02-07 13:00:00,14047.0
-2014-02-07 14:00:00,13921.0
-2014-02-07 15:00:00,13893.0
-2014-02-07 16:00:00,13676.0
-2014-02-07 17:00:00,13580.0
-2014-02-07 18:00:00,13746.0
-2014-02-07 19:00:00,14478.0
-2014-02-07 20:00:00,14800.0
-2014-02-07 21:00:00,14646.0
-2014-02-07 22:00:00,14318.0
-2014-02-07 23:00:00,13947.0
-2014-02-08 00:00:00,13221.0
-2014-02-06 01:00:00,12121.0
-2014-02-06 02:00:00,11675.0
-2014-02-06 03:00:00,11477.0
-2014-02-06 04:00:00,11438.0
-2014-02-06 05:00:00,11473.0
-2014-02-06 06:00:00,11738.0
-2014-02-06 07:00:00,12460.0
-2014-02-06 08:00:00,13592.0
-2014-02-06 09:00:00,13993.0
-2014-02-06 10:00:00,14048.0
-2014-02-06 11:00:00,13999.0
-2014-02-06 12:00:00,14043.0
-2014-02-06 13:00:00,13989.0
-2014-02-06 14:00:00,13926.0
-2014-02-06 15:00:00,13859.0
-2014-02-06 16:00:00,13761.0
-2014-02-06 17:00:00,13754.0
-2014-02-06 18:00:00,14010.0
-2014-02-06 19:00:00,14856.0
-2014-02-06 20:00:00,15256.0
-2014-02-06 21:00:00,15155.0
-2014-02-06 22:00:00,14952.0
-2014-02-06 23:00:00,14458.0
-2014-02-07 00:00:00,13666.0
-2014-02-05 01:00:00,11776.0
-2014-02-05 02:00:00,11305.0
-2014-02-05 03:00:00,11031.0
-2014-02-05 04:00:00,10906.0
-2014-02-05 05:00:00,10930.0
-2014-02-05 06:00:00,11140.0
-2014-02-05 07:00:00,11808.0
-2014-02-05 08:00:00,12837.0
-2014-02-05 09:00:00,13206.0
-2014-02-05 10:00:00,13357.0
-2014-02-05 11:00:00,13448.0
-2014-02-05 12:00:00,13513.0
-2014-02-05 13:00:00,13467.0
-2014-02-05 14:00:00,13409.0
-2014-02-05 15:00:00,13432.0
-2014-02-05 16:00:00,13365.0
-2014-02-05 17:00:00,13348.0
-2014-02-05 18:00:00,13510.0
-2014-02-05 19:00:00,14223.0
-2014-02-05 20:00:00,14458.0
-2014-02-05 21:00:00,14340.0
-2014-02-05 22:00:00,14095.0
-2014-02-05 23:00:00,13588.0
-2014-02-06 00:00:00,12806.0
-2014-02-04 01:00:00,12030.0
-2014-02-04 02:00:00,11603.0
-2014-02-04 03:00:00,11337.0
-2014-02-04 04:00:00,11239.0
-2014-02-04 05:00:00,11224.0
-2014-02-04 06:00:00,11437.0
-2014-02-04 07:00:00,12078.0
-2014-02-04 08:00:00,13185.0
-2014-02-04 09:00:00,13689.0
-2014-02-04 10:00:00,13702.0
-2014-02-04 11:00:00,13715.0
-2014-02-04 12:00:00,13714.0
-2014-02-04 13:00:00,13649.0
-2014-02-04 14:00:00,13623.0
-2014-02-04 15:00:00,13594.0
-2014-02-04 16:00:00,13502.0
-2014-02-04 17:00:00,13480.0
-2014-02-04 18:00:00,13744.0
-2014-02-04 19:00:00,14431.0
-2014-02-04 20:00:00,14448.0
-2014-02-04 21:00:00,14273.0
-2014-02-04 22:00:00,13962.0
-2014-02-04 23:00:00,13374.0
-2014-02-05 00:00:00,12535.0
-2014-02-03 01:00:00,11416.0
-2014-02-03 02:00:00,11158.0
-2014-02-03 03:00:00,11020.0
-2014-02-03 04:00:00,11047.0
-2014-02-03 05:00:00,11102.0
-2014-02-03 06:00:00,11428.0
-2014-02-03 07:00:00,12188.0
-2014-02-03 08:00:00,13349.0
-2014-02-03 09:00:00,13753.0
-2014-02-03 10:00:00,13821.0
-2014-02-03 11:00:00,13654.0
-2014-02-03 12:00:00,13579.0
-2014-02-03 13:00:00,13455.0
-2014-02-03 14:00:00,13305.0
-2014-02-03 15:00:00,13231.0
-2014-02-03 16:00:00,13072.0
-2014-02-03 17:00:00,12938.0
-2014-02-03 18:00:00,13274.0
-2014-02-03 19:00:00,14135.0
-2014-02-03 20:00:00,14406.0
-2014-02-03 21:00:00,14294.0
-2014-02-03 22:00:00,14044.0
-2014-02-03 23:00:00,13574.0
-2014-02-04 00:00:00,12749.0
-2014-02-02 01:00:00,11024.0
-2014-02-02 02:00:00,10589.0
-2014-02-02 03:00:00,10333.0
-2014-02-02 04:00:00,10201.0
-2014-02-02 05:00:00,10087.0
-2014-02-02 06:00:00,10210.0
-2014-02-02 07:00:00,10418.0
-2014-02-02 08:00:00,10726.0
-2014-02-02 09:00:00,10791.0
-2014-02-02 10:00:00,10964.0
-2014-02-02 11:00:00,11085.0
-2014-02-02 12:00:00,11150.0
-2014-02-02 13:00:00,11209.0
-2014-02-02 14:00:00,11185.0
-2014-02-02 15:00:00,11208.0
-2014-02-02 16:00:00,11298.0
-2014-02-02 17:00:00,11378.0
-2014-02-02 18:00:00,11751.0
-2014-02-02 19:00:00,12526.0
-2014-02-02 20:00:00,12731.0
-2014-02-02 21:00:00,12677.0
-2014-02-02 22:00:00,12616.0
-2014-02-02 23:00:00,12386.0
-2014-02-03 00:00:00,11863.0
-2014-02-01 01:00:00,11639.0
-2014-02-01 02:00:00,11078.0
-2014-02-01 03:00:00,10766.0
-2014-02-01 04:00:00,10538.0
-2014-02-01 05:00:00,10467.0
-2014-02-01 06:00:00,10548.0
-2014-02-01 07:00:00,10838.0
-2014-02-01 08:00:00,11234.0
-2014-02-01 09:00:00,11426.0
-2014-02-01 10:00:00,11679.0
-2014-02-01 11:00:00,11860.0
-2014-02-01 12:00:00,12037.0
-2014-02-01 13:00:00,12023.0
-2014-02-01 14:00:00,11922.0
-2014-02-01 15:00:00,11739.0
-2014-02-01 16:00:00,11687.0
-2014-02-01 17:00:00,11710.0
-2014-02-01 18:00:00,11916.0
-2014-02-01 19:00:00,12704.0
-2014-02-01 20:00:00,12806.0
-2014-02-01 21:00:00,12666.0
-2014-02-01 22:00:00,12418.0
-2014-02-01 23:00:00,12058.0
-2014-02-02 00:00:00,11549.0
-2014-01-31 01:00:00,11551.0
-2014-01-31 02:00:00,11139.0
-2014-01-31 03:00:00,10938.0
-2014-01-31 04:00:00,10808.0
-2014-01-31 05:00:00,10798.0
-2014-01-31 06:00:00,11042.0
-2014-01-31 07:00:00,11724.0
-2014-01-31 08:00:00,12795.0
-2014-01-31 09:00:00,13301.0
-2014-01-31 10:00:00,13386.0
-2014-01-31 11:00:00,13430.0
-2014-01-31 12:00:00,13404.0
-2014-01-31 13:00:00,13388.0
-2014-01-31 14:00:00,13253.0
-2014-01-31 15:00:00,13180.0
-2014-01-31 16:00:00,13071.0
-2014-01-31 17:00:00,12997.0
-2014-01-31 18:00:00,13233.0
-2014-01-31 19:00:00,13869.0
-2014-01-31 20:00:00,13864.0
-2014-01-31 21:00:00,13687.0
-2014-01-31 22:00:00,13376.0
-2014-01-31 23:00:00,13013.0
-2014-02-01 00:00:00,12371.0
-2014-01-30 01:00:00,12423.0
-2014-01-30 02:00:00,11920.0
-2014-01-30 03:00:00,11628.0
-2014-01-30 04:00:00,11528.0
-2014-01-30 05:00:00,11499.0
-2014-01-30 06:00:00,11693.0
-2014-01-30 07:00:00,12329.0
-2014-01-30 08:00:00,13364.0
-2014-01-30 09:00:00,13826.0
-2014-01-30 10:00:00,13914.0
-2014-01-30 11:00:00,13981.0
-2014-01-30 12:00:00,14075.0
-2014-01-30 13:00:00,13920.0
-2014-01-30 14:00:00,13820.0
-2014-01-30 15:00:00,13860.0
-2014-01-30 16:00:00,13845.0
-2014-01-30 17:00:00,13809.0
-2014-01-30 18:00:00,14013.0
-2014-01-30 19:00:00,14533.0
-2014-01-30 20:00:00,14403.0
-2014-01-30 21:00:00,14122.0
-2014-01-30 22:00:00,13752.0
-2014-01-30 23:00:00,13190.0
-2014-01-31 00:00:00,12324.0
-2014-01-29 01:00:00,13295.0
-2014-01-29 02:00:00,12815.0
-2014-01-29 03:00:00,12590.0
-2014-01-29 04:00:00,12396.0
-2014-01-29 05:00:00,12415.0
-2014-01-29 06:00:00,12646.0
-2014-01-29 07:00:00,13266.0
-2014-01-29 08:00:00,14296.0
-2014-01-29 09:00:00,14640.0
-2014-01-29 10:00:00,14590.0
-2014-01-29 11:00:00,14448.0
-2014-01-29 12:00:00,14357.0
-2014-01-29 13:00:00,14188.0
-2014-01-29 14:00:00,14009.0
-2014-01-29 15:00:00,13912.0
-2014-01-29 16:00:00,13735.0
-2014-01-29 17:00:00,13621.0
-2014-01-29 18:00:00,13912.0
-2014-01-29 19:00:00,14759.0
-2014-01-29 20:00:00,14925.0
-2014-01-29 21:00:00,14758.0
-2014-01-29 22:00:00,14461.0
-2014-01-29 23:00:00,13959.0
-2014-01-30 00:00:00,13172.0
-2014-01-28 01:00:00,13525.0
-2014-01-28 02:00:00,13154.0
-2014-01-28 03:00:00,12901.0
-2014-01-28 04:00:00,12778.0
-2014-01-28 05:00:00,12723.0
-2014-01-28 06:00:00,12905.0
-2014-01-28 07:00:00,13491.0
-2014-01-28 08:00:00,14313.0
-2014-01-28 09:00:00,14670.0
-2014-01-28 10:00:00,14873.0
-2014-01-28 11:00:00,14932.0
-2014-01-28 12:00:00,15002.0
-2014-01-28 13:00:00,14950.0
-2014-01-28 14:00:00,14847.0
-2014-01-28 15:00:00,14783.0
-2014-01-28 16:00:00,14619.0
-2014-01-28 17:00:00,14531.0
-2014-01-28 18:00:00,14819.0
-2014-01-28 19:00:00,15720.0
-2014-01-28 20:00:00,15862.0
-2014-01-28 21:00:00,15651.0
-2014-01-28 22:00:00,15328.0
-2014-01-28 23:00:00,14749.0
-2014-01-29 00:00:00,13959.0
-2014-01-27 01:00:00,12203.0
-2014-01-27 02:00:00,11921.0
-2014-01-27 03:00:00,11831.0
-2014-01-27 04:00:00,11787.0
-2014-01-27 05:00:00,11880.0
-2014-01-27 06:00:00,12078.0
-2014-01-27 07:00:00,12769.0
-2014-01-27 08:00:00,13710.0
-2014-01-27 09:00:00,14162.0
-2014-01-27 10:00:00,14352.0
-2014-01-27 11:00:00,14578.0
-2014-01-27 12:00:00,14699.0
-2014-01-27 13:00:00,14738.0
-2014-01-27 14:00:00,14728.0
-2014-01-27 15:00:00,14754.0
-2014-01-27 16:00:00,14649.0
-2014-01-27 17:00:00,14634.0
-2014-01-27 18:00:00,14932.0
-2014-01-27 19:00:00,15872.0
-2014-01-27 20:00:00,16064.0
-2014-01-27 21:00:00,15875.0
-2014-01-27 22:00:00,15615.0
-2014-01-27 23:00:00,15068.0
-2014-01-28 00:00:00,14229.0
-2014-01-26 01:00:00,12082.0
-2014-01-26 02:00:00,11619.0
-2014-01-26 03:00:00,11391.0
-2014-01-26 04:00:00,11216.0
-2014-01-26 05:00:00,11196.0
-2014-01-26 06:00:00,11162.0
-2014-01-26 07:00:00,11360.0
-2014-01-26 08:00:00,11560.0
-2014-01-26 09:00:00,11684.0
-2014-01-26 10:00:00,11810.0
-2014-01-26 11:00:00,11966.0
-2014-01-26 12:00:00,11865.0
-2014-01-26 13:00:00,11950.0
-2014-01-26 14:00:00,11825.0
-2014-01-26 15:00:00,11658.0
-2014-01-26 16:00:00,11456.0
-2014-01-26 17:00:00,11567.0
-2014-01-26 18:00:00,12076.0
-2014-01-26 19:00:00,12987.0
-2014-01-26 20:00:00,13078.0
-2014-01-26 21:00:00,13114.0
-2014-01-26 22:00:00,13037.0
-2014-01-26 23:00:00,12837.0
-2014-01-27 00:00:00,12567.0
-2014-01-25 01:00:00,12269.0
-2014-01-25 02:00:00,11649.0
-2014-01-25 03:00:00,11193.0
-2014-01-25 04:00:00,10920.0
-2014-01-25 05:00:00,10788.0
-2014-01-25 06:00:00,10706.0
-2014-01-25 07:00:00,10992.0
-2014-01-25 08:00:00,11517.0
-2014-01-25 09:00:00,11730.0
-2014-01-25 10:00:00,12148.0
-2014-01-25 11:00:00,12381.0
-2014-01-25 12:00:00,12440.0
-2014-01-25 13:00:00,12408.0
-2014-01-25 14:00:00,12347.0
-2014-01-25 15:00:00,12195.0
-2014-01-25 16:00:00,12086.0
-2014-01-25 17:00:00,12175.0
-2014-01-25 18:00:00,12555.0
-2014-01-25 19:00:00,13614.0
-2014-01-25 20:00:00,13790.0
-2014-01-25 21:00:00,13762.0
-2014-01-25 22:00:00,13530.0
-2014-01-25 23:00:00,13249.0
-2014-01-26 00:00:00,12631.0
-2014-01-24 01:00:00,13337.0
-2014-01-24 02:00:00,12921.0
-2014-01-24 03:00:00,12637.0
-2014-01-24 04:00:00,12519.0
-2014-01-24 05:00:00,12528.0
-2014-01-24 06:00:00,12739.0
-2014-01-24 07:00:00,13255.0
-2014-01-24 08:00:00,14306.0
-2014-01-24 09:00:00,14802.0
-2014-01-24 10:00:00,15031.0
-2014-01-24 11:00:00,15082.0
-2014-01-24 12:00:00,14982.0
-2014-01-24 13:00:00,14760.0
-2014-01-24 14:00:00,14649.0
-2014-01-24 15:00:00,14623.0
-2014-01-24 16:00:00,14497.0
-2014-01-24 17:00:00,14410.0
-2014-01-24 18:00:00,14631.0
-2014-01-24 19:00:00,15142.0
-2014-01-24 20:00:00,15011.0
-2014-01-24 21:00:00,14687.0
-2014-01-24 22:00:00,14336.0
-2014-01-24 23:00:00,13827.0
-2014-01-25 00:00:00,13035.0
-2014-01-23 01:00:00,13119.0
-2014-01-23 02:00:00,12701.0
-2014-01-23 03:00:00,12509.0
-2014-01-23 04:00:00,12387.0
-2014-01-23 05:00:00,12381.0
-2014-01-23 06:00:00,12604.0
-2014-01-23 07:00:00,13255.0
-2014-01-23 08:00:00,14331.0
-2014-01-23 09:00:00,14703.0
-2014-01-23 10:00:00,14810.0
-2014-01-23 11:00:00,14770.0
-2014-01-23 12:00:00,14727.0
-2014-01-23 13:00:00,14582.0
-2014-01-23 14:00:00,14407.0
-2014-01-23 15:00:00,14313.0
-2014-01-23 16:00:00,14154.0
-2014-01-23 17:00:00,14165.0
-2014-01-23 18:00:00,14538.0
-2014-01-23 19:00:00,15469.0
-2014-01-23 20:00:00,15554.0
-2014-01-23 21:00:00,15476.0
-2014-01-23 22:00:00,15290.0
-2014-01-23 23:00:00,14813.0
-2014-01-24 00:00:00,14015.0
-2014-01-22 01:00:00,12664.0
-2014-01-22 02:00:00,12229.0
-2014-01-22 03:00:00,11935.0
-2014-01-22 04:00:00,11812.0
-2014-01-22 05:00:00,11831.0
-2014-01-22 06:00:00,11976.0
-2014-01-22 07:00:00,12684.0
-2014-01-22 08:00:00,13747.0
-2014-01-22 09:00:00,14304.0
-2014-01-22 10:00:00,14416.0
-2014-01-22 11:00:00,14440.0
-2014-01-22 12:00:00,14532.0
-2014-01-22 13:00:00,14409.0
-2014-01-22 14:00:00,14245.0
-2014-01-22 15:00:00,14250.0
-2014-01-22 16:00:00,14145.0
-2014-01-22 17:00:00,14214.0
-2014-01-22 18:00:00,14500.0
-2014-01-22 19:00:00,15226.0
-2014-01-22 20:00:00,15406.0
-2014-01-22 21:00:00,15233.0
-2014-01-22 22:00:00,15047.0
-2014-01-22 23:00:00,14552.0
-2014-01-23 00:00:00,13821.0
-2014-01-21 01:00:00,11786.0
-2014-01-21 02:00:00,11436.0
-2014-01-21 03:00:00,11305.0
-2014-01-21 04:00:00,11274.0
-2014-01-21 05:00:00,11388.0
-2014-01-21 06:00:00,11694.0
-2014-01-21 07:00:00,12430.0
-2014-01-21 08:00:00,13558.0
-2014-01-21 09:00:00,14016.0
-2014-01-21 10:00:00,14062.0
-2014-01-21 11:00:00,14045.0
-2014-01-21 12:00:00,14029.0
-2014-01-21 13:00:00,13915.0
-2014-01-21 14:00:00,13821.0
-2014-01-21 15:00:00,13715.0
-2014-01-21 16:00:00,13625.0
-2014-01-21 17:00:00,13613.0
-2014-01-21 18:00:00,14077.0
-2014-01-21 19:00:00,15013.0
-2014-01-21 20:00:00,15061.0
-2014-01-21 21:00:00,14903.0
-2014-01-21 22:00:00,14698.0
-2014-01-21 23:00:00,14205.0
-2014-01-22 00:00:00,13408.0
-2014-01-20 01:00:00,10566.0
-2014-01-20 02:00:00,10230.0
-2014-01-20 03:00:00,9993.0
-2014-01-20 04:00:00,9856.0
-2014-01-20 05:00:00,9830.0
-2014-01-20 06:00:00,10101.0
-2014-01-20 07:00:00,10762.0
-2014-01-20 08:00:00,11662.0
-2014-01-20 09:00:00,12193.0
-2014-01-20 10:00:00,12395.0
-2014-01-20 11:00:00,12507.0
-2014-01-20 12:00:00,12658.0
-2014-01-20 13:00:00,12696.0
-2014-01-20 14:00:00,12561.0
-2014-01-20 15:00:00,12527.0
-2014-01-20 16:00:00,12486.0
-2014-01-20 17:00:00,12619.0
-2014-01-20 18:00:00,13192.0
-2014-01-20 19:00:00,13868.0
-2014-01-20 20:00:00,13871.0
-2014-01-20 21:00:00,13794.0
-2014-01-20 22:00:00,13638.0
-2014-01-20 23:00:00,13129.0
-2014-01-21 00:00:00,12400.0
-2014-01-19 01:00:00,11453.0
-2014-01-19 02:00:00,11069.0
-2014-01-19 03:00:00,10888.0
-2014-01-19 04:00:00,10790.0
-2014-01-19 05:00:00,10766.0
-2014-01-19 06:00:00,10787.0
-2014-01-19 07:00:00,11002.0
-2014-01-19 08:00:00,11259.0
-2014-01-19 09:00:00,11351.0
-2014-01-19 10:00:00,11423.0
-2014-01-19 11:00:00,11512.0
-2014-01-19 12:00:00,11478.0
-2014-01-19 13:00:00,11390.0
-2014-01-19 14:00:00,11257.0
-2014-01-19 15:00:00,11187.0
-2014-01-19 16:00:00,11256.0
-2014-01-19 17:00:00,11311.0
-2014-01-19 18:00:00,11639.0
-2014-01-19 19:00:00,12572.0
-2014-01-19 20:00:00,12667.0
-2014-01-19 21:00:00,12422.0
-2014-01-19 22:00:00,12156.0
-2014-01-19 23:00:00,11720.0
-2014-01-20 00:00:00,11198.0
-2014-01-18 01:00:00,12116.0
-2014-01-18 02:00:00,11614.0
-2014-01-18 03:00:00,11322.0
-2014-01-18 04:00:00,11147.0
-2014-01-18 05:00:00,11092.0
-2014-01-18 06:00:00,11150.0
-2014-01-18 07:00:00,11440.0
-2014-01-18 08:00:00,11888.0
-2014-01-18 09:00:00,12153.0
-2014-01-18 10:00:00,12472.0
-2014-01-18 11:00:00,12800.0
-2014-01-18 12:00:00,12944.0
-2014-01-18 13:00:00,12890.0
-2014-01-18 14:00:00,12749.0
-2014-01-18 15:00:00,12578.0
-2014-01-18 16:00:00,12379.0
-2014-01-18 17:00:00,12347.0
-2014-01-18 18:00:00,12611.0
-2014-01-18 19:00:00,13358.0
-2014-01-18 20:00:00,13311.0
-2014-01-18 21:00:00,13157.0
-2014-01-18 22:00:00,12865.0
-2014-01-18 23:00:00,12546.0
-2014-01-19 00:00:00,11984.0
-2014-01-17 01:00:00,11677.0
-2014-01-17 02:00:00,11246.0
-2014-01-17 03:00:00,11027.0
-2014-01-17 04:00:00,10917.0
-2014-01-17 05:00:00,10935.0
-2014-01-17 06:00:00,11232.0
-2014-01-17 07:00:00,11906.0
-2014-01-17 08:00:00,13033.0
-2014-01-17 09:00:00,13644.0
-2014-01-17 10:00:00,13732.0
-2014-01-17 11:00:00,13843.0
-2014-01-17 12:00:00,13886.0
-2014-01-17 13:00:00,13812.0
-2014-01-17 14:00:00,13675.0
-2014-01-17 15:00:00,13662.0
-2014-01-17 16:00:00,13621.0
-2014-01-17 17:00:00,13628.0
-2014-01-17 18:00:00,14022.0
-2014-01-17 19:00:00,14528.0
-2014-01-17 20:00:00,14389.0
-2014-01-17 21:00:00,14166.0
-2014-01-17 22:00:00,13819.0
-2014-01-17 23:00:00,13473.0
-2014-01-18 00:00:00,12768.0
-2014-01-16 01:00:00,11846.0
-2014-01-16 02:00:00,11383.0
-2014-01-16 03:00:00,11065.0
-2014-01-16 04:00:00,10914.0
-2014-01-16 05:00:00,10855.0
-2014-01-16 06:00:00,11054.0
-2014-01-16 07:00:00,11711.0
-2014-01-16 08:00:00,12797.0
-2014-01-16 09:00:00,13462.0
-2014-01-16 10:00:00,13539.0
-2014-01-16 11:00:00,13539.0
-2014-01-16 12:00:00,13504.0
-2014-01-16 13:00:00,13433.0
-2014-01-16 14:00:00,13283.0
-2014-01-16 15:00:00,13289.0
-2014-01-16 16:00:00,13192.0
-2014-01-16 17:00:00,13144.0
-2014-01-16 18:00:00,13541.0
-2014-01-16 19:00:00,14083.0
-2014-01-16 20:00:00,13938.0
-2014-01-16 21:00:00,13822.0
-2014-01-16 22:00:00,13605.0
-2014-01-16 23:00:00,13152.0
-2014-01-17 00:00:00,12378.0
-2014-01-15 01:00:00,11502.0
-2014-01-15 02:00:00,10998.0
-2014-01-15 03:00:00,10763.0
-2014-01-15 04:00:00,10636.0
-2014-01-15 05:00:00,10671.0
-2014-01-15 06:00:00,10930.0
-2014-01-15 07:00:00,11643.0
-2014-01-15 08:00:00,12823.0
-2014-01-15 09:00:00,13443.0
-2014-01-15 10:00:00,13370.0
-2014-01-15 11:00:00,13269.0
-2014-01-15 12:00:00,13234.0
-2014-01-15 13:00:00,13204.0
-2014-01-15 14:00:00,13165.0
-2014-01-15 15:00:00,13267.0
-2014-01-15 16:00:00,13181.0
-2014-01-15 17:00:00,13135.0
-2014-01-15 18:00:00,13564.0
-2014-01-15 19:00:00,14473.0
-2014-01-15 20:00:00,14416.0
-2014-01-15 21:00:00,14203.0
-2014-01-15 22:00:00,13918.0
-2014-01-15 23:00:00,13404.0
-2014-01-16 00:00:00,12585.0
-2014-01-14 01:00:00,10825.0
-2014-01-14 02:00:00,10366.0
-2014-01-14 03:00:00,10101.0
-2014-01-14 04:00:00,9950.0
-2014-01-14 05:00:00,9989.0
-2014-01-14 06:00:00,10293.0
-2014-01-14 07:00:00,11036.0
-2014-01-14 08:00:00,12200.0
-2014-01-14 09:00:00,12646.0
-2014-01-14 10:00:00,12700.0
-2014-01-14 11:00:00,12831.0
-2014-01-14 12:00:00,13016.0
-2014-01-14 13:00:00,13036.0
-2014-01-14 14:00:00,13045.0
-2014-01-14 15:00:00,13122.0
-2014-01-14 16:00:00,13135.0
-2014-01-14 17:00:00,13219.0
-2014-01-14 18:00:00,13723.0
-2014-01-14 19:00:00,14269.0
-2014-01-14 20:00:00,14124.0
-2014-01-14 21:00:00,13904.0
-2014-01-14 22:00:00,13601.0
-2014-01-14 23:00:00,13075.0
-2014-01-15 00:00:00,12265.0
-2014-01-13 01:00:00,10229.0
-2014-01-13 02:00:00,9861.0
-2014-01-13 03:00:00,9600.0
-2014-01-13 04:00:00,9519.0
-2014-01-13 05:00:00,9497.0
-2014-01-13 06:00:00,9824.0
-2014-01-13 07:00:00,10558.0
-2014-01-13 08:00:00,11822.0
-2014-01-13 09:00:00,12421.0
-2014-01-13 10:00:00,12366.0
-2014-01-13 11:00:00,12350.0
-2014-01-13 12:00:00,12283.0
-2014-01-13 13:00:00,12164.0
-2014-01-13 14:00:00,12007.0
-2014-01-13 15:00:00,11938.0
-2014-01-13 16:00:00,11840.0
-2014-01-13 17:00:00,11844.0
-2014-01-13 18:00:00,12325.0
-2014-01-13 19:00:00,13210.0
-2014-01-13 20:00:00,13200.0
-2014-01-13 21:00:00,13013.0
-2014-01-13 22:00:00,12809.0
-2014-01-13 23:00:00,12323.0
-2014-01-14 00:00:00,11531.0
-2014-01-12 01:00:00,10713.0
-2014-01-12 02:00:00,10257.0
-2014-01-12 03:00:00,9967.0
-2014-01-12 04:00:00,9786.0
-2014-01-12 05:00:00,9748.0
-2014-01-12 06:00:00,9760.0
-2014-01-12 07:00:00,9934.0
-2014-01-12 08:00:00,10205.0
-2014-01-12 09:00:00,10353.0
-2014-01-12 10:00:00,10525.0
-2014-01-12 11:00:00,10694.0
-2014-01-12 12:00:00,10652.0
-2014-01-12 13:00:00,10773.0
-2014-01-12 14:00:00,10760.0
-2014-01-12 15:00:00,10716.0
-2014-01-12 16:00:00,10604.0
-2014-01-12 17:00:00,10725.0
-2014-01-12 18:00:00,11265.0
-2014-01-12 19:00:00,12126.0
-2014-01-12 20:00:00,12145.0
-2014-01-12 21:00:00,12062.0
-2014-01-12 22:00:00,11846.0
-2014-01-12 23:00:00,11389.0
-2014-01-13 00:00:00,10828.0
-2014-01-11 01:00:00,11084.0
-2014-01-11 02:00:00,10553.0
-2014-01-11 03:00:00,10120.0
-2014-01-11 04:00:00,9894.0
-2014-01-11 05:00:00,9784.0
-2014-01-11 06:00:00,9803.0
-2014-01-11 07:00:00,10095.0
-2014-01-11 08:00:00,10578.0
-2014-01-11 09:00:00,11048.0
-2014-01-11 10:00:00,11334.0
-2014-01-11 11:00:00,11759.0
-2014-01-11 12:00:00,11887.0
-2014-01-11 13:00:00,11902.0
-2014-01-11 14:00:00,11731.0
-2014-01-11 15:00:00,11549.0
-2014-01-11 16:00:00,11461.0
-2014-01-11 17:00:00,11480.0
-2014-01-11 18:00:00,11952.0
-2014-01-11 19:00:00,12556.0
-2014-01-11 20:00:00,12506.0
-2014-01-11 21:00:00,12384.0
-2014-01-11 22:00:00,12159.0
-2014-01-11 23:00:00,11810.0
-2014-01-12 00:00:00,11328.0
-2014-01-10 01:00:00,11881.0
-2014-01-10 02:00:00,11324.0
-2014-01-10 03:00:00,10994.0
-2014-01-10 04:00:00,10756.0
-2014-01-10 05:00:00,10678.0
-2014-01-10 06:00:00,10845.0
-2014-01-10 07:00:00,11457.0
-2014-01-10 08:00:00,12555.0
-2014-01-10 09:00:00,13142.0
-2014-01-10 10:00:00,13126.0
-2014-01-10 11:00:00,13174.0
-2014-01-10 12:00:00,13229.0
-2014-01-10 13:00:00,13206.0
-2014-01-10 14:00:00,13135.0
-2014-01-10 15:00:00,13178.0
-2014-01-10 16:00:00,13261.0
-2014-01-10 17:00:00,13243.0
-2014-01-10 18:00:00,13801.0
-2014-01-10 19:00:00,14075.0
-2014-01-10 20:00:00,13841.0
-2014-01-10 21:00:00,13525.0
-2014-01-10 22:00:00,13050.0
-2014-01-10 23:00:00,12585.0
-2014-01-11 00:00:00,11890.0
-2014-01-09 01:00:00,12871.0
-2014-01-09 02:00:00,12381.0
-2014-01-09 03:00:00,12158.0
-2014-01-09 04:00:00,11985.0
-2014-01-09 05:00:00,11981.0
-2014-01-09 06:00:00,12166.0
-2014-01-09 07:00:00,12812.0
-2014-01-09 08:00:00,13883.0
-2014-01-09 09:00:00,14373.0
-2014-01-09 10:00:00,14404.0
-2014-01-09 11:00:00,14407.0
-2014-01-09 12:00:00,14348.0
-2014-01-09 13:00:00,14245.0
-2014-01-09 14:00:00,14203.0
-2014-01-09 15:00:00,14218.0
-2014-01-09 16:00:00,14038.0
-2014-01-09 17:00:00,13985.0
-2014-01-09 18:00:00,14451.0
-2014-01-09 19:00:00,14945.0
-2014-01-09 20:00:00,14771.0
-2014-01-09 21:00:00,14604.0
-2014-01-09 22:00:00,14267.0
-2014-01-09 23:00:00,13612.0
-2014-01-10 00:00:00,12717.0
-2014-01-08 01:00:00,13204.0
-2014-01-08 02:00:00,12723.0
-2014-01-08 03:00:00,12467.0
-2014-01-08 04:00:00,12289.0
-2014-01-08 05:00:00,12269.0
-2014-01-08 06:00:00,12469.0
-2014-01-08 07:00:00,13040.0
-2014-01-08 08:00:00,14088.0
-2014-01-08 09:00:00,14580.0
-2014-01-08 10:00:00,14612.0
-2014-01-08 11:00:00,14599.0
-2014-01-08 12:00:00,14549.0
-2014-01-08 13:00:00,14377.0
-2014-01-08 14:00:00,14209.0
-2014-01-08 15:00:00,14092.0
-2014-01-08 16:00:00,14006.0
-2014-01-08 17:00:00,14028.0
-2014-01-08 18:00:00,14586.0
-2014-01-08 19:00:00,15356.0
-2014-01-08 20:00:00,15337.0
-2014-01-08 21:00:00,15199.0
-2014-01-08 22:00:00,14932.0
-2014-01-08 23:00:00,14439.0
-2014-01-09 00:00:00,13604.0
-2014-01-07 01:00:00,13829.0
-2014-01-07 02:00:00,13349.0
-2014-01-07 03:00:00,13034.0
-2014-01-07 04:00:00,12892.0
-2014-01-07 05:00:00,12866.0
-2014-01-07 06:00:00,13023.0
-2014-01-07 07:00:00,13513.0
-2014-01-07 08:00:00,14255.0
-2014-01-07 09:00:00,14604.0
-2014-01-07 10:00:00,14785.0
-2014-01-07 11:00:00,14990.0
-2014-01-07 12:00:00,15226.0
-2014-01-07 13:00:00,15276.0
-2014-01-07 14:00:00,15218.0
-2014-01-07 15:00:00,15180.0
-2014-01-07 16:00:00,14974.0
-2014-01-07 17:00:00,14831.0
-2014-01-07 18:00:00,15284.0
-2014-01-07 19:00:00,16099.0
-2014-01-07 20:00:00,16047.0
-2014-01-07 21:00:00,15830.0
-2014-01-07 22:00:00,15529.0
-2014-01-07 23:00:00,14826.0
-2014-01-08 00:00:00,13950.0
-2014-01-06 01:00:00,12633.0
-2014-01-06 02:00:00,12324.0
-2014-01-06 03:00:00,12127.0
-2014-01-06 04:00:00,12205.0
-2014-01-06 05:00:00,12165.0
-2014-01-06 06:00:00,12370.0
-2014-01-06 07:00:00,12893.0
-2014-01-06 08:00:00,13744.0
-2014-01-06 09:00:00,14177.0
-2014-01-06 10:00:00,14446.0
-2014-01-06 11:00:00,14598.0
-2014-01-06 12:00:00,14861.0
-2014-01-06 13:00:00,14961.0
-2014-01-06 14:00:00,14971.0
-2014-01-06 15:00:00,14956.0
-2014-01-06 16:00:00,15006.0
-2014-01-06 17:00:00,15059.0
-2014-01-06 18:00:00,15613.0
-2014-01-06 19:00:00,16514.0
-2014-01-06 20:00:00,16427.0
-2014-01-06 21:00:00,16143.0
-2014-01-06 22:00:00,15839.0
-2014-01-06 23:00:00,15335.0
-2014-01-07 00:00:00,14589.0
-2014-01-05 01:00:00,11272.0
-2014-01-05 02:00:00,10835.0
-2014-01-05 03:00:00,10509.0
-2014-01-05 04:00:00,10379.0
-2014-01-05 05:00:00,10308.0
-2014-01-05 06:00:00,10337.0
-2014-01-05 07:00:00,10496.0
-2014-01-05 08:00:00,10770.0
-2014-01-05 09:00:00,10930.0
-2014-01-05 10:00:00,11213.0
-2014-01-05 11:00:00,11559.0
-2014-01-05 12:00:00,11822.0
-2014-01-05 13:00:00,12053.0
-2014-01-05 14:00:00,12191.0
-2014-01-05 15:00:00,12303.0
-2014-01-05 16:00:00,12403.0
-2014-01-05 17:00:00,12592.0
-2014-01-05 18:00:00,13366.0
-2014-01-05 19:00:00,14250.0
-2014-01-05 20:00:00,14253.0
-2014-01-05 21:00:00,14200.0
-2014-01-05 22:00:00,13959.0
-2014-01-05 23:00:00,13678.0
-2014-01-06 00:00:00,13174.0
-2014-01-04 01:00:00,12566.0
-2014-01-04 02:00:00,11995.0
-2014-01-04 03:00:00,11593.0
-2014-01-04 04:00:00,11340.0
-2014-01-04 05:00:00,11163.0
-2014-01-04 06:00:00,11209.0
-2014-01-04 07:00:00,11339.0
-2014-01-04 08:00:00,11701.0
-2014-01-04 09:00:00,11826.0
-2014-01-04 10:00:00,12025.0
-2014-01-04 11:00:00,12197.0
-2014-01-04 12:00:00,12430.0
-2014-01-04 13:00:00,12444.0
-2014-01-04 14:00:00,12365.0
-2014-01-04 15:00:00,12157.0
-2014-01-04 16:00:00,12084.0
-2014-01-04 17:00:00,12092.0
-2014-01-04 18:00:00,12759.0
-2014-01-04 19:00:00,13288.0
-2014-01-04 20:00:00,13245.0
-2014-01-04 21:00:00,13097.0
-2014-01-04 22:00:00,12890.0
-2014-01-04 23:00:00,12493.0
-2014-01-05 00:00:00,11940.0
-2014-01-03 01:00:00,12353.0
-2014-01-03 02:00:00,11868.0
-2014-01-03 03:00:00,11606.0
-2014-01-03 04:00:00,11458.0
-2014-01-03 05:00:00,11468.0
-2014-01-03 06:00:00,11694.0
-2014-01-03 07:00:00,12267.0
-2014-01-03 08:00:00,13126.0
-2014-01-03 09:00:00,13567.0
-2014-01-03 10:00:00,13710.0
-2014-01-03 11:00:00,13775.0
-2014-01-03 12:00:00,13897.0
-2014-01-03 13:00:00,13946.0
-2014-01-03 14:00:00,13979.0
-2014-01-03 15:00:00,13971.0
-2014-01-03 16:00:00,13893.0
-2014-01-03 17:00:00,13940.0
-2014-01-03 18:00:00,14385.0
-2014-01-03 19:00:00,15100.0
-2014-01-03 20:00:00,14998.0
-2014-01-03 21:00:00,14784.0
-2014-01-03 22:00:00,14456.0
-2014-01-03 23:00:00,14023.0
-2014-01-04 00:00:00,13297.0
-2014-01-02 01:00:00,11004.0
-2014-01-02 02:00:00,10568.0
-2014-01-02 03:00:00,10345.0
-2014-01-02 04:00:00,10215.0
-2014-01-02 05:00:00,10255.0
-2014-01-02 06:00:00,10509.0
-2014-01-02 07:00:00,11167.0
-2014-01-02 08:00:00,12153.0
-2014-01-02 09:00:00,12777.0
-2014-01-02 10:00:00,13008.0
-2014-01-02 11:00:00,13292.0
-2014-01-02 12:00:00,13462.0
-2014-01-02 13:00:00,13492.0
-2014-01-02 14:00:00,13473.0
-2014-01-02 15:00:00,13474.0
-2014-01-02 16:00:00,13365.0
-2014-01-02 17:00:00,13276.0
-2014-01-02 18:00:00,13856.0
-2014-01-02 19:00:00,14744.0
-2014-01-02 20:00:00,14715.0
-2014-01-02 21:00:00,14567.0
-2014-01-02 22:00:00,14306.0
-2014-01-02 23:00:00,13830.0
-2014-01-03 00:00:00,13079.0
-2014-01-01 01:00:00,11562.0
-2014-01-01 02:00:00,11135.0
-2014-01-01 03:00:00,10766.0
-2014-01-01 04:00:00,10489.0
-2014-01-01 05:00:00,10326.0
-2014-01-01 06:00:00,10296.0
-2014-01-01 07:00:00,10433.0
-2014-01-01 08:00:00,10626.0
-2014-01-01 09:00:00,10640.0
-2014-01-01 10:00:00,10657.0
-2014-01-01 11:00:00,10927.0
-2014-01-01 12:00:00,11137.0
-2014-01-01 13:00:00,11292.0
-2014-01-01 14:00:00,11344.0
-2014-01-01 15:00:00,11371.0
-2014-01-01 16:00:00,11389.0
-2014-01-01 17:00:00,11501.0
-2014-01-01 18:00:00,12263.0
-2014-01-01 19:00:00,13062.0
-2014-01-01 20:00:00,13015.0
-2014-01-01 21:00:00,12831.0
-2014-01-01 22:00:00,12598.0
-2014-01-01 23:00:00,12231.0
-2014-01-02 00:00:00,11605.0
-2015-12-31 01:00:00,10419.0
-2015-12-31 02:00:00,9893.0
-2015-12-31 03:00:00,9544.0
-2015-12-31 04:00:00,9341.0
-2015-12-31 05:00:00,9318.0
-2015-12-31 06:00:00,9507.0
-2015-12-31 07:00:00,9992.0
-2015-12-31 08:00:00,10692.0
-2015-12-31 09:00:00,10984.0
-2015-12-31 10:00:00,11162.0
-2015-12-31 11:00:00,11289.0
-2015-12-31 12:00:00,11306.0
-2015-12-31 13:00:00,11273.0
-2015-12-31 14:00:00,11196.0
-2015-12-31 15:00:00,11229.0
-2015-12-31 16:00:00,11226.0
-2015-12-31 17:00:00,11286.0
-2015-12-31 18:00:00,11937.0
-2015-12-31 19:00:00,12564.0
-2015-12-31 20:00:00,12297.0
-2015-12-31 21:00:00,11944.0
-2015-12-31 22:00:00,11607.0
-2015-12-31 23:00:00,11277.0
-2016-01-01 00:00:00,10802.0
-2015-12-30 01:00:00,10309.0
-2015-12-30 02:00:00,9794.0
-2015-12-30 03:00:00,9477.0
-2015-12-30 04:00:00,9300.0
-2015-12-30 05:00:00,9260.0
-2015-12-30 06:00:00,9488.0
-2015-12-30 07:00:00,10061.0
-2015-12-30 08:00:00,10921.0
-2015-12-30 09:00:00,11486.0
-2015-12-30 10:00:00,11670.0
-2015-12-30 11:00:00,11771.0
-2015-12-30 12:00:00,11854.0
-2015-12-30 13:00:00,11865.0
-2015-12-30 14:00:00,11837.0
-2015-12-30 15:00:00,11897.0
-2015-12-30 16:00:00,11851.0
-2015-12-30 17:00:00,11870.0
-2015-12-30 18:00:00,12459.0
-2015-12-30 19:00:00,13039.0
-2015-12-30 20:00:00,12781.0
-2015-12-30 21:00:00,12562.0
-2015-12-30 22:00:00,12281.0
-2015-12-30 23:00:00,11843.0
-2015-12-31 00:00:00,11168.0
-2015-12-29 01:00:00,10199.0
-2015-12-29 02:00:00,9664.0
-2015-12-29 03:00:00,9309.0
-2015-12-29 04:00:00,9168.0
-2015-12-29 05:00:00,9174.0
-2015-12-29 06:00:00,9393.0
-2015-12-29 07:00:00,10002.0
-2015-12-29 08:00:00,10851.0
-2015-12-29 09:00:00,11338.0
-2015-12-29 10:00:00,11519.0
-2015-12-29 11:00:00,11691.0
-2015-12-29 12:00:00,11834.0
-2015-12-29 13:00:00,11843.0
-2015-12-29 14:00:00,11851.0
-2015-12-29 15:00:00,11873.0
-2015-12-29 16:00:00,11847.0
-2015-12-29 17:00:00,11902.0
-2015-12-29 18:00:00,12520.0
-2015-12-29 19:00:00,12973.0
-2015-12-29 20:00:00,12707.0
-2015-12-29 21:00:00,12464.0
-2015-12-29 22:00:00,12204.0
-2015-12-29 23:00:00,11773.0
-2015-12-30 00:00:00,11045.0
-2015-12-28 01:00:00,9714.0
-2015-12-28 02:00:00,9346.0
-2015-12-28 03:00:00,9077.0
-2015-12-28 04:00:00,9004.0
-2015-12-28 05:00:00,9041.0
-2015-12-28 06:00:00,9341.0
-2015-12-28 07:00:00,10054.0
-2015-12-28 08:00:00,11018.0
-2015-12-28 09:00:00,11720.0
-2015-12-28 10:00:00,12063.0
-2015-12-28 11:00:00,12280.0
-2015-12-28 12:00:00,12568.0
-2015-12-28 13:00:00,12678.0
-2015-12-28 14:00:00,12724.0
-2015-12-28 15:00:00,12727.0
-2015-12-28 16:00:00,12651.0
-2015-12-28 17:00:00,12720.0
-2015-12-28 18:00:00,13195.0
-2015-12-28 19:00:00,13398.0
-2015-12-28 20:00:00,13068.0
-2015-12-28 21:00:00,12738.0
-2015-12-28 22:00:00,12361.0
-2015-12-28 23:00:00,11797.0
-2015-12-29 00:00:00,10920.0
-2015-12-27 01:00:00,9371.0
-2015-12-27 02:00:00,8914.0
-2015-12-27 03:00:00,8674.0
-2015-12-27 04:00:00,8447.0
-2015-12-27 05:00:00,8403.0
-2015-12-27 06:00:00,8399.0
-2015-12-27 07:00:00,8542.0
-2015-12-27 08:00:00,8810.0
-2015-12-27 09:00:00,9017.0
-2015-12-27 10:00:00,9219.0
-2015-12-27 11:00:00,9471.0
-2015-12-27 12:00:00,9632.0
-2015-12-27 13:00:00,9710.0
-2015-12-27 14:00:00,9741.0
-2015-12-27 15:00:00,9786.0
-2015-12-27 16:00:00,9848.0
-2015-12-27 17:00:00,10035.0
-2015-12-27 18:00:00,10824.0
-2015-12-27 19:00:00,11169.0
-2015-12-27 20:00:00,11384.0
-2015-12-27 21:00:00,11271.0
-2015-12-27 22:00:00,11111.0
-2015-12-27 23:00:00,10783.0
-2015-12-28 00:00:00,10315.0
-2015-12-26 01:00:00,9017.0
-2015-12-26 02:00:00,8610.0
-2015-12-26 03:00:00,8344.0
-2015-12-26 04:00:00,8170.0
-2015-12-26 05:00:00,8105.0
-2015-12-26 06:00:00,8229.0
-2015-12-26 07:00:00,8474.0
-2015-12-26 08:00:00,8871.0
-2015-12-26 09:00:00,9195.0
-2015-12-26 10:00:00,9454.0
-2015-12-26 11:00:00,9785.0
-2015-12-26 12:00:00,10112.0
-2015-12-26 13:00:00,10214.0
-2015-12-26 14:00:00,10099.0
-2015-12-26 15:00:00,9943.0
-2015-12-26 16:00:00,9923.0
-2015-12-26 17:00:00,10039.0
-2015-12-26 18:00:00,10593.0
-2015-12-26 19:00:00,10879.0
-2015-12-26 20:00:00,10876.0
-2015-12-26 21:00:00,10770.0
-2015-12-26 22:00:00,10602.0
-2015-12-26 23:00:00,10372.0
-2015-12-27 00:00:00,9902.0
-2015-12-25 01:00:00,9099.0
-2015-12-25 02:00:00,8618.0
-2015-12-25 03:00:00,8322.0
-2015-12-25 04:00:00,8086.0
-2015-12-25 05:00:00,8036.0
-2015-12-25 06:00:00,8106.0
-2015-12-25 07:00:00,8323.0
-2015-12-25 08:00:00,8622.0
-2015-12-25 09:00:00,8685.0
-2015-12-25 10:00:00,8698.0
-2015-12-25 11:00:00,8770.0
-2015-12-25 12:00:00,8818.0
-2015-12-25 13:00:00,8821.0
-2015-12-25 14:00:00,8776.0
-2015-12-25 15:00:00,8716.0
-2015-12-25 16:00:00,8689.0
-2015-12-25 17:00:00,8824.0
-2015-12-25 18:00:00,9554.0
-2015-12-25 19:00:00,10062.0
-2015-12-25 20:00:00,10054.0
-2015-12-25 21:00:00,10017.0
-2015-12-25 22:00:00,9980.0
-2015-12-25 23:00:00,9858.0
-2015-12-26 00:00:00,9521.0
-2015-12-24 01:00:00,9620.0
-2015-12-24 02:00:00,9032.0
-2015-12-24 03:00:00,8687.0
-2015-12-24 04:00:00,8510.0
-2015-12-24 05:00:00,8459.0
-2015-12-24 06:00:00,8548.0
-2015-12-24 07:00:00,8936.0
-2015-12-24 08:00:00,9491.0
-2015-12-24 09:00:00,9721.0
-2015-12-24 10:00:00,9859.0
-2015-12-24 11:00:00,9976.0
-2015-12-24 12:00:00,10025.0
-2015-12-24 13:00:00,10039.0
-2015-12-24 14:00:00,9956.0
-2015-12-24 15:00:00,9987.0
-2015-12-24 16:00:00,9961.0
-2015-12-24 17:00:00,10111.0
-2015-12-24 18:00:00,10718.0
-2015-12-24 19:00:00,10992.0
-2015-12-24 20:00:00,10608.0
-2015-12-24 21:00:00,10325.0
-2015-12-24 22:00:00,10133.0
-2015-12-24 23:00:00,9907.0
-2015-12-25 00:00:00,9539.0
-2015-12-23 01:00:00,10200.0
-2015-12-23 02:00:00,9550.0
-2015-12-23 03:00:00,9141.0
-2015-12-23 04:00:00,8853.0
-2015-12-23 05:00:00,8758.0
-2015-12-23 06:00:00,8943.0
-2015-12-23 07:00:00,9493.0
-2015-12-23 08:00:00,10320.0
-2015-12-23 09:00:00,10886.0
-2015-12-23 10:00:00,11180.0
-2015-12-23 11:00:00,11491.0
-2015-12-23 12:00:00,11726.0
-2015-12-23 13:00:00,11733.0
-2015-12-23 14:00:00,11537.0
-2015-12-23 15:00:00,11325.0
-2015-12-23 16:00:00,11172.0
-2015-12-23 17:00:00,11200.0
-2015-12-23 18:00:00,11621.0
-2015-12-23 19:00:00,12146.0
-2015-12-23 20:00:00,11902.0
-2015-12-23 21:00:00,11704.0
-2015-12-23 22:00:00,11426.0
-2015-12-23 23:00:00,10982.0
-2015-12-24 00:00:00,10344.0
-2015-12-22 01:00:00,9863.0
-2015-12-22 02:00:00,9275.0
-2015-12-22 03:00:00,8967.0
-2015-12-22 04:00:00,8762.0
-2015-12-22 05:00:00,8734.0
-2015-12-22 06:00:00,8977.0
-2015-12-22 07:00:00,9658.0
-2015-12-22 08:00:00,10604.0
-2015-12-22 09:00:00,11264.0
-2015-12-22 10:00:00,11514.0
-2015-12-22 11:00:00,11684.0
-2015-12-22 12:00:00,11789.0
-2015-12-22 13:00:00,11836.0
-2015-12-22 14:00:00,11845.0
-2015-12-22 15:00:00,11894.0
-2015-12-22 16:00:00,11831.0
-2015-12-22 17:00:00,11858.0
-2015-12-22 18:00:00,12533.0
-2015-12-22 19:00:00,12969.0
-2015-12-22 20:00:00,12732.0
-2015-12-22 21:00:00,12541.0
-2015-12-22 22:00:00,12273.0
-2015-12-22 23:00:00,11809.0
-2015-12-23 00:00:00,11043.0
-2015-12-21 01:00:00,9670.0
-2015-12-21 02:00:00,9285.0
-2015-12-21 03:00:00,9084.0
-2015-12-21 04:00:00,8979.0
-2015-12-21 05:00:00,8984.0
-2015-12-21 06:00:00,9246.0
-2015-12-21 07:00:00,9891.0
-2015-12-21 08:00:00,10866.0
-2015-12-21 09:00:00,11580.0
-2015-12-21 10:00:00,11732.0
-2015-12-21 11:00:00,11908.0
-2015-12-21 12:00:00,11919.0
-2015-12-21 13:00:00,11939.0
-2015-12-21 14:00:00,11842.0
-2015-12-21 15:00:00,11709.0
-2015-12-21 16:00:00,11640.0
-2015-12-21 17:00:00,11690.0
-2015-12-21 18:00:00,12227.0
-2015-12-21 19:00:00,12574.0
-2015-12-21 20:00:00,12340.0
-2015-12-21 21:00:00,12137.0
-2015-12-21 22:00:00,11878.0
-2015-12-21 23:00:00,11428.0
-2015-12-22 00:00:00,10651.0
-2015-12-20 01:00:00,10631.0
-2015-12-20 02:00:00,10106.0
-2015-12-20 03:00:00,9748.0
-2015-12-20 04:00:00,9569.0
-2015-12-20 05:00:00,9426.0
-2015-12-20 06:00:00,9459.0
-2015-12-20 07:00:00,9523.0
-2015-12-20 08:00:00,9814.0
-2015-12-20 09:00:00,9915.0
-2015-12-20 10:00:00,9995.0
-2015-12-20 11:00:00,10094.0
-2015-12-20 12:00:00,10017.0
-2015-12-20 13:00:00,9951.0
-2015-12-20 14:00:00,9851.0
-2015-12-20 15:00:00,9779.0
-2015-12-20 16:00:00,9779.0
-2015-12-20 17:00:00,9986.0
-2015-12-20 18:00:00,10911.0
-2015-12-20 19:00:00,11437.0
-2015-12-20 20:00:00,11463.0
-2015-12-20 21:00:00,11379.0
-2015-12-20 22:00:00,11236.0
-2015-12-20 23:00:00,10871.0
-2015-12-21 00:00:00,10300.0
-2015-12-19 01:00:00,11050.0
-2015-12-19 02:00:00,10488.0
-2015-12-19 03:00:00,10244.0
-2015-12-19 04:00:00,10065.0
-2015-12-19 05:00:00,9998.0
-2015-12-19 06:00:00,10091.0
-2015-12-19 07:00:00,10457.0
-2015-12-19 08:00:00,10964.0
-2015-12-19 09:00:00,11206.0
-2015-12-19 10:00:00,11392.0
-2015-12-19 11:00:00,11476.0
-2015-12-19 12:00:00,11477.0
-2015-12-19 13:00:00,11333.0
-2015-12-19 14:00:00,11127.0
-2015-12-19 15:00:00,10868.0
-2015-12-19 16:00:00,10720.0
-2015-12-19 17:00:00,10775.0
-2015-12-19 18:00:00,11612.0
-2015-12-19 19:00:00,12319.0
-2015-12-19 20:00:00,12330.0
-2015-12-19 21:00:00,12191.0
-2015-12-19 22:00:00,12037.0
-2015-12-19 23:00:00,11780.0
-2015-12-20 00:00:00,11252.0
-2015-12-18 01:00:00,10770.0
-2015-12-18 02:00:00,10207.0
-2015-12-18 03:00:00,9893.0
-2015-12-18 04:00:00,9741.0
-2015-12-18 05:00:00,9733.0
-2015-12-18 06:00:00,10007.0
-2015-12-18 07:00:00,10725.0
-2015-12-18 08:00:00,11854.0
-2015-12-18 09:00:00,12452.0
-2015-12-18 10:00:00,12558.0
-2015-12-18 11:00:00,12535.0
-2015-12-18 12:00:00,12479.0
-2015-12-18 13:00:00,12395.0
-2015-12-18 14:00:00,12301.0
-2015-12-18 15:00:00,12255.0
-2015-12-18 16:00:00,12087.0
-2015-12-18 17:00:00,12210.0
-2015-12-18 18:00:00,13041.0
-2015-12-18 19:00:00,13553.0
-2015-12-18 20:00:00,13272.0
-2015-12-18 21:00:00,13070.0
-2015-12-18 22:00:00,12799.0
-2015-12-18 23:00:00,12421.0
-2015-12-19 00:00:00,11751.0
-2015-12-17 01:00:00,10421.0
-2015-12-17 02:00:00,9817.0
-2015-12-17 03:00:00,9492.0
-2015-12-17 04:00:00,9342.0
-2015-12-17 05:00:00,9349.0
-2015-12-17 06:00:00,9620.0
-2015-12-17 07:00:00,10385.0
-2015-12-17 08:00:00,11563.0
-2015-12-17 09:00:00,12202.0
-2015-12-17 10:00:00,12345.0
-2015-12-17 11:00:00,12389.0
-2015-12-17 12:00:00,12456.0
-2015-12-17 13:00:00,12360.0
-2015-12-17 14:00:00,12186.0
-2015-12-17 15:00:00,12122.0
-2015-12-17 16:00:00,12047.0
-2015-12-17 17:00:00,12134.0
-2015-12-17 18:00:00,12893.0
-2015-12-17 19:00:00,13458.0
-2015-12-17 20:00:00,13254.0
-2015-12-17 21:00:00,13117.0
-2015-12-17 22:00:00,12881.0
-2015-12-17 23:00:00,12399.0
-2015-12-18 00:00:00,11565.0
-2015-12-16 01:00:00,10182.0
-2015-12-16 02:00:00,9598.0
-2015-12-16 03:00:00,9272.0
-2015-12-16 04:00:00,9074.0
-2015-12-16 05:00:00,9045.0
-2015-12-16 06:00:00,9304.0
-2015-12-16 07:00:00,10014.0
-2015-12-16 08:00:00,11149.0
-2015-12-16 09:00:00,11755.0
-2015-12-16 10:00:00,11891.0
-2015-12-16 11:00:00,11980.0
-2015-12-16 12:00:00,12000.0
-2015-12-16 13:00:00,11936.0
-2015-12-16 14:00:00,11692.0
-2015-12-16 15:00:00,11571.0
-2015-12-16 16:00:00,11498.0
-2015-12-16 17:00:00,11480.0
-2015-12-16 18:00:00,12234.0
-2015-12-16 19:00:00,12960.0
-2015-12-16 20:00:00,12892.0
-2015-12-16 21:00:00,12735.0
-2015-12-16 22:00:00,12503.0
-2015-12-16 23:00:00,12023.0
-2015-12-17 00:00:00,11183.0
-2015-12-15 01:00:00,9860.0
-2015-12-15 02:00:00,9270.0
-2015-12-15 03:00:00,8966.0
-2015-12-15 04:00:00,8800.0
-2015-12-15 05:00:00,8765.0
-2015-12-15 06:00:00,9032.0
-2015-12-15 07:00:00,9753.0
-2015-12-15 08:00:00,10913.0
-2015-12-15 09:00:00,11575.0
-2015-12-15 10:00:00,11678.0
-2015-12-15 11:00:00,11746.0
-2015-12-15 12:00:00,11836.0
-2015-12-15 13:00:00,11797.0
-2015-12-15 14:00:00,11752.0
-2015-12-15 15:00:00,11792.0
-2015-12-15 16:00:00,11771.0
-2015-12-15 17:00:00,11849.0
-2015-12-15 18:00:00,12607.0
-2015-12-15 19:00:00,12986.0
-2015-12-15 20:00:00,12815.0
-2015-12-15 21:00:00,12675.0
-2015-12-15 22:00:00,12386.0
-2015-12-15 23:00:00,11879.0
-2015-12-16 00:00:00,11028.0
-2015-12-14 01:00:00,9083.0
-2015-12-14 02:00:00,8666.0
-2015-12-14 03:00:00,8443.0
-2015-12-14 04:00:00,8261.0
-2015-12-14 05:00:00,8282.0
-2015-12-14 06:00:00,8489.0
-2015-12-14 07:00:00,9187.0
-2015-12-14 08:00:00,10417.0
-2015-12-14 09:00:00,11083.0
-2015-12-14 10:00:00,11243.0
-2015-12-14 11:00:00,11342.0
-2015-12-14 12:00:00,11488.0
-2015-12-14 13:00:00,11523.0
-2015-12-14 14:00:00,11544.0
-2015-12-14 15:00:00,11527.0
-2015-12-14 16:00:00,11457.0
-2015-12-14 17:00:00,11599.0
-2015-12-14 18:00:00,12314.0
-2015-12-14 19:00:00,12725.0
-2015-12-14 20:00:00,12570.0
-2015-12-14 21:00:00,12378.0
-2015-12-14 22:00:00,12052.0
-2015-12-14 23:00:00,11534.0
-2015-12-15 00:00:00,10692.0
-2015-12-13 01:00:00,9109.0
-2015-12-13 02:00:00,8597.0
-2015-12-13 03:00:00,8252.0
-2015-12-13 04:00:00,8044.0
-2015-12-13 05:00:00,7927.0
-2015-12-13 06:00:00,7957.0
-2015-12-13 07:00:00,8067.0
-2015-12-13 08:00:00,8361.0
-2015-12-13 09:00:00,8601.0
-2015-12-13 10:00:00,8873.0
-2015-12-13 11:00:00,9134.0
-2015-12-13 12:00:00,9354.0
-2015-12-13 13:00:00,9461.0
-2015-12-13 14:00:00,9564.0
-2015-12-13 15:00:00,9555.0
-2015-12-13 16:00:00,9680.0
-2015-12-13 17:00:00,10053.0
-2015-12-13 18:00:00,10805.0
-2015-12-13 19:00:00,11124.0
-2015-12-13 20:00:00,11093.0
-2015-12-13 21:00:00,11015.0
-2015-12-13 22:00:00,10743.0
-2015-12-13 23:00:00,10342.0
-2015-12-14 00:00:00,9694.0
-2015-12-12 01:00:00,9545.0
-2015-12-12 02:00:00,8926.0
-2015-12-12 03:00:00,8606.0
-2015-12-12 04:00:00,8417.0
-2015-12-12 05:00:00,8305.0
-2015-12-12 06:00:00,8356.0
-2015-12-12 07:00:00,8657.0
-2015-12-12 08:00:00,9114.0
-2015-12-12 09:00:00,9445.0
-2015-12-12 10:00:00,9785.0
-2015-12-12 11:00:00,9992.0
-2015-12-12 12:00:00,10120.0
-2015-12-12 13:00:00,10087.0
-2015-12-12 14:00:00,9952.0
-2015-12-12 15:00:00,9850.0
-2015-12-12 16:00:00,9784.0
-2015-12-12 17:00:00,9939.0
-2015-12-12 18:00:00,10681.0
-2015-12-12 19:00:00,11023.0
-2015-12-12 20:00:00,10924.0
-2015-12-12 21:00:00,10785.0
-2015-12-12 22:00:00,10572.0
-2015-12-12 23:00:00,10294.0
-2015-12-13 00:00:00,9750.0
-2015-12-11 01:00:00,9809.0
-2015-12-11 02:00:00,9258.0
-2015-12-11 03:00:00,8932.0
-2015-12-11 04:00:00,8740.0
-2015-12-11 05:00:00,8723.0
-2015-12-11 06:00:00,8955.0
-2015-12-11 07:00:00,9682.0
-2015-12-11 08:00:00,10819.0
-2015-12-11 09:00:00,11274.0
-2015-12-11 10:00:00,11283.0
-2015-12-11 11:00:00,11356.0
-2015-12-11 12:00:00,11370.0
-2015-12-11 13:00:00,11264.0
-2015-12-11 14:00:00,11142.0
-2015-12-11 15:00:00,11088.0
-2015-12-11 16:00:00,10991.0
-2015-12-11 17:00:00,11044.0
-2015-12-11 18:00:00,11877.0
-2015-12-11 19:00:00,12308.0
-2015-12-11 20:00:00,12095.0
-2015-12-11 21:00:00,11841.0
-2015-12-11 22:00:00,11560.0
-2015-12-11 23:00:00,11113.0
-2015-12-12 00:00:00,10429.0
-2015-12-10 01:00:00,9854.0
-2015-12-10 02:00:00,9317.0
-2015-12-10 03:00:00,9006.0
-2015-12-10 04:00:00,8864.0
-2015-12-10 05:00:00,8828.0
-2015-12-10 06:00:00,9052.0
-2015-12-10 07:00:00,9761.0
-2015-12-10 08:00:00,10904.0
-2015-12-10 09:00:00,11470.0
-2015-12-10 10:00:00,11562.0
-2015-12-10 11:00:00,11611.0
-2015-12-10 12:00:00,11605.0
-2015-12-10 13:00:00,11521.0
-2015-12-10 14:00:00,11470.0
-2015-12-10 15:00:00,11535.0
-2015-12-10 16:00:00,11410.0
-2015-12-10 17:00:00,11441.0
-2015-12-10 18:00:00,12182.0
-2015-12-10 19:00:00,12616.0
-2015-12-10 20:00:00,12458.0
-2015-12-10 21:00:00,12282.0
-2015-12-10 22:00:00,12015.0
-2015-12-10 23:00:00,11520.0
-2015-12-11 00:00:00,10681.0
-2015-12-09 01:00:00,9990.0
-2015-12-09 02:00:00,9415.0
-2015-12-09 03:00:00,9087.0
-2015-12-09 04:00:00,8865.0
-2015-12-09 05:00:00,8828.0
-2015-12-09 06:00:00,9098.0
-2015-12-09 07:00:00,9820.0
-2015-12-09 08:00:00,10965.0
-2015-12-09 09:00:00,11442.0
-2015-12-09 10:00:00,11461.0
-2015-12-09 11:00:00,11443.0
-2015-12-09 12:00:00,11462.0
-2015-12-09 13:00:00,11370.0
-2015-12-09 14:00:00,11256.0
-2015-12-09 15:00:00,11233.0
-2015-12-09 16:00:00,11166.0
-2015-12-09 17:00:00,11230.0
-2015-12-09 18:00:00,12041.0
-2015-12-09 19:00:00,12616.0
-2015-12-09 20:00:00,12462.0
-2015-12-09 21:00:00,12266.0
-2015-12-09 22:00:00,12033.0
-2015-12-09 23:00:00,11477.0
-2015-12-10 00:00:00,10661.0
-2015-12-08 01:00:00,10282.0
-2015-12-08 02:00:00,9723.0
-2015-12-08 03:00:00,9436.0
-2015-12-08 04:00:00,9193.0
-2015-12-08 05:00:00,9198.0
-2015-12-08 06:00:00,9457.0
-2015-12-08 07:00:00,10173.0
-2015-12-08 08:00:00,11349.0
-2015-12-08 09:00:00,11838.0
-2015-12-08 10:00:00,11885.0
-2015-12-08 11:00:00,11920.0
-2015-12-08 12:00:00,11900.0
-2015-12-08 13:00:00,11830.0
-2015-12-08 14:00:00,11756.0
-2015-12-08 15:00:00,11709.0
-2015-12-08 16:00:00,11598.0
-2015-12-08 17:00:00,11690.0
-2015-12-08 18:00:00,12418.0
-2015-12-08 19:00:00,12939.0
-2015-12-08 20:00:00,12741.0
-2015-12-08 21:00:00,12522.0
-2015-12-08 22:00:00,12223.0
-2015-12-08 23:00:00,11697.0
-2015-12-09 00:00:00,10835.0
-2015-12-07 01:00:00,9548.0
-2015-12-07 02:00:00,9209.0
-2015-12-07 03:00:00,8995.0
-2015-12-07 04:00:00,8963.0
-2015-12-07 05:00:00,8976.0
-2015-12-07 06:00:00,9349.0
-2015-12-07 07:00:00,10165.0
-2015-12-07 08:00:00,11398.0
-2015-12-07 09:00:00,12030.0
-2015-12-07 10:00:00,12120.0
-2015-12-07 11:00:00,12192.0
-2015-12-07 12:00:00,12205.0
-2015-12-07 13:00:00,12170.0
-2015-12-07 14:00:00,12146.0
-2015-12-07 15:00:00,12156.0
-2015-12-07 16:00:00,12094.0
-2015-12-07 17:00:00,12176.0
-2015-12-07 18:00:00,12828.0
-2015-12-07 19:00:00,13220.0
-2015-12-07 20:00:00,13053.0
-2015-12-07 21:00:00,12839.0
-2015-12-07 22:00:00,12557.0
-2015-12-07 23:00:00,11968.0
-2015-12-08 00:00:00,11104.0
-2015-12-06 01:00:00,9851.0
-2015-12-06 02:00:00,9374.0
-2015-12-06 03:00:00,9023.0
-2015-12-06 04:00:00,8853.0
-2015-12-06 05:00:00,8772.0
-2015-12-06 06:00:00,8822.0
-2015-12-06 07:00:00,8962.0
-2015-12-06 08:00:00,9274.0
-2015-12-06 09:00:00,9322.0
-2015-12-06 10:00:00,9510.0
-2015-12-06 11:00:00,9572.0
-2015-12-06 12:00:00,9590.0
-2015-12-06 13:00:00,9505.0
-2015-12-06 14:00:00,9523.0
-2015-12-06 15:00:00,9504.0
-2015-12-06 16:00:00,9568.0
-2015-12-06 17:00:00,9725.0
-2015-12-06 18:00:00,10642.0
-2015-12-06 19:00:00,11226.0
-2015-12-06 20:00:00,11307.0
-2015-12-06 21:00:00,11250.0
-2015-12-06 22:00:00,11107.0
-2015-12-06 23:00:00,10745.0
-2015-12-07 00:00:00,10139.0
-2015-12-05 01:00:00,10180.0
-2015-12-05 02:00:00,9600.0
-2015-12-05 03:00:00,9294.0
-2015-12-05 04:00:00,9078.0
-2015-12-05 05:00:00,9076.0
-2015-12-05 06:00:00,9159.0
-2015-12-05 07:00:00,9492.0
-2015-12-05 08:00:00,10008.0
-2015-12-05 09:00:00,10298.0
-2015-12-05 10:00:00,10623.0
-2015-12-05 11:00:00,10730.0
-2015-12-05 12:00:00,10615.0
-2015-12-05 13:00:00,10469.0
-2015-12-05 14:00:00,10268.0
-2015-12-05 15:00:00,10042.0
-2015-12-05 16:00:00,9890.0
-2015-12-05 17:00:00,10009.0
-2015-12-05 18:00:00,10847.0
-2015-12-05 19:00:00,11524.0
-2015-12-05 20:00:00,11479.0
-2015-12-05 21:00:00,11395.0
-2015-12-05 22:00:00,11224.0
-2015-12-05 23:00:00,10987.0
-2015-12-06 00:00:00,10439.0
-2015-12-04 01:00:00,10413.0
-2015-12-04 02:00:00,9868.0
-2015-12-04 03:00:00,9569.0
-2015-12-04 04:00:00,9389.0
-2015-12-04 05:00:00,9393.0
-2015-12-04 06:00:00,9655.0
-2015-12-04 07:00:00,10360.0
-2015-12-04 08:00:00,11491.0
-2015-12-04 09:00:00,11959.0
-2015-12-04 10:00:00,12016.0
-2015-12-04 11:00:00,11959.0
-2015-12-04 12:00:00,11830.0
-2015-12-04 13:00:00,11668.0
-2015-12-04 14:00:00,11490.0
-2015-12-04 15:00:00,11407.0
-2015-12-04 16:00:00,11274.0
-2015-12-04 17:00:00,11249.0
-2015-12-04 18:00:00,11939.0
-2015-12-04 19:00:00,12516.0
-2015-12-04 20:00:00,12385.0
-2015-12-04 21:00:00,12184.0
-2015-12-04 22:00:00,11912.0
-2015-12-04 23:00:00,11551.0
-2015-12-05 00:00:00,10871.0
-2015-12-03 01:00:00,10426.0
-2015-12-03 02:00:00,9930.0
-2015-12-03 03:00:00,9642.0
-2015-12-03 04:00:00,9448.0
-2015-12-03 05:00:00,9402.0
-2015-12-03 06:00:00,9672.0
-2015-12-03 07:00:00,10387.0
-2015-12-03 08:00:00,11514.0
-2015-12-03 09:00:00,12036.0
-2015-12-03 10:00:00,12210.0
-2015-12-03 11:00:00,12296.0
-2015-12-03 12:00:00,12384.0
-2015-12-03 13:00:00,12355.0
-2015-12-03 14:00:00,12289.0
-2015-12-03 15:00:00,12328.0
-2015-12-03 16:00:00,12258.0
-2015-12-03 17:00:00,12346.0
-2015-12-03 18:00:00,12952.0
-2015-12-03 19:00:00,13256.0
-2015-12-03 20:00:00,13037.0
-2015-12-03 21:00:00,12813.0
-2015-12-03 22:00:00,12530.0
-2015-12-03 23:00:00,12036.0
-2015-12-04 00:00:00,11235.0
-2015-12-02 01:00:00,9989.0
-2015-12-02 02:00:00,9504.0
-2015-12-02 03:00:00,9226.0
-2015-12-02 04:00:00,9073.0
-2015-12-02 05:00:00,9067.0
-2015-12-02 06:00:00,9451.0
-2015-12-02 07:00:00,10220.0
-2015-12-02 08:00:00,11350.0
-2015-12-02 09:00:00,11941.0
-2015-12-02 10:00:00,12140.0
-2015-12-02 11:00:00,12180.0
-2015-12-02 12:00:00,12204.0
-2015-12-02 13:00:00,12137.0
-2015-12-02 14:00:00,12091.0
-2015-12-02 15:00:00,12102.0
-2015-12-02 16:00:00,12021.0
-2015-12-02 17:00:00,12140.0
-2015-12-02 18:00:00,12868.0
-2015-12-02 19:00:00,13263.0
-2015-12-02 20:00:00,13081.0
-2015-12-02 21:00:00,12894.0
-2015-12-02 22:00:00,12581.0
-2015-12-02 23:00:00,12048.0
-2015-12-03 00:00:00,11222.0
-2015-12-01 01:00:00,9843.0
-2015-12-01 02:00:00,9360.0
-2015-12-01 03:00:00,9075.0
-2015-12-01 04:00:00,8911.0
-2015-12-01 05:00:00,8840.0
-2015-12-01 06:00:00,9068.0
-2015-12-01 07:00:00,9770.0
-2015-12-01 08:00:00,10996.0
-2015-12-01 09:00:00,11570.0
-2015-12-01 10:00:00,11696.0
-2015-12-01 11:00:00,11766.0
-2015-12-01 12:00:00,11722.0
-2015-12-01 13:00:00,11573.0
-2015-12-01 14:00:00,11524.0
-2015-12-01 15:00:00,11577.0
-2015-12-01 16:00:00,11473.0
-2015-12-01 17:00:00,11501.0
-2015-12-01 18:00:00,12193.0
-2015-12-01 19:00:00,12709.0
-2015-12-01 20:00:00,12540.0
-2015-12-01 21:00:00,12367.0
-2015-12-01 22:00:00,12073.0
-2015-12-01 23:00:00,11539.0
-2015-12-02 00:00:00,10745.0
-2015-11-30 01:00:00,9332.0
-2015-11-30 02:00:00,8931.0
-2015-11-30 03:00:00,8743.0
-2015-11-30 04:00:00,8671.0
-2015-11-30 05:00:00,8694.0
-2015-11-30 06:00:00,8998.0
-2015-11-30 07:00:00,9825.0
-2015-11-30 08:00:00,11003.0
-2015-11-30 09:00:00,11599.0
-2015-11-30 10:00:00,11724.0
-2015-11-30 11:00:00,11822.0
-2015-11-30 12:00:00,11917.0
-2015-11-30 13:00:00,11947.0
-2015-11-30 14:00:00,11904.0
-2015-11-30 15:00:00,11871.0
-2015-11-30 16:00:00,11850.0
-2015-11-30 17:00:00,11908.0
-2015-11-30 18:00:00,12523.0
-2015-11-30 19:00:00,12842.0
-2015-11-30 20:00:00,12609.0
-2015-11-30 21:00:00,12408.0
-2015-11-30 22:00:00,12071.0
-2015-11-30 23:00:00,11514.0
-2015-12-01 00:00:00,10670.0
-2015-11-29 01:00:00,9528.0
-2015-11-29 02:00:00,9115.0
-2015-11-29 03:00:00,8863.0
-2015-11-29 04:00:00,8714.0
-2015-11-29 05:00:00,8692.0
-2015-11-29 06:00:00,8715.0
-2015-11-29 07:00:00,8903.0
-2015-11-29 08:00:00,9141.0
-2015-11-29 09:00:00,9226.0
-2015-11-29 10:00:00,9417.0
-2015-11-29 11:00:00,9542.0
-2015-11-29 12:00:00,9585.0
-2015-11-29 13:00:00,9614.0
-2015-11-29 14:00:00,9570.0
-2015-11-29 15:00:00,9557.0
-2015-11-29 16:00:00,9628.0
-2015-11-29 17:00:00,9852.0
-2015-11-29 18:00:00,10675.0
-2015-11-29 19:00:00,11270.0
-2015-11-29 20:00:00,11253.0
-2015-11-29 21:00:00,11180.0
-2015-11-29 22:00:00,10876.0
-2015-11-29 23:00:00,10498.0
-2015-11-30 00:00:00,9847.0
-2015-11-28 01:00:00,9302.0
-2015-11-28 02:00:00,8864.0
-2015-11-28 03:00:00,8605.0
-2015-11-28 04:00:00,8446.0
-2015-11-28 05:00:00,8382.0
-2015-11-28 06:00:00,8467.0
-2015-11-28 07:00:00,8711.0
-2015-11-28 08:00:00,9159.0
-2015-11-28 09:00:00,9381.0
-2015-11-28 10:00:00,9769.0
-2015-11-28 11:00:00,10000.0
-2015-11-28 12:00:00,10114.0
-2015-11-28 13:00:00,10063.0
-2015-11-28 14:00:00,10012.0
-2015-11-28 15:00:00,9879.0
-2015-11-28 16:00:00,9871.0
-2015-11-28 17:00:00,9965.0
-2015-11-28 18:00:00,10642.0
-2015-11-28 19:00:00,11071.0
-2015-11-28 20:00:00,10997.0
-2015-11-28 21:00:00,10862.0
-2015-11-28 22:00:00,10711.0
-2015-11-28 23:00:00,10486.0
-2015-11-29 00:00:00,9989.0
-2015-11-27 01:00:00,8284.0
-2015-11-27 02:00:00,7984.0
-2015-11-27 03:00:00,7812.0
-2015-11-27 04:00:00,7690.0
-2015-11-27 05:00:00,7691.0
-2015-11-27 06:00:00,7841.0
-2015-11-27 07:00:00,8294.0
-2015-11-27 08:00:00,8907.0
-2015-11-27 09:00:00,9213.0
-2015-11-27 10:00:00,9539.0
-2015-11-27 11:00:00,9829.0
-2015-11-27 12:00:00,10067.0
-2015-11-27 13:00:00,10164.0
-2015-11-27 14:00:00,10204.0
-2015-11-27 15:00:00,10282.0
-2015-11-27 16:00:00,10337.0
-2015-11-27 17:00:00,10526.0
-2015-11-27 18:00:00,11082.0
-2015-11-27 19:00:00,11269.0
-2015-11-27 20:00:00,11128.0
-2015-11-27 21:00:00,10917.0
-2015-11-27 22:00:00,10684.0
-2015-11-27 23:00:00,10368.0
-2015-11-28 00:00:00,9834.0
-2015-11-26 01:00:00,9230.0
-2015-11-26 02:00:00,8734.0
-2015-11-26 03:00:00,8406.0
-2015-11-26 04:00:00,8214.0
-2015-11-26 05:00:00,8069.0
-2015-11-26 06:00:00,8081.0
-2015-11-26 07:00:00,8251.0
-2015-11-26 08:00:00,8445.0
-2015-11-26 09:00:00,8442.0
-2015-11-26 10:00:00,8738.0
-2015-11-26 11:00:00,9066.0
-2015-11-26 12:00:00,9318.0
-2015-11-26 13:00:00,9448.0
-2015-11-26 14:00:00,9357.0
-2015-11-26 15:00:00,9223.0
-2015-11-26 16:00:00,9119.0
-2015-11-26 17:00:00,9021.0
-2015-11-26 18:00:00,9316.0
-2015-11-26 19:00:00,9399.0
-2015-11-26 20:00:00,9240.0
-2015-11-26 21:00:00,9149.0
-2015-11-26 22:00:00,9053.0
-2015-11-26 23:00:00,8895.0
-2015-11-27 00:00:00,8651.0
-2015-11-25 01:00:00,10075.0
-2015-11-25 02:00:00,9578.0
-2015-11-25 03:00:00,9295.0
-2015-11-25 04:00:00,9133.0
-2015-11-25 05:00:00,9126.0
-2015-11-25 06:00:00,9330.0
-2015-11-25 07:00:00,9954.0
-2015-11-25 08:00:00,10819.0
-2015-11-25 09:00:00,11155.0
-2015-11-25 10:00:00,11324.0
-2015-11-25 11:00:00,11385.0
-2015-11-25 12:00:00,11434.0
-2015-11-25 13:00:00,11422.0
-2015-11-25 14:00:00,11345.0
-2015-11-25 15:00:00,11438.0
-2015-11-25 16:00:00,11390.0
-2015-11-25 17:00:00,11395.0
-2015-11-25 18:00:00,11829.0
-2015-11-25 19:00:00,12040.0
-2015-11-25 20:00:00,11715.0
-2015-11-25 21:00:00,11440.0
-2015-11-25 22:00:00,11138.0
-2015-11-25 23:00:00,10678.0
-2015-11-26 00:00:00,9978.0
-2015-11-24 01:00:00,10219.0
-2015-11-24 02:00:00,9767.0
-2015-11-24 03:00:00,9557.0
-2015-11-24 04:00:00,9432.0
-2015-11-24 05:00:00,9442.0
-2015-11-24 06:00:00,9742.0
-2015-11-24 07:00:00,10430.0
-2015-11-24 08:00:00,11470.0
-2015-11-24 09:00:00,11837.0
-2015-11-24 10:00:00,11999.0
-2015-11-24 11:00:00,11949.0
-2015-11-24 12:00:00,11839.0
-2015-11-24 13:00:00,11861.0
-2015-11-24 14:00:00,11570.0
-2015-11-24 15:00:00,11503.0
-2015-11-24 16:00:00,11426.0
-2015-11-24 17:00:00,11452.0
-2015-11-24 18:00:00,12087.0
-2015-11-24 19:00:00,12603.0
-2015-11-24 20:00:00,12397.0
-2015-11-24 21:00:00,12222.0
-2015-11-24 22:00:00,11935.0
-2015-11-24 23:00:00,11500.0
-2015-11-25 00:00:00,10791.0
-2015-11-23 01:00:00,10111.0
-2015-11-23 02:00:00,9731.0
-2015-11-23 03:00:00,9523.0
-2015-11-23 04:00:00,9402.0
-2015-11-23 05:00:00,9454.0
-2015-11-23 06:00:00,9817.0
-2015-11-23 07:00:00,10494.0
-2015-11-23 08:00:00,11585.0
-2015-11-23 09:00:00,11916.0
-2015-11-23 10:00:00,12033.0
-2015-11-23 11:00:00,12068.0
-2015-11-23 12:00:00,12119.0
-2015-11-23 13:00:00,12111.0
-2015-11-23 14:00:00,12010.0
-2015-11-23 15:00:00,11860.0
-2015-11-23 16:00:00,11673.0
-2015-11-23 17:00:00,11623.0
-2015-11-23 18:00:00,12220.0
-2015-11-23 19:00:00,12878.0
-2015-11-23 20:00:00,12711.0
-2015-11-23 21:00:00,12499.0
-2015-11-23 22:00:00,12196.0
-2015-11-23 23:00:00,11661.0
-2015-11-24 00:00:00,10903.0
-2015-11-22 01:00:00,10216.0
-2015-11-22 02:00:00,9859.0
-2015-11-22 03:00:00,9608.0
-2015-11-22 04:00:00,9502.0
-2015-11-22 05:00:00,9462.0
-2015-11-22 06:00:00,9388.0
-2015-11-22 07:00:00,9585.0
-2015-11-22 08:00:00,9836.0
-2015-11-22 09:00:00,9929.0
-2015-11-22 10:00:00,10113.0
-2015-11-22 11:00:00,10176.0
-2015-11-22 12:00:00,10220.0
-2015-11-22 13:00:00,10212.0
-2015-11-22 14:00:00,10219.0
-2015-11-22 15:00:00,10191.0
-2015-11-22 16:00:00,10226.0
-2015-11-22 17:00:00,10479.0
-2015-11-22 18:00:00,11246.0
-2015-11-22 19:00:00,11925.0
-2015-11-22 20:00:00,11912.0
-2015-11-22 21:00:00,11830.0
-2015-11-22 22:00:00,11572.0
-2015-11-22 23:00:00,11236.0
-2015-11-23 00:00:00,10589.0
-2015-11-21 01:00:00,10087.0
-2015-11-21 02:00:00,9587.0
-2015-11-21 03:00:00,9294.0
-2015-11-21 04:00:00,9116.0
-2015-11-21 05:00:00,9079.0
-2015-11-21 06:00:00,9157.0
-2015-11-21 07:00:00,9412.0
-2015-11-21 08:00:00,9915.0
-2015-11-21 09:00:00,10159.0
-2015-11-21 10:00:00,10631.0
-2015-11-21 11:00:00,10929.0
-2015-11-21 12:00:00,11155.0
-2015-11-21 13:00:00,11179.0
-2015-11-21 14:00:00,11162.0
-2015-11-21 15:00:00,10995.0
-2015-11-21 16:00:00,10911.0
-2015-11-21 17:00:00,10916.0
-2015-11-21 18:00:00,11461.0
-2015-11-21 19:00:00,11919.0
-2015-11-21 20:00:00,11876.0
-2015-11-21 21:00:00,11698.0
-2015-11-21 22:00:00,11497.0
-2015-11-21 23:00:00,11161.0
-2015-11-22 00:00:00,10700.0
-2015-11-20 01:00:00,9890.0
-2015-11-20 02:00:00,9463.0
-2015-11-20 03:00:00,9182.0
-2015-11-20 04:00:00,9029.0
-2015-11-20 05:00:00,9020.0
-2015-11-20 06:00:00,9287.0
-2015-11-20 07:00:00,10009.0
-2015-11-20 08:00:00,11057.0
-2015-11-20 09:00:00,11399.0
-2015-11-20 10:00:00,11501.0
-2015-11-20 11:00:00,11543.0
-2015-11-20 12:00:00,11493.0
-2015-11-20 13:00:00,11468.0
-2015-11-20 14:00:00,11460.0
-2015-11-20 15:00:00,11455.0
-2015-11-20 16:00:00,11439.0
-2015-11-20 17:00:00,11474.0
-2015-11-20 18:00:00,12012.0
-2015-11-20 19:00:00,12287.0
-2015-11-20 20:00:00,12091.0
-2015-11-20 21:00:00,11917.0
-2015-11-20 22:00:00,11679.0
-2015-11-20 23:00:00,11328.0
-2015-11-21 00:00:00,10720.0
-2015-11-19 01:00:00,9234.0
-2015-11-19 02:00:00,8808.0
-2015-11-19 03:00:00,8546.0
-2015-11-19 04:00:00,8400.0
-2015-11-19 05:00:00,8388.0
-2015-11-19 06:00:00,8634.0
-2015-11-19 07:00:00,9368.0
-2015-11-19 08:00:00,10523.0
-2015-11-19 09:00:00,11024.0
-2015-11-19 10:00:00,11145.0
-2015-11-19 11:00:00,11256.0
-2015-11-19 12:00:00,11317.0
-2015-11-19 13:00:00,11319.0
-2015-11-19 14:00:00,11266.0
-2015-11-19 15:00:00,11285.0
-2015-11-19 16:00:00,11243.0
-2015-11-19 17:00:00,11243.0
-2015-11-19 18:00:00,11815.0
-2015-11-19 19:00:00,12379.0
-2015-11-19 20:00:00,12245.0
-2015-11-19 21:00:00,12009.0
-2015-11-19 22:00:00,11759.0
-2015-11-19 23:00:00,11305.0
-2015-11-20 00:00:00,10580.0
-2015-11-18 01:00:00,9216.0
-2015-11-18 02:00:00,8752.0
-2015-11-18 03:00:00,8493.0
-2015-11-18 04:00:00,8321.0
-2015-11-18 05:00:00,8310.0
-2015-11-18 06:00:00,8470.0
-2015-11-18 07:00:00,9089.0
-2015-11-18 08:00:00,10187.0
-2015-11-18 09:00:00,10793.0
-2015-11-18 10:00:00,11152.0
-2015-11-18 11:00:00,11334.0
-2015-11-18 12:00:00,11405.0
-2015-11-18 13:00:00,11349.0
-2015-11-18 14:00:00,11304.0
-2015-11-18 15:00:00,11298.0
-2015-11-18 16:00:00,11163.0
-2015-11-18 17:00:00,11050.0
-2015-11-18 18:00:00,11426.0
-2015-11-18 19:00:00,11914.0
-2015-11-18 20:00:00,11711.0
-2015-11-18 21:00:00,11497.0
-2015-11-18 22:00:00,11205.0
-2015-11-18 23:00:00,10696.0
-2015-11-19 00:00:00,9970.0
-2015-11-17 01:00:00,9234.0
-2015-11-17 02:00:00,8756.0
-2015-11-17 03:00:00,8482.0
-2015-11-17 04:00:00,8318.0
-2015-11-17 05:00:00,8293.0
-2015-11-17 06:00:00,8514.0
-2015-11-17 07:00:00,9254.0
-2015-11-17 08:00:00,10333.0
-2015-11-17 09:00:00,10887.0
-2015-11-17 10:00:00,11102.0
-2015-11-17 11:00:00,11224.0
-2015-11-17 12:00:00,11355.0
-2015-11-17 13:00:00,11414.0
-2015-11-17 14:00:00,11473.0
-2015-11-17 15:00:00,11611.0
-2015-11-17 16:00:00,11640.0
-2015-11-17 17:00:00,11604.0
-2015-11-17 18:00:00,11982.0
-2015-11-17 19:00:00,12122.0
-2015-11-17 20:00:00,11858.0
-2015-11-17 21:00:00,11548.0
-2015-11-17 22:00:00,11251.0
-2015-11-17 23:00:00,10688.0
-2015-11-18 00:00:00,9929.0
-2015-11-16 01:00:00,8404.0
-2015-11-16 02:00:00,8102.0
-2015-11-16 03:00:00,7957.0
-2015-11-16 04:00:00,7850.0
-2015-11-16 05:00:00,7907.0
-2015-11-16 06:00:00,8194.0
-2015-11-16 07:00:00,8990.0
-2015-11-16 08:00:00,10086.0
-2015-11-16 09:00:00,10608.0
-2015-11-16 10:00:00,10799.0
-2015-11-16 11:00:00,10929.0
-2015-11-16 12:00:00,11092.0
-2015-11-16 13:00:00,11118.0
-2015-11-16 14:00:00,11087.0
-2015-11-16 15:00:00,11168.0
-2015-11-16 16:00:00,11109.0
-2015-11-16 17:00:00,11131.0
-2015-11-16 18:00:00,11644.0
-2015-11-16 19:00:00,12007.0
-2015-11-16 20:00:00,11787.0
-2015-11-16 21:00:00,11538.0
-2015-11-16 22:00:00,11252.0
-2015-11-16 23:00:00,10695.0
-2015-11-17 00:00:00,9924.0
-2015-11-15 01:00:00,8834.0
-2015-11-15 02:00:00,8424.0
-2015-11-15 03:00:00,8163.0
-2015-11-15 04:00:00,8008.0
-2015-11-15 05:00:00,7968.0
-2015-11-15 06:00:00,8008.0
-2015-11-15 07:00:00,8118.0
-2015-11-15 08:00:00,8343.0
-2015-11-15 09:00:00,8310.0
-2015-11-15 10:00:00,8541.0
-2015-11-15 11:00:00,8659.0
-2015-11-15 12:00:00,8797.0
-2015-11-15 13:00:00,8875.0
-2015-11-15 14:00:00,8893.0
-2015-11-15 15:00:00,8856.0
-2015-11-15 16:00:00,8792.0
-2015-11-15 17:00:00,8827.0
-2015-11-15 18:00:00,9352.0
-2015-11-15 19:00:00,10120.0
-2015-11-15 20:00:00,10100.0
-2015-11-15 21:00:00,10014.0
-2015-11-15 22:00:00,9789.0
-2015-11-15 23:00:00,9435.0
-2015-11-16 00:00:00,8924.0
-2015-11-14 01:00:00,9683.0
-2015-11-14 02:00:00,9232.0
-2015-11-14 03:00:00,8960.0
-2015-11-14 04:00:00,8808.0
-2015-11-14 05:00:00,8799.0
-2015-11-14 06:00:00,8875.0
-2015-11-14 07:00:00,9215.0
-2015-11-14 08:00:00,9610.0
-2015-11-14 09:00:00,9739.0
-2015-11-14 10:00:00,9981.0
-2015-11-14 11:00:00,10059.0
-2015-11-14 12:00:00,10040.0
-2015-11-14 13:00:00,9921.0
-2015-11-14 14:00:00,9766.0
-2015-11-14 15:00:00,9524.0
-2015-11-14 16:00:00,9397.0
-2015-11-14 17:00:00,9370.0
-2015-11-14 18:00:00,9874.0
-2015-11-14 19:00:00,10492.0
-2015-11-14 20:00:00,10410.0
-2015-11-14 21:00:00,10242.0
-2015-11-14 22:00:00,10062.0
-2015-11-14 23:00:00,9782.0
-2015-11-15 00:00:00,9289.0
-2015-11-13 01:00:00,9595.0
-2015-11-13 02:00:00,9173.0
-2015-11-13 03:00:00,8912.0
-2015-11-13 04:00:00,8784.0
-2015-11-13 05:00:00,8745.0
-2015-11-13 06:00:00,9020.0
-2015-11-13 07:00:00,9760.0
-2015-11-13 08:00:00,10751.0
-2015-11-13 09:00:00,11164.0
-2015-11-13 10:00:00,11342.0
-2015-11-13 11:00:00,11404.0
-2015-11-13 12:00:00,11419.0
-2015-11-13 13:00:00,11383.0
-2015-11-13 14:00:00,11282.0
-2015-11-13 15:00:00,11237.0
-2015-11-13 16:00:00,11062.0
-2015-11-13 17:00:00,10999.0
-2015-11-13 18:00:00,11384.0
-2015-11-13 19:00:00,11954.0
-2015-11-13 20:00:00,11820.0
-2015-11-13 21:00:00,11597.0
-2015-11-13 22:00:00,11288.0
-2015-11-13 23:00:00,10908.0
-2015-11-14 00:00:00,10255.0
-2015-11-12 01:00:00,9123.0
-2015-11-12 02:00:00,8681.0
-2015-11-12 03:00:00,8451.0
-2015-11-12 04:00:00,8291.0
-2015-11-12 05:00:00,8343.0
-2015-11-12 06:00:00,8623.0
-2015-11-12 07:00:00,9352.0
-2015-11-12 08:00:00,10523.0
-2015-11-12 09:00:00,11175.0
-2015-11-12 10:00:00,11451.0
-2015-11-12 11:00:00,11576.0
-2015-11-12 12:00:00,11643.0
-2015-11-12 13:00:00,11679.0
-2015-11-12 14:00:00,11657.0
-2015-11-12 15:00:00,11673.0
-2015-11-12 16:00:00,11611.0
-2015-11-12 17:00:00,11517.0
-2015-11-12 18:00:00,11754.0
-2015-11-12 19:00:00,12254.0
-2015-11-12 20:00:00,12057.0
-2015-11-12 21:00:00,11855.0
-2015-11-12 22:00:00,11550.0
-2015-11-12 23:00:00,11014.0
-2015-11-13 00:00:00,10273.0
-2015-11-11 01:00:00,9283.0
-2015-11-11 02:00:00,8837.0
-2015-11-11 03:00:00,8587.0
-2015-11-11 04:00:00,8450.0
-2015-11-11 05:00:00,8444.0
-2015-11-11 06:00:00,8677.0
-2015-11-11 07:00:00,9344.0
-2015-11-11 08:00:00,10250.0
-2015-11-11 09:00:00,10611.0
-2015-11-11 10:00:00,10766.0
-2015-11-11 11:00:00,10814.0
-2015-11-11 12:00:00,10921.0
-2015-11-11 13:00:00,11006.0
-2015-11-11 14:00:00,11012.0
-2015-11-11 15:00:00,11019.0
-2015-11-11 16:00:00,10982.0
-2015-11-11 17:00:00,11058.0
-2015-11-11 18:00:00,11566.0
-2015-11-11 19:00:00,11855.0
-2015-11-11 20:00:00,11677.0
-2015-11-11 21:00:00,11421.0
-2015-11-11 22:00:00,11026.0
-2015-11-11 23:00:00,10491.0
-2015-11-12 00:00:00,9770.0
-2015-11-10 01:00:00,9229.0
-2015-11-10 02:00:00,8804.0
-2015-11-10 03:00:00,8580.0
-2015-11-10 04:00:00,8464.0
-2015-11-10 05:00:00,8461.0
-2015-11-10 06:00:00,8702.0
-2015-11-10 07:00:00,9469.0
-2015-11-10 08:00:00,10569.0
-2015-11-10 09:00:00,10982.0
-2015-11-10 10:00:00,11048.0
-2015-11-10 11:00:00,11028.0
-2015-11-10 12:00:00,11040.0
-2015-11-10 13:00:00,11027.0
-2015-11-10 14:00:00,10960.0
-2015-11-10 15:00:00,10962.0
-2015-11-10 16:00:00,10838.0
-2015-11-10 17:00:00,10732.0
-2015-11-10 18:00:00,11039.0
-2015-11-10 19:00:00,11708.0
-2015-11-10 20:00:00,11560.0
-2015-11-10 21:00:00,11387.0
-2015-11-10 22:00:00,11109.0
-2015-11-10 23:00:00,10597.0
-2015-11-11 00:00:00,9917.0
-2015-11-09 01:00:00,8665.0
-2015-11-09 02:00:00,8407.0
-2015-11-09 03:00:00,8254.0
-2015-11-09 04:00:00,8214.0
-2015-11-09 05:00:00,8283.0
-2015-11-09 06:00:00,8614.0
-2015-11-09 07:00:00,9424.0
-2015-11-09 08:00:00,10481.0
-2015-11-09 09:00:00,10923.0
-2015-11-09 10:00:00,11084.0
-2015-11-09 11:00:00,11010.0
-2015-11-09 12:00:00,11041.0
-2015-11-09 13:00:00,11005.0
-2015-11-09 14:00:00,10911.0
-2015-11-09 15:00:00,10936.0
-2015-11-09 16:00:00,10803.0
-2015-11-09 17:00:00,10711.0
-2015-11-09 18:00:00,11076.0
-2015-11-09 19:00:00,11742.0
-2015-11-09 20:00:00,11627.0
-2015-11-09 21:00:00,11428.0
-2015-11-09 22:00:00,11103.0
-2015-11-09 23:00:00,10600.0
-2015-11-10 00:00:00,9913.0
-2015-11-08 01:00:00,8846.0
-2015-11-08 02:00:00,8506.0
-2015-11-08 03:00:00,8263.0
-2015-11-08 04:00:00,8171.0
-2015-11-08 05:00:00,8107.0
-2015-11-08 06:00:00,8153.0
-2015-11-08 07:00:00,8319.0
-2015-11-08 08:00:00,8472.0
-2015-11-08 09:00:00,8511.0
-2015-11-08 10:00:00,8699.0
-2015-11-08 11:00:00,8836.0
-2015-11-08 12:00:00,8891.0
-2015-11-08 13:00:00,8930.0
-2015-11-08 14:00:00,8884.0
-2015-11-08 15:00:00,8841.0
-2015-11-08 16:00:00,8801.0
-2015-11-08 17:00:00,8867.0
-2015-11-08 18:00:00,9391.0
-2015-11-08 19:00:00,10201.0
-2015-11-08 20:00:00,10256.0
-2015-11-08 21:00:00,10199.0
-2015-11-08 22:00:00,9991.0
-2015-11-08 23:00:00,9662.0
-2015-11-09 00:00:00,9133.0
-2015-11-07 01:00:00,9128.0
-2015-11-07 02:00:00,8690.0
-2015-11-07 03:00:00,8389.0
-2015-11-07 04:00:00,8237.0
-2015-11-07 05:00:00,8171.0
-2015-11-07 06:00:00,8284.0
-2015-11-07 07:00:00,8564.0
-2015-11-07 08:00:00,8918.0
-2015-11-07 09:00:00,9117.0
-2015-11-07 10:00:00,9430.0
-2015-11-07 11:00:00,9560.0
-2015-11-07 12:00:00,9642.0
-2015-11-07 13:00:00,9592.0
-2015-11-07 14:00:00,9539.0
-2015-11-07 15:00:00,9341.0
-2015-11-07 16:00:00,9228.0
-2015-11-07 17:00:00,9200.0
-2015-11-07 18:00:00,9595.0
-2015-11-07 19:00:00,10292.0
-2015-11-07 20:00:00,10270.0
-2015-11-07 21:00:00,10185.0
-2015-11-07 22:00:00,10050.0
-2015-11-07 23:00:00,9775.0
-2015-11-08 00:00:00,9310.0
-2015-11-06 01:00:00,9268.0
-2015-11-06 02:00:00,8767.0
-2015-11-06 03:00:00,8488.0
-2015-11-06 04:00:00,8236.0
-2015-11-06 05:00:00,8101.0
-2015-11-06 06:00:00,8219.0
-2015-11-06 07:00:00,8770.0
-2015-11-06 08:00:00,9749.0
-2015-11-06 09:00:00,10249.0
-2015-11-06 10:00:00,10580.0
-2015-11-06 11:00:00,10790.0
-2015-11-06 12:00:00,10885.0
-2015-11-06 13:00:00,10855.0
-2015-11-06 14:00:00,10829.0
-2015-11-06 15:00:00,10843.0
-2015-11-06 16:00:00,10787.0
-2015-11-06 17:00:00,10753.0
-2015-11-06 18:00:00,11159.0
-2015-11-06 19:00:00,11534.0
-2015-11-06 20:00:00,11343.0
-2015-11-06 21:00:00,11082.0
-2015-11-06 22:00:00,10793.0
-2015-11-06 23:00:00,10410.0
-2015-11-07 00:00:00,9764.0
-2015-11-05 01:00:00,9184.0
-2015-11-05 02:00:00,8720.0
-2015-11-05 03:00:00,8427.0
-2015-11-05 04:00:00,8253.0
-2015-11-05 05:00:00,8228.0
-2015-11-05 06:00:00,8441.0
-2015-11-05 07:00:00,9114.0
-2015-11-05 08:00:00,10109.0
-2015-11-05 09:00:00,10727.0
-2015-11-05 10:00:00,11083.0
-2015-11-05 11:00:00,11256.0
-2015-11-05 12:00:00,11456.0
-2015-11-05 13:00:00,11619.0
-2015-11-05 14:00:00,11641.0
-2015-11-05 15:00:00,11605.0
-2015-11-05 16:00:00,11530.0
-2015-11-05 17:00:00,11447.0
-2015-11-05 18:00:00,11812.0
-2015-11-05 19:00:00,12200.0
-2015-11-05 20:00:00,11968.0
-2015-11-05 21:00:00,11661.0
-2015-11-05 22:00:00,11308.0
-2015-11-05 23:00:00,10729.0
-2015-11-06 00:00:00,9959.0
-2015-11-04 01:00:00,8981.0
-2015-11-04 02:00:00,8545.0
-2015-11-04 03:00:00,8274.0
-2015-11-04 04:00:00,8085.0
-2015-11-04 05:00:00,8016.0
-2015-11-04 06:00:00,8287.0
-2015-11-04 07:00:00,8941.0
-2015-11-04 08:00:00,9891.0
-2015-11-04 09:00:00,10475.0
-2015-11-04 10:00:00,10833.0
-2015-11-04 11:00:00,11031.0
-2015-11-04 12:00:00,11224.0
-2015-11-04 13:00:00,11389.0
-2015-11-04 14:00:00,11515.0
-2015-11-04 15:00:00,11633.0
-2015-11-04 16:00:00,11605.0
-2015-11-04 17:00:00,11495.0
-2015-11-04 18:00:00,11667.0
-2015-11-04 19:00:00,12156.0
-2015-11-04 20:00:00,11937.0
-2015-11-04 21:00:00,11641.0
-2015-11-04 22:00:00,11310.0
-2015-11-04 23:00:00,10715.0
-2015-11-05 00:00:00,9924.0
-2015-11-03 01:00:00,8908.0
-2015-11-03 02:00:00,8468.0
-2015-11-03 03:00:00,8187.0
-2015-11-03 04:00:00,8044.0
-2015-11-03 05:00:00,7996.0
-2015-11-03 06:00:00,8232.0
-2015-11-03 07:00:00,8901.0
-2015-11-03 08:00:00,9827.0
-2015-11-03 09:00:00,10344.0
-2015-11-03 10:00:00,10652.0
-2015-11-03 11:00:00,10933.0
-2015-11-03 12:00:00,11195.0
-2015-11-03 13:00:00,11341.0
-2015-11-03 14:00:00,11378.0
-2015-11-03 15:00:00,11378.0
-2015-11-03 16:00:00,11394.0
-2015-11-03 17:00:00,11269.0
-2015-11-03 18:00:00,11351.0
-2015-11-03 19:00:00,11945.0
-2015-11-03 20:00:00,11739.0
-2015-11-03 21:00:00,11449.0
-2015-11-03 22:00:00,11054.0
-2015-11-03 23:00:00,10454.0
-2015-11-04 00:00:00,9700.0
-2015-11-02 01:00:00,8354.0
-2015-11-02 02:00:00,8045.0
-2015-11-02 03:00:00,7915.0
-2015-11-02 04:00:00,7849.0
-2015-11-02 05:00:00,7844.0
-2015-11-02 06:00:00,8186.0
-2015-11-02 07:00:00,8955.0
-2015-11-02 08:00:00,9901.0
-2015-11-02 09:00:00,10442.0
-2015-11-02 10:00:00,10713.0
-2015-11-02 11:00:00,10888.0
-2015-11-02 12:00:00,11121.0
-2015-11-02 13:00:00,11209.0
-2015-11-02 14:00:00,11237.0
-2015-11-02 15:00:00,11300.0
-2015-11-02 16:00:00,11229.0
-2015-11-02 17:00:00,11130.0
-2015-11-02 18:00:00,11228.0
-2015-11-02 19:00:00,11813.0
-2015-11-02 20:00:00,11644.0
-2015-11-02 21:00:00,11382.0
-2015-11-02 22:00:00,10991.0
-2015-11-02 23:00:00,10386.0
-2015-11-03 00:00:00,9574.0
-2015-11-01 01:00:00,8663.0
-2015-11-01 02:00:00,8270.0
-2015-11-01 02:00:00,7923.0
-2015-11-01 03:00:00,7902.0
-2015-11-01 04:00:00,7761.0
-2015-11-01 05:00:00,7744.0
-2015-11-01 06:00:00,7792.0
-2015-11-01 07:00:00,7981.0
-2015-11-01 08:00:00,8149.0
-2015-11-01 09:00:00,8264.0
-2015-11-01 10:00:00,8509.0
-2015-11-01 11:00:00,8676.0
-2015-11-01 12:00:00,8762.0
-2015-11-01 13:00:00,8798.0
-2015-11-01 14:00:00,8851.0
-2015-11-01 15:00:00,8821.0
-2015-11-01 16:00:00,8812.0
-2015-11-01 17:00:00,8829.0
-2015-11-01 18:00:00,9181.0
-2015-11-01 19:00:00,10004.0
-2015-11-01 20:00:00,10086.0
-2015-11-01 21:00:00,9981.0
-2015-11-01 22:00:00,9686.0
-2015-11-01 23:00:00,9327.0
-2015-11-02 00:00:00,8782.0
-2015-10-31 01:00:00,9110.0
-2015-10-31 02:00:00,8587.0
-2015-10-31 03:00:00,8314.0
-2015-10-31 04:00:00,8085.0
-2015-10-31 05:00:00,8041.0
-2015-10-31 06:00:00,8068.0
-2015-10-31 07:00:00,8329.0
-2015-10-31 08:00:00,8772.0
-2015-10-31 09:00:00,9220.0
-2015-10-31 10:00:00,9558.0
-2015-10-31 11:00:00,9941.0
-2015-10-31 12:00:00,10156.0
-2015-10-31 13:00:00,10239.0
-2015-10-31 14:00:00,10147.0
-2015-10-31 15:00:00,10051.0
-2015-10-31 16:00:00,9899.0
-2015-10-31 17:00:00,9874.0
-2015-10-31 18:00:00,9876.0
-2015-10-31 19:00:00,10079.0
-2015-10-31 20:00:00,10241.0
-2015-10-31 21:00:00,10096.0
-2015-10-31 22:00:00,9876.0
-2015-10-31 23:00:00,9592.0
-2015-11-01 00:00:00,9158.0
-2015-10-30 01:00:00,9337.0
-2015-10-30 02:00:00,8855.0
-2015-10-30 03:00:00,8571.0
-2015-10-30 04:00:00,8452.0
-2015-10-30 05:00:00,8432.0
-2015-10-30 06:00:00,8624.0
-2015-10-30 07:00:00,9349.0
-2015-10-30 08:00:00,10544.0
-2015-10-30 09:00:00,11163.0
-2015-10-30 10:00:00,11137.0
-2015-10-30 11:00:00,11084.0
-2015-10-30 12:00:00,11064.0
-2015-10-30 13:00:00,10977.0
-2015-10-30 14:00:00,10868.0
-2015-10-30 15:00:00,10822.0
-2015-10-30 16:00:00,10660.0
-2015-10-30 17:00:00,10494.0
-2015-10-30 18:00:00,10393.0
-2015-10-30 19:00:00,10590.0
-2015-10-30 20:00:00,11106.0
-2015-10-30 21:00:00,11002.0
-2015-10-30 22:00:00,10737.0
-2015-10-30 23:00:00,10384.0
-2015-10-31 00:00:00,9726.0
-2015-10-29 01:00:00,9406.0
-2015-10-29 02:00:00,8982.0
-2015-10-29 03:00:00,8705.0
-2015-10-29 04:00:00,8539.0
-2015-10-29 05:00:00,8551.0
-2015-10-29 06:00:00,8834.0
-2015-10-29 07:00:00,9561.0
-2015-10-29 08:00:00,10751.0
-2015-10-29 09:00:00,11492.0
-2015-10-29 10:00:00,11581.0
-2015-10-29 11:00:00,11652.0
-2015-10-29 12:00:00,11660.0
-2015-10-29 13:00:00,11570.0
-2015-10-29 14:00:00,11452.0
-2015-10-29 15:00:00,11464.0
-2015-10-29 16:00:00,11315.0
-2015-10-29 17:00:00,11246.0
-2015-10-29 18:00:00,11294.0
-2015-10-29 19:00:00,11563.0
-2015-10-29 20:00:00,11740.0
-2015-10-29 21:00:00,11591.0
-2015-10-29 22:00:00,11349.0
-2015-10-29 23:00:00,10811.0
-2015-10-30 00:00:00,10048.0
-2015-10-28 01:00:00,9181.0
-2015-10-28 02:00:00,8701.0
-2015-10-28 03:00:00,8375.0
-2015-10-28 04:00:00,8200.0
-2015-10-28 05:00:00,8131.0
-2015-10-28 06:00:00,8330.0
-2015-10-28 07:00:00,8964.0
-2015-10-28 08:00:00,10139.0
-2015-10-28 09:00:00,10918.0
-2015-10-28 10:00:00,11079.0
-2015-10-28 11:00:00,11158.0
-2015-10-28 12:00:00,11299.0
-2015-10-28 13:00:00,11298.0
-2015-10-28 14:00:00,11249.0
-2015-10-28 15:00:00,11251.0
-2015-10-28 16:00:00,11182.0
-2015-10-28 17:00:00,11115.0
-2015-10-28 18:00:00,11189.0
-2015-10-28 19:00:00,11481.0
-2015-10-28 20:00:00,11662.0
-2015-10-28 21:00:00,11548.0
-2015-10-28 22:00:00,11303.0
-2015-10-28 23:00:00,10843.0
-2015-10-29 00:00:00,10086.0
-2015-10-27 01:00:00,8996.0
-2015-10-27 02:00:00,8552.0
-2015-10-27 03:00:00,8271.0
-2015-10-27 04:00:00,8074.0
-2015-10-27 05:00:00,8015.0
-2015-10-27 06:00:00,8221.0
-2015-10-27 07:00:00,8922.0
-2015-10-27 08:00:00,10119.0
-2015-10-27 09:00:00,10740.0
-2015-10-27 10:00:00,10816.0
-2015-10-27 11:00:00,10937.0
-2015-10-27 12:00:00,11063.0
-2015-10-27 13:00:00,11118.0
-2015-10-27 14:00:00,11098.0
-2015-10-27 15:00:00,11062.0
-2015-10-27 16:00:00,10985.0
-2015-10-27 17:00:00,10915.0
-2015-10-27 18:00:00,11019.0
-2015-10-27 19:00:00,11346.0
-2015-10-27 20:00:00,11587.0
-2015-10-27 21:00:00,11422.0
-2015-10-27 22:00:00,11178.0
-2015-10-27 23:00:00,10660.0
-2015-10-28 00:00:00,9893.0
-2015-10-26 01:00:00,8433.0
-2015-10-26 02:00:00,8116.0
-2015-10-26 03:00:00,7927.0
-2015-10-26 04:00:00,7859.0
-2015-10-26 05:00:00,7859.0
-2015-10-26 06:00:00,8141.0
-2015-10-26 07:00:00,8845.0
-2015-10-26 08:00:00,10113.0
-2015-10-26 09:00:00,10737.0
-2015-10-26 10:00:00,10804.0
-2015-10-26 11:00:00,10792.0
-2015-10-26 12:00:00,10943.0
-2015-10-26 13:00:00,10948.0
-2015-10-26 14:00:00,10949.0
-2015-10-26 15:00:00,10960.0
-2015-10-26 16:00:00,10860.0
-2015-10-26 17:00:00,10709.0
-2015-10-26 18:00:00,10628.0
-2015-10-26 19:00:00,10774.0
-2015-10-26 20:00:00,11304.0
-2015-10-26 21:00:00,11217.0
-2015-10-26 22:00:00,10981.0
-2015-10-26 23:00:00,10476.0
-2015-10-27 00:00:00,9758.0
-2015-10-25 01:00:00,8471.0
-2015-10-25 02:00:00,8055.0
-2015-10-25 03:00:00,7796.0
-2015-10-25 04:00:00,7597.0
-2015-10-25 05:00:00,7526.0
-2015-10-25 06:00:00,7504.0
-2015-10-25 07:00:00,7669.0
-2015-10-25 08:00:00,7968.0
-2015-10-25 09:00:00,8080.0
-2015-10-25 10:00:00,8286.0
-2015-10-25 11:00:00,8507.0
-2015-10-25 12:00:00,8647.0
-2015-10-25 13:00:00,8736.0
-2015-10-25 14:00:00,8748.0
-2015-10-25 15:00:00,8747.0
-2015-10-25 16:00:00,8712.0
-2015-10-25 17:00:00,8726.0
-2015-10-25 18:00:00,8769.0
-2015-10-25 19:00:00,8995.0
-2015-10-25 20:00:00,9722.0
-2015-10-25 21:00:00,9868.0
-2015-10-25 22:00:00,9684.0
-2015-10-25 23:00:00,9356.0
-2015-10-26 00:00:00,8918.0
-2015-10-24 01:00:00,9167.0
-2015-10-24 02:00:00,8643.0
-2015-10-24 03:00:00,8326.0
-2015-10-24 04:00:00,8087.0
-2015-10-24 05:00:00,8047.0
-2015-10-24 06:00:00,8077.0
-2015-10-24 07:00:00,8364.0
-2015-10-24 08:00:00,8817.0
-2015-10-24 09:00:00,9200.0
-2015-10-24 10:00:00,9631.0
-2015-10-24 11:00:00,10028.0
-2015-10-24 12:00:00,10191.0
-2015-10-24 13:00:00,10058.0
-2015-10-24 14:00:00,9895.0
-2015-10-24 15:00:00,9721.0
-2015-10-24 16:00:00,9564.0
-2015-10-24 17:00:00,9477.0
-2015-10-24 18:00:00,9623.0
-2015-10-24 19:00:00,9802.0
-2015-10-24 20:00:00,10109.0
-2015-10-24 21:00:00,9970.0
-2015-10-24 22:00:00,9808.0
-2015-10-24 23:00:00,9449.0
-2015-10-25 00:00:00,8999.0
-2015-10-23 01:00:00,8989.0
-2015-10-23 02:00:00,8509.0
-2015-10-23 03:00:00,8186.0
-2015-10-23 04:00:00,8041.0
-2015-10-23 05:00:00,7982.0
-2015-10-23 06:00:00,8159.0
-2015-10-23 07:00:00,8802.0
-2015-10-23 08:00:00,9910.0
-2015-10-23 09:00:00,10544.0
-2015-10-23 10:00:00,10715.0
-2015-10-23 11:00:00,10864.0
-2015-10-23 12:00:00,10921.0
-2015-10-23 13:00:00,10960.0
-2015-10-23 14:00:00,10953.0
-2015-10-23 15:00:00,10970.0
-2015-10-23 16:00:00,10880.0
-2015-10-23 17:00:00,10764.0
-2015-10-23 18:00:00,10788.0
-2015-10-23 19:00:00,11041.0
-2015-10-23 20:00:00,11260.0
-2015-10-23 21:00:00,11042.0
-2015-10-23 22:00:00,10773.0
-2015-10-23 23:00:00,10440.0
-2015-10-24 00:00:00,9806.0
-2015-10-22 01:00:00,9204.0
-2015-10-22 02:00:00,8722.0
-2015-10-22 03:00:00,8324.0
-2015-10-22 04:00:00,8085.0
-2015-10-22 05:00:00,8019.0
-2015-10-22 06:00:00,8184.0
-2015-10-22 07:00:00,8774.0
-2015-10-22 08:00:00,9866.0
-2015-10-22 09:00:00,10539.0
-2015-10-22 10:00:00,10699.0
-2015-10-22 11:00:00,10822.0
-2015-10-22 12:00:00,10927.0
-2015-10-22 13:00:00,10966.0
-2015-10-22 14:00:00,11017.0
-2015-10-22 15:00:00,11134.0
-2015-10-22 16:00:00,11074.0
-2015-10-22 17:00:00,10960.0
-2015-10-22 18:00:00,10806.0
-2015-10-22 19:00:00,10771.0
-2015-10-22 20:00:00,11234.0
-2015-10-22 21:00:00,11220.0
-2015-10-22 22:00:00,10905.0
-2015-10-22 23:00:00,10406.0
-2015-10-23 00:00:00,9682.0
-2015-10-21 01:00:00,9061.0
-2015-10-21 02:00:00,8534.0
-2015-10-21 03:00:00,8216.0
-2015-10-21 04:00:00,7993.0
-2015-10-21 05:00:00,7959.0
-2015-10-21 06:00:00,8134.0
-2015-10-21 07:00:00,8773.0
-2015-10-21 08:00:00,9915.0
-2015-10-21 09:00:00,10507.0
-2015-10-21 10:00:00,10748.0
-2015-10-21 11:00:00,10956.0
-2015-10-21 12:00:00,11191.0
-2015-10-21 13:00:00,11362.0
-2015-10-21 14:00:00,11504.0
-2015-10-21 15:00:00,11583.0
-2015-10-21 16:00:00,11574.0
-2015-10-21 17:00:00,11471.0
-2015-10-21 18:00:00,11393.0
-2015-10-21 19:00:00,11317.0
-2015-10-21 20:00:00,11764.0
-2015-10-21 21:00:00,11792.0
-2015-10-21 22:00:00,11413.0
-2015-10-21 23:00:00,10864.0
-2015-10-22 00:00:00,10038.0
-2015-10-20 01:00:00,9000.0
-2015-10-20 02:00:00,8522.0
-2015-10-20 03:00:00,8183.0
-2015-10-20 04:00:00,8001.0
-2015-10-20 05:00:00,7946.0
-2015-10-20 06:00:00,8148.0
-2015-10-20 07:00:00,8791.0
-2015-10-20 08:00:00,9928.0
-2015-10-20 09:00:00,10511.0
-2015-10-20 10:00:00,10675.0
-2015-10-20 11:00:00,10824.0
-2015-10-20 12:00:00,11037.0
-2015-10-20 13:00:00,11122.0
-2015-10-20 14:00:00,11134.0
-2015-10-20 15:00:00,11238.0
-2015-10-20 16:00:00,11226.0
-2015-10-20 17:00:00,11136.0
-2015-10-20 18:00:00,11066.0
-2015-10-20 19:00:00,11054.0
-2015-10-20 20:00:00,11525.0
-2015-10-20 21:00:00,11432.0
-2015-10-20 22:00:00,11123.0
-2015-10-20 23:00:00,10597.0
-2015-10-21 00:00:00,9818.0
-2015-10-19 01:00:00,8490.0
-2015-10-19 02:00:00,8141.0
-2015-10-19 03:00:00,7962.0
-2015-10-19 04:00:00,7878.0
-2015-10-19 05:00:00,7927.0
-2015-10-19 06:00:00,8175.0
-2015-10-19 07:00:00,8936.0
-2015-10-19 08:00:00,10113.0
-2015-10-19 09:00:00,10699.0
-2015-10-19 10:00:00,10829.0
-2015-10-19 11:00:00,10913.0
-2015-10-19 12:00:00,11051.0
-2015-10-19 13:00:00,11118.0
-2015-10-19 14:00:00,11168.0
-2015-10-19 15:00:00,11212.0
-2015-10-19 16:00:00,11164.0
-2015-10-19 17:00:00,11033.0
-2015-10-19 18:00:00,10988.0
-2015-10-19 19:00:00,10969.0
-2015-10-19 20:00:00,11414.0
-2015-10-19 21:00:00,11444.0
-2015-10-19 22:00:00,11118.0
-2015-10-19 23:00:00,10553.0
-2015-10-20 00:00:00,9740.0
-2015-10-18 01:00:00,8752.0
-2015-10-18 02:00:00,8396.0
-2015-10-18 03:00:00,8127.0
-2015-10-18 04:00:00,8031.0
-2015-10-18 05:00:00,7955.0
-2015-10-18 06:00:00,8000.0
-2015-10-18 07:00:00,8100.0
-2015-10-18 08:00:00,8391.0
-2015-10-18 09:00:00,8448.0
-2015-10-18 10:00:00,8670.0
-2015-10-18 11:00:00,8776.0
-2015-10-18 12:00:00,8897.0
-2015-10-18 13:00:00,8899.0
-2015-10-18 14:00:00,8920.0
-2015-10-18 15:00:00,8866.0
-2015-10-18 16:00:00,8780.0
-2015-10-18 17:00:00,8791.0
-2015-10-18 18:00:00,8845.0
-2015-10-18 19:00:00,9034.0
-2015-10-18 20:00:00,9718.0
-2015-10-18 21:00:00,9960.0
-2015-10-18 22:00:00,9779.0
-2015-10-18 23:00:00,9500.0
-2015-10-19 00:00:00,8969.0
-2015-10-17 01:00:00,9128.0
-2015-10-17 02:00:00,8639.0
-2015-10-17 03:00:00,8404.0
-2015-10-17 04:00:00,8226.0
-2015-10-17 05:00:00,8159.0
-2015-10-17 06:00:00,8246.0
-2015-10-17 07:00:00,8506.0
-2015-10-17 08:00:00,9046.0
-2015-10-17 09:00:00,9298.0
-2015-10-17 10:00:00,9586.0
-2015-10-17 11:00:00,9716.0
-2015-10-17 12:00:00,9755.0
-2015-10-17 13:00:00,9663.0
-2015-10-17 14:00:00,9528.0
-2015-10-17 15:00:00,9322.0
-2015-10-17 16:00:00,9197.0
-2015-10-17 17:00:00,9106.0
-2015-10-17 18:00:00,9108.0
-2015-10-17 19:00:00,9217.0
-2015-10-17 20:00:00,9792.0
-2015-10-17 21:00:00,10001.0
-2015-10-17 22:00:00,9882.0
-2015-10-17 23:00:00,9666.0
-2015-10-18 00:00:00,9222.0
-2015-10-16 01:00:00,8950.0
-2015-10-16 02:00:00,8499.0
-2015-10-16 03:00:00,8229.0
-2015-10-16 04:00:00,8070.0
-2015-10-16 05:00:00,8044.0
-2015-10-16 06:00:00,8285.0
-2015-10-16 07:00:00,8820.0
-2015-10-16 08:00:00,10053.0
-2015-10-16 09:00:00,10543.0
-2015-10-16 10:00:00,10728.0
-2015-10-16 11:00:00,10783.0
-2015-10-16 12:00:00,10875.0
-2015-10-16 13:00:00,10825.0
-2015-10-16 14:00:00,10763.0
-2015-10-16 15:00:00,10776.0
-2015-10-16 16:00:00,10624.0
-2015-10-16 17:00:00,10490.0
-2015-10-16 18:00:00,10384.0
-2015-10-16 19:00:00,10350.0
-2015-10-16 20:00:00,10833.0
-2015-10-16 21:00:00,10885.0
-2015-10-16 22:00:00,10660.0
-2015-10-16 23:00:00,10337.0
-2015-10-17 00:00:00,9754.0
-2015-10-15 01:00:00,8887.0
-2015-10-15 02:00:00,8471.0
-2015-10-15 03:00:00,8186.0
-2015-10-15 04:00:00,8007.0
-2015-10-15 05:00:00,7968.0
-2015-10-15 06:00:00,8151.0
-2015-10-15 07:00:00,8804.0
-2015-10-15 08:00:00,9973.0
-2015-10-15 09:00:00,10517.0
-2015-10-15 10:00:00,10763.0
-2015-10-15 11:00:00,10861.0
-2015-10-15 12:00:00,11025.0
-2015-10-15 13:00:00,11081.0
-2015-10-15 14:00:00,11049.0
-2015-10-15 15:00:00,11101.0
-2015-10-15 16:00:00,11089.0
-2015-10-15 17:00:00,11007.0
-2015-10-15 18:00:00,10896.0
-2015-10-15 19:00:00,10787.0
-2015-10-15 20:00:00,11142.0
-2015-10-15 21:00:00,11241.0
-2015-10-15 22:00:00,10938.0
-2015-10-15 23:00:00,10409.0
-2015-10-16 00:00:00,9665.0
-2015-10-14 01:00:00,8824.0
-2015-10-14 02:00:00,8360.0
-2015-10-14 03:00:00,8065.0
-2015-10-14 04:00:00,7912.0
-2015-10-14 05:00:00,7866.0
-2015-10-14 06:00:00,8062.0
-2015-10-14 07:00:00,8709.0
-2015-10-14 08:00:00,9881.0
-2015-10-14 09:00:00,10432.0
-2015-10-14 10:00:00,10627.0
-2015-10-14 11:00:00,10656.0
-2015-10-14 12:00:00,10828.0
-2015-10-14 13:00:00,10870.0
-2015-10-14 14:00:00,10867.0
-2015-10-14 15:00:00,10992.0
-2015-10-14 16:00:00,10925.0
-2015-10-14 17:00:00,10862.0
-2015-10-14 18:00:00,10774.0
-2015-10-14 19:00:00,10677.0
-2015-10-14 20:00:00,11048.0
-2015-10-14 21:00:00,11132.0
-2015-10-14 22:00:00,10869.0
-2015-10-14 23:00:00,10321.0
-2015-10-15 00:00:00,9604.0
-2015-10-13 01:00:00,8895.0
-2015-10-13 02:00:00,8373.0
-2015-10-13 03:00:00,8061.0
-2015-10-13 04:00:00,7861.0
-2015-10-13 05:00:00,7769.0
-2015-10-13 06:00:00,7963.0
-2015-10-13 07:00:00,8644.0
-2015-10-13 08:00:00,9799.0
-2015-10-13 09:00:00,10267.0
-2015-10-13 10:00:00,10532.0
-2015-10-13 11:00:00,10692.0
-2015-10-13 12:00:00,10831.0
-2015-10-13 13:00:00,10870.0
-2015-10-13 14:00:00,10858.0
-2015-10-13 15:00:00,10873.0
-2015-10-13 16:00:00,10836.0
-2015-10-13 17:00:00,10780.0
-2015-10-13 18:00:00,10710.0
-2015-10-13 19:00:00,10663.0
-2015-10-13 20:00:00,10993.0
-2015-10-13 21:00:00,11154.0
-2015-10-13 22:00:00,10820.0
-2015-10-13 23:00:00,10296.0
-2015-10-14 00:00:00,9541.0
-2015-10-12 01:00:00,8606.0
-2015-10-12 02:00:00,8172.0
-2015-10-12 03:00:00,7938.0
-2015-10-12 04:00:00,7768.0
-2015-10-12 05:00:00,7726.0
-2015-10-12 06:00:00,7962.0
-2015-10-12 07:00:00,8570.0
-2015-10-12 08:00:00,9569.0
-2015-10-12 09:00:00,10077.0
-2015-10-12 10:00:00,10631.0
-2015-10-12 11:00:00,11020.0
-2015-10-12 12:00:00,11294.0
-2015-10-12 13:00:00,11332.0
-2015-10-12 14:00:00,11299.0
-2015-10-12 15:00:00,11319.0
-2015-10-12 16:00:00,11402.0
-2015-10-12 17:00:00,11409.0
-2015-10-12 18:00:00,11293.0
-2015-10-12 19:00:00,11150.0
-2015-10-12 20:00:00,11383.0
-2015-10-12 21:00:00,11371.0
-2015-10-12 22:00:00,11003.0
-2015-10-12 23:00:00,10471.0
-2015-10-13 00:00:00,9678.0
-2015-10-11 01:00:00,8446.0
-2015-10-11 02:00:00,8029.0
-2015-10-11 03:00:00,7758.0
-2015-10-11 04:00:00,7556.0
-2015-10-11 05:00:00,7479.0
-2015-10-11 06:00:00,7470.0
-2015-10-11 07:00:00,7600.0
-2015-10-11 08:00:00,7728.0
-2015-10-11 09:00:00,7789.0
-2015-10-11 10:00:00,8135.0
-2015-10-11 11:00:00,8436.0
-2015-10-11 12:00:00,8710.0
-2015-10-11 13:00:00,8923.0
-2015-10-11 14:00:00,9127.0
-2015-10-11 15:00:00,9309.0
-2015-10-11 16:00:00,9436.0
-2015-10-11 17:00:00,9548.0
-2015-10-11 18:00:00,9674.0
-2015-10-11 19:00:00,9716.0
-2015-10-11 20:00:00,10074.0
-2015-10-11 21:00:00,10351.0
-2015-10-11 22:00:00,10072.0
-2015-10-11 23:00:00,9733.0
-2015-10-12 00:00:00,9154.0
-2015-10-10 01:00:00,8872.0
-2015-10-10 02:00:00,8370.0
-2015-10-10 03:00:00,8064.0
-2015-10-10 04:00:00,7891.0
-2015-10-10 05:00:00,7782.0
-2015-10-10 06:00:00,7861.0
-2015-10-10 07:00:00,8085.0
-2015-10-10 08:00:00,8563.0
-2015-10-10 09:00:00,8759.0
-2015-10-10 10:00:00,9124.0
-2015-10-10 11:00:00,9342.0
-2015-10-10 12:00:00,9516.0
-2015-10-10 13:00:00,9527.0
-2015-10-10 14:00:00,9485.0
-2015-10-10 15:00:00,9392.0
-2015-10-10 16:00:00,9344.0
-2015-10-10 17:00:00,9314.0
-2015-10-10 18:00:00,9286.0
-2015-10-10 19:00:00,9284.0
-2015-10-10 20:00:00,9704.0
-2015-10-10 21:00:00,9857.0
-2015-10-10 22:00:00,9756.0
-2015-10-10 23:00:00,9420.0
-2015-10-11 00:00:00,8976.0
-2015-10-09 01:00:00,9590.0
-2015-10-09 02:00:00,9013.0
-2015-10-09 03:00:00,8630.0
-2015-10-09 04:00:00,8351.0
-2015-10-09 05:00:00,8202.0
-2015-10-09 06:00:00,8311.0
-2015-10-09 07:00:00,8903.0
-2015-10-09 08:00:00,9935.0
-2015-10-09 09:00:00,10467.0
-2015-10-09 10:00:00,10712.0
-2015-10-09 11:00:00,10906.0
-2015-10-09 12:00:00,11045.0
-2015-10-09 13:00:00,11023.0
-2015-10-09 14:00:00,10994.0
-2015-10-09 15:00:00,11024.0
-2015-10-09 16:00:00,10897.0
-2015-10-09 17:00:00,10667.0
-2015-10-09 18:00:00,10518.0
-2015-10-09 19:00:00,10445.0
-2015-10-09 20:00:00,10735.0
-2015-10-09 21:00:00,10857.0
-2015-10-09 22:00:00,10583.0
-2015-10-09 23:00:00,10168.0
-2015-10-10 00:00:00,9531.0
-2015-10-08 01:00:00,9157.0
-2015-10-08 02:00:00,8611.0
-2015-10-08 03:00:00,8287.0
-2015-10-08 04:00:00,8096.0
-2015-10-08 05:00:00,7997.0
-2015-10-08 06:00:00,8172.0
-2015-10-08 07:00:00,8760.0
-2015-10-08 08:00:00,9859.0
-2015-10-08 09:00:00,10409.0
-2015-10-08 10:00:00,10796.0
-2015-10-08 11:00:00,11094.0
-2015-10-08 12:00:00,11474.0
-2015-10-08 13:00:00,11757.0
-2015-10-08 14:00:00,11952.0
-2015-10-08 15:00:00,12131.0
-2015-10-08 16:00:00,12161.0
-2015-10-08 17:00:00,11995.0
-2015-10-08 18:00:00,11873.0
-2015-10-08 19:00:00,11753.0
-2015-10-08 20:00:00,12019.0
-2015-10-08 21:00:00,12168.0
-2015-10-08 22:00:00,11829.0
-2015-10-08 23:00:00,11244.0
-2015-10-09 00:00:00,10375.0
-2015-10-07 01:00:00,9104.0
-2015-10-07 02:00:00,8606.0
-2015-10-07 03:00:00,8293.0
-2015-10-07 04:00:00,8099.0
-2015-10-07 05:00:00,8049.0
-2015-10-07 06:00:00,8258.0
-2015-10-07 07:00:00,8893.0
-2015-10-07 08:00:00,10020.0
-2015-10-07 09:00:00,10519.0
-2015-10-07 10:00:00,10875.0
-2015-10-07 11:00:00,11135.0
-2015-10-07 12:00:00,11445.0
-2015-10-07 13:00:00,11643.0
-2015-10-07 14:00:00,11764.0
-2015-10-07 15:00:00,11956.0
-2015-10-07 16:00:00,11906.0
-2015-10-07 17:00:00,11735.0
-2015-10-07 18:00:00,11530.0
-2015-10-07 19:00:00,11244.0
-2015-10-07 20:00:00,11417.0
-2015-10-07 21:00:00,11544.0
-2015-10-07 22:00:00,11197.0
-2015-10-07 23:00:00,10667.0
-2015-10-08 00:00:00,9913.0
-2015-10-06 01:00:00,9025.0
-2015-10-06 02:00:00,8564.0
-2015-10-06 03:00:00,8262.0
-2015-10-06 04:00:00,8079.0
-2015-10-06 05:00:00,7997.0
-2015-10-06 06:00:00,8185.0
-2015-10-06 07:00:00,8871.0
-2015-10-06 08:00:00,9977.0
-2015-10-06 09:00:00,10581.0
-2015-10-06 10:00:00,10812.0
-2015-10-06 11:00:00,10988.0
-2015-10-06 12:00:00,11164.0
-2015-10-06 13:00:00,11212.0
-2015-10-06 14:00:00,11235.0
-2015-10-06 15:00:00,11395.0
-2015-10-06 16:00:00,11358.0
-2015-10-06 17:00:00,11334.0
-2015-10-06 18:00:00,11255.0
-2015-10-06 19:00:00,11094.0
-2015-10-06 20:00:00,11235.0
-2015-10-06 21:00:00,11471.0
-2015-10-06 22:00:00,11158.0
-2015-10-06 23:00:00,10605.0
-2015-10-07 00:00:00,9827.0
-2015-10-05 01:00:00,8350.0
-2015-10-05 02:00:00,7968.0
-2015-10-05 03:00:00,7796.0
-2015-10-05 04:00:00,7656.0
-2015-10-05 05:00:00,7693.0
-2015-10-05 06:00:00,7900.0
-2015-10-05 07:00:00,8623.0
-2015-10-05 08:00:00,9766.0
-2015-10-05 09:00:00,10477.0
-2015-10-05 10:00:00,10735.0
-2015-10-05 11:00:00,10904.0
-2015-10-05 12:00:00,11063.0
-2015-10-05 13:00:00,11109.0
-2015-10-05 14:00:00,11113.0
-2015-10-05 15:00:00,11127.0
-2015-10-05 16:00:00,11025.0
-2015-10-05 17:00:00,10917.0
-2015-10-05 18:00:00,10861.0
-2015-10-05 19:00:00,10946.0
-2015-10-05 20:00:00,11259.0
-2015-10-05 21:00:00,11325.0
-2015-10-05 22:00:00,11022.0
-2015-10-05 23:00:00,10474.0
-2015-10-06 00:00:00,9715.0
-2015-10-04 01:00:00,8505.0
-2015-10-04 02:00:00,8155.0
-2015-10-04 03:00:00,7792.0
-2015-10-04 04:00:00,7619.0
-2015-10-04 05:00:00,7505.0
-2015-10-04 06:00:00,7522.0
-2015-10-04 07:00:00,7592.0
-2015-10-04 08:00:00,7865.0
-2015-10-04 09:00:00,7982.0
-2015-10-04 10:00:00,8345.0
-2015-10-04 11:00:00,8657.0
-2015-10-04 12:00:00,8846.0
-2015-10-04 13:00:00,8948.0
-2015-10-04 14:00:00,8970.0
-2015-10-04 15:00:00,8957.0
-2015-10-04 16:00:00,8945.0
-2015-10-04 17:00:00,8951.0
-2015-10-04 18:00:00,9071.0
-2015-10-04 19:00:00,9237.0
-2015-10-04 20:00:00,9696.0
-2015-10-04 21:00:00,9949.0
-2015-10-04 22:00:00,9768.0
-2015-10-04 23:00:00,9408.0
-2015-10-05 00:00:00,8860.0
-2015-10-03 01:00:00,8948.0
-2015-10-03 02:00:00,8490.0
-2015-10-03 03:00:00,8149.0
-2015-10-03 04:00:00,7954.0
-2015-10-03 05:00:00,7844.0
-2015-10-03 06:00:00,7864.0
-2015-10-03 07:00:00,8082.0
-2015-10-03 08:00:00,8518.0
-2015-10-03 09:00:00,8707.0
-2015-10-03 10:00:00,9139.0
-2015-10-03 11:00:00,9382.0
-2015-10-03 12:00:00,9537.0
-2015-10-03 13:00:00,9476.0
-2015-10-03 14:00:00,9446.0
-2015-10-03 15:00:00,9327.0
-2015-10-03 16:00:00,9261.0
-2015-10-03 17:00:00,9232.0
-2015-10-03 18:00:00,9284.0
-2015-10-03 19:00:00,9476.0
-2015-10-03 20:00:00,9855.0
-2015-10-03 21:00:00,10028.0
-2015-10-03 22:00:00,9873.0
-2015-10-03 23:00:00,9554.0
-2015-10-04 00:00:00,9052.0
-2015-10-02 01:00:00,8980.0
-2015-10-02 02:00:00,8496.0
-2015-10-02 03:00:00,8210.0
-2015-10-02 04:00:00,8002.0
-2015-10-02 05:00:00,7947.0
-2015-10-02 06:00:00,8140.0
-2015-10-02 07:00:00,8739.0
-2015-10-02 08:00:00,9832.0
-2015-10-02 09:00:00,10324.0
-2015-10-02 10:00:00,10543.0
-2015-10-02 11:00:00,10733.0
-2015-10-02 12:00:00,10886.0
-2015-10-02 13:00:00,10909.0
-2015-10-02 14:00:00,10890.0
-2015-10-02 15:00:00,10911.0
-2015-10-02 16:00:00,10811.0
-2015-10-02 17:00:00,10680.0
-2015-10-02 18:00:00,10555.0
-2015-10-02 19:00:00,10413.0
-2015-10-02 20:00:00,10564.0
-2015-10-02 21:00:00,10916.0
-2015-10-02 22:00:00,10645.0
-2015-10-02 23:00:00,10242.0
-2015-10-03 00:00:00,9562.0
-2015-10-01 01:00:00,8931.0
-2015-10-01 02:00:00,8425.0
-2015-10-01 03:00:00,8119.0
-2015-10-01 04:00:00,7926.0
-2015-10-01 05:00:00,7879.0
-2015-10-01 06:00:00,8053.0
-2015-10-01 07:00:00,8705.0
-2015-10-01 08:00:00,9779.0
-2015-10-01 09:00:00,10256.0
-2015-10-01 10:00:00,10587.0
-2015-10-01 11:00:00,10761.0
-2015-10-01 12:00:00,10894.0
-2015-10-01 13:00:00,10927.0
-2015-10-01 14:00:00,10891.0
-2015-10-01 15:00:00,10981.0
-2015-10-01 16:00:00,10883.0
-2015-10-01 17:00:00,10768.0
-2015-10-01 18:00:00,10677.0
-2015-10-01 19:00:00,10586.0
-2015-10-01 20:00:00,10728.0
-2015-10-01 21:00:00,11122.0
-2015-10-01 22:00:00,10951.0
-2015-10-01 23:00:00,10424.0
-2015-10-02 00:00:00,9681.0
-2015-09-30 01:00:00,9017.0
-2015-09-30 02:00:00,8512.0
-2015-09-30 03:00:00,8173.0
-2015-09-30 04:00:00,8003.0
-2015-09-30 05:00:00,7941.0
-2015-09-30 06:00:00,8121.0
-2015-09-30 07:00:00,8740.0
-2015-09-30 08:00:00,9824.0
-2015-09-30 09:00:00,10304.0
-2015-09-30 10:00:00,10570.0
-2015-09-30 11:00:00,10753.0
-2015-09-30 12:00:00,10956.0
-2015-09-30 13:00:00,11032.0
-2015-09-30 14:00:00,11063.0
-2015-09-30 15:00:00,11121.0
-2015-09-30 16:00:00,11047.0
-2015-09-30 17:00:00,10981.0
-2015-09-30 18:00:00,10849.0
-2015-09-30 19:00:00,10694.0
-2015-09-30 20:00:00,10730.0
-2015-09-30 21:00:00,11153.0
-2015-09-30 22:00:00,10917.0
-2015-09-30 23:00:00,10398.0
-2015-10-01 00:00:00,9674.0
-2015-09-29 01:00:00,10656.0
-2015-09-29 02:00:00,9920.0
-2015-09-29 03:00:00,9418.0
-2015-09-29 04:00:00,9113.0
-2015-09-29 05:00:00,8961.0
-2015-09-29 06:00:00,9107.0
-2015-09-29 07:00:00,9844.0
-2015-09-29 08:00:00,11079.0
-2015-09-29 09:00:00,11647.0
-2015-09-29 10:00:00,11814.0
-2015-09-29 11:00:00,11951.0
-2015-09-29 12:00:00,11992.0
-2015-09-29 13:00:00,11929.0
-2015-09-29 14:00:00,11828.0
-2015-09-29 15:00:00,11813.0
-2015-09-29 16:00:00,11679.0
-2015-09-29 17:00:00,11457.0
-2015-09-29 18:00:00,11316.0
-2015-09-29 19:00:00,11134.0
-2015-09-29 20:00:00,11111.0
-2015-09-29 21:00:00,11408.0
-2015-09-29 22:00:00,11134.0
-2015-09-29 23:00:00,10576.0
-2015-09-30 00:00:00,9784.0
-2015-09-28 01:00:00,9461.0
-2015-09-28 02:00:00,8973.0
-2015-09-28 03:00:00,8674.0
-2015-09-28 04:00:00,8508.0
-2015-09-28 05:00:00,8469.0
-2015-09-28 06:00:00,8711.0
-2015-09-28 07:00:00,9524.0
-2015-09-28 08:00:00,10767.0
-2015-09-28 09:00:00,11496.0
-2015-09-28 10:00:00,11932.0
-2015-09-28 11:00:00,12314.0
-2015-09-28 12:00:00,12705.0
-2015-09-28 13:00:00,13044.0
-2015-09-28 14:00:00,13360.0
-2015-09-28 15:00:00,13722.0
-2015-09-28 16:00:00,13881.0
-2015-09-28 17:00:00,13889.0
-2015-09-28 18:00:00,13794.0
-2015-09-28 19:00:00,13570.0
-2015-09-28 20:00:00,13371.0
-2015-09-28 21:00:00,13835.0
-2015-09-28 22:00:00,13461.0
-2015-09-28 23:00:00,12762.0
-2015-09-29 00:00:00,11705.0
-2015-09-27 01:00:00,9413.0
-2015-09-27 02:00:00,8905.0
-2015-09-27 03:00:00,8551.0
-2015-09-27 04:00:00,8260.0
-2015-09-27 05:00:00,8107.0
-2015-09-27 06:00:00,8048.0
-2015-09-27 07:00:00,8177.0
-2015-09-27 08:00:00,8330.0
-2015-09-27 09:00:00,8545.0
-2015-09-27 10:00:00,8908.0
-2015-09-27 11:00:00,9280.0
-2015-09-27 12:00:00,9616.0
-2015-09-27 13:00:00,9887.0
-2015-09-27 14:00:00,10103.0
-2015-09-27 15:00:00,10276.0
-2015-09-27 16:00:00,10483.0
-2015-09-27 17:00:00,10526.0
-2015-09-27 18:00:00,10705.0
-2015-09-27 19:00:00,10820.0
-2015-09-27 20:00:00,10932.0
-2015-09-27 21:00:00,11387.0
-2015-09-27 22:00:00,11195.0
-2015-09-27 23:00:00,10770.0
-2015-09-28 00:00:00,10132.0
-2015-09-26 01:00:00,9888.0
-2015-09-26 02:00:00,9202.0
-2015-09-26 03:00:00,8744.0
-2015-09-26 04:00:00,8454.0
-2015-09-26 05:00:00,8264.0
-2015-09-26 06:00:00,8204.0
-2015-09-26 07:00:00,8459.0
-2015-09-26 08:00:00,8819.0
-2015-09-26 09:00:00,9052.0
-2015-09-26 10:00:00,9682.0
-2015-09-26 11:00:00,10230.0
-2015-09-26 12:00:00,10680.0
-2015-09-26 13:00:00,10995.0
-2015-09-26 14:00:00,11221.0
-2015-09-26 15:00:00,11339.0
-2015-09-26 16:00:00,11494.0
-2015-09-26 17:00:00,11582.0
-2015-09-26 18:00:00,11602.0
-2015-09-26 19:00:00,11319.0
-2015-09-26 20:00:00,11068.0
-2015-09-26 21:00:00,11340.0
-2015-09-26 22:00:00,11086.0
-2015-09-26 23:00:00,10613.0
-2015-09-27 00:00:00,10029.0
-2015-09-25 01:00:00,9854.0
-2015-09-25 02:00:00,9273.0
-2015-09-25 03:00:00,8857.0
-2015-09-25 04:00:00,8597.0
-2015-09-25 05:00:00,8463.0
-2015-09-25 06:00:00,8603.0
-2015-09-25 07:00:00,9279.0
-2015-09-25 08:00:00,10296.0
-2015-09-25 09:00:00,10893.0
-2015-09-25 10:00:00,11485.0
-2015-09-25 11:00:00,11949.0
-2015-09-25 12:00:00,12338.0
-2015-09-25 13:00:00,12688.0
-2015-09-25 14:00:00,12868.0
-2015-09-25 15:00:00,13084.0
-2015-09-25 16:00:00,13153.0
-2015-09-25 17:00:00,13090.0
-2015-09-25 18:00:00,12942.0
-2015-09-25 19:00:00,12527.0
-2015-09-25 20:00:00,12114.0
-2015-09-25 21:00:00,12267.0
-2015-09-25 22:00:00,11922.0
-2015-09-25 23:00:00,11437.0
-2015-09-26 00:00:00,10659.0
-2015-09-24 01:00:00,9834.0
-2015-09-24 02:00:00,9227.0
-2015-09-24 03:00:00,8830.0
-2015-09-24 04:00:00,8561.0
-2015-09-24 05:00:00,8439.0
-2015-09-24 06:00:00,8558.0
-2015-09-24 07:00:00,9194.0
-2015-09-24 08:00:00,10237.0
-2015-09-24 09:00:00,10807.0
-2015-09-24 10:00:00,11315.0
-2015-09-24 11:00:00,11782.0
-2015-09-24 12:00:00,12261.0
-2015-09-24 13:00:00,12587.0
-2015-09-24 14:00:00,12842.0
-2015-09-24 15:00:00,13179.0
-2015-09-24 16:00:00,13325.0
-2015-09-24 17:00:00,13282.0
-2015-09-24 18:00:00,13142.0
-2015-09-24 19:00:00,12833.0
-2015-09-24 20:00:00,12442.0
-2015-09-24 21:00:00,12693.0
-2015-09-24 22:00:00,12292.0
-2015-09-24 23:00:00,11636.0
-2015-09-25 00:00:00,10724.0
-2015-09-23 01:00:00,9683.0
-2015-09-23 02:00:00,9083.0
-2015-09-23 03:00:00,8692.0
-2015-09-23 04:00:00,8429.0
-2015-09-23 05:00:00,8308.0
-2015-09-23 06:00:00,8474.0
-2015-09-23 07:00:00,9088.0
-2015-09-23 08:00:00,10084.0
-2015-09-23 09:00:00,10677.0
-2015-09-23 10:00:00,11311.0
-2015-09-23 11:00:00,11834.0
-2015-09-23 12:00:00,12322.0
-2015-09-23 13:00:00,12718.0
-2015-09-23 14:00:00,13028.0
-2015-09-23 15:00:00,13408.0
-2015-09-23 16:00:00,13607.0
-2015-09-23 17:00:00,13683.0
-2015-09-23 18:00:00,13562.0
-2015-09-23 19:00:00,13181.0
-2015-09-23 20:00:00,12694.0
-2015-09-23 21:00:00,12858.0
-2015-09-23 22:00:00,12421.0
-2015-09-23 23:00:00,11692.0
-2015-09-24 00:00:00,10739.0
-2015-09-22 01:00:00,9292.0
-2015-09-22 02:00:00,8749.0
-2015-09-22 03:00:00,8378.0
-2015-09-22 04:00:00,8168.0
-2015-09-22 05:00:00,8050.0
-2015-09-22 06:00:00,8208.0
-2015-09-22 07:00:00,8839.0
-2015-09-22 08:00:00,9831.0
-2015-09-22 09:00:00,10421.0
-2015-09-22 10:00:00,10969.0
-2015-09-22 11:00:00,11444.0
-2015-09-22 12:00:00,11913.0
-2015-09-22 13:00:00,12231.0
-2015-09-22 14:00:00,12524.0
-2015-09-22 15:00:00,12850.0
-2015-09-22 16:00:00,13054.0
-2015-09-22 17:00:00,13152.0
-2015-09-22 18:00:00,13078.0
-2015-09-22 19:00:00,12800.0
-2015-09-22 20:00:00,12443.0
-2015-09-22 21:00:00,12674.0
-2015-09-22 22:00:00,12287.0
-2015-09-22 23:00:00,11562.0
-2015-09-23 00:00:00,10568.0
-2015-09-21 01:00:00,8632.0
-2015-09-21 02:00:00,8200.0
-2015-09-21 03:00:00,7947.0
-2015-09-21 04:00:00,7800.0
-2015-09-21 05:00:00,7760.0
-2015-09-21 06:00:00,7961.0
-2015-09-21 07:00:00,8664.0
-2015-09-21 08:00:00,9689.0
-2015-09-21 09:00:00,10287.0
-2015-09-21 10:00:00,10835.0
-2015-09-21 11:00:00,11221.0
-2015-09-21 12:00:00,11595.0
-2015-09-21 13:00:00,11848.0
-2015-09-21 14:00:00,12037.0
-2015-09-21 15:00:00,12241.0
-2015-09-21 16:00:00,12331.0
-2015-09-21 17:00:00,12337.0
-2015-09-21 18:00:00,12308.0
-2015-09-21 19:00:00,12081.0
-2015-09-21 20:00:00,11695.0
-2015-09-21 21:00:00,11943.0
-2015-09-21 22:00:00,11654.0
-2015-09-21 23:00:00,11014.0
-2015-09-22 00:00:00,10101.0
-2015-09-20 01:00:00,8784.0
-2015-09-20 02:00:00,8289.0
-2015-09-20 03:00:00,7956.0
-2015-09-20 04:00:00,7709.0
-2015-09-20 05:00:00,7580.0
-2015-09-20 06:00:00,7503.0
-2015-09-20 07:00:00,7581.0
-2015-09-20 08:00:00,7683.0
-2015-09-20 09:00:00,7798.0
-2015-09-20 10:00:00,8254.0
-2015-09-20 11:00:00,8693.0
-2015-09-20 12:00:00,9059.0
-2015-09-20 13:00:00,9337.0
-2015-09-20 14:00:00,9504.0
-2015-09-20 15:00:00,9627.0
-2015-09-20 16:00:00,9766.0
-2015-09-20 17:00:00,9904.0
-2015-09-20 18:00:00,9994.0
-2015-09-20 19:00:00,10033.0
-2015-09-20 20:00:00,9960.0
-2015-09-20 21:00:00,10414.0
-2015-09-20 22:00:00,10233.0
-2015-09-20 23:00:00,9785.0
-2015-09-21 00:00:00,9194.0
-2015-09-19 01:00:00,10918.0
-2015-09-19 02:00:00,10145.0
-2015-09-19 03:00:00,9629.0
-2015-09-19 04:00:00,9233.0
-2015-09-19 05:00:00,8955.0
-2015-09-19 06:00:00,8796.0
-2015-09-19 07:00:00,8947.0
-2015-09-19 08:00:00,9175.0
-2015-09-19 09:00:00,9364.0
-2015-09-19 10:00:00,9791.0
-2015-09-19 11:00:00,10160.0
-2015-09-19 12:00:00,10374.0
-2015-09-19 13:00:00,10544.0
-2015-09-19 14:00:00,10625.0
-2015-09-19 15:00:00,10642.0
-2015-09-19 16:00:00,10588.0
-2015-09-19 17:00:00,10642.0
-2015-09-19 18:00:00,10611.0
-2015-09-19 19:00:00,10506.0
-2015-09-19 20:00:00,10252.0
-2015-09-19 21:00:00,10519.0
-2015-09-19 22:00:00,10320.0
-2015-09-19 23:00:00,9974.0
-2015-09-20 00:00:00,9358.0
-2015-09-18 01:00:00,11785.0
-2015-09-18 02:00:00,11022.0
-2015-09-18 03:00:00,10346.0
-2015-09-18 04:00:00,9923.0
-2015-09-18 05:00:00,9761.0
-2015-09-18 06:00:00,9878.0
-2015-09-18 07:00:00,10422.0
-2015-09-18 08:00:00,11527.0
-2015-09-18 09:00:00,12233.0
-2015-09-18 10:00:00,12779.0
-2015-09-18 11:00:00,13353.0
-2015-09-18 12:00:00,13840.0
-2015-09-18 13:00:00,13989.0
-2015-09-18 14:00:00,14082.0
-2015-09-18 15:00:00,14307.0
-2015-09-18 16:00:00,14338.0
-2015-09-18 17:00:00,14220.0
-2015-09-18 18:00:00,14201.0
-2015-09-18 19:00:00,14017.0
-2015-09-18 20:00:00,13752.0
-2015-09-18 21:00:00,13641.0
-2015-09-18 22:00:00,13316.0
-2015-09-18 23:00:00,12650.0
-2015-09-19 00:00:00,11793.0
-2015-09-17 01:00:00,10917.0
-2015-09-17 02:00:00,10131.0
-2015-09-17 03:00:00,9560.0
-2015-09-17 04:00:00,9220.0
-2015-09-17 05:00:00,9075.0
-2015-09-17 06:00:00,9172.0
-2015-09-17 07:00:00,9811.0
-2015-09-17 08:00:00,10854.0
-2015-09-17 09:00:00,11546.0
-2015-09-17 10:00:00,12165.0
-2015-09-17 11:00:00,12773.0
-2015-09-17 12:00:00,13541.0
-2015-09-17 13:00:00,14234.0
-2015-09-17 14:00:00,14970.0
-2015-09-17 15:00:00,15586.0
-2015-09-17 16:00:00,15972.0
-2015-09-17 17:00:00,16002.0
-2015-09-17 18:00:00,15559.0
-2015-09-17 19:00:00,14849.0
-2015-09-17 20:00:00,14516.0
-2015-09-17 21:00:00,14751.0
-2015-09-17 22:00:00,14529.0
-2015-09-17 23:00:00,13925.0
-2015-09-18 00:00:00,12809.0
-2015-09-16 01:00:00,10358.0
-2015-09-16 02:00:00,9617.0
-2015-09-16 03:00:00,9181.0
-2015-09-16 04:00:00,8879.0
-2015-09-16 05:00:00,8753.0
-2015-09-16 06:00:00,8876.0
-2015-09-16 07:00:00,9482.0
-2015-09-16 08:00:00,10467.0
-2015-09-16 09:00:00,11103.0
-2015-09-16 10:00:00,11767.0
-2015-09-16 11:00:00,12319.0
-2015-09-16 12:00:00,12967.0
-2015-09-16 13:00:00,13444.0
-2015-09-16 14:00:00,13934.0
-2015-09-16 15:00:00,14471.0
-2015-09-16 16:00:00,14870.0
-2015-09-16 17:00:00,15143.0
-2015-09-16 18:00:00,15219.0
-2015-09-16 19:00:00,14905.0
-2015-09-16 20:00:00,14290.0
-2015-09-16 21:00:00,14285.0
-2015-09-16 22:00:00,13916.0
-2015-09-16 23:00:00,13074.0
-2015-09-17 00:00:00,11994.0
-2015-09-15 01:00:00,10184.0
-2015-09-15 02:00:00,9529.0
-2015-09-15 03:00:00,9123.0
-2015-09-15 04:00:00,8812.0
-2015-09-15 05:00:00,8699.0
-2015-09-15 06:00:00,8825.0
-2015-09-15 07:00:00,9451.0
-2015-09-15 08:00:00,10471.0
-2015-09-15 09:00:00,11109.0
-2015-09-15 10:00:00,11650.0
-2015-09-15 11:00:00,12198.0
-2015-09-15 12:00:00,12730.0
-2015-09-15 13:00:00,13183.0
-2015-09-15 14:00:00,13610.0
-2015-09-15 15:00:00,14109.0
-2015-09-15 16:00:00,14430.0
-2015-09-15 17:00:00,14606.0
-2015-09-15 18:00:00,14627.0
-2015-09-15 19:00:00,14329.0
-2015-09-15 20:00:00,13661.0
-2015-09-15 21:00:00,13662.0
-2015-09-15 22:00:00,13330.0
-2015-09-15 23:00:00,12512.0
-2015-09-16 00:00:00,11417.0
-2015-09-14 01:00:00,8512.0
-2015-09-14 02:00:00,8109.0
-2015-09-14 03:00:00,7881.0
-2015-09-14 04:00:00,7727.0
-2015-09-14 05:00:00,7722.0
-2015-09-14 06:00:00,7953.0
-2015-09-14 07:00:00,8653.0
-2015-09-14 08:00:00,9638.0
-2015-09-14 09:00:00,10261.0
-2015-09-14 10:00:00,10764.0
-2015-09-14 11:00:00,11158.0
-2015-09-14 12:00:00,11551.0
-2015-09-14 13:00:00,11869.0
-2015-09-14 14:00:00,12148.0
-2015-09-14 15:00:00,12522.0
-2015-09-14 16:00:00,12788.0
-2015-09-14 17:00:00,13000.0
-2015-09-14 18:00:00,13133.0
-2015-09-14 19:00:00,13038.0
-2015-09-14 20:00:00,12716.0
-2015-09-14 21:00:00,13015.0
-2015-09-14 22:00:00,12835.0
-2015-09-14 23:00:00,12191.0
-2015-09-15 00:00:00,11195.0
-2015-09-13 01:00:00,8400.0
-2015-09-13 02:00:00,7981.0
-2015-09-13 03:00:00,7667.0
-2015-09-13 04:00:00,7517.0
-2015-09-13 05:00:00,7376.0
-2015-09-13 06:00:00,7396.0
-2015-09-13 07:00:00,7464.0
-2015-09-13 08:00:00,7570.0
-2015-09-13 09:00:00,7667.0
-2015-09-13 10:00:00,8137.0
-2015-09-13 11:00:00,8528.0
-2015-09-13 12:00:00,8877.0
-2015-09-13 13:00:00,9086.0
-2015-09-13 14:00:00,9218.0
-2015-09-13 15:00:00,9254.0
-2015-09-13 16:00:00,9337.0
-2015-09-13 17:00:00,9383.0
-2015-09-13 18:00:00,9531.0
-2015-09-13 19:00:00,9586.0
-2015-09-13 20:00:00,9545.0
-2015-09-13 21:00:00,9989.0
-2015-09-13 22:00:00,9980.0
-2015-09-13 23:00:00,9638.0
-2015-09-14 00:00:00,9048.0
-2015-09-12 01:00:00,9139.0
-2015-09-12 02:00:00,8537.0
-2015-09-12 03:00:00,8214.0
-2015-09-12 04:00:00,7945.0
-2015-09-12 05:00:00,7842.0
-2015-09-12 06:00:00,7839.0
-2015-09-12 07:00:00,8073.0
-2015-09-12 08:00:00,8354.0
-2015-09-12 09:00:00,8684.0
-2015-09-12 10:00:00,9072.0
-2015-09-12 11:00:00,9447.0
-2015-09-12 12:00:00,9662.0
-2015-09-12 13:00:00,9660.0
-2015-09-12 14:00:00,9615.0
-2015-09-12 15:00:00,9542.0
-2015-09-12 16:00:00,9472.0
-2015-09-12 17:00:00,9410.0
-2015-09-12 18:00:00,9407.0
-2015-09-12 19:00:00,9327.0
-2015-09-12 20:00:00,9292.0
-2015-09-12 21:00:00,9687.0
-2015-09-12 22:00:00,9754.0
-2015-09-12 23:00:00,9419.0
-2015-09-13 00:00:00,8945.0
-2015-09-11 01:00:00,9626.0
-2015-09-11 02:00:00,9074.0
-2015-09-11 03:00:00,8753.0
-2015-09-11 04:00:00,8547.0
-2015-09-11 05:00:00,8467.0
-2015-09-11 06:00:00,8638.0
-2015-09-11 07:00:00,9304.0
-2015-09-11 08:00:00,10379.0
-2015-09-11 09:00:00,11036.0
-2015-09-11 10:00:00,11323.0
-2015-09-11 11:00:00,11569.0
-2015-09-11 12:00:00,11817.0
-2015-09-11 13:00:00,11860.0
-2015-09-11 14:00:00,11881.0
-2015-09-11 15:00:00,11954.0
-2015-09-11 16:00:00,11883.0
-2015-09-11 17:00:00,11657.0
-2015-09-11 18:00:00,11378.0
-2015-09-11 19:00:00,11060.0
-2015-09-11 20:00:00,10785.0
-2015-09-11 21:00:00,11024.0
-2015-09-11 22:00:00,10959.0
-2015-09-11 23:00:00,10522.0
-2015-09-12 00:00:00,9822.0
-2015-09-10 01:00:00,10074.0
-2015-09-10 02:00:00,9440.0
-2015-09-10 03:00:00,8996.0
-2015-09-10 04:00:00,8703.0
-2015-09-10 05:00:00,8632.0
-2015-09-10 06:00:00,8766.0
-2015-09-10 07:00:00,9401.0
-2015-09-10 08:00:00,10349.0
-2015-09-10 09:00:00,11060.0
-2015-09-10 10:00:00,11645.0
-2015-09-10 11:00:00,11995.0
-2015-09-10 12:00:00,12269.0
-2015-09-10 13:00:00,12572.0
-2015-09-10 14:00:00,12654.0
-2015-09-10 15:00:00,12579.0
-2015-09-10 16:00:00,12290.0
-2015-09-10 17:00:00,12103.0
-2015-09-10 18:00:00,12094.0
-2015-09-10 19:00:00,11954.0
-2015-09-10 20:00:00,11740.0
-2015-09-10 21:00:00,11983.0
-2015-09-10 22:00:00,11939.0
-2015-09-10 23:00:00,11337.0
-2015-09-11 00:00:00,10460.0
-2015-09-09 01:00:00,11438.0
-2015-09-09 02:00:00,10611.0
-2015-09-09 03:00:00,10071.0
-2015-09-09 04:00:00,9748.0
-2015-09-09 05:00:00,9605.0
-2015-09-09 06:00:00,9744.0
-2015-09-09 07:00:00,10404.0
-2015-09-09 08:00:00,11516.0
-2015-09-09 09:00:00,12114.0
-2015-09-09 10:00:00,12496.0
-2015-09-09 11:00:00,12776.0
-2015-09-09 12:00:00,13101.0
-2015-09-09 13:00:00,13382.0
-2015-09-09 14:00:00,13684.0
-2015-09-09 15:00:00,14025.0
-2015-09-09 16:00:00,14244.0
-2015-09-09 17:00:00,14503.0
-2015-09-09 18:00:00,14600.0
-2015-09-09 19:00:00,14287.0
-2015-09-09 20:00:00,13607.0
-2015-09-09 21:00:00,13353.0
-2015-09-09 22:00:00,13023.0
-2015-09-09 23:00:00,12198.0
-2015-09-10 00:00:00,11085.0
-2015-09-08 01:00:00,12794.0
-2015-09-08 02:00:00,12014.0
-2015-09-08 03:00:00,11461.0
-2015-09-08 04:00:00,11056.0
-2015-09-08 05:00:00,10897.0
-2015-09-08 06:00:00,11082.0
-2015-09-08 07:00:00,11898.0
-2015-09-08 08:00:00,13165.0
-2015-09-08 09:00:00,14029.0
-2015-09-08 10:00:00,14638.0
-2015-09-08 11:00:00,15361.0
-2015-09-08 12:00:00,16061.0
-2015-09-08 13:00:00,16330.0
-2015-09-08 14:00:00,16215.0
-2015-09-08 15:00:00,15658.0
-2015-09-08 16:00:00,15272.0
-2015-09-08 17:00:00,15047.0
-2015-09-08 18:00:00,14978.0
-2015-09-08 19:00:00,14818.0
-2015-09-08 20:00:00,14582.0
-2015-09-08 21:00:00,14859.0
-2015-09-08 22:00:00,14521.0
-2015-09-08 23:00:00,13722.0
-2015-09-09 00:00:00,12553.0
-2015-09-07 01:00:00,13037.0
-2015-09-07 02:00:00,12235.0
-2015-09-07 03:00:00,11483.0
-2015-09-07 04:00:00,10992.0
-2015-09-07 05:00:00,10635.0
-2015-09-07 06:00:00,10505.0
-2015-09-07 07:00:00,10648.0
-2015-09-07 08:00:00,10725.0
-2015-09-07 09:00:00,10860.0
-2015-09-07 10:00:00,11455.0
-2015-09-07 11:00:00,12636.0
-2015-09-07 12:00:00,14113.0
-2015-09-07 13:00:00,15262.0
-2015-09-07 14:00:00,15865.0
-2015-09-07 15:00:00,16122.0
-2015-09-07 16:00:00,16484.0
-2015-09-07 17:00:00,16611.0
-2015-09-07 18:00:00,16455.0
-2015-09-07 19:00:00,16513.0
-2015-09-07 20:00:00,16108.0
-2015-09-07 21:00:00,16120.0
-2015-09-07 22:00:00,15874.0
-2015-09-07 23:00:00,15046.0
-2015-09-08 00:00:00,13855.0
-2015-09-06 01:00:00,11880.0
-2015-09-06 02:00:00,11023.0
-2015-09-06 03:00:00,10520.0
-2015-09-06 04:00:00,10082.0
-2015-09-06 05:00:00,9769.0
-2015-09-06 06:00:00,9619.0
-2015-09-06 07:00:00,9619.0
-2015-09-06 08:00:00,9568.0
-2015-09-06 09:00:00,9958.0
-2015-09-06 10:00:00,11067.0
-2015-09-06 11:00:00,12380.0
-2015-09-06 12:00:00,13816.0
-2015-09-06 13:00:00,15037.0
-2015-09-06 14:00:00,16022.0
-2015-09-06 15:00:00,16585.0
-2015-09-06 16:00:00,17105.0
-2015-09-06 17:00:00,17322.0
-2015-09-06 18:00:00,17341.0
-2015-09-06 19:00:00,17073.0
-2015-09-06 20:00:00,16372.0
-2015-09-06 21:00:00,15974.0
-2015-09-06 22:00:00,15628.0
-2015-09-06 23:00:00,14930.0
-2015-09-07 00:00:00,14008.0
-2015-09-05 01:00:00,12364.0
-2015-09-05 02:00:00,11472.0
-2015-09-05 03:00:00,10801.0
-2015-09-05 04:00:00,10320.0
-2015-09-05 05:00:00,10008.0
-2015-09-05 06:00:00,9934.0
-2015-09-05 07:00:00,10091.0
-2015-09-05 08:00:00,10264.0
-2015-09-05 09:00:00,10682.0
-2015-09-05 10:00:00,11407.0
-2015-09-05 11:00:00,12143.0
-2015-09-05 12:00:00,12745.0
-2015-09-05 13:00:00,13432.0
-2015-09-05 14:00:00,13958.0
-2015-09-05 15:00:00,14485.0
-2015-09-05 16:00:00,14871.0
-2015-09-05 17:00:00,15157.0
-2015-09-05 18:00:00,15266.0
-2015-09-05 19:00:00,15099.0
-2015-09-05 20:00:00,14578.0
-2015-09-05 21:00:00,14402.0
-2015-09-05 22:00:00,14166.0
-2015-09-05 23:00:00,13568.0
-2015-09-06 00:00:00,12739.0
-2015-09-04 01:00:00,13277.0
-2015-09-04 02:00:00,12222.0
-2015-09-04 03:00:00,11465.0
-2015-09-04 04:00:00,10946.0
-2015-09-04 05:00:00,10635.0
-2015-09-04 06:00:00,10652.0
-2015-09-04 07:00:00,11260.0
-2015-09-04 08:00:00,12167.0
-2015-09-04 09:00:00,13031.0
-2015-09-04 10:00:00,13893.0
-2015-09-04 11:00:00,14666.0
-2015-09-04 12:00:00,15554.0
-2015-09-04 13:00:00,16333.0
-2015-09-04 14:00:00,17062.0
-2015-09-04 15:00:00,17782.0
-2015-09-04 16:00:00,18180.0
-2015-09-04 17:00:00,18234.0
-2015-09-04 18:00:00,18114.0
-2015-09-04 19:00:00,17483.0
-2015-09-04 20:00:00,16441.0
-2015-09-04 21:00:00,15751.0
-2015-09-04 22:00:00,15336.0
-2015-09-04 23:00:00,14502.0
-2015-09-05 00:00:00,13439.0
-2015-09-03 01:00:00,13869.0
-2015-09-03 02:00:00,12823.0
-2015-09-03 03:00:00,12101.0
-2015-09-03 04:00:00,11538.0
-2015-09-03 05:00:00,11255.0
-2015-09-03 06:00:00,11326.0
-2015-09-03 07:00:00,11965.0
-2015-09-03 08:00:00,12897.0
-2015-09-03 09:00:00,13867.0
-2015-09-03 10:00:00,14958.0
-2015-09-03 11:00:00,16086.0
-2015-09-03 12:00:00,17254.0
-2015-09-03 13:00:00,18196.0
-2015-09-03 14:00:00,18917.0
-2015-09-03 15:00:00,19491.0
-2015-09-03 16:00:00,19847.0
-2015-09-03 17:00:00,20099.0
-2015-09-03 18:00:00,20162.0
-2015-09-03 19:00:00,19936.0
-2015-09-03 20:00:00,19033.0
-2015-09-03 21:00:00,18169.0
-2015-09-03 22:00:00,17436.0
-2015-09-03 23:00:00,16230.0
-2015-09-04 00:00:00,14712.0
-2015-09-02 01:00:00,14015.0
-2015-09-02 02:00:00,12825.0
-2015-09-02 03:00:00,11998.0
-2015-09-02 04:00:00,11420.0
-2015-09-02 05:00:00,11093.0
-2015-09-02 06:00:00,11146.0
-2015-09-02 07:00:00,11754.0
-2015-09-02 08:00:00,12731.0
-2015-09-02 09:00:00,13634.0
-2015-09-02 10:00:00,14591.0
-2015-09-02 11:00:00,15613.0
-2015-09-02 12:00:00,16813.0
-2015-09-02 13:00:00,17919.0
-2015-09-02 14:00:00,18759.0
-2015-09-02 15:00:00,19388.0
-2015-09-02 16:00:00,19715.0
-2015-09-02 17:00:00,19705.0
-2015-09-02 18:00:00,19507.0
-2015-09-02 19:00:00,19066.0
-2015-09-02 20:00:00,18259.0
-2015-09-02 21:00:00,17925.0
-2015-09-02 22:00:00,17645.0
-2015-09-02 23:00:00,16644.0
-2015-09-03 00:00:00,15142.0
-2015-09-01 01:00:00,12248.0
-2015-09-01 02:00:00,11352.0
-2015-09-01 03:00:00,10740.0
-2015-09-01 04:00:00,10334.0
-2015-09-01 05:00:00,10112.0
-2015-09-01 06:00:00,10298.0
-2015-09-01 07:00:00,11001.0
-2015-09-01 08:00:00,12053.0
-2015-09-01 09:00:00,13007.0
-2015-09-01 10:00:00,13986.0
-2015-09-01 11:00:00,15033.0
-2015-09-01 12:00:00,16178.0
-2015-09-01 13:00:00,17200.0
-2015-09-01 14:00:00,18060.0
-2015-09-01 15:00:00,18593.0
-2015-09-01 16:00:00,18983.0
-2015-09-01 17:00:00,19301.0
-2015-09-01 18:00:00,19424.0
-2015-09-01 19:00:00,19185.0
-2015-09-01 20:00:00,18560.0
-2015-09-01 21:00:00,18199.0
-2015-09-01 22:00:00,17888.0
-2015-09-01 23:00:00,16917.0
-2015-09-02 00:00:00,15499.0
-2015-08-31 01:00:00,9877.0
-2015-08-31 02:00:00,9319.0
-2015-08-31 03:00:00,8928.0
-2015-08-31 04:00:00,8688.0
-2015-08-31 05:00:00,8624.0
-2015-08-31 06:00:00,8858.0
-2015-08-31 07:00:00,9557.0
-2015-08-31 08:00:00,10550.0
-2015-08-31 09:00:00,11333.0
-2015-08-31 10:00:00,12057.0
-2015-08-31 11:00:00,12802.0
-2015-08-31 12:00:00,13654.0
-2015-08-31 13:00:00,14434.0
-2015-08-31 14:00:00,15184.0
-2015-08-31 15:00:00,15921.0
-2015-08-31 16:00:00,16454.0
-2015-08-31 17:00:00,16798.0
-2015-08-31 18:00:00,17001.0
-2015-08-31 19:00:00,16821.0
-2015-08-31 20:00:00,16236.0
-2015-08-31 21:00:00,15950.0
-2015-08-31 22:00:00,15727.0
-2015-08-31 23:00:00,14774.0
-2015-09-01 00:00:00,13495.0
-2015-08-30 01:00:00,9720.0
-2015-08-30 02:00:00,9102.0
-2015-08-30 03:00:00,8752.0
-2015-08-30 04:00:00,8478.0
-2015-08-30 05:00:00,8323.0
-2015-08-30 06:00:00,8258.0
-2015-08-30 07:00:00,8336.0
-2015-08-30 08:00:00,8355.0
-2015-08-30 09:00:00,8555.0
-2015-08-30 10:00:00,9049.0
-2015-08-30 11:00:00,9603.0
-2015-08-30 12:00:00,10090.0
-2015-08-30 13:00:00,10565.0
-2015-08-30 14:00:00,10827.0
-2015-08-30 15:00:00,11061.0
-2015-08-30 16:00:00,11326.0
-2015-08-30 17:00:00,11646.0
-2015-08-30 18:00:00,11935.0
-2015-08-30 19:00:00,11994.0
-2015-08-30 20:00:00,11813.0
-2015-08-30 21:00:00,11893.0
-2015-08-30 22:00:00,12010.0
-2015-08-30 23:00:00,11484.0
-2015-08-31 00:00:00,10700.0
-2015-08-29 01:00:00,10094.0
-2015-08-29 02:00:00,9471.0
-2015-08-29 03:00:00,9033.0
-2015-08-29 04:00:00,8718.0
-2015-08-29 05:00:00,8583.0
-2015-08-29 06:00:00,8556.0
-2015-08-29 07:00:00,8778.0
-2015-08-29 08:00:00,9152.0
-2015-08-29 09:00:00,9505.0
-2015-08-29 10:00:00,10016.0
-2015-08-29 11:00:00,10493.0
-2015-08-29 12:00:00,10790.0
-2015-08-29 13:00:00,10974.0
-2015-08-29 14:00:00,10980.0
-2015-08-29 15:00:00,10961.0
-2015-08-29 16:00:00,10919.0
-2015-08-29 17:00:00,10883.0
-2015-08-29 18:00:00,10865.0
-2015-08-29 19:00:00,10873.0
-2015-08-29 20:00:00,10899.0
-2015-08-29 21:00:00,11183.0
-2015-08-29 22:00:00,11219.0
-2015-08-29 23:00:00,10920.0
-2015-08-30 00:00:00,10303.0
-2015-08-28 01:00:00,9696.0
-2015-08-28 02:00:00,9121.0
-2015-08-28 03:00:00,8732.0
-2015-08-28 04:00:00,8493.0
-2015-08-28 05:00:00,8367.0
-2015-08-28 06:00:00,8550.0
-2015-08-28 07:00:00,9145.0
-2015-08-28 08:00:00,9975.0
-2015-08-28 09:00:00,10741.0
-2015-08-28 10:00:00,11337.0
-2015-08-28 11:00:00,11768.0
-2015-08-28 12:00:00,12148.0
-2015-08-28 13:00:00,12323.0
-2015-08-28 14:00:00,12333.0
-2015-08-28 15:00:00,12365.0
-2015-08-28 16:00:00,12275.0
-2015-08-28 17:00:00,12155.0
-2015-08-28 18:00:00,11998.0
-2015-08-28 19:00:00,11807.0
-2015-08-28 20:00:00,11661.0
-2015-08-28 21:00:00,11835.0
-2015-08-28 22:00:00,11849.0
-2015-08-28 23:00:00,11549.0
-2015-08-29 00:00:00,10840.0
-2015-08-27 01:00:00,9320.0
-2015-08-27 02:00:00,8765.0
-2015-08-27 03:00:00,8448.0
-2015-08-27 04:00:00,8219.0
-2015-08-27 05:00:00,8125.0
-2015-08-27 06:00:00,8277.0
-2015-08-27 07:00:00,8855.0
-2015-08-27 08:00:00,9698.0
-2015-08-27 09:00:00,10432.0
-2015-08-27 10:00:00,10942.0
-2015-08-27 11:00:00,11326.0
-2015-08-27 12:00:00,11609.0
-2015-08-27 13:00:00,11819.0
-2015-08-27 14:00:00,12005.0
-2015-08-27 15:00:00,12271.0
-2015-08-27 16:00:00,12434.0
-2015-08-27 17:00:00,12494.0
-2015-08-27 18:00:00,12474.0
-2015-08-27 19:00:00,12162.0
-2015-08-27 20:00:00,11747.0
-2015-08-27 21:00:00,11792.0
-2015-08-27 22:00:00,11966.0
-2015-08-27 23:00:00,11412.0
-2015-08-28 00:00:00,10545.0
-2015-08-26 01:00:00,9588.0
-2015-08-26 02:00:00,8988.0
-2015-08-26 03:00:00,8578.0
-2015-08-26 04:00:00,8336.0
-2015-08-26 05:00:00,8222.0
-2015-08-26 06:00:00,8386.0
-2015-08-26 07:00:00,9002.0
-2015-08-26 08:00:00,9879.0
-2015-08-26 09:00:00,10625.0
-2015-08-26 10:00:00,11062.0
-2015-08-26 11:00:00,11280.0
-2015-08-26 12:00:00,11454.0
-2015-08-26 13:00:00,11531.0
-2015-08-26 14:00:00,11533.0
-2015-08-26 15:00:00,11607.0
-2015-08-26 16:00:00,11590.0
-2015-08-26 17:00:00,11512.0
-2015-08-26 18:00:00,11384.0
-2015-08-26 19:00:00,11245.0
-2015-08-26 20:00:00,11065.0
-2015-08-26 21:00:00,11234.0
-2015-08-26 22:00:00,11419.0
-2015-08-26 23:00:00,10922.0
-2015-08-27 00:00:00,10104.0
-2015-08-25 01:00:00,9533.0
-2015-08-25 02:00:00,8996.0
-2015-08-25 03:00:00,8649.0
-2015-08-25 04:00:00,8431.0
-2015-08-25 05:00:00,8318.0
-2015-08-25 06:00:00,8508.0
-2015-08-25 07:00:00,9109.0
-2015-08-25 08:00:00,9940.0
-2015-08-25 09:00:00,10594.0
-2015-08-25 10:00:00,11065.0
-2015-08-25 11:00:00,11344.0
-2015-08-25 12:00:00,11557.0
-2015-08-25 13:00:00,11672.0
-2015-08-25 14:00:00,11770.0
-2015-08-25 15:00:00,11922.0
-2015-08-25 16:00:00,11756.0
-2015-08-25 17:00:00,11683.0
-2015-08-25 18:00:00,11796.0
-2015-08-25 19:00:00,11659.0
-2015-08-25 20:00:00,11401.0
-2015-08-25 21:00:00,11583.0
-2015-08-25 22:00:00,11704.0
-2015-08-25 23:00:00,11203.0
-2015-08-26 00:00:00,10389.0
-2015-08-24 01:00:00,9694.0
-2015-08-24 02:00:00,9123.0
-2015-08-24 03:00:00,8729.0
-2015-08-24 04:00:00,8490.0
-2015-08-24 05:00:00,8414.0
-2015-08-24 06:00:00,8591.0
-2015-08-24 07:00:00,9200.0
-2015-08-24 08:00:00,9884.0
-2015-08-24 09:00:00,10642.0
-2015-08-24 10:00:00,11211.0
-2015-08-24 11:00:00,11712.0
-2015-08-24 12:00:00,12166.0
-2015-08-24 13:00:00,12500.0
-2015-08-24 14:00:00,12599.0
-2015-08-24 15:00:00,12770.0
-2015-08-24 16:00:00,12817.0
-2015-08-24 17:00:00,12705.0
-2015-08-24 18:00:00,12513.0
-2015-08-24 19:00:00,12146.0
-2015-08-24 20:00:00,11745.0
-2015-08-24 21:00:00,11779.0
-2015-08-24 22:00:00,11777.0
-2015-08-24 23:00:00,11121.0
-2015-08-25 00:00:00,10337.0
-2015-08-23 01:00:00,10591.0
-2015-08-23 02:00:00,9984.0
-2015-08-23 03:00:00,9535.0
-2015-08-23 04:00:00,9215.0
-2015-08-23 05:00:00,9000.0
-2015-08-23 06:00:00,8910.0
-2015-08-23 07:00:00,8969.0
-2015-08-23 08:00:00,8872.0
-2015-08-23 09:00:00,9296.0
-2015-08-23 10:00:00,9839.0
-2015-08-23 11:00:00,10436.0
-2015-08-23 12:00:00,10880.0
-2015-08-23 13:00:00,11188.0
-2015-08-23 14:00:00,11476.0
-2015-08-23 15:00:00,11743.0
-2015-08-23 16:00:00,12050.0
-2015-08-23 17:00:00,12206.0
-2015-08-23 18:00:00,12192.0
-2015-08-23 19:00:00,12008.0
-2015-08-23 20:00:00,11664.0
-2015-08-23 21:00:00,11450.0
-2015-08-23 22:00:00,11607.0
-2015-08-23 23:00:00,11147.0
-2015-08-24 00:00:00,10391.0
-2015-08-22 01:00:00,11210.0
-2015-08-22 02:00:00,10414.0
-2015-08-22 03:00:00,9764.0
-2015-08-22 04:00:00,9370.0
-2015-08-22 05:00:00,9029.0
-2015-08-22 06:00:00,8999.0
-2015-08-22 07:00:00,9077.0
-2015-08-22 08:00:00,9215.0
-2015-08-22 09:00:00,9780.0
-2015-08-22 10:00:00,10663.0
-2015-08-22 11:00:00,11488.0
-2015-08-22 12:00:00,12207.0
-2015-08-22 13:00:00,12700.0
-2015-08-22 14:00:00,13003.0
-2015-08-22 15:00:00,13214.0
-2015-08-22 16:00:00,13338.0
-2015-08-22 17:00:00,13456.0
-2015-08-22 18:00:00,13555.0
-2015-08-22 19:00:00,13398.0
-2015-08-22 20:00:00,12890.0
-2015-08-22 21:00:00,12426.0
-2015-08-22 22:00:00,12427.0
-2015-08-22 23:00:00,12014.0
-2015-08-23 00:00:00,11276.0
-2015-08-21 01:00:00,9870.0
-2015-08-21 02:00:00,9256.0
-2015-08-21 03:00:00,8861.0
-2015-08-21 04:00:00,8583.0
-2015-08-21 05:00:00,8476.0
-2015-08-21 06:00:00,8611.0
-2015-08-21 07:00:00,9200.0
-2015-08-21 08:00:00,9917.0
-2015-08-21 09:00:00,10775.0
-2015-08-21 10:00:00,11551.0
-2015-08-21 11:00:00,12183.0
-2015-08-21 12:00:00,12720.0
-2015-08-21 13:00:00,13157.0
-2015-08-21 14:00:00,13585.0
-2015-08-21 15:00:00,14109.0
-2015-08-21 16:00:00,14520.0
-2015-08-21 17:00:00,14707.0
-2015-08-21 18:00:00,14749.0
-2015-08-21 19:00:00,14662.0
-2015-08-21 20:00:00,14185.0
-2015-08-21 21:00:00,13716.0
-2015-08-21 22:00:00,13689.0
-2015-08-21 23:00:00,13184.0
-2015-08-22 00:00:00,12239.0
-2015-08-20 01:00:00,10278.0
-2015-08-20 02:00:00,9646.0
-2015-08-20 03:00:00,9184.0
-2015-08-20 04:00:00,8885.0
-2015-08-20 05:00:00,8810.0
-2015-08-20 06:00:00,8963.0
-2015-08-20 07:00:00,9566.0
-2015-08-20 08:00:00,10304.0
-2015-08-20 09:00:00,10991.0
-2015-08-20 10:00:00,11458.0
-2015-08-20 11:00:00,11714.0
-2015-08-20 12:00:00,11992.0
-2015-08-20 13:00:00,12148.0
-2015-08-20 14:00:00,12213.0
-2015-08-20 15:00:00,12521.0
-2015-08-20 16:00:00,12646.0
-2015-08-20 17:00:00,12699.0
-2015-08-20 18:00:00,12703.0
-2015-08-20 19:00:00,12529.0
-2015-08-20 20:00:00,12143.0
-2015-08-20 21:00:00,11919.0
-2015-08-20 22:00:00,12121.0
-2015-08-20 23:00:00,11637.0
-2015-08-21 00:00:00,10774.0
-2015-08-19 01:00:00,12117.0
-2015-08-19 02:00:00,11308.0
-2015-08-19 03:00:00,10737.0
-2015-08-19 04:00:00,10394.0
-2015-08-19 05:00:00,10220.0
-2015-08-19 06:00:00,10361.0
-2015-08-19 07:00:00,11098.0
-2015-08-19 08:00:00,12094.0
-2015-08-19 09:00:00,12950.0
-2015-08-19 10:00:00,13526.0
-2015-08-19 11:00:00,13942.0
-2015-08-19 12:00:00,14207.0
-2015-08-19 13:00:00,14477.0
-2015-08-19 14:00:00,14667.0
-2015-08-19 15:00:00,14946.0
-2015-08-19 16:00:00,15068.0
-2015-08-19 17:00:00,15020.0
-2015-08-19 18:00:00,14430.0
-2015-08-19 19:00:00,13752.0
-2015-08-19 20:00:00,13035.0
-2015-08-19 21:00:00,12763.0
-2015-08-19 22:00:00,12726.0
-2015-08-19 23:00:00,12105.0
-2015-08-20 00:00:00,11206.0
-2015-08-18 01:00:00,12474.0
-2015-08-18 02:00:00,11605.0
-2015-08-18 03:00:00,10959.0
-2015-08-18 04:00:00,10568.0
-2015-08-18 05:00:00,10418.0
-2015-08-18 06:00:00,10491.0
-2015-08-18 07:00:00,11148.0
-2015-08-18 08:00:00,12027.0
-2015-08-18 09:00:00,12819.0
-2015-08-18 10:00:00,13674.0
-2015-08-18 11:00:00,14433.0
-2015-08-18 12:00:00,15146.0
-2015-08-18 13:00:00,15811.0
-2015-08-18 14:00:00,16448.0
-2015-08-18 15:00:00,16953.0
-2015-08-18 16:00:00,17243.0
-2015-08-18 17:00:00,17425.0
-2015-08-18 18:00:00,17359.0
-2015-08-18 19:00:00,16892.0
-2015-08-18 20:00:00,16366.0
-2015-08-18 21:00:00,16249.0
-2015-08-18 22:00:00,15554.0
-2015-08-18 23:00:00,14464.0
-2015-08-19 00:00:00,13274.0
-2015-08-17 01:00:00,13213.0
-2015-08-17 02:00:00,12248.0
-2015-08-17 03:00:00,11630.0
-2015-08-17 04:00:00,11131.0
-2015-08-17 05:00:00,10912.0
-2015-08-17 06:00:00,10978.0
-2015-08-17 07:00:00,11609.0
-2015-08-17 08:00:00,12461.0
-2015-08-17 09:00:00,13639.0
-2015-08-17 10:00:00,14984.0
-2015-08-17 11:00:00,16152.0
-2015-08-17 12:00:00,17339.0
-2015-08-17 13:00:00,18070.0
-2015-08-17 14:00:00,18435.0
-2015-08-17 15:00:00,18694.0
-2015-08-17 16:00:00,18667.0
-2015-08-17 17:00:00,18348.0
-2015-08-17 18:00:00,17865.0
-2015-08-17 19:00:00,17263.0
-2015-08-17 20:00:00,16649.0
-2015-08-17 21:00:00,16227.0
-2015-08-17 22:00:00,15944.0
-2015-08-17 23:00:00,14939.0
-2015-08-18 00:00:00,13667.0
-2015-08-16 01:00:00,12577.0
-2015-08-16 02:00:00,11748.0
-2015-08-16 03:00:00,11058.0
-2015-08-16 04:00:00,10564.0
-2015-08-16 05:00:00,10186.0
-2015-08-16 06:00:00,10015.0
-2015-08-16 07:00:00,9963.0
-2015-08-16 08:00:00,9917.0
-2015-08-16 09:00:00,10554.0
-2015-08-16 10:00:00,11865.0
-2015-08-16 11:00:00,13210.0
-2015-08-16 12:00:00,14490.0
-2015-08-16 13:00:00,15443.0
-2015-08-16 14:00:00,16154.0
-2015-08-16 15:00:00,16676.0
-2015-08-16 16:00:00,17094.0
-2015-08-16 17:00:00,17467.0
-2015-08-16 18:00:00,17583.0
-2015-08-16 19:00:00,17563.0
-2015-08-16 20:00:00,17100.0
-2015-08-16 21:00:00,16373.0
-2015-08-16 22:00:00,16212.0
-2015-08-16 23:00:00,15485.0
-2015-08-17 00:00:00,14362.0
-2015-08-15 01:00:00,12701.0
-2015-08-15 02:00:00,11659.0
-2015-08-15 03:00:00,10880.0
-2015-08-15 04:00:00,10369.0
-2015-08-15 05:00:00,10008.0
-2015-08-15 06:00:00,9939.0
-2015-08-15 07:00:00,10056.0
-2015-08-15 08:00:00,10216.0
-2015-08-15 09:00:00,10958.0
-2015-08-15 10:00:00,12064.0
-2015-08-15 11:00:00,13199.0
-2015-08-15 12:00:00,14387.0
-2015-08-15 13:00:00,15467.0
-2015-08-15 14:00:00,16404.0
-2015-08-15 15:00:00,16996.0
-2015-08-15 16:00:00,17323.0
-2015-08-15 17:00:00,17107.0
-2015-08-15 18:00:00,16481.0
-2015-08-15 19:00:00,15881.0
-2015-08-15 20:00:00,15569.0
-2015-08-15 21:00:00,15035.0
-2015-08-15 22:00:00,14934.0
-2015-08-15 23:00:00,14443.0
-2015-08-16 00:00:00,13617.0
-2015-08-14 01:00:00,12626.0
-2015-08-14 02:00:00,11787.0
-2015-08-14 03:00:00,11191.0
-2015-08-14 04:00:00,10731.0
-2015-08-14 05:00:00,10448.0
-2015-08-14 06:00:00,10634.0
-2015-08-14 07:00:00,11267.0
-2015-08-14 08:00:00,12050.0
-2015-08-14 09:00:00,12869.0
-2015-08-14 10:00:00,13618.0
-2015-08-14 11:00:00,14099.0
-2015-08-14 12:00:00,14737.0
-2015-08-14 13:00:00,15394.0
-2015-08-14 14:00:00,16240.0
-2015-08-14 15:00:00,17186.0
-2015-08-14 16:00:00,17914.0
-2015-08-14 17:00:00,18469.0
-2015-08-14 18:00:00,18741.0
-2015-08-14 19:00:00,18508.0
-2015-08-14 20:00:00,17873.0
-2015-08-14 21:00:00,17240.0
-2015-08-14 22:00:00,16991.0
-2015-08-14 23:00:00,15845.0
-2015-08-15 00:00:00,14098.0
-2015-08-13 01:00:00,11478.0
-2015-08-13 02:00:00,10630.0
-2015-08-13 03:00:00,10054.0
-2015-08-13 04:00:00,9651.0
-2015-08-13 05:00:00,9472.0
-2015-08-13 06:00:00,9539.0
-2015-08-13 07:00:00,10107.0
-2015-08-13 08:00:00,10883.0
-2015-08-13 09:00:00,11889.0
-2015-08-13 10:00:00,12917.0
-2015-08-13 11:00:00,13818.0
-2015-08-13 12:00:00,14738.0
-2015-08-13 13:00:00,15415.0
-2015-08-13 14:00:00,15999.0
-2015-08-13 15:00:00,16564.0
-2015-08-13 16:00:00,16951.0
-2015-08-13 17:00:00,17126.0
-2015-08-13 18:00:00,17216.0
-2015-08-13 19:00:00,16802.0
-2015-08-13 20:00:00,15897.0
-2015-08-13 21:00:00,15392.0
-2015-08-13 22:00:00,15384.0
-2015-08-13 23:00:00,14800.0
-2015-08-14 00:00:00,13779.0
-2015-08-12 01:00:00,11067.0
-2015-08-12 02:00:00,10270.0
-2015-08-12 03:00:00,9730.0
-2015-08-12 04:00:00,9382.0
-2015-08-12 05:00:00,9216.0
-2015-08-12 06:00:00,9333.0
-2015-08-12 07:00:00,9887.0
-2015-08-12 08:00:00,10633.0
-2015-08-12 09:00:00,11645.0
-2015-08-12 10:00:00,12549.0
-2015-08-12 11:00:00,13237.0
-2015-08-12 12:00:00,13851.0
-2015-08-12 13:00:00,14309.0
-2015-08-12 14:00:00,14584.0
-2015-08-12 15:00:00,15151.0
-2015-08-12 16:00:00,15563.0
-2015-08-12 17:00:00,15826.0
-2015-08-12 18:00:00,15950.0
-2015-08-12 19:00:00,15810.0
-2015-08-12 20:00:00,15240.0
-2015-08-12 21:00:00,14551.0
-2015-08-12 22:00:00,14369.0
-2015-08-12 23:00:00,13715.0
-2015-08-13 00:00:00,12631.0
-2015-08-11 01:00:00,11686.0
-2015-08-11 02:00:00,10823.0
-2015-08-11 03:00:00,10272.0
-2015-08-11 04:00:00,9849.0
-2015-08-11 05:00:00,9624.0
-2015-08-11 06:00:00,9727.0
-2015-08-11 07:00:00,10281.0
-2015-08-11 08:00:00,10990.0
-2015-08-11 09:00:00,12065.0
-2015-08-11 10:00:00,13042.0
-2015-08-11 11:00:00,13845.0
-2015-08-11 12:00:00,14672.0
-2015-08-11 13:00:00,15238.0
-2015-08-11 14:00:00,15618.0
-2015-08-11 15:00:00,15963.0
-2015-08-11 16:00:00,16172.0
-2015-08-11 17:00:00,16170.0
-2015-08-11 18:00:00,16031.0
-2015-08-11 19:00:00,15690.0
-2015-08-11 20:00:00,14967.0
-2015-08-11 21:00:00,14172.0
-2015-08-11 22:00:00,13896.0
-2015-08-11 23:00:00,13272.0
-2015-08-12 00:00:00,12175.0
-2015-08-10 01:00:00,11340.0
-2015-08-10 02:00:00,10702.0
-2015-08-10 03:00:00,10234.0
-2015-08-10 04:00:00,9970.0
-2015-08-10 05:00:00,9879.0
-2015-08-10 06:00:00,10146.0
-2015-08-10 07:00:00,10855.0
-2015-08-10 08:00:00,11756.0
-2015-08-10 09:00:00,12690.0
-2015-08-10 10:00:00,13701.0
-2015-08-10 11:00:00,14584.0
-2015-08-10 12:00:00,15550.0
-2015-08-10 13:00:00,16312.0
-2015-08-10 14:00:00,16690.0
-2015-08-10 15:00:00,16602.0
-2015-08-10 16:00:00,16551.0
-2015-08-10 17:00:00,16185.0
-2015-08-10 18:00:00,15649.0
-2015-08-10 19:00:00,15331.0
-2015-08-10 20:00:00,14966.0
-2015-08-10 21:00:00,14581.0
-2015-08-10 22:00:00,14497.0
-2015-08-10 23:00:00,13960.0
-2015-08-11 00:00:00,12856.0
-2015-08-09 01:00:00,11064.0
-2015-08-09 02:00:00,10342.0
-2015-08-09 03:00:00,9843.0
-2015-08-09 04:00:00,9419.0
-2015-08-09 05:00:00,9198.0
-2015-08-09 06:00:00,9116.0
-2015-08-09 07:00:00,9133.0
-2015-08-09 08:00:00,9114.0
-2015-08-09 09:00:00,9443.0
-2015-08-09 10:00:00,9942.0
-2015-08-09 11:00:00,10429.0
-2015-08-09 12:00:00,10888.0
-2015-08-09 13:00:00,11250.0
-2015-08-09 14:00:00,11633.0
-2015-08-09 15:00:00,12177.0
-2015-08-09 16:00:00,12779.0
-2015-08-09 17:00:00,12652.0
-2015-08-09 18:00:00,12617.0
-2015-08-09 19:00:00,12740.0
-2015-08-09 20:00:00,12716.0
-2015-08-09 21:00:00,12604.0
-2015-08-09 22:00:00,12977.0
-2015-08-09 23:00:00,12771.0
-2015-08-10 00:00:00,12149.0
-2015-08-08 01:00:00,12152.0
-2015-08-08 02:00:00,11310.0
-2015-08-08 03:00:00,10643.0
-2015-08-08 04:00:00,10209.0
-2015-08-08 05:00:00,9858.0
-2015-08-08 06:00:00,9773.0
-2015-08-08 07:00:00,9848.0
-2015-08-08 08:00:00,10012.0
-2015-08-08 09:00:00,10777.0
-2015-08-08 10:00:00,11902.0
-2015-08-08 11:00:00,13064.0
-2015-08-08 12:00:00,14090.0
-2015-08-08 13:00:00,14678.0
-2015-08-08 14:00:00,14660.0
-2015-08-08 15:00:00,14554.0
-2015-08-08 16:00:00,14280.0
-2015-08-08 17:00:00,14036.0
-2015-08-08 18:00:00,13767.0
-2015-08-08 19:00:00,13431.0
-2015-08-08 20:00:00,12982.0
-2015-08-08 21:00:00,12682.0
-2015-08-08 22:00:00,12817.0
-2015-08-08 23:00:00,12533.0
-2015-08-09 00:00:00,11819.0
-2015-08-07 01:00:00,11983.0
-2015-08-07 02:00:00,11084.0
-2015-08-07 03:00:00,10453.0
-2015-08-07 04:00:00,9991.0
-2015-08-07 05:00:00,9732.0
-2015-08-07 06:00:00,9788.0
-2015-08-07 07:00:00,10253.0
-2015-08-07 08:00:00,10853.0
-2015-08-07 09:00:00,11883.0
-2015-08-07 10:00:00,12813.0
-2015-08-07 11:00:00,13620.0
-2015-08-07 12:00:00,14397.0
-2015-08-07 13:00:00,14986.0
-2015-08-07 14:00:00,15427.0
-2015-08-07 15:00:00,15912.0
-2015-08-07 16:00:00,16226.0
-2015-08-07 17:00:00,16285.0
-2015-08-07 18:00:00,16065.0
-2015-08-07 19:00:00,15622.0
-2015-08-07 20:00:00,15026.0
-2015-08-07 21:00:00,14577.0
-2015-08-07 22:00:00,14504.0
-2015-08-07 23:00:00,14105.0
-2015-08-08 00:00:00,13175.0
-2015-08-06 01:00:00,11710.0
-2015-08-06 02:00:00,10859.0
-2015-08-06 03:00:00,10285.0
-2015-08-06 04:00:00,9907.0
-2015-08-06 05:00:00,9693.0
-2015-08-06 06:00:00,9827.0
-2015-08-06 07:00:00,10411.0
-2015-08-06 08:00:00,11086.0
-2015-08-06 09:00:00,12090.0
-2015-08-06 10:00:00,13018.0
-2015-08-06 11:00:00,13867.0
-2015-08-06 12:00:00,14640.0
-2015-08-06 13:00:00,15285.0
-2015-08-06 14:00:00,15751.0
-2015-08-06 15:00:00,16235.0
-2015-08-06 16:00:00,16453.0
-2015-08-06 17:00:00,16555.0
-2015-08-06 18:00:00,16548.0
-2015-08-06 19:00:00,16355.0
-2015-08-06 20:00:00,15668.0
-2015-08-06 21:00:00,14902.0
-2015-08-06 22:00:00,14651.0
-2015-08-06 23:00:00,14080.0
-2015-08-07 00:00:00,13058.0
-2015-08-05 01:00:00,11411.0
-2015-08-05 02:00:00,10574.0
-2015-08-05 03:00:00,9991.0
-2015-08-05 04:00:00,9597.0
-2015-08-05 05:00:00,9382.0
-2015-08-05 06:00:00,9483.0
-2015-08-05 07:00:00,9988.0
-2015-08-05 08:00:00,10650.0
-2015-08-05 09:00:00,11752.0
-2015-08-05 10:00:00,12676.0
-2015-08-05 11:00:00,13523.0
-2015-08-05 12:00:00,14269.0
-2015-08-05 13:00:00,14862.0
-2015-08-05 14:00:00,15409.0
-2015-08-05 15:00:00,15859.0
-2015-08-05 16:00:00,16125.0
-2015-08-05 17:00:00,16197.0
-2015-08-05 18:00:00,16020.0
-2015-08-05 19:00:00,15598.0
-2015-08-05 20:00:00,14853.0
-2015-08-05 21:00:00,14256.0
-2015-08-05 22:00:00,14226.0
-2015-08-05 23:00:00,13743.0
-2015-08-06 00:00:00,12745.0
-2015-08-04 01:00:00,11594.0
-2015-08-04 02:00:00,10692.0
-2015-08-04 03:00:00,10059.0
-2015-08-04 04:00:00,9609.0
-2015-08-04 05:00:00,9393.0
-2015-08-04 06:00:00,9474.0
-2015-08-04 07:00:00,9912.0
-2015-08-04 08:00:00,10629.0
-2015-08-04 09:00:00,11675.0
-2015-08-04 10:00:00,12620.0
-2015-08-04 11:00:00,13406.0
-2015-08-04 12:00:00,14131.0
-2015-08-04 13:00:00,14677.0
-2015-08-04 14:00:00,15103.0
-2015-08-04 15:00:00,15579.0
-2015-08-04 16:00:00,15956.0
-2015-08-04 17:00:00,16060.0
-2015-08-04 18:00:00,15939.0
-2015-08-04 19:00:00,15732.0
-2015-08-04 20:00:00,15154.0
-2015-08-04 21:00:00,14412.0
-2015-08-04 22:00:00,14210.0
-2015-08-04 23:00:00,13642.0
-2015-08-05 00:00:00,12564.0
-2015-08-03 01:00:00,13229.0
-2015-08-03 02:00:00,12031.0
-2015-08-03 03:00:00,11206.0
-2015-08-03 04:00:00,10693.0
-2015-08-03 05:00:00,10458.0
-2015-08-03 06:00:00,10457.0
-2015-08-03 07:00:00,10917.0
-2015-08-03 08:00:00,11663.0
-2015-08-03 09:00:00,12742.0
-2015-08-03 10:00:00,13687.0
-2015-08-03 11:00:00,14453.0
-2015-08-03 12:00:00,15170.0
-2015-08-03 13:00:00,15664.0
-2015-08-03 14:00:00,15964.0
-2015-08-03 15:00:00,16251.0
-2015-08-03 16:00:00,16482.0
-2015-08-03 17:00:00,16648.0
-2015-08-03 18:00:00,16691.0
-2015-08-03 19:00:00,16511.0
-2015-08-03 20:00:00,15858.0
-2015-08-03 21:00:00,15046.0
-2015-08-03 22:00:00,14590.0
-2015-08-03 23:00:00,13952.0
-2015-08-04 00:00:00,12801.0
-2015-08-02 01:00:00,12395.0
-2015-08-02 02:00:00,11573.0
-2015-08-02 03:00:00,10890.0
-2015-08-02 04:00:00,10401.0
-2015-08-02 05:00:00,10066.0
-2015-08-02 06:00:00,9842.0
-2015-08-02 07:00:00,9828.0
-2015-08-02 08:00:00,9790.0
-2015-08-02 09:00:00,10595.0
-2015-08-02 10:00:00,11813.0
-2015-08-02 11:00:00,13108.0
-2015-08-02 12:00:00,14273.0
-2015-08-02 13:00:00,15287.0
-2015-08-02 14:00:00,16038.0
-2015-08-02 15:00:00,16741.0
-2015-08-02 16:00:00,16890.0
-2015-08-02 17:00:00,16778.0
-2015-08-02 18:00:00,17461.0
-2015-08-02 19:00:00,17673.0
-2015-08-02 20:00:00,17449.0
-2015-08-02 21:00:00,16942.0
-2015-08-02 22:00:00,16841.0
-2015-08-02 23:00:00,16451.0
-2015-08-03 00:00:00,15181.0
-2015-08-01 01:00:00,11952.0
-2015-08-01 02:00:00,10993.0
-2015-08-01 03:00:00,10269.0
-2015-08-01 04:00:00,9714.0
-2015-08-01 05:00:00,9415.0
-2015-08-01 06:00:00,9261.0
-2015-08-01 07:00:00,9323.0
-2015-08-01 08:00:00,9413.0
-2015-08-01 09:00:00,10208.0
-2015-08-01 10:00:00,11211.0
-2015-08-01 11:00:00,12253.0
-2015-08-01 12:00:00,13142.0
-2015-08-01 13:00:00,13791.0
-2015-08-01 14:00:00,14334.0
-2015-08-01 15:00:00,14831.0
-2015-08-01 16:00:00,15316.0
-2015-08-01 17:00:00,15705.0
-2015-08-01 18:00:00,15863.0
-2015-08-01 19:00:00,15757.0
-2015-08-01 20:00:00,15294.0
-2015-08-01 21:00:00,14712.0
-2015-08-01 22:00:00,14497.0
-2015-08-01 23:00:00,14120.0
-2015-08-02 00:00:00,13280.0
-2015-07-31 01:00:00,13168.0
-2015-07-31 02:00:00,12077.0
-2015-07-31 03:00:00,11237.0
-2015-07-31 04:00:00,10653.0
-2015-07-31 05:00:00,10295.0
-2015-07-31 06:00:00,10301.0
-2015-07-31 07:00:00,10704.0
-2015-07-31 08:00:00,11421.0
-2015-07-31 09:00:00,12531.0
-2015-07-31 10:00:00,13362.0
-2015-07-31 11:00:00,14549.0
-2015-07-31 12:00:00,15764.0
-2015-07-31 13:00:00,16496.0
-2015-07-31 14:00:00,16933.0
-2015-07-31 15:00:00,17283.0
-2015-07-31 16:00:00,17475.0
-2015-07-31 17:00:00,17571.0
-2015-07-31 18:00:00,17549.0
-2015-07-31 19:00:00,17245.0
-2015-07-31 20:00:00,16531.0
-2015-07-31 21:00:00,15577.0
-2015-07-31 22:00:00,14863.0
-2015-07-31 23:00:00,14273.0
-2015-08-01 00:00:00,13096.0
-2015-07-30 01:00:00,12774.0
-2015-07-30 02:00:00,11744.0
-2015-07-30 03:00:00,10964.0
-2015-07-30 04:00:00,10441.0
-2015-07-30 05:00:00,10160.0
-2015-07-30 06:00:00,10224.0
-2015-07-30 07:00:00,10662.0
-2015-07-30 08:00:00,11379.0
-2015-07-30 09:00:00,12511.0
-2015-07-30 10:00:00,13553.0
-2015-07-30 11:00:00,14490.0
-2015-07-30 12:00:00,15454.0
-2015-07-30 13:00:00,16202.0
-2015-07-30 14:00:00,16781.0
-2015-07-30 15:00:00,17269.0
-2015-07-30 16:00:00,17665.0
-2015-07-30 17:00:00,18038.0
-2015-07-30 18:00:00,18218.0
-2015-07-30 19:00:00,18171.0
-2015-07-30 20:00:00,17621.0
-2015-07-30 21:00:00,16845.0
-2015-07-30 22:00:00,16334.0
-2015-07-30 23:00:00,15753.0
-2015-07-31 00:00:00,14512.0
-2015-07-29 01:00:00,14828.0
-2015-07-29 02:00:00,13829.0
-2015-07-29 03:00:00,13125.0
-2015-07-29 04:00:00,12546.0
-2015-07-29 05:00:00,12176.0
-2015-07-29 06:00:00,12178.0
-2015-07-29 07:00:00,12655.0
-2015-07-29 08:00:00,13466.0
-2015-07-29 09:00:00,14293.0
-2015-07-29 10:00:00,15079.0
-2015-07-29 11:00:00,15901.0
-2015-07-29 12:00:00,16849.0
-2015-07-29 13:00:00,17469.0
-2015-07-29 14:00:00,17938.0
-2015-07-29 15:00:00,18298.0
-2015-07-29 16:00:00,18519.0
-2015-07-29 17:00:00,18586.0
-2015-07-29 18:00:00,18564.0
-2015-07-29 19:00:00,18310.0
-2015-07-29 20:00:00,17662.0
-2015-07-29 21:00:00,16705.0
-2015-07-29 22:00:00,16072.0
-2015-07-29 23:00:00,15385.0
-2015-07-30 00:00:00,14081.0
-2015-07-28 01:00:00,13157.0
-2015-07-28 02:00:00,12160.0
-2015-07-28 03:00:00,11445.0
-2015-07-28 04:00:00,10891.0
-2015-07-28 05:00:00,10602.0
-2015-07-28 06:00:00,10643.0
-2015-07-28 07:00:00,11100.0
-2015-07-28 08:00:00,11974.0
-2015-07-28 09:00:00,13280.0
-2015-07-28 10:00:00,14623.0
-2015-07-28 11:00:00,15812.0
-2015-07-28 12:00:00,17023.0
-2015-07-28 13:00:00,17850.0
-2015-07-28 14:00:00,18510.0
-2015-07-28 15:00:00,19153.0
-2015-07-28 16:00:00,19547.0
-2015-07-28 17:00:00,19765.0
-2015-07-28 18:00:00,19707.0
-2015-07-28 19:00:00,19368.0
-2015-07-28 20:00:00,18728.0
-2015-07-28 21:00:00,18276.0
-2015-07-28 22:00:00,18092.0
-2015-07-28 23:00:00,17482.0
-2015-07-29 00:00:00,16157.0
-2015-07-27 01:00:00,11430.0
-2015-07-27 02:00:00,10722.0
-2015-07-27 03:00:00,10169.0
-2015-07-27 04:00:00,9927.0
-2015-07-27 05:00:00,9810.0
-2015-07-27 06:00:00,10014.0
-2015-07-27 07:00:00,10620.0
-2015-07-27 08:00:00,11560.0
-2015-07-27 09:00:00,12902.0
-2015-07-27 10:00:00,14202.0
-2015-07-27 11:00:00,15390.0
-2015-07-27 12:00:00,16415.0
-2015-07-27 13:00:00,17142.0
-2015-07-27 14:00:00,17666.0
-2015-07-27 15:00:00,18248.0
-2015-07-27 16:00:00,18615.0
-2015-07-27 17:00:00,18828.0
-2015-07-27 18:00:00,18829.0
-2015-07-27 19:00:00,18349.0
-2015-07-27 20:00:00,17489.0
-2015-07-27 21:00:00,16668.0
-2015-07-27 22:00:00,16329.0
-2015-07-27 23:00:00,15728.0
-2015-07-28 00:00:00,14481.0
-2015-07-26 01:00:00,12650.0
-2015-07-26 02:00:00,11668.0
-2015-07-26 03:00:00,10840.0
-2015-07-26 04:00:00,10259.0
-2015-07-26 05:00:00,9892.0
-2015-07-26 06:00:00,9589.0
-2015-07-26 07:00:00,9426.0
-2015-07-26 08:00:00,9456.0
-2015-07-26 09:00:00,10115.0
-2015-07-26 10:00:00,11031.0
-2015-07-26 11:00:00,11905.0
-2015-07-26 12:00:00,12423.0
-2015-07-26 13:00:00,12717.0
-2015-07-26 14:00:00,12874.0
-2015-07-26 15:00:00,13033.0
-2015-07-26 16:00:00,13240.0
-2015-07-26 17:00:00,13323.0
-2015-07-26 18:00:00,13437.0
-2015-07-26 19:00:00,13349.0
-2015-07-26 20:00:00,13240.0
-2015-07-26 21:00:00,13055.0
-2015-07-26 22:00:00,13195.0
-2015-07-26 23:00:00,12989.0
-2015-07-27 00:00:00,12301.0
-2015-07-25 01:00:00,12665.0
-2015-07-25 02:00:00,11789.0
-2015-07-25 03:00:00,11185.0
-2015-07-25 04:00:00,10703.0
-2015-07-25 05:00:00,10427.0
-2015-07-25 06:00:00,10285.0
-2015-07-25 07:00:00,10324.0
-2015-07-25 08:00:00,10576.0
-2015-07-25 09:00:00,11541.0
-2015-07-25 10:00:00,12821.0
-2015-07-25 11:00:00,14055.0
-2015-07-25 12:00:00,15292.0
-2015-07-25 13:00:00,16277.0
-2015-07-25 14:00:00,16859.0
-2015-07-25 15:00:00,17183.0
-2015-07-25 16:00:00,17518.0
-2015-07-25 17:00:00,17703.0
-2015-07-25 18:00:00,17653.0
-2015-07-25 19:00:00,17415.0
-2015-07-25 20:00:00,16770.0
-2015-07-25 21:00:00,15882.0
-2015-07-25 22:00:00,15331.0
-2015-07-25 23:00:00,14799.0
-2015-07-26 00:00:00,13777.0
-2015-07-24 01:00:00,12298.0
-2015-07-24 02:00:00,11333.0
-2015-07-24 03:00:00,10616.0
-2015-07-24 04:00:00,10150.0
-2015-07-24 05:00:00,9866.0
-2015-07-24 06:00:00,9913.0
-2015-07-24 07:00:00,10342.0
-2015-07-24 08:00:00,11155.0
-2015-07-24 09:00:00,12427.0
-2015-07-24 10:00:00,13642.0
-2015-07-24 11:00:00,14650.0
-2015-07-24 12:00:00,15516.0
-2015-07-24 13:00:00,16234.0
-2015-07-24 14:00:00,16785.0
-2015-07-24 15:00:00,17228.0
-2015-07-24 16:00:00,17238.0
-2015-07-24 17:00:00,17024.0
-2015-07-24 18:00:00,16776.0
-2015-07-24 19:00:00,16792.0
-2015-07-24 20:00:00,16443.0
-2015-07-24 21:00:00,15765.0
-2015-07-24 22:00:00,15270.0
-2015-07-24 23:00:00,14881.0
-2015-07-25 00:00:00,13786.0
-2015-07-23 01:00:00,11677.0
-2015-07-23 02:00:00,10761.0
-2015-07-23 03:00:00,10120.0
-2015-07-23 04:00:00,9685.0
-2015-07-23 05:00:00,9461.0
-2015-07-23 06:00:00,9547.0
-2015-07-23 07:00:00,9983.0
-2015-07-23 08:00:00,10803.0
-2015-07-23 09:00:00,12017.0
-2015-07-23 10:00:00,13096.0
-2015-07-23 11:00:00,14047.0
-2015-07-23 12:00:00,14920.0
-2015-07-23 13:00:00,15574.0
-2015-07-23 14:00:00,16069.0
-2015-07-23 15:00:00,16541.0
-2015-07-23 16:00:00,16845.0
-2015-07-23 17:00:00,17047.0
-2015-07-23 18:00:00,17132.0
-2015-07-23 19:00:00,16976.0
-2015-07-23 20:00:00,16413.0
-2015-07-23 21:00:00,15682.0
-2015-07-23 22:00:00,15294.0
-2015-07-23 23:00:00,14755.0
-2015-07-24 00:00:00,13546.0
-2015-07-22 01:00:00,11509.0
-2015-07-22 02:00:00,10630.0
-2015-07-22 03:00:00,10068.0
-2015-07-22 04:00:00,9683.0
-2015-07-22 05:00:00,9498.0
-2015-07-22 06:00:00,9564.0
-2015-07-22 07:00:00,9984.0
-2015-07-22 08:00:00,10798.0
-2015-07-22 09:00:00,11882.0
-2015-07-22 10:00:00,12740.0
-2015-07-22 11:00:00,13454.0
-2015-07-22 12:00:00,14198.0
-2015-07-22 13:00:00,14667.0
-2015-07-22 14:00:00,15157.0
-2015-07-22 15:00:00,15642.0
-2015-07-22 16:00:00,15903.0
-2015-07-22 17:00:00,16039.0
-2015-07-22 18:00:00,16028.0
-2015-07-22 19:00:00,15799.0
-2015-07-22 20:00:00,15227.0
-2015-07-22 21:00:00,14569.0
-2015-07-22 22:00:00,14264.0
-2015-07-22 23:00:00,13865.0
-2015-07-23 00:00:00,12852.0
-2015-07-21 01:00:00,12659.0
-2015-07-21 02:00:00,11668.0
-2015-07-21 03:00:00,10921.0
-2015-07-21 04:00:00,10371.0
-2015-07-21 05:00:00,10066.0
-2015-07-21 06:00:00,10033.0
-2015-07-21 07:00:00,10363.0
-2015-07-21 08:00:00,11208.0
-2015-07-21 09:00:00,12397.0
-2015-07-21 10:00:00,13266.0
-2015-07-21 11:00:00,13985.0
-2015-07-21 12:00:00,14542.0
-2015-07-21 13:00:00,14913.0
-2015-07-21 14:00:00,15217.0
-2015-07-21 15:00:00,15499.0
-2015-07-21 16:00:00,15762.0
-2015-07-21 17:00:00,15966.0
-2015-07-21 18:00:00,16157.0
-2015-07-21 19:00:00,16018.0
-2015-07-21 20:00:00,15482.0
-2015-07-21 21:00:00,14810.0
-2015-07-21 22:00:00,14319.0
-2015-07-21 23:00:00,13823.0
-2015-07-22 00:00:00,12705.0
-2015-07-20 01:00:00,11684.0
-2015-07-20 02:00:00,10865.0
-2015-07-20 03:00:00,10188.0
-2015-07-20 04:00:00,9822.0
-2015-07-20 05:00:00,9587.0
-2015-07-20 06:00:00,9747.0
-2015-07-20 07:00:00,10149.0
-2015-07-20 08:00:00,11047.0
-2015-07-20 09:00:00,12214.0
-2015-07-20 10:00:00,13272.0
-2015-07-20 11:00:00,14217.0
-2015-07-20 12:00:00,14926.0
-2015-07-20 13:00:00,15423.0
-2015-07-20 14:00:00,16198.0
-2015-07-20 15:00:00,16908.0
-2015-07-20 16:00:00,17350.0
-2015-07-20 17:00:00,17202.0
-2015-07-20 18:00:00,16855.0
-2015-07-20 19:00:00,16447.0
-2015-07-20 20:00:00,16191.0
-2015-07-20 21:00:00,15900.0
-2015-07-20 22:00:00,15542.0
-2015-07-20 23:00:00,15133.0
-2015-07-21 00:00:00,13964.0
-2015-07-19 01:00:00,13090.0
-2015-07-19 02:00:00,12312.0
-2015-07-19 03:00:00,11679.0
-2015-07-19 04:00:00,11149.0
-2015-07-19 05:00:00,10829.0
-2015-07-19 06:00:00,10602.0
-2015-07-19 07:00:00,10435.0
-2015-07-19 08:00:00,10483.0
-2015-07-19 09:00:00,11191.0
-2015-07-19 10:00:00,12324.0
-2015-07-19 11:00:00,13406.0
-2015-07-19 12:00:00,14492.0
-2015-07-19 13:00:00,15280.0
-2015-07-19 14:00:00,15676.0
-2015-07-19 15:00:00,15887.0
-2015-07-19 16:00:00,16051.0
-2015-07-19 17:00:00,16078.0
-2015-07-19 18:00:00,15914.0
-2015-07-19 19:00:00,15772.0
-2015-07-19 20:00:00,15250.0
-2015-07-19 21:00:00,14549.0
-2015-07-19 22:00:00,14079.0
-2015-07-19 23:00:00,13733.0
-2015-07-20 00:00:00,12766.0
-2015-07-18 01:00:00,13944.0
-2015-07-18 02:00:00,12967.0
-2015-07-18 03:00:00,12169.0
-2015-07-18 04:00:00,11571.0
-2015-07-18 05:00:00,11197.0
-2015-07-18 06:00:00,11022.0
-2015-07-18 07:00:00,10997.0
-2015-07-18 08:00:00,11368.0
-2015-07-18 09:00:00,12536.0
-2015-07-18 10:00:00,13926.0
-2015-07-18 11:00:00,14948.0
-2015-07-18 12:00:00,15509.0
-2015-07-18 13:00:00,16047.0
-2015-07-18 14:00:00,16506.0
-2015-07-18 15:00:00,17055.0
-2015-07-18 16:00:00,17377.0
-2015-07-18 17:00:00,16954.0
-2015-07-18 18:00:00,16560.0
-2015-07-18 19:00:00,16125.0
-2015-07-18 20:00:00,15829.0
-2015-07-18 21:00:00,15361.0
-2015-07-18 22:00:00,14970.0
-2015-07-18 23:00:00,14721.0
-2015-07-19 00:00:00,13937.0
-2015-07-17 01:00:00,10959.0
-2015-07-17 02:00:00,10353.0
-2015-07-17 03:00:00,9957.0
-2015-07-17 04:00:00,9691.0
-2015-07-17 05:00:00,9614.0
-2015-07-17 06:00:00,9778.0
-2015-07-17 07:00:00,10365.0
-2015-07-17 08:00:00,11306.0
-2015-07-17 09:00:00,12734.0
-2015-07-17 10:00:00,14159.0
-2015-07-17 11:00:00,15400.0
-2015-07-17 12:00:00,16561.0
-2015-07-17 13:00:00,17567.0
-2015-07-17 14:00:00,18221.0
-2015-07-17 15:00:00,18841.0
-2015-07-17 16:00:00,19302.0
-2015-07-17 17:00:00,19525.0
-2015-07-17 18:00:00,19398.0
-2015-07-17 19:00:00,18889.0
-2015-07-17 20:00:00,18153.0
-2015-07-17 21:00:00,17479.0
-2015-07-17 22:00:00,16804.0
-2015-07-17 23:00:00,16326.0
-2015-07-18 00:00:00,15196.0
-2015-07-16 01:00:00,9973.0
-2015-07-16 02:00:00,9290.0
-2015-07-16 03:00:00,8884.0
-2015-07-16 04:00:00,8612.0
-2015-07-16 05:00:00,8510.0
-2015-07-16 06:00:00,8677.0
-2015-07-16 07:00:00,9136.0
-2015-07-16 08:00:00,9942.0
-2015-07-16 09:00:00,10863.0
-2015-07-16 10:00:00,11505.0
-2015-07-16 11:00:00,11896.0
-2015-07-16 12:00:00,12223.0
-2015-07-16 13:00:00,12408.0
-2015-07-16 14:00:00,12524.0
-2015-07-16 15:00:00,12707.0
-2015-07-16 16:00:00,12823.0
-2015-07-16 17:00:00,12962.0
-2015-07-16 18:00:00,12944.0
-2015-07-16 19:00:00,12900.0
-2015-07-16 20:00:00,12682.0
-2015-07-16 21:00:00,12579.0
-2015-07-16 22:00:00,12689.0
-2015-07-16 23:00:00,12399.0
-2015-07-17 00:00:00,11727.0
-2015-07-15 01:00:00,10281.0
-2015-07-15 02:00:00,9517.0
-2015-07-15 03:00:00,9022.0
-2015-07-15 04:00:00,8712.0
-2015-07-15 05:00:00,8566.0
-2015-07-15 06:00:00,8667.0
-2015-07-15 07:00:00,9041.0
-2015-07-15 08:00:00,9784.0
-2015-07-15 09:00:00,10703.0
-2015-07-15 10:00:00,11451.0
-2015-07-15 11:00:00,12065.0
-2015-07-15 12:00:00,12599.0
-2015-07-15 13:00:00,12987.0
-2015-07-15 14:00:00,13274.0
-2015-07-15 15:00:00,13643.0
-2015-07-15 16:00:00,13914.0
-2015-07-15 17:00:00,14032.0
-2015-07-15 18:00:00,13844.0
-2015-07-15 19:00:00,13343.0
-2015-07-15 20:00:00,12630.0
-2015-07-15 21:00:00,12108.0
-2015-07-15 22:00:00,12017.0
-2015-07-15 23:00:00,11752.0
-2015-07-16 00:00:00,10894.0
-2015-07-14 01:00:00,12913.0
-2015-07-14 02:00:00,11877.0
-2015-07-14 03:00:00,11216.0
-2015-07-14 04:00:00,10740.0
-2015-07-14 05:00:00,10486.0
-2015-07-14 06:00:00,10530.0
-2015-07-14 07:00:00,10951.0
-2015-07-14 08:00:00,11959.0
-2015-07-14 09:00:00,13255.0
-2015-07-14 10:00:00,14307.0
-2015-07-14 11:00:00,15013.0
-2015-07-14 12:00:00,15455.0
-2015-07-14 13:00:00,15834.0
-2015-07-14 14:00:00,15989.0
-2015-07-14 15:00:00,16224.0
-2015-07-14 16:00:00,16419.0
-2015-07-14 17:00:00,16203.0
-2015-07-14 18:00:00,15766.0
-2015-07-14 19:00:00,15195.0
-2015-07-14 20:00:00,14462.0
-2015-07-14 21:00:00,13584.0
-2015-07-14 22:00:00,12944.0
-2015-07-14 23:00:00,12451.0
-2015-07-15 00:00:00,11365.0
-2015-07-13 01:00:00,11867.0
-2015-07-13 02:00:00,11091.0
-2015-07-13 03:00:00,10578.0
-2015-07-13 04:00:00,10194.0
-2015-07-13 05:00:00,10052.0
-2015-07-13 06:00:00,10185.0
-2015-07-13 07:00:00,10802.0
-2015-07-13 08:00:00,11729.0
-2015-07-13 09:00:00,12559.0
-2015-07-13 10:00:00,12874.0
-2015-07-13 11:00:00,13285.0
-2015-07-13 12:00:00,14119.0
-2015-07-13 13:00:00,14972.0
-2015-07-13 14:00:00,15749.0
-2015-07-13 15:00:00,16485.0
-2015-07-13 16:00:00,17319.0
-2015-07-13 17:00:00,17910.0
-2015-07-13 18:00:00,18135.0
-2015-07-13 19:00:00,18221.0
-2015-07-13 20:00:00,17956.0
-2015-07-13 21:00:00,17528.0
-2015-07-13 22:00:00,17071.0
-2015-07-13 23:00:00,16114.0
-2015-07-14 00:00:00,14405.0
-2015-07-12 01:00:00,10324.0
-2015-07-12 02:00:00,9732.0
-2015-07-12 03:00:00,9245.0
-2015-07-12 04:00:00,8888.0
-2015-07-12 05:00:00,8678.0
-2015-07-12 06:00:00,8654.0
-2015-07-12 07:00:00,8530.0
-2015-07-12 08:00:00,8488.0
-2015-07-12 09:00:00,8874.0
-2015-07-12 10:00:00,9415.0
-2015-07-12 11:00:00,10298.0
-2015-07-12 12:00:00,11231.0
-2015-07-12 13:00:00,12072.0
-2015-07-12 14:00:00,12625.0
-2015-07-12 15:00:00,13221.0
-2015-07-12 16:00:00,13681.0
-2015-07-12 17:00:00,14079.0
-2015-07-12 18:00:00,14434.0
-2015-07-12 19:00:00,14598.0
-2015-07-12 20:00:00,14471.0
-2015-07-12 21:00:00,14029.0
-2015-07-12 22:00:00,13760.0
-2015-07-12 23:00:00,13568.0
-2015-07-13 00:00:00,12761.0
-2015-07-11 01:00:00,10663.0
-2015-07-11 02:00:00,9835.0
-2015-07-11 03:00:00,9306.0
-2015-07-11 04:00:00,8860.0
-2015-07-11 05:00:00,8663.0
-2015-07-11 06:00:00,8559.0
-2015-07-11 07:00:00,8560.0
-2015-07-11 08:00:00,8733.0
-2015-07-11 09:00:00,9517.0
-2015-07-11 10:00:00,10226.0
-2015-07-11 11:00:00,11057.0
-2015-07-11 12:00:00,11643.0
-2015-07-11 13:00:00,12121.0
-2015-07-11 14:00:00,12388.0
-2015-07-11 15:00:00,12439.0
-2015-07-11 16:00:00,12257.0
-2015-07-11 17:00:00,12056.0
-2015-07-11 18:00:00,11789.0
-2015-07-11 19:00:00,11613.0
-2015-07-11 20:00:00,11402.0
-2015-07-11 21:00:00,11234.0
-2015-07-11 22:00:00,11486.0
-2015-07-11 23:00:00,11436.0
-2015-07-12 00:00:00,10944.0
-2015-07-10 01:00:00,9996.0
-2015-07-10 02:00:00,9302.0
-2015-07-10 03:00:00,8856.0
-2015-07-10 04:00:00,8614.0
-2015-07-10 05:00:00,8469.0
-2015-07-10 06:00:00,8614.0
-2015-07-10 07:00:00,9018.0
-2015-07-10 08:00:00,9719.0
-2015-07-10 09:00:00,10659.0
-2015-07-10 10:00:00,11296.0
-2015-07-10 11:00:00,11851.0
-2015-07-10 12:00:00,12427.0
-2015-07-10 13:00:00,12906.0
-2015-07-10 14:00:00,13245.0
-2015-07-10 15:00:00,13667.0
-2015-07-10 16:00:00,14062.0
-2015-07-10 17:00:00,14286.0
-2015-07-10 18:00:00,14435.0
-2015-07-10 19:00:00,14291.0
-2015-07-10 20:00:00,13783.0
-2015-07-10 21:00:00,13159.0
-2015-07-10 22:00:00,12873.0
-2015-07-10 23:00:00,12589.0
-2015-07-11 00:00:00,11642.0
-2015-07-09 01:00:00,9508.0
-2015-07-09 02:00:00,8967.0
-2015-07-09 03:00:00,8614.0
-2015-07-09 04:00:00,8396.0
-2015-07-09 05:00:00,8304.0
-2015-07-09 06:00:00,8429.0
-2015-07-09 07:00:00,8920.0
-2015-07-09 08:00:00,9677.0
-2015-07-09 09:00:00,10406.0
-2015-07-09 10:00:00,10957.0
-2015-07-09 11:00:00,11273.0
-2015-07-09 12:00:00,11550.0
-2015-07-09 13:00:00,11825.0
-2015-07-09 14:00:00,12050.0
-2015-07-09 15:00:00,12224.0
-2015-07-09 16:00:00,12372.0
-2015-07-09 17:00:00,12521.0
-2015-07-09 18:00:00,12595.0
-2015-07-09 19:00:00,12627.0
-2015-07-09 20:00:00,12222.0
-2015-07-09 21:00:00,11876.0
-2015-07-09 22:00:00,11799.0
-2015-07-09 23:00:00,11674.0
-2015-07-10 00:00:00,10873.0
-2015-07-08 01:00:00,9417.0
-2015-07-08 02:00:00,8841.0
-2015-07-08 03:00:00,8443.0
-2015-07-08 04:00:00,8255.0
-2015-07-08 05:00:00,8169.0
-2015-07-08 06:00:00,8308.0
-2015-07-08 07:00:00,8752.0
-2015-07-08 08:00:00,9414.0
-2015-07-08 09:00:00,10223.0
-2015-07-08 10:00:00,10819.0
-2015-07-08 11:00:00,11191.0
-2015-07-08 12:00:00,11499.0
-2015-07-08 13:00:00,11642.0
-2015-07-08 14:00:00,11699.0
-2015-07-08 15:00:00,11822.0
-2015-07-08 16:00:00,11789.0
-2015-07-08 17:00:00,11601.0
-2015-07-08 18:00:00,11432.0
-2015-07-08 19:00:00,11221.0
-2015-07-08 20:00:00,11010.0
-2015-07-08 21:00:00,11064.0
-2015-07-08 22:00:00,11236.0
-2015-07-08 23:00:00,10984.0
-2015-07-09 00:00:00,10232.0
-2015-07-07 01:00:00,12187.0
-2015-07-07 02:00:00,11294.0
-2015-07-07 03:00:00,10723.0
-2015-07-07 04:00:00,10354.0
-2015-07-07 05:00:00,10136.0
-2015-07-07 06:00:00,10052.0
-2015-07-07 07:00:00,10192.0
-2015-07-07 08:00:00,10757.0
-2015-07-07 09:00:00,11194.0
-2015-07-07 10:00:00,11540.0
-2015-07-07 11:00:00,11742.0
-2015-07-07 12:00:00,12110.0
-2015-07-07 13:00:00,12359.0
-2015-07-07 14:00:00,12489.0
-2015-07-07 15:00:00,12565.0
-2015-07-07 16:00:00,12543.0
-2015-07-07 17:00:00,12475.0
-2015-07-07 18:00:00,12329.0
-2015-07-07 19:00:00,12058.0
-2015-07-07 20:00:00,11615.0
-2015-07-07 21:00:00,11218.0
-2015-07-07 22:00:00,11153.0
-2015-07-07 23:00:00,11036.0
-2015-07-08 00:00:00,10271.0
-2015-07-06 01:00:00,11048.0
-2015-07-06 02:00:00,10258.0
-2015-07-06 03:00:00,9747.0
-2015-07-06 04:00:00,9411.0
-2015-07-06 05:00:00,9214.0
-2015-07-06 06:00:00,9375.0
-2015-07-06 07:00:00,9850.0
-2015-07-06 08:00:00,10775.0
-2015-07-06 09:00:00,11947.0
-2015-07-06 10:00:00,13009.0
-2015-07-06 11:00:00,13976.0
-2015-07-06 12:00:00,14966.0
-2015-07-06 13:00:00,15772.0
-2015-07-06 14:00:00,16505.0
-2015-07-06 15:00:00,16917.0
-2015-07-06 16:00:00,16346.0
-2015-07-06 17:00:00,15696.0
-2015-07-06 18:00:00,15808.0
-2015-07-06 19:00:00,16019.0
-2015-07-06 20:00:00,15630.0
-2015-07-06 21:00:00,15270.0
-2015-07-06 22:00:00,15197.0
-2015-07-06 23:00:00,14574.0
-2015-07-07 00:00:00,13386.0
-2015-07-05 01:00:00,9751.0
-2015-07-05 02:00:00,9216.0
-2015-07-05 03:00:00,8663.0
-2015-07-05 04:00:00,8316.0
-2015-07-05 05:00:00,8052.0
-2015-07-05 06:00:00,7988.0
-2015-07-05 07:00:00,7836.0
-2015-07-05 08:00:00,7845.0
-2015-07-05 09:00:00,8305.0
-2015-07-05 10:00:00,9110.0
-2015-07-05 11:00:00,9984.0
-2015-07-05 12:00:00,10921.0
-2015-07-05 13:00:00,11675.0
-2015-07-05 14:00:00,12288.0
-2015-07-05 15:00:00,12804.0
-2015-07-05 16:00:00,13176.0
-2015-07-05 17:00:00,13556.0
-2015-07-05 18:00:00,13723.0
-2015-07-05 19:00:00,13775.0
-2015-07-05 20:00:00,13463.0
-2015-07-05 21:00:00,13078.0
-2015-07-05 22:00:00,12913.0
-2015-07-05 23:00:00,12762.0
-2015-07-06 00:00:00,11954.0
-2015-07-04 01:00:00,9307.0
-2015-07-04 02:00:00,8677.0
-2015-07-04 03:00:00,8254.0
-2015-07-04 04:00:00,7944.0
-2015-07-04 05:00:00,7712.0
-2015-07-04 06:00:00,7655.0
-2015-07-04 07:00:00,7506.0
-2015-07-04 08:00:00,7535.0
-2015-07-04 09:00:00,7972.0
-2015-07-04 10:00:00,8591.0
-2015-07-04 11:00:00,9263.0
-2015-07-04 12:00:00,9904.0
-2015-07-04 13:00:00,10466.0
-2015-07-04 14:00:00,10968.0
-2015-07-04 15:00:00,11327.0
-2015-07-04 16:00:00,11638.0
-2015-07-04 17:00:00,11852.0
-2015-07-04 18:00:00,11951.0
-2015-07-04 19:00:00,11893.0
-2015-07-04 20:00:00,11533.0
-2015-07-04 21:00:00,11101.0
-2015-07-04 22:00:00,10827.0
-2015-07-04 23:00:00,10635.0
-2015-07-05 00:00:00,10279.0
-2015-07-03 01:00:00,9151.0
-2015-07-03 02:00:00,8580.0
-2015-07-03 03:00:00,8197.0
-2015-07-03 04:00:00,7971.0
-2015-07-03 05:00:00,7838.0
-2015-07-03 06:00:00,7874.0
-2015-07-03 07:00:00,7927.0
-2015-07-03 08:00:00,8060.0
-2015-07-03 09:00:00,8552.0
-2015-07-03 10:00:00,9059.0
-2015-07-03 11:00:00,9550.0
-2015-07-03 12:00:00,10006.0
-2015-07-03 13:00:00,10338.0
-2015-07-03 14:00:00,10630.0
-2015-07-03 15:00:00,10878.0
-2015-07-03 16:00:00,11090.0
-2015-07-03 17:00:00,11342.0
-2015-07-03 18:00:00,11511.0
-2015-07-03 19:00:00,11495.0
-2015-07-03 20:00:00,11209.0
-2015-07-03 21:00:00,10830.0
-2015-07-03 22:00:00,10688.0
-2015-07-03 23:00:00,10547.0
-2015-07-04 00:00:00,9958.0
-2015-07-02 01:00:00,9288.0
-2015-07-02 02:00:00,8742.0
-2015-07-02 03:00:00,8359.0
-2015-07-02 04:00:00,8127.0
-2015-07-02 05:00:00,8052.0
-2015-07-02 06:00:00,8169.0
-2015-07-02 07:00:00,8552.0
-2015-07-02 08:00:00,9218.0
-2015-07-02 09:00:00,10026.0
-2015-07-02 10:00:00,10600.0
-2015-07-02 11:00:00,10990.0
-2015-07-02 12:00:00,11306.0
-2015-07-02 13:00:00,11518.0
-2015-07-02 14:00:00,11621.0
-2015-07-02 15:00:00,11768.0
-2015-07-02 16:00:00,11728.0
-2015-07-02 17:00:00,11642.0
-2015-07-02 18:00:00,11661.0
-2015-07-02 19:00:00,11523.0
-2015-07-02 20:00:00,11063.0
-2015-07-02 21:00:00,10695.0
-2015-07-02 22:00:00,10742.0
-2015-07-02 23:00:00,10629.0
-2015-07-03 00:00:00,9953.0
-2015-07-01 01:00:00,9904.0
-2015-07-01 02:00:00,9236.0
-2015-07-01 03:00:00,8755.0
-2015-07-01 04:00:00,8491.0
-2015-07-01 05:00:00,8353.0
-2015-07-01 06:00:00,8463.0
-2015-07-01 07:00:00,8846.0
-2015-07-01 08:00:00,9546.0
-2015-07-01 09:00:00,10327.0
-2015-07-01 10:00:00,10867.0
-2015-07-01 11:00:00,11320.0
-2015-07-01 12:00:00,11719.0
-2015-07-01 13:00:00,11988.0
-2015-07-01 14:00:00,12125.0
-2015-07-01 15:00:00,12275.0
-2015-07-01 16:00:00,12276.0
-2015-07-01 17:00:00,12196.0
-2015-07-01 18:00:00,11958.0
-2015-07-01 19:00:00,11670.0
-2015-07-01 20:00:00,11156.0
-2015-07-01 21:00:00,10842.0
-2015-07-01 22:00:00,10959.0
-2015-07-01 23:00:00,10817.0
-2015-07-02 00:00:00,10077.0
-2015-06-30 01:00:00,10451.0
-2015-06-30 02:00:00,9758.0
-2015-06-30 03:00:00,9275.0
-2015-06-30 04:00:00,8972.0
-2015-06-30 05:00:00,8844.0
-2015-06-30 06:00:00,8967.0
-2015-06-30 07:00:00,9365.0
-2015-06-30 08:00:00,10156.0
-2015-06-30 09:00:00,11106.0
-2015-06-30 10:00:00,11826.0
-2015-06-30 11:00:00,12426.0
-2015-06-30 12:00:00,12994.0
-2015-06-30 13:00:00,13433.0
-2015-06-30 14:00:00,13787.0
-2015-06-30 15:00:00,14062.0
-2015-06-30 16:00:00,14192.0
-2015-06-30 17:00:00,14205.0
-2015-06-30 18:00:00,14024.0
-2015-06-30 19:00:00,13652.0
-2015-06-30 20:00:00,13016.0
-2015-06-30 21:00:00,12427.0
-2015-06-30 22:00:00,12131.0
-2015-06-30 23:00:00,11816.0
-2015-07-01 00:00:00,10899.0
-2015-06-29 01:00:00,9696.0
-2015-06-29 02:00:00,9185.0
-2015-06-29 03:00:00,8808.0
-2015-06-29 04:00:00,8634.0
-2015-06-29 05:00:00,8577.0
-2015-06-29 06:00:00,8821.0
-2015-06-29 07:00:00,9414.0
-2015-06-29 08:00:00,10278.0
-2015-06-29 09:00:00,11128.0
-2015-06-29 10:00:00,11686.0
-2015-06-29 11:00:00,12158.0
-2015-06-29 12:00:00,12664.0
-2015-06-29 13:00:00,13018.0
-2015-06-29 14:00:00,13236.0
-2015-06-29 15:00:00,13505.0
-2015-06-29 16:00:00,13519.0
-2015-06-29 17:00:00,13383.0
-2015-06-29 18:00:00,13145.0
-2015-06-29 19:00:00,12952.0
-2015-06-29 20:00:00,12710.0
-2015-06-29 21:00:00,12443.0
-2015-06-29 22:00:00,12415.0
-2015-06-29 23:00:00,12247.0
-2015-06-30 00:00:00,11413.0
-2015-06-28 01:00:00,9301.0
-2015-06-28 02:00:00,8686.0
-2015-06-28 03:00:00,8233.0
-2015-06-28 04:00:00,7972.0
-2015-06-28 05:00:00,7825.0
-2015-06-28 06:00:00,7739.0
-2015-06-28 07:00:00,7579.0
-2015-06-28 08:00:00,7647.0
-2015-06-28 09:00:00,8125.0
-2015-06-28 10:00:00,8755.0
-2015-06-28 11:00:00,9361.0
-2015-06-28 12:00:00,9954.0
-2015-06-28 13:00:00,10366.0
-2015-06-28 14:00:00,10820.0
-2015-06-28 15:00:00,11114.0
-2015-06-28 16:00:00,11260.0
-2015-06-28 17:00:00,11248.0
-2015-06-28 18:00:00,11267.0
-2015-06-28 19:00:00,11131.0
-2015-06-28 20:00:00,11028.0
-2015-06-28 21:00:00,10992.0
-2015-06-28 22:00:00,11111.0
-2015-06-28 23:00:00,10974.0
-2015-06-29 00:00:00,10366.0
-2015-06-27 01:00:00,9624.0
-2015-06-27 02:00:00,9011.0
-2015-06-27 03:00:00,8641.0
-2015-06-27 04:00:00,8322.0
-2015-06-27 05:00:00,8233.0
-2015-06-27 06:00:00,8146.0
-2015-06-27 07:00:00,8187.0
-2015-06-27 08:00:00,8362.0
-2015-06-27 09:00:00,8915.0
-2015-06-27 10:00:00,9530.0
-2015-06-27 11:00:00,10088.0
-2015-06-27 12:00:00,10403.0
-2015-06-27 13:00:00,10536.0
-2015-06-27 14:00:00,10659.0
-2015-06-27 15:00:00,10716.0
-2015-06-27 16:00:00,10789.0
-2015-06-27 17:00:00,10910.0
-2015-06-27 18:00:00,11060.0
-2015-06-27 19:00:00,11114.0
-2015-06-27 20:00:00,10968.0
-2015-06-27 21:00:00,10718.0
-2015-06-27 22:00:00,10563.0
-2015-06-27 23:00:00,10535.0
-2015-06-28 00:00:00,9955.0
-2015-06-26 01:00:00,10530.0
-2015-06-26 02:00:00,9758.0
-2015-06-26 03:00:00,9258.0
-2015-06-26 04:00:00,8923.0
-2015-06-26 05:00:00,8794.0
-2015-06-26 06:00:00,8881.0
-2015-06-26 07:00:00,9271.0
-2015-06-26 08:00:00,10051.0
-2015-06-26 09:00:00,10875.0
-2015-06-26 10:00:00,11457.0
-2015-06-26 11:00:00,11845.0
-2015-06-26 12:00:00,12173.0
-2015-06-26 13:00:00,12282.0
-2015-06-26 14:00:00,12297.0
-2015-06-26 15:00:00,12349.0
-2015-06-26 16:00:00,12197.0
-2015-06-26 17:00:00,11968.0
-2015-06-26 18:00:00,11754.0
-2015-06-26 19:00:00,11532.0
-2015-06-26 20:00:00,11277.0
-2015-06-26 21:00:00,11143.0
-2015-06-26 22:00:00,11156.0
-2015-06-26 23:00:00,10986.0
-2015-06-27 00:00:00,10355.0
-2015-06-25 01:00:00,11087.0
-2015-06-25 02:00:00,10321.0
-2015-06-25 03:00:00,9799.0
-2015-06-25 04:00:00,9522.0
-2015-06-25 05:00:00,9407.0
-2015-06-25 06:00:00,9519.0
-2015-06-25 07:00:00,10020.0
-2015-06-25 08:00:00,10889.0
-2015-06-25 09:00:00,11757.0
-2015-06-25 10:00:00,12510.0
-2015-06-25 11:00:00,13235.0
-2015-06-25 12:00:00,14160.0
-2015-06-25 13:00:00,14726.0
-2015-06-25 14:00:00,14905.0
-2015-06-25 15:00:00,14898.0
-2015-06-25 16:00:00,14714.0
-2015-06-25 17:00:00,14385.0
-2015-06-25 18:00:00,14064.0
-2015-06-25 19:00:00,13715.0
-2015-06-25 20:00:00,13214.0
-2015-06-25 21:00:00,12882.0
-2015-06-25 22:00:00,12828.0
-2015-06-25 23:00:00,12513.0
-2015-06-26 00:00:00,11585.0
-2015-06-24 01:00:00,11139.0
-2015-06-24 02:00:00,10282.0
-2015-06-24 03:00:00,9656.0
-2015-06-24 04:00:00,9248.0
-2015-06-24 05:00:00,9079.0
-2015-06-24 06:00:00,9181.0
-2015-06-24 07:00:00,9502.0
-2015-06-24 08:00:00,10460.0
-2015-06-24 09:00:00,11369.0
-2015-06-24 10:00:00,11982.0
-2015-06-24 11:00:00,12459.0
-2015-06-24 12:00:00,12995.0
-2015-06-24 13:00:00,13585.0
-2015-06-24 14:00:00,14043.0
-2015-06-24 15:00:00,14390.0
-2015-06-24 16:00:00,14607.0
-2015-06-24 17:00:00,14823.0
-2015-06-24 18:00:00,14755.0
-2015-06-24 19:00:00,14278.0
-2015-06-24 20:00:00,13744.0
-2015-06-24 21:00:00,13401.0
-2015-06-24 22:00:00,13320.0
-2015-06-24 23:00:00,13089.0
-2015-06-25 00:00:00,12127.0
-2015-06-23 01:00:00,12720.0
-2015-06-23 02:00:00,11790.0
-2015-06-23 03:00:00,11150.0
-2015-06-23 04:00:00,10733.0
-2015-06-23 05:00:00,10418.0
-2015-06-23 06:00:00,10332.0
-2015-06-23 07:00:00,10470.0
-2015-06-23 08:00:00,11333.0
-2015-06-23 09:00:00,12314.0
-2015-06-23 10:00:00,12996.0
-2015-06-23 11:00:00,13509.0
-2015-06-23 12:00:00,13993.0
-2015-06-23 13:00:00,14312.0
-2015-06-23 14:00:00,14593.0
-2015-06-23 15:00:00,14856.0
-2015-06-23 16:00:00,15092.0
-2015-06-23 17:00:00,15342.0
-2015-06-23 18:00:00,15493.0
-2015-06-23 19:00:00,15398.0
-2015-06-23 20:00:00,14914.0
-2015-06-23 21:00:00,14251.0
-2015-06-23 22:00:00,13695.0
-2015-06-23 23:00:00,13404.0
-2015-06-24 00:00:00,12342.0
-2015-06-22 01:00:00,11699.0
-2015-06-22 02:00:00,10862.0
-2015-06-22 03:00:00,10212.0
-2015-06-22 04:00:00,9827.0
-2015-06-22 05:00:00,9634.0
-2015-06-22 06:00:00,9852.0
-2015-06-22 07:00:00,10394.0
-2015-06-22 08:00:00,11618.0
-2015-06-22 09:00:00,12946.0
-2015-06-22 10:00:00,13754.0
-2015-06-22 11:00:00,14428.0
-2015-06-22 12:00:00,14739.0
-2015-06-22 13:00:00,14875.0
-2015-06-22 14:00:00,14768.0
-2015-06-22 15:00:00,14873.0
-2015-06-22 16:00:00,15422.0
-2015-06-22 17:00:00,15458.0
-2015-06-22 18:00:00,15692.0
-2015-06-22 19:00:00,15951.0
-2015-06-22 20:00:00,16023.0
-2015-06-22 21:00:00,15934.0
-2015-06-22 22:00:00,16055.0
-2015-06-22 23:00:00,15655.0
-2015-06-23 00:00:00,14181.0
-2015-06-21 01:00:00,10126.0
-2015-06-21 02:00:00,9483.0
-2015-06-21 03:00:00,9061.0
-2015-06-21 04:00:00,8720.0
-2015-06-21 05:00:00,8554.0
-2015-06-21 06:00:00,8494.0
-2015-06-21 07:00:00,8347.0
-2015-06-21 08:00:00,8363.0
-2015-06-21 09:00:00,8869.0
-2015-06-21 10:00:00,9718.0
-2015-06-21 11:00:00,10497.0
-2015-06-21 12:00:00,11488.0
-2015-06-21 13:00:00,12229.0
-2015-06-21 14:00:00,12754.0
-2015-06-21 15:00:00,13306.0
-2015-06-21 16:00:00,13778.0
-2015-06-21 17:00:00,14094.0
-2015-06-21 18:00:00,14011.0
-2015-06-21 19:00:00,13832.0
-2015-06-21 20:00:00,13712.0
-2015-06-21 21:00:00,13573.0
-2015-06-21 22:00:00,13495.0
-2015-06-21 23:00:00,13500.0
-2015-06-22 00:00:00,12814.0
-2015-06-20 01:00:00,9443.0
-2015-06-20 02:00:00,8818.0
-2015-06-20 03:00:00,8459.0
-2015-06-20 04:00:00,8195.0
-2015-06-20 05:00:00,8048.0
-2015-06-20 06:00:00,8080.0
-2015-06-20 07:00:00,8085.0
-2015-06-20 08:00:00,8311.0
-2015-06-20 09:00:00,8824.0
-2015-06-20 10:00:00,9472.0
-2015-06-20 11:00:00,9947.0
-2015-06-20 12:00:00,10349.0
-2015-06-20 13:00:00,10539.0
-2015-06-20 14:00:00,10742.0
-2015-06-20 15:00:00,10881.0
-2015-06-20 16:00:00,11171.0
-2015-06-20 17:00:00,11450.0
-2015-06-20 18:00:00,11698.0
-2015-06-20 19:00:00,11711.0
-2015-06-20 20:00:00,11611.0
-2015-06-20 21:00:00,11598.0
-2015-06-20 22:00:00,11750.0
-2015-06-20 23:00:00,11550.0
-2015-06-21 00:00:00,10861.0
-2015-06-19 01:00:00,10220.0
-2015-06-19 02:00:00,9414.0
-2015-06-19 03:00:00,8918.0
-2015-06-19 04:00:00,8565.0
-2015-06-19 05:00:00,8417.0
-2015-06-19 06:00:00,8547.0
-2015-06-19 07:00:00,8738.0
-2015-06-19 08:00:00,9478.0
-2015-06-19 09:00:00,10319.0
-2015-06-19 10:00:00,10931.0
-2015-06-19 11:00:00,11377.0
-2015-06-19 12:00:00,11708.0
-2015-06-19 13:00:00,11897.0
-2015-06-19 14:00:00,12045.0
-2015-06-19 15:00:00,12212.0
-2015-06-19 16:00:00,12209.0
-2015-06-19 17:00:00,12072.0
-2015-06-19 18:00:00,11913.0
-2015-06-19 19:00:00,11641.0
-2015-06-19 20:00:00,11240.0
-2015-06-19 21:00:00,10891.0
-2015-06-19 22:00:00,10850.0
-2015-06-19 23:00:00,10898.0
-2015-06-20 00:00:00,10216.0
-2015-06-18 01:00:00,10350.0
-2015-06-18 02:00:00,9708.0
-2015-06-18 03:00:00,9282.0
-2015-06-18 04:00:00,8999.0
-2015-06-18 05:00:00,8955.0
-2015-06-18 06:00:00,9138.0
-2015-06-18 07:00:00,9644.0
-2015-06-18 08:00:00,10794.0
-2015-06-18 09:00:00,11910.0
-2015-06-18 10:00:00,12646.0
-2015-06-18 11:00:00,13267.0
-2015-06-18 12:00:00,13998.0
-2015-06-18 13:00:00,14557.0
-2015-06-18 14:00:00,14939.0
-2015-06-18 15:00:00,15311.0
-2015-06-18 16:00:00,15420.0
-2015-06-18 17:00:00,15261.0
-2015-06-18 18:00:00,14957.0
-2015-06-18 19:00:00,14602.0
-2015-06-18 20:00:00,13916.0
-2015-06-18 21:00:00,13194.0
-2015-06-18 22:00:00,12812.0
-2015-06-18 23:00:00,12357.0
-2015-06-19 00:00:00,11302.0
-2015-06-17 01:00:00,9870.0
-2015-06-17 02:00:00,9221.0
-2015-06-17 03:00:00,8798.0
-2015-06-17 04:00:00,8517.0
-2015-06-17 05:00:00,8395.0
-2015-06-17 06:00:00,8559.0
-2015-06-17 07:00:00,8967.0
-2015-06-17 08:00:00,9758.0
-2015-06-17 09:00:00,10614.0
-2015-06-17 10:00:00,11099.0
-2015-06-17 11:00:00,11345.0
-2015-06-17 12:00:00,11614.0
-2015-06-17 13:00:00,11810.0
-2015-06-17 14:00:00,11990.0
-2015-06-17 15:00:00,12192.0
-2015-06-17 16:00:00,12259.0
-2015-06-17 17:00:00,12293.0
-2015-06-17 18:00:00,12299.0
-2015-06-17 19:00:00,12208.0
-2015-06-17 20:00:00,11931.0
-2015-06-17 21:00:00,11795.0
-2015-06-17 22:00:00,11992.0
-2015-06-17 23:00:00,11917.0
-2015-06-18 00:00:00,11192.0
-2015-06-16 01:00:00,11867.0
-2015-06-16 02:00:00,10937.0
-2015-06-16 03:00:00,10234.0
-2015-06-16 04:00:00,9781.0
-2015-06-16 05:00:00,9556.0
-2015-06-16 06:00:00,9606.0
-2015-06-16 07:00:00,9942.0
-2015-06-16 08:00:00,10843.0
-2015-06-16 09:00:00,11818.0
-2015-06-16 10:00:00,12477.0
-2015-06-16 11:00:00,12900.0
-2015-06-16 12:00:00,13282.0
-2015-06-16 13:00:00,13487.0
-2015-06-16 14:00:00,13610.0
-2015-06-16 15:00:00,13828.0
-2015-06-16 16:00:00,13933.0
-2015-06-16 17:00:00,14027.0
-2015-06-16 18:00:00,13924.0
-2015-06-16 19:00:00,13582.0
-2015-06-16 20:00:00,12886.0
-2015-06-16 21:00:00,12203.0
-2015-06-16 22:00:00,11918.0
-2015-06-16 23:00:00,11697.0
-2015-06-17 00:00:00,10836.0
-2015-06-15 01:00:00,11715.0
-2015-06-15 02:00:00,10918.0
-2015-06-15 03:00:00,10317.0
-2015-06-15 04:00:00,9990.0
-2015-06-15 05:00:00,9884.0
-2015-06-15 06:00:00,10049.0
-2015-06-15 07:00:00,10602.0
-2015-06-15 08:00:00,11736.0
-2015-06-15 09:00:00,12826.0
-2015-06-15 10:00:00,13629.0
-2015-06-15 11:00:00,14272.0
-2015-06-15 12:00:00,14821.0
-2015-06-15 13:00:00,14988.0
-2015-06-15 14:00:00,14973.0
-2015-06-15 15:00:00,15349.0
-2015-06-15 16:00:00,15831.0
-2015-06-15 17:00:00,16148.0
-2015-06-15 18:00:00,16009.0
-2015-06-15 19:00:00,15471.0
-2015-06-15 20:00:00,15052.0
-2015-06-15 21:00:00,14589.0
-2015-06-15 22:00:00,14274.0
-2015-06-15 23:00:00,13780.0
-2015-06-16 00:00:00,12882.0
-2015-06-14 01:00:00,10712.0
-2015-06-14 02:00:00,10093.0
-2015-06-14 03:00:00,9608.0
-2015-06-14 04:00:00,9214.0
-2015-06-14 05:00:00,8971.0
-2015-06-14 06:00:00,8858.0
-2015-06-14 07:00:00,8905.0
-2015-06-14 08:00:00,9020.0
-2015-06-14 09:00:00,9337.0
-2015-06-14 10:00:00,9919.0
-2015-06-14 11:00:00,10570.0
-2015-06-14 12:00:00,11292.0
-2015-06-14 13:00:00,11950.0
-2015-06-14 14:00:00,12608.0
-2015-06-14 15:00:00,13107.0
-2015-06-14 16:00:00,13434.0
-2015-06-14 17:00:00,13867.0
-2015-06-14 18:00:00,14160.0
-2015-06-14 19:00:00,14239.0
-2015-06-14 20:00:00,14042.0
-2015-06-14 21:00:00,13803.0
-2015-06-14 22:00:00,13658.0
-2015-06-14 23:00:00,13504.0
-2015-06-15 00:00:00,12664.0
-2015-06-13 01:00:00,9301.0
-2015-06-13 02:00:00,8749.0
-2015-06-13 03:00:00,8396.0
-2015-06-13 04:00:00,8149.0
-2015-06-13 05:00:00,8005.0
-2015-06-13 06:00:00,8103.0
-2015-06-13 07:00:00,8164.0
-2015-06-13 08:00:00,8354.0
-2015-06-13 09:00:00,8914.0
-2015-06-13 10:00:00,9554.0
-2015-06-13 11:00:00,10276.0
-2015-06-13 12:00:00,10867.0
-2015-06-13 13:00:00,11578.0
-2015-06-13 14:00:00,12159.0
-2015-06-13 15:00:00,12703.0
-2015-06-13 16:00:00,13144.0
-2015-06-13 17:00:00,13367.0
-2015-06-13 18:00:00,13594.0
-2015-06-13 19:00:00,13313.0
-2015-06-13 20:00:00,12873.0
-2015-06-13 21:00:00,12556.0
-2015-06-13 22:00:00,12471.0
-2015-06-13 23:00:00,12113.0
-2015-06-14 00:00:00,11507.0
-2015-06-12 01:00:00,10268.0
-2015-06-12 02:00:00,9640.0
-2015-06-12 03:00:00,9190.0
-2015-06-12 04:00:00,9005.0
-2015-06-12 05:00:00,8851.0
-2015-06-12 06:00:00,9011.0
-2015-06-12 07:00:00,9409.0
-2015-06-12 08:00:00,10372.0
-2015-06-12 09:00:00,11350.0
-2015-06-12 10:00:00,11895.0
-2015-06-12 11:00:00,12339.0
-2015-06-12 12:00:00,12560.0
-2015-06-12 13:00:00,12418.0
-2015-06-12 14:00:00,12217.0
-2015-06-12 15:00:00,12041.0
-2015-06-12 16:00:00,11794.0
-2015-06-12 17:00:00,11465.0
-2015-06-12 18:00:00,11255.0
-2015-06-12 19:00:00,10966.0
-2015-06-12 20:00:00,10748.0
-2015-06-12 21:00:00,10670.0
-2015-06-12 22:00:00,10828.0
-2015-06-12 23:00:00,10651.0
-2015-06-13 00:00:00,10009.0
-2015-06-11 01:00:00,12212.0
-2015-06-11 02:00:00,11199.0
-2015-06-11 03:00:00,10494.0
-2015-06-11 04:00:00,10017.0
-2015-06-11 05:00:00,9767.0
-2015-06-11 06:00:00,9757.0
-2015-06-11 07:00:00,10052.0
-2015-06-11 08:00:00,10883.0
-2015-06-11 09:00:00,11794.0
-2015-06-11 10:00:00,12456.0
-2015-06-11 11:00:00,12806.0
-2015-06-11 12:00:00,13163.0
-2015-06-11 13:00:00,13418.0
-2015-06-11 14:00:00,13848.0
-2015-06-11 15:00:00,13976.0
-2015-06-11 16:00:00,13889.0
-2015-06-11 17:00:00,13652.0
-2015-06-11 18:00:00,13286.0
-2015-06-11 19:00:00,12756.0
-2015-06-11 20:00:00,12281.0
-2015-06-11 21:00:00,12185.0
-2015-06-11 22:00:00,12347.0
-2015-06-11 23:00:00,12047.0
-2015-06-12 00:00:00,11194.0
-2015-06-10 01:00:00,12245.0
-2015-06-10 02:00:00,11325.0
-2015-06-10 03:00:00,10669.0
-2015-06-10 04:00:00,10198.0
-2015-06-10 05:00:00,10027.0
-2015-06-10 06:00:00,10116.0
-2015-06-10 07:00:00,10537.0
-2015-06-10 08:00:00,11741.0
-2015-06-10 09:00:00,13136.0
-2015-06-10 10:00:00,14345.0
-2015-06-10 11:00:00,15292.0
-2015-06-10 12:00:00,16165.0
-2015-06-10 13:00:00,16912.0
-2015-06-10 14:00:00,17534.0
-2015-06-10 15:00:00,18170.0
-2015-06-10 16:00:00,18489.0
-2015-06-10 17:00:00,18472.0
-2015-06-10 18:00:00,18222.0
-2015-06-10 19:00:00,17629.0
-2015-06-10 20:00:00,16655.0
-2015-06-10 21:00:00,15818.0
-2015-06-10 22:00:00,15266.0
-2015-06-10 23:00:00,14790.0
-2015-06-11 00:00:00,13589.0
-2015-06-09 01:00:00,10186.0
-2015-06-09 02:00:00,9483.0
-2015-06-09 03:00:00,9023.0
-2015-06-09 04:00:00,8714.0
-2015-06-09 05:00:00,8524.0
-2015-06-09 06:00:00,8674.0
-2015-06-09 07:00:00,9143.0
-2015-06-09 08:00:00,10022.0
-2015-06-09 09:00:00,10943.0
-2015-06-09 10:00:00,11583.0
-2015-06-09 11:00:00,12120.0
-2015-06-09 12:00:00,12737.0
-2015-06-09 13:00:00,13282.0
-2015-06-09 14:00:00,13793.0
-2015-06-09 15:00:00,14363.0
-2015-06-09 16:00:00,14892.0
-2015-06-09 17:00:00,15342.0
-2015-06-09 18:00:00,15664.0
-2015-06-09 19:00:00,15742.0
-2015-06-09 20:00:00,15430.0
-2015-06-09 21:00:00,15001.0
-2015-06-09 22:00:00,14771.0
-2015-06-09 23:00:00,14537.0
-2015-06-10 00:00:00,13478.0
-2015-06-08 01:00:00,10137.0
-2015-06-08 02:00:00,9488.0
-2015-06-08 03:00:00,9076.0
-2015-06-08 04:00:00,8780.0
-2015-06-08 05:00:00,8687.0
-2015-06-08 06:00:00,8881.0
-2015-06-08 07:00:00,9393.0
-2015-06-08 08:00:00,10422.0
-2015-06-08 09:00:00,11570.0
-2015-06-08 10:00:00,12424.0
-2015-06-08 11:00:00,13163.0
-2015-06-08 12:00:00,13875.0
-2015-06-08 13:00:00,14408.0
-2015-06-08 14:00:00,14772.0
-2015-06-08 15:00:00,15171.0
-2015-06-08 16:00:00,15346.0
-2015-06-08 17:00:00,15132.0
-2015-06-08 18:00:00,14432.0
-2015-06-08 19:00:00,13863.0
-2015-06-08 20:00:00,13511.0
-2015-06-08 21:00:00,13057.0
-2015-06-08 22:00:00,12715.0
-2015-06-08 23:00:00,12253.0
-2015-06-09 00:00:00,11297.0
-2015-06-07 01:00:00,8796.0
-2015-06-07 02:00:00,8289.0
-2015-06-07 03:00:00,7941.0
-2015-06-07 04:00:00,7716.0
-2015-06-07 05:00:00,7613.0
-2015-06-07 06:00:00,7589.0
-2015-06-07 07:00:00,7537.0
-2015-06-07 08:00:00,7615.0
-2015-06-07 09:00:00,8028.0
-2015-06-07 10:00:00,8658.0
-2015-06-07 11:00:00,9075.0
-2015-06-07 12:00:00,9432.0
-2015-06-07 13:00:00,9745.0
-2015-06-07 14:00:00,9910.0
-2015-06-07 15:00:00,10067.0
-2015-06-07 16:00:00,10368.0
-2015-06-07 17:00:00,10848.0
-2015-06-07 18:00:00,11275.0
-2015-06-07 19:00:00,11428.0
-2015-06-07 20:00:00,11423.0
-2015-06-07 21:00:00,11378.0
-2015-06-07 22:00:00,11651.0
-2015-06-07 23:00:00,11594.0
-2015-06-08 00:00:00,10909.0
-2015-06-06 01:00:00,9162.0
-2015-06-06 02:00:00,8574.0
-2015-06-06 03:00:00,8168.0
-2015-06-06 04:00:00,7913.0
-2015-06-06 05:00:00,7805.0
-2015-06-06 06:00:00,7809.0
-2015-06-06 07:00:00,7825.0
-2015-06-06 08:00:00,8030.0
-2015-06-06 09:00:00,8455.0
-2015-06-06 10:00:00,9057.0
-2015-06-06 11:00:00,9514.0
-2015-06-06 12:00:00,9872.0
-2015-06-06 13:00:00,10073.0
-2015-06-06 14:00:00,10119.0
-2015-06-06 15:00:00,10139.0
-2015-06-06 16:00:00,10202.0
-2015-06-06 17:00:00,10283.0
-2015-06-06 18:00:00,10389.0
-2015-06-06 19:00:00,10399.0
-2015-06-06 20:00:00,10140.0
-2015-06-06 21:00:00,9861.0
-2015-06-06 22:00:00,9909.0
-2015-06-06 23:00:00,9917.0
-2015-06-07 00:00:00,9395.0
-2015-06-05 01:00:00,11096.0
-2015-06-05 02:00:00,10249.0
-2015-06-05 03:00:00,9627.0
-2015-06-05 04:00:00,9184.0
-2015-06-05 05:00:00,8956.0
-2015-06-05 06:00:00,9002.0
-2015-06-05 07:00:00,9332.0
-2015-06-05 08:00:00,10045.0
-2015-06-05 09:00:00,10765.0
-2015-06-05 10:00:00,11161.0
-2015-06-05 11:00:00,11472.0
-2015-06-05 12:00:00,11678.0
-2015-06-05 13:00:00,11808.0
-2015-06-05 14:00:00,11914.0
-2015-06-05 15:00:00,12014.0
-2015-06-05 16:00:00,11960.0
-2015-06-05 17:00:00,11831.0
-2015-06-05 18:00:00,11613.0
-2015-06-05 19:00:00,11356.0
-2015-06-05 20:00:00,10929.0
-2015-06-05 21:00:00,10580.0
-2015-06-05 22:00:00,10627.0
-2015-06-05 23:00:00,10577.0
-2015-06-06 00:00:00,9920.0
-2015-06-04 01:00:00,9808.0
-2015-06-04 02:00:00,9109.0
-2015-06-04 03:00:00,8688.0
-2015-06-04 04:00:00,8413.0
-2015-06-04 05:00:00,8296.0
-2015-06-04 06:00:00,8460.0
-2015-06-04 07:00:00,8902.0
-2015-06-04 08:00:00,9863.0
-2015-06-04 09:00:00,10804.0
-2015-06-04 10:00:00,11494.0
-2015-06-04 11:00:00,12019.0
-2015-06-04 12:00:00,12513.0
-2015-06-04 13:00:00,12831.0
-2015-06-04 14:00:00,13096.0
-2015-06-04 15:00:00,13515.0
-2015-06-04 16:00:00,13879.0
-2015-06-04 17:00:00,14128.0
-2015-06-04 18:00:00,14233.0
-2015-06-04 19:00:00,14071.0
-2015-06-04 20:00:00,13737.0
-2015-06-04 21:00:00,13473.0
-2015-06-04 22:00:00,13483.0
-2015-06-04 23:00:00,13238.0
-2015-06-05 00:00:00,12220.0
-2015-06-03 01:00:00,9197.0
-2015-06-03 02:00:00,8614.0
-2015-06-03 03:00:00,8266.0
-2015-06-03 04:00:00,8086.0
-2015-06-03 05:00:00,7995.0
-2015-06-03 06:00:00,8173.0
-2015-06-03 07:00:00,8545.0
-2015-06-03 08:00:00,9411.0
-2015-06-03 09:00:00,10334.0
-2015-06-03 10:00:00,10930.0
-2015-06-03 11:00:00,11311.0
-2015-06-03 12:00:00,11691.0
-2015-06-03 13:00:00,11911.0
-2015-06-03 14:00:00,12072.0
-2015-06-03 15:00:00,12338.0
-2015-06-03 16:00:00,12493.0
-2015-06-03 17:00:00,12574.0
-2015-06-03 18:00:00,12608.0
-2015-06-03 19:00:00,12460.0
-2015-06-03 20:00:00,12040.0
-2015-06-03 21:00:00,11796.0
-2015-06-03 22:00:00,11819.0
-2015-06-03 23:00:00,11643.0
-2015-06-04 00:00:00,10786.0
-2015-06-02 01:00:00,8913.0
-2015-06-02 02:00:00,8429.0
-2015-06-02 03:00:00,8131.0
-2015-06-02 04:00:00,7948.0
-2015-06-02 05:00:00,7918.0
-2015-06-02 06:00:00,8130.0
-2015-06-02 07:00:00,8502.0
-2015-06-02 08:00:00,9343.0
-2015-06-02 09:00:00,10115.0
-2015-06-02 10:00:00,10587.0
-2015-06-02 11:00:00,10904.0
-2015-06-02 12:00:00,11181.0
-2015-06-02 13:00:00,11275.0
-2015-06-02 14:00:00,11362.0
-2015-06-02 15:00:00,11462.0
-2015-06-02 16:00:00,11484.0
-2015-06-02 17:00:00,11466.0
-2015-06-02 18:00:00,11427.0
-2015-06-02 19:00:00,11320.0
-2015-06-02 20:00:00,11013.0
-2015-06-02 21:00:00,10805.0
-2015-06-02 22:00:00,10961.0
-2015-06-02 23:00:00,10847.0
-2015-06-03 00:00:00,10027.0
-2015-06-01 01:00:00,8422.0
-2015-06-01 02:00:00,8042.0
-2015-06-01 03:00:00,7846.0
-2015-06-01 04:00:00,7711.0
-2015-06-01 05:00:00,7746.0
-2015-06-01 06:00:00,7922.0
-2015-06-01 07:00:00,8466.0
-2015-06-01 08:00:00,9371.0
-2015-06-01 09:00:00,10145.0
-2015-06-01 10:00:00,10505.0
-2015-06-01 11:00:00,10699.0
-2015-06-01 12:00:00,10855.0
-2015-06-01 13:00:00,10900.0
-2015-06-01 14:00:00,10914.0
-2015-06-01 15:00:00,10977.0
-2015-06-01 16:00:00,10950.0
-2015-06-01 17:00:00,10820.0
-2015-06-01 18:00:00,10723.0
-2015-06-01 19:00:00,10570.0
-2015-06-01 20:00:00,10323.0
-2015-06-01 21:00:00,10257.0
-2015-06-01 22:00:00,10504.0
-2015-06-01 23:00:00,10408.0
-2015-06-02 00:00:00,9683.0
-2015-05-31 01:00:00,8643.0
-2015-05-31 02:00:00,8168.0
-2015-05-31 03:00:00,7890.0
-2015-05-31 04:00:00,7657.0
-2015-05-31 05:00:00,7556.0
-2015-05-31 06:00:00,7536.0
-2015-05-31 07:00:00,7501.0
-2015-05-31 08:00:00,7545.0
-2015-05-31 09:00:00,7855.0
-2015-05-31 10:00:00,8247.0
-2015-05-31 11:00:00,8557.0
-2015-05-31 12:00:00,8733.0
-2015-05-31 13:00:00,8817.0
-2015-05-31 14:00:00,8830.0
-2015-05-31 15:00:00,8827.0
-2015-05-31 16:00:00,8785.0
-2015-05-31 17:00:00,8752.0
-2015-05-31 18:00:00,8782.0
-2015-05-31 19:00:00,8824.0
-2015-05-31 20:00:00,8882.0
-2015-05-31 21:00:00,9021.0
-2015-05-31 22:00:00,9409.0
-2015-05-31 23:00:00,9421.0
-2015-06-01 00:00:00,8948.0
-2015-05-30 01:00:00,11433.0
-2015-05-30 02:00:00,10573.0
-2015-05-30 03:00:00,9978.0
-2015-05-30 04:00:00,9572.0
-2015-05-30 05:00:00,9326.0
-2015-05-30 06:00:00,9302.0
-2015-05-30 07:00:00,9387.0
-2015-05-30 08:00:00,9560.0
-2015-05-30 09:00:00,10083.0
-2015-05-30 10:00:00,10657.0
-2015-05-30 11:00:00,11036.0
-2015-05-30 12:00:00,11130.0
-2015-05-30 13:00:00,10847.0
-2015-05-30 14:00:00,10517.0
-2015-05-30 15:00:00,10044.0
-2015-05-30 16:00:00,9756.0
-2015-05-30 17:00:00,9620.0
-2015-05-30 18:00:00,9555.0
-2015-05-30 19:00:00,9500.0
-2015-05-30 20:00:00,9422.0
-2015-05-30 21:00:00,9518.0
-2015-05-30 22:00:00,9745.0
-2015-05-30 23:00:00,9661.0
-2015-05-31 00:00:00,9200.0
-2015-05-29 01:00:00,10633.0
-2015-05-29 02:00:00,9839.0
-2015-05-29 03:00:00,9340.0
-2015-05-29 04:00:00,9093.0
-2015-05-29 05:00:00,8953.0
-2015-05-29 06:00:00,9140.0
-2015-05-29 07:00:00,9636.0
-2015-05-29 08:00:00,10636.0
-2015-05-29 09:00:00,11789.0
-2015-05-29 10:00:00,12767.0
-2015-05-29 11:00:00,13558.0
-2015-05-29 12:00:00,14093.0
-2015-05-29 13:00:00,14158.0
-2015-05-29 14:00:00,14321.0
-2015-05-29 15:00:00,14716.0
-2015-05-29 16:00:00,14800.0
-2015-05-29 17:00:00,14791.0
-2015-05-29 18:00:00,14659.0
-2015-05-29 19:00:00,14483.0
-2015-05-29 20:00:00,14150.0
-2015-05-29 21:00:00,13698.0
-2015-05-29 22:00:00,13705.0
-2015-05-29 23:00:00,13423.0
-2015-05-30 00:00:00,12487.0
-2015-05-28 01:00:00,9951.0
-2015-05-28 02:00:00,9257.0
-2015-05-28 03:00:00,8858.0
-2015-05-28 04:00:00,8591.0
-2015-05-28 05:00:00,8453.0
-2015-05-28 06:00:00,8608.0
-2015-05-28 07:00:00,8997.0
-2015-05-28 08:00:00,9916.0
-2015-05-28 09:00:00,11017.0
-2015-05-28 10:00:00,11709.0
-2015-05-28 11:00:00,12337.0
-2015-05-28 12:00:00,12927.0
-2015-05-28 13:00:00,13316.0
-2015-05-28 14:00:00,13649.0
-2015-05-28 15:00:00,14088.0
-2015-05-28 16:00:00,14343.0
-2015-05-28 17:00:00,14579.0
-2015-05-28 18:00:00,14644.0
-2015-05-28 19:00:00,14457.0
-2015-05-28 20:00:00,13976.0
-2015-05-28 21:00:00,13397.0
-2015-05-28 22:00:00,13196.0
-2015-05-28 23:00:00,12786.0
-2015-05-29 00:00:00,11747.0
-2015-05-27 01:00:00,10250.0
-2015-05-27 02:00:00,9618.0
-2015-05-27 03:00:00,9197.0
-2015-05-27 04:00:00,8899.0
-2015-05-27 05:00:00,8757.0
-2015-05-27 06:00:00,8911.0
-2015-05-27 07:00:00,9361.0
-2015-05-27 08:00:00,10398.0
-2015-05-27 09:00:00,11374.0
-2015-05-27 10:00:00,11955.0
-2015-05-27 11:00:00,12302.0
-2015-05-27 12:00:00,12650.0
-2015-05-27 13:00:00,12794.0
-2015-05-27 14:00:00,12833.0
-2015-05-27 15:00:00,12980.0
-2015-05-27 16:00:00,12953.0
-2015-05-27 17:00:00,12844.0
-2015-05-27 18:00:00,12905.0
-2015-05-27 19:00:00,12900.0
-2015-05-27 20:00:00,12587.0
-2015-05-27 21:00:00,12227.0
-2015-05-27 22:00:00,12264.0
-2015-05-27 23:00:00,11866.0
-2015-05-28 00:00:00,10944.0
-2015-05-26 01:00:00,9759.0
-2015-05-26 02:00:00,9131.0
-2015-05-26 03:00:00,8729.0
-2015-05-26 04:00:00,8456.0
-2015-05-26 05:00:00,8398.0
-2015-05-26 06:00:00,8622.0
-2015-05-26 07:00:00,9305.0
-2015-05-26 08:00:00,10424.0
-2015-05-26 09:00:00,11467.0
-2015-05-26 10:00:00,12073.0
-2015-05-26 11:00:00,12489.0
-2015-05-26 12:00:00,12813.0
-2015-05-26 13:00:00,12976.0
-2015-05-26 14:00:00,13002.0
-2015-05-26 15:00:00,13016.0
-2015-05-26 16:00:00,13155.0
-2015-05-26 17:00:00,13295.0
-2015-05-26 18:00:00,13319.0
-2015-05-26 19:00:00,13149.0
-2015-05-26 20:00:00,12710.0
-2015-05-26 21:00:00,12353.0
-2015-05-26 22:00:00,12363.0
-2015-05-26 23:00:00,12089.0
-2015-05-27 00:00:00,11177.0
-2015-05-25 01:00:00,8979.0
-2015-05-25 02:00:00,8506.0
-2015-05-25 03:00:00,8252.0
-2015-05-25 04:00:00,8053.0
-2015-05-25 05:00:00,7969.0
-2015-05-25 06:00:00,7940.0
-2015-05-25 07:00:00,8095.0
-2015-05-25 08:00:00,8129.0
-2015-05-25 09:00:00,8530.0
-2015-05-25 10:00:00,8974.0
-2015-05-25 11:00:00,9515.0
-2015-05-25 12:00:00,9841.0
-2015-05-25 13:00:00,10138.0
-2015-05-25 14:00:00,10334.0
-2015-05-25 15:00:00,10490.0
-2015-05-25 16:00:00,10687.0
-2015-05-25 17:00:00,10866.0
-2015-05-25 18:00:00,11041.0
-2015-05-25 19:00:00,11197.0
-2015-05-25 20:00:00,11023.0
-2015-05-25 21:00:00,10985.0
-2015-05-25 22:00:00,11318.0
-2015-05-25 23:00:00,11273.0
-2015-05-26 00:00:00,10563.0
-2015-05-24 01:00:00,8933.0
-2015-05-24 02:00:00,8407.0
-2015-05-24 03:00:00,8015.0
-2015-05-24 04:00:00,7761.0
-2015-05-24 05:00:00,7613.0
-2015-05-24 06:00:00,7561.0
-2015-05-24 07:00:00,7495.0
-2015-05-24 08:00:00,7484.0
-2015-05-24 09:00:00,7786.0
-2015-05-24 10:00:00,8259.0
-2015-05-24 11:00:00,8643.0
-2015-05-24 12:00:00,8989.0
-2015-05-24 13:00:00,9202.0
-2015-05-24 14:00:00,9289.0
-2015-05-24 15:00:00,9367.0
-2015-05-24 16:00:00,9405.0
-2015-05-24 17:00:00,9462.0
-2015-05-24 18:00:00,9462.0
-2015-05-24 19:00:00,9450.0
-2015-05-24 20:00:00,9430.0
-2015-05-24 21:00:00,9566.0
-2015-05-24 22:00:00,9830.0
-2015-05-24 23:00:00,9817.0
-2015-05-25 00:00:00,9430.0
-2015-05-23 01:00:00,8835.0
-2015-05-23 02:00:00,8331.0
-2015-05-23 03:00:00,7932.0
-2015-05-23 04:00:00,7797.0
-2015-05-23 05:00:00,7654.0
-2015-05-23 06:00:00,7697.0
-2015-05-23 07:00:00,7606.0
-2015-05-23 08:00:00,7788.0
-2015-05-23 09:00:00,8239.0
-2015-05-23 10:00:00,8790.0
-2015-05-23 11:00:00,9209.0
-2015-05-23 12:00:00,9481.0
-2015-05-23 13:00:00,9633.0
-2015-05-23 14:00:00,9763.0
-2015-05-23 15:00:00,9798.0
-2015-05-23 16:00:00,9871.0
-2015-05-23 17:00:00,10025.0
-2015-05-23 18:00:00,10138.0
-2015-05-23 19:00:00,10216.0
-2015-05-23 20:00:00,10141.0
-2015-05-23 21:00:00,9960.0
-2015-05-23 22:00:00,10176.0
-2015-05-23 23:00:00,10067.0
-2015-05-24 00:00:00,9531.0
-2015-05-22 01:00:00,9118.0
-2015-05-22 02:00:00,8625.0
-2015-05-22 03:00:00,8266.0
-2015-05-22 04:00:00,8061.0
-2015-05-22 05:00:00,7983.0
-2015-05-22 06:00:00,8139.0
-2015-05-22 07:00:00,8521.0
-2015-05-22 08:00:00,9331.0
-2015-05-22 09:00:00,10082.0
-2015-05-22 10:00:00,10532.0
-2015-05-22 11:00:00,10788.0
-2015-05-22 12:00:00,10978.0
-2015-05-22 13:00:00,11047.0
-2015-05-22 14:00:00,11063.0
-2015-05-22 15:00:00,11105.0
-2015-05-22 16:00:00,11059.0
-2015-05-22 17:00:00,10929.0
-2015-05-22 18:00:00,10727.0
-2015-05-22 19:00:00,10442.0
-2015-05-22 20:00:00,10129.0
-2015-05-22 21:00:00,10040.0
-2015-05-22 22:00:00,10359.0
-2015-05-22 23:00:00,10200.0
-2015-05-23 00:00:00,9550.0
-2015-05-21 01:00:00,9285.0
-2015-05-21 02:00:00,8817.0
-2015-05-21 03:00:00,8521.0
-2015-05-21 04:00:00,8321.0
-2015-05-21 05:00:00,8278.0
-2015-05-21 06:00:00,8493.0
-2015-05-21 07:00:00,9081.0
-2015-05-21 08:00:00,9944.0
-2015-05-21 09:00:00,10661.0
-2015-05-21 10:00:00,10929.0
-2015-05-21 11:00:00,10997.0
-2015-05-21 12:00:00,11082.0
-2015-05-21 13:00:00,11123.0
-2015-05-21 14:00:00,11153.0
-2015-05-21 15:00:00,11236.0
-2015-05-21 16:00:00,11141.0
-2015-05-21 17:00:00,11080.0
-2015-05-21 18:00:00,10989.0
-2015-05-21 19:00:00,10848.0
-2015-05-21 20:00:00,10588.0
-2015-05-21 21:00:00,10485.0
-2015-05-21 22:00:00,10836.0
-2015-05-21 23:00:00,10654.0
-2015-05-22 00:00:00,9928.0
-2015-05-20 01:00:00,9141.0
-2015-05-20 02:00:00,8685.0
-2015-05-20 03:00:00,8354.0
-2015-05-20 04:00:00,8190.0
-2015-05-20 05:00:00,8116.0
-2015-05-20 06:00:00,8347.0
-2015-05-20 07:00:00,8876.0
-2015-05-20 08:00:00,9751.0
-2015-05-20 09:00:00,10513.0
-2015-05-20 10:00:00,10773.0
-2015-05-20 11:00:00,10900.0
-2015-05-20 12:00:00,11020.0
-2015-05-20 13:00:00,11070.0
-2015-05-20 14:00:00,11058.0
-2015-05-20 15:00:00,11152.0
-2015-05-20 16:00:00,11062.0
-2015-05-20 17:00:00,10992.0
-2015-05-20 18:00:00,11003.0
-2015-05-20 19:00:00,10931.0
-2015-05-20 20:00:00,10783.0
-2015-05-20 21:00:00,10766.0
-2015-05-20 22:00:00,11084.0
-2015-05-20 23:00:00,10746.0
-2015-05-21 00:00:00,10011.0
-2015-05-19 01:00:00,9223.0
-2015-05-19 02:00:00,8672.0
-2015-05-19 03:00:00,8322.0
-2015-05-19 04:00:00,8083.0
-2015-05-19 05:00:00,8020.0
-2015-05-19 06:00:00,8205.0
-2015-05-19 07:00:00,8717.0
-2015-05-19 08:00:00,9555.0
-2015-05-19 09:00:00,10297.0
-2015-05-19 10:00:00,10640.0
-2015-05-19 11:00:00,10821.0
-2015-05-19 12:00:00,10936.0
-2015-05-19 13:00:00,10962.0
-2015-05-19 14:00:00,10974.0
-2015-05-19 15:00:00,10982.0
-2015-05-19 16:00:00,10867.0
-2015-05-19 17:00:00,10701.0
-2015-05-19 18:00:00,10587.0
-2015-05-19 19:00:00,10476.0
-2015-05-19 20:00:00,10221.0
-2015-05-19 21:00:00,10256.0
-2015-05-19 22:00:00,10773.0
-2015-05-19 23:00:00,10543.0
-2015-05-20 00:00:00,9883.0
-2015-05-18 01:00:00,10405.0
-2015-05-18 02:00:00,9742.0
-2015-05-18 03:00:00,9349.0
-2015-05-18 04:00:00,9056.0
-2015-05-18 05:00:00,8988.0
-2015-05-18 06:00:00,9143.0
-2015-05-18 07:00:00,9631.0
-2015-05-18 08:00:00,10723.0
-2015-05-18 09:00:00,11842.0
-2015-05-18 10:00:00,12447.0
-2015-05-18 11:00:00,12899.0
-2015-05-18 12:00:00,13384.0
-2015-05-18 13:00:00,13735.0
-2015-05-18 14:00:00,13847.0
-2015-05-18 15:00:00,13960.0
-2015-05-18 16:00:00,13852.0
-2015-05-18 17:00:00,13688.0
-2015-05-18 18:00:00,13384.0
-2015-05-18 19:00:00,12876.0
-2015-05-18 20:00:00,12077.0
-2015-05-18 21:00:00,11504.0
-2015-05-18 22:00:00,11436.0
-2015-05-18 23:00:00,10995.0
-2015-05-19 00:00:00,10065.0
-2015-05-17 01:00:00,10101.0
-2015-05-17 02:00:00,9440.0
-2015-05-17 03:00:00,9283.0
-2015-05-17 04:00:00,8980.0
-2015-05-17 05:00:00,8441.0
-2015-05-17 06:00:00,8408.0
-2015-05-17 07:00:00,8372.0
-2015-05-17 08:00:00,8441.0
-2015-05-17 09:00:00,8787.0
-2015-05-17 10:00:00,9322.0
-2015-05-17 11:00:00,9814.0
-2015-05-17 12:00:00,10303.0
-2015-05-17 13:00:00,10798.0
-2015-05-17 14:00:00,11175.0
-2015-05-17 15:00:00,11728.0
-2015-05-17 16:00:00,12152.0
-2015-05-17 17:00:00,12381.0
-2015-05-17 18:00:00,12175.0
-2015-05-17 19:00:00,12245.0
-2015-05-17 20:00:00,12263.0
-2015-05-17 21:00:00,12004.0
-2015-05-17 22:00:00,12518.0
-2015-05-17 23:00:00,12342.0
-2015-05-18 00:00:00,11214.0
-2015-05-16 01:00:00,9821.0
-2015-05-16 02:00:00,9141.0
-2015-05-16 03:00:00,8755.0
-2015-05-16 04:00:00,8457.0
-2015-05-16 05:00:00,8341.0
-2015-05-16 06:00:00,8271.0
-2015-05-16 07:00:00,8433.0
-2015-05-16 08:00:00,8635.0
-2015-05-16 09:00:00,9148.0
-2015-05-16 10:00:00,9759.0
-2015-05-16 11:00:00,10254.0
-2015-05-16 12:00:00,10590.0
-2015-05-16 13:00:00,10888.0
-2015-05-16 14:00:00,11002.0
-2015-05-16 15:00:00,11059.0
-2015-05-16 16:00:00,11244.0
-2015-05-16 17:00:00,11477.0
-2015-05-16 18:00:00,11695.0
-2015-05-16 19:00:00,11680.0
-2015-05-16 20:00:00,11522.0
-2015-05-16 21:00:00,11336.0
-2015-05-16 22:00:00,11646.0
-2015-05-16 23:00:00,11476.0
-2015-05-17 00:00:00,10862.0
-2015-05-15 01:00:00,9108.0
-2015-05-15 02:00:00,8598.0
-2015-05-15 03:00:00,8289.0
-2015-05-15 04:00:00,8094.0
-2015-05-15 05:00:00,8040.0
-2015-05-15 06:00:00,8243.0
-2015-05-15 07:00:00,8773.0
-2015-05-15 08:00:00,9615.0
-2015-05-15 09:00:00,10497.0
-2015-05-15 10:00:00,11002.0
-2015-05-15 11:00:00,11341.0
-2015-05-15 12:00:00,11609.0
-2015-05-15 13:00:00,11722.0
-2015-05-15 14:00:00,11839.0
-2015-05-15 15:00:00,11969.0
-2015-05-15 16:00:00,11963.0
-2015-05-15 17:00:00,11934.0
-2015-05-15 18:00:00,11891.0
-2015-05-15 19:00:00,11729.0
-2015-05-15 20:00:00,11408.0
-2015-05-15 21:00:00,11309.0
-2015-05-15 22:00:00,11613.0
-2015-05-15 23:00:00,11344.0
-2015-05-16 00:00:00,10593.0
-2015-05-14 01:00:00,9181.0
-2015-05-14 02:00:00,8722.0
-2015-05-14 03:00:00,8458.0
-2015-05-14 04:00:00,8269.0
-2015-05-14 05:00:00,8240.0
-2015-05-14 06:00:00,8431.0
-2015-05-14 07:00:00,8957.0
-2015-05-14 08:00:00,9776.0
-2015-05-14 09:00:00,10508.0
-2015-05-14 10:00:00,10819.0
-2015-05-14 11:00:00,10967.0
-2015-05-14 12:00:00,11151.0
-2015-05-14 13:00:00,11198.0
-2015-05-14 14:00:00,11195.0
-2015-05-14 15:00:00,11235.0
-2015-05-14 16:00:00,11175.0
-2015-05-14 17:00:00,11037.0
-2015-05-14 18:00:00,10912.0
-2015-05-14 19:00:00,10748.0
-2015-05-14 20:00:00,10698.0
-2015-05-14 21:00:00,10821.0
-2015-05-14 22:00:00,10991.0
-2015-05-14 23:00:00,10593.0
-2015-05-15 00:00:00,9847.0
-2015-05-13 01:00:00,9168.0
-2015-05-13 02:00:00,8701.0
-2015-05-13 03:00:00,8466.0
-2015-05-13 04:00:00,8309.0
-2015-05-13 05:00:00,8297.0
-2015-05-13 06:00:00,8539.0
-2015-05-13 07:00:00,9091.0
-2015-05-13 08:00:00,9936.0
-2015-05-13 09:00:00,10556.0
-2015-05-13 10:00:00,10828.0
-2015-05-13 11:00:00,10964.0
-2015-05-13 12:00:00,10979.0
-2015-05-13 13:00:00,10977.0
-2015-05-13 14:00:00,11004.0
-2015-05-13 15:00:00,10996.0
-2015-05-13 16:00:00,10909.0
-2015-05-13 17:00:00,10751.0
-2015-05-13 18:00:00,10639.0
-2015-05-13 19:00:00,10479.0
-2015-05-13 20:00:00,10300.0
-2015-05-13 21:00:00,10347.0
-2015-05-13 22:00:00,10880.0
-2015-05-13 23:00:00,10651.0
-2015-05-14 00:00:00,9888.0
-2015-05-12 01:00:00,9142.0
-2015-05-12 02:00:00,8654.0
-2015-05-12 03:00:00,8380.0
-2015-05-12 04:00:00,8230.0
-2015-05-12 05:00:00,8148.0
-2015-05-12 06:00:00,8383.0
-2015-05-12 07:00:00,8972.0
-2015-05-12 08:00:00,9809.0
-2015-05-12 09:00:00,10575.0
-2015-05-12 10:00:00,10922.0
-2015-05-12 11:00:00,11062.0
-2015-05-12 12:00:00,11165.0
-2015-05-12 13:00:00,11144.0
-2015-05-12 14:00:00,11110.0
-2015-05-12 15:00:00,11114.0
-2015-05-12 16:00:00,11016.0
-2015-05-12 17:00:00,10832.0
-2015-05-12 18:00:00,10703.0
-2015-05-12 19:00:00,10570.0
-2015-05-12 20:00:00,10390.0
-2015-05-12 21:00:00,10561.0
-2015-05-12 22:00:00,10986.0
-2015-05-12 23:00:00,10660.0
-2015-05-13 00:00:00,9989.0
-2015-05-11 01:00:00,8467.0
-2015-05-11 02:00:00,8123.0
-2015-05-11 03:00:00,7867.0
-2015-05-11 04:00:00,7840.0
-2015-05-11 05:00:00,7837.0
-2015-05-11 06:00:00,8112.0
-2015-05-11 07:00:00,8723.0
-2015-05-11 08:00:00,9729.0
-2015-05-11 09:00:00,10764.0
-2015-05-11 10:00:00,11243.0
-2015-05-11 11:00:00,11457.0
-2015-05-11 12:00:00,11638.0
-2015-05-11 13:00:00,11734.0
-2015-05-11 14:00:00,11767.0
-2015-05-11 15:00:00,11795.0
-2015-05-11 16:00:00,11679.0
-2015-05-11 17:00:00,11522.0
-2015-05-11 18:00:00,11425.0
-2015-05-11 19:00:00,11201.0
-2015-05-11 20:00:00,10854.0
-2015-05-11 21:00:00,10740.0
-2015-05-11 22:00:00,11055.0
-2015-05-11 23:00:00,10658.0
-2015-05-12 00:00:00,9875.0
-2015-05-10 01:00:00,8659.0
-2015-05-10 02:00:00,8165.0
-2015-05-10 03:00:00,7872.0
-2015-05-10 04:00:00,7669.0
-2015-05-10 05:00:00,7601.0
-2015-05-10 06:00:00,7583.0
-2015-05-10 07:00:00,7665.0
-2015-05-10 08:00:00,7688.0
-2015-05-10 09:00:00,7952.0
-2015-05-10 10:00:00,8426.0
-2015-05-10 11:00:00,8713.0
-2015-05-10 12:00:00,8910.0
-2015-05-10 13:00:00,8964.0
-2015-05-10 14:00:00,8921.0
-2015-05-10 15:00:00,8838.0
-2015-05-10 16:00:00,8791.0
-2015-05-10 17:00:00,8753.0
-2015-05-10 18:00:00,8782.0
-2015-05-10 19:00:00,8781.0
-2015-05-10 20:00:00,8883.0
-2015-05-10 21:00:00,9170.0
-2015-05-10 22:00:00,9682.0
-2015-05-10 23:00:00,9526.0
-2015-05-11 00:00:00,9051.0
-2015-05-09 01:00:00,10108.0
-2015-05-09 02:00:00,9451.0
-2015-05-09 03:00:00,9048.0
-2015-05-09 04:00:00,8763.0
-2015-05-09 05:00:00,8588.0
-2015-05-09 06:00:00,8576.0
-2015-05-09 07:00:00,8655.0
-2015-05-09 08:00:00,8728.0
-2015-05-09 09:00:00,9036.0
-2015-05-09 10:00:00,9483.0
-2015-05-09 11:00:00,9787.0
-2015-05-09 12:00:00,9850.0
-2015-05-09 13:00:00,9907.0
-2015-05-09 14:00:00,9970.0
-2015-05-09 15:00:00,9842.0
-2015-05-09 16:00:00,9759.0
-2015-05-09 17:00:00,9583.0
-2015-05-09 18:00:00,9517.0
-2015-05-09 19:00:00,9369.0
-2015-05-09 20:00:00,9319.0
-2015-05-09 21:00:00,9425.0
-2015-05-09 22:00:00,9866.0
-2015-05-09 23:00:00,9673.0
-2015-05-10 00:00:00,9191.0
-2015-05-08 01:00:00,10338.0
-2015-05-08 02:00:00,9655.0
-2015-05-08 03:00:00,9218.0
-2015-05-08 04:00:00,8924.0
-2015-05-08 05:00:00,8776.0
-2015-05-08 06:00:00,8908.0
-2015-05-08 07:00:00,9496.0
-2015-05-08 08:00:00,10308.0
-2015-05-08 09:00:00,11277.0
-2015-05-08 10:00:00,12006.0
-2015-05-08 11:00:00,12519.0
-2015-05-08 12:00:00,12913.0
-2015-05-08 13:00:00,13270.0
-2015-05-08 14:00:00,13611.0
-2015-05-08 15:00:00,13947.0
-2015-05-08 16:00:00,13979.0
-2015-05-08 17:00:00,13793.0
-2015-05-08 18:00:00,13310.0
-2015-05-08 19:00:00,12822.0
-2015-05-08 20:00:00,12339.0
-2015-05-08 21:00:00,12281.0
-2015-05-08 22:00:00,12258.0
-2015-05-08 23:00:00,11862.0
-2015-05-09 00:00:00,10998.0
-2015-05-07 01:00:00,9372.0
-2015-05-07 02:00:00,8756.0
-2015-05-07 03:00:00,8406.0
-2015-05-07 04:00:00,8223.0
-2015-05-07 05:00:00,8148.0
-2015-05-07 06:00:00,8342.0
-2015-05-07 07:00:00,8920.0
-2015-05-07 08:00:00,9779.0
-2015-05-07 09:00:00,10731.0
-2015-05-07 10:00:00,11371.0
-2015-05-07 11:00:00,11818.0
-2015-05-07 12:00:00,12309.0
-2015-05-07 13:00:00,12669.0
-2015-05-07 14:00:00,12800.0
-2015-05-07 15:00:00,13003.0
-2015-05-07 16:00:00,13143.0
-2015-05-07 17:00:00,13090.0
-2015-05-07 18:00:00,13087.0
-2015-05-07 19:00:00,12969.0
-2015-05-07 20:00:00,12623.0
-2015-05-07 21:00:00,12494.0
-2015-05-07 22:00:00,12692.0
-2015-05-07 23:00:00,12197.0
-2015-05-08 00:00:00,11269.0
-2015-05-06 01:00:00,9076.0
-2015-05-06 02:00:00,8606.0
-2015-05-06 03:00:00,8325.0
-2015-05-06 04:00:00,8119.0
-2015-05-06 05:00:00,8096.0
-2015-05-06 06:00:00,8240.0
-2015-05-06 07:00:00,8894.0
-2015-05-06 08:00:00,9756.0
-2015-05-06 09:00:00,10496.0
-2015-05-06 10:00:00,10869.0
-2015-05-06 11:00:00,11162.0
-2015-05-06 12:00:00,11428.0
-2015-05-06 13:00:00,11632.0
-2015-05-06 14:00:00,11811.0
-2015-05-06 15:00:00,12056.0
-2015-05-06 16:00:00,12118.0
-2015-05-06 17:00:00,12056.0
-2015-05-06 18:00:00,11923.0
-2015-05-06 19:00:00,11697.0
-2015-05-06 20:00:00,11306.0
-2015-05-06 21:00:00,11212.0
-2015-05-06 22:00:00,11542.0
-2015-05-06 23:00:00,11125.0
-2015-05-07 00:00:00,10250.0
-2015-05-05 01:00:00,9077.0
-2015-05-05 02:00:00,8552.0
-2015-05-05 03:00:00,8229.0
-2015-05-05 04:00:00,8031.0
-2015-05-05 05:00:00,8027.0
-2015-05-05 06:00:00,8250.0
-2015-05-05 07:00:00,8882.0
-2015-05-05 08:00:00,9745.0
-2015-05-05 09:00:00,10439.0
-2015-05-05 10:00:00,10780.0
-2015-05-05 11:00:00,11028.0
-2015-05-05 12:00:00,11192.0
-2015-05-05 13:00:00,11195.0
-2015-05-05 14:00:00,11175.0
-2015-05-05 15:00:00,11181.0
-2015-05-05 16:00:00,11071.0
-2015-05-05 17:00:00,10943.0
-2015-05-05 18:00:00,10842.0
-2015-05-05 19:00:00,10705.0
-2015-05-05 20:00:00,10564.0
-2015-05-05 21:00:00,10703.0
-2015-05-05 22:00:00,11026.0
-2015-05-05 23:00:00,10634.0
-2015-05-06 00:00:00,9852.0
-2015-05-04 01:00:00,8720.0
-2015-05-04 02:00:00,8319.0
-2015-05-04 03:00:00,8046.0
-2015-05-04 04:00:00,7936.0
-2015-05-04 05:00:00,7856.0
-2015-05-04 06:00:00,8087.0
-2015-05-04 07:00:00,8773.0
-2015-05-04 08:00:00,9743.0
-2015-05-04 09:00:00,10551.0
-2015-05-04 10:00:00,10991.0
-2015-05-04 11:00:00,11293.0
-2015-05-04 12:00:00,11613.0
-2015-05-04 13:00:00,11800.0
-2015-05-04 14:00:00,11903.0
-2015-05-04 15:00:00,11954.0
-2015-05-04 16:00:00,11885.0
-2015-05-04 17:00:00,11765.0
-2015-05-04 18:00:00,11578.0
-2015-05-04 19:00:00,11306.0
-2015-05-04 20:00:00,10982.0
-2015-05-04 21:00:00,10908.0
-2015-05-04 22:00:00,11165.0
-2015-05-04 23:00:00,10723.0
-2015-05-05 00:00:00,9886.0
-2015-05-03 01:00:00,8601.0
-2015-05-03 02:00:00,8198.0
-2015-05-03 03:00:00,7867.0
-2015-05-03 04:00:00,7631.0
-2015-05-03 05:00:00,7510.0
-2015-05-03 06:00:00,7473.0
-2015-05-03 07:00:00,7523.0
-2015-05-03 08:00:00,7433.0
-2015-05-03 09:00:00,7727.0
-2015-05-03 10:00:00,8175.0
-2015-05-03 11:00:00,8553.0
-2015-05-03 12:00:00,8881.0
-2015-05-03 13:00:00,9093.0
-2015-05-03 14:00:00,9287.0
-2015-05-03 15:00:00,9284.0
-2015-05-03 16:00:00,9336.0
-2015-05-03 17:00:00,9361.0
-2015-05-03 18:00:00,9483.0
-2015-05-03 19:00:00,9694.0
-2015-05-03 20:00:00,9931.0
-2015-05-03 21:00:00,10046.0
-2015-05-03 22:00:00,10175.0
-2015-05-03 23:00:00,9830.0
-2015-05-04 00:00:00,9280.0
-2015-05-02 01:00:00,9041.0
-2015-05-02 02:00:00,8455.0
-2015-05-02 03:00:00,8177.0
-2015-05-02 04:00:00,7920.0
-2015-05-02 05:00:00,7864.0
-2015-05-02 06:00:00,7881.0
-2015-05-02 07:00:00,8078.0
-2015-05-02 08:00:00,8189.0
-2015-05-02 09:00:00,8628.0
-2015-05-02 10:00:00,9093.0
-2015-05-02 11:00:00,9390.0
-2015-05-02 12:00:00,9656.0
-2015-05-02 13:00:00,9700.0
-2015-05-02 14:00:00,9726.0
-2015-05-02 15:00:00,9607.0
-2015-05-02 16:00:00,9568.0
-2015-05-02 17:00:00,9541.0
-2015-05-02 18:00:00,9555.0
-2015-05-02 19:00:00,9490.0
-2015-05-02 20:00:00,9444.0
-2015-05-02 21:00:00,9505.0
-2015-05-02 22:00:00,9923.0
-2015-05-02 23:00:00,9689.0
-2015-05-03 00:00:00,9167.0
-2015-05-01 01:00:00,9254.0
-2015-05-01 02:00:00,8753.0
-2015-05-01 03:00:00,8509.0
-2015-05-01 04:00:00,8385.0
-2015-05-01 05:00:00,8389.0
-2015-05-01 06:00:00,8634.0
-2015-05-01 07:00:00,9248.0
-2015-05-01 08:00:00,9961.0
-2015-05-01 09:00:00,10500.0
-2015-05-01 10:00:00,10678.0
-2015-05-01 11:00:00,10772.0
-2015-05-01 12:00:00,10925.0
-2015-05-01 13:00:00,10916.0
-2015-05-01 14:00:00,10914.0
-2015-05-01 15:00:00,10972.0
-2015-05-01 16:00:00,10846.0
-2015-05-01 17:00:00,10701.0
-2015-05-01 18:00:00,10549.0
-2015-05-01 19:00:00,10328.0
-2015-05-01 20:00:00,10136.0
-2015-05-01 21:00:00,10251.0
-2015-05-01 22:00:00,10611.0
-2015-05-01 23:00:00,10323.0
-2015-05-02 00:00:00,9670.0
-2015-04-30 01:00:00,9058.0
-2015-04-30 02:00:00,8593.0
-2015-04-30 03:00:00,8343.0
-2015-04-30 04:00:00,8209.0
-2015-04-30 05:00:00,8187.0
-2015-04-30 06:00:00,8425.0
-2015-04-30 07:00:00,9108.0
-2015-04-30 08:00:00,9962.0
-2015-04-30 09:00:00,10676.0
-2015-04-30 10:00:00,10919.0
-2015-04-30 11:00:00,10944.0
-2015-04-30 12:00:00,11004.0
-2015-04-30 13:00:00,10985.0
-2015-04-30 14:00:00,10887.0
-2015-04-30 15:00:00,10911.0
-2015-04-30 16:00:00,10804.0
-2015-04-30 17:00:00,10620.0
-2015-04-30 18:00:00,10478.0
-2015-04-30 19:00:00,10357.0
-2015-04-30 20:00:00,10138.0
-2015-04-30 21:00:00,10338.0
-2015-04-30 22:00:00,10899.0
-2015-04-30 23:00:00,10615.0
-2015-05-01 00:00:00,9914.0
-2015-04-29 01:00:00,9061.0
-2015-04-29 02:00:00,8639.0
-2015-04-29 03:00:00,8391.0
-2015-04-29 04:00:00,8259.0
-2015-04-29 05:00:00,8268.0
-2015-04-29 06:00:00,8517.0
-2015-04-29 07:00:00,9160.0
-2015-04-29 08:00:00,9921.0
-2015-04-29 09:00:00,10474.0
-2015-04-29 10:00:00,10664.0
-2015-04-29 11:00:00,10794.0
-2015-04-29 12:00:00,10901.0
-2015-04-29 13:00:00,10929.0
-2015-04-29 14:00:00,10903.0
-2015-04-29 15:00:00,10926.0
-2015-04-29 16:00:00,10823.0
-2015-04-29 17:00:00,10701.0
-2015-04-29 18:00:00,10552.0
-2015-04-29 19:00:00,10336.0
-2015-04-29 20:00:00,10290.0
-2015-04-29 21:00:00,10495.0
-2015-04-29 22:00:00,10862.0
-2015-04-29 23:00:00,10466.0
-2015-04-30 00:00:00,9766.0
-2015-04-28 01:00:00,9178.0
-2015-04-28 02:00:00,8759.0
-2015-04-28 03:00:00,8541.0
-2015-04-28 04:00:00,8416.0
-2015-04-28 05:00:00,8410.0
-2015-04-28 06:00:00,8670.0
-2015-04-28 07:00:00,9324.0
-2015-04-28 08:00:00,10122.0
-2015-04-28 09:00:00,10686.0
-2015-04-28 10:00:00,10841.0
-2015-04-28 11:00:00,10914.0
-2015-04-28 12:00:00,10984.0
-2015-04-28 13:00:00,10970.0
-2015-04-28 14:00:00,10954.0
-2015-04-28 15:00:00,10947.0
-2015-04-28 16:00:00,10851.0
-2015-04-28 17:00:00,10697.0
-2015-04-28 18:00:00,10589.0
-2015-04-28 19:00:00,10404.0
-2015-04-28 20:00:00,10227.0
-2015-04-28 21:00:00,10388.0
-2015-04-28 22:00:00,10887.0
-2015-04-28 23:00:00,10494.0
-2015-04-29 00:00:00,9791.0
-2015-04-27 01:00:00,8693.0
-2015-04-27 02:00:00,8353.0
-2015-04-27 03:00:00,8210.0
-2015-04-27 04:00:00,8132.0
-2015-04-27 05:00:00,8271.0
-2015-04-27 06:00:00,8578.0
-2015-04-27 07:00:00,9325.0
-2015-04-27 08:00:00,10117.0
-2015-04-27 09:00:00,10703.0
-2015-04-27 10:00:00,10802.0
-2015-04-27 11:00:00,10887.0
-2015-04-27 12:00:00,10974.0
-2015-04-27 13:00:00,10952.0
-2015-04-27 14:00:00,10904.0
-2015-04-27 15:00:00,10922.0
-2015-04-27 16:00:00,10793.0
-2015-04-27 17:00:00,10656.0
-2015-04-27 18:00:00,10539.0
-2015-04-27 19:00:00,10402.0
-2015-04-27 20:00:00,10281.0
-2015-04-27 21:00:00,10510.0
-2015-04-27 22:00:00,10994.0
-2015-04-27 23:00:00,10608.0
-2015-04-28 00:00:00,9886.0
-2015-04-26 01:00:00,9052.0
-2015-04-26 02:00:00,8683.0
-2015-04-26 03:00:00,8359.0
-2015-04-26 04:00:00,8269.0
-2015-04-26 05:00:00,8174.0
-2015-04-26 06:00:00,8221.0
-2015-04-26 07:00:00,8280.0
-2015-04-26 08:00:00,8273.0
-2015-04-26 09:00:00,8414.0
-2015-04-26 10:00:00,8654.0
-2015-04-26 11:00:00,8772.0
-2015-04-26 12:00:00,8859.0
-2015-04-26 13:00:00,8853.0
-2015-04-26 14:00:00,8836.0
-2015-04-26 15:00:00,8790.0
-2015-04-26 16:00:00,8711.0
-2015-04-26 17:00:00,8649.0
-2015-04-26 18:00:00,8645.0
-2015-04-26 19:00:00,8753.0
-2015-04-26 20:00:00,8872.0
-2015-04-26 21:00:00,9147.0
-2015-04-26 22:00:00,9775.0
-2015-04-26 23:00:00,9584.0
-2015-04-27 00:00:00,9141.0
-2015-04-25 01:00:00,9472.0
-2015-04-25 02:00:00,8998.0
-2015-04-25 03:00:00,8684.0
-2015-04-25 04:00:00,8499.0
-2015-04-25 05:00:00,8417.0
-2015-04-25 06:00:00,8435.0
-2015-04-25 07:00:00,8659.0
-2015-04-25 08:00:00,9008.0
-2015-04-25 09:00:00,9349.0
-2015-04-25 10:00:00,9854.0
-2015-04-25 11:00:00,10159.0
-2015-04-25 12:00:00,10339.0
-2015-04-25 13:00:00,10319.0
-2015-04-25 14:00:00,10239.0
-2015-04-25 15:00:00,10003.0
-2015-04-25 16:00:00,9779.0
-2015-04-25 17:00:00,9625.0
-2015-04-25 18:00:00,9556.0
-2015-04-25 19:00:00,9616.0
-2015-04-25 20:00:00,9726.0
-2015-04-25 21:00:00,10022.0
-2015-04-25 22:00:00,10285.0
-2015-04-25 23:00:00,10035.0
-2015-04-26 00:00:00,9614.0
-2015-04-24 01:00:00,9416.0
-2015-04-24 02:00:00,9018.0
-2015-04-24 03:00:00,8780.0
-2015-04-24 04:00:00,8665.0
-2015-04-24 05:00:00,8670.0
-2015-04-24 06:00:00,8923.0
-2015-04-24 07:00:00,9574.0
-2015-04-24 08:00:00,10347.0
-2015-04-24 09:00:00,10850.0
-2015-04-24 10:00:00,11021.0
-2015-04-24 11:00:00,11087.0
-2015-04-24 12:00:00,11103.0
-2015-04-24 13:00:00,11030.0
-2015-04-24 14:00:00,10972.0
-2015-04-24 15:00:00,10998.0
-2015-04-24 16:00:00,10838.0
-2015-04-24 17:00:00,10720.0
-2015-04-24 18:00:00,10636.0
-2015-04-24 19:00:00,10589.0
-2015-04-24 20:00:00,10613.0
-2015-04-24 21:00:00,10899.0
-2015-04-24 22:00:00,11003.0
-2015-04-24 23:00:00,10751.0
-2015-04-25 00:00:00,10098.0
-2015-04-23 01:00:00,9690.0
-2015-04-23 02:00:00,9234.0
-2015-04-23 03:00:00,8996.0
-2015-04-23 04:00:00,8861.0
-2015-04-23 05:00:00,8850.0
-2015-04-23 06:00:00,9142.0
-2015-04-23 07:00:00,9800.0
-2015-04-23 08:00:00,10579.0
-2015-04-23 09:00:00,11042.0
-2015-04-23 10:00:00,11200.0
-2015-04-23 11:00:00,11191.0
-2015-04-23 12:00:00,11239.0
-2015-04-23 13:00:00,11170.0
-2015-04-23 14:00:00,11073.0
-2015-04-23 15:00:00,11033.0
-2015-04-23 16:00:00,10924.0
-2015-04-23 17:00:00,10761.0
-2015-04-23 18:00:00,10628.0
-2015-04-23 19:00:00,10465.0
-2015-04-23 20:00:00,10337.0
-2015-04-23 21:00:00,10583.0
-2015-04-23 22:00:00,11101.0
-2015-04-23 23:00:00,10779.0
-2015-04-24 00:00:00,10119.0
-2015-04-22 01:00:00,9536.0
-2015-04-22 02:00:00,9148.0
-2015-04-22 03:00:00,8878.0
-2015-04-22 04:00:00,8686.0
-2015-04-22 05:00:00,8694.0
-2015-04-22 06:00:00,8959.0
-2015-04-22 07:00:00,9659.0
-2015-04-22 08:00:00,10589.0
-2015-04-22 09:00:00,11277.0
-2015-04-22 10:00:00,11583.0
-2015-04-22 11:00:00,11633.0
-2015-04-22 12:00:00,11721.0
-2015-04-22 13:00:00,11705.0
-2015-04-22 14:00:00,11657.0
-2015-04-22 15:00:00,11572.0
-2015-04-22 16:00:00,11456.0
-2015-04-22 17:00:00,11299.0
-2015-04-22 18:00:00,11165.0
-2015-04-22 19:00:00,11078.0
-2015-04-22 20:00:00,10954.0
-2015-04-22 21:00:00,11220.0
-2015-04-22 22:00:00,11481.0
-2015-04-22 23:00:00,11018.0
-2015-04-23 00:00:00,10330.0
-2015-04-21 01:00:00,9362.0
-2015-04-21 02:00:00,8919.0
-2015-04-21 03:00:00,8645.0
-2015-04-21 04:00:00,8535.0
-2015-04-21 05:00:00,8506.0
-2015-04-21 06:00:00,8791.0
-2015-04-21 07:00:00,9485.0
-2015-04-21 08:00:00,10338.0
-2015-04-21 09:00:00,10981.0
-2015-04-21 10:00:00,11217.0
-2015-04-21 11:00:00,11372.0
-2015-04-21 12:00:00,11429.0
-2015-04-21 13:00:00,11393.0
-2015-04-21 14:00:00,11302.0
-2015-04-21 15:00:00,11206.0
-2015-04-21 16:00:00,11053.0
-2015-04-21 17:00:00,10930.0
-2015-04-21 18:00:00,10760.0
-2015-04-21 19:00:00,10649.0
-2015-04-21 20:00:00,10590.0
-2015-04-21 21:00:00,10905.0
-2015-04-21 22:00:00,11332.0
-2015-04-21 23:00:00,10917.0
-2015-04-22 00:00:00,10194.0
-2015-04-20 01:00:00,8388.0
-2015-04-20 02:00:00,8054.0
-2015-04-20 03:00:00,7879.0
-2015-04-20 04:00:00,7789.0
-2015-04-20 05:00:00,7811.0
-2015-04-20 06:00:00,8100.0
-2015-04-20 07:00:00,8792.0
-2015-04-20 08:00:00,9876.0
-2015-04-20 09:00:00,10628.0
-2015-04-20 10:00:00,10953.0
-2015-04-20 11:00:00,11131.0
-2015-04-20 12:00:00,11297.0
-2015-04-20 13:00:00,11332.0
-2015-04-20 14:00:00,11308.0
-2015-04-20 15:00:00,11409.0
-2015-04-20 16:00:00,11263.0
-2015-04-20 17:00:00,11132.0
-2015-04-20 18:00:00,11095.0
-2015-04-20 19:00:00,11049.0
-2015-04-20 20:00:00,10937.0
-2015-04-20 21:00:00,11062.0
-2015-04-20 22:00:00,11317.0
-2015-04-20 23:00:00,10831.0
-2015-04-21 00:00:00,10087.0
-2015-04-19 01:00:00,8434.0
-2015-04-19 02:00:00,8027.0
-2015-04-19 03:00:00,7705.0
-2015-04-19 04:00:00,7495.0
-2015-04-19 05:00:00,7439.0
-2015-04-19 06:00:00,7432.0
-2015-04-19 07:00:00,7541.0
-2015-04-19 08:00:00,7505.0
-2015-04-19 09:00:00,7694.0
-2015-04-19 10:00:00,8052.0
-2015-04-19 11:00:00,8371.0
-2015-04-19 12:00:00,8594.0
-2015-04-19 13:00:00,8765.0
-2015-04-19 14:00:00,8782.0
-2015-04-19 15:00:00,8841.0
-2015-04-19 16:00:00,8794.0
-2015-04-19 17:00:00,8781.0
-2015-04-19 18:00:00,9025.0
-2015-04-19 19:00:00,9183.0
-2015-04-19 20:00:00,9352.0
-2015-04-19 21:00:00,9713.0
-2015-04-19 22:00:00,9795.0
-2015-04-19 23:00:00,9438.0
-2015-04-20 00:00:00,8928.0
-2015-04-18 01:00:00,9178.0
-2015-04-18 02:00:00,8612.0
-2015-04-18 03:00:00,8260.0
-2015-04-18 04:00:00,7978.0
-2015-04-18 05:00:00,7883.0
-2015-04-18 06:00:00,7891.0
-2015-04-18 07:00:00,8097.0
-2015-04-18 08:00:00,8174.0
-2015-04-18 09:00:00,8597.0
-2015-04-18 10:00:00,9074.0
-2015-04-18 11:00:00,9348.0
-2015-04-18 12:00:00,9482.0
-2015-04-18 13:00:00,9487.0
-2015-04-18 14:00:00,9449.0
-2015-04-18 15:00:00,9344.0
-2015-04-18 16:00:00,9195.0
-2015-04-18 17:00:00,9107.0
-2015-04-18 18:00:00,9017.0
-2015-04-18 19:00:00,9009.0
-2015-04-18 20:00:00,8932.0
-2015-04-18 21:00:00,9259.0
-2015-04-18 22:00:00,9613.0
-2015-04-18 23:00:00,9342.0
-2015-04-19 00:00:00,8947.0
-2015-04-17 01:00:00,8954.0
-2015-04-17 02:00:00,8442.0
-2015-04-17 03:00:00,8174.0
-2015-04-17 04:00:00,8034.0
-2015-04-17 05:00:00,8013.0
-2015-04-17 06:00:00,8202.0
-2015-04-17 07:00:00,8846.0
-2015-04-17 08:00:00,9625.0
-2015-04-17 09:00:00,10208.0
-2015-04-17 10:00:00,10585.0
-2015-04-17 11:00:00,10914.0
-2015-04-17 12:00:00,11145.0
-2015-04-17 13:00:00,11260.0
-2015-04-17 14:00:00,11303.0
-2015-04-17 15:00:00,11368.0
-2015-04-17 16:00:00,11296.0
-2015-04-17 17:00:00,11185.0
-2015-04-17 18:00:00,11017.0
-2015-04-17 19:00:00,10790.0
-2015-04-17 20:00:00,10595.0
-2015-04-17 21:00:00,10773.0
-2015-04-17 22:00:00,10927.0
-2015-04-17 23:00:00,10541.0
-2015-04-18 00:00:00,9870.0
-2015-04-16 01:00:00,9113.0
-2015-04-16 02:00:00,8606.0
-2015-04-16 03:00:00,8314.0
-2015-04-16 04:00:00,8114.0
-2015-04-16 05:00:00,8065.0
-2015-04-16 06:00:00,8287.0
-2015-04-16 07:00:00,8926.0
-2015-04-16 08:00:00,9930.0
-2015-04-16 09:00:00,10551.0
-2015-04-16 10:00:00,10793.0
-2015-04-16 11:00:00,10916.0
-2015-04-16 12:00:00,11008.0
-2015-04-16 13:00:00,10960.0
-2015-04-16 14:00:00,10898.0
-2015-04-16 15:00:00,10931.0
-2015-04-16 16:00:00,10872.0
-2015-04-16 17:00:00,10756.0
-2015-04-16 18:00:00,10668.0
-2015-04-16 19:00:00,10531.0
-2015-04-16 20:00:00,10322.0
-2015-04-16 21:00:00,10557.0
-2015-04-16 22:00:00,10856.0
-2015-04-16 23:00:00,10404.0
-2015-04-17 00:00:00,9674.0
-2015-04-15 01:00:00,9071.0
-2015-04-15 02:00:00,8602.0
-2015-04-15 03:00:00,8324.0
-2015-04-15 04:00:00,8183.0
-2015-04-15 05:00:00,8154.0
-2015-04-15 06:00:00,8409.0
-2015-04-15 07:00:00,9077.0
-2015-04-15 08:00:00,9955.0
-2015-04-15 09:00:00,10563.0
-2015-04-15 10:00:00,10799.0
-2015-04-15 11:00:00,10883.0
-2015-04-15 12:00:00,11059.0
-2015-04-15 13:00:00,11110.0
-2015-04-15 14:00:00,11089.0
-2015-04-15 15:00:00,11133.0
-2015-04-15 16:00:00,11046.0
-2015-04-15 17:00:00,10856.0
-2015-04-15 18:00:00,10744.0
-2015-04-15 19:00:00,10581.0
-2015-04-15 20:00:00,10399.0
-2015-04-15 21:00:00,10739.0
-2015-04-15 22:00:00,10973.0
-2015-04-15 23:00:00,10571.0
-2015-04-16 00:00:00,9842.0
-2015-04-14 01:00:00,9016.0
-2015-04-14 02:00:00,8538.0
-2015-04-14 03:00:00,8282.0
-2015-04-14 04:00:00,8133.0
-2015-04-14 05:00:00,8117.0
-2015-04-14 06:00:00,8338.0
-2015-04-14 07:00:00,9048.0
-2015-04-14 08:00:00,9892.0
-2015-04-14 09:00:00,10428.0
-2015-04-14 10:00:00,10668.0
-2015-04-14 11:00:00,10835.0
-2015-04-14 12:00:00,10979.0
-2015-04-14 13:00:00,11000.0
-2015-04-14 14:00:00,10994.0
-2015-04-14 15:00:00,11044.0
-2015-04-14 16:00:00,10974.0
-2015-04-14 17:00:00,10849.0
-2015-04-14 18:00:00,10747.0
-2015-04-14 19:00:00,10584.0
-2015-04-14 20:00:00,10379.0
-2015-04-14 21:00:00,10684.0
-2015-04-14 22:00:00,11002.0
-2015-04-14 23:00:00,10490.0
-2015-04-15 00:00:00,9661.0
-2015-04-13 01:00:00,8474.0
-2015-04-13 02:00:00,8154.0
-2015-04-13 03:00:00,7945.0
-2015-04-13 04:00:00,7828.0
-2015-04-13 05:00:00,7841.0
-2015-04-13 06:00:00,8119.0
-2015-04-13 07:00:00,8879.0
-2015-04-13 08:00:00,9966.0
-2015-04-13 09:00:00,10585.0
-2015-04-13 10:00:00,10799.0
-2015-04-13 11:00:00,11039.0
-2015-04-13 12:00:00,11173.0
-2015-04-13 13:00:00,11241.0
-2015-04-13 14:00:00,11210.0
-2015-04-13 15:00:00,11228.0
-2015-04-13 16:00:00,11128.0
-2015-04-13 17:00:00,10995.0
-2015-04-13 18:00:00,10827.0
-2015-04-13 19:00:00,10628.0
-2015-04-13 20:00:00,10443.0
-2015-04-13 21:00:00,10687.0
-2015-04-13 22:00:00,10934.0
-2015-04-13 23:00:00,10465.0
-2015-04-14 00:00:00,9722.0
-2015-04-12 01:00:00,8667.0
-2015-04-12 02:00:00,8326.0
-2015-04-12 03:00:00,8042.0
-2015-04-12 04:00:00,7892.0
-2015-04-12 05:00:00,7826.0
-2015-04-12 06:00:00,7845.0
-2015-04-12 07:00:00,7978.0
-2015-04-12 08:00:00,8026.0
-2015-04-12 09:00:00,8143.0
-2015-04-12 10:00:00,8451.0
-2015-04-12 11:00:00,8654.0
-2015-04-12 12:00:00,8833.0
-2015-04-12 13:00:00,8914.0
-2015-04-12 14:00:00,8944.0
-2015-04-12 15:00:00,8916.0
-2015-04-12 16:00:00,8923.0
-2015-04-12 17:00:00,8858.0
-2015-04-12 18:00:00,8982.0
-2015-04-12 19:00:00,9069.0
-2015-04-12 20:00:00,9222.0
-2015-04-12 21:00:00,9685.0
-2015-04-12 22:00:00,9817.0
-2015-04-12 23:00:00,9479.0
-2015-04-13 00:00:00,9002.0
-2015-04-11 01:00:00,9314.0
-2015-04-11 02:00:00,8902.0
-2015-04-11 03:00:00,8636.0
-2015-04-11 04:00:00,8534.0
-2015-04-11 05:00:00,8418.0
-2015-04-11 06:00:00,8554.0
-2015-04-11 07:00:00,8793.0
-2015-04-11 08:00:00,9054.0
-2015-04-11 09:00:00,9227.0
-2015-04-11 10:00:00,9469.0
-2015-04-11 11:00:00,9585.0
-2015-04-11 12:00:00,9668.0
-2015-04-11 13:00:00,9603.0
-2015-04-11 14:00:00,9505.0
-2015-04-11 15:00:00,9314.0
-2015-04-11 16:00:00,9203.0
-2015-04-11 17:00:00,9123.0
-2015-04-11 18:00:00,9060.0
-2015-04-11 19:00:00,9052.0
-2015-04-11 20:00:00,9031.0
-2015-04-11 21:00:00,9448.0
-2015-04-11 22:00:00,9855.0
-2015-04-11 23:00:00,9602.0
-2015-04-12 00:00:00,9205.0
-2015-04-10 01:00:00,9340.0
-2015-04-10 02:00:00,8816.0
-2015-04-10 03:00:00,8525.0
-2015-04-10 04:00:00,8396.0
-2015-04-10 05:00:00,8372.0
-2015-04-10 06:00:00,8635.0
-2015-04-10 07:00:00,9319.0
-2015-04-10 08:00:00,10284.0
-2015-04-10 09:00:00,10912.0
-2015-04-10 10:00:00,11156.0
-2015-04-10 11:00:00,11100.0
-2015-04-10 12:00:00,11125.0
-2015-04-10 13:00:00,11082.0
-2015-04-10 14:00:00,11024.0
-2015-04-10 15:00:00,11024.0
-2015-04-10 16:00:00,10908.0
-2015-04-10 17:00:00,10678.0
-2015-04-10 18:00:00,10486.0
-2015-04-10 19:00:00,10326.0
-2015-04-10 20:00:00,10283.0
-2015-04-10 21:00:00,10718.0
-2015-04-10 22:00:00,10809.0
-2015-04-10 23:00:00,10520.0
-2015-04-11 00:00:00,9952.0
-2015-04-09 01:00:00,9669.0
-2015-04-09 02:00:00,9176.0
-2015-04-09 03:00:00,8834.0
-2015-04-09 04:00:00,8658.0
-2015-04-09 05:00:00,8622.0
-2015-04-09 06:00:00,8853.0
-2015-04-09 07:00:00,9545.0
-2015-04-09 08:00:00,10555.0
-2015-04-09 09:00:00,11180.0
-2015-04-09 10:00:00,11372.0
-2015-04-09 11:00:00,11491.0
-2015-04-09 12:00:00,11721.0
-2015-04-09 13:00:00,11858.0
-2015-04-09 14:00:00,11777.0
-2015-04-09 15:00:00,11702.0
-2015-04-09 16:00:00,11627.0
-2015-04-09 17:00:00,11608.0
-2015-04-09 18:00:00,11375.0
-2015-04-09 19:00:00,11253.0
-2015-04-09 20:00:00,11245.0
-2015-04-09 21:00:00,11509.0
-2015-04-09 22:00:00,11475.0
-2015-04-09 23:00:00,11029.0
-2015-04-10 00:00:00,10166.0
-2015-04-08 01:00:00,9573.0
-2015-04-08 02:00:00,9086.0
-2015-04-08 03:00:00,8799.0
-2015-04-08 04:00:00,8582.0
-2015-04-08 05:00:00,8535.0
-2015-04-08 06:00:00,8764.0
-2015-04-08 07:00:00,9455.0
-2015-04-08 08:00:00,10452.0
-2015-04-08 09:00:00,10998.0
-2015-04-08 10:00:00,11295.0
-2015-04-08 11:00:00,11335.0
-2015-04-08 12:00:00,11428.0
-2015-04-08 13:00:00,11448.0
-2015-04-08 14:00:00,11326.0
-2015-04-08 15:00:00,11258.0
-2015-04-08 16:00:00,11138.0
-2015-04-08 17:00:00,11083.0
-2015-04-08 18:00:00,11049.0
-2015-04-08 19:00:00,11023.0
-2015-04-08 20:00:00,11044.0
-2015-04-08 21:00:00,11439.0
-2015-04-08 22:00:00,11503.0
-2015-04-08 23:00:00,11070.0
-2015-04-09 00:00:00,10392.0
-2015-04-07 01:00:00,9393.0
-2015-04-07 02:00:00,8969.0
-2015-04-07 03:00:00,8721.0
-2015-04-07 04:00:00,8548.0
-2015-04-07 05:00:00,8503.0
-2015-04-07 06:00:00,8751.0
-2015-04-07 07:00:00,9491.0
-2015-04-07 08:00:00,10498.0
-2015-04-07 09:00:00,11082.0
-2015-04-07 10:00:00,11385.0
-2015-04-07 11:00:00,11587.0
-2015-04-07 12:00:00,11725.0
-2015-04-07 13:00:00,11700.0
-2015-04-07 14:00:00,11633.0
-2015-04-07 15:00:00,11635.0
-2015-04-07 16:00:00,11515.0
-2015-04-07 17:00:00,11414.0
-2015-04-07 18:00:00,11343.0
-2015-04-07 19:00:00,11327.0
-2015-04-07 20:00:00,11298.0
-2015-04-07 21:00:00,11660.0
-2015-04-07 22:00:00,11529.0
-2015-04-07 23:00:00,11040.0
-2015-04-08 00:00:00,10287.0
-2015-04-06 01:00:00,8270.0
-2015-04-06 02:00:00,7982.0
-2015-04-06 03:00:00,7840.0
-2015-04-06 04:00:00,7780.0
-2015-04-06 05:00:00,7856.0
-2015-04-06 06:00:00,8126.0
-2015-04-06 07:00:00,8931.0
-2015-04-06 08:00:00,9832.0
-2015-04-06 09:00:00,10426.0
-2015-04-06 10:00:00,10753.0
-2015-04-06 11:00:00,10928.0
-2015-04-06 12:00:00,10998.0
-2015-04-06 13:00:00,11018.0
-2015-04-06 14:00:00,10918.0
-2015-04-06 15:00:00,10912.0
-2015-04-06 16:00:00,10867.0
-2015-04-06 17:00:00,10723.0
-2015-04-06 18:00:00,10603.0
-2015-04-06 19:00:00,10591.0
-2015-04-06 20:00:00,10593.0
-2015-04-06 21:00:00,11070.0
-2015-04-06 22:00:00,11078.0
-2015-04-06 23:00:00,10703.0
-2015-04-07 00:00:00,10071.0
-2015-04-05 01:00:00,8592.0
-2015-04-05 02:00:00,8142.0
-2015-04-05 03:00:00,7891.0
-2015-04-05 04:00:00,7703.0
-2015-04-05 05:00:00,7653.0
-2015-04-05 06:00:00,7603.0
-2015-04-05 07:00:00,7726.0
-2015-04-05 08:00:00,7829.0
-2015-04-05 09:00:00,7886.0
-2015-04-05 10:00:00,8053.0
-2015-04-05 11:00:00,8223.0
-2015-04-05 12:00:00,8257.0
-2015-04-05 13:00:00,8217.0
-2015-04-05 14:00:00,8256.0
-2015-04-05 15:00:00,8092.0
-2015-04-05 16:00:00,8014.0
-2015-04-05 17:00:00,7866.0
-2015-04-05 18:00:00,7881.0
-2015-04-05 19:00:00,7914.0
-2015-04-05 20:00:00,8038.0
-2015-04-05 21:00:00,8621.0
-2015-04-05 22:00:00,9017.0
-2015-04-05 23:00:00,8853.0
-2015-04-06 00:00:00,8500.0
-2015-04-04 01:00:00,9295.0
-2015-04-04 02:00:00,8828.0
-2015-04-04 03:00:00,8615.0
-2015-04-04 04:00:00,8456.0
-2015-04-04 05:00:00,8442.0
-2015-04-04 06:00:00,8493.0
-2015-04-04 07:00:00,8797.0
-2015-04-04 08:00:00,9069.0
-2015-04-04 09:00:00,9275.0
-2015-04-04 10:00:00,9499.0
-2015-04-04 11:00:00,9665.0
-2015-04-04 12:00:00,9645.0
-2015-04-04 13:00:00,9593.0
-2015-04-04 14:00:00,9459.0
-2015-04-04 15:00:00,9242.0
-2015-04-04 16:00:00,9030.0
-2015-04-04 17:00:00,8968.0
-2015-04-04 18:00:00,8926.0
-2015-04-04 19:00:00,8920.0
-2015-04-04 20:00:00,8960.0
-2015-04-04 21:00:00,9496.0
-2015-04-04 22:00:00,9796.0
-2015-04-04 23:00:00,9648.0
-2015-04-05 00:00:00,9243.0
-2015-04-03 01:00:00,8978.0
-2015-04-03 02:00:00,8458.0
-2015-04-03 03:00:00,8170.0
-2015-04-03 04:00:00,8002.0
-2015-04-03 05:00:00,7945.0
-2015-04-03 06:00:00,8069.0
-2015-04-03 07:00:00,8577.0
-2015-04-03 08:00:00,9210.0
-2015-04-03 09:00:00,9612.0
-2015-04-03 10:00:00,10000.0
-2015-04-03 11:00:00,10113.0
-2015-04-03 12:00:00,10200.0
-2015-04-03 13:00:00,10198.0
-2015-04-03 14:00:00,10080.0
-2015-04-03 15:00:00,10123.0
-2015-04-03 16:00:00,10064.0
-2015-04-03 17:00:00,9942.0
-2015-04-03 18:00:00,9904.0
-2015-04-03 19:00:00,9983.0
-2015-04-03 20:00:00,10054.0
-2015-04-03 21:00:00,10405.0
-2015-04-03 22:00:00,10558.0
-2015-04-03 23:00:00,10332.0
-2015-04-04 00:00:00,9827.0
-2015-04-02 01:00:00,9152.0
-2015-04-02 02:00:00,8644.0
-2015-04-02 03:00:00,8307.0
-2015-04-02 04:00:00,8147.0
-2015-04-02 05:00:00,8132.0
-2015-04-02 06:00:00,8296.0
-2015-04-02 07:00:00,8909.0
-2015-04-02 08:00:00,9887.0
-2015-04-02 09:00:00,10585.0
-2015-04-02 10:00:00,10904.0
-2015-04-02 11:00:00,11085.0
-2015-04-02 12:00:00,11208.0
-2015-04-02 13:00:00,11218.0
-2015-04-02 14:00:00,11228.0
-2015-04-02 15:00:00,11221.0
-2015-04-02 16:00:00,11019.0
-2015-04-02 17:00:00,10821.0
-2015-04-02 18:00:00,10682.0
-2015-04-02 19:00:00,10533.0
-2015-04-02 20:00:00,10308.0
-2015-04-02 21:00:00,10701.0
-2015-04-02 22:00:00,10730.0
-2015-04-02 23:00:00,10359.0
-2015-04-03 00:00:00,9666.0
-2015-04-01 01:00:00,9491.0
-2015-04-01 02:00:00,9056.0
-2015-04-01 03:00:00,8813.0
-2015-04-01 04:00:00,8666.0
-2015-04-01 05:00:00,8639.0
-2015-04-01 06:00:00,8891.0
-2015-04-01 07:00:00,9561.0
-2015-04-01 08:00:00,10533.0
-2015-04-01 09:00:00,10953.0
-2015-04-01 10:00:00,11088.0
-2015-04-01 11:00:00,11109.0
-2015-04-01 12:00:00,11115.0
-2015-04-01 13:00:00,11086.0
-2015-04-01 14:00:00,11072.0
-2015-04-01 15:00:00,11106.0
-2015-04-01 16:00:00,11035.0
-2015-04-01 17:00:00,10944.0
-2015-04-01 18:00:00,10833.0
-2015-04-01 19:00:00,10668.0
-2015-04-01 20:00:00,10489.0
-2015-04-01 21:00:00,10895.0
-2015-04-01 22:00:00,11060.0
-2015-04-01 23:00:00,10622.0
-2015-04-02 00:00:00,9892.0
-2015-03-31 01:00:00,9397.0
-2015-03-31 02:00:00,8945.0
-2015-03-31 03:00:00,8663.0
-2015-03-31 04:00:00,8490.0
-2015-03-31 05:00:00,8459.0
-2015-03-31 06:00:00,8690.0
-2015-03-31 07:00:00,9437.0
-2015-03-31 08:00:00,10515.0
-2015-03-31 09:00:00,11022.0
-2015-03-31 10:00:00,11315.0
-2015-03-31 11:00:00,11383.0
-2015-03-31 12:00:00,11353.0
-2015-03-31 13:00:00,11262.0
-2015-03-31 14:00:00,11165.0
-2015-03-31 15:00:00,11114.0
-2015-03-31 16:00:00,10951.0
-2015-03-31 17:00:00,10793.0
-2015-03-31 18:00:00,10663.0
-2015-03-31 19:00:00,10559.0
-2015-03-31 20:00:00,10495.0
-2015-03-31 21:00:00,10992.0
-2015-03-31 22:00:00,11147.0
-2015-03-31 23:00:00,10772.0
-2015-04-01 00:00:00,10138.0
-2015-03-30 01:00:00,9330.0
-2015-03-30 02:00:00,8983.0
-2015-03-30 03:00:00,8804.0
-2015-03-30 04:00:00,8801.0
-2015-03-30 05:00:00,8910.0
-2015-03-30 06:00:00,9244.0
-2015-03-30 07:00:00,10021.0
-2015-03-30 08:00:00,11037.0
-2015-03-30 09:00:00,11314.0
-2015-03-30 10:00:00,11438.0
-2015-03-30 11:00:00,11397.0
-2015-03-30 12:00:00,11379.0
-2015-03-30 13:00:00,11276.0
-2015-03-30 14:00:00,11174.0
-2015-03-30 15:00:00,11141.0
-2015-03-30 16:00:00,10956.0
-2015-03-30 17:00:00,10829.0
-2015-03-30 18:00:00,10775.0
-2015-03-30 19:00:00,10755.0
-2015-03-30 20:00:00,10799.0
-2015-03-30 21:00:00,11189.0
-2015-03-30 22:00:00,11181.0
-2015-03-30 23:00:00,10775.0
-2015-03-31 00:00:00,10081.0
-2015-03-29 01:00:00,9946.0
-2015-03-29 02:00:00,9579.0
-2015-03-29 03:00:00,9328.0
-2015-03-29 04:00:00,9239.0
-2015-03-29 05:00:00,9144.0
-2015-03-29 06:00:00,9201.0
-2015-03-29 07:00:00,9303.0
-2015-03-29 08:00:00,9557.0
-2015-03-29 09:00:00,9487.0
-2015-03-29 10:00:00,9731.0
-2015-03-29 11:00:00,9919.0
-2015-03-29 12:00:00,10204.0
-2015-03-29 13:00:00,10436.0
-2015-03-29 14:00:00,10550.0
-2015-03-29 15:00:00,10544.0
-2015-03-29 16:00:00,10452.0
-2015-03-29 17:00:00,10118.0
-2015-03-29 18:00:00,10006.0
-2015-03-29 19:00:00,10093.0
-2015-03-29 20:00:00,10389.0
-2015-03-29 21:00:00,10720.0
-2015-03-29 22:00:00,10643.0
-2015-03-29 23:00:00,10310.0
-2015-03-30 00:00:00,9848.0
-2015-03-28 01:00:00,10603.0
-2015-03-28 02:00:00,10135.0
-2015-03-28 03:00:00,9895.0
-2015-03-28 04:00:00,9761.0
-2015-03-28 05:00:00,9716.0
-2015-03-28 06:00:00,9829.0
-2015-03-28 07:00:00,10111.0
-2015-03-28 08:00:00,10545.0
-2015-03-28 09:00:00,10628.0
-2015-03-28 10:00:00,10830.0
-2015-03-28 11:00:00,10898.0
-2015-03-28 12:00:00,10885.0
-2015-03-28 13:00:00,10778.0
-2015-03-28 14:00:00,10603.0
-2015-03-28 15:00:00,10329.0
-2015-03-28 16:00:00,10125.0
-2015-03-28 17:00:00,9916.0
-2015-03-28 18:00:00,9857.0
-2015-03-28 19:00:00,9841.0
-2015-03-28 20:00:00,10025.0
-2015-03-28 21:00:00,10703.0
-2015-03-28 22:00:00,11000.0
-2015-03-28 23:00:00,10814.0
-2015-03-29 00:00:00,10428.0
-2015-03-27 01:00:00,10173.0
-2015-03-27 02:00:00,9721.0
-2015-03-27 03:00:00,9490.0
-2015-03-27 04:00:00,9416.0
-2015-03-27 05:00:00,9429.0
-2015-03-27 06:00:00,9743.0
-2015-03-27 07:00:00,10503.0
-2015-03-27 08:00:00,11576.0
-2015-03-27 09:00:00,12076.0
-2015-03-27 10:00:00,12210.0
-2015-03-27 11:00:00,12205.0
-2015-03-27 12:00:00,12247.0
-2015-03-27 13:00:00,12232.0
-2015-03-27 14:00:00,12031.0
-2015-03-27 15:00:00,11973.0
-2015-03-27 16:00:00,11750.0
-2015-03-27 17:00:00,11521.0
-2015-03-27 18:00:00,11382.0
-2015-03-27 19:00:00,11329.0
-2015-03-27 20:00:00,11415.0
-2015-03-27 21:00:00,12069.0
-2015-03-27 22:00:00,12154.0
-2015-03-27 23:00:00,11857.0
-2015-03-28 00:00:00,11261.0
-2015-03-26 01:00:00,10161.0
-2015-03-26 02:00:00,9678.0
-2015-03-26 03:00:00,9426.0
-2015-03-26 04:00:00,9274.0
-2015-03-26 05:00:00,9267.0
-2015-03-26 06:00:00,9532.0
-2015-03-26 07:00:00,10268.0
-2015-03-26 08:00:00,11363.0
-2015-03-26 09:00:00,11803.0
-2015-03-26 10:00:00,11925.0
-2015-03-26 11:00:00,11895.0
-2015-03-26 12:00:00,11839.0
-2015-03-26 13:00:00,11775.0
-2015-03-26 14:00:00,11659.0
-2015-03-26 15:00:00,11661.0
-2015-03-26 16:00:00,11530.0
-2015-03-26 17:00:00,11409.0
-2015-03-26 18:00:00,11396.0
-2015-03-26 19:00:00,11472.0
-2015-03-26 20:00:00,11524.0
-2015-03-26 21:00:00,12007.0
-2015-03-26 22:00:00,11941.0
-2015-03-26 23:00:00,11505.0
-2015-03-27 00:00:00,10822.0
-2015-03-25 01:00:00,10244.0
-2015-03-25 02:00:00,9814.0
-2015-03-25 03:00:00,9541.0
-2015-03-25 04:00:00,9375.0
-2015-03-25 05:00:00,9323.0
-2015-03-25 06:00:00,9514.0
-2015-03-25 07:00:00,10189.0
-2015-03-25 08:00:00,11259.0
-2015-03-25 09:00:00,11855.0
-2015-03-25 10:00:00,12049.0
-2015-03-25 11:00:00,12148.0
-2015-03-25 12:00:00,12160.0
-2015-03-25 13:00:00,12089.0
-2015-03-25 14:00:00,12096.0
-2015-03-25 15:00:00,12084.0
-2015-03-25 16:00:00,11950.0
-2015-03-25 17:00:00,11859.0
-2015-03-25 18:00:00,11791.0
-2015-03-25 19:00:00,11723.0
-2015-03-25 20:00:00,11631.0
-2015-03-25 21:00:00,12062.0
-2015-03-25 22:00:00,12022.0
-2015-03-25 23:00:00,11579.0
-2015-03-26 00:00:00,10836.0
-2015-03-24 01:00:00,10460.0
-2015-03-24 02:00:00,10018.0
-2015-03-24 03:00:00,9783.0
-2015-03-24 04:00:00,9650.0
-2015-03-24 05:00:00,9694.0
-2015-03-24 06:00:00,9958.0
-2015-03-24 07:00:00,10730.0
-2015-03-24 08:00:00,11788.0
-2015-03-24 09:00:00,12170.0
-2015-03-24 10:00:00,12261.0
-2015-03-24 11:00:00,12218.0
-2015-03-24 12:00:00,12140.0
-2015-03-24 13:00:00,12038.0
-2015-03-24 14:00:00,11907.0
-2015-03-24 15:00:00,11863.0
-2015-03-24 16:00:00,11676.0
-2015-03-24 17:00:00,11577.0
-2015-03-24 18:00:00,11585.0
-2015-03-24 19:00:00,11635.0
-2015-03-24 20:00:00,11699.0
-2015-03-24 21:00:00,12242.0
-2015-03-24 22:00:00,12127.0
-2015-03-24 23:00:00,11659.0
-2015-03-25 00:00:00,10961.0
-2015-03-23 01:00:00,9708.0
-2015-03-23 02:00:00,9375.0
-2015-03-23 03:00:00,9212.0
-2015-03-23 04:00:00,9172.0
-2015-03-23 05:00:00,9217.0
-2015-03-23 06:00:00,9522.0
-2015-03-23 07:00:00,10285.0
-2015-03-23 08:00:00,11455.0
-2015-03-23 09:00:00,12020.0
-2015-03-23 10:00:00,12322.0
-2015-03-23 11:00:00,12440.0
-2015-03-23 12:00:00,12543.0
-2015-03-23 13:00:00,12480.0
-2015-03-23 14:00:00,12351.0
-2015-03-23 15:00:00,12342.0
-2015-03-23 16:00:00,12164.0
-2015-03-23 17:00:00,12008.0
-2015-03-23 18:00:00,12032.0
-2015-03-23 19:00:00,12022.0
-2015-03-23 20:00:00,12039.0
-2015-03-23 21:00:00,12483.0
-2015-03-23 22:00:00,12363.0
-2015-03-23 23:00:00,11886.0
-2015-03-24 00:00:00,11158.0
-2015-03-22 01:00:00,9250.0
-2015-03-22 02:00:00,8917.0
-2015-03-22 03:00:00,8676.0
-2015-03-22 04:00:00,8561.0
-2015-03-22 05:00:00,8473.0
-2015-03-22 06:00:00,8541.0
-2015-03-22 07:00:00,8697.0
-2015-03-22 08:00:00,9003.0
-2015-03-22 09:00:00,9061.0
-2015-03-22 10:00:00,9371.0
-2015-03-22 11:00:00,9613.0
-2015-03-22 12:00:00,9740.0
-2015-03-22 13:00:00,9745.0
-2015-03-22 14:00:00,9742.0
-2015-03-22 15:00:00,9694.0
-2015-03-22 16:00:00,9723.0
-2015-03-22 17:00:00,9672.0
-2015-03-22 18:00:00,9789.0
-2015-03-22 19:00:00,10030.0
-2015-03-22 20:00:00,10402.0
-2015-03-22 21:00:00,11039.0
-2015-03-22 22:00:00,11025.0
-2015-03-22 23:00:00,10728.0
-2015-03-23 00:00:00,10201.0
-2015-03-21 01:00:00,9681.0
-2015-03-21 02:00:00,9154.0
-2015-03-21 03:00:00,8904.0
-2015-03-21 04:00:00,8681.0
-2015-03-21 05:00:00,8673.0
-2015-03-21 06:00:00,8699.0
-2015-03-21 07:00:00,9007.0
-2015-03-21 08:00:00,9451.0
-2015-03-21 09:00:00,9608.0
-2015-03-21 10:00:00,9784.0
-2015-03-21 11:00:00,9914.0
-2015-03-21 12:00:00,9921.0
-2015-03-21 13:00:00,9826.0
-2015-03-21 14:00:00,9680.0
-2015-03-21 15:00:00,9462.0
-2015-03-21 16:00:00,9312.0
-2015-03-21 17:00:00,9165.0
-2015-03-21 18:00:00,9162.0
-2015-03-21 19:00:00,9203.0
-2015-03-21 20:00:00,9414.0
-2015-03-21 21:00:00,10085.0
-2015-03-21 22:00:00,10280.0
-2015-03-21 23:00:00,10072.0
-2015-03-22 00:00:00,9734.0
-2015-03-20 01:00:00,9731.0
-2015-03-20 02:00:00,9263.0
-2015-03-20 03:00:00,8994.0
-2015-03-20 04:00:00,8836.0
-2015-03-20 05:00:00,8797.0
-2015-03-20 06:00:00,9001.0
-2015-03-20 07:00:00,9670.0
-2015-03-20 08:00:00,10784.0
-2015-03-20 09:00:00,11294.0
-2015-03-20 10:00:00,11376.0
-2015-03-20 11:00:00,11364.0
-2015-03-20 12:00:00,11280.0
-2015-03-20 13:00:00,11131.0
-2015-03-20 14:00:00,11029.0
-2015-03-20 15:00:00,11021.0
-2015-03-20 16:00:00,10895.0
-2015-03-20 17:00:00,10736.0
-2015-03-20 18:00:00,10658.0
-2015-03-20 19:00:00,10549.0
-2015-03-20 20:00:00,10607.0
-2015-03-20 21:00:00,11144.0
-2015-03-20 22:00:00,11117.0
-2015-03-20 23:00:00,10832.0
-2015-03-21 00:00:00,10270.0
-2015-03-19 01:00:00,9648.0
-2015-03-19 02:00:00,9197.0
-2015-03-19 03:00:00,8941.0
-2015-03-19 04:00:00,8793.0
-2015-03-19 05:00:00,8801.0
-2015-03-19 06:00:00,9024.0
-2015-03-19 07:00:00,9747.0
-2015-03-19 08:00:00,10926.0
-2015-03-19 09:00:00,11316.0
-2015-03-19 10:00:00,11479.0
-2015-03-19 11:00:00,11527.0
-2015-03-19 12:00:00,11523.0
-2015-03-19 13:00:00,11491.0
-2015-03-19 14:00:00,11390.0
-2015-03-19 15:00:00,11334.0
-2015-03-19 16:00:00,11196.0
-2015-03-19 17:00:00,11126.0
-2015-03-19 18:00:00,11112.0
-2015-03-19 19:00:00,11187.0
-2015-03-19 20:00:00,11341.0
-2015-03-19 21:00:00,11776.0
-2015-03-19 22:00:00,11624.0
-2015-03-19 23:00:00,11164.0
-2015-03-20 00:00:00,10414.0
-2015-03-18 01:00:00,9879.0
-2015-03-18 02:00:00,9454.0
-2015-03-18 03:00:00,9186.0
-2015-03-18 04:00:00,9062.0
-2015-03-18 05:00:00,9066.0
-2015-03-18 06:00:00,9313.0
-2015-03-18 07:00:00,10078.0
-2015-03-18 08:00:00,11224.0
-2015-03-18 09:00:00,11655.0
-2015-03-18 10:00:00,11668.0
-2015-03-18 11:00:00,11530.0
-2015-03-18 12:00:00,11481.0
-2015-03-18 13:00:00,11351.0
-2015-03-18 14:00:00,11215.0
-2015-03-18 15:00:00,11149.0
-2015-03-18 16:00:00,11024.0
-2015-03-18 17:00:00,10942.0
-2015-03-18 18:00:00,10925.0
-2015-03-18 19:00:00,10963.0
-2015-03-18 20:00:00,11187.0
-2015-03-18 21:00:00,11636.0
-2015-03-18 22:00:00,11495.0
-2015-03-18 23:00:00,11026.0
-2015-03-19 00:00:00,10309.0
-2015-03-17 01:00:00,9139.0
-2015-03-17 02:00:00,8737.0
-2015-03-17 03:00:00,8505.0
-2015-03-17 04:00:00,8401.0
-2015-03-17 05:00:00,8395.0
-2015-03-17 06:00:00,8722.0
-2015-03-17 07:00:00,9506.0
-2015-03-17 08:00:00,10766.0
-2015-03-17 09:00:00,11463.0
-2015-03-17 10:00:00,11573.0
-2015-03-17 11:00:00,11537.0
-2015-03-17 12:00:00,11550.0
-2015-03-17 13:00:00,11473.0
-2015-03-17 14:00:00,11399.0
-2015-03-17 15:00:00,11328.0
-2015-03-17 16:00:00,11172.0
-2015-03-17 17:00:00,10977.0
-2015-03-17 18:00:00,10879.0
-2015-03-17 19:00:00,10828.0
-2015-03-17 20:00:00,10927.0
-2015-03-17 21:00:00,11614.0
-2015-03-17 22:00:00,11588.0
-2015-03-17 23:00:00,11199.0
-2015-03-18 00:00:00,10541.0
-2015-03-16 01:00:00,8640.0
-2015-03-16 02:00:00,8355.0
-2015-03-16 03:00:00,8139.0
-2015-03-16 04:00:00,8076.0
-2015-03-16 05:00:00,8081.0
-2015-03-16 06:00:00,8346.0
-2015-03-16 07:00:00,9088.0
-2015-03-16 08:00:00,10356.0
-2015-03-16 09:00:00,10894.0
-2015-03-16 10:00:00,10958.0
-2015-03-16 11:00:00,11032.0
-2015-03-16 12:00:00,11158.0
-2015-03-16 13:00:00,11172.0
-2015-03-16 14:00:00,11113.0
-2015-03-16 15:00:00,11121.0
-2015-03-16 16:00:00,11039.0
-2015-03-16 17:00:00,10904.0
-2015-03-16 18:00:00,10773.0
-2015-03-16 19:00:00,10710.0
-2015-03-16 20:00:00,10656.0
-2015-03-16 21:00:00,11238.0
-2015-03-16 22:00:00,11132.0
-2015-03-16 23:00:00,10582.0
-2015-03-17 00:00:00,9842.0
-2015-03-15 01:00:00,8950.0
-2015-03-15 02:00:00,8576.0
-2015-03-15 03:00:00,8307.0
-2015-03-15 04:00:00,8170.0
-2015-03-15 05:00:00,8169.0
-2015-03-15 06:00:00,8183.0
-2015-03-15 07:00:00,8406.0
-2015-03-15 08:00:00,8684.0
-2015-03-15 09:00:00,8742.0
-2015-03-15 10:00:00,8876.0
-2015-03-15 11:00:00,9026.0
-2015-03-15 12:00:00,9056.0
-2015-03-15 13:00:00,9026.0
-2015-03-15 14:00:00,9009.0
-2015-03-15 15:00:00,8964.0
-2015-03-15 16:00:00,8887.0
-2015-03-15 17:00:00,8836.0
-2015-03-15 18:00:00,8899.0
-2015-03-15 19:00:00,9017.0
-2015-03-15 20:00:00,9449.0
-2015-03-15 21:00:00,10090.0
-2015-03-15 22:00:00,10031.0
-2015-03-15 23:00:00,9663.0
-2015-03-16 00:00:00,9194.0
-2015-03-14 01:00:00,9367.0
-2015-03-14 02:00:00,8852.0
-2015-03-14 03:00:00,8586.0
-2015-03-14 04:00:00,8427.0
-2015-03-14 05:00:00,8372.0
-2015-03-14 06:00:00,8435.0
-2015-03-14 07:00:00,8709.0
-2015-03-14 08:00:00,9165.0
-2015-03-14 09:00:00,9459.0
-2015-03-14 10:00:00,9741.0
-2015-03-14 11:00:00,9895.0
-2015-03-14 12:00:00,9886.0
-2015-03-14 13:00:00,9839.0
-2015-03-14 14:00:00,9672.0
-2015-03-14 15:00:00,9528.0
-2015-03-14 16:00:00,9381.0
-2015-03-14 17:00:00,9257.0
-2015-03-14 18:00:00,9210.0
-2015-03-14 19:00:00,9210.0
-2015-03-14 20:00:00,9348.0
-2015-03-14 21:00:00,9980.0
-2015-03-14 22:00:00,10027.0
-2015-03-14 23:00:00,9800.0
-2015-03-15 00:00:00,9434.0
-2015-03-13 01:00:00,9766.0
-2015-03-13 02:00:00,9270.0
-2015-03-13 03:00:00,8988.0
-2015-03-13 04:00:00,8827.0
-2015-03-13 05:00:00,8811.0
-2015-03-13 06:00:00,9046.0
-2015-03-13 07:00:00,9728.0
-2015-03-13 08:00:00,10860.0
-2015-03-13 09:00:00,11355.0
-2015-03-13 10:00:00,11377.0
-2015-03-13 11:00:00,11289.0
-2015-03-13 12:00:00,11265.0
-2015-03-13 13:00:00,11225.0
-2015-03-13 14:00:00,11125.0
-2015-03-13 15:00:00,11074.0
-2015-03-13 16:00:00,10914.0
-2015-03-13 17:00:00,10739.0
-2015-03-13 18:00:00,10590.0
-2015-03-13 19:00:00,10481.0
-2015-03-13 20:00:00,10479.0
-2015-03-13 21:00:00,11018.0
-2015-03-13 22:00:00,10865.0
-2015-03-13 23:00:00,10594.0
-2015-03-14 00:00:00,9959.0
-2015-03-12 01:00:00,9859.0
-2015-03-12 02:00:00,9483.0
-2015-03-12 03:00:00,9205.0
-2015-03-12 04:00:00,9111.0
-2015-03-12 05:00:00,9099.0
-2015-03-12 06:00:00,9364.0
-2015-03-12 07:00:00,10136.0
-2015-03-12 08:00:00,11363.0
-2015-03-12 09:00:00,11861.0
-2015-03-12 10:00:00,11776.0
-2015-03-12 11:00:00,11706.0
-2015-03-12 12:00:00,11658.0
-2015-03-12 13:00:00,11529.0
-2015-03-12 14:00:00,11432.0
-2015-03-12 15:00:00,11362.0
-2015-03-12 16:00:00,11175.0
-2015-03-12 17:00:00,11001.0
-2015-03-12 18:00:00,10844.0
-2015-03-12 19:00:00,10772.0
-2015-03-12 20:00:00,10840.0
-2015-03-12 21:00:00,11532.0
-2015-03-12 22:00:00,11509.0
-2015-03-12 23:00:00,11116.0
-2015-03-13 00:00:00,10423.0
-2015-03-11 01:00:00,9875.0
-2015-03-11 02:00:00,9408.0
-2015-03-11 03:00:00,9189.0
-2015-03-11 04:00:00,9048.0
-2015-03-11 05:00:00,9043.0
-2015-03-11 06:00:00,9306.0
-2015-03-11 07:00:00,10050.0
-2015-03-11 08:00:00,11191.0
-2015-03-11 09:00:00,11687.0
-2015-03-11 10:00:00,11637.0
-2015-03-11 11:00:00,11539.0
-2015-03-11 12:00:00,11457.0
-2015-03-11 13:00:00,11388.0
-2015-03-11 14:00:00,11311.0
-2015-03-11 15:00:00,11280.0
-2015-03-11 16:00:00,11134.0
-2015-03-11 17:00:00,10977.0
-2015-03-11 18:00:00,10852.0
-2015-03-11 19:00:00,10805.0
-2015-03-11 20:00:00,10911.0
-2015-03-11 21:00:00,11596.0
-2015-03-11 22:00:00,11583.0
-2015-03-11 23:00:00,11163.0
-2015-03-12 00:00:00,10537.0
-2015-03-10 01:00:00,9878.0
-2015-03-10 02:00:00,9439.0
-2015-03-10 03:00:00,9192.0
-2015-03-10 04:00:00,9029.0
-2015-03-10 05:00:00,8999.0
-2015-03-10 06:00:00,9226.0
-2015-03-10 07:00:00,9918.0
-2015-03-10 08:00:00,11080.0
-2015-03-10 09:00:00,11777.0
-2015-03-10 10:00:00,11803.0
-2015-03-10 11:00:00,11803.0
-2015-03-10 12:00:00,11796.0
-2015-03-10 13:00:00,11677.0
-2015-03-10 14:00:00,11501.0
-2015-03-10 15:00:00,11422.0
-2015-03-10 16:00:00,11200.0
-2015-03-10 17:00:00,11015.0
-2015-03-10 18:00:00,10904.0
-2015-03-10 19:00:00,10869.0
-2015-03-10 20:00:00,11009.0
-2015-03-10 21:00:00,11659.0
-2015-03-10 22:00:00,11624.0
-2015-03-10 23:00:00,11215.0
-2015-03-11 00:00:00,10556.0
-2015-03-09 01:00:00,9808.0
-2015-03-09 02:00:00,9457.0
-2015-03-09 03:00:00,9314.0
-2015-03-09 04:00:00,9243.0
-2015-03-09 05:00:00,9353.0
-2015-03-09 06:00:00,9652.0
-2015-03-09 07:00:00,10418.0
-2015-03-09 08:00:00,11590.0
-2015-03-09 09:00:00,12204.0
-2015-03-09 10:00:00,12063.0
-2015-03-09 11:00:00,11888.0
-2015-03-09 12:00:00,11768.0
-2015-03-09 13:00:00,11597.0
-2015-03-09 14:00:00,11462.0
-2015-03-09 15:00:00,11395.0
-2015-03-09 16:00:00,11192.0
-2015-03-09 17:00:00,11000.0
-2015-03-09 18:00:00,10883.0
-2015-03-09 19:00:00,10805.0
-2015-03-09 20:00:00,10973.0
-2015-03-09 21:00:00,11722.0
-2015-03-09 22:00:00,11673.0
-2015-03-09 23:00:00,11253.0
-2015-03-10 00:00:00,10564.0
-2015-03-08 01:00:00,9825.0
-2015-03-08 02:00:00,9433.0
-2015-03-08 04:00:00,9239.0
-2015-03-08 05:00:00,9082.0
-2015-03-08 06:00:00,9071.0
-2015-03-08 07:00:00,9205.0
-2015-03-08 08:00:00,9444.0
-2015-03-08 09:00:00,9495.0
-2015-03-08 10:00:00,9679.0
-2015-03-08 11:00:00,9849.0
-2015-03-08 12:00:00,9957.0
-2015-03-08 13:00:00,9954.0
-2015-03-08 14:00:00,9890.0
-2015-03-08 15:00:00,9767.0
-2015-03-08 16:00:00,9681.0
-2015-03-08 17:00:00,9750.0
-2015-03-08 18:00:00,9828.0
-2015-03-08 19:00:00,10056.0
-2015-03-08 20:00:00,10410.0
-2015-03-08 21:00:00,11061.0
-2015-03-08 22:00:00,10987.0
-2015-03-08 23:00:00,10746.0
-2015-03-09 00:00:00,10268.0
-2015-03-07 01:00:00,11182.0
-2015-03-07 02:00:00,10671.0
-2015-03-07 03:00:00,10439.0
-2015-03-07 04:00:00,10207.0
-2015-03-07 05:00:00,10184.0
-2015-03-07 06:00:00,10192.0
-2015-03-07 07:00:00,10428.0
-2015-03-07 08:00:00,10585.0
-2015-03-07 09:00:00,10795.0
-2015-03-07 10:00:00,10865.0
-2015-03-07 11:00:00,10910.0
-2015-03-07 12:00:00,10729.0
-2015-03-07 13:00:00,10609.0
-2015-03-07 14:00:00,10357.0
-2015-03-07 15:00:00,10128.0
-2015-03-07 16:00:00,9949.0
-2015-03-07 17:00:00,9877.0
-2015-03-07 18:00:00,9954.0
-2015-03-07 19:00:00,10340.0
-2015-03-07 20:00:00,11088.0
-2015-03-07 21:00:00,11141.0
-2015-03-07 22:00:00,10995.0
-2015-03-07 23:00:00,10763.0
-2015-03-08 00:00:00,10299.0
-2015-03-06 01:00:00,11983.0
-2015-03-06 02:00:00,11559.0
-2015-03-06 03:00:00,11360.0
-2015-03-06 04:00:00,11275.0
-2015-03-06 05:00:00,11314.0
-2015-03-06 06:00:00,11546.0
-2015-03-06 07:00:00,12237.0
-2015-03-06 08:00:00,13022.0
-2015-03-06 09:00:00,13361.0
-2015-03-06 10:00:00,13366.0
-2015-03-06 11:00:00,13332.0
-2015-03-06 12:00:00,13283.0
-2015-03-06 13:00:00,13125.0
-2015-03-06 14:00:00,12872.0
-2015-03-06 15:00:00,12780.0
-2015-03-06 16:00:00,12566.0
-2015-03-06 17:00:00,12395.0
-2015-03-06 18:00:00,12454.0
-2015-03-06 19:00:00,12736.0
-2015-03-06 20:00:00,13415.0
-2015-03-06 21:00:00,13275.0
-2015-03-06 22:00:00,12979.0
-2015-03-06 23:00:00,12548.0
-2015-03-07 00:00:00,11862.0
-2015-03-05 01:00:00,11761.0
-2015-03-05 02:00:00,11399.0
-2015-03-05 03:00:00,11187.0
-2015-03-05 04:00:00,11081.0
-2015-03-05 05:00:00,11108.0
-2015-03-05 06:00:00,11386.0
-2015-03-05 07:00:00,12090.0
-2015-03-05 08:00:00,13035.0
-2015-03-05 09:00:00,13331.0
-2015-03-05 10:00:00,13376.0
-2015-03-05 11:00:00,13273.0
-2015-03-05 12:00:00,13214.0
-2015-03-05 13:00:00,13136.0
-2015-03-05 14:00:00,13022.0
-2015-03-05 15:00:00,12952.0
-2015-03-05 16:00:00,12792.0
-2015-03-05 17:00:00,12686.0
-2015-03-05 18:00:00,12783.0
-2015-03-05 19:00:00,13200.0
-2015-03-05 20:00:00,14002.0
-2015-03-05 21:00:00,14032.0
-2015-03-05 22:00:00,13829.0
-2015-03-05 23:00:00,13353.0
-2015-03-06 00:00:00,12648.0
-2015-03-04 01:00:00,10813.0
-2015-03-04 02:00:00,10368.0
-2015-03-04 03:00:00,10144.0
-2015-03-04 04:00:00,10055.0
-2015-03-04 05:00:00,10146.0
-2015-03-04 06:00:00,10504.0
-2015-03-04 07:00:00,11314.0
-2015-03-04 08:00:00,12276.0
-2015-03-04 09:00:00,12738.0
-2015-03-04 10:00:00,12863.0
-2015-03-04 11:00:00,12969.0
-2015-03-04 12:00:00,12972.0
-2015-03-04 13:00:00,12879.0
-2015-03-04 14:00:00,12742.0
-2015-03-04 15:00:00,12760.0
-2015-03-04 16:00:00,12649.0
-2015-03-04 17:00:00,12600.0
-2015-03-04 18:00:00,12803.0
-2015-03-04 19:00:00,13215.0
-2015-03-04 20:00:00,13897.0
-2015-03-04 21:00:00,13835.0
-2015-03-04 22:00:00,13623.0
-2015-03-04 23:00:00,13124.0
-2015-03-05 00:00:00,12397.0
-2015-03-03 01:00:00,10940.0
-2015-03-03 02:00:00,10516.0
-2015-03-03 03:00:00,10286.0
-2015-03-03 04:00:00,10154.0
-2015-03-03 05:00:00,10190.0
-2015-03-03 06:00:00,10515.0
-2015-03-03 07:00:00,11261.0
-2015-03-03 08:00:00,12214.0
-2015-03-03 09:00:00,12689.0
-2015-03-03 10:00:00,12927.0
-2015-03-03 11:00:00,13057.0
-2015-03-03 12:00:00,13175.0
-2015-03-03 13:00:00,13105.0
-2015-03-03 14:00:00,12979.0
-2015-03-03 15:00:00,12944.0
-2015-03-03 16:00:00,12814.0
-2015-03-03 17:00:00,12704.0
-2015-03-03 18:00:00,12737.0
-2015-03-03 19:00:00,13092.0
-2015-03-03 20:00:00,13299.0
-2015-03-03 21:00:00,13159.0
-2015-03-03 22:00:00,12813.0
-2015-03-03 23:00:00,12269.0
-2015-03-04 00:00:00,11535.0
-2015-03-02 01:00:00,10979.0
-2015-03-02 02:00:00,10657.0
-2015-03-02 03:00:00,10562.0
-2015-03-02 04:00:00,10484.0
-2015-03-02 05:00:00,10511.0
-2015-03-02 06:00:00,10808.0
-2015-03-02 07:00:00,11575.0
-2015-03-02 08:00:00,12522.0
-2015-03-02 09:00:00,12873.0
-2015-03-02 10:00:00,12826.0
-2015-03-02 11:00:00,12735.0
-2015-03-02 12:00:00,12657.0
-2015-03-02 13:00:00,12536.0
-2015-03-02 14:00:00,12379.0
-2015-03-02 15:00:00,12287.0
-2015-03-02 16:00:00,12131.0
-2015-03-02 17:00:00,12033.0
-2015-03-02 18:00:00,12238.0
-2015-03-02 19:00:00,12769.0
-2015-03-02 20:00:00,13329.0
-2015-03-02 21:00:00,13214.0
-2015-03-02 22:00:00,12943.0
-2015-03-02 23:00:00,12426.0
-2015-03-03 00:00:00,11638.0
-2015-03-01 01:00:00,11149.0
-2015-03-01 02:00:00,10762.0
-2015-03-01 03:00:00,10530.0
-2015-03-01 04:00:00,10380.0
-2015-03-01 05:00:00,10347.0
-2015-03-01 06:00:00,10342.0
-2015-03-01 07:00:00,10513.0
-2015-03-01 08:00:00,10601.0
-2015-03-01 09:00:00,10619.0
-2015-03-01 10:00:00,10924.0
-2015-03-01 11:00:00,11110.0
-2015-03-01 12:00:00,11149.0
-2015-03-01 13:00:00,11120.0
-2015-03-01 14:00:00,10929.0
-2015-03-01 15:00:00,10873.0
-2015-03-01 16:00:00,10742.0
-2015-03-01 17:00:00,10742.0
-2015-03-01 18:00:00,10980.0
-2015-03-01 19:00:00,11632.0
-2015-03-01 20:00:00,12483.0
-2015-03-01 21:00:00,12495.0
-2015-03-01 22:00:00,12310.0
-2015-03-01 23:00:00,11981.0
-2015-03-02 00:00:00,11437.0
-2015-02-28 01:00:00,12256.0
-2015-02-28 02:00:00,11795.0
-2015-02-28 03:00:00,11632.0
-2015-02-28 04:00:00,11518.0
-2015-02-28 05:00:00,11502.0
-2015-02-28 06:00:00,11603.0
-2015-02-28 07:00:00,11805.0
-2015-02-28 08:00:00,12145.0
-2015-02-28 09:00:00,12286.0
-2015-02-28 10:00:00,12407.0
-2015-02-28 11:00:00,12414.0
-2015-02-28 12:00:00,12300.0
-2015-02-28 13:00:00,12150.0
-2015-02-28 14:00:00,11852.0
-2015-02-28 15:00:00,11592.0
-2015-02-28 16:00:00,11385.0
-2015-02-28 17:00:00,11374.0
-2015-02-28 18:00:00,11626.0
-2015-02-28 19:00:00,12195.0
-2015-02-28 20:00:00,12673.0
-2015-02-28 21:00:00,12630.0
-2015-02-28 22:00:00,12456.0
-2015-02-28 23:00:00,12168.0
-2015-03-01 00:00:00,11663.0
-2015-02-27 01:00:00,12236.0
-2015-02-27 02:00:00,11835.0
-2015-02-27 03:00:00,11637.0
-2015-02-27 04:00:00,11553.0
-2015-02-27 05:00:00,11582.0
-2015-02-27 06:00:00,11791.0
-2015-02-27 07:00:00,12427.0
-2015-02-27 08:00:00,13251.0
-2015-02-27 09:00:00,13560.0
-2015-02-27 10:00:00,13560.0
-2015-02-27 11:00:00,13567.0
-2015-02-27 12:00:00,13489.0
-2015-02-27 13:00:00,13416.0
-2015-02-27 14:00:00,13242.0
-2015-02-27 15:00:00,13138.0
-2015-02-27 16:00:00,12935.0
-2015-02-27 17:00:00,12792.0
-2015-02-27 18:00:00,12895.0
-2015-02-27 19:00:00,13368.0
-2015-02-27 20:00:00,14048.0
-2015-02-27 21:00:00,13976.0
-2015-02-27 22:00:00,13810.0
-2015-02-27 23:00:00,13472.0
-2015-02-28 00:00:00,12885.0
-2015-02-26 01:00:00,11738.0
-2015-02-26 02:00:00,11325.0
-2015-02-26 03:00:00,11083.0
-2015-02-26 04:00:00,10954.0
-2015-02-26 05:00:00,11006.0
-2015-02-26 06:00:00,11260.0
-2015-02-26 07:00:00,11916.0
-2015-02-26 08:00:00,12832.0
-2015-02-26 09:00:00,13262.0
-2015-02-26 10:00:00,13442.0
-2015-02-26 11:00:00,13518.0
-2015-02-26 12:00:00,13554.0
-2015-02-26 13:00:00,13418.0
-2015-02-26 14:00:00,13273.0
-2015-02-26 15:00:00,13259.0
-2015-02-26 16:00:00,13133.0
-2015-02-26 17:00:00,13038.0
-2015-02-26 18:00:00,13161.0
-2015-02-26 19:00:00,13664.0
-2015-02-26 20:00:00,14283.0
-2015-02-26 21:00:00,14229.0
-2015-02-26 22:00:00,14039.0
-2015-02-26 23:00:00,13598.0
-2015-02-27 00:00:00,12852.0
-2015-02-25 01:00:00,11570.0
-2015-02-25 02:00:00,11174.0
-2015-02-25 03:00:00,10955.0
-2015-02-25 04:00:00,10851.0
-2015-02-25 05:00:00,10906.0
-2015-02-25 06:00:00,11200.0
-2015-02-25 07:00:00,11916.0
-2015-02-25 08:00:00,12860.0
-2015-02-25 09:00:00,13133.0
-2015-02-25 10:00:00,13202.0
-2015-02-25 11:00:00,13187.0
-2015-02-25 12:00:00,13136.0
-2015-02-25 13:00:00,13011.0
-2015-02-25 14:00:00,12948.0
-2015-02-25 15:00:00,12966.0
-2015-02-25 16:00:00,12946.0
-2015-02-25 17:00:00,12995.0
-2015-02-25 18:00:00,13240.0
-2015-02-25 19:00:00,13702.0
-2015-02-25 20:00:00,14001.0
-2015-02-25 21:00:00,13883.0
-2015-02-25 22:00:00,13654.0
-2015-02-25 23:00:00,13175.0
-2015-02-26 00:00:00,12444.0
-2015-02-24 01:00:00,12473.0
-2015-02-24 02:00:00,12084.0
-2015-02-24 03:00:00,11876.0
-2015-02-24 04:00:00,11792.0
-2015-02-24 05:00:00,11798.0
-2015-02-24 06:00:00,12028.0
-2015-02-24 07:00:00,12682.0
-2015-02-24 08:00:00,13610.0
-2015-02-24 09:00:00,13974.0
-2015-02-24 10:00:00,14141.0
-2015-02-24 11:00:00,14234.0
-2015-02-24 12:00:00,14226.0
-2015-02-24 13:00:00,14134.0
-2015-02-24 14:00:00,13970.0
-2015-02-24 15:00:00,13915.0
-2015-02-24 16:00:00,13647.0
-2015-02-24 17:00:00,13344.0
-2015-02-24 18:00:00,13231.0
-2015-02-24 19:00:00,13645.0
-2015-02-24 20:00:00,14089.0
-2015-02-24 21:00:00,13936.0
-2015-02-24 22:00:00,13613.0
-2015-02-24 23:00:00,13119.0
-2015-02-25 00:00:00,12503.0
-2015-02-23 01:00:00,11790.0
-2015-02-23 02:00:00,11526.0
-2015-02-23 03:00:00,11400.0
-2015-02-23 04:00:00,11380.0
-2015-02-23 05:00:00,11475.0
-2015-02-23 06:00:00,11782.0
-2015-02-23 07:00:00,12543.0
-2015-02-23 08:00:00,13565.0
-2015-02-23 09:00:00,13948.0
-2015-02-23 10:00:00,13989.0
-2015-02-23 11:00:00,13920.0
-2015-02-23 12:00:00,13858.0
-2015-02-23 13:00:00,13741.0
-2015-02-23 14:00:00,13599.0
-2015-02-23 15:00:00,13487.0
-2015-02-23 16:00:00,13311.0
-2015-02-23 17:00:00,13206.0
-2015-02-23 18:00:00,13350.0
-2015-02-23 19:00:00,14009.0
-2015-02-23 20:00:00,14664.0
-2015-02-23 21:00:00,14612.0
-2015-02-23 22:00:00,14383.0
-2015-02-23 23:00:00,13907.0
-2015-02-24 00:00:00,13134.0
-2015-02-22 01:00:00,10687.0
-2015-02-22 02:00:00,10331.0
-2015-02-22 03:00:00,10094.0
-2015-02-22 04:00:00,9980.0
-2015-02-22 05:00:00,9991.0
-2015-02-22 06:00:00,10082.0
-2015-02-22 07:00:00,10308.0
-2015-02-22 08:00:00,10531.0
-2015-02-22 09:00:00,10593.0
-2015-02-22 10:00:00,10906.0
-2015-02-22 11:00:00,11153.0
-2015-02-22 12:00:00,11167.0
-2015-02-22 13:00:00,11138.0
-2015-02-22 14:00:00,11089.0
-2015-02-22 15:00:00,11064.0
-2015-02-22 16:00:00,10985.0
-2015-02-22 17:00:00,11080.0
-2015-02-22 18:00:00,11460.0
-2015-02-22 19:00:00,12290.0
-2015-02-22 20:00:00,13062.0
-2015-02-22 21:00:00,13094.0
-2015-02-22 22:00:00,12898.0
-2015-02-22 23:00:00,12680.0
-2015-02-23 00:00:00,12221.0
-2015-02-21 01:00:00,12125.0
-2015-02-21 02:00:00,11592.0
-2015-02-21 03:00:00,11261.0
-2015-02-21 04:00:00,11023.0
-2015-02-21 05:00:00,10923.0
-2015-02-21 06:00:00,10900.0
-2015-02-21 07:00:00,11181.0
-2015-02-21 08:00:00,11542.0
-2015-02-21 09:00:00,11672.0
-2015-02-21 10:00:00,11986.0
-2015-02-21 11:00:00,12157.0
-2015-02-21 12:00:00,12081.0
-2015-02-21 13:00:00,11826.0
-2015-02-21 14:00:00,11574.0
-2015-02-21 15:00:00,11371.0
-2015-02-21 16:00:00,11280.0
-2015-02-21 17:00:00,11227.0
-2015-02-21 18:00:00,11449.0
-2015-02-21 19:00:00,11993.0
-2015-02-21 20:00:00,12309.0
-2015-02-21 21:00:00,12172.0
-2015-02-21 22:00:00,11989.0
-2015-02-21 23:00:00,11687.0
-2015-02-22 00:00:00,11180.0
-2015-02-20 01:00:00,12920.0
-2015-02-20 02:00:00,12522.0
-2015-02-20 03:00:00,12317.0
-2015-02-20 04:00:00,12191.0
-2015-02-20 05:00:00,12193.0
-2015-02-20 06:00:00,12409.0
-2015-02-20 07:00:00,13020.0
-2015-02-20 08:00:00,13917.0
-2015-02-20 09:00:00,14332.0
-2015-02-20 10:00:00,14540.0
-2015-02-20 11:00:00,14600.0
-2015-02-20 12:00:00,14593.0
-2015-02-20 13:00:00,14506.0
-2015-02-20 14:00:00,14283.0
-2015-02-20 15:00:00,14237.0
-2015-02-20 16:00:00,14099.0
-2015-02-20 17:00:00,14021.0
-2015-02-20 18:00:00,14002.0
-2015-02-20 19:00:00,14342.0
-2015-02-20 20:00:00,14631.0
-2015-02-20 21:00:00,14393.0
-2015-02-20 22:00:00,14058.0
-2015-02-20 23:00:00,13612.0
-2015-02-21 00:00:00,12830.0
-2015-02-19 01:00:00,13080.0
-2015-02-19 02:00:00,12693.0
-2015-02-19 03:00:00,12425.0
-2015-02-19 04:00:00,12293.0
-2015-02-19 05:00:00,12280.0
-2015-02-19 06:00:00,12529.0
-2015-02-19 07:00:00,13097.0
-2015-02-19 08:00:00,13974.0
-2015-02-19 09:00:00,14332.0
-2015-02-19 10:00:00,14519.0
-2015-02-19 11:00:00,14570.0
-2015-02-19 12:00:00,14604.0
-2015-02-19 13:00:00,14511.0
-2015-02-19 14:00:00,14401.0
-2015-02-19 15:00:00,14272.0
-2015-02-19 16:00:00,14073.0
-2015-02-19 17:00:00,13920.0
-2015-02-19 18:00:00,14054.0
-2015-02-19 19:00:00,14712.0
-2015-02-19 20:00:00,15183.0
-2015-02-19 21:00:00,15106.0
-2015-02-19 22:00:00,14819.0
-2015-02-19 23:00:00,14361.0
-2015-02-20 00:00:00,13634.0
-2015-02-18 01:00:00,12177.0
-2015-02-18 02:00:00,11776.0
-2015-02-18 03:00:00,11570.0
-2015-02-18 04:00:00,11481.0
-2015-02-18 05:00:00,11530.0
-2015-02-18 06:00:00,11774.0
-2015-02-18 07:00:00,12492.0
-2015-02-18 08:00:00,13445.0
-2015-02-18 09:00:00,13884.0
-2015-02-18 10:00:00,13971.0
-2015-02-18 11:00:00,14010.0
-2015-02-18 12:00:00,14046.0
-2015-02-18 13:00:00,13994.0
-2015-02-18 14:00:00,13938.0
-2015-02-18 15:00:00,13990.0
-2015-02-18 16:00:00,13960.0
-2015-02-18 17:00:00,14003.0
-2015-02-18 18:00:00,14244.0
-2015-02-18 19:00:00,14882.0
-2015-02-18 20:00:00,15279.0
-2015-02-18 21:00:00,15135.0
-2015-02-18 22:00:00,14895.0
-2015-02-18 23:00:00,14433.0
-2015-02-19 00:00:00,13709.0
-2015-02-17 01:00:00,11808.0
-2015-02-17 02:00:00,11336.0
-2015-02-17 03:00:00,11104.0
-2015-02-17 04:00:00,10974.0
-2015-02-17 05:00:00,10973.0
-2015-02-17 06:00:00,11210.0
-2015-02-17 07:00:00,11884.0
-2015-02-17 08:00:00,12912.0
-2015-02-17 09:00:00,13328.0
-2015-02-17 10:00:00,13396.0
-2015-02-17 11:00:00,13476.0
-2015-02-17 12:00:00,13489.0
-2015-02-17 13:00:00,13406.0
-2015-02-17 14:00:00,13290.0
-2015-02-17 15:00:00,13301.0
-2015-02-17 16:00:00,13250.0
-2015-02-17 17:00:00,13215.0
-2015-02-17 18:00:00,13447.0
-2015-02-17 19:00:00,14032.0
-2015-02-17 20:00:00,14385.0
-2015-02-17 21:00:00,14276.0
-2015-02-17 22:00:00,14052.0
-2015-02-17 23:00:00,13510.0
-2015-02-18 00:00:00,12865.0
-2015-02-16 01:00:00,11434.0
-2015-02-16 02:00:00,11110.0
-2015-02-16 03:00:00,10925.0
-2015-02-16 04:00:00,10881.0
-2015-02-16 05:00:00,10910.0
-2015-02-16 06:00:00,11177.0
-2015-02-16 07:00:00,11804.0
-2015-02-16 08:00:00,12672.0
-2015-02-16 09:00:00,13105.0
-2015-02-16 10:00:00,13391.0
-2015-02-16 11:00:00,13517.0
-2015-02-16 12:00:00,13453.0
-2015-02-16 13:00:00,13274.0
-2015-02-16 14:00:00,13183.0
-2015-02-16 15:00:00,13146.0
-2015-02-16 16:00:00,13002.0
-2015-02-16 17:00:00,12959.0
-2015-02-16 18:00:00,13101.0
-2015-02-16 19:00:00,13832.0
-2015-02-16 20:00:00,14162.0
-2015-02-16 21:00:00,14041.0
-2015-02-16 22:00:00,13765.0
-2015-02-16 23:00:00,13230.0
-2015-02-17 00:00:00,12456.0
-2015-02-15 01:00:00,12028.0
-2015-02-15 02:00:00,11685.0
-2015-02-15 03:00:00,11477.0
-2015-02-15 04:00:00,11373.0
-2015-02-15 05:00:00,11312.0
-2015-02-15 06:00:00,11300.0
-2015-02-15 07:00:00,11415.0
-2015-02-15 08:00:00,11616.0
-2015-02-15 09:00:00,11610.0
-2015-02-15 10:00:00,11816.0
-2015-02-15 11:00:00,11915.0
-2015-02-15 12:00:00,11910.0
-2015-02-15 13:00:00,11839.0
-2015-02-15 14:00:00,11736.0
-2015-02-15 15:00:00,11603.0
-2015-02-15 16:00:00,11584.0
-2015-02-15 17:00:00,11648.0
-2015-02-15 18:00:00,11935.0
-2015-02-15 19:00:00,12653.0
-2015-02-15 20:00:00,13040.0
-2015-02-15 21:00:00,12956.0
-2015-02-15 22:00:00,12734.0
-2015-02-15 23:00:00,12429.0
-2015-02-16 00:00:00,11900.0
-2015-02-14 01:00:00,11353.0
-2015-02-14 02:00:00,10845.0
-2015-02-14 03:00:00,10526.0
-2015-02-14 04:00:00,10353.0
-2015-02-14 05:00:00,10313.0
-2015-02-14 06:00:00,10424.0
-2015-02-14 07:00:00,10732.0
-2015-02-14 08:00:00,11242.0
-2015-02-14 09:00:00,11600.0
-2015-02-14 10:00:00,12037.0
-2015-02-14 11:00:00,12319.0
-2015-02-14 12:00:00,12405.0
-2015-02-14 13:00:00,12398.0
-2015-02-14 14:00:00,12302.0
-2015-02-14 15:00:00,12191.0
-2015-02-14 16:00:00,12053.0
-2015-02-14 17:00:00,12042.0
-2015-02-14 18:00:00,12247.0
-2015-02-14 19:00:00,13009.0
-2015-02-14 20:00:00,13501.0
-2015-02-14 21:00:00,13392.0
-2015-02-14 22:00:00,13284.0
-2015-02-14 23:00:00,12980.0
-2015-02-15 00:00:00,12515.0
-2015-02-13 01:00:00,11911.0
-2015-02-13 02:00:00,11516.0
-2015-02-13 03:00:00,11334.0
-2015-02-13 04:00:00,11234.0
-2015-02-13 05:00:00,11276.0
-2015-02-13 06:00:00,11515.0
-2015-02-13 07:00:00,12082.0
-2015-02-13 08:00:00,13128.0
-2015-02-13 09:00:00,13463.0
-2015-02-13 10:00:00,13620.0
-2015-02-13 11:00:00,13701.0
-2015-02-13 12:00:00,13734.0
-2015-02-13 13:00:00,13690.0
-2015-02-13 14:00:00,13601.0
-2015-02-13 15:00:00,13538.0
-2015-02-13 16:00:00,13444.0
-2015-02-13 17:00:00,13371.0
-2015-02-13 18:00:00,13427.0
-2015-02-13 19:00:00,13837.0
-2015-02-13 20:00:00,13930.0
-2015-02-13 21:00:00,13656.0
-2015-02-13 22:00:00,13269.0
-2015-02-13 23:00:00,12870.0
-2015-02-14 00:00:00,12115.0
-2015-02-12 01:00:00,11480.0
-2015-02-12 02:00:00,11061.0
-2015-02-12 03:00:00,10825.0
-2015-02-12 04:00:00,10779.0
-2015-02-12 05:00:00,10850.0
-2015-02-12 06:00:00,11185.0
-2015-02-12 07:00:00,11955.0
-2015-02-12 08:00:00,13075.0
-2015-02-12 09:00:00,13461.0
-2015-02-12 10:00:00,13503.0
-2015-02-12 11:00:00,13497.0
-2015-02-12 12:00:00,13482.0
-2015-02-12 13:00:00,13334.0
-2015-02-12 14:00:00,13196.0
-2015-02-12 15:00:00,13086.0
-2015-02-12 16:00:00,12928.0
-2015-02-12 17:00:00,12839.0
-2015-02-12 18:00:00,13139.0
-2015-02-12 19:00:00,13863.0
-2015-02-12 20:00:00,14189.0
-2015-02-12 21:00:00,14028.0
-2015-02-12 22:00:00,13774.0
-2015-02-12 23:00:00,13295.0
-2015-02-13 00:00:00,12579.0
-2015-02-11 01:00:00,10754.0
-2015-02-11 02:00:00,10303.0
-2015-02-11 03:00:00,10061.0
-2015-02-11 04:00:00,9933.0
-2015-02-11 05:00:00,9945.0
-2015-02-11 06:00:00,10186.0
-2015-02-11 07:00:00,10941.0
-2015-02-11 08:00:00,12052.0
-2015-02-11 09:00:00,12516.0
-2015-02-11 10:00:00,12626.0
-2015-02-11 11:00:00,12695.0
-2015-02-11 12:00:00,12702.0
-2015-02-11 13:00:00,12647.0
-2015-02-11 14:00:00,12633.0
-2015-02-11 15:00:00,12689.0
-2015-02-11 16:00:00,12648.0
-2015-02-11 17:00:00,12622.0
-2015-02-11 18:00:00,12798.0
-2015-02-11 19:00:00,13388.0
-2015-02-11 20:00:00,13569.0
-2015-02-11 21:00:00,13438.0
-2015-02-11 22:00:00,13219.0
-2015-02-11 23:00:00,12782.0
-2015-02-12 00:00:00,12092.0
-2015-02-10 01:00:00,11057.0
-2015-02-10 02:00:00,10625.0
-2015-02-10 03:00:00,10383.0
-2015-02-10 04:00:00,10266.0
-2015-02-10 05:00:00,10278.0
-2015-02-10 06:00:00,10567.0
-2015-02-10 07:00:00,11302.0
-2015-02-10 08:00:00,12377.0
-2015-02-10 09:00:00,12700.0
-2015-02-10 10:00:00,12763.0
-2015-02-10 11:00:00,12741.0
-2015-02-10 12:00:00,12592.0
-2015-02-10 13:00:00,12388.0
-2015-02-10 14:00:00,12266.0
-2015-02-10 15:00:00,12162.0
-2015-02-10 16:00:00,12046.0
-2015-02-10 17:00:00,11969.0
-2015-02-10 18:00:00,12246.0
-2015-02-10 19:00:00,12994.0
-2015-02-10 20:00:00,13203.0
-2015-02-10 21:00:00,13073.0
-2015-02-10 22:00:00,12859.0
-2015-02-10 23:00:00,12328.0
-2015-02-11 00:00:00,11481.0
-2015-02-09 01:00:00,10136.0
-2015-02-09 02:00:00,9857.0
-2015-02-09 03:00:00,9711.0
-2015-02-09 04:00:00,9653.0
-2015-02-09 05:00:00,9720.0
-2015-02-09 06:00:00,10065.0
-2015-02-09 07:00:00,10860.0
-2015-02-09 08:00:00,12083.0
-2015-02-09 09:00:00,12696.0
-2015-02-09 10:00:00,12883.0
-2015-02-09 11:00:00,13009.0
-2015-02-09 12:00:00,13088.0
-2015-02-09 13:00:00,13076.0
-2015-02-09 14:00:00,12969.0
-2015-02-09 15:00:00,12934.0
-2015-02-09 16:00:00,12824.0
-2015-02-09 17:00:00,12746.0
-2015-02-09 18:00:00,12898.0
-2015-02-09 19:00:00,13457.0
-2015-02-09 20:00:00,13591.0
-2015-02-09 21:00:00,13389.0
-2015-02-09 22:00:00,13115.0
-2015-02-09 23:00:00,12568.0
-2015-02-10 00:00:00,11790.0
-2015-02-08 01:00:00,9928.0
-2015-02-08 02:00:00,9511.0
-2015-02-08 03:00:00,9261.0
-2015-02-08 04:00:00,9073.0
-2015-02-08 05:00:00,8988.0
-2015-02-08 06:00:00,8971.0
-2015-02-08 07:00:00,9108.0
-2015-02-08 08:00:00,9367.0
-2015-02-08 09:00:00,9373.0
-2015-02-08 10:00:00,9643.0
-2015-02-08 11:00:00,9904.0
-2015-02-08 12:00:00,10048.0
-2015-02-08 13:00:00,10134.0
-2015-02-08 14:00:00,10189.0
-2015-02-08 15:00:00,10224.0
-2015-02-08 16:00:00,10297.0
-2015-02-08 17:00:00,10513.0
-2015-02-08 18:00:00,10953.0
-2015-02-08 19:00:00,11663.0
-2015-02-08 20:00:00,11846.0
-2015-02-08 21:00:00,11741.0
-2015-02-08 22:00:00,11527.0
-2015-02-08 23:00:00,11193.0
-2015-02-09 00:00:00,10668.0
-2015-02-07 01:00:00,11102.0
-2015-02-07 02:00:00,10615.0
-2015-02-07 03:00:00,10334.0
-2015-02-07 04:00:00,10103.0
-2015-02-07 05:00:00,10047.0
-2015-02-07 06:00:00,10043.0
-2015-02-07 07:00:00,10402.0
-2015-02-07 08:00:00,10838.0
-2015-02-07 09:00:00,11002.0
-2015-02-07 10:00:00,11122.0
-2015-02-07 11:00:00,11131.0
-2015-02-07 12:00:00,11025.0
-2015-02-07 13:00:00,10872.0
-2015-02-07 14:00:00,10613.0
-2015-02-07 15:00:00,10396.0
-2015-02-07 16:00:00,10266.0
-2015-02-07 17:00:00,10210.0
-2015-02-07 18:00:00,10384.0
-2015-02-07 19:00:00,11249.0
-2015-02-07 20:00:00,11531.0
-2015-02-07 21:00:00,11409.0
-2015-02-07 22:00:00,11165.0
-2015-02-07 23:00:00,10900.0
-2015-02-08 00:00:00,10408.0
-2015-02-06 01:00:00,12104.0
-2015-02-06 02:00:00,11673.0
-2015-02-06 03:00:00,11390.0
-2015-02-06 04:00:00,11206.0
-2015-02-06 05:00:00,11129.0
-2015-02-06 06:00:00,11304.0
-2015-02-06 07:00:00,11926.0
-2015-02-06 08:00:00,12979.0
-2015-02-06 09:00:00,13333.0
-2015-02-06 10:00:00,13334.0
-2015-02-06 11:00:00,13397.0
-2015-02-06 12:00:00,13275.0
-2015-02-06 13:00:00,13082.0
-2015-02-06 14:00:00,12811.0
-2015-02-06 15:00:00,12662.0
-2015-02-06 16:00:00,12471.0
-2015-02-06 17:00:00,12242.0
-2015-02-06 18:00:00,12376.0
-2015-02-06 19:00:00,13105.0
-2015-02-06 20:00:00,13342.0
-2015-02-06 21:00:00,13101.0
-2015-02-06 22:00:00,12819.0
-2015-02-06 23:00:00,12470.0
-2015-02-07 00:00:00,11746.0
-2015-02-05 01:00:00,11856.0
-2015-02-05 02:00:00,11473.0
-2015-02-05 03:00:00,11238.0
-2015-02-05 04:00:00,11144.0
-2015-02-05 05:00:00,11213.0
-2015-02-05 06:00:00,11517.0
-2015-02-05 07:00:00,12239.0
-2015-02-05 08:00:00,13350.0
-2015-02-05 09:00:00,13693.0
-2015-02-05 10:00:00,13698.0
-2015-02-05 11:00:00,13624.0
-2015-02-05 12:00:00,13569.0
-2015-02-05 13:00:00,13417.0
-2015-02-05 14:00:00,13292.0
-2015-02-05 15:00:00,13214.0
-2015-02-05 16:00:00,13066.0
-2015-02-05 17:00:00,13085.0
-2015-02-05 18:00:00,13339.0
-2015-02-05 19:00:00,14189.0
-2015-02-05 20:00:00,14484.0
-2015-02-05 21:00:00,14365.0
-2015-02-05 22:00:00,14109.0
-2015-02-05 23:00:00,13581.0
-2015-02-06 00:00:00,12797.0
-2015-02-04 01:00:00,11025.0
-2015-02-04 02:00:00,10548.0
-2015-02-04 03:00:00,10278.0
-2015-02-04 04:00:00,10149.0
-2015-02-04 05:00:00,10186.0
-2015-02-04 06:00:00,10466.0
-2015-02-04 07:00:00,11182.0
-2015-02-04 08:00:00,12398.0
-2015-02-04 09:00:00,12881.0
-2015-02-04 10:00:00,13065.0
-2015-02-04 11:00:00,13198.0
-2015-02-04 12:00:00,13277.0
-2015-02-04 13:00:00,13242.0
-2015-02-04 14:00:00,13169.0
-2015-02-04 15:00:00,13264.0
-2015-02-04 16:00:00,13159.0
-2015-02-04 17:00:00,13072.0
-2015-02-04 18:00:00,13196.0
-2015-02-04 19:00:00,13927.0
-2015-02-04 20:00:00,14172.0
-2015-02-04 21:00:00,14043.0
-2015-02-04 22:00:00,13810.0
-2015-02-04 23:00:00,13310.0
-2015-02-05 00:00:00,12554.0
-2015-02-03 01:00:00,11620.0
-2015-02-03 02:00:00,11265.0
-2015-02-03 03:00:00,11058.0
-2015-02-03 04:00:00,10902.0
-2015-02-03 05:00:00,10935.0
-2015-02-03 06:00:00,11142.0
-2015-02-03 07:00:00,11806.0
-2015-02-03 08:00:00,12836.0
-2015-02-03 09:00:00,13201.0
-2015-02-03 10:00:00,13243.0
-2015-02-03 11:00:00,13160.0
-2015-02-03 12:00:00,13042.0
-2015-02-03 13:00:00,12900.0
-2015-02-03 14:00:00,12766.0
-2015-02-03 15:00:00,12780.0
-2015-02-03 16:00:00,12817.0
-2015-02-03 17:00:00,12925.0
-2015-02-03 18:00:00,13130.0
-2015-02-03 19:00:00,13727.0
-2015-02-03 20:00:00,13673.0
-2015-02-03 21:00:00,13495.0
-2015-02-03 22:00:00,13175.0
-2015-02-03 23:00:00,12581.0
-2015-02-04 00:00:00,11762.0
-2015-02-02 01:00:00,10811.0
-2015-02-02 02:00:00,10423.0
-2015-02-02 03:00:00,10254.0
-2015-02-02 04:00:00,10182.0
-2015-02-02 05:00:00,10252.0
-2015-02-02 06:00:00,10549.0
-2015-02-02 07:00:00,11125.0
-2015-02-02 08:00:00,12010.0
-2015-02-02 09:00:00,12388.0
-2015-02-02 10:00:00,12509.0
-2015-02-02 11:00:00,12613.0
-2015-02-02 12:00:00,12661.0
-2015-02-02 13:00:00,12623.0
-2015-02-02 14:00:00,12517.0
-2015-02-02 15:00:00,12463.0
-2015-02-02 16:00:00,12411.0
-2015-02-02 17:00:00,12417.0
-2015-02-02 18:00:00,12724.0
-2015-02-02 19:00:00,13732.0
-2015-02-02 20:00:00,13940.0
-2015-02-02 21:00:00,13780.0
-2015-02-02 22:00:00,13532.0
-2015-02-02 23:00:00,13038.0
-2015-02-03 00:00:00,12282.0
-2015-02-01 01:00:00,10403.0
-2015-02-01 02:00:00,9994.0
-2015-02-01 03:00:00,9765.0
-2015-02-01 04:00:00,9544.0
-2015-02-01 05:00:00,9488.0
-2015-02-01 06:00:00,9540.0
-2015-02-01 07:00:00,9717.0
-2015-02-01 08:00:00,9969.0
-2015-02-01 09:00:00,10094.0
-2015-02-01 10:00:00,10379.0
-2015-02-01 11:00:00,10677.0
-2015-02-01 12:00:00,10872.0
-2015-02-01 13:00:00,11029.0
-2015-02-01 14:00:00,11178.0
-2015-02-01 15:00:00,11258.0
-2015-02-01 16:00:00,11330.0
-2015-02-01 17:00:00,11429.0
-2015-02-01 18:00:00,11750.0
-2015-02-01 19:00:00,12453.0
-2015-02-01 20:00:00,12437.0
-2015-02-01 21:00:00,12288.0
-2015-02-01 22:00:00,12084.0
-2015-02-01 23:00:00,11860.0
-2015-02-02 00:00:00,11347.0
-2015-01-31 01:00:00,11125.0
-2015-01-31 02:00:00,10642.0
-2015-01-31 03:00:00,10316.0
-2015-01-31 04:00:00,10093.0
-2015-01-31 05:00:00,10018.0
-2015-01-31 06:00:00,10088.0
-2015-01-31 07:00:00,10386.0
-2015-01-31 08:00:00,10851.0
-2015-01-31 09:00:00,10981.0
-2015-01-31 10:00:00,11235.0
-2015-01-31 11:00:00,11225.0
-2015-01-31 12:00:00,11210.0
-2015-01-31 13:00:00,11131.0
-2015-01-31 14:00:00,10988.0
-2015-01-31 15:00:00,10799.0
-2015-01-31 16:00:00,10772.0
-2015-01-31 17:00:00,10758.0
-2015-01-31 18:00:00,11072.0
-2015-01-31 19:00:00,11706.0
-2015-01-31 20:00:00,11782.0
-2015-01-31 21:00:00,11656.0
-2015-01-31 22:00:00,11564.0
-2015-01-31 23:00:00,11321.0
-2015-02-01 00:00:00,10901.0
-2015-01-30 01:00:00,10775.0
-2015-01-30 02:00:00,10354.0
-2015-01-30 03:00:00,10130.0
-2015-01-30 04:00:00,10052.0
-2015-01-30 05:00:00,10072.0
-2015-01-30 06:00:00,10382.0
-2015-01-30 07:00:00,11142.0
-2015-01-30 08:00:00,12276.0
-2015-01-30 09:00:00,12687.0
-2015-01-30 10:00:00,12639.0
-2015-01-30 11:00:00,12573.0
-2015-01-30 12:00:00,12537.0
-2015-01-30 13:00:00,12415.0
-2015-01-30 14:00:00,12252.0
-2015-01-30 15:00:00,12185.0
-2015-01-30 16:00:00,12034.0
-2015-01-30 17:00:00,11913.0
-2015-01-30 18:00:00,12168.0
-2015-01-30 19:00:00,12943.0
-2015-01-30 20:00:00,13098.0
-2015-01-30 21:00:00,12928.0
-2015-01-30 22:00:00,12655.0
-2015-01-30 23:00:00,12349.0
-2015-01-31 00:00:00,11748.0
-2015-01-29 01:00:00,10833.0
-2015-01-29 02:00:00,10325.0
-2015-01-29 03:00:00,10000.0
-2015-01-29 04:00:00,9836.0
-2015-01-29 05:00:00,9786.0
-2015-01-29 06:00:00,10054.0
-2015-01-29 07:00:00,10751.0
-2015-01-29 08:00:00,11901.0
-2015-01-29 09:00:00,12506.0
-2015-01-29 10:00:00,12687.0
-2015-01-29 11:00:00,12758.0
-2015-01-29 12:00:00,12791.0
-2015-01-29 13:00:00,12828.0
-2015-01-29 14:00:00,12852.0
-2015-01-29 15:00:00,12850.0
-2015-01-29 16:00:00,12777.0
-2015-01-29 17:00:00,12772.0
-2015-01-29 18:00:00,13044.0
-2015-01-29 19:00:00,13448.0
-2015-01-29 20:00:00,13295.0
-2015-01-29 21:00:00,13059.0
-2015-01-29 22:00:00,12728.0
-2015-01-29 23:00:00,12163.0
-2015-01-30 00:00:00,11465.0
-2015-01-28 01:00:00,10964.0
-2015-01-28 02:00:00,10492.0
-2015-01-28 03:00:00,10246.0
-2015-01-28 04:00:00,10148.0
-2015-01-28 05:00:00,10140.0
-2015-01-28 06:00:00,10456.0
-2015-01-28 07:00:00,11212.0
-2015-01-28 08:00:00,12386.0
-2015-01-28 09:00:00,12806.0
-2015-01-28 10:00:00,12799.0
-2015-01-28 11:00:00,12724.0
-2015-01-28 12:00:00,12681.0
-2015-01-28 13:00:00,12555.0
-2015-01-28 14:00:00,12421.0
-2015-01-28 15:00:00,12401.0
-2015-01-28 16:00:00,12368.0
-2015-01-28 17:00:00,12376.0
-2015-01-28 18:00:00,12673.0
-2015-01-28 19:00:00,13454.0
-2015-01-28 20:00:00,13436.0
-2015-01-28 21:00:00,13222.0
-2015-01-28 22:00:00,12902.0
-2015-01-28 23:00:00,12347.0
-2015-01-29 00:00:00,11564.0
-2015-01-27 01:00:00,10952.0
-2015-01-27 02:00:00,10516.0
-2015-01-27 03:00:00,10184.0
-2015-01-27 04:00:00,10022.0
-2015-01-27 05:00:00,9968.0
-2015-01-27 06:00:00,10243.0
-2015-01-27 07:00:00,11041.0
-2015-01-27 08:00:00,12224.0
-2015-01-27 09:00:00,12755.0
-2015-01-27 10:00:00,12784.0
-2015-01-27 11:00:00,12908.0
-2015-01-27 12:00:00,12904.0
-2015-01-27 13:00:00,12725.0
-2015-01-27 14:00:00,12485.0
-2015-01-27 15:00:00,12385.0
-2015-01-27 16:00:00,12269.0
-2015-01-27 17:00:00,12216.0
-2015-01-27 18:00:00,12490.0
-2015-01-27 19:00:00,13333.0
-2015-01-27 20:00:00,13376.0
-2015-01-27 21:00:00,13197.0
-2015-01-27 22:00:00,12954.0
-2015-01-27 23:00:00,12439.0
-2015-01-28 00:00:00,11644.0
-2015-01-26 01:00:00,10570.0
-2015-01-26 02:00:00,10292.0
-2015-01-26 03:00:00,10131.0
-2015-01-26 04:00:00,10065.0
-2015-01-26 05:00:00,10145.0
-2015-01-26 06:00:00,10492.0
-2015-01-26 07:00:00,11320.0
-2015-01-26 08:00:00,12564.0
-2015-01-26 09:00:00,13046.0
-2015-01-26 10:00:00,12994.0
-2015-01-26 11:00:00,12949.0
-2015-01-26 12:00:00,12996.0
-2015-01-26 13:00:00,12930.0
-2015-01-26 14:00:00,12858.0
-2015-01-26 15:00:00,12837.0
-2015-01-26 16:00:00,12793.0
-2015-01-26 17:00:00,12816.0
-2015-01-26 18:00:00,13202.0
-2015-01-26 19:00:00,13781.0
-2015-01-26 20:00:00,13644.0
-2015-01-26 21:00:00,13406.0
-2015-01-26 22:00:00,13065.0
-2015-01-26 23:00:00,12467.0
-2015-01-27 00:00:00,11680.0
-2015-01-25 01:00:00,9917.0
-2015-01-25 02:00:00,9558.0
-2015-01-25 03:00:00,9284.0
-2015-01-25 04:00:00,9170.0
-2015-01-25 05:00:00,9127.0
-2015-01-25 06:00:00,9194.0
-2015-01-25 07:00:00,9321.0
-2015-01-25 08:00:00,9704.0
-2015-01-25 09:00:00,9954.0
-2015-01-25 10:00:00,10297.0
-2015-01-25 11:00:00,10570.0
-2015-01-25 12:00:00,10793.0
-2015-01-25 13:00:00,10866.0
-2015-01-25 14:00:00,10973.0
-2015-01-25 15:00:00,10993.0
-2015-01-25 16:00:00,11028.0
-2015-01-25 17:00:00,11126.0
-2015-01-25 18:00:00,11498.0
-2015-01-25 19:00:00,12275.0
-2015-01-25 20:00:00,12363.0
-2015-01-25 21:00:00,12209.0
-2015-01-25 22:00:00,12040.0
-2015-01-25 23:00:00,11649.0
-2015-01-26 00:00:00,11124.0
-2015-01-24 01:00:00,10798.0
-2015-01-24 02:00:00,10325.0
-2015-01-24 03:00:00,9983.0
-2015-01-24 04:00:00,9831.0
-2015-01-24 05:00:00,9734.0
-2015-01-24 06:00:00,9823.0
-2015-01-24 07:00:00,10029.0
-2015-01-24 08:00:00,10540.0
-2015-01-24 09:00:00,10711.0
-2015-01-24 10:00:00,10864.0
-2015-01-24 11:00:00,10968.0
-2015-01-24 12:00:00,10977.0
-2015-01-24 13:00:00,10822.0
-2015-01-24 14:00:00,10718.0
-2015-01-24 15:00:00,10496.0
-2015-01-24 16:00:00,10375.0
-2015-01-24 17:00:00,10415.0
-2015-01-24 18:00:00,10801.0
-2015-01-24 19:00:00,11483.0
-2015-01-24 20:00:00,11529.0
-2015-01-24 21:00:00,11382.0
-2015-01-24 22:00:00,11234.0
-2015-01-24 23:00:00,10900.0
-2015-01-25 00:00:00,10421.0
-2015-01-23 01:00:00,10792.0
-2015-01-23 02:00:00,10292.0
-2015-01-23 03:00:00,10045.0
-2015-01-23 04:00:00,9901.0
-2015-01-23 05:00:00,9875.0
-2015-01-23 06:00:00,10187.0
-2015-01-23 07:00:00,10868.0
-2015-01-23 08:00:00,11962.0
-2015-01-23 09:00:00,12616.0
-2015-01-23 10:00:00,12696.0
-2015-01-23 11:00:00,12750.0
-2015-01-23 12:00:00,12782.0
-2015-01-23 13:00:00,12691.0
-2015-01-23 14:00:00,12578.0
-2015-01-23 15:00:00,12513.0
-2015-01-23 16:00:00,12387.0
-2015-01-23 17:00:00,12290.0
-2015-01-23 18:00:00,12522.0
-2015-01-23 19:00:00,13181.0
-2015-01-23 20:00:00,13101.0
-2015-01-23 21:00:00,12894.0
-2015-01-23 22:00:00,12564.0
-2015-01-23 23:00:00,12201.0
-2015-01-24 00:00:00,11466.0
-2015-01-22 01:00:00,10668.0
-2015-01-22 02:00:00,10193.0
-2015-01-22 03:00:00,9944.0
-2015-01-22 04:00:00,9807.0
-2015-01-22 05:00:00,9840.0
-2015-01-22 06:00:00,10096.0
-2015-01-22 07:00:00,10803.0
-2015-01-22 08:00:00,11930.0
-2015-01-22 09:00:00,12537.0
-2015-01-22 10:00:00,12601.0
-2015-01-22 11:00:00,12631.0
-2015-01-22 12:00:00,12714.0
-2015-01-22 13:00:00,12707.0
-2015-01-22 14:00:00,12670.0
-2015-01-22 15:00:00,12679.0
-2015-01-22 16:00:00,12585.0
-2015-01-22 17:00:00,12595.0
-2015-01-22 18:00:00,12908.0
-2015-01-22 19:00:00,13404.0
-2015-01-22 20:00:00,13251.0
-2015-01-22 21:00:00,13038.0
-2015-01-22 22:00:00,12760.0
-2015-01-22 23:00:00,12218.0
-2015-01-23 00:00:00,11475.0
-2015-01-21 01:00:00,10546.0
-2015-01-21 02:00:00,10079.0
-2015-01-21 03:00:00,9814.0
-2015-01-21 04:00:00,9681.0
-2015-01-21 05:00:00,9672.0
-2015-01-21 06:00:00,9941.0
-2015-01-21 07:00:00,10670.0
-2015-01-21 08:00:00,11836.0
-2015-01-21 09:00:00,12495.0
-2015-01-21 10:00:00,12545.0
-2015-01-21 11:00:00,12627.0
-2015-01-21 12:00:00,12738.0
-2015-01-21 13:00:00,12700.0
-2015-01-21 14:00:00,12635.0
-2015-01-21 15:00:00,12666.0
-2015-01-21 16:00:00,12569.0
-2015-01-21 17:00:00,12576.0
-2015-01-21 18:00:00,12889.0
-2015-01-21 19:00:00,13385.0
-2015-01-21 20:00:00,13250.0
-2015-01-21 21:00:00,13032.0
-2015-01-21 22:00:00,12707.0
-2015-01-21 23:00:00,12167.0
-2015-01-22 00:00:00,11389.0
-2015-01-20 01:00:00,10345.0
-2015-01-20 02:00:00,9908.0
-2015-01-20 03:00:00,9653.0
-2015-01-20 04:00:00,9504.0
-2015-01-20 05:00:00,9523.0
-2015-01-20 06:00:00,9786.0
-2015-01-20 07:00:00,10559.0
-2015-01-20 08:00:00,11667.0
-2015-01-20 09:00:00,12236.0
-2015-01-20 10:00:00,12234.0
-2015-01-20 11:00:00,12262.0
-2015-01-20 12:00:00,12359.0
-2015-01-20 13:00:00,12362.0
-2015-01-20 14:00:00,12345.0
-2015-01-20 15:00:00,12356.0
-2015-01-20 16:00:00,12335.0
-2015-01-20 17:00:00,12435.0
-2015-01-20 18:00:00,12897.0
-2015-01-20 19:00:00,13258.0
-2015-01-20 20:00:00,13107.0
-2015-01-20 21:00:00,12901.0
-2015-01-20 22:00:00,12604.0
-2015-01-20 23:00:00,12065.0
-2015-01-21 00:00:00,11279.0
-2015-01-19 01:00:00,10009.0
-2015-01-19 02:00:00,9766.0
-2015-01-19 03:00:00,9555.0
-2015-01-19 04:00:00,9530.0
-2015-01-19 05:00:00,9560.0
-2015-01-19 06:00:00,9915.0
-2015-01-19 07:00:00,10548.0
-2015-01-19 08:00:00,11489.0
-2015-01-19 09:00:00,11903.0
-2015-01-19 10:00:00,11954.0
-2015-01-19 11:00:00,11889.0
-2015-01-19 12:00:00,11887.0
-2015-01-19 13:00:00,11823.0
-2015-01-19 14:00:00,11724.0
-2015-01-19 15:00:00,11733.0
-2015-01-19 16:00:00,11709.0
-2015-01-19 17:00:00,11828.0
-2015-01-19 18:00:00,12279.0
-2015-01-19 19:00:00,12889.0
-2015-01-19 20:00:00,12779.0
-2015-01-19 21:00:00,12555.0
-2015-01-19 22:00:00,12255.0
-2015-01-19 23:00:00,11744.0
-2015-01-20 00:00:00,11012.0
-2015-01-18 01:00:00,10110.0
-2015-01-18 02:00:00,9735.0
-2015-01-18 03:00:00,9421.0
-2015-01-18 04:00:00,9293.0
-2015-01-18 05:00:00,9195.0
-2015-01-18 06:00:00,9232.0
-2015-01-18 07:00:00,9378.0
-2015-01-18 08:00:00,9658.0
-2015-01-18 09:00:00,9806.0
-2015-01-18 10:00:00,10050.0
-2015-01-18 11:00:00,10189.0
-2015-01-18 12:00:00,10253.0
-2015-01-18 13:00:00,10240.0
-2015-01-18 14:00:00,10159.0
-2015-01-18 15:00:00,10009.0
-2015-01-18 16:00:00,9991.0
-2015-01-18 17:00:00,9980.0
-2015-01-18 18:00:00,10449.0
-2015-01-18 19:00:00,11313.0
-2015-01-18 20:00:00,11476.0
-2015-01-18 21:00:00,11384.0
-2015-01-18 22:00:00,11258.0
-2015-01-18 23:00:00,10923.0
-2015-01-19 00:00:00,10522.0
-2015-01-17 01:00:00,11096.0
-2015-01-17 02:00:00,10581.0
-2015-01-17 03:00:00,10301.0
-2015-01-17 04:00:00,10088.0
-2015-01-17 05:00:00,9995.0
-2015-01-17 06:00:00,9998.0
-2015-01-17 07:00:00,10281.0
-2015-01-17 08:00:00,10666.0
-2015-01-17 09:00:00,10899.0
-2015-01-17 10:00:00,11016.0
-2015-01-17 11:00:00,11060.0
-2015-01-17 12:00:00,11082.0
-2015-01-17 13:00:00,11015.0
-2015-01-17 14:00:00,10882.0
-2015-01-17 15:00:00,10664.0
-2015-01-17 16:00:00,10627.0
-2015-01-17 17:00:00,10731.0
-2015-01-17 18:00:00,11150.0
-2015-01-17 19:00:00,11804.0
-2015-01-17 20:00:00,11789.0
-2015-01-17 21:00:00,11606.0
-2015-01-17 22:00:00,11455.0
-2015-01-17 23:00:00,11102.0
-2015-01-18 00:00:00,10646.0
-2015-01-16 01:00:00,11197.0
-2015-01-16 02:00:00,10753.0
-2015-01-16 03:00:00,10518.0
-2015-01-16 04:00:00,10394.0
-2015-01-16 05:00:00,10404.0
-2015-01-16 06:00:00,10645.0
-2015-01-16 07:00:00,11324.0
-2015-01-16 08:00:00,12351.0
-2015-01-16 09:00:00,12839.0
-2015-01-16 10:00:00,12916.0
-2015-01-16 11:00:00,12890.0
-2015-01-16 12:00:00,12732.0
-2015-01-16 13:00:00,12540.0
-2015-01-16 14:00:00,12389.0
-2015-01-16 15:00:00,12341.0
-2015-01-16 16:00:00,12214.0
-2015-01-16 17:00:00,12147.0
-2015-01-16 18:00:00,12506.0
-2015-01-16 19:00:00,13314.0
-2015-01-16 20:00:00,13266.0
-2015-01-16 21:00:00,13099.0
-2015-01-16 22:00:00,12773.0
-2015-01-16 23:00:00,12442.0
-2015-01-17 00:00:00,11746.0
-2015-01-15 01:00:00,11938.0
-2015-01-15 02:00:00,11470.0
-2015-01-15 03:00:00,11191.0
-2015-01-15 04:00:00,11018.0
-2015-01-15 05:00:00,11043.0
-2015-01-15 06:00:00,11248.0
-2015-01-15 07:00:00,11908.0
-2015-01-15 08:00:00,13003.0
-2015-01-15 09:00:00,13472.0
-2015-01-15 10:00:00,13551.0
-2015-01-15 11:00:00,13527.0
-2015-01-15 12:00:00,13294.0
-2015-01-15 13:00:00,13027.0
-2015-01-15 14:00:00,12822.0
-2015-01-15 15:00:00,12732.0
-2015-01-15 16:00:00,12552.0
-2015-01-15 17:00:00,12461.0
-2015-01-15 18:00:00,12870.0
-2015-01-15 19:00:00,13742.0
-2015-01-15 20:00:00,13690.0
-2015-01-15 21:00:00,13521.0
-2015-01-15 22:00:00,13220.0
-2015-01-15 23:00:00,12674.0
-2015-01-16 00:00:00,11912.0
-2015-01-14 01:00:00,12123.0
-2015-01-14 02:00:00,11726.0
-2015-01-14 03:00:00,11513.0
-2015-01-14 04:00:00,11433.0
-2015-01-14 05:00:00,11459.0
-2015-01-14 06:00:00,11719.0
-2015-01-14 07:00:00,12417.0
-2015-01-14 08:00:00,13533.0
-2015-01-14 09:00:00,13994.0
-2015-01-14 10:00:00,14026.0
-2015-01-14 11:00:00,14054.0
-2015-01-14 12:00:00,13964.0
-2015-01-14 13:00:00,13737.0
-2015-01-14 14:00:00,13629.0
-2015-01-14 15:00:00,13544.0
-2015-01-14 16:00:00,13453.0
-2015-01-14 17:00:00,13360.0
-2015-01-14 18:00:00,13757.0
-2015-01-14 19:00:00,14551.0
-2015-01-14 20:00:00,14490.0
-2015-01-14 21:00:00,14341.0
-2015-01-14 22:00:00,14034.0
-2015-01-14 23:00:00,13496.0
-2015-01-15 00:00:00,12702.0
-2015-01-13 01:00:00,11905.0
-2015-01-13 02:00:00,11401.0
-2015-01-13 03:00:00,11136.0
-2015-01-13 04:00:00,10955.0
-2015-01-13 05:00:00,10973.0
-2015-01-13 06:00:00,11223.0
-2015-01-13 07:00:00,11934.0
-2015-01-13 08:00:00,13040.0
-2015-01-13 09:00:00,13584.0
-2015-01-13 10:00:00,13598.0
-2015-01-13 11:00:00,13627.0
-2015-01-13 12:00:00,13581.0
-2015-01-13 13:00:00,13432.0
-2015-01-13 14:00:00,13278.0
-2015-01-13 15:00:00,13203.0
-2015-01-13 16:00:00,13071.0
-2015-01-13 17:00:00,13041.0
-2015-01-13 18:00:00,13464.0
-2015-01-13 19:00:00,14360.0
-2015-01-13 20:00:00,14363.0
-2015-01-13 21:00:00,14213.0
-2015-01-13 22:00:00,14002.0
-2015-01-13 23:00:00,13512.0
-2015-01-14 00:00:00,12799.0
-2015-01-12 01:00:00,10837.0
-2015-01-12 02:00:00,10446.0
-2015-01-12 03:00:00,10254.0
-2015-01-12 04:00:00,10128.0
-2015-01-12 05:00:00,10201.0
-2015-01-12 06:00:00,10521.0
-2015-01-12 07:00:00,11310.0
-2015-01-12 08:00:00,12574.0
-2015-01-12 09:00:00,13137.0
-2015-01-12 10:00:00,13255.0
-2015-01-12 11:00:00,13249.0
-2015-01-12 12:00:00,13274.0
-2015-01-12 13:00:00,13206.0
-2015-01-12 14:00:00,13184.0
-2015-01-12 15:00:00,13200.0
-2015-01-12 16:00:00,13150.0
-2015-01-12 17:00:00,13199.0
-2015-01-12 18:00:00,13685.0
-2015-01-12 19:00:00,14456.0
-2015-01-12 20:00:00,14465.0
-2015-01-12 21:00:00,14280.0
-2015-01-12 22:00:00,13975.0
-2015-01-12 23:00:00,13444.0
-2015-01-13 00:00:00,12676.0
-2015-01-11 01:00:00,11634.0
-2015-01-11 02:00:00,11169.0
-2015-01-11 03:00:00,10882.0
-2015-01-11 04:00:00,10719.0
-2015-01-11 05:00:00,10574.0
-2015-01-11 06:00:00,10589.0
-2015-01-11 07:00:00,10695.0
-2015-01-11 08:00:00,10946.0
-2015-01-11 09:00:00,10981.0
-2015-01-11 10:00:00,11142.0
-2015-01-11 11:00:00,11241.0
-2015-01-11 12:00:00,11293.0
-2015-01-11 13:00:00,11220.0
-2015-01-11 14:00:00,11239.0
-2015-01-11 15:00:00,11166.0
-2015-01-11 16:00:00,11259.0
-2015-01-11 17:00:00,11483.0
-2015-01-11 18:00:00,12140.0
-2015-01-11 19:00:00,12788.0
-2015-01-11 20:00:00,12767.0
-2015-01-11 21:00:00,12610.0
-2015-01-11 22:00:00,12306.0
-2015-01-11 23:00:00,11920.0
-2015-01-12 00:00:00,11336.0
-2015-01-10 01:00:00,13132.0
-2015-01-10 02:00:00,12665.0
-2015-01-10 03:00:00,12315.0
-2015-01-10 04:00:00,12145.0
-2015-01-10 05:00:00,12110.0
-2015-01-10 06:00:00,12184.0
-2015-01-10 07:00:00,12442.0
-2015-01-10 08:00:00,12865.0
-2015-01-10 09:00:00,13056.0
-2015-01-10 10:00:00,13175.0
-2015-01-10 11:00:00,13250.0
-2015-01-10 12:00:00,13223.0
-2015-01-10 13:00:00,13110.0
-2015-01-10 14:00:00,12846.0
-2015-01-10 15:00:00,12615.0
-2015-01-10 16:00:00,12815.0
-2015-01-10 17:00:00,12993.0
-2015-01-10 18:00:00,13505.0
-2015-01-10 19:00:00,13924.0
-2015-01-10 20:00:00,13800.0
-2015-01-10 21:00:00,13568.0
-2015-01-10 22:00:00,13266.0
-2015-01-10 23:00:00,12890.0
-2015-01-11 00:00:00,12270.0
-2015-01-09 01:00:00,12880.0
-2015-01-09 02:00:00,12505.0
-2015-01-09 03:00:00,12247.0
-2015-01-09 04:00:00,12059.0
-2015-01-09 05:00:00,12025.0
-2015-01-09 06:00:00,12229.0
-2015-01-09 07:00:00,12814.0
-2015-01-09 08:00:00,13813.0
-2015-01-09 09:00:00,14298.0
-2015-01-09 10:00:00,14312.0
-2015-01-09 11:00:00,14382.0
-2015-01-09 12:00:00,14452.0
-2015-01-09 13:00:00,14474.0
-2015-01-09 14:00:00,14451.0
-2015-01-09 15:00:00,14455.0
-2015-01-09 16:00:00,14364.0
-2015-01-09 17:00:00,14358.0
-2015-01-09 18:00:00,14798.0
-2015-01-09 19:00:00,15509.0
-2015-01-09 20:00:00,15502.0
-2015-01-09 21:00:00,15316.0
-2015-01-09 22:00:00,14998.0
-2015-01-09 23:00:00,14593.0
-2015-01-10 00:00:00,13817.0
-2015-01-08 01:00:00,13356.0
-2015-01-08 02:00:00,12965.0
-2015-01-08 03:00:00,12730.0
-2015-01-08 04:00:00,12596.0
-2015-01-08 05:00:00,12590.0
-2015-01-08 06:00:00,12792.0
-2015-01-08 07:00:00,13293.0
-2015-01-08 08:00:00,14159.0
-2015-01-08 09:00:00,14662.0
-2015-01-08 10:00:00,14893.0
-2015-01-08 11:00:00,15113.0
-2015-01-08 12:00:00,15373.0
-2015-01-08 13:00:00,15398.0
-2015-01-08 14:00:00,15381.0
-2015-01-08 15:00:00,15412.0
-2015-01-08 16:00:00,15281.0
-2015-01-08 17:00:00,15145.0
-2015-01-08 18:00:00,15473.0
-2015-01-08 19:00:00,15951.0
-2015-01-08 20:00:00,15775.0
-2015-01-08 21:00:00,15494.0
-2015-01-08 22:00:00,15100.0
-2015-01-08 23:00:00,14470.0
-2015-01-09 00:00:00,13667.0
-2015-01-07 01:00:00,12832.0
-2015-01-07 02:00:00,12396.0
-2015-01-07 03:00:00,12113.0
-2015-01-07 04:00:00,12027.0
-2015-01-07 05:00:00,12006.0
-2015-01-07 06:00:00,12249.0
-2015-01-07 07:00:00,12866.0
-2015-01-07 08:00:00,13792.0
-2015-01-07 09:00:00,14244.0
-2015-01-07 10:00:00,14353.0
-2015-01-07 11:00:00,14518.0
-2015-01-07 12:00:00,14620.0
-2015-01-07 13:00:00,14643.0
-2015-01-07 14:00:00,14545.0
-2015-01-07 15:00:00,14540.0
-2015-01-07 16:00:00,14445.0
-2015-01-07 17:00:00,14450.0
-2015-01-07 18:00:00,14969.0
-2015-01-07 19:00:00,15816.0
-2015-01-07 20:00:00,15778.0
-2015-01-07 21:00:00,15578.0
-2015-01-07 22:00:00,15314.0
-2015-01-07 23:00:00,14824.0
-2015-01-08 00:00:00,14072.0
-2015-01-06 01:00:00,12414.0
-2015-01-06 02:00:00,11904.0
-2015-01-06 03:00:00,11598.0
-2015-01-06 04:00:00,11472.0
-2015-01-06 05:00:00,11492.0
-2015-01-06 06:00:00,11712.0
-2015-01-06 07:00:00,12421.0
-2015-01-06 08:00:00,13479.0
-2015-01-06 09:00:00,13897.0
-2015-01-06 10:00:00,13859.0
-2015-01-06 11:00:00,13838.0
-2015-01-06 12:00:00,13875.0
-2015-01-06 13:00:00,13748.0
-2015-01-06 14:00:00,13713.0
-2015-01-06 15:00:00,13785.0
-2015-01-06 16:00:00,13783.0
-2015-01-06 17:00:00,13920.0
-2015-01-06 18:00:00,14644.0
-2015-01-06 19:00:00,15347.0
-2015-01-06 20:00:00,15297.0
-2015-01-06 21:00:00,15099.0
-2015-01-06 22:00:00,14804.0
-2015-01-06 23:00:00,14301.0
-2015-01-07 00:00:00,13549.0
-2015-01-05 01:00:00,11601.0
-2015-01-05 02:00:00,11325.0
-2015-01-05 03:00:00,11209.0
-2015-01-05 04:00:00,11181.0
-2015-01-05 05:00:00,11217.0
-2015-01-05 06:00:00,11570.0
-2015-01-05 07:00:00,12312.0
-2015-01-05 08:00:00,13465.0
-2015-01-05 09:00:00,14010.0
-2015-01-05 10:00:00,14073.0
-2015-01-05 11:00:00,14079.0
-2015-01-05 12:00:00,14133.0
-2015-01-05 13:00:00,14176.0
-2015-01-05 14:00:00,14122.0
-2015-01-05 15:00:00,14234.0
-2015-01-05 16:00:00,14187.0
-2015-01-05 17:00:00,14248.0
-2015-01-05 18:00:00,14865.0
-2015-01-05 19:00:00,15447.0
-2015-01-05 20:00:00,15322.0
-2015-01-05 21:00:00,15122.0
-2015-01-05 22:00:00,14827.0
-2015-01-05 23:00:00,14198.0
-2015-01-06 00:00:00,13262.0
-2015-01-04 01:00:00,10217.0
-2015-01-04 02:00:00,9752.0
-2015-01-04 03:00:00,9384.0
-2015-01-04 04:00:00,9251.0
-2015-01-04 05:00:00,9197.0
-2015-01-04 06:00:00,9251.0
-2015-01-04 07:00:00,9404.0
-2015-01-04 08:00:00,9677.0
-2015-01-04 09:00:00,9805.0
-2015-01-04 10:00:00,10078.0
-2015-01-04 11:00:00,10324.0
-2015-01-04 12:00:00,10657.0
-2015-01-04 13:00:00,10858.0
-2015-01-04 14:00:00,11023.0
-2015-01-04 15:00:00,11060.0
-2015-01-04 16:00:00,11119.0
-2015-01-04 17:00:00,11253.0
-2015-01-04 18:00:00,12008.0
-2015-01-04 19:00:00,12975.0
-2015-01-04 20:00:00,13078.0
-2015-01-04 21:00:00,13106.0
-2015-01-04 22:00:00,12990.0
-2015-01-04 23:00:00,12627.0
-2015-01-05 00:00:00,12084.0
-2015-01-03 01:00:00,10520.0
-2015-01-03 02:00:00,9963.0
-2015-01-03 03:00:00,9622.0
-2015-01-03 04:00:00,9475.0
-2015-01-03 05:00:00,9423.0
-2015-01-03 06:00:00,9494.0
-2015-01-03 07:00:00,9733.0
-2015-01-03 08:00:00,10135.0
-2015-01-03 09:00:00,10432.0
-2015-01-03 10:00:00,10696.0
-2015-01-03 11:00:00,11014.0
-2015-01-03 12:00:00,11244.0
-2015-01-03 13:00:00,11249.0
-2015-01-03 14:00:00,11328.0
-2015-01-03 15:00:00,11200.0
-2015-01-03 16:00:00,11073.0
-2015-01-03 17:00:00,11033.0
-2015-01-03 18:00:00,11517.0
-2015-01-03 19:00:00,12009.0
-2015-01-03 20:00:00,12010.0
-2015-01-03 21:00:00,11840.0
-2015-01-03 22:00:00,11648.0
-2015-01-03 23:00:00,11302.0
-2015-01-04 00:00:00,10823.0
-2015-01-02 01:00:00,10304.0
-2015-01-02 02:00:00,9884.0
-2015-01-02 03:00:00,9620.0
-2015-01-02 04:00:00,9513.0
-2015-01-02 05:00:00,9533.0
-2015-01-02 06:00:00,9791.0
-2015-01-02 07:00:00,10346.0
-2015-01-02 08:00:00,11115.0
-2015-01-02 09:00:00,11543.0
-2015-01-02 10:00:00,11598.0
-2015-01-02 11:00:00,11661.0
-2015-01-02 12:00:00,11701.0
-2015-01-02 13:00:00,11628.0
-2015-01-02 14:00:00,11469.0
-2015-01-02 15:00:00,11445.0
-2015-01-02 16:00:00,11394.0
-2015-01-02 17:00:00,11478.0
-2015-01-02 18:00:00,12211.0
-2015-01-02 19:00:00,12804.0
-2015-01-02 20:00:00,12666.0
-2015-01-02 21:00:00,12436.0
-2015-01-02 22:00:00,12185.0
-2015-01-02 23:00:00,11823.0
-2015-01-03 00:00:00,11194.0
-2015-01-01 01:00:00,11341.0
-2015-01-01 02:00:00,10969.0
-2015-01-01 03:00:00,10651.0
-2015-01-01 04:00:00,10425.0
-2015-01-01 05:00:00,10299.0
-2015-01-01 06:00:00,10294.0
-2015-01-01 07:00:00,10443.0
-2015-01-01 08:00:00,10634.0
-2015-01-01 09:00:00,10532.0
-2015-01-01 10:00:00,10433.0
-2015-01-01 11:00:00,10543.0
-2015-01-01 12:00:00,10635.0
-2015-01-01 13:00:00,10623.0
-2015-01-01 14:00:00,10592.0
-2015-01-01 15:00:00,10511.0
-2015-01-01 16:00:00,10503.0
-2015-01-01 17:00:00,10585.0
-2015-01-01 18:00:00,11404.0
-2015-01-01 19:00:00,12140.0
-2015-01-01 20:00:00,12076.0
-2015-01-01 21:00:00,11919.0
-2015-01-01 22:00:00,11712.0
-2015-01-01 23:00:00,11397.0
-2015-01-02 00:00:00,10826.0
-2016-12-31 01:00:00,10419.0
-2016-12-31 02:00:00,9940.0
-2016-12-31 03:00:00,9604.0
-2016-12-31 04:00:00,9318.0
-2016-12-31 05:00:00,9224.0
-2016-12-31 06:00:00,9209.0
-2016-12-31 07:00:00,9343.0
-2016-12-31 08:00:00,9715.0
-2016-12-31 09:00:00,9809.0
-2016-12-31 10:00:00,9974.0
-2016-12-31 11:00:00,10087.0
-2016-12-31 12:00:00,10187.0
-2016-12-31 13:00:00,10299.0
-2016-12-31 14:00:00,10385.0
-2016-12-31 15:00:00,10261.0
-2016-12-31 16:00:00,10313.0
-2016-12-31 17:00:00,10416.0
-2016-12-31 18:00:00,11037.0
-2016-12-31 19:00:00,11587.0
-2016-12-31 20:00:00,11549.0
-2016-12-31 21:00:00,11273.0
-2016-12-31 22:00:00,11085.0
-2016-12-31 23:00:00,10801.0
-2017-01-01 00:00:00,10500.0
-2016-12-30 01:00:00,10596.0
-2016-12-30 02:00:00,10137.0
-2016-12-30 03:00:00,9838.0
-2016-12-30 04:00:00,9715.0
-2016-12-30 05:00:00,9657.0
-2016-12-30 06:00:00,9885.0
-2016-12-30 07:00:00,10392.0
-2016-12-30 08:00:00,11013.0
-2016-12-30 09:00:00,11286.0
-2016-12-30 10:00:00,11457.0
-2016-12-30 11:00:00,11507.0
-2016-12-30 12:00:00,11576.0
-2016-12-30 13:00:00,11506.0
-2016-12-30 14:00:00,11367.0
-2016-12-30 15:00:00,11331.0
-2016-12-30 16:00:00,11369.0
-2016-12-30 17:00:00,11363.0
-2016-12-30 18:00:00,11930.0
-2016-12-30 19:00:00,12533.0
-2016-12-30 20:00:00,12375.0
-2016-12-30 21:00:00,12229.0
-2016-12-30 22:00:00,11982.0
-2016-12-30 23:00:00,11613.0
-2016-12-31 00:00:00,11056.0
-2016-12-29 01:00:00,10387.0
-2016-12-29 02:00:00,9969.0
-2016-12-29 03:00:00,9694.0
-2016-12-29 04:00:00,9529.0
-2016-12-29 05:00:00,9567.0
-2016-12-29 06:00:00,9770.0
-2016-12-29 07:00:00,10340.0
-2016-12-29 08:00:00,11180.0
-2016-12-29 09:00:00,11573.0
-2016-12-29 10:00:00,11632.0
-2016-12-29 11:00:00,11755.0
-2016-12-29 12:00:00,11844.0
-2016-12-29 13:00:00,12104.0
-2016-12-29 14:00:00,12226.0
-2016-12-29 15:00:00,12241.0
-2016-12-29 16:00:00,12251.0
-2016-12-29 17:00:00,12198.0
-2016-12-29 18:00:00,12693.0
-2016-12-29 19:00:00,13087.0
-2016-12-29 20:00:00,12797.0
-2016-12-29 21:00:00,12599.0
-2016-12-29 22:00:00,12293.0
-2016-12-29 23:00:00,11900.0
-2016-12-30 00:00:00,11254.0
-2016-12-28 01:00:00,10693.0
-2016-12-28 02:00:00,10244.0
-2016-12-28 03:00:00,9967.0
-2016-12-28 04:00:00,9820.0
-2016-12-28 05:00:00,9836.0
-2016-12-28 06:00:00,10109.0
-2016-12-28 07:00:00,10653.0
-2016-12-28 08:00:00,11432.0
-2016-12-28 09:00:00,11805.0
-2016-12-28 10:00:00,11856.0
-2016-12-28 11:00:00,11878.0
-2016-12-28 12:00:00,11845.0
-2016-12-28 13:00:00,11758.0
-2016-12-28 14:00:00,11727.0
-2016-12-28 15:00:00,11703.0
-2016-12-28 16:00:00,11568.0
-2016-12-28 17:00:00,11644.0
-2016-12-28 18:00:00,12216.0
-2016-12-28 19:00:00,12699.0
-2016-12-28 20:00:00,12476.0
-2016-12-28 21:00:00,12292.0
-2016-12-28 22:00:00,11993.0
-2016-12-28 23:00:00,11596.0
-2016-12-29 00:00:00,10987.0
-2016-12-27 01:00:00,10095.0
-2016-12-27 02:00:00,9700.0
-2016-12-27 03:00:00,9524.0
-2016-12-27 04:00:00,9399.0
-2016-12-27 05:00:00,9432.0
-2016-12-27 06:00:00,9659.0
-2016-12-27 07:00:00,10313.0
-2016-12-27 08:00:00,11115.0
-2016-12-27 09:00:00,11560.0
-2016-12-27 10:00:00,11743.0
-2016-12-27 11:00:00,11900.0
-2016-12-27 12:00:00,12075.0
-2016-12-27 13:00:00,12146.0
-2016-12-27 14:00:00,12060.0
-2016-12-27 15:00:00,11995.0
-2016-12-27 16:00:00,11915.0
-2016-12-27 17:00:00,11929.0
-2016-12-27 18:00:00,12508.0
-2016-12-27 19:00:00,13086.0
-2016-12-27 20:00:00,12919.0
-2016-12-27 21:00:00,12724.0
-2016-12-27 22:00:00,12459.0
-2016-12-27 23:00:00,12038.0
-2016-12-28 00:00:00,11360.0
-2016-12-26 01:00:00,9677.0
-2016-12-26 02:00:00,9222.0
-2016-12-26 03:00:00,8820.0
-2016-12-26 04:00:00,8636.0
-2016-12-26 05:00:00,8498.0
-2016-12-26 06:00:00,8613.0
-2016-12-26 07:00:00,8848.0
-2016-12-26 08:00:00,9187.0
-2016-12-26 09:00:00,9326.0
-2016-12-26 10:00:00,9417.0
-2016-12-26 11:00:00,9519.0
-2016-12-26 12:00:00,9732.0
-2016-12-26 13:00:00,9709.0
-2016-12-26 14:00:00,9635.0
-2016-12-26 15:00:00,9576.0
-2016-12-26 16:00:00,9522.0
-2016-12-26 17:00:00,9611.0
-2016-12-26 18:00:00,10417.0
-2016-12-26 19:00:00,11279.0
-2016-12-26 20:00:00,11431.0
-2016-12-26 21:00:00,11436.0
-2016-12-26 22:00:00,11335.0
-2016-12-26 23:00:00,11144.0
-2016-12-27 00:00:00,10617.0
-2016-12-25 01:00:00,9755.0
-2016-12-25 02:00:00,9348.0
-2016-12-25 03:00:00,9079.0
-2016-12-25 04:00:00,8880.0
-2016-12-25 05:00:00,8782.0
-2016-12-25 06:00:00,8800.0
-2016-12-25 07:00:00,8912.0
-2016-12-25 08:00:00,9155.0
-2016-12-25 09:00:00,9384.0
-2016-12-25 10:00:00,9581.0
-2016-12-25 11:00:00,9870.0
-2016-12-25 12:00:00,9974.0
-2016-12-25 13:00:00,10052.0
-2016-12-25 14:00:00,10049.0
-2016-12-25 15:00:00,9992.0
-2016-12-25 16:00:00,9949.0
-2016-12-25 17:00:00,10086.0
-2016-12-25 18:00:00,10599.0
-2016-12-25 19:00:00,10890.0
-2016-12-25 20:00:00,10837.0
-2016-12-25 21:00:00,10769.0
-2016-12-25 22:00:00,10709.0
-2016-12-25 23:00:00,10518.0
-2016-12-26 00:00:00,10135.0
-2016-12-24 01:00:00,10318.0
-2016-12-24 02:00:00,9743.0
-2016-12-24 03:00:00,9377.0
-2016-12-24 04:00:00,9122.0
-2016-12-24 05:00:00,9025.0
-2016-12-24 06:00:00,9025.0
-2016-12-24 07:00:00,9205.0
-2016-12-24 08:00:00,9515.0
-2016-12-24 09:00:00,9756.0
-2016-12-24 10:00:00,9999.0
-2016-12-24 11:00:00,10214.0
-2016-12-24 12:00:00,10328.0
-2016-12-24 13:00:00,10340.0
-2016-12-24 14:00:00,10284.0
-2016-12-24 15:00:00,10190.0
-2016-12-24 16:00:00,10179.0
-2016-12-24 17:00:00,10280.0
-2016-12-24 18:00:00,10823.0
-2016-12-24 19:00:00,11107.0
-2016-12-24 20:00:00,10944.0
-2016-12-24 21:00:00,10766.0
-2016-12-24 22:00:00,10637.0
-2016-12-24 23:00:00,10489.0
-2016-12-25 00:00:00,10194.0
-2016-12-23 01:00:00,10985.0
-2016-12-23 02:00:00,10417.0
-2016-12-23 03:00:00,10070.0
-2016-12-23 04:00:00,9859.0
-2016-12-23 05:00:00,9792.0
-2016-12-23 06:00:00,9987.0
-2016-12-23 07:00:00,10461.0
-2016-12-23 08:00:00,11104.0
-2016-12-23 09:00:00,11515.0
-2016-12-23 10:00:00,11716.0
-2016-12-23 11:00:00,11812.0
-2016-12-23 12:00:00,11892.0
-2016-12-23 13:00:00,11772.0
-2016-12-23 14:00:00,11682.0
-2016-12-23 15:00:00,11638.0
-2016-12-23 16:00:00,11488.0
-2016-12-23 17:00:00,11615.0
-2016-12-23 18:00:00,12348.0
-2016-12-23 19:00:00,12712.0
-2016-12-23 20:00:00,12436.0
-2016-12-23 21:00:00,12188.0
-2016-12-23 22:00:00,12020.0
-2016-12-23 23:00:00,11683.0
-2016-12-24 00:00:00,11038.0
-2016-12-22 01:00:00,11280.0
-2016-12-22 02:00:00,10666.0
-2016-12-22 03:00:00,10329.0
-2016-12-22 04:00:00,10106.0
-2016-12-22 05:00:00,10026.0
-2016-12-22 06:00:00,10248.0
-2016-12-22 07:00:00,10849.0
-2016-12-22 08:00:00,11768.0
-2016-12-22 09:00:00,12189.0
-2016-12-22 10:00:00,12233.0
-2016-12-22 11:00:00,12168.0
-2016-12-22 12:00:00,12149.0
-2016-12-22 13:00:00,12142.0
-2016-12-22 14:00:00,11859.0
-2016-12-22 15:00:00,11823.0
-2016-12-22 16:00:00,11704.0
-2016-12-22 17:00:00,11803.0
-2016-12-22 18:00:00,12596.0
-2016-12-22 19:00:00,13255.0
-2016-12-22 20:00:00,13150.0
-2016-12-22 21:00:00,13033.0
-2016-12-22 22:00:00,12801.0
-2016-12-22 23:00:00,12416.0
-2016-12-23 00:00:00,11746.0
-2016-12-21 01:00:00,11725.0
-2016-12-21 02:00:00,11166.0
-2016-12-21 03:00:00,10877.0
-2016-12-21 04:00:00,10707.0
-2016-12-21 05:00:00,10694.0
-2016-12-21 06:00:00,10929.0
-2016-12-21 07:00:00,11574.0
-2016-12-21 08:00:00,12408.0
-2016-12-21 09:00:00,13001.0
-2016-12-21 10:00:00,13134.0
-2016-12-21 11:00:00,13110.0
-2016-12-21 12:00:00,13101.0
-2016-12-21 13:00:00,12972.0
-2016-12-21 14:00:00,12912.0
-2016-12-21 15:00:00,12895.0
-2016-12-21 16:00:00,12852.0
-2016-12-21 17:00:00,12908.0
-2016-12-21 18:00:00,13509.0
-2016-12-21 19:00:00,13905.0
-2016-12-21 20:00:00,13707.0
-2016-12-21 21:00:00,13494.0
-2016-12-21 22:00:00,13224.0
-2016-12-21 23:00:00,12772.0
-2016-12-22 00:00:00,11998.0
-2016-12-20 01:00:00,12723.0
-2016-12-20 02:00:00,12127.0
-2016-12-20 03:00:00,11823.0
-2016-12-20 04:00:00,11658.0
-2016-12-20 05:00:00,11656.0
-2016-12-20 06:00:00,11846.0
-2016-12-20 07:00:00,12348.0
-2016-12-20 08:00:00,13345.0
-2016-12-20 09:00:00,13806.0
-2016-12-20 10:00:00,13789.0
-2016-12-20 11:00:00,13662.0
-2016-12-20 12:00:00,13511.0
-2016-12-20 13:00:00,13327.0
-2016-12-20 14:00:00,13179.0
-2016-12-20 15:00:00,13193.0
-2016-12-20 16:00:00,13034.0
-2016-12-20 17:00:00,13047.0
-2016-12-20 18:00:00,13811.0
-2016-12-20 19:00:00,14411.0
-2016-12-20 20:00:00,14294.0
-2016-12-20 21:00:00,14099.0
-2016-12-20 22:00:00,13854.0
-2016-12-20 23:00:00,13373.0
-2016-12-21 00:00:00,12543.0
-2016-12-19 01:00:00,12603.0
-2016-12-19 02:00:00,12179.0
-2016-12-19 03:00:00,11956.0
-2016-12-19 04:00:00,11902.0
-2016-12-19 05:00:00,11964.0
-2016-12-19 06:00:00,12191.0
-2016-12-19 07:00:00,12890.0
-2016-12-19 08:00:00,13815.0
-2016-12-19 09:00:00,14345.0
-2016-12-19 10:00:00,14432.0
-2016-12-19 11:00:00,14363.0
-2016-12-19 12:00:00,14355.0
-2016-12-19 13:00:00,14224.0
-2016-12-19 14:00:00,14062.0
-2016-12-19 15:00:00,13968.0
-2016-12-19 16:00:00,13860.0
-2016-12-19 17:00:00,13927.0
-2016-12-19 18:00:00,14639.0
-2016-12-19 19:00:00,15316.0
-2016-12-19 20:00:00,15329.0
-2016-12-19 21:00:00,15139.0
-2016-12-19 22:00:00,14775.0
-2016-12-19 23:00:00,14276.0
-2016-12-20 00:00:00,13528.0
-2016-12-18 01:00:00,11646.0
-2016-12-18 02:00:00,11208.0
-2016-12-18 03:00:00,10912.0
-2016-12-18 04:00:00,10763.0
-2016-12-18 05:00:00,10691.0
-2016-12-18 06:00:00,10787.0
-2016-12-18 07:00:00,10987.0
-2016-12-18 08:00:00,11342.0
-2016-12-18 09:00:00,11447.0
-2016-12-18 10:00:00,11635.0
-2016-12-18 11:00:00,11784.0
-2016-12-18 12:00:00,11849.0
-2016-12-18 13:00:00,11902.0
-2016-12-18 14:00:00,11879.0
-2016-12-18 15:00:00,11871.0
-2016-12-18 16:00:00,11873.0
-2016-12-18 17:00:00,12138.0
-2016-12-18 18:00:00,13116.0
-2016-12-18 19:00:00,14079.0
-2016-12-18 20:00:00,14199.0
-2016-12-18 21:00:00,14230.0
-2016-12-18 22:00:00,14073.0
-2016-12-18 23:00:00,13736.0
-2016-12-19 00:00:00,13153.0
-2016-12-17 01:00:00,11983.0
-2016-12-17 02:00:00,11311.0
-2016-12-17 03:00:00,10956.0
-2016-12-17 04:00:00,10688.0
-2016-12-17 05:00:00,10589.0
-2016-12-17 06:00:00,10608.0
-2016-12-17 07:00:00,10862.0
-2016-12-17 08:00:00,11286.0
-2016-12-17 09:00:00,11554.0
-2016-12-17 10:00:00,11855.0
-2016-12-17 11:00:00,12152.0
-2016-12-17 12:00:00,12240.0
-2016-12-17 13:00:00,12223.0
-2016-12-17 14:00:00,12190.0
-2016-12-17 15:00:00,12032.0
-2016-12-17 16:00:00,12036.0
-2016-12-17 17:00:00,12167.0
-2016-12-17 18:00:00,12947.0
-2016-12-17 19:00:00,13393.0
-2016-12-17 20:00:00,13352.0
-2016-12-17 21:00:00,13144.0
-2016-12-17 22:00:00,12992.0
-2016-12-17 23:00:00,12723.0
-2016-12-18 00:00:00,12226.0
-2016-12-16 01:00:00,12615.0
-2016-12-16 02:00:00,12046.0
-2016-12-16 03:00:00,11631.0
-2016-12-16 04:00:00,11540.0
-2016-12-16 05:00:00,11515.0
-2016-12-16 06:00:00,11734.0
-2016-12-16 07:00:00,12343.0
-2016-12-16 08:00:00,13298.0
-2016-12-16 09:00:00,13808.0
-2016-12-16 10:00:00,13902.0
-2016-12-16 11:00:00,13973.0
-2016-12-16 12:00:00,14025.0
-2016-12-16 13:00:00,13938.0
-2016-12-16 14:00:00,13782.0
-2016-12-16 15:00:00,13743.0
-2016-12-16 16:00:00,13673.0
-2016-12-16 17:00:00,13704.0
-2016-12-16 18:00:00,14398.0
-2016-12-16 19:00:00,14672.0
-2016-12-16 20:00:00,14523.0
-2016-12-16 21:00:00,14261.0
-2016-12-16 22:00:00,13925.0
-2016-12-16 23:00:00,13484.0
-2016-12-17 00:00:00,12720.0
-2016-12-15 01:00:00,12828.0
-2016-12-15 02:00:00,12306.0
-2016-12-15 03:00:00,12039.0
-2016-12-15 04:00:00,11925.0
-2016-12-15 05:00:00,11908.0
-2016-12-15 06:00:00,12147.0
-2016-12-15 07:00:00,12834.0
-2016-12-15 08:00:00,13842.0
-2016-12-15 09:00:00,14276.0
-2016-12-15 10:00:00,14351.0
-2016-12-15 11:00:00,14303.0
-2016-12-15 12:00:00,14279.0
-2016-12-15 13:00:00,14130.0
-2016-12-15 14:00:00,14008.0
-2016-12-15 15:00:00,13939.0
-2016-12-15 16:00:00,13792.0
-2016-12-15 17:00:00,13802.0
-2016-12-15 18:00:00,14734.0
-2016-12-15 19:00:00,15385.0
-2016-12-15 20:00:00,15301.0
-2016-12-15 21:00:00,15119.0
-2016-12-15 22:00:00,14851.0
-2016-12-15 23:00:00,14299.0
-2016-12-16 00:00:00,13438.0
-2016-12-14 01:00:00,12287.0
-2016-12-14 02:00:00,11839.0
-2016-12-14 03:00:00,11590.0
-2016-12-14 04:00:00,11448.0
-2016-12-14 05:00:00,11446.0
-2016-12-14 06:00:00,11678.0
-2016-12-14 07:00:00,12286.0
-2016-12-14 08:00:00,13313.0
-2016-12-14 09:00:00,13693.0
-2016-12-14 10:00:00,13722.0
-2016-12-14 11:00:00,13809.0
-2016-12-14 12:00:00,13748.0
-2016-12-14 13:00:00,13581.0
-2016-12-14 14:00:00,13464.0
-2016-12-14 15:00:00,13409.0
-2016-12-14 16:00:00,13420.0
-2016-12-14 17:00:00,13560.0
-2016-12-14 18:00:00,14440.0
-2016-12-14 19:00:00,15122.0
-2016-12-14 20:00:00,15148.0
-2016-12-14 21:00:00,15069.0
-2016-12-14 22:00:00,14861.0
-2016-12-14 23:00:00,14391.0
-2016-12-15 00:00:00,13571.0
-2016-12-13 01:00:00,11355.0
-2016-12-13 02:00:00,11079.0
-2016-12-13 03:00:00,10737.0
-2016-12-13 04:00:00,10616.0
-2016-12-13 05:00:00,10559.0
-2016-12-13 06:00:00,10816.0
-2016-12-13 07:00:00,11470.0
-2016-12-13 08:00:00,12539.0
-2016-12-13 09:00:00,13094.0
-2016-12-13 10:00:00,13243.0
-2016-12-13 11:00:00,13282.0
-2016-12-13 12:00:00,13235.0
-2016-12-13 13:00:00,13042.0
-2016-12-13 14:00:00,12965.0
-2016-12-13 15:00:00,12960.0
-2016-12-13 16:00:00,12937.0
-2016-12-13 17:00:00,13037.0
-2016-12-13 18:00:00,13887.0
-2016-12-13 19:00:00,14650.0
-2016-12-13 20:00:00,14617.0
-2016-12-13 21:00:00,14525.0
-2016-12-13 22:00:00,14331.0
-2016-12-13 23:00:00,13831.0
-2016-12-14 00:00:00,13085.0
-2016-12-12 01:00:00,10354.0
-2016-12-12 02:00:00,10010.0
-2016-12-12 03:00:00,9800.0
-2016-12-12 04:00:00,9769.0
-2016-12-12 05:00:00,9843.0
-2016-12-12 06:00:00,10173.0
-2016-12-12 07:00:00,10995.0
-2016-12-12 08:00:00,12067.0
-2016-12-12 09:00:00,12660.0
-2016-12-12 10:00:00,12801.0
-2016-12-12 11:00:00,12931.0
-2016-12-12 12:00:00,12961.0
-2016-12-12 13:00:00,12863.0
-2016-12-12 14:00:00,12935.0
-2016-12-12 15:00:00,12733.0
-2016-12-12 16:00:00,12614.0
-2016-12-12 17:00:00,12719.0
-2016-12-12 18:00:00,13602.0
-2016-12-12 19:00:00,14312.0
-2016-12-12 20:00:00,14241.0
-2016-12-12 21:00:00,14087.0
-2016-12-12 22:00:00,13806.0
-2016-12-12 23:00:00,13290.0
-2016-12-13 00:00:00,12466.0
-2016-12-11 01:00:00,10998.0
-2016-12-11 02:00:00,10578.0
-2016-12-11 03:00:00,10209.0
-2016-12-11 04:00:00,10058.0
-2016-12-11 05:00:00,9894.0
-2016-12-11 06:00:00,9890.0
-2016-12-11 07:00:00,9999.0
-2016-12-11 08:00:00,10248.0
-2016-12-11 09:00:00,10396.0
-2016-12-11 10:00:00,10609.0
-2016-12-11 11:00:00,10899.0
-2016-12-11 12:00:00,11050.0
-2016-12-11 13:00:00,11081.0
-2016-12-11 14:00:00,11178.0
-2016-12-11 15:00:00,11132.0
-2016-12-11 16:00:00,11211.0
-2016-12-11 17:00:00,11347.0
-2016-12-11 18:00:00,12226.0
-2016-12-11 19:00:00,12634.0
-2016-12-11 20:00:00,12619.0
-2016-12-11 21:00:00,12494.0
-2016-12-11 22:00:00,12024.0
-2016-12-11 23:00:00,11657.0
-2016-12-12 00:00:00,11012.0
-2016-12-10 01:00:00,11424.0
-2016-12-10 02:00:00,10847.0
-2016-12-10 03:00:00,10537.0
-2016-12-10 04:00:00,10316.0
-2016-12-10 05:00:00,10265.0
-2016-12-10 06:00:00,10331.0
-2016-12-10 07:00:00,10657.0
-2016-12-10 08:00:00,11141.0
-2016-12-10 09:00:00,11427.0
-2016-12-10 10:00:00,11668.0
-2016-12-10 11:00:00,11734.0
-2016-12-10 12:00:00,11687.0
-2016-12-10 13:00:00,11673.0
-2016-12-10 14:00:00,11596.0
-2016-12-10 15:00:00,11508.0
-2016-12-10 16:00:00,11423.0
-2016-12-10 17:00:00,11663.0
-2016-12-10 18:00:00,12513.0
-2016-12-10 19:00:00,12966.0
-2016-12-10 20:00:00,12870.0
-2016-12-10 21:00:00,12787.0
-2016-12-10 22:00:00,12566.0
-2016-12-10 23:00:00,12217.0
-2016-12-11 00:00:00,11674.0
-2016-12-09 01:00:00,11457.0
-2016-12-09 02:00:00,10905.0
-2016-12-09 03:00:00,10593.0
-2016-12-09 04:00:00,10423.0
-2016-12-09 05:00:00,10417.0
-2016-12-09 06:00:00,10663.0
-2016-12-09 07:00:00,11311.0
-2016-12-09 08:00:00,12336.0
-2016-12-09 09:00:00,12807.0
-2016-12-09 10:00:00,12937.0
-2016-12-09 11:00:00,12976.0
-2016-12-09 12:00:00,12984.0
-2016-12-09 13:00:00,12909.0
-2016-12-09 14:00:00,12811.0
-2016-12-09 15:00:00,12735.0
-2016-12-09 16:00:00,12633.0
-2016-12-09 17:00:00,12670.0
-2016-12-09 18:00:00,13341.0
-2016-12-09 19:00:00,13854.0
-2016-12-09 20:00:00,13721.0
-2016-12-09 21:00:00,13502.0
-2016-12-09 22:00:00,13242.0
-2016-12-09 23:00:00,12869.0
-2016-12-10 00:00:00,12133.0
-2016-12-08 01:00:00,11286.0
-2016-12-08 02:00:00,10762.0
-2016-12-08 03:00:00,10468.0
-2016-12-08 04:00:00,10272.0
-2016-12-08 05:00:00,10326.0
-2016-12-08 06:00:00,10607.0
-2016-12-08 07:00:00,11332.0
-2016-12-08 08:00:00,12489.0
-2016-12-08 09:00:00,13097.0
-2016-12-08 10:00:00,13274.0
-2016-12-08 11:00:00,13362.0
-2016-12-08 12:00:00,13387.0
-2016-12-08 13:00:00,13321.0
-2016-12-08 14:00:00,13314.0
-2016-12-08 15:00:00,13328.0
-2016-12-08 16:00:00,13316.0
-2016-12-08 17:00:00,13362.0
-2016-12-08 18:00:00,14036.0
-2016-12-08 19:00:00,14310.0
-2016-12-08 20:00:00,14148.0
-2016-12-08 21:00:00,13890.0
-2016-12-08 22:00:00,13649.0
-2016-12-08 23:00:00,13104.0
-2016-12-09 00:00:00,12247.0
-2016-12-07 01:00:00,10868.0
-2016-12-07 02:00:00,10372.0
-2016-12-07 03:00:00,10085.0
-2016-12-07 04:00:00,9949.0
-2016-12-07 05:00:00,9945.0
-2016-12-07 06:00:00,10238.0
-2016-12-07 07:00:00,10953.0
-2016-12-07 08:00:00,12054.0
-2016-12-07 09:00:00,12559.0
-2016-12-07 10:00:00,12637.0
-2016-12-07 11:00:00,12511.0
-2016-12-07 12:00:00,12545.0
-2016-12-07 13:00:00,12383.0
-2016-12-07 14:00:00,12325.0
-2016-12-07 15:00:00,12426.0
-2016-12-07 16:00:00,12421.0
-2016-12-07 17:00:00,12609.0
-2016-12-07 18:00:00,13401.0
-2016-12-07 19:00:00,13927.0
-2016-12-07 20:00:00,13812.0
-2016-12-07 21:00:00,13676.0
-2016-12-07 22:00:00,13433.0
-2016-12-07 23:00:00,12891.0
-2016-12-08 00:00:00,12080.0
-2016-12-06 01:00:00,10453.0
-2016-12-06 02:00:00,9934.0
-2016-12-06 03:00:00,9604.0
-2016-12-06 04:00:00,9473.0
-2016-12-06 05:00:00,9470.0
-2016-12-06 06:00:00,9726.0
-2016-12-06 07:00:00,10461.0
-2016-12-06 08:00:00,11582.0
-2016-12-06 09:00:00,12026.0
-2016-12-06 10:00:00,12098.0
-2016-12-06 11:00:00,12116.0
-2016-12-06 12:00:00,12020.0
-2016-12-06 13:00:00,11891.0
-2016-12-06 14:00:00,11994.0
-2016-12-06 15:00:00,12174.0
-2016-12-06 16:00:00,12205.0
-2016-12-06 17:00:00,12179.0
-2016-12-06 18:00:00,12800.0
-2016-12-06 19:00:00,13444.0
-2016-12-06 20:00:00,13288.0
-2016-12-06 21:00:00,13145.0
-2016-12-06 22:00:00,12912.0
-2016-12-06 23:00:00,12402.0
-2016-12-07 00:00:00,11561.0
-2016-12-05 01:00:00,9928.0
-2016-12-05 02:00:00,9518.0
-2016-12-05 03:00:00,9301.0
-2016-12-05 04:00:00,9193.0
-2016-12-05 05:00:00,9200.0
-2016-12-05 06:00:00,9552.0
-2016-12-05 07:00:00,10307.0
-2016-12-05 08:00:00,11440.0
-2016-12-05 09:00:00,11989.0
-2016-12-05 10:00:00,12093.0
-2016-12-05 11:00:00,12225.0
-2016-12-05 12:00:00,12248.0
-2016-12-05 13:00:00,12327.0
-2016-12-05 14:00:00,12318.0
-2016-12-05 15:00:00,12300.0
-2016-12-05 16:00:00,12265.0
-2016-12-05 17:00:00,12256.0
-2016-12-05 18:00:00,12867.0
-2016-12-05 19:00:00,13311.0
-2016-12-05 20:00:00,13153.0
-2016-12-05 21:00:00,12960.0
-2016-12-05 22:00:00,12674.0
-2016-12-05 23:00:00,12123.0
-2016-12-06 00:00:00,11290.0
-2016-12-04 01:00:00,9894.0
-2016-12-04 02:00:00,9428.0
-2016-12-04 03:00:00,9098.0
-2016-12-04 04:00:00,8940.0
-2016-12-04 05:00:00,8841.0
-2016-12-04 06:00:00,8859.0
-2016-12-04 07:00:00,8991.0
-2016-12-04 08:00:00,9280.0
-2016-12-04 09:00:00,9440.0
-2016-12-04 10:00:00,9743.0
-2016-12-04 11:00:00,10029.0
-2016-12-04 12:00:00,10340.0
-2016-12-04 13:00:00,10555.0
-2016-12-04 14:00:00,10671.0
-2016-12-04 15:00:00,10676.0
-2016-12-04 16:00:00,10725.0
-2016-12-04 17:00:00,10863.0
-2016-12-04 18:00:00,11562.0
-2016-12-04 19:00:00,11987.0
-2016-12-04 20:00:00,11923.0
-2016-12-04 21:00:00,11723.0
-2016-12-04 22:00:00,11526.0
-2016-12-04 23:00:00,11039.0
-2016-12-05 00:00:00,10528.0
-2016-12-03 01:00:00,10121.0
-2016-12-03 02:00:00,9628.0
-2016-12-03 03:00:00,9311.0
-2016-12-03 04:00:00,9083.0
-2016-12-03 05:00:00,9044.0
-2016-12-03 06:00:00,9097.0
-2016-12-03 07:00:00,9418.0
-2016-12-03 08:00:00,9881.0
-2016-12-03 09:00:00,10194.0
-2016-12-03 10:00:00,10563.0
-2016-12-03 11:00:00,10707.0
-2016-12-03 12:00:00,10877.0
-2016-12-03 13:00:00,10777.0
-2016-12-03 14:00:00,10747.0
-2016-12-03 15:00:00,10594.0
-2016-12-03 16:00:00,10500.0
-2016-12-03 17:00:00,10526.0
-2016-12-03 18:00:00,11203.0
-2016-12-03 19:00:00,11643.0
-2016-12-03 20:00:00,11607.0
-2016-12-03 21:00:00,11438.0
-2016-12-03 22:00:00,11279.0
-2016-12-03 23:00:00,10970.0
-2016-12-04 00:00:00,10511.0
-2016-12-02 01:00:00,10060.0
-2016-12-02 02:00:00,9539.0
-2016-12-02 03:00:00,9276.0
-2016-12-02 04:00:00,9103.0
-2016-12-02 05:00:00,9071.0
-2016-12-02 06:00:00,9340.0
-2016-12-02 07:00:00,10015.0
-2016-12-02 08:00:00,11049.0
-2016-12-02 09:00:00,11560.0
-2016-12-02 10:00:00,11716.0
-2016-12-02 11:00:00,11816.0
-2016-12-02 12:00:00,11916.0
-2016-12-02 13:00:00,11877.0
-2016-12-02 14:00:00,11808.0
-2016-12-02 15:00:00,11827.0
-2016-12-02 16:00:00,11745.0
-2016-12-02 17:00:00,11750.0
-2016-12-02 18:00:00,12329.0
-2016-12-02 19:00:00,12642.0
-2016-12-02 20:00:00,12456.0
-2016-12-02 21:00:00,12207.0
-2016-12-02 22:00:00,11936.0
-2016-12-02 23:00:00,11566.0
-2016-12-03 00:00:00,10841.0
-2016-12-01 01:00:00,10147.0
-2016-12-01 02:00:00,9657.0
-2016-12-01 03:00:00,9365.0
-2016-12-01 04:00:00,9200.0
-2016-12-01 05:00:00,9198.0
-2016-12-01 06:00:00,9455.0
-2016-12-01 07:00:00,10128.0
-2016-12-01 08:00:00,11205.0
-2016-12-01 09:00:00,11740.0
-2016-12-01 10:00:00,11849.0
-2016-12-01 11:00:00,11915.0
-2016-12-01 12:00:00,11966.0
-2016-12-01 13:00:00,11937.0
-2016-12-01 14:00:00,11889.0
-2016-12-01 15:00:00,11906.0
-2016-12-01 16:00:00,11828.0
-2016-12-01 17:00:00,11910.0
-2016-12-01 18:00:00,12482.0
-2016-12-01 19:00:00,12748.0
-2016-12-01 20:00:00,12556.0
-2016-12-01 21:00:00,12354.0
-2016-12-01 22:00:00,12075.0
-2016-12-01 23:00:00,11560.0
-2016-12-02 00:00:00,10798.0
-2016-11-30 01:00:00,9598.0
-2016-11-30 02:00:00,9152.0
-2016-11-30 03:00:00,8870.0
-2016-11-30 04:00:00,8739.0
-2016-11-30 05:00:00,8744.0
-2016-11-30 06:00:00,9066.0
-2016-11-30 07:00:00,9869.0
-2016-11-30 08:00:00,10994.0
-2016-11-30 09:00:00,11413.0
-2016-11-30 10:00:00,11452.0
-2016-11-30 11:00:00,11412.0
-2016-11-30 12:00:00,11504.0
-2016-11-30 13:00:00,11663.0
-2016-11-30 14:00:00,11765.0
-2016-11-30 15:00:00,11908.0
-2016-11-30 16:00:00,11910.0
-2016-11-30 17:00:00,12011.0
-2016-11-30 18:00:00,12594.0
-2016-11-30 19:00:00,12882.0
-2016-11-30 20:00:00,12699.0
-2016-11-30 21:00:00,12499.0
-2016-11-30 22:00:00,12176.0
-2016-11-30 23:00:00,11662.0
-2016-12-01 00:00:00,10908.0
-2016-11-29 01:00:00,9705.0
-2016-11-29 02:00:00,9244.0
-2016-11-29 03:00:00,8947.0
-2016-11-29 04:00:00,8767.0
-2016-11-29 05:00:00,8747.0
-2016-11-29 06:00:00,8972.0
-2016-11-29 07:00:00,9743.0
-2016-11-29 08:00:00,10848.0
-2016-11-29 09:00:00,11298.0
-2016-11-29 10:00:00,11400.0
-2016-11-29 11:00:00,11344.0
-2016-11-29 12:00:00,11350.0
-2016-11-29 13:00:00,11267.0
-2016-11-29 14:00:00,11170.0
-2016-11-29 15:00:00,11169.0
-2016-11-29 16:00:00,11052.0
-2016-11-29 17:00:00,11045.0
-2016-11-29 18:00:00,11664.0
-2016-11-29 19:00:00,12165.0
-2016-11-29 20:00:00,12031.0
-2016-11-29 21:00:00,11856.0
-2016-11-29 22:00:00,11560.0
-2016-11-29 23:00:00,11067.0
-2016-11-30 00:00:00,10332.0
-2016-11-28 01:00:00,9336.0
-2016-11-28 02:00:00,8994.0
-2016-11-28 03:00:00,8794.0
-2016-11-28 04:00:00,8753.0
-2016-11-28 05:00:00,8725.0
-2016-11-28 06:00:00,9018.0
-2016-11-28 07:00:00,9815.0
-2016-11-28 08:00:00,10866.0
-2016-11-28 09:00:00,11461.0
-2016-11-28 10:00:00,11626.0
-2016-11-28 11:00:00,11769.0
-2016-11-28 12:00:00,11894.0
-2016-11-28 13:00:00,11948.0
-2016-11-28 14:00:00,12068.0
-2016-11-28 15:00:00,12035.0
-2016-11-28 16:00:00,11963.0
-2016-11-28 17:00:00,11989.0
-2016-11-28 18:00:00,12395.0
-2016-11-28 19:00:00,12527.0
-2016-11-28 20:00:00,12280.0
-2016-11-28 21:00:00,12049.0
-2016-11-28 22:00:00,11728.0
-2016-11-28 23:00:00,11227.0
-2016-11-29 00:00:00,10455.0
-2016-11-27 01:00:00,9202.0
-2016-11-27 02:00:00,8782.0
-2016-11-27 03:00:00,8553.0
-2016-11-27 04:00:00,8377.0
-2016-11-27 05:00:00,8350.0
-2016-11-27 06:00:00,8380.0
-2016-11-27 07:00:00,8596.0
-2016-11-27 08:00:00,8797.0
-2016-11-27 09:00:00,8845.0
-2016-11-27 10:00:00,9122.0
-2016-11-27 11:00:00,9363.0
-2016-11-27 12:00:00,9555.0
-2016-11-27 13:00:00,9646.0
-2016-11-27 14:00:00,9717.0
-2016-11-27 15:00:00,9777.0
-2016-11-27 16:00:00,9827.0
-2016-11-27 17:00:00,9944.0
-2016-11-27 18:00:00,10665.0
-2016-11-27 19:00:00,11084.0
-2016-11-27 20:00:00,11094.0
-2016-11-27 21:00:00,10994.0
-2016-11-27 22:00:00,10758.0
-2016-11-27 23:00:00,10334.0
-2016-11-28 00:00:00,9878.0
-2016-11-26 01:00:00,9283.0
-2016-11-26 02:00:00,8908.0
-2016-11-26 03:00:00,8646.0
-2016-11-26 04:00:00,8463.0
-2016-11-26 05:00:00,8417.0
-2016-11-26 06:00:00,8465.0
-2016-11-26 07:00:00,8731.0
-2016-11-26 08:00:00,9079.0
-2016-11-26 09:00:00,9268.0
-2016-11-26 10:00:00,9537.0
-2016-11-26 11:00:00,9644.0
-2016-11-26 12:00:00,9676.0
-2016-11-26 13:00:00,9646.0
-2016-11-26 14:00:00,9506.0
-2016-11-26 15:00:00,9407.0
-2016-11-26 16:00:00,9286.0
-2016-11-26 17:00:00,9430.0
-2016-11-26 18:00:00,10070.0
-2016-11-26 19:00:00,10602.0
-2016-11-26 20:00:00,10540.0
-2016-11-26 21:00:00,10438.0
-2016-11-26 22:00:00,10276.0
-2016-11-26 23:00:00,10090.0
-2016-11-27 00:00:00,9648.0
-2016-11-25 01:00:00,8720.0
-2016-11-25 02:00:00,8432.0
-2016-11-25 03:00:00,8234.0
-2016-11-25 04:00:00,8111.0
-2016-11-25 05:00:00,8084.0
-2016-11-25 06:00:00,8238.0
-2016-11-25 07:00:00,8636.0
-2016-11-25 08:00:00,9118.0
-2016-11-25 09:00:00,9307.0
-2016-11-25 10:00:00,9502.0
-2016-11-25 11:00:00,9685.0
-2016-11-25 12:00:00,9798.0
-2016-11-25 13:00:00,9872.0
-2016-11-25 14:00:00,9938.0
-2016-11-25 15:00:00,10012.0
-2016-11-25 16:00:00,10016.0
-2016-11-25 17:00:00,10208.0
-2016-11-25 18:00:00,10725.0
-2016-11-25 19:00:00,10930.0
-2016-11-25 20:00:00,10765.0
-2016-11-25 21:00:00,10600.0
-2016-11-25 22:00:00,10402.0
-2016-11-25 23:00:00,10176.0
-2016-11-26 00:00:00,9713.0
-2016-11-24 01:00:00,9277.0
-2016-11-24 02:00:00,8770.0
-2016-11-24 03:00:00,8468.0
-2016-11-24 04:00:00,8275.0
-2016-11-24 05:00:00,8192.0
-2016-11-24 06:00:00,8246.0
-2016-11-24 07:00:00,8472.0
-2016-11-24 08:00:00,8728.0
-2016-11-24 09:00:00,8765.0
-2016-11-24 10:00:00,9003.0
-2016-11-24 11:00:00,9283.0
-2016-11-24 12:00:00,9501.0
-2016-11-24 13:00:00,9623.0
-2016-11-24 14:00:00,9604.0
-2016-11-24 15:00:00,9563.0
-2016-11-24 16:00:00,9442.0
-2016-11-24 17:00:00,9461.0
-2016-11-24 18:00:00,9757.0
-2016-11-24 19:00:00,9757.0
-2016-11-24 20:00:00,9630.0
-2016-11-24 21:00:00,9574.0
-2016-11-24 22:00:00,9506.0
-2016-11-24 23:00:00,9369.0
-2016-11-25 00:00:00,9077.0
-2016-11-23 01:00:00,9921.0
-2016-11-23 02:00:00,9477.0
-2016-11-23 03:00:00,9210.0
-2016-11-23 04:00:00,9061.0
-2016-11-23 05:00:00,9007.0
-2016-11-23 06:00:00,9235.0
-2016-11-23 07:00:00,9871.0
-2016-11-23 08:00:00,10744.0
-2016-11-23 09:00:00,11309.0
-2016-11-23 10:00:00,11647.0
-2016-11-23 11:00:00,11841.0
-2016-11-23 12:00:00,11956.0
-2016-11-23 13:00:00,11962.0
-2016-11-23 14:00:00,11875.0
-2016-11-23 15:00:00,11802.0
-2016-11-23 16:00:00,11657.0
-2016-11-23 17:00:00,11549.0
-2016-11-23 18:00:00,11830.0
-2016-11-23 19:00:00,11950.0
-2016-11-23 20:00:00,11610.0
-2016-11-23 21:00:00,11340.0
-2016-11-23 22:00:00,11049.0
-2016-11-23 23:00:00,10600.0
-2016-11-24 00:00:00,9941.0
-2016-11-22 01:00:00,10076.0
-2016-11-22 02:00:00,9677.0
-2016-11-22 03:00:00,9439.0
-2016-11-22 04:00:00,9306.0
-2016-11-22 05:00:00,9296.0
-2016-11-22 06:00:00,9532.0
-2016-11-22 07:00:00,10234.0
-2016-11-22 08:00:00,11292.0
-2016-11-22 09:00:00,11742.0
-2016-11-22 10:00:00,11923.0
-2016-11-22 11:00:00,12062.0
-2016-11-22 12:00:00,12067.0
-2016-11-22 13:00:00,11994.0
-2016-11-22 14:00:00,11872.0
-2016-11-22 15:00:00,11837.0
-2016-11-22 16:00:00,11729.0
-2016-11-22 17:00:00,11775.0
-2016-11-22 18:00:00,12282.0
-2016-11-22 19:00:00,12509.0
-2016-11-22 20:00:00,12279.0
-2016-11-22 21:00:00,12070.0
-2016-11-22 22:00:00,11767.0
-2016-11-22 23:00:00,11289.0
-2016-11-23 00:00:00,10593.0
-2016-11-21 01:00:00,9600.0
-2016-11-21 02:00:00,9313.0
-2016-11-21 03:00:00,9184.0
-2016-11-21 04:00:00,9138.0
-2016-11-21 05:00:00,9216.0
-2016-11-21 06:00:00,9531.0
-2016-11-21 07:00:00,10315.0
-2016-11-21 08:00:00,11327.0
-2016-11-21 09:00:00,11749.0
-2016-11-21 10:00:00,11834.0
-2016-11-21 11:00:00,11694.0
-2016-11-21 12:00:00,11790.0
-2016-11-21 13:00:00,11690.0
-2016-11-21 14:00:00,11564.0
-2016-11-21 15:00:00,11511.0
-2016-11-21 16:00:00,11384.0
-2016-11-21 17:00:00,11391.0
-2016-11-21 18:00:00,12073.0
-2016-11-21 19:00:00,12580.0
-2016-11-21 20:00:00,12452.0
-2016-11-21 21:00:00,12240.0
-2016-11-21 22:00:00,11915.0
-2016-11-21 23:00:00,11449.0
-2016-11-22 00:00:00,10713.0
-2016-11-20 01:00:00,9571.0
-2016-11-20 02:00:00,9219.0
-2016-11-20 03:00:00,8973.0
-2016-11-20 04:00:00,8863.0
-2016-11-20 05:00:00,8734.0
-2016-11-20 06:00:00,8875.0
-2016-11-20 07:00:00,9041.0
-2016-11-20 08:00:00,9154.0
-2016-11-20 09:00:00,9255.0
-2016-11-20 10:00:00,9461.0
-2016-11-20 11:00:00,9770.0
-2016-11-20 12:00:00,9804.0
-2016-11-20 13:00:00,9710.0
-2016-11-20 14:00:00,9699.0
-2016-11-20 15:00:00,9630.0
-2016-11-20 16:00:00,9531.0
-2016-11-20 17:00:00,9654.0
-2016-11-20 18:00:00,10341.0
-2016-11-20 19:00:00,10886.0
-2016-11-20 20:00:00,11213.0
-2016-11-20 21:00:00,10992.0
-2016-11-20 22:00:00,10759.0
-2016-11-20 23:00:00,10600.0
-2016-11-21 00:00:00,10130.0
-2016-11-19 01:00:00,9249.0
-2016-11-19 02:00:00,8894.0
-2016-11-19 03:00:00,8664.0
-2016-11-19 04:00:00,8531.0
-2016-11-19 05:00:00,8519.0
-2016-11-19 06:00:00,8624.0
-2016-11-19 07:00:00,9009.0
-2016-11-19 08:00:00,9407.0
-2016-11-19 09:00:00,9644.0
-2016-11-19 10:00:00,10103.0
-2016-11-19 11:00:00,10434.0
-2016-11-19 12:00:00,10499.0
-2016-11-19 13:00:00,10555.0
-2016-11-19 14:00:00,10341.0
-2016-11-19 15:00:00,10247.0
-2016-11-19 16:00:00,10113.0
-2016-11-19 17:00:00,10171.0
-2016-11-19 18:00:00,10426.0
-2016-11-19 19:00:00,10816.0
-2016-11-19 20:00:00,11052.0
-2016-11-19 21:00:00,10872.0
-2016-11-19 22:00:00,10690.0
-2016-11-19 23:00:00,10479.0
-2016-11-20 00:00:00,10114.0
-2016-11-18 01:00:00,9036.0
-2016-11-18 02:00:00,8550.0
-2016-11-18 03:00:00,8242.0
-2016-11-18 04:00:00,8059.0
-2016-11-18 05:00:00,7980.0
-2016-11-18 06:00:00,8214.0
-2016-11-18 07:00:00,8835.0
-2016-11-18 08:00:00,9849.0
-2016-11-18 09:00:00,10379.0
-2016-11-18 10:00:00,10728.0
-2016-11-18 11:00:00,11407.0
-2016-11-18 12:00:00,11088.0
-2016-11-18 13:00:00,11190.0
-2016-11-18 14:00:00,11159.0
-2016-11-18 15:00:00,11517.0
-2016-11-18 16:00:00,11344.0
-2016-11-18 17:00:00,11347.0
-2016-11-18 18:00:00,11388.0
-2016-11-18 19:00:00,11586.0
-2016-11-18 20:00:00,11686.0
-2016-11-18 21:00:00,11281.0
-2016-11-18 22:00:00,10816.0
-2016-11-18 23:00:00,10631.0
-2016-11-19 00:00:00,10042.0
-2016-11-17 01:00:00,9126.0
-2016-11-17 02:00:00,8731.0
-2016-11-17 03:00:00,8467.0
-2016-11-17 04:00:00,8328.0
-2016-11-17 05:00:00,8277.0
-2016-11-17 06:00:00,8512.0
-2016-11-17 07:00:00,9163.0
-2016-11-17 08:00:00,10158.0
-2016-11-17 09:00:00,10591.0
-2016-11-17 10:00:00,10739.0
-2016-11-17 11:00:00,10871.0
-2016-11-17 12:00:00,11009.0
-2016-11-17 13:00:00,11108.0
-2016-11-17 14:00:00,11193.0
-2016-11-17 15:00:00,11212.0
-2016-11-17 16:00:00,11174.0
-2016-11-17 17:00:00,11044.0
-2016-11-17 18:00:00,11383.0
-2016-11-17 19:00:00,11827.0
-2016-11-17 20:00:00,11584.0
-2016-11-17 21:00:00,11311.0
-2016-11-17 22:00:00,10978.0
-2016-11-17 23:00:00,10477.0
-2016-11-18 00:00:00,9697.0
-2016-11-16 01:00:00,9111.0
-2016-11-16 02:00:00,8673.0
-2016-11-16 03:00:00,8420.0
-2016-11-16 04:00:00,8326.0
-2016-11-16 05:00:00,8324.0
-2016-11-16 06:00:00,8593.0
-2016-11-16 07:00:00,9306.0
-2016-11-16 08:00:00,10354.0
-2016-11-16 09:00:00,10726.0
-2016-11-16 10:00:00,10836.0
-2016-11-16 11:00:00,10877.0
-2016-11-16 12:00:00,10914.0
-2016-11-16 13:00:00,10952.0
-2016-11-16 14:00:00,10928.0
-2016-11-16 15:00:00,10960.0
-2016-11-16 16:00:00,10897.0
-2016-11-16 17:00:00,10824.0
-2016-11-16 18:00:00,11174.0
-2016-11-16 19:00:00,11647.0
-2016-11-16 20:00:00,11472.0
-2016-11-16 21:00:00,11290.0
-2016-11-16 22:00:00,10972.0
-2016-11-16 23:00:00,10507.0
-2016-11-17 00:00:00,9804.0
-2016-11-15 01:00:00,8963.0
-2016-11-15 02:00:00,8580.0
-2016-11-15 03:00:00,8361.0
-2016-11-15 04:00:00,8220.0
-2016-11-15 05:00:00,8238.0
-2016-11-15 06:00:00,8486.0
-2016-11-15 07:00:00,9212.0
-2016-11-15 08:00:00,10305.0
-2016-11-15 09:00:00,10754.0
-2016-11-15 10:00:00,10917.0
-2016-11-15 11:00:00,10956.0
-2016-11-15 12:00:00,11002.0
-2016-11-15 13:00:00,10983.0
-2016-11-15 14:00:00,10926.0
-2016-11-15 15:00:00,10872.0
-2016-11-15 16:00:00,10782.0
-2016-11-15 17:00:00,10723.0
-2016-11-15 18:00:00,11113.0
-2016-11-15 19:00:00,11636.0
-2016-11-15 20:00:00,11455.0
-2016-11-15 21:00:00,11262.0
-2016-11-15 22:00:00,10975.0
-2016-11-15 23:00:00,10454.0
-2016-11-16 00:00:00,9760.0
-2016-11-14 01:00:00,8616.0
-2016-11-14 02:00:00,8318.0
-2016-11-14 03:00:00,8186.0
-2016-11-14 04:00:00,8098.0
-2016-11-14 05:00:00,8118.0
-2016-11-14 06:00:00,8490.0
-2016-11-14 07:00:00,9330.0
-2016-11-14 08:00:00,10388.0
-2016-11-14 09:00:00,10864.0
-2016-11-14 10:00:00,10963.0
-2016-11-14 11:00:00,10910.0
-2016-11-14 12:00:00,10921.0
-2016-11-14 13:00:00,10889.0
-2016-11-14 14:00:00,10847.0
-2016-11-14 15:00:00,10886.0
-2016-11-14 16:00:00,10807.0
-2016-11-14 17:00:00,10708.0
-2016-11-14 18:00:00,11088.0
-2016-11-14 19:00:00,11570.0
-2016-11-14 20:00:00,11379.0
-2016-11-14 21:00:00,11132.0
-2016-11-14 22:00:00,10839.0
-2016-11-14 23:00:00,10277.0
-2016-11-15 00:00:00,9604.0
-2016-11-13 01:00:00,8832.0
-2016-11-13 02:00:00,8518.0
-2016-11-13 03:00:00,8297.0
-2016-11-13 04:00:00,8193.0
-2016-11-13 05:00:00,8057.0
-2016-11-13 06:00:00,8129.0
-2016-11-13 07:00:00,8274.0
-2016-11-13 08:00:00,8495.0
-2016-11-13 09:00:00,8539.0
-2016-11-13 10:00:00,8752.0
-2016-11-13 11:00:00,8849.0
-2016-11-13 12:00:00,8959.0
-2016-11-13 13:00:00,8924.0
-2016-11-13 14:00:00,8912.0
-2016-11-13 15:00:00,8877.0
-2016-11-13 16:00:00,8815.0
-2016-11-13 17:00:00,8895.0
-2016-11-13 18:00:00,9406.0
-2016-11-13 19:00:00,10141.0
-2016-11-13 20:00:00,10145.0
-2016-11-13 21:00:00,10082.0
-2016-11-13 22:00:00,9849.0
-2016-11-13 23:00:00,9551.0
-2016-11-14 00:00:00,9044.0
-2016-11-12 01:00:00,9245.0
-2016-11-12 02:00:00,8795.0
-2016-11-12 03:00:00,8570.0
-2016-11-12 04:00:00,8434.0
-2016-11-12 05:00:00,8401.0
-2016-11-12 06:00:00,8488.0
-2016-11-12 07:00:00,8796.0
-2016-11-12 08:00:00,9141.0
-2016-11-12 09:00:00,9336.0
-2016-11-12 10:00:00,9551.0
-2016-11-12 11:00:00,9703.0
-2016-11-12 12:00:00,9677.0
-2016-11-12 13:00:00,9634.0
-2016-11-12 14:00:00,9481.0
-2016-11-12 15:00:00,9289.0
-2016-11-12 16:00:00,9171.0
-2016-11-12 17:00:00,9161.0
-2016-11-12 18:00:00,9597.0
-2016-11-12 19:00:00,10250.0
-2016-11-12 20:00:00,10234.0
-2016-11-12 21:00:00,10055.0
-2016-11-12 22:00:00,9943.0
-2016-11-12 23:00:00,9663.0
-2016-11-13 00:00:00,9269.0
-2016-11-11 01:00:00,9063.0
-2016-11-11 02:00:00,8588.0
-2016-11-11 03:00:00,8348.0
-2016-11-11 04:00:00,8219.0
-2016-11-11 05:00:00,8218.0
-2016-11-11 06:00:00,8440.0
-2016-11-11 07:00:00,9064.0
-2016-11-11 08:00:00,9884.0
-2016-11-11 09:00:00,10374.0
-2016-11-11 10:00:00,10603.0
-2016-11-11 11:00:00,10752.0
-2016-11-11 12:00:00,10898.0
-2016-11-11 13:00:00,10802.0
-2016-11-11 14:00:00,10774.0
-2016-11-11 15:00:00,10774.0
-2016-11-11 16:00:00,10661.0
-2016-11-11 17:00:00,10633.0
-2016-11-11 18:00:00,10999.0
-2016-11-11 19:00:00,11467.0
-2016-11-11 20:00:00,11383.0
-2016-11-11 21:00:00,11113.0
-2016-11-11 22:00:00,10849.0
-2016-11-11 23:00:00,10426.0
-2016-11-12 00:00:00,9806.0
-2016-11-10 01:00:00,9100.0
-2016-11-10 02:00:00,8708.0
-2016-11-10 03:00:00,8502.0
-2016-11-10 04:00:00,8392.0
-2016-11-10 05:00:00,8369.0
-2016-11-10 06:00:00,8639.0
-2016-11-10 07:00:00,9343.0
-2016-11-10 08:00:00,10337.0
-2016-11-10 09:00:00,10754.0
-2016-11-10 10:00:00,10907.0
-2016-11-10 11:00:00,10993.0
-2016-11-10 12:00:00,11038.0
-2016-11-10 13:00:00,11048.0
-2016-11-10 14:00:00,11093.0
-2016-11-10 15:00:00,11049.0
-2016-11-10 16:00:00,10976.0
-2016-11-10 17:00:00,10885.0
-2016-11-10 18:00:00,11094.0
-2016-11-10 19:00:00,11685.0
-2016-11-10 20:00:00,11463.0
-2016-11-10 21:00:00,11224.0
-2016-11-10 22:00:00,10879.0
-2016-11-10 23:00:00,10377.0
-2016-11-11 00:00:00,9687.0
-2016-11-09 01:00:00,9123.0
-2016-11-09 02:00:00,8717.0
-2016-11-09 03:00:00,8418.0
-2016-11-09 04:00:00,8199.0
-2016-11-09 05:00:00,8191.0
-2016-11-09 06:00:00,8461.0
-2016-11-09 07:00:00,9189.0
-2016-11-09 08:00:00,10156.0
-2016-11-09 09:00:00,10594.0
-2016-11-09 10:00:00,10803.0
-2016-11-09 11:00:00,10883.0
-2016-11-09 12:00:00,10990.0
-2016-11-09 13:00:00,10962.0
-2016-11-09 14:00:00,10949.0
-2016-11-09 15:00:00,10956.0
-2016-11-09 16:00:00,10851.0
-2016-11-09 17:00:00,10768.0
-2016-11-09 18:00:00,10991.0
-2016-11-09 19:00:00,11527.0
-2016-11-09 20:00:00,11438.0
-2016-11-09 21:00:00,11252.0
-2016-11-09 22:00:00,10942.0
-2016-11-09 23:00:00,10430.0
-2016-11-10 00:00:00,9671.0
-2016-11-08 01:00:00,8809.0
-2016-11-08 02:00:00,8420.0
-2016-11-08 03:00:00,8135.0
-2016-11-08 04:00:00,7998.0
-2016-11-08 05:00:00,7988.0
-2016-11-08 06:00:00,8201.0
-2016-11-08 07:00:00,8871.0
-2016-11-08 08:00:00,9920.0
-2016-11-08 09:00:00,10487.0
-2016-11-08 10:00:00,10774.0
-2016-11-08 11:00:00,10852.0
-2016-11-08 12:00:00,10935.0
-2016-11-08 13:00:00,10969.0
-2016-11-08 14:00:00,11023.0
-2016-11-08 15:00:00,11071.0
-2016-11-08 16:00:00,10911.0
-2016-11-08 17:00:00,10751.0
-2016-11-08 18:00:00,11055.0
-2016-11-08 19:00:00,11594.0
-2016-11-08 20:00:00,11432.0
-2016-11-08 21:00:00,11220.0
-2016-11-08 22:00:00,10890.0
-2016-11-08 23:00:00,10352.0
-2016-11-09 00:00:00,9699.0
-2016-11-07 01:00:00,8128.0
-2016-11-07 02:00:00,7882.0
-2016-11-07 03:00:00,7737.0
-2016-11-07 04:00:00,7687.0
-2016-11-07 05:00:00,7733.0
-2016-11-07 06:00:00,8046.0
-2016-11-07 07:00:00,8688.0
-2016-11-07 08:00:00,9770.0
-2016-11-07 09:00:00,10338.0
-2016-11-07 10:00:00,10574.0
-2016-11-07 11:00:00,10698.0
-2016-11-07 12:00:00,10954.0
-2016-11-07 13:00:00,10989.0
-2016-11-07 14:00:00,11029.0
-2016-11-07 15:00:00,11077.0
-2016-11-07 16:00:00,10984.0
-2016-11-07 17:00:00,10856.0
-2016-11-07 18:00:00,11084.0
-2016-11-07 19:00:00,11540.0
-2016-11-07 20:00:00,11327.0
-2016-11-07 21:00:00,11062.0
-2016-11-07 22:00:00,10691.0
-2016-11-07 23:00:00,10127.0
-2016-11-08 00:00:00,9429.0
-2016-11-06 01:00:00,8475.0
-2016-11-06 02:00:00,7814.0
-2016-11-06 02:00:00,8028.0
-2016-11-06 03:00:00,7557.0
-2016-11-06 04:00:00,7543.0
-2016-11-06 05:00:00,7509.0
-2016-11-06 06:00:00,7509.0
-2016-11-06 07:00:00,7704.0
-2016-11-06 08:00:00,7900.0
-2016-11-06 09:00:00,8075.0
-2016-11-06 10:00:00,8390.0
-2016-11-06 11:00:00,8591.0
-2016-11-06 12:00:00,8771.0
-2016-11-06 13:00:00,8943.0
-2016-11-06 14:00:00,9001.0
-2016-11-06 15:00:00,9002.0
-2016-11-06 16:00:00,9027.0
-2016-11-06 17:00:00,9019.0
-2016-11-06 18:00:00,9348.0
-2016-11-06 19:00:00,9995.0
-2016-11-06 20:00:00,9963.0
-2016-11-06 21:00:00,9769.0
-2016-11-06 22:00:00,9482.0
-2016-11-06 23:00:00,9046.0
-2016-11-07 00:00:00,8595.0
-2016-11-05 01:00:00,8995.0
-2016-11-05 02:00:00,8484.0
-2016-11-05 03:00:00,8241.0
-2016-11-05 04:00:00,8027.0
-2016-11-05 05:00:00,7924.0
-2016-11-05 06:00:00,7964.0
-2016-11-05 07:00:00,8230.0
-2016-11-05 08:00:00,8658.0
-2016-11-05 09:00:00,8971.0
-2016-11-05 10:00:00,9148.0
-2016-11-05 11:00:00,9366.0
-2016-11-05 12:00:00,9484.0
-2016-11-05 13:00:00,9530.0
-2016-11-05 14:00:00,9500.0
-2016-11-05 15:00:00,9397.0
-2016-11-05 16:00:00,9307.0
-2016-11-05 17:00:00,9266.0
-2016-11-05 18:00:00,9252.0
-2016-11-05 19:00:00,9473.0
-2016-11-05 20:00:00,9954.0
-2016-11-05 21:00:00,9861.0
-2016-11-05 22:00:00,9674.0
-2016-11-05 23:00:00,9390.0
-2016-11-06 00:00:00,8936.0
-2016-11-04 01:00:00,8954.0
-2016-11-04 02:00:00,8489.0
-2016-11-04 03:00:00,8192.0
-2016-11-04 04:00:00,8043.0
-2016-11-04 05:00:00,7997.0
-2016-11-04 06:00:00,8213.0
-2016-11-04 07:00:00,8817.0
-2016-11-04 08:00:00,9899.0
-2016-11-04 09:00:00,10595.0
-2016-11-04 10:00:00,10669.0
-2016-11-04 11:00:00,10752.0
-2016-11-04 12:00:00,10890.0
-2016-11-04 13:00:00,10859.0
-2016-11-04 14:00:00,10823.0
-2016-11-04 15:00:00,10872.0
-2016-11-04 16:00:00,10787.0
-2016-11-04 17:00:00,10613.0
-2016-11-04 18:00:00,10510.0
-2016-11-04 19:00:00,10576.0
-2016-11-04 20:00:00,11006.0
-2016-11-04 21:00:00,10837.0
-2016-11-04 22:00:00,10547.0
-2016-11-04 23:00:00,10147.0
-2016-11-05 00:00:00,9573.0
-2016-11-03 01:00:00,9322.0
-2016-11-03 02:00:00,8832.0
-2016-11-03 03:00:00,8411.0
-2016-11-03 04:00:00,8168.0
-2016-11-03 05:00:00,8080.0
-2016-11-03 06:00:00,8170.0
-2016-11-03 07:00:00,8749.0
-2016-11-03 08:00:00,9822.0
-2016-11-03 09:00:00,10620.0
-2016-11-03 10:00:00,10663.0
-2016-11-03 11:00:00,10727.0
-2016-11-03 12:00:00,10829.0
-2016-11-03 13:00:00,10870.0
-2016-11-03 14:00:00,10939.0
-2016-11-03 15:00:00,11004.0
-2016-11-03 16:00:00,11013.0
-2016-11-03 17:00:00,10898.0
-2016-11-03 18:00:00,10807.0
-2016-11-03 19:00:00,10912.0
-2016-11-03 20:00:00,11213.0
-2016-11-03 21:00:00,11117.0
-2016-11-03 22:00:00,10800.0
-2016-11-03 23:00:00,10310.0
-2016-11-04 00:00:00,9621.0
-2016-11-02 01:00:00,9657.0
-2016-11-02 02:00:00,9137.0
-2016-11-02 03:00:00,8783.0
-2016-11-02 04:00:00,8607.0
-2016-11-02 05:00:00,8549.0
-2016-11-02 06:00:00,8651.0
-2016-11-02 07:00:00,9145.0
-2016-11-02 08:00:00,10353.0
-2016-11-02 09:00:00,11164.0
-2016-11-02 10:00:00,11262.0
-2016-11-02 11:00:00,11407.0
-2016-11-02 12:00:00,11674.0
-2016-11-02 13:00:00,11639.0
-2016-11-02 14:00:00,11634.0
-2016-11-02 15:00:00,11738.0
-2016-11-02 16:00:00,11676.0
-2016-11-02 17:00:00,11600.0
-2016-11-02 18:00:00,11651.0
-2016-11-02 19:00:00,11993.0
-2016-11-02 20:00:00,12038.0
-2016-11-02 21:00:00,11676.0
-2016-11-02 22:00:00,11235.0
-2016-11-02 23:00:00,10614.0
-2016-11-03 00:00:00,9898.0
-2016-11-01 01:00:00,9058.0
-2016-11-01 02:00:00,8618.0
-2016-11-01 03:00:00,8353.0
-2016-11-01 04:00:00,8217.0
-2016-11-01 05:00:00,8177.0
-2016-11-01 06:00:00,8340.0
-2016-11-01 07:00:00,9010.0
-2016-11-01 08:00:00,10190.0
-2016-11-01 09:00:00,10865.0
-2016-11-01 10:00:00,10973.0
-2016-11-01 11:00:00,11171.0
-2016-11-01 12:00:00,11419.0
-2016-11-01 13:00:00,11491.0
-2016-11-01 14:00:00,11641.0
-2016-11-01 15:00:00,11811.0
-2016-11-01 16:00:00,11760.0
-2016-11-01 17:00:00,11674.0
-2016-11-01 18:00:00,11568.0
-2016-11-01 19:00:00,11657.0
-2016-11-01 20:00:00,12028.0
-2016-11-01 21:00:00,11830.0
-2016-11-01 22:00:00,11406.0
-2016-11-01 23:00:00,10887.0
-2016-11-02 00:00:00,10211.0
-2016-10-31 01:00:00,8621.0
-2016-10-31 02:00:00,8226.0
-2016-10-31 03:00:00,8053.0
-2016-10-31 04:00:00,7939.0
-2016-10-31 05:00:00,7943.0
-2016-10-31 06:00:00,8240.0
-2016-10-31 07:00:00,8975.0
-2016-10-31 08:00:00,10254.0
-2016-10-31 09:00:00,10961.0
-2016-10-31 10:00:00,11004.0
-2016-10-31 11:00:00,10993.0
-2016-10-31 12:00:00,11058.0
-2016-10-31 13:00:00,10955.0
-2016-10-31 14:00:00,10874.0
-2016-10-31 15:00:00,10916.0
-2016-10-31 16:00:00,10809.0
-2016-10-31 17:00:00,10663.0
-2016-10-31 18:00:00,10535.0
-2016-10-31 19:00:00,10748.0
-2016-10-31 20:00:00,11115.0
-2016-10-31 21:00:00,11094.0
-2016-10-31 22:00:00,10859.0
-2016-10-31 23:00:00,10423.0
-2016-11-01 00:00:00,9737.0
-2016-10-30 01:00:00,8659.0
-2016-10-30 02:00:00,8252.0
-2016-10-30 03:00:00,7978.0
-2016-10-30 04:00:00,7787.0
-2016-10-30 05:00:00,7756.0
-2016-10-30 06:00:00,7820.0
-2016-10-30 07:00:00,7784.0
-2016-10-30 08:00:00,7960.0
-2016-10-30 09:00:00,8119.0
-2016-10-30 10:00:00,8278.0
-2016-10-30 11:00:00,8567.0
-2016-10-30 12:00:00,8904.0
-2016-10-30 13:00:00,9082.0
-2016-10-30 14:00:00,9197.0
-2016-10-30 15:00:00,9213.0
-2016-10-30 16:00:00,9204.0
-2016-10-30 17:00:00,9214.0
-2016-10-30 18:00:00,9340.0
-2016-10-30 19:00:00,9657.0
-2016-10-30 20:00:00,10191.0
-2016-10-30 21:00:00,10227.0
-2016-10-30 22:00:00,9950.0
-2016-10-30 23:00:00,9579.0
-2016-10-31 00:00:00,9172.0
-2016-10-29 01:00:00,9455.0
-2016-10-29 02:00:00,9039.0
-2016-10-29 03:00:00,8712.0
-2016-10-29 04:00:00,8418.0
-2016-10-29 05:00:00,8315.0
-2016-10-29 06:00:00,8274.0
-2016-10-29 07:00:00,8532.0
-2016-10-29 08:00:00,8924.0
-2016-10-29 09:00:00,9216.0
-2016-10-29 10:00:00,9577.0
-2016-10-29 11:00:00,9895.0
-2016-10-29 12:00:00,10150.0
-2016-10-29 13:00:00,10227.0
-2016-10-29 14:00:00,10274.0
-2016-10-29 15:00:00,10200.0
-2016-10-29 16:00:00,10142.0
-2016-10-29 17:00:00,10176.0
-2016-10-29 18:00:00,10209.0
-2016-10-29 19:00:00,10399.0
-2016-10-29 20:00:00,10625.0
-2016-10-29 21:00:00,10555.0
-2016-10-29 22:00:00,10232.0
-2016-10-29 23:00:00,9745.0
-2016-10-30 00:00:00,9183.0
-2016-10-28 01:00:00,9450.0
-2016-10-28 02:00:00,8945.0
-2016-10-28 03:00:00,8679.0
-2016-10-28 04:00:00,8582.0
-2016-10-28 05:00:00,8518.0
-2016-10-28 06:00:00,8692.0
-2016-10-28 07:00:00,9345.0
-2016-10-28 08:00:00,10561.0
-2016-10-28 09:00:00,11109.0
-2016-10-28 10:00:00,11153.0
-2016-10-28 11:00:00,11184.0
-2016-10-28 12:00:00,11278.0
-2016-10-28 13:00:00,11180.0
-2016-10-28 14:00:00,11204.0
-2016-10-28 15:00:00,11244.0
-2016-10-28 16:00:00,11180.0
-2016-10-28 17:00:00,11009.0
-2016-10-28 18:00:00,10950.0
-2016-10-28 19:00:00,11078.0
-2016-10-28 20:00:00,11572.0
-2016-10-28 21:00:00,11444.0
-2016-10-28 22:00:00,11154.0
-2016-10-28 23:00:00,10801.0
-2016-10-29 00:00:00,10147.0
-2016-10-27 01:00:00,9395.0
-2016-10-27 02:00:00,9005.0
-2016-10-27 03:00:00,8669.0
-2016-10-27 04:00:00,8451.0
-2016-10-27 05:00:00,8419.0
-2016-10-27 06:00:00,8520.0
-2016-10-27 07:00:00,9236.0
-2016-10-27 08:00:00,10455.0
-2016-10-27 09:00:00,11040.0
-2016-10-27 10:00:00,11180.0
-2016-10-27 11:00:00,11257.0
-2016-10-27 12:00:00,11393.0
-2016-10-27 13:00:00,11291.0
-2016-10-27 14:00:00,11308.0
-2016-10-27 15:00:00,11323.0
-2016-10-27 16:00:00,11233.0
-2016-10-27 17:00:00,11127.0
-2016-10-27 18:00:00,11135.0
-2016-10-27 19:00:00,11226.0
-2016-10-27 20:00:00,11539.0
-2016-10-27 21:00:00,11460.0
-2016-10-27 22:00:00,11138.0
-2016-10-27 23:00:00,10787.0
-2016-10-28 00:00:00,10130.0
-2016-10-26 01:00:00,9257.0
-2016-10-26 02:00:00,8852.0
-2016-10-26 03:00:00,8584.0
-2016-10-26 04:00:00,8477.0
-2016-10-26 05:00:00,8414.0
-2016-10-26 06:00:00,8603.0
-2016-10-26 07:00:00,9307.0
-2016-10-26 08:00:00,10380.0
-2016-10-26 09:00:00,11292.0
-2016-10-26 10:00:00,11514.0
-2016-10-26 11:00:00,11569.0
-2016-10-26 12:00:00,11790.0
-2016-10-26 13:00:00,11890.0
-2016-10-26 14:00:00,11792.0
-2016-10-26 15:00:00,11893.0
-2016-10-26 16:00:00,11851.0
-2016-10-26 17:00:00,11691.0
-2016-10-26 18:00:00,11800.0
-2016-10-26 19:00:00,11934.0
-2016-10-26 20:00:00,12022.0
-2016-10-26 21:00:00,11811.0
-2016-10-26 22:00:00,11550.0
-2016-10-26 23:00:00,11002.0
-2016-10-27 00:00:00,10128.0
-2016-10-25 01:00:00,9088.0
-2016-10-25 02:00:00,8707.0
-2016-10-25 03:00:00,8493.0
-2016-10-25 04:00:00,8340.0
-2016-10-25 05:00:00,8200.0
-2016-10-25 06:00:00,8315.0
-2016-10-25 07:00:00,8997.0
-2016-10-25 08:00:00,10197.0
-2016-10-25 09:00:00,10843.0
-2016-10-25 10:00:00,10895.0
-2016-10-25 11:00:00,11073.0
-2016-10-25 12:00:00,11139.0
-2016-10-25 13:00:00,11106.0
-2016-10-25 14:00:00,11050.0
-2016-10-25 15:00:00,11066.0
-2016-10-25 16:00:00,10959.0
-2016-10-25 17:00:00,10926.0
-2016-10-25 18:00:00,10963.0
-2016-10-25 19:00:00,11233.0
-2016-10-25 20:00:00,11647.0
-2016-10-25 21:00:00,11634.0
-2016-10-25 22:00:00,11335.0
-2016-10-25 23:00:00,10791.0
-2016-10-26 00:00:00,9933.0
-2016-10-24 01:00:00,8458.0
-2016-10-24 02:00:00,8129.0
-2016-10-24 03:00:00,7948.0
-2016-10-24 04:00:00,7749.0
-2016-10-24 05:00:00,7793.0
-2016-10-24 06:00:00,8062.0
-2016-10-24 07:00:00,8706.0
-2016-10-24 08:00:00,9964.0
-2016-10-24 09:00:00,10463.0
-2016-10-24 10:00:00,10497.0
-2016-10-24 11:00:00,10606.0
-2016-10-24 12:00:00,10731.0
-2016-10-24 13:00:00,10770.0
-2016-10-24 14:00:00,10770.0
-2016-10-24 15:00:00,10780.0
-2016-10-24 16:00:00,10750.0
-2016-10-24 17:00:00,10655.0
-2016-10-24 18:00:00,10586.0
-2016-10-24 19:00:00,10591.0
-2016-10-24 20:00:00,11170.0
-2016-10-24 21:00:00,11162.0
-2016-10-24 22:00:00,10872.0
-2016-10-24 23:00:00,10385.0
-2016-10-25 00:00:00,9668.0
-2016-10-23 01:00:00,8743.0
-2016-10-23 02:00:00,8415.0
-2016-10-23 03:00:00,8126.0
-2016-10-23 04:00:00,7954.0
-2016-10-23 05:00:00,7807.0
-2016-10-23 06:00:00,7822.0
-2016-10-23 07:00:00,7932.0
-2016-10-23 08:00:00,8163.0
-2016-10-23 09:00:00,8222.0
-2016-10-23 10:00:00,8372.0
-2016-10-23 11:00:00,8570.0
-2016-10-23 12:00:00,8712.0
-2016-10-23 13:00:00,8869.0
-2016-10-23 14:00:00,8965.0
-2016-10-23 15:00:00,9016.0
-2016-10-23 16:00:00,9142.0
-2016-10-23 17:00:00,9214.0
-2016-10-23 18:00:00,9233.0
-2016-10-23 19:00:00,9409.0
-2016-10-23 20:00:00,10128.0
-2016-10-23 21:00:00,10066.0
-2016-10-23 22:00:00,9836.0
-2016-10-23 23:00:00,9419.0
-2016-10-24 00:00:00,8920.0
-2016-10-22 01:00:00,9143.0
-2016-10-22 02:00:00,8678.0
-2016-10-22 03:00:00,8379.0
-2016-10-22 04:00:00,8180.0
-2016-10-22 05:00:00,8078.0
-2016-10-22 06:00:00,8070.0
-2016-10-22 07:00:00,8312.0
-2016-10-22 08:00:00,8826.0
-2016-10-22 09:00:00,9024.0
-2016-10-22 10:00:00,9363.0
-2016-10-22 11:00:00,9473.0
-2016-10-22 12:00:00,9522.0
-2016-10-22 13:00:00,9500.0
-2016-10-22 14:00:00,9405.0
-2016-10-22 15:00:00,9303.0
-2016-10-22 16:00:00,9204.0
-2016-10-22 17:00:00,9237.0
-2016-10-22 18:00:00,9188.0
-2016-10-22 19:00:00,9276.0
-2016-10-22 20:00:00,9919.0
-2016-10-22 21:00:00,9950.0
-2016-10-22 22:00:00,9811.0
-2016-10-22 23:00:00,9536.0
-2016-10-23 00:00:00,9164.0
-2016-10-21 01:00:00,9236.0
-2016-10-21 02:00:00,8809.0
-2016-10-21 03:00:00,8545.0
-2016-10-21 04:00:00,8389.0
-2016-10-21 05:00:00,8298.0
-2016-10-21 06:00:00,8465.0
-2016-10-21 07:00:00,9026.0
-2016-10-21 08:00:00,10136.0
-2016-10-21 09:00:00,10766.0
-2016-10-21 10:00:00,10850.0
-2016-10-21 11:00:00,10841.0
-2016-10-21 12:00:00,10911.0
-2016-10-21 13:00:00,10887.0
-2016-10-21 14:00:00,10818.0
-2016-10-21 15:00:00,10764.0
-2016-10-21 16:00:00,10588.0
-2016-10-21 17:00:00,10549.0
-2016-10-21 18:00:00,10444.0
-2016-10-21 19:00:00,10490.0
-2016-10-21 20:00:00,10958.0
-2016-10-21 21:00:00,10919.0
-2016-10-21 22:00:00,10654.0
-2016-10-21 23:00:00,10305.0
-2016-10-22 00:00:00,9719.0
-2016-10-20 01:00:00,9291.0
-2016-10-20 02:00:00,8762.0
-2016-10-20 03:00:00,8417.0
-2016-10-20 04:00:00,8170.0
-2016-10-20 05:00:00,8055.0
-2016-10-20 06:00:00,8227.0
-2016-10-20 07:00:00,8796.0
-2016-10-20 08:00:00,9849.0
-2016-10-20 09:00:00,10541.0
-2016-10-20 10:00:00,10829.0
-2016-10-20 11:00:00,11034.0
-2016-10-20 12:00:00,11157.0
-2016-10-20 13:00:00,11198.0
-2016-10-20 14:00:00,11126.0
-2016-10-20 15:00:00,11177.0
-2016-10-20 16:00:00,11073.0
-2016-10-20 17:00:00,11017.0
-2016-10-20 18:00:00,10958.0
-2016-10-20 19:00:00,11022.0
-2016-10-20 20:00:00,11322.0
-2016-10-20 21:00:00,11295.0
-2016-10-20 22:00:00,11015.0
-2016-10-20 23:00:00,10588.0
-2016-10-21 00:00:00,9878.0
-2016-10-19 01:00:00,9485.0
-2016-10-19 02:00:00,8914.0
-2016-10-19 03:00:00,8510.0
-2016-10-19 04:00:00,8238.0
-2016-10-19 05:00:00,8083.0
-2016-10-19 06:00:00,8259.0
-2016-10-19 07:00:00,8746.0
-2016-10-19 08:00:00,9745.0
-2016-10-19 09:00:00,10306.0
-2016-10-19 10:00:00,10590.0
-2016-10-19 11:00:00,11014.0
-2016-10-19 12:00:00,11348.0
-2016-10-19 13:00:00,11507.0
-2016-10-19 14:00:00,11642.0
-2016-10-19 15:00:00,11769.0
-2016-10-19 16:00:00,11725.0
-2016-10-19 17:00:00,11559.0
-2016-10-19 18:00:00,11447.0
-2016-10-19 19:00:00,11448.0
-2016-10-19 20:00:00,11804.0
-2016-10-19 21:00:00,11739.0
-2016-10-19 22:00:00,11292.0
-2016-10-19 23:00:00,10724.0
-2016-10-20 00:00:00,10018.0
-2016-10-18 01:00:00,10769.0
-2016-10-18 02:00:00,10179.0
-2016-10-18 03:00:00,9714.0
-2016-10-18 04:00:00,9404.0
-2016-10-18 05:00:00,9185.0
-2016-10-18 06:00:00,9221.0
-2016-10-18 07:00:00,9815.0
-2016-10-18 08:00:00,11006.0
-2016-10-18 09:00:00,11731.0
-2016-10-18 10:00:00,12074.0
-2016-10-18 11:00:00,12494.0
-2016-10-18 12:00:00,12872.0
-2016-10-18 13:00:00,13147.0
-2016-10-18 14:00:00,13264.0
-2016-10-18 15:00:00,13401.0
-2016-10-18 16:00:00,13422.0
-2016-10-18 17:00:00,13289.0
-2016-10-18 18:00:00,13096.0
-2016-10-18 19:00:00,12658.0
-2016-10-18 20:00:00,12671.0
-2016-10-18 21:00:00,12455.0
-2016-10-18 22:00:00,11968.0
-2016-10-18 23:00:00,11217.0
-2016-10-19 00:00:00,10287.0
-2016-10-17 01:00:00,9239.0
-2016-10-17 02:00:00,8929.0
-2016-10-17 03:00:00,8647.0
-2016-10-17 04:00:00,8505.0
-2016-10-17 05:00:00,8428.0
-2016-10-17 06:00:00,8617.0
-2016-10-17 07:00:00,9394.0
-2016-10-17 08:00:00,10496.0
-2016-10-17 09:00:00,11119.0
-2016-10-17 10:00:00,11548.0
-2016-10-17 11:00:00,11774.0
-2016-10-17 12:00:00,12180.0
-2016-10-17 13:00:00,12513.0
-2016-10-17 14:00:00,12748.0
-2016-10-17 15:00:00,13031.0
-2016-10-17 16:00:00,13425.0
-2016-10-17 17:00:00,13635.0
-2016-10-17 18:00:00,13629.0
-2016-10-17 19:00:00,13394.0
-2016-10-17 20:00:00,13634.0
-2016-10-17 21:00:00,13678.0
-2016-10-17 22:00:00,13285.0
-2016-10-17 23:00:00,12586.0
-2016-10-18 00:00:00,11738.0
-2016-10-16 01:00:00,8908.0
-2016-10-16 02:00:00,8521.0
-2016-10-16 03:00:00,8230.0
-2016-10-16 04:00:00,8031.0
-2016-10-16 05:00:00,7944.0
-2016-10-16 06:00:00,7885.0
-2016-10-16 07:00:00,7995.0
-2016-10-16 08:00:00,8167.0
-2016-10-16 09:00:00,8404.0
-2016-10-16 10:00:00,8660.0
-2016-10-16 11:00:00,8955.0
-2016-10-16 12:00:00,9188.0
-2016-10-16 13:00:00,9540.0
-2016-10-16 14:00:00,9684.0
-2016-10-16 15:00:00,9725.0
-2016-10-16 16:00:00,9744.0
-2016-10-16 17:00:00,9839.0
-2016-10-16 18:00:00,9941.0
-2016-10-16 19:00:00,10139.0
-2016-10-16 20:00:00,10658.0
-2016-10-16 21:00:00,10931.0
-2016-10-16 22:00:00,10711.0
-2016-10-16 23:00:00,10346.0
-2016-10-17 00:00:00,9798.0
-2016-10-15 01:00:00,9184.0
-2016-10-15 02:00:00,8619.0
-2016-10-15 03:00:00,8325.0
-2016-10-15 04:00:00,8075.0
-2016-10-15 05:00:00,7923.0
-2016-10-15 06:00:00,7959.0
-2016-10-15 07:00:00,8185.0
-2016-10-15 08:00:00,8667.0
-2016-10-15 09:00:00,8973.0
-2016-10-15 10:00:00,9334.0
-2016-10-15 11:00:00,9685.0
-2016-10-15 12:00:00,9843.0
-2016-10-15 13:00:00,9971.0
-2016-10-15 14:00:00,9921.0
-2016-10-15 15:00:00,9847.0
-2016-10-15 16:00:00,9771.0
-2016-10-15 17:00:00,9806.0
-2016-10-15 18:00:00,9748.0
-2016-10-15 19:00:00,9722.0
-2016-10-15 20:00:00,10216.0
-2016-10-15 21:00:00,10378.0
-2016-10-15 22:00:00,10213.0
-2016-10-15 23:00:00,9837.0
-2016-10-16 00:00:00,9312.0
-2016-10-14 01:00:00,8950.0
-2016-10-14 02:00:00,8489.0
-2016-10-14 03:00:00,8191.0
-2016-10-14 04:00:00,8044.0
-2016-10-14 05:00:00,8012.0
-2016-10-14 06:00:00,8210.0
-2016-10-14 07:00:00,8836.0
-2016-10-14 08:00:00,9942.0
-2016-10-14 09:00:00,10466.0
-2016-10-14 10:00:00,10612.0
-2016-10-14 11:00:00,10705.0
-2016-10-14 12:00:00,10823.0
-2016-10-14 13:00:00,10846.0
-2016-10-14 14:00:00,10834.0
-2016-10-14 15:00:00,10887.0
-2016-10-14 16:00:00,10815.0
-2016-10-14 17:00:00,10691.0
-2016-10-14 18:00:00,10595.0
-2016-10-14 19:00:00,10475.0
-2016-10-14 20:00:00,10805.0
-2016-10-14 21:00:00,10828.0
-2016-10-14 22:00:00,10668.0
-2016-10-14 23:00:00,10376.0
-2016-10-15 00:00:00,9772.0
-2016-10-13 01:00:00,8805.0
-2016-10-13 02:00:00,8352.0
-2016-10-13 03:00:00,8035.0
-2016-10-13 04:00:00,7871.0
-2016-10-13 05:00:00,7868.0
-2016-10-13 06:00:00,8083.0
-2016-10-13 07:00:00,8747.0
-2016-10-13 08:00:00,9890.0
-2016-10-13 09:00:00,10419.0
-2016-10-13 10:00:00,10615.0
-2016-10-13 11:00:00,10703.0
-2016-10-13 12:00:00,10755.0
-2016-10-13 13:00:00,10735.0
-2016-10-13 14:00:00,10700.0
-2016-10-13 15:00:00,10725.0
-2016-10-13 16:00:00,10650.0
-2016-10-13 17:00:00,10541.0
-2016-10-13 18:00:00,10486.0
-2016-10-13 19:00:00,10425.0
-2016-10-13 20:00:00,10861.0
-2016-10-13 21:00:00,11006.0
-2016-10-13 22:00:00,10764.0
-2016-10-13 23:00:00,10323.0
-2016-10-14 00:00:00,9607.0
-2016-10-12 01:00:00,9197.0
-2016-10-12 02:00:00,8652.0
-2016-10-12 03:00:00,8319.0
-2016-10-12 04:00:00,8146.0
-2016-10-12 05:00:00,8112.0
-2016-10-12 06:00:00,8314.0
-2016-10-12 07:00:00,8959.0
-2016-10-12 08:00:00,10083.0
-2016-10-12 09:00:00,10604.0
-2016-10-12 10:00:00,10959.0
-2016-10-12 11:00:00,11261.0
-2016-10-12 12:00:00,11524.0
-2016-10-12 13:00:00,11612.0
-2016-10-12 14:00:00,11665.0
-2016-10-12 15:00:00,11589.0
-2016-10-12 16:00:00,11482.0
-2016-10-12 17:00:00,11405.0
-2016-10-12 18:00:00,11222.0
-2016-10-12 19:00:00,11006.0
-2016-10-12 20:00:00,11125.0
-2016-10-12 21:00:00,11074.0
-2016-10-12 22:00:00,10782.0
-2016-10-12 23:00:00,10248.0
-2016-10-13 00:00:00,9489.0
-2016-10-11 01:00:00,9066.0
-2016-10-11 02:00:00,8608.0
-2016-10-11 03:00:00,8313.0
-2016-10-11 04:00:00,7953.0
-2016-10-11 05:00:00,7938.0
-2016-10-11 06:00:00,8140.0
-2016-10-11 07:00:00,8759.0
-2016-10-11 08:00:00,9855.0
-2016-10-11 09:00:00,10406.0
-2016-10-11 10:00:00,10731.0
-2016-10-11 11:00:00,11015.0
-2016-10-11 12:00:00,11227.0
-2016-10-11 13:00:00,11332.0
-2016-10-11 14:00:00,11427.0
-2016-10-11 15:00:00,11568.0
-2016-10-11 16:00:00,11606.0
-2016-10-11 17:00:00,11553.0
-2016-10-11 18:00:00,11495.0
-2016-10-11 19:00:00,11347.0
-2016-10-11 20:00:00,11552.0
-2016-10-11 21:00:00,11635.0
-2016-10-11 22:00:00,11272.0
-2016-10-11 23:00:00,10697.0
-2016-10-12 00:00:00,9938.0
-2016-10-10 01:00:00,8293.0
-2016-10-10 02:00:00,7938.0
-2016-10-10 03:00:00,7691.0
-2016-10-10 04:00:00,7646.0
-2016-10-10 05:00:00,7606.0
-2016-10-10 06:00:00,7832.0
-2016-10-10 07:00:00,8394.0
-2016-10-10 08:00:00,9388.0
-2016-10-10 09:00:00,9859.0
-2016-10-10 10:00:00,10162.0
-2016-10-10 11:00:00,10448.0
-2016-10-10 12:00:00,10724.0
-2016-10-10 13:00:00,10892.0
-2016-10-10 14:00:00,11005.0
-2016-10-10 15:00:00,11116.0
-2016-10-10 16:00:00,11130.0
-2016-10-10 17:00:00,11054.0
-2016-10-10 18:00:00,10994.0
-2016-10-10 19:00:00,10889.0
-2016-10-10 20:00:00,11246.0
-2016-10-10 21:00:00,11288.0
-2016-10-10 22:00:00,10969.0
-2016-10-10 23:00:00,10431.0
-2016-10-11 00:00:00,9747.0
-2016-10-09 01:00:00,8290.0
-2016-10-09 02:00:00,7904.0
-2016-10-09 03:00:00,7641.0
-2016-10-09 04:00:00,7458.0
-2016-10-09 05:00:00,7359.0
-2016-10-09 06:00:00,7333.0
-2016-10-09 07:00:00,7466.0
-2016-10-09 08:00:00,7662.0
-2016-10-09 09:00:00,7691.0
-2016-10-09 10:00:00,8006.0
-2016-10-09 11:00:00,8334.0
-2016-10-09 12:00:00,8525.0
-2016-10-09 13:00:00,8676.0
-2016-10-09 14:00:00,8758.0
-2016-10-09 15:00:00,8799.0
-2016-10-09 16:00:00,8819.0
-2016-10-09 17:00:00,8831.0
-2016-10-09 18:00:00,8871.0
-2016-10-09 19:00:00,8931.0
-2016-10-09 20:00:00,9376.0
-2016-10-09 21:00:00,9665.0
-2016-10-09 22:00:00,9453.0
-2016-10-09 23:00:00,9160.0
-2016-10-10 00:00:00,8789.0
-2016-10-08 01:00:00,8766.0
-2016-10-08 02:00:00,8225.0
-2016-10-08 03:00:00,7984.0
-2016-10-08 04:00:00,7694.0
-2016-10-08 05:00:00,7589.0
-2016-10-08 06:00:00,7653.0
-2016-10-08 07:00:00,7886.0
-2016-10-08 08:00:00,8274.0
-2016-10-08 09:00:00,8463.0
-2016-10-08 10:00:00,8828.0
-2016-10-08 11:00:00,9072.0
-2016-10-08 12:00:00,9200.0
-2016-10-08 13:00:00,9292.0
-2016-10-08 14:00:00,9266.0
-2016-10-08 15:00:00,9134.0
-2016-10-08 16:00:00,9138.0
-2016-10-08 17:00:00,9106.0
-2016-10-08 18:00:00,9070.0
-2016-10-08 19:00:00,9110.0
-2016-10-08 20:00:00,9441.0
-2016-10-08 21:00:00,9695.0
-2016-10-08 22:00:00,9505.0
-2016-10-08 23:00:00,9227.0
-2016-10-09 00:00:00,8797.0
-2016-10-07 01:00:00,9997.0
-2016-10-07 02:00:00,9411.0
-2016-10-07 03:00:00,9069.0
-2016-10-07 04:00:00,8690.0
-2016-10-07 05:00:00,8621.0
-2016-10-07 06:00:00,8789.0
-2016-10-07 07:00:00,9399.0
-2016-10-07 08:00:00,10473.0
-2016-10-07 09:00:00,11015.0
-2016-10-07 10:00:00,11541.0
-2016-10-07 11:00:00,11864.0
-2016-10-07 12:00:00,12188.0
-2016-10-07 13:00:00,11994.0
-2016-10-07 14:00:00,11722.0
-2016-10-07 15:00:00,11445.0
-2016-10-07 16:00:00,11245.0
-2016-10-07 17:00:00,11008.0
-2016-10-07 18:00:00,10791.0
-2016-10-07 19:00:00,10618.0
-2016-10-07 20:00:00,10732.0
-2016-10-07 21:00:00,10837.0
-2016-10-07 22:00:00,10527.0
-2016-10-07 23:00:00,10095.0
-2016-10-08 00:00:00,9489.0
-2016-10-06 01:00:00,9695.0
-2016-10-06 02:00:00,9067.0
-2016-10-06 03:00:00,8703.0
-2016-10-06 04:00:00,8498.0
-2016-10-06 05:00:00,8401.0
-2016-10-06 06:00:00,8601.0
-2016-10-06 07:00:00,9347.0
-2016-10-06 08:00:00,10526.0
-2016-10-06 09:00:00,11316.0
-2016-10-06 10:00:00,11678.0
-2016-10-06 11:00:00,11920.0
-2016-10-06 12:00:00,12105.0
-2016-10-06 13:00:00,12139.0
-2016-10-06 14:00:00,12348.0
-2016-10-06 15:00:00,12444.0
-2016-10-06 16:00:00,12345.0
-2016-10-06 17:00:00,12343.0
-2016-10-06 18:00:00,12308.0
-2016-10-06 19:00:00,12193.0
-2016-10-06 20:00:00,12451.0
-2016-10-06 21:00:00,12496.0
-2016-10-06 22:00:00,12196.0
-2016-10-06 23:00:00,11639.0
-2016-10-07 00:00:00,10825.0
-2016-10-05 01:00:00,9495.0
-2016-10-05 02:00:00,8953.0
-2016-10-05 03:00:00,8601.0
-2016-10-05 04:00:00,8432.0
-2016-10-05 05:00:00,8378.0
-2016-10-05 06:00:00,8550.0
-2016-10-05 07:00:00,9217.0
-2016-10-05 08:00:00,10384.0
-2016-10-05 09:00:00,10960.0
-2016-10-05 10:00:00,11430.0
-2016-10-05 11:00:00,11835.0
-2016-10-05 12:00:00,12289.0
-2016-10-05 13:00:00,12387.0
-2016-10-05 14:00:00,12510.0
-2016-10-05 15:00:00,12639.0
-2016-10-05 16:00:00,12970.0
-2016-10-05 17:00:00,13030.0
-2016-10-05 18:00:00,13006.0
-2016-10-05 19:00:00,12736.0
-2016-10-05 20:00:00,12650.0
-2016-10-05 21:00:00,12673.0
-2016-10-05 22:00:00,12234.0
-2016-10-05 23:00:00,11479.0
-2016-10-06 00:00:00,10562.0
-2016-10-04 01:00:00,9197.0
-2016-10-04 02:00:00,8701.0
-2016-10-04 03:00:00,8404.0
-2016-10-04 04:00:00,8227.0
-2016-10-04 05:00:00,8162.0
-2016-10-04 06:00:00,8363.0
-2016-10-04 07:00:00,9011.0
-2016-10-04 08:00:00,10128.0
-2016-10-04 09:00:00,10736.0
-2016-10-04 10:00:00,11050.0
-2016-10-04 11:00:00,11282.0
-2016-10-04 12:00:00,11583.0
-2016-10-04 13:00:00,11837.0
-2016-10-04 14:00:00,11905.0
-2016-10-04 15:00:00,12005.0
-2016-10-04 16:00:00,12015.0
-2016-10-04 17:00:00,12007.0
-2016-10-04 18:00:00,11951.0
-2016-10-04 19:00:00,11731.0
-2016-10-04 20:00:00,11747.0
-2016-10-04 21:00:00,12025.0
-2016-10-04 22:00:00,11731.0
-2016-10-04 23:00:00,11146.0
-2016-10-05 00:00:00,10298.0
-2016-10-03 01:00:00,8514.0
-2016-10-03 02:00:00,8181.0
-2016-10-03 03:00:00,7958.0
-2016-10-03 04:00:00,7869.0
-2016-10-03 05:00:00,7851.0
-2016-10-03 06:00:00,8097.0
-2016-10-03 07:00:00,8754.0
-2016-10-03 08:00:00,9912.0
-2016-10-03 09:00:00,10500.0
-2016-10-03 10:00:00,10885.0
-2016-10-03 11:00:00,11070.0
-2016-10-03 12:00:00,11341.0
-2016-10-03 13:00:00,11450.0
-2016-10-03 14:00:00,11480.0
-2016-10-03 15:00:00,11537.0
-2016-10-03 16:00:00,11434.0
-2016-10-03 17:00:00,11326.0
-2016-10-03 18:00:00,11249.0
-2016-10-03 19:00:00,11160.0
-2016-10-03 20:00:00,11389.0
-2016-10-03 21:00:00,11567.0
-2016-10-03 22:00:00,11255.0
-2016-10-03 23:00:00,10727.0
-2016-10-04 00:00:00,9955.0
-2016-10-02 01:00:00,8637.0
-2016-10-02 02:00:00,8213.0
-2016-10-02 03:00:00,7900.0
-2016-10-02 04:00:00,7734.0
-2016-10-02 05:00:00,7594.0
-2016-10-02 06:00:00,7595.0
-2016-10-02 07:00:00,7633.0
-2016-10-02 08:00:00,7861.0
-2016-10-02 09:00:00,7872.0
-2016-10-02 10:00:00,8278.0
-2016-10-02 11:00:00,8548.0
-2016-10-02 12:00:00,8849.0
-2016-10-02 13:00:00,9038.0
-2016-10-02 14:00:00,9106.0
-2016-10-02 15:00:00,9114.0
-2016-10-02 16:00:00,9101.0
-2016-10-02 17:00:00,9191.0
-2016-10-02 18:00:00,9261.0
-2016-10-02 19:00:00,9346.0
-2016-10-02 20:00:00,9735.0
-2016-10-02 21:00:00,10042.0
-2016-10-02 22:00:00,9835.0
-2016-10-02 23:00:00,9483.0
-2016-10-03 00:00:00,9043.0
-2016-10-01 01:00:00,9142.0
-2016-10-01 02:00:00,8616.0
-2016-10-01 03:00:00,8302.0
-2016-10-01 04:00:00,8102.0
-2016-10-01 05:00:00,7964.0
-2016-10-01 06:00:00,7979.0
-2016-10-01 07:00:00,8222.0
-2016-10-01 08:00:00,8603.0
-2016-10-01 09:00:00,8909.0
-2016-10-01 10:00:00,9375.0
-2016-10-01 11:00:00,9784.0
-2016-10-01 12:00:00,9969.0
-2016-10-01 13:00:00,10061.0
-2016-10-01 14:00:00,9950.0
-2016-10-01 15:00:00,9795.0
-2016-10-01 16:00:00,9698.0
-2016-10-01 17:00:00,9595.0
-2016-10-01 18:00:00,9573.0
-2016-10-01 19:00:00,9610.0
-2016-10-01 20:00:00,9864.0
-2016-10-01 21:00:00,10074.0
-2016-10-01 22:00:00,9950.0
-2016-10-01 23:00:00,9623.0
-2016-10-02 00:00:00,9182.0
-2016-09-30 01:00:00,9163.0
-2016-09-30 02:00:00,8694.0
-2016-09-30 03:00:00,8429.0
-2016-09-30 04:00:00,8234.0
-2016-09-30 05:00:00,8212.0
-2016-09-30 06:00:00,8339.0
-2016-09-30 07:00:00,8949.0
-2016-09-30 08:00:00,10036.0
-2016-09-30 09:00:00,10766.0
-2016-09-30 10:00:00,11079.0
-2016-09-30 11:00:00,11331.0
-2016-09-30 12:00:00,11503.0
-2016-09-30 13:00:00,11449.0
-2016-09-30 14:00:00,11399.0
-2016-09-30 15:00:00,11394.0
-2016-09-30 16:00:00,11267.0
-2016-09-30 17:00:00,11138.0
-2016-09-30 18:00:00,11042.0
-2016-09-30 19:00:00,10998.0
-2016-09-30 20:00:00,11152.0
-2016-09-30 21:00:00,11121.0
-2016-09-30 22:00:00,10832.0
-2016-09-30 23:00:00,10458.0
-2016-10-01 00:00:00,9808.0
-2016-09-29 01:00:00,9000.0
-2016-09-29 02:00:00,8586.0
-2016-09-29 03:00:00,8273.0
-2016-09-29 04:00:00,8091.0
-2016-09-29 05:00:00,8091.0
-2016-09-29 06:00:00,8253.0
-2016-09-29 07:00:00,8918.0
-2016-09-29 08:00:00,10056.0
-2016-09-29 09:00:00,10695.0
-2016-09-29 10:00:00,11026.0
-2016-09-29 11:00:00,11246.0
-2016-09-29 12:00:00,11410.0
-2016-09-29 13:00:00,11432.0
-2016-09-29 14:00:00,11462.0
-2016-09-29 15:00:00,11492.0
-2016-09-29 16:00:00,11408.0
-2016-09-29 17:00:00,11281.0
-2016-09-29 18:00:00,11204.0
-2016-09-29 19:00:00,11078.0
-2016-09-29 20:00:00,11225.0
-2016-09-29 21:00:00,11434.0
-2016-09-29 22:00:00,11146.0
-2016-09-29 23:00:00,10666.0
-2016-09-30 00:00:00,9902.0
-2016-09-28 01:00:00,8947.0
-2016-09-28 02:00:00,8459.0
-2016-09-28 03:00:00,8160.0
-2016-09-28 04:00:00,8019.0
-2016-09-28 05:00:00,7966.0
-2016-09-28 06:00:00,8151.0
-2016-09-28 07:00:00,8756.0
-2016-09-28 08:00:00,9778.0
-2016-09-28 09:00:00,10302.0
-2016-09-28 10:00:00,10562.0
-2016-09-28 11:00:00,10773.0
-2016-09-28 12:00:00,10946.0
-2016-09-28 13:00:00,10988.0
-2016-09-28 14:00:00,10973.0
-2016-09-28 15:00:00,10999.0
-2016-09-28 16:00:00,10956.0
-2016-09-28 17:00:00,10891.0
-2016-09-28 18:00:00,10864.0
-2016-09-28 19:00:00,10778.0
-2016-09-28 20:00:00,10925.0
-2016-09-28 21:00:00,11191.0
-2016-09-28 22:00:00,10922.0
-2016-09-28 23:00:00,10409.0
-2016-09-29 00:00:00,9640.0
-2016-09-27 01:00:00,9080.0
-2016-09-27 02:00:00,8583.0
-2016-09-27 03:00:00,8222.0
-2016-09-27 04:00:00,8048.0
-2016-09-27 05:00:00,7957.0
-2016-09-27 06:00:00,8136.0
-2016-09-27 07:00:00,8713.0
-2016-09-27 08:00:00,9712.0
-2016-09-27 09:00:00,10189.0
-2016-09-27 10:00:00,10509.0
-2016-09-27 11:00:00,10823.0
-2016-09-27 12:00:00,11116.0
-2016-09-27 13:00:00,11333.0
-2016-09-27 14:00:00,11416.0
-2016-09-27 15:00:00,11556.0
-2016-09-27 16:00:00,11542.0
-2016-09-27 17:00:00,11398.0
-2016-09-27 18:00:00,11292.0
-2016-09-27 19:00:00,11074.0
-2016-09-27 20:00:00,11085.0
-2016-09-27 21:00:00,11356.0
-2016-09-27 22:00:00,11087.0
-2016-09-27 23:00:00,10485.0
-2016-09-28 00:00:00,9679.0
-2016-09-26 01:00:00,10275.0
-2016-09-26 02:00:00,9453.0
-2016-09-26 03:00:00,8947.0
-2016-09-26 04:00:00,8659.0
-2016-09-26 05:00:00,8498.0
-2016-09-26 06:00:00,8636.0
-2016-09-26 07:00:00,9301.0
-2016-09-26 08:00:00,10304.0
-2016-09-26 09:00:00,10811.0
-2016-09-26 10:00:00,11085.0
-2016-09-26 11:00:00,11430.0
-2016-09-26 12:00:00,11834.0
-2016-09-26 13:00:00,11927.0
-2016-09-26 14:00:00,11968.0
-2016-09-26 15:00:00,12075.0
-2016-09-26 16:00:00,12104.0
-2016-09-26 17:00:00,12050.0
-2016-09-26 18:00:00,11903.0
-2016-09-26 19:00:00,11582.0
-2016-09-26 20:00:00,11359.0
-2016-09-26 21:00:00,11600.0
-2016-09-26 22:00:00,11217.0
-2016-09-26 23:00:00,10650.0
-2016-09-27 00:00:00,9879.0
-2016-09-25 01:00:00,10013.0
-2016-09-25 02:00:00,9362.0
-2016-09-25 03:00:00,8944.0
-2016-09-25 04:00:00,8633.0
-2016-09-25 05:00:00,8460.0
-2016-09-25 06:00:00,8354.0
-2016-09-25 07:00:00,8430.0
-2016-09-25 08:00:00,8499.0
-2016-09-25 09:00:00,8565.0
-2016-09-25 10:00:00,9146.0
-2016-09-25 11:00:00,9888.0
-2016-09-25 12:00:00,10681.0
-2016-09-25 13:00:00,11486.0
-2016-09-25 14:00:00,12179.0
-2016-09-25 15:00:00,13028.0
-2016-09-25 16:00:00,13554.0
-2016-09-25 17:00:00,13876.0
-2016-09-25 18:00:00,13965.0
-2016-09-25 19:00:00,13809.0
-2016-09-25 20:00:00,13567.0
-2016-09-25 21:00:00,13847.0
-2016-09-25 22:00:00,13510.0
-2016-09-25 23:00:00,12790.0
-2016-09-26 00:00:00,11502.0
-2016-09-24 01:00:00,10670.0
-2016-09-24 02:00:00,9942.0
-2016-09-24 03:00:00,9501.0
-2016-09-24 04:00:00,9156.0
-2016-09-24 05:00:00,8961.0
-2016-09-24 06:00:00,8946.0
-2016-09-24 07:00:00,9191.0
-2016-09-24 08:00:00,9579.0
-2016-09-24 09:00:00,9869.0
-2016-09-24 10:00:00,10363.0
-2016-09-24 11:00:00,10786.0
-2016-09-24 12:00:00,11071.0
-2016-09-24 13:00:00,11318.0
-2016-09-24 14:00:00,11555.0
-2016-09-24 15:00:00,11810.0
-2016-09-24 16:00:00,12096.0
-2016-09-24 17:00:00,12286.0
-2016-09-24 18:00:00,12219.0
-2016-09-24 19:00:00,11917.0
-2016-09-24 20:00:00,11647.0
-2016-09-24 21:00:00,11871.0
-2016-09-24 22:00:00,11645.0
-2016-09-24 23:00:00,11256.0
-2016-09-25 00:00:00,10623.0
-2016-09-23 01:00:00,11473.0
-2016-09-23 02:00:00,10653.0
-2016-09-23 03:00:00,10096.0
-2016-09-23 04:00:00,9707.0
-2016-09-23 05:00:00,9564.0
-2016-09-23 06:00:00,9719.0
-2016-09-23 07:00:00,10437.0
-2016-09-23 08:00:00,11616.0
-2016-09-23 09:00:00,12269.0
-2016-09-23 10:00:00,12699.0
-2016-09-23 11:00:00,13082.0
-2016-09-23 12:00:00,13300.0
-2016-09-23 13:00:00,13423.0
-2016-09-23 14:00:00,13593.0
-2016-09-23 15:00:00,13842.0
-2016-09-23 16:00:00,13900.0
-2016-09-23 17:00:00,13846.0
-2016-09-23 18:00:00,13664.0
-2016-09-23 19:00:00,13312.0
-2016-09-23 20:00:00,13039.0
-2016-09-23 21:00:00,13187.0
-2016-09-23 22:00:00,12849.0
-2016-09-23 23:00:00,12343.0
-2016-09-24 00:00:00,11533.0
-2016-09-22 01:00:00,10484.0
-2016-09-22 02:00:00,9818.0
-2016-09-22 03:00:00,9410.0
-2016-09-22 04:00:00,9181.0
-2016-09-22 05:00:00,9068.0
-2016-09-22 06:00:00,9298.0
-2016-09-22 07:00:00,9977.0
-2016-09-22 08:00:00,11058.0
-2016-09-22 09:00:00,11691.0
-2016-09-22 10:00:00,12296.0
-2016-09-22 11:00:00,12750.0
-2016-09-22 12:00:00,13229.0
-2016-09-22 13:00:00,13513.0
-2016-09-22 14:00:00,13744.0
-2016-09-22 15:00:00,14107.0
-2016-09-22 16:00:00,14443.0
-2016-09-22 17:00:00,14588.0
-2016-09-22 18:00:00,14705.0
-2016-09-22 19:00:00,14565.0
-2016-09-22 20:00:00,14499.0
-2016-09-22 21:00:00,14739.0
-2016-09-22 22:00:00,14362.0
-2016-09-22 23:00:00,13620.0
-2016-09-23 00:00:00,12519.0
-2016-09-21 01:00:00,10983.0
-2016-09-21 02:00:00,10315.0
-2016-09-21 03:00:00,9875.0
-2016-09-21 04:00:00,9610.0
-2016-09-21 05:00:00,9482.0
-2016-09-21 06:00:00,9686.0
-2016-09-21 07:00:00,10396.0
-2016-09-21 08:00:00,11581.0
-2016-09-21 09:00:00,12505.0
-2016-09-21 10:00:00,12791.0
-2016-09-21 11:00:00,12875.0
-2016-09-21 12:00:00,13413.0
-2016-09-21 13:00:00,13691.0
-2016-09-21 14:00:00,13685.0
-2016-09-21 15:00:00,13617.0
-2016-09-21 16:00:00,13444.0
-2016-09-21 17:00:00,13201.0
-2016-09-21 18:00:00,13191.0
-2016-09-21 19:00:00,13281.0
-2016-09-21 20:00:00,13155.0
-2016-09-21 21:00:00,13403.0
-2016-09-21 22:00:00,13036.0
-2016-09-21 23:00:00,12364.0
-2016-09-22 00:00:00,11415.0
-2016-09-20 01:00:00,11399.0
-2016-09-20 02:00:00,10608.0
-2016-09-20 03:00:00,10105.0
-2016-09-20 04:00:00,9762.0
-2016-09-20 05:00:00,9609.0
-2016-09-20 06:00:00,9726.0
-2016-09-20 07:00:00,10451.0
-2016-09-20 08:00:00,11556.0
-2016-09-20 09:00:00,12228.0
-2016-09-20 10:00:00,13004.0
-2016-09-20 11:00:00,13789.0
-2016-09-20 12:00:00,14519.0
-2016-09-20 13:00:00,15038.0
-2016-09-20 14:00:00,15445.0
-2016-09-20 15:00:00,15860.0
-2016-09-20 16:00:00,16127.0
-2016-09-20 17:00:00,16276.0
-2016-09-20 18:00:00,16189.0
-2016-09-20 19:00:00,15713.0
-2016-09-20 20:00:00,14787.0
-2016-09-20 21:00:00,14511.0
-2016-09-20 22:00:00,13912.0
-2016-09-20 23:00:00,12993.0
-2016-09-21 00:00:00,11955.0
-2016-09-19 01:00:00,10050.0
-2016-09-19 02:00:00,9409.0
-2016-09-19 03:00:00,9023.0
-2016-09-19 04:00:00,8756.0
-2016-09-19 05:00:00,8684.0
-2016-09-19 06:00:00,8853.0
-2016-09-19 07:00:00,9573.0
-2016-09-19 08:00:00,10512.0
-2016-09-19 09:00:00,11264.0
-2016-09-19 10:00:00,11990.0
-2016-09-19 11:00:00,12693.0
-2016-09-19 12:00:00,13457.0
-2016-09-19 13:00:00,14147.0
-2016-09-19 14:00:00,14747.0
-2016-09-19 15:00:00,15436.0
-2016-09-19 16:00:00,15930.0
-2016-09-19 17:00:00,16299.0
-2016-09-19 18:00:00,16430.0
-2016-09-19 19:00:00,15931.0
-2016-09-19 20:00:00,15346.0
-2016-09-19 21:00:00,15283.0
-2016-09-19 22:00:00,14697.0
-2016-09-19 23:00:00,13736.0
-2016-09-20 00:00:00,12559.0
-2016-09-18 01:00:00,10106.0
-2016-09-18 02:00:00,9388.0
-2016-09-18 03:00:00,8940.0
-2016-09-18 04:00:00,8578.0
-2016-09-18 05:00:00,8404.0
-2016-09-18 06:00:00,8268.0
-2016-09-18 07:00:00,8331.0
-2016-09-18 08:00:00,8368.0
-2016-09-18 09:00:00,8516.0
-2016-09-18 10:00:00,9155.0
-2016-09-18 11:00:00,9820.0
-2016-09-18 12:00:00,10450.0
-2016-09-18 13:00:00,10965.0
-2016-09-18 14:00:00,11467.0
-2016-09-18 15:00:00,11929.0
-2016-09-18 16:00:00,12428.0
-2016-09-18 17:00:00,12792.0
-2016-09-18 18:00:00,13078.0
-2016-09-18 19:00:00,13014.0
-2016-09-18 20:00:00,12644.0
-2016-09-18 21:00:00,12736.0
-2016-09-18 22:00:00,12387.0
-2016-09-18 23:00:00,11770.0
-2016-09-19 00:00:00,10909.0
-2016-09-17 01:00:00,11940.0
-2016-09-17 02:00:00,11000.0
-2016-09-17 03:00:00,10405.0
-2016-09-17 04:00:00,9919.0
-2016-09-17 05:00:00,9613.0
-2016-09-17 06:00:00,9506.0
-2016-09-17 07:00:00,9694.0
-2016-09-17 08:00:00,10046.0
-2016-09-17 09:00:00,10348.0
-2016-09-17 10:00:00,10991.0
-2016-09-17 11:00:00,11793.0
-2016-09-17 12:00:00,12425.0
-2016-09-17 13:00:00,12962.0
-2016-09-17 14:00:00,13378.0
-2016-09-17 15:00:00,13647.0
-2016-09-17 16:00:00,13849.0
-2016-09-17 17:00:00,13922.0
-2016-09-17 18:00:00,13874.0
-2016-09-17 19:00:00,13428.0
-2016-09-17 20:00:00,12751.0
-2016-09-17 21:00:00,12626.0
-2016-09-17 22:00:00,12184.0
-2016-09-17 23:00:00,11611.0
-2016-09-18 00:00:00,10841.0
-2016-09-16 01:00:00,10564.0
-2016-09-16 02:00:00,9852.0
-2016-09-16 03:00:00,9370.0
-2016-09-16 04:00:00,9073.0
-2016-09-16 05:00:00,8935.0
-2016-09-16 06:00:00,9024.0
-2016-09-16 07:00:00,9731.0
-2016-09-16 08:00:00,10800.0
-2016-09-16 09:00:00,11427.0
-2016-09-16 10:00:00,12022.0
-2016-09-16 11:00:00,12608.0
-2016-09-16 12:00:00,13476.0
-2016-09-16 13:00:00,14266.0
-2016-09-16 14:00:00,14500.0
-2016-09-16 15:00:00,14721.0
-2016-09-16 16:00:00,15273.0
-2016-09-16 17:00:00,15660.0
-2016-09-16 18:00:00,15647.0
-2016-09-16 19:00:00,15238.0
-2016-09-16 20:00:00,14729.0
-2016-09-16 21:00:00,14697.0
-2016-09-16 22:00:00,14335.0
-2016-09-16 23:00:00,13761.0
-2016-09-17 00:00:00,12866.0
-2016-09-15 01:00:00,10192.0
-2016-09-15 02:00:00,9537.0
-2016-09-15 03:00:00,9161.0
-2016-09-15 04:00:00,8908.0
-2016-09-15 05:00:00,8772.0
-2016-09-15 06:00:00,8964.0
-2016-09-15 07:00:00,9583.0
-2016-09-15 08:00:00,10523.0
-2016-09-15 09:00:00,11152.0
-2016-09-15 10:00:00,11750.0
-2016-09-15 11:00:00,12209.0
-2016-09-15 12:00:00,12638.0
-2016-09-15 13:00:00,12991.0
-2016-09-15 14:00:00,13396.0
-2016-09-15 15:00:00,13821.0
-2016-09-15 16:00:00,14096.0
-2016-09-15 17:00:00,14330.0
-2016-09-15 18:00:00,14388.0
-2016-09-15 19:00:00,14040.0
-2016-09-15 20:00:00,13398.0
-2016-09-15 21:00:00,13469.0
-2016-09-15 22:00:00,13168.0
-2016-09-15 23:00:00,12487.0
-2016-09-16 00:00:00,11476.0
-2016-09-14 01:00:00,11502.0
-2016-09-14 02:00:00,10685.0
-2016-09-14 03:00:00,10111.0
-2016-09-14 04:00:00,9747.0
-2016-09-14 05:00:00,9600.0
-2016-09-14 06:00:00,9672.0
-2016-09-14 07:00:00,10297.0
-2016-09-14 08:00:00,11358.0
-2016-09-14 09:00:00,11886.0
-2016-09-14 10:00:00,12258.0
-2016-09-14 11:00:00,12754.0
-2016-09-14 12:00:00,13177.0
-2016-09-14 13:00:00,13479.0
-2016-09-14 14:00:00,13689.0
-2016-09-14 15:00:00,13828.0
-2016-09-14 16:00:00,13844.0
-2016-09-14 17:00:00,13989.0
-2016-09-14 18:00:00,13900.0
-2016-09-14 19:00:00,13485.0
-2016-09-14 20:00:00,12842.0
-2016-09-14 21:00:00,12963.0
-2016-09-14 22:00:00,12698.0
-2016-09-14 23:00:00,11994.0
-2016-09-15 00:00:00,11087.0
-2016-09-13 01:00:00,10406.0
-2016-09-13 02:00:00,9787.0
-2016-09-13 03:00:00,9353.0
-2016-09-13 04:00:00,9060.0
-2016-09-13 05:00:00,8971.0
-2016-09-13 06:00:00,9091.0
-2016-09-13 07:00:00,9786.0
-2016-09-13 08:00:00,10724.0
-2016-09-13 09:00:00,11406.0
-2016-09-13 10:00:00,12171.0
-2016-09-13 11:00:00,12868.0
-2016-09-13 12:00:00,13556.0
-2016-09-13 13:00:00,14180.0
-2016-09-13 14:00:00,14873.0
-2016-09-13 15:00:00,15555.0
-2016-09-13 16:00:00,15941.0
-2016-09-13 17:00:00,16156.0
-2016-09-13 18:00:00,16143.0
-2016-09-13 19:00:00,15690.0
-2016-09-13 20:00:00,15044.0
-2016-09-13 21:00:00,15052.0
-2016-09-13 22:00:00,14679.0
-2016-09-13 23:00:00,13840.0
-2016-09-14 00:00:00,12677.0
-2016-09-12 01:00:00,9320.0
-2016-09-12 02:00:00,8847.0
-2016-09-12 03:00:00,8500.0
-2016-09-12 04:00:00,8383.0
-2016-09-12 05:00:00,8252.0
-2016-09-12 06:00:00,8513.0
-2016-09-12 07:00:00,9183.0
-2016-09-12 08:00:00,10128.0
-2016-09-12 09:00:00,10798.0
-2016-09-12 10:00:00,11494.0
-2016-09-12 11:00:00,12031.0
-2016-09-12 12:00:00,12581.0
-2016-09-12 13:00:00,12907.0
-2016-09-12 14:00:00,13254.0
-2016-09-12 15:00:00,13616.0
-2016-09-12 16:00:00,13899.0
-2016-09-12 17:00:00,14151.0
-2016-09-12 18:00:00,14227.0
-2016-09-12 19:00:00,13922.0
-2016-09-12 20:00:00,13347.0
-2016-09-12 21:00:00,13368.0
-2016-09-12 22:00:00,13071.0
-2016-09-12 23:00:00,12328.0
-2016-09-13 00:00:00,11360.0
-2016-09-11 01:00:00,9272.0
-2016-09-11 02:00:00,8723.0
-2016-09-11 03:00:00,8302.0
-2016-09-11 04:00:00,8115.0
-2016-09-11 05:00:00,7953.0
-2016-09-11 06:00:00,7850.0
-2016-09-11 07:00:00,7871.0
-2016-09-11 08:00:00,8009.0
-2016-09-11 09:00:00,8204.0
-2016-09-11 10:00:00,8707.0
-2016-09-11 11:00:00,9225.0
-2016-09-11 12:00:00,9787.0
-2016-09-11 13:00:00,10081.0
-2016-09-11 14:00:00,10414.0
-2016-09-11 15:00:00,10711.0
-2016-09-11 16:00:00,10965.0
-2016-09-11 17:00:00,11193.0
-2016-09-11 18:00:00,11341.0
-2016-09-11 19:00:00,11393.0
-2016-09-11 20:00:00,11170.0
-2016-09-11 21:00:00,11241.0
-2016-09-11 22:00:00,11140.0
-2016-09-11 23:00:00,10667.0
-2016-09-12 00:00:00,9900.0
-2016-09-10 01:00:00,11386.0
-2016-09-10 02:00:00,10654.0
-2016-09-10 03:00:00,10075.0
-2016-09-10 04:00:00,9700.0
-2016-09-10 05:00:00,9505.0
-2016-09-10 06:00:00,9467.0
-2016-09-10 07:00:00,9713.0
-2016-09-10 08:00:00,10068.0
-2016-09-10 09:00:00,10471.0
-2016-09-10 10:00:00,11081.0
-2016-09-10 11:00:00,11500.0
-2016-09-10 12:00:00,11714.0
-2016-09-10 13:00:00,11628.0
-2016-09-10 14:00:00,11636.0
-2016-09-10 15:00:00,11690.0
-2016-09-10 16:00:00,11685.0
-2016-09-10 17:00:00,11686.0
-2016-09-10 18:00:00,11712.0
-2016-09-10 19:00:00,11455.0
-2016-09-10 20:00:00,11100.0
-2016-09-10 21:00:00,11118.0
-2016-09-10 22:00:00,11039.0
-2016-09-10 23:00:00,10566.0
-2016-09-11 00:00:00,9974.0
-2016-09-09 01:00:00,12475.0
-2016-09-09 02:00:00,11505.0
-2016-09-09 03:00:00,10809.0
-2016-09-09 04:00:00,10355.0
-2016-09-09 05:00:00,10086.0
-2016-09-09 06:00:00,10169.0
-2016-09-09 07:00:00,10797.0
-2016-09-09 08:00:00,11728.0
-2016-09-09 09:00:00,12451.0
-2016-09-09 10:00:00,13125.0
-2016-09-09 11:00:00,13653.0
-2016-09-09 12:00:00,14144.0
-2016-09-09 13:00:00,14598.0
-2016-09-09 14:00:00,14945.0
-2016-09-09 15:00:00,15372.0
-2016-09-09 16:00:00,15725.0
-2016-09-09 17:00:00,15827.0
-2016-09-09 18:00:00,15571.0
-2016-09-09 19:00:00,15022.0
-2016-09-09 20:00:00,14283.0
-2016-09-09 21:00:00,14051.0
-2016-09-09 22:00:00,13757.0
-2016-09-09 23:00:00,13191.0
-2016-09-10 00:00:00,12354.0
-2016-09-08 01:00:00,13940.0
-2016-09-08 02:00:00,13007.0
-2016-09-08 03:00:00,12343.0
-2016-09-08 04:00:00,11903.0
-2016-09-08 05:00:00,11686.0
-2016-09-08 06:00:00,11778.0
-2016-09-08 07:00:00,12410.0
-2016-09-08 08:00:00,13376.0
-2016-09-08 09:00:00,13948.0
-2016-09-08 10:00:00,14290.0
-2016-09-08 11:00:00,14569.0
-2016-09-08 12:00:00,14808.0
-2016-09-08 13:00:00,15090.0
-2016-09-08 14:00:00,15532.0
-2016-09-08 15:00:00,16140.0
-2016-09-08 16:00:00,16453.0
-2016-09-08 17:00:00,16713.0
-2016-09-08 18:00:00,16996.0
-2016-09-08 19:00:00,17092.0
-2016-09-08 20:00:00,16544.0
-2016-09-08 21:00:00,16317.0
-2016-09-08 22:00:00,15992.0
-2016-09-08 23:00:00,15014.0
-2016-09-09 00:00:00,13763.0
-2016-09-07 01:00:00,15205.0
-2016-09-07 02:00:00,14212.0
-2016-09-07 03:00:00,13418.0
-2016-09-07 04:00:00,12871.0
-2016-09-07 05:00:00,12580.0
-2016-09-07 06:00:00,12597.0
-2016-09-07 07:00:00,13293.0
-2016-09-07 08:00:00,14314.0
-2016-09-07 09:00:00,15212.0
-2016-09-07 10:00:00,16061.0
-2016-09-07 11:00:00,16910.0
-2016-09-07 12:00:00,17731.0
-2016-09-07 13:00:00,18517.0
-2016-09-07 14:00:00,18693.0
-2016-09-07 15:00:00,18968.0
-2016-09-07 16:00:00,19653.0
-2016-09-07 17:00:00,20153.0
-2016-09-07 18:00:00,20014.0
-2016-09-07 19:00:00,19336.0
-2016-09-07 20:00:00,18812.0
-2016-09-07 21:00:00,18493.0
-2016-09-07 22:00:00,17688.0
-2016-09-07 23:00:00,16568.0
-2016-09-08 00:00:00,15227.0
-2016-09-06 01:00:00,12826.0
-2016-09-06 02:00:00,12023.0
-2016-09-06 03:00:00,11518.0
-2016-09-06 04:00:00,11118.0
-2016-09-06 05:00:00,10945.0
-2016-09-06 06:00:00,11133.0
-2016-09-06 07:00:00,11893.0
-2016-09-06 08:00:00,13070.0
-2016-09-06 09:00:00,14196.0
-2016-09-06 10:00:00,15374.0
-2016-09-06 11:00:00,16582.0
-2016-09-06 12:00:00,17838.0
-2016-09-06 13:00:00,18906.0
-2016-09-06 14:00:00,19808.0
-2016-09-06 15:00:00,20319.0
-2016-09-06 16:00:00,20612.0
-2016-09-06 17:00:00,20927.0
-2016-09-06 18:00:00,20949.0
-2016-09-06 19:00:00,20740.0
-2016-09-06 20:00:00,20061.0
-2016-09-06 21:00:00,19686.0
-2016-09-06 22:00:00,19193.0
-2016-09-06 23:00:00,18102.0
-2016-09-07 00:00:00,16651.0
-2016-09-05 01:00:00,9957.0
-2016-09-05 02:00:00,9353.0
-2016-09-05 03:00:00,8920.0
-2016-09-05 04:00:00,8617.0
-2016-09-05 05:00:00,8496.0
-2016-09-05 06:00:00,8432.0
-2016-09-05 07:00:00,8592.0
-2016-09-05 08:00:00,8619.0
-2016-09-05 09:00:00,8927.0
-2016-09-05 10:00:00,9647.0
-2016-09-05 11:00:00,10693.0
-2016-09-05 12:00:00,11930.0
-2016-09-05 13:00:00,13134.0
-2016-09-05 14:00:00,14166.0
-2016-09-05 15:00:00,14921.0
-2016-09-05 16:00:00,15535.0
-2016-09-05 17:00:00,15993.0
-2016-09-05 18:00:00,16295.0
-2016-09-05 19:00:00,16350.0
-2016-09-05 20:00:00,15958.0
-2016-09-05 21:00:00,15800.0
-2016-09-05 22:00:00,15643.0
-2016-09-05 23:00:00,14939.0
-2016-09-06 00:00:00,13829.0
-2016-09-04 01:00:00,9723.0
-2016-09-04 02:00:00,9151.0
-2016-09-04 03:00:00,8723.0
-2016-09-04 04:00:00,8459.0
-2016-09-04 05:00:00,8224.0
-2016-09-04 06:00:00,8160.0
-2016-09-04 07:00:00,8128.0
-2016-09-04 08:00:00,8074.0
-2016-09-04 09:00:00,8290.0
-2016-09-04 10:00:00,8935.0
-2016-09-04 11:00:00,9611.0
-2016-09-04 12:00:00,10388.0
-2016-09-04 13:00:00,10936.0
-2016-09-04 14:00:00,11172.0
-2016-09-04 15:00:00,11597.0
-2016-09-04 16:00:00,11959.0
-2016-09-04 17:00:00,12126.0
-2016-09-04 18:00:00,12017.0
-2016-09-04 19:00:00,11823.0
-2016-09-04 20:00:00,11493.0
-2016-09-04 21:00:00,11525.0
-2016-09-04 22:00:00,11536.0
-2016-09-04 23:00:00,11187.0
-2016-09-05 00:00:00,10597.0
-2016-09-03 01:00:00,10109.0
-2016-09-03 02:00:00,9454.0
-2016-09-03 03:00:00,9038.0
-2016-09-03 04:00:00,8718.0
-2016-09-03 05:00:00,8525.0
-2016-09-03 06:00:00,8470.0
-2016-09-03 07:00:00,8588.0
-2016-09-03 08:00:00,8646.0
-2016-09-03 09:00:00,8994.0
-2016-09-03 10:00:00,9665.0
-2016-09-03 11:00:00,10276.0
-2016-09-03 12:00:00,10734.0
-2016-09-03 13:00:00,11134.0
-2016-09-03 14:00:00,11401.0
-2016-09-03 15:00:00,11613.0
-2016-09-03 16:00:00,11834.0
-2016-09-03 17:00:00,12029.0
-2016-09-03 18:00:00,12109.0
-2016-09-03 19:00:00,11946.0
-2016-09-03 20:00:00,11466.0
-2016-09-03 21:00:00,11324.0
-2016-09-03 22:00:00,11312.0
-2016-09-03 23:00:00,10930.0
-2016-09-04 00:00:00,10349.0
-2016-09-02 01:00:00,10157.0
-2016-09-02 02:00:00,9541.0
-2016-09-02 03:00:00,9125.0
-2016-09-02 04:00:00,8883.0
-2016-09-02 05:00:00,8772.0
-2016-09-02 06:00:00,8887.0
-2016-09-02 07:00:00,9498.0
-2016-09-02 08:00:00,10254.0
-2016-09-02 09:00:00,11006.0
-2016-09-02 10:00:00,11674.0
-2016-09-02 11:00:00,12172.0
-2016-09-02 12:00:00,12544.0
-2016-09-02 13:00:00,12800.0
-2016-09-02 14:00:00,12977.0
-2016-09-02 15:00:00,13146.0
-2016-09-02 16:00:00,13281.0
-2016-09-02 17:00:00,13311.0
-2016-09-02 18:00:00,13292.0
-2016-09-02 19:00:00,13009.0
-2016-09-02 20:00:00,12411.0
-2016-09-02 21:00:00,12187.0
-2016-09-02 22:00:00,12074.0
-2016-09-02 23:00:00,11645.0
-2016-09-03 00:00:00,10883.0
-2016-09-01 01:00:00,10633.0
-2016-09-01 02:00:00,9937.0
-2016-09-01 03:00:00,9471.0
-2016-09-01 04:00:00,9158.0
-2016-09-01 05:00:00,9160.0
-2016-09-01 06:00:00,9295.0
-2016-09-01 07:00:00,9902.0
-2016-09-01 08:00:00,10831.0
-2016-09-01 09:00:00,11501.0
-2016-09-01 10:00:00,12071.0
-2016-09-01 11:00:00,12480.0
-2016-09-01 12:00:00,12877.0
-2016-09-01 13:00:00,13044.0
-2016-09-01 14:00:00,13096.0
-2016-09-01 15:00:00,13188.0
-2016-09-01 16:00:00,13256.0
-2016-09-01 17:00:00,13161.0
-2016-09-01 18:00:00,13087.0
-2016-09-01 19:00:00,12865.0
-2016-09-01 20:00:00,12361.0
-2016-09-01 21:00:00,12298.0
-2016-09-01 22:00:00,12340.0
-2016-09-01 23:00:00,11827.0
-2016-09-02 00:00:00,10977.0
-2016-08-31 01:00:00,12473.0
-2016-08-31 02:00:00,11616.0
-2016-08-31 03:00:00,10971.0
-2016-08-31 04:00:00,10593.0
-2016-08-31 05:00:00,10362.0
-2016-08-31 06:00:00,10475.0
-2016-08-31 07:00:00,11189.0
-2016-08-31 08:00:00,12109.0
-2016-08-31 09:00:00,12756.0
-2016-08-31 10:00:00,13373.0
-2016-08-31 11:00:00,14074.0
-2016-08-31 12:00:00,14761.0
-2016-08-31 13:00:00,15198.0
-2016-08-31 14:00:00,15416.0
-2016-08-31 15:00:00,15650.0
-2016-08-31 16:00:00,15769.0
-2016-08-31 17:00:00,15720.0
-2016-08-31 18:00:00,15481.0
-2016-08-31 19:00:00,14858.0
-2016-08-31 20:00:00,13944.0
-2016-08-31 21:00:00,13500.0
-2016-08-31 22:00:00,13311.0
-2016-08-31 23:00:00,12583.0
-2016-09-01 00:00:00,11593.0
-2016-08-30 01:00:00,12647.0
-2016-08-30 02:00:00,11815.0
-2016-08-30 03:00:00,11208.0
-2016-08-30 04:00:00,10805.0
-2016-08-30 05:00:00,10620.0
-2016-08-30 06:00:00,10795.0
-2016-08-30 07:00:00,11584.0
-2016-08-30 08:00:00,12812.0
-2016-08-30 09:00:00,13540.0
-2016-08-30 10:00:00,13879.0
-2016-08-30 11:00:00,14397.0
-2016-08-30 12:00:00,15188.0
-2016-08-30 13:00:00,15727.0
-2016-08-30 14:00:00,16486.0
-2016-08-30 15:00:00,17380.0
-2016-08-30 16:00:00,17923.0
-2016-08-30 17:00:00,18180.0
-2016-08-30 18:00:00,17992.0
-2016-08-30 19:00:00,17216.0
-2016-08-30 20:00:00,16438.0
-2016-08-30 21:00:00,16054.0
-2016-08-30 22:00:00,15833.0
-2016-08-30 23:00:00,14924.0
-2016-08-31 00:00:00,13660.0
-2016-08-29 01:00:00,11732.0
-2016-08-29 02:00:00,11015.0
-2016-08-29 03:00:00,10471.0
-2016-08-29 04:00:00,10151.0
-2016-08-29 05:00:00,9990.0
-2016-08-29 06:00:00,10233.0
-2016-08-29 07:00:00,11000.0
-2016-08-29 08:00:00,12012.0
-2016-08-29 09:00:00,13159.0
-2016-08-29 10:00:00,14267.0
-2016-08-29 11:00:00,15253.0
-2016-08-29 12:00:00,16328.0
-2016-08-29 13:00:00,17206.0
-2016-08-29 14:00:00,17945.0
-2016-08-29 15:00:00,18517.0
-2016-08-29 16:00:00,18466.0
-2016-08-29 17:00:00,17880.0
-2016-08-29 18:00:00,17259.0
-2016-08-29 19:00:00,16687.0
-2016-08-29 20:00:00,16271.0
-2016-08-29 21:00:00,16122.0
-2016-08-29 22:00:00,15814.0
-2016-08-29 23:00:00,15004.0
-2016-08-30 00:00:00,13786.0
-2016-08-28 01:00:00,12261.0
-2016-08-28 02:00:00,11464.0
-2016-08-28 03:00:00,10833.0
-2016-08-28 04:00:00,10368.0
-2016-08-28 05:00:00,10046.0
-2016-08-28 06:00:00,9876.0
-2016-08-28 07:00:00,9821.0
-2016-08-28 08:00:00,9798.0
-2016-08-28 09:00:00,10222.0
-2016-08-28 10:00:00,11320.0
-2016-08-28 11:00:00,12522.0
-2016-08-28 12:00:00,13669.0
-2016-08-28 13:00:00,14595.0
-2016-08-28 14:00:00,15231.0
-2016-08-28 15:00:00,15599.0
-2016-08-28 16:00:00,15464.0
-2016-08-28 17:00:00,15296.0
-2016-08-28 18:00:00,15161.0
-2016-08-28 19:00:00,14725.0
-2016-08-28 20:00:00,14290.0
-2016-08-28 21:00:00,14183.0
-2016-08-28 22:00:00,14153.0
-2016-08-28 23:00:00,13513.0
-2016-08-29 00:00:00,12674.0
-2016-08-27 01:00:00,11614.0
-2016-08-27 02:00:00,10904.0
-2016-08-27 03:00:00,10303.0
-2016-08-27 04:00:00,9915.0
-2016-08-27 05:00:00,9707.0
-2016-08-27 06:00:00,9702.0
-2016-08-27 07:00:00,9982.0
-2016-08-27 08:00:00,10421.0
-2016-08-27 09:00:00,10806.0
-2016-08-27 10:00:00,11371.0
-2016-08-27 11:00:00,11919.0
-2016-08-27 12:00:00,12633.0
-2016-08-27 13:00:00,13112.0
-2016-08-27 14:00:00,13692.0
-2016-08-27 15:00:00,14301.0
-2016-08-27 16:00:00,14900.0
-2016-08-27 17:00:00,15315.0
-2016-08-27 18:00:00,15468.0
-2016-08-27 19:00:00,15291.0
-2016-08-27 20:00:00,14742.0
-2016-08-27 21:00:00,14551.0
-2016-08-27 22:00:00,14504.0
-2016-08-27 23:00:00,13976.0
-2016-08-28 00:00:00,13158.0
-2016-08-26 01:00:00,11815.0
-2016-08-26 02:00:00,10937.0
-2016-08-26 03:00:00,10342.0
-2016-08-26 04:00:00,9923.0
-2016-08-26 05:00:00,9696.0
-2016-08-26 06:00:00,9807.0
-2016-08-26 07:00:00,10386.0
-2016-08-26 08:00:00,11218.0
-2016-08-26 09:00:00,12035.0
-2016-08-26 10:00:00,12817.0
-2016-08-26 11:00:00,13423.0
-2016-08-26 12:00:00,14191.0
-2016-08-26 13:00:00,14801.0
-2016-08-26 14:00:00,15142.0
-2016-08-26 15:00:00,15709.0
-2016-08-26 16:00:00,16072.0
-2016-08-26 17:00:00,16038.0
-2016-08-26 18:00:00,15948.0
-2016-08-26 19:00:00,15429.0
-2016-08-26 20:00:00,14667.0
-2016-08-26 21:00:00,14177.0
-2016-08-26 22:00:00,13974.0
-2016-08-26 23:00:00,13451.0
-2016-08-27 00:00:00,12618.0
-2016-08-25 01:00:00,13200.0
-2016-08-25 02:00:00,12278.0
-2016-08-25 03:00:00,11598.0
-2016-08-25 04:00:00,11131.0
-2016-08-25 05:00:00,10903.0
-2016-08-25 06:00:00,10946.0
-2016-08-25 07:00:00,11584.0
-2016-08-25 08:00:00,12563.0
-2016-08-25 09:00:00,13364.0
-2016-08-25 10:00:00,13915.0
-2016-08-25 11:00:00,14375.0
-2016-08-25 12:00:00,14930.0
-2016-08-25 13:00:00,15458.0
-2016-08-25 14:00:00,16133.0
-2016-08-25 15:00:00,16825.0
-2016-08-25 16:00:00,17308.0
-2016-08-25 17:00:00,17415.0
-2016-08-25 18:00:00,17036.0
-2016-08-25 19:00:00,16367.0
-2016-08-25 20:00:00,15740.0
-2016-08-25 21:00:00,15352.0
-2016-08-25 22:00:00,15171.0
-2016-08-25 23:00:00,14272.0
-2016-08-26 00:00:00,13059.0
-2016-08-24 01:00:00,12043.0
-2016-08-24 02:00:00,11286.0
-2016-08-24 03:00:00,10721.0
-2016-08-24 04:00:00,10386.0
-2016-08-24 05:00:00,10216.0
-2016-08-24 06:00:00,10344.0
-2016-08-24 07:00:00,11058.0
-2016-08-24 08:00:00,12034.0
-2016-08-24 09:00:00,13025.0
-2016-08-24 10:00:00,13624.0
-2016-08-24 11:00:00,13850.0
-2016-08-24 12:00:00,14262.0
-2016-08-24 13:00:00,14554.0
-2016-08-24 14:00:00,15161.0
-2016-08-24 15:00:00,15625.0
-2016-08-24 16:00:00,16209.0
-2016-08-24 17:00:00,16888.0
-2016-08-24 18:00:00,17458.0
-2016-08-24 19:00:00,17623.0
-2016-08-24 20:00:00,17194.0
-2016-08-24 21:00:00,16729.0
-2016-08-24 22:00:00,16585.0
-2016-08-24 23:00:00,15752.0
-2016-08-25 00:00:00,14444.0
-2016-08-23 01:00:00,10782.0
-2016-08-23 02:00:00,10088.0
-2016-08-23 03:00:00,9565.0
-2016-08-23 04:00:00,9218.0
-2016-08-23 05:00:00,9099.0
-2016-08-23 06:00:00,9242.0
-2016-08-23 07:00:00,9867.0
-2016-08-23 08:00:00,10618.0
-2016-08-23 09:00:00,11518.0
-2016-08-23 10:00:00,12328.0
-2016-08-23 11:00:00,13051.0
-2016-08-23 12:00:00,13812.0
-2016-08-23 13:00:00,14330.0
-2016-08-23 14:00:00,14784.0
-2016-08-23 15:00:00,15216.0
-2016-08-23 16:00:00,15595.0
-2016-08-23 17:00:00,15925.0
-2016-08-23 18:00:00,16005.0
-2016-08-23 19:00:00,15632.0
-2016-08-23 20:00:00,14992.0
-2016-08-23 21:00:00,14700.0
-2016-08-23 22:00:00,14694.0
-2016-08-23 23:00:00,14038.0
-2016-08-24 00:00:00,13071.0
-2016-08-22 01:00:00,9535.0
-2016-08-22 02:00:00,8997.0
-2016-08-22 03:00:00,8576.0
-2016-08-22 04:00:00,8421.0
-2016-08-22 05:00:00,8392.0
-2016-08-22 06:00:00,8586.0
-2016-08-22 07:00:00,9203.0
-2016-08-22 08:00:00,10004.0
-2016-08-22 09:00:00,10877.0
-2016-08-22 10:00:00,11636.0
-2016-08-22 11:00:00,12211.0
-2016-08-22 12:00:00,12710.0
-2016-08-22 13:00:00,13095.0
-2016-08-22 14:00:00,13401.0
-2016-08-22 15:00:00,13814.0
-2016-08-22 16:00:00,14145.0
-2016-08-22 17:00:00,14455.0
-2016-08-22 18:00:00,14625.0
-2016-08-22 19:00:00,14543.0
-2016-08-22 20:00:00,14062.0
-2016-08-22 21:00:00,13574.0
-2016-08-22 22:00:00,13510.0
-2016-08-22 23:00:00,12802.0
-2016-08-23 00:00:00,11768.0
-2016-08-21 01:00:00,10244.0
-2016-08-21 02:00:00,9561.0
-2016-08-21 03:00:00,9072.0
-2016-08-21 04:00:00,8708.0
-2016-08-21 05:00:00,8468.0
-2016-08-21 06:00:00,8377.0
-2016-08-21 07:00:00,8366.0
-2016-08-21 08:00:00,8300.0
-2016-08-21 09:00:00,8513.0
-2016-08-21 10:00:00,8889.0
-2016-08-21 11:00:00,9356.0
-2016-08-21 12:00:00,9815.0
-2016-08-21 13:00:00,10296.0
-2016-08-21 14:00:00,10628.0
-2016-08-21 15:00:00,10889.0
-2016-08-21 16:00:00,11152.0
-2016-08-21 17:00:00,11309.0
-2016-08-21 18:00:00,11426.0
-2016-08-21 19:00:00,11404.0
-2016-08-21 20:00:00,11298.0
-2016-08-21 21:00:00,11082.0
-2016-08-21 22:00:00,11282.0
-2016-08-21 23:00:00,10889.0
-2016-08-22 00:00:00,10178.0
-2016-08-20 01:00:00,13039.0
-2016-08-20 02:00:00,12096.0
-2016-08-20 03:00:00,11410.0
-2016-08-20 04:00:00,10937.0
-2016-08-20 05:00:00,10726.0
-2016-08-20 06:00:00,10662.0
-2016-08-20 07:00:00,10895.0
-2016-08-20 08:00:00,11144.0
-2016-08-20 09:00:00,11620.0
-2016-08-20 10:00:00,12260.0
-2016-08-20 11:00:00,12791.0
-2016-08-20 12:00:00,13237.0
-2016-08-20 13:00:00,13627.0
-2016-08-20 14:00:00,13981.0
-2016-08-20 15:00:00,14357.0
-2016-08-20 16:00:00,14471.0
-2016-08-20 17:00:00,14466.0
-2016-08-20 18:00:00,14126.0
-2016-08-20 19:00:00,13613.0
-2016-08-20 20:00:00,12968.0
-2016-08-20 21:00:00,12322.0
-2016-08-20 22:00:00,12256.0
-2016-08-20 23:00:00,11772.0
-2016-08-21 00:00:00,11079.0
-2016-08-19 01:00:00,13405.0
-2016-08-19 02:00:00,12369.0
-2016-08-19 03:00:00,11588.0
-2016-08-19 04:00:00,11060.0
-2016-08-19 05:00:00,10790.0
-2016-08-19 06:00:00,10825.0
-2016-08-19 07:00:00,11363.0
-2016-08-19 08:00:00,12176.0
-2016-08-19 09:00:00,12990.0
-2016-08-19 10:00:00,13782.0
-2016-08-19 11:00:00,14464.0
-2016-08-19 12:00:00,14588.0
-2016-08-19 13:00:00,14763.0
-2016-08-19 14:00:00,15393.0
-2016-08-19 15:00:00,16188.0
-2016-08-19 16:00:00,16946.0
-2016-08-19 17:00:00,17623.0
-2016-08-19 18:00:00,17925.0
-2016-08-19 19:00:00,17806.0
-2016-08-19 20:00:00,17106.0
-2016-08-19 21:00:00,16378.0
-2016-08-19 22:00:00,16110.0
-2016-08-19 23:00:00,15349.0
-2016-08-20 00:00:00,14180.0
-2016-08-18 01:00:00,13322.0
-2016-08-18 02:00:00,12308.0
-2016-08-18 03:00:00,11609.0
-2016-08-18 04:00:00,11143.0
-2016-08-18 05:00:00,10909.0
-2016-08-18 06:00:00,11040.0
-2016-08-18 07:00:00,11777.0
-2016-08-18 08:00:00,12771.0
-2016-08-18 09:00:00,13477.0
-2016-08-18 10:00:00,14058.0
-2016-08-18 11:00:00,15013.0
-2016-08-18 12:00:00,16106.0
-2016-08-18 13:00:00,17054.0
-2016-08-18 14:00:00,17943.0
-2016-08-18 15:00:00,18714.0
-2016-08-18 16:00:00,18902.0
-2016-08-18 17:00:00,19033.0
-2016-08-18 18:00:00,19170.0
-2016-08-18 19:00:00,18884.0
-2016-08-18 20:00:00,17984.0
-2016-08-18 21:00:00,17297.0
-2016-08-18 22:00:00,17043.0
-2016-08-18 23:00:00,16095.0
-2016-08-19 00:00:00,14720.0
-2016-08-17 01:00:00,13174.0
-2016-08-17 02:00:00,12156.0
-2016-08-17 03:00:00,11378.0
-2016-08-17 04:00:00,10880.0
-2016-08-17 05:00:00,10585.0
-2016-08-17 06:00:00,10710.0
-2016-08-17 07:00:00,11335.0
-2016-08-17 08:00:00,12194.0
-2016-08-17 09:00:00,13247.0
-2016-08-17 10:00:00,14227.0
-2016-08-17 11:00:00,15110.0
-2016-08-17 12:00:00,16170.0
-2016-08-17 13:00:00,17110.0
-2016-08-17 14:00:00,17883.0
-2016-08-17 15:00:00,18521.0
-2016-08-17 16:00:00,18871.0
-2016-08-17 17:00:00,19019.0
-2016-08-17 18:00:00,18899.0
-2016-08-17 19:00:00,18439.0
-2016-08-17 20:00:00,17746.0
-2016-08-17 21:00:00,16986.0
-2016-08-17 22:00:00,16853.0
-2016-08-17 23:00:00,15851.0
-2016-08-18 00:00:00,14679.0
-2016-08-16 01:00:00,12209.0
-2016-08-16 02:00:00,11476.0
-2016-08-16 03:00:00,10988.0
-2016-08-16 04:00:00,10656.0
-2016-08-16 05:00:00,10476.0
-2016-08-16 06:00:00,10652.0
-2016-08-16 07:00:00,11351.0
-2016-08-16 08:00:00,12165.0
-2016-08-16 09:00:00,13119.0
-2016-08-16 10:00:00,14014.0
-2016-08-16 11:00:00,14888.0
-2016-08-16 12:00:00,15919.0
-2016-08-16 13:00:00,16591.0
-2016-08-16 14:00:00,17215.0
-2016-08-16 15:00:00,17770.0
-2016-08-16 16:00:00,17919.0
-2016-08-16 17:00:00,18132.0
-2016-08-16 18:00:00,18413.0
-2016-08-16 19:00:00,18370.0
-2016-08-16 20:00:00,17696.0
-2016-08-16 21:00:00,16928.0
-2016-08-16 22:00:00,16613.0
-2016-08-16 23:00:00,15757.0
-2016-08-17 00:00:00,14478.0
-2016-08-15 01:00:00,12255.0
-2016-08-15 02:00:00,11431.0
-2016-08-15 03:00:00,10838.0
-2016-08-15 04:00:00,10474.0
-2016-08-15 05:00:00,10250.0
-2016-08-15 06:00:00,10452.0
-2016-08-15 07:00:00,11079.0
-2016-08-15 08:00:00,11869.0
-2016-08-15 09:00:00,12733.0
-2016-08-15 10:00:00,13542.0
-2016-08-15 11:00:00,14152.0
-2016-08-15 12:00:00,14761.0
-2016-08-15 13:00:00,15200.0
-2016-08-15 14:00:00,15483.0
-2016-08-15 15:00:00,15684.0
-2016-08-15 16:00:00,15734.0
-2016-08-15 17:00:00,15585.0
-2016-08-15 18:00:00,15405.0
-2016-08-15 19:00:00,15216.0
-2016-08-15 20:00:00,14838.0
-2016-08-15 21:00:00,14712.0
-2016-08-15 22:00:00,14726.0
-2016-08-15 23:00:00,14143.0
-2016-08-16 00:00:00,13231.0
-2016-08-14 01:00:00,12299.0
-2016-08-14 02:00:00,11422.0
-2016-08-14 03:00:00,10694.0
-2016-08-14 04:00:00,10176.0
-2016-08-14 05:00:00,9812.0
-2016-08-14 06:00:00,9642.0
-2016-08-14 07:00:00,9544.0
-2016-08-14 08:00:00,9484.0
-2016-08-14 09:00:00,10126.0
-2016-08-14 10:00:00,11206.0
-2016-08-14 11:00:00,12357.0
-2016-08-14 12:00:00,13366.0
-2016-08-14 13:00:00,14125.0
-2016-08-14 14:00:00,14725.0
-2016-08-14 15:00:00,15129.0
-2016-08-14 16:00:00,15542.0
-2016-08-14 17:00:00,15691.0
-2016-08-14 18:00:00,15852.0
-2016-08-14 19:00:00,15819.0
-2016-08-14 20:00:00,15514.0
-2016-08-14 21:00:00,14922.0
-2016-08-14 22:00:00,14829.0
-2016-08-14 23:00:00,14244.0
-2016-08-15 00:00:00,13331.0
-2016-08-13 01:00:00,13193.0
-2016-08-13 02:00:00,12319.0
-2016-08-13 03:00:00,11745.0
-2016-08-13 04:00:00,11430.0
-2016-08-13 05:00:00,11209.0
-2016-08-13 06:00:00,11197.0
-2016-08-13 07:00:00,11390.0
-2016-08-13 08:00:00,11652.0
-2016-08-13 09:00:00,12214.0
-2016-08-13 10:00:00,13111.0
-2016-08-13 11:00:00,14119.0
-2016-08-13 12:00:00,15035.0
-2016-08-13 13:00:00,15656.0
-2016-08-13 14:00:00,15947.0
-2016-08-13 15:00:00,15997.0
-2016-08-13 16:00:00,15941.0
-2016-08-13 17:00:00,15935.0
-2016-08-13 18:00:00,16162.0
-2016-08-13 19:00:00,16141.0
-2016-08-13 20:00:00,15702.0
-2016-08-13 21:00:00,15009.0
-2016-08-13 22:00:00,14826.0
-2016-08-13 23:00:00,14260.0
-2016-08-14 00:00:00,13340.0
-2016-08-12 01:00:00,15641.0
-2016-08-12 02:00:00,14665.0
-2016-08-12 03:00:00,13991.0
-2016-08-12 04:00:00,13521.0
-2016-08-12 05:00:00,13141.0
-2016-08-12 06:00:00,13060.0
-2016-08-12 07:00:00,13547.0
-2016-08-12 08:00:00,14194.0
-2016-08-12 09:00:00,14998.0
-2016-08-12 10:00:00,15704.0
-2016-08-12 11:00:00,16158.0
-2016-08-12 12:00:00,16509.0
-2016-08-12 13:00:00,16384.0
-2016-08-12 14:00:00,16343.0
-2016-08-12 15:00:00,16479.0
-2016-08-12 16:00:00,16443.0
-2016-08-12 17:00:00,16337.0
-2016-08-12 18:00:00,16399.0
-2016-08-12 19:00:00,16271.0
-2016-08-12 20:00:00,16097.0
-2016-08-12 21:00:00,15907.0
-2016-08-12 22:00:00,15635.0
-2016-08-12 23:00:00,15074.0
-2016-08-13 00:00:00,14151.0
-2016-08-11 01:00:00,14577.0
-2016-08-11 02:00:00,13478.0
-2016-08-11 03:00:00,12700.0
-2016-08-11 04:00:00,12146.0
-2016-08-11 05:00:00,11843.0
-2016-08-11 06:00:00,11867.0
-2016-08-11 07:00:00,12468.0
-2016-08-11 08:00:00,13256.0
-2016-08-11 09:00:00,14575.0
-2016-08-11 10:00:00,16078.0
-2016-08-11 11:00:00,17444.0
-2016-08-11 12:00:00,18812.0
-2016-08-11 13:00:00,19792.0
-2016-08-11 14:00:00,20430.0
-2016-08-11 15:00:00,20885.0
-2016-08-11 16:00:00,21175.0
-2016-08-11 17:00:00,21086.0
-2016-08-11 18:00:00,20292.0
-2016-08-11 19:00:00,19336.0
-2016-08-11 20:00:00,18909.0
-2016-08-11 21:00:00,18537.0
-2016-08-11 22:00:00,18484.0
-2016-08-11 23:00:00,17935.0
-2016-08-12 00:00:00,16817.0
-2016-08-10 01:00:00,13802.0
-2016-08-10 02:00:00,12712.0
-2016-08-10 03:00:00,11926.0
-2016-08-10 04:00:00,11368.0
-2016-08-10 05:00:00,11053.0
-2016-08-10 06:00:00,11122.0
-2016-08-10 07:00:00,11685.0
-2016-08-10 08:00:00,12461.0
-2016-08-10 09:00:00,13788.0
-2016-08-10 10:00:00,15113.0
-2016-08-10 11:00:00,16370.0
-2016-08-10 12:00:00,17515.0
-2016-08-10 13:00:00,18327.0
-2016-08-10 14:00:00,19051.0
-2016-08-10 15:00:00,19520.0
-2016-08-10 16:00:00,19829.0
-2016-08-10 17:00:00,20017.0
-2016-08-10 18:00:00,20082.0
-2016-08-10 19:00:00,19867.0
-2016-08-10 20:00:00,19266.0
-2016-08-10 21:00:00,18547.0
-2016-08-10 22:00:00,18226.0
-2016-08-10 23:00:00,17332.0
-2016-08-11 00:00:00,16017.0
-2016-08-09 01:00:00,12924.0
-2016-08-09 02:00:00,11969.0
-2016-08-09 03:00:00,11213.0
-2016-08-09 04:00:00,10680.0
-2016-08-09 05:00:00,10395.0
-2016-08-09 06:00:00,10470.0
-2016-08-09 07:00:00,11017.0
-2016-08-09 08:00:00,11717.0
-2016-08-09 09:00:00,12793.0
-2016-08-09 10:00:00,13839.0
-2016-08-09 11:00:00,14793.0
-2016-08-09 12:00:00,15864.0
-2016-08-09 13:00:00,16801.0
-2016-08-09 14:00:00,17603.0
-2016-08-09 15:00:00,18282.0
-2016-08-09 16:00:00,18635.0
-2016-08-09 17:00:00,18729.0
-2016-08-09 18:00:00,18880.0
-2016-08-09 19:00:00,18799.0
-2016-08-09 20:00:00,18114.0
-2016-08-09 21:00:00,17439.0
-2016-08-09 22:00:00,17157.0
-2016-08-09 23:00:00,16417.0
-2016-08-10 00:00:00,15147.0
-2016-08-08 01:00:00,11547.0
-2016-08-08 02:00:00,10838.0
-2016-08-08 03:00:00,10343.0
-2016-08-08 04:00:00,9999.0
-2016-08-08 05:00:00,9883.0
-2016-08-08 06:00:00,10112.0
-2016-08-08 07:00:00,10775.0
-2016-08-08 08:00:00,11604.0
-2016-08-08 09:00:00,12688.0
-2016-08-08 10:00:00,13865.0
-2016-08-08 11:00:00,14742.0
-2016-08-08 12:00:00,15663.0
-2016-08-08 13:00:00,16417.0
-2016-08-08 14:00:00,17005.0
-2016-08-08 15:00:00,17523.0
-2016-08-08 16:00:00,17857.0
-2016-08-08 17:00:00,18041.0
-2016-08-08 18:00:00,18070.0
-2016-08-08 19:00:00,17877.0
-2016-08-08 20:00:00,17228.0
-2016-08-08 21:00:00,16351.0
-2016-08-08 22:00:00,15995.0
-2016-08-08 23:00:00,15337.0
-2016-08-09 00:00:00,14144.0
-2016-08-07 01:00:00,11264.0
-2016-08-07 02:00:00,10493.0
-2016-08-07 03:00:00,9888.0
-2016-08-07 04:00:00,9466.0
-2016-08-07 05:00:00,9113.0
-2016-08-07 06:00:00,8972.0
-2016-08-07 07:00:00,8857.0
-2016-08-07 08:00:00,8828.0
-2016-08-07 09:00:00,9382.0
-2016-08-07 10:00:00,10264.0
-2016-08-07 11:00:00,11192.0
-2016-08-07 12:00:00,12158.0
-2016-08-07 13:00:00,12934.0
-2016-08-07 14:00:00,13528.0
-2016-08-07 15:00:00,13945.0
-2016-08-07 16:00:00,14193.0
-2016-08-07 17:00:00,14260.0
-2016-08-07 18:00:00,14248.0
-2016-08-07 19:00:00,13944.0
-2016-08-07 20:00:00,13555.0
-2016-08-07 21:00:00,13175.0
-2016-08-07 22:00:00,13279.0
-2016-08-07 23:00:00,13020.0
-2016-08-08 00:00:00,12311.0
-2016-08-06 01:00:00,12864.0
-2016-08-06 02:00:00,11763.0
-2016-08-06 03:00:00,11033.0
-2016-08-06 04:00:00,10442.0
-2016-08-06 05:00:00,10006.0
-2016-08-06 06:00:00,9860.0
-2016-08-06 07:00:00,9937.0
-2016-08-06 08:00:00,10019.0
-2016-08-06 09:00:00,10794.0
-2016-08-06 10:00:00,11839.0
-2016-08-06 11:00:00,12893.0
-2016-08-06 12:00:00,13727.0
-2016-08-06 13:00:00,14295.0
-2016-08-06 14:00:00,14600.0
-2016-08-06 15:00:00,14832.0
-2016-08-06 16:00:00,15026.0
-2016-08-06 17:00:00,15177.0
-2016-08-06 18:00:00,15213.0
-2016-08-06 19:00:00,15050.0
-2016-08-06 20:00:00,14550.0
-2016-08-06 21:00:00,13827.0
-2016-08-06 22:00:00,13538.0
-2016-08-06 23:00:00,13031.0
-2016-08-07 00:00:00,12209.0
-2016-08-05 01:00:00,15050.0
-2016-08-05 02:00:00,13731.0
-2016-08-05 03:00:00,12861.0
-2016-08-05 04:00:00,12277.0
-2016-08-05 05:00:00,11980.0
-2016-08-05 06:00:00,11976.0
-2016-08-05 07:00:00,12473.0
-2016-08-05 08:00:00,13110.0
-2016-08-05 09:00:00,13867.0
-2016-08-05 10:00:00,14504.0
-2016-08-05 11:00:00,14984.0
-2016-08-05 12:00:00,15557.0
-2016-08-05 13:00:00,15911.0
-2016-08-05 14:00:00,16395.0
-2016-08-05 15:00:00,17230.0
-2016-08-05 16:00:00,18056.0
-2016-08-05 17:00:00,18119.0
-2016-08-05 18:00:00,18169.0
-2016-08-05 19:00:00,17944.0
-2016-08-05 20:00:00,17295.0
-2016-08-05 21:00:00,16432.0
-2016-08-05 22:00:00,15881.0
-2016-08-05 23:00:00,15241.0
-2016-08-06 00:00:00,14040.0
-2016-08-04 01:00:00,14181.0
-2016-08-04 02:00:00,13090.0
-2016-08-04 03:00:00,12254.0
-2016-08-04 04:00:00,11599.0
-2016-08-04 05:00:00,11274.0
-2016-08-04 06:00:00,11285.0
-2016-08-04 07:00:00,11750.0
-2016-08-04 08:00:00,12515.0
-2016-08-04 09:00:00,13875.0
-2016-08-04 10:00:00,15264.0
-2016-08-04 11:00:00,16533.0
-2016-08-04 12:00:00,17686.0
-2016-08-04 13:00:00,18551.0
-2016-08-04 14:00:00,19257.0
-2016-08-04 15:00:00,19858.0
-2016-08-04 16:00:00,20175.0
-2016-08-04 17:00:00,20421.0
-2016-08-04 18:00:00,20501.0
-2016-08-04 19:00:00,20323.0
-2016-08-04 20:00:00,19797.0
-2016-08-04 21:00:00,18959.0
-2016-08-04 22:00:00,18636.0
-2016-08-04 23:00:00,17791.0
-2016-08-05 00:00:00,16507.0
-2016-08-03 01:00:00,13486.0
-2016-08-03 02:00:00,12449.0
-2016-08-03 03:00:00,11719.0
-2016-08-03 04:00:00,11193.0
-2016-08-03 05:00:00,10891.0
-2016-08-03 06:00:00,10928.0
-2016-08-03 07:00:00,11442.0
-2016-08-03 08:00:00,12255.0
-2016-08-03 09:00:00,13566.0
-2016-08-03 10:00:00,14929.0
-2016-08-03 11:00:00,16199.0
-2016-08-03 12:00:00,17388.0
-2016-08-03 13:00:00,18263.0
-2016-08-03 14:00:00,18998.0
-2016-08-03 15:00:00,19505.0
-2016-08-03 16:00:00,19840.0
-2016-08-03 17:00:00,20009.0
-2016-08-03 18:00:00,19983.0
-2016-08-03 19:00:00,19648.0
-2016-08-03 20:00:00,18932.0
-2016-08-03 21:00:00,18176.0
-2016-08-03 22:00:00,17740.0
-2016-08-03 23:00:00,16953.0
-2016-08-04 00:00:00,15570.0
-2016-08-02 01:00:00,12583.0
-2016-08-02 02:00:00,11611.0
-2016-08-02 03:00:00,10939.0
-2016-08-02 04:00:00,10514.0
-2016-08-02 05:00:00,10304.0
-2016-08-02 06:00:00,10421.0
-2016-08-02 07:00:00,10937.0
-2016-08-02 08:00:00,11772.0
-2016-08-02 09:00:00,12959.0
-2016-08-02 10:00:00,14102.0
-2016-08-02 11:00:00,15214.0
-2016-08-02 12:00:00,16170.0
-2016-08-02 13:00:00,16974.0
-2016-08-02 14:00:00,17745.0
-2016-08-02 15:00:00,18369.0
-2016-08-02 16:00:00,18695.0
-2016-08-02 17:00:00,18883.0
-2016-08-02 18:00:00,18823.0
-2016-08-02 19:00:00,18552.0
-2016-08-02 20:00:00,17920.0
-2016-08-02 21:00:00,17141.0
-2016-08-02 22:00:00,16744.0
-2016-08-02 23:00:00,16075.0
-2016-08-03 00:00:00,14846.0
-2016-08-01 01:00:00,11463.0
-2016-08-01 02:00:00,10684.0
-2016-08-01 03:00:00,10167.0
-2016-08-01 04:00:00,9787.0
-2016-08-01 05:00:00,9666.0
-2016-08-01 06:00:00,9836.0
-2016-08-01 07:00:00,10452.0
-2016-08-01 08:00:00,11275.0
-2016-08-01 09:00:00,12561.0
-2016-08-01 10:00:00,13640.0
-2016-08-01 11:00:00,14556.0
-2016-08-01 12:00:00,15533.0
-2016-08-01 13:00:00,16295.0
-2016-08-01 14:00:00,16936.0
-2016-08-01 15:00:00,17488.0
-2016-08-01 16:00:00,17803.0
-2016-08-01 17:00:00,17911.0
-2016-08-01 18:00:00,17893.0
-2016-08-01 19:00:00,17586.0
-2016-08-01 20:00:00,16980.0
-2016-08-01 21:00:00,16174.0
-2016-08-01 22:00:00,15674.0
-2016-08-01 23:00:00,14973.0
-2016-08-02 00:00:00,13865.0
-2016-07-31 01:00:00,10985.0
-2016-07-31 02:00:00,10278.0
-2016-07-31 03:00:00,9759.0
-2016-07-31 04:00:00,9325.0
-2016-07-31 05:00:00,9094.0
-2016-07-31 06:00:00,8926.0
-2016-07-31 07:00:00,8877.0
-2016-07-31 08:00:00,8809.0
-2016-07-31 09:00:00,9362.0
-2016-07-31 10:00:00,10175.0
-2016-07-31 11:00:00,11121.0
-2016-07-31 12:00:00,12075.0
-2016-07-31 13:00:00,12821.0
-2016-07-31 14:00:00,13462.0
-2016-07-31 15:00:00,13916.0
-2016-07-31 16:00:00,14332.0
-2016-07-31 17:00:00,14522.0
-2016-07-31 18:00:00,14584.0
-2016-07-31 19:00:00,14475.0
-2016-07-31 20:00:00,14139.0
-2016-07-31 21:00:00,13529.0
-2016-07-31 22:00:00,13414.0
-2016-07-31 23:00:00,13163.0
-2016-08-01 00:00:00,12385.0
-2016-07-30 01:00:00,11806.0
-2016-07-30 02:00:00,11046.0
-2016-07-30 03:00:00,10521.0
-2016-07-30 04:00:00,10090.0
-2016-07-30 05:00:00,9868.0
-2016-07-30 06:00:00,9784.0
-2016-07-30 07:00:00,9936.0
-2016-07-30 08:00:00,10102.0
-2016-07-30 09:00:00,10598.0
-2016-07-30 10:00:00,11442.0
-2016-07-30 11:00:00,12120.0
-2016-07-30 12:00:00,12564.0
-2016-07-30 13:00:00,12821.0
-2016-07-30 14:00:00,13138.0
-2016-07-30 15:00:00,13463.0
-2016-07-30 16:00:00,13730.0
-2016-07-30 17:00:00,13876.0
-2016-07-30 18:00:00,14011.0
-2016-07-30 19:00:00,13851.0
-2016-07-30 20:00:00,13300.0
-2016-07-30 21:00:00,12689.0
-2016-07-30 22:00:00,12551.0
-2016-07-30 23:00:00,12336.0
-2016-07-31 00:00:00,11665.0
-2016-07-29 01:00:00,12527.0
-2016-07-29 02:00:00,11681.0
-2016-07-29 03:00:00,11132.0
-2016-07-29 04:00:00,10708.0
-2016-07-29 05:00:00,10496.0
-2016-07-29 06:00:00,10650.0
-2016-07-29 07:00:00,11181.0
-2016-07-29 08:00:00,11966.0
-2016-07-29 09:00:00,13058.0
-2016-07-29 10:00:00,14064.0
-2016-07-29 11:00:00,14874.0
-2016-07-29 12:00:00,15670.0
-2016-07-29 13:00:00,16204.0
-2016-07-29 14:00:00,16590.0
-2016-07-29 15:00:00,16573.0
-2016-07-29 16:00:00,15950.0
-2016-07-29 17:00:00,15264.0
-2016-07-29 18:00:00,14891.0
-2016-07-29 19:00:00,14472.0
-2016-07-29 20:00:00,14051.0
-2016-07-29 21:00:00,13724.0
-2016-07-29 22:00:00,13746.0
-2016-07-29 23:00:00,13450.0
-2016-07-30 00:00:00,12632.0
-2016-07-28 01:00:00,14098.0
-2016-07-28 02:00:00,12982.0
-2016-07-28 03:00:00,12177.0
-2016-07-28 04:00:00,11596.0
-2016-07-28 05:00:00,11280.0
-2016-07-28 06:00:00,11292.0
-2016-07-28 07:00:00,11794.0
-2016-07-28 08:00:00,12601.0
-2016-07-28 09:00:00,13822.0
-2016-07-28 10:00:00,14960.0
-2016-07-28 11:00:00,15967.0
-2016-07-28 12:00:00,16993.0
-2016-07-28 13:00:00,17629.0
-2016-07-28 14:00:00,17990.0
-2016-07-28 15:00:00,17845.0
-2016-07-28 16:00:00,17198.0
-2016-07-28 17:00:00,16513.0
-2016-07-28 18:00:00,15930.0
-2016-07-28 19:00:00,15742.0
-2016-07-28 20:00:00,15388.0
-2016-07-28 21:00:00,14989.0
-2016-07-28 22:00:00,14868.0
-2016-07-28 23:00:00,14476.0
-2016-07-29 00:00:00,13582.0
-2016-07-27 01:00:00,13555.0
-2016-07-27 02:00:00,12464.0
-2016-07-27 03:00:00,11652.0
-2016-07-27 04:00:00,11147.0
-2016-07-27 05:00:00,10799.0
-2016-07-27 06:00:00,10862.0
-2016-07-27 07:00:00,11300.0
-2016-07-27 08:00:00,12153.0
-2016-07-27 09:00:00,13461.0
-2016-07-27 10:00:00,14744.0
-2016-07-27 11:00:00,15932.0
-2016-07-27 12:00:00,17000.0
-2016-07-27 13:00:00,17860.0
-2016-07-27 14:00:00,18432.0
-2016-07-27 15:00:00,18982.0
-2016-07-27 16:00:00,19370.0
-2016-07-27 17:00:00,19612.0
-2016-07-27 18:00:00,19627.0
-2016-07-27 19:00:00,19396.0
-2016-07-27 20:00:00,18725.0
-2016-07-27 21:00:00,17891.0
-2016-07-27 22:00:00,17521.0
-2016-07-27 23:00:00,16789.0
-2016-07-28 00:00:00,15453.0
-2016-07-26 01:00:00,13474.0
-2016-07-26 02:00:00,12383.0
-2016-07-26 03:00:00,11600.0
-2016-07-26 04:00:00,11070.0
-2016-07-26 05:00:00,10767.0
-2016-07-26 06:00:00,10809.0
-2016-07-26 07:00:00,11280.0
-2016-07-26 08:00:00,12127.0
-2016-07-26 09:00:00,13414.0
-2016-07-26 10:00:00,14626.0
-2016-07-26 11:00:00,15704.0
-2016-07-26 12:00:00,16688.0
-2016-07-26 13:00:00,17312.0
-2016-07-26 14:00:00,17860.0
-2016-07-26 15:00:00,18352.0
-2016-07-26 16:00:00,18657.0
-2016-07-26 17:00:00,18879.0
-2016-07-26 18:00:00,18982.0
-2016-07-26 19:00:00,18865.0
-2016-07-26 20:00:00,18369.0
-2016-07-26 21:00:00,17567.0
-2016-07-26 22:00:00,16972.0
-2016-07-26 23:00:00,16288.0
-2016-07-27 00:00:00,14933.0
-2016-07-25 01:00:00,13351.0
-2016-07-25 02:00:00,12512.0
-2016-07-25 03:00:00,11822.0
-2016-07-25 04:00:00,11384.0
-2016-07-25 05:00:00,11143.0
-2016-07-25 06:00:00,11256.0
-2016-07-25 07:00:00,11828.0
-2016-07-25 08:00:00,12643.0
-2016-07-25 09:00:00,13963.0
-2016-07-25 10:00:00,15088.0
-2016-07-25 11:00:00,15991.0
-2016-07-25 12:00:00,16861.0
-2016-07-25 13:00:00,17473.0
-2016-07-25 14:00:00,17985.0
-2016-07-25 15:00:00,18503.0
-2016-07-25 16:00:00,18829.0
-2016-07-25 17:00:00,19026.0
-2016-07-25 18:00:00,19043.0
-2016-07-25 19:00:00,18871.0
-2016-07-25 20:00:00,18383.0
-2016-07-25 21:00:00,17561.0
-2016-07-25 22:00:00,16926.0
-2016-07-25 23:00:00,16222.0
-2016-07-26 00:00:00,14852.0
-2016-07-24 01:00:00,12881.0
-2016-07-24 02:00:00,12038.0
-2016-07-24 03:00:00,11365.0
-2016-07-24 04:00:00,10945.0
-2016-07-24 05:00:00,10644.0
-2016-07-24 06:00:00,10431.0
-2016-07-24 07:00:00,10373.0
-2016-07-24 08:00:00,10399.0
-2016-07-24 09:00:00,11058.0
-2016-07-24 10:00:00,12079.0
-2016-07-24 11:00:00,13506.0
-2016-07-24 12:00:00,15072.0
-2016-07-24 13:00:00,16335.0
-2016-07-24 14:00:00,17318.0
-2016-07-24 15:00:00,18150.0
-2016-07-24 16:00:00,18755.0
-2016-07-24 17:00:00,18895.0
-2016-07-24 18:00:00,19004.0
-2016-07-24 19:00:00,18814.0
-2016-07-24 20:00:00,17779.0
-2016-07-24 21:00:00,16443.0
-2016-07-24 22:00:00,15896.0
-2016-07-24 23:00:00,15367.0
-2016-07-25 00:00:00,14434.0
-2016-07-23 01:00:00,15479.0
-2016-07-23 02:00:00,14489.0
-2016-07-23 03:00:00,13758.0
-2016-07-23 04:00:00,13152.0
-2016-07-23 05:00:00,12735.0
-2016-07-23 06:00:00,12495.0
-2016-07-23 07:00:00,12479.0
-2016-07-23 08:00:00,12662.0
-2016-07-23 09:00:00,13667.0
-2016-07-23 10:00:00,15214.0
-2016-07-23 11:00:00,16611.0
-2016-07-23 12:00:00,17725.0
-2016-07-23 13:00:00,18420.0
-2016-07-23 14:00:00,18656.0
-2016-07-23 15:00:00,18857.0
-2016-07-23 16:00:00,18877.0
-2016-07-23 17:00:00,18850.0
-2016-07-23 18:00:00,18554.0
-2016-07-23 19:00:00,17977.0
-2016-07-23 20:00:00,17058.0
-2016-07-23 21:00:00,15956.0
-2016-07-23 22:00:00,15375.0
-2016-07-23 23:00:00,14763.0
-2016-07-24 00:00:00,13822.0
-2016-07-22 01:00:00,14177.0
-2016-07-22 02:00:00,13089.0
-2016-07-22 03:00:00,12396.0
-2016-07-22 04:00:00,11945.0
-2016-07-22 05:00:00,11578.0
-2016-07-22 06:00:00,11575.0
-2016-07-22 07:00:00,11979.0
-2016-07-22 08:00:00,12657.0
-2016-07-22 09:00:00,13735.0
-2016-07-22 10:00:00,14632.0
-2016-07-22 11:00:00,15495.0
-2016-07-22 12:00:00,16511.0
-2016-07-22 13:00:00,17336.0
-2016-07-22 14:00:00,18004.0
-2016-07-22 15:00:00,18610.0
-2016-07-22 16:00:00,19134.0
-2016-07-22 17:00:00,19555.0
-2016-07-22 18:00:00,19929.0
-2016-07-22 19:00:00,19972.0
-2016-07-22 20:00:00,19641.0
-2016-07-22 21:00:00,18905.0
-2016-07-22 22:00:00,18423.0
-2016-07-22 23:00:00,17879.0
-2016-07-23 00:00:00,16710.0
-2016-07-21 01:00:00,14399.0
-2016-07-21 02:00:00,13340.0
-2016-07-21 03:00:00,12666.0
-2016-07-21 04:00:00,12122.0
-2016-07-21 05:00:00,11844.0
-2016-07-21 06:00:00,11929.0
-2016-07-21 07:00:00,12488.0
-2016-07-21 08:00:00,13454.0
-2016-07-21 09:00:00,14786.0
-2016-07-21 10:00:00,16209.0
-2016-07-21 11:00:00,17599.0
-2016-07-21 12:00:00,18768.0
-2016-07-21 13:00:00,19616.0
-2016-07-21 14:00:00,19788.0
-2016-07-21 15:00:00,19308.0
-2016-07-21 16:00:00,19100.0
-2016-07-21 17:00:00,19340.0
-2016-07-21 18:00:00,19871.0
-2016-07-21 19:00:00,20296.0
-2016-07-21 20:00:00,20104.0
-2016-07-21 21:00:00,19458.0
-2016-07-21 22:00:00,18828.0
-2016-07-21 23:00:00,17130.0
-2016-07-22 00:00:00,15578.0
-2016-07-20 01:00:00,13462.0
-2016-07-20 02:00:00,12389.0
-2016-07-20 03:00:00,11616.0
-2016-07-20 04:00:00,11093.0
-2016-07-20 05:00:00,10815.0
-2016-07-20 06:00:00,10863.0
-2016-07-20 07:00:00,11329.0
-2016-07-20 08:00:00,12281.0
-2016-07-20 09:00:00,13644.0
-2016-07-20 10:00:00,14996.0
-2016-07-20 11:00:00,16259.0
-2016-07-20 12:00:00,17401.0
-2016-07-20 13:00:00,18306.0
-2016-07-20 14:00:00,18914.0
-2016-07-20 15:00:00,18788.0
-2016-07-20 16:00:00,18303.0
-2016-07-20 17:00:00,18314.0
-2016-07-20 18:00:00,18595.0
-2016-07-20 19:00:00,18713.0
-2016-07-20 20:00:00,18574.0
-2016-07-20 21:00:00,17979.0
-2016-07-20 22:00:00,17402.0
-2016-07-20 23:00:00,16820.0
-2016-07-21 00:00:00,15657.0
-2016-07-19 01:00:00,12861.0
-2016-07-19 02:00:00,11815.0
-2016-07-19 03:00:00,11068.0
-2016-07-19 04:00:00,10585.0
-2016-07-19 05:00:00,10325.0
-2016-07-19 06:00:00,10376.0
-2016-07-19 07:00:00,10830.0
-2016-07-19 08:00:00,11779.0
-2016-07-19 09:00:00,13097.0
-2016-07-19 10:00:00,14303.0
-2016-07-19 11:00:00,15401.0
-2016-07-19 12:00:00,16453.0
-2016-07-19 13:00:00,17277.0
-2016-07-19 14:00:00,17964.0
-2016-07-19 15:00:00,18569.0
-2016-07-19 16:00:00,18904.0
-2016-07-19 17:00:00,19029.0
-2016-07-19 18:00:00,18873.0
-2016-07-19 19:00:00,18494.0
-2016-07-19 20:00:00,17811.0
-2016-07-19 21:00:00,17039.0
-2016-07-19 22:00:00,16584.0
-2016-07-19 23:00:00,16067.0
-2016-07-20 00:00:00,14856.0
-2016-07-18 01:00:00,12784.0
-2016-07-18 02:00:00,11922.0
-2016-07-18 03:00:00,11321.0
-2016-07-18 04:00:00,10810.0
-2016-07-18 05:00:00,10544.0
-2016-07-18 06:00:00,10600.0
-2016-07-18 07:00:00,11095.0
-2016-07-18 08:00:00,12057.0
-2016-07-18 09:00:00,13362.0
-2016-07-18 10:00:00,14420.0
-2016-07-18 11:00:00,15139.0
-2016-07-18 12:00:00,15618.0
-2016-07-18 13:00:00,15807.0
-2016-07-18 14:00:00,16220.0
-2016-07-18 15:00:00,16785.0
-2016-07-18 16:00:00,17261.0
-2016-07-18 17:00:00,17617.0
-2016-07-18 18:00:00,17934.0
-2016-07-18 19:00:00,17907.0
-2016-07-18 20:00:00,17572.0
-2016-07-18 21:00:00,16834.0
-2016-07-18 22:00:00,16135.0
-2016-07-18 23:00:00,15501.0
-2016-07-19 00:00:00,14194.0
-2016-07-17 01:00:00,10341.0
-2016-07-17 02:00:00,9660.0
-2016-07-17 03:00:00,9137.0
-2016-07-17 04:00:00,8748.0
-2016-07-17 05:00:00,8610.0
-2016-07-17 06:00:00,8501.0
-2016-07-17 07:00:00,8456.0
-2016-07-17 08:00:00,8473.0
-2016-07-17 09:00:00,8891.0
-2016-07-17 10:00:00,9466.0
-2016-07-17 11:00:00,9974.0
-2016-07-17 12:00:00,10447.0
-2016-07-17 13:00:00,11102.0
-2016-07-17 14:00:00,11859.0
-2016-07-17 15:00:00,12591.0
-2016-07-17 16:00:00,13260.0
-2016-07-17 17:00:00,13848.0
-2016-07-17 18:00:00,14247.0
-2016-07-17 19:00:00,14507.0
-2016-07-17 20:00:00,14732.0
-2016-07-17 21:00:00,14681.0
-2016-07-17 22:00:00,14715.0
-2016-07-17 23:00:00,14719.0
-2016-07-18 00:00:00,13982.0
-2016-07-16 01:00:00,10263.0
-2016-07-16 02:00:00,9644.0
-2016-07-16 03:00:00,9187.0
-2016-07-16 04:00:00,8911.0
-2016-07-16 05:00:00,8708.0
-2016-07-16 06:00:00,8703.0
-2016-07-16 07:00:00,8692.0
-2016-07-16 08:00:00,8885.0
-2016-07-16 09:00:00,9504.0
-2016-07-16 10:00:00,10282.0
-2016-07-16 11:00:00,10918.0
-2016-07-16 12:00:00,11424.0
-2016-07-16 13:00:00,11767.0
-2016-07-16 14:00:00,12029.0
-2016-07-16 15:00:00,12225.0
-2016-07-16 16:00:00,12438.0
-2016-07-16 17:00:00,12765.0
-2016-07-16 18:00:00,12955.0
-2016-07-16 19:00:00,13012.0
-2016-07-16 20:00:00,12740.0
-2016-07-16 21:00:00,12274.0
-2016-07-16 22:00:00,11958.0
-2016-07-16 23:00:00,11725.0
-2016-07-17 00:00:00,11082.0
-2016-07-15 01:00:00,12712.0
-2016-07-15 02:00:00,11686.0
-2016-07-15 03:00:00,10953.0
-2016-07-15 04:00:00,10421.0
-2016-07-15 05:00:00,10045.0
-2016-07-15 06:00:00,10047.0
-2016-07-15 07:00:00,10363.0
-2016-07-15 08:00:00,11095.0
-2016-07-15 09:00:00,12111.0
-2016-07-15 10:00:00,13012.0
-2016-07-15 11:00:00,13651.0
-2016-07-15 12:00:00,14027.0
-2016-07-15 13:00:00,14153.0
-2016-07-15 14:00:00,14188.0
-2016-07-15 15:00:00,14152.0
-2016-07-15 16:00:00,13923.0
-2016-07-15 17:00:00,13571.0
-2016-07-15 18:00:00,13211.0
-2016-07-15 19:00:00,12807.0
-2016-07-15 20:00:00,12350.0
-2016-07-15 21:00:00,12005.0
-2016-07-15 22:00:00,11975.0
-2016-07-15 23:00:00,11851.0
-2016-07-16 00:00:00,11107.0
-2016-07-14 01:00:00,12479.0
-2016-07-14 02:00:00,11550.0
-2016-07-14 03:00:00,10931.0
-2016-07-14 04:00:00,10480.0
-2016-07-14 05:00:00,10261.0
-2016-07-14 06:00:00,10391.0
-2016-07-14 07:00:00,10898.0
-2016-07-14 08:00:00,11818.0
-2016-07-14 09:00:00,13033.0
-2016-07-14 10:00:00,14191.0
-2016-07-14 11:00:00,15225.0
-2016-07-14 12:00:00,16216.0
-2016-07-14 13:00:00,16862.0
-2016-07-14 14:00:00,17417.0
-2016-07-14 15:00:00,17863.0
-2016-07-14 16:00:00,18153.0
-2016-07-14 17:00:00,18281.0
-2016-07-14 18:00:00,18244.0
-2016-07-14 19:00:00,17951.0
-2016-07-14 20:00:00,17285.0
-2016-07-14 21:00:00,16296.0
-2016-07-14 22:00:00,15724.0
-2016-07-14 23:00:00,15182.0
-2016-07-15 00:00:00,13996.0
-2016-07-13 01:00:00,13940.0
-2016-07-13 02:00:00,12811.0
-2016-07-13 03:00:00,12055.0
-2016-07-13 04:00:00,11577.0
-2016-07-13 05:00:00,11259.0
-2016-07-13 06:00:00,11202.0
-2016-07-13 07:00:00,11545.0
-2016-07-13 08:00:00,12550.0
-2016-07-13 09:00:00,13987.0
-2016-07-13 10:00:00,14878.0
-2016-07-13 11:00:00,15425.0
-2016-07-13 12:00:00,16249.0
-2016-07-13 13:00:00,16979.0
-2016-07-13 14:00:00,17371.0
-2016-07-13 15:00:00,18056.0
-2016-07-13 16:00:00,18376.0
-2016-07-13 17:00:00,18421.0
-2016-07-13 18:00:00,18331.0
-2016-07-13 19:00:00,17689.0
-2016-07-13 20:00:00,17114.0
-2016-07-13 21:00:00,16336.0
-2016-07-13 22:00:00,15387.0
-2016-07-13 23:00:00,14791.0
-2016-07-14 00:00:00,13667.0
-2016-07-12 01:00:00,14964.0
-2016-07-12 02:00:00,13833.0
-2016-07-12 03:00:00,12992.0
-2016-07-12 04:00:00,12348.0
-2016-07-12 05:00:00,11976.0
-2016-07-12 06:00:00,11996.0
-2016-07-12 07:00:00,12363.0
-2016-07-12 08:00:00,13341.0
-2016-07-12 09:00:00,14468.0
-2016-07-12 10:00:00,15447.0
-2016-07-12 11:00:00,16492.0
-2016-07-12 12:00:00,17661.0
-2016-07-12 13:00:00,18604.0
-2016-07-12 14:00:00,19286.0
-2016-07-12 15:00:00,19740.0
-2016-07-12 16:00:00,19841.0
-2016-07-12 17:00:00,19712.0
-2016-07-12 18:00:00,19480.0
-2016-07-12 19:00:00,19285.0
-2016-07-12 20:00:00,18731.0
-2016-07-12 21:00:00,17956.0
-2016-07-12 22:00:00,17231.0
-2016-07-12 23:00:00,16668.0
-2016-07-13 00:00:00,15364.0
-2016-07-11 01:00:00,11678.0
-2016-07-11 02:00:00,10920.0
-2016-07-11 03:00:00,10440.0
-2016-07-11 04:00:00,10049.0
-2016-07-11 05:00:00,9940.0
-2016-07-11 06:00:00,10094.0
-2016-07-11 07:00:00,10665.0
-2016-07-11 08:00:00,11715.0
-2016-07-11 09:00:00,13182.0
-2016-07-11 10:00:00,14538.0
-2016-07-11 11:00:00,15895.0
-2016-07-11 12:00:00,17162.0
-2016-07-11 13:00:00,18190.0
-2016-07-11 14:00:00,18964.0
-2016-07-11 15:00:00,19552.0
-2016-07-11 16:00:00,19960.0
-2016-07-11 17:00:00,20154.0
-2016-07-11 18:00:00,20268.0
-2016-07-11 19:00:00,20109.0
-2016-07-11 20:00:00,19554.0
-2016-07-11 21:00:00,18859.0
-2016-07-11 22:00:00,18201.0
-2016-07-11 23:00:00,17679.0
-2016-07-12 00:00:00,16360.0
-2016-07-10 01:00:00,10680.0
-2016-07-10 02:00:00,9923.0
-2016-07-10 03:00:00,9393.0
-2016-07-10 04:00:00,8979.0
-2016-07-10 05:00:00,8751.0
-2016-07-10 06:00:00,8600.0
-2016-07-10 07:00:00,8446.0
-2016-07-10 08:00:00,8483.0
-2016-07-10 09:00:00,9170.0
-2016-07-10 10:00:00,9983.0
-2016-07-10 11:00:00,10882.0
-2016-07-10 12:00:00,11692.0
-2016-07-10 13:00:00,12432.0
-2016-07-10 14:00:00,12935.0
-2016-07-10 15:00:00,13378.0
-2016-07-10 16:00:00,13743.0
-2016-07-10 17:00:00,13899.0
-2016-07-10 18:00:00,13846.0
-2016-07-10 19:00:00,13837.0
-2016-07-10 20:00:00,13547.0
-2016-07-10 21:00:00,13270.0
-2016-07-10 22:00:00,13174.0
-2016-07-10 23:00:00,13179.0
-2016-07-11 00:00:00,12502.0
-2016-07-09 01:00:00,12217.0
-2016-07-09 02:00:00,11213.0
-2016-07-09 03:00:00,10494.0
-2016-07-09 04:00:00,10008.0
-2016-07-09 05:00:00,9703.0
-2016-07-09 06:00:00,9558.0
-2016-07-09 07:00:00,9500.0
-2016-07-09 08:00:00,9791.0
-2016-07-09 09:00:00,10537.0
-2016-07-09 10:00:00,11354.0
-2016-07-09 11:00:00,12143.0
-2016-07-09 12:00:00,12773.0
-2016-07-09 13:00:00,13205.0
-2016-07-09 14:00:00,13517.0
-2016-07-09 15:00:00,13684.0
-2016-07-09 16:00:00,13878.0
-2016-07-09 17:00:00,14023.0
-2016-07-09 18:00:00,14128.0
-2016-07-09 19:00:00,14015.0
-2016-07-09 20:00:00,13621.0
-2016-07-09 21:00:00,12968.0
-2016-07-09 22:00:00,12415.0
-2016-07-09 23:00:00,12210.0
-2016-07-10 00:00:00,11485.0
-2016-07-08 01:00:00,12400.0
-2016-07-08 02:00:00,11415.0
-2016-07-08 03:00:00,10726.0
-2016-07-08 04:00:00,10286.0
-2016-07-08 05:00:00,10088.0
-2016-07-08 06:00:00,10248.0
-2016-07-08 07:00:00,10711.0
-2016-07-08 08:00:00,11617.0
-2016-07-08 09:00:00,12885.0
-2016-07-08 10:00:00,14158.0
-2016-07-08 11:00:00,15433.0
-2016-07-08 12:00:00,16525.0
-2016-07-08 13:00:00,17222.0
-2016-07-08 14:00:00,17680.0
-2016-07-08 15:00:00,17868.0
-2016-07-08 16:00:00,17869.0
-2016-07-08 17:00:00,17884.0
-2016-07-08 18:00:00,17834.0
-2016-07-08 19:00:00,17504.0
-2016-07-08 20:00:00,16692.0
-2016-07-08 21:00:00,15802.0
-2016-07-08 22:00:00,15028.0
-2016-07-08 23:00:00,14520.0
-2016-07-09 00:00:00,13396.0
-2016-07-07 01:00:00,13474.0
-2016-07-07 02:00:00,12437.0
-2016-07-07 03:00:00,11651.0
-2016-07-07 04:00:00,11070.0
-2016-07-07 05:00:00,10756.0
-2016-07-07 06:00:00,10778.0
-2016-07-07 07:00:00,11163.0
-2016-07-07 08:00:00,12043.0
-2016-07-07 09:00:00,13150.0
-2016-07-07 10:00:00,14337.0
-2016-07-07 11:00:00,15168.0
-2016-07-07 12:00:00,15731.0
-2016-07-07 13:00:00,15936.0
-2016-07-07 14:00:00,16073.0
-2016-07-07 15:00:00,16120.0
-2016-07-07 16:00:00,16082.0
-2016-07-07 17:00:00,16103.0
-2016-07-07 18:00:00,16434.0
-2016-07-07 19:00:00,16197.0
-2016-07-07 20:00:00,15740.0
-2016-07-07 21:00:00,15287.0
-2016-07-07 22:00:00,14974.0
-2016-07-07 23:00:00,14610.0
-2016-07-08 00:00:00,13554.0
-2016-07-06 01:00:00,13476.0
-2016-07-06 02:00:00,12459.0
-2016-07-06 03:00:00,11781.0
-2016-07-06 04:00:00,11239.0
-2016-07-06 05:00:00,10635.0
-2016-07-06 06:00:00,10524.0
-2016-07-06 07:00:00,11052.0
-2016-07-06 08:00:00,11881.0
-2016-07-06 09:00:00,12529.0
-2016-07-06 10:00:00,12935.0
-2016-07-06 11:00:00,13478.0
-2016-07-06 12:00:00,14718.0
-2016-07-06 13:00:00,15638.0
-2016-07-06 14:00:00,16442.0
-2016-07-06 15:00:00,17162.0
-2016-07-06 16:00:00,17842.0
-2016-07-06 17:00:00,18348.0
-2016-07-06 18:00:00,18416.0
-2016-07-06 19:00:00,18026.0
-2016-07-06 20:00:00,17399.0
-2016-07-06 21:00:00,16823.0
-2016-07-06 22:00:00,16423.0
-2016-07-06 23:00:00,16079.0
-2016-07-07 00:00:00,14820.0
-2016-07-05 01:00:00,10430.0
-2016-07-05 02:00:00,9742.0
-2016-07-05 03:00:00,9229.0
-2016-07-05 04:00:00,8899.0
-2016-07-05 05:00:00,8816.0
-2016-07-05 06:00:00,9018.0
-2016-07-05 07:00:00,9599.0
-2016-07-05 08:00:00,10531.0
-2016-07-05 09:00:00,11712.0
-2016-07-05 10:00:00,12650.0
-2016-07-05 11:00:00,13473.0
-2016-07-05 12:00:00,14410.0
-2016-07-05 13:00:00,15094.0
-2016-07-05 14:00:00,15748.0
-2016-07-05 15:00:00,16370.0
-2016-07-05 16:00:00,16897.0
-2016-07-05 17:00:00,17403.0
-2016-07-05 18:00:00,17799.0
-2016-07-05 19:00:00,17914.0
-2016-07-05 20:00:00,17621.0
-2016-07-05 21:00:00,17047.0
-2016-07-05 22:00:00,16437.0
-2016-07-05 23:00:00,16091.0
-2016-07-06 00:00:00,14810.0
-2016-07-04 01:00:00,9522.0
-2016-07-04 02:00:00,9046.0
-2016-07-04 03:00:00,8631.0
-2016-07-04 04:00:00,8369.0
-2016-07-04 05:00:00,8189.0
-2016-07-04 06:00:00,8174.0
-2016-07-04 07:00:00,8191.0
-2016-07-04 08:00:00,8236.0
-2016-07-04 09:00:00,8476.0
-2016-07-04 10:00:00,8823.0
-2016-07-04 11:00:00,9316.0
-2016-07-04 12:00:00,9787.0
-2016-07-04 13:00:00,10298.0
-2016-07-04 14:00:00,10863.0
-2016-07-04 15:00:00,11286.0
-2016-07-04 16:00:00,11679.0
-2016-07-04 17:00:00,11860.0
-2016-07-04 18:00:00,11844.0
-2016-07-04 19:00:00,11726.0
-2016-07-04 20:00:00,11477.0
-2016-07-04 21:00:00,11288.0
-2016-07-04 22:00:00,11355.0
-2016-07-04 23:00:00,11320.0
-2016-07-05 00:00:00,10991.0
-2016-07-03 01:00:00,9258.0
-2016-07-03 02:00:00,8714.0
-2016-07-03 03:00:00,8297.0
-2016-07-03 04:00:00,8004.0
-2016-07-03 05:00:00,7762.0
-2016-07-03 06:00:00,7769.0
-2016-07-03 07:00:00,7516.0
-2016-07-03 08:00:00,7589.0
-2016-07-03 09:00:00,7913.0
-2016-07-03 10:00:00,8437.0
-2016-07-03 11:00:00,8998.0
-2016-07-03 12:00:00,9397.0
-2016-07-03 13:00:00,9854.0
-2016-07-03 14:00:00,10184.0
-2016-07-03 15:00:00,10490.0
-2016-07-03 16:00:00,10712.0
-2016-07-03 17:00:00,10892.0
-2016-07-03 18:00:00,10933.0
-2016-07-03 19:00:00,10953.0
-2016-07-03 20:00:00,10737.0
-2016-07-03 21:00:00,10408.0
-2016-07-03 22:00:00,10285.0
-2016-07-03 23:00:00,10314.0
-2016-07-04 00:00:00,10002.0
-2016-07-02 01:00:00,9647.0
-2016-07-02 02:00:00,8979.0
-2016-07-02 03:00:00,8571.0
-2016-07-02 04:00:00,8273.0
-2016-07-02 05:00:00,8105.0
-2016-07-02 06:00:00,8040.0
-2016-07-02 07:00:00,7996.0
-2016-07-02 08:00:00,8124.0
-2016-07-02 09:00:00,8504.0
-2016-07-02 10:00:00,9015.0
-2016-07-02 11:00:00,9558.0
-2016-07-02 12:00:00,9997.0
-2016-07-02 13:00:00,10299.0
-2016-07-02 14:00:00,10437.0
-2016-07-02 15:00:00,10606.0
-2016-07-02 16:00:00,10661.0
-2016-07-02 17:00:00,10784.0
-2016-07-02 18:00:00,10720.0
-2016-07-02 19:00:00,10530.0
-2016-07-02 20:00:00,10294.0
-2016-07-02 21:00:00,10147.0
-2016-07-02 22:00:00,10226.0
-2016-07-02 23:00:00,10270.0
-2016-07-03 00:00:00,9762.0
-2016-07-01 01:00:00,11152.0
-2016-07-01 02:00:00,10447.0
-2016-07-01 03:00:00,9872.0
-2016-07-01 04:00:00,9432.0
-2016-07-01 05:00:00,9187.0
-2016-07-01 06:00:00,9244.0
-2016-07-01 07:00:00,9541.0
-2016-07-01 08:00:00,10220.0
-2016-07-01 09:00:00,10982.0
-2016-07-01 10:00:00,11603.0
-2016-07-01 11:00:00,12027.0
-2016-07-01 12:00:00,12403.0
-2016-07-01 13:00:00,12650.0
-2016-07-01 14:00:00,12807.0
-2016-07-01 15:00:00,12983.0
-2016-07-01 16:00:00,13022.0
-2016-07-01 17:00:00,12989.0
-2016-07-01 18:00:00,12918.0
-2016-07-01 19:00:00,12717.0
-2016-07-01 20:00:00,12247.0
-2016-07-01 21:00:00,11667.0
-2016-07-01 22:00:00,11290.0
-2016-07-01 23:00:00,11147.0
-2016-07-02 00:00:00,10384.0
-2016-06-30 01:00:00,10406.0
-2016-06-30 02:00:00,9681.0
-2016-06-30 03:00:00,9143.0
-2016-06-30 04:00:00,8854.0
-2016-06-30 05:00:00,8692.0
-2016-06-30 06:00:00,8773.0
-2016-06-30 07:00:00,9144.0
-2016-06-30 08:00:00,10016.0
-2016-06-30 09:00:00,11090.0
-2016-06-30 10:00:00,11916.0
-2016-06-30 11:00:00,12570.0
-2016-06-30 12:00:00,13091.0
-2016-06-30 13:00:00,13390.0
-2016-06-30 14:00:00,13645.0
-2016-06-30 15:00:00,13913.0
-2016-06-30 16:00:00,14092.0
-2016-06-30 17:00:00,14041.0
-2016-06-30 18:00:00,14045.0
-2016-06-30 19:00:00,13953.0
-2016-06-30 20:00:00,13641.0
-2016-06-30 21:00:00,13197.0
-2016-06-30 22:00:00,13074.0
-2016-06-30 23:00:00,12934.0
-2016-07-01 00:00:00,12135.0
-2016-06-29 01:00:00,9949.0
-2016-06-29 02:00:00,9304.0
-2016-06-29 03:00:00,8858.0
-2016-06-29 04:00:00,8597.0
-2016-06-29 05:00:00,8465.0
-2016-06-29 06:00:00,8587.0
-2016-06-29 07:00:00,8933.0
-2016-06-29 08:00:00,9791.0
-2016-06-29 09:00:00,10783.0
-2016-06-29 10:00:00,11541.0
-2016-06-29 11:00:00,12065.0
-2016-06-29 12:00:00,12536.0
-2016-06-29 13:00:00,12881.0
-2016-06-29 14:00:00,13181.0
-2016-06-29 15:00:00,13570.0
-2016-06-29 16:00:00,13866.0
-2016-06-29 17:00:00,14016.0
-2016-06-29 18:00:00,14068.0
-2016-06-29 19:00:00,13863.0
-2016-06-29 20:00:00,13281.0
-2016-06-29 21:00:00,12881.0
-2016-06-29 22:00:00,12554.0
-2016-06-29 23:00:00,12294.0
-2016-06-30 00:00:00,11414.0
-2016-06-28 01:00:00,12393.0
-2016-06-28 02:00:00,11379.0
-2016-06-28 03:00:00,10717.0
-2016-06-28 04:00:00,10161.0
-2016-06-28 05:00:00,9851.0
-2016-06-28 06:00:00,9829.0
-2016-06-28 07:00:00,10129.0
-2016-06-28 08:00:00,10818.0
-2016-06-28 09:00:00,11729.0
-2016-06-28 10:00:00,12252.0
-2016-06-28 11:00:00,12489.0
-2016-06-28 12:00:00,12711.0
-2016-06-28 13:00:00,12719.0
-2016-06-28 14:00:00,12753.0
-2016-06-28 15:00:00,12905.0
-2016-06-28 16:00:00,13001.0
-2016-06-28 17:00:00,13019.0
-2016-06-28 18:00:00,13023.0
-2016-06-28 19:00:00,12903.0
-2016-06-28 20:00:00,12506.0
-2016-06-28 21:00:00,12016.0
-2016-06-28 22:00:00,11766.0
-2016-06-28 23:00:00,11613.0
-2016-06-29 00:00:00,10836.0
-2016-06-27 01:00:00,12780.0
-2016-06-27 02:00:00,11813.0
-2016-06-27 03:00:00,11134.0
-2016-06-27 04:00:00,10648.0
-2016-06-27 05:00:00,10510.0
-2016-06-27 06:00:00,10624.0
-2016-06-27 07:00:00,11011.0
-2016-06-27 08:00:00,12199.0
-2016-06-27 09:00:00,13621.0
-2016-06-27 10:00:00,14864.0
-2016-06-27 11:00:00,15962.0
-2016-06-27 12:00:00,16931.0
-2016-06-27 13:00:00,17692.0
-2016-06-27 14:00:00,18251.0
-2016-06-27 15:00:00,18708.0
-2016-06-27 16:00:00,18971.0
-2016-06-27 17:00:00,19069.0
-2016-06-27 18:00:00,18926.0
-2016-06-27 19:00:00,18559.0
-2016-06-27 20:00:00,17737.0
-2016-06-27 21:00:00,16713.0
-2016-06-27 22:00:00,15724.0
-2016-06-27 23:00:00,15020.0
-2016-06-28 00:00:00,13749.0
-2016-06-26 01:00:00,14312.0
-2016-06-26 02:00:00,13346.0
-2016-06-26 03:00:00,12600.0
-2016-06-26 04:00:00,11929.0
-2016-06-26 05:00:00,11539.0
-2016-06-26 06:00:00,11247.0
-2016-06-26 07:00:00,11005.0
-2016-06-26 08:00:00,10998.0
-2016-06-26 09:00:00,11334.0
-2016-06-26 10:00:00,11904.0
-2016-06-26 11:00:00,12773.0
-2016-06-26 12:00:00,13875.0
-2016-06-26 13:00:00,14672.0
-2016-06-26 14:00:00,15291.0
-2016-06-26 15:00:00,15704.0
-2016-06-26 16:00:00,16263.0
-2016-06-26 17:00:00,16720.0
-2016-06-26 18:00:00,17096.0
-2016-06-26 19:00:00,17195.0
-2016-06-26 20:00:00,16935.0
-2016-06-26 21:00:00,16177.0
-2016-06-26 22:00:00,15382.0
-2016-06-26 23:00:00,14975.0
-2016-06-27 00:00:00,13926.0
-2016-06-25 01:00:00,11740.0
-2016-06-25 02:00:00,10824.0
-2016-06-25 03:00:00,10191.0
-2016-06-25 04:00:00,9770.0
-2016-06-25 05:00:00,9511.0
-2016-06-25 06:00:00,9378.0
-2016-06-25 07:00:00,9327.0
-2016-06-25 08:00:00,9804.0
-2016-06-25 09:00:00,10814.0
-2016-06-25 10:00:00,11979.0
-2016-06-25 11:00:00,13208.0
-2016-06-25 12:00:00,14326.0
-2016-06-25 13:00:00,15254.0
-2016-06-25 14:00:00,15972.0
-2016-06-25 15:00:00,16507.0
-2016-06-25 16:00:00,17040.0
-2016-06-25 17:00:00,17499.0
-2016-06-25 18:00:00,17794.0
-2016-06-25 19:00:00,17807.0
-2016-06-25 20:00:00,17539.0
-2016-06-25 21:00:00,16994.0
-2016-06-25 22:00:00,16493.0
-2016-06-25 23:00:00,16250.0
-2016-06-26 00:00:00,15365.0
-2016-06-24 01:00:00,10756.0
-2016-06-24 02:00:00,10005.0
-2016-06-24 03:00:00,9460.0
-2016-06-24 04:00:00,9144.0
-2016-06-24 05:00:00,9032.0
-2016-06-24 06:00:00,9109.0
-2016-06-24 07:00:00,9467.0
-2016-06-24 08:00:00,10403.0
-2016-06-24 09:00:00,11492.0
-2016-06-24 10:00:00,12469.0
-2016-06-24 11:00:00,13289.0
-2016-06-24 12:00:00,13987.0
-2016-06-24 13:00:00,14603.0
-2016-06-24 14:00:00,15073.0
-2016-06-24 15:00:00,15546.0
-2016-06-24 16:00:00,15904.0
-2016-06-24 17:00:00,16184.0
-2016-06-24 18:00:00,16335.0
-2016-06-24 19:00:00,16238.0
-2016-06-24 20:00:00,15697.0
-2016-06-24 21:00:00,14944.0
-2016-06-24 22:00:00,14233.0
-2016-06-24 23:00:00,13847.0
-2016-06-25 00:00:00,12846.0
-2016-06-23 01:00:00,11486.0
-2016-06-23 02:00:00,10759.0
-2016-06-23 03:00:00,10234.0
-2016-06-23 04:00:00,9944.0
-2016-06-23 05:00:00,9795.0
-2016-06-23 06:00:00,9876.0
-2016-06-23 07:00:00,10377.0
-2016-06-23 08:00:00,11270.0
-2016-06-23 09:00:00,12141.0
-2016-06-23 10:00:00,12732.0
-2016-06-23 11:00:00,13128.0
-2016-06-23 12:00:00,13449.0
-2016-06-23 13:00:00,13712.0
-2016-06-23 14:00:00,13915.0
-2016-06-23 15:00:00,14140.0
-2016-06-23 16:00:00,14762.0
-2016-06-23 17:00:00,15154.0
-2016-06-23 18:00:00,15312.0
-2016-06-23 19:00:00,15038.0
-2016-06-23 20:00:00,14351.0
-2016-06-23 21:00:00,13564.0
-2016-06-23 22:00:00,13061.0
-2016-06-23 23:00:00,12712.0
-2016-06-24 00:00:00,11794.0
-2016-06-22 01:00:00,11981.0
-2016-06-22 02:00:00,11025.0
-2016-06-22 03:00:00,10429.0
-2016-06-22 04:00:00,10085.0
-2016-06-22 05:00:00,9905.0
-2016-06-22 06:00:00,10047.0
-2016-06-22 07:00:00,10635.0
-2016-06-22 08:00:00,11480.0
-2016-06-22 09:00:00,12189.0
-2016-06-22 10:00:00,12722.0
-2016-06-22 11:00:00,13214.0
-2016-06-22 12:00:00,13575.0
-2016-06-22 13:00:00,13612.0
-2016-06-22 14:00:00,13856.0
-2016-06-22 15:00:00,14279.0
-2016-06-22 16:00:00,14501.0
-2016-06-22 17:00:00,14462.0
-2016-06-22 18:00:00,14420.0
-2016-06-22 19:00:00,14403.0
-2016-06-22 20:00:00,14184.0
-2016-06-22 21:00:00,13999.0
-2016-06-22 22:00:00,13920.0
-2016-06-22 23:00:00,13478.0
-2016-06-23 00:00:00,12497.0
-2016-06-21 01:00:00,13275.0
-2016-06-21 02:00:00,12050.0
-2016-06-21 03:00:00,11103.0
-2016-06-21 04:00:00,10524.0
-2016-06-21 05:00:00,10119.0
-2016-06-21 06:00:00,10081.0
-2016-06-21 07:00:00,10353.0
-2016-06-21 08:00:00,11337.0
-2016-06-21 09:00:00,12497.0
-2016-06-21 10:00:00,13454.0
-2016-06-21 11:00:00,14152.0
-2016-06-21 12:00:00,14777.0
-2016-06-21 13:00:00,15194.0
-2016-06-21 14:00:00,15544.0
-2016-06-21 15:00:00,16016.0
-2016-06-21 16:00:00,16376.0
-2016-06-21 17:00:00,16727.0
-2016-06-21 18:00:00,16919.0
-2016-06-21 19:00:00,16852.0
-2016-06-21 20:00:00,16354.0
-2016-06-21 21:00:00,15715.0
-2016-06-21 22:00:00,14993.0
-2016-06-21 23:00:00,14488.0
-2016-06-22 00:00:00,13291.0
-2016-06-20 01:00:00,13284.0
-2016-06-20 02:00:00,12458.0
-2016-06-20 03:00:00,11846.0
-2016-06-20 04:00:00,11518.0
-2016-06-20 05:00:00,11343.0
-2016-06-20 06:00:00,11506.0
-2016-06-20 07:00:00,12021.0
-2016-06-20 08:00:00,13181.0
-2016-06-20 09:00:00,14804.0
-2016-06-20 10:00:00,15976.0
-2016-06-20 11:00:00,16658.0
-2016-06-20 12:00:00,17820.0
-2016-06-20 13:00:00,18698.0
-2016-06-20 14:00:00,18976.0
-2016-06-20 15:00:00,19052.0
-2016-06-20 16:00:00,19488.0
-2016-06-20 17:00:00,19898.0
-2016-06-20 18:00:00,20189.0
-2016-06-20 19:00:00,20040.0
-2016-06-20 20:00:00,19429.0
-2016-06-20 21:00:00,18483.0
-2016-06-20 22:00:00,17367.0
-2016-06-20 23:00:00,16487.0
-2016-06-21 00:00:00,14921.0
-2016-06-19 01:00:00,11338.0
-2016-06-19 02:00:00,10495.0
-2016-06-19 03:00:00,9818.0
-2016-06-19 04:00:00,9352.0
-2016-06-19 05:00:00,9059.0
-2016-06-19 06:00:00,8862.0
-2016-06-19 07:00:00,8639.0
-2016-06-19 08:00:00,8886.0
-2016-06-19 09:00:00,9647.0
-2016-06-19 10:00:00,10791.0
-2016-06-19 11:00:00,12075.0
-2016-06-19 12:00:00,13287.0
-2016-06-19 13:00:00,14190.0
-2016-06-19 14:00:00,14864.0
-2016-06-19 15:00:00,15423.0
-2016-06-19 16:00:00,15923.0
-2016-06-19 17:00:00,16291.0
-2016-06-19 18:00:00,16565.0
-2016-06-19 19:00:00,16613.0
-2016-06-19 20:00:00,16412.0
-2016-06-19 21:00:00,16004.0
-2016-06-19 22:00:00,15477.0
-2016-06-19 23:00:00,15185.0
-2016-06-20 00:00:00,14341.0
-2016-06-18 01:00:00,11133.0
-2016-06-18 02:00:00,10200.0
-2016-06-18 03:00:00,9559.0
-2016-06-18 04:00:00,9106.0
-2016-06-18 05:00:00,8855.0
-2016-06-18 06:00:00,8760.0
-2016-06-18 07:00:00,8694.0
-2016-06-18 08:00:00,9020.0
-2016-06-18 09:00:00,9859.0
-2016-06-18 10:00:00,10791.0
-2016-06-18 11:00:00,11815.0
-2016-06-18 12:00:00,12726.0
-2016-06-18 13:00:00,13549.0
-2016-06-18 14:00:00,14127.0
-2016-06-18 15:00:00,14572.0
-2016-06-18 16:00:00,14877.0
-2016-06-18 17:00:00,15155.0
-2016-06-18 18:00:00,15186.0
-2016-06-18 19:00:00,14973.0
-2016-06-18 20:00:00,14679.0
-2016-06-18 21:00:00,14081.0
-2016-06-18 22:00:00,13483.0
-2016-06-18 23:00:00,13154.0
-2016-06-19 00:00:00,12326.0
-2016-06-17 01:00:00,10481.0
-2016-06-17 02:00:00,9779.0
-2016-06-17 03:00:00,9284.0
-2016-06-17 04:00:00,8994.0
-2016-06-17 05:00:00,8852.0
-2016-06-17 06:00:00,8988.0
-2016-06-17 07:00:00,9306.0
-2016-06-17 08:00:00,10245.0
-2016-06-17 09:00:00,11373.0
-2016-06-17 10:00:00,12303.0
-2016-06-17 11:00:00,13000.0
-2016-06-17 12:00:00,13644.0
-2016-06-17 13:00:00,14127.0
-2016-06-17 14:00:00,14570.0
-2016-06-17 15:00:00,15074.0
-2016-06-17 16:00:00,15494.0
-2016-06-17 17:00:00,15844.0
-2016-06-17 18:00:00,16045.0
-2016-06-17 19:00:00,15900.0
-2016-06-17 20:00:00,15368.0
-2016-06-17 21:00:00,14498.0
-2016-06-17 22:00:00,13787.0
-2016-06-17 23:00:00,13269.0
-2016-06-18 00:00:00,12221.0
-2016-06-16 01:00:00,14745.0
-2016-06-16 02:00:00,13392.0
-2016-06-16 03:00:00,12325.0
-2016-06-16 04:00:00,11553.0
-2016-06-16 05:00:00,11021.0
-2016-06-16 06:00:00,10921.0
-2016-06-16 07:00:00,11157.0
-2016-06-16 08:00:00,12155.0
-2016-06-16 09:00:00,13206.0
-2016-06-16 10:00:00,13611.0
-2016-06-16 11:00:00,13677.0
-2016-06-16 12:00:00,13747.0
-2016-06-16 13:00:00,13887.0
-2016-06-16 14:00:00,14072.0
-2016-06-16 15:00:00,14185.0
-2016-06-16 16:00:00,13920.0
-2016-06-16 17:00:00,13619.0
-2016-06-16 18:00:00,13513.0
-2016-06-16 19:00:00,13316.0
-2016-06-16 20:00:00,12822.0
-2016-06-16 21:00:00,12416.0
-2016-06-16 22:00:00,12380.0
-2016-06-16 23:00:00,12222.0
-2016-06-17 00:00:00,11400.0
-2016-06-15 01:00:00,12932.0
-2016-06-15 02:00:00,11974.0
-2016-06-15 03:00:00,11273.0
-2016-06-15 04:00:00,10815.0
-2016-06-15 05:00:00,10444.0
-2016-06-15 06:00:00,10433.0
-2016-06-15 07:00:00,10929.0
-2016-06-15 08:00:00,11845.0
-2016-06-15 09:00:00,13161.0
-2016-06-15 10:00:00,14445.0
-2016-06-15 11:00:00,15492.0
-2016-06-15 12:00:00,16573.0
-2016-06-15 13:00:00,17439.0
-2016-06-15 14:00:00,18078.0
-2016-06-15 15:00:00,18652.0
-2016-06-15 16:00:00,19025.0
-2016-06-15 17:00:00,19375.0
-2016-06-15 18:00:00,19520.0
-2016-06-15 19:00:00,19434.0
-2016-06-15 20:00:00,18995.0
-2016-06-15 21:00:00,18319.0
-2016-06-15 22:00:00,17774.0
-2016-06-15 23:00:00,17407.0
-2016-06-16 00:00:00,16217.0
-2016-06-14 01:00:00,11599.0
-2016-06-14 02:00:00,10672.0
-2016-06-14 03:00:00,9999.0
-2016-06-14 04:00:00,9609.0
-2016-06-14 05:00:00,9358.0
-2016-06-14 06:00:00,9462.0
-2016-06-14 07:00:00,9925.0
-2016-06-14 08:00:00,10792.0
-2016-06-14 09:00:00,11892.0
-2016-06-14 10:00:00,12896.0
-2016-06-14 11:00:00,13740.0
-2016-06-14 12:00:00,14700.0
-2016-06-14 13:00:00,15615.0
-2016-06-14 14:00:00,16328.0
-2016-06-14 15:00:00,17040.0
-2016-06-14 16:00:00,17424.0
-2016-06-14 17:00:00,17573.0
-2016-06-14 18:00:00,17424.0
-2016-06-14 19:00:00,16716.0
-2016-06-14 20:00:00,16032.0
-2016-06-14 21:00:00,15629.0
-2016-06-14 22:00:00,15479.0
-2016-06-14 23:00:00,15120.0
-2016-06-15 00:00:00,14103.0
-2016-06-13 01:00:00,9057.0
-2016-06-13 02:00:00,8587.0
-2016-06-13 03:00:00,8307.0
-2016-06-13 04:00:00,8160.0
-2016-06-13 05:00:00,8073.0
-2016-06-13 06:00:00,8252.0
-2016-06-13 07:00:00,8665.0
-2016-06-13 08:00:00,9662.0
-2016-06-13 09:00:00,10719.0
-2016-06-13 10:00:00,11567.0
-2016-06-13 11:00:00,12114.0
-2016-06-13 12:00:00,12730.0
-2016-06-13 13:00:00,13205.0
-2016-06-13 14:00:00,13754.0
-2016-06-13 15:00:00,14338.0
-2016-06-13 16:00:00,14808.0
-2016-06-13 17:00:00,15381.0
-2016-06-13 18:00:00,15937.0
-2016-06-13 19:00:00,16166.0
-2016-06-13 20:00:00,15790.0
-2016-06-13 21:00:00,15131.0
-2016-06-13 22:00:00,14653.0
-2016-06-13 23:00:00,14050.0
-2016-06-14 00:00:00,12816.0
-2016-06-12 01:00:00,13993.0
-2016-06-12 02:00:00,12932.0
-2016-06-12 03:00:00,11835.0
-2016-06-12 04:00:00,10767.0
-2016-06-12 05:00:00,10049.0
-2016-06-12 06:00:00,9537.0
-2016-06-12 07:00:00,9049.0
-2016-06-12 08:00:00,8973.0
-2016-06-12 09:00:00,9394.0
-2016-06-12 10:00:00,9888.0
-2016-06-12 11:00:00,10312.0
-2016-06-12 12:00:00,10417.0
-2016-06-12 13:00:00,10393.0
-2016-06-12 14:00:00,10394.0
-2016-06-12 15:00:00,10400.0
-2016-06-12 16:00:00,10419.0
-2016-06-12 17:00:00,10514.0
-2016-06-12 18:00:00,10675.0
-2016-06-12 19:00:00,10665.0
-2016-06-12 20:00:00,10468.0
-2016-06-12 21:00:00,10198.0
-2016-06-12 22:00:00,10134.0
-2016-06-12 23:00:00,10165.0
-2016-06-13 00:00:00,9635.0
-2016-06-11 01:00:00,13518.0
-2016-06-11 02:00:00,12318.0
-2016-06-11 03:00:00,11388.0
-2016-06-11 04:00:00,10752.0
-2016-06-11 05:00:00,10438.0
-2016-06-11 06:00:00,10247.0
-2016-06-11 07:00:00,10180.0
-2016-06-11 08:00:00,10612.0
-2016-06-11 09:00:00,11756.0
-2016-06-11 10:00:00,13077.0
-2016-06-11 11:00:00,14420.0
-2016-06-11 12:00:00,15559.0
-2016-06-11 13:00:00,16381.0
-2016-06-11 14:00:00,16885.0
-2016-06-11 15:00:00,17251.0
-2016-06-11 16:00:00,17496.0
-2016-06-11 17:00:00,17722.0
-2016-06-11 18:00:00,17861.0
-2016-06-11 19:00:00,17760.0
-2016-06-11 20:00:00,17445.0
-2016-06-11 21:00:00,16931.0
-2016-06-11 22:00:00,16456.0
-2016-06-11 23:00:00,16136.0
-2016-06-12 00:00:00,15129.0
-2016-06-10 01:00:00,9922.0
-2016-06-10 02:00:00,9340.0
-2016-06-10 03:00:00,8912.0
-2016-06-10 04:00:00,8676.0
-2016-06-10 05:00:00,8601.0
-2016-06-10 06:00:00,8747.0
-2016-06-10 07:00:00,9206.0
-2016-06-10 08:00:00,10068.0
-2016-06-10 09:00:00,11089.0
-2016-06-10 10:00:00,12139.0
-2016-06-10 11:00:00,13097.0
-2016-06-10 12:00:00,14071.0
-2016-06-10 13:00:00,14938.0
-2016-06-10 14:00:00,15693.0
-2016-06-10 15:00:00,16409.0
-2016-06-10 16:00:00,16977.0
-2016-06-10 17:00:00,17412.0
-2016-06-10 18:00:00,17744.0
-2016-06-10 19:00:00,17790.0
-2016-06-10 20:00:00,17437.0
-2016-06-10 21:00:00,16796.0
-2016-06-10 22:00:00,16281.0
-2016-06-10 23:00:00,15731.0
-2016-06-11 00:00:00,14690.0
-2016-06-09 01:00:00,9336.0
-2016-06-09 02:00:00,8734.0
-2016-06-09 03:00:00,8369.0
-2016-06-09 04:00:00,8126.0
-2016-06-09 05:00:00,8059.0
-2016-06-09 06:00:00,8213.0
-2016-06-09 07:00:00,8588.0
-2016-06-09 08:00:00,9432.0
-2016-06-09 09:00:00,10296.0
-2016-06-09 10:00:00,10870.0
-2016-06-09 11:00:00,11249.0
-2016-06-09 12:00:00,11564.0
-2016-06-09 13:00:00,11762.0
-2016-06-09 14:00:00,11862.0
-2016-06-09 15:00:00,11936.0
-2016-06-09 16:00:00,11868.0
-2016-06-09 17:00:00,11766.0
-2016-06-09 18:00:00,11704.0
-2016-06-09 19:00:00,11617.0
-2016-06-09 20:00:00,11454.0
-2016-06-09 21:00:00,11378.0
-2016-06-09 22:00:00,11621.0
-2016-06-09 23:00:00,11491.0
-2016-06-10 00:00:00,10761.0
-2016-06-08 01:00:00,9272.0
-2016-06-08 02:00:00,8680.0
-2016-06-08 03:00:00,8298.0
-2016-06-08 04:00:00,8077.0
-2016-06-08 05:00:00,7998.0
-2016-06-08 06:00:00,8147.0
-2016-06-08 07:00:00,8464.0
-2016-06-08 08:00:00,9343.0
-2016-06-08 09:00:00,10279.0
-2016-06-08 10:00:00,10908.0
-2016-06-08 11:00:00,11305.0
-2016-06-08 12:00:00,11649.0
-2016-06-08 13:00:00,11853.0
-2016-06-08 14:00:00,11994.0
-2016-06-08 15:00:00,12170.0
-2016-06-08 16:00:00,12207.0
-2016-06-08 17:00:00,12224.0
-2016-06-08 18:00:00,12214.0
-2016-06-08 19:00:00,12106.0
-2016-06-08 20:00:00,11703.0
-2016-06-08 21:00:00,11278.0
-2016-06-08 22:00:00,11157.0
-2016-06-08 23:00:00,10954.0
-2016-06-09 00:00:00,10146.0
-2016-06-07 01:00:00,10232.0
-2016-06-07 02:00:00,9446.0
-2016-06-07 03:00:00,8964.0
-2016-06-07 04:00:00,8642.0
-2016-06-07 05:00:00,8508.0
-2016-06-07 06:00:00,8618.0
-2016-06-07 07:00:00,8946.0
-2016-06-07 08:00:00,9765.0
-2016-06-07 09:00:00,10580.0
-2016-06-07 10:00:00,11104.0
-2016-06-07 11:00:00,11416.0
-2016-06-07 12:00:00,11668.0
-2016-06-07 13:00:00,11828.0
-2016-06-07 14:00:00,11943.0
-2016-06-07 15:00:00,12057.0
-2016-06-07 16:00:00,11998.0
-2016-06-07 17:00:00,11833.0
-2016-06-07 18:00:00,11670.0
-2016-06-07 19:00:00,11456.0
-2016-06-07 20:00:00,11097.0
-2016-06-07 21:00:00,10898.0
-2016-06-07 22:00:00,10953.0
-2016-06-07 23:00:00,10849.0
-2016-06-08 00:00:00,10076.0
-2016-06-06 01:00:00,10054.0
-2016-06-06 02:00:00,9391.0
-2016-06-06 03:00:00,8935.0
-2016-06-06 04:00:00,8650.0
-2016-06-06 05:00:00,8521.0
-2016-06-06 06:00:00,8683.0
-2016-06-06 07:00:00,9107.0
-2016-06-06 08:00:00,10201.0
-2016-06-06 09:00:00,11257.0
-2016-06-06 10:00:00,12193.0
-2016-06-06 11:00:00,12899.0
-2016-06-06 12:00:00,13517.0
-2016-06-06 13:00:00,13999.0
-2016-06-06 14:00:00,14216.0
-2016-06-06 15:00:00,14432.0
-2016-06-06 16:00:00,14523.0
-2016-06-06 17:00:00,14559.0
-2016-06-06 18:00:00,14474.0
-2016-06-06 19:00:00,14201.0
-2016-06-06 20:00:00,13584.0
-2016-06-06 21:00:00,12915.0
-2016-06-06 22:00:00,12611.0
-2016-06-06 23:00:00,12279.0
-2016-06-07 00:00:00,11343.0
-2016-06-05 01:00:00,9838.0
-2016-06-05 02:00:00,9254.0
-2016-06-05 03:00:00,8822.0
-2016-06-05 04:00:00,8538.0
-2016-06-05 05:00:00,8329.0
-2016-06-05 06:00:00,8262.0
-2016-06-05 07:00:00,8062.0
-2016-06-05 08:00:00,8177.0
-2016-06-05 09:00:00,8551.0
-2016-06-05 10:00:00,8998.0
-2016-06-05 11:00:00,9435.0
-2016-06-05 12:00:00,9911.0
-2016-06-05 13:00:00,10234.0
-2016-06-05 14:00:00,10544.0
-2016-06-05 15:00:00,10813.0
-2016-06-05 16:00:00,11116.0
-2016-06-05 17:00:00,11370.0
-2016-06-05 18:00:00,11697.0
-2016-06-05 19:00:00,11933.0
-2016-06-05 20:00:00,11889.0
-2016-06-05 21:00:00,11646.0
-2016-06-05 22:00:00,11700.0
-2016-06-05 23:00:00,11666.0
-2016-06-06 00:00:00,10923.0
-2016-06-04 01:00:00,11251.0
-2016-06-04 02:00:00,10355.0
-2016-06-04 03:00:00,9776.0
-2016-06-04 04:00:00,9298.0
-2016-06-04 05:00:00,9032.0
-2016-06-04 06:00:00,8932.0
-2016-06-04 07:00:00,8954.0
-2016-06-04 08:00:00,9202.0
-2016-06-04 09:00:00,9974.0
-2016-06-04 10:00:00,10634.0
-2016-06-04 11:00:00,11169.0
-2016-06-04 12:00:00,11378.0
-2016-06-04 13:00:00,11508.0
-2016-06-04 14:00:00,11419.0
-2016-06-04 15:00:00,11298.0
-2016-06-04 16:00:00,11114.0
-2016-06-04 17:00:00,11078.0
-2016-06-04 18:00:00,11203.0
-2016-06-04 19:00:00,11313.0
-2016-06-04 20:00:00,11235.0
-2016-06-04 21:00:00,11120.0
-2016-06-04 22:00:00,11177.0
-2016-06-04 23:00:00,11157.0
-2016-06-05 00:00:00,10598.0
-2016-06-03 01:00:00,10490.0
-2016-06-03 02:00:00,9656.0
-2016-06-03 03:00:00,9133.0
-2016-06-03 04:00:00,8786.0
-2016-06-03 05:00:00,8625.0
-2016-06-03 06:00:00,8747.0
-2016-06-03 07:00:00,9035.0
-2016-06-03 08:00:00,9992.0
-2016-06-03 09:00:00,11034.0
-2016-06-03 10:00:00,11852.0
-2016-06-03 11:00:00,12482.0
-2016-06-03 12:00:00,13027.0
-2016-06-03 13:00:00,13484.0
-2016-06-03 14:00:00,13894.0
-2016-06-03 15:00:00,14437.0
-2016-06-03 16:00:00,14818.0
-2016-06-03 17:00:00,15169.0
-2016-06-03 18:00:00,15395.0
-2016-06-03 19:00:00,15252.0
-2016-06-03 20:00:00,14670.0
-2016-06-03 21:00:00,13954.0
-2016-06-03 22:00:00,13642.0
-2016-06-03 23:00:00,13290.0
-2016-06-04 00:00:00,12300.0
-2016-06-02 01:00:00,10884.0
-2016-06-02 02:00:00,9999.0
-2016-06-02 03:00:00,9387.0
-2016-06-02 04:00:00,8970.0
-2016-06-02 05:00:00,8809.0
-2016-06-02 06:00:00,8913.0
-2016-06-02 07:00:00,9271.0
-2016-06-02 08:00:00,10212.0
-2016-06-02 09:00:00,11304.0
-2016-06-02 10:00:00,12103.0
-2016-06-02 11:00:00,12654.0
-2016-06-02 12:00:00,13121.0
-2016-06-02 13:00:00,13450.0
-2016-06-02 14:00:00,13720.0
-2016-06-02 15:00:00,14152.0
-2016-06-02 16:00:00,14438.0
-2016-06-02 17:00:00,14661.0
-2016-06-02 18:00:00,14826.0
-2016-06-02 19:00:00,14713.0
-2016-06-02 20:00:00,14228.0
-2016-06-02 21:00:00,13565.0
-2016-06-02 22:00:00,13109.0
-2016-06-02 23:00:00,12668.0
-2016-06-03 00:00:00,11553.0
-2016-06-01 01:00:00,10301.0
-2016-06-01 02:00:00,9651.0
-2016-06-01 03:00:00,9220.0
-2016-06-01 04:00:00,8981.0
-2016-06-01 05:00:00,8869.0
-2016-06-01 06:00:00,9042.0
-2016-06-01 07:00:00,9566.0
-2016-06-01 08:00:00,10527.0
-2016-06-01 09:00:00,11356.0
-2016-06-01 10:00:00,11825.0
-2016-06-01 11:00:00,12111.0
-2016-06-01 12:00:00,12451.0
-2016-06-01 13:00:00,12827.0
-2016-06-01 14:00:00,13341.0
-2016-06-01 15:00:00,13780.0
-2016-06-01 16:00:00,14164.0
-2016-06-01 17:00:00,14488.0
-2016-06-01 18:00:00,14766.0
-2016-06-01 19:00:00,14772.0
-2016-06-01 20:00:00,14423.0
-2016-06-01 21:00:00,13933.0
-2016-06-01 22:00:00,13553.0
-2016-06-01 23:00:00,13149.0
-2016-06-02 00:00:00,12094.0
-2016-05-31 01:00:00,10556.0
-2016-05-31 02:00:00,9739.0
-2016-05-31 03:00:00,9249.0
-2016-05-31 04:00:00,8900.0
-2016-05-31 05:00:00,8784.0
-2016-05-31 06:00:00,8950.0
-2016-05-31 07:00:00,9405.0
-2016-05-31 08:00:00,10511.0
-2016-05-31 09:00:00,11738.0
-2016-05-31 10:00:00,12605.0
-2016-05-31 11:00:00,13301.0
-2016-05-31 12:00:00,14143.0
-2016-05-31 13:00:00,14740.0
-2016-05-31 14:00:00,15244.0
-2016-05-31 15:00:00,15473.0
-2016-05-31 16:00:00,15205.0
-2016-05-31 17:00:00,14366.0
-2016-05-31 18:00:00,13636.0
-2016-05-31 19:00:00,13214.0
-2016-05-31 20:00:00,12694.0
-2016-05-31 21:00:00,12446.0
-2016-05-31 22:00:00,12508.0
-2016-05-31 23:00:00,12157.0
-2016-06-01 00:00:00,11259.0
-2016-05-30 01:00:00,10082.0
-2016-05-30 02:00:00,9374.0
-2016-05-30 03:00:00,8874.0
-2016-05-30 04:00:00,8514.0
-2016-05-30 05:00:00,8314.0
-2016-05-30 06:00:00,8263.0
-2016-05-30 07:00:00,8181.0
-2016-05-30 08:00:00,8424.0
-2016-05-30 09:00:00,9071.0
-2016-05-30 10:00:00,9902.0
-2016-05-30 11:00:00,10817.0
-2016-05-30 12:00:00,11699.0
-2016-05-30 13:00:00,12377.0
-2016-05-30 14:00:00,12875.0
-2016-05-30 15:00:00,13239.0
-2016-05-30 16:00:00,13544.0
-2016-05-30 17:00:00,13859.0
-2016-05-30 18:00:00,14061.0
-2016-05-30 19:00:00,14096.0
-2016-05-30 20:00:00,13796.0
-2016-05-30 21:00:00,13233.0
-2016-05-30 22:00:00,12980.0
-2016-05-30 23:00:00,12578.0
-2016-05-31 00:00:00,11582.0
-2016-05-29 01:00:00,10595.0
-2016-05-29 02:00:00,9835.0
-2016-05-29 03:00:00,9203.0
-2016-05-29 04:00:00,8804.0
-2016-05-29 05:00:00,8575.0
-2016-05-29 06:00:00,8418.0
-2016-05-29 07:00:00,8258.0
-2016-05-29 08:00:00,8415.0
-2016-05-29 09:00:00,9092.0
-2016-05-29 10:00:00,9921.0
-2016-05-29 11:00:00,10698.0
-2016-05-29 12:00:00,11238.0
-2016-05-29 13:00:00,11493.0
-2016-05-29 14:00:00,11808.0
-2016-05-29 15:00:00,12019.0
-2016-05-29 16:00:00,12298.0
-2016-05-29 17:00:00,12503.0
-2016-05-29 18:00:00,12648.0
-2016-05-29 19:00:00,12653.0
-2016-05-29 20:00:00,12421.0
-2016-05-29 21:00:00,11898.0
-2016-05-29 22:00:00,11676.0
-2016-05-29 23:00:00,11509.0
-2016-05-30 00:00:00,10868.0
-2016-05-28 01:00:00,11108.0
-2016-05-28 02:00:00,10268.0
-2016-05-28 03:00:00,9790.0
-2016-05-28 04:00:00,9390.0
-2016-05-28 05:00:00,9183.0
-2016-05-28 06:00:00,9139.0
-2016-05-28 07:00:00,9183.0
-2016-05-28 08:00:00,9369.0
-2016-05-28 09:00:00,9946.0
-2016-05-28 10:00:00,10700.0
-2016-05-28 11:00:00,11436.0
-2016-05-28 12:00:00,12049.0
-2016-05-28 13:00:00,12275.0
-2016-05-28 14:00:00,12309.0
-2016-05-28 15:00:00,12386.0
-2016-05-28 16:00:00,12751.0
-2016-05-28 17:00:00,13180.0
-2016-05-28 18:00:00,13534.0
-2016-05-28 19:00:00,13657.0
-2016-05-28 20:00:00,13440.0
-2016-05-28 21:00:00,12946.0
-2016-05-28 22:00:00,12786.0
-2016-05-28 23:00:00,12495.0
-2016-05-29 00:00:00,11591.0
-2016-05-27 01:00:00,12095.0
-2016-05-27 02:00:00,11213.0
-2016-05-27 03:00:00,10586.0
-2016-05-27 04:00:00,10134.0
-2016-05-27 05:00:00,9855.0
-2016-05-27 06:00:00,9879.0
-2016-05-27 07:00:00,10279.0
-2016-05-27 08:00:00,11178.0
-2016-05-27 09:00:00,12228.0
-2016-05-27 10:00:00,12956.0
-2016-05-27 11:00:00,13465.0
-2016-05-27 12:00:00,14085.0
-2016-05-27 13:00:00,14617.0
-2016-05-27 14:00:00,15179.0
-2016-05-27 15:00:00,15414.0
-2016-05-27 16:00:00,15353.0
-2016-05-27 17:00:00,14905.0
-2016-05-27 18:00:00,14726.0
-2016-05-27 19:00:00,14356.0
-2016-05-27 20:00:00,13924.0
-2016-05-27 21:00:00,13550.0
-2016-05-27 22:00:00,13484.0
-2016-05-27 23:00:00,13085.0
-2016-05-28 00:00:00,12162.0
-2016-05-26 01:00:00,11032.0
-2016-05-26 02:00:00,10236.0
-2016-05-26 03:00:00,9759.0
-2016-05-26 04:00:00,9423.0
-2016-05-26 05:00:00,9296.0
-2016-05-26 06:00:00,9470.0
-2016-05-26 07:00:00,9951.0
-2016-05-26 08:00:00,11033.0
-2016-05-26 09:00:00,12144.0
-2016-05-26 10:00:00,12811.0
-2016-05-26 11:00:00,13217.0
-2016-05-26 12:00:00,13528.0
-2016-05-26 13:00:00,13875.0
-2016-05-26 14:00:00,14355.0
-2016-05-26 15:00:00,14903.0
-2016-05-26 16:00:00,15278.0
-2016-05-26 17:00:00,15661.0
-2016-05-26 18:00:00,16013.0
-2016-05-26 19:00:00,16044.0
-2016-05-26 20:00:00,15669.0
-2016-05-26 21:00:00,15094.0
-2016-05-26 22:00:00,14930.0
-2016-05-26 23:00:00,14416.0
-2016-05-27 00:00:00,13271.0
-2016-05-25 01:00:00,11488.0
-2016-05-25 02:00:00,10673.0
-2016-05-25 03:00:00,10145.0
-2016-05-25 04:00:00,9732.0
-2016-05-25 05:00:00,9483.0
-2016-05-25 06:00:00,9543.0
-2016-05-25 07:00:00,9919.0
-2016-05-25 08:00:00,10954.0
-2016-05-25 09:00:00,12164.0
-2016-05-25 10:00:00,13068.0
-2016-05-25 11:00:00,13821.0
-2016-05-25 12:00:00,14500.0
-2016-05-25 13:00:00,15041.0
-2016-05-25 14:00:00,15467.0
-2016-05-25 15:00:00,15951.0
-2016-05-25 16:00:00,16228.0
-2016-05-25 17:00:00,16396.0
-2016-05-25 18:00:00,15960.0
-2016-05-25 19:00:00,15167.0
-2016-05-25 20:00:00,14468.0
-2016-05-25 21:00:00,13889.0
-2016-05-25 22:00:00,13685.0
-2016-05-25 23:00:00,13143.0
-2016-05-26 00:00:00,12138.0
-2016-05-24 01:00:00,9769.0
-2016-05-24 02:00:00,9101.0
-2016-05-24 03:00:00,8696.0
-2016-05-24 04:00:00,8413.0
-2016-05-24 05:00:00,8294.0
-2016-05-24 06:00:00,8442.0
-2016-05-24 07:00:00,8793.0
-2016-05-24 08:00:00,9738.0
-2016-05-24 09:00:00,10686.0
-2016-05-24 10:00:00,11433.0
-2016-05-24 11:00:00,12070.0
-2016-05-24 12:00:00,12664.0
-2016-05-24 13:00:00,13069.0
-2016-05-24 14:00:00,13415.0
-2016-05-24 15:00:00,13785.0
-2016-05-24 16:00:00,14051.0
-2016-05-24 17:00:00,14248.0
-2016-05-24 18:00:00,14457.0
-2016-05-24 19:00:00,14442.0
-2016-05-24 20:00:00,14107.0
-2016-05-24 21:00:00,13783.0
-2016-05-24 22:00:00,13853.0
-2016-05-24 23:00:00,13537.0
-2016-05-25 00:00:00,12558.0
-2016-05-23 01:00:00,8625.0
-2016-05-23 02:00:00,8116.0
-2016-05-23 03:00:00,7835.0
-2016-05-23 04:00:00,7644.0
-2016-05-23 05:00:00,7643.0
-2016-05-23 06:00:00,7845.0
-2016-05-23 07:00:00,8363.0
-2016-05-23 08:00:00,9266.0
-2016-05-23 09:00:00,10243.0
-2016-05-23 10:00:00,10805.0
-2016-05-23 11:00:00,11273.0
-2016-05-23 12:00:00,11672.0
-2016-05-23 13:00:00,11919.0
-2016-05-23 14:00:00,12142.0
-2016-05-23 15:00:00,12401.0
-2016-05-23 16:00:00,12553.0
-2016-05-23 17:00:00,12692.0
-2016-05-23 18:00:00,12763.0
-2016-05-23 19:00:00,12662.0
-2016-05-23 20:00:00,12278.0
-2016-05-23 21:00:00,11919.0
-2016-05-23 22:00:00,11953.0
-2016-05-23 23:00:00,11562.0
-2016-05-24 00:00:00,10687.0
-2016-05-22 01:00:00,8510.0
-2016-05-22 02:00:00,8041.0
-2016-05-22 03:00:00,7722.0
-2016-05-22 04:00:00,7534.0
-2016-05-22 05:00:00,7416.0
-2016-05-22 06:00:00,7415.0
-2016-05-22 07:00:00,7290.0
-2016-05-22 08:00:00,7304.0
-2016-05-22 09:00:00,7764.0
-2016-05-22 10:00:00,8262.0
-2016-05-22 11:00:00,8647.0
-2016-05-22 12:00:00,9050.0
-2016-05-22 13:00:00,9263.0
-2016-05-22 14:00:00,9449.0
-2016-05-22 15:00:00,9546.0
-2016-05-22 16:00:00,9674.0
-2016-05-22 17:00:00,9774.0
-2016-05-22 18:00:00,9881.0
-2016-05-22 19:00:00,9966.0
-2016-05-22 20:00:00,9876.0
-2016-05-22 21:00:00,9815.0
-2016-05-22 22:00:00,10040.0
-2016-05-22 23:00:00,9955.0
-2016-05-23 00:00:00,9288.0
-2016-05-21 01:00:00,8826.0
-2016-05-21 02:00:00,8312.0
-2016-05-21 03:00:00,8013.0
-2016-05-21 04:00:00,7796.0
-2016-05-21 05:00:00,7693.0
-2016-05-21 06:00:00,7749.0
-2016-05-21 07:00:00,7836.0
-2016-05-21 08:00:00,8014.0
-2016-05-21 09:00:00,8485.0
-2016-05-21 10:00:00,8989.0
-2016-05-21 11:00:00,9314.0
-2016-05-21 12:00:00,9546.0
-2016-05-21 13:00:00,9632.0
-2016-05-21 14:00:00,9629.0
-2016-05-21 15:00:00,9625.0
-2016-05-21 16:00:00,9593.0
-2016-05-21 17:00:00,9618.0
-2016-05-21 18:00:00,9607.0
-2016-05-21 19:00:00,9599.0
-2016-05-21 20:00:00,9468.0
-2016-05-21 21:00:00,9417.0
-2016-05-21 22:00:00,9661.0
-2016-05-21 23:00:00,9622.0
-2016-05-22 00:00:00,9105.0
-2016-05-20 01:00:00,8900.0
-2016-05-20 02:00:00,8410.0
-2016-05-20 03:00:00,8114.0
-2016-05-20 04:00:00,7942.0
-2016-05-20 05:00:00,7866.0
-2016-05-20 06:00:00,8051.0
-2016-05-20 07:00:00,8514.0
-2016-05-20 08:00:00,9321.0
-2016-05-20 09:00:00,10162.0
-2016-05-20 10:00:00,10567.0
-2016-05-20 11:00:00,10820.0
-2016-05-20 12:00:00,11034.0
-2016-05-20 13:00:00,11077.0
-2016-05-20 14:00:00,11077.0
-2016-05-20 15:00:00,11117.0
-2016-05-20 16:00:00,10973.0
-2016-05-20 17:00:00,10780.0
-2016-05-20 18:00:00,10611.0
-2016-05-20 19:00:00,10402.0
-2016-05-20 20:00:00,10185.0
-2016-05-20 21:00:00,10130.0
-2016-05-20 22:00:00,10412.0
-2016-05-20 23:00:00,10167.0
-2016-05-21 00:00:00,9513.0
-2016-05-19 01:00:00,8926.0
-2016-05-19 02:00:00,8441.0
-2016-05-19 03:00:00,8188.0
-2016-05-19 04:00:00,8026.0
-2016-05-19 05:00:00,8001.0
-2016-05-19 06:00:00,8247.0
-2016-05-19 07:00:00,8729.0
-2016-05-19 08:00:00,9569.0
-2016-05-19 09:00:00,10285.0
-2016-05-19 10:00:00,10636.0
-2016-05-19 11:00:00,10878.0
-2016-05-19 12:00:00,11085.0
-2016-05-19 13:00:00,11184.0
-2016-05-19 14:00:00,11210.0
-2016-05-19 15:00:00,11278.0
-2016-05-19 16:00:00,11233.0
-2016-05-19 17:00:00,11119.0
-2016-05-19 18:00:00,10936.0
-2016-05-19 19:00:00,10779.0
-2016-05-19 20:00:00,10554.0
-2016-05-19 21:00:00,10384.0
-2016-05-19 22:00:00,10643.0
-2016-05-19 23:00:00,10421.0
-2016-05-20 00:00:00,9655.0
-2016-05-18 01:00:00,8924.0
-2016-05-18 02:00:00,8484.0
-2016-05-18 03:00:00,8224.0
-2016-05-18 04:00:00,8074.0
-2016-05-18 05:00:00,8043.0
-2016-05-18 06:00:00,8254.0
-2016-05-18 07:00:00,8835.0
-2016-05-18 08:00:00,9657.0
-2016-05-18 09:00:00,10367.0
-2016-05-18 10:00:00,10623.0
-2016-05-18 11:00:00,10755.0
-2016-05-18 12:00:00,10869.0
-2016-05-18 13:00:00,10944.0
-2016-05-18 14:00:00,10985.0
-2016-05-18 15:00:00,11029.0
-2016-05-18 16:00:00,10904.0
-2016-05-18 17:00:00,10820.0
-2016-05-18 18:00:00,10668.0
-2016-05-18 19:00:00,10511.0
-2016-05-18 20:00:00,10271.0
-2016-05-18 21:00:00,10194.0
-2016-05-18 22:00:00,10546.0
-2016-05-18 23:00:00,10342.0
-2016-05-19 00:00:00,9639.0
-2016-05-17 01:00:00,8848.0
-2016-05-17 02:00:00,8385.0
-2016-05-17 03:00:00,8104.0
-2016-05-17 04:00:00,7918.0
-2016-05-17 05:00:00,7888.0
-2016-05-17 06:00:00,8067.0
-2016-05-17 07:00:00,8633.0
-2016-05-17 08:00:00,9529.0
-2016-05-17 09:00:00,10277.0
-2016-05-17 10:00:00,10622.0
-2016-05-17 11:00:00,10771.0
-2016-05-17 12:00:00,10910.0
-2016-05-17 13:00:00,10950.0
-2016-05-17 14:00:00,10948.0
-2016-05-17 15:00:00,10952.0
-2016-05-17 16:00:00,10840.0
-2016-05-17 17:00:00,10695.0
-2016-05-17 18:00:00,10580.0
-2016-05-17 19:00:00,10414.0
-2016-05-17 20:00:00,10219.0
-2016-05-17 21:00:00,10245.0
-2016-05-17 22:00:00,10629.0
-2016-05-17 23:00:00,10397.0
-2016-05-18 00:00:00,9633.0
-2016-05-16 01:00:00,8359.0
-2016-05-16 02:00:00,8067.0
-2016-05-16 03:00:00,7902.0
-2016-05-16 04:00:00,7879.0
-2016-05-16 05:00:00,7912.0
-2016-05-16 06:00:00,8153.0
-2016-05-16 07:00:00,8737.0
-2016-05-16 08:00:00,9653.0
-2016-05-16 09:00:00,10235.0
-2016-05-16 10:00:00,10552.0
-2016-05-16 11:00:00,10727.0
-2016-05-16 12:00:00,10948.0
-2016-05-16 13:00:00,11014.0
-2016-05-16 14:00:00,11058.0
-2016-05-16 15:00:00,11113.0
-2016-05-16 16:00:00,11042.0
-2016-05-16 17:00:00,10893.0
-2016-05-16 18:00:00,10763.0
-2016-05-16 19:00:00,10611.0
-2016-05-16 20:00:00,10393.0
-2016-05-16 21:00:00,10441.0
-2016-05-16 22:00:00,10791.0
-2016-05-16 23:00:00,10379.0
-2016-05-17 00:00:00,9604.0
-2016-05-15 01:00:00,8648.0
-2016-05-15 02:00:00,8223.0
-2016-05-15 03:00:00,8025.0
-2016-05-15 04:00:00,7840.0
-2016-05-15 05:00:00,7780.0
-2016-05-15 06:00:00,7842.0
-2016-05-15 07:00:00,7795.0
-2016-05-15 08:00:00,7851.0
-2016-05-15 09:00:00,8064.0
-2016-05-15 10:00:00,8355.0
-2016-05-15 11:00:00,8580.0
-2016-05-15 12:00:00,8709.0
-2016-05-15 13:00:00,8753.0
-2016-05-15 14:00:00,8709.0
-2016-05-15 15:00:00,8676.0
-2016-05-15 16:00:00,8589.0
-2016-05-15 17:00:00,8590.0
-2016-05-15 18:00:00,8603.0
-2016-05-15 19:00:00,8686.0
-2016-05-15 20:00:00,8708.0
-2016-05-15 21:00:00,8863.0
-2016-05-15 22:00:00,9383.0
-2016-05-15 23:00:00,9337.0
-2016-05-16 00:00:00,8808.0
-2016-05-14 01:00:00,9008.0
-2016-05-14 02:00:00,8461.0
-2016-05-14 03:00:00,8113.0
-2016-05-14 04:00:00,8010.0
-2016-05-14 05:00:00,7928.0
-2016-05-14 06:00:00,8006.0
-2016-05-14 07:00:00,8111.0
-2016-05-14 08:00:00,8343.0
-2016-05-14 09:00:00,8817.0
-2016-05-14 10:00:00,9218.0
-2016-05-14 11:00:00,9502.0
-2016-05-14 12:00:00,9581.0
-2016-05-14 13:00:00,9615.0
-2016-05-14 14:00:00,9584.0
-2016-05-14 15:00:00,9466.0
-2016-05-14 16:00:00,9364.0
-2016-05-14 17:00:00,9307.0
-2016-05-14 18:00:00,9257.0
-2016-05-14 19:00:00,9262.0
-2016-05-14 20:00:00,9212.0
-2016-05-14 21:00:00,9287.0
-2016-05-14 22:00:00,9675.0
-2016-05-14 23:00:00,9580.0
-2016-05-15 00:00:00,9115.0
-2016-05-13 01:00:00,8949.0
-2016-05-13 02:00:00,8427.0
-2016-05-13 03:00:00,8092.0
-2016-05-13 04:00:00,7927.0
-2016-05-13 05:00:00,7866.0
-2016-05-13 06:00:00,8059.0
-2016-05-13 07:00:00,8512.0
-2016-05-13 08:00:00,9339.0
-2016-05-13 09:00:00,10084.0
-2016-05-13 10:00:00,10497.0
-2016-05-13 11:00:00,10761.0
-2016-05-13 12:00:00,10993.0
-2016-05-13 13:00:00,11048.0
-2016-05-13 14:00:00,11041.0
-2016-05-13 15:00:00,11088.0
-2016-05-13 16:00:00,11019.0
-2016-05-13 17:00:00,10816.0
-2016-05-13 18:00:00,10677.0
-2016-05-13 19:00:00,10548.0
-2016-05-13 20:00:00,10334.0
-2016-05-13 21:00:00,10492.0
-2016-05-13 22:00:00,10660.0
-2016-05-13 23:00:00,10333.0
-2016-05-14 00:00:00,9680.0
-2016-05-12 01:00:00,9088.0
-2016-05-12 02:00:00,8596.0
-2016-05-12 03:00:00,8294.0
-2016-05-12 04:00:00,8155.0
-2016-05-12 05:00:00,8100.0
-2016-05-12 06:00:00,8296.0
-2016-05-12 07:00:00,8855.0
-2016-05-12 08:00:00,9741.0
-2016-05-12 09:00:00,10641.0
-2016-05-12 10:00:00,11137.0
-2016-05-12 11:00:00,11426.0
-2016-05-12 12:00:00,11623.0
-2016-05-12 13:00:00,11610.0
-2016-05-12 14:00:00,11589.0
-2016-05-12 15:00:00,11595.0
-2016-05-12 16:00:00,11500.0
-2016-05-12 17:00:00,11342.0
-2016-05-12 18:00:00,11282.0
-2016-05-12 19:00:00,11094.0
-2016-05-12 20:00:00,10708.0
-2016-05-12 21:00:00,10563.0
-2016-05-12 22:00:00,10856.0
-2016-05-12 23:00:00,10506.0
-2016-05-13 00:00:00,9732.0
-2016-05-11 01:00:00,9055.0
-2016-05-11 02:00:00,8537.0
-2016-05-11 03:00:00,8217.0
-2016-05-11 04:00:00,8051.0
-2016-05-11 05:00:00,7990.0
-2016-05-11 06:00:00,8166.0
-2016-05-11 07:00:00,8760.0
-2016-05-11 08:00:00,9594.0
-2016-05-11 09:00:00,10338.0
-2016-05-11 10:00:00,10692.0
-2016-05-11 11:00:00,10911.0
-2016-05-11 12:00:00,11121.0
-2016-05-11 13:00:00,11203.0
-2016-05-11 14:00:00,11263.0
-2016-05-11 15:00:00,11341.0
-2016-05-11 16:00:00,11333.0
-2016-05-11 17:00:00,11251.0
-2016-05-11 18:00:00,11128.0
-2016-05-11 19:00:00,11001.0
-2016-05-11 20:00:00,10717.0
-2016-05-11 21:00:00,10716.0
-2016-05-11 22:00:00,11058.0
-2016-05-11 23:00:00,10645.0
-2016-05-12 00:00:00,9844.0
-2016-05-10 01:00:00,8923.0
-2016-05-10 02:00:00,8477.0
-2016-05-10 03:00:00,8212.0
-2016-05-10 04:00:00,8045.0
-2016-05-10 05:00:00,7977.0
-2016-05-10 06:00:00,8187.0
-2016-05-10 07:00:00,8826.0
-2016-05-10 08:00:00,9787.0
-2016-05-10 09:00:00,10543.0
-2016-05-10 10:00:00,10886.0
-2016-05-10 11:00:00,11073.0
-2016-05-10 12:00:00,11258.0
-2016-05-10 13:00:00,11321.0
-2016-05-10 14:00:00,11271.0
-2016-05-10 15:00:00,11231.0
-2016-05-10 16:00:00,11160.0
-2016-05-10 17:00:00,11044.0
-2016-05-10 18:00:00,10991.0
-2016-05-10 19:00:00,10900.0
-2016-05-10 20:00:00,10655.0
-2016-05-10 21:00:00,10628.0
-2016-05-10 22:00:00,10928.0
-2016-05-10 23:00:00,10543.0
-2016-05-11 00:00:00,9785.0
-2016-05-09 01:00:00,8193.0
-2016-05-09 02:00:00,7851.0
-2016-05-09 03:00:00,7672.0
-2016-05-09 04:00:00,7584.0
-2016-05-09 05:00:00,7581.0
-2016-05-09 06:00:00,7825.0
-2016-05-09 07:00:00,8441.0
-2016-05-09 08:00:00,9350.0
-2016-05-09 09:00:00,10154.0
-2016-05-09 10:00:00,10558.0
-2016-05-09 11:00:00,10749.0
-2016-05-09 12:00:00,10935.0
-2016-05-09 13:00:00,10985.0
-2016-05-09 14:00:00,10946.0
-2016-05-09 15:00:00,10961.0
-2016-05-09 16:00:00,10833.0
-2016-05-09 17:00:00,10691.0
-2016-05-09 18:00:00,10644.0
-2016-05-09 19:00:00,10659.0
-2016-05-09 20:00:00,10668.0
-2016-05-09 21:00:00,10840.0
-2016-05-09 22:00:00,10854.0
-2016-05-09 23:00:00,10419.0
-2016-05-10 00:00:00,9659.0
-2016-05-08 01:00:00,8267.0
-2016-05-08 02:00:00,7872.0
-2016-05-08 03:00:00,7592.0
-2016-05-08 04:00:00,7392.0
-2016-05-08 05:00:00,7383.0
-2016-05-08 06:00:00,7366.0
-2016-05-08 07:00:00,7421.0
-2016-05-08 08:00:00,7372.0
-2016-05-08 09:00:00,7652.0
-2016-05-08 10:00:00,8026.0
-2016-05-08 11:00:00,8293.0
-2016-05-08 12:00:00,8476.0
-2016-05-08 13:00:00,8569.0
-2016-05-08 14:00:00,8619.0
-2016-05-08 15:00:00,8586.0
-2016-05-08 16:00:00,8613.0
-2016-05-08 17:00:00,8578.0
-2016-05-08 18:00:00,8648.0
-2016-05-08 19:00:00,8581.0
-2016-05-08 20:00:00,8617.0
-2016-05-08 21:00:00,8771.0
-2016-05-08 22:00:00,9296.0
-2016-05-08 23:00:00,9154.0
-2016-05-09 00:00:00,8718.0
-2016-05-07 01:00:00,9460.0
-2016-05-07 02:00:00,8856.0
-2016-05-07 03:00:00,8457.0
-2016-05-07 04:00:00,8259.0
-2016-05-07 05:00:00,8071.0
-2016-05-07 06:00:00,8102.0
-2016-05-07 07:00:00,8203.0
-2016-05-07 08:00:00,8357.0
-2016-05-07 09:00:00,8808.0
-2016-05-07 10:00:00,9223.0
-2016-05-07 11:00:00,9393.0
-2016-05-07 12:00:00,9472.0
-2016-05-07 13:00:00,9457.0
-2016-05-07 14:00:00,9319.0
-2016-05-07 15:00:00,9186.0
-2016-05-07 16:00:00,9078.0
-2016-05-07 17:00:00,9011.0
-2016-05-07 18:00:00,8926.0
-2016-05-07 19:00:00,8892.0
-2016-05-07 20:00:00,8816.0
-2016-05-07 21:00:00,8942.0
-2016-05-07 22:00:00,9364.0
-2016-05-07 23:00:00,9222.0
-2016-05-08 00:00:00,8808.0
-2016-05-06 01:00:00,8911.0
-2016-05-06 02:00:00,8472.0
-2016-05-06 03:00:00,8179.0
-2016-05-06 04:00:00,8045.0
-2016-05-06 05:00:00,8013.0
-2016-05-06 06:00:00,8214.0
-2016-05-06 07:00:00,8818.0
-2016-05-06 08:00:00,9587.0
-2016-05-06 09:00:00,10265.0
-2016-05-06 10:00:00,10571.0
-2016-05-06 11:00:00,10804.0
-2016-05-06 12:00:00,11031.0
-2016-05-06 13:00:00,11133.0
-2016-05-06 14:00:00,11217.0
-2016-05-06 15:00:00,11363.0
-2016-05-06 16:00:00,11412.0
-2016-05-06 17:00:00,11435.0
-2016-05-06 18:00:00,11451.0
-2016-05-06 19:00:00,11357.0
-2016-05-06 20:00:00,11180.0
-2016-05-06 21:00:00,11023.0
-2016-05-06 22:00:00,11290.0
-2016-05-06 23:00:00,10968.0
-2016-05-07 00:00:00,10222.0
-2016-05-05 01:00:00,9177.0
-2016-05-05 02:00:00,8748.0
-2016-05-05 03:00:00,8514.0
-2016-05-05 04:00:00,8342.0
-2016-05-05 05:00:00,8319.0
-2016-05-05 06:00:00,8542.0
-2016-05-05 07:00:00,9185.0
-2016-05-05 08:00:00,10048.0
-2016-05-05 09:00:00,10647.0
-2016-05-05 10:00:00,10832.0
-2016-05-05 11:00:00,10893.0
-2016-05-05 12:00:00,10963.0
-2016-05-05 13:00:00,10944.0
-2016-05-05 14:00:00,10943.0
-2016-05-05 15:00:00,10964.0
-2016-05-05 16:00:00,10856.0
-2016-05-05 17:00:00,10724.0
-2016-05-05 18:00:00,10575.0
-2016-05-05 19:00:00,10404.0
-2016-05-05 20:00:00,10134.0
-2016-05-05 21:00:00,10183.0
-2016-05-05 22:00:00,10627.0
-2016-05-05 23:00:00,10347.0
-2016-05-06 00:00:00,9621.0
-2016-05-04 01:00:00,8950.0
-2016-05-04 02:00:00,8449.0
-2016-05-04 03:00:00,8231.0
-2016-05-04 04:00:00,8053.0
-2016-05-04 05:00:00,8000.0
-2016-05-04 06:00:00,8212.0
-2016-05-04 07:00:00,8847.0
-2016-05-04 08:00:00,9685.0
-2016-05-04 09:00:00,10359.0
-2016-05-04 10:00:00,10656.0
-2016-05-04 11:00:00,10791.0
-2016-05-04 12:00:00,10961.0
-2016-05-04 13:00:00,10951.0
-2016-05-04 14:00:00,11006.0
-2016-05-04 15:00:00,11043.0
-2016-05-04 16:00:00,10927.0
-2016-05-04 17:00:00,10813.0
-2016-05-04 18:00:00,10683.0
-2016-05-04 19:00:00,10623.0
-2016-05-04 20:00:00,10509.0
-2016-05-04 21:00:00,10653.0
-2016-05-04 22:00:00,10933.0
-2016-05-04 23:00:00,10593.0
-2016-05-05 00:00:00,9863.0
-2016-05-03 01:00:00,8963.0
-2016-05-03 02:00:00,8525.0
-2016-05-03 03:00:00,8279.0
-2016-05-03 04:00:00,8179.0
-2016-05-03 05:00:00,8151.0
-2016-05-03 06:00:00,8427.0
-2016-05-03 07:00:00,9038.0
-2016-05-03 08:00:00,9859.0
-2016-05-03 09:00:00,10461.0
-2016-05-03 10:00:00,10652.0
-2016-05-03 11:00:00,10755.0
-2016-05-03 12:00:00,10927.0
-2016-05-03 13:00:00,10971.0
-2016-05-03 14:00:00,11023.0
-2016-05-03 15:00:00,11021.0
-2016-05-03 16:00:00,10920.0
-2016-05-03 17:00:00,10788.0
-2016-05-03 18:00:00,10672.0
-2016-05-03 19:00:00,10517.0
-2016-05-03 20:00:00,10334.0
-2016-05-03 21:00:00,10484.0
-2016-05-03 22:00:00,10833.0
-2016-05-03 23:00:00,10464.0
-2016-05-04 00:00:00,9695.0
-2016-05-02 01:00:00,8647.0
-2016-05-02 02:00:00,8305.0
-2016-05-02 03:00:00,8146.0
-2016-05-02 04:00:00,8029.0
-2016-05-02 05:00:00,8097.0
-2016-05-02 06:00:00,8318.0
-2016-05-02 07:00:00,9056.0
-2016-05-02 08:00:00,9897.0
-2016-05-02 09:00:00,10513.0
-2016-05-02 10:00:00,10693.0
-2016-05-02 11:00:00,10771.0
-2016-05-02 12:00:00,10850.0
-2016-05-02 13:00:00,10822.0
-2016-05-02 14:00:00,10774.0
-2016-05-02 15:00:00,10793.0
-2016-05-02 16:00:00,10687.0
-2016-05-02 17:00:00,10510.0
-2016-05-02 18:00:00,10379.0
-2016-05-02 19:00:00,10278.0
-2016-05-02 20:00:00,10156.0
-2016-05-02 21:00:00,10228.0
-2016-05-02 22:00:00,10705.0
-2016-05-02 23:00:00,10372.0
-2016-05-03 00:00:00,9679.0
-2016-05-01 01:00:00,8906.0
-2016-05-01 02:00:00,8473.0
-2016-05-01 03:00:00,8170.0
-2016-05-01 04:00:00,7999.0
-2016-05-01 05:00:00,7893.0
-2016-05-01 06:00:00,7902.0
-2016-05-01 07:00:00,8004.0
-2016-05-01 08:00:00,8070.0
-2016-05-01 09:00:00,8309.0
-2016-05-01 10:00:00,8667.0
-2016-05-01 11:00:00,8959.0
-2016-05-01 12:00:00,9087.0
-2016-05-01 13:00:00,9147.0
-2016-05-01 14:00:00,9081.0
-2016-05-01 15:00:00,9011.0
-2016-05-01 16:00:00,8923.0
-2016-05-01 17:00:00,8965.0
-2016-05-01 18:00:00,9029.0
-2016-05-01 19:00:00,9165.0
-2016-05-01 20:00:00,9368.0
-2016-05-01 21:00:00,9814.0
-2016-05-01 22:00:00,9925.0
-2016-05-01 23:00:00,9648.0
-2016-05-02 00:00:00,9157.0
-2016-04-30 01:00:00,9196.0
-2016-04-30 02:00:00,8627.0
-2016-04-30 03:00:00,8393.0
-2016-04-30 04:00:00,8197.0
-2016-04-30 05:00:00,8116.0
-2016-04-30 06:00:00,8160.0
-2016-04-30 07:00:00,8398.0
-2016-04-30 08:00:00,8628.0
-2016-04-30 09:00:00,8984.0
-2016-04-30 10:00:00,9455.0
-2016-04-30 11:00:00,9765.0
-2016-04-30 12:00:00,9931.0
-2016-04-30 13:00:00,9974.0
-2016-04-30 14:00:00,9965.0
-2016-04-30 15:00:00,9843.0
-2016-04-30 16:00:00,9798.0
-2016-04-30 17:00:00,9800.0
-2016-04-30 18:00:00,9774.0
-2016-04-30 19:00:00,9794.0
-2016-04-30 20:00:00,9857.0
-2016-04-30 21:00:00,10013.0
-2016-04-30 22:00:00,10174.0
-2016-04-30 23:00:00,9897.0
-2016-05-01 00:00:00,9429.0
-2016-04-29 01:00:00,9189.0
-2016-04-29 02:00:00,8706.0
-2016-04-29 03:00:00,8427.0
-2016-04-29 04:00:00,8267.0
-2016-04-29 05:00:00,8234.0
-2016-04-29 06:00:00,8457.0
-2016-04-29 07:00:00,9052.0
-2016-04-29 08:00:00,9929.0
-2016-04-29 09:00:00,10669.0
-2016-04-29 10:00:00,10965.0
-2016-04-29 11:00:00,11140.0
-2016-04-29 12:00:00,11180.0
-2016-04-29 13:00:00,11078.0
-2016-04-29 14:00:00,10967.0
-2016-04-29 15:00:00,10900.0
-2016-04-29 16:00:00,10720.0
-2016-04-29 17:00:00,10526.0
-2016-04-29 18:00:00,10342.0
-2016-04-29 19:00:00,10216.0
-2016-04-29 20:00:00,10180.0
-2016-04-29 21:00:00,10431.0
-2016-04-29 22:00:00,10683.0
-2016-04-29 23:00:00,10441.0
-2016-04-30 00:00:00,9802.0
-2016-04-28 01:00:00,9236.0
-2016-04-28 02:00:00,8788.0
-2016-04-28 03:00:00,8559.0
-2016-04-28 04:00:00,8404.0
-2016-04-28 05:00:00,8384.0
-2016-04-28 06:00:00,8641.0
-2016-04-28 07:00:00,9296.0
-2016-04-28 08:00:00,10160.0
-2016-04-28 09:00:00,10787.0
-2016-04-28 10:00:00,11095.0
-2016-04-28 11:00:00,11197.0
-2016-04-28 12:00:00,11249.0
-2016-04-28 13:00:00,11212.0
-2016-04-28 14:00:00,11110.0
-2016-04-28 15:00:00,11057.0
-2016-04-28 16:00:00,10941.0
-2016-04-28 17:00:00,10771.0
-2016-04-28 18:00:00,10687.0
-2016-04-28 19:00:00,10632.0
-2016-04-28 20:00:00,10566.0
-2016-04-28 21:00:00,10818.0
-2016-04-28 22:00:00,10985.0
-2016-04-28 23:00:00,10576.0
-2016-04-29 00:00:00,9874.0
-2016-04-27 01:00:00,9044.0
-2016-04-27 02:00:00,8604.0
-2016-04-27 03:00:00,8345.0
-2016-04-27 04:00:00,8182.0
-2016-04-27 05:00:00,8160.0
-2016-04-27 06:00:00,8392.0
-2016-04-27 07:00:00,9099.0
-2016-04-27 08:00:00,9989.0
-2016-04-27 09:00:00,10681.0
-2016-04-27 10:00:00,10959.0
-2016-04-27 11:00:00,11087.0
-2016-04-27 12:00:00,11196.0
-2016-04-27 13:00:00,11146.0
-2016-04-27 14:00:00,11099.0
-2016-04-27 15:00:00,11093.0
-2016-04-27 16:00:00,11053.0
-2016-04-27 17:00:00,11071.0
-2016-04-27 18:00:00,11046.0
-2016-04-27 19:00:00,11092.0
-2016-04-27 20:00:00,11050.0
-2016-04-27 21:00:00,11124.0
-2016-04-27 22:00:00,11187.0
-2016-04-27 23:00:00,10730.0
-2016-04-28 00:00:00,9944.0
-2016-04-26 01:00:00,9874.0
-2016-04-26 02:00:00,9160.0
-2016-04-26 03:00:00,8586.0
-2016-04-26 04:00:00,8261.0
-2016-04-26 05:00:00,8045.0
-2016-04-26 06:00:00,8167.0
-2016-04-26 07:00:00,8747.0
-2016-04-26 08:00:00,9538.0
-2016-04-26 09:00:00,10217.0
-2016-04-26 10:00:00,10584.0
-2016-04-26 11:00:00,10706.0
-2016-04-26 12:00:00,10805.0
-2016-04-26 13:00:00,10821.0
-2016-04-26 14:00:00,10784.0
-2016-04-26 15:00:00,10829.0
-2016-04-26 16:00:00,10737.0
-2016-04-26 17:00:00,10618.0
-2016-04-26 18:00:00,10552.0
-2016-04-26 19:00:00,10566.0
-2016-04-26 20:00:00,10503.0
-2016-04-26 21:00:00,10743.0
-2016-04-26 22:00:00,10932.0
-2016-04-26 23:00:00,10524.0
-2016-04-27 00:00:00,9735.0
-2016-04-25 01:00:00,8491.0
-2016-04-25 02:00:00,8106.0
-2016-04-25 03:00:00,7874.0
-2016-04-25 04:00:00,7694.0
-2016-04-25 05:00:00,7725.0
-2016-04-25 06:00:00,7910.0
-2016-04-25 07:00:00,8598.0
-2016-04-25 08:00:00,9416.0
-2016-04-25 09:00:00,10285.0
-2016-04-25 10:00:00,10812.0
-2016-04-25 11:00:00,11092.0
-2016-04-25 12:00:00,11466.0
-2016-04-25 13:00:00,11728.0
-2016-04-25 14:00:00,11927.0
-2016-04-25 15:00:00,12156.0
-2016-04-25 16:00:00,12232.0
-2016-04-25 17:00:00,12300.0
-2016-04-25 18:00:00,12298.0
-2016-04-25 19:00:00,12134.0
-2016-04-25 20:00:00,11822.0
-2016-04-25 21:00:00,11810.0
-2016-04-25 22:00:00,12088.0
-2016-04-25 23:00:00,11600.0
-2016-04-26 00:00:00,10747.0
-2016-04-24 01:00:00,8393.0
-2016-04-24 02:00:00,7996.0
-2016-04-24 03:00:00,7750.0
-2016-04-24 04:00:00,7601.0
-2016-04-24 05:00:00,7554.0
-2016-04-24 06:00:00,7519.0
-2016-04-24 07:00:00,7667.0
-2016-04-24 08:00:00,7562.0
-2016-04-24 09:00:00,7772.0
-2016-04-24 10:00:00,8133.0
-2016-04-24 11:00:00,8382.0
-2016-04-24 12:00:00,8584.0
-2016-04-24 13:00:00,8706.0
-2016-04-24 14:00:00,8831.0
-2016-04-24 15:00:00,8906.0
-2016-04-24 16:00:00,9053.0
-2016-04-24 17:00:00,9067.0
-2016-04-24 18:00:00,9116.0
-2016-04-24 19:00:00,9169.0
-2016-04-24 20:00:00,9183.0
-2016-04-24 21:00:00,9474.0
-2016-04-24 22:00:00,9868.0
-2016-04-24 23:00:00,9587.0
-2016-04-25 00:00:00,9091.0
-2016-04-23 01:00:00,9016.0
-2016-04-23 02:00:00,8509.0
-2016-04-23 03:00:00,8181.0
-2016-04-23 04:00:00,8008.0
-2016-04-23 05:00:00,7999.0
-2016-04-23 06:00:00,8043.0
-2016-04-23 07:00:00,8288.0
-2016-04-23 08:00:00,8449.0
-2016-04-23 09:00:00,8782.0
-2016-04-23 10:00:00,9076.0
-2016-04-23 11:00:00,9288.0
-2016-04-23 12:00:00,9349.0
-2016-04-23 13:00:00,9341.0
-2016-04-23 14:00:00,9256.0
-2016-04-23 15:00:00,9114.0
-2016-04-23 16:00:00,9005.0
-2016-04-23 17:00:00,8924.0
-2016-04-23 18:00:00,8911.0
-2016-04-23 19:00:00,8892.0
-2016-04-23 20:00:00,8872.0
-2016-04-23 21:00:00,9090.0
-2016-04-23 22:00:00,9504.0
-2016-04-23 23:00:00,9247.0
-2016-04-24 00:00:00,8852.0
-2016-04-22 01:00:00,8965.0
-2016-04-22 02:00:00,8454.0
-2016-04-22 03:00:00,8141.0
-2016-04-22 04:00:00,7952.0
-2016-04-22 05:00:00,7869.0
-2016-04-22 06:00:00,8026.0
-2016-04-22 07:00:00,8625.0
-2016-04-22 08:00:00,9444.0
-2016-04-22 09:00:00,10156.0
-2016-04-22 10:00:00,10578.0
-2016-04-22 11:00:00,10805.0
-2016-04-22 12:00:00,10895.0
-2016-04-22 13:00:00,10834.0
-2016-04-22 14:00:00,10754.0
-2016-04-22 15:00:00,10716.0
-2016-04-22 16:00:00,10598.0
-2016-04-22 17:00:00,10404.0
-2016-04-22 18:00:00,10259.0
-2016-04-22 19:00:00,10086.0
-2016-04-22 20:00:00,9924.0
-2016-04-22 21:00:00,10092.0
-2016-04-22 22:00:00,10492.0
-2016-04-22 23:00:00,10229.0
-2016-04-23 00:00:00,9627.0
-2016-04-21 01:00:00,9014.0
-2016-04-21 02:00:00,8514.0
-2016-04-21 03:00:00,8221.0
-2016-04-21 04:00:00,8036.0
-2016-04-21 05:00:00,7966.0
-2016-04-21 06:00:00,8167.0
-2016-04-21 07:00:00,8805.0
-2016-04-21 08:00:00,9688.0
-2016-04-21 09:00:00,10405.0
-2016-04-21 10:00:00,10795.0
-2016-04-21 11:00:00,11036.0
-2016-04-21 12:00:00,11264.0
-2016-04-21 13:00:00,11394.0
-2016-04-21 14:00:00,11405.0
-2016-04-21 15:00:00,11442.0
-2016-04-21 16:00:00,11359.0
-2016-04-21 17:00:00,11217.0
-2016-04-21 18:00:00,11113.0
-2016-04-21 19:00:00,10924.0
-2016-04-21 20:00:00,10647.0
-2016-04-21 21:00:00,10664.0
-2016-04-21 22:00:00,10848.0
-2016-04-21 23:00:00,10400.0
-2016-04-22 00:00:00,9696.0
-2016-04-20 01:00:00,8877.0
-2016-04-20 02:00:00,8423.0
-2016-04-20 03:00:00,8158.0
-2016-04-20 04:00:00,7992.0
-2016-04-20 05:00:00,7952.0
-2016-04-20 06:00:00,8209.0
-2016-04-20 07:00:00,8883.0
-2016-04-20 08:00:00,9619.0
-2016-04-20 09:00:00,10250.0
-2016-04-20 10:00:00,10609.0
-2016-04-20 11:00:00,10762.0
-2016-04-20 12:00:00,10934.0
-2016-04-20 13:00:00,11027.0
-2016-04-20 14:00:00,11082.0
-2016-04-20 15:00:00,11181.0
-2016-04-20 16:00:00,11128.0
-2016-04-20 17:00:00,10980.0
-2016-04-20 18:00:00,10823.0
-2016-04-20 19:00:00,10747.0
-2016-04-20 20:00:00,10624.0
-2016-04-20 21:00:00,10949.0
-2016-04-20 22:00:00,10971.0
-2016-04-20 23:00:00,10494.0
-2016-04-21 00:00:00,9707.0
-2016-04-19 01:00:00,9139.0
-2016-04-19 02:00:00,8559.0
-2016-04-19 03:00:00,8220.0
-2016-04-19 04:00:00,7999.0
-2016-04-19 05:00:00,7914.0
-2016-04-19 06:00:00,8072.0
-2016-04-19 07:00:00,8666.0
-2016-04-19 08:00:00,9476.0
-2016-04-19 09:00:00,10142.0
-2016-04-19 10:00:00,10506.0
-2016-04-19 11:00:00,10677.0
-2016-04-19 12:00:00,10798.0
-2016-04-19 13:00:00,10852.0
-2016-04-19 14:00:00,10842.0
-2016-04-19 15:00:00,10849.0
-2016-04-19 16:00:00,10784.0
-2016-04-19 17:00:00,10666.0
-2016-04-19 18:00:00,10556.0
-2016-04-19 19:00:00,10461.0
-2016-04-19 20:00:00,10444.0
-2016-04-19 21:00:00,10682.0
-2016-04-19 22:00:00,10765.0
-2016-04-19 23:00:00,10336.0
-2016-04-20 00:00:00,9606.0
-2016-04-18 01:00:00,8367.0
-2016-04-18 02:00:00,7956.0
-2016-04-18 03:00:00,7728.0
-2016-04-18 04:00:00,7578.0
-2016-04-18 05:00:00,7568.0
-2016-04-18 06:00:00,7797.0
-2016-04-18 07:00:00,8466.0
-2016-04-18 08:00:00,9278.0
-2016-04-18 09:00:00,10076.0
-2016-04-18 10:00:00,10581.0
-2016-04-18 11:00:00,10938.0
-2016-04-18 12:00:00,11336.0
-2016-04-18 13:00:00,11547.0
-2016-04-18 14:00:00,11746.0
-2016-04-18 15:00:00,11939.0
-2016-04-18 16:00:00,12003.0
-2016-04-18 17:00:00,11974.0
-2016-04-18 18:00:00,11871.0
-2016-04-18 19:00:00,11620.0
-2016-04-18 20:00:00,11228.0
-2016-04-18 21:00:00,11307.0
-2016-04-18 22:00:00,11403.0
-2016-04-18 23:00:00,10871.0
-2016-04-19 00:00:00,9987.0
-2016-04-17 01:00:00,8423.0
-2016-04-17 02:00:00,7962.0
-2016-04-17 03:00:00,7693.0
-2016-04-17 04:00:00,7558.0
-2016-04-17 05:00:00,7426.0
-2016-04-17 06:00:00,7436.0
-2016-04-17 07:00:00,7507.0
-2016-04-17 08:00:00,7502.0
-2016-04-17 09:00:00,7697.0
-2016-04-17 10:00:00,8098.0
-2016-04-17 11:00:00,8413.0
-2016-04-17 12:00:00,8696.0
-2016-04-17 13:00:00,8925.0
-2016-04-17 14:00:00,9053.0
-2016-04-17 15:00:00,9156.0
-2016-04-17 16:00:00,9247.0
-2016-04-17 17:00:00,9301.0
-2016-04-17 18:00:00,9378.0
-2016-04-17 19:00:00,9441.0
-2016-04-17 20:00:00,9368.0
-2016-04-17 21:00:00,9580.0
-2016-04-17 22:00:00,9895.0
-2016-04-17 23:00:00,9506.0
-2016-04-18 00:00:00,8960.0
-2016-04-16 01:00:00,8969.0
-2016-04-16 02:00:00,8472.0
-2016-04-16 03:00:00,8192.0
-2016-04-16 04:00:00,7966.0
-2016-04-16 05:00:00,7945.0
-2016-04-16 06:00:00,8003.0
-2016-04-16 07:00:00,8253.0
-2016-04-16 08:00:00,8414.0
-2016-04-16 09:00:00,8665.0
-2016-04-16 10:00:00,9001.0
-2016-04-16 11:00:00,9270.0
-2016-04-16 12:00:00,9442.0
-2016-04-16 13:00:00,9499.0
-2016-04-16 14:00:00,9501.0
-2016-04-16 15:00:00,9433.0
-2016-04-16 16:00:00,9348.0
-2016-04-16 17:00:00,9311.0
-2016-04-16 18:00:00,9297.0
-2016-04-16 19:00:00,9266.0
-2016-04-16 20:00:00,9159.0
-2016-04-16 21:00:00,9327.0
-2016-04-16 22:00:00,9623.0
-2016-04-16 23:00:00,9456.0
-2016-04-17 00:00:00,8945.0
-2016-04-15 01:00:00,9160.0
-2016-04-15 02:00:00,8708.0
-2016-04-15 03:00:00,8448.0
-2016-04-15 04:00:00,8315.0
-2016-04-15 05:00:00,8312.0
-2016-04-15 06:00:00,8557.0
-2016-04-15 07:00:00,9255.0
-2016-04-15 08:00:00,10028.0
-2016-04-15 09:00:00,10525.0
-2016-04-15 10:00:00,10724.0
-2016-04-15 11:00:00,10857.0
-2016-04-15 12:00:00,10931.0
-2016-04-15 13:00:00,10933.0
-2016-04-15 14:00:00,10939.0
-2016-04-15 15:00:00,10971.0
-2016-04-15 16:00:00,10879.0
-2016-04-15 17:00:00,10713.0
-2016-04-15 18:00:00,10549.0
-2016-04-15 19:00:00,10354.0
-2016-04-15 20:00:00,10149.0
-2016-04-15 21:00:00,10299.0
-2016-04-15 22:00:00,10549.0
-2016-04-15 23:00:00,10251.0
-2016-04-16 00:00:00,9615.0
-2016-04-14 01:00:00,9435.0
-2016-04-14 02:00:00,9002.0
-2016-04-14 03:00:00,8732.0
-2016-04-14 04:00:00,8587.0
-2016-04-14 05:00:00,8600.0
-2016-04-14 06:00:00,8850.0
-2016-04-14 07:00:00,9589.0
-2016-04-14 08:00:00,10435.0
-2016-04-14 09:00:00,10920.0
-2016-04-14 10:00:00,11062.0
-2016-04-14 11:00:00,11053.0
-2016-04-14 12:00:00,11088.0
-2016-04-14 13:00:00,11059.0
-2016-04-14 14:00:00,11009.0
-2016-04-14 15:00:00,11021.0
-2016-04-14 16:00:00,10874.0
-2016-04-14 17:00:00,10712.0
-2016-04-14 18:00:00,10582.0
-2016-04-14 19:00:00,10465.0
-2016-04-14 20:00:00,10285.0
-2016-04-14 21:00:00,10605.0
-2016-04-14 22:00:00,10909.0
-2016-04-14 23:00:00,10534.0
-2016-04-15 00:00:00,9849.0
-2016-04-13 01:00:00,9570.0
-2016-04-13 02:00:00,9148.0
-2016-04-13 03:00:00,8909.0
-2016-04-13 04:00:00,8776.0
-2016-04-13 05:00:00,8780.0
-2016-04-13 06:00:00,9037.0
-2016-04-13 07:00:00,9777.0
-2016-04-13 08:00:00,10698.0
-2016-04-13 09:00:00,11126.0
-2016-04-13 10:00:00,11282.0
-2016-04-13 11:00:00,11249.0
-2016-04-13 12:00:00,11218.0
-2016-04-13 13:00:00,11130.0
-2016-04-13 14:00:00,11036.0
-2016-04-13 15:00:00,11034.0
-2016-04-13 16:00:00,10949.0
-2016-04-13 17:00:00,10818.0
-2016-04-13 18:00:00,10742.0
-2016-04-13 19:00:00,10661.0
-2016-04-13 20:00:00,10538.0
-2016-04-13 21:00:00,10872.0
-2016-04-13 22:00:00,11179.0
-2016-04-13 23:00:00,10783.0
-2016-04-14 00:00:00,10093.0
-2016-04-12 01:00:00,9466.0
-2016-04-12 02:00:00,9087.0
-2016-04-12 03:00:00,8853.0
-2016-04-12 04:00:00,8727.0
-2016-04-12 05:00:00,8768.0
-2016-04-12 06:00:00,9061.0
-2016-04-12 07:00:00,9855.0
-2016-04-12 08:00:00,10788.0
-2016-04-12 09:00:00,11221.0
-2016-04-12 10:00:00,11339.0
-2016-04-12 11:00:00,11319.0
-2016-04-12 12:00:00,11331.0
-2016-04-12 13:00:00,11256.0
-2016-04-12 14:00:00,11127.0
-2016-04-12 15:00:00,11110.0
-2016-04-12 16:00:00,10962.0
-2016-04-12 17:00:00,10818.0
-2016-04-12 18:00:00,10681.0
-2016-04-12 19:00:00,10618.0
-2016-04-12 20:00:00,10470.0
-2016-04-12 21:00:00,10870.0
-2016-04-12 22:00:00,11269.0
-2016-04-12 23:00:00,10906.0
-2016-04-13 00:00:00,10241.0
-2016-04-11 01:00:00,8963.0
-2016-04-11 02:00:00,8566.0
-2016-04-11 03:00:00,8381.0
-2016-04-11 04:00:00,8274.0
-2016-04-11 05:00:00,8291.0
-2016-04-11 06:00:00,8599.0
-2016-04-11 07:00:00,9380.0
-2016-04-11 08:00:00,10320.0
-2016-04-11 09:00:00,10850.0
-2016-04-11 10:00:00,11112.0
-2016-04-11 11:00:00,11198.0
-2016-04-11 12:00:00,11241.0
-2016-04-11 13:00:00,11204.0
-2016-04-11 14:00:00,11108.0
-2016-04-11 15:00:00,11113.0
-2016-04-11 16:00:00,10944.0
-2016-04-11 17:00:00,10773.0
-2016-04-11 18:00:00,10639.0
-2016-04-11 19:00:00,10537.0
-2016-04-11 20:00:00,10439.0
-2016-04-11 21:00:00,10811.0
-2016-04-11 22:00:00,11134.0
-2016-04-11 23:00:00,10773.0
-2016-04-12 00:00:00,10092.0
-2016-04-10 01:00:00,9634.0
-2016-04-10 02:00:00,9283.0
-2016-04-10 03:00:00,9046.0
-2016-04-10 04:00:00,8888.0
-2016-04-10 05:00:00,8811.0
-2016-04-10 06:00:00,8817.0
-2016-04-10 07:00:00,8937.0
-2016-04-10 08:00:00,9112.0
-2016-04-10 09:00:00,9169.0
-2016-04-10 10:00:00,9474.0
-2016-04-10 11:00:00,9667.0
-2016-04-10 12:00:00,9899.0
-2016-04-10 13:00:00,9973.0
-2016-04-10 14:00:00,9961.0
-2016-04-10 15:00:00,9899.0
-2016-04-10 16:00:00,9898.0
-2016-04-10 17:00:00,9890.0
-2016-04-10 18:00:00,9862.0
-2016-04-10 19:00:00,9972.0
-2016-04-10 20:00:00,10126.0
-2016-04-10 21:00:00,10399.0
-2016-04-10 22:00:00,10347.0
-2016-04-10 23:00:00,9997.0
-2016-04-11 00:00:00,9481.0
-2016-04-09 01:00:00,10261.0
-2016-04-09 02:00:00,9875.0
-2016-04-09 03:00:00,9633.0
-2016-04-09 04:00:00,9431.0
-2016-04-09 05:00:00,9417.0
-2016-04-09 06:00:00,9491.0
-2016-04-09 07:00:00,9829.0
-2016-04-09 08:00:00,10080.0
-2016-04-09 09:00:00,10251.0
-2016-04-09 10:00:00,10449.0
-2016-04-09 11:00:00,10625.0
-2016-04-09 12:00:00,10616.0
-2016-04-09 13:00:00,10510.0
-2016-04-09 14:00:00,10355.0
-2016-04-09 15:00:00,10086.0
-2016-04-09 16:00:00,9910.0
-2016-04-09 17:00:00,9685.0
-2016-04-09 18:00:00,9636.0
-2016-04-09 19:00:00,9638.0
-2016-04-09 20:00:00,9726.0
-2016-04-09 21:00:00,10289.0
-2016-04-09 22:00:00,10698.0
-2016-04-09 23:00:00,10526.0
-2016-04-10 00:00:00,10154.0
-2016-04-08 01:00:00,9712.0
-2016-04-08 02:00:00,9286.0
-2016-04-08 03:00:00,9023.0
-2016-04-08 04:00:00,8878.0
-2016-04-08 05:00:00,8890.0
-2016-04-08 06:00:00,9160.0
-2016-04-08 07:00:00,9823.0
-2016-04-08 08:00:00,10814.0
-2016-04-08 09:00:00,11393.0
-2016-04-08 10:00:00,11750.0
-2016-04-08 11:00:00,11928.0
-2016-04-08 12:00:00,11958.0
-2016-04-08 13:00:00,11838.0
-2016-04-08 14:00:00,11650.0
-2016-04-08 15:00:00,11636.0
-2016-04-08 16:00:00,11538.0
-2016-04-08 17:00:00,11394.0
-2016-04-08 18:00:00,11217.0
-2016-04-08 19:00:00,11118.0
-2016-04-08 20:00:00,11105.0
-2016-04-08 21:00:00,11390.0
-2016-04-08 22:00:00,11617.0
-2016-04-08 23:00:00,11392.0
-2016-04-09 00:00:00,10777.0
-2016-04-07 01:00:00,9465.0
-2016-04-07 02:00:00,9028.0
-2016-04-07 03:00:00,8825.0
-2016-04-07 04:00:00,8669.0
-2016-04-07 05:00:00,8653.0
-2016-04-07 06:00:00,8899.0
-2016-04-07 07:00:00,9660.0
-2016-04-07 08:00:00,10796.0
-2016-04-07 09:00:00,11403.0
-2016-04-07 10:00:00,11665.0
-2016-04-07 11:00:00,11791.0
-2016-04-07 12:00:00,11835.0
-2016-04-07 13:00:00,11752.0
-2016-04-07 14:00:00,11713.0
-2016-04-07 15:00:00,11751.0
-2016-04-07 16:00:00,11639.0
-2016-04-07 17:00:00,11554.0
-2016-04-07 18:00:00,11483.0
-2016-04-07 19:00:00,11337.0
-2016-04-07 20:00:00,11242.0
-2016-04-07 21:00:00,11609.0
-2016-04-07 22:00:00,11598.0
-2016-04-07 23:00:00,11145.0
-2016-04-08 00:00:00,10414.0
-2016-04-06 01:00:00,9678.0
-2016-04-06 02:00:00,9184.0
-2016-04-06 03:00:00,8916.0
-2016-04-06 04:00:00,8775.0
-2016-04-06 05:00:00,8743.0
-2016-04-06 06:00:00,8954.0
-2016-04-06 07:00:00,9646.0
-2016-04-06 08:00:00,10661.0
-2016-04-06 09:00:00,11281.0
-2016-04-06 10:00:00,11548.0
-2016-04-06 11:00:00,11631.0
-2016-04-06 12:00:00,11784.0
-2016-04-06 13:00:00,11787.0
-2016-04-06 14:00:00,11751.0
-2016-04-06 15:00:00,11624.0
-2016-04-06 16:00:00,11519.0
-2016-04-06 17:00:00,11339.0
-2016-04-06 18:00:00,11332.0
-2016-04-06 19:00:00,11390.0
-2016-04-06 20:00:00,11311.0
-2016-04-06 21:00:00,11489.0
-2016-04-06 22:00:00,11350.0
-2016-04-06 23:00:00,10905.0
-2016-04-07 00:00:00,10141.0
-2016-04-05 01:00:00,10035.0
-2016-04-05 02:00:00,9622.0
-2016-04-05 03:00:00,9378.0
-2016-04-05 04:00:00,9287.0
-2016-04-05 05:00:00,9280.0
-2016-04-05 06:00:00,9597.0
-2016-04-05 07:00:00,10338.0
-2016-04-05 08:00:00,11325.0
-2016-04-05 09:00:00,11692.0
-2016-04-05 10:00:00,11754.0
-2016-04-05 11:00:00,11730.0
-2016-04-05 12:00:00,11674.0
-2016-04-05 13:00:00,11613.0
-2016-04-05 14:00:00,11486.0
-2016-04-05 15:00:00,11411.0
-2016-04-05 16:00:00,11201.0
-2016-04-05 17:00:00,11037.0
-2016-04-05 18:00:00,11004.0
-2016-04-05 19:00:00,11106.0
-2016-04-05 20:00:00,11220.0
-2016-04-05 21:00:00,11654.0
-2016-04-05 22:00:00,11609.0
-2016-04-05 23:00:00,11160.0
-2016-04-06 00:00:00,10417.0
-2016-04-04 01:00:00,8554.0
-2016-04-04 02:00:00,8288.0
-2016-04-04 03:00:00,8159.0
-2016-04-04 04:00:00,8138.0
-2016-04-04 05:00:00,8259.0
-2016-04-04 06:00:00,8629.0
-2016-04-04 07:00:00,9438.0
-2016-04-04 08:00:00,10617.0
-2016-04-04 09:00:00,11235.0
-2016-04-04 10:00:00,11540.0
-2016-04-04 11:00:00,11685.0
-2016-04-04 12:00:00,11839.0
-2016-04-04 13:00:00,11859.0
-2016-04-04 14:00:00,11824.0
-2016-04-04 15:00:00,11833.0
-2016-04-04 16:00:00,11729.0
-2016-04-04 17:00:00,11620.0
-2016-04-04 18:00:00,11578.0
-2016-04-04 19:00:00,11585.0
-2016-04-04 20:00:00,11530.0
-2016-04-04 21:00:00,11880.0
-2016-04-04 22:00:00,11916.0
-2016-04-04 23:00:00,11477.0
-2016-04-05 00:00:00,10777.0
-2016-04-03 01:00:00,9565.0
-2016-04-03 02:00:00,9176.0
-2016-04-03 03:00:00,8946.0
-2016-04-03 04:00:00,8752.0
-2016-04-03 05:00:00,8701.0
-2016-04-03 06:00:00,8720.0
-2016-04-03 07:00:00,8871.0
-2016-04-03 08:00:00,9043.0
-2016-04-03 09:00:00,9154.0
-2016-04-03 10:00:00,9325.0
-2016-04-03 11:00:00,9535.0
-2016-04-03 12:00:00,9501.0
-2016-04-03 13:00:00,9440.0
-2016-04-03 14:00:00,9265.0
-2016-04-03 15:00:00,9141.0
-2016-04-03 16:00:00,8968.0
-2016-04-03 17:00:00,8891.0
-2016-04-03 18:00:00,8852.0
-2016-04-03 19:00:00,8957.0
-2016-04-03 20:00:00,9073.0
-2016-04-03 21:00:00,9671.0
-2016-04-03 22:00:00,9765.0
-2016-04-03 23:00:00,9454.0
-2016-04-04 00:00:00,8993.0
-2016-04-02 01:00:00,9489.0
-2016-04-02 02:00:00,9040.0
-2016-04-02 03:00:00,8837.0
-2016-04-02 04:00:00,8714.0
-2016-04-02 05:00:00,8665.0
-2016-04-02 06:00:00,8779.0
-2016-04-02 07:00:00,9056.0
-2016-04-02 08:00:00,9492.0
-2016-04-02 09:00:00,9754.0
-2016-04-02 10:00:00,10230.0
-2016-04-02 11:00:00,10427.0
-2016-04-02 12:00:00,10517.0
-2016-04-02 13:00:00,10423.0
-2016-04-02 14:00:00,10359.0
-2016-04-02 15:00:00,10248.0
-2016-04-02 16:00:00,10139.0
-2016-04-02 17:00:00,9976.0
-2016-04-02 18:00:00,9960.0
-2016-04-02 19:00:00,9896.0
-2016-04-02 20:00:00,9922.0
-2016-04-02 21:00:00,10481.0
-2016-04-02 22:00:00,10707.0
-2016-04-02 23:00:00,10531.0
-2016-04-03 00:00:00,10067.0
-2016-04-01 01:00:00,9116.0
-2016-04-01 02:00:00,8655.0
-2016-04-01 03:00:00,8387.0
-2016-04-01 04:00:00,8236.0
-2016-04-01 05:00:00,8232.0
-2016-04-01 06:00:00,8489.0
-2016-04-01 07:00:00,9098.0
-2016-04-01 08:00:00,10063.0
-2016-04-01 09:00:00,10579.0
-2016-04-01 10:00:00,10901.0
-2016-04-01 11:00:00,11105.0
-2016-04-01 12:00:00,11188.0
-2016-04-01 13:00:00,11104.0
-2016-04-01 14:00:00,10917.0
-2016-04-01 15:00:00,10851.0
-2016-04-01 16:00:00,10704.0
-2016-04-01 17:00:00,10562.0
-2016-04-01 18:00:00,10491.0
-2016-04-01 19:00:00,10547.0
-2016-04-01 20:00:00,10514.0
-2016-04-01 21:00:00,10799.0
-2016-04-01 22:00:00,10942.0
-2016-04-01 23:00:00,10533.0
-2016-04-02 00:00:00,10042.0
-2016-03-31 01:00:00,9179.0
-2016-03-31 02:00:00,8711.0
-2016-03-31 03:00:00,8390.0
-2016-03-31 04:00:00,8230.0
-2016-03-31 05:00:00,8166.0
-2016-03-31 06:00:00,8341.0
-2016-03-31 07:00:00,8913.0
-2016-03-31 08:00:00,9919.0
-2016-03-31 09:00:00,10512.0
-2016-03-31 10:00:00,10915.0
-2016-03-31 11:00:00,11041.0
-2016-03-31 12:00:00,11142.0
-2016-03-31 13:00:00,11213.0
-2016-03-31 14:00:00,11181.0
-2016-03-31 15:00:00,11175.0
-2016-03-31 16:00:00,11012.0
-2016-03-31 17:00:00,10793.0
-2016-03-31 18:00:00,10595.0
-2016-03-31 19:00:00,10529.0
-2016-03-31 20:00:00,10527.0
-2016-03-31 21:00:00,10863.0
-2016-03-31 22:00:00,10786.0
-2016-03-31 23:00:00,10419.0
-2016-04-01 00:00:00,9799.0
-2016-03-30 01:00:00,9184.0
-2016-03-30 02:00:00,8748.0
-2016-03-30 03:00:00,8490.0
-2016-03-30 04:00:00,8334.0
-2016-03-30 05:00:00,8361.0
-2016-03-30 06:00:00,8583.0
-2016-03-30 07:00:00,9224.0
-2016-03-30 08:00:00,10231.0
-2016-03-30 09:00:00,10659.0
-2016-03-30 10:00:00,10960.0
-2016-03-30 11:00:00,11133.0
-2016-03-30 12:00:00,11240.0
-2016-03-30 13:00:00,11204.0
-2016-03-30 14:00:00,11062.0
-2016-03-30 15:00:00,11031.0
-2016-03-30 16:00:00,10897.0
-2016-03-30 17:00:00,10717.0
-2016-03-30 18:00:00,10699.0
-2016-03-30 19:00:00,10726.0
-2016-03-30 20:00:00,10846.0
-2016-03-30 21:00:00,11160.0
-2016-03-30 22:00:00,11001.0
-2016-03-30 23:00:00,10543.0
-2016-03-31 00:00:00,9856.0
-2016-03-29 01:00:00,9411.0
-2016-03-29 02:00:00,9000.0
-2016-03-29 03:00:00,8790.0
-2016-03-29 04:00:00,8661.0
-2016-03-29 05:00:00,8653.0
-2016-03-29 06:00:00,8915.0
-2016-03-29 07:00:00,9650.0
-2016-03-29 08:00:00,10619.0
-2016-03-29 09:00:00,10960.0
-2016-03-29 10:00:00,11021.0
-2016-03-29 11:00:00,10990.0
-2016-03-29 12:00:00,11005.0
-2016-03-29 13:00:00,10952.0
-2016-03-29 14:00:00,10865.0
-2016-03-29 15:00:00,10864.0
-2016-03-29 16:00:00,10737.0
-2016-03-29 17:00:00,10584.0
-2016-03-29 18:00:00,10443.0
-2016-03-29 19:00:00,10313.0
-2016-03-29 20:00:00,10269.0
-2016-03-29 21:00:00,10793.0
-2016-03-29 22:00:00,10870.0
-2016-03-29 23:00:00,10486.0
-2016-03-30 00:00:00,9828.0
-2016-03-28 01:00:00,8488.0
-2016-03-28 02:00:00,8225.0
-2016-03-28 03:00:00,8030.0
-2016-03-28 04:00:00,7979.0
-2016-03-28 05:00:00,8028.0
-2016-03-28 06:00:00,8326.0
-2016-03-28 07:00:00,9058.0
-2016-03-28 08:00:00,10108.0
-2016-03-28 09:00:00,10643.0
-2016-03-28 10:00:00,10861.0
-2016-03-28 11:00:00,11021.0
-2016-03-28 12:00:00,11091.0
-2016-03-28 13:00:00,11061.0
-2016-03-28 14:00:00,10925.0
-2016-03-28 15:00:00,10874.0
-2016-03-28 16:00:00,10728.0
-2016-03-28 17:00:00,10525.0
-2016-03-28 18:00:00,10398.0
-2016-03-28 19:00:00,10322.0
-2016-03-28 20:00:00,10239.0
-2016-03-28 21:00:00,10792.0
-2016-03-28 22:00:00,10971.0
-2016-03-28 23:00:00,10635.0
-2016-03-29 00:00:00,10024.0
-2016-03-27 01:00:00,8794.0
-2016-03-27 02:00:00,8371.0
-2016-03-27 03:00:00,8164.0
-2016-03-27 04:00:00,8009.0
-2016-03-27 05:00:00,7928.0
-2016-03-27 06:00:00,7914.0
-2016-03-27 07:00:00,8069.0
-2016-03-27 08:00:00,8233.0
-2016-03-27 09:00:00,8228.0
-2016-03-27 10:00:00,8423.0
-2016-03-27 11:00:00,8544.0
-2016-03-27 12:00:00,8548.0
-2016-03-27 13:00:00,8552.0
-2016-03-27 14:00:00,8502.0
-2016-03-27 15:00:00,8427.0
-2016-03-27 16:00:00,8378.0
-2016-03-27 17:00:00,8398.0
-2016-03-27 18:00:00,8581.0
-2016-03-27 19:00:00,8799.0
-2016-03-27 20:00:00,9053.0
-2016-03-27 21:00:00,9516.0
-2016-03-27 22:00:00,9592.0
-2016-03-27 23:00:00,9360.0
-2016-03-28 00:00:00,8949.0
-2016-03-26 01:00:00,9277.0
-2016-03-26 02:00:00,8802.0
-2016-03-26 03:00:00,8592.0
-2016-03-26 04:00:00,8442.0
-2016-03-26 05:00:00,8421.0
-2016-03-26 06:00:00,8466.0
-2016-03-26 07:00:00,8749.0
-2016-03-26 08:00:00,9068.0
-2016-03-26 09:00:00,9190.0
-2016-03-26 10:00:00,9448.0
-2016-03-26 11:00:00,9520.0
-2016-03-26 12:00:00,9521.0
-2016-03-26 13:00:00,9404.0
-2016-03-26 14:00:00,9300.0
-2016-03-26 15:00:00,9073.0
-2016-03-26 16:00:00,8948.0
-2016-03-26 17:00:00,8828.0
-2016-03-26 18:00:00,8885.0
-2016-03-26 19:00:00,8952.0
-2016-03-26 20:00:00,9133.0
-2016-03-26 21:00:00,9661.0
-2016-03-26 22:00:00,9830.0
-2016-03-26 23:00:00,9619.0
-2016-03-27 00:00:00,9232.0
-2016-03-25 01:00:00,9939.0
-2016-03-25 02:00:00,9453.0
-2016-03-25 03:00:00,9165.0
-2016-03-25 04:00:00,8978.0
-2016-03-25 05:00:00,8943.0
-2016-03-25 06:00:00,9097.0
-2016-03-25 07:00:00,9616.0
-2016-03-25 08:00:00,10292.0
-2016-03-25 09:00:00,10565.0
-2016-03-25 10:00:00,10756.0
-2016-03-25 11:00:00,10776.0
-2016-03-25 12:00:00,10687.0
-2016-03-25 13:00:00,10553.0
-2016-03-25 14:00:00,10369.0
-2016-03-25 15:00:00,10223.0
-2016-03-25 16:00:00,10049.0
-2016-03-25 17:00:00,9843.0
-2016-03-25 18:00:00,9775.0
-2016-03-25 19:00:00,9726.0
-2016-03-25 20:00:00,9736.0
-2016-03-25 21:00:00,10325.0
-2016-03-25 22:00:00,10455.0
-2016-03-25 23:00:00,10254.0
-2016-03-26 00:00:00,9775.0
-2016-03-24 01:00:00,9723.0
-2016-03-24 02:00:00,9241.0
-2016-03-24 03:00:00,8973.0
-2016-03-24 04:00:00,8802.0
-2016-03-24 05:00:00,8739.0
-2016-03-24 06:00:00,8912.0
-2016-03-24 07:00:00,9576.0
-2016-03-24 08:00:00,10695.0
-2016-03-24 09:00:00,11374.0
-2016-03-24 10:00:00,11576.0
-2016-03-24 11:00:00,11773.0
-2016-03-24 12:00:00,11990.0
-2016-03-24 13:00:00,12108.0
-2016-03-24 14:00:00,12088.0
-2016-03-24 15:00:00,11903.0
-2016-03-24 16:00:00,11629.0
-2016-03-24 17:00:00,11515.0
-2016-03-24 18:00:00,11686.0
-2016-03-24 19:00:00,11628.0
-2016-03-24 20:00:00,11542.0
-2016-03-24 21:00:00,11860.0
-2016-03-24 22:00:00,11777.0
-2016-03-24 23:00:00,11372.0
-2016-03-25 00:00:00,10655.0
-2016-03-23 01:00:00,9178.0
-2016-03-23 02:00:00,8768.0
-2016-03-23 03:00:00,8546.0
-2016-03-23 04:00:00,8419.0
-2016-03-23 05:00:00,8439.0
-2016-03-23 06:00:00,8705.0
-2016-03-23 07:00:00,9411.0
-2016-03-23 08:00:00,10571.0
-2016-03-23 09:00:00,11175.0
-2016-03-23 10:00:00,11361.0
-2016-03-23 11:00:00,11432.0
-2016-03-23 12:00:00,11526.0
-2016-03-23 13:00:00,11415.0
-2016-03-23 14:00:00,11276.0
-2016-03-23 15:00:00,11266.0
-2016-03-23 16:00:00,11282.0
-2016-03-23 17:00:00,11332.0
-2016-03-23 18:00:00,11455.0
-2016-03-23 19:00:00,11537.0
-2016-03-23 20:00:00,11563.0
-2016-03-23 21:00:00,11750.0
-2016-03-23 22:00:00,11501.0
-2016-03-23 23:00:00,11039.0
-2016-03-24 00:00:00,10366.0
-2016-03-22 01:00:00,9429.0
-2016-03-22 02:00:00,9028.0
-2016-03-22 03:00:00,8783.0
-2016-03-22 04:00:00,8642.0
-2016-03-22 05:00:00,8628.0
-2016-03-22 06:00:00,8889.0
-2016-03-22 07:00:00,9588.0
-2016-03-22 08:00:00,10682.0
-2016-03-22 09:00:00,11086.0
-2016-03-22 10:00:00,11261.0
-2016-03-22 11:00:00,11281.0
-2016-03-22 12:00:00,11313.0
-2016-03-22 13:00:00,11199.0
-2016-03-22 14:00:00,11078.0
-2016-03-22 15:00:00,11029.0
-2016-03-22 16:00:00,10855.0
-2016-03-22 17:00:00,10692.0
-2016-03-22 18:00:00,10596.0
-2016-03-22 19:00:00,10509.0
-2016-03-22 20:00:00,10452.0
-2016-03-22 21:00:00,10978.0
-2016-03-22 22:00:00,10905.0
-2016-03-22 23:00:00,10467.0
-2016-03-23 00:00:00,9814.0
-2016-03-21 01:00:00,9088.0
-2016-03-21 02:00:00,8808.0
-2016-03-21 03:00:00,8622.0
-2016-03-21 04:00:00,8588.0
-2016-03-21 05:00:00,8649.0
-2016-03-21 06:00:00,8994.0
-2016-03-21 07:00:00,9737.0
-2016-03-21 08:00:00,10929.0
-2016-03-21 09:00:00,11359.0
-2016-03-21 10:00:00,11443.0
-2016-03-21 11:00:00,11274.0
-2016-03-21 12:00:00,11286.0
-2016-03-21 13:00:00,11189.0
-2016-03-21 14:00:00,11071.0
-2016-03-21 15:00:00,11012.0
-2016-03-21 16:00:00,10834.0
-2016-03-21 17:00:00,10638.0
-2016-03-21 18:00:00,10540.0
-2016-03-21 19:00:00,10526.0
-2016-03-21 20:00:00,10603.0
-2016-03-21 21:00:00,11220.0
-2016-03-21 22:00:00,11202.0
-2016-03-21 23:00:00,10779.0
-2016-03-22 00:00:00,10076.0
-2016-03-20 01:00:00,9176.0
-2016-03-20 02:00:00,8787.0
-2016-03-20 03:00:00,8567.0
-2016-03-20 04:00:00,8394.0
-2016-03-20 05:00:00,8330.0
-2016-03-20 06:00:00,8326.0
-2016-03-20 07:00:00,8503.0
-2016-03-20 08:00:00,8764.0
-2016-03-20 09:00:00,8842.0
-2016-03-20 10:00:00,9024.0
-2016-03-20 11:00:00,9164.0
-2016-03-20 12:00:00,9192.0
-2016-03-20 13:00:00,9230.0
-2016-03-20 14:00:00,9142.0
-2016-03-20 15:00:00,9145.0
-2016-03-20 16:00:00,9069.0
-2016-03-20 17:00:00,9025.0
-2016-03-20 18:00:00,9100.0
-2016-03-20 19:00:00,9277.0
-2016-03-20 20:00:00,9448.0
-2016-03-20 21:00:00,10173.0
-2016-03-20 22:00:00,10264.0
-2016-03-20 23:00:00,9987.0
-2016-03-21 00:00:00,9538.0
-2016-03-19 01:00:00,9496.0
-2016-03-19 02:00:00,9008.0
-2016-03-19 03:00:00,8732.0
-2016-03-19 04:00:00,8554.0
-2016-03-19 05:00:00,8487.0
-2016-03-19 06:00:00,8542.0
-2016-03-19 07:00:00,8835.0
-2016-03-19 08:00:00,9277.0
-2016-03-19 09:00:00,9533.0
-2016-03-19 10:00:00,9822.0
-2016-03-19 11:00:00,9970.0
-2016-03-19 12:00:00,9975.0
-2016-03-19 13:00:00,9878.0
-2016-03-19 14:00:00,9752.0
-2016-03-19 15:00:00,9528.0
-2016-03-19 16:00:00,9441.0
-2016-03-19 17:00:00,9355.0
-2016-03-19 18:00:00,9383.0
-2016-03-19 19:00:00,9480.0
-2016-03-19 20:00:00,9735.0
-2016-03-19 21:00:00,10228.0
-2016-03-19 22:00:00,10286.0
-2016-03-19 23:00:00,10056.0
-2016-03-20 00:00:00,9680.0
-2016-03-18 01:00:00,9247.0
-2016-03-18 02:00:00,8815.0
-2016-03-18 03:00:00,8579.0
-2016-03-18 04:00:00,8467.0
-2016-03-18 05:00:00,8484.0
-2016-03-18 06:00:00,8762.0
-2016-03-18 07:00:00,9507.0
-2016-03-18 08:00:00,10644.0
-2016-03-18 09:00:00,11101.0
-2016-03-18 10:00:00,11201.0
-2016-03-18 11:00:00,11212.0
-2016-03-18 12:00:00,11213.0
-2016-03-18 13:00:00,11093.0
-2016-03-18 14:00:00,10960.0
-2016-03-18 15:00:00,10890.0
-2016-03-18 16:00:00,10721.0
-2016-03-18 17:00:00,10557.0
-2016-03-18 18:00:00,10538.0
-2016-03-18 19:00:00,10606.0
-2016-03-18 20:00:00,10650.0
-2016-03-18 21:00:00,11118.0
-2016-03-18 22:00:00,11010.0
-2016-03-18 23:00:00,10709.0
-2016-03-19 00:00:00,10128.0
-2016-03-17 01:00:00,9312.0
-2016-03-17 02:00:00,8843.0
-2016-03-17 03:00:00,8602.0
-2016-03-17 04:00:00,8448.0
-2016-03-17 05:00:00,8450.0
-2016-03-17 06:00:00,8730.0
-2016-03-17 07:00:00,9418.0
-2016-03-17 08:00:00,10584.0
-2016-03-17 09:00:00,11028.0
-2016-03-17 10:00:00,11066.0
-2016-03-17 11:00:00,11071.0
-2016-03-17 12:00:00,11112.0
-2016-03-17 13:00:00,11071.0
-2016-03-17 14:00:00,10989.0
-2016-03-17 15:00:00,10980.0
-2016-03-17 16:00:00,10801.0
-2016-03-17 17:00:00,10648.0
-2016-03-17 18:00:00,10533.0
-2016-03-17 19:00:00,10435.0
-2016-03-17 20:00:00,10411.0
-2016-03-17 21:00:00,10955.0
-2016-03-17 22:00:00,10964.0
-2016-03-17 23:00:00,10533.0
-2016-03-18 00:00:00,9893.0
-2016-03-16 01:00:00,9220.0
-2016-03-16 02:00:00,8718.0
-2016-03-16 03:00:00,8434.0
-2016-03-16 04:00:00,8291.0
-2016-03-16 05:00:00,8269.0
-2016-03-16 06:00:00,8491.0
-2016-03-16 07:00:00,9175.0
-2016-03-16 08:00:00,10297.0
-2016-03-16 09:00:00,10969.0
-2016-03-16 10:00:00,11097.0
-2016-03-16 11:00:00,11194.0
-2016-03-16 12:00:00,11178.0
-2016-03-16 13:00:00,11104.0
-2016-03-16 14:00:00,11045.0
-2016-03-16 15:00:00,11015.0
-2016-03-16 16:00:00,10873.0
-2016-03-16 17:00:00,10722.0
-2016-03-16 18:00:00,10627.0
-2016-03-16 19:00:00,10581.0
-2016-03-16 20:00:00,10630.0
-2016-03-16 21:00:00,11152.0
-2016-03-16 22:00:00,11083.0
-2016-03-16 23:00:00,10655.0
-2016-03-17 00:00:00,9986.0
-2016-03-15 01:00:00,9282.0
-2016-03-15 02:00:00,8791.0
-2016-03-15 03:00:00,8504.0
-2016-03-15 04:00:00,8339.0
-2016-03-15 05:00:00,8290.0
-2016-03-15 06:00:00,8504.0
-2016-03-15 07:00:00,9170.0
-2016-03-15 08:00:00,10271.0
-2016-03-15 09:00:00,10865.0
-2016-03-15 10:00:00,11011.0
-2016-03-15 11:00:00,11115.0
-2016-03-15 12:00:00,11210.0
-2016-03-15 13:00:00,11151.0
-2016-03-15 14:00:00,11075.0
-2016-03-15 15:00:00,11057.0
-2016-03-15 16:00:00,10924.0
-2016-03-15 17:00:00,10748.0
-2016-03-15 18:00:00,10662.0
-2016-03-15 19:00:00,10573.0
-2016-03-15 20:00:00,10606.0
-2016-03-15 21:00:00,11192.0
-2016-03-15 22:00:00,11062.0
-2016-03-15 23:00:00,10617.0
-2016-03-16 00:00:00,9958.0
-2016-03-14 01:00:00,8878.0
-2016-03-14 02:00:00,8535.0
-2016-03-14 03:00:00,8308.0
-2016-03-14 04:00:00,8184.0
-2016-03-14 05:00:00,8198.0
-2016-03-14 06:00:00,8432.0
-2016-03-14 07:00:00,9160.0
-2016-03-14 08:00:00,10342.0
-2016-03-14 09:00:00,11033.0
-2016-03-14 10:00:00,11167.0
-2016-03-14 11:00:00,11161.0
-2016-03-14 12:00:00,11219.0
-2016-03-14 13:00:00,11156.0
-2016-03-14 14:00:00,11101.0
-2016-03-14 15:00:00,11097.0
-2016-03-14 16:00:00,10959.0
-2016-03-14 17:00:00,10803.0
-2016-03-14 18:00:00,10693.0
-2016-03-14 19:00:00,10652.0
-2016-03-14 20:00:00,10771.0
-2016-03-14 21:00:00,11261.0
-2016-03-14 22:00:00,11079.0
-2016-03-14 23:00:00,10630.0
-2016-03-15 00:00:00,9962.0
-2016-03-13 01:00:00,8648.0
-2016-03-13 02:00:00,8325.0
-2016-03-13 04:00:00,8078.0
-2016-03-13 05:00:00,7969.0
-2016-03-13 06:00:00,7891.0
-2016-03-13 07:00:00,8011.0
-2016-03-13 08:00:00,8225.0
-2016-03-13 09:00:00,8393.0
-2016-03-13 10:00:00,8623.0
-2016-03-13 11:00:00,8909.0
-2016-03-13 12:00:00,9169.0
-2016-03-13 13:00:00,9334.0
-2016-03-13 14:00:00,9420.0
-2016-03-13 15:00:00,9445.0
-2016-03-13 16:00:00,9410.0
-2016-03-13 17:00:00,9405.0
-2016-03-13 18:00:00,9463.0
-2016-03-13 19:00:00,9643.0
-2016-03-13 20:00:00,10052.0
-2016-03-13 21:00:00,10409.0
-2016-03-13 22:00:00,10312.0
-2016-03-13 23:00:00,9970.0
-2016-03-14 00:00:00,9431.0
-2016-03-12 01:00:00,9455.0
-2016-03-12 02:00:00,8961.0
-2016-03-12 03:00:00,8712.0
-2016-03-12 04:00:00,8531.0
-2016-03-12 05:00:00,8482.0
-2016-03-12 06:00:00,8558.0
-2016-03-12 07:00:00,8856.0
-2016-03-12 08:00:00,9054.0
-2016-03-12 09:00:00,9392.0
-2016-03-12 10:00:00,9674.0
-2016-03-12 11:00:00,9847.0
-2016-03-12 12:00:00,9811.0
-2016-03-12 13:00:00,9697.0
-2016-03-12 14:00:00,9524.0
-2016-03-12 15:00:00,9351.0
-2016-03-12 16:00:00,9257.0
-2016-03-12 17:00:00,9227.0
-2016-03-12 18:00:00,9376.0
-2016-03-12 19:00:00,9687.0
-2016-03-12 20:00:00,10136.0
-2016-03-12 21:00:00,10077.0
-2016-03-12 22:00:00,9931.0
-2016-03-12 23:00:00,9586.0
-2016-03-13 00:00:00,9144.0
-2016-03-11 01:00:00,9330.0
-2016-03-11 02:00:00,8949.0
-2016-03-11 03:00:00,8715.0
-2016-03-11 04:00:00,8568.0
-2016-03-11 05:00:00,8590.0
-2016-03-11 06:00:00,8845.0
-2016-03-11 07:00:00,9597.0
-2016-03-11 08:00:00,10734.0
-2016-03-11 09:00:00,10919.0
-2016-03-11 10:00:00,10980.0
-2016-03-11 11:00:00,10970.0
-2016-03-11 12:00:00,10993.0
-2016-03-11 13:00:00,10941.0
-2016-03-11 14:00:00,10850.0
-2016-03-11 15:00:00,10829.0
-2016-03-11 16:00:00,10663.0
-2016-03-11 17:00:00,10529.0
-2016-03-11 18:00:00,10494.0
-2016-03-11 19:00:00,10590.0
-2016-03-11 20:00:00,11198.0
-2016-03-11 21:00:00,11178.0
-2016-03-11 22:00:00,10949.0
-2016-03-11 23:00:00,10649.0
-2016-03-12 00:00:00,10047.0
-2016-03-10 01:00:00,8984.0
-2016-03-10 02:00:00,8539.0
-2016-03-10 03:00:00,8251.0
-2016-03-10 04:00:00,8128.0
-2016-03-10 05:00:00,8116.0
-2016-03-10 06:00:00,8343.0
-2016-03-10 07:00:00,9091.0
-2016-03-10 08:00:00,10029.0
-2016-03-10 09:00:00,10655.0
-2016-03-10 10:00:00,10930.0
-2016-03-10 11:00:00,11054.0
-2016-03-10 12:00:00,11075.0
-2016-03-10 13:00:00,11072.0
-2016-03-10 14:00:00,11031.0
-2016-03-10 15:00:00,11036.0
-2016-03-10 16:00:00,10956.0
-2016-03-10 17:00:00,10864.0
-2016-03-10 18:00:00,10919.0
-2016-03-10 19:00:00,11112.0
-2016-03-10 20:00:00,11566.0
-2016-03-10 21:00:00,11489.0
-2016-03-10 22:00:00,11227.0
-2016-03-10 23:00:00,10747.0
-2016-03-11 00:00:00,9981.0
-2016-03-09 01:00:00,9043.0
-2016-03-09 02:00:00,8573.0
-2016-03-09 03:00:00,8293.0
-2016-03-09 04:00:00,8158.0
-2016-03-09 05:00:00,8119.0
-2016-03-09 06:00:00,8307.0
-2016-03-09 07:00:00,8964.0
-2016-03-09 08:00:00,9896.0
-2016-03-09 09:00:00,10467.0
-2016-03-09 10:00:00,10801.0
-2016-03-09 11:00:00,10926.0
-2016-03-09 12:00:00,11085.0
-2016-03-09 13:00:00,11101.0
-2016-03-09 14:00:00,11140.0
-2016-03-09 15:00:00,11150.0
-2016-03-09 16:00:00,11012.0
-2016-03-09 17:00:00,10860.0
-2016-03-09 18:00:00,10862.0
-2016-03-09 19:00:00,11034.0
-2016-03-09 20:00:00,11433.0
-2016-03-09 21:00:00,11251.0
-2016-03-09 22:00:00,10921.0
-2016-03-09 23:00:00,10425.0
-2016-03-10 00:00:00,9660.0
-2016-03-08 01:00:00,9127.0
-2016-03-08 02:00:00,8662.0
-2016-03-08 03:00:00,8399.0
-2016-03-08 04:00:00,8240.0
-2016-03-08 05:00:00,8212.0
-2016-03-08 06:00:00,8442.0
-2016-03-08 07:00:00,9106.0
-2016-03-08 08:00:00,9971.0
-2016-03-08 09:00:00,10578.0
-2016-03-08 10:00:00,10862.0
-2016-03-08 11:00:00,10947.0
-2016-03-08 12:00:00,11096.0
-2016-03-08 13:00:00,11149.0
-2016-03-08 14:00:00,11136.0
-2016-03-08 15:00:00,11168.0
-2016-03-08 16:00:00,11078.0
-2016-03-08 17:00:00,10954.0
-2016-03-08 18:00:00,10924.0
-2016-03-08 19:00:00,10968.0
-2016-03-08 20:00:00,11480.0
-2016-03-08 21:00:00,11386.0
-2016-03-08 22:00:00,11044.0
-2016-03-08 23:00:00,10496.0
-2016-03-09 00:00:00,9730.0
-2016-03-07 01:00:00,9113.0
-2016-03-07 02:00:00,8786.0
-2016-03-07 03:00:00,8608.0
-2016-03-07 04:00:00,8574.0
-2016-03-07 05:00:00,8561.0
-2016-03-07 06:00:00,8887.0
-2016-03-07 07:00:00,9587.0
-2016-03-07 08:00:00,10480.0
-2016-03-07 09:00:00,10864.0
-2016-03-07 10:00:00,11006.0
-2016-03-07 11:00:00,11017.0
-2016-03-07 12:00:00,11169.0
-2016-03-07 13:00:00,11155.0
-2016-03-07 14:00:00,11053.0
-2016-03-07 15:00:00,11049.0
-2016-03-07 16:00:00,10939.0
-2016-03-07 17:00:00,10788.0
-2016-03-07 18:00:00,10846.0
-2016-03-07 19:00:00,11138.0
-2016-03-07 20:00:00,11540.0
-2016-03-07 21:00:00,11369.0
-2016-03-07 22:00:00,11066.0
-2016-03-07 23:00:00,10570.0
-2016-03-08 00:00:00,9814.0
-2016-03-06 01:00:00,9599.0
-2016-03-06 02:00:00,9234.0
-2016-03-06 03:00:00,8974.0
-2016-03-06 04:00:00,8863.0
-2016-03-06 05:00:00,8758.0
-2016-03-06 06:00:00,8821.0
-2016-03-06 07:00:00,9001.0
-2016-03-06 08:00:00,9107.0
-2016-03-06 09:00:00,9237.0
-2016-03-06 10:00:00,9441.0
-2016-03-06 11:00:00,9575.0
-2016-03-06 12:00:00,9613.0
-2016-03-06 13:00:00,9534.0
-2016-03-06 14:00:00,9446.0
-2016-03-06 15:00:00,9318.0
-2016-03-06 16:00:00,9248.0
-2016-03-06 17:00:00,9220.0
-2016-03-06 18:00:00,9337.0
-2016-03-06 19:00:00,9782.0
-2016-03-06 20:00:00,10561.0
-2016-03-06 21:00:00,10588.0
-2016-03-06 22:00:00,10408.0
-2016-03-06 23:00:00,10072.0
-2016-03-07 00:00:00,9594.0
-2016-03-05 01:00:00,10345.0
-2016-03-05 02:00:00,9852.0
-2016-03-05 03:00:00,9600.0
-2016-03-05 04:00:00,9370.0
-2016-03-05 05:00:00,9347.0
-2016-03-05 06:00:00,9365.0
-2016-03-05 07:00:00,9672.0
-2016-03-05 08:00:00,9930.0
-2016-03-05 09:00:00,10207.0
-2016-03-05 10:00:00,10570.0
-2016-03-05 11:00:00,10813.0
-2016-03-05 12:00:00,10867.0
-2016-03-05 13:00:00,10812.0
-2016-03-05 14:00:00,10702.0
-2016-03-05 15:00:00,10564.0
-2016-03-05 16:00:00,10458.0
-2016-03-05 17:00:00,10412.0
-2016-03-05 18:00:00,10541.0
-2016-03-05 19:00:00,10852.0
-2016-03-05 20:00:00,11170.0
-2016-03-05 21:00:00,11031.0
-2016-03-05 22:00:00,10886.0
-2016-03-05 23:00:00,10600.0
-2016-03-06 00:00:00,10101.0
-2016-03-04 01:00:00,10480.0
-2016-03-04 02:00:00,10054.0
-2016-03-04 03:00:00,9835.0
-2016-03-04 04:00:00,9723.0
-2016-03-04 05:00:00,9795.0
-2016-03-04 06:00:00,10107.0
-2016-03-04 07:00:00,10848.0
-2016-03-04 08:00:00,11692.0
-2016-03-04 09:00:00,12011.0
-2016-03-04 10:00:00,12006.0
-2016-03-04 11:00:00,11927.0
-2016-03-04 12:00:00,11885.0
-2016-03-04 13:00:00,11769.0
-2016-03-04 14:00:00,11632.0
-2016-03-04 15:00:00,11558.0
-2016-03-04 16:00:00,11473.0
-2016-03-04 17:00:00,11316.0
-2016-03-04 18:00:00,11396.0
-2016-03-04 19:00:00,11776.0
-2016-03-04 20:00:00,12250.0
-2016-03-04 21:00:00,12114.0
-2016-03-04 22:00:00,11873.0
-2016-03-04 23:00:00,11560.0
-2016-03-05 00:00:00,10932.0
-2016-03-03 01:00:00,10457.0
-2016-03-03 02:00:00,10075.0
-2016-03-03 03:00:00,9821.0
-2016-03-03 04:00:00,9718.0
-2016-03-03 05:00:00,9697.0
-2016-03-03 06:00:00,9977.0
-2016-03-03 07:00:00,10703.0
-2016-03-03 08:00:00,11699.0
-2016-03-03 09:00:00,12131.0
-2016-03-03 10:00:00,12316.0
-2016-03-03 11:00:00,12404.0
-2016-03-03 12:00:00,12433.0
-2016-03-03 13:00:00,12401.0
-2016-03-03 14:00:00,12321.0
-2016-03-03 15:00:00,12313.0
-2016-03-03 16:00:00,12256.0
-2016-03-03 17:00:00,12178.0
-2016-03-03 18:00:00,12268.0
-2016-03-03 19:00:00,12598.0
-2016-03-03 20:00:00,12840.0
-2016-03-03 21:00:00,12647.0
-2016-03-03 22:00:00,12347.0
-2016-03-03 23:00:00,11864.0
-2016-03-04 00:00:00,11116.0
-2016-03-02 01:00:00,10934.0
-2016-03-02 02:00:00,10539.0
-2016-03-02 03:00:00,10336.0
-2016-03-02 04:00:00,10263.0
-2016-03-02 05:00:00,10279.0
-2016-03-02 06:00:00,10563.0
-2016-03-02 07:00:00,11307.0
-2016-03-02 08:00:00,12226.0
-2016-03-02 09:00:00,12569.0
-2016-03-02 10:00:00,12563.0
-2016-03-02 11:00:00,12460.0
-2016-03-02 12:00:00,12451.0
-2016-03-02 13:00:00,12318.0
-2016-03-02 14:00:00,12152.0
-2016-03-02 15:00:00,12081.0
-2016-03-02 16:00:00,11859.0
-2016-03-02 17:00:00,11713.0
-2016-03-02 18:00:00,11926.0
-2016-03-02 19:00:00,12383.0
-2016-03-02 20:00:00,12815.0
-2016-03-02 21:00:00,12645.0
-2016-03-02 22:00:00,12366.0
-2016-03-02 23:00:00,11845.0
-2016-03-03 00:00:00,11100.0
-2016-03-01 01:00:00,10152.0
-2016-03-01 02:00:00,9794.0
-2016-03-01 03:00:00,9614.0
-2016-03-01 04:00:00,9494.0
-2016-03-01 05:00:00,9501.0
-2016-03-01 06:00:00,9796.0
-2016-03-01 07:00:00,10534.0
-2016-03-01 08:00:00,11599.0
-2016-03-01 09:00:00,12125.0
-2016-03-01 10:00:00,12381.0
-2016-03-01 11:00:00,12541.0
-2016-03-01 12:00:00,12757.0
-2016-03-01 13:00:00,12837.0
-2016-03-01 14:00:00,12780.0
-2016-03-01 15:00:00,12755.0
-2016-03-01 16:00:00,12673.0
-2016-03-01 17:00:00,12570.0
-2016-03-01 18:00:00,12615.0
-2016-03-01 19:00:00,12928.0
-2016-03-01 20:00:00,13384.0
-2016-03-01 21:00:00,13233.0
-2016-03-01 22:00:00,12933.0
-2016-03-01 23:00:00,12382.0
-2016-03-02 00:00:00,11568.0
-2016-02-29 01:00:00,9084.0
-2016-02-29 02:00:00,8776.0
-2016-02-29 03:00:00,8635.0
-2016-02-29 04:00:00,8604.0
-2016-02-29 05:00:00,8700.0
-2016-02-29 06:00:00,9008.0
-2016-02-29 07:00:00,9868.0
-2016-02-29 08:00:00,10893.0
-2016-02-29 09:00:00,11372.0
-2016-02-29 10:00:00,11455.0
-2016-02-29 11:00:00,11486.0
-2016-02-29 12:00:00,11520.0
-2016-02-29 13:00:00,11408.0
-2016-02-29 14:00:00,11258.0
-2016-02-29 15:00:00,11171.0
-2016-02-29 16:00:00,11047.0
-2016-02-29 17:00:00,11054.0
-2016-02-29 18:00:00,11338.0
-2016-02-29 19:00:00,11889.0
-2016-02-29 20:00:00,12235.0
-2016-02-29 21:00:00,12133.0
-2016-02-29 22:00:00,11912.0
-2016-02-29 23:00:00,11460.0
-2016-03-01 00:00:00,10785.0
-2016-02-28 01:00:00,9210.0
-2016-02-28 02:00:00,8870.0
-2016-02-28 03:00:00,8600.0
-2016-02-28 04:00:00,8448.0
-2016-02-28 05:00:00,8342.0
-2016-02-28 06:00:00,8388.0
-2016-02-28 07:00:00,8524.0
-2016-02-28 08:00:00,8644.0
-2016-02-28 09:00:00,8628.0
-2016-02-28 10:00:00,8861.0
-2016-02-28 11:00:00,8985.0
-2016-02-28 12:00:00,9055.0
-2016-02-28 13:00:00,9061.0
-2016-02-28 14:00:00,9037.0
-2016-02-28 15:00:00,9018.0
-2016-02-28 16:00:00,9132.0
-2016-02-28 17:00:00,9265.0
-2016-02-28 18:00:00,9361.0
-2016-02-28 19:00:00,9750.0
-2016-02-28 20:00:00,10287.0
-2016-02-28 21:00:00,10240.0
-2016-02-28 22:00:00,10148.0
-2016-02-28 23:00:00,9894.0
-2016-02-29 00:00:00,9469.0
-2016-02-27 01:00:00,10451.0
-2016-02-27 02:00:00,9990.0
-2016-02-27 03:00:00,9727.0
-2016-02-27 04:00:00,9560.0
-2016-02-27 05:00:00,9544.0
-2016-02-27 06:00:00,9642.0
-2016-02-27 07:00:00,9918.0
-2016-02-27 08:00:00,10201.0
-2016-02-27 09:00:00,10310.0
-2016-02-27 10:00:00,10477.0
-2016-02-27 11:00:00,10528.0
-2016-02-27 12:00:00,10398.0
-2016-02-27 13:00:00,10257.0
-2016-02-27 14:00:00,10020.0
-2016-02-27 15:00:00,9785.0
-2016-02-27 16:00:00,9611.0
-2016-02-27 17:00:00,9504.0
-2016-02-27 18:00:00,9579.0
-2016-02-27 19:00:00,9971.0
-2016-02-27 20:00:00,10615.0
-2016-02-27 21:00:00,10577.0
-2016-02-27 22:00:00,10422.0
-2016-02-27 23:00:00,10178.0
-2016-02-28 00:00:00,9742.0
-2016-02-26 01:00:00,10326.0
-2016-02-26 02:00:00,9898.0
-2016-02-26 03:00:00,9654.0
-2016-02-26 04:00:00,9526.0
-2016-02-26 05:00:00,9528.0
-2016-02-26 06:00:00,9816.0
-2016-02-26 07:00:00,10597.0
-2016-02-26 08:00:00,11513.0
-2016-02-26 09:00:00,11808.0
-2016-02-26 10:00:00,11870.0
-2016-02-26 11:00:00,11962.0
-2016-02-26 12:00:00,12043.0
-2016-02-26 13:00:00,12016.0
-2016-02-26 14:00:00,11977.0
-2016-02-26 15:00:00,12003.0
-2016-02-26 16:00:00,11972.0
-2016-02-26 17:00:00,11945.0
-2016-02-26 18:00:00,12070.0
-2016-02-26 19:00:00,12396.0
-2016-02-26 20:00:00,12483.0
-2016-02-26 21:00:00,12262.0
-2016-02-26 22:00:00,12009.0
-2016-02-26 23:00:00,11677.0
-2016-02-27 00:00:00,11036.0
-2016-02-25 01:00:00,10401.0
-2016-02-25 02:00:00,9971.0
-2016-02-25 03:00:00,9717.0
-2016-02-25 04:00:00,9546.0
-2016-02-25 05:00:00,9595.0
-2016-02-25 06:00:00,9887.0
-2016-02-25 07:00:00,10625.0
-2016-02-25 08:00:00,11652.0
-2016-02-25 09:00:00,12073.0
-2016-02-25 10:00:00,12215.0
-2016-02-25 11:00:00,12241.0
-2016-02-25 12:00:00,12192.0
-2016-02-25 13:00:00,12047.0
-2016-02-25 14:00:00,11962.0
-2016-02-25 15:00:00,12010.0
-2016-02-25 16:00:00,12053.0
-2016-02-25 17:00:00,12059.0
-2016-02-25 18:00:00,12229.0
-2016-02-25 19:00:00,12630.0
-2016-02-25 20:00:00,12736.0
-2016-02-25 21:00:00,12523.0
-2016-02-25 22:00:00,12211.0
-2016-02-25 23:00:00,11726.0
-2016-02-26 00:00:00,10981.0
-2016-02-24 01:00:00,9982.0
-2016-02-24 02:00:00,9562.0
-2016-02-24 03:00:00,9369.0
-2016-02-24 04:00:00,9238.0
-2016-02-24 05:00:00,9260.0
-2016-02-24 06:00:00,9577.0
-2016-02-24 07:00:00,10347.0
-2016-02-24 08:00:00,11431.0
-2016-02-24 09:00:00,11967.0
-2016-02-24 10:00:00,12201.0
-2016-02-24 11:00:00,12357.0
-2016-02-24 12:00:00,12546.0
-2016-02-24 13:00:00,12590.0
-2016-02-24 14:00:00,12563.0
-2016-02-24 15:00:00,12604.0
-2016-02-24 16:00:00,12467.0
-2016-02-24 17:00:00,12440.0
-2016-02-24 18:00:00,12551.0
-2016-02-24 19:00:00,12945.0
-2016-02-24 20:00:00,13051.0
-2016-02-24 21:00:00,12802.0
-2016-02-24 22:00:00,12417.0
-2016-02-24 23:00:00,11873.0
-2016-02-25 00:00:00,11095.0
-2016-02-23 01:00:00,9849.0
-2016-02-23 02:00:00,9480.0
-2016-02-23 03:00:00,9286.0
-2016-02-23 04:00:00,9233.0
-2016-02-23 05:00:00,9244.0
-2016-02-23 06:00:00,9513.0
-2016-02-23 07:00:00,10314.0
-2016-02-23 08:00:00,11314.0
-2016-02-23 09:00:00,11736.0
-2016-02-23 10:00:00,11818.0
-2016-02-23 11:00:00,11722.0
-2016-02-23 12:00:00,11626.0
-2016-02-23 13:00:00,11507.0
-2016-02-23 14:00:00,11376.0
-2016-02-23 15:00:00,11302.0
-2016-02-23 16:00:00,11215.0
-2016-02-23 17:00:00,11098.0
-2016-02-23 18:00:00,11201.0
-2016-02-23 19:00:00,11758.0
-2016-02-23 20:00:00,12185.0
-2016-02-23 21:00:00,12074.0
-2016-02-23 22:00:00,11820.0
-2016-02-23 23:00:00,11342.0
-2016-02-24 00:00:00,10655.0
-2016-02-22 01:00:00,9271.0
-2016-02-22 02:00:00,9024.0
-2016-02-22 03:00:00,8924.0
-2016-02-22 04:00:00,8873.0
-2016-02-22 05:00:00,8980.0
-2016-02-22 06:00:00,9316.0
-2016-02-22 07:00:00,10123.0
-2016-02-22 08:00:00,11185.0
-2016-02-22 09:00:00,11630.0
-2016-02-22 10:00:00,11678.0
-2016-02-22 11:00:00,11580.0
-2016-02-22 12:00:00,11526.0
-2016-02-22 13:00:00,11457.0
-2016-02-22 14:00:00,11358.0
-2016-02-22 15:00:00,11332.0
-2016-02-22 16:00:00,11201.0
-2016-02-22 17:00:00,11137.0
-2016-02-22 18:00:00,11311.0
-2016-02-22 19:00:00,11889.0
-2016-02-22 20:00:00,12116.0
-2016-02-22 21:00:00,11941.0
-2016-02-22 22:00:00,11680.0
-2016-02-22 23:00:00,11212.0
-2016-02-23 00:00:00,10491.0
-2016-02-21 01:00:00,8929.0
-2016-02-21 02:00:00,8631.0
-2016-02-21 03:00:00,8388.0
-2016-02-21 04:00:00,8300.0
-2016-02-21 05:00:00,8262.0
-2016-02-21 06:00:00,8320.0
-2016-02-21 07:00:00,8475.0
-2016-02-21 08:00:00,8708.0
-2016-02-21 09:00:00,8744.0
-2016-02-21 10:00:00,9053.0
-2016-02-21 11:00:00,9301.0
-2016-02-21 12:00:00,9514.0
-2016-02-21 13:00:00,9550.0
-2016-02-21 14:00:00,9607.0
-2016-02-21 15:00:00,9518.0
-2016-02-21 16:00:00,9511.0
-2016-02-21 17:00:00,9536.0
-2016-02-21 18:00:00,9823.0
-2016-02-21 19:00:00,10513.0
-2016-02-21 20:00:00,10887.0
-2016-02-21 21:00:00,10818.0
-2016-02-21 22:00:00,10520.0
-2016-02-21 23:00:00,10215.0
-2016-02-22 00:00:00,9735.0
-2016-02-20 01:00:00,9552.0
-2016-02-20 02:00:00,9118.0
-2016-02-20 03:00:00,8860.0
-2016-02-20 04:00:00,8699.0
-2016-02-20 05:00:00,8630.0
-2016-02-20 06:00:00,8719.0
-2016-02-20 07:00:00,8992.0
-2016-02-20 08:00:00,9307.0
-2016-02-20 09:00:00,9404.0
-2016-02-20 10:00:00,9654.0
-2016-02-20 11:00:00,9766.0
-2016-02-20 12:00:00,9716.0
-2016-02-20 13:00:00,9618.0
-2016-02-20 14:00:00,9523.0
-2016-02-20 15:00:00,9348.0
-2016-02-20 16:00:00,9167.0
-2016-02-20 17:00:00,9071.0
-2016-02-20 18:00:00,9171.0
-2016-02-20 19:00:00,9694.0
-2016-02-20 20:00:00,10234.0
-2016-02-20 21:00:00,10146.0
-2016-02-20 22:00:00,10049.0
-2016-02-20 23:00:00,9807.0
-2016-02-21 00:00:00,9409.0
-2016-02-19 01:00:00,10270.0
-2016-02-19 02:00:00,9794.0
-2016-02-19 03:00:00,9551.0
-2016-02-19 04:00:00,9385.0
-2016-02-19 05:00:00,9330.0
-2016-02-19 06:00:00,9528.0
-2016-02-19 07:00:00,10155.0
-2016-02-19 08:00:00,11142.0
-2016-02-19 09:00:00,11434.0
-2016-02-19 10:00:00,11450.0
-2016-02-19 11:00:00,11403.0
-2016-02-19 12:00:00,11327.0
-2016-02-19 13:00:00,11221.0
-2016-02-19 14:00:00,11069.0
-2016-02-19 15:00:00,10920.0
-2016-02-19 16:00:00,10762.0
-2016-02-19 17:00:00,10726.0
-2016-02-19 18:00:00,10845.0
-2016-02-19 19:00:00,11160.0
-2016-02-19 20:00:00,11525.0
-2016-02-19 21:00:00,11396.0
-2016-02-19 22:00:00,11132.0
-2016-02-19 23:00:00,10753.0
-2016-02-20 00:00:00,10140.0
-2016-02-18 01:00:00,10759.0
-2016-02-18 02:00:00,10325.0
-2016-02-18 03:00:00,10107.0
-2016-02-18 04:00:00,10009.0
-2016-02-18 05:00:00,10022.0
-2016-02-18 06:00:00,10315.0
-2016-02-18 07:00:00,11059.0
-2016-02-18 08:00:00,12124.0
-2016-02-18 09:00:00,12446.0
-2016-02-18 10:00:00,12628.0
-2016-02-18 11:00:00,12674.0
-2016-02-18 12:00:00,12564.0
-2016-02-18 13:00:00,12482.0
-2016-02-18 14:00:00,12283.0
-2016-02-18 15:00:00,12154.0
-2016-02-18 16:00:00,12071.0
-2016-02-18 17:00:00,12081.0
-2016-02-18 18:00:00,12188.0
-2016-02-18 19:00:00,12687.0
-2016-02-18 20:00:00,12858.0
-2016-02-18 21:00:00,12652.0
-2016-02-18 22:00:00,12304.0
-2016-02-18 23:00:00,11778.0
-2016-02-19 00:00:00,11004.0
-2016-02-17 01:00:00,10662.0
-2016-02-17 02:00:00,10221.0
-2016-02-17 03:00:00,9958.0
-2016-02-17 04:00:00,9900.0
-2016-02-17 05:00:00,9887.0
-2016-02-17 06:00:00,10190.0
-2016-02-17 07:00:00,10948.0
-2016-02-17 08:00:00,12007.0
-2016-02-17 09:00:00,12322.0
-2016-02-17 10:00:00,12334.0
-2016-02-17 11:00:00,12233.0
-2016-02-17 12:00:00,12198.0
-2016-02-17 13:00:00,12133.0
-2016-02-17 14:00:00,12051.0
-2016-02-17 15:00:00,12014.0
-2016-02-17 16:00:00,11856.0
-2016-02-17 17:00:00,11782.0
-2016-02-17 18:00:00,11965.0
-2016-02-17 19:00:00,12603.0
-2016-02-17 20:00:00,13012.0
-2016-02-17 21:00:00,12900.0
-2016-02-17 22:00:00,12648.0
-2016-02-17 23:00:00,12156.0
-2016-02-18 00:00:00,11444.0
-2016-02-16 01:00:00,10853.0
-2016-02-16 02:00:00,10424.0
-2016-02-16 03:00:00,10190.0
-2016-02-16 04:00:00,10041.0
-2016-02-16 05:00:00,10060.0
-2016-02-16 06:00:00,10356.0
-2016-02-16 07:00:00,11074.0
-2016-02-16 08:00:00,12131.0
-2016-02-16 09:00:00,12468.0
-2016-02-16 10:00:00,12654.0
-2016-02-16 11:00:00,12671.0
-2016-02-16 12:00:00,12598.0
-2016-02-16 13:00:00,12434.0
-2016-02-16 14:00:00,12284.0
-2016-02-16 15:00:00,12326.0
-2016-02-16 16:00:00,12297.0
-2016-02-16 17:00:00,12365.0
-2016-02-16 18:00:00,12484.0
-2016-02-16 19:00:00,12981.0
-2016-02-16 20:00:00,13123.0
-2016-02-16 21:00:00,12962.0
-2016-02-16 22:00:00,12684.0
-2016-02-16 23:00:00,12092.0
-2016-02-17 00:00:00,11318.0
-2016-02-15 01:00:00,11061.0
-2016-02-15 02:00:00,10686.0
-2016-02-15 03:00:00,10533.0
-2016-02-15 04:00:00,10348.0
-2016-02-15 05:00:00,10413.0
-2016-02-15 06:00:00,10591.0
-2016-02-15 07:00:00,11204.0
-2016-02-15 08:00:00,12013.0
-2016-02-15 09:00:00,12379.0
-2016-02-15 10:00:00,12706.0
-2016-02-15 11:00:00,12906.0
-2016-02-15 12:00:00,12983.0
-2016-02-15 13:00:00,12904.0
-2016-02-15 14:00:00,12790.0
-2016-02-15 15:00:00,12755.0
-2016-02-15 16:00:00,12693.0
-2016-02-15 17:00:00,12648.0
-2016-02-15 18:00:00,12808.0
-2016-02-15 19:00:00,13294.0
-2016-02-15 20:00:00,13385.0
-2016-02-15 21:00:00,13164.0
-2016-02-15 22:00:00,12858.0
-2016-02-15 23:00:00,12358.0
-2016-02-16 00:00:00,11567.0
-2016-02-14 01:00:00,11428.0
-2016-02-14 02:00:00,11018.0
-2016-02-14 03:00:00,10820.0
-2016-02-14 04:00:00,10650.0
-2016-02-14 05:00:00,10571.0
-2016-02-14 06:00:00,10604.0
-2016-02-14 07:00:00,10741.0
-2016-02-14 08:00:00,11018.0
-2016-02-14 09:00:00,11019.0
-2016-02-14 10:00:00,11312.0
-2016-02-14 11:00:00,11565.0
-2016-02-14 12:00:00,11783.0
-2016-02-14 13:00:00,11939.0
-2016-02-14 14:00:00,11885.0
-2016-02-14 15:00:00,11845.0
-2016-02-14 16:00:00,11704.0
-2016-02-14 17:00:00,11751.0
-2016-02-14 18:00:00,11938.0
-2016-02-14 19:00:00,12590.0
-2016-02-14 20:00:00,12877.0
-2016-02-14 21:00:00,12751.0
-2016-02-14 22:00:00,12442.0
-2016-02-14 23:00:00,12113.0
-2016-02-15 00:00:00,11573.0
-2016-02-13 01:00:00,12079.0
-2016-02-13 02:00:00,11649.0
-2016-02-13 03:00:00,11416.0
-2016-02-13 04:00:00,11236.0
-2016-02-13 05:00:00,11232.0
-2016-02-13 06:00:00,11310.0
-2016-02-13 07:00:00,11578.0
-2016-02-13 08:00:00,11953.0
-2016-02-13 09:00:00,12066.0
-2016-02-13 10:00:00,12263.0
-2016-02-13 11:00:00,12348.0
-2016-02-13 12:00:00,12326.0
-2016-02-13 13:00:00,12215.0
-2016-02-13 14:00:00,11995.0
-2016-02-13 15:00:00,11751.0
-2016-02-13 16:00:00,11493.0
-2016-02-13 17:00:00,11416.0
-2016-02-13 18:00:00,11625.0
-2016-02-13 19:00:00,12471.0
-2016-02-13 20:00:00,12842.0
-2016-02-13 21:00:00,12869.0
-2016-02-13 22:00:00,12653.0
-2016-02-13 23:00:00,12394.0
-2016-02-14 00:00:00,11927.0
-2016-02-12 01:00:00,11415.0
-2016-02-12 02:00:00,10970.0
-2016-02-12 03:00:00,10697.0
-2016-02-12 04:00:00,10577.0
-2016-02-12 05:00:00,10590.0
-2016-02-12 06:00:00,10838.0
-2016-02-12 07:00:00,11536.0
-2016-02-12 08:00:00,12534.0
-2016-02-12 09:00:00,13038.0
-2016-02-12 10:00:00,13295.0
-2016-02-12 11:00:00,13387.0
-2016-02-12 12:00:00,13298.0
-2016-02-12 13:00:00,13199.0
-2016-02-12 14:00:00,13031.0
-2016-02-12 15:00:00,12941.0
-2016-02-12 16:00:00,12834.0
-2016-02-12 17:00:00,12771.0
-2016-02-12 18:00:00,12906.0
-2016-02-12 19:00:00,13558.0
-2016-02-12 20:00:00,13910.0
-2016-02-12 21:00:00,13755.0
-2016-02-12 22:00:00,13538.0
-2016-02-12 23:00:00,13241.0
-2016-02-13 00:00:00,12640.0
-2016-02-11 01:00:00,11756.0
-2016-02-11 02:00:00,11350.0
-2016-02-11 03:00:00,11127.0
-2016-02-11 04:00:00,11026.0
-2016-02-11 05:00:00,11072.0
-2016-02-11 06:00:00,11375.0
-2016-02-11 07:00:00,12094.0
-2016-02-11 08:00:00,13092.0
-2016-02-11 09:00:00,13446.0
-2016-02-11 10:00:00,13437.0
-2016-02-11 11:00:00,13353.0
-2016-02-11 12:00:00,13260.0
-2016-02-11 13:00:00,13107.0
-2016-02-11 14:00:00,12929.0
-2016-02-11 15:00:00,12843.0
-2016-02-11 16:00:00,12606.0
-2016-02-11 17:00:00,12512.0
-2016-02-11 18:00:00,12685.0
-2016-02-11 19:00:00,13386.0
-2016-02-11 20:00:00,13670.0
-2016-02-11 21:00:00,13566.0
-2016-02-11 22:00:00,13298.0
-2016-02-11 23:00:00,12830.0
-2016-02-12 00:00:00,12130.0
-2016-02-10 01:00:00,11644.0
-2016-02-10 02:00:00,11246.0
-2016-02-10 03:00:00,11046.0
-2016-02-10 04:00:00,10933.0
-2016-02-10 05:00:00,10957.0
-2016-02-10 06:00:00,11261.0
-2016-02-10 07:00:00,12008.0
-2016-02-10 08:00:00,13047.0
-2016-02-10 09:00:00,13387.0
-2016-02-10 10:00:00,13385.0
-2016-02-10 11:00:00,13384.0
-2016-02-10 12:00:00,13373.0
-2016-02-10 13:00:00,13235.0
-2016-02-10 14:00:00,13087.0
-2016-02-10 15:00:00,13040.0
-2016-02-10 16:00:00,12892.0
-2016-02-10 17:00:00,12820.0
-2016-02-10 18:00:00,13034.0
-2016-02-10 19:00:00,13754.0
-2016-02-10 20:00:00,13978.0
-2016-02-10 21:00:00,13835.0
-2016-02-10 22:00:00,13611.0
-2016-02-10 23:00:00,13149.0
-2016-02-11 00:00:00,12396.0
-2016-02-09 01:00:00,10941.0
-2016-02-09 02:00:00,10546.0
-2016-02-09 03:00:00,10393.0
-2016-02-09 04:00:00,10294.0
-2016-02-09 05:00:00,10352.0
-2016-02-09 06:00:00,10661.0
-2016-02-09 07:00:00,11412.0
-2016-02-09 08:00:00,12530.0
-2016-02-09 09:00:00,12949.0
-2016-02-09 10:00:00,13110.0
-2016-02-09 11:00:00,13155.0
-2016-02-09 12:00:00,13130.0
-2016-02-09 13:00:00,13014.0
-2016-02-09 14:00:00,13016.0
-2016-02-09 15:00:00,13141.0
-2016-02-09 16:00:00,13150.0
-2016-02-09 17:00:00,13153.0
-2016-02-09 18:00:00,13356.0
-2016-02-09 19:00:00,13941.0
-2016-02-09 20:00:00,14012.0
-2016-02-09 21:00:00,13817.0
-2016-02-09 22:00:00,13578.0
-2016-02-09 23:00:00,13071.0
-2016-02-10 00:00:00,12308.0
-2016-02-08 01:00:00,9627.0
-2016-02-08 02:00:00,9296.0
-2016-02-08 03:00:00,9168.0
-2016-02-08 04:00:00,9119.0
-2016-02-08 05:00:00,9211.0
-2016-02-08 06:00:00,9517.0
-2016-02-08 07:00:00,10307.0
-2016-02-08 08:00:00,11448.0
-2016-02-08 09:00:00,12076.0
-2016-02-08 10:00:00,12261.0
-2016-02-08 11:00:00,12370.0
-2016-02-08 12:00:00,12485.0
-2016-02-08 13:00:00,12552.0
-2016-02-08 14:00:00,12564.0
-2016-02-08 15:00:00,12581.0
-2016-02-08 16:00:00,12502.0
-2016-02-08 17:00:00,12502.0
-2016-02-08 18:00:00,12729.0
-2016-02-08 19:00:00,13289.0
-2016-02-08 20:00:00,13291.0
-2016-02-08 21:00:00,13106.0
-2016-02-08 22:00:00,12808.0
-2016-02-08 23:00:00,12323.0
-2016-02-09 00:00:00,11584.0
-2016-02-07 01:00:00,9870.0
-2016-02-07 02:00:00,9526.0
-2016-02-07 03:00:00,9248.0
-2016-02-07 04:00:00,9070.0
-2016-02-07 05:00:00,9020.0
-2016-02-07 06:00:00,8972.0
-2016-02-07 07:00:00,9116.0
-2016-02-07 08:00:00,9375.0
-2016-02-07 09:00:00,9400.0
-2016-02-07 10:00:00,9597.0
-2016-02-07 11:00:00,9727.0
-2016-02-07 12:00:00,9814.0
-2016-02-07 13:00:00,9887.0
-2016-02-07 14:00:00,9834.0
-2016-02-07 15:00:00,9901.0
-2016-02-07 16:00:00,9867.0
-2016-02-07 17:00:00,9833.0
-2016-02-07 18:00:00,10002.0
-2016-02-07 19:00:00,10702.0
-2016-02-07 20:00:00,10910.0
-2016-02-07 21:00:00,10847.0
-2016-02-07 22:00:00,10697.0
-2016-02-07 23:00:00,10508.0
-2016-02-08 00:00:00,10092.0
-2016-02-06 01:00:00,10530.0
-2016-02-06 02:00:00,10160.0
-2016-02-06 03:00:00,9827.0
-2016-02-06 04:00:00,9671.0
-2016-02-06 05:00:00,9632.0
-2016-02-06 06:00:00,9720.0
-2016-02-06 07:00:00,9996.0
-2016-02-06 08:00:00,10498.0
-2016-02-06 09:00:00,10675.0
-2016-02-06 10:00:00,10844.0
-2016-02-06 11:00:00,10915.0
-2016-02-06 12:00:00,10920.0
-2016-02-06 13:00:00,10886.0
-2016-02-06 14:00:00,10668.0
-2016-02-06 15:00:00,10397.0
-2016-02-06 16:00:00,10205.0
-2016-02-06 17:00:00,10143.0
-2016-02-06 18:00:00,10259.0
-2016-02-06 19:00:00,11048.0
-2016-02-06 20:00:00,11303.0
-2016-02-06 21:00:00,11234.0
-2016-02-06 22:00:00,11100.0
-2016-02-06 23:00:00,10826.0
-2016-02-07 00:00:00,10409.0
-2016-02-05 01:00:00,10616.0
-2016-02-05 02:00:00,10197.0
-2016-02-05 03:00:00,9926.0
-2016-02-05 04:00:00,9820.0
-2016-02-05 05:00:00,9800.0
-2016-02-05 06:00:00,10040.0
-2016-02-05 07:00:00,10761.0
-2016-02-05 08:00:00,11815.0
-2016-02-05 09:00:00,12330.0
-2016-02-05 10:00:00,12503.0
-2016-02-05 11:00:00,12553.0
-2016-02-05 12:00:00,12505.0
-2016-02-05 13:00:00,12356.0
-2016-02-05 14:00:00,12210.0
-2016-02-05 15:00:00,12133.0
-2016-02-05 16:00:00,11980.0
-2016-02-05 17:00:00,11983.0
-2016-02-05 18:00:00,12226.0
-2016-02-05 19:00:00,12746.0
-2016-02-05 20:00:00,12651.0
-2016-02-05 21:00:00,12409.0
-2016-02-05 22:00:00,12213.0
-2016-02-05 23:00:00,11842.0
-2016-02-06 00:00:00,11205.0
-2016-02-04 01:00:00,10634.0
-2016-02-04 02:00:00,10184.0
-2016-02-04 03:00:00,9944.0
-2016-02-04 04:00:00,9817.0
-2016-02-04 05:00:00,9838.0
-2016-02-04 06:00:00,10167.0
-2016-02-04 07:00:00,10956.0
-2016-02-04 08:00:00,12165.0
-2016-02-04 09:00:00,12647.0
-2016-02-04 10:00:00,12628.0
-2016-02-04 11:00:00,12545.0
-2016-02-04 12:00:00,12498.0
-2016-02-04 13:00:00,12393.0
-2016-02-04 14:00:00,12280.0
-2016-02-04 15:00:00,12140.0
-2016-02-04 16:00:00,11978.0
-2016-02-04 17:00:00,11939.0
-2016-02-04 18:00:00,12212.0
-2016-02-04 19:00:00,12910.0
-2016-02-04 20:00:00,13011.0
-2016-02-04 21:00:00,12826.0
-2016-02-04 22:00:00,12532.0
-2016-02-04 23:00:00,12080.0
-2016-02-05 00:00:00,11300.0
-2016-02-03 01:00:00,10117.0
-2016-02-03 02:00:00,9647.0
-2016-02-03 03:00:00,9393.0
-2016-02-03 04:00:00,9315.0
-2016-02-03 05:00:00,9306.0
-2016-02-03 06:00:00,9587.0
-2016-02-03 07:00:00,10338.0
-2016-02-03 08:00:00,11454.0
-2016-02-03 09:00:00,11989.0
-2016-02-03 10:00:00,12147.0
-2016-02-03 11:00:00,12235.0
-2016-02-03 12:00:00,12400.0
-2016-02-03 13:00:00,12396.0
-2016-02-03 14:00:00,12401.0
-2016-02-03 15:00:00,12440.0
-2016-02-03 16:00:00,12333.0
-2016-02-03 17:00:00,12363.0
-2016-02-03 18:00:00,12674.0
-2016-02-03 19:00:00,13131.0
-2016-02-03 20:00:00,13004.0
-2016-02-03 21:00:00,12791.0
-2016-02-03 22:00:00,12501.0
-2016-02-03 23:00:00,12008.0
-2016-02-04 00:00:00,11292.0
-2016-02-02 01:00:00,10112.0
-2016-02-02 02:00:00,9684.0
-2016-02-02 03:00:00,9423.0
-2016-02-02 04:00:00,9278.0
-2016-02-02 05:00:00,9300.0
-2016-02-02 06:00:00,9607.0
-2016-02-02 07:00:00,10385.0
-2016-02-02 08:00:00,11515.0
-2016-02-02 09:00:00,12105.0
-2016-02-02 10:00:00,12232.0
-2016-02-02 11:00:00,12354.0
-2016-02-02 12:00:00,12555.0
-2016-02-02 13:00:00,12680.0
-2016-02-02 14:00:00,12789.0
-2016-02-02 15:00:00,12852.0
-2016-02-02 16:00:00,12734.0
-2016-02-02 17:00:00,12789.0
-2016-02-02 18:00:00,12966.0
-2016-02-02 19:00:00,13173.0
-2016-02-02 20:00:00,12908.0
-2016-02-02 21:00:00,12604.0
-2016-02-02 22:00:00,12243.0
-2016-02-02 23:00:00,11621.0
-2016-02-03 00:00:00,10847.0
-2016-02-01 01:00:00,9487.0
-2016-02-01 02:00:00,9210.0
-2016-02-01 03:00:00,9074.0
-2016-02-01 04:00:00,9047.0
-2016-02-01 05:00:00,9070.0
-2016-02-01 06:00:00,9446.0
-2016-02-01 07:00:00,10219.0
-2016-02-01 08:00:00,11426.0
-2016-02-01 09:00:00,11864.0
-2016-02-01 10:00:00,11964.0
-2016-02-01 11:00:00,11931.0
-2016-02-01 12:00:00,11805.0
-2016-02-01 13:00:00,11672.0
-2016-02-01 14:00:00,11550.0
-2016-02-01 15:00:00,11485.0
-2016-02-01 16:00:00,11312.0
-2016-02-01 17:00:00,11234.0
-2016-02-01 18:00:00,11433.0
-2016-02-01 19:00:00,12251.0
-2016-02-01 20:00:00,12375.0
-2016-02-01 21:00:00,12230.0
-2016-02-01 22:00:00,11973.0
-2016-02-01 23:00:00,11544.0
-2016-02-02 00:00:00,10841.0
-2016-01-31 01:00:00,9323.0
-2016-01-31 02:00:00,8930.0
-2016-01-31 03:00:00,8688.0
-2016-01-31 04:00:00,8498.0
-2016-01-31 05:00:00,8443.0
-2016-01-31 06:00:00,8457.0
-2016-01-31 07:00:00,8616.0
-2016-01-31 08:00:00,8885.0
-2016-01-31 09:00:00,9036.0
-2016-01-31 10:00:00,9215.0
-2016-01-31 11:00:00,9448.0
-2016-01-31 12:00:00,9586.0
-2016-01-31 13:00:00,9773.0
-2016-01-31 14:00:00,9778.0
-2016-01-31 15:00:00,9745.0
-2016-01-31 16:00:00,9761.0
-2016-01-31 17:00:00,9922.0
-2016-01-31 18:00:00,10281.0
-2016-01-31 19:00:00,10951.0
-2016-01-31 20:00:00,11057.0
-2016-01-31 21:00:00,10988.0
-2016-01-31 22:00:00,10770.0
-2016-01-31 23:00:00,10464.0
-2016-02-01 00:00:00,9968.0
-2016-01-30 01:00:00,10479.0
-2016-01-30 02:00:00,10092.0
-2016-01-30 03:00:00,9647.0
-2016-01-30 04:00:00,9391.0
-2016-01-30 05:00:00,9367.0
-2016-01-30 06:00:00,9388.0
-2016-01-30 07:00:00,9643.0
-2016-01-30 08:00:00,10050.0
-2016-01-30 09:00:00,10189.0
-2016-01-30 10:00:00,10488.0
-2016-01-30 11:00:00,10697.0
-2016-01-30 12:00:00,10566.0
-2016-01-30 13:00:00,10401.0
-2016-01-30 14:00:00,10193.0
-2016-01-30 15:00:00,10021.0
-2016-01-30 16:00:00,9922.0
-2016-01-30 17:00:00,9906.0
-2016-01-30 18:00:00,10166.0
-2016-01-30 19:00:00,10872.0
-2016-01-30 20:00:00,10926.0
-2016-01-30 21:00:00,10811.0
-2016-01-30 22:00:00,10596.0
-2016-01-30 23:00:00,10320.0
-2016-01-31 00:00:00,9815.0
-2016-01-29 01:00:00,10471.0
-2016-01-29 02:00:00,10050.0
-2016-01-29 03:00:00,9836.0
-2016-01-29 04:00:00,9726.0
-2016-01-29 05:00:00,9759.0
-2016-01-29 06:00:00,10058.0
-2016-01-29 07:00:00,10803.0
-2016-01-29 08:00:00,11965.0
-2016-01-29 09:00:00,12401.0
-2016-01-29 10:00:00,12363.0
-2016-01-29 11:00:00,12315.0
-2016-01-29 12:00:00,12266.0
-2016-01-29 13:00:00,12148.0
-2016-01-29 14:00:00,12016.0
-2016-01-29 15:00:00,11936.0
-2016-01-29 16:00:00,11812.0
-2016-01-29 17:00:00,11769.0
-2016-01-29 18:00:00,11993.0
-2016-01-29 19:00:00,12671.0
-2016-01-29 20:00:00,12675.0
-2016-01-29 21:00:00,12460.0
-2016-01-29 22:00:00,12177.0
-2016-01-29 23:00:00,11801.0
-2016-01-30 00:00:00,11086.0
-2016-01-28 01:00:00,10628.0
-2016-01-28 02:00:00,10188.0
-2016-01-28 03:00:00,9922.0
-2016-01-28 04:00:00,9794.0
-2016-01-28 05:00:00,9792.0
-2016-01-28 06:00:00,10033.0
-2016-01-28 07:00:00,10777.0
-2016-01-28 08:00:00,11874.0
-2016-01-28 09:00:00,12264.0
-2016-01-28 10:00:00,12265.0
-2016-01-28 11:00:00,12319.0
-2016-01-28 12:00:00,12349.0
-2016-01-28 13:00:00,12352.0
-2016-01-28 14:00:00,12270.0
-2016-01-28 15:00:00,12250.0
-2016-01-28 16:00:00,12181.0
-2016-01-28 17:00:00,12298.0
-2016-01-28 18:00:00,12616.0
-2016-01-28 19:00:00,13043.0
-2016-01-28 20:00:00,12877.0
-2016-01-28 21:00:00,12674.0
-2016-01-28 22:00:00,12416.0
-2016-01-28 23:00:00,11924.0
-2016-01-29 00:00:00,11172.0
-2016-01-27 01:00:00,10816.0
-2016-01-27 02:00:00,10371.0
-2016-01-27 03:00:00,10117.0
-2016-01-27 04:00:00,9980.0
-2016-01-27 05:00:00,10006.0
-2016-01-27 06:00:00,10225.0
-2016-01-27 07:00:00,11015.0
-2016-01-27 08:00:00,12135.0
-2016-01-27 09:00:00,12691.0
-2016-01-27 10:00:00,12803.0
-2016-01-27 11:00:00,12861.0
-2016-01-27 12:00:00,12852.0
-2016-01-27 13:00:00,12621.0
-2016-01-27 14:00:00,12384.0
-2016-01-27 15:00:00,12265.0
-2016-01-27 16:00:00,12111.0
-2016-01-27 17:00:00,12051.0
-2016-01-27 18:00:00,12421.0
-2016-01-27 19:00:00,13209.0
-2016-01-27 20:00:00,13126.0
-2016-01-27 21:00:00,12954.0
-2016-01-27 22:00:00,12661.0
-2016-01-27 23:00:00,12119.0
-2016-01-28 00:00:00,11340.0
-2016-01-26 01:00:00,10314.0
-2016-01-26 02:00:00,9904.0
-2016-01-26 03:00:00,9719.0
-2016-01-26 04:00:00,9646.0
-2016-01-26 05:00:00,9716.0
-2016-01-26 06:00:00,10003.0
-2016-01-26 07:00:00,10777.0
-2016-01-26 08:00:00,11920.0
-2016-01-26 09:00:00,12566.0
-2016-01-26 10:00:00,12638.0
-2016-01-26 11:00:00,12677.0
-2016-01-26 12:00:00,12765.0
-2016-01-26 13:00:00,12798.0
-2016-01-26 14:00:00,12792.0
-2016-01-26 15:00:00,12815.0
-2016-01-26 16:00:00,12733.0
-2016-01-26 17:00:00,12746.0
-2016-01-26 18:00:00,13082.0
-2016-01-26 19:00:00,13547.0
-2016-01-26 20:00:00,13399.0
-2016-01-26 21:00:00,13193.0
-2016-01-26 22:00:00,12867.0
-2016-01-26 23:00:00,12273.0
-2016-01-27 00:00:00,11526.0
-2016-01-25 01:00:00,10053.0
-2016-01-25 02:00:00,9760.0
-2016-01-25 03:00:00,9639.0
-2016-01-25 04:00:00,9571.0
-2016-01-25 05:00:00,9619.0
-2016-01-25 06:00:00,9958.0
-2016-01-25 07:00:00,10728.0
-2016-01-25 08:00:00,11856.0
-2016-01-25 09:00:00,12469.0
-2016-01-25 10:00:00,12428.0
-2016-01-25 11:00:00,12381.0
-2016-01-25 12:00:00,12283.0
-2016-01-25 13:00:00,12164.0
-2016-01-25 14:00:00,12086.0
-2016-01-25 15:00:00,12171.0
-2016-01-25 16:00:00,12172.0
-2016-01-25 17:00:00,12298.0
-2016-01-25 18:00:00,12751.0
-2016-01-25 19:00:00,13165.0
-2016-01-25 20:00:00,12929.0
-2016-01-25 21:00:00,12674.0
-2016-01-25 22:00:00,12328.0
-2016-01-25 23:00:00,11754.0
-2016-01-26 00:00:00,10951.0
-2016-01-24 01:00:00,10461.0
-2016-01-24 02:00:00,10082.0
-2016-01-24 03:00:00,9894.0
-2016-01-24 04:00:00,9732.0
-2016-01-24 05:00:00,9699.0
-2016-01-24 06:00:00,9745.0
-2016-01-24 07:00:00,9900.0
-2016-01-24 08:00:00,10148.0
-2016-01-24 09:00:00,10247.0
-2016-01-24 10:00:00,10406.0
-2016-01-24 11:00:00,10692.0
-2016-01-24 12:00:00,10725.0
-2016-01-24 13:00:00,10672.0
-2016-01-24 14:00:00,10562.0
-2016-01-24 15:00:00,10473.0
-2016-01-24 16:00:00,10408.0
-2016-01-24 17:00:00,10485.0
-2016-01-24 18:00:00,10928.0
-2016-01-24 19:00:00,11718.0
-2016-01-24 20:00:00,11815.0
-2016-01-24 21:00:00,11714.0
-2016-01-24 22:00:00,11443.0
-2016-01-24 23:00:00,11076.0
-2016-01-25 00:00:00,10499.0
-2016-01-23 01:00:00,11039.0
-2016-01-23 02:00:00,10538.0
-2016-01-23 03:00:00,10259.0
-2016-01-23 04:00:00,10045.0
-2016-01-23 05:00:00,10006.0
-2016-01-23 06:00:00,10056.0
-2016-01-23 07:00:00,10331.0
-2016-01-23 08:00:00,10773.0
-2016-01-23 09:00:00,11017.0
-2016-01-23 10:00:00,11226.0
-2016-01-23 11:00:00,11457.0
-2016-01-23 12:00:00,11394.0
-2016-01-23 13:00:00,11288.0
-2016-01-23 14:00:00,11178.0
-2016-01-23 15:00:00,10996.0
-2016-01-23 16:00:00,10871.0
-2016-01-23 17:00:00,10813.0
-2016-01-23 18:00:00,11080.0
-2016-01-23 19:00:00,11874.0
-2016-01-23 20:00:00,11944.0
-2016-01-23 21:00:00,11804.0
-2016-01-23 22:00:00,11632.0
-2016-01-23 23:00:00,11402.0
-2016-01-24 00:00:00,10931.0
-2016-01-22 01:00:00,11155.0
-2016-01-22 02:00:00,10787.0
-2016-01-22 03:00:00,10536.0
-2016-01-22 04:00:00,10400.0
-2016-01-22 05:00:00,10407.0
-2016-01-22 06:00:00,10654.0
-2016-01-22 07:00:00,11285.0
-2016-01-22 08:00:00,12363.0
-2016-01-22 09:00:00,13023.0
-2016-01-22 10:00:00,13160.0
-2016-01-22 11:00:00,13217.0
-2016-01-22 12:00:00,13261.0
-2016-01-22 13:00:00,13191.0
-2016-01-22 14:00:00,13093.0
-2016-01-22 15:00:00,13023.0
-2016-01-22 16:00:00,12886.0
-2016-01-22 17:00:00,12669.0
-2016-01-22 18:00:00,12998.0
-2016-01-22 19:00:00,13567.0
-2016-01-22 20:00:00,13402.0
-2016-01-22 21:00:00,13115.0
-2016-01-22 22:00:00,12761.0
-2016-01-22 23:00:00,12348.0
-2016-01-23 00:00:00,11660.0
-2016-01-21 01:00:00,11561.0
-2016-01-21 02:00:00,11167.0
-2016-01-21 03:00:00,10930.0
-2016-01-21 04:00:00,10839.0
-2016-01-21 05:00:00,10813.0
-2016-01-21 06:00:00,11062.0
-2016-01-21 07:00:00,11781.0
-2016-01-21 08:00:00,12842.0
-2016-01-21 09:00:00,13363.0
-2016-01-21 10:00:00,13361.0
-2016-01-21 11:00:00,13214.0
-2016-01-21 12:00:00,13075.0
-2016-01-21 13:00:00,12914.0
-2016-01-21 14:00:00,12744.0
-2016-01-21 15:00:00,12684.0
-2016-01-21 16:00:00,12526.0
-2016-01-21 17:00:00,12478.0
-2016-01-21 18:00:00,12858.0
-2016-01-21 19:00:00,13641.0
-2016-01-21 20:00:00,13591.0
-2016-01-21 21:00:00,13434.0
-2016-01-21 22:00:00,13164.0
-2016-01-21 23:00:00,12632.0
-2016-01-22 00:00:00,11869.0
-2016-01-20 01:00:00,11930.0
-2016-01-20 02:00:00,11516.0
-2016-01-20 03:00:00,11292.0
-2016-01-20 04:00:00,11139.0
-2016-01-20 05:00:00,11135.0
-2016-01-20 06:00:00,11379.0
-2016-01-20 07:00:00,12016.0
-2016-01-20 08:00:00,13014.0
-2016-01-20 09:00:00,13479.0
-2016-01-20 10:00:00,13517.0
-2016-01-20 11:00:00,13580.0
-2016-01-20 12:00:00,13572.0
-2016-01-20 13:00:00,13423.0
-2016-01-20 14:00:00,13217.0
-2016-01-20 15:00:00,13148.0
-2016-01-20 16:00:00,12944.0
-2016-01-20 17:00:00,12858.0
-2016-01-20 18:00:00,13198.0
-2016-01-20 19:00:00,14018.0
-2016-01-20 20:00:00,13988.0
-2016-01-20 21:00:00,13845.0
-2016-01-20 22:00:00,13533.0
-2016-01-20 23:00:00,12971.0
-2016-01-21 00:00:00,12257.0
-2016-01-19 01:00:00,12518.0
-2016-01-19 02:00:00,12154.0
-2016-01-19 03:00:00,11968.0
-2016-01-19 04:00:00,11818.0
-2016-01-19 05:00:00,11812.0
-2016-01-19 06:00:00,12050.0
-2016-01-19 07:00:00,12689.0
-2016-01-19 08:00:00,13767.0
-2016-01-19 09:00:00,14253.0
-2016-01-19 10:00:00,14194.0
-2016-01-19 11:00:00,14117.0
-2016-01-19 12:00:00,14001.0
-2016-01-19 13:00:00,13837.0
-2016-01-19 14:00:00,13685.0
-2016-01-19 15:00:00,13541.0
-2016-01-19 16:00:00,13386.0
-2016-01-19 17:00:00,13398.0
-2016-01-19 18:00:00,13806.0
-2016-01-19 19:00:00,14508.0
-2016-01-19 20:00:00,14445.0
-2016-01-19 21:00:00,14275.0
-2016-01-19 22:00:00,13975.0
-2016-01-19 23:00:00,13398.0
-2016-01-20 00:00:00,12639.0
-2016-01-18 01:00:00,12191.0
-2016-01-18 02:00:00,11875.0
-2016-01-18 03:00:00,11727.0
-2016-01-18 04:00:00,11664.0
-2016-01-18 05:00:00,11657.0
-2016-01-18 06:00:00,11892.0
-2016-01-18 07:00:00,12435.0
-2016-01-18 08:00:00,13335.0
-2016-01-18 09:00:00,13816.0
-2016-01-18 10:00:00,13951.0
-2016-01-18 11:00:00,14063.0
-2016-01-18 12:00:00,14095.0
-2016-01-18 13:00:00,14072.0
-2016-01-18 14:00:00,13938.0
-2016-01-18 15:00:00,13857.0
-2016-01-18 16:00:00,13693.0
-2016-01-18 17:00:00,13676.0
-2016-01-18 18:00:00,14102.0
-2016-01-18 19:00:00,14956.0
-2016-01-18 20:00:00,14938.0
-2016-01-18 21:00:00,14782.0
-2016-01-18 22:00:00,14451.0
-2016-01-18 23:00:00,13947.0
-2016-01-19 00:00:00,13234.0
-2016-01-17 01:00:00,11117.0
-2016-01-17 02:00:00,10866.0
-2016-01-17 03:00:00,10618.0
-2016-01-17 04:00:00,10527.0
-2016-01-17 05:00:00,10481.0
-2016-01-17 06:00:00,10507.0
-2016-01-17 07:00:00,10712.0
-2016-01-17 08:00:00,11073.0
-2016-01-17 09:00:00,11281.0
-2016-01-17 10:00:00,11495.0
-2016-01-17 11:00:00,11759.0
-2016-01-17 12:00:00,11851.0
-2016-01-17 13:00:00,11975.0
-2016-01-17 14:00:00,11961.0
-2016-01-17 15:00:00,11957.0
-2016-01-17 16:00:00,11920.0
-2016-01-17 17:00:00,12101.0
-2016-01-17 18:00:00,12625.0
-2016-01-17 19:00:00,13626.0
-2016-01-17 20:00:00,13663.0
-2016-01-17 21:00:00,13595.0
-2016-01-17 22:00:00,13413.0
-2016-01-17 23:00:00,13145.0
-2016-01-18 00:00:00,12634.0
-2016-01-16 01:00:00,10540.0
-2016-01-16 02:00:00,10067.0
-2016-01-16 03:00:00,9776.0
-2016-01-16 04:00:00,9598.0
-2016-01-16 05:00:00,9590.0
-2016-01-16 06:00:00,9687.0
-2016-01-16 07:00:00,10009.0
-2016-01-16 08:00:00,10452.0
-2016-01-16 09:00:00,10709.0
-2016-01-16 10:00:00,10853.0
-2016-01-16 11:00:00,10990.0
-2016-01-16 12:00:00,11081.0
-2016-01-16 13:00:00,11114.0
-2016-01-16 14:00:00,10995.0
-2016-01-16 15:00:00,10810.0
-2016-01-16 16:00:00,10689.0
-2016-01-16 17:00:00,10764.0
-2016-01-16 18:00:00,11212.0
-2016-01-16 19:00:00,12114.0
-2016-01-16 20:00:00,12249.0
-2016-01-16 21:00:00,12147.0
-2016-01-16 22:00:00,12062.0
-2016-01-16 23:00:00,11816.0
-2016-01-17 00:00:00,11501.0
-2016-01-15 01:00:00,10284.0
-2016-01-15 02:00:00,9783.0
-2016-01-15 03:00:00,9561.0
-2016-01-15 04:00:00,9390.0
-2016-01-15 05:00:00,9369.0
-2016-01-15 06:00:00,9581.0
-2016-01-15 07:00:00,10278.0
-2016-01-15 08:00:00,11334.0
-2016-01-15 09:00:00,11949.0
-2016-01-15 10:00:00,12053.0
-2016-01-15 11:00:00,12146.0
-2016-01-15 12:00:00,12206.0
-2016-01-15 13:00:00,12235.0
-2016-01-15 14:00:00,12236.0
-2016-01-15 15:00:00,12242.0
-2016-01-15 16:00:00,12219.0
-2016-01-15 17:00:00,12274.0
-2016-01-15 18:00:00,12696.0
-2016-01-15 19:00:00,13035.0
-2016-01-15 20:00:00,12866.0
-2016-01-15 21:00:00,12605.0
-2016-01-15 22:00:00,12312.0
-2016-01-15 23:00:00,11928.0
-2016-01-16 00:00:00,11205.0
-2016-01-14 01:00:00,11577.0
-2016-01-14 02:00:00,11052.0
-2016-01-14 03:00:00,10782.0
-2016-01-14 04:00:00,10603.0
-2016-01-14 05:00:00,10575.0
-2016-01-14 06:00:00,10752.0
-2016-01-14 07:00:00,11378.0
-2016-01-14 08:00:00,12407.0
-2016-01-14 09:00:00,12857.0
-2016-01-14 10:00:00,12777.0
-2016-01-14 11:00:00,12657.0
-2016-01-14 12:00:00,12547.0
-2016-01-14 13:00:00,12358.0
-2016-01-14 14:00:00,12188.0
-2016-01-14 15:00:00,12120.0
-2016-01-14 16:00:00,11982.0
-2016-01-14 17:00:00,11893.0
-2016-01-14 18:00:00,12300.0
-2016-01-14 19:00:00,12985.0
-2016-01-14 20:00:00,12847.0
-2016-01-14 21:00:00,12641.0
-2016-01-14 22:00:00,12326.0
-2016-01-14 23:00:00,11764.0
-2016-01-15 00:00:00,11007.0
-2016-01-13 01:00:00,12378.0
-2016-01-13 02:00:00,11964.0
-2016-01-13 03:00:00,11748.0
-2016-01-13 04:00:00,11612.0
-2016-01-13 05:00:00,11618.0
-2016-01-13 06:00:00,11881.0
-2016-01-13 07:00:00,12498.0
-2016-01-13 08:00:00,13591.0
-2016-01-13 09:00:00,14090.0
-2016-01-13 10:00:00,14155.0
-2016-01-13 11:00:00,14351.0
-2016-01-13 12:00:00,14441.0
-2016-01-13 13:00:00,14426.0
-2016-01-13 14:00:00,14322.0
-2016-01-13 15:00:00,14166.0
-2016-01-13 16:00:00,14001.0
-2016-01-13 17:00:00,13890.0
-2016-01-13 18:00:00,14082.0
-2016-01-13 19:00:00,14622.0
-2016-01-13 20:00:00,14416.0
-2016-01-13 21:00:00,14148.0
-2016-01-13 22:00:00,13823.0
-2016-01-13 23:00:00,13224.0
-2016-01-14 00:00:00,12366.0
-2016-01-12 01:00:00,11752.0
-2016-01-12 02:00:00,11328.0
-2016-01-12 03:00:00,11087.0
-2016-01-12 04:00:00,10981.0
-2016-01-12 05:00:00,10967.0
-2016-01-12 06:00:00,11220.0
-2016-01-12 07:00:00,11956.0
-2016-01-12 08:00:00,13144.0
-2016-01-12 09:00:00,13686.0
-2016-01-12 10:00:00,13704.0
-2016-01-12 11:00:00,13738.0
-2016-01-12 12:00:00,13758.0
-2016-01-12 13:00:00,13720.0
-2016-01-12 14:00:00,13671.0
-2016-01-12 15:00:00,13632.0
-2016-01-12 16:00:00,13481.0
-2016-01-12 17:00:00,13534.0
-2016-01-12 18:00:00,14032.0
-2016-01-12 19:00:00,14852.0
-2016-01-12 20:00:00,14823.0
-2016-01-12 21:00:00,14657.0
-2016-01-12 22:00:00,14390.0
-2016-01-12 23:00:00,13889.0
-2016-01-13 00:00:00,13057.0
-2016-01-11 01:00:00,11513.0
-2016-01-11 02:00:00,11278.0
-2016-01-11 03:00:00,11090.0
-2016-01-11 04:00:00,11048.0
-2016-01-11 05:00:00,11097.0
-2016-01-11 06:00:00,11349.0
-2016-01-11 07:00:00,12058.0
-2016-01-11 08:00:00,13235.0
-2016-01-11 09:00:00,13758.0
-2016-01-11 10:00:00,13769.0
-2016-01-11 11:00:00,13830.0
-2016-01-11 12:00:00,13938.0
-2016-01-11 13:00:00,13887.0
-2016-01-11 14:00:00,13871.0
-2016-01-11 15:00:00,13867.0
-2016-01-11 16:00:00,13729.0
-2016-01-11 17:00:00,13681.0
-2016-01-11 18:00:00,14085.0
-2016-01-11 19:00:00,14565.0
-2016-01-11 20:00:00,14409.0
-2016-01-11 21:00:00,14129.0
-2016-01-11 22:00:00,13774.0
-2016-01-11 23:00:00,13223.0
-2016-01-12 00:00:00,12449.0
-2016-01-10 01:00:00,10429.0
-2016-01-10 02:00:00,10028.0
-2016-01-10 03:00:00,9839.0
-2016-01-10 04:00:00,9725.0
-2016-01-10 05:00:00,9662.0
-2016-01-10 06:00:00,9730.0
-2016-01-10 07:00:00,9895.0
-2016-01-10 08:00:00,10242.0
-2016-01-10 09:00:00,10334.0
-2016-01-10 10:00:00,10602.0
-2016-01-10 11:00:00,10799.0
-2016-01-10 12:00:00,10928.0
-2016-01-10 13:00:00,11008.0
-2016-01-10 14:00:00,11118.0
-2016-01-10 15:00:00,11114.0
-2016-01-10 16:00:00,11186.0
-2016-01-10 17:00:00,11350.0
-2016-01-10 18:00:00,12012.0
-2016-01-10 19:00:00,12998.0
-2016-01-10 20:00:00,13135.0
-2016-01-10 21:00:00,13044.0
-2016-01-10 22:00:00,12863.0
-2016-01-10 23:00:00,12540.0
-2016-01-11 00:00:00,11994.0
-2016-01-09 01:00:00,9982.0
-2016-01-09 02:00:00,9475.0
-2016-01-09 03:00:00,9167.0
-2016-01-09 04:00:00,8989.0
-2016-01-09 05:00:00,8906.0
-2016-01-09 06:00:00,8997.0
-2016-01-09 07:00:00,9243.0
-2016-01-09 08:00:00,9743.0
-2016-01-09 09:00:00,10091.0
-2016-01-09 10:00:00,10418.0
-2016-01-09 11:00:00,10732.0
-2016-01-09 12:00:00,10902.0
-2016-01-09 13:00:00,10902.0
-2016-01-09 14:00:00,10956.0
-2016-01-09 15:00:00,10919.0
-2016-01-09 16:00:00,11028.0
-2016-01-09 17:00:00,11189.0
-2016-01-09 18:00:00,11608.0
-2016-01-09 19:00:00,12019.0
-2016-01-09 20:00:00,11981.0
-2016-01-09 21:00:00,11789.0
-2016-01-09 22:00:00,11593.0
-2016-01-09 23:00:00,11299.0
-2016-01-10 00:00:00,10867.0
-2016-01-08 01:00:00,10087.0
-2016-01-08 02:00:00,9630.0
-2016-01-08 03:00:00,9331.0
-2016-01-08 04:00:00,9198.0
-2016-01-08 05:00:00,9161.0
-2016-01-08 06:00:00,9400.0
-2016-01-08 07:00:00,10086.0
-2016-01-08 08:00:00,11197.0
-2016-01-08 09:00:00,11878.0
-2016-01-08 10:00:00,11973.0
-2016-01-08 11:00:00,12049.0
-2016-01-08 12:00:00,12108.0
-2016-01-08 13:00:00,12088.0
-2016-01-08 14:00:00,11988.0
-2016-01-08 15:00:00,11972.0
-2016-01-08 16:00:00,11895.0
-2016-01-08 17:00:00,11907.0
-2016-01-08 18:00:00,12391.0
-2016-01-08 19:00:00,12643.0
-2016-01-08 20:00:00,12414.0
-2016-01-08 21:00:00,12100.0
-2016-01-08 22:00:00,11734.0
-2016-01-08 23:00:00,11340.0
-2016-01-09 00:00:00,10626.0
-2016-01-07 01:00:00,10445.0
-2016-01-07 02:00:00,9926.0
-2016-01-07 03:00:00,9664.0
-2016-01-07 04:00:00,9483.0
-2016-01-07 05:00:00,9458.0
-2016-01-07 06:00:00,9704.0
-2016-01-07 07:00:00,10408.0
-2016-01-07 08:00:00,11512.0
-2016-01-07 09:00:00,12081.0
-2016-01-07 10:00:00,12104.0
-2016-01-07 11:00:00,12004.0
-2016-01-07 12:00:00,12008.0
-2016-01-07 13:00:00,12015.0
-2016-01-07 14:00:00,12003.0
-2016-01-07 15:00:00,12073.0
-2016-01-07 16:00:00,11988.0
-2016-01-07 17:00:00,11949.0
-2016-01-07 18:00:00,12405.0
-2016-01-07 19:00:00,12872.0
-2016-01-07 20:00:00,12683.0
-2016-01-07 21:00:00,12450.0
-2016-01-07 22:00:00,12136.0
-2016-01-07 23:00:00,11594.0
-2016-01-08 00:00:00,10802.0
-2016-01-06 01:00:00,10835.0
-2016-01-06 02:00:00,10385.0
-2016-01-06 03:00:00,10108.0
-2016-01-06 04:00:00,9997.0
-2016-01-06 05:00:00,9974.0
-2016-01-06 06:00:00,10261.0
-2016-01-06 07:00:00,10977.0
-2016-01-06 08:00:00,12109.0
-2016-01-06 09:00:00,12590.0
-2016-01-06 10:00:00,12559.0
-2016-01-06 11:00:00,12410.0
-2016-01-06 12:00:00,12388.0
-2016-01-06 13:00:00,12278.0
-2016-01-06 14:00:00,12183.0
-2016-01-06 15:00:00,12220.0
-2016-01-06 16:00:00,12180.0
-2016-01-06 17:00:00,12179.0
-2016-01-06 18:00:00,12647.0
-2016-01-06 19:00:00,13221.0
-2016-01-06 20:00:00,13015.0
-2016-01-06 21:00:00,12775.0
-2016-01-06 22:00:00,12498.0
-2016-01-06 23:00:00,11979.0
-2016-01-07 00:00:00,11209.0
-2016-01-05 01:00:00,10371.0
-2016-01-05 02:00:00,10391.0
-2016-01-05 03:00:00,10158.0
-2016-01-05 04:00:00,10066.0
-2016-01-05 05:00:00,10101.0
-2016-01-05 06:00:00,10395.0
-2016-01-05 07:00:00,11138.0
-2016-01-05 08:00:00,12289.0
-2016-01-05 09:00:00,12796.0
-2016-01-05 10:00:00,12728.0
-2016-01-05 11:00:00,12668.0
-2016-01-05 12:00:00,12579.0
-2016-01-05 13:00:00,12459.0
-2016-01-05 14:00:00,12326.0
-2016-01-05 15:00:00,12298.0
-2016-01-05 16:00:00,12230.0
-2016-01-05 17:00:00,12264.0
-2016-01-05 18:00:00,12841.0
-2016-01-05 19:00:00,13521.0
-2016-01-05 20:00:00,13377.0
-2016-01-05 21:00:00,13214.0
-2016-01-05 22:00:00,12920.0
-2016-01-05 23:00:00,12360.0
-2016-01-06 00:00:00,11573.0
-2016-01-04 01:00:00,10150.0
-2016-01-04 02:00:00,9808.0
-2016-01-04 03:00:00,9625.0
-2016-01-04 04:00:00,9520.0
-2016-01-04 05:00:00,9603.0
-2016-01-04 06:00:00,9953.0
-2016-01-04 07:00:00,10652.0
-2016-01-04 08:00:00,11812.0
-2016-01-04 09:00:00,12346.0
-2016-01-04 10:00:00,12403.0
-2016-01-04 11:00:00,12415.0
-2016-01-04 12:00:00,12480.0
-2016-01-04 13:00:00,12480.0
-2016-01-04 14:00:00,12454.0
-2016-01-04 15:00:00,12437.0
-2016-01-04 16:00:00,12394.0
-2016-01-04 17:00:00,12428.0
-2016-01-04 18:00:00,12990.0
-2016-01-04 19:00:00,13560.0
-2016-01-04 20:00:00,13376.0
-2016-01-04 21:00:00,13155.0
-2016-01-04 22:00:00,12856.0
-2016-01-04 23:00:00,12306.0
-2016-01-05 00:00:00,11534.0
-2016-01-03 01:00:00,10373.0
-2016-01-03 02:00:00,9915.0
-2016-01-03 03:00:00,9638.0
-2016-01-03 04:00:00,9455.0
-2016-01-03 05:00:00,9395.0
-2016-01-03 06:00:00,9401.0
-2016-01-03 07:00:00,9587.0
-2016-01-03 08:00:00,9785.0
-2016-01-03 09:00:00,9910.0
-2016-01-03 10:00:00,10042.0
-2016-01-03 11:00:00,10312.0
-2016-01-03 12:00:00,10445.0
-2016-01-03 13:00:00,10566.0
-2016-01-03 14:00:00,10617.0
-2016-01-03 15:00:00,10667.0
-2016-01-03 16:00:00,10673.0
-2016-01-03 17:00:00,10899.0
-2016-01-03 18:00:00,11562.0
-2016-01-03 19:00:00,12138.0
-2016-01-03 20:00:00,12084.0
-2016-01-03 21:00:00,11982.0
-2016-01-03 22:00:00,11705.0
-2016-01-03 23:00:00,11399.0
-2016-01-04 00:00:00,10704.0
-2016-01-02 01:00:00,10170.0
-2016-01-02 02:00:00,9709.0
-2016-01-02 03:00:00,9464.0
-2016-01-02 04:00:00,9289.0
-2016-01-02 05:00:00,9266.0
-2016-01-02 06:00:00,9316.0
-2016-01-02 07:00:00,9608.0
-2016-01-02 08:00:00,10016.0
-2016-01-02 09:00:00,10228.0
-2016-01-02 10:00:00,10361.0
-2016-01-02 11:00:00,10506.0
-2016-01-02 12:00:00,10518.0
-2016-01-02 13:00:00,10530.0
-2016-01-02 14:00:00,10401.0
-2016-01-02 15:00:00,10247.0
-2016-01-02 16:00:00,10110.0
-2016-01-02 17:00:00,10252.0
-2016-01-02 18:00:00,10916.0
-2016-01-02 19:00:00,11846.0
-2016-01-02 20:00:00,11855.0
-2016-01-02 21:00:00,11718.0
-2016-01-02 22:00:00,11580.0
-2016-01-02 23:00:00,11389.0
-2016-01-03 00:00:00,10871.0
-2016-01-01 01:00:00,10407.0
-2016-01-01 02:00:00,10053.0
-2016-01-01 03:00:00,9791.0
-2016-01-01 04:00:00,9617.0
-2016-01-01 05:00:00,9563.0
-2016-01-01 06:00:00,9598.0
-2016-01-01 07:00:00,9766.0
-2016-01-01 08:00:00,9926.0
-2016-01-01 09:00:00,9903.0
-2016-01-01 10:00:00,9948.0
-2016-01-01 11:00:00,10203.0
-2016-01-01 12:00:00,10437.0
-2016-01-01 13:00:00,10557.0
-2016-01-01 14:00:00,10519.0
-2016-01-01 15:00:00,10446.0
-2016-01-01 16:00:00,10375.0
-2016-01-01 17:00:00,10430.0
-2016-01-01 18:00:00,11150.0
-2016-01-01 19:00:00,11849.0
-2016-01-01 20:00:00,11827.0
-2016-01-01 21:00:00,11678.0
-2016-01-01 22:00:00,11487.0
-2016-01-01 23:00:00,11084.0
-2016-01-02 00:00:00,10838.0
-2017-12-31 01:00:00,12132.0
-2017-12-31 02:00:00,11711.0
-2017-12-31 03:00:00,11405.0
-2017-12-31 04:00:00,11235.0
-2017-12-31 05:00:00,11145.0
-2017-12-31 06:00:00,11192.0
-2017-12-31 07:00:00,11288.0
-2017-12-31 08:00:00,11507.0
-2017-12-31 09:00:00,11554.0
-2017-12-31 10:00:00,11624.0
-2017-12-31 11:00:00,11673.0
-2017-12-31 12:00:00,11787.0
-2017-12-31 13:00:00,11883.0
-2017-12-31 14:00:00,11799.0
-2017-12-31 15:00:00,11704.0
-2017-12-31 16:00:00,11661.0
-2017-12-31 17:00:00,11840.0
-2017-12-31 18:00:00,12581.0
-2017-12-31 19:00:00,13452.0
-2017-12-31 20:00:00,13393.0
-2017-12-31 21:00:00,13192.0
-2017-12-31 22:00:00,13116.0
-2017-12-31 23:00:00,12809.0
-2018-01-01 00:00:00,12563.0
-2017-12-30 01:00:00,11644.0
-2017-12-30 02:00:00,11233.0
-2017-12-30 03:00:00,10947.0
-2017-12-30 04:00:00,10828.0
-2017-12-30 05:00:00,10782.0
-2017-12-30 06:00:00,10917.0
-2017-12-30 07:00:00,11169.0
-2017-12-30 08:00:00,11621.0
-2017-12-30 09:00:00,11832.0
-2017-12-30 10:00:00,12099.0
-2017-12-30 11:00:00,12146.0
-2017-12-30 12:00:00,12280.0
-2017-12-30 13:00:00,12261.0
-2017-12-30 14:00:00,12179.0
-2017-12-30 15:00:00,12059.0
-2017-12-30 16:00:00,11974.0
-2017-12-30 17:00:00,12154.0
-2017-12-30 18:00:00,12878.0
-2017-12-30 19:00:00,13673.0
-2017-12-30 20:00:00,13686.0
-2017-12-30 21:00:00,13632.0
-2017-12-30 22:00:00,13423.0
-2017-12-30 23:00:00,13191.0
-2017-12-31 00:00:00,12684.0
-2017-12-29 01:00:00,12009.0
-2017-12-29 02:00:00,11531.0
-2017-12-29 03:00:00,11222.0
-2017-12-29 04:00:00,11005.0
-2017-12-29 05:00:00,10961.0
-2017-12-29 06:00:00,11130.0
-2017-12-29 07:00:00,11552.0
-2017-12-29 08:00:00,12196.0
-2017-12-29 09:00:00,12542.0
-2017-12-29 10:00:00,12746.0
-2017-12-29 11:00:00,12906.0
-2017-12-29 12:00:00,12991.0
-2017-12-29 13:00:00,13023.0
-2017-12-29 14:00:00,12988.0
-2017-12-29 15:00:00,12999.0
-2017-12-29 16:00:00,12907.0
-2017-12-29 17:00:00,12917.0
-2017-12-29 18:00:00,13437.0
-2017-12-29 19:00:00,13862.0
-2017-12-29 20:00:00,13767.0
-2017-12-29 21:00:00,13572.0
-2017-12-29 22:00:00,13294.0
-2017-12-29 23:00:00,12917.0
-2017-12-30 00:00:00,12340.0
-2017-12-28 01:00:00,12475.0
-2017-12-28 02:00:00,12015.0
-2017-12-28 03:00:00,11751.0
-2017-12-28 04:00:00,11595.0
-2017-12-28 05:00:00,11578.0
-2017-12-28 06:00:00,11714.0
-2017-12-28 07:00:00,12108.0
-2017-12-28 08:00:00,12758.0
-2017-12-28 09:00:00,13145.0
-2017-12-28 10:00:00,13379.0
-2017-12-28 11:00:00,13386.0
-2017-12-28 12:00:00,13529.0
-2017-12-28 13:00:00,13608.0
-2017-12-28 14:00:00,13445.0
-2017-12-28 15:00:00,13504.0
-2017-12-28 16:00:00,13432.0
-2017-12-28 17:00:00,13409.0
-2017-12-28 18:00:00,13992.0
-2017-12-28 19:00:00,14435.0
-2017-12-28 20:00:00,14245.0
-2017-12-28 21:00:00,14055.0
-2017-12-28 22:00:00,13782.0
-2017-12-28 23:00:00,13353.0
-2017-12-29 00:00:00,12638.0
-2017-12-27 01:00:00,12171.0
-2017-12-27 02:00:00,11767.0
-2017-12-27 03:00:00,11473.0
-2017-12-27 04:00:00,11415.0
-2017-12-27 05:00:00,11408.0
-2017-12-27 06:00:00,11636.0
-2017-12-27 07:00:00,12163.0
-2017-12-27 08:00:00,12914.0
-2017-12-27 09:00:00,13317.0
-2017-12-27 10:00:00,13496.0
-2017-12-27 11:00:00,13574.0
-2017-12-27 12:00:00,13624.0
-2017-12-27 13:00:00,13540.0
-2017-12-27 14:00:00,13420.0
-2017-12-27 15:00:00,13354.0
-2017-12-27 16:00:00,13261.0
-2017-12-27 17:00:00,13315.0
-2017-12-27 18:00:00,14028.0
-2017-12-27 19:00:00,14694.0
-2017-12-27 20:00:00,14610.0
-2017-12-27 21:00:00,14446.0
-2017-12-27 22:00:00,14214.0
-2017-12-27 23:00:00,13757.0
-2017-12-28 00:00:00,13105.0
-2017-12-26 01:00:00,11091.0
-2017-12-26 02:00:00,10798.0
-2017-12-26 03:00:00,10642.0
-2017-12-26 04:00:00,10577.0
-2017-12-26 05:00:00,10587.0
-2017-12-26 06:00:00,10807.0
-2017-12-26 07:00:00,11283.0
-2017-12-26 08:00:00,11949.0
-2017-12-26 09:00:00,12326.0
-2017-12-26 10:00:00,12602.0
-2017-12-26 11:00:00,12788.0
-2017-12-26 12:00:00,12888.0
-2017-12-26 13:00:00,12869.0
-2017-12-26 14:00:00,12787.0
-2017-12-26 15:00:00,12726.0
-2017-12-26 16:00:00,12653.0
-2017-12-26 17:00:00,12708.0
-2017-12-26 18:00:00,13459.0
-2017-12-26 19:00:00,14251.0
-2017-12-26 20:00:00,14183.0
-2017-12-26 21:00:00,14019.0
-2017-12-26 22:00:00,13813.0
-2017-12-26 23:00:00,13438.0
-2017-12-27 00:00:00,12814.0
-2017-12-25 01:00:00,10596.0
-2017-12-25 02:00:00,10223.0
-2017-12-25 03:00:00,10004.0
-2017-12-25 04:00:00,9801.0
-2017-12-25 05:00:00,9754.0
-2017-12-25 06:00:00,9853.0
-2017-12-25 07:00:00,10060.0
-2017-12-25 08:00:00,10354.0
-2017-12-25 09:00:00,10412.0
-2017-12-25 10:00:00,10512.0
-2017-12-25 11:00:00,10577.0
-2017-12-25 12:00:00,10585.0
-2017-12-25 13:00:00,10601.0
-2017-12-25 14:00:00,10572.0
-2017-12-25 15:00:00,10571.0
-2017-12-25 16:00:00,10629.0
-2017-12-25 17:00:00,10830.0
-2017-12-25 18:00:00,11444.0
-2017-12-25 19:00:00,12013.0
-2017-12-25 20:00:00,11977.0
-2017-12-25 21:00:00,11983.0
-2017-12-25 22:00:00,11960.0
-2017-12-25 23:00:00,11847.0
-2017-12-26 00:00:00,11525.0
-2017-12-24 01:00:00,10490.0
-2017-12-24 02:00:00,9971.0
-2017-12-24 03:00:00,9723.0
-2017-12-24 04:00:00,9501.0
-2017-12-24 05:00:00,9451.0
-2017-12-24 06:00:00,9412.0
-2017-12-24 07:00:00,9561.0
-2017-12-24 08:00:00,9798.0
-2017-12-24 09:00:00,10060.0
-2017-12-24 10:00:00,10358.0
-2017-12-24 11:00:00,10616.0
-2017-12-24 12:00:00,10807.0
-2017-12-24 13:00:00,10834.0
-2017-12-24 14:00:00,10814.0
-2017-12-24 15:00:00,10816.0
-2017-12-24 16:00:00,10809.0
-2017-12-24 17:00:00,10870.0
-2017-12-24 18:00:00,11460.0
-2017-12-24 19:00:00,11871.0
-2017-12-24 20:00:00,11744.0
-2017-12-24 21:00:00,11608.0
-2017-12-24 22:00:00,11479.0
-2017-12-24 23:00:00,11375.0
-2017-12-25 00:00:00,10975.0
-2017-12-23 01:00:00,10222.0
-2017-12-23 02:00:00,9755.0
-2017-12-23 03:00:00,9402.0
-2017-12-23 04:00:00,9193.0
-2017-12-23 05:00:00,9112.0
-2017-12-23 06:00:00,9222.0
-2017-12-23 07:00:00,9515.0
-2017-12-23 08:00:00,9934.0
-2017-12-23 09:00:00,10247.0
-2017-12-23 10:00:00,10369.0
-2017-12-23 11:00:00,10443.0
-2017-12-23 12:00:00,10463.0
-2017-12-23 13:00:00,10452.0
-2017-12-23 14:00:00,10395.0
-2017-12-23 15:00:00,10294.0
-2017-12-23 16:00:00,10190.0
-2017-12-23 17:00:00,10329.0
-2017-12-23 18:00:00,11112.0
-2017-12-23 19:00:00,11785.0
-2017-12-23 20:00:00,11813.0
-2017-12-23 21:00:00,11764.0
-2017-12-23 22:00:00,11675.0
-2017-12-23 23:00:00,11453.0
-2017-12-24 00:00:00,10993.0
-2017-12-22 01:00:00,10307.0
-2017-12-22 02:00:00,9758.0
-2017-12-22 03:00:00,9428.0
-2017-12-22 04:00:00,9224.0
-2017-12-22 05:00:00,9201.0
-2017-12-22 06:00:00,9416.0
-2017-12-22 07:00:00,9980.0
-2017-12-22 08:00:00,10890.0
-2017-12-22 09:00:00,11440.0
-2017-12-22 10:00:00,11536.0
-2017-12-22 11:00:00,11595.0
-2017-12-22 12:00:00,11642.0
-2017-12-22 13:00:00,11630.0
-2017-12-22 14:00:00,11554.0
-2017-12-22 15:00:00,11536.0
-2017-12-22 16:00:00,11504.0
-2017-12-22 17:00:00,11595.0
-2017-12-22 18:00:00,12210.0
-2017-12-22 19:00:00,12504.0
-2017-12-22 20:00:00,12271.0
-2017-12-22 21:00:00,12032.0
-2017-12-22 22:00:00,11779.0
-2017-12-22 23:00:00,11457.0
-2017-12-23 00:00:00,10860.0
-2017-12-21 01:00:00,10574.0
-2017-12-21 02:00:00,10046.0
-2017-12-21 03:00:00,9702.0
-2017-12-21 04:00:00,9554.0
-2017-12-21 05:00:00,9541.0
-2017-12-21 06:00:00,9774.0
-2017-12-21 07:00:00,10472.0
-2017-12-21 08:00:00,11496.0
-2017-12-21 09:00:00,12092.0
-2017-12-21 10:00:00,12161.0
-2017-12-21 11:00:00,12178.0
-2017-12-21 12:00:00,12171.0
-2017-12-21 13:00:00,12076.0
-2017-12-21 14:00:00,12054.0
-2017-12-21 15:00:00,12101.0
-2017-12-21 16:00:00,12081.0
-2017-12-21 17:00:00,12090.0
-2017-12-21 18:00:00,12740.0
-2017-12-21 19:00:00,12990.0
-2017-12-21 20:00:00,12766.0
-2017-12-21 21:00:00,12548.0
-2017-12-21 22:00:00,12306.0
-2017-12-21 23:00:00,11829.0
-2017-12-22 00:00:00,11069.0
-2017-12-20 01:00:00,10256.0
-2017-12-20 02:00:00,9757.0
-2017-12-20 03:00:00,9468.0
-2017-12-20 04:00:00,9338.0
-2017-12-20 05:00:00,9362.0
-2017-12-20 06:00:00,9644.0
-2017-12-20 07:00:00,10387.0
-2017-12-20 08:00:00,11491.0
-2017-12-20 09:00:00,11991.0
-2017-12-20 10:00:00,12028.0
-2017-12-20 11:00:00,12008.0
-2017-12-20 12:00:00,11978.0
-2017-12-20 13:00:00,11882.0
-2017-12-20 14:00:00,11820.0
-2017-12-20 15:00:00,11851.0
-2017-12-20 16:00:00,11884.0
-2017-12-20 17:00:00,11995.0
-2017-12-20 18:00:00,12708.0
-2017-12-20 19:00:00,13266.0
-2017-12-20 20:00:00,13121.0
-2017-12-20 21:00:00,12935.0
-2017-12-20 22:00:00,12641.0
-2017-12-20 23:00:00,12171.0
-2017-12-21 00:00:00,11373.0
-2017-12-19 01:00:00,10256.0
-2017-12-19 02:00:00,9694.0
-2017-12-19 03:00:00,9389.0
-2017-12-19 04:00:00,9229.0
-2017-12-19 05:00:00,9220.0
-2017-12-19 06:00:00,9502.0
-2017-12-19 07:00:00,10205.0
-2017-12-19 08:00:00,11264.0
-2017-12-19 09:00:00,11732.0
-2017-12-19 10:00:00,11784.0
-2017-12-19 11:00:00,11745.0
-2017-12-19 12:00:00,11659.0
-2017-12-19 13:00:00,11506.0
-2017-12-19 14:00:00,11354.0
-2017-12-19 15:00:00,11333.0
-2017-12-19 16:00:00,11230.0
-2017-12-19 17:00:00,11294.0
-2017-12-19 18:00:00,12044.0
-2017-12-19 19:00:00,12606.0
-2017-12-19 20:00:00,12489.0
-2017-12-19 21:00:00,12350.0
-2017-12-19 22:00:00,12140.0
-2017-12-19 23:00:00,11698.0
-2017-12-20 00:00:00,10984.0
-2017-12-18 01:00:00,9560.0
-2017-12-18 02:00:00,9159.0
-2017-12-18 03:00:00,8890.0
-2017-12-18 04:00:00,8822.0
-2017-12-18 05:00:00,8828.0
-2017-12-18 06:00:00,9148.0
-2017-12-18 07:00:00,9887.0
-2017-12-18 08:00:00,10995.0
-2017-12-18 09:00:00,11710.0
-2017-12-18 10:00:00,11852.0
-2017-12-18 11:00:00,11843.0
-2017-12-18 12:00:00,11899.0
-2017-12-18 13:00:00,11851.0
-2017-12-18 14:00:00,11716.0
-2017-12-18 15:00:00,11578.0
-2017-12-18 16:00:00,11474.0
-2017-12-18 17:00:00,11460.0
-2017-12-18 18:00:00,12157.0
-2017-12-18 19:00:00,12798.0
-2017-12-18 20:00:00,12710.0
-2017-12-18 21:00:00,12567.0
-2017-12-18 22:00:00,12308.0
-2017-12-18 23:00:00,11800.0
-2017-12-19 00:00:00,11013.0
-2017-12-17 01:00:00,9964.0
-2017-12-17 02:00:00,9528.0
-2017-12-17 03:00:00,9198.0
-2017-12-17 04:00:00,9002.0
-2017-12-17 05:00:00,8914.0
-2017-12-17 06:00:00,8948.0
-2017-12-17 07:00:00,9094.0
-2017-12-17 08:00:00,9385.0
-2017-12-17 09:00:00,9559.0
-2017-12-17 10:00:00,9815.0
-2017-12-17 11:00:00,10005.0
-2017-12-17 12:00:00,10202.0
-2017-12-17 13:00:00,10148.0
-2017-12-17 14:00:00,10080.0
-2017-12-17 15:00:00,9943.0
-2017-12-17 16:00:00,9960.0
-2017-12-17 17:00:00,10130.0
-2017-12-17 18:00:00,10851.0
-2017-12-17 19:00:00,11362.0
-2017-12-17 20:00:00,11366.0
-2017-12-17 21:00:00,11330.0
-2017-12-17 22:00:00,11126.0
-2017-12-17 23:00:00,10746.0
-2017-12-18 00:00:00,10161.0
-2017-12-16 01:00:00,10781.0
-2017-12-16 02:00:00,10210.0
-2017-12-16 03:00:00,9863.0
-2017-12-16 04:00:00,9562.0
-2017-12-16 05:00:00,9453.0
-2017-12-16 06:00:00,9580.0
-2017-12-16 07:00:00,9867.0
-2017-12-16 08:00:00,10281.0
-2017-12-16 09:00:00,10562.0
-2017-12-16 10:00:00,10764.0
-2017-12-16 11:00:00,10765.0
-2017-12-16 12:00:00,10718.0
-2017-12-16 13:00:00,10507.0
-2017-12-16 14:00:00,10343.0
-2017-12-16 15:00:00,10070.0
-2017-12-16 16:00:00,9937.0
-2017-12-16 17:00:00,9983.0
-2017-12-16 18:00:00,10734.0
-2017-12-16 19:00:00,11433.0
-2017-12-16 20:00:00,11431.0
-2017-12-16 21:00:00,11369.0
-2017-12-16 22:00:00,11192.0
-2017-12-16 23:00:00,10970.0
-2017-12-17 00:00:00,10500.0
-2017-12-15 01:00:00,11220.0
-2017-12-15 02:00:00,10720.0
-2017-12-15 03:00:00,10425.0
-2017-12-15 04:00:00,10253.0
-2017-12-15 05:00:00,10249.0
-2017-12-15 06:00:00,10519.0
-2017-12-15 07:00:00,11208.0
-2017-12-15 08:00:00,12226.0
-2017-12-15 09:00:00,12856.0
-2017-12-15 10:00:00,12944.0
-2017-12-15 11:00:00,12929.0
-2017-12-15 12:00:00,12840.0
-2017-12-15 13:00:00,12598.0
-2017-12-15 14:00:00,12557.0
-2017-12-15 15:00:00,12522.0
-2017-12-15 16:00:00,12515.0
-2017-12-15 17:00:00,12568.0
-2017-12-15 18:00:00,13145.0
-2017-12-15 19:00:00,13379.0
-2017-12-15 20:00:00,13120.0
-2017-12-15 21:00:00,12886.0
-2017-12-15 22:00:00,12569.0
-2017-12-15 23:00:00,12197.0
-2017-12-16 00:00:00,11462.0
-2017-12-14 01:00:00,11014.0
-2017-12-14 02:00:00,10516.0
-2017-12-14 03:00:00,10245.0
-2017-12-14 04:00:00,10166.0
-2017-12-14 05:00:00,10194.0
-2017-12-14 06:00:00,10555.0
-2017-12-14 07:00:00,11281.0
-2017-12-14 08:00:00,12388.0
-2017-12-14 09:00:00,12902.0
-2017-12-14 10:00:00,12906.0
-2017-12-14 11:00:00,12860.0
-2017-12-14 12:00:00,12751.0
-2017-12-14 13:00:00,12571.0
-2017-12-14 14:00:00,12437.0
-2017-12-14 15:00:00,12438.0
-2017-12-14 16:00:00,12371.0
-2017-12-14 17:00:00,12503.0
-2017-12-14 18:00:00,13261.0
-2017-12-14 19:00:00,13746.0
-2017-12-14 20:00:00,13613.0
-2017-12-14 21:00:00,13442.0
-2017-12-14 22:00:00,13205.0
-2017-12-14 23:00:00,12758.0
-2017-12-15 00:00:00,11976.0
-2017-12-13 01:00:00,11335.0
-2017-12-13 02:00:00,10825.0
-2017-12-13 03:00:00,10522.0
-2017-12-13 04:00:00,10385.0
-2017-12-13 05:00:00,10371.0
-2017-12-13 06:00:00,10634.0
-2017-12-13 07:00:00,11335.0
-2017-12-13 08:00:00,12414.0
-2017-12-13 09:00:00,13003.0
-2017-12-13 10:00:00,13033.0
-2017-12-13 11:00:00,13017.0
-2017-12-13 12:00:00,12981.0
-2017-12-13 13:00:00,12851.0
-2017-12-13 14:00:00,12725.0
-2017-12-13 15:00:00,12639.0
-2017-12-13 16:00:00,12634.0
-2017-12-13 17:00:00,12819.0
-2017-12-13 18:00:00,13490.0
-2017-12-13 19:00:00,13803.0
-2017-12-13 20:00:00,13684.0
-2017-12-13 21:00:00,13529.0
-2017-12-13 22:00:00,13219.0
-2017-12-13 23:00:00,12681.0
-2017-12-14 00:00:00,11784.0
-2017-12-12 01:00:00,10817.0
-2017-12-12 02:00:00,10350.0
-2017-12-12 03:00:00,10173.0
-2017-12-12 04:00:00,10085.0
-2017-12-12 05:00:00,10169.0
-2017-12-12 06:00:00,10532.0
-2017-12-12 07:00:00,11338.0
-2017-12-12 08:00:00,12505.0
-2017-12-12 09:00:00,12924.0
-2017-12-12 10:00:00,12899.0
-2017-12-12 11:00:00,12864.0
-2017-12-12 12:00:00,12837.0
-2017-12-12 13:00:00,12724.0
-2017-12-12 14:00:00,12676.0
-2017-12-12 15:00:00,12645.0
-2017-12-12 16:00:00,12553.0
-2017-12-12 17:00:00,12750.0
-2017-12-12 18:00:00,13505.0
-2017-12-12 19:00:00,14111.0
-2017-12-12 20:00:00,13984.0
-2017-12-12 21:00:00,13803.0
-2017-12-12 22:00:00,13510.0
-2017-12-12 23:00:00,12952.0
-2017-12-13 00:00:00,12158.0
-2017-12-11 01:00:00,10198.0
-2017-12-11 02:00:00,9913.0
-2017-12-11 03:00:00,9694.0
-2017-12-11 04:00:00,9612.0
-2017-12-11 05:00:00,9693.0
-2017-12-11 06:00:00,10055.0
-2017-12-11 07:00:00,10824.0
-2017-12-11 08:00:00,12013.0
-2017-12-11 09:00:00,12536.0
-2017-12-11 10:00:00,12660.0
-2017-12-11 11:00:00,12627.0
-2017-12-11 12:00:00,12677.0
-2017-12-11 13:00:00,12664.0
-2017-12-11 14:00:00,12546.0
-2017-12-11 15:00:00,12450.0
-2017-12-11 16:00:00,12430.0
-2017-12-11 17:00:00,12465.0
-2017-12-11 18:00:00,13140.0
-2017-12-11 19:00:00,13568.0
-2017-12-11 20:00:00,13481.0
-2017-12-11 21:00:00,13267.0
-2017-12-11 22:00:00,13018.0
-2017-12-11 23:00:00,12546.0
-2017-12-12 00:00:00,11708.0
-2017-12-10 01:00:00,10717.0
-2017-12-10 02:00:00,10315.0
-2017-12-10 03:00:00,10020.0
-2017-12-10 04:00:00,9844.0
-2017-12-10 05:00:00,9710.0
-2017-12-10 06:00:00,9784.0
-2017-12-10 07:00:00,9935.0
-2017-12-10 08:00:00,10224.0
-2017-12-10 09:00:00,10271.0
-2017-12-10 10:00:00,10454.0
-2017-12-10 11:00:00,10426.0
-2017-12-10 12:00:00,10513.0
-2017-12-10 13:00:00,10462.0
-2017-12-10 14:00:00,10417.0
-2017-12-10 15:00:00,10408.0
-2017-12-10 16:00:00,10580.0
-2017-12-10 17:00:00,10723.0
-2017-12-10 18:00:00,11472.0
-2017-12-10 19:00:00,12017.0
-2017-12-10 20:00:00,12048.0
-2017-12-10 21:00:00,11998.0
-2017-12-10 22:00:00,11779.0
-2017-12-10 23:00:00,11388.0
-2017-12-11 00:00:00,10755.0
-2017-12-09 01:00:00,10743.0
-2017-12-09 02:00:00,10286.0
-2017-12-09 03:00:00,9943.0
-2017-12-09 04:00:00,9818.0
-2017-12-09 05:00:00,9668.0
-2017-12-09 06:00:00,9772.0
-2017-12-09 07:00:00,10058.0
-2017-12-09 08:00:00,10573.0
-2017-12-09 09:00:00,10873.0
-2017-12-09 10:00:00,11247.0
-2017-12-09 11:00:00,11520.0
-2017-12-09 12:00:00,11559.0
-2017-12-09 13:00:00,11575.0
-2017-12-09 14:00:00,11421.0
-2017-12-09 15:00:00,11304.0
-2017-12-09 16:00:00,11276.0
-2017-12-09 17:00:00,11313.0
-2017-12-09 18:00:00,11985.0
-2017-12-09 19:00:00,12422.0
-2017-12-09 20:00:00,12387.0
-2017-12-09 21:00:00,12232.0
-2017-12-09 22:00:00,12086.0
-2017-12-09 23:00:00,11806.0
-2017-12-10 00:00:00,11290.0
-2017-12-08 01:00:00,11183.0
-2017-12-08 02:00:00,10721.0
-2017-12-08 03:00:00,10445.0
-2017-12-08 04:00:00,10318.0
-2017-12-08 05:00:00,10338.0
-2017-12-08 06:00:00,10635.0
-2017-12-08 07:00:00,11294.0
-2017-12-08 08:00:00,12364.0
-2017-12-08 09:00:00,12763.0
-2017-12-08 10:00:00,12737.0
-2017-12-08 11:00:00,12603.0
-2017-12-08 12:00:00,12549.0
-2017-12-08 13:00:00,12369.0
-2017-12-08 14:00:00,12201.0
-2017-12-08 15:00:00,12042.0
-2017-12-08 16:00:00,11897.0
-2017-12-08 17:00:00,11878.0
-2017-12-08 18:00:00,12631.0
-2017-12-08 19:00:00,13191.0
-2017-12-08 20:00:00,13077.0
-2017-12-08 21:00:00,12885.0
-2017-12-08 22:00:00,12642.0
-2017-12-08 23:00:00,12224.0
-2017-12-09 00:00:00,11452.0
-2017-12-07 01:00:00,10738.0
-2017-12-07 02:00:00,10229.0
-2017-12-07 03:00:00,10016.0
-2017-12-07 04:00:00,9906.0
-2017-12-07 05:00:00,9975.0
-2017-12-07 06:00:00,10263.0
-2017-12-07 07:00:00,11025.0
-2017-12-07 08:00:00,12125.0
-2017-12-07 09:00:00,12571.0
-2017-12-07 10:00:00,12700.0
-2017-12-07 11:00:00,12831.0
-2017-12-07 12:00:00,12901.0
-2017-12-07 13:00:00,12734.0
-2017-12-07 14:00:00,12504.0
-2017-12-07 15:00:00,12404.0
-2017-12-07 16:00:00,12315.0
-2017-12-07 17:00:00,12328.0
-2017-12-07 18:00:00,13078.0
-2017-12-07 19:00:00,13645.0
-2017-12-07 20:00:00,13534.0
-2017-12-07 21:00:00,13382.0
-2017-12-07 22:00:00,13157.0
-2017-12-07 23:00:00,12678.0
-2017-12-08 00:00:00,11910.0
-2017-12-06 01:00:00,10651.0
-2017-12-06 02:00:00,10153.0
-2017-12-06 03:00:00,9888.0
-2017-12-06 04:00:00,9732.0
-2017-12-06 05:00:00,9708.0
-2017-12-06 06:00:00,9897.0
-2017-12-06 07:00:00,10629.0
-2017-12-06 08:00:00,11726.0
-2017-12-06 09:00:00,12152.0
-2017-12-06 10:00:00,12150.0
-2017-12-06 11:00:00,12146.0
-2017-12-06 12:00:00,12186.0
-2017-12-06 13:00:00,12131.0
-2017-12-06 14:00:00,12023.0
-2017-12-06 15:00:00,12006.0
-2017-12-06 16:00:00,11901.0
-2017-12-06 17:00:00,11980.0
-2017-12-06 18:00:00,12722.0
-2017-12-06 19:00:00,13306.0
-2017-12-06 20:00:00,13194.0
-2017-12-06 21:00:00,13021.0
-2017-12-06 22:00:00,12786.0
-2017-12-06 23:00:00,12265.0
-2017-12-07 00:00:00,11471.0
-2017-12-05 01:00:00,9390.0
-2017-12-05 02:00:00,8990.0
-2017-12-05 03:00:00,8802.0
-2017-12-05 04:00:00,8765.0
-2017-12-05 05:00:00,8823.0
-2017-12-05 06:00:00,9121.0
-2017-12-05 07:00:00,9935.0
-2017-12-05 08:00:00,11133.0
-2017-12-05 09:00:00,11727.0
-2017-12-05 10:00:00,11890.0
-2017-12-05 11:00:00,11944.0
-2017-12-05 12:00:00,11990.0
-2017-12-05 13:00:00,11983.0
-2017-12-05 14:00:00,11968.0
-2017-12-05 15:00:00,12035.0
-2017-12-05 16:00:00,12000.0
-2017-12-05 17:00:00,12019.0
-2017-12-05 18:00:00,12739.0
-2017-12-05 19:00:00,13296.0
-2017-12-05 20:00:00,13093.0
-2017-12-05 21:00:00,12911.0
-2017-12-05 22:00:00,12649.0
-2017-12-05 23:00:00,12127.0
-2017-12-06 00:00:00,11388.0
-2017-12-04 01:00:00,8993.0
-2017-12-04 02:00:00,8583.0
-2017-12-04 03:00:00,8358.0
-2017-12-04 04:00:00,8286.0
-2017-12-04 05:00:00,8296.0
-2017-12-04 06:00:00,8623.0
-2017-12-04 07:00:00,9336.0
-2017-12-04 08:00:00,10468.0
-2017-12-04 09:00:00,10989.0
-2017-12-04 10:00:00,11092.0
-2017-12-04 11:00:00,11145.0
-2017-12-04 12:00:00,11206.0
-2017-12-04 13:00:00,11158.0
-2017-12-04 14:00:00,11132.0
-2017-12-04 15:00:00,11136.0
-2017-12-04 16:00:00,11111.0
-2017-12-04 17:00:00,11158.0
-2017-12-04 18:00:00,11787.0
-2017-12-04 19:00:00,12084.0
-2017-12-04 20:00:00,11910.0
-2017-12-04 21:00:00,11704.0
-2017-12-04 22:00:00,11394.0
-2017-12-04 23:00:00,10855.0
-2017-12-05 00:00:00,10058.0
-2017-12-03 01:00:00,9285.0
-2017-12-03 02:00:00,8917.0
-2017-12-03 03:00:00,8636.0
-2017-12-03 04:00:00,8530.0
-2017-12-03 05:00:00,8457.0
-2017-12-03 06:00:00,8542.0
-2017-12-03 07:00:00,8728.0
-2017-12-03 08:00:00,9010.0
-2017-12-03 09:00:00,9024.0
-2017-12-03 10:00:00,9168.0
-2017-12-03 11:00:00,9199.0
-2017-12-03 12:00:00,9224.0
-2017-12-03 13:00:00,9211.0
-2017-12-03 14:00:00,9151.0
-2017-12-03 15:00:00,9121.0
-2017-12-03 16:00:00,9054.0
-2017-12-03 17:00:00,9189.0
-2017-12-03 18:00:00,9973.0
-2017-12-03 19:00:00,10603.0
-2017-12-03 20:00:00,10662.0
-2017-12-03 21:00:00,10619.0
-2017-12-03 22:00:00,10441.0
-2017-12-03 23:00:00,10050.0
-2017-12-04 00:00:00,9543.0
-2017-12-02 01:00:00,9816.0
-2017-12-02 02:00:00,9383.0
-2017-12-02 03:00:00,9051.0
-2017-12-02 04:00:00,8891.0
-2017-12-02 05:00:00,8785.0
-2017-12-02 06:00:00,8858.0
-2017-12-02 07:00:00,9132.0
-2017-12-02 08:00:00,9655.0
-2017-12-02 09:00:00,9794.0
-2017-12-02 10:00:00,10021.0
-2017-12-02 11:00:00,9995.0
-2017-12-02 12:00:00,9982.0
-2017-12-02 13:00:00,9886.0
-2017-12-02 14:00:00,9749.0
-2017-12-02 15:00:00,9584.0
-2017-12-02 16:00:00,9436.0
-2017-12-02 17:00:00,9512.0
-2017-12-02 18:00:00,10153.0
-2017-12-02 19:00:00,10718.0
-2017-12-02 20:00:00,10646.0
-2017-12-02 21:00:00,10578.0
-2017-12-02 22:00:00,10440.0
-2017-12-02 23:00:00,10210.0
-2017-12-03 00:00:00,9814.0
-2017-12-01 01:00:00,9791.0
-2017-12-01 02:00:00,9385.0
-2017-12-01 03:00:00,9100.0
-2017-12-01 04:00:00,9005.0
-2017-12-01 05:00:00,9036.0
-2017-12-01 06:00:00,9328.0
-2017-12-01 07:00:00,10042.0
-2017-12-01 08:00:00,11134.0
-2017-12-01 09:00:00,11521.0
-2017-12-01 10:00:00,11524.0
-2017-12-01 11:00:00,11404.0
-2017-12-01 12:00:00,11312.0
-2017-12-01 13:00:00,11195.0
-2017-12-01 14:00:00,11075.0
-2017-12-01 15:00:00,11032.0
-2017-12-01 16:00:00,10908.0
-2017-12-01 17:00:00,10848.0
-2017-12-01 18:00:00,11465.0
-2017-12-01 19:00:00,11953.0
-2017-12-01 20:00:00,11823.0
-2017-12-01 21:00:00,11655.0
-2017-12-01 22:00:00,11457.0
-2017-12-01 23:00:00,11119.0
-2017-12-02 00:00:00,10491.0
-2017-11-30 01:00:00,9701.0
-2017-11-30 02:00:00,9205.0
-2017-11-30 03:00:00,8909.0
-2017-11-30 04:00:00,8799.0
-2017-11-30 05:00:00,8745.0
-2017-11-30 06:00:00,9015.0
-2017-11-30 07:00:00,9767.0
-2017-11-30 08:00:00,10842.0
-2017-11-30 09:00:00,11342.0
-2017-11-30 10:00:00,11368.0
-2017-11-30 11:00:00,11333.0
-2017-11-30 12:00:00,11339.0
-2017-11-30 13:00:00,11243.0
-2017-11-30 14:00:00,11171.0
-2017-11-30 15:00:00,11174.0
-2017-11-30 16:00:00,11054.0
-2017-11-30 17:00:00,11035.0
-2017-11-30 18:00:00,11570.0
-2017-11-30 19:00:00,12100.0
-2017-11-30 20:00:00,11966.0
-2017-11-30 21:00:00,11838.0
-2017-11-30 22:00:00,11629.0
-2017-11-30 23:00:00,11139.0
-2017-12-01 00:00:00,10447.0
-2017-11-29 01:00:00,9541.0
-2017-11-29 02:00:00,9112.0
-2017-11-29 03:00:00,8905.0
-2017-11-29 04:00:00,8805.0
-2017-11-29 05:00:00,8812.0
-2017-11-29 06:00:00,9100.0
-2017-11-29 07:00:00,9912.0
-2017-11-29 08:00:00,10988.0
-2017-11-29 09:00:00,11412.0
-2017-11-29 10:00:00,11424.0
-2017-11-29 11:00:00,11395.0
-2017-11-29 12:00:00,11442.0
-2017-11-29 13:00:00,11332.0
-2017-11-29 14:00:00,11268.0
-2017-11-29 15:00:00,11302.0
-2017-11-29 16:00:00,11164.0
-2017-11-29 17:00:00,11173.0
-2017-11-29 18:00:00,11797.0
-2017-11-29 19:00:00,12318.0
-2017-11-29 20:00:00,12171.0
-2017-11-29 21:00:00,11998.0
-2017-11-29 22:00:00,11681.0
-2017-11-29 23:00:00,11148.0
-2017-11-30 00:00:00,10391.0
-2017-11-28 01:00:00,9554.0
-2017-11-28 02:00:00,9113.0
-2017-11-28 03:00:00,8804.0
-2017-11-28 04:00:00,8641.0
-2017-11-28 05:00:00,8621.0
-2017-11-28 06:00:00,8843.0
-2017-11-28 07:00:00,9542.0
-2017-11-28 08:00:00,10617.0
-2017-11-28 09:00:00,11035.0
-2017-11-28 10:00:00,11271.0
-2017-11-28 11:00:00,11353.0
-2017-11-28 12:00:00,11337.0
-2017-11-28 13:00:00,11314.0
-2017-11-28 14:00:00,11275.0
-2017-11-28 15:00:00,11321.0
-2017-11-28 16:00:00,11253.0
-2017-11-28 17:00:00,11350.0
-2017-11-28 18:00:00,11887.0
-2017-11-28 19:00:00,12054.0
-2017-11-28 20:00:00,11847.0
-2017-11-28 21:00:00,11642.0
-2017-11-28 22:00:00,11418.0
-2017-11-28 23:00:00,10888.0
-2017-11-29 00:00:00,10184.0
-2017-11-27 01:00:00,8900.0
-2017-11-27 02:00:00,8666.0
-2017-11-27 03:00:00,8535.0
-2017-11-27 04:00:00,8470.0
-2017-11-27 05:00:00,8574.0
-2017-11-27 06:00:00,8922.0
-2017-11-27 07:00:00,9741.0
-2017-11-27 08:00:00,10884.0
-2017-11-27 09:00:00,11338.0
-2017-11-27 10:00:00,11359.0
-2017-11-27 11:00:00,11255.0
-2017-11-27 12:00:00,11258.0
-2017-11-27 13:00:00,11167.0
-2017-11-27 14:00:00,11076.0
-2017-11-27 15:00:00,11100.0
-2017-11-27 16:00:00,11069.0
-2017-11-27 17:00:00,11067.0
-2017-11-27 18:00:00,11661.0
-2017-11-27 19:00:00,12097.0
-2017-11-27 20:00:00,11943.0
-2017-11-27 21:00:00,11757.0
-2017-11-27 22:00:00,11497.0
-2017-11-27 23:00:00,10962.0
-2017-11-28 00:00:00,10247.0
-2017-11-26 01:00:00,9130.0
-2017-11-26 02:00:00,8832.0
-2017-11-26 03:00:00,8631.0
-2017-11-26 04:00:00,8510.0
-2017-11-26 05:00:00,8478.0
-2017-11-26 06:00:00,8576.0
-2017-11-26 07:00:00,8738.0
-2017-11-26 08:00:00,9045.0
-2017-11-26 09:00:00,9070.0
-2017-11-26 10:00:00,9156.0
-2017-11-26 11:00:00,9278.0
-2017-11-26 12:00:00,9318.0
-2017-11-26 13:00:00,9329.0
-2017-11-26 14:00:00,9269.0
-2017-11-26 15:00:00,9154.0
-2017-11-26 16:00:00,9089.0
-2017-11-26 17:00:00,9229.0
-2017-11-26 18:00:00,9900.0
-2017-11-26 19:00:00,10605.0
-2017-11-26 20:00:00,10596.0
-2017-11-26 21:00:00,10458.0
-2017-11-26 22:00:00,10265.0
-2017-11-26 23:00:00,9891.0
-2017-11-27 00:00:00,9378.0
-2017-11-25 01:00:00,8733.0
-2017-11-25 02:00:00,8310.0
-2017-11-25 03:00:00,8076.0
-2017-11-25 04:00:00,7940.0
-2017-11-25 05:00:00,7910.0
-2017-11-25 06:00:00,8045.0
-2017-11-25 07:00:00,8327.0
-2017-11-25 08:00:00,8737.0
-2017-11-25 09:00:00,8913.0
-2017-11-25 10:00:00,9185.0
-2017-11-25 11:00:00,9370.0
-2017-11-25 12:00:00,9453.0
-2017-11-25 13:00:00,9444.0
-2017-11-25 14:00:00,9387.0
-2017-11-25 15:00:00,9226.0
-2017-11-25 16:00:00,9119.0
-2017-11-25 17:00:00,9211.0
-2017-11-25 18:00:00,9765.0
-2017-11-25 19:00:00,10334.0
-2017-11-25 20:00:00,10377.0
-2017-11-25 21:00:00,10279.0
-2017-11-25 22:00:00,10190.0
-2017-11-25 23:00:00,9960.0
-2017-11-26 00:00:00,9594.0
-2017-11-24 01:00:00,8860.0
-2017-11-24 02:00:00,8644.0
-2017-11-24 03:00:00,8477.0
-2017-11-24 04:00:00,8397.0
-2017-11-24 05:00:00,8405.0
-2017-11-24 06:00:00,8567.0
-2017-11-24 07:00:00,8975.0
-2017-11-24 08:00:00,9399.0
-2017-11-24 09:00:00,9446.0
-2017-11-24 10:00:00,9538.0
-2017-11-24 11:00:00,9564.0
-2017-11-24 12:00:00,9549.0
-2017-11-24 13:00:00,9532.0
-2017-11-24 14:00:00,9487.0
-2017-11-24 15:00:00,9419.0
-2017-11-24 16:00:00,9369.0
-2017-11-24 17:00:00,9386.0
-2017-11-24 18:00:00,9932.0
-2017-11-24 19:00:00,10420.0
-2017-11-24 20:00:00,10294.0
-2017-11-24 21:00:00,10169.0
-2017-11-24 22:00:00,9938.0
-2017-11-24 23:00:00,9656.0
-2017-11-25 00:00:00,9162.0
-2017-11-23 01:00:00,9998.0
-2017-11-23 02:00:00,9513.0
-2017-11-23 03:00:00,9187.0
-2017-11-23 04:00:00,8968.0
-2017-11-23 05:00:00,8891.0
-2017-11-23 06:00:00,8936.0
-2017-11-23 07:00:00,9081.0
-2017-11-23 08:00:00,9274.0
-2017-11-23 09:00:00,9240.0
-2017-11-23 10:00:00,9344.0
-2017-11-23 11:00:00,9388.0
-2017-11-23 12:00:00,9467.0
-2017-11-23 13:00:00,9470.0
-2017-11-23 14:00:00,9357.0
-2017-11-23 15:00:00,9151.0
-2017-11-23 16:00:00,8953.0
-2017-11-23 17:00:00,8901.0
-2017-11-23 18:00:00,9261.0
-2017-11-23 19:00:00,9609.0
-2017-11-23 20:00:00,9549.0
-2017-11-23 21:00:00,9504.0
-2017-11-23 22:00:00,9483.0
-2017-11-23 23:00:00,9378.0
-2017-11-24 00:00:00,9140.0
-2017-11-22 01:00:00,10412.0
-2017-11-22 02:00:00,9991.0
-2017-11-22 03:00:00,9785.0
-2017-11-22 04:00:00,9667.0
-2017-11-22 05:00:00,9670.0
-2017-11-22 06:00:00,9959.0
-2017-11-22 07:00:00,10639.0
-2017-11-22 08:00:00,11494.0
-2017-11-22 09:00:00,11814.0
-2017-11-22 10:00:00,11923.0
-2017-11-22 11:00:00,11976.0
-2017-11-22 12:00:00,11945.0
-2017-11-22 13:00:00,11840.0
-2017-11-22 14:00:00,11721.0
-2017-11-22 15:00:00,11611.0
-2017-11-22 16:00:00,11463.0
-2017-11-22 17:00:00,11536.0
-2017-11-22 18:00:00,12096.0
-2017-11-22 19:00:00,12445.0
-2017-11-22 20:00:00,12207.0
-2017-11-22 21:00:00,11968.0
-2017-11-22 22:00:00,11706.0
-2017-11-22 23:00:00,11290.0
-2017-11-23 00:00:00,10612.0
-2017-11-21 01:00:00,9888.0
-2017-11-21 02:00:00,9447.0
-2017-11-21 03:00:00,9189.0
-2017-11-21 04:00:00,9028.0
-2017-11-21 05:00:00,9025.0
-2017-11-21 06:00:00,9279.0
-2017-11-21 07:00:00,10012.0
-2017-11-21 08:00:00,10988.0
-2017-11-21 09:00:00,11405.0
-2017-11-21 10:00:00,11717.0
-2017-11-21 11:00:00,11850.0
-2017-11-21 12:00:00,11990.0
-2017-11-21 13:00:00,11948.0
-2017-11-21 14:00:00,11974.0
-2017-11-21 15:00:00,12018.0
-2017-11-21 16:00:00,11914.0
-2017-11-21 17:00:00,11812.0
-2017-11-21 18:00:00,12299.0
-2017-11-21 19:00:00,12643.0
-2017-11-21 20:00:00,12417.0
-2017-11-21 21:00:00,12254.0
-2017-11-21 22:00:00,12029.0
-2017-11-21 23:00:00,11565.0
-2017-11-22 00:00:00,11008.0
-2017-11-20 01:00:00,9858.0
-2017-11-20 02:00:00,9527.0
-2017-11-20 03:00:00,9405.0
-2017-11-20 04:00:00,9328.0
-2017-11-20 05:00:00,9382.0
-2017-11-20 06:00:00,9699.0
-2017-11-20 07:00:00,10414.0
-2017-11-20 08:00:00,11433.0
-2017-11-20 09:00:00,11797.0
-2017-11-20 10:00:00,11797.0
-2017-11-20 11:00:00,11776.0
-2017-11-20 12:00:00,11731.0
-2017-11-20 13:00:00,11616.0
-2017-11-20 14:00:00,11489.0
-2017-11-20 15:00:00,11418.0
-2017-11-20 16:00:00,11301.0
-2017-11-20 17:00:00,11257.0
-2017-11-20 18:00:00,11778.0
-2017-11-20 19:00:00,12240.0
-2017-11-20 20:00:00,12080.0
-2017-11-20 21:00:00,11891.0
-2017-11-20 22:00:00,11644.0
-2017-11-20 23:00:00,11173.0
-2017-11-21 00:00:00,10509.0
-2017-11-19 01:00:00,9595.0
-2017-11-19 02:00:00,9237.0
-2017-11-19 03:00:00,8985.0
-2017-11-19 04:00:00,8885.0
-2017-11-19 05:00:00,8852.0
-2017-11-19 06:00:00,8922.0
-2017-11-19 07:00:00,9110.0
-2017-11-19 08:00:00,9407.0
-2017-11-19 09:00:00,9463.0
-2017-11-19 10:00:00,9685.0
-2017-11-19 11:00:00,9800.0
-2017-11-19 12:00:00,9911.0
-2017-11-19 13:00:00,9904.0
-2017-11-19 14:00:00,9902.0
-2017-11-19 15:00:00,9847.0
-2017-11-19 16:00:00,9845.0
-2017-11-19 17:00:00,9969.0
-2017-11-19 18:00:00,10614.0
-2017-11-19 19:00:00,11191.0
-2017-11-19 20:00:00,11286.0
-2017-11-19 21:00:00,11262.0
-2017-11-19 22:00:00,11050.0
-2017-11-19 23:00:00,10783.0
-2017-11-20 00:00:00,10297.0
-2017-11-18 01:00:00,9645.0
-2017-11-18 02:00:00,9171.0
-2017-11-18 03:00:00,8829.0
-2017-11-18 04:00:00,8635.0
-2017-11-18 05:00:00,8553.0
-2017-11-18 06:00:00,8639.0
-2017-11-18 07:00:00,8990.0
-2017-11-18 08:00:00,9534.0
-2017-11-18 09:00:00,10027.0
-2017-11-18 10:00:00,10522.0
-2017-11-18 11:00:00,10928.0
-2017-11-18 12:00:00,11149.0
-2017-11-18 13:00:00,11147.0
-2017-11-18 14:00:00,11108.0
-2017-11-18 15:00:00,10995.0
-2017-11-18 16:00:00,10899.0
-2017-11-18 17:00:00,10909.0
-2017-11-18 18:00:00,11198.0
-2017-11-18 19:00:00,11394.0
-2017-11-18 20:00:00,11243.0
-2017-11-18 21:00:00,11080.0
-2017-11-18 22:00:00,10825.0
-2017-11-18 23:00:00,10563.0
-2017-11-19 00:00:00,10070.0
-2017-11-17 01:00:00,9993.0
-2017-11-17 02:00:00,9584.0
-2017-11-17 03:00:00,9307.0
-2017-11-17 04:00:00,9223.0
-2017-11-17 05:00:00,9244.0
-2017-11-17 06:00:00,9527.0
-2017-11-17 07:00:00,10256.0
-2017-11-17 08:00:00,11295.0
-2017-11-17 09:00:00,11681.0
-2017-11-17 10:00:00,11867.0
-2017-11-17 11:00:00,11930.0
-2017-11-17 12:00:00,11977.0
-2017-11-17 13:00:00,11897.0
-2017-11-17 14:00:00,11787.0
-2017-11-17 15:00:00,11821.0
-2017-11-17 16:00:00,11834.0
-2017-11-17 17:00:00,11828.0
-2017-11-17 18:00:00,12186.0
-2017-11-17 19:00:00,12199.0
-2017-11-17 20:00:00,11973.0
-2017-11-17 21:00:00,11714.0
-2017-11-17 22:00:00,11432.0
-2017-11-17 23:00:00,10925.0
-2017-11-18 00:00:00,10310.0
-2017-11-16 01:00:00,9993.0
-2017-11-16 02:00:00,9588.0
-2017-11-16 03:00:00,9325.0
-2017-11-16 04:00:00,9207.0
-2017-11-16 05:00:00,9190.0
-2017-11-16 06:00:00,9483.0
-2017-11-16 07:00:00,10234.0
-2017-11-16 08:00:00,11268.0
-2017-11-16 09:00:00,11741.0
-2017-11-16 10:00:00,11974.0
-2017-11-16 11:00:00,12008.0
-2017-11-16 12:00:00,12071.0
-2017-11-16 13:00:00,11980.0
-2017-11-16 14:00:00,11919.0
-2017-11-16 15:00:00,11936.0
-2017-11-16 16:00:00,11896.0
-2017-11-16 17:00:00,11976.0
-2017-11-16 18:00:00,12439.0
-2017-11-16 19:00:00,12634.0
-2017-11-16 20:00:00,12389.0
-2017-11-16 21:00:00,12133.0
-2017-11-16 22:00:00,11808.0
-2017-11-16 23:00:00,11360.0
-2017-11-17 00:00:00,10643.0
-2017-11-15 01:00:00,9634.0
-2017-11-15 02:00:00,9219.0
-2017-11-15 03:00:00,8943.0
-2017-11-15 04:00:00,8796.0
-2017-11-15 05:00:00,8813.0
-2017-11-15 06:00:00,9083.0
-2017-11-15 07:00:00,9816.0
-2017-11-15 08:00:00,10826.0
-2017-11-15 09:00:00,11499.0
-2017-11-15 10:00:00,11803.0
-2017-11-15 11:00:00,11858.0
-2017-11-15 12:00:00,11939.0
-2017-11-15 13:00:00,11890.0
-2017-11-15 14:00:00,11802.0
-2017-11-15 15:00:00,11741.0
-2017-11-15 16:00:00,11563.0
-2017-11-15 17:00:00,11429.0
-2017-11-15 18:00:00,11740.0
-2017-11-15 19:00:00,12213.0
-2017-11-15 20:00:00,12078.0
-2017-11-15 21:00:00,11967.0
-2017-11-15 22:00:00,11754.0
-2017-11-15 23:00:00,11329.0
-2017-11-16 00:00:00,10644.0
-2017-11-14 01:00:00,10043.0
-2017-11-14 02:00:00,9701.0
-2017-11-14 03:00:00,9459.0
-2017-11-14 04:00:00,9356.0
-2017-11-14 05:00:00,9344.0
-2017-11-14 06:00:00,9638.0
-2017-11-14 07:00:00,10409.0
-2017-11-14 08:00:00,11428.0
-2017-11-14 09:00:00,11718.0
-2017-11-14 10:00:00,11796.0
-2017-11-14 11:00:00,11782.0
-2017-11-14 12:00:00,11749.0
-2017-11-14 13:00:00,11719.0
-2017-11-14 14:00:00,11701.0
-2017-11-14 15:00:00,11725.0
-2017-11-14 16:00:00,11643.0
-2017-11-14 17:00:00,11668.0
-2017-11-14 18:00:00,12031.0
-2017-11-14 19:00:00,12285.0
-2017-11-14 20:00:00,12069.0
-2017-11-14 21:00:00,11824.0
-2017-11-14 22:00:00,11498.0
-2017-11-14 23:00:00,10983.0
-2017-11-15 00:00:00,10260.0
-2017-11-13 01:00:00,9221.0
-2017-11-13 02:00:00,8975.0
-2017-11-13 03:00:00,8870.0
-2017-11-13 04:00:00,8819.0
-2017-11-13 05:00:00,8991.0
-2017-11-13 06:00:00,9319.0
-2017-11-13 07:00:00,10149.0
-2017-11-13 08:00:00,11229.0
-2017-11-13 09:00:00,11705.0
-2017-11-13 10:00:00,11723.0
-2017-11-13 11:00:00,11745.0
-2017-11-13 12:00:00,11768.0
-2017-11-13 13:00:00,11747.0
-2017-11-13 14:00:00,11776.0
-2017-11-13 15:00:00,11822.0
-2017-11-13 16:00:00,11758.0
-2017-11-13 17:00:00,11764.0
-2017-11-13 18:00:00,12159.0
-2017-11-13 19:00:00,12516.0
-2017-11-13 20:00:00,12307.0
-2017-11-13 21:00:00,12103.0
-2017-11-13 22:00:00,11835.0
-2017-11-13 23:00:00,11331.0
-2017-11-14 00:00:00,10647.0
-2017-11-12 01:00:00,9524.0
-2017-11-12 02:00:00,9150.0
-2017-11-12 03:00:00,8934.0
-2017-11-12 04:00:00,8740.0
-2017-11-12 05:00:00,8725.0
-2017-11-12 06:00:00,8736.0
-2017-11-12 07:00:00,8881.0
-2017-11-12 08:00:00,9118.0
-2017-11-12 09:00:00,9196.0
-2017-11-12 10:00:00,9491.0
-2017-11-12 11:00:00,9795.0
-2017-11-12 12:00:00,9954.0
-2017-11-12 13:00:00,10061.0
-2017-11-12 14:00:00,10140.0
-2017-11-12 15:00:00,10097.0
-2017-11-12 16:00:00,10042.0
-2017-11-12 17:00:00,10060.0
-2017-11-12 18:00:00,10551.0
-2017-11-12 19:00:00,10888.0
-2017-11-12 20:00:00,10843.0
-2017-11-12 21:00:00,10729.0
-2017-11-12 22:00:00,10544.0
-2017-11-12 23:00:00,10162.0
-2017-11-13 00:00:00,9654.0
-2017-11-11 01:00:00,10605.0
-2017-11-11 02:00:00,10192.0
-2017-11-11 03:00:00,9942.0
-2017-11-11 04:00:00,9746.0
-2017-11-11 05:00:00,9668.0
-2017-11-11 06:00:00,9755.0
-2017-11-11 07:00:00,10075.0
-2017-11-11 08:00:00,10466.0
-2017-11-11 09:00:00,10763.0
-2017-11-11 10:00:00,11119.0
-2017-11-11 11:00:00,11362.0
-2017-11-11 12:00:00,11340.0
-2017-11-11 13:00:00,11217.0
-2017-11-11 14:00:00,11080.0
-2017-11-11 15:00:00,10916.0
-2017-11-11 16:00:00,10706.0
-2017-11-11 17:00:00,10753.0
-2017-11-11 18:00:00,11116.0
-2017-11-11 19:00:00,11415.0
-2017-11-11 20:00:00,11257.0
-2017-11-11 21:00:00,11063.0
-2017-11-11 22:00:00,10797.0
-2017-11-11 23:00:00,10495.0
-2017-11-12 00:00:00,9971.0
-2017-11-10 01:00:00,10424.0
-2017-11-10 02:00:00,10088.0
-2017-11-10 03:00:00,9878.0
-2017-11-10 04:00:00,9763.0
-2017-11-10 05:00:00,9811.0
-2017-11-10 06:00:00,10122.0
-2017-11-10 07:00:00,10806.0
-2017-11-10 08:00:00,11747.0
-2017-11-10 09:00:00,12214.0
-2017-11-10 10:00:00,12493.0
-2017-11-10 11:00:00,12524.0
-2017-11-10 12:00:00,12561.0
-2017-11-10 13:00:00,12526.0
-2017-11-10 14:00:00,12450.0
-2017-11-10 15:00:00,12428.0
-2017-11-10 16:00:00,12281.0
-2017-11-10 17:00:00,12178.0
-2017-11-10 18:00:00,12539.0
-2017-11-10 19:00:00,12856.0
-2017-11-10 20:00:00,12653.0
-2017-11-10 21:00:00,12486.0
-2017-11-10 22:00:00,12185.0
-2017-11-10 23:00:00,11786.0
-2017-11-11 00:00:00,11174.0
-2017-11-09 01:00:00,9814.0
-2017-11-09 02:00:00,9396.0
-2017-11-09 03:00:00,9207.0
-2017-11-09 04:00:00,9086.0
-2017-11-09 05:00:00,9092.0
-2017-11-09 06:00:00,9363.0
-2017-11-09 07:00:00,10034.0
-2017-11-09 08:00:00,11041.0
-2017-11-09 09:00:00,11506.0
-2017-11-09 10:00:00,11649.0
-2017-11-09 11:00:00,11583.0
-2017-11-09 12:00:00,11593.0
-2017-11-09 13:00:00,11580.0
-2017-11-09 14:00:00,11475.0
-2017-11-09 15:00:00,11437.0
-2017-11-09 16:00:00,11377.0
-2017-11-09 17:00:00,11395.0
-2017-11-09 18:00:00,11795.0
-2017-11-09 19:00:00,12411.0
-2017-11-09 20:00:00,12333.0
-2017-11-09 21:00:00,12227.0
-2017-11-09 22:00:00,12039.0
-2017-11-09 23:00:00,11591.0
-2017-11-10 00:00:00,10980.0
-2017-11-08 01:00:00,9751.0
-2017-11-08 02:00:00,9377.0
-2017-11-08 03:00:00,9184.0
-2017-11-08 04:00:00,9074.0
-2017-11-08 05:00:00,9097.0
-2017-11-08 06:00:00,9419.0
-2017-11-08 07:00:00,10161.0
-2017-11-08 08:00:00,11116.0
-2017-11-08 09:00:00,11448.0
-2017-11-08 10:00:00,11462.0
-2017-11-08 11:00:00,11426.0
-2017-11-08 12:00:00,11447.0
-2017-11-08 13:00:00,11344.0
-2017-11-08 14:00:00,11252.0
-2017-11-08 15:00:00,11204.0
-2017-11-08 16:00:00,11073.0
-2017-11-08 17:00:00,11034.0
-2017-11-08 18:00:00,11432.0
-2017-11-08 19:00:00,12035.0
-2017-11-08 20:00:00,11923.0
-2017-11-08 21:00:00,11777.0
-2017-11-08 22:00:00,11540.0
-2017-11-08 23:00:00,11068.0
-2017-11-09 00:00:00,10398.0
-2017-11-07 01:00:00,9454.0
-2017-11-07 02:00:00,9079.0
-2017-11-07 03:00:00,8835.0
-2017-11-07 04:00:00,8766.0
-2017-11-07 05:00:00,8781.0
-2017-11-07 06:00:00,9080.0
-2017-11-07 07:00:00,9844.0
-2017-11-07 08:00:00,10859.0
-2017-11-07 09:00:00,11242.0
-2017-11-07 10:00:00,11330.0
-2017-11-07 11:00:00,11378.0
-2017-11-07 12:00:00,11504.0
-2017-11-07 13:00:00,11454.0
-2017-11-07 14:00:00,11416.0
-2017-11-07 15:00:00,11431.0
-2017-11-07 16:00:00,11358.0
-2017-11-07 17:00:00,11380.0
-2017-11-07 18:00:00,11676.0
-2017-11-07 19:00:00,12137.0
-2017-11-07 20:00:00,11984.0
-2017-11-07 21:00:00,11803.0
-2017-11-07 22:00:00,11519.0
-2017-11-07 23:00:00,11018.0
-2017-11-08 00:00:00,10353.0
-2017-11-06 01:00:00,8530.0
-2017-11-06 02:00:00,8339.0
-2017-11-06 03:00:00,8207.0
-2017-11-06 04:00:00,8242.0
-2017-11-06 05:00:00,8343.0
-2017-11-06 06:00:00,8723.0
-2017-11-06 07:00:00,9647.0
-2017-11-06 08:00:00,10678.0
-2017-11-06 09:00:00,11160.0
-2017-11-06 10:00:00,11286.0
-2017-11-06 11:00:00,11272.0
-2017-11-06 12:00:00,11343.0
-2017-11-06 13:00:00,11363.0
-2017-11-06 14:00:00,11278.0
-2017-11-06 15:00:00,11290.0
-2017-11-06 16:00:00,11170.0
-2017-11-06 17:00:00,11152.0
-2017-11-06 18:00:00,11595.0
-2017-11-06 19:00:00,12124.0
-2017-11-06 20:00:00,11934.0
-2017-11-06 21:00:00,11700.0
-2017-11-06 22:00:00,11341.0
-2017-11-06 23:00:00,10795.0
-2017-11-07 00:00:00,10069.0
-2017-11-05 01:00:00,8576.0
-2017-11-05 02:00:00,8198.0
-2017-11-05 02:00:00,7878.0
-2017-11-05 03:00:00,7889.0
-2017-11-05 04:00:00,7636.0
-2017-11-05 05:00:00,7598.0
-2017-11-05 06:00:00,7642.0
-2017-11-05 07:00:00,7805.0
-2017-11-05 08:00:00,8130.0
-2017-11-05 09:00:00,8300.0
-2017-11-05 10:00:00,8658.0
-2017-11-05 11:00:00,8920.0
-2017-11-05 12:00:00,9067.0
-2017-11-05 13:00:00,9149.0
-2017-11-05 14:00:00,9225.0
-2017-11-05 15:00:00,9213.0
-2017-11-05 16:00:00,9234.0
-2017-11-05 17:00:00,9251.0
-2017-11-05 18:00:00,9740.0
-2017-11-05 19:00:00,10096.0
-2017-11-05 20:00:00,10002.0
-2017-11-05 21:00:00,9854.0
-2017-11-05 22:00:00,9663.0
-2017-11-05 23:00:00,9276.0
-2017-11-06 00:00:00,8818.0
-2017-11-04 01:00:00,9441.0
-2017-11-04 02:00:00,9024.0
-2017-11-04 03:00:00,8699.0
-2017-11-04 04:00:00,8555.0
-2017-11-04 05:00:00,8465.0
-2017-11-04 06:00:00,8529.0
-2017-11-04 07:00:00,8755.0
-2017-11-04 08:00:00,9177.0
-2017-11-04 09:00:00,9624.0
-2017-11-04 10:00:00,9973.0
-2017-11-04 11:00:00,10268.0
-2017-11-04 12:00:00,10370.0
-2017-11-04 13:00:00,10357.0
-2017-11-04 14:00:00,10234.0
-2017-11-04 15:00:00,10054.0
-2017-11-04 16:00:00,9879.0
-2017-11-04 17:00:00,9782.0
-2017-11-04 18:00:00,9784.0
-2017-11-04 19:00:00,10089.0
-2017-11-04 20:00:00,10268.0
-2017-11-04 21:00:00,10128.0
-2017-11-04 22:00:00,9947.0
-2017-11-04 23:00:00,9665.0
-2017-11-05 00:00:00,9242.0
-2017-11-03 01:00:00,9250.0
-2017-11-03 02:00:00,8832.0
-2017-11-03 03:00:00,8589.0
-2017-11-03 04:00:00,8462.0
-2017-11-03 05:00:00,8438.0
-2017-11-03 06:00:00,8698.0
-2017-11-03 07:00:00,9393.0
-2017-11-03 08:00:00,10432.0
-2017-11-03 09:00:00,11122.0
-2017-11-03 10:00:00,11213.0
-2017-11-03 11:00:00,11300.0
-2017-11-03 12:00:00,11342.0
-2017-11-03 13:00:00,11274.0
-2017-11-03 14:00:00,11150.0
-2017-11-03 15:00:00,10982.0
-2017-11-03 16:00:00,10845.0
-2017-11-03 17:00:00,10714.0
-2017-11-03 18:00:00,10681.0
-2017-11-03 19:00:00,10985.0
-2017-11-03 20:00:00,11259.0
-2017-11-03 21:00:00,11177.0
-2017-11-03 22:00:00,10982.0
-2017-11-03 23:00:00,10575.0
-2017-11-04 00:00:00,10043.0
-2017-11-02 01:00:00,9519.0
-2017-11-02 02:00:00,9062.0
-2017-11-02 03:00:00,8704.0
-2017-11-02 04:00:00,8492.0
-2017-11-02 05:00:00,8485.0
-2017-11-02 06:00:00,8655.0
-2017-11-02 07:00:00,9298.0
-2017-11-02 08:00:00,10410.0
-2017-11-02 09:00:00,11133.0
-2017-11-02 10:00:00,11243.0
-2017-11-02 11:00:00,11264.0
-2017-11-02 12:00:00,11280.0
-2017-11-02 13:00:00,11246.0
-2017-11-02 14:00:00,11262.0
-2017-11-02 15:00:00,11291.0
-2017-11-02 16:00:00,11212.0
-2017-11-02 17:00:00,11137.0
-2017-11-02 18:00:00,11182.0
-2017-11-02 19:00:00,11386.0
-2017-11-02 20:00:00,11439.0
-2017-11-02 21:00:00,11256.0
-2017-11-02 22:00:00,10990.0
-2017-11-02 23:00:00,10513.0
-2017-11-03 00:00:00,9858.0
-2017-11-01 01:00:00,9626.0
-2017-11-01 02:00:00,9242.0
-2017-11-01 03:00:00,8982.0
-2017-11-01 04:00:00,8830.0
-2017-11-01 05:00:00,8810.0
-2017-11-01 06:00:00,9086.0
-2017-11-01 07:00:00,9778.0
-2017-11-01 08:00:00,10884.0
-2017-11-01 09:00:00,11578.0
-2017-11-01 10:00:00,11596.0
-2017-11-01 11:00:00,11665.0
-2017-11-01 12:00:00,11653.0
-2017-11-01 13:00:00,11659.0
-2017-11-01 14:00:00,11559.0
-2017-11-01 15:00:00,11554.0
-2017-11-01 16:00:00,11494.0
-2017-11-01 17:00:00,11504.0
-2017-11-01 18:00:00,11644.0
-2017-11-01 19:00:00,11912.0
-2017-11-01 20:00:00,11964.0
-2017-11-01 21:00:00,11791.0
-2017-11-01 22:00:00,11447.0
-2017-11-01 23:00:00,10929.0
-2017-11-02 00:00:00,10166.0
-2017-10-31 01:00:00,9667.0
-2017-10-31 02:00:00,9291.0
-2017-10-31 03:00:00,9031.0
-2017-10-31 04:00:00,8922.0
-2017-10-31 05:00:00,8934.0
-2017-10-31 06:00:00,9158.0
-2017-10-31 07:00:00,9848.0
-2017-10-31 08:00:00,10963.0
-2017-10-31 09:00:00,11653.0
-2017-10-31 10:00:00,11734.0
-2017-10-31 11:00:00,11671.0
-2017-10-31 12:00:00,11655.0
-2017-10-31 13:00:00,11557.0
-2017-10-31 14:00:00,11418.0
-2017-10-31 15:00:00,11345.0
-2017-10-31 16:00:00,11178.0
-2017-10-31 17:00:00,11098.0
-2017-10-31 18:00:00,11124.0
-2017-10-31 19:00:00,11329.0
-2017-10-31 20:00:00,11667.0
-2017-10-31 21:00:00,11550.0
-2017-10-31 22:00:00,11337.0
-2017-10-31 23:00:00,10909.0
-2017-11-01 00:00:00,10258.0
-2017-10-30 01:00:00,8865.0
-2017-10-30 02:00:00,8557.0
-2017-10-30 03:00:00,8372.0
-2017-10-30 04:00:00,8279.0
-2017-10-30 05:00:00,8307.0
-2017-10-30 06:00:00,8571.0
-2017-10-30 07:00:00,9343.0
-2017-10-30 08:00:00,10549.0
-2017-10-30 09:00:00,11271.0
-2017-10-30 10:00:00,11373.0
-2017-10-30 11:00:00,11403.0
-2017-10-30 12:00:00,11384.0
-2017-10-30 13:00:00,11307.0
-2017-10-30 14:00:00,11218.0
-2017-10-30 15:00:00,11256.0
-2017-10-30 16:00:00,11213.0
-2017-10-30 17:00:00,11242.0
-2017-10-30 18:00:00,11350.0
-2017-10-30 19:00:00,11622.0
-2017-10-30 20:00:00,11867.0
-2017-10-30 21:00:00,11740.0
-2017-10-30 22:00:00,11467.0
-2017-10-30 23:00:00,10982.0
-2017-10-31 00:00:00,10287.0
-2017-10-29 01:00:00,9119.0
-2017-10-29 02:00:00,8748.0
-2017-10-29 03:00:00,8520.0
-2017-10-29 04:00:00,8346.0
-2017-10-29 05:00:00,8304.0
-2017-10-29 06:00:00,8296.0
-2017-10-29 07:00:00,8462.0
-2017-10-29 08:00:00,8740.0
-2017-10-29 09:00:00,8881.0
-2017-10-29 10:00:00,8970.0
-2017-10-29 11:00:00,9118.0
-2017-10-29 12:00:00,9152.0
-2017-10-29 13:00:00,9158.0
-2017-10-29 14:00:00,9127.0
-2017-10-29 15:00:00,9036.0
-2017-10-29 16:00:00,8963.0
-2017-10-29 17:00:00,8934.0
-2017-10-29 18:00:00,9049.0
-2017-10-29 19:00:00,9404.0
-2017-10-29 20:00:00,10121.0
-2017-10-29 21:00:00,10150.0
-2017-10-29 22:00:00,10017.0
-2017-10-29 23:00:00,9704.0
-2017-10-30 00:00:00,9287.0
-2017-10-28 01:00:00,9620.0
-2017-10-28 02:00:00,9170.0
-2017-10-28 03:00:00,8897.0
-2017-10-28 04:00:00,8659.0
-2017-10-28 05:00:00,8615.0
-2017-10-28 06:00:00,8657.0
-2017-10-28 07:00:00,8973.0
-2017-10-28 08:00:00,9441.0
-2017-10-28 09:00:00,9783.0
-2017-10-28 10:00:00,9980.0
-2017-10-28 11:00:00,10239.0
-2017-10-28 12:00:00,10258.0
-2017-10-28 13:00:00,10292.0
-2017-10-28 14:00:00,10249.0
-2017-10-28 15:00:00,10093.0
-2017-10-28 16:00:00,9948.0
-2017-10-28 17:00:00,9910.0
-2017-10-28 18:00:00,9964.0
-2017-10-28 19:00:00,10230.0
-2017-10-28 20:00:00,10542.0
-2017-10-28 21:00:00,10444.0
-2017-10-28 22:00:00,10253.0
-2017-10-28 23:00:00,9977.0
-2017-10-29 00:00:00,9556.0
-2017-10-27 01:00:00,9182.0
-2017-10-27 02:00:00,8740.0
-2017-10-27 03:00:00,8492.0
-2017-10-27 04:00:00,8375.0
-2017-10-27 05:00:00,8340.0
-2017-10-27 06:00:00,8583.0
-2017-10-27 07:00:00,9265.0
-2017-10-27 08:00:00,10390.0
-2017-10-27 09:00:00,11117.0
-2017-10-27 10:00:00,11325.0
-2017-10-27 11:00:00,11450.0
-2017-10-27 12:00:00,11608.0
-2017-10-27 13:00:00,11556.0
-2017-10-27 14:00:00,11419.0
-2017-10-27 15:00:00,11429.0
-2017-10-27 16:00:00,11355.0
-2017-10-27 17:00:00,11243.0
-2017-10-27 18:00:00,11259.0
-2017-10-27 19:00:00,11456.0
-2017-10-27 20:00:00,11617.0
-2017-10-27 21:00:00,11389.0
-2017-10-27 22:00:00,11217.0
-2017-10-27 23:00:00,10833.0
-2017-10-28 00:00:00,10238.0
-2017-10-26 01:00:00,9330.0
-2017-10-26 02:00:00,8915.0
-2017-10-26 03:00:00,8691.0
-2017-10-26 04:00:00,8549.0
-2017-10-26 05:00:00,8526.0
-2017-10-26 06:00:00,8735.0
-2017-10-26 07:00:00,9497.0
-2017-10-26 08:00:00,10652.0
-2017-10-26 09:00:00,11127.0
-2017-10-26 10:00:00,11137.0
-2017-10-26 11:00:00,11111.0
-2017-10-26 12:00:00,11094.0
-2017-10-26 13:00:00,11067.0
-2017-10-26 14:00:00,11049.0
-2017-10-26 15:00:00,11058.0
-2017-10-26 16:00:00,10983.0
-2017-10-26 17:00:00,10852.0
-2017-10-26 18:00:00,10781.0
-2017-10-26 19:00:00,10923.0
-2017-10-26 20:00:00,11360.0
-2017-10-26 21:00:00,11252.0
-2017-10-26 22:00:00,10998.0
-2017-10-26 23:00:00,10524.0
-2017-10-27 00:00:00,9829.0
-2017-10-25 01:00:00,9290.0
-2017-10-25 02:00:00,8858.0
-2017-10-25 03:00:00,8602.0
-2017-10-25 04:00:00,8474.0
-2017-10-25 05:00:00,8467.0
-2017-10-25 06:00:00,8683.0
-2017-10-25 07:00:00,9431.0
-2017-10-25 08:00:00,10564.0
-2017-10-25 09:00:00,11173.0
-2017-10-25 10:00:00,11214.0
-2017-10-25 11:00:00,11175.0
-2017-10-25 12:00:00,11091.0
-2017-10-25 13:00:00,11057.0
-2017-10-25 14:00:00,10944.0
-2017-10-25 15:00:00,10906.0
-2017-10-25 16:00:00,10795.0
-2017-10-25 17:00:00,10647.0
-2017-10-25 18:00:00,10537.0
-2017-10-25 19:00:00,10610.0
-2017-10-25 20:00:00,11158.0
-2017-10-25 21:00:00,11172.0
-2017-10-25 22:00:00,10972.0
-2017-10-25 23:00:00,10537.0
-2017-10-26 00:00:00,9907.0
-2017-10-24 01:00:00,8943.0
-2017-10-24 02:00:00,8540.0
-2017-10-24 03:00:00,8299.0
-2017-10-24 04:00:00,8090.0
-2017-10-24 05:00:00,8087.0
-2017-10-24 06:00:00,8287.0
-2017-10-24 07:00:00,8944.0
-2017-10-24 08:00:00,10093.0
-2017-10-24 09:00:00,10907.0
-2017-10-24 10:00:00,11139.0
-2017-10-24 11:00:00,11265.0
-2017-10-24 12:00:00,11401.0
-2017-10-24 13:00:00,11426.0
-2017-10-24 14:00:00,11376.0
-2017-10-24 15:00:00,11406.0
-2017-10-24 16:00:00,11277.0
-2017-10-24 17:00:00,11184.0
-2017-10-24 18:00:00,11221.0
-2017-10-24 19:00:00,11469.0
-2017-10-24 20:00:00,11613.0
-2017-10-24 21:00:00,11461.0
-2017-10-24 22:00:00,11134.0
-2017-10-24 23:00:00,10596.0
-2017-10-25 00:00:00,9911.0
-2017-10-23 01:00:00,8210.0
-2017-10-23 02:00:00,7939.0
-2017-10-23 03:00:00,7727.0
-2017-10-23 04:00:00,7629.0
-2017-10-23 05:00:00,7624.0
-2017-10-23 06:00:00,7910.0
-2017-10-23 07:00:00,8582.0
-2017-10-23 08:00:00,9695.0
-2017-10-23 09:00:00,10554.0
-2017-10-23 10:00:00,10737.0
-2017-10-23 11:00:00,10864.0
-2017-10-23 12:00:00,10999.0
-2017-10-23 13:00:00,11071.0
-2017-10-23 14:00:00,11015.0
-2017-10-23 15:00:00,11010.0
-2017-10-23 16:00:00,10870.0
-2017-10-23 17:00:00,10705.0
-2017-10-23 18:00:00,10705.0
-2017-10-23 19:00:00,10847.0
-2017-10-23 20:00:00,11108.0
-2017-10-23 21:00:00,10965.0
-2017-10-23 22:00:00,10638.0
-2017-10-23 23:00:00,10148.0
-2017-10-24 00:00:00,9532.0
-2017-10-22 01:00:00,8883.0
-2017-10-22 02:00:00,8397.0
-2017-10-22 03:00:00,8091.0
-2017-10-22 04:00:00,7834.0
-2017-10-22 05:00:00,7695.0
-2017-10-22 06:00:00,7686.0
-2017-10-22 07:00:00,7773.0
-2017-10-22 08:00:00,7995.0
-2017-10-22 09:00:00,8041.0
-2017-10-22 10:00:00,8421.0
-2017-10-22 11:00:00,8836.0
-2017-10-22 12:00:00,9146.0
-2017-10-22 13:00:00,9321.0
-2017-10-22 14:00:00,9456.0
-2017-10-22 15:00:00,9451.0
-2017-10-22 16:00:00,9375.0
-2017-10-22 17:00:00,9218.0
-2017-10-22 18:00:00,9178.0
-2017-10-22 19:00:00,9367.0
-2017-10-22 20:00:00,9676.0
-2017-10-22 21:00:00,9640.0
-2017-10-22 22:00:00,9419.0
-2017-10-22 23:00:00,9127.0
-2017-10-23 00:00:00,8674.0
-2017-10-21 01:00:00,9122.0
-2017-10-21 02:00:00,8631.0
-2017-10-21 03:00:00,8238.0
-2017-10-21 04:00:00,8021.0
-2017-10-21 05:00:00,7923.0
-2017-10-21 06:00:00,7941.0
-2017-10-21 07:00:00,8169.0
-2017-10-21 08:00:00,8600.0
-2017-10-21 09:00:00,8878.0
-2017-10-21 10:00:00,9194.0
-2017-10-21 11:00:00,9523.0
-2017-10-21 12:00:00,9696.0
-2017-10-21 13:00:00,9875.0
-2017-10-21 14:00:00,9977.0
-2017-10-21 15:00:00,10066.0
-2017-10-21 16:00:00,10130.0
-2017-10-21 17:00:00,10182.0
-2017-10-21 18:00:00,10117.0
-2017-10-21 19:00:00,10080.0
-2017-10-21 20:00:00,10507.0
-2017-10-21 21:00:00,10468.0
-2017-10-21 22:00:00,10261.0
-2017-10-21 23:00:00,9923.0
-2017-10-22 00:00:00,9420.0
-2017-10-20 01:00:00,8847.0
-2017-10-20 02:00:00,8388.0
-2017-10-20 03:00:00,8122.0
-2017-10-20 04:00:00,7935.0
-2017-10-20 05:00:00,7901.0
-2017-10-20 06:00:00,8095.0
-2017-10-20 07:00:00,8615.0
-2017-10-20 08:00:00,9671.0
-2017-10-20 09:00:00,10241.0
-2017-10-20 10:00:00,10511.0
-2017-10-20 11:00:00,10751.0
-2017-10-20 12:00:00,11067.0
-2017-10-20 13:00:00,11264.0
-2017-10-20 14:00:00,11408.0
-2017-10-20 15:00:00,11616.0
-2017-10-20 16:00:00,11646.0
-2017-10-20 17:00:00,11557.0
-2017-10-20 18:00:00,11401.0
-2017-10-20 19:00:00,11158.0
-2017-10-20 20:00:00,11316.0
-2017-10-20 21:00:00,11150.0
-2017-10-20 22:00:00,10816.0
-2017-10-20 23:00:00,10392.0
-2017-10-21 00:00:00,9763.0
-2017-10-19 01:00:00,8906.0
-2017-10-19 02:00:00,8413.0
-2017-10-19 03:00:00,8108.0
-2017-10-19 04:00:00,7945.0
-2017-10-19 05:00:00,7893.0
-2017-10-19 06:00:00,8064.0
-2017-10-19 07:00:00,8659.0
-2017-10-19 08:00:00,9713.0
-2017-10-19 09:00:00,10242.0
-2017-10-19 10:00:00,10460.0
-2017-10-19 11:00:00,10681.0
-2017-10-19 12:00:00,10929.0
-2017-10-19 13:00:00,11080.0
-2017-10-19 14:00:00,11065.0
-2017-10-19 15:00:00,11118.0
-2017-10-19 16:00:00,11183.0
-2017-10-19 17:00:00,11080.0
-2017-10-19 18:00:00,10901.0
-2017-10-19 19:00:00,10749.0
-2017-10-19 20:00:00,11052.0
-2017-10-19 21:00:00,10960.0
-2017-10-19 22:00:00,10671.0
-2017-10-19 23:00:00,10158.0
-2017-10-20 00:00:00,9476.0
-2017-10-18 01:00:00,8810.0
-2017-10-18 02:00:00,8381.0
-2017-10-18 03:00:00,8234.0
-2017-10-18 04:00:00,8053.0
-2017-10-18 05:00:00,7996.0
-2017-10-18 06:00:00,8197.0
-2017-10-18 07:00:00,8816.0
-2017-10-18 08:00:00,9911.0
-2017-10-18 09:00:00,10454.0
-2017-10-18 10:00:00,10619.0
-2017-10-18 11:00:00,10744.0
-2017-10-18 12:00:00,10925.0
-2017-10-18 13:00:00,11058.0
-2017-10-18 14:00:00,11121.0
-2017-10-18 15:00:00,11184.0
-2017-10-18 16:00:00,11146.0
-2017-10-18 17:00:00,11141.0
-2017-10-18 18:00:00,11041.0
-2017-10-18 19:00:00,10902.0
-2017-10-18 20:00:00,11185.0
-2017-10-18 21:00:00,11126.0
-2017-10-18 22:00:00,10819.0
-2017-10-18 23:00:00,10298.0
-2017-10-19 00:00:00,9562.0
-2017-10-17 01:00:00,8677.0
-2017-10-17 02:00:00,8231.0
-2017-10-17 03:00:00,7985.0
-2017-10-17 04:00:00,7828.0
-2017-10-17 05:00:00,7756.0
-2017-10-17 06:00:00,7993.0
-2017-10-17 07:00:00,8648.0
-2017-10-17 08:00:00,9719.0
-2017-10-17 09:00:00,10230.0
-2017-10-17 10:00:00,10429.0
-2017-10-17 11:00:00,10551.0
-2017-10-17 12:00:00,10763.0
-2017-10-17 13:00:00,10789.0
-2017-10-17 14:00:00,10846.0
-2017-10-17 15:00:00,11033.0
-2017-10-17 16:00:00,11005.0
-2017-10-17 17:00:00,10963.0
-2017-10-17 18:00:00,10887.0
-2017-10-17 19:00:00,10804.0
-2017-10-17 20:00:00,11065.0
-2017-10-17 21:00:00,11071.0
-2017-10-17 22:00:00,10696.0
-2017-10-17 23:00:00,10177.0
-2017-10-18 00:00:00,9458.0
-2017-10-16 01:00:00,8168.0
-2017-10-16 02:00:00,7850.0
-2017-10-16 03:00:00,7658.0
-2017-10-16 04:00:00,7581.0
-2017-10-16 05:00:00,7596.0
-2017-10-16 06:00:00,7809.0
-2017-10-16 07:00:00,8557.0
-2017-10-16 08:00:00,9674.0
-2017-10-16 09:00:00,10229.0
-2017-10-16 10:00:00,10424.0
-2017-10-16 11:00:00,10531.0
-2017-10-16 12:00:00,10623.0
-2017-10-16 13:00:00,10704.0
-2017-10-16 14:00:00,10758.0
-2017-10-16 15:00:00,10824.0
-2017-10-16 16:00:00,10780.0
-2017-10-16 17:00:00,10679.0
-2017-10-16 18:00:00,10576.0
-2017-10-16 19:00:00,10524.0
-2017-10-16 20:00:00,10868.0
-2017-10-16 21:00:00,10960.0
-2017-10-16 22:00:00,10659.0
-2017-10-16 23:00:00,10081.0
-2017-10-17 00:00:00,9384.0
-2017-10-15 01:00:00,9017.0
-2017-10-15 02:00:00,8586.0
-2017-10-15 03:00:00,8235.0
-2017-10-15 04:00:00,8029.0
-2017-10-15 05:00:00,7918.0
-2017-10-15 06:00:00,7909.0
-2017-10-15 07:00:00,7928.0
-2017-10-15 08:00:00,8066.0
-2017-10-15 09:00:00,8129.0
-2017-10-15 10:00:00,8284.0
-2017-10-15 11:00:00,8513.0
-2017-10-15 12:00:00,8710.0
-2017-10-15 13:00:00,8819.0
-2017-10-15 14:00:00,8846.0
-2017-10-15 15:00:00,8831.0
-2017-10-15 16:00:00,8767.0
-2017-10-15 17:00:00,8759.0
-2017-10-15 18:00:00,8788.0
-2017-10-15 19:00:00,8995.0
-2017-10-15 20:00:00,9524.0
-2017-10-15 21:00:00,9600.0
-2017-10-15 22:00:00,9422.0
-2017-10-15 23:00:00,9100.0
-2017-10-16 00:00:00,8631.0
-2017-10-14 01:00:00,9208.0
-2017-10-14 02:00:00,8693.0
-2017-10-14 03:00:00,8339.0
-2017-10-14 04:00:00,8149.0
-2017-10-14 05:00:00,8102.0
-2017-10-14 06:00:00,8102.0
-2017-10-14 07:00:00,8295.0
-2017-10-14 08:00:00,8688.0
-2017-10-14 09:00:00,9127.0
-2017-10-14 10:00:00,9555.0
-2017-10-14 11:00:00,9892.0
-2017-10-14 12:00:00,10044.0
-2017-10-14 13:00:00,10217.0
-2017-10-14 14:00:00,10283.0
-2017-10-14 15:00:00,10105.0
-2017-10-14 16:00:00,9947.0
-2017-10-14 17:00:00,9864.0
-2017-10-14 18:00:00,9957.0
-2017-10-14 19:00:00,10088.0
-2017-10-14 20:00:00,10357.0
-2017-10-14 21:00:00,10395.0
-2017-10-14 22:00:00,10279.0
-2017-10-14 23:00:00,9923.0
-2017-10-15 00:00:00,9474.0
-2017-10-13 01:00:00,9023.0
-2017-10-13 02:00:00,8488.0
-2017-10-13 03:00:00,8189.0
-2017-10-13 04:00:00,8009.0
-2017-10-13 05:00:00,7969.0
-2017-10-13 06:00:00,8102.0
-2017-10-13 07:00:00,8694.0
-2017-10-13 08:00:00,9714.0
-2017-10-13 09:00:00,10237.0
-2017-10-13 10:00:00,10481.0
-2017-10-13 11:00:00,10742.0
-2017-10-13 12:00:00,10900.0
-2017-10-13 13:00:00,11049.0
-2017-10-13 14:00:00,11137.0
-2017-10-13 15:00:00,11297.0
-2017-10-13 16:00:00,11388.0
-2017-10-13 17:00:00,11338.0
-2017-10-13 18:00:00,11223.0
-2017-10-13 19:00:00,11103.0
-2017-10-13 20:00:00,11314.0
-2017-10-13 21:00:00,11193.0
-2017-10-13 22:00:00,10939.0
-2017-10-13 23:00:00,10513.0
-2017-10-14 00:00:00,9897.0
-2017-10-12 01:00:00,8921.0
-2017-10-12 02:00:00,8428.0
-2017-10-12 03:00:00,8128.0
-2017-10-12 04:00:00,7958.0
-2017-10-12 05:00:00,7916.0
-2017-10-12 06:00:00,8080.0
-2017-10-12 07:00:00,8710.0
-2017-10-12 08:00:00,9768.0
-2017-10-12 09:00:00,10412.0
-2017-10-12 10:00:00,10671.0
-2017-10-12 11:00:00,10834.0
-2017-10-12 12:00:00,10976.0
-2017-10-12 13:00:00,10993.0
-2017-10-12 14:00:00,10961.0
-2017-10-12 15:00:00,10996.0
-2017-10-12 16:00:00,10878.0
-2017-10-12 17:00:00,10842.0
-2017-10-12 18:00:00,10762.0
-2017-10-12 19:00:00,10787.0
-2017-10-12 20:00:00,11027.0
-2017-10-12 21:00:00,11057.0
-2017-10-12 22:00:00,10770.0
-2017-10-12 23:00:00,10240.0
-2017-10-13 00:00:00,9600.0
-2017-10-11 01:00:00,9142.0
-2017-10-11 02:00:00,8714.0
-2017-10-11 03:00:00,8497.0
-2017-10-11 04:00:00,8301.0
-2017-10-11 05:00:00,8162.0
-2017-10-11 06:00:00,8350.0
-2017-10-11 07:00:00,8960.0
-2017-10-11 08:00:00,9987.0
-2017-10-11 09:00:00,10596.0
-2017-10-11 10:00:00,10857.0
-2017-10-11 11:00:00,11002.0
-2017-10-11 12:00:00,11105.0
-2017-10-11 13:00:00,11116.0
-2017-10-11 14:00:00,11128.0
-2017-10-11 15:00:00,11153.0
-2017-10-11 16:00:00,11132.0
-2017-10-11 17:00:00,10970.0
-2017-10-11 18:00:00,10975.0
-2017-10-11 19:00:00,11005.0
-2017-10-11 20:00:00,11215.0
-2017-10-11 21:00:00,11154.0
-2017-10-11 22:00:00,10879.0
-2017-10-11 23:00:00,10273.0
-2017-10-12 00:00:00,9593.0
-2017-10-10 01:00:00,9516.0
-2017-10-10 02:00:00,8907.0
-2017-10-10 03:00:00,8563.0
-2017-10-10 04:00:00,8357.0
-2017-10-10 05:00:00,8296.0
-2017-10-10 06:00:00,8400.0
-2017-10-10 07:00:00,9036.0
-2017-10-10 08:00:00,10090.0
-2017-10-10 09:00:00,10632.0
-2017-10-10 10:00:00,10958.0
-2017-10-10 11:00:00,11185.0
-2017-10-10 12:00:00,11355.0
-2017-10-10 13:00:00,11429.0
-2017-10-10 14:00:00,11419.0
-2017-10-10 15:00:00,11415.0
-2017-10-10 16:00:00,11287.0
-2017-10-10 17:00:00,11148.0
-2017-10-10 18:00:00,11102.0
-2017-10-10 19:00:00,11250.0
-2017-10-10 20:00:00,11360.0
-2017-10-10 21:00:00,11301.0
-2017-10-10 22:00:00,11044.0
-2017-10-10 23:00:00,10471.0
-2017-10-11 00:00:00,9788.0
-2017-10-09 01:00:00,8643.0
-2017-10-09 02:00:00,8265.0
-2017-10-09 03:00:00,8020.0
-2017-10-09 04:00:00,7818.0
-2017-10-09 05:00:00,7770.0
-2017-10-09 06:00:00,7984.0
-2017-10-09 07:00:00,8560.0
-2017-10-09 08:00:00,9334.0
-2017-10-09 09:00:00,9966.0
-2017-10-09 10:00:00,10517.0
-2017-10-09 11:00:00,11097.0
-2017-10-09 12:00:00,11525.0
-2017-10-09 13:00:00,11933.0
-2017-10-09 14:00:00,12247.0
-2017-10-09 15:00:00,12646.0
-2017-10-09 16:00:00,12795.0
-2017-10-09 17:00:00,12865.0
-2017-10-09 18:00:00,12788.0
-2017-10-09 19:00:00,12475.0
-2017-10-09 20:00:00,12435.0
-2017-10-09 21:00:00,12330.0
-2017-10-09 22:00:00,11714.0
-2017-10-09 23:00:00,11071.0
-2017-10-10 00:00:00,10257.0
-2017-10-08 01:00:00,8699.0
-2017-10-08 02:00:00,8209.0
-2017-10-08 03:00:00,7901.0
-2017-10-08 04:00:00,7621.0
-2017-10-08 05:00:00,7501.0
-2017-10-08 06:00:00,7421.0
-2017-10-08 07:00:00,7567.0
-2017-10-08 08:00:00,7716.0
-2017-10-08 09:00:00,7778.0
-2017-10-08 10:00:00,8121.0
-2017-10-08 11:00:00,8614.0
-2017-10-08 12:00:00,9013.0
-2017-10-08 13:00:00,9420.0
-2017-10-08 14:00:00,9705.0
-2017-10-08 15:00:00,9919.0
-2017-10-08 16:00:00,10118.0
-2017-10-08 17:00:00,10342.0
-2017-10-08 18:00:00,10417.0
-2017-10-08 19:00:00,10363.0
-2017-10-08 20:00:00,10435.0
-2017-10-08 21:00:00,10529.0
-2017-10-08 22:00:00,10249.0
-2017-10-08 23:00:00,9787.0
-2017-10-09 00:00:00,9252.0
-2017-10-07 01:00:00,9673.0
-2017-10-07 02:00:00,9106.0
-2017-10-07 03:00:00,8768.0
-2017-10-07 04:00:00,8501.0
-2017-10-07 05:00:00,8376.0
-2017-10-07 06:00:00,8322.0
-2017-10-07 07:00:00,8616.0
-2017-10-07 08:00:00,9019.0
-2017-10-07 09:00:00,9310.0
-2017-10-07 10:00:00,9823.0
-2017-10-07 11:00:00,10300.0
-2017-10-07 12:00:00,10736.0
-2017-10-07 13:00:00,11072.0
-2017-10-07 14:00:00,11186.0
-2017-10-07 15:00:00,11061.0
-2017-10-07 16:00:00,11037.0
-2017-10-07 17:00:00,10882.0
-2017-10-07 18:00:00,10440.0
-2017-10-07 19:00:00,10117.0
-2017-10-07 20:00:00,10134.0
-2017-10-07 21:00:00,10266.0
-2017-10-07 22:00:00,10058.0
-2017-10-07 23:00:00,9779.0
-2017-10-08 00:00:00,9226.0
-2017-10-06 01:00:00,9636.0
-2017-10-06 02:00:00,9044.0
-2017-10-06 03:00:00,8715.0
-2017-10-06 04:00:00,8491.0
-2017-10-06 05:00:00,8421.0
-2017-10-06 06:00:00,8561.0
-2017-10-06 07:00:00,9176.0
-2017-10-06 08:00:00,10251.0
-2017-10-06 09:00:00,10900.0
-2017-10-06 10:00:00,11236.0
-2017-10-06 11:00:00,11333.0
-2017-10-06 12:00:00,11691.0
-2017-10-06 13:00:00,11753.0
-2017-10-06 14:00:00,11775.0
-2017-10-06 15:00:00,11817.0
-2017-10-06 16:00:00,11819.0
-2017-10-06 17:00:00,11698.0
-2017-10-06 18:00:00,11673.0
-2017-10-06 19:00:00,11689.0
-2017-10-06 20:00:00,11808.0
-2017-10-06 21:00:00,11701.0
-2017-10-06 22:00:00,11361.0
-2017-10-06 23:00:00,10990.0
-2017-10-07 00:00:00,10307.0
-2017-10-05 01:00:00,9512.0
-2017-10-05 02:00:00,8912.0
-2017-10-05 03:00:00,8568.0
-2017-10-05 04:00:00,8314.0
-2017-10-05 05:00:00,8243.0
-2017-10-05 06:00:00,8382.0
-2017-10-05 07:00:00,8985.0
-2017-10-05 08:00:00,9936.0
-2017-10-05 09:00:00,10387.0
-2017-10-05 10:00:00,10799.0
-2017-10-05 11:00:00,11207.0
-2017-10-05 12:00:00,11569.0
-2017-10-05 13:00:00,11829.0
-2017-10-05 14:00:00,12064.0
-2017-10-05 15:00:00,12324.0
-2017-10-05 16:00:00,12403.0
-2017-10-05 17:00:00,12428.0
-2017-10-05 18:00:00,12312.0
-2017-10-05 19:00:00,11994.0
-2017-10-05 20:00:00,12056.0
-2017-10-05 21:00:00,12137.0
-2017-10-05 22:00:00,11771.0
-2017-10-05 23:00:00,11203.0
-2017-10-06 00:00:00,10392.0
-2017-10-04 01:00:00,10621.0
-2017-10-04 02:00:00,9993.0
-2017-10-04 03:00:00,9631.0
-2017-10-04 04:00:00,9369.0
-2017-10-04 05:00:00,9252.0
-2017-10-04 06:00:00,9500.0
-2017-10-04 07:00:00,10269.0
-2017-10-04 08:00:00,11474.0
-2017-10-04 09:00:00,12198.0
-2017-10-04 10:00:00,12515.0
-2017-10-04 11:00:00,12591.0
-2017-10-04 12:00:00,12628.0
-2017-10-04 13:00:00,12550.0
-2017-10-04 14:00:00,12493.0
-2017-10-04 15:00:00,12592.0
-2017-10-04 16:00:00,12732.0
-2017-10-04 17:00:00,12828.0
-2017-10-04 18:00:00,12678.0
-2017-10-04 19:00:00,12306.0
-2017-10-04 20:00:00,12190.0
-2017-10-04 21:00:00,12186.0
-2017-10-04 22:00:00,11809.0
-2017-10-04 23:00:00,11162.0
-2017-10-05 00:00:00,10304.0
-2017-10-03 01:00:00,9966.0
-2017-10-03 02:00:00,9374.0
-2017-10-03 03:00:00,8985.0
-2017-10-03 04:00:00,8761.0
-2017-10-03 05:00:00,8676.0
-2017-10-03 06:00:00,8844.0
-2017-10-03 07:00:00,9553.0
-2017-10-03 08:00:00,10738.0
-2017-10-03 09:00:00,11287.0
-2017-10-03 10:00:00,11767.0
-2017-10-03 11:00:00,12123.0
-2017-10-03 12:00:00,12531.0
-2017-10-03 13:00:00,12742.0
-2017-10-03 14:00:00,12900.0
-2017-10-03 15:00:00,13087.0
-2017-10-03 16:00:00,13284.0
-2017-10-03 17:00:00,13322.0
-2017-10-03 18:00:00,13172.0
-2017-10-03 19:00:00,13112.0
-2017-10-03 20:00:00,13132.0
-2017-10-03 21:00:00,13357.0
-2017-10-03 22:00:00,13004.0
-2017-10-03 23:00:00,12383.0
-2017-10-04 00:00:00,11453.0
-2017-10-02 01:00:00,8370.0
-2017-10-02 02:00:00,8049.0
-2017-10-02 03:00:00,7798.0
-2017-10-02 04:00:00,7687.0
-2017-10-02 05:00:00,7698.0
-2017-10-02 06:00:00,7955.0
-2017-10-02 07:00:00,8679.0
-2017-10-02 08:00:00,9802.0
-2017-10-02 09:00:00,10412.0
-2017-10-02 10:00:00,10864.0
-2017-10-02 11:00:00,11302.0
-2017-10-02 12:00:00,11677.0
-2017-10-02 13:00:00,11985.0
-2017-10-02 14:00:00,12277.0
-2017-10-02 15:00:00,12657.0
-2017-10-02 16:00:00,12790.0
-2017-10-02 17:00:00,12780.0
-2017-10-02 18:00:00,12651.0
-2017-10-02 19:00:00,12477.0
-2017-10-02 20:00:00,12471.0
-2017-10-02 21:00:00,12660.0
-2017-10-02 22:00:00,12391.0
-2017-10-02 23:00:00,11699.0
-2017-10-03 00:00:00,10804.0
-2017-10-01 01:00:00,8467.0
-2017-10-01 02:00:00,8027.0
-2017-10-01 03:00:00,7765.0
-2017-10-01 04:00:00,7563.0
-2017-10-01 05:00:00,7458.0
-2017-10-01 06:00:00,7409.0
-2017-10-01 07:00:00,7539.0
-2017-10-01 08:00:00,7668.0
-2017-10-01 09:00:00,7755.0
-2017-10-01 10:00:00,8072.0
-2017-10-01 11:00:00,8370.0
-2017-10-01 12:00:00,8646.0
-2017-10-01 13:00:00,8867.0
-2017-10-01 14:00:00,8981.0
-2017-10-01 15:00:00,9071.0
-2017-10-01 16:00:00,9133.0
-2017-10-01 17:00:00,9167.0
-2017-10-01 18:00:00,9237.0
-2017-10-01 19:00:00,9262.0
-2017-10-01 20:00:00,9643.0
-2017-10-01 21:00:00,9901.0
-2017-10-01 22:00:00,9707.0
-2017-10-01 23:00:00,9420.0
-2017-10-02 00:00:00,8948.0
-2017-09-30 01:00:00,8902.0
-2017-09-30 02:00:00,8478.0
-2017-09-30 03:00:00,8176.0
-2017-09-30 04:00:00,7952.0
-2017-09-30 05:00:00,7837.0
-2017-09-30 06:00:00,7855.0
-2017-09-30 07:00:00,8067.0
-2017-09-30 08:00:00,8416.0
-2017-09-30 09:00:00,8578.0
-2017-09-30 10:00:00,9058.0
-2017-09-30 11:00:00,9382.0
-2017-09-30 12:00:00,9655.0
-2017-09-30 13:00:00,9748.0
-2017-09-30 14:00:00,9802.0
-2017-09-30 15:00:00,9767.0
-2017-09-30 16:00:00,9754.0
-2017-09-30 17:00:00,9796.0
-2017-09-30 18:00:00,9774.0
-2017-09-30 19:00:00,9584.0
-2017-09-30 20:00:00,9563.0
-2017-09-30 21:00:00,9881.0
-2017-09-30 22:00:00,9698.0
-2017-09-30 23:00:00,9413.0
-2017-10-01 00:00:00,8974.0
-2017-09-29 01:00:00,9174.0
-2017-09-29 02:00:00,8705.0
-2017-09-29 03:00:00,8382.0
-2017-09-29 04:00:00,8212.0
-2017-09-29 05:00:00,8153.0
-2017-09-29 06:00:00,8327.0
-2017-09-29 07:00:00,8877.0
-2017-09-29 08:00:00,9834.0
-2017-09-29 09:00:00,10290.0
-2017-09-29 10:00:00,10759.0
-2017-09-29 11:00:00,11072.0
-2017-09-29 12:00:00,11358.0
-2017-09-29 13:00:00,11467.0
-2017-09-29 14:00:00,11560.0
-2017-09-29 15:00:00,11651.0
-2017-09-29 16:00:00,11609.0
-2017-09-29 17:00:00,11495.0
-2017-09-29 18:00:00,11288.0
-2017-09-29 19:00:00,10956.0
-2017-09-29 20:00:00,10811.0
-2017-09-29 21:00:00,10958.0
-2017-09-29 22:00:00,10651.0
-2017-09-29 23:00:00,10238.0
-2017-09-30 00:00:00,9536.0
-2017-09-28 01:00:00,9188.0
-2017-09-28 02:00:00,8668.0
-2017-09-28 03:00:00,8326.0
-2017-09-28 04:00:00,8112.0
-2017-09-28 05:00:00,8034.0
-2017-09-28 06:00:00,8193.0
-2017-09-28 07:00:00,8784.0
-2017-09-28 08:00:00,9747.0
-2017-09-28 09:00:00,10225.0
-2017-09-28 10:00:00,10625.0
-2017-09-28 11:00:00,11035.0
-2017-09-28 12:00:00,11357.0
-2017-09-28 13:00:00,11520.0
-2017-09-28 14:00:00,11642.0
-2017-09-28 15:00:00,11857.0
-2017-09-28 16:00:00,11986.0
-2017-09-28 17:00:00,12042.0
-2017-09-28 18:00:00,12026.0
-2017-09-28 19:00:00,11767.0
-2017-09-28 20:00:00,11532.0
-2017-09-28 21:00:00,11661.0
-2017-09-28 22:00:00,11307.0
-2017-09-28 23:00:00,10685.0
-2017-09-29 00:00:00,9901.0
-2017-09-27 01:00:00,12455.0
-2017-09-27 02:00:00,11472.0
-2017-09-27 03:00:00,10760.0
-2017-09-27 04:00:00,10219.0
-2017-09-27 05:00:00,9843.0
-2017-09-27 06:00:00,9790.0
-2017-09-27 07:00:00,10266.0
-2017-09-27 08:00:00,11166.0
-2017-09-27 09:00:00,11512.0
-2017-09-27 10:00:00,11811.0
-2017-09-27 11:00:00,11922.0
-2017-09-27 12:00:00,12155.0
-2017-09-27 13:00:00,12472.0
-2017-09-27 14:00:00,12847.0
-2017-09-27 15:00:00,13075.0
-2017-09-27 16:00:00,13073.0
-2017-09-27 17:00:00,12982.0
-2017-09-27 18:00:00,12660.0
-2017-09-27 19:00:00,12125.0
-2017-09-27 20:00:00,11943.0
-2017-09-27 21:00:00,12051.0
-2017-09-27 22:00:00,11546.0
-2017-09-27 23:00:00,10899.0
-2017-09-28 00:00:00,10038.0
-2017-09-26 01:00:00,12406.0
-2017-09-26 02:00:00,11476.0
-2017-09-26 03:00:00,10843.0
-2017-09-26 04:00:00,10394.0
-2017-09-26 05:00:00,10169.0
-2017-09-26 06:00:00,10241.0
-2017-09-26 07:00:00,10911.0
-2017-09-26 08:00:00,12025.0
-2017-09-26 09:00:00,12651.0
-2017-09-26 10:00:00,13452.0
-2017-09-26 11:00:00,14383.0
-2017-09-26 12:00:00,15564.0
-2017-09-26 13:00:00,16745.0
-2017-09-26 14:00:00,17736.0
-2017-09-26 15:00:00,18358.0
-2017-09-26 16:00:00,18608.0
-2017-09-26 17:00:00,18734.0
-2017-09-26 18:00:00,18647.0
-2017-09-26 19:00:00,18033.0
-2017-09-26 20:00:00,17352.0
-2017-09-26 21:00:00,17071.0
-2017-09-26 22:00:00,16318.0
-2017-09-26 23:00:00,15208.0
-2017-09-27 00:00:00,13786.0
-2017-09-25 01:00:00,11965.0
-2017-09-25 02:00:00,11149.0
-2017-09-25 03:00:00,10541.0
-2017-09-25 04:00:00,10181.0
-2017-09-25 05:00:00,9946.0
-2017-09-25 06:00:00,10077.0
-2017-09-25 07:00:00,10760.0
-2017-09-25 08:00:00,11794.0
-2017-09-25 09:00:00,12437.0
-2017-09-25 10:00:00,13358.0
-2017-09-25 11:00:00,14463.0
-2017-09-25 12:00:00,15649.0
-2017-09-25 13:00:00,16822.0
-2017-09-25 14:00:00,17688.0
-2017-09-25 15:00:00,18373.0
-2017-09-25 16:00:00,18684.0
-2017-09-25 17:00:00,18852.0
-2017-09-25 18:00:00,18735.0
-2017-09-25 19:00:00,18213.0
-2017-09-25 20:00:00,17386.0
-2017-09-25 21:00:00,16994.0
-2017-09-25 22:00:00,16131.0
-2017-09-25 23:00:00,15005.0
-2017-09-26 00:00:00,13706.0
-2017-09-24 01:00:00,12818.0
-2017-09-24 02:00:00,11883.0
-2017-09-24 03:00:00,11175.0
-2017-09-24 04:00:00,10580.0
-2017-09-24 05:00:00,10196.0
-2017-09-24 06:00:00,9980.0
-2017-09-24 07:00:00,9934.0
-2017-09-24 08:00:00,10018.0
-2017-09-24 09:00:00,10194.0
-2017-09-24 10:00:00,11272.0
-2017-09-24 11:00:00,12622.0
-2017-09-24 12:00:00,13971.0
-2017-09-24 13:00:00,15088.0
-2017-09-24 14:00:00,15979.0
-2017-09-24 15:00:00,16559.0
-2017-09-24 16:00:00,16986.0
-2017-09-24 17:00:00,17165.0
-2017-09-24 18:00:00,17149.0
-2017-09-24 19:00:00,16705.0
-2017-09-24 20:00:00,16009.0
-2017-09-24 21:00:00,15757.0
-2017-09-24 22:00:00,15016.0
-2017-09-24 23:00:00,14142.0
-2017-09-25 00:00:00,13025.0
-2017-09-23 01:00:00,13675.0
-2017-09-23 02:00:00,12653.0
-2017-09-23 03:00:00,11882.0
-2017-09-23 04:00:00,11303.0
-2017-09-23 05:00:00,10899.0
-2017-09-23 06:00:00,10730.0
-2017-09-23 07:00:00,10855.0
-2017-09-23 08:00:00,11134.0
-2017-09-23 09:00:00,11567.0
-2017-09-23 10:00:00,12764.0
-2017-09-23 11:00:00,14190.0
-2017-09-23 12:00:00,15593.0
-2017-09-23 13:00:00,16823.0
-2017-09-23 14:00:00,17582.0
-2017-09-23 15:00:00,18056.0
-2017-09-23 16:00:00,18364.0
-2017-09-23 17:00:00,18510.0
-2017-09-23 18:00:00,18373.0
-2017-09-23 19:00:00,17816.0
-2017-09-23 20:00:00,16973.0
-2017-09-23 21:00:00,16530.0
-2017-09-23 22:00:00,15793.0
-2017-09-23 23:00:00,14901.0
-2017-09-24 00:00:00,13868.0
-2017-09-22 01:00:00,13860.0
-2017-09-22 02:00:00,12838.0
-2017-09-22 03:00:00,12104.0
-2017-09-22 04:00:00,11536.0
-2017-09-22 05:00:00,11230.0
-2017-09-22 06:00:00,11227.0
-2017-09-22 07:00:00,11802.0
-2017-09-22 08:00:00,12747.0
-2017-09-22 09:00:00,13516.0
-2017-09-22 10:00:00,14580.0
-2017-09-22 11:00:00,15859.0
-2017-09-22 12:00:00,17237.0
-2017-09-22 13:00:00,18190.0
-2017-09-22 14:00:00,18944.0
-2017-09-22 15:00:00,19533.0
-2017-09-22 16:00:00,19889.0
-2017-09-22 17:00:00,20040.0
-2017-09-22 18:00:00,19979.0
-2017-09-22 19:00:00,19391.0
-2017-09-22 20:00:00,18477.0
-2017-09-22 21:00:00,17950.0
-2017-09-22 22:00:00,17070.0
-2017-09-22 23:00:00,16145.0
-2017-09-23 00:00:00,14893.0
-2017-09-21 01:00:00,13235.0
-2017-09-21 02:00:00,12307.0
-2017-09-21 03:00:00,11632.0
-2017-09-21 04:00:00,11097.0
-2017-09-21 05:00:00,10797.0
-2017-09-21 06:00:00,10877.0
-2017-09-21 07:00:00,11491.0
-2017-09-21 08:00:00,12542.0
-2017-09-21 09:00:00,13289.0
-2017-09-21 10:00:00,14312.0
-2017-09-21 11:00:00,15376.0
-2017-09-21 12:00:00,16513.0
-2017-09-21 13:00:00,17512.0
-2017-09-21 14:00:00,18347.0
-2017-09-21 15:00:00,19003.0
-2017-09-21 16:00:00,19333.0
-2017-09-21 17:00:00,19518.0
-2017-09-21 18:00:00,19443.0
-2017-09-21 19:00:00,18836.0
-2017-09-21 20:00:00,18130.0
-2017-09-21 21:00:00,17932.0
-2017-09-21 22:00:00,17301.0
-2017-09-21 23:00:00,16403.0
-2017-09-22 00:00:00,15091.0
-2017-09-20 01:00:00,10413.0
-2017-09-20 02:00:00,9721.0
-2017-09-20 03:00:00,9284.0
-2017-09-20 04:00:00,9018.0
-2017-09-20 05:00:00,8885.0
-2017-09-20 06:00:00,9043.0
-2017-09-20 07:00:00,9729.0
-2017-09-20 08:00:00,10827.0
-2017-09-20 09:00:00,11505.0
-2017-09-20 10:00:00,12304.0
-2017-09-20 11:00:00,13167.0
-2017-09-20 12:00:00,14141.0
-2017-09-20 13:00:00,15128.0
-2017-09-20 14:00:00,16112.0
-2017-09-20 15:00:00,17084.0
-2017-09-20 16:00:00,17800.0
-2017-09-20 17:00:00,18347.0
-2017-09-20 18:00:00,18585.0
-2017-09-20 19:00:00,18356.0
-2017-09-20 20:00:00,17711.0
-2017-09-20 21:00:00,17494.0
-2017-09-20 22:00:00,16839.0
-2017-09-20 23:00:00,15803.0
-2017-09-21 00:00:00,14456.0
-2017-09-19 01:00:00,10127.0
-2017-09-19 02:00:00,9614.0
-2017-09-19 03:00:00,9231.0
-2017-09-19 04:00:00,8999.0
-2017-09-19 05:00:00,8855.0
-2017-09-19 06:00:00,9039.0
-2017-09-19 07:00:00,9730.0
-2017-09-19 08:00:00,10919.0
-2017-09-19 09:00:00,11629.0
-2017-09-19 10:00:00,12067.0
-2017-09-19 11:00:00,12451.0
-2017-09-19 12:00:00,12865.0
-2017-09-19 13:00:00,13341.0
-2017-09-19 14:00:00,13938.0
-2017-09-19 15:00:00,14426.0
-2017-09-19 16:00:00,14598.0
-2017-09-19 17:00:00,14719.0
-2017-09-19 18:00:00,14773.0
-2017-09-19 19:00:00,14415.0
-2017-09-19 20:00:00,13775.0
-2017-09-19 21:00:00,13721.0
-2017-09-19 22:00:00,13185.0
-2017-09-19 23:00:00,12359.0
-2017-09-20 00:00:00,11291.0
-2017-09-18 01:00:00,9987.0
-2017-09-18 02:00:00,9277.0
-2017-09-18 03:00:00,8777.0
-2017-09-18 04:00:00,8487.0
-2017-09-18 05:00:00,8380.0
-2017-09-18 06:00:00,8546.0
-2017-09-18 07:00:00,9205.0
-2017-09-18 08:00:00,10158.0
-2017-09-18 09:00:00,10791.0
-2017-09-18 10:00:00,11503.0
-2017-09-18 11:00:00,12048.0
-2017-09-18 12:00:00,12604.0
-2017-09-18 13:00:00,13018.0
-2017-09-18 14:00:00,13370.0
-2017-09-18 15:00:00,13766.0
-2017-09-18 16:00:00,14024.0
-2017-09-18 17:00:00,14176.0
-2017-09-18 18:00:00,13970.0
-2017-09-18 19:00:00,13293.0
-2017-09-18 20:00:00,12757.0
-2017-09-18 21:00:00,12882.0
-2017-09-18 22:00:00,12538.0
-2017-09-18 23:00:00,11900.0
-2017-09-19 00:00:00,11031.0
-2017-09-17 01:00:00,11269.0
-2017-09-17 02:00:00,10482.0
-2017-09-17 03:00:00,9958.0
-2017-09-17 04:00:00,9508.0
-2017-09-17 05:00:00,9204.0
-2017-09-17 06:00:00,9106.0
-2017-09-17 07:00:00,9111.0
-2017-09-17 08:00:00,9181.0
-2017-09-17 09:00:00,9341.0
-2017-09-17 10:00:00,10102.0
-2017-09-17 11:00:00,11083.0
-2017-09-17 12:00:00,12273.0
-2017-09-17 13:00:00,13321.0
-2017-09-17 14:00:00,14091.0
-2017-09-17 15:00:00,14260.0
-2017-09-17 16:00:00,14102.0
-2017-09-17 17:00:00,14048.0
-2017-09-17 18:00:00,14064.0
-2017-09-17 19:00:00,13756.0
-2017-09-17 20:00:00,13257.0
-2017-09-17 21:00:00,13252.0
-2017-09-17 22:00:00,12780.0
-2017-09-17 23:00:00,11971.0
-2017-09-18 00:00:00,11000.0
-2017-09-16 01:00:00,11474.0
-2017-09-16 02:00:00,10678.0
-2017-09-16 03:00:00,10002.0
-2017-09-16 04:00:00,9542.0
-2017-09-16 05:00:00,9313.0
-2017-09-16 06:00:00,9187.0
-2017-09-16 07:00:00,9319.0
-2017-09-16 08:00:00,9540.0
-2017-09-16 09:00:00,9929.0
-2017-09-16 10:00:00,10937.0
-2017-09-16 11:00:00,11925.0
-2017-09-16 12:00:00,12927.0
-2017-09-16 13:00:00,13852.0
-2017-09-16 14:00:00,14427.0
-2017-09-16 15:00:00,14709.0
-2017-09-16 16:00:00,15013.0
-2017-09-16 17:00:00,15226.0
-2017-09-16 18:00:00,15216.0
-2017-09-16 19:00:00,14855.0
-2017-09-16 20:00:00,14234.0
-2017-09-16 21:00:00,14020.0
-2017-09-16 22:00:00,13527.0
-2017-09-16 23:00:00,12963.0
-2017-09-17 00:00:00,12105.0
-2017-09-15 01:00:00,10357.0
-2017-09-15 02:00:00,9665.0
-2017-09-15 03:00:00,9194.0
-2017-09-15 04:00:00,8868.0
-2017-09-15 05:00:00,8695.0
-2017-09-15 06:00:00,8821.0
-2017-09-15 07:00:00,9412.0
-2017-09-15 08:00:00,10375.0
-2017-09-15 09:00:00,11057.0
-2017-09-15 10:00:00,11742.0
-2017-09-15 11:00:00,12436.0
-2017-09-15 12:00:00,13200.0
-2017-09-15 13:00:00,13890.0
-2017-09-15 14:00:00,14479.0
-2017-09-15 15:00:00,15074.0
-2017-09-15 16:00:00,15479.0
-2017-09-15 17:00:00,15796.0
-2017-09-15 18:00:00,15944.0
-2017-09-15 19:00:00,15644.0
-2017-09-15 20:00:00,14958.0
-2017-09-15 21:00:00,14707.0
-2017-09-15 22:00:00,14148.0
-2017-09-15 23:00:00,13499.0
-2017-09-16 00:00:00,12544.0
-2017-09-14 01:00:00,9690.0
-2017-09-14 02:00:00,9072.0
-2017-09-14 03:00:00,8688.0
-2017-09-14 04:00:00,8421.0
-2017-09-14 05:00:00,8300.0
-2017-09-14 06:00:00,8478.0
-2017-09-14 07:00:00,9113.0
-2017-09-14 08:00:00,10078.0
-2017-09-14 09:00:00,10720.0
-2017-09-14 10:00:00,11172.0
-2017-09-14 11:00:00,11561.0
-2017-09-14 12:00:00,11983.0
-2017-09-14 13:00:00,12400.0
-2017-09-14 14:00:00,12797.0
-2017-09-14 15:00:00,13247.0
-2017-09-14 16:00:00,13568.0
-2017-09-14 17:00:00,13850.0
-2017-09-14 18:00:00,13976.0
-2017-09-14 19:00:00,13801.0
-2017-09-14 20:00:00,13309.0
-2017-09-14 21:00:00,13353.0
-2017-09-14 22:00:00,13066.0
-2017-09-14 23:00:00,12341.0
-2017-09-15 00:00:00,11305.0
-2017-09-13 01:00:00,9366.0
-2017-09-13 02:00:00,8876.0
-2017-09-13 03:00:00,8543.0
-2017-09-13 04:00:00,8307.0
-2017-09-13 05:00:00,8270.0
-2017-09-13 06:00:00,8428.0
-2017-09-13 07:00:00,9072.0
-2017-09-13 08:00:00,10128.0
-2017-09-13 09:00:00,10764.0
-2017-09-13 10:00:00,11150.0
-2017-09-13 11:00:00,11368.0
-2017-09-13 12:00:00,11733.0
-2017-09-13 13:00:00,12018.0
-2017-09-13 14:00:00,12200.0
-2017-09-13 15:00:00,12427.0
-2017-09-13 16:00:00,12440.0
-2017-09-13 17:00:00,12326.0
-2017-09-13 18:00:00,12235.0
-2017-09-13 19:00:00,12096.0
-2017-09-13 20:00:00,11860.0
-2017-09-13 21:00:00,12120.0
-2017-09-13 22:00:00,11940.0
-2017-09-13 23:00:00,11347.0
-2017-09-14 00:00:00,10515.0
-2017-09-12 01:00:00,9021.0
-2017-09-12 02:00:00,8568.0
-2017-09-12 03:00:00,8263.0
-2017-09-12 04:00:00,8099.0
-2017-09-12 05:00:00,8047.0
-2017-09-12 06:00:00,8210.0
-2017-09-12 07:00:00,8847.0
-2017-09-12 08:00:00,9771.0
-2017-09-12 09:00:00,10378.0
-2017-09-12 10:00:00,10931.0
-2017-09-12 11:00:00,11310.0
-2017-09-12 12:00:00,11637.0
-2017-09-12 13:00:00,11837.0
-2017-09-12 14:00:00,12011.0
-2017-09-12 15:00:00,12207.0
-2017-09-12 16:00:00,12310.0
-2017-09-12 17:00:00,12272.0
-2017-09-12 18:00:00,12220.0
-2017-09-12 19:00:00,11886.0
-2017-09-12 20:00:00,11506.0
-2017-09-12 21:00:00,11678.0
-2017-09-12 22:00:00,11508.0
-2017-09-12 23:00:00,10902.0
-2017-09-13 00:00:00,10116.0
-2017-09-11 01:00:00,8416.0
-2017-09-11 02:00:00,8053.0
-2017-09-11 03:00:00,7799.0
-2017-09-11 04:00:00,7677.0
-2017-09-11 05:00:00,7601.0
-2017-09-11 06:00:00,7800.0
-2017-09-11 07:00:00,8449.0
-2017-09-11 08:00:00,9351.0
-2017-09-11 09:00:00,9960.0
-2017-09-11 10:00:00,10369.0
-2017-09-11 11:00:00,10738.0
-2017-09-11 12:00:00,11105.0
-2017-09-11 13:00:00,11308.0
-2017-09-11 14:00:00,11468.0
-2017-09-11 15:00:00,11655.0
-2017-09-11 16:00:00,11731.0
-2017-09-11 17:00:00,11699.0
-2017-09-11 18:00:00,11547.0
-2017-09-11 19:00:00,11280.0
-2017-09-11 20:00:00,11004.0
-2017-09-11 21:00:00,11216.0
-2017-09-11 22:00:00,11081.0
-2017-09-11 23:00:00,10499.0
-2017-09-12 00:00:00,9774.0
-2017-09-10 01:00:00,8528.0
-2017-09-10 02:00:00,8083.0
-2017-09-10 03:00:00,7730.0
-2017-09-10 04:00:00,7468.0
-2017-09-10 05:00:00,7314.0
-2017-09-10 06:00:00,7263.0
-2017-09-10 07:00:00,7351.0
-2017-09-10 08:00:00,7402.0
-2017-09-10 09:00:00,7520.0
-2017-09-10 10:00:00,7934.0
-2017-09-10 11:00:00,8390.0
-2017-09-10 12:00:00,8669.0
-2017-09-10 13:00:00,8896.0
-2017-09-10 14:00:00,9033.0
-2017-09-10 15:00:00,9128.0
-2017-09-10 16:00:00,9270.0
-2017-09-10 17:00:00,9363.0
-2017-09-10 18:00:00,9470.0
-2017-09-10 19:00:00,9481.0
-2017-09-10 20:00:00,9439.0
-2017-09-10 21:00:00,9799.0
-2017-09-10 22:00:00,9847.0
-2017-09-10 23:00:00,9464.0
-2017-09-11 00:00:00,8964.0
-2017-09-09 01:00:00,8909.0
-2017-09-09 02:00:00,8494.0
-2017-09-09 03:00:00,8140.0
-2017-09-09 04:00:00,7949.0
-2017-09-09 05:00:00,7823.0
-2017-09-09 06:00:00,7840.0
-2017-09-09 07:00:00,8100.0
-2017-09-09 08:00:00,8318.0
-2017-09-09 09:00:00,8622.0
-2017-09-09 10:00:00,9128.0
-2017-09-09 11:00:00,9519.0
-2017-09-09 12:00:00,9774.0
-2017-09-09 13:00:00,9868.0
-2017-09-09 14:00:00,9929.0
-2017-09-09 15:00:00,9904.0
-2017-09-09 16:00:00,9913.0
-2017-09-09 17:00:00,9931.0
-2017-09-09 18:00:00,9950.0
-2017-09-09 19:00:00,9847.0
-2017-09-09 20:00:00,9636.0
-2017-09-09 21:00:00,9875.0
-2017-09-09 22:00:00,9833.0
-2017-09-09 23:00:00,9552.0
-2017-09-10 00:00:00,9055.0
-2017-09-08 01:00:00,8892.0
-2017-09-08 02:00:00,8427.0
-2017-09-08 03:00:00,8122.0
-2017-09-08 04:00:00,7938.0
-2017-09-08 05:00:00,7862.0
-2017-09-08 06:00:00,8007.0
-2017-09-08 07:00:00,8598.0
-2017-09-08 08:00:00,9607.0
-2017-09-08 09:00:00,10207.0
-2017-09-08 10:00:00,10648.0
-2017-09-08 11:00:00,10972.0
-2017-09-08 12:00:00,11263.0
-2017-09-08 13:00:00,11379.0
-2017-09-08 14:00:00,11382.0
-2017-09-08 15:00:00,11423.0
-2017-09-08 16:00:00,11345.0
-2017-09-08 17:00:00,11211.0
-2017-09-08 18:00:00,10987.0
-2017-09-08 19:00:00,10707.0
-2017-09-08 20:00:00,10491.0
-2017-09-08 21:00:00,10659.0
-2017-09-08 22:00:00,10643.0
-2017-09-08 23:00:00,10231.0
-2017-09-09 00:00:00,9637.0
-2017-09-07 01:00:00,8740.0
-2017-09-07 02:00:00,8285.0
-2017-09-07 03:00:00,7989.0
-2017-09-07 04:00:00,7831.0
-2017-09-07 05:00:00,7809.0
-2017-09-07 06:00:00,7961.0
-2017-09-07 07:00:00,8559.0
-2017-09-07 08:00:00,9475.0
-2017-09-07 09:00:00,10031.0
-2017-09-07 10:00:00,10418.0
-2017-09-07 11:00:00,10724.0
-2017-09-07 12:00:00,11012.0
-2017-09-07 13:00:00,11096.0
-2017-09-07 14:00:00,11147.0
-2017-09-07 15:00:00,11200.0
-2017-09-07 16:00:00,11118.0
-2017-09-07 17:00:00,11032.0
-2017-09-07 18:00:00,10905.0
-2017-09-07 19:00:00,10738.0
-2017-09-07 20:00:00,10510.0
-2017-09-07 21:00:00,10829.0
-2017-09-07 22:00:00,10827.0
-2017-09-07 23:00:00,10313.0
-2017-09-08 00:00:00,9577.0
-2017-09-06 01:00:00,8866.0
-2017-09-06 02:00:00,8381.0
-2017-09-06 03:00:00,8091.0
-2017-09-06 04:00:00,7888.0
-2017-09-06 05:00:00,7836.0
-2017-09-06 06:00:00,8008.0
-2017-09-06 07:00:00,8575.0
-2017-09-06 08:00:00,9433.0
-2017-09-06 09:00:00,10007.0
-2017-09-06 10:00:00,10350.0
-2017-09-06 11:00:00,10612.0
-2017-09-06 12:00:00,10875.0
-2017-09-06 13:00:00,11040.0
-2017-09-06 14:00:00,11086.0
-2017-09-06 15:00:00,11178.0
-2017-09-06 16:00:00,11077.0
-2017-09-06 17:00:00,10913.0
-2017-09-06 18:00:00,10805.0
-2017-09-06 19:00:00,10649.0
-2017-09-06 20:00:00,10488.0
-2017-09-06 21:00:00,10741.0
-2017-09-06 22:00:00,10668.0
-2017-09-06 23:00:00,10154.0
-2017-09-07 00:00:00,9448.0
-2017-09-05 01:00:00,8889.0
-2017-09-05 02:00:00,8376.0
-2017-09-05 03:00:00,8065.0
-2017-09-05 04:00:00,7853.0
-2017-09-05 05:00:00,7725.0
-2017-09-05 06:00:00,7889.0
-2017-09-05 07:00:00,8534.0
-2017-09-05 08:00:00,9417.0
-2017-09-05 09:00:00,10076.0
-2017-09-05 10:00:00,10546.0
-2017-09-05 11:00:00,10888.0
-2017-09-05 12:00:00,11298.0
-2017-09-05 13:00:00,11536.0
-2017-09-05 14:00:00,11650.0
-2017-09-05 15:00:00,11801.0
-2017-09-05 16:00:00,11763.0
-2017-09-05 17:00:00,11625.0
-2017-09-05 18:00:00,11367.0
-2017-09-05 19:00:00,11007.0
-2017-09-05 20:00:00,10711.0
-2017-09-05 21:00:00,10905.0
-2017-09-05 22:00:00,10838.0
-2017-09-05 23:00:00,10301.0
-2017-09-06 00:00:00,9557.0
-2017-09-04 01:00:00,9306.0
-2017-09-04 02:00:00,8786.0
-2017-09-04 03:00:00,8370.0
-2017-09-04 04:00:00,8107.0
-2017-09-04 05:00:00,7928.0
-2017-09-04 06:00:00,7932.0
-2017-09-04 07:00:00,8062.0
-2017-09-04 08:00:00,8202.0
-2017-09-04 09:00:00,8294.0
-2017-09-04 10:00:00,8814.0
-2017-09-04 11:00:00,9592.0
-2017-09-04 12:00:00,10478.0
-2017-09-04 13:00:00,11352.0
-2017-09-04 14:00:00,11898.0
-2017-09-04 15:00:00,11937.0
-2017-09-04 16:00:00,11678.0
-2017-09-04 17:00:00,11540.0
-2017-09-04 18:00:00,11455.0
-2017-09-04 19:00:00,11322.0
-2017-09-04 20:00:00,11026.0
-2017-09-04 21:00:00,11163.0
-2017-09-04 22:00:00,10979.0
-2017-09-04 23:00:00,10341.0
-2017-09-05 00:00:00,9592.0
-2017-09-03 01:00:00,8573.0
-2017-09-03 02:00:00,8179.0
-2017-09-03 03:00:00,7796.0
-2017-09-03 04:00:00,7591.0
-2017-09-03 05:00:00,7467.0
-2017-09-03 06:00:00,7443.0
-2017-09-03 07:00:00,7513.0
-2017-09-03 08:00:00,7512.0
-2017-09-03 09:00:00,7748.0
-2017-09-03 10:00:00,8266.0
-2017-09-03 11:00:00,8853.0
-2017-09-03 12:00:00,9378.0
-2017-09-03 13:00:00,9877.0
-2017-09-03 14:00:00,10186.0
-2017-09-03 15:00:00,10509.0
-2017-09-03 16:00:00,10906.0
-2017-09-03 17:00:00,11197.0
-2017-09-03 18:00:00,11404.0
-2017-09-03 19:00:00,11392.0
-2017-09-03 20:00:00,11061.0
-2017-09-03 21:00:00,10971.0
-2017-09-03 22:00:00,10932.0
-2017-09-03 23:00:00,10540.0
-2017-09-04 00:00:00,9925.0
-2017-09-02 01:00:00,8989.0
-2017-09-02 02:00:00,8411.0
-2017-09-02 03:00:00,8084.0
-2017-09-02 04:00:00,7837.0
-2017-09-02 05:00:00,7688.0
-2017-09-02 06:00:00,7692.0
-2017-09-02 07:00:00,7820.0
-2017-09-02 08:00:00,7919.0
-2017-09-02 09:00:00,8115.0
-2017-09-02 10:00:00,8680.0
-2017-09-02 11:00:00,9115.0
-2017-09-02 12:00:00,9406.0
-2017-09-02 13:00:00,9559.0
-2017-09-02 14:00:00,9674.0
-2017-09-02 15:00:00,9708.0
-2017-09-02 16:00:00,9639.0
-2017-09-02 17:00:00,9712.0
-2017-09-02 18:00:00,9753.0
-2017-09-02 19:00:00,9713.0
-2017-09-02 20:00:00,9639.0
-2017-09-02 21:00:00,9887.0
-2017-09-02 22:00:00,9862.0
-2017-09-02 23:00:00,9581.0
-2017-09-03 00:00:00,9149.0
-2017-09-01 01:00:00,9543.0
-2017-09-01 02:00:00,9011.0
-2017-09-01 03:00:00,8620.0
-2017-09-01 04:00:00,8322.0
-2017-09-01 05:00:00,8193.0
-2017-09-01 06:00:00,8309.0
-2017-09-01 07:00:00,8813.0
-2017-09-01 08:00:00,9543.0
-2017-09-01 09:00:00,10119.0
-2017-09-01 10:00:00,10604.0
-2017-09-01 11:00:00,10877.0
-2017-09-01 12:00:00,11169.0
-2017-09-01 13:00:00,11304.0
-2017-09-01 14:00:00,11427.0
-2017-09-01 15:00:00,11554.0
-2017-09-01 16:00:00,11578.0
-2017-09-01 17:00:00,11503.0
-2017-09-01 18:00:00,11404.0
-2017-09-01 19:00:00,11187.0
-2017-09-01 20:00:00,10775.0
-2017-09-01 21:00:00,10709.0
-2017-09-01 22:00:00,10734.0
-2017-09-01 23:00:00,10319.0
-2017-09-02 00:00:00,9660.0
-2017-08-31 01:00:00,10500.0
-2017-08-31 02:00:00,9809.0
-2017-08-31 03:00:00,9342.0
-2017-08-31 04:00:00,9079.0
-2017-08-31 05:00:00,8944.0
-2017-08-31 06:00:00,9099.0
-2017-08-31 07:00:00,9694.0
-2017-08-31 08:00:00,10572.0
-2017-08-31 09:00:00,11238.0
-2017-08-31 10:00:00,11741.0
-2017-08-31 11:00:00,12159.0
-2017-08-31 12:00:00,12585.0
-2017-08-31 13:00:00,12794.0
-2017-08-31 14:00:00,12930.0
-2017-08-31 15:00:00,13044.0
-2017-08-31 16:00:00,13006.0
-2017-08-31 17:00:00,12906.0
-2017-08-31 18:00:00,12697.0
-2017-08-31 19:00:00,12248.0
-2017-08-31 20:00:00,11666.0
-2017-08-31 21:00:00,11668.0
-2017-08-31 22:00:00,11674.0
-2017-08-31 23:00:00,11152.0
-2017-09-01 00:00:00,10388.0
-2017-08-30 01:00:00,10053.0
-2017-08-30 02:00:00,9407.0
-2017-08-30 03:00:00,8986.0
-2017-08-30 04:00:00,8696.0
-2017-08-30 05:00:00,8608.0
-2017-08-30 06:00:00,8755.0
-2017-08-30 07:00:00,9344.0
-2017-08-30 08:00:00,10164.0
-2017-08-30 09:00:00,10923.0
-2017-08-30 10:00:00,11590.0
-2017-08-30 11:00:00,12166.0
-2017-08-30 12:00:00,12778.0
-2017-08-30 13:00:00,13154.0
-2017-08-30 14:00:00,13547.0
-2017-08-30 15:00:00,13922.0
-2017-08-30 16:00:00,14196.0
-2017-08-30 17:00:00,14367.0
-2017-08-30 18:00:00,14382.0
-2017-08-30 19:00:00,14208.0
-2017-08-30 20:00:00,13664.0
-2017-08-30 21:00:00,13408.0
-2017-08-30 22:00:00,13265.0
-2017-08-30 23:00:00,12523.0
-2017-08-31 00:00:00,11458.0
-2017-08-29 01:00:00,10081.0
-2017-08-29 02:00:00,9453.0
-2017-08-29 03:00:00,9028.0
-2017-08-29 04:00:00,8797.0
-2017-08-29 05:00:00,8686.0
-2017-08-29 06:00:00,8828.0
-2017-08-29 07:00:00,9427.0
-2017-08-29 08:00:00,10310.0
-2017-08-29 09:00:00,11081.0
-2017-08-29 10:00:00,11770.0
-2017-08-29 11:00:00,12352.0
-2017-08-29 12:00:00,12813.0
-2017-08-29 13:00:00,13013.0
-2017-08-29 14:00:00,12996.0
-2017-08-29 15:00:00,13033.0
-2017-08-29 16:00:00,12921.0
-2017-08-29 17:00:00,12659.0
-2017-08-29 18:00:00,12522.0
-2017-08-29 19:00:00,12608.0
-2017-08-29 20:00:00,12371.0
-2017-08-29 21:00:00,12377.0
-2017-08-29 22:00:00,12372.0
-2017-08-29 23:00:00,11817.0
-2017-08-30 00:00:00,10921.0
-2017-08-28 01:00:00,9423.0
-2017-08-28 02:00:00,8980.0
-2017-08-28 03:00:00,8689.0
-2017-08-28 04:00:00,8527.0
-2017-08-28 05:00:00,8477.0
-2017-08-28 06:00:00,8673.0
-2017-08-28 07:00:00,9469.0
-2017-08-28 08:00:00,10413.0
-2017-08-28 09:00:00,11099.0
-2017-08-28 10:00:00,11646.0
-2017-08-28 11:00:00,12122.0
-2017-08-28 12:00:00,12677.0
-2017-08-28 13:00:00,13126.0
-2017-08-28 14:00:00,13516.0
-2017-08-28 15:00:00,13898.0
-2017-08-28 16:00:00,14069.0
-2017-08-28 17:00:00,13860.0
-2017-08-28 18:00:00,13456.0
-2017-08-28 19:00:00,13026.0
-2017-08-28 20:00:00,12586.0
-2017-08-28 21:00:00,12515.0
-2017-08-28 22:00:00,12444.0
-2017-08-28 23:00:00,11848.0
-2017-08-29 00:00:00,10983.0
-2017-08-27 01:00:00,9314.0
-2017-08-27 02:00:00,8868.0
-2017-08-27 03:00:00,8509.0
-2017-08-27 04:00:00,8213.0
-2017-08-27 05:00:00,8031.0
-2017-08-27 06:00:00,7952.0
-2017-08-27 07:00:00,7944.0
-2017-08-27 08:00:00,7838.0
-2017-08-27 09:00:00,7993.0
-2017-08-27 10:00:00,8499.0
-2017-08-27 11:00:00,8904.0
-2017-08-27 12:00:00,9197.0
-2017-08-27 13:00:00,9428.0
-2017-08-27 14:00:00,9608.0
-2017-08-27 15:00:00,9898.0
-2017-08-27 16:00:00,10290.0
-2017-08-27 17:00:00,10484.0
-2017-08-27 18:00:00,10474.0
-2017-08-27 19:00:00,10500.0
-2017-08-27 20:00:00,10550.0
-2017-08-27 21:00:00,10860.0
-2017-08-27 22:00:00,11007.0
-2017-08-27 23:00:00,10673.0
-2017-08-28 00:00:00,10147.0
-2017-08-26 01:00:00,9519.0
-2017-08-26 02:00:00,8949.0
-2017-08-26 03:00:00,8593.0
-2017-08-26 04:00:00,8288.0
-2017-08-26 05:00:00,8146.0
-2017-08-26 06:00:00,8132.0
-2017-08-26 07:00:00,8357.0
-2017-08-26 08:00:00,8563.0
-2017-08-26 09:00:00,8940.0
-2017-08-26 10:00:00,9486.0
-2017-08-26 11:00:00,10002.0
-2017-08-26 12:00:00,10449.0
-2017-08-26 13:00:00,10765.0
-2017-08-26 14:00:00,10967.0
-2017-08-26 15:00:00,11113.0
-2017-08-26 16:00:00,11122.0
-2017-08-26 17:00:00,11008.0
-2017-08-26 18:00:00,10834.0
-2017-08-26 19:00:00,10683.0
-2017-08-26 20:00:00,10548.0
-2017-08-26 21:00:00,10720.0
-2017-08-26 22:00:00,10728.0
-2017-08-26 23:00:00,10424.0
-2017-08-27 00:00:00,9901.0
-2017-08-25 01:00:00,9393.0
-2017-08-25 02:00:00,8853.0
-2017-08-25 03:00:00,8503.0
-2017-08-25 04:00:00,8230.0
-2017-08-25 05:00:00,8112.0
-2017-08-25 06:00:00,8281.0
-2017-08-25 07:00:00,8780.0
-2017-08-25 08:00:00,9486.0
-2017-08-25 09:00:00,10171.0
-2017-08-25 10:00:00,10745.0
-2017-08-25 11:00:00,11261.0
-2017-08-25 12:00:00,11624.0
-2017-08-25 13:00:00,11853.0
-2017-08-25 14:00:00,12006.0
-2017-08-25 15:00:00,12219.0
-2017-08-25 16:00:00,12342.0
-2017-08-25 17:00:00,12399.0
-2017-08-25 18:00:00,12384.0
-2017-08-25 19:00:00,12165.0
-2017-08-25 20:00:00,11713.0
-2017-08-25 21:00:00,11393.0
-2017-08-25 22:00:00,11427.0
-2017-08-25 23:00:00,10945.0
-2017-08-26 00:00:00,10273.0
-2017-08-24 01:00:00,10073.0
-2017-08-24 02:00:00,9431.0
-2017-08-24 03:00:00,9010.0
-2017-08-24 04:00:00,8706.0
-2017-08-24 05:00:00,8581.0
-2017-08-24 06:00:00,8733.0
-2017-08-24 07:00:00,9262.0
-2017-08-24 08:00:00,10080.0
-2017-08-24 09:00:00,10760.0
-2017-08-24 10:00:00,11336.0
-2017-08-24 11:00:00,11885.0
-2017-08-24 12:00:00,12347.0
-2017-08-24 13:00:00,12595.0
-2017-08-24 14:00:00,12802.0
-2017-08-24 15:00:00,12891.0
-2017-08-24 16:00:00,12834.0
-2017-08-24 17:00:00,12704.0
-2017-08-24 18:00:00,12604.0
-2017-08-24 19:00:00,12278.0
-2017-08-24 20:00:00,11763.0
-2017-08-24 21:00:00,11539.0
-2017-08-24 22:00:00,11592.0
-2017-08-24 23:00:00,11029.0
-2017-08-25 00:00:00,10202.0
-2017-08-23 01:00:00,10416.0
-2017-08-23 02:00:00,9703.0
-2017-08-23 03:00:00,9217.0
-2017-08-23 04:00:00,8907.0
-2017-08-23 05:00:00,8734.0
-2017-08-23 06:00:00,8840.0
-2017-08-23 07:00:00,9381.0
-2017-08-23 08:00:00,10123.0
-2017-08-23 09:00:00,10924.0
-2017-08-23 10:00:00,11608.0
-2017-08-23 11:00:00,12089.0
-2017-08-23 12:00:00,12594.0
-2017-08-23 13:00:00,12967.0
-2017-08-23 14:00:00,13254.0
-2017-08-23 15:00:00,13539.0
-2017-08-23 16:00:00,13736.0
-2017-08-23 17:00:00,13831.0
-2017-08-23 18:00:00,13782.0
-2017-08-23 19:00:00,13521.0
-2017-08-23 20:00:00,12959.0
-2017-08-23 21:00:00,12558.0
-2017-08-23 22:00:00,12593.0
-2017-08-23 23:00:00,11923.0
-2017-08-24 00:00:00,10960.0
-2017-08-22 01:00:00,12788.0
-2017-08-22 02:00:00,11767.0
-2017-08-22 03:00:00,11236.0
-2017-08-22 04:00:00,10930.0
-2017-08-22 05:00:00,10746.0
-2017-08-22 06:00:00,10899.0
-2017-08-22 07:00:00,11465.0
-2017-08-22 08:00:00,12308.0
-2017-08-22 09:00:00,12881.0
-2017-08-22 10:00:00,13386.0
-2017-08-22 11:00:00,13734.0
-2017-08-22 12:00:00,14114.0
-2017-08-22 13:00:00,14356.0
-2017-08-22 14:00:00,14789.0
-2017-08-22 15:00:00,15312.0
-2017-08-22 16:00:00,15536.0
-2017-08-22 17:00:00,15641.0
-2017-08-22 18:00:00,15548.0
-2017-08-22 19:00:00,15192.0
-2017-08-22 20:00:00,14382.0
-2017-08-22 21:00:00,13607.0
-2017-08-22 22:00:00,13358.0
-2017-08-22 23:00:00,12553.0
-2017-08-23 00:00:00,11478.0
-2017-08-21 01:00:00,12211.0
-2017-08-21 02:00:00,11444.0
-2017-08-21 03:00:00,10871.0
-2017-08-21 04:00:00,10479.0
-2017-08-21 05:00:00,10340.0
-2017-08-21 06:00:00,10478.0
-2017-08-21 07:00:00,11216.0
-2017-08-21 08:00:00,12095.0
-2017-08-21 09:00:00,13079.0
-2017-08-21 10:00:00,13913.0
-2017-08-21 11:00:00,14800.0
-2017-08-21 12:00:00,15724.0
-2017-08-21 13:00:00,16140.0
-2017-08-21 14:00:00,16319.0
-2017-08-21 15:00:00,15908.0
-2017-08-21 16:00:00,16202.0
-2017-08-21 17:00:00,16750.0
-2017-08-21 18:00:00,17313.0
-2017-08-21 19:00:00,17064.0
-2017-08-21 20:00:00,16384.0
-2017-08-21 21:00:00,15938.0
-2017-08-21 22:00:00,15778.0
-2017-08-21 23:00:00,15017.0
-2017-08-22 00:00:00,13930.0
-2017-08-20 01:00:00,10816.0
-2017-08-20 02:00:00,10076.0
-2017-08-20 03:00:00,9551.0
-2017-08-20 04:00:00,9088.0
-2017-08-20 05:00:00,8831.0
-2017-08-20 06:00:00,8677.0
-2017-08-20 07:00:00,8725.0
-2017-08-20 08:00:00,8638.0
-2017-08-20 09:00:00,9094.0
-2017-08-20 10:00:00,9935.0
-2017-08-20 11:00:00,10918.0
-2017-08-20 12:00:00,11924.0
-2017-08-20 13:00:00,12980.0
-2017-08-20 14:00:00,13953.0
-2017-08-20 15:00:00,14708.0
-2017-08-20 16:00:00,15112.0
-2017-08-20 17:00:00,14964.0
-2017-08-20 18:00:00,14848.0
-2017-08-20 19:00:00,14590.0
-2017-08-20 20:00:00,14424.0
-2017-08-20 21:00:00,14422.0
-2017-08-20 22:00:00,14444.0
-2017-08-20 23:00:00,13940.0
-2017-08-21 00:00:00,13176.0
-2017-08-19 01:00:00,11690.0
-2017-08-19 02:00:00,10835.0
-2017-08-19 03:00:00,10197.0
-2017-08-19 04:00:00,9738.0
-2017-08-19 05:00:00,9760.0
-2017-08-19 06:00:00,9573.0
-2017-08-19 07:00:00,9697.0
-2017-08-19 08:00:00,9765.0
-2017-08-19 09:00:00,10227.0
-2017-08-19 10:00:00,11202.0
-2017-08-19 11:00:00,12146.0
-2017-08-19 12:00:00,13000.0
-2017-08-19 13:00:00,13743.0
-2017-08-19 14:00:00,14374.0
-2017-08-19 15:00:00,14814.0
-2017-08-19 16:00:00,15242.0
-2017-08-19 17:00:00,15585.0
-2017-08-19 18:00:00,15692.0
-2017-08-19 19:00:00,15564.0
-2017-08-19 20:00:00,14919.0
-2017-08-19 21:00:00,13968.0
-2017-08-19 22:00:00,13508.0
-2017-08-19 23:00:00,12850.0
-2017-08-20 00:00:00,11957.0
-2017-08-18 01:00:00,12036.0
-2017-08-18 02:00:00,11176.0
-2017-08-18 03:00:00,10524.0
-2017-08-18 04:00:00,10060.0
-2017-08-18 05:00:00,9834.0
-2017-08-18 06:00:00,9864.0
-2017-08-18 07:00:00,10401.0
-2017-08-18 08:00:00,11120.0
-2017-08-18 09:00:00,12021.0
-2017-08-18 10:00:00,12710.0
-2017-08-18 11:00:00,13190.0
-2017-08-18 12:00:00,13587.0
-2017-08-18 13:00:00,14063.0
-2017-08-18 14:00:00,14650.0
-2017-08-18 15:00:00,15240.0
-2017-08-18 16:00:00,15708.0
-2017-08-18 17:00:00,16105.0
-2017-08-18 18:00:00,16229.0
-2017-08-18 19:00:00,15941.0
-2017-08-18 20:00:00,15232.0
-2017-08-18 21:00:00,14489.0
-2017-08-18 22:00:00,14307.0
-2017-08-18 23:00:00,13670.0
-2017-08-19 00:00:00,12724.0
-2017-08-17 01:00:00,13266.0
-2017-08-17 02:00:00,12442.0
-2017-08-17 03:00:00,11819.0
-2017-08-17 04:00:00,11312.0
-2017-08-17 05:00:00,11011.0
-2017-08-17 06:00:00,11019.0
-2017-08-17 07:00:00,11656.0
-2017-08-17 08:00:00,12611.0
-2017-08-17 09:00:00,13344.0
-2017-08-17 10:00:00,13788.0
-2017-08-17 11:00:00,14251.0
-2017-08-17 12:00:00,14575.0
-2017-08-17 13:00:00,14982.0
-2017-08-17 14:00:00,15687.0
-2017-08-17 15:00:00,16265.0
-2017-08-17 16:00:00,16501.0
-2017-08-17 17:00:00,16662.0
-2017-08-17 18:00:00,16676.0
-2017-08-17 19:00:00,16422.0
-2017-08-17 20:00:00,15742.0
-2017-08-17 21:00:00,15161.0
-2017-08-17 22:00:00,15050.0
-2017-08-17 23:00:00,14344.0
-2017-08-18 00:00:00,13169.0
-2017-08-16 01:00:00,11418.0
-2017-08-16 02:00:00,10626.0
-2017-08-16 03:00:00,10074.0
-2017-08-16 04:00:00,9732.0
-2017-08-16 05:00:00,9532.0
-2017-08-16 06:00:00,9635.0
-2017-08-16 07:00:00,10237.0
-2017-08-16 08:00:00,11101.0
-2017-08-16 09:00:00,12116.0
-2017-08-16 10:00:00,13105.0
-2017-08-16 11:00:00,14056.0
-2017-08-16 12:00:00,15092.0
-2017-08-16 13:00:00,16106.0
-2017-08-16 14:00:00,16994.0
-2017-08-16 15:00:00,17802.0
-2017-08-16 16:00:00,18237.0
-2017-08-16 17:00:00,18282.0
-2017-08-16 18:00:00,17547.0
-2017-08-16 19:00:00,16633.0
-2017-08-16 20:00:00,16042.0
-2017-08-16 21:00:00,15727.0
-2017-08-16 22:00:00,15768.0
-2017-08-16 23:00:00,15274.0
-2017-08-17 00:00:00,14254.0
-2017-08-15 01:00:00,11878.0
-2017-08-15 02:00:00,11038.0
-2017-08-15 03:00:00,10419.0
-2017-08-15 04:00:00,10056.0
-2017-08-15 05:00:00,9789.0
-2017-08-15 06:00:00,9909.0
-2017-08-15 07:00:00,10486.0
-2017-08-15 08:00:00,11253.0
-2017-08-15 09:00:00,12275.0
-2017-08-15 10:00:00,13299.0
-2017-08-15 11:00:00,14164.0
-2017-08-15 12:00:00,15038.0
-2017-08-15 13:00:00,15687.0
-2017-08-15 14:00:00,16249.0
-2017-08-15 15:00:00,16784.0
-2017-08-15 16:00:00,16993.0
-2017-08-15 17:00:00,16984.0
-2017-08-15 18:00:00,16777.0
-2017-08-15 19:00:00,16252.0
-2017-08-15 20:00:00,15236.0
-2017-08-15 21:00:00,14498.0
-2017-08-15 22:00:00,14272.0
-2017-08-15 23:00:00,13553.0
-2017-08-16 00:00:00,12514.0
-2017-08-14 01:00:00,9869.0
-2017-08-14 02:00:00,9357.0
-2017-08-14 03:00:00,8970.0
-2017-08-14 04:00:00,8743.0
-2017-08-14 05:00:00,8616.0
-2017-08-14 06:00:00,8830.0
-2017-08-14 07:00:00,9466.0
-2017-08-14 08:00:00,10192.0
-2017-08-14 09:00:00,11121.0
-2017-08-14 10:00:00,11998.0
-2017-08-14 11:00:00,12803.0
-2017-08-14 12:00:00,13428.0
-2017-08-14 13:00:00,13760.0
-2017-08-14 14:00:00,14066.0
-2017-08-14 15:00:00,14471.0
-2017-08-14 16:00:00,14942.0
-2017-08-14 17:00:00,15328.0
-2017-08-14 18:00:00,15433.0
-2017-08-14 19:00:00,15235.0
-2017-08-14 20:00:00,14731.0
-2017-08-14 21:00:00,14473.0
-2017-08-14 22:00:00,14535.0
-2017-08-14 23:00:00,13990.0
-2017-08-15 00:00:00,12969.0
-2017-08-13 01:00:00,9528.0
-2017-08-13 02:00:00,8985.0
-2017-08-13 03:00:00,8565.0
-2017-08-13 04:00:00,8234.0
-2017-08-13 05:00:00,8038.0
-2017-08-13 06:00:00,7980.0
-2017-08-13 07:00:00,7982.0
-2017-08-13 08:00:00,7866.0
-2017-08-13 09:00:00,8272.0
-2017-08-13 10:00:00,8883.0
-2017-08-13 11:00:00,9542.0
-2017-08-13 12:00:00,10066.0
-2017-08-13 13:00:00,10492.0
-2017-08-13 14:00:00,10899.0
-2017-08-13 15:00:00,11289.0
-2017-08-13 16:00:00,11493.0
-2017-08-13 17:00:00,11611.0
-2017-08-13 18:00:00,11623.0
-2017-08-13 19:00:00,11526.0
-2017-08-13 20:00:00,11273.0
-2017-08-13 21:00:00,11144.0
-2017-08-13 22:00:00,11384.0
-2017-08-13 23:00:00,11044.0
-2017-08-14 00:00:00,10562.0
-2017-08-12 01:00:00,10513.0
-2017-08-12 02:00:00,9799.0
-2017-08-12 03:00:00,9222.0
-2017-08-12 04:00:00,8923.0
-2017-08-12 05:00:00,8695.0
-2017-08-12 06:00:00,8642.0
-2017-08-12 07:00:00,8699.0
-2017-08-12 08:00:00,8822.0
-2017-08-12 09:00:00,9306.0
-2017-08-12 10:00:00,10073.0
-2017-08-12 11:00:00,10543.0
-2017-08-12 12:00:00,10973.0
-2017-08-12 13:00:00,11151.0
-2017-08-12 14:00:00,11279.0
-2017-08-12 15:00:00,11334.0
-2017-08-12 16:00:00,11492.0
-2017-08-12 17:00:00,11671.0
-2017-08-12 18:00:00,11816.0
-2017-08-12 19:00:00,11794.0
-2017-08-12 20:00:00,11540.0
-2017-08-12 21:00:00,11096.0
-2017-08-12 22:00:00,11101.0
-2017-08-12 23:00:00,10821.0
-2017-08-13 00:00:00,10151.0
-2017-08-11 01:00:00,11421.0
-2017-08-11 02:00:00,10598.0
-2017-08-11 03:00:00,10007.0
-2017-08-11 04:00:00,9631.0
-2017-08-11 05:00:00,9477.0
-2017-08-11 06:00:00,9551.0
-2017-08-11 07:00:00,10070.0
-2017-08-11 08:00:00,10747.0
-2017-08-11 09:00:00,11498.0
-2017-08-11 10:00:00,12342.0
-2017-08-11 11:00:00,13155.0
-2017-08-11 12:00:00,13690.0
-2017-08-11 13:00:00,14054.0
-2017-08-11 14:00:00,14302.0
-2017-08-11 15:00:00,14533.0
-2017-08-11 16:00:00,14599.0
-2017-08-11 17:00:00,14486.0
-2017-08-11 18:00:00,14260.0
-2017-08-11 19:00:00,13949.0
-2017-08-11 20:00:00,13391.0
-2017-08-11 21:00:00,12790.0
-2017-08-11 22:00:00,12751.0
-2017-08-11 23:00:00,12259.0
-2017-08-12 00:00:00,11457.0
-2017-08-10 01:00:00,11216.0
-2017-08-10 02:00:00,10374.0
-2017-08-10 03:00:00,9813.0
-2017-08-10 04:00:00,9393.0
-2017-08-10 05:00:00,9197.0
-2017-08-10 06:00:00,9259.0
-2017-08-10 07:00:00,9822.0
-2017-08-10 08:00:00,10461.0
-2017-08-10 09:00:00,11336.0
-2017-08-10 10:00:00,12136.0
-2017-08-10 11:00:00,12890.0
-2017-08-10 12:00:00,13564.0
-2017-08-10 13:00:00,14219.0
-2017-08-10 14:00:00,15077.0
-2017-08-10 15:00:00,15777.0
-2017-08-10 16:00:00,16176.0
-2017-08-10 17:00:00,16306.0
-2017-08-10 18:00:00,15942.0
-2017-08-10 19:00:00,15669.0
-2017-08-10 20:00:00,14884.0
-2017-08-10 21:00:00,14300.0
-2017-08-10 22:00:00,14224.0
-2017-08-10 23:00:00,13627.0
-2017-08-11 00:00:00,12595.0
-2017-08-09 01:00:00,10853.0
-2017-08-09 02:00:00,10083.0
-2017-08-09 03:00:00,9508.0
-2017-08-09 04:00:00,9142.0
-2017-08-09 05:00:00,8982.0
-2017-08-09 06:00:00,9050.0
-2017-08-09 07:00:00,9550.0
-2017-08-09 08:00:00,10179.0
-2017-08-09 09:00:00,11081.0
-2017-08-09 10:00:00,12020.0
-2017-08-09 11:00:00,12796.0
-2017-08-09 12:00:00,13516.0
-2017-08-09 13:00:00,14049.0
-2017-08-09 14:00:00,14485.0
-2017-08-09 15:00:00,14932.0
-2017-08-09 16:00:00,15153.0
-2017-08-09 17:00:00,15308.0
-2017-08-09 18:00:00,15491.0
-2017-08-09 19:00:00,15298.0
-2017-08-09 20:00:00,14778.0
-2017-08-09 21:00:00,14182.0
-2017-08-09 22:00:00,13955.0
-2017-08-09 23:00:00,13315.0
-2017-08-10 00:00:00,12202.0
-2017-08-08 01:00:00,9809.0
-2017-08-08 02:00:00,9181.0
-2017-08-08 03:00:00,8774.0
-2017-08-08 04:00:00,8495.0
-2017-08-08 05:00:00,8377.0
-2017-08-08 06:00:00,8479.0
-2017-08-08 07:00:00,8995.0
-2017-08-08 08:00:00,9633.0
-2017-08-08 09:00:00,10536.0
-2017-08-08 10:00:00,11253.0
-2017-08-08 11:00:00,11873.0
-2017-08-08 12:00:00,12510.0
-2017-08-08 13:00:00,13025.0
-2017-08-08 14:00:00,13488.0
-2017-08-08 15:00:00,14024.0
-2017-08-08 16:00:00,14426.0
-2017-08-08 17:00:00,14706.0
-2017-08-08 18:00:00,14847.0
-2017-08-08 19:00:00,14716.0
-2017-08-08 20:00:00,14306.0
-2017-08-08 21:00:00,13701.0
-2017-08-08 22:00:00,13555.0
-2017-08-08 23:00:00,12940.0
-2017-08-09 00:00:00,11918.0
-2017-08-07 01:00:00,9595.0
-2017-08-07 02:00:00,9110.0
-2017-08-07 03:00:00,8698.0
-2017-08-07 04:00:00,8501.0
-2017-08-07 05:00:00,8384.0
-2017-08-07 06:00:00,8618.0
-2017-08-07 07:00:00,9270.0
-2017-08-07 08:00:00,9985.0
-2017-08-07 09:00:00,10893.0
-2017-08-07 10:00:00,11619.0
-2017-08-07 11:00:00,12180.0
-2017-08-07 12:00:00,12675.0
-2017-08-07 13:00:00,12961.0
-2017-08-07 14:00:00,13225.0
-2017-08-07 15:00:00,13449.0
-2017-08-07 16:00:00,13535.0
-2017-08-07 17:00:00,13642.0
-2017-08-07 18:00:00,13683.0
-2017-08-07 19:00:00,13483.0
-2017-08-07 20:00:00,12962.0
-2017-08-07 21:00:00,12346.0
-2017-08-07 22:00:00,12128.0
-2017-08-07 23:00:00,11634.0
-2017-08-08 00:00:00,10747.0
-2017-08-06 01:00:00,9695.0
-2017-08-06 02:00:00,9138.0
-2017-08-06 03:00:00,8738.0
-2017-08-06 04:00:00,8444.0
-2017-08-06 05:00:00,8247.0
-2017-08-06 06:00:00,8164.0
-2017-08-06 07:00:00,8180.0
-2017-08-06 08:00:00,8175.0
-2017-08-06 09:00:00,8405.0
-2017-08-06 10:00:00,8879.0
-2017-08-06 11:00:00,9396.0
-2017-08-06 12:00:00,9893.0
-2017-08-06 13:00:00,10407.0
-2017-08-06 14:00:00,10635.0
-2017-08-06 15:00:00,10799.0
-2017-08-06 16:00:00,10890.0
-2017-08-06 17:00:00,11188.0
-2017-08-06 18:00:00,11434.0
-2017-08-06 19:00:00,11542.0
-2017-08-06 20:00:00,11359.0
-2017-08-06 21:00:00,11077.0
-2017-08-06 22:00:00,11202.0
-2017-08-06 23:00:00,10937.0
-2017-08-07 00:00:00,10353.0
-2017-08-05 01:00:00,9227.0
-2017-08-05 02:00:00,8747.0
-2017-08-05 03:00:00,8385.0
-2017-08-05 04:00:00,8197.0
-2017-08-05 05:00:00,8047.0
-2017-08-05 06:00:00,8076.0
-2017-08-05 07:00:00,8216.0
-2017-08-05 08:00:00,8307.0
-2017-08-05 09:00:00,8834.0
-2017-08-05 10:00:00,9451.0
-2017-08-05 11:00:00,10048.0
-2017-08-05 12:00:00,10547.0
-2017-08-05 13:00:00,10928.0
-2017-08-05 14:00:00,11240.0
-2017-08-05 15:00:00,11394.0
-2017-08-05 16:00:00,11542.0
-2017-08-05 17:00:00,11671.0
-2017-08-05 18:00:00,11748.0
-2017-08-05 19:00:00,11681.0
-2017-08-05 20:00:00,11322.0
-2017-08-05 21:00:00,11040.0
-2017-08-05 22:00:00,11246.0
-2017-08-05 23:00:00,10956.0
-2017-08-06 00:00:00,10338.0
-2017-08-04 01:00:00,11363.0
-2017-08-04 02:00:00,10344.0
-2017-08-04 03:00:00,9612.0
-2017-08-04 04:00:00,9175.0
-2017-08-04 05:00:00,8941.0
-2017-08-04 06:00:00,8976.0
-2017-08-04 07:00:00,9373.0
-2017-08-04 08:00:00,9867.0
-2017-08-04 09:00:00,10428.0
-2017-08-04 10:00:00,10871.0
-2017-08-04 11:00:00,11084.0
-2017-08-04 12:00:00,11271.0
-2017-08-04 13:00:00,11332.0
-2017-08-04 14:00:00,11324.0
-2017-08-04 15:00:00,11315.0
-2017-08-04 16:00:00,11207.0
-2017-08-04 17:00:00,11049.0
-2017-08-04 18:00:00,10934.0
-2017-08-04 19:00:00,10779.0
-2017-08-04 20:00:00,10608.0
-2017-08-04 21:00:00,10450.0
-2017-08-04 22:00:00,10639.0
-2017-08-04 23:00:00,10446.0
-2017-08-05 00:00:00,9859.0
-2017-08-03 01:00:00,12560.0
-2017-08-03 02:00:00,11671.0
-2017-08-03 03:00:00,11010.0
-2017-08-03 04:00:00,10567.0
-2017-08-03 05:00:00,10298.0
-2017-08-03 06:00:00,10387.0
-2017-08-03 07:00:00,10881.0
-2017-08-03 08:00:00,11680.0
-2017-08-03 09:00:00,12660.0
-2017-08-03 10:00:00,13595.0
-2017-08-03 11:00:00,14666.0
-2017-08-03 12:00:00,15761.0
-2017-08-03 13:00:00,16514.0
-2017-08-03 14:00:00,16740.0
-2017-08-03 15:00:00,16781.0
-2017-08-03 16:00:00,16421.0
-2017-08-03 17:00:00,16122.0
-2017-08-03 18:00:00,16282.0
-2017-08-03 19:00:00,16086.0
-2017-08-03 20:00:00,15203.0
-2017-08-03 21:00:00,14462.0
-2017-08-03 22:00:00,14259.0
-2017-08-03 23:00:00,13553.0
-2017-08-04 00:00:00,12464.0
-2017-08-02 01:00:00,12508.0
-2017-08-02 02:00:00,11504.0
-2017-08-02 03:00:00,10811.0
-2017-08-02 04:00:00,10340.0
-2017-08-02 05:00:00,10068.0
-2017-08-02 06:00:00,10148.0
-2017-08-02 07:00:00,10632.0
-2017-08-02 08:00:00,11364.0
-2017-08-02 09:00:00,12492.0
-2017-08-02 10:00:00,13560.0
-2017-08-02 11:00:00,14553.0
-2017-08-02 12:00:00,15527.0
-2017-08-02 13:00:00,16112.0
-2017-08-02 14:00:00,16902.0
-2017-08-02 15:00:00,17489.0
-2017-08-02 16:00:00,17846.0
-2017-08-02 17:00:00,17997.0
-2017-08-02 18:00:00,17899.0
-2017-08-02 19:00:00,17440.0
-2017-08-02 20:00:00,16602.0
-2017-08-02 21:00:00,15905.0
-2017-08-02 22:00:00,15581.0
-2017-08-02 23:00:00,14886.0
-2017-08-03 00:00:00,13733.0
-2017-08-01 01:00:00,12008.0
-2017-08-01 02:00:00,11152.0
-2017-08-01 03:00:00,10564.0
-2017-08-01 04:00:00,10136.0
-2017-08-01 05:00:00,9906.0
-2017-08-01 06:00:00,9981.0
-2017-08-01 07:00:00,10525.0
-2017-08-01 08:00:00,11289.0
-2017-08-01 09:00:00,12293.0
-2017-08-01 10:00:00,13278.0
-2017-08-01 11:00:00,14288.0
-2017-08-01 12:00:00,15299.0
-2017-08-01 13:00:00,15950.0
-2017-08-01 14:00:00,16425.0
-2017-08-01 15:00:00,16939.0
-2017-08-01 16:00:00,17096.0
-2017-08-01 17:00:00,17017.0
-2017-08-01 18:00:00,17146.0
-2017-08-01 19:00:00,17219.0
-2017-08-01 20:00:00,16692.0
-2017-08-01 21:00:00,16037.0
-2017-08-01 22:00:00,15637.0
-2017-08-01 23:00:00,15025.0
-2017-08-02 00:00:00,13765.0
-2017-07-31 01:00:00,10973.0
-2017-07-31 02:00:00,10256.0
-2017-07-31 03:00:00,9695.0
-2017-07-31 04:00:00,9403.0
-2017-07-31 05:00:00,9230.0
-2017-07-31 06:00:00,9380.0
-2017-07-31 07:00:00,9869.0
-2017-07-31 08:00:00,10614.0
-2017-07-31 09:00:00,11653.0
-2017-07-31 10:00:00,12691.0
-2017-07-31 11:00:00,13614.0
-2017-07-31 12:00:00,14495.0
-2017-07-31 13:00:00,15111.0
-2017-07-31 14:00:00,15671.0
-2017-07-31 15:00:00,16200.0
-2017-07-31 16:00:00,16604.0
-2017-07-31 17:00:00,16873.0
-2017-07-31 18:00:00,17005.0
-2017-07-31 19:00:00,16885.0
-2017-07-31 20:00:00,16304.0
-2017-07-31 21:00:00,15519.0
-2017-07-31 22:00:00,15088.0
-2017-07-31 23:00:00,14419.0
-2017-08-01 00:00:00,13238.0
-2017-07-30 01:00:00,10136.0
-2017-07-30 02:00:00,9526.0
-2017-07-30 03:00:00,9039.0
-2017-07-30 04:00:00,8701.0
-2017-07-30 05:00:00,8465.0
-2017-07-30 06:00:00,8375.0
-2017-07-30 07:00:00,8314.0
-2017-07-30 08:00:00,8277.0
-2017-07-30 09:00:00,8804.0
-2017-07-30 10:00:00,9637.0
-2017-07-30 11:00:00,10492.0
-2017-07-30 12:00:00,11374.0
-2017-07-30 13:00:00,12011.0
-2017-07-30 14:00:00,12508.0
-2017-07-30 15:00:00,12947.0
-2017-07-30 16:00:00,13332.0
-2017-07-30 17:00:00,13742.0
-2017-07-30 18:00:00,14013.0
-2017-07-30 19:00:00,14111.0
-2017-07-30 20:00:00,13858.0
-2017-07-30 21:00:00,13327.0
-2017-07-30 22:00:00,13009.0
-2017-07-30 23:00:00,12711.0
-2017-07-31 00:00:00,11891.0
-2017-07-29 01:00:00,11086.0
-2017-07-29 02:00:00,10320.0
-2017-07-29 03:00:00,9789.0
-2017-07-29 04:00:00,9401.0
-2017-07-29 05:00:00,9103.0
-2017-07-29 06:00:00,8899.0
-2017-07-29 07:00:00,8929.0
-2017-07-29 08:00:00,9110.0
-2017-07-29 09:00:00,9808.0
-2017-07-29 10:00:00,10561.0
-2017-07-29 11:00:00,11164.0
-2017-07-29 12:00:00,11676.0
-2017-07-29 13:00:00,11966.0
-2017-07-29 14:00:00,12202.0
-2017-07-29 15:00:00,12376.0
-2017-07-29 16:00:00,12579.0
-2017-07-29 17:00:00,12858.0
-2017-07-29 18:00:00,13010.0
-2017-07-29 19:00:00,13007.0
-2017-07-29 20:00:00,12695.0
-2017-07-29 21:00:00,12130.0
-2017-07-29 22:00:00,11755.0
-2017-07-29 23:00:00,11508.0
-2017-07-30 00:00:00,10845.0
-2017-07-28 01:00:00,11617.0
-2017-07-28 02:00:00,10857.0
-2017-07-28 03:00:00,10322.0
-2017-07-28 04:00:00,9983.0
-2017-07-28 05:00:00,9771.0
-2017-07-28 06:00:00,9904.0
-2017-07-28 07:00:00,10372.0
-2017-07-28 08:00:00,11133.0
-2017-07-28 09:00:00,12129.0
-2017-07-28 10:00:00,12950.0
-2017-07-28 11:00:00,13642.0
-2017-07-28 12:00:00,14222.0
-2017-07-28 13:00:00,14643.0
-2017-07-28 14:00:00,14986.0
-2017-07-28 15:00:00,15298.0
-2017-07-28 16:00:00,15498.0
-2017-07-28 17:00:00,15581.0
-2017-07-28 18:00:00,15559.0
-2017-07-28 19:00:00,15298.0
-2017-07-28 20:00:00,14671.0
-2017-07-28 21:00:00,13760.0
-2017-07-28 22:00:00,13232.0
-2017-07-28 23:00:00,12783.0
-2017-07-29 00:00:00,11929.0
-2017-07-27 01:00:00,13324.0
-2017-07-27 02:00:00,12382.0
-2017-07-27 03:00:00,11696.0
-2017-07-27 04:00:00,11208.0
-2017-07-27 05:00:00,10940.0
-2017-07-27 06:00:00,11027.0
-2017-07-27 07:00:00,11584.0
-2017-07-27 08:00:00,12364.0
-2017-07-27 09:00:00,13467.0
-2017-07-27 10:00:00,14398.0
-2017-07-27 11:00:00,15174.0
-2017-07-27 12:00:00,15899.0
-2017-07-27 13:00:00,16500.0
-2017-07-27 14:00:00,16962.0
-2017-07-27 15:00:00,17277.0
-2017-07-27 16:00:00,17429.0
-2017-07-27 17:00:00,17484.0
-2017-07-27 18:00:00,17395.0
-2017-07-27 19:00:00,17043.0
-2017-07-27 20:00:00,16193.0
-2017-07-27 21:00:00,15082.0
-2017-07-27 22:00:00,14322.0
-2017-07-27 23:00:00,13733.0
-2017-07-28 00:00:00,12663.0
-2017-07-26 01:00:00,11421.0
-2017-07-26 02:00:00,10659.0
-2017-07-26 03:00:00,10059.0
-2017-07-26 04:00:00,9703.0
-2017-07-26 05:00:00,9475.0
-2017-07-26 06:00:00,9620.0
-2017-07-26 07:00:00,10114.0
-2017-07-26 08:00:00,10855.0
-2017-07-26 09:00:00,11827.0
-2017-07-26 10:00:00,12692.0
-2017-07-26 11:00:00,13603.0
-2017-07-26 12:00:00,14591.0
-2017-07-26 13:00:00,15550.0
-2017-07-26 14:00:00,16527.0
-2017-07-26 15:00:00,17377.0
-2017-07-26 16:00:00,17628.0
-2017-07-26 17:00:00,17450.0
-2017-07-26 18:00:00,17115.0
-2017-07-26 19:00:00,16749.0
-2017-07-26 20:00:00,16342.0
-2017-07-26 21:00:00,16071.0
-2017-07-26 22:00:00,16014.0
-2017-07-26 23:00:00,15515.0
-2017-07-27 00:00:00,14501.0
-2017-07-25 01:00:00,10709.0
-2017-07-25 02:00:00,10051.0
-2017-07-25 03:00:00,9555.0
-2017-07-25 04:00:00,9256.0
-2017-07-25 05:00:00,9108.0
-2017-07-25 06:00:00,9240.0
-2017-07-25 07:00:00,9656.0
-2017-07-25 08:00:00,10479.0
-2017-07-25 09:00:00,11536.0
-2017-07-25 10:00:00,12348.0
-2017-07-25 11:00:00,12928.0
-2017-07-25 12:00:00,13506.0
-2017-07-25 13:00:00,13958.0
-2017-07-25 14:00:00,14388.0
-2017-07-25 15:00:00,14946.0
-2017-07-25 16:00:00,15395.0
-2017-07-25 17:00:00,15720.0
-2017-07-25 18:00:00,15797.0
-2017-07-25 19:00:00,15455.0
-2017-07-25 20:00:00,14857.0
-2017-07-25 21:00:00,14286.0
-2017-07-25 22:00:00,13958.0
-2017-07-25 23:00:00,13479.0
-2017-07-26 00:00:00,12459.0
-2017-07-24 01:00:00,11513.0
-2017-07-24 02:00:00,10749.0
-2017-07-24 03:00:00,10209.0
-2017-07-24 04:00:00,9862.0
-2017-07-24 05:00:00,9690.0
-2017-07-24 06:00:00,9790.0
-2017-07-24 07:00:00,10325.0
-2017-07-24 08:00:00,10979.0
-2017-07-24 09:00:00,11902.0
-2017-07-24 10:00:00,12530.0
-2017-07-24 11:00:00,13002.0
-2017-07-24 12:00:00,13339.0
-2017-07-24 13:00:00,13552.0
-2017-07-24 14:00:00,13731.0
-2017-07-24 15:00:00,14005.0
-2017-07-24 16:00:00,14214.0
-2017-07-24 17:00:00,14411.0
-2017-07-24 18:00:00,14485.0
-2017-07-24 19:00:00,14386.0
-2017-07-24 20:00:00,13902.0
-2017-07-24 21:00:00,13271.0
-2017-07-24 22:00:00,12973.0
-2017-07-24 23:00:00,12597.0
-2017-07-25 00:00:00,11690.0
-2017-07-23 01:00:00,12618.0
-2017-07-23 02:00:00,11727.0
-2017-07-23 03:00:00,11058.0
-2017-07-23 04:00:00,10607.0
-2017-07-23 05:00:00,10288.0
-2017-07-23 06:00:00,10116.0
-2017-07-23 07:00:00,9982.0
-2017-07-23 08:00:00,10100.0
-2017-07-23 09:00:00,10827.0
-2017-07-23 10:00:00,11985.0
-2017-07-23 11:00:00,13313.0
-2017-07-23 12:00:00,14555.0
-2017-07-23 13:00:00,15500.0
-2017-07-23 14:00:00,16122.0
-2017-07-23 15:00:00,16632.0
-2017-07-23 16:00:00,16837.0
-2017-07-23 17:00:00,16796.0
-2017-07-23 18:00:00,16207.0
-2017-07-23 19:00:00,15026.0
-2017-07-23 20:00:00,14318.0
-2017-07-23 21:00:00,13765.0
-2017-07-23 22:00:00,13477.0
-2017-07-23 23:00:00,13102.0
-2017-07-24 00:00:00,12413.0
-2017-07-22 01:00:00,13141.0
-2017-07-22 02:00:00,12146.0
-2017-07-22 03:00:00,11437.0
-2017-07-22 04:00:00,11009.0
-2017-07-22 05:00:00,10693.0
-2017-07-22 06:00:00,10612.0
-2017-07-22 07:00:00,10714.0
-2017-07-22 08:00:00,10981.0
-2017-07-22 09:00:00,11264.0
-2017-07-22 10:00:00,11776.0
-2017-07-22 11:00:00,12550.0
-2017-07-22 12:00:00,13403.0
-2017-07-22 13:00:00,14200.0
-2017-07-22 14:00:00,14900.0
-2017-07-22 15:00:00,15465.0
-2017-07-22 16:00:00,15880.0
-2017-07-22 17:00:00,16112.0
-2017-07-22 18:00:00,16411.0
-2017-07-22 19:00:00,16397.0
-2017-07-22 20:00:00,16074.0
-2017-07-22 21:00:00,15400.0
-2017-07-22 22:00:00,14981.0
-2017-07-22 23:00:00,14516.0
-2017-07-23 00:00:00,13624.0
-2017-07-21 01:00:00,13408.0
-2017-07-21 02:00:00,12371.0
-2017-07-21 03:00:00,11674.0
-2017-07-21 04:00:00,11241.0
-2017-07-21 05:00:00,10935.0
-2017-07-21 06:00:00,10979.0
-2017-07-21 07:00:00,11426.0
-2017-07-21 08:00:00,12215.0
-2017-07-21 09:00:00,13405.0
-2017-07-21 10:00:00,14596.0
-2017-07-21 11:00:00,15581.0
-2017-07-21 12:00:00,16459.0
-2017-07-21 13:00:00,17122.0
-2017-07-21 14:00:00,17679.0
-2017-07-21 15:00:00,18309.0
-2017-07-21 16:00:00,18626.0
-2017-07-21 17:00:00,18506.0
-2017-07-21 18:00:00,17952.0
-2017-07-21 19:00:00,17237.0
-2017-07-21 20:00:00,16656.0
-2017-07-21 21:00:00,16227.0
-2017-07-21 22:00:00,15986.0
-2017-07-21 23:00:00,15187.0
-2017-07-22 00:00:00,14179.0
-2017-07-20 01:00:00,12910.0
-2017-07-20 02:00:00,11914.0
-2017-07-20 03:00:00,11268.0
-2017-07-20 04:00:00,10823.0
-2017-07-20 05:00:00,10582.0
-2017-07-20 06:00:00,10685.0
-2017-07-20 07:00:00,11306.0
-2017-07-20 08:00:00,12145.0
-2017-07-20 09:00:00,12827.0
-2017-07-20 10:00:00,13270.0
-2017-07-20 11:00:00,13725.0
-2017-07-20 12:00:00,14662.0
-2017-07-20 13:00:00,15840.0
-2017-07-20 14:00:00,16936.0
-2017-07-20 15:00:00,17936.0
-2017-07-20 16:00:00,18287.0
-2017-07-20 17:00:00,18023.0
-2017-07-20 18:00:00,17857.0
-2017-07-20 19:00:00,17713.0
-2017-07-20 20:00:00,17209.0
-2017-07-20 21:00:00,16694.0
-2017-07-20 22:00:00,16341.0
-2017-07-20 23:00:00,15811.0
-2017-07-21 00:00:00,14627.0
-2017-07-19 01:00:00,13511.0
-2017-07-19 02:00:00,12507.0
-2017-07-19 03:00:00,11708.0
-2017-07-19 04:00:00,11056.0
-2017-07-19 05:00:00,10726.0
-2017-07-19 06:00:00,10777.0
-2017-07-19 07:00:00,11168.0
-2017-07-19 08:00:00,12099.0
-2017-07-19 09:00:00,13403.0
-2017-07-19 10:00:00,14618.0
-2017-07-19 11:00:00,15613.0
-2017-07-19 12:00:00,16660.0
-2017-07-19 13:00:00,17533.0
-2017-07-19 14:00:00,18175.0
-2017-07-19 15:00:00,18650.0
-2017-07-19 16:00:00,18840.0
-2017-07-19 17:00:00,18836.0
-2017-07-19 18:00:00,18842.0
-2017-07-19 19:00:00,18521.0
-2017-07-19 20:00:00,17976.0
-2017-07-19 21:00:00,17209.0
-2017-07-19 22:00:00,16660.0
-2017-07-19 23:00:00,15843.0
-2017-07-20 00:00:00,14197.0
-2017-07-18 01:00:00,10855.0
-2017-07-18 02:00:00,10054.0
-2017-07-18 03:00:00,9527.0
-2017-07-18 04:00:00,9190.0
-2017-07-18 05:00:00,9013.0
-2017-07-18 06:00:00,9100.0
-2017-07-18 07:00:00,9529.0
-2017-07-18 08:00:00,10349.0
-2017-07-18 09:00:00,11450.0
-2017-07-18 10:00:00,12359.0
-2017-07-18 11:00:00,13119.0
-2017-07-18 12:00:00,13911.0
-2017-07-18 13:00:00,14605.0
-2017-07-18 14:00:00,15243.0
-2017-07-18 15:00:00,15967.0
-2017-07-18 16:00:00,16653.0
-2017-07-18 17:00:00,17233.0
-2017-07-18 18:00:00,17649.0
-2017-07-18 19:00:00,17604.0
-2017-07-18 20:00:00,17259.0
-2017-07-18 21:00:00,16790.0
-2017-07-18 22:00:00,16448.0
-2017-07-18 23:00:00,15973.0
-2017-07-19 00:00:00,14761.0
-2017-07-17 01:00:00,9602.0
-2017-07-17 02:00:00,8982.0
-2017-07-17 03:00:00,8607.0
-2017-07-17 04:00:00,8387.0
-2017-07-17 05:00:00,8325.0
-2017-07-17 06:00:00,8518.0
-2017-07-17 07:00:00,8926.0
-2017-07-17 08:00:00,9741.0
-2017-07-17 09:00:00,10728.0
-2017-07-17 10:00:00,11548.0
-2017-07-17 11:00:00,12181.0
-2017-07-17 12:00:00,12715.0
-2017-07-17 13:00:00,13136.0
-2017-07-17 14:00:00,13509.0
-2017-07-17 15:00:00,13950.0
-2017-07-17 16:00:00,14319.0
-2017-07-17 17:00:00,14616.0
-2017-07-17 18:00:00,14821.0
-2017-07-17 19:00:00,14822.0
-2017-07-17 20:00:00,14381.0
-2017-07-17 21:00:00,13766.0
-2017-07-17 22:00:00,13320.0
-2017-07-17 23:00:00,12914.0
-2017-07-18 00:00:00,11931.0
-2017-07-16 01:00:00,11042.0
-2017-07-16 02:00:00,10399.0
-2017-07-16 03:00:00,9816.0
-2017-07-16 04:00:00,9441.0
-2017-07-16 05:00:00,9267.0
-2017-07-16 06:00:00,9178.0
-2017-07-16 07:00:00,9028.0
-2017-07-16 08:00:00,8993.0
-2017-07-16 09:00:00,9372.0
-2017-07-16 10:00:00,9839.0
-2017-07-16 11:00:00,10297.0
-2017-07-16 12:00:00,10777.0
-2017-07-16 13:00:00,11051.0
-2017-07-16 14:00:00,11147.0
-2017-07-16 15:00:00,11286.0
-2017-07-16 16:00:00,11402.0
-2017-07-16 17:00:00,11567.0
-2017-07-16 18:00:00,11818.0
-2017-07-16 19:00:00,11874.0
-2017-07-16 20:00:00,11662.0
-2017-07-16 21:00:00,11219.0
-2017-07-16 22:00:00,10982.0
-2017-07-16 23:00:00,10858.0
-2017-07-17 00:00:00,10316.0
-2017-07-15 01:00:00,10296.0
-2017-07-15 02:00:00,9631.0
-2017-07-15 03:00:00,9136.0
-2017-07-15 04:00:00,8802.0
-2017-07-15 05:00:00,8634.0
-2017-07-15 06:00:00,8565.0
-2017-07-15 07:00:00,8611.0
-2017-07-15 08:00:00,8850.0
-2017-07-15 09:00:00,9505.0
-2017-07-15 10:00:00,10291.0
-2017-07-15 11:00:00,11009.0
-2017-07-15 12:00:00,11647.0
-2017-07-15 13:00:00,12090.0
-2017-07-15 14:00:00,12504.0
-2017-07-15 15:00:00,12833.0
-2017-07-15 16:00:00,13208.0
-2017-07-15 17:00:00,13624.0
-2017-07-15 18:00:00,13767.0
-2017-07-15 19:00:00,13614.0
-2017-07-15 20:00:00,13348.0
-2017-07-15 21:00:00,13030.0
-2017-07-15 22:00:00,12722.0
-2017-07-15 23:00:00,12483.0
-2017-07-16 00:00:00,11818.0
-2017-07-14 01:00:00,12371.0
-2017-07-14 02:00:00,11408.0
-2017-07-14 03:00:00,10689.0
-2017-07-14 04:00:00,10197.0
-2017-07-14 05:00:00,9933.0
-2017-07-14 06:00:00,9976.0
-2017-07-14 07:00:00,10296.0
-2017-07-14 08:00:00,10950.0
-2017-07-14 09:00:00,11718.0
-2017-07-14 10:00:00,12322.0
-2017-07-14 11:00:00,12660.0
-2017-07-14 12:00:00,12866.0
-2017-07-14 13:00:00,13043.0
-2017-07-14 14:00:00,13194.0
-2017-07-14 15:00:00,13391.0
-2017-07-14 16:00:00,13394.0
-2017-07-14 17:00:00,13210.0
-2017-07-14 18:00:00,13094.0
-2017-07-14 19:00:00,12731.0
-2017-07-14 20:00:00,12244.0
-2017-07-14 21:00:00,11935.0
-2017-07-14 22:00:00,11890.0
-2017-07-14 23:00:00,11778.0
-2017-07-15 00:00:00,11055.0
-2017-07-13 01:00:00,12960.0
-2017-07-13 02:00:00,12172.0
-2017-07-13 03:00:00,11476.0
-2017-07-13 04:00:00,10968.0
-2017-07-13 05:00:00,10697.0
-2017-07-13 06:00:00,10806.0
-2017-07-13 07:00:00,11341.0
-2017-07-13 08:00:00,12160.0
-2017-07-13 09:00:00,13089.0
-2017-07-13 10:00:00,13742.0
-2017-07-13 11:00:00,14172.0
-2017-07-13 12:00:00,14590.0
-2017-07-13 13:00:00,15093.0
-2017-07-13 14:00:00,15535.0
-2017-07-13 15:00:00,16056.0
-2017-07-13 16:00:00,16526.0
-2017-07-13 17:00:00,16790.0
-2017-07-13 18:00:00,16963.0
-2017-07-13 19:00:00,16864.0
-2017-07-13 20:00:00,16550.0
-2017-07-13 21:00:00,15864.0
-2017-07-13 22:00:00,15207.0
-2017-07-13 23:00:00,14724.0
-2017-07-14 00:00:00,13590.0
-2017-07-12 01:00:00,13155.0
-2017-07-12 02:00:00,12256.0
-2017-07-12 03:00:00,11743.0
-2017-07-12 04:00:00,11326.0
-2017-07-12 05:00:00,11120.0
-2017-07-12 06:00:00,11081.0
-2017-07-12 07:00:00,11568.0
-2017-07-12 08:00:00,12346.0
-2017-07-12 09:00:00,13382.0
-2017-07-12 10:00:00,14046.0
-2017-07-12 11:00:00,14311.0
-2017-07-12 12:00:00,14355.0
-2017-07-12 13:00:00,14353.0
-2017-07-12 14:00:00,14258.0
-2017-07-12 15:00:00,14163.0
-2017-07-12 16:00:00,14284.0
-2017-07-12 17:00:00,14609.0
-2017-07-12 18:00:00,14839.0
-2017-07-12 19:00:00,14908.0
-2017-07-12 20:00:00,14941.0
-2017-07-12 21:00:00,14981.0
-2017-07-12 22:00:00,14993.0
-2017-07-12 23:00:00,14739.0
-2017-07-13 00:00:00,13906.0
-2017-07-11 01:00:00,12362.0
-2017-07-11 02:00:00,11437.0
-2017-07-11 03:00:00,10800.0
-2017-07-11 04:00:00,10394.0
-2017-07-11 05:00:00,10172.0
-2017-07-11 06:00:00,10296.0
-2017-07-11 07:00:00,10739.0
-2017-07-11 08:00:00,11712.0
-2017-07-11 09:00:00,12885.0
-2017-07-11 10:00:00,13975.0
-2017-07-11 11:00:00,14796.0
-2017-07-11 12:00:00,15456.0
-2017-07-11 13:00:00,16049.0
-2017-07-11 14:00:00,16772.0
-2017-07-11 15:00:00,17401.0
-2017-07-11 16:00:00,17535.0
-2017-07-11 17:00:00,17114.0
-2017-07-11 18:00:00,16628.0
-2017-07-11 19:00:00,16378.0
-2017-07-11 20:00:00,16089.0
-2017-07-11 21:00:00,15750.0
-2017-07-11 22:00:00,15564.0
-2017-07-11 23:00:00,15224.0
-2017-07-12 00:00:00,14296.0
-2017-07-10 01:00:00,12523.0
-2017-07-10 02:00:00,11705.0
-2017-07-10 03:00:00,11136.0
-2017-07-10 04:00:00,10782.0
-2017-07-10 05:00:00,10660.0
-2017-07-10 06:00:00,10790.0
-2017-07-10 07:00:00,11243.0
-2017-07-10 08:00:00,11847.0
-2017-07-10 09:00:00,12408.0
-2017-07-10 10:00:00,12836.0
-2017-07-10 11:00:00,13402.0
-2017-07-10 12:00:00,14194.0
-2017-07-10 13:00:00,14705.0
-2017-07-10 14:00:00,15056.0
-2017-07-10 15:00:00,15662.0
-2017-07-10 16:00:00,16147.0
-2017-07-10 17:00:00,15987.0
-2017-07-10 18:00:00,15924.0
-2017-07-10 19:00:00,16101.0
-2017-07-10 20:00:00,15862.0
-2017-07-10 21:00:00,15439.0
-2017-07-10 22:00:00,15028.0
-2017-07-10 23:00:00,14764.0
-2017-07-11 00:00:00,13570.0
-2017-07-09 01:00:00,10044.0
-2017-07-09 02:00:00,9394.0
-2017-07-09 03:00:00,8855.0
-2017-07-09 04:00:00,8537.0
-2017-07-09 05:00:00,8276.0
-2017-07-09 06:00:00,8168.0
-2017-07-09 07:00:00,7949.0
-2017-07-09 08:00:00,8091.0
-2017-07-09 09:00:00,8615.0
-2017-07-09 10:00:00,9404.0
-2017-07-09 11:00:00,10362.0
-2017-07-09 12:00:00,11197.0
-2017-07-09 13:00:00,11990.0
-2017-07-09 14:00:00,12641.0
-2017-07-09 15:00:00,13319.0
-2017-07-09 16:00:00,13861.0
-2017-07-09 17:00:00,14219.0
-2017-07-09 18:00:00,14631.0
-2017-07-09 19:00:00,14716.0
-2017-07-09 20:00:00,14550.0
-2017-07-09 21:00:00,14257.0
-2017-07-09 22:00:00,14220.0
-2017-07-09 23:00:00,14133.0
-2017-07-10 00:00:00,13452.0
-2017-07-08 01:00:00,11519.0
-2017-07-08 02:00:00,10625.0
-2017-07-08 03:00:00,9953.0
-2017-07-08 04:00:00,9503.0
-2017-07-08 05:00:00,9224.0
-2017-07-08 06:00:00,9108.0
-2017-07-08 07:00:00,9016.0
-2017-07-08 08:00:00,9328.0
-2017-07-08 09:00:00,9999.0
-2017-07-08 10:00:00,10749.0
-2017-07-08 11:00:00,11433.0
-2017-07-08 12:00:00,11973.0
-2017-07-08 13:00:00,12357.0
-2017-07-08 14:00:00,12567.0
-2017-07-08 15:00:00,12730.0
-2017-07-08 16:00:00,12908.0
-2017-07-08 17:00:00,13149.0
-2017-07-08 18:00:00,13256.0
-2017-07-08 19:00:00,13179.0
-2017-07-08 20:00:00,12901.0
-2017-07-08 21:00:00,12321.0
-2017-07-08 22:00:00,11790.0
-2017-07-08 23:00:00,11515.0
-2017-07-09 00:00:00,10830.0
-2017-07-07 01:00:00,14605.0
-2017-07-07 02:00:00,13542.0
-2017-07-07 03:00:00,12736.0
-2017-07-07 04:00:00,12047.0
-2017-07-07 05:00:00,11575.0
-2017-07-07 06:00:00,11603.0
-2017-07-07 07:00:00,12012.0
-2017-07-07 08:00:00,12857.0
-2017-07-07 09:00:00,13850.0
-2017-07-07 10:00:00,14686.0
-2017-07-07 11:00:00,15479.0
-2017-07-07 12:00:00,16434.0
-2017-07-07 13:00:00,17034.0
-2017-07-07 14:00:00,17336.0
-2017-07-07 15:00:00,17648.0
-2017-07-07 16:00:00,17730.0
-2017-07-07 17:00:00,17586.0
-2017-07-07 18:00:00,17371.0
-2017-07-07 19:00:00,16943.0
-2017-07-07 20:00:00,16099.0
-2017-07-07 21:00:00,15090.0
-2017-07-07 22:00:00,14375.0
-2017-07-07 23:00:00,13895.0
-2017-07-08 00:00:00,12760.0
-2017-07-06 01:00:00,12322.0
-2017-07-06 02:00:00,11422.0
-2017-07-06 03:00:00,10809.0
-2017-07-06 04:00:00,10340.0
-2017-07-06 05:00:00,10095.0
-2017-07-06 06:00:00,10149.0
-2017-07-06 07:00:00,10531.0
-2017-07-06 08:00:00,11523.0
-2017-07-06 09:00:00,12904.0
-2017-07-06 10:00:00,14201.0
-2017-07-06 11:00:00,15371.0
-2017-07-06 12:00:00,16453.0
-2017-07-06 13:00:00,17311.0
-2017-07-06 14:00:00,18052.0
-2017-07-06 15:00:00,18687.0
-2017-07-06 16:00:00,19054.0
-2017-07-06 17:00:00,19269.0
-2017-07-06 18:00:00,19408.0
-2017-07-06 19:00:00,19354.0
-2017-07-06 20:00:00,19005.0
-2017-07-06 21:00:00,18389.0
-2017-07-06 22:00:00,17753.0
-2017-07-06 23:00:00,17205.0
-2017-07-07 00:00:00,15918.0
-2017-07-05 01:00:00,10778.0
-2017-07-05 02:00:00,10057.0
-2017-07-05 03:00:00,9530.0
-2017-07-05 04:00:00,9165.0
-2017-07-05 05:00:00,8984.0
-2017-07-05 06:00:00,9122.0
-2017-07-05 07:00:00,9573.0
-2017-07-05 08:00:00,10500.0
-2017-07-05 09:00:00,11680.0
-2017-07-05 10:00:00,12759.0
-2017-07-05 11:00:00,13781.0
-2017-07-05 12:00:00,14845.0
-2017-07-05 13:00:00,15680.0
-2017-07-05 14:00:00,16392.0
-2017-07-05 15:00:00,17044.0
-2017-07-05 16:00:00,17404.0
-2017-07-05 17:00:00,17531.0
-2017-07-05 18:00:00,17527.0
-2017-07-05 19:00:00,17020.0
-2017-07-05 20:00:00,16187.0
-2017-07-05 21:00:00,15415.0
-2017-07-05 22:00:00,15061.0
-2017-07-05 23:00:00,14533.0
-2017-07-06 00:00:00,13470.0
-2017-07-04 01:00:00,10085.0
-2017-07-04 02:00:00,9421.0
-2017-07-04 03:00:00,8945.0
-2017-07-04 04:00:00,8604.0
-2017-07-04 05:00:00,8420.0
-2017-07-04 06:00:00,8384.0
-2017-07-04 07:00:00,8306.0
-2017-07-04 08:00:00,8469.0
-2017-07-04 09:00:00,8993.0
-2017-07-04 10:00:00,9856.0
-2017-07-04 11:00:00,10827.0
-2017-07-04 12:00:00,11836.0
-2017-07-04 13:00:00,12708.0
-2017-07-04 14:00:00,13450.0
-2017-07-04 15:00:00,13906.0
-2017-07-04 16:00:00,14159.0
-2017-07-04 17:00:00,14202.0
-2017-07-04 18:00:00,14150.0
-2017-07-04 19:00:00,13960.0
-2017-07-04 20:00:00,13443.0
-2017-07-04 21:00:00,12768.0
-2017-07-04 22:00:00,12282.0
-2017-07-04 23:00:00,11939.0
-2017-07-05 00:00:00,11463.0
-2017-07-03 01:00:00,11112.0
-2017-07-03 02:00:00,10347.0
-2017-07-03 03:00:00,9819.0
-2017-07-03 04:00:00,9438.0
-2017-07-03 05:00:00,9250.0
-2017-07-03 06:00:00,9267.0
-2017-07-03 07:00:00,9503.0
-2017-07-03 08:00:00,10034.0
-2017-07-03 09:00:00,10853.0
-2017-07-03 10:00:00,11700.0
-2017-07-03 11:00:00,12530.0
-2017-07-03 12:00:00,13310.0
-2017-07-03 13:00:00,13901.0
-2017-07-03 14:00:00,14348.0
-2017-07-03 15:00:00,14725.0
-2017-07-03 16:00:00,14912.0
-2017-07-03 17:00:00,14981.0
-2017-07-03 18:00:00,14588.0
-2017-07-03 19:00:00,13889.0
-2017-07-03 20:00:00,13028.0
-2017-07-03 21:00:00,12300.0
-2017-07-03 22:00:00,11857.0
-2017-07-03 23:00:00,11544.0
-2017-07-04 00:00:00,10858.0
-2017-07-02 01:00:00,10487.0
-2017-07-02 02:00:00,9710.0
-2017-07-02 03:00:00,9153.0
-2017-07-02 04:00:00,8712.0
-2017-07-02 05:00:00,8472.0
-2017-07-02 06:00:00,8301.0
-2017-07-02 07:00:00,8132.0
-2017-07-02 08:00:00,8244.0
-2017-07-02 09:00:00,8847.0
-2017-07-02 10:00:00,9603.0
-2017-07-02 11:00:00,10424.0
-2017-07-02 12:00:00,11161.0
-2017-07-02 13:00:00,11944.0
-2017-07-02 14:00:00,12601.0
-2017-07-02 15:00:00,13334.0
-2017-07-02 16:00:00,14119.0
-2017-07-02 17:00:00,14698.0
-2017-07-02 18:00:00,14893.0
-2017-07-02 19:00:00,14799.0
-2017-07-02 20:00:00,14167.0
-2017-07-02 21:00:00,13395.0
-2017-07-02 22:00:00,12910.0
-2017-07-02 23:00:00,12657.0
-2017-07-03 00:00:00,11943.0
-2017-07-01 01:00:00,11781.0
-2017-07-01 02:00:00,10873.0
-2017-07-01 03:00:00,10203.0
-2017-07-01 04:00:00,9625.0
-2017-07-01 05:00:00,9335.0
-2017-07-01 06:00:00,9235.0
-2017-07-01 07:00:00,9108.0
-2017-07-01 08:00:00,9400.0
-2017-07-01 09:00:00,10117.0
-2017-07-01 10:00:00,11067.0
-2017-07-01 11:00:00,12045.0
-2017-07-01 12:00:00,12835.0
-2017-07-01 13:00:00,13351.0
-2017-07-01 14:00:00,13771.0
-2017-07-01 15:00:00,13933.0
-2017-07-01 16:00:00,14019.0
-2017-07-01 17:00:00,14034.0
-2017-07-01 18:00:00,14108.0
-2017-07-01 19:00:00,13955.0
-2017-07-01 20:00:00,13530.0
-2017-07-01 21:00:00,12817.0
-2017-07-01 22:00:00,12235.0
-2017-07-01 23:00:00,11967.0
-2017-07-02 00:00:00,11228.0
-2017-06-30 01:00:00,11161.0
-2017-06-30 02:00:00,10392.0
-2017-06-30 03:00:00,9852.0
-2017-06-30 04:00:00,9449.0
-2017-06-30 05:00:00,9275.0
-2017-06-30 06:00:00,9427.0
-2017-06-30 07:00:00,9807.0
-2017-06-30 08:00:00,10683.0
-2017-06-30 09:00:00,11717.0
-2017-06-30 10:00:00,12632.0
-2017-06-30 11:00:00,13259.0
-2017-06-30 12:00:00,14024.0
-2017-06-30 13:00:00,14695.0
-2017-06-30 14:00:00,15177.0
-2017-06-30 15:00:00,15505.0
-2017-06-30 16:00:00,15623.0
-2017-06-30 17:00:00,15495.0
-2017-06-30 18:00:00,15354.0
-2017-06-30 19:00:00,15369.0
-2017-06-30 20:00:00,14990.0
-2017-06-30 21:00:00,14478.0
-2017-06-30 22:00:00,14053.0
-2017-06-30 23:00:00,13763.0
-2017-07-01 00:00:00,12837.0
-2017-06-29 01:00:00,10527.0
-2017-06-29 02:00:00,9821.0
-2017-06-29 03:00:00,9392.0
-2017-06-29 04:00:00,9099.0
-2017-06-29 05:00:00,9010.0
-2017-06-29 06:00:00,9193.0
-2017-06-29 07:00:00,9693.0
-2017-06-29 08:00:00,10595.0
-2017-06-29 09:00:00,11607.0
-2017-06-29 10:00:00,12433.0
-2017-06-29 11:00:00,13124.0
-2017-06-29 12:00:00,13793.0
-2017-06-29 13:00:00,14429.0
-2017-06-29 14:00:00,15032.0
-2017-06-29 15:00:00,15372.0
-2017-06-29 16:00:00,15613.0
-2017-06-29 17:00:00,15522.0
-2017-06-29 18:00:00,15252.0
-2017-06-29 19:00:00,14687.0
-2017-06-29 20:00:00,14131.0
-2017-06-29 21:00:00,13768.0
-2017-06-29 22:00:00,13393.0
-2017-06-29 23:00:00,13049.0
-2017-06-30 00:00:00,12160.0
-2017-06-28 01:00:00,9796.0
-2017-06-28 02:00:00,9164.0
-2017-06-28 03:00:00,8751.0
-2017-06-28 04:00:00,8492.0
-2017-06-28 05:00:00,8356.0
-2017-06-28 06:00:00,8526.0
-2017-06-28 07:00:00,8867.0
-2017-06-28 08:00:00,9679.0
-2017-06-28 09:00:00,10516.0
-2017-06-28 10:00:00,11056.0
-2017-06-28 11:00:00,11366.0
-2017-06-28 12:00:00,11651.0
-2017-06-28 13:00:00,11762.0
-2017-06-28 14:00:00,11708.0
-2017-06-28 15:00:00,11930.0
-2017-06-28 16:00:00,12160.0
-2017-06-28 17:00:00,12371.0
-2017-06-28 18:00:00,12507.0
-2017-06-28 19:00:00,12364.0
-2017-06-28 20:00:00,12174.0
-2017-06-28 21:00:00,12140.0
-2017-06-28 22:00:00,12333.0
-2017-06-28 23:00:00,12148.0
-2017-06-29 00:00:00,11367.0
-2017-06-27 01:00:00,9153.0
-2017-06-27 02:00:00,8616.0
-2017-06-27 03:00:00,8264.0
-2017-06-27 04:00:00,8052.0
-2017-06-27 05:00:00,7931.0
-2017-06-27 06:00:00,8057.0
-2017-06-27 07:00:00,8444.0
-2017-06-27 08:00:00,9170.0
-2017-06-27 09:00:00,10089.0
-2017-06-27 10:00:00,10751.0
-2017-06-27 11:00:00,11184.0
-2017-06-27 12:00:00,11562.0
-2017-06-27 13:00:00,11801.0
-2017-06-27 14:00:00,11954.0
-2017-06-27 15:00:00,12212.0
-2017-06-27 16:00:00,12342.0
-2017-06-27 17:00:00,12451.0
-2017-06-27 18:00:00,12539.0
-2017-06-27 19:00:00,12498.0
-2017-06-27 20:00:00,12228.0
-2017-06-27 21:00:00,11875.0
-2017-06-27 22:00:00,11624.0
-2017-06-27 23:00:00,11449.0
-2017-06-28 00:00:00,10677.0
-2017-06-26 01:00:00,8682.0
-2017-06-26 02:00:00,8241.0
-2017-06-26 03:00:00,7946.0
-2017-06-26 04:00:00,7739.0
-2017-06-26 05:00:00,7699.0
-2017-06-26 06:00:00,7921.0
-2017-06-26 07:00:00,8322.0
-2017-06-26 08:00:00,9137.0
-2017-06-26 09:00:00,10080.0
-2017-06-26 10:00:00,10694.0
-2017-06-26 11:00:00,11101.0
-2017-06-26 12:00:00,11424.0
-2017-06-26 13:00:00,11614.0
-2017-06-26 14:00:00,11717.0
-2017-06-26 15:00:00,11833.0
-2017-06-26 16:00:00,11842.0
-2017-06-26 17:00:00,11800.0
-2017-06-26 18:00:00,11711.0
-2017-06-26 19:00:00,11471.0
-2017-06-26 20:00:00,11024.0
-2017-06-26 21:00:00,10749.0
-2017-06-26 22:00:00,10712.0
-2017-06-26 23:00:00,10613.0
-2017-06-27 00:00:00,9909.0
-2017-06-25 01:00:00,9036.0
-2017-06-25 02:00:00,8532.0
-2017-06-25 03:00:00,8182.0
-2017-06-25 04:00:00,7899.0
-2017-06-25 05:00:00,7728.0
-2017-06-25 06:00:00,7626.0
-2017-06-25 07:00:00,7481.0
-2017-06-25 08:00:00,7605.0
-2017-06-25 09:00:00,7984.0
-2017-06-25 10:00:00,8494.0
-2017-06-25 11:00:00,8951.0
-2017-06-25 12:00:00,9305.0
-2017-06-25 13:00:00,9502.0
-2017-06-25 14:00:00,9576.0
-2017-06-25 15:00:00,9716.0
-2017-06-25 16:00:00,9758.0
-2017-06-25 17:00:00,9803.0
-2017-06-25 18:00:00,9903.0
-2017-06-25 19:00:00,9968.0
-2017-06-25 20:00:00,9834.0
-2017-06-25 21:00:00,9622.0
-2017-06-25 22:00:00,9639.0
-2017-06-25 23:00:00,9712.0
-2017-06-26 00:00:00,9272.0
-2017-06-24 01:00:00,10871.0
-2017-06-24 02:00:00,10049.0
-2017-06-24 03:00:00,9462.0
-2017-06-24 04:00:00,9092.0
-2017-06-24 05:00:00,8782.0
-2017-06-24 06:00:00,8727.0
-2017-06-24 07:00:00,8670.0
-2017-06-24 08:00:00,9065.0
-2017-06-24 09:00:00,9697.0
-2017-06-24 10:00:00,10357.0
-2017-06-24 11:00:00,10971.0
-2017-06-24 12:00:00,11333.0
-2017-06-24 13:00:00,11461.0
-2017-06-24 14:00:00,11462.0
-2017-06-24 15:00:00,11409.0
-2017-06-24 16:00:00,11344.0
-2017-06-24 17:00:00,11370.0
-2017-06-24 18:00:00,11378.0
-2017-06-24 19:00:00,11242.0
-2017-06-24 20:00:00,10964.0
-2017-06-24 21:00:00,10479.0
-2017-06-24 22:00:00,10254.0
-2017-06-24 23:00:00,10118.0
-2017-06-25 00:00:00,9612.0
-2017-06-23 01:00:00,13586.0
-2017-06-23 02:00:00,12627.0
-2017-06-23 03:00:00,11966.0
-2017-06-23 04:00:00,11525.0
-2017-06-23 05:00:00,11315.0
-2017-06-23 06:00:00,11343.0
-2017-06-23 07:00:00,11475.0
-2017-06-23 08:00:00,11899.0
-2017-06-23 09:00:00,12470.0
-2017-06-23 10:00:00,12905.0
-2017-06-23 11:00:00,13236.0
-2017-06-23 12:00:00,13820.0
-2017-06-23 13:00:00,14243.0
-2017-06-23 14:00:00,14670.0
-2017-06-23 15:00:00,15045.0
-2017-06-23 16:00:00,15277.0
-2017-06-23 17:00:00,15507.0
-2017-06-23 18:00:00,15623.0
-2017-06-23 19:00:00,15313.0
-2017-06-23 20:00:00,14622.0
-2017-06-23 21:00:00,13880.0
-2017-06-23 22:00:00,13228.0
-2017-06-23 23:00:00,12819.0
-2017-06-24 00:00:00,11911.0
-2017-06-22 01:00:00,11059.0
-2017-06-22 02:00:00,10365.0
-2017-06-22 03:00:00,9893.0
-2017-06-22 04:00:00,9662.0
-2017-06-22 05:00:00,9748.0
-2017-06-22 06:00:00,10077.0
-2017-06-22 07:00:00,10695.0
-2017-06-22 08:00:00,11711.0
-2017-06-22 09:00:00,12721.0
-2017-06-22 10:00:00,13676.0
-2017-06-22 11:00:00,14766.0
-2017-06-22 12:00:00,15791.0
-2017-06-22 13:00:00,16620.0
-2017-06-22 14:00:00,17047.0
-2017-06-22 15:00:00,17249.0
-2017-06-22 16:00:00,17891.0
-2017-06-22 17:00:00,18189.0
-2017-06-22 18:00:00,18002.0
-2017-06-22 19:00:00,17805.0
-2017-06-22 20:00:00,17469.0
-2017-06-22 21:00:00,16894.0
-2017-06-22 22:00:00,16490.0
-2017-06-22 23:00:00,16008.0
-2017-06-23 00:00:00,14844.0
-2017-06-21 01:00:00,9798.0
-2017-06-21 02:00:00,9188.0
-2017-06-21 03:00:00,8776.0
-2017-06-21 04:00:00,8524.0
-2017-06-21 05:00:00,8419.0
-2017-06-21 06:00:00,8583.0
-2017-06-21 07:00:00,8917.0
-2017-06-21 08:00:00,9851.0
-2017-06-21 09:00:00,10822.0
-2017-06-21 10:00:00,11554.0
-2017-06-21 11:00:00,12049.0
-2017-06-21 12:00:00,12470.0
-2017-06-21 13:00:00,12819.0
-2017-06-21 14:00:00,13126.0
-2017-06-21 15:00:00,13550.0
-2017-06-21 16:00:00,13884.0
-2017-06-21 17:00:00,13775.0
-2017-06-21 18:00:00,13706.0
-2017-06-21 19:00:00,13625.0
-2017-06-21 20:00:00,13276.0
-2017-06-21 21:00:00,13005.0
-2017-06-21 22:00:00,12938.0
-2017-06-21 23:00:00,12768.0
-2017-06-22 00:00:00,11953.0
-2017-06-20 01:00:00,9942.0
-2017-06-20 02:00:00,9331.0
-2017-06-20 03:00:00,8912.0
-2017-06-20 04:00:00,8675.0
-2017-06-20 05:00:00,8557.0
-2017-06-20 06:00:00,8661.0
-2017-06-20 07:00:00,9043.0
-2017-06-20 08:00:00,9997.0
-2017-06-20 09:00:00,10953.0
-2017-06-20 10:00:00,11708.0
-2017-06-20 11:00:00,12283.0
-2017-06-20 12:00:00,12777.0
-2017-06-20 13:00:00,13173.0
-2017-06-20 14:00:00,13350.0
-2017-06-20 15:00:00,13432.0
-2017-06-20 16:00:00,13364.0
-2017-06-20 17:00:00,12939.0
-2017-06-20 18:00:00,12458.0
-2017-06-20 19:00:00,12258.0
-2017-06-20 20:00:00,12072.0
-2017-06-20 21:00:00,11773.0
-2017-06-20 22:00:00,11583.0
-2017-06-20 23:00:00,11436.0
-2017-06-21 00:00:00,10669.0
-2017-06-19 01:00:00,10495.0
-2017-06-19 02:00:00,9817.0
-2017-06-19 03:00:00,9355.0
-2017-06-19 04:00:00,9089.0
-2017-06-19 05:00:00,8922.0
-2017-06-19 06:00:00,9107.0
-2017-06-19 07:00:00,9480.0
-2017-06-19 08:00:00,10452.0
-2017-06-19 09:00:00,11399.0
-2017-06-19 10:00:00,12065.0
-2017-06-19 11:00:00,12789.0
-2017-06-19 12:00:00,13390.0
-2017-06-19 13:00:00,13722.0
-2017-06-19 14:00:00,14046.0
-2017-06-19 15:00:00,14313.0
-2017-06-19 16:00:00,14265.0
-2017-06-19 17:00:00,13844.0
-2017-06-19 18:00:00,13315.0
-2017-06-19 19:00:00,12921.0
-2017-06-19 20:00:00,12442.0
-2017-06-19 21:00:00,12059.0
-2017-06-19 22:00:00,11870.0
-2017-06-19 23:00:00,11668.0
-2017-06-20 00:00:00,10853.0
-2017-06-18 01:00:00,11910.0
-2017-06-18 02:00:00,11101.0
-2017-06-18 03:00:00,10557.0
-2017-06-18 04:00:00,10151.0
-2017-06-18 05:00:00,9959.0
-2017-06-18 06:00:00,9808.0
-2017-06-18 07:00:00,9705.0
-2017-06-18 08:00:00,9701.0
-2017-06-18 09:00:00,10189.0
-2017-06-18 10:00:00,11027.0
-2017-06-18 11:00:00,11706.0
-2017-06-18 12:00:00,12251.0
-2017-06-18 13:00:00,12488.0
-2017-06-18 14:00:00,12598.0
-2017-06-18 15:00:00,12687.0
-2017-06-18 16:00:00,12738.0
-2017-06-18 17:00:00,12765.0
-2017-06-18 18:00:00,12838.0
-2017-06-18 19:00:00,12731.0
-2017-06-18 20:00:00,12344.0
-2017-06-18 21:00:00,11906.0
-2017-06-18 22:00:00,11840.0
-2017-06-18 23:00:00,11856.0
-2017-06-19 00:00:00,11293.0
-2017-06-17 01:00:00,13116.0
-2017-06-17 02:00:00,12217.0
-2017-06-17 03:00:00,11550.0
-2017-06-17 04:00:00,11103.0
-2017-06-17 05:00:00,10771.0
-2017-06-17 06:00:00,10603.0
-2017-06-17 07:00:00,10529.0
-2017-06-17 08:00:00,10570.0
-2017-06-17 09:00:00,11119.0
-2017-06-17 10:00:00,12010.0
-2017-06-17 11:00:00,13197.0
-2017-06-17 12:00:00,13923.0
-2017-06-17 13:00:00,14534.0
-2017-06-17 14:00:00,15078.0
-2017-06-17 15:00:00,15504.0
-2017-06-17 16:00:00,15967.0
-2017-06-17 17:00:00,16061.0
-2017-06-17 18:00:00,15758.0
-2017-06-17 19:00:00,15059.0
-2017-06-17 20:00:00,14529.0
-2017-06-17 21:00:00,14101.0
-2017-06-17 22:00:00,14063.0
-2017-06-17 23:00:00,13592.0
-2017-06-18 00:00:00,12796.0
-2017-06-16 01:00:00,13283.0
-2017-06-16 02:00:00,12288.0
-2017-06-16 03:00:00,11413.0
-2017-06-16 04:00:00,10694.0
-2017-06-16 05:00:00,10379.0
-2017-06-16 06:00:00,10367.0
-2017-06-16 07:00:00,10788.0
-2017-06-16 08:00:00,11404.0
-2017-06-16 09:00:00,11984.0
-2017-06-16 10:00:00,12602.0
-2017-06-16 11:00:00,13105.0
-2017-06-16 12:00:00,13497.0
-2017-06-16 13:00:00,13918.0
-2017-06-16 14:00:00,14680.0
-2017-06-16 15:00:00,15609.0
-2017-06-16 16:00:00,16301.0
-2017-06-16 17:00:00,16907.0
-2017-06-16 18:00:00,17309.0
-2017-06-16 19:00:00,17398.0
-2017-06-16 20:00:00,17083.0
-2017-06-16 21:00:00,16339.0
-2017-06-16 22:00:00,15726.0
-2017-06-16 23:00:00,15213.0
-2017-06-17 00:00:00,14226.0
-2017-06-15 01:00:00,11655.0
-2017-06-15 02:00:00,10965.0
-2017-06-15 03:00:00,10447.0
-2017-06-15 04:00:00,10094.0
-2017-06-15 05:00:00,9960.0
-2017-06-15 06:00:00,10118.0
-2017-06-15 07:00:00,10519.0
-2017-06-15 08:00:00,11489.0
-2017-06-15 09:00:00,12454.0
-2017-06-15 10:00:00,13345.0
-2017-06-15 11:00:00,14253.0
-2017-06-15 12:00:00,14989.0
-2017-06-15 13:00:00,15729.0
-2017-06-15 14:00:00,16568.0
-2017-06-15 15:00:00,17354.0
-2017-06-15 16:00:00,17845.0
-2017-06-15 17:00:00,18254.0
-2017-06-15 18:00:00,18466.0
-2017-06-15 19:00:00,18413.0
-2017-06-15 20:00:00,18121.0
-2017-06-15 21:00:00,17408.0
-2017-06-15 22:00:00,16571.0
-2017-06-15 23:00:00,15831.0
-2017-06-16 00:00:00,14607.0
-2017-06-14 01:00:00,12354.0
-2017-06-14 02:00:00,11488.0
-2017-06-14 03:00:00,10902.0
-2017-06-14 04:00:00,10483.0
-2017-06-14 05:00:00,10283.0
-2017-06-14 06:00:00,10390.0
-2017-06-14 07:00:00,10742.0
-2017-06-14 08:00:00,11867.0
-2017-06-14 09:00:00,13254.0
-2017-06-14 10:00:00,14622.0
-2017-06-14 11:00:00,15904.0
-2017-06-14 12:00:00,17137.0
-2017-06-14 13:00:00,18067.0
-2017-06-14 14:00:00,18627.0
-2017-06-14 15:00:00,18973.0
-2017-06-14 16:00:00,18349.0
-2017-06-14 17:00:00,17435.0
-2017-06-14 18:00:00,16789.0
-2017-06-14 19:00:00,15715.0
-2017-06-14 20:00:00,14811.0
-2017-06-14 21:00:00,14316.0
-2017-06-14 22:00:00,14019.0
-2017-06-14 23:00:00,13566.0
-2017-06-15 00:00:00,12682.0
-2017-06-13 01:00:00,14384.0
-2017-06-13 02:00:00,13160.0
-2017-06-13 03:00:00,12262.0
-2017-06-13 04:00:00,11657.0
-2017-06-13 05:00:00,11256.0
-2017-06-13 06:00:00,11256.0
-2017-06-13 07:00:00,11561.0
-2017-06-13 08:00:00,12555.0
-2017-06-13 09:00:00,13821.0
-2017-06-13 10:00:00,15159.0
-2017-06-13 11:00:00,15972.0
-2017-06-13 12:00:00,16840.0
-2017-06-13 13:00:00,17616.0
-2017-06-13 14:00:00,18180.0
-2017-06-13 15:00:00,18577.0
-2017-06-13 16:00:00,18784.0
-2017-06-13 17:00:00,18502.0
-2017-06-13 18:00:00,17600.0
-2017-06-13 19:00:00,16740.0
-2017-06-13 20:00:00,15984.0
-2017-06-13 21:00:00,15231.0
-2017-06-13 22:00:00,14792.0
-2017-06-13 23:00:00,14478.0
-2017-06-14 00:00:00,13510.0
-2017-06-12 01:00:00,13461.0
-2017-06-12 02:00:00,12469.0
-2017-06-12 03:00:00,11712.0
-2017-06-12 04:00:00,11244.0
-2017-06-12 05:00:00,10944.0
-2017-06-12 06:00:00,10982.0
-2017-06-12 07:00:00,11352.0
-2017-06-12 08:00:00,12498.0
-2017-06-12 09:00:00,14046.0
-2017-06-12 10:00:00,15274.0
-2017-06-12 11:00:00,16387.0
-2017-06-12 12:00:00,17435.0
-2017-06-12 13:00:00,18267.0
-2017-06-12 14:00:00,18944.0
-2017-06-12 15:00:00,19527.0
-2017-06-12 16:00:00,19864.0
-2017-06-12 17:00:00,20166.0
-2017-06-12 18:00:00,20351.0
-2017-06-12 19:00:00,20266.0
-2017-06-12 20:00:00,19851.0
-2017-06-12 21:00:00,19063.0
-2017-06-12 22:00:00,18628.0
-2017-06-12 23:00:00,17764.0
-2017-06-13 00:00:00,15996.0
-2017-06-11 01:00:00,11907.0
-2017-06-11 02:00:00,11087.0
-2017-06-11 03:00:00,10457.0
-2017-06-11 04:00:00,10008.0
-2017-06-11 05:00:00,9627.0
-2017-06-11 06:00:00,9418.0
-2017-06-11 07:00:00,9199.0
-2017-06-11 08:00:00,9421.0
-2017-06-11 09:00:00,10311.0
-2017-06-11 10:00:00,11331.0
-2017-06-11 11:00:00,12381.0
-2017-06-11 12:00:00,13330.0
-2017-06-11 13:00:00,14291.0
-2017-06-11 14:00:00,15119.0
-2017-06-11 15:00:00,15801.0
-2017-06-11 16:00:00,16402.0
-2017-06-11 17:00:00,16828.0
-2017-06-11 18:00:00,17098.0
-2017-06-11 19:00:00,17124.0
-2017-06-11 20:00:00,16865.0
-2017-06-11 21:00:00,16390.0
-2017-06-11 22:00:00,15894.0
-2017-06-11 23:00:00,15614.0
-2017-06-12 00:00:00,14625.0
-2017-06-10 01:00:00,10968.0
-2017-06-10 02:00:00,10227.0
-2017-06-10 03:00:00,9635.0
-2017-06-10 04:00:00,9273.0
-2017-06-10 05:00:00,9044.0
-2017-06-10 06:00:00,9014.0
-2017-06-10 07:00:00,8996.0
-2017-06-10 08:00:00,9303.0
-2017-06-10 09:00:00,10056.0
-2017-06-10 10:00:00,10958.0
-2017-06-10 11:00:00,11879.0
-2017-06-10 12:00:00,12750.0
-2017-06-10 13:00:00,13466.0
-2017-06-10 14:00:00,13922.0
-2017-06-10 15:00:00,14382.0
-2017-06-10 16:00:00,14841.0
-2017-06-10 17:00:00,15245.0
-2017-06-10 18:00:00,15499.0
-2017-06-10 19:00:00,15466.0
-2017-06-10 20:00:00,15156.0
-2017-06-10 21:00:00,14510.0
-2017-06-10 22:00:00,13959.0
-2017-06-10 23:00:00,13620.0
-2017-06-11 00:00:00,12832.0
-2017-06-09 01:00:00,10543.0
-2017-06-09 02:00:00,9810.0
-2017-06-09 03:00:00,9262.0
-2017-06-09 04:00:00,8931.0
-2017-06-09 05:00:00,8799.0
-2017-06-09 06:00:00,8894.0
-2017-06-09 07:00:00,9195.0
-2017-06-09 08:00:00,10083.0
-2017-06-09 09:00:00,11127.0
-2017-06-09 10:00:00,12110.0
-2017-06-09 11:00:00,12912.0
-2017-06-09 12:00:00,13740.0
-2017-06-09 13:00:00,14382.0
-2017-06-09 14:00:00,14903.0
-2017-06-09 15:00:00,15441.0
-2017-06-09 16:00:00,15701.0
-2017-06-09 17:00:00,15805.0
-2017-06-09 18:00:00,15746.0
-2017-06-09 19:00:00,15289.0
-2017-06-09 20:00:00,14496.0
-2017-06-09 21:00:00,13572.0
-2017-06-09 22:00:00,13251.0
-2017-06-09 23:00:00,12850.0
-2017-06-10 00:00:00,12002.0
-2017-06-08 01:00:00,9682.0
-2017-06-08 02:00:00,9017.0
-2017-06-08 03:00:00,8569.0
-2017-06-08 04:00:00,8332.0
-2017-06-08 05:00:00,8181.0
-2017-06-08 06:00:00,8284.0
-2017-06-08 07:00:00,8634.0
-2017-06-08 08:00:00,9545.0
-2017-06-08 09:00:00,10551.0
-2017-06-08 10:00:00,11245.0
-2017-06-08 11:00:00,11759.0
-2017-06-08 12:00:00,12243.0
-2017-06-08 13:00:00,12613.0
-2017-06-08 14:00:00,12928.0
-2017-06-08 15:00:00,13294.0
-2017-06-08 16:00:00,13586.0
-2017-06-08 17:00:00,13794.0
-2017-06-08 18:00:00,13810.0
-2017-06-08 19:00:00,13506.0
-2017-06-08 20:00:00,13066.0
-2017-06-08 21:00:00,12738.0
-2017-06-08 22:00:00,12598.0
-2017-06-08 23:00:00,12351.0
-2017-06-09 00:00:00,11483.0
-2017-06-07 01:00:00,9416.0
-2017-06-07 02:00:00,8863.0
-2017-06-07 03:00:00,8484.0
-2017-06-07 04:00:00,8211.0
-2017-06-07 05:00:00,8097.0
-2017-06-07 06:00:00,8250.0
-2017-06-07 07:00:00,8548.0
-2017-06-07 08:00:00,9471.0
-2017-06-07 09:00:00,10435.0
-2017-06-07 10:00:00,11036.0
-2017-06-07 11:00:00,11462.0
-2017-06-07 12:00:00,11807.0
-2017-06-07 13:00:00,12025.0
-2017-06-07 14:00:00,12172.0
-2017-06-07 15:00:00,12363.0
-2017-06-07 16:00:00,12465.0
-2017-06-07 17:00:00,12523.0
-2017-06-07 18:00:00,12578.0
-2017-06-07 19:00:00,12511.0
-2017-06-07 20:00:00,12190.0
-2017-06-07 21:00:00,11810.0
-2017-06-07 22:00:00,11623.0
-2017-06-07 23:00:00,11374.0
-2017-06-08 00:00:00,10559.0
-2017-06-06 01:00:00,9510.0
-2017-06-06 02:00:00,8917.0
-2017-06-06 03:00:00,8495.0
-2017-06-06 04:00:00,8258.0
-2017-06-06 05:00:00,8139.0
-2017-06-06 06:00:00,8254.0
-2017-06-06 07:00:00,8582.0
-2017-06-06 08:00:00,9463.0
-2017-06-06 09:00:00,10371.0
-2017-06-06 10:00:00,10956.0
-2017-06-06 11:00:00,11327.0
-2017-06-06 12:00:00,11659.0
-2017-06-06 13:00:00,11868.0
-2017-06-06 14:00:00,12023.0
-2017-06-06 15:00:00,12214.0
-2017-06-06 16:00:00,12321.0
-2017-06-06 17:00:00,12330.0
-2017-06-06 18:00:00,12354.0
-2017-06-06 19:00:00,12181.0
-2017-06-06 20:00:00,11796.0
-2017-06-06 21:00:00,11413.0
-2017-06-06 22:00:00,11266.0
-2017-06-06 23:00:00,11028.0
-2017-06-07 00:00:00,10270.0
-2017-06-05 01:00:00,11140.0
-2017-06-05 02:00:00,10283.0
-2017-06-05 03:00:00,9698.0
-2017-06-05 04:00:00,9253.0
-2017-06-05 05:00:00,9036.0
-2017-06-05 06:00:00,9139.0
-2017-06-05 07:00:00,9534.0
-2017-06-05 08:00:00,10545.0
-2017-06-05 09:00:00,11695.0
-2017-06-05 10:00:00,12516.0
-2017-06-05 11:00:00,12989.0
-2017-06-05 12:00:00,13257.0
-2017-06-05 13:00:00,13275.0
-2017-06-05 14:00:00,13293.0
-2017-06-05 15:00:00,13302.0
-2017-06-05 16:00:00,13263.0
-2017-06-05 17:00:00,13170.0
-2017-06-05 18:00:00,13060.0
-2017-06-05 19:00:00,12776.0
-2017-06-05 20:00:00,12292.0
-2017-06-05 21:00:00,11748.0
-2017-06-05 22:00:00,11465.0
-2017-06-05 23:00:00,11186.0
-2017-06-06 00:00:00,10353.0
-2017-06-04 01:00:00,11081.0
-2017-06-04 02:00:00,10467.0
-2017-06-04 03:00:00,9889.0
-2017-06-04 04:00:00,9497.0
-2017-06-04 05:00:00,9177.0
-2017-06-04 06:00:00,9027.0
-2017-06-04 07:00:00,8867.0
-2017-06-04 08:00:00,8959.0
-2017-06-04 09:00:00,9404.0
-2017-06-04 10:00:00,10077.0
-2017-06-04 11:00:00,10996.0
-2017-06-04 12:00:00,12058.0
-2017-06-04 13:00:00,13073.0
-2017-06-04 14:00:00,13759.0
-2017-06-04 15:00:00,14301.0
-2017-06-04 16:00:00,14651.0
-2017-06-04 17:00:00,15002.0
-2017-06-04 18:00:00,15110.0
-2017-06-04 19:00:00,15126.0
-2017-06-04 20:00:00,14848.0
-2017-06-04 21:00:00,14396.0
-2017-06-04 22:00:00,13799.0
-2017-06-04 23:00:00,13379.0
-2017-06-05 00:00:00,12284.0
-2017-06-03 01:00:00,10333.0
-2017-06-03 02:00:00,9566.0
-2017-06-03 03:00:00,9018.0
-2017-06-03 04:00:00,8610.0
-2017-06-03 05:00:00,8382.0
-2017-06-03 06:00:00,8321.0
-2017-06-03 07:00:00,8238.0
-2017-06-03 08:00:00,8574.0
-2017-06-03 09:00:00,9323.0
-2017-06-03 10:00:00,10158.0
-2017-06-03 11:00:00,10867.0
-2017-06-03 12:00:00,11442.0
-2017-06-03 13:00:00,12021.0
-2017-06-03 14:00:00,12358.0
-2017-06-03 15:00:00,12671.0
-2017-06-03 16:00:00,12975.0
-2017-06-03 17:00:00,13300.0
-2017-06-03 18:00:00,13396.0
-2017-06-03 19:00:00,13401.0
-2017-06-03 20:00:00,13080.0
-2017-06-03 21:00:00,12756.0
-2017-06-03 22:00:00,12661.0
-2017-06-03 23:00:00,12512.0
-2017-06-04 00:00:00,11853.0
-2017-06-02 01:00:00,9505.0
-2017-06-02 02:00:00,8898.0
-2017-06-02 03:00:00,8479.0
-2017-06-02 04:00:00,8221.0
-2017-06-02 05:00:00,8103.0
-2017-06-02 06:00:00,8204.0
-2017-06-02 07:00:00,8570.0
-2017-06-02 08:00:00,9452.0
-2017-06-02 09:00:00,10422.0
-2017-06-02 10:00:00,11132.0
-2017-06-02 11:00:00,11726.0
-2017-06-02 12:00:00,12219.0
-2017-06-02 13:00:00,12626.0
-2017-06-02 14:00:00,12898.0
-2017-06-02 15:00:00,13227.0
-2017-06-02 16:00:00,13490.0
-2017-06-02 17:00:00,13690.0
-2017-06-02 18:00:00,13843.0
-2017-06-02 19:00:00,13784.0
-2017-06-02 20:00:00,13433.0
-2017-06-02 21:00:00,12911.0
-2017-06-02 22:00:00,12486.0
-2017-06-02 23:00:00,12177.0
-2017-06-03 00:00:00,11316.0
-2017-06-01 01:00:00,9307.0
-2017-06-01 02:00:00,8736.0
-2017-06-01 03:00:00,8374.0
-2017-06-01 04:00:00,8104.0
-2017-06-01 05:00:00,8013.0
-2017-06-01 06:00:00,8139.0
-2017-06-01 07:00:00,8487.0
-2017-06-01 08:00:00,9369.0
-2017-06-01 09:00:00,10237.0
-2017-06-01 10:00:00,10847.0
-2017-06-01 11:00:00,11269.0
-2017-06-01 12:00:00,11682.0
-2017-06-01 13:00:00,11904.0
-2017-06-01 14:00:00,12033.0
-2017-06-01 15:00:00,12260.0
-2017-06-01 16:00:00,12385.0
-2017-06-01 17:00:00,12474.0
-2017-06-01 18:00:00,12555.0
-2017-06-01 19:00:00,12447.0
-2017-06-01 20:00:00,12076.0
-2017-06-01 21:00:00,11658.0
-2017-06-01 22:00:00,11537.0
-2017-06-01 23:00:00,11247.0
-2017-06-02 00:00:00,10404.0
-2017-05-31 01:00:00,9224.0
-2017-05-31 02:00:00,8676.0
-2017-05-31 03:00:00,8315.0
-2017-05-31 04:00:00,8068.0
-2017-05-31 05:00:00,7979.0
-2017-05-31 06:00:00,8117.0
-2017-05-31 07:00:00,8500.0
-2017-05-31 08:00:00,9342.0
-2017-05-31 09:00:00,10172.0
-2017-05-31 10:00:00,10728.0
-2017-05-31 11:00:00,11065.0
-2017-05-31 12:00:00,11344.0
-2017-05-31 13:00:00,11485.0
-2017-05-31 14:00:00,11587.0
-2017-05-31 15:00:00,11726.0
-2017-05-31 16:00:00,11758.0
-2017-05-31 17:00:00,11790.0
-2017-05-31 18:00:00,11792.0
-2017-05-31 19:00:00,11674.0
-2017-05-31 20:00:00,11396.0
-2017-05-31 21:00:00,11141.0
-2017-05-31 22:00:00,11129.0
-2017-05-31 23:00:00,10916.0
-2017-06-01 00:00:00,10125.0
-2017-05-30 01:00:00,8417.0
-2017-05-30 02:00:00,7973.0
-2017-05-30 03:00:00,7679.0
-2017-05-30 04:00:00,7513.0
-2017-05-30 05:00:00,7469.0
-2017-05-30 06:00:00,7646.0
-2017-05-30 07:00:00,8141.0
-2017-05-30 08:00:00,9095.0
-2017-05-30 09:00:00,10050.0
-2017-05-30 10:00:00,10691.0
-2017-05-30 11:00:00,11116.0
-2017-05-30 12:00:00,11450.0
-2017-05-30 13:00:00,11642.0
-2017-05-30 14:00:00,11718.0
-2017-05-30 15:00:00,11678.0
-2017-05-30 16:00:00,11642.0
-2017-05-30 17:00:00,11630.0
-2017-05-30 18:00:00,11541.0
-2017-05-30 19:00:00,11389.0
-2017-05-30 20:00:00,11038.0
-2017-05-30 21:00:00,10826.0
-2017-05-30 22:00:00,10932.0
-2017-05-30 23:00:00,10718.0
-2017-05-31 00:00:00,9991.0
-2017-05-29 01:00:00,8575.0
-2017-05-29 02:00:00,8094.0
-2017-05-29 03:00:00,7776.0
-2017-05-29 04:00:00,7587.0
-2017-05-29 05:00:00,7480.0
-2017-05-29 06:00:00,7463.0
-2017-05-29 07:00:00,7442.0
-2017-05-29 08:00:00,7543.0
-2017-05-29 09:00:00,7950.0
-2017-05-29 10:00:00,8448.0
-2017-05-29 11:00:00,8954.0
-2017-05-29 12:00:00,9319.0
-2017-05-29 13:00:00,9593.0
-2017-05-29 14:00:00,9732.0
-2017-05-29 15:00:00,9804.0
-2017-05-29 16:00:00,9793.0
-2017-05-29 17:00:00,9856.0
-2017-05-29 18:00:00,9913.0
-2017-05-29 19:00:00,9905.0
-2017-05-29 20:00:00,9761.0
-2017-05-29 21:00:00,9571.0
-2017-05-29 22:00:00,9711.0
-2017-05-29 23:00:00,9657.0
-2017-05-30 00:00:00,9026.0
-2017-05-28 01:00:00,8696.0
-2017-05-28 02:00:00,8220.0
-2017-05-28 03:00:00,7886.0
-2017-05-28 04:00:00,7650.0
-2017-05-28 05:00:00,7515.0
-2017-05-28 06:00:00,7425.0
-2017-05-28 07:00:00,7318.0
-2017-05-28 08:00:00,7331.0
-2017-05-28 09:00:00,7714.0
-2017-05-28 10:00:00,8243.0
-2017-05-28 11:00:00,8697.0
-2017-05-28 12:00:00,9081.0
-2017-05-28 13:00:00,9320.0
-2017-05-28 14:00:00,9474.0
-2017-05-28 15:00:00,9540.0
-2017-05-28 16:00:00,9644.0
-2017-05-28 17:00:00,9719.0
-2017-05-28 18:00:00,9886.0
-2017-05-28 19:00:00,9937.0
-2017-05-28 20:00:00,9748.0
-2017-05-28 21:00:00,9601.0
-2017-05-28 22:00:00,9663.0
-2017-05-28 23:00:00,9632.0
-2017-05-29 00:00:00,9127.0
-2017-05-27 01:00:00,8789.0
-2017-05-27 02:00:00,8289.0
-2017-05-27 03:00:00,7986.0
-2017-05-27 04:00:00,7730.0
-2017-05-27 05:00:00,7637.0
-2017-05-27 06:00:00,7653.0
-2017-05-27 07:00:00,7669.0
-2017-05-27 08:00:00,7789.0
-2017-05-27 09:00:00,8208.0
-2017-05-27 10:00:00,8740.0
-2017-05-27 11:00:00,9156.0
-2017-05-27 12:00:00,9466.0
-2017-05-27 13:00:00,9611.0
-2017-05-27 14:00:00,9726.0
-2017-05-27 15:00:00,9825.0
-2017-05-27 16:00:00,9907.0
-2017-05-27 17:00:00,10024.0
-2017-05-27 18:00:00,10124.0
-2017-05-27 19:00:00,10153.0
-2017-05-27 20:00:00,10025.0
-2017-05-27 21:00:00,9786.0
-2017-05-27 22:00:00,9905.0
-2017-05-27 23:00:00,9692.0
-2017-05-28 00:00:00,9161.0
-2017-05-26 01:00:00,9012.0
-2017-05-26 02:00:00,8533.0
-2017-05-26 03:00:00,8192.0
-2017-05-26 04:00:00,7987.0
-2017-05-26 05:00:00,7888.0
-2017-05-26 06:00:00,8048.0
-2017-05-26 07:00:00,8462.0
-2017-05-26 08:00:00,9247.0
-2017-05-26 09:00:00,10071.0
-2017-05-26 10:00:00,10589.0
-2017-05-26 11:00:00,10904.0
-2017-05-26 12:00:00,11107.0
-2017-05-26 13:00:00,11151.0
-2017-05-26 14:00:00,11125.0
-2017-05-26 15:00:00,11118.0
-2017-05-26 16:00:00,11089.0
-2017-05-26 17:00:00,10912.0
-2017-05-26 18:00:00,10762.0
-2017-05-26 19:00:00,10542.0
-2017-05-26 20:00:00,10354.0
-2017-05-26 21:00:00,10257.0
-2017-05-26 22:00:00,10259.0
-2017-05-26 23:00:00,10026.0
-2017-05-27 00:00:00,9362.0
-2017-05-25 01:00:00,8998.0
-2017-05-25 02:00:00,8553.0
-2017-05-25 03:00:00,8243.0
-2017-05-25 04:00:00,8062.0
-2017-05-25 05:00:00,7984.0
-2017-05-25 06:00:00,8188.0
-2017-05-25 07:00:00,8695.0
-2017-05-25 08:00:00,9535.0
-2017-05-25 09:00:00,10317.0
-2017-05-25 10:00:00,10744.0
-2017-05-25 11:00:00,10909.0
-2017-05-25 12:00:00,11014.0
-2017-05-25 13:00:00,11096.0
-2017-05-25 14:00:00,11139.0
-2017-05-25 15:00:00,11189.0
-2017-05-25 16:00:00,11143.0
-2017-05-25 17:00:00,11061.0
-2017-05-25 18:00:00,10916.0
-2017-05-25 19:00:00,10745.0
-2017-05-25 20:00:00,10461.0
-2017-05-25 21:00:00,10333.0
-2017-05-25 22:00:00,10583.0
-2017-05-25 23:00:00,10414.0
-2017-05-26 00:00:00,9751.0
-2017-05-24 01:00:00,9013.0
-2017-05-24 02:00:00,8583.0
-2017-05-24 03:00:00,8276.0
-2017-05-24 04:00:00,8109.0
-2017-05-24 05:00:00,8050.0
-2017-05-24 06:00:00,8244.0
-2017-05-24 07:00:00,8785.0
-2017-05-24 08:00:00,9608.0
-2017-05-24 09:00:00,10313.0
-2017-05-24 10:00:00,10675.0
-2017-05-24 11:00:00,10863.0
-2017-05-24 12:00:00,10987.0
-2017-05-24 13:00:00,10994.0
-2017-05-24 14:00:00,10952.0
-2017-05-24 15:00:00,11002.0
-2017-05-24 16:00:00,10874.0
-2017-05-24 17:00:00,10766.0
-2017-05-24 18:00:00,10667.0
-2017-05-24 19:00:00,10542.0
-2017-05-24 20:00:00,10389.0
-2017-05-24 21:00:00,10405.0
-2017-05-24 22:00:00,10632.0
-2017-05-24 23:00:00,10363.0
-2017-05-25 00:00:00,9660.0
-2017-05-23 01:00:00,8997.0
-2017-05-23 02:00:00,8517.0
-2017-05-23 03:00:00,8193.0
-2017-05-23 04:00:00,8020.0
-2017-05-23 05:00:00,7949.0
-2017-05-23 06:00:00,8149.0
-2017-05-23 07:00:00,8651.0
-2017-05-23 08:00:00,9526.0
-2017-05-23 09:00:00,10325.0
-2017-05-23 10:00:00,10775.0
-2017-05-23 11:00:00,10976.0
-2017-05-23 12:00:00,11126.0
-2017-05-23 13:00:00,11182.0
-2017-05-23 14:00:00,11157.0
-2017-05-23 15:00:00,11171.0
-2017-05-23 16:00:00,11095.0
-2017-05-23 17:00:00,10983.0
-2017-05-23 18:00:00,10943.0
-2017-05-23 19:00:00,10833.0
-2017-05-23 20:00:00,10690.0
-2017-05-23 21:00:00,10655.0
-2017-05-23 22:00:00,10730.0
-2017-05-23 23:00:00,10371.0
-2017-05-24 00:00:00,9712.0
-2017-05-22 01:00:00,8291.0
-2017-05-22 02:00:00,7924.0
-2017-05-22 03:00:00,7761.0
-2017-05-22 04:00:00,7680.0
-2017-05-22 05:00:00,7712.0
-2017-05-22 06:00:00,7947.0
-2017-05-22 07:00:00,8471.0
-2017-05-22 08:00:00,9377.0
-2017-05-22 09:00:00,10123.0
-2017-05-22 10:00:00,10443.0
-2017-05-22 11:00:00,10679.0
-2017-05-22 12:00:00,10882.0
-2017-05-22 13:00:00,11024.0
-2017-05-22 14:00:00,11099.0
-2017-05-22 15:00:00,11256.0
-2017-05-22 16:00:00,11244.0
-2017-05-22 17:00:00,11208.0
-2017-05-22 18:00:00,11090.0
-2017-05-22 19:00:00,10926.0
-2017-05-22 20:00:00,10670.0
-2017-05-22 21:00:00,10623.0
-2017-05-22 22:00:00,10820.0
-2017-05-22 23:00:00,10449.0
-2017-05-23 00:00:00,9707.0
-2017-05-21 01:00:00,8566.0
-2017-05-21 02:00:00,8180.0
-2017-05-21 03:00:00,7869.0
-2017-05-21 04:00:00,7736.0
-2017-05-21 05:00:00,7654.0
-2017-05-21 06:00:00,7641.0
-2017-05-21 07:00:00,7623.0
-2017-05-21 08:00:00,7548.0
-2017-05-21 09:00:00,7805.0
-2017-05-21 10:00:00,8214.0
-2017-05-21 11:00:00,8543.0
-2017-05-21 12:00:00,8748.0
-2017-05-21 13:00:00,8801.0
-2017-05-21 14:00:00,8890.0
-2017-05-21 15:00:00,8854.0
-2017-05-21 16:00:00,8808.0
-2017-05-21 17:00:00,8781.0
-2017-05-21 18:00:00,8830.0
-2017-05-21 19:00:00,8930.0
-2017-05-21 20:00:00,9006.0
-2017-05-21 21:00:00,9042.0
-2017-05-21 22:00:00,9346.0
-2017-05-21 23:00:00,9179.0
-2017-05-22 00:00:00,8754.0
-2017-05-20 01:00:00,9000.0
-2017-05-20 02:00:00,8505.0
-2017-05-20 03:00:00,8204.0
-2017-05-20 04:00:00,8010.0
-2017-05-20 05:00:00,7942.0
-2017-05-20 06:00:00,7970.0
-2017-05-20 07:00:00,8143.0
-2017-05-20 08:00:00,8331.0
-2017-05-20 09:00:00,8745.0
-2017-05-20 10:00:00,9254.0
-2017-05-20 11:00:00,9614.0
-2017-05-20 12:00:00,9993.0
-2017-05-20 13:00:00,9917.0
-2017-05-20 14:00:00,9765.0
-2017-05-20 15:00:00,9544.0
-2017-05-20 16:00:00,9434.0
-2017-05-20 17:00:00,9342.0
-2017-05-20 18:00:00,9284.0
-2017-05-20 19:00:00,9260.0
-2017-05-20 20:00:00,9203.0
-2017-05-20 21:00:00,9242.0
-2017-05-20 22:00:00,9565.0
-2017-05-20 23:00:00,9517.0
-2017-05-21 00:00:00,9092.0
-2017-05-19 01:00:00,9238.0
-2017-05-19 02:00:00,8659.0
-2017-05-19 03:00:00,8293.0
-2017-05-19 04:00:00,8048.0
-2017-05-19 05:00:00,7961.0
-2017-05-19 06:00:00,8133.0
-2017-05-19 07:00:00,8629.0
-2017-05-19 08:00:00,9433.0
-2017-05-19 09:00:00,10225.0
-2017-05-19 10:00:00,10646.0
-2017-05-19 11:00:00,10917.0
-2017-05-19 12:00:00,10963.0
-2017-05-19 13:00:00,10923.0
-2017-05-19 14:00:00,10869.0
-2017-05-19 15:00:00,10909.0
-2017-05-19 16:00:00,10807.0
-2017-05-19 17:00:00,10685.0
-2017-05-19 18:00:00,10536.0
-2017-05-19 19:00:00,10465.0
-2017-05-19 20:00:00,10284.0
-2017-05-19 21:00:00,10237.0
-2017-05-19 22:00:00,10482.0
-2017-05-19 23:00:00,10279.0
-2017-05-20 00:00:00,9642.0
-2017-05-18 01:00:00,11320.0
-2017-05-18 02:00:00,10274.0
-2017-05-18 03:00:00,9664.0
-2017-05-18 04:00:00,9347.0
-2017-05-18 05:00:00,9269.0
-2017-05-18 06:00:00,9432.0
-2017-05-18 07:00:00,9921.0
-2017-05-18 08:00:00,10968.0
-2017-05-18 09:00:00,12122.0
-2017-05-18 10:00:00,12718.0
-2017-05-18 11:00:00,13016.0
-2017-05-18 12:00:00,13311.0
-2017-05-18 13:00:00,13457.0
-2017-05-18 14:00:00,13608.0
-2017-05-18 15:00:00,13857.0
-2017-05-18 16:00:00,13993.0
-2017-05-18 17:00:00,14162.0
-2017-05-18 18:00:00,14260.0
-2017-05-18 19:00:00,14082.0
-2017-05-18 20:00:00,13423.0
-2017-05-18 21:00:00,12564.0
-2017-05-18 22:00:00,11963.0
-2017-05-18 23:00:00,11189.0
-2017-05-19 00:00:00,10157.0
-2017-05-17 01:00:00,11516.0
-2017-05-17 02:00:00,10721.0
-2017-05-17 03:00:00,10190.0
-2017-05-17 04:00:00,9781.0
-2017-05-17 05:00:00,9580.0
-2017-05-17 06:00:00,9646.0
-2017-05-17 07:00:00,10104.0
-2017-05-17 08:00:00,11056.0
-2017-05-17 09:00:00,12147.0
-2017-05-17 10:00:00,13045.0
-2017-05-17 11:00:00,13647.0
-2017-05-17 12:00:00,14193.0
-2017-05-17 13:00:00,14535.0
-2017-05-17 14:00:00,14623.0
-2017-05-17 15:00:00,14886.0
-2017-05-17 16:00:00,14981.0
-2017-05-17 17:00:00,14983.0
-2017-05-17 18:00:00,15057.0
-2017-05-17 19:00:00,14722.0
-2017-05-17 20:00:00,14196.0
-2017-05-17 21:00:00,13788.0
-2017-05-17 22:00:00,13812.0
-2017-05-17 23:00:00,13386.0
-2017-05-18 00:00:00,12381.0
-2017-05-16 01:00:00,9889.0
-2017-05-16 02:00:00,9308.0
-2017-05-16 03:00:00,8854.0
-2017-05-16 04:00:00,8624.0
-2017-05-16 05:00:00,8485.0
-2017-05-16 06:00:00,8663.0
-2017-05-16 07:00:00,9141.0
-2017-05-16 08:00:00,10104.0
-2017-05-16 09:00:00,11120.0
-2017-05-16 10:00:00,11827.0
-2017-05-16 11:00:00,12407.0
-2017-05-16 12:00:00,12997.0
-2017-05-16 13:00:00,13492.0
-2017-05-16 14:00:00,13984.0
-2017-05-16 15:00:00,14422.0
-2017-05-16 16:00:00,14650.0
-2017-05-16 17:00:00,14750.0
-2017-05-16 18:00:00,14862.0
-2017-05-16 19:00:00,14753.0
-2017-05-16 20:00:00,14332.0
-2017-05-16 21:00:00,13941.0
-2017-05-16 22:00:00,13970.0
-2017-05-16 23:00:00,13564.0
-2017-05-17 00:00:00,12568.0
-2017-05-15 01:00:00,8120.0
-2017-05-15 02:00:00,7760.0
-2017-05-15 03:00:00,7567.0
-2017-05-15 04:00:00,7468.0
-2017-05-15 05:00:00,7468.0
-2017-05-15 06:00:00,7712.0
-2017-05-15 07:00:00,8254.0
-2017-05-15 08:00:00,9074.0
-2017-05-15 09:00:00,9967.0
-2017-05-15 10:00:00,10441.0
-2017-05-15 11:00:00,10836.0
-2017-05-15 12:00:00,11201.0
-2017-05-15 13:00:00,11446.0
-2017-05-15 14:00:00,11684.0
-2017-05-15 15:00:00,11926.0
-2017-05-15 16:00:00,12059.0
-2017-05-15 17:00:00,12091.0
-2017-05-15 18:00:00,12089.0
-2017-05-15 19:00:00,12030.0
-2017-05-15 20:00:00,11801.0
-2017-05-15 21:00:00,11761.0
-2017-05-15 22:00:00,12054.0
-2017-05-15 23:00:00,11605.0
-2017-05-16 00:00:00,10726.0
-2017-05-14 01:00:00,8674.0
-2017-05-14 02:00:00,8135.0
-2017-05-14 03:00:00,7797.0
-2017-05-14 04:00:00,7509.0
-2017-05-14 05:00:00,7422.0
-2017-05-14 06:00:00,7313.0
-2017-05-14 07:00:00,7308.0
-2017-05-14 08:00:00,7289.0
-2017-05-14 09:00:00,7640.0
-2017-05-14 10:00:00,8129.0
-2017-05-14 11:00:00,8509.0
-2017-05-14 12:00:00,8829.0
-2017-05-14 13:00:00,9053.0
-2017-05-14 14:00:00,9173.0
-2017-05-14 15:00:00,9166.0
-2017-05-14 16:00:00,9137.0
-2017-05-14 17:00:00,9049.0
-2017-05-14 18:00:00,8983.0
-2017-05-14 19:00:00,8893.0
-2017-05-14 20:00:00,8827.0
-2017-05-14 21:00:00,8742.0
-2017-05-14 22:00:00,9179.0
-2017-05-14 23:00:00,9069.0
-2017-05-15 00:00:00,8614.0
-2017-05-13 01:00:00,8851.0
-2017-05-13 02:00:00,8303.0
-2017-05-13 03:00:00,8033.0
-2017-05-13 04:00:00,7802.0
-2017-05-13 05:00:00,7691.0
-2017-05-13 06:00:00,7719.0
-2017-05-13 07:00:00,7834.0
-2017-05-13 08:00:00,8018.0
-2017-05-13 09:00:00,8481.0
-2017-05-13 10:00:00,8941.0
-2017-05-13 11:00:00,9277.0
-2017-05-13 12:00:00,9511.0
-2017-05-13 13:00:00,9602.0
-2017-05-13 14:00:00,9613.0
-2017-05-13 15:00:00,9558.0
-2017-05-13 16:00:00,9580.0
-2017-05-13 17:00:00,9627.0
-2017-05-13 18:00:00,9764.0
-2017-05-13 19:00:00,9827.0
-2017-05-13 20:00:00,9795.0
-2017-05-13 21:00:00,9740.0
-2017-05-13 22:00:00,9963.0
-2017-05-13 23:00:00,9813.0
-2017-05-14 00:00:00,9265.0
-2017-05-12 01:00:00,8861.0
-2017-05-12 02:00:00,8399.0
-2017-05-12 03:00:00,8103.0
-2017-05-12 04:00:00,7945.0
-2017-05-12 05:00:00,7864.0
-2017-05-12 06:00:00,8092.0
-2017-05-12 07:00:00,8603.0
-2017-05-12 08:00:00,9379.0
-2017-05-12 09:00:00,10056.0
-2017-05-12 10:00:00,10425.0
-2017-05-12 11:00:00,10593.0
-2017-05-12 12:00:00,10801.0
-2017-05-12 13:00:00,10938.0
-2017-05-12 14:00:00,10967.0
-2017-05-12 15:00:00,11039.0
-2017-05-12 16:00:00,10889.0
-2017-05-12 17:00:00,10762.0
-2017-05-12 18:00:00,10560.0
-2017-05-12 19:00:00,10354.0
-2017-05-12 20:00:00,10108.0
-2017-05-12 21:00:00,9984.0
-2017-05-12 22:00:00,10243.0
-2017-05-12 23:00:00,10038.0
-2017-05-13 00:00:00,9459.0
-2017-05-11 01:00:00,8898.0
-2017-05-11 02:00:00,8501.0
-2017-05-11 03:00:00,8240.0
-2017-05-11 04:00:00,8086.0
-2017-05-11 05:00:00,8070.0
-2017-05-11 06:00:00,8273.0
-2017-05-11 07:00:00,8880.0
-2017-05-11 08:00:00,9670.0
-2017-05-11 09:00:00,10352.0
-2017-05-11 10:00:00,10630.0
-2017-05-11 11:00:00,10751.0
-2017-05-11 12:00:00,10848.0
-2017-05-11 13:00:00,10870.0
-2017-05-11 14:00:00,10854.0
-2017-05-11 15:00:00,10878.0
-2017-05-11 16:00:00,10797.0
-2017-05-11 17:00:00,10729.0
-2017-05-11 18:00:00,10679.0
-2017-05-11 19:00:00,10557.0
-2017-05-11 20:00:00,10304.0
-2017-05-11 21:00:00,10214.0
-2017-05-11 22:00:00,10562.0
-2017-05-11 23:00:00,10280.0
-2017-05-12 00:00:00,9545.0
-2017-05-10 01:00:00,8935.0
-2017-05-10 02:00:00,8459.0
-2017-05-10 03:00:00,8193.0
-2017-05-10 04:00:00,8060.0
-2017-05-10 05:00:00,8029.0
-2017-05-10 06:00:00,8258.0
-2017-05-10 07:00:00,8836.0
-2017-05-10 08:00:00,9617.0
-2017-05-10 09:00:00,10289.0
-2017-05-10 10:00:00,10488.0
-2017-05-10 11:00:00,10653.0
-2017-05-10 12:00:00,10856.0
-2017-05-10 13:00:00,10972.0
-2017-05-10 14:00:00,10980.0
-2017-05-10 15:00:00,11025.0
-2017-05-10 16:00:00,10832.0
-2017-05-10 17:00:00,10711.0
-2017-05-10 18:00:00,10644.0
-2017-05-10 19:00:00,10648.0
-2017-05-10 20:00:00,10614.0
-2017-05-10 21:00:00,10817.0
-2017-05-10 22:00:00,10863.0
-2017-05-10 23:00:00,10346.0
-2017-05-11 00:00:00,9587.0
-2017-05-09 01:00:00,9024.0
-2017-05-09 02:00:00,8620.0
-2017-05-09 03:00:00,8414.0
-2017-05-09 04:00:00,8245.0
-2017-05-09 05:00:00,8285.0
-2017-05-09 06:00:00,8515.0
-2017-05-09 07:00:00,9198.0
-2017-05-09 08:00:00,10110.0
-2017-05-09 09:00:00,10725.0
-2017-05-09 10:00:00,11019.0
-2017-05-09 11:00:00,11132.0
-2017-05-09 12:00:00,11180.0
-2017-05-09 13:00:00,11113.0
-2017-05-09 14:00:00,10928.0
-2017-05-09 15:00:00,10874.0
-2017-05-09 16:00:00,10718.0
-2017-05-09 17:00:00,10525.0
-2017-05-09 18:00:00,10457.0
-2017-05-09 19:00:00,10358.0
-2017-05-09 20:00:00,10184.0
-2017-05-09 21:00:00,10320.0
-2017-05-09 22:00:00,10648.0
-2017-05-09 23:00:00,10261.0
-2017-05-10 00:00:00,9577.0
-2017-05-08 01:00:00,8353.0
-2017-05-08 02:00:00,8094.0
-2017-05-08 03:00:00,7944.0
-2017-05-08 04:00:00,7888.0
-2017-05-08 05:00:00,7954.0
-2017-05-08 06:00:00,8272.0
-2017-05-08 07:00:00,8947.0
-2017-05-08 08:00:00,9777.0
-2017-05-08 09:00:00,10396.0
-2017-05-08 10:00:00,10610.0
-2017-05-08 11:00:00,10735.0
-2017-05-08 12:00:00,10806.0
-2017-05-08 13:00:00,10791.0
-2017-05-08 14:00:00,10719.0
-2017-05-08 15:00:00,10743.0
-2017-05-08 16:00:00,10625.0
-2017-05-08 17:00:00,10492.0
-2017-05-08 18:00:00,10346.0
-2017-05-08 19:00:00,10284.0
-2017-05-08 20:00:00,10123.0
-2017-05-08 21:00:00,10307.0
-2017-05-08 22:00:00,10693.0
-2017-05-08 23:00:00,10308.0
-2017-05-09 00:00:00,9655.0
-2017-05-07 01:00:00,8314.0
-2017-05-07 02:00:00,7998.0
-2017-05-07 03:00:00,7793.0
-2017-05-07 04:00:00,7663.0
-2017-05-07 05:00:00,7606.0
-2017-05-07 06:00:00,7664.0
-2017-05-07 07:00:00,7730.0
-2017-05-07 08:00:00,7745.0
-2017-05-07 09:00:00,7914.0
-2017-05-07 10:00:00,8150.0
-2017-05-07 11:00:00,8331.0
-2017-05-07 12:00:00,8442.0
-2017-05-07 13:00:00,8459.0
-2017-05-07 14:00:00,8472.0
-2017-05-07 15:00:00,8436.0
-2017-05-07 16:00:00,8381.0
-2017-05-07 17:00:00,8349.0
-2017-05-07 18:00:00,8396.0
-2017-05-07 19:00:00,8495.0
-2017-05-07 20:00:00,8556.0
-2017-05-07 21:00:00,8744.0
-2017-05-07 22:00:00,9311.0
-2017-05-07 23:00:00,9228.0
-2017-05-08 00:00:00,8817.0
-2017-05-06 01:00:00,8954.0
-2017-05-06 02:00:00,8416.0
-2017-05-06 03:00:00,8222.0
-2017-05-06 04:00:00,8077.0
-2017-05-06 05:00:00,7997.0
-2017-05-06 06:00:00,8061.0
-2017-05-06 07:00:00,8196.0
-2017-05-06 08:00:00,8399.0
-2017-05-06 09:00:00,8752.0
-2017-05-06 10:00:00,9047.0
-2017-05-06 11:00:00,9202.0
-2017-05-06 12:00:00,9289.0
-2017-05-06 13:00:00,9308.0
-2017-05-06 14:00:00,9195.0
-2017-05-06 15:00:00,9048.0
-2017-05-06 16:00:00,8895.0
-2017-05-06 17:00:00,8805.0
-2017-05-06 18:00:00,8753.0
-2017-05-06 19:00:00,8709.0
-2017-05-06 20:00:00,8715.0
-2017-05-06 21:00:00,8762.0
-2017-05-06 22:00:00,9193.0
-2017-05-06 23:00:00,9099.0
-2017-05-07 00:00:00,8739.0
-2017-05-05 01:00:00,9067.0
-2017-05-05 02:00:00,8680.0
-2017-05-05 03:00:00,8434.0
-2017-05-05 04:00:00,8318.0
-2017-05-05 05:00:00,8305.0
-2017-05-05 06:00:00,8540.0
-2017-05-05 07:00:00,9162.0
-2017-05-05 08:00:00,9942.0
-2017-05-05 09:00:00,10593.0
-2017-05-05 10:00:00,10807.0
-2017-05-05 11:00:00,10854.0
-2017-05-05 12:00:00,10904.0
-2017-05-05 13:00:00,10881.0
-2017-05-05 14:00:00,10799.0
-2017-05-05 15:00:00,10776.0
-2017-05-05 16:00:00,10609.0
-2017-05-05 17:00:00,10417.0
-2017-05-05 18:00:00,10246.0
-2017-05-05 19:00:00,10058.0
-2017-05-05 20:00:00,9887.0
-2017-05-05 21:00:00,9906.0
-2017-05-05 22:00:00,10271.0
-2017-05-05 23:00:00,10067.0
-2017-05-06 00:00:00,9565.0
-2017-05-04 01:00:00,9020.0
-2017-05-04 02:00:00,8613.0
-2017-05-04 03:00:00,8344.0
-2017-05-04 04:00:00,8219.0
-2017-05-04 05:00:00,8183.0
-2017-05-04 06:00:00,8401.0
-2017-05-04 07:00:00,9053.0
-2017-05-04 08:00:00,9960.0
-2017-05-04 09:00:00,10624.0
-2017-05-04 10:00:00,10873.0
-2017-05-04 11:00:00,11007.0
-2017-05-04 12:00:00,11098.0
-2017-05-04 13:00:00,11033.0
-2017-05-04 14:00:00,10992.0
-2017-05-04 15:00:00,10959.0
-2017-05-04 16:00:00,10796.0
-2017-05-04 17:00:00,10648.0
-2017-05-04 18:00:00,10555.0
-2017-05-04 19:00:00,10475.0
-2017-05-04 20:00:00,10272.0
-2017-05-04 21:00:00,10238.0
-2017-05-04 22:00:00,10663.0
-2017-05-04 23:00:00,10392.0
-2017-05-05 00:00:00,9703.0
-2017-05-03 01:00:00,9281.0
-2017-05-03 02:00:00,8843.0
-2017-05-03 03:00:00,8632.0
-2017-05-03 04:00:00,8497.0
-2017-05-03 05:00:00,8488.0
-2017-05-03 06:00:00,8761.0
-2017-05-03 07:00:00,9456.0
-2017-05-03 08:00:00,10241.0
-2017-05-03 09:00:00,10758.0
-2017-05-03 10:00:00,10902.0
-2017-05-03 11:00:00,10903.0
-2017-05-03 12:00:00,10900.0
-2017-05-03 13:00:00,10886.0
-2017-05-03 14:00:00,10795.0
-2017-05-03 15:00:00,10777.0
-2017-05-03 16:00:00,10593.0
-2017-05-03 17:00:00,10428.0
-2017-05-03 18:00:00,10360.0
-2017-05-03 19:00:00,10265.0
-2017-05-03 20:00:00,10178.0
-2017-05-03 21:00:00,10388.0
-2017-05-03 22:00:00,10693.0
-2017-05-03 23:00:00,10351.0
-2017-05-04 00:00:00,9673.0
-2017-05-02 01:00:00,9306.0
-2017-05-02 02:00:00,8883.0
-2017-05-02 03:00:00,8618.0
-2017-05-02 04:00:00,8494.0
-2017-05-02 05:00:00,8504.0
-2017-05-02 06:00:00,8746.0
-2017-05-02 07:00:00,9426.0
-2017-05-02 08:00:00,10317.0
-2017-05-02 09:00:00,10979.0
-2017-05-02 10:00:00,11208.0
-2017-05-02 11:00:00,11271.0
-2017-05-02 12:00:00,11340.0
-2017-05-02 13:00:00,11309.0
-2017-05-02 14:00:00,11231.0
-2017-05-02 15:00:00,11161.0
-2017-05-02 16:00:00,10998.0
-2017-05-02 17:00:00,10895.0
-2017-05-02 18:00:00,10828.0
-2017-05-02 19:00:00,10828.0
-2017-05-02 20:00:00,10651.0
-2017-05-02 21:00:00,10750.0
-2017-05-02 22:00:00,10971.0
-2017-05-02 23:00:00,10578.0
-2017-05-03 00:00:00,9908.0
-2017-05-01 01:00:00,8858.0
-2017-05-01 02:00:00,8483.0
-2017-05-01 03:00:00,8275.0
-2017-05-01 04:00:00,8141.0
-2017-05-01 05:00:00,8071.0
-2017-05-01 06:00:00,8291.0
-2017-05-01 07:00:00,8940.0
-2017-05-01 08:00:00,9752.0
-2017-05-01 09:00:00,10441.0
-2017-05-01 10:00:00,10620.0
-2017-05-01 11:00:00,10759.0
-2017-05-01 12:00:00,10885.0
-2017-05-01 13:00:00,10915.0
-2017-05-01 14:00:00,10906.0
-2017-05-01 15:00:00,10895.0
-2017-05-01 16:00:00,10777.0
-2017-05-01 17:00:00,10646.0
-2017-05-01 18:00:00,10578.0
-2017-05-01 19:00:00,10563.0
-2017-05-01 20:00:00,10628.0
-2017-05-01 21:00:00,10814.0
-2017-05-01 22:00:00,10982.0
-2017-05-01 23:00:00,10564.0
-2017-05-02 00:00:00,9916.0
-2017-04-30 01:00:00,8988.0
-2017-04-30 02:00:00,8598.0
-2017-04-30 03:00:00,8260.0
-2017-04-30 04:00:00,8119.0
-2017-04-30 05:00:00,8012.0
-2017-04-30 06:00:00,8051.0
-2017-04-30 07:00:00,8185.0
-2017-04-30 08:00:00,8285.0
-2017-04-30 09:00:00,8517.0
-2017-04-30 10:00:00,8886.0
-2017-04-30 11:00:00,9105.0
-2017-04-30 12:00:00,9276.0
-2017-04-30 13:00:00,9392.0
-2017-04-30 14:00:00,9316.0
-2017-04-30 15:00:00,9277.0
-2017-04-30 16:00:00,9233.0
-2017-04-30 17:00:00,9259.0
-2017-04-30 18:00:00,9330.0
-2017-04-30 19:00:00,9540.0
-2017-04-30 20:00:00,9722.0
-2017-04-30 21:00:00,10029.0
-2017-04-30 22:00:00,9955.0
-2017-04-30 23:00:00,9665.0
-2017-05-01 00:00:00,9192.0
-2017-04-29 01:00:00,8802.0
-2017-04-29 02:00:00,8387.0
-2017-04-29 03:00:00,8035.0
-2017-04-29 04:00:00,7941.0
-2017-04-29 05:00:00,7908.0
-2017-04-29 06:00:00,7977.0
-2017-04-29 07:00:00,8259.0
-2017-04-29 08:00:00,8503.0
-2017-04-29 09:00:00,8889.0
-2017-04-29 10:00:00,9288.0
-2017-04-29 11:00:00,9527.0
-2017-04-29 12:00:00,9638.0
-2017-04-29 13:00:00,9783.0
-2017-04-29 14:00:00,9804.0
-2017-04-29 15:00:00,9769.0
-2017-04-29 16:00:00,9769.0
-2017-04-29 17:00:00,9792.0
-2017-04-29 18:00:00,9924.0
-2017-04-29 19:00:00,10040.0
-2017-04-29 20:00:00,10186.0
-2017-04-29 21:00:00,10300.0
-2017-04-29 22:00:00,10387.0
-2017-04-29 23:00:00,10096.0
-2017-04-30 00:00:00,9549.0
-2017-04-28 01:00:00,8957.0
-2017-04-28 02:00:00,8509.0
-2017-04-28 03:00:00,8263.0
-2017-04-28 04:00:00,8114.0
-2017-04-28 05:00:00,8061.0
-2017-04-28 06:00:00,8283.0
-2017-04-28 07:00:00,8948.0
-2017-04-28 08:00:00,9689.0
-2017-04-28 09:00:00,10273.0
-2017-04-28 10:00:00,10473.0
-2017-04-28 11:00:00,10575.0
-2017-04-28 12:00:00,10640.0
-2017-04-28 13:00:00,10662.0
-2017-04-28 14:00:00,10608.0
-2017-04-28 15:00:00,10621.0
-2017-04-28 16:00:00,10467.0
-2017-04-28 17:00:00,10282.0
-2017-04-28 18:00:00,10143.0
-2017-04-28 19:00:00,10061.0
-2017-04-28 20:00:00,9971.0
-2017-04-28 21:00:00,10138.0
-2017-04-28 22:00:00,10272.0
-2017-04-28 23:00:00,9996.0
-2017-04-29 00:00:00,9411.0
-2017-04-27 01:00:00,9248.0
-2017-04-27 02:00:00,8705.0
-2017-04-27 03:00:00,8386.0
-2017-04-27 04:00:00,8178.0
-2017-04-27 05:00:00,8135.0
-2017-04-27 06:00:00,8323.0
-2017-04-27 07:00:00,8883.0
-2017-04-27 08:00:00,9651.0
-2017-04-27 09:00:00,10223.0
-2017-04-27 10:00:00,10511.0
-2017-04-27 11:00:00,10629.0
-2017-04-27 12:00:00,10710.0
-2017-04-27 13:00:00,10766.0
-2017-04-27 14:00:00,10784.0
-2017-04-27 15:00:00,10792.0
-2017-04-27 16:00:00,10735.0
-2017-04-27 17:00:00,10642.0
-2017-04-27 18:00:00,10538.0
-2017-04-27 19:00:00,10483.0
-2017-04-27 20:00:00,10373.0
-2017-04-27 21:00:00,10556.0
-2017-04-27 22:00:00,10692.0
-2017-04-27 23:00:00,10225.0
-2017-04-28 00:00:00,9592.0
-2017-04-26 01:00:00,9273.0
-2017-04-26 02:00:00,8746.0
-2017-04-26 03:00:00,8405.0
-2017-04-26 04:00:00,8218.0
-2017-04-26 05:00:00,8133.0
-2017-04-26 06:00:00,8306.0
-2017-04-26 07:00:00,8937.0
-2017-04-26 08:00:00,9726.0
-2017-04-26 09:00:00,10519.0
-2017-04-26 10:00:00,10931.0
-2017-04-26 11:00:00,11239.0
-2017-04-26 12:00:00,11515.0
-2017-04-26 13:00:00,11605.0
-2017-04-26 14:00:00,11713.0
-2017-04-26 15:00:00,11813.0
-2017-04-26 16:00:00,11750.0
-2017-04-26 17:00:00,11628.0
-2017-04-26 18:00:00,11500.0
-2017-04-26 19:00:00,11291.0
-2017-04-26 20:00:00,10963.0
-2017-04-26 21:00:00,11031.0
-2017-04-26 22:00:00,11165.0
-2017-04-26 23:00:00,10741.0
-2017-04-27 00:00:00,9964.0
-2017-04-25 01:00:00,8779.0
-2017-04-25 02:00:00,8353.0
-2017-04-25 03:00:00,8055.0
-2017-04-25 04:00:00,7895.0
-2017-04-25 05:00:00,7829.0
-2017-04-25 06:00:00,8030.0
-2017-04-25 07:00:00,8657.0
-2017-04-25 08:00:00,9369.0
-2017-04-25 09:00:00,10129.0
-2017-04-25 10:00:00,10525.0
-2017-04-25 11:00:00,10811.0
-2017-04-25 12:00:00,11049.0
-2017-04-25 13:00:00,11205.0
-2017-04-25 14:00:00,11327.0
-2017-04-25 15:00:00,11445.0
-2017-04-25 16:00:00,11398.0
-2017-04-25 17:00:00,11290.0
-2017-04-25 18:00:00,11280.0
-2017-04-25 19:00:00,11183.0
-2017-04-25 20:00:00,10927.0
-2017-04-25 21:00:00,10990.0
-2017-04-25 22:00:00,11249.0
-2017-04-25 23:00:00,10839.0
-2017-04-26 00:00:00,10043.0
-2017-04-24 01:00:00,8135.0
-2017-04-24 02:00:00,7851.0
-2017-04-24 03:00:00,7685.0
-2017-04-24 04:00:00,7633.0
-2017-04-24 05:00:00,7702.0
-2017-04-24 06:00:00,8006.0
-2017-04-24 07:00:00,8679.0
-2017-04-24 08:00:00,9487.0
-2017-04-24 09:00:00,10128.0
-2017-04-24 10:00:00,10436.0
-2017-04-24 11:00:00,10648.0
-2017-04-24 12:00:00,10872.0
-2017-04-24 13:00:00,10951.0
-2017-04-24 14:00:00,10976.0
-2017-04-24 15:00:00,11060.0
-2017-04-24 16:00:00,11028.0
-2017-04-24 17:00:00,10959.0
-2017-04-24 18:00:00,10879.0
-2017-04-24 19:00:00,10697.0
-2017-04-24 20:00:00,10420.0
-2017-04-24 21:00:00,10445.0
-2017-04-24 22:00:00,10727.0
-2017-04-24 23:00:00,10269.0
-2017-04-25 00:00:00,9555.0
-2017-04-23 01:00:00,8334.0
-2017-04-23 02:00:00,7982.0
-2017-04-23 03:00:00,7785.0
-2017-04-23 04:00:00,7638.0
-2017-04-23 05:00:00,7613.0
-2017-04-23 06:00:00,7633.0
-2017-04-23 07:00:00,7787.0
-2017-04-23 08:00:00,7734.0
-2017-04-23 09:00:00,7946.0
-2017-04-23 10:00:00,8117.0
-2017-04-23 11:00:00,8342.0
-2017-04-23 12:00:00,8498.0
-2017-04-23 13:00:00,8565.0
-2017-04-23 14:00:00,8581.0
-2017-04-23 15:00:00,8654.0
-2017-04-23 16:00:00,8624.0
-2017-04-23 17:00:00,8712.0
-2017-04-23 18:00:00,8767.0
-2017-04-23 19:00:00,8863.0
-2017-04-23 20:00:00,8845.0
-2017-04-23 21:00:00,9038.0
-2017-04-23 22:00:00,9395.0
-2017-04-23 23:00:00,9133.0
-2017-04-24 00:00:00,8640.0
-2017-04-22 01:00:00,8940.0
-2017-04-22 02:00:00,8474.0
-2017-04-22 03:00:00,8157.0
-2017-04-22 04:00:00,7980.0
-2017-04-22 05:00:00,7943.0
-2017-04-22 06:00:00,8004.0
-2017-04-22 07:00:00,8288.0
-2017-04-22 08:00:00,8475.0
-2017-04-22 09:00:00,8816.0
-2017-04-22 10:00:00,9098.0
-2017-04-22 11:00:00,9249.0
-2017-04-22 12:00:00,9296.0
-2017-04-22 13:00:00,9252.0
-2017-04-22 14:00:00,9150.0
-2017-04-22 15:00:00,9019.0
-2017-04-22 16:00:00,8880.0
-2017-04-22 17:00:00,8773.0
-2017-04-22 18:00:00,8758.0
-2017-04-22 19:00:00,8750.0
-2017-04-22 20:00:00,8752.0
-2017-04-22 21:00:00,8924.0
-2017-04-22 22:00:00,9348.0
-2017-04-22 23:00:00,9181.0
-2017-04-23 00:00:00,8761.0
-2017-04-21 01:00:00,8865.0
-2017-04-21 02:00:00,8407.0
-2017-04-21 03:00:00,8139.0
-2017-04-21 04:00:00,7974.0
-2017-04-21 05:00:00,7932.0
-2017-04-21 06:00:00,8138.0
-2017-04-21 07:00:00,8760.0
-2017-04-21 08:00:00,9512.0
-2017-04-21 09:00:00,10135.0
-2017-04-21 10:00:00,10425.0
-2017-04-21 11:00:00,10527.0
-2017-04-21 12:00:00,10613.0
-2017-04-21 13:00:00,10556.0
-2017-04-21 14:00:00,10504.0
-2017-04-21 15:00:00,10465.0
-2017-04-21 16:00:00,10321.0
-2017-04-21 17:00:00,10153.0
-2017-04-21 18:00:00,10064.0
-2017-04-21 19:00:00,9917.0
-2017-04-21 20:00:00,9859.0
-2017-04-21 21:00:00,10126.0
-2017-04-21 22:00:00,10400.0
-2017-04-21 23:00:00,10122.0
-2017-04-22 00:00:00,9543.0
-2017-04-20 01:00:00,8935.0
-2017-04-20 02:00:00,8465.0
-2017-04-20 03:00:00,8214.0
-2017-04-20 04:00:00,8078.0
-2017-04-20 05:00:00,8047.0
-2017-04-20 06:00:00,8232.0
-2017-04-20 07:00:00,8882.0
-2017-04-20 08:00:00,9619.0
-2017-04-20 09:00:00,10307.0
-2017-04-20 10:00:00,10704.0
-2017-04-20 11:00:00,11046.0
-2017-04-20 12:00:00,11373.0
-2017-04-20 13:00:00,11432.0
-2017-04-20 14:00:00,11314.0
-2017-04-20 15:00:00,11274.0
-2017-04-20 16:00:00,11155.0
-2017-04-20 17:00:00,10951.0
-2017-04-20 18:00:00,10783.0
-2017-04-20 19:00:00,10544.0
-2017-04-20 20:00:00,10300.0
-2017-04-20 21:00:00,10431.0
-2017-04-20 22:00:00,10640.0
-2017-04-20 23:00:00,10234.0
-2017-04-21 00:00:00,9511.0
-2017-04-19 01:00:00,9176.0
-2017-04-19 02:00:00,8694.0
-2017-04-19 03:00:00,8371.0
-2017-04-19 04:00:00,8143.0
-2017-04-19 05:00:00,8102.0
-2017-04-19 06:00:00,8301.0
-2017-04-19 07:00:00,8919.0
-2017-04-19 08:00:00,9718.0
-2017-04-19 09:00:00,10443.0
-2017-04-19 10:00:00,10882.0
-2017-04-19 11:00:00,11137.0
-2017-04-19 12:00:00,11314.0
-2017-04-19 13:00:00,11315.0
-2017-04-19 14:00:00,11200.0
-2017-04-19 15:00:00,11082.0
-2017-04-19 16:00:00,10691.0
-2017-04-19 17:00:00,10617.0
-2017-04-19 18:00:00,10449.0
-2017-04-19 19:00:00,10388.0
-2017-04-19 20:00:00,10216.0
-2017-04-19 21:00:00,10429.0
-2017-04-19 22:00:00,10692.0
-2017-04-19 23:00:00,10277.0
-2017-04-20 00:00:00,9588.0
-2017-04-18 01:00:00,8847.0
-2017-04-18 02:00:00,8432.0
-2017-04-18 03:00:00,8165.0
-2017-04-18 04:00:00,7994.0
-2017-04-18 05:00:00,7959.0
-2017-04-18 06:00:00,8225.0
-2017-04-18 07:00:00,8851.0
-2017-04-18 08:00:00,9672.0
-2017-04-18 09:00:00,10232.0
-2017-04-18 10:00:00,10508.0
-2017-04-18 11:00:00,10694.0
-2017-04-18 12:00:00,10923.0
-2017-04-18 13:00:00,11036.0
-2017-04-18 14:00:00,11091.0
-2017-04-18 15:00:00,11175.0
-2017-04-18 16:00:00,11150.0
-2017-04-18 17:00:00,11044.0
-2017-04-18 18:00:00,10921.0
-2017-04-18 19:00:00,10877.0
-2017-04-18 20:00:00,10676.0
-2017-04-18 21:00:00,10862.0
-2017-04-18 22:00:00,11068.0
-2017-04-18 23:00:00,10626.0
-2017-04-19 00:00:00,9921.0
-2017-04-17 01:00:00,7942.0
-2017-04-17 02:00:00,7594.0
-2017-04-17 03:00:00,7385.0
-2017-04-17 04:00:00,7275.0
-2017-04-17 05:00:00,7286.0
-2017-04-17 06:00:00,7546.0
-2017-04-17 07:00:00,8211.0
-2017-04-17 08:00:00,8979.0
-2017-04-17 09:00:00,9724.0
-2017-04-17 10:00:00,10217.0
-2017-04-17 11:00:00,10525.0
-2017-04-17 12:00:00,10789.0
-2017-04-17 13:00:00,10854.0
-2017-04-17 14:00:00,10874.0
-2017-04-17 15:00:00,10910.0
-2017-04-17 16:00:00,10865.0
-2017-04-17 17:00:00,10756.0
-2017-04-17 18:00:00,10602.0
-2017-04-17 19:00:00,10392.0
-2017-04-17 20:00:00,10160.0
-2017-04-17 21:00:00,10302.0
-2017-04-17 22:00:00,10576.0
-2017-04-17 23:00:00,10170.0
-2017-04-18 00:00:00,9492.0
-2017-04-16 01:00:00,8857.0
-2017-04-16 02:00:00,8359.0
-2017-04-16 03:00:00,7956.0
-2017-04-16 04:00:00,7698.0
-2017-04-16 05:00:00,7525.0
-2017-04-16 06:00:00,7465.0
-2017-04-16 07:00:00,7488.0
-2017-04-16 08:00:00,7453.0
-2017-04-16 09:00:00,7651.0
-2017-04-16 10:00:00,8040.0
-2017-04-16 11:00:00,8367.0
-2017-04-16 12:00:00,8573.0
-2017-04-16 13:00:00,8724.0
-2017-04-16 14:00:00,8770.0
-2017-04-16 15:00:00,8794.0
-2017-04-16 16:00:00,8783.0
-2017-04-16 17:00:00,8694.0
-2017-04-16 18:00:00,8648.0
-2017-04-16 19:00:00,8632.0
-2017-04-16 20:00:00,8561.0
-2017-04-16 21:00:00,8761.0
-2017-04-16 22:00:00,9126.0
-2017-04-16 23:00:00,8915.0
-2017-04-17 00:00:00,8413.0
-2017-04-15 01:00:00,8531.0
-2017-04-15 02:00:00,8106.0
-2017-04-15 03:00:00,7810.0
-2017-04-15 04:00:00,7612.0
-2017-04-15 05:00:00,7522.0
-2017-04-15 06:00:00,7563.0
-2017-04-15 07:00:00,7765.0
-2017-04-15 08:00:00,7897.0
-2017-04-15 09:00:00,8226.0
-2017-04-15 10:00:00,8715.0
-2017-04-15 11:00:00,9165.0
-2017-04-15 12:00:00,9462.0
-2017-04-15 13:00:00,9622.0
-2017-04-15 14:00:00,9674.0
-2017-04-15 15:00:00,9634.0
-2017-04-15 16:00:00,9663.0
-2017-04-15 17:00:00,9661.0
-2017-04-15 18:00:00,9692.0
-2017-04-15 19:00:00,9665.0
-2017-04-15 20:00:00,9592.0
-2017-04-15 21:00:00,9895.0
-2017-04-15 22:00:00,10119.0
-2017-04-15 23:00:00,9897.0
-2017-04-16 00:00:00,9436.0
-2017-04-14 01:00:00,8934.0
-2017-04-14 02:00:00,8453.0
-2017-04-14 03:00:00,8202.0
-2017-04-14 04:00:00,8047.0
-2017-04-14 05:00:00,7993.0
-2017-04-14 06:00:00,8119.0
-2017-04-14 07:00:00,8595.0
-2017-04-14 08:00:00,9071.0
-2017-04-14 09:00:00,9421.0
-2017-04-14 10:00:00,9660.0
-2017-04-14 11:00:00,9830.0
-2017-04-14 12:00:00,9890.0
-2017-04-14 13:00:00,9890.0
-2017-04-14 14:00:00,9846.0
-2017-04-14 15:00:00,9869.0
-2017-04-14 16:00:00,9797.0
-2017-04-14 17:00:00,9697.0
-2017-04-14 18:00:00,9659.0
-2017-04-14 19:00:00,9615.0
-2017-04-14 20:00:00,9539.0
-2017-04-14 21:00:00,9882.0
-2017-04-14 22:00:00,9878.0
-2017-04-14 23:00:00,9602.0
-2017-04-15 00:00:00,9096.0
-2017-04-13 01:00:00,8940.0
-2017-04-13 02:00:00,8555.0
-2017-04-13 03:00:00,8303.0
-2017-04-13 04:00:00,8121.0
-2017-04-13 05:00:00,8106.0
-2017-04-13 06:00:00,8332.0
-2017-04-13 07:00:00,9033.0
-2017-04-13 08:00:00,10039.0
-2017-04-13 09:00:00,10726.0
-2017-04-13 10:00:00,11006.0
-2017-04-13 11:00:00,11118.0
-2017-04-13 12:00:00,11159.0
-2017-04-13 13:00:00,11050.0
-2017-04-13 14:00:00,10919.0
-2017-04-13 15:00:00,10841.0
-2017-04-13 16:00:00,10675.0
-2017-04-13 17:00:00,10519.0
-2017-04-13 18:00:00,10390.0
-2017-04-13 19:00:00,10229.0
-2017-04-13 20:00:00,10072.0
-2017-04-13 21:00:00,10347.0
-2017-04-13 22:00:00,10573.0
-2017-04-13 23:00:00,10216.0
-2017-04-14 00:00:00,9558.0
-2017-04-12 01:00:00,9100.0
-2017-04-12 02:00:00,8698.0
-2017-04-12 03:00:00,8478.0
-2017-04-12 04:00:00,8344.0
-2017-04-12 05:00:00,8322.0
-2017-04-12 06:00:00,8592.0
-2017-04-12 07:00:00,9319.0
-2017-04-12 08:00:00,10122.0
-2017-04-12 09:00:00,10587.0
-2017-04-12 10:00:00,10698.0
-2017-04-12 11:00:00,10687.0
-2017-04-12 12:00:00,10758.0
-2017-04-12 13:00:00,10708.0
-2017-04-12 14:00:00,10666.0
-2017-04-12 15:00:00,10671.0
-2017-04-12 16:00:00,10536.0
-2017-04-12 17:00:00,10376.0
-2017-04-12 18:00:00,10285.0
-2017-04-12 19:00:00,10217.0
-2017-04-12 20:00:00,10207.0
-2017-04-12 21:00:00,10618.0
-2017-04-12 22:00:00,10694.0
-2017-04-12 23:00:00,10265.0
-2017-04-13 00:00:00,9551.0
-2017-04-11 01:00:00,8882.0
-2017-04-11 02:00:00,8474.0
-2017-04-11 03:00:00,8191.0
-2017-04-11 04:00:00,8070.0
-2017-04-11 05:00:00,8033.0
-2017-04-11 06:00:00,8290.0
-2017-04-11 07:00:00,8946.0
-2017-04-11 08:00:00,9895.0
-2017-04-11 09:00:00,10476.0
-2017-04-11 10:00:00,10762.0
-2017-04-11 11:00:00,10882.0
-2017-04-11 12:00:00,10981.0
-2017-04-11 13:00:00,10910.0
-2017-04-11 14:00:00,10818.0
-2017-04-11 15:00:00,10766.0
-2017-04-11 16:00:00,10655.0
-2017-04-11 17:00:00,10521.0
-2017-04-11 18:00:00,10419.0
-2017-04-11 19:00:00,10349.0
-2017-04-11 20:00:00,10257.0
-2017-04-11 21:00:00,10591.0
-2017-04-11 22:00:00,10778.0
-2017-04-11 23:00:00,10352.0
-2017-04-12 00:00:00,9726.0
-2017-04-10 01:00:00,8483.0
-2017-04-10 02:00:00,8157.0
-2017-04-10 03:00:00,7911.0
-2017-04-10 04:00:00,7751.0
-2017-04-10 05:00:00,7733.0
-2017-04-10 06:00:00,7981.0
-2017-04-10 07:00:00,8678.0
-2017-04-10 08:00:00,9596.0
-2017-04-10 09:00:00,10274.0
-2017-04-10 10:00:00,10608.0
-2017-04-10 11:00:00,10777.0
-2017-04-10 12:00:00,11084.0
-2017-04-10 13:00:00,11300.0
-2017-04-10 14:00:00,11255.0
-2017-04-10 15:00:00,11298.0
-2017-04-10 16:00:00,11162.0
-2017-04-10 17:00:00,11008.0
-2017-04-10 18:00:00,10998.0
-2017-04-10 19:00:00,10933.0
-2017-04-10 20:00:00,10594.0
-2017-04-10 21:00:00,10628.0
-2017-04-10 22:00:00,10603.0
-2017-04-10 23:00:00,10160.0
-2017-04-11 00:00:00,9511.0
-2017-04-09 01:00:00,8468.0
-2017-04-09 02:00:00,8061.0
-2017-04-09 03:00:00,7837.0
-2017-04-09 04:00:00,7635.0
-2017-04-09 05:00:00,7590.0
-2017-04-09 06:00:00,7570.0
-2017-04-09 07:00:00,7732.0
-2017-04-09 08:00:00,7830.0
-2017-04-09 09:00:00,7946.0
-2017-04-09 10:00:00,8236.0
-2017-04-09 11:00:00,8413.0
-2017-04-09 12:00:00,8632.0
-2017-04-09 13:00:00,8710.0
-2017-04-09 14:00:00,8760.0
-2017-04-09 15:00:00,8795.0
-2017-04-09 16:00:00,8817.0
-2017-04-09 17:00:00,8879.0
-2017-04-09 18:00:00,8928.0
-2017-04-09 19:00:00,8973.0
-2017-04-09 20:00:00,8990.0
-2017-04-09 21:00:00,9544.0
-2017-04-09 22:00:00,9768.0
-2017-04-09 23:00:00,9483.0
-2017-04-10 00:00:00,9024.0
-2017-04-08 01:00:00,9309.0
-2017-04-08 02:00:00,8857.0
-2017-04-08 03:00:00,8614.0
-2017-04-08 04:00:00,8444.0
-2017-04-08 05:00:00,8449.0
-2017-04-08 06:00:00,8515.0
-2017-04-08 07:00:00,8815.0
-2017-04-08 08:00:00,9030.0
-2017-04-08 09:00:00,9240.0
-2017-04-08 10:00:00,9433.0
-2017-04-08 11:00:00,9535.0
-2017-04-08 12:00:00,9571.0
-2017-04-08 13:00:00,9492.0
-2017-04-08 14:00:00,9367.0
-2017-04-08 15:00:00,9215.0
-2017-04-08 16:00:00,9086.0
-2017-04-08 17:00:00,9021.0
-2017-04-08 18:00:00,9002.0
-2017-04-08 19:00:00,8963.0
-2017-04-08 20:00:00,8994.0
-2017-04-08 21:00:00,9374.0
-2017-04-08 22:00:00,9619.0
-2017-04-08 23:00:00,9361.0
-2017-04-09 00:00:00,8948.0
-2017-04-07 01:00:00,9678.0
-2017-04-07 02:00:00,9258.0
-2017-04-07 03:00:00,9005.0
-2017-04-07 04:00:00,8879.0
-2017-04-07 05:00:00,8888.0
-2017-04-07 06:00:00,9152.0
-2017-04-07 07:00:00,9846.0
-2017-04-07 08:00:00,10745.0
-2017-04-07 09:00:00,11138.0
-2017-04-07 10:00:00,11273.0
-2017-04-07 11:00:00,11229.0
-2017-04-07 12:00:00,11213.0
-2017-04-07 13:00:00,11105.0
-2017-04-07 14:00:00,10979.0
-2017-04-07 15:00:00,10899.0
-2017-04-07 16:00:00,10710.0
-2017-04-07 17:00:00,10468.0
-2017-04-07 18:00:00,10280.0
-2017-04-07 19:00:00,10138.0
-2017-04-07 20:00:00,10057.0
-2017-04-07 21:00:00,10463.0
-2017-04-07 22:00:00,10637.0
-2017-04-07 23:00:00,10391.0
-2017-04-08 00:00:00,9855.0
-2017-04-06 01:00:00,9985.0
-2017-04-06 02:00:00,9538.0
-2017-04-06 03:00:00,9284.0
-2017-04-06 04:00:00,9117.0
-2017-04-06 05:00:00,9140.0
-2017-04-06 06:00:00,9389.0
-2017-04-06 07:00:00,10094.0
-2017-04-06 08:00:00,11060.0
-2017-04-06 09:00:00,11559.0
-2017-04-06 10:00:00,11575.0
-2017-04-06 11:00:00,11587.0
-2017-04-06 12:00:00,11548.0
-2017-04-06 13:00:00,11428.0
-2017-04-06 14:00:00,11299.0
-2017-04-06 15:00:00,11294.0
-2017-04-06 16:00:00,11152.0
-2017-04-06 17:00:00,11005.0
-2017-04-06 18:00:00,10903.0
-2017-04-06 19:00:00,10779.0
-2017-04-06 20:00:00,10732.0
-2017-04-06 21:00:00,11124.0
-2017-04-06 22:00:00,11294.0
-2017-04-06 23:00:00,10963.0
-2017-04-07 00:00:00,10300.0
-2017-04-05 01:00:00,9256.0
-2017-04-05 02:00:00,8823.0
-2017-04-05 03:00:00,8553.0
-2017-04-05 04:00:00,8426.0
-2017-04-05 05:00:00,8412.0
-2017-04-05 06:00:00,8699.0
-2017-04-05 07:00:00,9449.0
-2017-04-05 08:00:00,10526.0
-2017-04-05 09:00:00,11215.0
-2017-04-05 10:00:00,11497.0
-2017-04-05 11:00:00,11631.0
-2017-04-05 12:00:00,11734.0
-2017-04-05 13:00:00,11718.0
-2017-04-05 14:00:00,11670.0
-2017-04-05 15:00:00,11787.0
-2017-04-05 16:00:00,11756.0
-2017-04-05 17:00:00,11728.0
-2017-04-05 18:00:00,11824.0
-2017-04-05 19:00:00,11835.0
-2017-04-05 20:00:00,11737.0
-2017-04-05 21:00:00,11960.0
-2017-04-05 22:00:00,11790.0
-2017-04-05 23:00:00,11318.0
-2017-04-06 00:00:00,10640.0
-2017-04-04 01:00:00,9268.0
-2017-04-04 02:00:00,8859.0
-2017-04-04 03:00:00,8602.0
-2017-04-04 04:00:00,8451.0
-2017-04-04 05:00:00,8440.0
-2017-04-04 06:00:00,8676.0
-2017-04-04 07:00:00,9357.0
-2017-04-04 08:00:00,10396.0
-2017-04-04 09:00:00,10943.0
-2017-04-04 10:00:00,11159.0
-2017-04-04 11:00:00,11249.0
-2017-04-04 12:00:00,11287.0
-2017-04-04 13:00:00,11200.0
-2017-04-04 14:00:00,11094.0
-2017-04-04 15:00:00,11013.0
-2017-04-04 16:00:00,10821.0
-2017-04-04 17:00:00,10727.0
-2017-04-04 18:00:00,10678.0
-2017-04-04 19:00:00,10627.0
-2017-04-04 20:00:00,10575.0
-2017-04-04 21:00:00,10923.0
-2017-04-04 22:00:00,10966.0
-2017-04-04 23:00:00,10560.0
-2017-04-05 00:00:00,9906.0
-2017-04-03 01:00:00,8596.0
-2017-04-03 02:00:00,8271.0
-2017-04-03 03:00:00,8113.0
-2017-04-03 04:00:00,8017.0
-2017-04-03 05:00:00,7932.0
-2017-04-03 06:00:00,8238.0
-2017-04-03 07:00:00,8898.0
-2017-04-03 08:00:00,10133.0
-2017-04-03 09:00:00,10588.0
-2017-04-03 10:00:00,10895.0
-2017-04-03 11:00:00,11007.0
-2017-04-03 12:00:00,11134.0
-2017-04-03 13:00:00,11112.0
-2017-04-03 14:00:00,11046.0
-2017-04-03 15:00:00,11088.0
-2017-04-03 16:00:00,11080.0
-2017-04-03 17:00:00,11030.0
-2017-04-03 18:00:00,11013.0
-2017-04-03 19:00:00,11033.0
-2017-04-03 20:00:00,11016.0
-2017-04-03 21:00:00,11176.0
-2017-04-03 22:00:00,11029.0
-2017-04-03 23:00:00,10603.0
-2017-04-04 00:00:00,9955.0
-2017-04-02 01:00:00,8804.0
-2017-04-02 02:00:00,8458.0
-2017-04-02 03:00:00,8196.0
-2017-04-02 04:00:00,8073.0
-2017-04-02 05:00:00,8013.0
-2017-04-02 06:00:00,8032.0
-2017-04-02 07:00:00,8128.0
-2017-04-02 08:00:00,8413.0
-2017-04-02 09:00:00,8411.0
-2017-04-02 10:00:00,8694.0
-2017-04-02 11:00:00,8854.0
-2017-04-02 12:00:00,8847.0
-2017-04-02 13:00:00,8883.0
-2017-04-02 14:00:00,8845.0
-2017-04-02 15:00:00,8890.0
-2017-04-02 16:00:00,8866.0
-2017-04-02 17:00:00,8904.0
-2017-04-02 18:00:00,9086.0
-2017-04-02 19:00:00,9202.0
-2017-04-02 20:00:00,9373.0
-2017-04-02 21:00:00,9788.0
-2017-04-02 22:00:00,9793.0
-2017-04-02 23:00:00,9460.0
-2017-04-03 00:00:00,9069.0
-2017-04-01 01:00:00,9743.0
-2017-04-01 02:00:00,9292.0
-2017-04-01 03:00:00,9014.0
-2017-04-01 04:00:00,8850.0
-2017-04-01 05:00:00,8812.0
-2017-04-01 06:00:00,8887.0
-2017-04-01 07:00:00,9149.0
-2017-04-01 08:00:00,9492.0
-2017-04-01 09:00:00,9629.0
-2017-04-01 10:00:00,9806.0
-2017-04-01 11:00:00,9760.0
-2017-04-01 12:00:00,9779.0
-2017-04-01 13:00:00,9650.0
-2017-04-01 14:00:00,9469.0
-2017-04-01 15:00:00,9265.0
-2017-04-01 16:00:00,9152.0
-2017-04-01 17:00:00,9058.0
-2017-04-01 18:00:00,8986.0
-2017-04-01 19:00:00,9005.0
-2017-04-01 20:00:00,9137.0
-2017-04-01 21:00:00,9661.0
-2017-04-01 22:00:00,9784.0
-2017-04-01 23:00:00,9592.0
-2017-04-02 00:00:00,9204.0
-2017-03-31 01:00:00,9770.0
-2017-03-31 02:00:00,9381.0
-2017-03-31 03:00:00,9118.0
-2017-03-31 04:00:00,8947.0
-2017-03-31 05:00:00,8927.0
-2017-03-31 06:00:00,9173.0
-2017-03-31 07:00:00,9832.0
-2017-03-31 08:00:00,10759.0
-2017-03-31 09:00:00,11320.0
-2017-03-31 10:00:00,11562.0
-2017-03-31 11:00:00,11717.0
-2017-03-31 12:00:00,11811.0
-2017-03-31 13:00:00,11758.0
-2017-03-31 14:00:00,11664.0
-2017-03-31 15:00:00,11615.0
-2017-03-31 16:00:00,11442.0
-2017-03-31 17:00:00,11301.0
-2017-03-31 18:00:00,11170.0
-2017-03-31 19:00:00,11013.0
-2017-03-31 20:00:00,10927.0
-2017-03-31 21:00:00,11255.0
-2017-03-31 22:00:00,11185.0
-2017-03-31 23:00:00,10878.0
-2017-04-01 00:00:00,10302.0
-2017-03-30 01:00:00,9663.0
-2017-03-30 02:00:00,9289.0
-2017-03-30 03:00:00,9094.0
-2017-03-30 04:00:00,8978.0
-2017-03-30 05:00:00,8994.0
-2017-03-30 06:00:00,9182.0
-2017-03-30 07:00:00,9869.0
-2017-03-30 08:00:00,10918.0
-2017-03-30 09:00:00,11405.0
-2017-03-30 10:00:00,11584.0
-2017-03-30 11:00:00,11719.0
-2017-03-30 12:00:00,11884.0
-2017-03-30 13:00:00,12020.0
-2017-03-30 14:00:00,12010.0
-2017-03-30 15:00:00,12053.0
-2017-03-30 16:00:00,11890.0
-2017-03-30 17:00:00,11540.0
-2017-03-30 18:00:00,11318.0
-2017-03-30 19:00:00,11316.0
-2017-03-30 20:00:00,11310.0
-2017-03-30 21:00:00,11584.0
-2017-03-30 22:00:00,11417.0
-2017-03-30 23:00:00,10992.0
-2017-03-31 00:00:00,10364.0
-2017-03-29 01:00:00,9504.0
-2017-03-29 02:00:00,9064.0
-2017-03-29 03:00:00,8898.0
-2017-03-29 04:00:00,8713.0
-2017-03-29 05:00:00,8727.0
-2017-03-29 06:00:00,9054.0
-2017-03-29 07:00:00,9788.0
-2017-03-29 08:00:00,10766.0
-2017-03-29 09:00:00,11189.0
-2017-03-29 10:00:00,11264.0
-2017-03-29 11:00:00,11228.0
-2017-03-29 12:00:00,11160.0
-2017-03-29 13:00:00,11167.0
-2017-03-29 14:00:00,11158.0
-2017-03-29 15:00:00,11201.0
-2017-03-29 16:00:00,11225.0
-2017-03-29 17:00:00,11140.0
-2017-03-29 18:00:00,11136.0
-2017-03-29 19:00:00,11193.0
-2017-03-29 20:00:00,11254.0
-2017-03-29 21:00:00,11340.0
-2017-03-29 22:00:00,11138.0
-2017-03-29 23:00:00,10826.0
-2017-03-30 00:00:00,10249.0
-2017-03-28 01:00:00,9293.0
-2017-03-28 02:00:00,8859.0
-2017-03-28 03:00:00,8595.0
-2017-03-28 04:00:00,8514.0
-2017-03-28 05:00:00,8518.0
-2017-03-28 06:00:00,8835.0
-2017-03-28 07:00:00,9543.0
-2017-03-28 08:00:00,10544.0
-2017-03-28 09:00:00,10926.0
-2017-03-28 10:00:00,11187.0
-2017-03-28 11:00:00,11276.0
-2017-03-28 12:00:00,11292.0
-2017-03-28 13:00:00,11235.0
-2017-03-28 14:00:00,11147.0
-2017-03-28 15:00:00,11044.0
-2017-03-28 16:00:00,10912.0
-2017-03-28 17:00:00,10775.0
-2017-03-28 18:00:00,10748.0
-2017-03-28 19:00:00,10619.0
-2017-03-28 20:00:00,10640.0
-2017-03-28 21:00:00,11067.0
-2017-03-28 22:00:00,11114.0
-2017-03-28 23:00:00,10659.0
-2017-03-29 00:00:00,9981.0
-2017-03-27 01:00:00,8475.0
-2017-03-27 02:00:00,8165.0
-2017-03-27 03:00:00,7998.0
-2017-03-27 04:00:00,7814.0
-2017-03-27 05:00:00,7841.0
-2017-03-27 06:00:00,8111.0
-2017-03-27 07:00:00,8794.0
-2017-03-27 08:00:00,9838.0
-2017-03-27 09:00:00,10434.0
-2017-03-27 10:00:00,10753.0
-2017-03-27 11:00:00,10899.0
-2017-03-27 12:00:00,11015.0
-2017-03-27 13:00:00,11003.0
-2017-03-27 14:00:00,10927.0
-2017-03-27 15:00:00,10928.0
-2017-03-27 16:00:00,10836.0
-2017-03-27 17:00:00,10724.0
-2017-03-27 18:00:00,10656.0
-2017-03-27 19:00:00,10660.0
-2017-03-27 20:00:00,10650.0
-2017-03-27 21:00:00,10985.0
-2017-03-27 22:00:00,10897.0
-2017-03-27 23:00:00,10526.0
-2017-03-28 00:00:00,9919.0
-2017-03-26 01:00:00,8880.0
-2017-03-26 02:00:00,8457.0
-2017-03-26 03:00:00,8205.0
-2017-03-26 04:00:00,8017.0
-2017-03-26 05:00:00,7937.0
-2017-03-26 06:00:00,7952.0
-2017-03-26 07:00:00,8069.0
-2017-03-26 08:00:00,8362.0
-2017-03-26 09:00:00,8482.0
-2017-03-26 10:00:00,8752.0
-2017-03-26 11:00:00,8918.0
-2017-03-26 12:00:00,9033.0
-2017-03-26 13:00:00,9053.0
-2017-03-26 14:00:00,9027.0
-2017-03-26 15:00:00,8955.0
-2017-03-26 16:00:00,8882.0
-2017-03-26 17:00:00,8788.0
-2017-03-26 18:00:00,8886.0
-2017-03-26 19:00:00,8999.0
-2017-03-26 20:00:00,9191.0
-2017-03-26 21:00:00,9615.0
-2017-03-26 22:00:00,9538.0
-2017-03-26 23:00:00,9290.0
-2017-03-27 00:00:00,8878.0
-2017-03-25 01:00:00,9098.0
-2017-03-25 02:00:00,8649.0
-2017-03-25 03:00:00,8427.0
-2017-03-25 04:00:00,8247.0
-2017-03-25 05:00:00,8219.0
-2017-03-25 06:00:00,8288.0
-2017-03-25 07:00:00,8646.0
-2017-03-25 08:00:00,9103.0
-2017-03-25 09:00:00,9480.0
-2017-03-25 10:00:00,9872.0
-2017-03-25 11:00:00,10242.0
-2017-03-25 12:00:00,10413.0
-2017-03-25 13:00:00,10383.0
-2017-03-25 14:00:00,10189.0
-2017-03-25 15:00:00,9949.0
-2017-03-25 16:00:00,9799.0
-2017-03-25 17:00:00,9734.0
-2017-03-25 18:00:00,9769.0
-2017-03-25 19:00:00,9769.0
-2017-03-25 20:00:00,9857.0
-2017-03-25 21:00:00,10149.0
-2017-03-25 22:00:00,10035.0
-2017-03-25 23:00:00,9765.0
-2017-03-26 00:00:00,9345.0
-2017-03-24 01:00:00,9520.0
-2017-03-24 02:00:00,9123.0
-2017-03-24 03:00:00,8846.0
-2017-03-24 04:00:00,8662.0
-2017-03-24 05:00:00,8623.0
-2017-03-24 06:00:00,8807.0
-2017-03-24 07:00:00,9420.0
-2017-03-24 08:00:00,10439.0
-2017-03-24 09:00:00,10785.0
-2017-03-24 10:00:00,10901.0
-2017-03-24 11:00:00,10874.0
-2017-03-24 12:00:00,10961.0
-2017-03-24 13:00:00,11039.0
-2017-03-24 14:00:00,10995.0
-2017-03-24 15:00:00,11064.0
-2017-03-24 16:00:00,11021.0
-2017-03-24 17:00:00,10831.0
-2017-03-24 18:00:00,10632.0
-2017-03-24 19:00:00,10400.0
-2017-03-24 20:00:00,10313.0
-2017-03-24 21:00:00,10661.0
-2017-03-24 22:00:00,10470.0
-2017-03-24 23:00:00,10172.0
-2017-03-25 00:00:00,9613.0
-2017-03-23 01:00:00,10143.0
-2017-03-23 02:00:00,9676.0
-2017-03-23 03:00:00,9427.0
-2017-03-23 04:00:00,9342.0
-2017-03-23 05:00:00,9368.0
-2017-03-23 06:00:00,9553.0
-2017-03-23 07:00:00,10408.0
-2017-03-23 08:00:00,11488.0
-2017-03-23 09:00:00,11892.0
-2017-03-23 10:00:00,11966.0
-2017-03-23 11:00:00,12033.0
-2017-03-23 12:00:00,11927.0
-2017-03-23 13:00:00,11601.0
-2017-03-23 14:00:00,11523.0
-2017-03-23 15:00:00,11469.0
-2017-03-23 16:00:00,11366.0
-2017-03-23 17:00:00,11246.0
-2017-03-23 18:00:00,11088.0
-2017-03-23 19:00:00,11174.0
-2017-03-23 20:00:00,11287.0
-2017-03-23 21:00:00,11537.0
-2017-03-23 22:00:00,11356.0
-2017-03-23 23:00:00,10896.0
-2017-03-24 00:00:00,10105.0
-2017-03-22 01:00:00,9947.0
-2017-03-22 02:00:00,9570.0
-2017-03-22 03:00:00,9387.0
-2017-03-22 04:00:00,9273.0
-2017-03-22 05:00:00,9293.0
-2017-03-22 06:00:00,9593.0
-2017-03-22 07:00:00,10355.0
-2017-03-22 08:00:00,11451.0
-2017-03-22 09:00:00,11888.0
-2017-03-22 10:00:00,12011.0
-2017-03-22 11:00:00,12057.0
-2017-03-22 12:00:00,11940.0
-2017-03-22 13:00:00,11743.0
-2017-03-22 14:00:00,11605.0
-2017-03-22 15:00:00,11523.0
-2017-03-22 16:00:00,11329.0
-2017-03-22 17:00:00,11157.0
-2017-03-22 18:00:00,11082.0
-2017-03-22 19:00:00,11085.0
-2017-03-22 20:00:00,11158.0
-2017-03-22 21:00:00,11786.0
-2017-03-22 22:00:00,11807.0
-2017-03-22 23:00:00,11421.0
-2017-03-23 00:00:00,10761.0
-2017-03-21 01:00:00,9453.0
-2017-03-21 02:00:00,9079.0
-2017-03-21 03:00:00,8851.0
-2017-03-21 04:00:00,8742.0
-2017-03-21 05:00:00,8763.0
-2017-03-21 06:00:00,9052.0
-2017-03-21 07:00:00,9771.0
-2017-03-21 08:00:00,10913.0
-2017-03-21 09:00:00,11318.0
-2017-03-21 10:00:00,11312.0
-2017-03-21 11:00:00,11289.0
-2017-03-21 12:00:00,11255.0
-2017-03-21 13:00:00,11187.0
-2017-03-21 14:00:00,11136.0
-2017-03-21 15:00:00,11215.0
-2017-03-21 16:00:00,11070.0
-2017-03-21 17:00:00,10890.0
-2017-03-21 18:00:00,10772.0
-2017-03-21 19:00:00,10711.0
-2017-03-21 20:00:00,10780.0
-2017-03-21 21:00:00,11388.0
-2017-03-21 22:00:00,11471.0
-2017-03-21 23:00:00,11132.0
-2017-03-22 00:00:00,10546.0
-2017-03-20 01:00:00,8929.0
-2017-03-20 02:00:00,8598.0
-2017-03-20 03:00:00,8398.0
-2017-03-20 04:00:00,8256.0
-2017-03-20 05:00:00,8375.0
-2017-03-20 06:00:00,8689.0
-2017-03-20 07:00:00,9480.0
-2017-03-20 08:00:00,10590.0
-2017-03-20 09:00:00,11224.0
-2017-03-20 10:00:00,11289.0
-2017-03-20 11:00:00,11330.0
-2017-03-20 12:00:00,11364.0
-2017-03-20 13:00:00,11235.0
-2017-03-20 14:00:00,11173.0
-2017-03-20 15:00:00,11116.0
-2017-03-20 16:00:00,10985.0
-2017-03-20 17:00:00,10916.0
-2017-03-20 18:00:00,10864.0
-2017-03-20 19:00:00,10858.0
-2017-03-20 20:00:00,10834.0
-2017-03-20 21:00:00,11308.0
-2017-03-20 22:00:00,11194.0
-2017-03-20 23:00:00,10744.0
-2017-03-21 00:00:00,10106.0
-2017-03-19 01:00:00,9425.0
-2017-03-19 02:00:00,9090.0
-2017-03-19 03:00:00,8902.0
-2017-03-19 04:00:00,8802.0
-2017-03-19 05:00:00,8736.0
-2017-03-19 06:00:00,8818.0
-2017-03-19 07:00:00,8941.0
-2017-03-19 08:00:00,9246.0
-2017-03-19 09:00:00,9250.0
-2017-03-19 10:00:00,9362.0
-2017-03-19 11:00:00,9446.0
-2017-03-19 12:00:00,9482.0
-2017-03-19 13:00:00,9428.0
-2017-03-19 14:00:00,9391.0
-2017-03-19 15:00:00,9257.0
-2017-03-19 16:00:00,9145.0
-2017-03-19 17:00:00,9051.0
-2017-03-19 18:00:00,9082.0
-2017-03-19 19:00:00,9145.0
-2017-03-19 20:00:00,9384.0
-2017-03-19 21:00:00,10052.0
-2017-03-19 22:00:00,10107.0
-2017-03-19 23:00:00,9834.0
-2017-03-20 00:00:00,9412.0
-2017-03-18 01:00:00,9914.0
-2017-03-18 02:00:00,9399.0
-2017-03-18 03:00:00,9195.0
-2017-03-18 04:00:00,9046.0
-2017-03-18 05:00:00,8976.0
-2017-03-18 06:00:00,9000.0
-2017-03-18 07:00:00,9251.0
-2017-03-18 08:00:00,9756.0
-2017-03-18 09:00:00,9999.0
-2017-03-18 10:00:00,10345.0
-2017-03-18 11:00:00,10587.0
-2017-03-18 12:00:00,10713.0
-2017-03-18 13:00:00,10630.0
-2017-03-18 14:00:00,10431.0
-2017-03-18 15:00:00,10152.0
-2017-03-18 16:00:00,10014.0
-2017-03-18 17:00:00,9925.0
-2017-03-18 18:00:00,10025.0
-2017-03-18 19:00:00,10076.0
-2017-03-18 20:00:00,10282.0
-2017-03-18 21:00:00,10594.0
-2017-03-18 22:00:00,10543.0
-2017-03-18 23:00:00,10297.0
-2017-03-19 00:00:00,9863.0
-2017-03-17 01:00:00,10113.0
-2017-03-17 02:00:00,9661.0
-2017-03-17 03:00:00,9381.0
-2017-03-17 04:00:00,9269.0
-2017-03-17 05:00:00,9301.0
-2017-03-17 06:00:00,9507.0
-2017-03-17 07:00:00,10200.0
-2017-03-17 08:00:00,11259.0
-2017-03-17 09:00:00,11913.0
-2017-03-17 10:00:00,12095.0
-2017-03-17 11:00:00,12169.0
-2017-03-17 12:00:00,12257.0
-2017-03-17 13:00:00,12173.0
-2017-03-17 14:00:00,12021.0
-2017-03-17 15:00:00,11902.0
-2017-03-17 16:00:00,11724.0
-2017-03-17 17:00:00,11498.0
-2017-03-17 18:00:00,11339.0
-2017-03-17 19:00:00,11114.0
-2017-03-17 20:00:00,10996.0
-2017-03-17 21:00:00,11465.0
-2017-03-17 22:00:00,11367.0
-2017-03-17 23:00:00,11064.0
-2017-03-18 00:00:00,10510.0
-2017-03-16 01:00:00,10678.0
-2017-03-16 02:00:00,10293.0
-2017-03-16 03:00:00,10047.0
-2017-03-16 04:00:00,9947.0
-2017-03-16 05:00:00,9968.0
-2017-03-16 06:00:00,10237.0
-2017-03-16 07:00:00,10957.0
-2017-03-16 08:00:00,12057.0
-2017-03-16 09:00:00,12490.0
-2017-03-16 10:00:00,12441.0
-2017-03-16 11:00:00,12274.0
-2017-03-16 12:00:00,12205.0
-2017-03-16 13:00:00,12057.0
-2017-03-16 14:00:00,11887.0
-2017-03-16 15:00:00,11773.0
-2017-03-16 16:00:00,11573.0
-2017-03-16 17:00:00,11326.0
-2017-03-16 18:00:00,11195.0
-2017-03-16 19:00:00,11169.0
-2017-03-16 20:00:00,11231.0
-2017-03-16 21:00:00,11866.0
-2017-03-16 22:00:00,11843.0
-2017-03-16 23:00:00,11465.0
-2017-03-17 00:00:00,10784.0
-2017-03-15 01:00:00,11044.0
-2017-03-15 02:00:00,10629.0
-2017-03-15 03:00:00,10381.0
-2017-03-15 04:00:00,10304.0
-2017-03-15 05:00:00,10295.0
-2017-03-15 06:00:00,10566.0
-2017-03-15 07:00:00,11255.0
-2017-03-15 08:00:00,12384.0
-2017-03-15 09:00:00,12856.0
-2017-03-15 10:00:00,12815.0
-2017-03-15 11:00:00,12704.0
-2017-03-15 12:00:00,12622.0
-2017-03-15 13:00:00,12483.0
-2017-03-15 14:00:00,12336.0
-2017-03-15 15:00:00,12218.0
-2017-03-15 16:00:00,12028.0
-2017-03-15 17:00:00,11831.0
-2017-03-15 18:00:00,11686.0
-2017-03-15 19:00:00,11677.0
-2017-03-15 20:00:00,11749.0
-2017-03-15 21:00:00,12414.0
-2017-03-15 22:00:00,12415.0
-2017-03-15 23:00:00,12023.0
-2017-03-16 00:00:00,11344.0
-2017-03-14 01:00:00,10659.0
-2017-03-14 02:00:00,10248.0
-2017-03-14 03:00:00,9989.0
-2017-03-14 04:00:00,9868.0
-2017-03-14 05:00:00,9909.0
-2017-03-14 06:00:00,10188.0
-2017-03-14 07:00:00,10895.0
-2017-03-14 08:00:00,12015.0
-2017-03-14 09:00:00,12547.0
-2017-03-14 10:00:00,12653.0
-2017-03-14 11:00:00,12627.0
-2017-03-14 12:00:00,12592.0
-2017-03-14 13:00:00,12513.0
-2017-03-14 14:00:00,12421.0
-2017-03-14 15:00:00,12362.0
-2017-03-14 16:00:00,12239.0
-2017-03-14 17:00:00,12152.0
-2017-03-14 18:00:00,12112.0
-2017-03-14 19:00:00,12099.0
-2017-03-14 20:00:00,12210.0
-2017-03-14 21:00:00,12831.0
-2017-03-14 22:00:00,12803.0
-2017-03-14 23:00:00,12373.0
-2017-03-15 00:00:00,11669.0
-2017-03-13 01:00:00,9872.0
-2017-03-13 02:00:00,9554.0
-2017-03-13 03:00:00,9408.0
-2017-03-13 04:00:00,9354.0
-2017-03-13 05:00:00,9414.0
-2017-03-13 06:00:00,9746.0
-2017-03-13 07:00:00,10475.0
-2017-03-13 08:00:00,11619.0
-2017-03-13 09:00:00,12166.0
-2017-03-13 10:00:00,12289.0
-2017-03-13 11:00:00,12336.0
-2017-03-13 12:00:00,12414.0
-2017-03-13 13:00:00,12378.0
-2017-03-13 14:00:00,12324.0
-2017-03-13 15:00:00,12290.0
-2017-03-13 16:00:00,12168.0
-2017-03-13 17:00:00,12047.0
-2017-03-13 18:00:00,12062.0
-2017-03-13 19:00:00,12183.0
-2017-03-13 20:00:00,12327.0
-2017-03-13 21:00:00,12643.0
-2017-03-13 22:00:00,12476.0
-2017-03-13 23:00:00,12038.0
-2017-03-14 00:00:00,11335.0
-2017-03-12 01:00:00,9870.0
-2017-03-12 02:00:00,9582.0
-2017-03-12 04:00:00,9464.0
-2017-03-12 05:00:00,9373.0
-2017-03-12 06:00:00,9405.0
-2017-03-12 07:00:00,9537.0
-2017-03-12 08:00:00,9799.0
-2017-03-12 09:00:00,9797.0
-2017-03-12 10:00:00,9876.0
-2017-03-12 11:00:00,9912.0
-2017-03-12 12:00:00,9985.0
-2017-03-12 13:00:00,9925.0
-2017-03-12 14:00:00,9897.0
-2017-03-12 15:00:00,9778.0
-2017-03-12 16:00:00,9683.0
-2017-03-12 17:00:00,9596.0
-2017-03-12 18:00:00,9667.0
-2017-03-12 19:00:00,9907.0
-2017-03-12 20:00:00,10355.0
-2017-03-12 21:00:00,11001.0
-2017-03-12 22:00:00,10948.0
-2017-03-12 23:00:00,10666.0
-2017-03-13 00:00:00,10304.0
-2017-03-11 01:00:00,10473.0
-2017-03-11 02:00:00,10122.0
-2017-03-11 03:00:00,9871.0
-2017-03-11 04:00:00,9775.0
-2017-03-11 05:00:00,9728.0
-2017-03-11 06:00:00,9875.0
-2017-03-11 07:00:00,10179.0
-2017-03-11 08:00:00,10419.0
-2017-03-11 09:00:00,10579.0
-2017-03-11 10:00:00,10861.0
-2017-03-11 11:00:00,10926.0
-2017-03-11 12:00:00,10892.0
-2017-03-11 13:00:00,10825.0
-2017-03-11 14:00:00,10584.0
-2017-03-11 15:00:00,10329.0
-2017-03-11 16:00:00,10122.0
-2017-03-11 17:00:00,10076.0
-2017-03-11 18:00:00,10188.0
-2017-03-11 19:00:00,10598.0
-2017-03-11 20:00:00,11220.0
-2017-03-11 21:00:00,11198.0
-2017-03-11 22:00:00,11093.0
-2017-03-11 23:00:00,10795.0
-2017-03-12 00:00:00,10385.0
-2017-03-10 01:00:00,9853.0
-2017-03-10 02:00:00,9514.0
-2017-03-10 03:00:00,9345.0
-2017-03-10 04:00:00,9286.0
-2017-03-10 05:00:00,9337.0
-2017-03-10 06:00:00,9646.0
-2017-03-10 07:00:00,10401.0
-2017-03-10 08:00:00,11203.0
-2017-03-10 09:00:00,11581.0
-2017-03-10 10:00:00,11771.0
-2017-03-10 11:00:00,11785.0
-2017-03-10 12:00:00,11832.0
-2017-03-10 13:00:00,11768.0
-2017-03-10 14:00:00,11668.0
-2017-03-10 15:00:00,11629.0
-2017-03-10 16:00:00,11445.0
-2017-03-10 17:00:00,11319.0
-2017-03-10 18:00:00,11378.0
-2017-03-10 19:00:00,11691.0
-2017-03-10 20:00:00,12258.0
-2017-03-10 21:00:00,12207.0
-2017-03-10 22:00:00,12000.0
-2017-03-10 23:00:00,11665.0
-2017-03-11 00:00:00,11076.0
-2017-03-09 01:00:00,9516.0
-2017-03-09 02:00:00,9155.0
-2017-03-09 03:00:00,8924.0
-2017-03-09 04:00:00,8849.0
-2017-03-09 05:00:00,8878.0
-2017-03-09 06:00:00,9167.0
-2017-03-09 07:00:00,9905.0
-2017-03-09 08:00:00,10779.0
-2017-03-09 09:00:00,11270.0
-2017-03-09 10:00:00,11377.0
-2017-03-09 11:00:00,11412.0
-2017-03-09 12:00:00,11429.0
-2017-03-09 13:00:00,11366.0
-2017-03-09 14:00:00,11235.0
-2017-03-09 15:00:00,11250.0
-2017-03-09 16:00:00,11187.0
-2017-03-09 17:00:00,11181.0
-2017-03-09 18:00:00,11389.0
-2017-03-09 19:00:00,11716.0
-2017-03-09 20:00:00,11990.0
-2017-03-09 21:00:00,11855.0
-2017-03-09 22:00:00,11607.0
-2017-03-09 23:00:00,11142.0
-2017-03-10 00:00:00,10467.0
-2017-03-08 01:00:00,9410.0
-2017-03-08 02:00:00,9012.0
-2017-03-08 03:00:00,8801.0
-2017-03-08 04:00:00,8704.0
-2017-03-08 05:00:00,8718.0
-2017-03-08 06:00:00,9043.0
-2017-03-08 07:00:00,9809.0
-2017-03-08 08:00:00,10662.0
-2017-03-08 09:00:00,11087.0
-2017-03-08 10:00:00,11215.0
-2017-03-08 11:00:00,11251.0
-2017-03-08 12:00:00,11214.0
-2017-03-08 13:00:00,11253.0
-2017-03-08 14:00:00,11118.0
-2017-03-08 15:00:00,11061.0
-2017-03-08 16:00:00,10871.0
-2017-03-08 17:00:00,10747.0
-2017-03-08 18:00:00,10748.0
-2017-03-08 19:00:00,10951.0
-2017-03-08 20:00:00,11502.0
-2017-03-08 21:00:00,11507.0
-2017-03-08 22:00:00,11235.0
-2017-03-08 23:00:00,10786.0
-2017-03-09 00:00:00,10134.0
-2017-03-07 01:00:00,9124.0
-2017-03-07 02:00:00,8665.0
-2017-03-07 03:00:00,8417.0
-2017-03-07 04:00:00,8285.0
-2017-03-07 05:00:00,8219.0
-2017-03-07 06:00:00,8448.0
-2017-03-07 07:00:00,9188.0
-2017-03-07 08:00:00,10144.0
-2017-03-07 09:00:00,10696.0
-2017-03-07 10:00:00,10938.0
-2017-03-07 11:00:00,11001.0
-2017-03-07 12:00:00,11062.0
-2017-03-07 13:00:00,11035.0
-2017-03-07 14:00:00,10954.0
-2017-03-07 15:00:00,10903.0
-2017-03-07 16:00:00,10756.0
-2017-03-07 17:00:00,10633.0
-2017-03-07 18:00:00,10652.0
-2017-03-07 19:00:00,10911.0
-2017-03-07 20:00:00,11416.0
-2017-03-07 21:00:00,11386.0
-2017-03-07 22:00:00,11145.0
-2017-03-07 23:00:00,10698.0
-2017-03-08 00:00:00,10033.0
-2017-03-06 01:00:00,8817.0
-2017-03-06 02:00:00,8515.0
-2017-03-06 03:00:00,8351.0
-2017-03-06 04:00:00,8275.0
-2017-03-06 05:00:00,8319.0
-2017-03-06 06:00:00,8621.0
-2017-03-06 07:00:00,9367.0
-2017-03-06 08:00:00,10276.0
-2017-03-06 09:00:00,10757.0
-2017-03-06 10:00:00,11077.0
-2017-03-06 11:00:00,11135.0
-2017-03-06 12:00:00,11182.0
-2017-03-06 13:00:00,11193.0
-2017-03-06 14:00:00,11152.0
-2017-03-06 15:00:00,11170.0
-2017-03-06 16:00:00,11101.0
-2017-03-06 17:00:00,11020.0
-2017-03-06 18:00:00,11079.0
-2017-03-06 19:00:00,11378.0
-2017-03-06 20:00:00,11544.0
-2017-03-06 21:00:00,11334.0
-2017-03-06 22:00:00,10997.0
-2017-03-06 23:00:00,10509.0
-2017-03-07 00:00:00,9771.0
-2017-03-05 01:00:00,9794.0
-2017-03-05 02:00:00,9425.0
-2017-03-05 03:00:00,9183.0
-2017-03-05 04:00:00,9056.0
-2017-03-05 05:00:00,8979.0
-2017-03-05 06:00:00,8999.0
-2017-03-05 07:00:00,9172.0
-2017-03-05 08:00:00,9188.0
-2017-03-05 09:00:00,9245.0
-2017-03-05 10:00:00,9419.0
-2017-03-05 11:00:00,9565.0
-2017-03-05 12:00:00,9521.0
-2017-03-05 13:00:00,9458.0
-2017-03-05 14:00:00,9408.0
-2017-03-05 15:00:00,9318.0
-2017-03-05 16:00:00,9282.0
-2017-03-05 17:00:00,9278.0
-2017-03-05 18:00:00,9458.0
-2017-03-05 19:00:00,9742.0
-2017-03-05 20:00:00,10315.0
-2017-03-05 21:00:00,10251.0
-2017-03-05 22:00:00,10063.0
-2017-03-05 23:00:00,9698.0
-2017-03-06 00:00:00,9259.0
-2017-03-04 01:00:00,10174.0
-2017-03-04 02:00:00,9761.0
-2017-03-04 03:00:00,9563.0
-2017-03-04 04:00:00,9405.0
-2017-03-04 05:00:00,9377.0
-2017-03-04 06:00:00,9476.0
-2017-03-04 07:00:00,9794.0
-2017-03-04 08:00:00,10099.0
-2017-03-04 09:00:00,10290.0
-2017-03-04 10:00:00,10550.0
-2017-03-04 11:00:00,10632.0
-2017-03-04 12:00:00,10597.0
-2017-03-04 13:00:00,10401.0
-2017-03-04 14:00:00,10209.0
-2017-03-04 15:00:00,10013.0
-2017-03-04 16:00:00,9867.0
-2017-03-04 17:00:00,9794.0
-2017-03-04 18:00:00,9877.0
-2017-03-04 19:00:00,10299.0
-2017-03-04 20:00:00,11020.0
-2017-03-04 21:00:00,11003.0
-2017-03-04 22:00:00,10926.0
-2017-03-04 23:00:00,10672.0
-2017-03-05 00:00:00,10237.0
-2017-03-03 01:00:00,10366.0
-2017-03-03 02:00:00,9984.0
-2017-03-03 03:00:00,9805.0
-2017-03-03 04:00:00,9720.0
-2017-03-03 05:00:00,9723.0
-2017-03-03 06:00:00,10007.0
-2017-03-03 07:00:00,10763.0
-2017-03-03 08:00:00,11630.0
-2017-03-03 09:00:00,11991.0
-2017-03-03 10:00:00,12101.0
-2017-03-03 11:00:00,12115.0
-2017-03-03 12:00:00,12079.0
-2017-03-03 13:00:00,11967.0
-2017-03-03 14:00:00,11814.0
-2017-03-03 15:00:00,11706.0
-2017-03-03 16:00:00,11485.0
-2017-03-03 17:00:00,11315.0
-2017-03-03 18:00:00,11324.0
-2017-03-03 19:00:00,11725.0
-2017-03-03 20:00:00,12220.0
-2017-03-03 21:00:00,12052.0
-2017-03-03 22:00:00,11772.0
-2017-03-03 23:00:00,11395.0
-2017-03-04 00:00:00,10775.0
-2017-03-02 01:00:00,10061.0
-2017-03-02 02:00:00,9641.0
-2017-03-02 03:00:00,9423.0
-2017-03-02 04:00:00,9308.0
-2017-03-02 05:00:00,9316.0
-2017-03-02 06:00:00,9593.0
-2017-03-02 07:00:00,10287.0
-2017-03-02 08:00:00,11240.0
-2017-03-02 09:00:00,11690.0
-2017-03-02 10:00:00,11855.0
-2017-03-02 11:00:00,11791.0
-2017-03-02 12:00:00,11744.0
-2017-03-02 13:00:00,11746.0
-2017-03-02 14:00:00,11816.0
-2017-03-02 15:00:00,11831.0
-2017-03-02 16:00:00,11799.0
-2017-03-02 17:00:00,11820.0
-2017-03-02 18:00:00,11878.0
-2017-03-02 19:00:00,12170.0
-2017-03-02 20:00:00,12487.0
-2017-03-02 21:00:00,12366.0
-2017-03-02 22:00:00,12106.0
-2017-03-02 23:00:00,11651.0
-2017-03-03 00:00:00,10946.0
-2017-03-01 01:00:00,9285.0
-2017-03-01 02:00:00,8782.0
-2017-03-01 03:00:00,8517.0
-2017-03-01 04:00:00,8381.0
-2017-03-01 05:00:00,8335.0
-2017-03-01 06:00:00,8615.0
-2017-03-01 07:00:00,9343.0
-2017-03-01 08:00:00,10378.0
-2017-03-01 09:00:00,10996.0
-2017-03-01 10:00:00,11279.0
-2017-03-01 11:00:00,11428.0
-2017-03-01 12:00:00,11579.0
-2017-03-01 13:00:00,11597.0
-2017-03-01 14:00:00,11593.0
-2017-03-01 15:00:00,11680.0
-2017-03-01 16:00:00,11650.0
-2017-03-01 17:00:00,11700.0
-2017-03-01 18:00:00,11860.0
-2017-03-01 19:00:00,12204.0
-2017-03-01 20:00:00,12437.0
-2017-03-01 21:00:00,12264.0
-2017-03-01 22:00:00,11959.0
-2017-03-01 23:00:00,11459.0
-2017-03-02 00:00:00,10700.0
-2017-02-28 01:00:00,9356.0
-2017-02-28 02:00:00,8960.0
-2017-02-28 03:00:00,8723.0
-2017-02-28 04:00:00,8622.0
-2017-02-28 05:00:00,8575.0
-2017-02-28 06:00:00,8763.0
-2017-02-28 07:00:00,9462.0
-2017-02-28 08:00:00,10354.0
-2017-02-28 09:00:00,10796.0
-2017-02-28 10:00:00,11065.0
-2017-02-28 11:00:00,11131.0
-2017-02-28 12:00:00,11216.0
-2017-02-28 13:00:00,11186.0
-2017-02-28 14:00:00,11120.0
-2017-02-28 15:00:00,11121.0
-2017-02-28 16:00:00,11017.0
-2017-02-28 17:00:00,11007.0
-2017-02-28 18:00:00,11182.0
-2017-02-28 19:00:00,11639.0
-2017-02-28 20:00:00,11595.0
-2017-02-28 21:00:00,11328.0
-2017-02-28 22:00:00,10994.0
-2017-02-28 23:00:00,10552.0
-2017-03-01 00:00:00,9869.0
-2017-02-27 01:00:00,9218.0
-2017-02-27 02:00:00,8884.0
-2017-02-27 03:00:00,8783.0
-2017-02-27 04:00:00,8664.0
-2017-02-27 05:00:00,8718.0
-2017-02-27 06:00:00,9036.0
-2017-02-27 07:00:00,9864.0
-2017-02-27 08:00:00,10862.0
-2017-02-27 09:00:00,11237.0
-2017-02-27 10:00:00,11299.0
-2017-02-27 11:00:00,11234.0
-2017-02-27 12:00:00,11182.0
-2017-02-27 13:00:00,11079.0
-2017-02-27 14:00:00,11012.0
-2017-02-27 15:00:00,10938.0
-2017-02-27 16:00:00,10788.0
-2017-02-27 17:00:00,10705.0
-2017-02-27 18:00:00,10779.0
-2017-02-27 19:00:00,11174.0
-2017-02-27 20:00:00,11534.0
-2017-02-27 21:00:00,11410.0
-2017-02-27 22:00:00,11162.0
-2017-02-27 23:00:00,10692.0
-2017-02-28 00:00:00,9967.0
-2017-02-26 01:00:00,10032.0
-2017-02-26 02:00:00,9684.0
-2017-02-26 03:00:00,9418.0
-2017-02-26 04:00:00,9357.0
-2017-02-26 05:00:00,9241.0
-2017-02-26 06:00:00,9288.0
-2017-02-26 07:00:00,9361.0
-2017-02-26 08:00:00,9620.0
-2017-02-26 09:00:00,9600.0
-2017-02-26 10:00:00,9846.0
-2017-02-26 11:00:00,10023.0
-2017-02-26 12:00:00,9932.0
-2017-02-26 13:00:00,9932.0
-2017-02-26 14:00:00,9673.0
-2017-02-26 15:00:00,9534.0
-2017-02-26 16:00:00,9373.0
-2017-02-26 17:00:00,9347.0
-2017-02-26 18:00:00,9461.0
-2017-02-26 19:00:00,10044.0
-2017-02-26 20:00:00,10641.0
-2017-02-26 21:00:00,10530.0
-2017-02-26 22:00:00,10373.0
-2017-02-26 23:00:00,10049.0
-2017-02-27 00:00:00,9640.0
-2017-02-25 01:00:00,9781.0
-2017-02-25 02:00:00,9420.0
-2017-02-25 03:00:00,9195.0
-2017-02-25 04:00:00,9025.0
-2017-02-25 05:00:00,9039.0
-2017-02-25 06:00:00,9173.0
-2017-02-25 07:00:00,9564.0
-2017-02-25 08:00:00,10031.0
-2017-02-25 09:00:00,10280.0
-2017-02-25 10:00:00,10791.0
-2017-02-25 11:00:00,11081.0
-2017-02-25 12:00:00,11211.0
-2017-02-25 13:00:00,11119.0
-2017-02-25 14:00:00,10989.0
-2017-02-25 15:00:00,10802.0
-2017-02-25 16:00:00,10676.0
-2017-02-25 17:00:00,10709.0
-2017-02-25 18:00:00,10713.0
-2017-02-25 19:00:00,11133.0
-2017-02-25 20:00:00,11509.0
-2017-02-25 21:00:00,11441.0
-2017-02-25 22:00:00,11230.0
-2017-02-25 23:00:00,10982.0
-2017-02-26 00:00:00,10542.0
-2017-02-24 01:00:00,9599.0
-2017-02-24 02:00:00,9201.0
-2017-02-24 03:00:00,8965.0
-2017-02-24 04:00:00,8755.0
-2017-02-24 05:00:00,8768.0
-2017-02-24 06:00:00,8946.0
-2017-02-24 07:00:00,9629.0
-2017-02-24 08:00:00,10637.0
-2017-02-24 09:00:00,11124.0
-2017-02-24 10:00:00,11364.0
-2017-02-24 11:00:00,11553.0
-2017-02-24 12:00:00,11679.0
-2017-02-24 13:00:00,11626.0
-2017-02-24 14:00:00,11613.0
-2017-02-24 15:00:00,11463.0
-2017-02-24 16:00:00,11373.0
-2017-02-24 17:00:00,11294.0
-2017-02-24 18:00:00,11382.0
-2017-02-24 19:00:00,11649.0
-2017-02-24 20:00:00,11741.0
-2017-02-24 21:00:00,11463.0
-2017-02-24 22:00:00,11276.0
-2017-02-24 23:00:00,10893.0
-2017-02-25 00:00:00,10320.0
-2017-02-23 01:00:00,8943.0
-2017-02-23 02:00:00,8502.0
-2017-02-23 03:00:00,8236.0
-2017-02-23 04:00:00,8093.0
-2017-02-23 05:00:00,8067.0
-2017-02-23 06:00:00,8231.0
-2017-02-23 07:00:00,8902.0
-2017-02-23 08:00:00,9841.0
-2017-02-23 09:00:00,10268.0
-2017-02-23 10:00:00,10470.0
-2017-02-23 11:00:00,10655.0
-2017-02-23 12:00:00,10819.0
-2017-02-23 13:00:00,10916.0
-2017-02-23 14:00:00,10962.0
-2017-02-23 15:00:00,11091.0
-2017-02-23 16:00:00,11035.0
-2017-02-23 17:00:00,11096.0
-2017-02-23 18:00:00,11356.0
-2017-02-23 19:00:00,11749.0
-2017-02-23 20:00:00,11852.0
-2017-02-23 21:00:00,11691.0
-2017-02-23 22:00:00,11423.0
-2017-02-23 23:00:00,10917.0
-2017-02-24 00:00:00,10196.0
-2017-02-22 01:00:00,9018.0
-2017-02-22 02:00:00,8654.0
-2017-02-22 03:00:00,8374.0
-2017-02-22 04:00:00,8257.0
-2017-02-22 05:00:00,8225.0
-2017-02-22 06:00:00,8442.0
-2017-02-22 07:00:00,9020.0
-2017-02-22 08:00:00,10036.0
-2017-02-22 09:00:00,10477.0
-2017-02-22 10:00:00,10723.0
-2017-02-22 11:00:00,10826.0
-2017-02-22 12:00:00,10900.0
-2017-02-22 13:00:00,10867.0
-2017-02-22 14:00:00,10855.0
-2017-02-22 15:00:00,10858.0
-2017-02-22 16:00:00,10795.0
-2017-02-22 17:00:00,10748.0
-2017-02-22 18:00:00,10686.0
-2017-02-22 19:00:00,10927.0
-2017-02-22 20:00:00,11331.0
-2017-02-22 21:00:00,11133.0
-2017-02-22 22:00:00,10825.0
-2017-02-22 23:00:00,10318.0
-2017-02-23 00:00:00,9566.0
-2017-02-21 01:00:00,8858.0
-2017-02-21 02:00:00,8403.0
-2017-02-21 03:00:00,8122.0
-2017-02-21 04:00:00,7995.0
-2017-02-21 05:00:00,8008.0
-2017-02-21 06:00:00,8251.0
-2017-02-21 07:00:00,8903.0
-2017-02-21 08:00:00,9923.0
-2017-02-21 09:00:00,10435.0
-2017-02-21 10:00:00,10686.0
-2017-02-21 11:00:00,10797.0
-2017-02-21 12:00:00,10878.0
-2017-02-21 13:00:00,10896.0
-2017-02-21 14:00:00,10895.0
-2017-02-21 15:00:00,10975.0
-2017-02-21 16:00:00,10890.0
-2017-02-21 17:00:00,10757.0
-2017-02-21 18:00:00,10720.0
-2017-02-21 19:00:00,10982.0
-2017-02-21 20:00:00,11321.0
-2017-02-21 21:00:00,11121.0
-2017-02-21 22:00:00,10774.0
-2017-02-21 23:00:00,10267.0
-2017-02-22 00:00:00,9630.0
-2017-02-20 01:00:00,8529.0
-2017-02-20 02:00:00,8244.0
-2017-02-20 03:00:00,8065.0
-2017-02-20 04:00:00,7991.0
-2017-02-20 05:00:00,8033.0
-2017-02-20 06:00:00,8302.0
-2017-02-20 07:00:00,8917.0
-2017-02-20 08:00:00,9734.0
-2017-02-20 09:00:00,10112.0
-2017-02-20 10:00:00,10350.0
-2017-02-20 11:00:00,10485.0
-2017-02-20 12:00:00,10606.0
-2017-02-20 13:00:00,10665.0
-2017-02-20 14:00:00,10609.0
-2017-02-20 15:00:00,10645.0
-2017-02-20 16:00:00,10554.0
-2017-02-20 17:00:00,10494.0
-2017-02-20 18:00:00,10523.0
-2017-02-20 19:00:00,11023.0
-2017-02-20 20:00:00,11235.0
-2017-02-20 21:00:00,11046.0
-2017-02-20 22:00:00,10681.0
-2017-02-20 23:00:00,10165.0
-2017-02-21 00:00:00,9472.0
-2017-02-19 01:00:00,8474.0
-2017-02-19 02:00:00,8192.0
-2017-02-19 03:00:00,7974.0
-2017-02-19 04:00:00,7886.0
-2017-02-19 05:00:00,7783.0
-2017-02-19 06:00:00,7904.0
-2017-02-19 07:00:00,8060.0
-2017-02-19 08:00:00,8272.0
-2017-02-19 09:00:00,8311.0
-2017-02-19 10:00:00,8460.0
-2017-02-19 11:00:00,8608.0
-2017-02-19 12:00:00,8689.0
-2017-02-19 13:00:00,8728.0
-2017-02-19 14:00:00,8693.0
-2017-02-19 15:00:00,8649.0
-2017-02-19 16:00:00,8612.0
-2017-02-19 17:00:00,8592.0
-2017-02-19 18:00:00,8742.0
-2017-02-19 19:00:00,9278.0
-2017-02-19 20:00:00,9754.0
-2017-02-19 21:00:00,9683.0
-2017-02-19 22:00:00,9547.0
-2017-02-19 23:00:00,9297.0
-2017-02-20 00:00:00,8914.0
-2017-02-18 01:00:00,9146.0
-2017-02-18 02:00:00,8699.0
-2017-02-18 03:00:00,8454.0
-2017-02-18 04:00:00,8299.0
-2017-02-18 05:00:00,8289.0
-2017-02-18 06:00:00,8299.0
-2017-02-18 07:00:00,8672.0
-2017-02-18 08:00:00,9005.0
-2017-02-18 09:00:00,9105.0
-2017-02-18 10:00:00,9335.0
-2017-02-18 11:00:00,9448.0
-2017-02-18 12:00:00,9490.0
-2017-02-18 13:00:00,9421.0
-2017-02-18 14:00:00,9354.0
-2017-02-18 15:00:00,9192.0
-2017-02-18 16:00:00,9078.0
-2017-02-18 17:00:00,8994.0
-2017-02-18 18:00:00,9030.0
-2017-02-18 19:00:00,9398.0
-2017-02-18 20:00:00,9806.0
-2017-02-18 21:00:00,9677.0
-2017-02-18 22:00:00,9546.0
-2017-02-18 23:00:00,9281.0
-2017-02-19 00:00:00,8871.0
-2017-02-17 01:00:00,9893.0
-2017-02-17 02:00:00,9543.0
-2017-02-17 03:00:00,9298.0
-2017-02-17 04:00:00,9178.0
-2017-02-17 05:00:00,9171.0
-2017-02-17 06:00:00,9461.0
-2017-02-17 07:00:00,10175.0
-2017-02-17 08:00:00,11126.0
-2017-02-17 09:00:00,11376.0
-2017-02-17 10:00:00,11388.0
-2017-02-17 11:00:00,11283.0
-2017-02-17 12:00:00,11179.0
-2017-02-17 13:00:00,11110.0
-2017-02-17 14:00:00,10920.0
-2017-02-17 15:00:00,10855.0
-2017-02-17 16:00:00,10739.0
-2017-02-17 17:00:00,10613.0
-2017-02-17 18:00:00,10554.0
-2017-02-17 19:00:00,10874.0
-2017-02-17 20:00:00,11146.0
-2017-02-17 21:00:00,10950.0
-2017-02-17 22:00:00,10679.0
-2017-02-17 23:00:00,10266.0
-2017-02-18 00:00:00,9753.0
-2017-02-16 01:00:00,10129.0
-2017-02-16 02:00:00,9711.0
-2017-02-16 03:00:00,9514.0
-2017-02-16 04:00:00,9398.0
-2017-02-16 05:00:00,9383.0
-2017-02-16 06:00:00,9655.0
-2017-02-16 07:00:00,10324.0
-2017-02-16 08:00:00,11374.0
-2017-02-16 09:00:00,11784.0
-2017-02-16 10:00:00,11969.0
-2017-02-16 11:00:00,11987.0
-2017-02-16 12:00:00,11902.0
-2017-02-16 13:00:00,11773.0
-2017-02-16 14:00:00,11648.0
-2017-02-16 15:00:00,11603.0
-2017-02-16 16:00:00,11419.0
-2017-02-16 17:00:00,11459.0
-2017-02-16 18:00:00,11623.0
-2017-02-16 19:00:00,12122.0
-2017-02-16 20:00:00,12167.0
-2017-02-16 21:00:00,11963.0
-2017-02-16 22:00:00,11721.0
-2017-02-16 23:00:00,11218.0
-2017-02-17 00:00:00,10523.0
-2017-02-15 01:00:00,9848.0
-2017-02-15 02:00:00,9513.0
-2017-02-15 03:00:00,9351.0
-2017-02-15 04:00:00,9218.0
-2017-02-15 05:00:00,9292.0
-2017-02-15 06:00:00,9628.0
-2017-02-15 07:00:00,10440.0
-2017-02-15 08:00:00,11425.0
-2017-02-15 09:00:00,11836.0
-2017-02-15 10:00:00,11854.0
-2017-02-15 11:00:00,11873.0
-2017-02-15 12:00:00,11885.0
-2017-02-15 13:00:00,11840.0
-2017-02-15 14:00:00,11770.0
-2017-02-15 15:00:00,11697.0
-2017-02-15 16:00:00,11540.0
-2017-02-15 17:00:00,11534.0
-2017-02-15 18:00:00,11607.0
-2017-02-15 19:00:00,12227.0
-2017-02-15 20:00:00,12438.0
-2017-02-15 21:00:00,12255.0
-2017-02-15 22:00:00,11971.0
-2017-02-15 23:00:00,11427.0
-2017-02-16 00:00:00,10762.0
-2017-02-14 01:00:00,9992.0
-2017-02-14 02:00:00,9594.0
-2017-02-14 03:00:00,9370.0
-2017-02-14 04:00:00,9264.0
-2017-02-14 05:00:00,9273.0
-2017-02-14 06:00:00,9569.0
-2017-02-14 07:00:00,10296.0
-2017-02-14 08:00:00,11299.0
-2017-02-14 09:00:00,11640.0
-2017-02-14 10:00:00,11645.0
-2017-02-14 11:00:00,11562.0
-2017-02-14 12:00:00,11517.0
-2017-02-14 13:00:00,11387.0
-2017-02-14 14:00:00,11244.0
-2017-02-14 15:00:00,11190.0
-2017-02-14 16:00:00,11023.0
-2017-02-14 17:00:00,10917.0
-2017-02-14 18:00:00,11016.0
-2017-02-14 19:00:00,11609.0
-2017-02-14 20:00:00,11853.0
-2017-02-14 21:00:00,11769.0
-2017-02-14 22:00:00,11514.0
-2017-02-14 23:00:00,11106.0
-2017-02-15 00:00:00,10474.0
-2017-02-13 01:00:00,9572.0
-2017-02-13 02:00:00,9305.0
-2017-02-13 03:00:00,9181.0
-2017-02-13 04:00:00,9066.0
-2017-02-13 05:00:00,9172.0
-2017-02-13 06:00:00,9512.0
-2017-02-13 07:00:00,10343.0
-2017-02-13 08:00:00,11453.0
-2017-02-13 09:00:00,11832.0
-2017-02-13 10:00:00,11818.0
-2017-02-13 11:00:00,11738.0
-2017-02-13 12:00:00,11672.0
-2017-02-13 13:00:00,11580.0
-2017-02-13 14:00:00,11460.0
-2017-02-13 15:00:00,11369.0
-2017-02-13 16:00:00,11226.0
-2017-02-13 17:00:00,11088.0
-2017-02-13 18:00:00,11212.0
-2017-02-13 19:00:00,11836.0
-2017-02-13 20:00:00,12155.0
-2017-02-13 21:00:00,12012.0
-2017-02-13 22:00:00,11773.0
-2017-02-13 23:00:00,11296.0
-2017-02-14 00:00:00,10661.0
-2017-02-12 01:00:00,9431.0
-2017-02-12 02:00:00,9089.0
-2017-02-12 03:00:00,8849.0
-2017-02-12 04:00:00,8729.0
-2017-02-12 05:00:00,8665.0
-2017-02-12 06:00:00,8666.0
-2017-02-12 07:00:00,8836.0
-2017-02-12 08:00:00,9105.0
-2017-02-12 09:00:00,9160.0
-2017-02-12 10:00:00,9319.0
-2017-02-12 11:00:00,9403.0
-2017-02-12 12:00:00,9478.0
-2017-02-12 13:00:00,9559.0
-2017-02-12 14:00:00,9526.0
-2017-02-12 15:00:00,9476.0
-2017-02-12 16:00:00,9444.0
-2017-02-12 17:00:00,9469.0
-2017-02-12 18:00:00,9680.0
-2017-02-12 19:00:00,10460.0
-2017-02-12 20:00:00,10942.0
-2017-02-12 21:00:00,10890.0
-2017-02-12 22:00:00,10744.0
-2017-02-12 23:00:00,10429.0
-2017-02-13 00:00:00,9976.0
-2017-02-11 01:00:00,10065.0
-2017-02-11 02:00:00,9573.0
-2017-02-11 03:00:00,9311.0
-2017-02-11 04:00:00,9134.0
-2017-02-11 05:00:00,9067.0
-2017-02-11 06:00:00,9161.0
-2017-02-11 07:00:00,9365.0
-2017-02-11 08:00:00,9878.0
-2017-02-11 09:00:00,10064.0
-2017-02-11 10:00:00,10378.0
-2017-02-11 11:00:00,10421.0
-2017-02-11 12:00:00,10399.0
-2017-02-11 13:00:00,10312.0
-2017-02-11 14:00:00,10136.0
-2017-02-11 15:00:00,9940.0
-2017-02-11 16:00:00,9875.0
-2017-02-11 17:00:00,9895.0
-2017-02-11 18:00:00,10059.0
-2017-02-11 19:00:00,10647.0
-2017-02-11 20:00:00,10804.0
-2017-02-11 21:00:00,10725.0
-2017-02-11 22:00:00,10544.0
-2017-02-11 23:00:00,10327.0
-2017-02-12 00:00:00,9899.0
-2017-02-10 01:00:00,11200.0
-2017-02-10 02:00:00,10806.0
-2017-02-10 03:00:00,10587.0
-2017-02-10 04:00:00,10455.0
-2017-02-10 05:00:00,10402.0
-2017-02-10 06:00:00,10694.0
-2017-02-10 07:00:00,11349.0
-2017-02-10 08:00:00,12386.0
-2017-02-10 09:00:00,12834.0
-2017-02-10 10:00:00,12854.0
-2017-02-10 11:00:00,12761.0
-2017-02-10 12:00:00,12719.0
-2017-02-10 13:00:00,12522.0
-2017-02-10 14:00:00,12324.0
-2017-02-10 15:00:00,12109.0
-2017-02-10 16:00:00,11853.0
-2017-02-10 17:00:00,11636.0
-2017-02-10 18:00:00,11746.0
-2017-02-10 19:00:00,12302.0
-2017-02-10 20:00:00,12366.0
-2017-02-10 21:00:00,12136.0
-2017-02-10 22:00:00,11827.0
-2017-02-10 23:00:00,11390.0
-2017-02-11 00:00:00,10740.0
-2017-02-09 01:00:00,10965.0
-2017-02-09 02:00:00,10650.0
-2017-02-09 03:00:00,10499.0
-2017-02-09 04:00:00,10415.0
-2017-02-09 05:00:00,10453.0
-2017-02-09 06:00:00,10772.0
-2017-02-09 07:00:00,11557.0
-2017-02-09 08:00:00,12572.0
-2017-02-09 09:00:00,12947.0
-2017-02-09 10:00:00,12970.0
-2017-02-09 11:00:00,12937.0
-2017-02-09 12:00:00,12870.0
-2017-02-09 13:00:00,12771.0
-2017-02-09 14:00:00,12657.0
-2017-02-09 15:00:00,12578.0
-2017-02-09 16:00:00,12400.0
-2017-02-09 17:00:00,12300.0
-2017-02-09 18:00:00,12459.0
-2017-02-09 19:00:00,13145.0
-2017-02-09 20:00:00,13371.0
-2017-02-09 21:00:00,13265.0
-2017-02-09 22:00:00,13043.0
-2017-02-09 23:00:00,12562.0
-2017-02-10 00:00:00,11841.0
-2017-02-08 01:00:00,10052.0
-2017-02-08 02:00:00,9655.0
-2017-02-08 03:00:00,9454.0
-2017-02-08 04:00:00,9337.0
-2017-02-08 05:00:00,9328.0
-2017-02-08 06:00:00,9631.0
-2017-02-08 07:00:00,10418.0
-2017-02-08 08:00:00,11595.0
-2017-02-08 09:00:00,12071.0
-2017-02-08 10:00:00,12233.0
-2017-02-08 11:00:00,12323.0
-2017-02-08 12:00:00,12448.0
-2017-02-08 13:00:00,12502.0
-2017-02-08 14:00:00,12528.0
-2017-02-08 15:00:00,12526.0
-2017-02-08 16:00:00,12405.0
-2017-02-08 17:00:00,12327.0
-2017-02-08 18:00:00,12392.0
-2017-02-08 19:00:00,12879.0
-2017-02-08 20:00:00,13053.0
-2017-02-08 21:00:00,12910.0
-2017-02-08 22:00:00,12663.0
-2017-02-08 23:00:00,12234.0
-2017-02-09 00:00:00,11551.0
-2017-02-07 01:00:00,9561.0
-2017-02-07 02:00:00,9150.0
-2017-02-07 03:00:00,8951.0
-2017-02-07 04:00:00,8825.0
-2017-02-07 05:00:00,8806.0
-2017-02-07 06:00:00,9047.0
-2017-02-07 07:00:00,9781.0
-2017-02-07 08:00:00,10832.0
-2017-02-07 09:00:00,11401.0
-2017-02-07 10:00:00,11484.0
-2017-02-07 11:00:00,11637.0
-2017-02-07 12:00:00,11705.0
-2017-02-07 13:00:00,11607.0
-2017-02-07 14:00:00,11572.0
-2017-02-07 15:00:00,11592.0
-2017-02-07 16:00:00,11571.0
-2017-02-07 17:00:00,11644.0
-2017-02-07 18:00:00,11839.0
-2017-02-07 19:00:00,12311.0
-2017-02-07 20:00:00,12258.0
-2017-02-07 21:00:00,12085.0
-2017-02-07 22:00:00,11864.0
-2017-02-07 23:00:00,11380.0
-2017-02-08 00:00:00,10716.0
-2017-02-06 01:00:00,9754.0
-2017-02-06 02:00:00,9482.0
-2017-02-06 03:00:00,9328.0
-2017-02-06 04:00:00,9298.0
-2017-02-06 05:00:00,9419.0
-2017-02-06 06:00:00,9724.0
-2017-02-06 07:00:00,10501.0
-2017-02-06 08:00:00,11565.0
-2017-02-06 09:00:00,11963.0
-2017-02-06 10:00:00,11963.0
-2017-02-06 11:00:00,11831.0
-2017-02-06 12:00:00,11698.0
-2017-02-06 13:00:00,11512.0
-2017-02-06 14:00:00,11373.0
-2017-02-06 15:00:00,11263.0
-2017-02-06 16:00:00,11112.0
-2017-02-06 17:00:00,11079.0
-2017-02-06 18:00:00,11413.0
-2017-02-06 19:00:00,11995.0
-2017-02-06 20:00:00,11970.0
-2017-02-06 21:00:00,11765.0
-2017-02-06 22:00:00,11449.0
-2017-02-06 23:00:00,10924.0
-2017-02-07 00:00:00,10229.0
-2017-02-05 01:00:00,10256.0
-2017-02-05 02:00:00,9883.0
-2017-02-05 03:00:00,9652.0
-2017-02-05 04:00:00,9422.0
-2017-02-05 05:00:00,9394.0
-2017-02-05 06:00:00,9423.0
-2017-02-05 07:00:00,9555.0
-2017-02-05 08:00:00,9827.0
-2017-02-05 09:00:00,9829.0
-2017-02-05 10:00:00,9904.0
-2017-02-05 11:00:00,9969.0
-2017-02-05 12:00:00,9994.0
-2017-02-05 13:00:00,10016.0
-2017-02-05 14:00:00,9996.0
-2017-02-05 15:00:00,9944.0
-2017-02-05 16:00:00,9835.0
-2017-02-05 17:00:00,9843.0
-2017-02-05 18:00:00,10114.0
-2017-02-05 19:00:00,10829.0
-2017-02-05 20:00:00,11036.0
-2017-02-05 21:00:00,10925.0
-2017-02-05 22:00:00,10821.0
-2017-02-05 23:00:00,10602.0
-2017-02-06 00:00:00,10238.0
-2017-02-04 01:00:00,11167.0
-2017-02-04 02:00:00,10735.0
-2017-02-04 03:00:00,10549.0
-2017-02-04 04:00:00,10364.0
-2017-02-04 05:00:00,10344.0
-2017-02-04 06:00:00,10393.0
-2017-02-04 07:00:00,10753.0
-2017-02-04 08:00:00,11170.0
-2017-02-04 09:00:00,11322.0
-2017-02-04 10:00:00,11535.0
-2017-02-04 11:00:00,11687.0
-2017-02-04 12:00:00,11767.0
-2017-02-04 13:00:00,11726.0
-2017-02-04 14:00:00,11626.0
-2017-02-04 15:00:00,11477.0
-2017-02-04 16:00:00,11344.0
-2017-02-04 17:00:00,11299.0
-2017-02-04 18:00:00,11507.0
-2017-02-04 19:00:00,12003.0
-2017-02-04 20:00:00,11959.0
-2017-02-04 21:00:00,11796.0
-2017-02-04 22:00:00,11543.0
-2017-02-04 23:00:00,11269.0
-2017-02-05 00:00:00,10726.0
-2017-02-03 01:00:00,11305.0
-2017-02-03 02:00:00,10909.0
-2017-02-03 03:00:00,10684.0
-2017-02-03 04:00:00,10575.0
-2017-02-03 05:00:00,10613.0
-2017-02-03 06:00:00,10844.0
-2017-02-03 07:00:00,11552.0
-2017-02-03 08:00:00,12530.0
-2017-02-03 09:00:00,12987.0
-2017-02-03 10:00:00,13018.0
-2017-02-03 11:00:00,12882.0
-2017-02-03 12:00:00,12817.0
-2017-02-03 13:00:00,12658.0
-2017-02-03 14:00:00,12490.0
-2017-02-03 15:00:00,12410.0
-2017-02-03 16:00:00,12227.0
-2017-02-03 17:00:00,12098.0
-2017-02-03 18:00:00,12267.0
-2017-02-03 19:00:00,12926.0
-2017-02-03 20:00:00,13034.0
-2017-02-03 21:00:00,12847.0
-2017-02-03 22:00:00,12640.0
-2017-02-03 23:00:00,12314.0
-2017-02-04 00:00:00,11732.0
-2017-02-02 01:00:00,10880.0
-2017-02-02 02:00:00,10551.0
-2017-02-02 03:00:00,10404.0
-2017-02-02 04:00:00,10355.0
-2017-02-02 05:00:00,10396.0
-2017-02-02 06:00:00,10696.0
-2017-02-02 07:00:00,11401.0
-2017-02-02 08:00:00,12497.0
-2017-02-02 09:00:00,12868.0
-2017-02-02 10:00:00,12884.0
-2017-02-02 11:00:00,12862.0
-2017-02-02 12:00:00,12810.0
-2017-02-02 13:00:00,12707.0
-2017-02-02 14:00:00,12594.0
-2017-02-02 15:00:00,12518.0
-2017-02-02 16:00:00,12460.0
-2017-02-02 17:00:00,12520.0
-2017-02-02 18:00:00,12683.0
-2017-02-02 19:00:00,13361.0
-2017-02-02 20:00:00,13427.0
-2017-02-02 21:00:00,13275.0
-2017-02-02 22:00:00,13065.0
-2017-02-02 23:00:00,12585.0
-2017-02-03 00:00:00,11869.0
-2017-02-01 01:00:00,10366.0
-2017-02-01 02:00:00,9909.0
-2017-02-01 03:00:00,9669.0
-2017-02-01 04:00:00,9510.0
-2017-02-01 05:00:00,9514.0
-2017-02-01 06:00:00,9796.0
-2017-02-01 07:00:00,10513.0
-2017-02-01 08:00:00,11592.0
-2017-02-01 09:00:00,12014.0
-2017-02-01 10:00:00,12092.0
-2017-02-01 11:00:00,12140.0
-2017-02-01 12:00:00,12132.0
-2017-02-01 13:00:00,11985.0
-2017-02-01 14:00:00,11971.0
-2017-02-01 15:00:00,12013.0
-2017-02-01 16:00:00,11990.0
-2017-02-01 17:00:00,11920.0
-2017-02-01 18:00:00,12114.0
-2017-02-01 19:00:00,12760.0
-2017-02-01 20:00:00,12894.0
-2017-02-01 21:00:00,12768.0
-2017-02-01 22:00:00,12499.0
-2017-02-01 23:00:00,12087.0
-2017-02-02 00:00:00,11453.0
-2017-01-31 01:00:00,10529.0
-2017-01-31 02:00:00,10109.0
-2017-01-31 03:00:00,9815.0
-2017-01-31 04:00:00,9748.0
-2017-01-31 05:00:00,9735.0
-2017-01-31 06:00:00,9958.0
-2017-01-31 07:00:00,10645.0
-2017-01-31 08:00:00,11719.0
-2017-01-31 09:00:00,12298.0
-2017-01-31 10:00:00,12382.0
-2017-01-31 11:00:00,12440.0
-2017-01-31 12:00:00,12486.0
-2017-01-31 13:00:00,12490.0
-2017-01-31 14:00:00,12389.0
-2017-01-31 15:00:00,12343.0
-2017-01-31 16:00:00,12086.0
-2017-01-31 17:00:00,12130.0
-2017-01-31 18:00:00,12308.0
-2017-01-31 19:00:00,12785.0
-2017-01-31 20:00:00,12735.0
-2017-01-31 21:00:00,12497.0
-2017-01-31 22:00:00,12224.0
-2017-01-31 23:00:00,11691.0
-2017-02-01 00:00:00,10996.0
-2017-01-30 01:00:00,10393.0
-2017-01-30 02:00:00,10145.0
-2017-01-30 03:00:00,10031.0
-2017-01-30 04:00:00,10003.0
-2017-01-30 05:00:00,10079.0
-2017-01-30 06:00:00,10506.0
-2017-01-30 07:00:00,11263.0
-2017-01-30 08:00:00,12420.0
-2017-01-30 09:00:00,12850.0
-2017-01-30 10:00:00,12889.0
-2017-01-30 11:00:00,12728.0
-2017-01-30 12:00:00,12706.0
-2017-01-30 13:00:00,12640.0
-2017-01-30 14:00:00,12617.0
-2017-01-30 15:00:00,12710.0
-2017-01-30 16:00:00,12678.0
-2017-01-30 17:00:00,12601.0
-2017-01-30 18:00:00,12959.0
-2017-01-30 19:00:00,13457.0
-2017-01-30 20:00:00,13267.0
-2017-01-30 21:00:00,12973.0
-2017-01-30 22:00:00,12631.0
-2017-01-30 23:00:00,12072.0
-2017-01-31 00:00:00,11272.0
-2017-01-29 01:00:00,10278.0
-2017-01-29 02:00:00,9955.0
-2017-01-29 03:00:00,9629.0
-2017-01-29 04:00:00,9460.0
-2017-01-29 05:00:00,9395.0
-2017-01-29 06:00:00,9445.0
-2017-01-29 07:00:00,9527.0
-2017-01-29 08:00:00,9863.0
-2017-01-29 09:00:00,10015.0
-2017-01-29 10:00:00,10276.0
-2017-01-29 11:00:00,10511.0
-2017-01-29 12:00:00,10712.0
-2017-01-29 13:00:00,10774.0
-2017-01-29 14:00:00,10850.0
-2017-01-29 15:00:00,10827.0
-2017-01-29 16:00:00,10906.0
-2017-01-29 17:00:00,10998.0
-2017-01-29 18:00:00,11424.0
-2017-01-29 19:00:00,11967.0
-2017-01-29 20:00:00,11977.0
-2017-01-29 21:00:00,11908.0
-2017-01-29 22:00:00,11678.0
-2017-01-29 23:00:00,11328.0
-2017-01-30 00:00:00,10890.0
-2017-01-28 01:00:00,10962.0
-2017-01-28 02:00:00,10510.0
-2017-01-28 03:00:00,10265.0
-2017-01-28 04:00:00,10058.0
-2017-01-28 05:00:00,9984.0
-2017-01-28 06:00:00,10020.0
-2017-01-28 07:00:00,10248.0
-2017-01-28 08:00:00,10637.0
-2017-01-28 09:00:00,10973.0
-2017-01-28 10:00:00,11264.0
-2017-01-28 11:00:00,11501.0
-2017-01-28 12:00:00,11644.0
-2017-01-28 13:00:00,11638.0
-2017-01-28 14:00:00,11580.0
-2017-01-28 15:00:00,11389.0
-2017-01-28 16:00:00,11300.0
-2017-01-28 17:00:00,11239.0
-2017-01-28 18:00:00,11573.0
-2017-01-28 19:00:00,11958.0
-2017-01-28 20:00:00,11932.0
-2017-01-28 21:00:00,11784.0
-2017-01-28 22:00:00,11585.0
-2017-01-28 23:00:00,11238.0
-2017-01-29 00:00:00,10798.0
-2017-01-27 01:00:00,10437.0
-2017-01-27 02:00:00,10076.0
-2017-01-27 03:00:00,9847.0
-2017-01-27 04:00:00,9766.0
-2017-01-27 05:00:00,9790.0
-2017-01-27 06:00:00,10045.0
-2017-01-27 07:00:00,10740.0
-2017-01-27 08:00:00,11812.0
-2017-01-27 09:00:00,12469.0
-2017-01-27 10:00:00,12610.0
-2017-01-27 11:00:00,12777.0
-2017-01-27 12:00:00,12873.0
-2017-01-27 13:00:00,12851.0
-2017-01-27 14:00:00,12773.0
-2017-01-27 15:00:00,12765.0
-2017-01-27 16:00:00,12749.0
-2017-01-27 17:00:00,12752.0
-2017-01-27 18:00:00,12954.0
-2017-01-27 19:00:00,13351.0
-2017-01-27 20:00:00,13160.0
-2017-01-27 21:00:00,12905.0
-2017-01-27 22:00:00,12627.0
-2017-01-27 23:00:00,12218.0
-2017-01-28 00:00:00,11554.0
-2017-01-26 01:00:00,10307.0
-2017-01-26 02:00:00,9869.0
-2017-01-26 03:00:00,9608.0
-2017-01-26 04:00:00,9505.0
-2017-01-26 05:00:00,9457.0
-2017-01-26 06:00:00,9775.0
-2017-01-26 07:00:00,10536.0
-2017-01-26 08:00:00,11625.0
-2017-01-26 09:00:00,12158.0
-2017-01-26 10:00:00,12290.0
-2017-01-26 11:00:00,12343.0
-2017-01-26 12:00:00,12443.0
-2017-01-26 13:00:00,12451.0
-2017-01-26 14:00:00,12388.0
-2017-01-26 15:00:00,12360.0
-2017-01-26 16:00:00,12287.0
-2017-01-26 17:00:00,12290.0
-2017-01-26 18:00:00,12533.0
-2017-01-26 19:00:00,12973.0
-2017-01-26 20:00:00,12870.0
-2017-01-26 21:00:00,12632.0
-2017-01-26 22:00:00,12356.0
-2017-01-26 23:00:00,11821.0
-2017-01-27 00:00:00,11097.0
-2017-01-25 01:00:00,10165.0
-2017-01-25 02:00:00,9755.0
-2017-01-25 03:00:00,9514.0
-2017-01-25 04:00:00,9441.0
-2017-01-25 05:00:00,9414.0
-2017-01-25 06:00:00,9685.0
-2017-01-25 07:00:00,10381.0
-2017-01-25 08:00:00,11397.0
-2017-01-25 09:00:00,11901.0
-2017-01-25 10:00:00,11961.0
-2017-01-25 11:00:00,12003.0
-2017-01-25 12:00:00,12064.0
-2017-01-25 13:00:00,12060.0
-2017-01-25 14:00:00,12116.0
-2017-01-25 15:00:00,12169.0
-2017-01-25 16:00:00,12172.0
-2017-01-25 17:00:00,12175.0
-2017-01-25 18:00:00,12481.0
-2017-01-25 19:00:00,12794.0
-2017-01-25 20:00:00,12624.0
-2017-01-25 21:00:00,12425.0
-2017-01-25 22:00:00,12131.0
-2017-01-25 23:00:00,11592.0
-2017-01-26 00:00:00,10928.0
-2017-01-24 01:00:00,9845.0
-2017-01-24 02:00:00,9427.0
-2017-01-24 03:00:00,9159.0
-2017-01-24 04:00:00,9058.0
-2017-01-24 05:00:00,9076.0
-2017-01-24 06:00:00,9368.0
-2017-01-24 07:00:00,10043.0
-2017-01-24 08:00:00,11089.0
-2017-01-24 09:00:00,11785.0
-2017-01-24 10:00:00,11928.0
-2017-01-24 11:00:00,11994.0
-2017-01-24 12:00:00,12062.0
-2017-01-24 13:00:00,12090.0
-2017-01-24 14:00:00,12009.0
-2017-01-24 15:00:00,11999.0
-2017-01-24 16:00:00,11954.0
-2017-01-24 17:00:00,11905.0
-2017-01-24 18:00:00,12156.0
-2017-01-24 19:00:00,12640.0
-2017-01-24 20:00:00,12532.0
-2017-01-24 21:00:00,12346.0
-2017-01-24 22:00:00,12023.0
-2017-01-24 23:00:00,11532.0
-2017-01-25 00:00:00,10834.0
-2017-01-23 01:00:00,9561.0
-2017-01-23 02:00:00,8914.0
-2017-01-23 03:00:00,8781.0
-2017-01-23 04:00:00,8687.0
-2017-01-23 05:00:00,8771.0
-2017-01-23 06:00:00,9052.0
-2017-01-23 07:00:00,9872.0
-2017-01-23 08:00:00,11056.0
-2017-01-23 09:00:00,11711.0
-2017-01-23 10:00:00,11737.0
-2017-01-23 11:00:00,11866.0
-2017-01-23 12:00:00,11949.0
-2017-01-23 13:00:00,11891.0
-2017-01-23 14:00:00,11870.0
-2017-01-23 15:00:00,11839.0
-2017-01-23 16:00:00,11691.0
-2017-01-23 17:00:00,11608.0
-2017-01-23 18:00:00,11886.0
-2017-01-23 19:00:00,12371.0
-2017-01-23 20:00:00,12239.0
-2017-01-23 21:00:00,12013.0
-2017-01-23 22:00:00,11720.0
-2017-01-23 23:00:00,11213.0
-2017-01-24 00:00:00,10516.0
-2017-01-22 01:00:00,9009.0
-2017-01-22 02:00:00,8673.0
-2017-01-22 03:00:00,8416.0
-2017-01-22 04:00:00,8272.0
-2017-01-22 05:00:00,8218.0
-2017-01-22 06:00:00,8289.0
-2017-01-22 07:00:00,8401.0
-2017-01-22 08:00:00,8720.0
-2017-01-22 09:00:00,8813.0
-2017-01-22 10:00:00,9079.0
-2017-01-22 11:00:00,9300.0
-2017-01-22 12:00:00,9440.0
-2017-01-22 13:00:00,9610.0
-2017-01-22 14:00:00,9668.0
-2017-01-22 15:00:00,9654.0
-2017-01-22 16:00:00,9678.0
-2017-01-22 17:00:00,9744.0
-2017-01-22 18:00:00,10187.0
-2017-01-22 19:00:00,10840.0
-2017-01-22 20:00:00,10890.0
-2017-01-22 21:00:00,10739.0
-2017-01-22 22:00:00,10567.0
-2017-01-22 23:00:00,10172.0
-2017-01-23 00:00:00,9708.0
-2017-01-21 01:00:00,9855.0
-2017-01-21 02:00:00,9405.0
-2017-01-21 03:00:00,9063.0
-2017-01-21 04:00:00,8905.0
-2017-01-21 05:00:00,8765.0
-2017-01-21 06:00:00,8865.0
-2017-01-21 07:00:00,9080.0
-2017-01-21 08:00:00,9496.0
-2017-01-21 09:00:00,9754.0
-2017-01-21 10:00:00,9869.0
-2017-01-21 11:00:00,10007.0
-2017-01-21 12:00:00,10016.0
-2017-01-21 13:00:00,9909.0
-2017-01-21 14:00:00,9812.0
-2017-01-21 15:00:00,9635.0
-2017-01-21 16:00:00,9483.0
-2017-01-21 17:00:00,9414.0
-2017-01-21 18:00:00,9613.0
-2017-01-21 19:00:00,10302.0
-2017-01-21 20:00:00,10347.0
-2017-01-21 21:00:00,10246.0
-2017-01-21 22:00:00,10098.0
-2017-01-21 23:00:00,9858.0
-2017-01-22 00:00:00,9477.0
-2017-01-20 01:00:00,10184.0
-2017-01-20 02:00:00,9768.0
-2017-01-20 03:00:00,9509.0
-2017-01-20 04:00:00,9378.0
-2017-01-20 05:00:00,9351.0
-2017-01-20 06:00:00,9593.0
-2017-01-20 07:00:00,10230.0
-2017-01-20 08:00:00,11236.0
-2017-01-20 09:00:00,11862.0
-2017-01-20 10:00:00,11950.0
-2017-01-20 11:00:00,12040.0
-2017-01-20 12:00:00,12035.0
-2017-01-20 13:00:00,11980.0
-2017-01-20 14:00:00,11909.0
-2017-01-20 15:00:00,11831.0
-2017-01-20 16:00:00,11765.0
-2017-01-20 17:00:00,11739.0
-2017-01-20 18:00:00,12033.0
-2017-01-20 19:00:00,12342.0
-2017-01-20 20:00:00,12133.0
-2017-01-20 21:00:00,11904.0
-2017-01-20 22:00:00,11508.0
-2017-01-20 23:00:00,11168.0
-2017-01-21 00:00:00,10509.0
-2017-01-19 01:00:00,10470.0
-2017-01-19 02:00:00,10030.0
-2017-01-19 03:00:00,9780.0
-2017-01-19 04:00:00,9599.0
-2017-01-19 05:00:00,9562.0
-2017-01-19 06:00:00,9780.0
-2017-01-19 07:00:00,10479.0
-2017-01-19 08:00:00,11525.0
-2017-01-19 09:00:00,12060.0
-2017-01-19 10:00:00,12089.0
-2017-01-19 11:00:00,12105.0
-2017-01-19 12:00:00,12145.0
-2017-01-19 13:00:00,12083.0
-2017-01-19 14:00:00,11966.0
-2017-01-19 15:00:00,11976.0
-2017-01-19 16:00:00,11917.0
-2017-01-19 17:00:00,12011.0
-2017-01-19 18:00:00,12393.0
-2017-01-19 19:00:00,12756.0
-2017-01-19 20:00:00,12559.0
-2017-01-19 21:00:00,12337.0
-2017-01-19 22:00:00,12115.0
-2017-01-19 23:00:00,11580.0
-2017-01-20 00:00:00,10827.0
-2017-01-18 01:00:00,10305.0
-2017-01-18 02:00:00,9865.0
-2017-01-18 03:00:00,9649.0
-2017-01-18 04:00:00,9480.0
-2017-01-18 05:00:00,9498.0
-2017-01-18 06:00:00,9774.0
-2017-01-18 07:00:00,10467.0
-2017-01-18 08:00:00,11521.0
-2017-01-18 09:00:00,12156.0
-2017-01-18 10:00:00,12199.0
-2017-01-18 11:00:00,12243.0
-2017-01-18 12:00:00,12285.0
-2017-01-18 13:00:00,12330.0
-2017-01-18 14:00:00,12339.0
-2017-01-18 15:00:00,12341.0
-2017-01-18 16:00:00,12159.0
-2017-01-18 17:00:00,12045.0
-2017-01-18 18:00:00,12391.0
-2017-01-18 19:00:00,12910.0
-2017-01-18 20:00:00,12731.0
-2017-01-18 21:00:00,12571.0
-2017-01-18 22:00:00,12273.0
-2017-01-18 23:00:00,11775.0
-2017-01-19 00:00:00,11087.0
-2017-01-17 01:00:00,10210.0
-2017-01-17 02:00:00,9802.0
-2017-01-17 03:00:00,9587.0
-2017-01-17 04:00:00,9394.0
-2017-01-17 05:00:00,9281.0
-2017-01-17 06:00:00,9548.0
-2017-01-17 07:00:00,10273.0
-2017-01-17 08:00:00,11376.0
-2017-01-17 09:00:00,12004.0
-2017-01-17 10:00:00,12021.0
-2017-01-17 11:00:00,12110.0
-2017-01-17 12:00:00,12193.0
-2017-01-17 13:00:00,12156.0
-2017-01-17 14:00:00,12161.0
-2017-01-17 15:00:00,12151.0
-2017-01-17 16:00:00,12159.0
-2017-01-17 17:00:00,12094.0
-2017-01-17 18:00:00,12526.0
-2017-01-17 19:00:00,12920.0
-2017-01-17 20:00:00,12684.0
-2017-01-17 21:00:00,12505.0
-2017-01-17 22:00:00,12180.0
-2017-01-17 23:00:00,11697.0
-2017-01-18 00:00:00,10990.0
-2017-01-16 01:00:00,10021.0
-2017-01-16 02:00:00,9678.0
-2017-01-16 03:00:00,9486.0
-2017-01-16 04:00:00,9408.0
-2017-01-16 05:00:00,9421.0
-2017-01-16 06:00:00,9619.0
-2017-01-16 07:00:00,10236.0
-2017-01-16 08:00:00,11083.0
-2017-01-16 09:00:00,11646.0
-2017-01-16 10:00:00,11891.0
-2017-01-16 11:00:00,12113.0
-2017-01-16 12:00:00,12316.0
-2017-01-16 13:00:00,12417.0
-2017-01-16 14:00:00,12399.0
-2017-01-16 15:00:00,12479.0
-2017-01-16 16:00:00,12487.0
-2017-01-16 17:00:00,12417.0
-2017-01-16 18:00:00,12774.0
-2017-01-16 19:00:00,12984.0
-2017-01-16 20:00:00,12738.0
-2017-01-16 21:00:00,12507.0
-2017-01-16 22:00:00,12160.0
-2017-01-16 23:00:00,11572.0
-2017-01-17 00:00:00,10888.0
-2017-01-15 01:00:00,10395.0
-2017-01-15 02:00:00,10046.0
-2017-01-15 03:00:00,9849.0
-2017-01-15 04:00:00,9709.0
-2017-01-15 05:00:00,9670.0
-2017-01-15 06:00:00,9713.0
-2017-01-15 07:00:00,9865.0
-2017-01-15 08:00:00,10168.0
-2017-01-15 09:00:00,10271.0
-2017-01-15 10:00:00,10407.0
-2017-01-15 11:00:00,10672.0
-2017-01-15 12:00:00,10700.0
-2017-01-15 13:00:00,10614.0
-2017-01-15 14:00:00,10520.0
-2017-01-15 15:00:00,10363.0
-2017-01-15 16:00:00,10312.0
-2017-01-15 17:00:00,10404.0
-2017-01-15 18:00:00,10905.0
-2017-01-15 19:00:00,11554.0
-2017-01-15 20:00:00,11526.0
-2017-01-15 21:00:00,11418.0
-2017-01-15 22:00:00,11212.0
-2017-01-15 23:00:00,10930.0
-2017-01-16 00:00:00,10492.0
-2017-01-14 01:00:00,11074.0
-2017-01-14 02:00:00,10558.0
-2017-01-14 03:00:00,10296.0
-2017-01-14 04:00:00,10081.0
-2017-01-14 05:00:00,9986.0
-2017-01-14 06:00:00,10059.0
-2017-01-14 07:00:00,10302.0
-2017-01-14 08:00:00,10748.0
-2017-01-14 09:00:00,11014.0
-2017-01-14 10:00:00,11229.0
-2017-01-14 11:00:00,11439.0
-2017-01-14 12:00:00,11563.0
-2017-01-14 13:00:00,11472.0
-2017-01-14 14:00:00,11304.0
-2017-01-14 15:00:00,11049.0
-2017-01-14 16:00:00,10929.0
-2017-01-14 17:00:00,10851.0
-2017-01-14 18:00:00,11127.0
-2017-01-14 19:00:00,11825.0
-2017-01-14 20:00:00,11791.0
-2017-01-14 21:00:00,11711.0
-2017-01-14 22:00:00,11532.0
-2017-01-14 23:00:00,11328.0
-2017-01-15 00:00:00,10863.0
-2017-01-13 01:00:00,11321.0
-2017-01-13 02:00:00,10937.0
-2017-01-13 03:00:00,10715.0
-2017-01-13 04:00:00,10576.0
-2017-01-13 05:00:00,10571.0
-2017-01-13 06:00:00,10842.0
-2017-01-13 07:00:00,11506.0
-2017-01-13 08:00:00,12537.0
-2017-01-13 09:00:00,13074.0
-2017-01-13 10:00:00,13123.0
-2017-01-13 11:00:00,13179.0
-2017-01-13 12:00:00,13243.0
-2017-01-13 13:00:00,13175.0
-2017-01-13 14:00:00,13118.0
-2017-01-13 15:00:00,13077.0
-2017-01-13 16:00:00,12977.0
-2017-01-13 17:00:00,12916.0
-2017-01-13 18:00:00,13278.0
-2017-01-13 19:00:00,13613.0
-2017-01-13 20:00:00,13402.0
-2017-01-13 21:00:00,13127.0
-2017-01-13 22:00:00,12805.0
-2017-01-13 23:00:00,12350.0
-2017-01-14 00:00:00,11693.0
-2017-01-12 01:00:00,10671.0
-2017-01-12 02:00:00,10285.0
-2017-01-12 03:00:00,10092.0
-2017-01-12 04:00:00,9997.0
-2017-01-12 05:00:00,10025.0
-2017-01-12 06:00:00,10327.0
-2017-01-12 07:00:00,11149.0
-2017-01-12 08:00:00,12266.0
-2017-01-12 09:00:00,12968.0
-2017-01-12 10:00:00,13124.0
-2017-01-12 11:00:00,13185.0
-2017-01-12 12:00:00,13288.0
-2017-01-12 13:00:00,13232.0
-2017-01-12 14:00:00,13219.0
-2017-01-12 15:00:00,13204.0
-2017-01-12 16:00:00,13109.0
-2017-01-12 17:00:00,13001.0
-2017-01-12 18:00:00,13288.0
-2017-01-12 19:00:00,13859.0
-2017-01-12 20:00:00,13726.0
-2017-01-12 21:00:00,13497.0
-2017-01-12 22:00:00,13248.0
-2017-01-12 23:00:00,12767.0
-2017-01-13 00:00:00,12049.0
-2017-01-11 01:00:00,11036.0
-2017-01-11 02:00:00,10570.0
-2017-01-11 03:00:00,10322.0
-2017-01-11 04:00:00,10178.0
-2017-01-11 05:00:00,10128.0
-2017-01-11 06:00:00,10353.0
-2017-01-11 07:00:00,11075.0
-2017-01-11 08:00:00,12157.0
-2017-01-11 09:00:00,12769.0
-2017-01-11 10:00:00,12793.0
-2017-01-11 11:00:00,12735.0
-2017-01-11 12:00:00,12772.0
-2017-01-11 13:00:00,12734.0
-2017-01-11 14:00:00,12620.0
-2017-01-11 15:00:00,12585.0
-2017-01-11 16:00:00,12410.0
-2017-01-11 17:00:00,12399.0
-2017-01-11 18:00:00,12789.0
-2017-01-11 19:00:00,13012.0
-2017-01-11 20:00:00,12946.0
-2017-01-11 21:00:00,12807.0
-2017-01-11 22:00:00,12540.0
-2017-01-11 23:00:00,12002.0
-2017-01-12 00:00:00,11348.0
-2017-01-10 01:00:00,11132.0
-2017-01-10 02:00:00,10601.0
-2017-01-10 03:00:00,10310.0
-2017-01-10 04:00:00,10134.0
-2017-01-10 05:00:00,10113.0
-2017-01-10 06:00:00,10274.0
-2017-01-10 07:00:00,10973.0
-2017-01-10 08:00:00,11939.0
-2017-01-10 09:00:00,12682.0
-2017-01-10 10:00:00,12794.0
-2017-01-10 11:00:00,12836.0
-2017-01-10 12:00:00,12934.0
-2017-01-10 13:00:00,12844.0
-2017-01-10 14:00:00,12770.0
-2017-01-10 15:00:00,12700.0
-2017-01-10 16:00:00,12563.0
-2017-01-10 17:00:00,12483.0
-2017-01-10 18:00:00,12927.0
-2017-01-10 19:00:00,13310.0
-2017-01-10 20:00:00,13204.0
-2017-01-10 21:00:00,13148.0
-2017-01-10 22:00:00,12885.0
-2017-01-10 23:00:00,12445.0
-2017-01-11 00:00:00,11776.0
-2017-01-09 01:00:00,11518.0
-2017-01-09 02:00:00,11116.0
-2017-01-09 03:00:00,10919.0
-2017-01-09 04:00:00,10798.0
-2017-01-09 05:00:00,10807.0
-2017-01-09 06:00:00,10991.0
-2017-01-09 07:00:00,11609.0
-2017-01-09 08:00:00,12668.0
-2017-01-09 09:00:00,13214.0
-2017-01-09 10:00:00,13247.0
-2017-01-09 11:00:00,13248.0
-2017-01-09 12:00:00,13255.0
-2017-01-09 13:00:00,13219.0
-2017-01-09 14:00:00,13205.0
-2017-01-09 15:00:00,13090.0
-2017-01-09 16:00:00,13061.0
-2017-01-09 17:00:00,13144.0
-2017-01-09 18:00:00,13638.0
-2017-01-09 19:00:00,13973.0
-2017-01-09 20:00:00,13804.0
-2017-01-09 21:00:00,13622.0
-2017-01-09 22:00:00,13216.0
-2017-01-09 23:00:00,12602.0
-2017-01-10 00:00:00,11888.0
-2017-01-08 01:00:00,12029.0
-2017-01-08 02:00:00,11636.0
-2017-01-08 03:00:00,11406.0
-2017-01-08 04:00:00,11233.0
-2017-01-08 05:00:00,11190.0
-2017-01-08 06:00:00,11215.0
-2017-01-08 07:00:00,11396.0
-2017-01-08 08:00:00,11683.0
-2017-01-08 09:00:00,11763.0
-2017-01-08 10:00:00,11804.0
-2017-01-08 11:00:00,11879.0
-2017-01-08 12:00:00,11871.0
-2017-01-08 13:00:00,11834.0
-2017-01-08 14:00:00,11777.0
-2017-01-08 15:00:00,11664.0
-2017-01-08 16:00:00,11690.0
-2017-01-08 17:00:00,11829.0
-2017-01-08 18:00:00,12509.0
-2017-01-08 19:00:00,13243.0
-2017-01-08 20:00:00,13335.0
-2017-01-08 21:00:00,13181.0
-2017-01-08 22:00:00,13051.0
-2017-01-08 23:00:00,12651.0
-2017-01-09 00:00:00,12044.0
-2017-01-07 01:00:00,12667.0
-2017-01-07 02:00:00,12204.0
-2017-01-07 03:00:00,11951.0
-2017-01-07 04:00:00,11724.0
-2017-01-07 05:00:00,11679.0
-2017-01-07 06:00:00,11716.0
-2017-01-07 07:00:00,12017.0
-2017-01-07 08:00:00,12348.0
-2017-01-07 09:00:00,12573.0
-2017-01-07 10:00:00,12664.0
-2017-01-07 11:00:00,12742.0
-2017-01-07 12:00:00,12755.0
-2017-01-07 13:00:00,12618.0
-2017-01-07 14:00:00,12501.0
-2017-01-07 15:00:00,12304.0
-2017-01-07 16:00:00,12147.0
-2017-01-07 17:00:00,12100.0
-2017-01-07 18:00:00,12615.0
-2017-01-07 19:00:00,13377.0
-2017-01-07 20:00:00,13458.0
-2017-01-07 21:00:00,13358.0
-2017-01-07 22:00:00,13187.0
-2017-01-07 23:00:00,12970.0
-2017-01-08 00:00:00,12551.0
-2017-01-06 01:00:00,12485.0
-2017-01-06 02:00:00,12072.0
-2017-01-06 03:00:00,11820.0
-2017-01-06 04:00:00,11666.0
-2017-01-06 05:00:00,11646.0
-2017-01-06 06:00:00,11903.0
-2017-01-06 07:00:00,12518.0
-2017-01-06 08:00:00,13386.0
-2017-01-06 09:00:00,13946.0
-2017-01-06 10:00:00,13981.0
-2017-01-06 11:00:00,13997.0
-2017-01-06 12:00:00,14022.0
-2017-01-06 13:00:00,13967.0
-2017-01-06 14:00:00,13894.0
-2017-01-06 15:00:00,13851.0
-2017-01-06 16:00:00,13729.0
-2017-01-06 17:00:00,13643.0
-2017-01-06 18:00:00,14064.0
-2017-01-06 19:00:00,14730.0
-2017-01-06 20:00:00,14675.0
-2017-01-06 21:00:00,14490.0
-2017-01-06 22:00:00,14224.0
-2017-01-06 23:00:00,13866.0
-2017-01-07 00:00:00,13231.0
-2017-01-05 01:00:00,12018.0
-2017-01-05 02:00:00,11622.0
-2017-01-05 03:00:00,11363.0
-2017-01-05 04:00:00,11281.0
-2017-01-05 05:00:00,11264.0
-2017-01-05 06:00:00,11527.0
-2017-01-05 07:00:00,12109.0
-2017-01-05 08:00:00,12983.0
-2017-01-05 09:00:00,13550.0
-2017-01-05 10:00:00,13682.0
-2017-01-05 11:00:00,13650.0
-2017-01-05 12:00:00,13683.0
-2017-01-05 13:00:00,13707.0
-2017-01-05 14:00:00,13777.0
-2017-01-05 15:00:00,13772.0
-2017-01-05 16:00:00,13636.0
-2017-01-05 17:00:00,13597.0
-2017-01-05 18:00:00,14110.0
-2017-01-05 19:00:00,14681.0
-2017-01-05 20:00:00,14580.0
-2017-01-05 21:00:00,14455.0
-2017-01-05 22:00:00,14209.0
-2017-01-05 23:00:00,13787.0
-2017-01-06 00:00:00,13111.0
-2017-01-04 01:00:00,11005.0
-2017-01-04 02:00:00,10672.0
-2017-01-04 03:00:00,10492.0
-2017-01-04 04:00:00,10502.0
-2017-01-04 05:00:00,10568.0
-2017-01-04 06:00:00,10854.0
-2017-01-04 07:00:00,11517.0
-2017-01-04 08:00:00,12547.0
-2017-01-04 09:00:00,13031.0
-2017-01-04 10:00:00,13065.0
-2017-01-04 11:00:00,13163.0
-2017-01-04 12:00:00,13207.0
-2017-01-04 13:00:00,13161.0
-2017-01-04 14:00:00,13105.0
-2017-01-04 15:00:00,13046.0
-2017-01-04 16:00:00,12954.0
-2017-01-04 17:00:00,12966.0
-2017-01-04 18:00:00,13631.0
-2017-01-04 19:00:00,14300.0
-2017-01-04 20:00:00,14197.0
-2017-01-04 21:00:00,14028.0
-2017-01-04 22:00:00,13801.0
-2017-01-04 23:00:00,13330.0
-2017-01-05 00:00:00,12635.0
-2017-01-03 01:00:00,9519.0
-2017-01-03 02:00:00,9133.0
-2017-01-03 03:00:00,8918.0
-2017-01-03 04:00:00,8810.0
-2017-01-03 05:00:00,8832.0
-2017-01-03 06:00:00,9080.0
-2017-01-03 07:00:00,9796.0
-2017-01-03 08:00:00,10746.0
-2017-01-03 09:00:00,11421.0
-2017-01-03 10:00:00,11591.0
-2017-01-03 11:00:00,11744.0
-2017-01-03 12:00:00,11957.0
-2017-01-03 13:00:00,12074.0
-2017-01-03 14:00:00,12203.0
-2017-01-03 15:00:00,12206.0
-2017-01-03 16:00:00,12182.0
-2017-01-03 17:00:00,12143.0
-2017-01-03 18:00:00,12640.0
-2017-01-03 19:00:00,13032.0
-2017-01-03 20:00:00,12830.0
-2017-01-03 21:00:00,12672.0
-2017-01-03 22:00:00,12413.0
-2017-01-03 23:00:00,12071.0
-2017-01-04 00:00:00,11484.0
-2017-01-02 01:00:00,9678.0
-2017-01-02 02:00:00,9296.0
-2017-01-02 03:00:00,9076.0
-2017-01-02 04:00:00,8995.0
-2017-01-02 05:00:00,8960.0
-2017-01-02 06:00:00,9119.0
-2017-01-02 07:00:00,9399.0
-2017-01-02 08:00:00,9747.0
-2017-01-02 09:00:00,9866.0
-2017-01-02 10:00:00,9978.0
-2017-01-02 11:00:00,10222.0
-2017-01-02 12:00:00,10367.0
-2017-01-02 13:00:00,10458.0
-2017-01-02 14:00:00,10503.0
-2017-01-02 15:00:00,10629.0
-2017-01-02 16:00:00,10674.0
-2017-01-02 17:00:00,10878.0
-2017-01-02 18:00:00,11381.0
-2017-01-02 19:00:00,11686.0
-2017-01-02 20:00:00,11508.0
-2017-01-02 21:00:00,11355.0
-2017-01-02 22:00:00,11070.0
-2017-01-02 23:00:00,10666.0
-2017-01-03 00:00:00,10106.0
-2017-01-01 01:00:00,10197.0
-2017-01-01 02:00:00,9893.0
-2017-01-01 03:00:00,9654.0
-2017-01-01 04:00:00,9437.0
-2017-01-01 05:00:00,9370.0
-2017-01-01 06:00:00,9322.0
-2017-01-01 07:00:00,9459.0
-2017-01-01 08:00:00,9602.0
-2017-01-01 09:00:00,9587.0
-2017-01-01 10:00:00,9530.0
-2017-01-01 11:00:00,9513.0
-2017-01-01 12:00:00,9477.0
-2017-01-01 13:00:00,9511.0
-2017-01-01 14:00:00,9459.0
-2017-01-01 15:00:00,9367.0
-2017-01-01 16:00:00,9328.0
-2017-01-01 17:00:00,9428.0
-2017-01-01 18:00:00,10134.0
-2017-01-01 19:00:00,10851.0
-2017-01-01 20:00:00,10882.0
-2017-01-01 21:00:00,10831.0
-2017-01-01 22:00:00,10691.0
-2017-01-01 23:00:00,10484.0
-2017-01-02 00:00:00,10114.0
-2018-08-02 01:00:00,11916.0
-2018-08-02 02:00:00,11095.0
-2018-08-02 03:00:00,10530.0
-2018-08-02 04:00:00,10165.0
-2018-08-02 05:00:00,9931.0
-2018-08-02 06:00:00,9996.0
-2018-08-02 07:00:00,10482.0
-2018-08-02 08:00:00,11200.0
-2018-08-02 09:00:00,12179.0
-2018-08-02 10:00:00,13042.0
-2018-08-02 11:00:00,13828.0
-2018-08-02 12:00:00,14790.0
-2018-08-02 13:00:00,15527.0
-2018-08-02 14:00:00,16074.0
-2018-08-02 15:00:00,16584.0
-2018-08-02 16:00:00,16869.0
-2018-08-02 17:00:00,17015.0
-2018-08-02 18:00:00,17068.0
-2018-08-02 19:00:00,16897.0
-2018-08-02 20:00:00,16437.0
-2018-08-02 21:00:00,15590.0
-2018-08-02 22:00:00,15086.0
-2018-08-02 23:00:00,14448.0
-2018-08-03 00:00:00,13335.0
-2018-08-01 01:00:00,10975.0
-2018-08-01 02:00:00,10233.0
-2018-08-01 03:00:00,9734.0
-2018-08-01 04:00:00,9374.0
-2018-08-01 05:00:00,9156.0
-2018-08-01 06:00:00,9270.0
-2018-08-01 07:00:00,9753.0
-2018-08-01 08:00:00,10466.0
-2018-08-01 09:00:00,11424.0
-2018-08-01 10:00:00,12294.0
-2018-08-01 11:00:00,13025.0
-2018-08-01 12:00:00,13814.0
-2018-08-01 13:00:00,14516.0
-2018-08-01 14:00:00,15203.0
-2018-08-01 15:00:00,15881.0
-2018-08-01 16:00:00,16123.0
-2018-08-01 17:00:00,15766.0
-2018-08-01 18:00:00,15574.0
-2018-08-01 19:00:00,15569.0
-2018-08-01 20:00:00,15122.0
-2018-08-01 21:00:00,14449.0
-2018-08-01 22:00:00,14246.0
-2018-08-01 23:00:00,13778.0
-2018-08-02 00:00:00,12892.0
-2018-07-31 01:00:00,11206.0
-2018-07-31 02:00:00,10442.0
-2018-07-31 03:00:00,9918.0
-2018-07-31 04:00:00,9548.0
-2018-07-31 05:00:00,9391.0
-2018-07-31 06:00:00,9511.0
-2018-07-31 07:00:00,10119.0
-2018-07-31 08:00:00,10896.0
-2018-07-31 09:00:00,11737.0
-2018-07-31 10:00:00,12272.0
-2018-07-31 11:00:00,12716.0
-2018-07-31 12:00:00,13366.0
-2018-07-31 13:00:00,13826.0
-2018-07-31 14:00:00,14103.0
-2018-07-31 15:00:00,14435.0
-2018-07-31 16:00:00,14484.0
-2018-07-31 17:00:00,14501.0
-2018-07-31 18:00:00,14242.0
-2018-07-31 19:00:00,13921.0
-2018-07-31 20:00:00,13532.0
-2018-07-31 21:00:00,13300.0
-2018-07-31 22:00:00,13346.0
-2018-07-31 23:00:00,12898.0
-2018-08-01 00:00:00,11945.0
-2018-07-30 01:00:00,10223.0
-2018-07-30 02:00:00,9632.0
-2018-07-30 03:00:00,9140.0
-2018-07-30 04:00:00,8872.0
-2018-07-30 05:00:00,8700.0
-2018-07-30 06:00:00,8921.0
-2018-07-30 07:00:00,9472.0
-2018-07-30 08:00:00,10201.0
-2018-07-30 09:00:00,11180.0
-2018-07-30 10:00:00,12085.0
-2018-07-30 11:00:00,12792.0
-2018-07-30 12:00:00,13417.0
-2018-07-30 13:00:00,13960.0
-2018-07-30 14:00:00,14386.0
-2018-07-30 15:00:00,14900.0
-2018-07-30 16:00:00,15242.0
-2018-07-30 17:00:00,15414.0
-2018-07-30 18:00:00,15532.0
-2018-07-30 19:00:00,15434.0
-2018-07-30 20:00:00,14930.0
-2018-07-30 21:00:00,14168.0
-2018-07-30 22:00:00,13735.0
-2018-07-30 23:00:00,13194.0
-2018-07-31 00:00:00,12223.0
-2018-07-29 01:00:00,10031.0
-2018-07-29 02:00:00,9400.0
-2018-07-29 03:00:00,8950.0
-2018-07-29 04:00:00,8587.0
-2018-07-29 05:00:00,8325.0
-2018-07-29 06:00:00,8255.0
-2018-07-29 07:00:00,8205.0
-2018-07-29 08:00:00,8172.0
-2018-07-29 09:00:00,8629.0
-2018-07-29 10:00:00,9353.0
-2018-07-29 11:00:00,10143.0
-2018-07-29 12:00:00,10853.0
-2018-07-29 13:00:00,11423.0
-2018-07-29 14:00:00,11856.0
-2018-07-29 15:00:00,12252.0
-2018-07-29 16:00:00,12384.0
-2018-07-29 17:00:00,12520.0
-2018-07-29 18:00:00,12455.0
-2018-07-29 19:00:00,12448.0
-2018-07-29 20:00:00,12186.0
-2018-07-29 21:00:00,11845.0
-2018-07-29 22:00:00,11809.0
-2018-07-29 23:00:00,11569.0
-2018-07-30 00:00:00,10989.0
-2018-07-28 01:00:00,10501.0
-2018-07-28 02:00:00,9727.0
-2018-07-28 03:00:00,9251.0
-2018-07-28 04:00:00,8865.0
-2018-07-28 05:00:00,8644.0
-2018-07-28 06:00:00,8606.0
-2018-07-28 07:00:00,8672.0
-2018-07-28 08:00:00,8834.0
-2018-07-28 09:00:00,9375.0
-2018-07-28 10:00:00,10152.0
-2018-07-28 11:00:00,10872.0
-2018-07-28 12:00:00,11418.0
-2018-07-28 13:00:00,11796.0
-2018-07-28 14:00:00,12111.0
-2018-07-28 15:00:00,12382.0
-2018-07-28 16:00:00,12520.0
-2018-07-28 17:00:00,12665.0
-2018-07-28 18:00:00,12546.0
-2018-07-28 19:00:00,12369.0
-2018-07-28 20:00:00,12035.0
-2018-07-28 21:00:00,11714.0
-2018-07-28 22:00:00,11591.0
-2018-07-28 23:00:00,11384.0
-2018-07-29 00:00:00,10728.0
-2018-07-27 01:00:00,11143.0
-2018-07-27 02:00:00,10307.0
-2018-07-27 03:00:00,9719.0
-2018-07-27 04:00:00,9325.0
-2018-07-27 05:00:00,9142.0
-2018-07-27 06:00:00,9167.0
-2018-07-27 07:00:00,9610.0
-2018-07-27 08:00:00,10224.0
-2018-07-27 09:00:00,11121.0
-2018-07-27 10:00:00,11791.0
-2018-07-27 11:00:00,12345.0
-2018-07-27 12:00:00,12845.0
-2018-07-27 13:00:00,13219.0
-2018-07-27 14:00:00,13483.0
-2018-07-27 15:00:00,13674.0
-2018-07-27 16:00:00,13781.0
-2018-07-27 17:00:00,13827.0
-2018-07-27 18:00:00,13799.0
-2018-07-27 19:00:00,13586.0
-2018-07-27 20:00:00,13179.0
-2018-07-27 21:00:00,12672.0
-2018-07-27 22:00:00,12502.0
-2018-07-27 23:00:00,12155.0
-2018-07-28 00:00:00,11383.0
-2018-07-26 01:00:00,13054.0
-2018-07-26 02:00:00,12096.0
-2018-07-26 03:00:00,11432.0
-2018-07-26 04:00:00,10929.0
-2018-07-26 05:00:00,10600.0
-2018-07-26 06:00:00,10645.0
-2018-07-26 07:00:00,11085.0
-2018-07-26 08:00:00,11769.0
-2018-07-26 09:00:00,12686.0
-2018-07-26 10:00:00,13498.0
-2018-07-26 11:00:00,14258.0
-2018-07-26 12:00:00,14902.0
-2018-07-26 13:00:00,15314.0
-2018-07-26 14:00:00,15585.0
-2018-07-26 15:00:00,15810.0
-2018-07-26 16:00:00,15942.0
-2018-07-26 17:00:00,15924.0
-2018-07-26 18:00:00,15715.0
-2018-07-26 19:00:00,15244.0
-2018-07-26 20:00:00,14579.0
-2018-07-26 21:00:00,13945.0
-2018-07-26 22:00:00,13626.0
-2018-07-26 23:00:00,13174.0
-2018-07-27 00:00:00,12206.0
-2018-07-25 01:00:00,12425.0
-2018-07-25 02:00:00,11506.0
-2018-07-25 03:00:00,10763.0
-2018-07-25 04:00:00,10251.0
-2018-07-25 05:00:00,9907.0
-2018-07-25 06:00:00,9939.0
-2018-07-25 07:00:00,10312.0
-2018-07-25 08:00:00,11117.0
-2018-07-25 09:00:00,12191.0
-2018-07-25 10:00:00,13179.0
-2018-07-25 11:00:00,14081.0
-2018-07-25 12:00:00,15008.0
-2018-07-25 13:00:00,15677.0
-2018-07-25 14:00:00,16225.0
-2018-07-25 15:00:00,16943.0
-2018-07-25 16:00:00,17465.0
-2018-07-25 17:00:00,17846.0
-2018-07-25 18:00:00,18050.0
-2018-07-25 19:00:00,17927.0
-2018-07-25 20:00:00,17313.0
-2018-07-25 21:00:00,16532.0
-2018-07-25 22:00:00,15997.0
-2018-07-25 23:00:00,15321.0
-2018-07-26 00:00:00,14185.0
-2018-07-24 01:00:00,11311.0
-2018-07-24 02:00:00,10550.0
-2018-07-24 03:00:00,9981.0
-2018-07-24 04:00:00,9576.0
-2018-07-24 05:00:00,9428.0
-2018-07-24 06:00:00,9538.0
-2018-07-24 07:00:00,10024.0
-2018-07-24 08:00:00,10798.0
-2018-07-24 09:00:00,11869.0
-2018-07-24 10:00:00,12803.0
-2018-07-24 11:00:00,13679.0
-2018-07-24 12:00:00,14676.0
-2018-07-24 13:00:00,15478.0
-2018-07-24 14:00:00,16100.0
-2018-07-24 15:00:00,16671.0
-2018-07-24 16:00:00,17067.0
-2018-07-24 17:00:00,17317.0
-2018-07-24 18:00:00,17371.0
-2018-07-24 19:00:00,17194.0
-2018-07-24 20:00:00,16678.0
-2018-07-24 21:00:00,15973.0
-2018-07-24 22:00:00,15443.0
-2018-07-24 23:00:00,14873.0
-2018-07-25 00:00:00,13701.0
-2018-07-23 01:00:00,10092.0
-2018-07-23 02:00:00,9581.0
-2018-07-23 03:00:00,9196.0
-2018-07-23 04:00:00,8962.0
-2018-07-23 05:00:00,8901.0
-2018-07-23 06:00:00,9085.0
-2018-07-23 07:00:00,9635.0
-2018-07-23 08:00:00,10393.0
-2018-07-23 09:00:00,11480.0
-2018-07-23 10:00:00,12309.0
-2018-07-23 11:00:00,13075.0
-2018-07-23 12:00:00,13802.0
-2018-07-23 13:00:00,14405.0
-2018-07-23 14:00:00,15004.0
-2018-07-23 15:00:00,15405.0
-2018-07-23 16:00:00,15542.0
-2018-07-23 17:00:00,15439.0
-2018-07-23 18:00:00,15217.0
-2018-07-23 19:00:00,14927.0
-2018-07-23 20:00:00,14490.0
-2018-07-23 21:00:00,13991.0
-2018-07-23 22:00:00,13725.0
-2018-07-23 23:00:00,13347.0
-2018-07-24 00:00:00,12381.0
-2018-07-22 01:00:00,10520.0
-2018-07-22 02:00:00,9947.0
-2018-07-22 03:00:00,9501.0
-2018-07-22 04:00:00,9236.0
-2018-07-22 05:00:00,9034.0
-2018-07-22 06:00:00,9028.0
-2018-07-22 07:00:00,9003.0
-2018-07-22 08:00:00,9022.0
-2018-07-22 09:00:00,9283.0
-2018-07-22 10:00:00,9727.0
-2018-07-22 11:00:00,10121.0
-2018-07-22 12:00:00,10485.0
-2018-07-22 13:00:00,10747.0
-2018-07-22 14:00:00,11045.0
-2018-07-22 15:00:00,11193.0
-2018-07-22 16:00:00,11379.0
-2018-07-22 17:00:00,11611.0
-2018-07-22 18:00:00,11776.0
-2018-07-22 19:00:00,11797.0
-2018-07-22 20:00:00,11722.0
-2018-07-22 21:00:00,11513.0
-2018-07-22 22:00:00,11451.0
-2018-07-22 23:00:00,11357.0
-2018-07-23 00:00:00,10824.0
-2018-07-21 01:00:00,11256.0
-2018-07-21 02:00:00,10581.0
-2018-07-21 03:00:00,10058.0
-2018-07-21 04:00:00,9708.0
-2018-07-21 05:00:00,9558.0
-2018-07-21 06:00:00,9504.0
-2018-07-21 07:00:00,9666.0
-2018-07-21 08:00:00,9915.0
-2018-07-21 09:00:00,10364.0
-2018-07-21 10:00:00,10912.0
-2018-07-21 11:00:00,11395.0
-2018-07-21 12:00:00,11717.0
-2018-07-21 13:00:00,12027.0
-2018-07-21 14:00:00,12205.0
-2018-07-21 15:00:00,12395.0
-2018-07-21 16:00:00,12447.0
-2018-07-21 17:00:00,12571.0
-2018-07-21 18:00:00,12589.0
-2018-07-21 19:00:00,12460.0
-2018-07-21 20:00:00,12184.0
-2018-07-21 21:00:00,11836.0
-2018-07-21 22:00:00,11783.0
-2018-07-21 23:00:00,11645.0
-2018-07-22 00:00:00,11107.0
-2018-07-20 01:00:00,12682.0
-2018-07-20 02:00:00,11929.0
-2018-07-20 03:00:00,11327.0
-2018-07-20 04:00:00,10895.0
-2018-07-20 05:00:00,10676.0
-2018-07-20 06:00:00,10784.0
-2018-07-20 07:00:00,11178.0
-2018-07-20 08:00:00,11930.0
-2018-07-20 09:00:00,13035.0
-2018-07-20 10:00:00,13687.0
-2018-07-20 11:00:00,14158.0
-2018-07-20 12:00:00,14361.0
-2018-07-20 13:00:00,14404.0
-2018-07-20 14:00:00,14491.0
-2018-07-20 15:00:00,14456.0
-2018-07-20 16:00:00,14420.0
-2018-07-20 17:00:00,14242.0
-2018-07-20 18:00:00,14080.0
-2018-07-20 19:00:00,13773.0
-2018-07-20 20:00:00,13333.0
-2018-07-20 21:00:00,12964.0
-2018-07-20 22:00:00,12896.0
-2018-07-20 23:00:00,12687.0
-2018-07-21 00:00:00,12004.0
-2018-07-19 01:00:00,11089.0
-2018-07-19 02:00:00,10331.0
-2018-07-19 03:00:00,9791.0
-2018-07-19 04:00:00,9422.0
-2018-07-19 05:00:00,9209.0
-2018-07-19 06:00:00,9287.0
-2018-07-19 07:00:00,9746.0
-2018-07-19 08:00:00,10560.0
-2018-07-19 09:00:00,11705.0
-2018-07-19 10:00:00,12536.0
-2018-07-19 11:00:00,13275.0
-2018-07-19 12:00:00,14133.0
-2018-07-19 13:00:00,14881.0
-2018-07-19 14:00:00,15420.0
-2018-07-19 15:00:00,15988.0
-2018-07-19 16:00:00,16323.0
-2018-07-19 17:00:00,16236.0
-2018-07-19 18:00:00,15929.0
-2018-07-19 19:00:00,15534.0
-2018-07-19 20:00:00,15171.0
-2018-07-19 21:00:00,14879.0
-2018-07-19 22:00:00,14729.0
-2018-07-19 23:00:00,14495.0
-2018-07-20 00:00:00,13645.0
-2018-07-18 01:00:00,11393.0
-2018-07-18 02:00:00,10572.0
-2018-07-18 03:00:00,9976.0
-2018-07-18 04:00:00,9556.0
-2018-07-18 05:00:00,9338.0
-2018-07-18 06:00:00,9380.0
-2018-07-18 07:00:00,9755.0
-2018-07-18 08:00:00,10616.0
-2018-07-18 09:00:00,11699.0
-2018-07-18 10:00:00,12532.0
-2018-07-18 11:00:00,13118.0
-2018-07-18 12:00:00,13684.0
-2018-07-18 13:00:00,14098.0
-2018-07-18 14:00:00,14512.0
-2018-07-18 15:00:00,14891.0
-2018-07-18 16:00:00,15188.0
-2018-07-18 17:00:00,15387.0
-2018-07-18 18:00:00,15486.0
-2018-07-18 19:00:00,15311.0
-2018-07-18 20:00:00,14717.0
-2018-07-18 21:00:00,13832.0
-2018-07-18 22:00:00,13416.0
-2018-07-18 23:00:00,12990.0
-2018-07-19 00:00:00,12111.0
-2018-07-17 01:00:00,13173.0
-2018-07-17 02:00:00,12050.0
-2018-07-17 03:00:00,11198.0
-2018-07-17 04:00:00,10633.0
-2018-07-17 05:00:00,10296.0
-2018-07-17 06:00:00,10340.0
-2018-07-17 07:00:00,10731.0
-2018-07-17 08:00:00,11660.0
-2018-07-17 09:00:00,12802.0
-2018-07-17 10:00:00,13830.0
-2018-07-17 11:00:00,14677.0
-2018-07-17 12:00:00,15477.0
-2018-07-17 13:00:00,16073.0
-2018-07-17 14:00:00,16426.0
-2018-07-17 15:00:00,16643.0
-2018-07-17 16:00:00,16780.0
-2018-07-17 17:00:00,16879.0
-2018-07-17 18:00:00,16834.0
-2018-07-17 19:00:00,16534.0
-2018-07-17 20:00:00,15873.0
-2018-07-17 21:00:00,14938.0
-2018-07-17 22:00:00,14160.0
-2018-07-17 23:00:00,13569.0
-2018-07-18 00:00:00,12504.0
-2018-07-16 01:00:00,13757.0
-2018-07-16 02:00:00,12869.0
-2018-07-16 03:00:00,12186.0
-2018-07-16 04:00:00,11721.0
-2018-07-16 05:00:00,11532.0
-2018-07-16 06:00:00,11621.0
-2018-07-16 07:00:00,12155.0
-2018-07-16 08:00:00,13133.0
-2018-07-16 09:00:00,14504.0
-2018-07-16 10:00:00,15832.0
-2018-07-16 11:00:00,16988.0
-2018-07-16 12:00:00,17964.0
-2018-07-16 13:00:00,18857.0
-2018-07-16 14:00:00,19167.0
-2018-07-16 15:00:00,19266.0
-2018-07-16 16:00:00,19005.0
-2018-07-16 17:00:00,18960.0
-2018-07-16 18:00:00,19032.0
-2018-07-16 19:00:00,18990.0
-2018-07-16 20:00:00,18568.0
-2018-07-16 21:00:00,17710.0
-2018-07-16 22:00:00,16736.0
-2018-07-16 23:00:00,15925.0
-2018-07-17 00:00:00,14540.0
-2018-07-15 01:00:00,12381.0
-2018-07-15 02:00:00,11527.0
-2018-07-15 03:00:00,10870.0
-2018-07-15 04:00:00,10413.0
-2018-07-15 05:00:00,10183.0
-2018-07-15 06:00:00,9966.0
-2018-07-15 07:00:00,9875.0
-2018-07-15 08:00:00,10025.0
-2018-07-15 09:00:00,10940.0
-2018-07-15 10:00:00,12192.0
-2018-07-15 11:00:00,13439.0
-2018-07-15 12:00:00,14594.0
-2018-07-15 13:00:00,15497.0
-2018-07-15 14:00:00,16147.0
-2018-07-15 15:00:00,16558.0
-2018-07-15 16:00:00,16976.0
-2018-07-15 17:00:00,17224.0
-2018-07-15 18:00:00,17320.0
-2018-07-15 19:00:00,17307.0
-2018-07-15 20:00:00,17092.0
-2018-07-15 21:00:00,16663.0
-2018-07-15 22:00:00,16199.0
-2018-07-15 23:00:00,15806.0
-2018-07-16 00:00:00,14879.0
-2018-07-14 01:00:00,14362.0
-2018-07-14 02:00:00,13304.0
-2018-07-14 03:00:00,12420.0
-2018-07-14 04:00:00,11830.0
-2018-07-14 05:00:00,11500.0
-2018-07-14 06:00:00,11260.0
-2018-07-14 07:00:00,11353.0
-2018-07-14 08:00:00,11505.0
-2018-07-14 09:00:00,11851.0
-2018-07-14 10:00:00,12354.0
-2018-07-14 11:00:00,12940.0
-2018-07-14 12:00:00,13414.0
-2018-07-14 13:00:00,13515.0
-2018-07-14 14:00:00,13508.0
-2018-07-14 15:00:00,13642.0
-2018-07-14 16:00:00,13788.0
-2018-07-14 17:00:00,14180.0
-2018-07-14 18:00:00,14653.0
-2018-07-14 19:00:00,14905.0
-2018-07-14 20:00:00,14664.0
-2018-07-14 21:00:00,14315.0
-2018-07-14 22:00:00,14013.0
-2018-07-14 23:00:00,13841.0
-2018-07-15 00:00:00,13186.0
-2018-07-13 01:00:00,13357.0
-2018-07-13 02:00:00,12296.0
-2018-07-13 03:00:00,11618.0
-2018-07-13 04:00:00,11076.0
-2018-07-13 05:00:00,10709.0
-2018-07-13 06:00:00,10699.0
-2018-07-13 07:00:00,11080.0
-2018-07-13 08:00:00,11937.0
-2018-07-13 09:00:00,13237.0
-2018-07-13 10:00:00,14347.0
-2018-07-13 11:00:00,15396.0
-2018-07-13 12:00:00,16430.0
-2018-07-13 13:00:00,17257.0
-2018-07-13 14:00:00,18027.0
-2018-07-13 15:00:00,18756.0
-2018-07-13 16:00:00,19279.0
-2018-07-13 17:00:00,19599.0
-2018-07-13 18:00:00,19773.0
-2018-07-13 19:00:00,19682.0
-2018-07-13 20:00:00,19208.0
-2018-07-13 21:00:00,18332.0
-2018-07-13 22:00:00,17525.0
-2018-07-13 23:00:00,16735.0
-2018-07-14 00:00:00,15608.0
-2018-07-12 01:00:00,12715.0
-2018-07-12 02:00:00,11750.0
-2018-07-12 03:00:00,11046.0
-2018-07-12 04:00:00,10513.0
-2018-07-12 05:00:00,10231.0
-2018-07-12 06:00:00,10299.0
-2018-07-12 07:00:00,10760.0
-2018-07-12 08:00:00,11643.0
-2018-07-12 09:00:00,12805.0
-2018-07-12 10:00:00,13811.0
-2018-07-12 11:00:00,14568.0
-2018-07-12 12:00:00,15421.0
-2018-07-12 13:00:00,16236.0
-2018-07-12 14:00:00,16855.0
-2018-07-12 15:00:00,17366.0
-2018-07-12 16:00:00,17581.0
-2018-07-12 17:00:00,17713.0
-2018-07-12 18:00:00,17751.0
-2018-07-12 19:00:00,17622.0
-2018-07-12 20:00:00,17173.0
-2018-07-12 21:00:00,16594.0
-2018-07-12 22:00:00,16067.0
-2018-07-12 23:00:00,15557.0
-2018-07-13 00:00:00,14475.0
-2018-07-11 01:00:00,12391.0
-2018-07-11 02:00:00,11420.0
-2018-07-11 03:00:00,10721.0
-2018-07-11 04:00:00,10242.0
-2018-07-11 05:00:00,9981.0
-2018-07-11 06:00:00,10003.0
-2018-07-11 07:00:00,10420.0
-2018-07-11 08:00:00,11328.0
-2018-07-11 09:00:00,12551.0
-2018-07-11 10:00:00,13566.0
-2018-07-11 11:00:00,14482.0
-2018-07-11 12:00:00,15374.0
-2018-07-11 13:00:00,16066.0
-2018-07-11 14:00:00,16712.0
-2018-07-11 15:00:00,17347.0
-2018-07-11 16:00:00,17782.0
-2018-07-11 17:00:00,18084.0
-2018-07-11 18:00:00,18135.0
-2018-07-11 19:00:00,17944.0
-2018-07-11 20:00:00,17327.0
-2018-07-11 21:00:00,16450.0
-2018-07-11 22:00:00,15621.0
-2018-07-11 23:00:00,15012.0
-2018-07-12 00:00:00,13895.0
-2018-07-10 01:00:00,14232.0
-2018-07-10 02:00:00,13214.0
-2018-07-10 03:00:00,12485.0
-2018-07-10 04:00:00,11964.0
-2018-07-10 05:00:00,11681.0
-2018-07-10 06:00:00,11702.0
-2018-07-10 07:00:00,12098.0
-2018-07-10 08:00:00,13077.0
-2018-07-10 09:00:00,14477.0
-2018-07-10 10:00:00,15589.0
-2018-07-10 11:00:00,16496.0
-2018-07-10 12:00:00,17310.0
-2018-07-10 13:00:00,17793.0
-2018-07-10 14:00:00,18121.0
-2018-07-10 15:00:00,18420.0
-2018-07-10 16:00:00,18515.0
-2018-07-10 17:00:00,18514.0
-2018-07-10 18:00:00,18318.0
-2018-07-10 19:00:00,17850.0
-2018-07-10 20:00:00,16923.0
-2018-07-10 21:00:00,15969.0
-2018-07-10 22:00:00,15217.0
-2018-07-10 23:00:00,14704.0
-2018-07-11 00:00:00,13596.0
-2018-07-09 01:00:00,11660.0
-2018-07-09 02:00:00,10817.0
-2018-07-09 03:00:00,10213.0
-2018-07-09 04:00:00,9759.0
-2018-07-09 05:00:00,9588.0
-2018-07-09 06:00:00,9715.0
-2018-07-09 07:00:00,10140.0
-2018-07-09 08:00:00,11073.0
-2018-07-09 09:00:00,12453.0
-2018-07-09 10:00:00,13593.0
-2018-07-09 11:00:00,14683.0
-2018-07-09 12:00:00,15689.0
-2018-07-09 13:00:00,16510.0
-2018-07-09 14:00:00,17248.0
-2018-07-09 15:00:00,17951.0
-2018-07-09 16:00:00,18528.0
-2018-07-09 17:00:00,19037.0
-2018-07-09 18:00:00,19325.0
-2018-07-09 19:00:00,19096.0
-2018-07-09 20:00:00,18642.0
-2018-07-09 21:00:00,18103.0
-2018-07-09 22:00:00,17393.0
-2018-07-09 23:00:00,16777.0
-2018-07-10 00:00:00,15533.0
-2018-07-08 01:00:00,10198.0
-2018-07-08 02:00:00,9532.0
-2018-07-08 03:00:00,9072.0
-2018-07-08 04:00:00,8691.0
-2018-07-08 05:00:00,8466.0
-2018-07-08 06:00:00,8339.0
-2018-07-08 07:00:00,8228.0
-2018-07-08 08:00:00,8334.0
-2018-07-08 09:00:00,8914.0
-2018-07-08 10:00:00,9667.0
-2018-07-08 11:00:00,10550.0
-2018-07-08 12:00:00,11297.0
-2018-07-08 13:00:00,12028.0
-2018-07-08 14:00:00,12625.0
-2018-07-08 15:00:00,13232.0
-2018-07-08 16:00:00,13855.0
-2018-07-08 17:00:00,14422.0
-2018-07-08 18:00:00,14933.0
-2018-07-08 19:00:00,15116.0
-2018-07-08 20:00:00,14988.0
-2018-07-08 21:00:00,14546.0
-2018-07-08 22:00:00,13953.0
-2018-07-08 23:00:00,13635.0
-2018-07-09 00:00:00,12699.0
-2018-07-07 01:00:00,10248.0
-2018-07-07 02:00:00,9600.0
-2018-07-07 03:00:00,9144.0
-2018-07-07 04:00:00,8806.0
-2018-07-07 05:00:00,8626.0
-2018-07-07 06:00:00,8599.0
-2018-07-07 07:00:00,8517.0
-2018-07-07 08:00:00,8858.0
-2018-07-07 09:00:00,9497.0
-2018-07-07 10:00:00,10171.0
-2018-07-07 11:00:00,10731.0
-2018-07-07 12:00:00,11283.0
-2018-07-07 13:00:00,11668.0
-2018-07-07 14:00:00,12011.0
-2018-07-07 15:00:00,12201.0
-2018-07-07 16:00:00,12601.0
-2018-07-07 17:00:00,12934.0
-2018-07-07 18:00:00,13277.0
-2018-07-07 19:00:00,13302.0
-2018-07-07 20:00:00,13043.0
-2018-07-07 21:00:00,12489.0
-2018-07-07 22:00:00,11924.0
-2018-07-07 23:00:00,11603.0
-2018-07-08 00:00:00,10929.0
-2018-07-06 01:00:00,13178.0
-2018-07-06 02:00:00,12136.0
-2018-07-06 03:00:00,11303.0
-2018-07-06 04:00:00,10677.0
-2018-07-06 05:00:00,10317.0
-2018-07-06 06:00:00,10275.0
-2018-07-06 07:00:00,10455.0
-2018-07-06 08:00:00,11248.0
-2018-07-06 09:00:00,12290.0
-2018-07-06 10:00:00,13028.0
-2018-07-06 11:00:00,13513.0
-2018-07-06 12:00:00,13875.0
-2018-07-06 13:00:00,13973.0
-2018-07-06 14:00:00,14025.0
-2018-07-06 15:00:00,14200.0
-2018-07-06 16:00:00,14286.0
-2018-07-06 17:00:00,14381.0
-2018-07-06 18:00:00,14375.0
-2018-07-06 19:00:00,14183.0
-2018-07-06 20:00:00,13590.0
-2018-07-06 21:00:00,12901.0
-2018-07-06 22:00:00,12191.0
-2018-07-06 23:00:00,11826.0
-2018-07-07 00:00:00,11082.0
-2018-07-05 01:00:00,13451.0
-2018-07-05 02:00:00,12563.0
-2018-07-05 03:00:00,11826.0
-2018-07-05 04:00:00,11305.0
-2018-07-05 05:00:00,11086.0
-2018-07-05 06:00:00,11140.0
-2018-07-05 07:00:00,11533.0
-2018-07-05 08:00:00,12568.0
-2018-07-05 09:00:00,14000.0
-2018-07-05 10:00:00,15428.0
-2018-07-05 11:00:00,16799.0
-2018-07-05 12:00:00,18001.0
-2018-07-05 13:00:00,18945.0
-2018-07-05 14:00:00,19530.0
-2018-07-05 15:00:00,19488.0
-2018-07-05 16:00:00,18228.0
-2018-07-05 17:00:00,17390.0
-2018-07-05 18:00:00,17069.0
-2018-07-05 19:00:00,16812.0
-2018-07-05 20:00:00,16374.0
-2018-07-05 21:00:00,16103.0
-2018-07-05 22:00:00,15679.0
-2018-07-05 23:00:00,15347.0
-2018-07-06 00:00:00,14329.0
-2018-07-04 01:00:00,14123.0
-2018-07-04 02:00:00,13088.0
-2018-07-04 03:00:00,12394.0
-2018-07-04 04:00:00,11815.0
-2018-07-04 05:00:00,11435.0
-2018-07-04 06:00:00,11185.0
-2018-07-04 07:00:00,11026.0
-2018-07-04 08:00:00,11339.0
-2018-07-04 09:00:00,12266.0
-2018-07-04 10:00:00,13470.0
-2018-07-04 11:00:00,14834.0
-2018-07-04 12:00:00,16089.0
-2018-07-04 13:00:00,16913.0
-2018-07-04 14:00:00,17377.0
-2018-07-04 15:00:00,17818.0
-2018-07-04 16:00:00,17984.0
-2018-07-04 17:00:00,18021.0
-2018-07-04 18:00:00,17834.0
-2018-07-04 19:00:00,17700.0
-2018-07-04 20:00:00,17134.0
-2018-07-04 21:00:00,16365.0
-2018-07-04 22:00:00,15949.0
-2018-07-04 23:00:00,15347.0
-2018-07-05 00:00:00,14424.0
-2018-07-03 01:00:00,11743.0
-2018-07-03 02:00:00,10726.0
-2018-07-03 03:00:00,10103.0
-2018-07-03 04:00:00,9653.0
-2018-07-03 05:00:00,9461.0
-2018-07-03 06:00:00,9557.0
-2018-07-03 07:00:00,9977.0
-2018-07-03 08:00:00,10947.0
-2018-07-03 09:00:00,12122.0
-2018-07-03 10:00:00,13286.0
-2018-07-03 11:00:00,14391.0
-2018-07-03 12:00:00,15475.0
-2018-07-03 13:00:00,16418.0
-2018-07-03 14:00:00,17310.0
-2018-07-03 15:00:00,18058.0
-2018-07-03 16:00:00,18492.0
-2018-07-03 17:00:00,18765.0
-2018-07-03 18:00:00,19005.0
-2018-07-03 19:00:00,18939.0
-2018-07-03 20:00:00,18328.0
-2018-07-03 21:00:00,17483.0
-2018-07-03 22:00:00,16798.0
-2018-07-03 23:00:00,16263.0
-2018-07-04 00:00:00,15221.0
-2018-07-02 01:00:00,13134.0
-2018-07-02 02:00:00,12278.0
-2018-07-02 03:00:00,11615.0
-2018-07-02 04:00:00,11131.0
-2018-07-02 05:00:00,10787.0
-2018-07-02 06:00:00,10806.0
-2018-07-02 07:00:00,11065.0
-2018-07-02 08:00:00,11845.0
-2018-07-02 09:00:00,13042.0
-2018-07-02 10:00:00,13947.0
-2018-07-02 11:00:00,14665.0
-2018-07-02 12:00:00,15322.0
-2018-07-02 13:00:00,15786.0
-2018-07-02 14:00:00,16229.0
-2018-07-02 15:00:00,16688.0
-2018-07-02 16:00:00,17072.0
-2018-07-02 17:00:00,17356.0
-2018-07-02 18:00:00,17486.0
-2018-07-02 19:00:00,17413.0
-2018-07-02 20:00:00,16871.0
-2018-07-02 21:00:00,15962.0
-2018-07-02 22:00:00,14964.0
-2018-07-02 23:00:00,14266.0
-2018-07-03 00:00:00,13017.0
-2018-07-01 01:00:00,15466.0
-2018-07-01 02:00:00,14452.0
-2018-07-01 03:00:00,13586.0
-2018-07-01 04:00:00,12906.0
-2018-07-01 05:00:00,12416.0
-2018-07-01 06:00:00,12099.0
-2018-07-01 07:00:00,11849.0
-2018-07-01 08:00:00,11960.0
-2018-07-01 09:00:00,12831.0
-2018-07-01 10:00:00,14181.0
-2018-07-01 11:00:00,15384.0
-2018-07-01 12:00:00,16494.0
-2018-07-01 13:00:00,17474.0
-2018-07-01 14:00:00,18150.0
-2018-07-01 15:00:00,18634.0
-2018-07-01 16:00:00,18932.0
-2018-07-01 17:00:00,18909.0
-2018-07-01 18:00:00,18056.0
-2018-07-01 19:00:00,16710.0
-2018-07-01 20:00:00,15828.0
-2018-07-01 21:00:00,15320.0
-2018-07-01 22:00:00,14968.0
-2018-07-01 23:00:00,14812.0
-2018-07-02 00:00:00,14068.0
-2018-06-30 01:00:00,16412.0
-2018-06-30 02:00:00,15313.0
-2018-06-30 03:00:00,14478.0
-2018-06-30 04:00:00,13758.0
-2018-06-30 05:00:00,13263.0
-2018-06-30 06:00:00,12937.0
-2018-06-30 07:00:00,12778.0
-2018-06-30 08:00:00,13219.0
-2018-06-30 09:00:00,14318.0
-2018-06-30 10:00:00,15662.0
-2018-06-30 11:00:00,17009.0
-2018-06-30 12:00:00,18114.0
-2018-06-30 13:00:00,18832.0
-2018-06-30 14:00:00,19302.0
-2018-06-30 15:00:00,19605.0
-2018-06-30 16:00:00,19821.0
-2018-06-30 17:00:00,19937.0
-2018-06-30 18:00:00,19954.0
-2018-06-30 19:00:00,19790.0
-2018-06-30 20:00:00,19376.0
-2018-06-30 21:00:00,18709.0
-2018-06-30 22:00:00,18086.0
-2018-06-30 23:00:00,17611.0
-2018-07-01 00:00:00,16600.0
-2018-06-29 01:00:00,13028.0
-2018-06-29 02:00:00,11948.0
-2018-06-29 03:00:00,11243.0
-2018-06-29 04:00:00,10764.0
-2018-06-29 05:00:00,10529.0
-2018-06-29 06:00:00,10599.0
-2018-06-29 07:00:00,11035.0
-2018-06-29 08:00:00,12137.0
-2018-06-29 09:00:00,13605.0
-2018-06-29 10:00:00,14950.0
-2018-06-29 11:00:00,16120.0
-2018-06-29 12:00:00,17214.0
-2018-06-29 13:00:00,18179.0
-2018-06-29 14:00:00,18953.0
-2018-06-29 15:00:00,19756.0
-2018-06-29 16:00:00,20375.0
-2018-06-29 17:00:00,20745.0
-2018-06-29 18:00:00,20996.0
-2018-06-29 19:00:00,20915.0
-2018-06-29 20:00:00,20530.0
-2018-06-29 21:00:00,19965.0
-2018-06-29 22:00:00,19389.0
-2018-06-29 23:00:00,18848.0
-2018-06-30 00:00:00,17633.0
-2018-06-28 01:00:00,11297.0
-2018-06-28 02:00:00,10486.0
-2018-06-28 03:00:00,9927.0
-2018-06-28 04:00:00,9542.0
-2018-06-28 05:00:00,9374.0
-2018-06-28 06:00:00,9474.0
-2018-06-28 07:00:00,9888.0
-2018-06-28 08:00:00,10956.0
-2018-06-28 09:00:00,12254.0
-2018-06-28 10:00:00,13390.0
-2018-06-28 11:00:00,14381.0
-2018-06-28 12:00:00,15291.0
-2018-06-28 13:00:00,16059.0
-2018-06-28 14:00:00,16715.0
-2018-06-28 15:00:00,17322.0
-2018-06-28 16:00:00,17736.0
-2018-06-28 17:00:00,17998.0
-2018-06-28 18:00:00,18075.0
-2018-06-28 19:00:00,17677.0
-2018-06-28 20:00:00,16999.0
-2018-06-28 21:00:00,16355.0
-2018-06-28 22:00:00,15863.0
-2018-06-28 23:00:00,15400.0
-2018-06-29 00:00:00,14306.0
-2018-06-27 01:00:00,11521.0
-2018-06-27 02:00:00,10748.0
-2018-06-27 03:00:00,10212.0
-2018-06-27 04:00:00,9850.0
-2018-06-27 05:00:00,9697.0
-2018-06-27 06:00:00,9790.0
-2018-06-27 07:00:00,10334.0
-2018-06-27 08:00:00,11146.0
-2018-06-27 09:00:00,11983.0
-2018-06-27 10:00:00,12537.0
-2018-06-27 11:00:00,12968.0
-2018-06-27 12:00:00,13463.0
-2018-06-27 13:00:00,13743.0
-2018-06-27 14:00:00,14092.0
-2018-06-27 15:00:00,14671.0
-2018-06-27 16:00:00,15095.0
-2018-06-27 17:00:00,15163.0
-2018-06-27 18:00:00,15069.0
-2018-06-27 19:00:00,15012.0
-2018-06-27 20:00:00,14652.0
-2018-06-27 21:00:00,14115.0
-2018-06-27 22:00:00,13663.0
-2018-06-27 23:00:00,13308.0
-2018-06-28 00:00:00,12389.0
-2018-06-26 01:00:00,11152.0
-2018-06-26 02:00:00,10402.0
-2018-06-26 03:00:00,9867.0
-2018-06-26 04:00:00,9491.0
-2018-06-26 05:00:00,9269.0
-2018-06-26 06:00:00,9378.0
-2018-06-26 07:00:00,9769.0
-2018-06-26 08:00:00,10528.0
-2018-06-26 09:00:00,11358.0
-2018-06-26 10:00:00,11865.0
-2018-06-26 11:00:00,12237.0
-2018-06-26 12:00:00,12833.0
-2018-06-26 13:00:00,13211.0
-2018-06-26 14:00:00,13702.0
-2018-06-26 15:00:00,14279.0
-2018-06-26 16:00:00,15081.0
-2018-06-26 17:00:00,15453.0
-2018-06-26 18:00:00,15369.0
-2018-06-26 19:00:00,15177.0
-2018-06-26 20:00:00,14546.0
-2018-06-26 21:00:00,14039.0
-2018-06-26 22:00:00,13750.0
-2018-06-26 23:00:00,13373.0
-2018-06-27 00:00:00,12504.0
-2018-06-25 01:00:00,9864.0
-2018-06-25 02:00:00,9280.0
-2018-06-25 03:00:00,8841.0
-2018-06-25 04:00:00,8543.0
-2018-06-25 05:00:00,8460.0
-2018-06-25 06:00:00,8664.0
-2018-06-25 07:00:00,9136.0
-2018-06-25 08:00:00,10081.0
-2018-06-25 09:00:00,11174.0
-2018-06-25 10:00:00,11918.0
-2018-06-25 11:00:00,12556.0
-2018-06-25 12:00:00,13146.0
-2018-06-25 13:00:00,13595.0
-2018-06-25 14:00:00,13949.0
-2018-06-25 15:00:00,14293.0
-2018-06-25 16:00:00,14543.0
-2018-06-25 17:00:00,14746.0
-2018-06-25 18:00:00,14845.0
-2018-06-25 19:00:00,14688.0
-2018-06-25 20:00:00,14147.0
-2018-06-25 21:00:00,13468.0
-2018-06-25 22:00:00,13192.0
-2018-06-25 23:00:00,12935.0
-2018-06-26 00:00:00,12110.0
-2018-06-24 01:00:00,9944.0
-2018-06-24 02:00:00,9379.0
-2018-06-24 03:00:00,8941.0
-2018-06-24 04:00:00,8592.0
-2018-06-24 05:00:00,8363.0
-2018-06-24 06:00:00,8259.0
-2018-06-24 07:00:00,8108.0
-2018-06-24 08:00:00,8275.0
-2018-06-24 09:00:00,8900.0
-2018-06-24 10:00:00,9743.0
-2018-06-24 11:00:00,10592.0
-2018-06-24 12:00:00,11376.0
-2018-06-24 13:00:00,12005.0
-2018-06-24 14:00:00,12548.0
-2018-06-24 15:00:00,12928.0
-2018-06-24 16:00:00,13256.0
-2018-06-24 17:00:00,13346.0
-2018-06-24 18:00:00,13215.0
-2018-06-24 19:00:00,13103.0
-2018-06-24 20:00:00,12696.0
-2018-06-24 21:00:00,12002.0
-2018-06-24 22:00:00,11547.0
-2018-06-24 23:00:00,11301.0
-2018-06-25 00:00:00,10623.0
-2018-06-23 01:00:00,9391.0
-2018-06-23 02:00:00,8899.0
-2018-06-23 03:00:00,8572.0
-2018-06-23 04:00:00,8332.0
-2018-06-23 05:00:00,8210.0
-2018-06-23 06:00:00,8207.0
-2018-06-23 07:00:00,8354.0
-2018-06-23 08:00:00,8577.0
-2018-06-23 09:00:00,9054.0
-2018-06-23 10:00:00,9648.0
-2018-06-23 11:00:00,10159.0
-2018-06-23 12:00:00,10541.0
-2018-06-23 13:00:00,10928.0
-2018-06-23 14:00:00,11238.0
-2018-06-23 15:00:00,11486.0
-2018-06-23 16:00:00,11706.0
-2018-06-23 17:00:00,11846.0
-2018-06-23 18:00:00,11959.0
-2018-06-23 19:00:00,11929.0
-2018-06-23 20:00:00,11610.0
-2018-06-23 21:00:00,11244.0
-2018-06-23 22:00:00,11221.0
-2018-06-23 23:00:00,11131.0
-2018-06-24 00:00:00,10572.0
-2018-06-22 01:00:00,9914.0
-2018-06-22 02:00:00,9378.0
-2018-06-22 03:00:00,9012.0
-2018-06-22 04:00:00,8822.0
-2018-06-22 05:00:00,8687.0
-2018-06-22 06:00:00,8843.0
-2018-06-22 07:00:00,9253.0
-2018-06-22 08:00:00,10029.0
-2018-06-22 09:00:00,10700.0
-2018-06-22 10:00:00,11146.0
-2018-06-22 11:00:00,11371.0
-2018-06-22 12:00:00,11508.0
-2018-06-22 13:00:00,11529.0
-2018-06-22 14:00:00,11472.0
-2018-06-22 15:00:00,11485.0
-2018-06-22 16:00:00,11385.0
-2018-06-22 17:00:00,11195.0
-2018-06-22 18:00:00,11037.0
-2018-06-22 19:00:00,10861.0
-2018-06-22 20:00:00,10663.0
-2018-06-22 21:00:00,10541.0
-2018-06-22 22:00:00,10631.0
-2018-06-22 23:00:00,10543.0
-2018-06-23 00:00:00,9989.0
-2018-06-21 01:00:00,10648.0
-2018-06-21 02:00:00,10016.0
-2018-06-21 03:00:00,9573.0
-2018-06-21 04:00:00,9231.0
-2018-06-21 05:00:00,9143.0
-2018-06-21 06:00:00,9289.0
-2018-06-21 07:00:00,9818.0
-2018-06-21 08:00:00,10657.0
-2018-06-21 09:00:00,11481.0
-2018-06-21 10:00:00,11963.0
-2018-06-21 11:00:00,12251.0
-2018-06-21 12:00:00,12485.0
-2018-06-21 13:00:00,12497.0
-2018-06-21 14:00:00,12455.0
-2018-06-21 15:00:00,12426.0
-2018-06-21 16:00:00,12266.0
-2018-06-21 17:00:00,12064.0
-2018-06-21 18:00:00,11920.0
-2018-06-21 19:00:00,11782.0
-2018-06-21 20:00:00,11615.0
-2018-06-21 21:00:00,11528.0
-2018-06-21 22:00:00,11505.0
-2018-06-21 23:00:00,11258.0
-2018-06-22 00:00:00,10622.0
-2018-06-20 01:00:00,11069.0
-2018-06-20 02:00:00,10334.0
-2018-06-20 03:00:00,9832.0
-2018-06-20 04:00:00,9510.0
-2018-06-20 05:00:00,9381.0
-2018-06-20 06:00:00,9469.0
-2018-06-20 07:00:00,9949.0
-2018-06-20 08:00:00,10810.0
-2018-06-20 09:00:00,11640.0
-2018-06-20 10:00:00,12103.0
-2018-06-20 11:00:00,12611.0
-2018-06-20 12:00:00,13265.0
-2018-06-20 13:00:00,13722.0
-2018-06-20 14:00:00,14063.0
-2018-06-20 15:00:00,14514.0
-2018-06-20 16:00:00,14786.0
-2018-06-20 17:00:00,14741.0
-2018-06-20 18:00:00,14671.0
-2018-06-20 19:00:00,14418.0
-2018-06-20 20:00:00,13817.0
-2018-06-20 21:00:00,13058.0
-2018-06-20 22:00:00,12712.0
-2018-06-20 23:00:00,12310.0
-2018-06-21 00:00:00,11492.0
-2018-06-19 01:00:00,13394.0
-2018-06-19 02:00:00,12273.0
-2018-06-19 03:00:00,11426.0
-2018-06-19 04:00:00,10841.0
-2018-06-19 05:00:00,10524.0
-2018-06-19 06:00:00,10509.0
-2018-06-19 07:00:00,10855.0
-2018-06-19 08:00:00,11523.0
-2018-06-19 09:00:00,12339.0
-2018-06-19 10:00:00,13025.0
-2018-06-19 11:00:00,13651.0
-2018-06-19 12:00:00,14293.0
-2018-06-19 13:00:00,15008.0
-2018-06-19 14:00:00,15630.0
-2018-06-19 15:00:00,16160.0
-2018-06-19 16:00:00,16387.0
-2018-06-19 17:00:00,16030.0
-2018-06-19 18:00:00,15315.0
-2018-06-19 19:00:00,14758.0
-2018-06-19 20:00:00,14127.0
-2018-06-19 21:00:00,13556.0
-2018-06-19 22:00:00,13296.0
-2018-06-19 23:00:00,12891.0
-2018-06-20 00:00:00,12016.0
-2018-06-18 01:00:00,14753.0
-2018-06-18 02:00:00,13812.0
-2018-06-18 03:00:00,13239.0
-2018-06-18 04:00:00,12770.0
-2018-06-18 05:00:00,12495.0
-2018-06-18 06:00:00,12578.0
-2018-06-18 07:00:00,13042.0
-2018-06-18 08:00:00,14139.0
-2018-06-18 09:00:00,15689.0
-2018-06-18 10:00:00,16983.0
-2018-06-18 11:00:00,18085.0
-2018-06-18 12:00:00,19090.0
-2018-06-18 13:00:00,19926.0
-2018-06-18 14:00:00,20498.0
-2018-06-18 15:00:00,20941.0
-2018-06-18 16:00:00,21209.0
-2018-06-18 17:00:00,21349.0
-2018-06-18 18:00:00,21344.0
-2018-06-18 19:00:00,20727.0
-2018-06-18 20:00:00,19188.0
-2018-06-18 21:00:00,18050.0
-2018-06-18 22:00:00,17122.0
-2018-06-18 23:00:00,16209.0
-2018-06-19 00:00:00,14819.0
-2018-06-17 01:00:00,14147.0
-2018-06-17 02:00:00,13278.0
-2018-06-17 03:00:00,12563.0
-2018-06-17 04:00:00,11966.0
-2018-06-17 05:00:00,11474.0
-2018-06-17 06:00:00,11226.0
-2018-06-17 07:00:00,10926.0
-2018-06-17 08:00:00,11219.0
-2018-06-17 09:00:00,12275.0
-2018-06-17 10:00:00,13646.0
-2018-06-17 11:00:00,15034.0
-2018-06-17 12:00:00,16198.0
-2018-06-17 13:00:00,17102.0
-2018-06-17 14:00:00,17760.0
-2018-06-17 15:00:00,18241.0
-2018-06-17 16:00:00,18449.0
-2018-06-17 17:00:00,18390.0
-2018-06-17 18:00:00,18215.0
-2018-06-17 19:00:00,17974.0
-2018-06-17 20:00:00,17599.0
-2018-06-17 21:00:00,17213.0
-2018-06-17 22:00:00,16949.0
-2018-06-17 23:00:00,16789.0
-2018-06-18 00:00:00,15823.0
-2018-06-16 01:00:00,13472.0
-2018-06-16 02:00:00,12619.0
-2018-06-16 03:00:00,11781.0
-2018-06-16 04:00:00,10973.0
-2018-06-16 05:00:00,10456.0
-2018-06-16 06:00:00,10275.0
-2018-06-16 07:00:00,10211.0
-2018-06-16 08:00:00,10410.0
-2018-06-16 09:00:00,11334.0
-2018-06-16 10:00:00,12681.0
-2018-06-16 11:00:00,14007.0
-2018-06-16 12:00:00,15050.0
-2018-06-16 13:00:00,15834.0
-2018-06-16 14:00:00,16284.0
-2018-06-16 15:00:00,16632.0
-2018-06-16 16:00:00,17057.0
-2018-06-16 17:00:00,17496.0
-2018-06-16 18:00:00,17801.0
-2018-06-16 19:00:00,17910.0
-2018-06-16 20:00:00,17464.0
-2018-06-16 21:00:00,16834.0
-2018-06-16 22:00:00,16384.0
-2018-06-16 23:00:00,16000.0
-2018-06-17 00:00:00,15129.0
-2018-06-15 01:00:00,10585.0
-2018-06-15 02:00:00,9850.0
-2018-06-15 03:00:00,9382.0
-2018-06-15 04:00:00,8982.0
-2018-06-15 05:00:00,8848.0
-2018-06-15 06:00:00,8954.0
-2018-06-15 07:00:00,9326.0
-2018-06-15 08:00:00,10283.0
-2018-06-15 09:00:00,11329.0
-2018-06-15 10:00:00,12082.0
-2018-06-15 11:00:00,12501.0
-2018-06-15 12:00:00,12818.0
-2018-06-15 13:00:00,13178.0
-2018-06-15 14:00:00,13851.0
-2018-06-15 15:00:00,14763.0
-2018-06-15 16:00:00,15616.0
-2018-06-15 17:00:00,16326.0
-2018-06-15 18:00:00,16833.0
-2018-06-15 19:00:00,16994.0
-2018-06-15 20:00:00,16684.0
-2018-06-15 21:00:00,16062.0
-2018-06-15 22:00:00,15713.0
-2018-06-15 23:00:00,15411.0
-2018-06-16 00:00:00,14555.0
-2018-06-14 01:00:00,10507.0
-2018-06-14 02:00:00,9709.0
-2018-06-14 03:00:00,9180.0
-2018-06-14 04:00:00,8904.0
-2018-06-14 05:00:00,8766.0
-2018-06-14 06:00:00,8882.0
-2018-06-14 07:00:00,9260.0
-2018-06-14 08:00:00,10199.0
-2018-06-14 09:00:00,11085.0
-2018-06-14 10:00:00,12004.0
-2018-06-14 11:00:00,12748.0
-2018-06-14 12:00:00,13344.0
-2018-06-14 13:00:00,13829.0
-2018-06-14 14:00:00,14156.0
-2018-06-14 15:00:00,14394.0
-2018-06-14 16:00:00,14347.0
-2018-06-14 17:00:00,14149.0
-2018-06-14 18:00:00,13910.0
-2018-06-14 19:00:00,13617.0
-2018-06-14 20:00:00,13147.0
-2018-06-14 21:00:00,12760.0
-2018-06-14 22:00:00,12630.0
-2018-06-14 23:00:00,12451.0
-2018-06-15 00:00:00,11567.0
-2018-06-13 01:00:00,10997.0
-2018-06-13 02:00:00,10254.0
-2018-06-13 03:00:00,9767.0
-2018-06-13 04:00:00,9463.0
-2018-06-13 05:00:00,9358.0
-2018-06-13 06:00:00,9460.0
-2018-06-13 07:00:00,9917.0
-2018-06-13 08:00:00,10939.0
-2018-06-13 09:00:00,11978.0
-2018-06-13 10:00:00,12823.0
-2018-06-13 11:00:00,13454.0
-2018-06-13 12:00:00,13981.0
-2018-06-13 13:00:00,14261.0
-2018-06-13 14:00:00,14467.0
-2018-06-13 15:00:00,14749.0
-2018-06-13 16:00:00,14970.0
-2018-06-13 17:00:00,15134.0
-2018-06-13 18:00:00,15236.0
-2018-06-13 19:00:00,15119.0
-2018-06-13 20:00:00,14622.0
-2018-06-13 21:00:00,13925.0
-2018-06-13 22:00:00,13228.0
-2018-06-13 23:00:00,12672.0
-2018-06-14 00:00:00,11591.0
-2018-06-12 01:00:00,9669.0
-2018-06-12 02:00:00,9117.0
-2018-06-12 03:00:00,8789.0
-2018-06-12 04:00:00,8583.0
-2018-06-12 05:00:00,8559.0
-2018-06-12 06:00:00,8730.0
-2018-06-12 07:00:00,9215.0
-2018-06-12 08:00:00,10120.0
-2018-06-12 09:00:00,11002.0
-2018-06-12 10:00:00,11576.0
-2018-06-12 11:00:00,12006.0
-2018-06-12 12:00:00,12449.0
-2018-06-12 13:00:00,12711.0
-2018-06-12 14:00:00,12948.0
-2018-06-12 15:00:00,13340.0
-2018-06-12 16:00:00,13674.0
-2018-06-12 17:00:00,13879.0
-2018-06-12 18:00:00,13856.0
-2018-06-12 19:00:00,13718.0
-2018-06-12 20:00:00,13389.0
-2018-06-12 21:00:00,13190.0
-2018-06-12 22:00:00,13194.0
-2018-06-12 23:00:00,12955.0
-2018-06-13 00:00:00,12019.0
-2018-06-11 01:00:00,8940.0
-2018-06-11 02:00:00,8590.0
-2018-06-11 03:00:00,8338.0
-2018-06-11 04:00:00,8232.0
-2018-06-11 05:00:00,8153.0
-2018-06-11 06:00:00,8404.0
-2018-06-11 07:00:00,8848.0
-2018-06-11 08:00:00,9679.0
-2018-06-11 09:00:00,10501.0
-2018-06-11 10:00:00,10976.0
-2018-06-11 11:00:00,11284.0
-2018-06-11 12:00:00,11566.0
-2018-06-11 13:00:00,11704.0
-2018-06-11 14:00:00,11765.0
-2018-06-11 15:00:00,11852.0
-2018-06-11 16:00:00,11854.0
-2018-06-11 17:00:00,11714.0
-2018-06-11 18:00:00,11629.0
-2018-06-11 19:00:00,11514.0
-2018-06-11 20:00:00,11383.0
-2018-06-11 21:00:00,11243.0
-2018-06-11 22:00:00,11361.0
-2018-06-11 23:00:00,11113.0
-2018-06-12 00:00:00,10432.0
-2018-06-10 01:00:00,9447.0
-2018-06-10 02:00:00,8863.0
-2018-06-10 03:00:00,8478.0
-2018-06-10 04:00:00,8207.0
-2018-06-10 05:00:00,8165.0
-2018-06-10 06:00:00,8148.0
-2018-06-10 07:00:00,8169.0
-2018-06-10 08:00:00,8121.0
-2018-06-10 09:00:00,8431.0
-2018-06-10 10:00:00,8876.0
-2018-06-10 11:00:00,9307.0
-2018-06-10 12:00:00,9654.0
-2018-06-10 13:00:00,9900.0
-2018-06-10 14:00:00,9973.0
-2018-06-10 15:00:00,9967.0
-2018-06-10 16:00:00,9895.0
-2018-06-10 17:00:00,9832.0
-2018-06-10 18:00:00,9740.0
-2018-06-10 19:00:00,9808.0
-2018-06-10 20:00:00,9748.0
-2018-06-10 21:00:00,9717.0
-2018-06-10 22:00:00,9953.0
-2018-06-10 23:00:00,9900.0
-2018-06-11 00:00:00,9494.0
-2018-06-09 01:00:00,9552.0
-2018-06-09 02:00:00,8960.0
-2018-06-09 03:00:00,8538.0
-2018-06-09 04:00:00,8283.0
-2018-06-09 05:00:00,8103.0
-2018-06-09 06:00:00,8111.0
-2018-06-09 07:00:00,8379.0
-2018-06-09 08:00:00,8701.0
-2018-06-09 09:00:00,9148.0
-2018-06-09 10:00:00,9664.0
-2018-06-09 11:00:00,10038.0
-2018-06-09 12:00:00,10292.0
-2018-06-09 13:00:00,10492.0
-2018-06-09 14:00:00,10745.0
-2018-06-09 15:00:00,10991.0
-2018-06-09 16:00:00,11332.0
-2018-06-09 17:00:00,11722.0
-2018-06-09 18:00:00,12046.0
-2018-06-09 19:00:00,12152.0
-2018-06-09 20:00:00,11850.0
-2018-06-09 21:00:00,11282.0
-2018-06-09 22:00:00,11043.0
-2018-06-09 23:00:00,10743.0
-2018-06-10 00:00:00,10072.0
-2018-06-08 01:00:00,10020.0
-2018-06-08 02:00:00,9316.0
-2018-06-08 03:00:00,8893.0
-2018-06-08 04:00:00,8578.0
-2018-06-08 05:00:00,8458.0
-2018-06-08 06:00:00,8577.0
-2018-06-08 07:00:00,8975.0
-2018-06-08 08:00:00,9642.0
-2018-06-08 09:00:00,10363.0
-2018-06-08 10:00:00,10905.0
-2018-06-08 11:00:00,11192.0
-2018-06-08 12:00:00,11428.0
-2018-06-08 13:00:00,11533.0
-2018-06-08 14:00:00,11661.0
-2018-06-08 15:00:00,11893.0
-2018-06-08 16:00:00,11970.0
-2018-06-08 17:00:00,11899.0
-2018-06-08 18:00:00,11908.0
-2018-06-08 19:00:00,11850.0
-2018-06-08 20:00:00,11637.0
-2018-06-08 21:00:00,11283.0
-2018-06-08 22:00:00,11250.0
-2018-06-08 23:00:00,11021.0
-2018-06-09 00:00:00,10343.0
-2018-06-07 01:00:00,10099.0
-2018-06-07 02:00:00,9475.0
-2018-06-07 03:00:00,9034.0
-2018-06-07 04:00:00,8694.0
-2018-06-07 05:00:00,8622.0
-2018-06-07 06:00:00,8717.0
-2018-06-07 07:00:00,9154.0
-2018-06-07 08:00:00,9951.0
-2018-06-07 09:00:00,10855.0
-2018-06-07 10:00:00,11627.0
-2018-06-07 11:00:00,12357.0
-2018-06-07 12:00:00,13000.0
-2018-06-07 13:00:00,13495.0
-2018-06-07 14:00:00,13896.0
-2018-06-07 15:00:00,14357.0
-2018-06-07 16:00:00,14782.0
-2018-06-07 17:00:00,15001.0
-2018-06-07 18:00:00,15029.0
-2018-06-07 19:00:00,14674.0
-2018-06-07 20:00:00,13865.0
-2018-06-07 21:00:00,12944.0
-2018-06-07 22:00:00,12448.0
-2018-06-07 23:00:00,11903.0
-2018-06-08 00:00:00,10977.0
-2018-06-06 01:00:00,8997.0
-2018-06-06 02:00:00,8508.0
-2018-06-06 03:00:00,8222.0
-2018-06-06 04:00:00,8020.0
-2018-06-06 05:00:00,7922.0
-2018-06-06 06:00:00,8062.0
-2018-06-06 07:00:00,8394.0
-2018-06-06 08:00:00,9190.0
-2018-06-06 09:00:00,10026.0
-2018-06-06 10:00:00,10630.0
-2018-06-06 11:00:00,11055.0
-2018-06-06 12:00:00,11439.0
-2018-06-06 13:00:00,11619.0
-2018-06-06 14:00:00,11672.0
-2018-06-06 15:00:00,11684.0
-2018-06-06 16:00:00,11927.0
-2018-06-06 17:00:00,12127.0
-2018-06-06 18:00:00,12137.0
-2018-06-06 19:00:00,12190.0
-2018-06-06 20:00:00,12145.0
-2018-06-06 21:00:00,11921.0
-2018-06-06 22:00:00,11976.0
-2018-06-06 23:00:00,11770.0
-2018-06-07 00:00:00,10987.0
-2018-06-05 01:00:00,10466.0
-2018-06-05 02:00:00,9801.0
-2018-06-05 03:00:00,9317.0
-2018-06-05 04:00:00,8985.0
-2018-06-05 05:00:00,8818.0
-2018-06-05 06:00:00,8927.0
-2018-06-05 07:00:00,9367.0
-2018-06-05 08:00:00,10177.0
-2018-06-05 09:00:00,10955.0
-2018-06-05 10:00:00,11494.0
-2018-06-05 11:00:00,11863.0
-2018-06-05 12:00:00,12116.0
-2018-06-05 13:00:00,12188.0
-2018-06-05 14:00:00,12186.0
-2018-06-05 15:00:00,12185.0
-2018-06-05 16:00:00,12053.0
-2018-06-05 17:00:00,11854.0
-2018-06-05 18:00:00,11599.0
-2018-06-05 19:00:00,11377.0
-2018-06-05 20:00:00,10941.0
-2018-06-05 21:00:00,10607.0
-2018-06-05 22:00:00,10529.0
-2018-06-05 23:00:00,10382.0
-2018-06-06 00:00:00,9720.0
-2018-06-04 01:00:00,8984.0
-2018-06-04 02:00:00,8474.0
-2018-06-04 03:00:00,8154.0
-2018-06-04 04:00:00,7968.0
-2018-06-04 05:00:00,7928.0
-2018-06-04 06:00:00,8126.0
-2018-06-04 07:00:00,8547.0
-2018-06-04 08:00:00,9435.0
-2018-06-04 09:00:00,10372.0
-2018-06-04 10:00:00,11007.0
-2018-06-04 11:00:00,11408.0
-2018-06-04 12:00:00,11773.0
-2018-06-04 13:00:00,12034.0
-2018-06-04 14:00:00,12264.0
-2018-06-04 15:00:00,12579.0
-2018-06-04 16:00:00,12870.0
-2018-06-04 17:00:00,13177.0
-2018-06-04 18:00:00,13399.0
-2018-06-04 19:00:00,13449.0
-2018-06-04 20:00:00,13244.0
-2018-06-04 21:00:00,12872.0
-2018-06-04 22:00:00,12588.0
-2018-06-04 23:00:00,12285.0
-2018-06-05 00:00:00,11407.0
-2018-06-03 01:00:00,9184.0
-2018-06-03 02:00:00,8687.0
-2018-06-03 03:00:00,8321.0
-2018-06-03 04:00:00,8104.0
-2018-06-03 05:00:00,7953.0
-2018-06-03 06:00:00,7927.0
-2018-06-03 07:00:00,7785.0
-2018-06-03 08:00:00,7930.0
-2018-06-03 09:00:00,8315.0
-2018-06-03 10:00:00,8870.0
-2018-06-03 11:00:00,9361.0
-2018-06-03 12:00:00,9786.0
-2018-06-03 13:00:00,10136.0
-2018-06-03 14:00:00,10415.0
-2018-06-03 15:00:00,10602.0
-2018-06-03 16:00:00,10766.0
-2018-06-03 17:00:00,10848.0
-2018-06-03 18:00:00,10931.0
-2018-06-03 19:00:00,10864.0
-2018-06-03 20:00:00,10680.0
-2018-06-03 21:00:00,10372.0
-2018-06-03 22:00:00,10265.0
-2018-06-03 23:00:00,10175.0
-2018-06-04 00:00:00,9624.0
-2018-06-02 01:00:00,9357.0
-2018-06-02 02:00:00,8799.0
-2018-06-02 03:00:00,8388.0
-2018-06-02 04:00:00,8153.0
-2018-06-02 05:00:00,8014.0
-2018-06-02 06:00:00,8003.0
-2018-06-02 07:00:00,8030.0
-2018-06-02 08:00:00,8275.0
-2018-06-02 09:00:00,8761.0
-2018-06-02 10:00:00,9253.0
-2018-06-02 11:00:00,9671.0
-2018-06-02 12:00:00,9893.0
-2018-06-02 13:00:00,10082.0
-2018-06-02 14:00:00,10112.0
-2018-06-02 15:00:00,10169.0
-2018-06-02 16:00:00,10282.0
-2018-06-02 17:00:00,10469.0
-2018-06-02 18:00:00,10665.0
-2018-06-02 19:00:00,10645.0
-2018-06-02 20:00:00,10495.0
-2018-06-02 21:00:00,10336.0
-2018-06-02 22:00:00,10457.0
-2018-06-02 23:00:00,10311.0
-2018-06-03 00:00:00,9808.0
-2018-06-01 01:00:00,13078.0
-2018-06-01 02:00:00,11985.0
-2018-06-01 03:00:00,11243.0
-2018-06-01 04:00:00,10649.0
-2018-06-01 05:00:00,10360.0
-2018-06-01 06:00:00,10355.0
-2018-06-01 07:00:00,10790.0
-2018-06-01 08:00:00,11856.0
-2018-06-01 09:00:00,13120.0
-2018-06-01 10:00:00,13593.0
-2018-06-01 11:00:00,13743.0
-2018-06-01 12:00:00,13736.0
-2018-06-01 13:00:00,13724.0
-2018-06-01 14:00:00,13640.0
-2018-06-01 15:00:00,13648.0
-2018-06-01 16:00:00,13623.0
-2018-06-01 17:00:00,13536.0
-2018-06-01 18:00:00,13278.0
-2018-06-01 19:00:00,12835.0
-2018-06-01 20:00:00,12161.0
-2018-06-01 21:00:00,11488.0
-2018-06-01 22:00:00,11168.0
-2018-06-01 23:00:00,10852.0
-2018-06-02 00:00:00,10148.0
-2018-05-31 01:00:00,11765.0
-2018-05-31 02:00:00,11010.0
-2018-05-31 03:00:00,10433.0
-2018-05-31 04:00:00,10054.0
-2018-05-31 05:00:00,9885.0
-2018-05-31 06:00:00,9985.0
-2018-05-31 07:00:00,10460.0
-2018-05-31 08:00:00,11579.0
-2018-05-31 09:00:00,12863.0
-2018-05-31 10:00:00,13880.0
-2018-05-31 11:00:00,14915.0
-2018-05-31 12:00:00,15973.0
-2018-05-31 13:00:00,16686.0
-2018-05-31 14:00:00,17306.0
-2018-05-31 15:00:00,17842.0
-2018-05-31 16:00:00,18048.0
-2018-05-31 17:00:00,18151.0
-2018-05-31 18:00:00,18397.0
-2018-05-31 19:00:00,18352.0
-2018-05-31 20:00:00,17781.0
-2018-05-31 21:00:00,17018.0
-2018-05-31 22:00:00,16370.0
-2018-05-31 23:00:00,15752.0
-2018-06-01 00:00:00,14417.0
-2018-05-30 01:00:00,11916.0
-2018-05-30 02:00:00,11025.0
-2018-05-30 03:00:00,10443.0
-2018-05-30 04:00:00,10052.0
-2018-05-30 05:00:00,9886.0
-2018-05-30 06:00:00,10020.0
-2018-05-30 07:00:00,10579.0
-2018-05-30 08:00:00,11524.0
-2018-05-30 09:00:00,12495.0
-2018-05-30 10:00:00,13202.0
-2018-05-30 11:00:00,13857.0
-2018-05-30 12:00:00,14567.0
-2018-05-30 13:00:00,15382.0
-2018-05-30 14:00:00,16066.0
-2018-05-30 15:00:00,16592.0
-2018-05-30 16:00:00,16763.0
-2018-05-30 17:00:00,16345.0
-2018-05-30 18:00:00,15872.0
-2018-05-30 19:00:00,15462.0
-2018-05-30 20:00:00,14964.0
-2018-05-30 21:00:00,14455.0
-2018-05-30 22:00:00,14250.0
-2018-05-30 23:00:00,13820.0
-2018-05-31 00:00:00,12863.0
-2018-05-29 01:00:00,12167.0
-2018-05-29 02:00:00,11210.0
-2018-05-29 03:00:00,10513.0
-2018-05-29 04:00:00,10037.0
-2018-05-29 05:00:00,9805.0
-2018-05-29 06:00:00,9846.0
-2018-05-29 07:00:00,10298.0
-2018-05-29 08:00:00,11363.0
-2018-05-29 09:00:00,12590.0
-2018-05-29 10:00:00,13642.0
-2018-05-29 11:00:00,14471.0
-2018-05-29 12:00:00,15241.0
-2018-05-29 13:00:00,15769.0
-2018-05-29 14:00:00,16374.0
-2018-05-29 15:00:00,16891.0
-2018-05-29 16:00:00,17081.0
-2018-05-29 17:00:00,17065.0
-2018-05-29 18:00:00,16896.0
-2018-05-29 19:00:00,16619.0
-2018-05-29 20:00:00,15783.0
-2018-05-29 21:00:00,14962.0
-2018-05-29 22:00:00,14669.0
-2018-05-29 23:00:00,14183.0
-2018-05-30 00:00:00,13069.0
-2018-05-28 01:00:00,12791.0
-2018-05-28 02:00:00,11788.0
-2018-05-28 03:00:00,11015.0
-2018-05-28 04:00:00,10532.0
-2018-05-28 05:00:00,10164.0
-2018-05-28 06:00:00,9924.0
-2018-05-28 07:00:00,9845.0
-2018-05-28 08:00:00,10260.0
-2018-05-28 09:00:00,11213.0
-2018-05-28 10:00:00,12510.0
-2018-05-28 11:00:00,13794.0
-2018-05-28 12:00:00,14627.0
-2018-05-28 13:00:00,14768.0
-2018-05-28 14:00:00,14962.0
-2018-05-28 15:00:00,15255.0
-2018-05-28 16:00:00,15741.0
-2018-05-28 17:00:00,16394.0
-2018-05-28 18:00:00,17002.0
-2018-05-28 19:00:00,17254.0
-2018-05-28 20:00:00,16910.0
-2018-05-28 21:00:00,16147.0
-2018-05-28 22:00:00,15485.0
-2018-05-28 23:00:00,14768.0
-2018-05-29 00:00:00,13487.0
-2018-05-27 01:00:00,11795.0
-2018-05-27 02:00:00,10951.0
-2018-05-27 03:00:00,10262.0
-2018-05-27 04:00:00,9781.0
-2018-05-27 05:00:00,9406.0
-2018-05-27 06:00:00,9243.0
-2018-05-27 07:00:00,9028.0
-2018-05-27 08:00:00,9350.0
-2018-05-27 09:00:00,10276.0
-2018-05-27 10:00:00,11589.0
-2018-05-27 11:00:00,12974.0
-2018-05-27 12:00:00,14161.0
-2018-05-27 13:00:00,15126.0
-2018-05-27 14:00:00,15768.0
-2018-05-27 15:00:00,16225.0
-2018-05-27 16:00:00,16602.0
-2018-05-27 17:00:00,16888.0
-2018-05-27 18:00:00,17001.0
-2018-05-27 19:00:00,16883.0
-2018-05-27 20:00:00,16525.0
-2018-05-27 21:00:00,15825.0
-2018-05-27 22:00:00,15320.0
-2018-05-27 23:00:00,14761.0
-2018-05-28 00:00:00,13811.0
-2018-05-26 01:00:00,11981.0
-2018-05-26 02:00:00,11112.0
-2018-05-26 03:00:00,10430.0
-2018-05-26 04:00:00,9919.0
-2018-05-26 05:00:00,9633.0
-2018-05-26 06:00:00,9477.0
-2018-05-26 07:00:00,9395.0
-2018-05-26 08:00:00,9617.0
-2018-05-26 09:00:00,10373.0
-2018-05-26 10:00:00,11357.0
-2018-05-26 11:00:00,12278.0
-2018-05-26 12:00:00,13214.0
-2018-05-26 13:00:00,13941.0
-2018-05-26 14:00:00,14463.0
-2018-05-26 15:00:00,14890.0
-2018-05-26 16:00:00,15247.0
-2018-05-26 17:00:00,15577.0
-2018-05-26 18:00:00,15768.0
-2018-05-26 19:00:00,15755.0
-2018-05-26 20:00:00,15410.0
-2018-05-26 21:00:00,14819.0
-2018-05-26 22:00:00,14221.0
-2018-05-26 23:00:00,13717.0
-2018-05-27 00:00:00,12798.0
-2018-05-25 01:00:00,10915.0
-2018-05-25 02:00:00,10062.0
-2018-05-25 03:00:00,9480.0
-2018-05-25 04:00:00,9089.0
-2018-05-25 05:00:00,8862.0
-2018-05-25 06:00:00,8940.0
-2018-05-25 07:00:00,9309.0
-2018-05-25 08:00:00,10284.0
-2018-05-25 09:00:00,11435.0
-2018-05-25 10:00:00,12444.0
-2018-05-25 11:00:00,13288.0
-2018-05-25 12:00:00,14122.0
-2018-05-25 13:00:00,14820.0
-2018-05-25 14:00:00,15351.0
-2018-05-25 15:00:00,15854.0
-2018-05-25 16:00:00,16168.0
-2018-05-25 17:00:00,16159.0
-2018-05-25 18:00:00,15925.0
-2018-05-25 19:00:00,15412.0
-2018-05-25 20:00:00,14785.0
-2018-05-25 21:00:00,14342.0
-2018-05-25 22:00:00,14172.0
-2018-05-25 23:00:00,13789.0
-2018-05-26 00:00:00,12979.0
-2018-05-24 01:00:00,9660.0
-2018-05-24 02:00:00,9019.0
-2018-05-24 03:00:00,8575.0
-2018-05-24 04:00:00,8343.0
-2018-05-24 05:00:00,8246.0
-2018-05-24 06:00:00,8366.0
-2018-05-24 07:00:00,8792.0
-2018-05-24 08:00:00,9686.0
-2018-05-24 09:00:00,10730.0
-2018-05-24 10:00:00,11437.0
-2018-05-24 11:00:00,11984.0
-2018-05-24 12:00:00,12533.0
-2018-05-24 13:00:00,12987.0
-2018-05-24 14:00:00,13381.0
-2018-05-24 15:00:00,13864.0
-2018-05-24 16:00:00,14216.0
-2018-05-24 17:00:00,14517.0
-2018-05-24 18:00:00,14775.0
-2018-05-24 19:00:00,14710.0
-2018-05-24 20:00:00,14354.0
-2018-05-24 21:00:00,13868.0
-2018-05-24 22:00:00,13583.0
-2018-05-24 23:00:00,13066.0
-2018-05-25 00:00:00,12043.0
-2018-05-23 01:00:00,9079.0
-2018-05-23 02:00:00,8593.0
-2018-05-23 03:00:00,8319.0
-2018-05-23 04:00:00,8104.0
-2018-05-23 05:00:00,8079.0
-2018-05-23 06:00:00,8253.0
-2018-05-23 07:00:00,8688.0
-2018-05-23 08:00:00,9518.0
-2018-05-23 09:00:00,10359.0
-2018-05-23 10:00:00,10859.0
-2018-05-23 11:00:00,11239.0
-2018-05-23 12:00:00,11583.0
-2018-05-23 13:00:00,11808.0
-2018-05-23 14:00:00,12003.0
-2018-05-23 15:00:00,12312.0
-2018-05-23 16:00:00,12478.0
-2018-05-23 17:00:00,12587.0
-2018-05-23 18:00:00,12673.0
-2018-05-23 19:00:00,12612.0
-2018-05-23 20:00:00,12244.0
-2018-05-23 21:00:00,11906.0
-2018-05-23 22:00:00,11823.0
-2018-05-23 23:00:00,11445.0
-2018-05-24 00:00:00,10567.0
-2018-05-22 01:00:00,9065.0
-2018-05-22 02:00:00,8618.0
-2018-05-22 03:00:00,8333.0
-2018-05-22 04:00:00,8145.0
-2018-05-22 05:00:00,8110.0
-2018-05-22 06:00:00,8278.0
-2018-05-22 07:00:00,8838.0
-2018-05-22 08:00:00,9669.0
-2018-05-22 09:00:00,10371.0
-2018-05-22 10:00:00,10753.0
-2018-05-22 11:00:00,10976.0
-2018-05-22 12:00:00,11145.0
-2018-05-22 13:00:00,11289.0
-2018-05-22 14:00:00,11322.0
-2018-05-22 15:00:00,11381.0
-2018-05-22 16:00:00,11292.0
-2018-05-22 17:00:00,11196.0
-2018-05-22 18:00:00,11091.0
-2018-05-22 19:00:00,10956.0
-2018-05-22 20:00:00,10739.0
-2018-05-22 21:00:00,10616.0
-2018-05-22 22:00:00,10776.0
-2018-05-22 23:00:00,10517.0
-2018-05-23 00:00:00,9819.0
-2018-05-21 01:00:00,8317.0
-2018-05-21 02:00:00,8003.0
-2018-05-21 03:00:00,7811.0
-2018-05-21 04:00:00,7723.0
-2018-05-21 05:00:00,7728.0
-2018-05-21 06:00:00,7960.0
-2018-05-21 07:00:00,8666.0
-2018-05-21 08:00:00,9631.0
-2018-05-21 09:00:00,10464.0
-2018-05-21 10:00:00,10752.0
-2018-05-21 11:00:00,10929.0
-2018-05-21 12:00:00,11211.0
-2018-05-21 13:00:00,11333.0
-2018-05-21 14:00:00,11276.0
-2018-05-21 15:00:00,11298.0
-2018-05-21 16:00:00,11170.0
-2018-05-21 17:00:00,11076.0
-2018-05-21 18:00:00,11033.0
-2018-05-21 19:00:00,10948.0
-2018-05-21 20:00:00,10756.0
-2018-05-21 21:00:00,10649.0
-2018-05-21 22:00:00,10808.0
-2018-05-21 23:00:00,10479.0
-2018-05-22 00:00:00,9763.0
-2018-05-20 01:00:00,8650.0
-2018-05-20 02:00:00,8233.0
-2018-05-20 03:00:00,7878.0
-2018-05-20 04:00:00,7670.0
-2018-05-20 05:00:00,7547.0
-2018-05-20 06:00:00,7510.0
-2018-05-20 07:00:00,7488.0
-2018-05-20 08:00:00,7552.0
-2018-05-20 09:00:00,7775.0
-2018-05-20 10:00:00,8141.0
-2018-05-20 11:00:00,8510.0
-2018-05-20 12:00:00,8784.0
-2018-05-20 13:00:00,8931.0
-2018-05-20 14:00:00,8927.0
-2018-05-20 15:00:00,8809.0
-2018-05-20 16:00:00,8820.0
-2018-05-20 17:00:00,8763.0
-2018-05-20 18:00:00,8767.0
-2018-05-20 19:00:00,8895.0
-2018-05-20 20:00:00,8953.0
-2018-05-20 21:00:00,9082.0
-2018-05-20 22:00:00,9385.0
-2018-05-20 23:00:00,9266.0
-2018-05-21 00:00:00,8791.0
-2018-05-19 01:00:00,9018.0
-2018-05-19 02:00:00,8535.0
-2018-05-19 03:00:00,8236.0
-2018-05-19 04:00:00,8006.0
-2018-05-19 05:00:00,7873.0
-2018-05-19 06:00:00,7951.0
-2018-05-19 07:00:00,8107.0
-2018-05-19 08:00:00,8344.0
-2018-05-19 09:00:00,8764.0
-2018-05-19 10:00:00,9207.0
-2018-05-19 11:00:00,9565.0
-2018-05-19 12:00:00,9752.0
-2018-05-19 13:00:00,9874.0
-2018-05-19 14:00:00,9789.0
-2018-05-19 15:00:00,9733.0
-2018-05-19 16:00:00,9634.0
-2018-05-19 17:00:00,9607.0
-2018-05-19 18:00:00,9663.0
-2018-05-19 19:00:00,9643.0
-2018-05-19 20:00:00,9623.0
-2018-05-19 21:00:00,9618.0
-2018-05-19 22:00:00,9826.0
-2018-05-19 23:00:00,9639.0
-2018-05-20 00:00:00,9198.0
-2018-05-18 01:00:00,8968.0
-2018-05-18 02:00:00,8482.0
-2018-05-18 03:00:00,8191.0
-2018-05-18 04:00:00,8004.0
-2018-05-18 05:00:00,7944.0
-2018-05-18 06:00:00,8145.0
-2018-05-18 07:00:00,8585.0
-2018-05-18 08:00:00,9282.0
-2018-05-18 09:00:00,10030.0
-2018-05-18 10:00:00,10505.0
-2018-05-18 11:00:00,10763.0
-2018-05-18 12:00:00,10982.0
-2018-05-18 13:00:00,11149.0
-2018-05-18 14:00:00,11178.0
-2018-05-18 15:00:00,11257.0
-2018-05-18 16:00:00,11151.0
-2018-05-18 17:00:00,10914.0
-2018-05-18 18:00:00,10725.0
-2018-05-18 19:00:00,10503.0
-2018-05-18 20:00:00,10356.0
-2018-05-18 21:00:00,10373.0
-2018-05-18 22:00:00,10502.0
-2018-05-18 23:00:00,10254.0
-2018-05-19 00:00:00,9625.0
-2018-05-17 01:00:00,9478.0
-2018-05-17 02:00:00,8879.0
-2018-05-17 03:00:00,8506.0
-2018-05-17 04:00:00,8287.0
-2018-05-17 05:00:00,8162.0
-2018-05-17 06:00:00,8275.0
-2018-05-17 07:00:00,8752.0
-2018-05-17 08:00:00,9591.0
-2018-05-17 09:00:00,10490.0
-2018-05-17 10:00:00,10995.0
-2018-05-17 11:00:00,11298.0
-2018-05-17 12:00:00,11554.0
-2018-05-17 13:00:00,11756.0
-2018-05-17 14:00:00,11885.0
-2018-05-17 15:00:00,12082.0
-2018-05-17 16:00:00,12103.0
-2018-05-17 17:00:00,11997.0
-2018-05-17 18:00:00,11817.0
-2018-05-17 19:00:00,11503.0
-2018-05-17 20:00:00,10981.0
-2018-05-17 21:00:00,10673.0
-2018-05-17 22:00:00,10817.0
-2018-05-17 23:00:00,10474.0
-2018-05-18 00:00:00,9725.0
-2018-05-16 01:00:00,8917.0
-2018-05-16 02:00:00,8467.0
-2018-05-16 03:00:00,8165.0
-2018-05-16 04:00:00,7984.0
-2018-05-16 05:00:00,7934.0
-2018-05-16 06:00:00,8093.0
-2018-05-16 07:00:00,8584.0
-2018-05-16 08:00:00,9405.0
-2018-05-16 09:00:00,10183.0
-2018-05-16 10:00:00,10647.0
-2018-05-16 11:00:00,10991.0
-2018-05-16 12:00:00,11366.0
-2018-05-16 13:00:00,11601.0
-2018-05-16 14:00:00,11788.0
-2018-05-16 15:00:00,12038.0
-2018-05-16 16:00:00,12221.0
-2018-05-16 17:00:00,12346.0
-2018-05-16 18:00:00,12436.0
-2018-05-16 19:00:00,12378.0
-2018-05-16 20:00:00,12049.0
-2018-05-16 21:00:00,11734.0
-2018-05-16 22:00:00,11682.0
-2018-05-16 23:00:00,11254.0
-2018-05-17 00:00:00,10338.0
-2018-05-15 01:00:00,9551.0
-2018-05-15 02:00:00,9026.0
-2018-05-15 03:00:00,8645.0
-2018-05-15 04:00:00,8412.0
-2018-05-15 05:00:00,8341.0
-2018-05-15 06:00:00,8528.0
-2018-05-15 07:00:00,9085.0
-2018-05-15 08:00:00,10030.0
-2018-05-15 09:00:00,10766.0
-2018-05-15 10:00:00,10897.0
-2018-05-15 11:00:00,11276.0
-2018-05-15 12:00:00,11583.0
-2018-05-15 13:00:00,11692.0
-2018-05-15 14:00:00,11786.0
-2018-05-15 15:00:00,11957.0
-2018-05-15 16:00:00,11868.0
-2018-05-15 17:00:00,11547.0
-2018-05-15 18:00:00,11319.0
-2018-05-15 19:00:00,11130.0
-2018-05-15 20:00:00,10805.0
-2018-05-15 21:00:00,10567.0
-2018-05-15 22:00:00,10707.0
-2018-05-15 23:00:00,10416.0
-2018-05-16 00:00:00,9634.0
-2018-05-14 01:00:00,8201.0
-2018-05-14 02:00:00,7882.0
-2018-05-14 03:00:00,7684.0
-2018-05-14 04:00:00,7620.0
-2018-05-14 05:00:00,7632.0
-2018-05-14 06:00:00,7871.0
-2018-05-14 07:00:00,8504.0
-2018-05-14 08:00:00,9600.0
-2018-05-14 09:00:00,10455.0
-2018-05-14 10:00:00,10684.0
-2018-05-14 11:00:00,10998.0
-2018-05-14 12:00:00,11206.0
-2018-05-14 13:00:00,11304.0
-2018-05-14 14:00:00,11552.0
-2018-05-14 15:00:00,11913.0
-2018-05-14 16:00:00,12098.0
-2018-05-14 17:00:00,12229.0
-2018-05-14 18:00:00,12242.0
-2018-05-14 19:00:00,12104.0
-2018-05-14 20:00:00,11793.0
-2018-05-14 21:00:00,11464.0
-2018-05-14 22:00:00,11519.0
-2018-05-14 23:00:00,11044.0
-2018-05-15 00:00:00,10361.0
-2018-05-13 01:00:00,8478.0
-2018-05-13 02:00:00,8122.0
-2018-05-13 03:00:00,7884.0
-2018-05-13 04:00:00,7668.0
-2018-05-13 05:00:00,7580.0
-2018-05-13 06:00:00,7542.0
-2018-05-13 07:00:00,7621.0
-2018-05-13 08:00:00,7662.0
-2018-05-13 09:00:00,7917.0
-2018-05-13 10:00:00,8287.0
-2018-05-13 11:00:00,8543.0
-2018-05-13 12:00:00,8611.0
-2018-05-13 13:00:00,8637.0
-2018-05-13 14:00:00,8686.0
-2018-05-13 15:00:00,8658.0
-2018-05-13 16:00:00,8659.0
-2018-05-13 17:00:00,8667.0
-2018-05-13 18:00:00,8654.0
-2018-05-13 19:00:00,8712.0
-2018-05-13 20:00:00,8810.0
-2018-05-13 21:00:00,8879.0
-2018-05-13 22:00:00,9202.0
-2018-05-13 23:00:00,9084.0
-2018-05-14 00:00:00,8677.0
-2018-05-12 01:00:00,8872.0
-2018-05-12 02:00:00,8391.0
-2018-05-12 03:00:00,8145.0
-2018-05-12 04:00:00,7920.0
-2018-05-12 05:00:00,7861.0
-2018-05-12 06:00:00,7920.0
-2018-05-12 07:00:00,8118.0
-2018-05-12 08:00:00,8392.0
-2018-05-12 09:00:00,8880.0
-2018-05-12 10:00:00,9271.0
-2018-05-12 11:00:00,9462.0
-2018-05-12 12:00:00,9605.0
-2018-05-12 13:00:00,9506.0
-2018-05-12 14:00:00,9345.0
-2018-05-12 15:00:00,9269.0
-2018-05-12 16:00:00,9302.0
-2018-05-12 17:00:00,9164.0
-2018-05-12 18:00:00,9060.0
-2018-05-12 19:00:00,9080.0
-2018-05-12 20:00:00,9080.0
-2018-05-12 21:00:00,9181.0
-2018-05-12 22:00:00,9472.0
-2018-05-12 23:00:00,9349.0
-2018-05-13 00:00:00,8946.0
-2018-05-11 01:00:00,9118.0
-2018-05-11 02:00:00,8542.0
-2018-05-11 03:00:00,8192.0
-2018-05-11 04:00:00,7959.0
-2018-05-11 05:00:00,7895.0
-2018-05-11 06:00:00,8072.0
-2018-05-11 07:00:00,8594.0
-2018-05-11 08:00:00,9338.0
-2018-05-11 09:00:00,9999.0
-2018-05-11 10:00:00,10362.0
-2018-05-11 11:00:00,10607.0
-2018-05-11 12:00:00,10720.0
-2018-05-11 13:00:00,10775.0
-2018-05-11 14:00:00,10757.0
-2018-05-11 15:00:00,10742.0
-2018-05-11 16:00:00,10631.0
-2018-05-11 17:00:00,10420.0
-2018-05-11 18:00:00,10297.0
-2018-05-11 19:00:00,10125.0
-2018-05-11 20:00:00,10011.0
-2018-05-11 21:00:00,10039.0
-2018-05-11 22:00:00,10334.0
-2018-05-11 23:00:00,10080.0
-2018-05-12 00:00:00,9470.0
-2018-05-10 01:00:00,9804.0
-2018-05-10 02:00:00,9093.0
-2018-05-10 03:00:00,8671.0
-2018-05-10 04:00:00,8397.0
-2018-05-10 05:00:00,8267.0
-2018-05-10 06:00:00,8394.0
-2018-05-10 07:00:00,8877.0
-2018-05-10 08:00:00,9642.0
-2018-05-10 09:00:00,10509.0
-2018-05-10 10:00:00,10944.0
-2018-05-10 11:00:00,11116.0
-2018-05-10 12:00:00,11394.0
-2018-05-10 13:00:00,11654.0
-2018-05-10 14:00:00,11865.0
-2018-05-10 15:00:00,12098.0
-2018-05-10 16:00:00,12212.0
-2018-05-10 17:00:00,12025.0
-2018-05-10 18:00:00,11823.0
-2018-05-10 19:00:00,11562.0
-2018-05-10 20:00:00,11228.0
-2018-05-10 21:00:00,10978.0
-2018-05-10 22:00:00,11125.0
-2018-05-10 23:00:00,10709.0
-2018-05-11 00:00:00,9897.0
-2018-05-09 01:00:00,9696.0
-2018-05-09 02:00:00,9061.0
-2018-05-09 03:00:00,8665.0
-2018-05-09 04:00:00,8405.0
-2018-05-09 05:00:00,8296.0
-2018-05-09 06:00:00,8449.0
-2018-05-09 07:00:00,8979.0
-2018-05-09 08:00:00,9902.0
-2018-05-09 09:00:00,10725.0
-2018-05-09 10:00:00,10926.0
-2018-05-09 11:00:00,11171.0
-2018-05-09 12:00:00,11487.0
-2018-05-09 13:00:00,11747.0
-2018-05-09 14:00:00,12062.0
-2018-05-09 15:00:00,12456.0
-2018-05-09 16:00:00,12526.0
-2018-05-09 17:00:00,12697.0
-2018-05-09 18:00:00,12943.0
-2018-05-09 19:00:00,12760.0
-2018-05-09 20:00:00,12495.0
-2018-05-09 21:00:00,12201.0
-2018-05-09 22:00:00,12171.0
-2018-05-09 23:00:00,11650.0
-2018-05-10 00:00:00,10707.0
-2018-05-08 01:00:00,9176.0
-2018-05-08 02:00:00,8666.0
-2018-05-08 03:00:00,8331.0
-2018-05-08 04:00:00,8111.0
-2018-05-08 05:00:00,8048.0
-2018-05-08 06:00:00,8191.0
-2018-05-08 07:00:00,8684.0
-2018-05-08 08:00:00,9504.0
-2018-05-08 09:00:00,10370.0
-2018-05-08 10:00:00,10914.0
-2018-05-08 11:00:00,11337.0
-2018-05-08 12:00:00,11712.0
-2018-05-08 13:00:00,12002.0
-2018-05-08 14:00:00,12308.0
-2018-05-08 15:00:00,12627.0
-2018-05-08 16:00:00,12868.0
-2018-05-08 17:00:00,13018.0
-2018-05-08 18:00:00,13116.0
-2018-05-08 19:00:00,12907.0
-2018-05-08 20:00:00,12336.0
-2018-05-08 21:00:00,11973.0
-2018-05-08 22:00:00,12018.0
-2018-05-08 23:00:00,11506.0
-2018-05-09 00:00:00,10583.0
-2018-05-07 01:00:00,8245.0
-2018-05-07 02:00:00,7880.0
-2018-05-07 03:00:00,7627.0
-2018-05-07 04:00:00,7509.0
-2018-05-07 05:00:00,7532.0
-2018-05-07 06:00:00,7809.0
-2018-05-07 07:00:00,8344.0
-2018-05-07 08:00:00,9219.0
-2018-05-07 09:00:00,10054.0
-2018-05-07 10:00:00,10485.0
-2018-05-07 11:00:00,10803.0
-2018-05-07 12:00:00,11114.0
-2018-05-07 13:00:00,11286.0
-2018-05-07 14:00:00,11388.0
-2018-05-07 15:00:00,11552.0
-2018-05-07 16:00:00,11626.0
-2018-05-07 17:00:00,11665.0
-2018-05-07 18:00:00,11675.0
-2018-05-07 19:00:00,11595.0
-2018-05-07 20:00:00,11310.0
-2018-05-07 21:00:00,11061.0
-2018-05-07 22:00:00,11211.0
-2018-05-07 23:00:00,10785.0
-2018-05-08 00:00:00,9985.0
-2018-05-06 01:00:00,8777.0
-2018-05-06 02:00:00,8259.0
-2018-05-06 03:00:00,7900.0
-2018-05-06 04:00:00,7665.0
-2018-05-06 05:00:00,7472.0
-2018-05-06 06:00:00,7418.0
-2018-05-06 07:00:00,7438.0
-2018-05-06 08:00:00,7425.0
-2018-05-06 09:00:00,7683.0
-2018-05-06 10:00:00,8081.0
-2018-05-06 11:00:00,8461.0
-2018-05-06 12:00:00,8787.0
-2018-05-06 13:00:00,8992.0
-2018-05-06 14:00:00,9199.0
-2018-05-06 15:00:00,9280.0
-2018-05-06 16:00:00,9393.0
-2018-05-06 17:00:00,9484.0
-2018-05-06 18:00:00,9520.0
-2018-05-06 19:00:00,9529.0
-2018-05-06 20:00:00,9382.0
-2018-05-06 21:00:00,9289.0
-2018-05-06 22:00:00,9531.0
-2018-05-06 23:00:00,9321.0
-2018-05-07 00:00:00,8763.0
-2018-05-05 01:00:00,9356.0
-2018-05-05 02:00:00,8770.0
-2018-05-05 03:00:00,8365.0
-2018-05-05 04:00:00,8072.0
-2018-05-05 05:00:00,7901.0
-2018-05-05 06:00:00,7939.0
-2018-05-05 07:00:00,8036.0
-2018-05-05 08:00:00,8188.0
-2018-05-05 09:00:00,8700.0
-2018-05-05 10:00:00,9297.0
-2018-05-05 11:00:00,9744.0
-2018-05-05 12:00:00,10154.0
-2018-05-05 13:00:00,10374.0
-2018-05-05 14:00:00,10537.0
-2018-05-05 15:00:00,10655.0
-2018-05-05 16:00:00,10887.0
-2018-05-05 17:00:00,11085.0
-2018-05-05 18:00:00,11305.0
-2018-05-05 19:00:00,11313.0
-2018-05-05 20:00:00,11063.0
-2018-05-05 21:00:00,10679.0
-2018-05-05 22:00:00,10648.0
-2018-05-05 23:00:00,10156.0
-2018-05-06 00:00:00,9446.0
-2018-05-04 01:00:00,9408.0
-2018-05-04 02:00:00,8913.0
-2018-05-04 03:00:00,8616.0
-2018-05-04 04:00:00,8440.0
-2018-05-04 05:00:00,8361.0
-2018-05-04 06:00:00,8534.0
-2018-05-04 07:00:00,9079.0
-2018-05-04 08:00:00,9883.0
-2018-05-04 09:00:00,10615.0
-2018-05-04 10:00:00,10961.0
-2018-05-04 11:00:00,11134.0
-2018-05-04 12:00:00,11230.0
-2018-05-04 13:00:00,11338.0
-2018-05-04 14:00:00,11465.0
-2018-05-04 15:00:00,11642.0
-2018-05-04 16:00:00,11713.0
-2018-05-04 17:00:00,11725.0
-2018-05-04 18:00:00,11773.0
-2018-05-04 19:00:00,11674.0
-2018-05-04 20:00:00,11386.0
-2018-05-04 21:00:00,11071.0
-2018-05-04 22:00:00,11129.0
-2018-05-04 23:00:00,10798.0
-2018-05-05 00:00:00,10065.0
-2018-05-03 01:00:00,10307.0
-2018-05-03 02:00:00,9648.0
-2018-05-03 03:00:00,9160.0
-2018-05-03 04:00:00,8862.0
-2018-05-03 05:00:00,8776.0
-2018-05-03 06:00:00,8917.0
-2018-05-03 07:00:00,9406.0
-2018-05-03 08:00:00,10244.0
-2018-05-03 09:00:00,10986.0
-2018-05-03 10:00:00,11306.0
-2018-05-03 11:00:00,11612.0
-2018-05-03 12:00:00,11883.0
-2018-05-03 13:00:00,11881.0
-2018-05-03 14:00:00,11937.0
-2018-05-03 15:00:00,12025.0
-2018-05-03 16:00:00,11846.0
-2018-05-03 17:00:00,11547.0
-2018-05-03 18:00:00,11441.0
-2018-05-03 19:00:00,11298.0
-2018-05-03 20:00:00,11080.0
-2018-05-03 21:00:00,11055.0
-2018-05-03 22:00:00,11177.0
-2018-05-03 23:00:00,10788.0
-2018-05-04 00:00:00,10083.0
-2018-05-02 01:00:00,9874.0
-2018-05-02 02:00:00,9313.0
-2018-05-02 03:00:00,8893.0
-2018-05-02 04:00:00,8591.0
-2018-05-02 05:00:00,8459.0
-2018-05-02 06:00:00,8577.0
-2018-05-02 07:00:00,9164.0
-2018-05-02 08:00:00,9990.0
-2018-05-02 09:00:00,10840.0
-2018-05-02 10:00:00,11373.0
-2018-05-02 11:00:00,11752.0
-2018-05-02 12:00:00,12070.0
-2018-05-02 13:00:00,12418.0
-2018-05-02 14:00:00,12731.0
-2018-05-02 15:00:00,13164.0
-2018-05-02 16:00:00,13417.0
-2018-05-02 17:00:00,13545.0
-2018-05-02 18:00:00,13370.0
-2018-05-02 19:00:00,13106.0
-2018-05-02 20:00:00,12898.0
-2018-05-02 21:00:00,12914.0
-2018-05-02 22:00:00,12670.0
-2018-05-02 23:00:00,12055.0
-2018-05-03 00:00:00,11160.0
-2018-05-01 01:00:00,8937.0
-2018-05-01 02:00:00,8411.0
-2018-05-01 03:00:00,8110.0
-2018-05-01 04:00:00,7917.0
-2018-05-01 05:00:00,7844.0
-2018-05-01 06:00:00,8020.0
-2018-05-01 07:00:00,8519.0
-2018-05-01 08:00:00,9293.0
-2018-05-01 09:00:00,10048.0
-2018-05-01 10:00:00,10537.0
-2018-05-01 11:00:00,10896.0
-2018-05-01 12:00:00,11235.0
-2018-05-01 13:00:00,11482.0
-2018-05-01 14:00:00,11667.0
-2018-05-01 15:00:00,11909.0
-2018-05-01 16:00:00,11998.0
-2018-05-01 17:00:00,12011.0
-2018-05-01 18:00:00,11971.0
-2018-05-01 19:00:00,11851.0
-2018-05-01 20:00:00,11609.0
-2018-05-01 21:00:00,11592.0
-2018-05-01 22:00:00,11870.0
-2018-05-01 23:00:00,11448.0
-2018-05-02 00:00:00,10647.0
-2018-04-30 01:00:00,8381.0
-2018-04-30 02:00:00,8098.0
-2018-04-30 03:00:00,7916.0
-2018-04-30 04:00:00,7813.0
-2018-04-30 05:00:00,7975.0
-2018-04-30 06:00:00,8300.0
-2018-04-30 07:00:00,9010.0
-2018-04-30 08:00:00,9799.0
-2018-04-30 09:00:00,10368.0
-2018-04-30 10:00:00,10514.0
-2018-04-30 11:00:00,10676.0
-2018-04-30 12:00:00,10815.0
-2018-04-30 13:00:00,10858.0
-2018-04-30 14:00:00,10905.0
-2018-04-30 15:00:00,10977.0
-2018-04-30 16:00:00,10963.0
-2018-04-30 17:00:00,10867.0
-2018-04-30 18:00:00,10788.0
-2018-04-30 19:00:00,10707.0
-2018-04-30 20:00:00,10491.0
-2018-04-30 21:00:00,10461.0
-2018-04-30 22:00:00,10755.0
-2018-04-30 23:00:00,10358.0
-2018-05-01 00:00:00,9658.0
-2018-04-29 01:00:00,8752.0
-2018-04-29 02:00:00,8403.0
-2018-04-29 03:00:00,8243.0
-2018-04-29 04:00:00,8098.0
-2018-04-29 05:00:00,8087.0
-2018-04-29 06:00:00,8113.0
-2018-04-29 07:00:00,8254.0
-2018-04-29 08:00:00,8231.0
-2018-04-29 09:00:00,8415.0
-2018-04-29 10:00:00,8560.0
-2018-04-29 11:00:00,8705.0
-2018-04-29 12:00:00,8747.0
-2018-04-29 13:00:00,8733.0
-2018-04-29 14:00:00,8713.0
-2018-04-29 15:00:00,8645.0
-2018-04-29 16:00:00,8605.0
-2018-04-29 17:00:00,8547.0
-2018-04-29 18:00:00,8581.0
-2018-04-29 19:00:00,8664.0
-2018-04-29 20:00:00,8696.0
-2018-04-29 21:00:00,8928.0
-2018-04-29 22:00:00,9391.0
-2018-04-29 23:00:00,9228.0
-2018-04-30 00:00:00,8808.0
-2018-04-28 01:00:00,9127.0
-2018-04-28 02:00:00,8698.0
-2018-04-28 03:00:00,8478.0
-2018-04-28 04:00:00,8289.0
-2018-04-28 05:00:00,8281.0
-2018-04-28 06:00:00,8376.0
-2018-04-28 07:00:00,8624.0
-2018-04-28 08:00:00,8806.0
-2018-04-28 09:00:00,9061.0
-2018-04-28 10:00:00,9317.0
-2018-04-28 11:00:00,9466.0
-2018-04-28 12:00:00,9544.0
-2018-04-28 13:00:00,9455.0
-2018-04-28 14:00:00,9331.0
-2018-04-28 15:00:00,9164.0
-2018-04-28 16:00:00,9039.0
-2018-04-28 17:00:00,8901.0
-2018-04-28 18:00:00,8896.0
-2018-04-28 19:00:00,8858.0
-2018-04-28 20:00:00,8908.0
-2018-04-28 21:00:00,9110.0
-2018-04-28 22:00:00,9618.0
-2018-04-28 23:00:00,9491.0
-2018-04-29 00:00:00,9139.0
-2018-04-27 01:00:00,8832.0
-2018-04-27 02:00:00,8399.0
-2018-04-27 03:00:00,8146.0
-2018-04-27 04:00:00,8021.0
-2018-04-27 05:00:00,8015.0
-2018-04-27 06:00:00,8270.0
-2018-04-27 07:00:00,8900.0
-2018-04-27 08:00:00,9617.0
-2018-04-27 09:00:00,10161.0
-2018-04-27 10:00:00,10395.0
-2018-04-27 11:00:00,10491.0
-2018-04-27 12:00:00,10590.0
-2018-04-27 13:00:00,10582.0
-2018-04-27 14:00:00,10581.0
-2018-04-27 15:00:00,10605.0
-2018-04-27 16:00:00,10463.0
-2018-04-27 17:00:00,10312.0
-2018-04-27 18:00:00,10209.0
-2018-04-27 19:00:00,10160.0
-2018-04-27 20:00:00,10232.0
-2018-04-27 21:00:00,10362.0
-2018-04-27 22:00:00,10518.0
-2018-04-27 23:00:00,10251.0
-2018-04-28 00:00:00,9685.0
-2018-04-26 01:00:00,9056.0
-2018-04-26 02:00:00,8720.0
-2018-04-26 03:00:00,8516.0
-2018-04-26 04:00:00,8389.0
-2018-04-26 05:00:00,8435.0
-2018-04-26 06:00:00,8692.0
-2018-04-26 07:00:00,9363.0
-2018-04-26 08:00:00,10095.0
-2018-04-26 09:00:00,10596.0
-2018-04-26 10:00:00,10727.0
-2018-04-26 11:00:00,10693.0
-2018-04-26 12:00:00,10767.0
-2018-04-26 13:00:00,10719.0
-2018-04-26 14:00:00,10722.0
-2018-04-26 15:00:00,10739.0
-2018-04-26 16:00:00,10659.0
-2018-04-26 17:00:00,10542.0
-2018-04-26 18:00:00,10409.0
-2018-04-26 19:00:00,10263.0
-2018-04-26 20:00:00,10077.0
-2018-04-26 21:00:00,10159.0
-2018-04-26 22:00:00,10454.0
-2018-04-26 23:00:00,10082.0
-2018-04-27 00:00:00,9430.0
-2018-04-25 01:00:00,8876.0
-2018-04-25 02:00:00,8474.0
-2018-04-25 03:00:00,8251.0
-2018-04-25 04:00:00,8156.0
-2018-04-25 05:00:00,8156.0
-2018-04-25 06:00:00,8432.0
-2018-04-25 07:00:00,9091.0
-2018-04-25 08:00:00,9872.0
-2018-04-25 09:00:00,10456.0
-2018-04-25 10:00:00,10629.0
-2018-04-25 11:00:00,10708.0
-2018-04-25 12:00:00,10764.0
-2018-04-25 13:00:00,10713.0
-2018-04-25 14:00:00,10643.0
-2018-04-25 15:00:00,10666.0
-2018-04-25 16:00:00,10556.0
-2018-04-25 17:00:00,10437.0
-2018-04-25 18:00:00,10286.0
-2018-04-25 19:00:00,10184.0
-2018-04-25 20:00:00,10037.0
-2018-04-25 21:00:00,10223.0
-2018-04-25 22:00:00,10592.0
-2018-04-25 23:00:00,10251.0
-2018-04-26 00:00:00,9662.0
-2018-04-24 01:00:00,8927.0
-2018-04-24 02:00:00,8519.0
-2018-04-24 03:00:00,8288.0
-2018-04-24 04:00:00,8131.0
-2018-04-24 05:00:00,8104.0
-2018-04-24 06:00:00,8324.0
-2018-04-24 07:00:00,9007.0
-2018-04-24 08:00:00,9785.0
-2018-04-24 09:00:00,10395.0
-2018-04-24 10:00:00,10565.0
-2018-04-24 11:00:00,10621.0
-2018-04-24 12:00:00,10729.0
-2018-04-24 13:00:00,10770.0
-2018-04-24 14:00:00,10811.0
-2018-04-24 15:00:00,10854.0
-2018-04-24 16:00:00,10776.0
-2018-04-24 17:00:00,10689.0
-2018-04-24 18:00:00,10558.0
-2018-04-24 19:00:00,10446.0
-2018-04-24 20:00:00,10207.0
-2018-04-24 21:00:00,10307.0
-2018-04-24 22:00:00,10603.0
-2018-04-24 23:00:00,10176.0
-2018-04-25 00:00:00,9499.0
-2018-04-23 01:00:00,8403.0
-2018-04-23 02:00:00,8158.0
-2018-04-23 03:00:00,8046.0
-2018-04-23 04:00:00,7993.0
-2018-04-23 05:00:00,8108.0
-2018-04-23 06:00:00,8397.0
-2018-04-23 07:00:00,9159.0
-2018-04-23 08:00:00,9916.0
-2018-04-23 09:00:00,10598.0
-2018-04-23 10:00:00,10716.0
-2018-04-23 11:00:00,10763.0
-2018-04-23 12:00:00,10755.0
-2018-04-23 13:00:00,10733.0
-2018-04-23 14:00:00,10702.0
-2018-04-23 15:00:00,10714.0
-2018-04-23 16:00:00,10615.0
-2018-04-23 17:00:00,10506.0
-2018-04-23 18:00:00,10377.0
-2018-04-23 19:00:00,10287.0
-2018-04-23 20:00:00,10198.0
-2018-04-23 21:00:00,10402.0
-2018-04-23 22:00:00,10601.0
-2018-04-23 23:00:00,10194.0
-2018-04-24 00:00:00,9519.0
-2018-04-22 01:00:00,8801.0
-2018-04-22 02:00:00,8429.0
-2018-04-22 03:00:00,8188.0
-2018-04-22 04:00:00,8024.0
-2018-04-22 05:00:00,7973.0
-2018-04-22 06:00:00,7996.0
-2018-04-22 07:00:00,8148.0
-2018-04-22 08:00:00,8204.0
-2018-04-22 09:00:00,8429.0
-2018-04-22 10:00:00,8625.0
-2018-04-22 11:00:00,8727.0
-2018-04-22 12:00:00,8808.0
-2018-04-22 13:00:00,8817.0
-2018-04-22 14:00:00,8773.0
-2018-04-22 15:00:00,8754.0
-2018-04-22 16:00:00,8661.0
-2018-04-22 17:00:00,8627.0
-2018-04-22 18:00:00,8690.0
-2018-04-22 19:00:00,8747.0
-2018-04-22 20:00:00,8792.0
-2018-04-22 21:00:00,9049.0
-2018-04-22 22:00:00,9499.0
-2018-04-22 23:00:00,9305.0
-2018-04-23 00:00:00,8891.0
-2018-04-21 01:00:00,9142.0
-2018-04-21 02:00:00,8801.0
-2018-04-21 03:00:00,8545.0
-2018-04-21 04:00:00,8426.0
-2018-04-21 05:00:00,8357.0
-2018-04-21 06:00:00,8454.0
-2018-04-21 07:00:00,8716.0
-2018-04-21 08:00:00,9022.0
-2018-04-21 09:00:00,9359.0
-2018-04-21 10:00:00,9722.0
-2018-04-21 11:00:00,9866.0
-2018-04-21 12:00:00,9968.0
-2018-04-21 13:00:00,9857.0
-2018-04-21 14:00:00,9733.0
-2018-04-21 15:00:00,9509.0
-2018-04-21 16:00:00,9365.0
-2018-04-21 17:00:00,9230.0
-2018-04-21 18:00:00,9191.0
-2018-04-21 19:00:00,9152.0
-2018-04-21 20:00:00,9268.0
-2018-04-21 21:00:00,9600.0
-2018-04-21 22:00:00,9820.0
-2018-04-21 23:00:00,9649.0
-2018-04-22 00:00:00,9199.0
-2018-04-20 01:00:00,9584.0
-2018-04-20 02:00:00,9240.0
-2018-04-20 03:00:00,9053.0
-2018-04-20 04:00:00,8930.0
-2018-04-20 05:00:00,8959.0
-2018-04-20 06:00:00,9236.0
-2018-04-20 07:00:00,9932.0
-2018-04-20 08:00:00,10661.0
-2018-04-20 09:00:00,11084.0
-2018-04-20 10:00:00,11112.0
-2018-04-20 11:00:00,11016.0
-2018-04-20 12:00:00,10964.0
-2018-04-20 13:00:00,10851.0
-2018-04-20 14:00:00,10775.0
-2018-04-20 15:00:00,10744.0
-2018-04-20 16:00:00,10618.0
-2018-04-20 17:00:00,10420.0
-2018-04-20 18:00:00,10275.0
-2018-04-20 19:00:00,10109.0
-2018-04-20 20:00:00,9984.0
-2018-04-20 21:00:00,10159.0
-2018-04-20 22:00:00,10474.0
-2018-04-20 23:00:00,10199.0
-2018-04-21 00:00:00,9695.0
-2018-04-19 01:00:00,10210.0
-2018-04-19 02:00:00,9845.0
-2018-04-19 03:00:00,9597.0
-2018-04-19 04:00:00,9447.0
-2018-04-19 05:00:00,9376.0
-2018-04-19 06:00:00,9613.0
-2018-04-19 07:00:00,10296.0
-2018-04-19 08:00:00,11058.0
-2018-04-19 09:00:00,11436.0
-2018-04-19 10:00:00,11531.0
-2018-04-19 11:00:00,11492.0
-2018-04-19 12:00:00,11447.0
-2018-04-19 13:00:00,11335.0
-2018-04-19 14:00:00,11194.0
-2018-04-19 15:00:00,11107.0
-2018-04-19 16:00:00,10926.0
-2018-04-19 17:00:00,10726.0
-2018-04-19 18:00:00,10548.0
-2018-04-19 19:00:00,10450.0
-2018-04-19 20:00:00,10372.0
-2018-04-19 21:00:00,10609.0
-2018-04-19 22:00:00,10949.0
-2018-04-19 23:00:00,10686.0
-2018-04-20 00:00:00,10111.0
-2018-04-18 01:00:00,9935.0
-2018-04-18 02:00:00,9624.0
-2018-04-18 03:00:00,9451.0
-2018-04-18 04:00:00,9315.0
-2018-04-18 05:00:00,9301.0
-2018-04-18 06:00:00,9596.0
-2018-04-18 07:00:00,10323.0
-2018-04-18 08:00:00,11130.0
-2018-04-18 09:00:00,11684.0
-2018-04-18 10:00:00,11896.0
-2018-04-18 11:00:00,12044.0
-2018-04-18 12:00:00,12111.0
-2018-04-18 13:00:00,12160.0
-2018-04-18 14:00:00,12137.0
-2018-04-18 15:00:00,12164.0
-2018-04-18 16:00:00,12042.0
-2018-04-18 17:00:00,11952.0
-2018-04-18 18:00:00,11909.0
-2018-04-18 19:00:00,11942.0
-2018-04-18 20:00:00,11870.0
-2018-04-18 21:00:00,12009.0
-2018-04-18 22:00:00,11923.0
-2018-04-18 23:00:00,11455.0
-2018-04-19 00:00:00,10805.0
-2018-04-17 01:00:00,10266.0
-2018-04-17 02:00:00,9843.0
-2018-04-17 03:00:00,9677.0
-2018-04-17 04:00:00,9537.0
-2018-04-17 05:00:00,9582.0
-2018-04-17 06:00:00,9857.0
-2018-04-17 07:00:00,10605.0
-2018-04-17 08:00:00,11386.0
-2018-04-17 09:00:00,11792.0
-2018-04-17 10:00:00,11889.0
-2018-04-17 11:00:00,11859.0
-2018-04-17 12:00:00,11846.0
-2018-04-17 13:00:00,11705.0
-2018-04-17 14:00:00,11556.0
-2018-04-17 15:00:00,11437.0
-2018-04-17 16:00:00,11262.0
-2018-04-17 17:00:00,11035.0
-2018-04-17 18:00:00,10931.0
-2018-04-17 19:00:00,10848.0
-2018-04-17 20:00:00,10758.0
-2018-04-17 21:00:00,11112.0
-2018-04-17 22:00:00,11462.0
-2018-04-17 23:00:00,11163.0
-2018-04-18 00:00:00,10576.0
-2018-04-16 01:00:00,9691.0
-2018-04-16 02:00:00,9436.0
-2018-04-16 03:00:00,9293.0
-2018-04-16 04:00:00,9241.0
-2018-04-16 05:00:00,9360.0
-2018-04-16 06:00:00,9709.0
-2018-04-16 07:00:00,10482.0
-2018-04-16 08:00:00,11432.0
-2018-04-16 09:00:00,12079.0
-2018-04-16 10:00:00,12327.0
-2018-04-16 11:00:00,12355.0
-2018-04-16 12:00:00,12378.0
-2018-04-16 13:00:00,12305.0
-2018-04-16 14:00:00,12277.0
-2018-04-16 15:00:00,12272.0
-2018-04-16 16:00:00,12174.0
-2018-04-16 17:00:00,12073.0
-2018-04-16 18:00:00,12028.0
-2018-04-16 19:00:00,12009.0
-2018-04-16 20:00:00,11873.0
-2018-04-16 21:00:00,12005.0
-2018-04-16 22:00:00,12019.0
-2018-04-16 23:00:00,11552.0
-2018-04-17 00:00:00,10874.0
-2018-04-15 01:00:00,9604.0
-2018-04-15 02:00:00,9193.0
-2018-04-15 03:00:00,9016.0
-2018-04-15 04:00:00,8823.0
-2018-04-15 05:00:00,8796.0
-2018-04-15 06:00:00,8819.0
-2018-04-15 07:00:00,9013.0
-2018-04-15 08:00:00,9223.0
-2018-04-15 09:00:00,9414.0
-2018-04-15 10:00:00,9863.0
-2018-04-15 11:00:00,10136.0
-2018-04-15 12:00:00,10326.0
-2018-04-15 13:00:00,10319.0
-2018-04-15 14:00:00,10181.0
-2018-04-15 15:00:00,10121.0
-2018-04-15 16:00:00,10044.0
-2018-04-15 17:00:00,10076.0
-2018-04-15 18:00:00,10134.0
-2018-04-15 19:00:00,10292.0
-2018-04-15 20:00:00,10391.0
-2018-04-15 21:00:00,10716.0
-2018-04-15 22:00:00,10800.0
-2018-04-15 23:00:00,10544.0
-2018-04-16 00:00:00,10117.0
-2018-04-14 01:00:00,9498.0
-2018-04-14 02:00:00,9161.0
-2018-04-14 03:00:00,8948.0
-2018-04-14 04:00:00,8839.0
-2018-04-14 05:00:00,8712.0
-2018-04-14 06:00:00,8838.0
-2018-04-14 07:00:00,9098.0
-2018-04-14 08:00:00,9537.0
-2018-04-14 09:00:00,9880.0
-2018-04-14 10:00:00,10282.0
-2018-04-14 11:00:00,10612.0
-2018-04-14 12:00:00,10709.0
-2018-04-14 13:00:00,10673.0
-2018-04-14 14:00:00,10529.0
-2018-04-14 15:00:00,10377.0
-2018-04-14 16:00:00,10352.0
-2018-04-14 17:00:00,10330.0
-2018-04-14 18:00:00,10450.0
-2018-04-14 19:00:00,10494.0
-2018-04-14 20:00:00,10595.0
-2018-04-14 21:00:00,10772.0
-2018-04-14 22:00:00,10688.0
-2018-04-14 23:00:00,10473.0
-2018-04-15 00:00:00,10034.0
-2018-04-13 01:00:00,9067.0
-2018-04-13 02:00:00,8703.0
-2018-04-13 03:00:00,8472.0
-2018-04-13 04:00:00,8363.0
-2018-04-13 05:00:00,8364.0
-2018-04-13 06:00:00,8575.0
-2018-04-13 07:00:00,9260.0
-2018-04-13 08:00:00,10101.0
-2018-04-13 09:00:00,10576.0
-2018-04-13 10:00:00,10811.0
-2018-04-13 11:00:00,10913.0
-2018-04-13 12:00:00,11081.0
-2018-04-13 13:00:00,11136.0
-2018-04-13 14:00:00,11149.0
-2018-04-13 15:00:00,11207.0
-2018-04-13 16:00:00,11169.0
-2018-04-13 17:00:00,10954.0
-2018-04-13 18:00:00,10929.0
-2018-04-13 19:00:00,10792.0
-2018-04-13 20:00:00,10780.0
-2018-04-13 21:00:00,11004.0
-2018-04-13 22:00:00,10961.0
-2018-04-13 23:00:00,10632.0
-2018-04-14 00:00:00,10033.0
-2018-04-12 01:00:00,9111.0
-2018-04-12 02:00:00,8749.0
-2018-04-12 03:00:00,8502.0
-2018-04-12 04:00:00,8366.0
-2018-04-12 05:00:00,8333.0
-2018-04-12 06:00:00,8536.0
-2018-04-12 07:00:00,9228.0
-2018-04-12 08:00:00,10053.0
-2018-04-12 09:00:00,10523.0
-2018-04-12 10:00:00,10808.0
-2018-04-12 11:00:00,10781.0
-2018-04-12 12:00:00,10867.0
-2018-04-12 13:00:00,10882.0
-2018-04-12 14:00:00,10877.0
-2018-04-12 15:00:00,10924.0
-2018-04-12 16:00:00,10798.0
-2018-04-12 17:00:00,10579.0
-2018-04-12 18:00:00,10404.0
-2018-04-12 19:00:00,10215.0
-2018-04-12 20:00:00,10065.0
-2018-04-12 21:00:00,10464.0
-2018-04-12 22:00:00,10604.0
-2018-04-12 23:00:00,10223.0
-2018-04-13 00:00:00,9645.0
-2018-04-11 01:00:00,9619.0
-2018-04-11 02:00:00,9245.0
-2018-04-11 03:00:00,9004.0
-2018-04-11 04:00:00,8853.0
-2018-04-11 05:00:00,8890.0
-2018-04-11 06:00:00,9129.0
-2018-04-11 07:00:00,9916.0
-2018-04-11 08:00:00,10760.0
-2018-04-11 09:00:00,11171.0
-2018-04-11 10:00:00,11210.0
-2018-04-11 11:00:00,11139.0
-2018-04-11 12:00:00,11084.0
-2018-04-11 13:00:00,10997.0
-2018-04-11 14:00:00,10883.0
-2018-04-11 15:00:00,10875.0
-2018-04-11 16:00:00,10769.0
-2018-04-11 17:00:00,10636.0
-2018-04-11 18:00:00,10525.0
-2018-04-11 19:00:00,10466.0
-2018-04-11 20:00:00,10446.0
-2018-04-11 21:00:00,10784.0
-2018-04-11 22:00:00,10779.0
-2018-04-11 23:00:00,10361.0
-2018-04-12 00:00:00,9774.0
-2018-04-10 01:00:00,9974.0
-2018-04-10 02:00:00,9589.0
-2018-04-10 03:00:00,9430.0
-2018-04-10 04:00:00,9337.0
-2018-04-10 05:00:00,9348.0
-2018-04-10 06:00:00,9650.0
-2018-04-10 07:00:00,10388.0
-2018-04-10 08:00:00,11255.0
-2018-04-10 09:00:00,11657.0
-2018-04-10 10:00:00,11650.0
-2018-04-10 11:00:00,11552.0
-2018-04-10 12:00:00,11492.0
-2018-04-10 13:00:00,11360.0
-2018-04-10 14:00:00,11228.0
-2018-04-10 15:00:00,11221.0
-2018-04-10 16:00:00,11080.0
-2018-04-10 17:00:00,10977.0
-2018-04-10 18:00:00,10906.0
-2018-04-10 19:00:00,10849.0
-2018-04-10 20:00:00,10831.0
-2018-04-10 21:00:00,11166.0
-2018-04-10 22:00:00,11257.0
-2018-04-10 23:00:00,10820.0
-2018-04-11 00:00:00,10204.0
-2018-04-09 01:00:00,9427.0
-2018-04-09 02:00:00,9184.0
-2018-04-09 03:00:00,9047.0
-2018-04-09 04:00:00,9006.0
-2018-04-09 05:00:00,9067.0
-2018-04-09 06:00:00,9352.0
-2018-04-09 07:00:00,10139.0
-2018-04-09 08:00:00,11058.0
-2018-04-09 09:00:00,11612.0
-2018-04-09 10:00:00,11824.0
-2018-04-09 11:00:00,11858.0
-2018-04-09 12:00:00,11855.0
-2018-04-09 13:00:00,11822.0
-2018-04-09 14:00:00,11802.0
-2018-04-09 15:00:00,11766.0
-2018-04-09 16:00:00,11641.0
-2018-04-09 17:00:00,11579.0
-2018-04-09 18:00:00,11505.0
-2018-04-09 19:00:00,11465.0
-2018-04-09 20:00:00,11399.0
-2018-04-09 21:00:00,11634.0
-2018-04-09 22:00:00,11637.0
-2018-04-09 23:00:00,11192.0
-2018-04-10 00:00:00,10510.0
-2018-04-08 01:00:00,9691.0
-2018-04-08 02:00:00,9396.0
-2018-04-08 03:00:00,9210.0
-2018-04-08 04:00:00,9116.0
-2018-04-08 05:00:00,9073.0
-2018-04-08 06:00:00,9148.0
-2018-04-08 07:00:00,9324.0
-2018-04-08 08:00:00,9471.0
-2018-04-08 09:00:00,9461.0
-2018-04-08 10:00:00,9569.0
-2018-04-08 11:00:00,9657.0
-2018-04-08 12:00:00,9599.0
-2018-04-08 13:00:00,9612.0
-2018-04-08 14:00:00,9529.0
-2018-04-08 15:00:00,9483.0
-2018-04-08 16:00:00,9399.0
-2018-04-08 17:00:00,9327.0
-2018-04-08 18:00:00,9482.0
-2018-04-08 19:00:00,9649.0
-2018-04-08 20:00:00,9934.0
-2018-04-08 21:00:00,10397.0
-2018-04-08 22:00:00,10516.0
-2018-04-08 23:00:00,10212.0
-2018-04-09 00:00:00,9774.0
-2018-04-07 01:00:00,10379.0
-2018-04-07 02:00:00,9992.0
-2018-04-07 03:00:00,9774.0
-2018-04-07 04:00:00,9625.0
-2018-04-07 05:00:00,9602.0
-2018-04-07 06:00:00,9723.0
-2018-04-07 07:00:00,10042.0
-2018-04-07 08:00:00,10355.0
-2018-04-07 09:00:00,10570.0
-2018-04-07 10:00:00,10742.0
-2018-04-07 11:00:00,10811.0
-2018-04-07 12:00:00,10786.0
-2018-04-07 13:00:00,10675.0
-2018-04-07 14:00:00,10502.0
-2018-04-07 15:00:00,10205.0
-2018-04-07 16:00:00,10019.0
-2018-04-07 17:00:00,9812.0
-2018-04-07 18:00:00,9730.0
-2018-04-07 19:00:00,9706.0
-2018-04-07 20:00:00,9787.0
-2018-04-07 21:00:00,10293.0
-2018-04-07 22:00:00,10609.0
-2018-04-07 23:00:00,10416.0
-2018-04-08 00:00:00,10036.0
-2018-04-06 01:00:00,9943.0
-2018-04-06 02:00:00,9565.0
-2018-04-06 03:00:00,9334.0
-2018-04-06 04:00:00,9180.0
-2018-04-06 05:00:00,9177.0
-2018-04-06 06:00:00,9411.0
-2018-04-06 07:00:00,10073.0
-2018-04-06 08:00:00,10993.0
-2018-04-06 09:00:00,11501.0
-2018-04-06 10:00:00,11787.0
-2018-04-06 11:00:00,11913.0
-2018-04-06 12:00:00,11887.0
-2018-04-06 13:00:00,11785.0
-2018-04-06 14:00:00,11855.0
-2018-04-06 15:00:00,11899.0
-2018-04-06 16:00:00,11767.0
-2018-04-06 17:00:00,11512.0
-2018-04-06 18:00:00,11371.0
-2018-04-06 19:00:00,11315.0
-2018-04-06 20:00:00,11322.0
-2018-04-06 21:00:00,11646.0
-2018-04-06 22:00:00,11719.0
-2018-04-06 23:00:00,11446.0
-2018-04-07 00:00:00,10889.0
-2018-04-05 01:00:00,10243.0
-2018-04-05 02:00:00,9865.0
-2018-04-05 03:00:00,9660.0
-2018-04-05 04:00:00,9541.0
-2018-04-05 05:00:00,9562.0
-2018-04-05 06:00:00,9777.0
-2018-04-05 07:00:00,10505.0
-2018-04-05 08:00:00,11493.0
-2018-04-05 09:00:00,11831.0
-2018-04-05 10:00:00,11856.0
-2018-04-05 11:00:00,11725.0
-2018-04-05 12:00:00,11649.0
-2018-04-05 13:00:00,11540.0
-2018-04-05 14:00:00,11376.0
-2018-04-05 15:00:00,11353.0
-2018-04-05 16:00:00,11295.0
-2018-04-05 17:00:00,11272.0
-2018-04-05 18:00:00,11313.0
-2018-04-05 19:00:00,11408.0
-2018-04-05 20:00:00,11381.0
-2018-04-05 21:00:00,11680.0
-2018-04-05 22:00:00,11620.0
-2018-04-05 23:00:00,11223.0
-2018-04-06 00:00:00,10556.0
-2018-04-04 01:00:00,10014.0
-2018-04-04 02:00:00,9669.0
-2018-04-04 03:00:00,9463.0
-2018-04-04 04:00:00,9415.0
-2018-04-04 05:00:00,9471.0
-2018-04-04 06:00:00,9811.0
-2018-04-04 07:00:00,10528.0
-2018-04-04 08:00:00,11462.0
-2018-04-04 09:00:00,11957.0
-2018-04-04 10:00:00,12104.0
-2018-04-04 11:00:00,12013.0
-2018-04-04 12:00:00,12020.0
-2018-04-04 13:00:00,11975.0
-2018-04-04 14:00:00,11900.0
-2018-04-04 15:00:00,11922.0
-2018-04-04 16:00:00,11829.0
-2018-04-04 17:00:00,11658.0
-2018-04-04 18:00:00,11568.0
-2018-04-04 19:00:00,11499.0
-2018-04-04 20:00:00,11428.0
-2018-04-04 21:00:00,11796.0
-2018-04-04 22:00:00,11919.0
-2018-04-04 23:00:00,11501.0
-2018-04-05 00:00:00,10826.0
-2018-04-03 01:00:00,9577.0
-2018-04-03 02:00:00,9171.0
-2018-04-03 03:00:00,8956.0
-2018-04-03 04:00:00,8841.0
-2018-04-03 05:00:00,8800.0
-2018-04-03 06:00:00,9042.0
-2018-04-03 07:00:00,9745.0
-2018-04-03 08:00:00,10768.0
-2018-04-03 09:00:00,11354.0
-2018-04-03 10:00:00,11628.0
-2018-04-03 11:00:00,11712.0
-2018-04-03 12:00:00,11832.0
-2018-04-03 13:00:00,11859.0
-2018-04-03 14:00:00,11782.0
-2018-04-03 15:00:00,11806.0
-2018-04-03 16:00:00,11763.0
-2018-04-03 17:00:00,11667.0
-2018-04-03 18:00:00,11642.0
-2018-04-03 19:00:00,11656.0
-2018-04-03 20:00:00,11631.0
-2018-04-03 21:00:00,11820.0
-2018-04-03 22:00:00,11676.0
-2018-04-03 23:00:00,11185.0
-2018-04-04 00:00:00,10577.0
-2018-04-02 01:00:00,9259.0
-2018-04-02 02:00:00,9073.0
-2018-04-02 03:00:00,8960.0
-2018-04-02 04:00:00,8889.0
-2018-04-02 05:00:00,9056.0
-2018-04-02 06:00:00,9383.0
-2018-04-02 07:00:00,10172.0
-2018-04-02 08:00:00,11112.0
-2018-04-02 09:00:00,11557.0
-2018-04-02 10:00:00,11656.0
-2018-04-02 11:00:00,11504.0
-2018-04-02 12:00:00,11478.0
-2018-04-02 13:00:00,11431.0
-2018-04-02 14:00:00,11345.0
-2018-04-02 15:00:00,11293.0
-2018-04-02 16:00:00,11211.0
-2018-04-02 17:00:00,11031.0
-2018-04-02 18:00:00,10900.0
-2018-04-02 19:00:00,10828.0
-2018-04-02 20:00:00,10885.0
-2018-04-02 21:00:00,11345.0
-2018-04-02 22:00:00,11300.0
-2018-04-02 23:00:00,10903.0
-2018-04-03 00:00:00,10225.0
-2018-04-01 01:00:00,9127.0
-2018-04-01 02:00:00,8829.0
-2018-04-01 03:00:00,8632.0
-2018-04-01 04:00:00,8571.0
-2018-04-01 05:00:00,8543.0
-2018-04-01 06:00:00,8691.0
-2018-04-01 07:00:00,8881.0
-2018-04-01 08:00:00,9055.0
-2018-04-01 09:00:00,9050.0
-2018-04-01 10:00:00,9201.0
-2018-04-01 11:00:00,9348.0
-2018-04-01 12:00:00,9390.0
-2018-04-01 13:00:00,9338.0
-2018-04-01 14:00:00,9194.0
-2018-04-01 15:00:00,9111.0
-2018-04-01 16:00:00,9049.0
-2018-04-01 17:00:00,9027.0
-2018-04-01 18:00:00,9056.0
-2018-04-01 19:00:00,9192.0
-2018-04-01 20:00:00,9454.0
-2018-04-01 21:00:00,9995.0
-2018-04-01 22:00:00,10172.0
-2018-04-01 23:00:00,9983.0
-2018-04-02 00:00:00,9660.0
-2018-03-31 01:00:00,9096.0
-2018-03-31 02:00:00,8768.0
-2018-03-31 03:00:00,8551.0
-2018-03-31 04:00:00,8467.0
-2018-03-31 05:00:00,8382.0
-2018-03-31 06:00:00,8468.0
-2018-03-31 07:00:00,8666.0
-2018-03-31 08:00:00,9106.0
-2018-03-31 09:00:00,9383.0
-2018-03-31 10:00:00,9918.0
-2018-03-31 11:00:00,10099.0
-2018-03-31 12:00:00,10193.0
-2018-03-31 13:00:00,10095.0
-2018-03-31 14:00:00,9817.0
-2018-03-31 15:00:00,9583.0
-2018-03-31 16:00:00,9394.0
-2018-03-31 17:00:00,9228.0
-2018-03-31 18:00:00,9152.0
-2018-03-31 19:00:00,9214.0
-2018-03-31 20:00:00,9325.0
-2018-03-31 21:00:00,9850.0
-2018-03-31 22:00:00,10016.0
-2018-03-31 23:00:00,9857.0
-2018-04-01 00:00:00,9556.0
-2018-03-30 01:00:00,9512.0
-2018-03-30 02:00:00,9118.0
-2018-03-30 03:00:00,8835.0
-2018-03-30 04:00:00,8705.0
-2018-03-30 05:00:00,8693.0
-2018-03-30 06:00:00,8883.0
-2018-03-30 07:00:00,9384.0
-2018-03-30 08:00:00,10022.0
-2018-03-30 09:00:00,10298.0
-2018-03-30 10:00:00,10516.0
-2018-03-30 11:00:00,10521.0
-2018-03-30 12:00:00,10434.0
-2018-03-30 13:00:00,10282.0
-2018-03-30 14:00:00,10104.0
-2018-03-30 15:00:00,9991.0
-2018-03-30 16:00:00,9852.0
-2018-03-30 17:00:00,9727.0
-2018-03-30 18:00:00,9670.0
-2018-03-30 19:00:00,9733.0
-2018-03-30 20:00:00,9822.0
-2018-03-30 21:00:00,10154.0
-2018-03-30 22:00:00,10193.0
-2018-03-30 23:00:00,9973.0
-2018-03-31 00:00:00,9545.0
-2018-03-29 01:00:00,9299.0
-2018-03-29 02:00:00,8897.0
-2018-03-29 03:00:00,8664.0
-2018-03-29 04:00:00,8522.0
-2018-03-29 05:00:00,8513.0
-2018-03-29 06:00:00,8769.0
-2018-03-29 07:00:00,9317.0
-2018-03-29 08:00:00,10247.0
-2018-03-29 09:00:00,10702.0
-2018-03-29 10:00:00,10991.0
-2018-03-29 11:00:00,11067.0
-2018-03-29 12:00:00,11078.0
-2018-03-29 13:00:00,11030.0
-2018-03-29 14:00:00,10994.0
-2018-03-29 15:00:00,10994.0
-2018-03-29 16:00:00,10936.0
-2018-03-29 17:00:00,10866.0
-2018-03-29 18:00:00,10845.0
-2018-03-29 19:00:00,10804.0
-2018-03-29 20:00:00,10707.0
-2018-03-29 21:00:00,11048.0
-2018-03-29 22:00:00,11009.0
-2018-03-29 23:00:00,10674.0
-2018-03-30 00:00:00,10095.0
-2018-03-28 01:00:00,9485.0
-2018-03-28 02:00:00,9094.0
-2018-03-28 03:00:00,8894.0
-2018-03-28 04:00:00,8723.0
-2018-03-28 05:00:00,8699.0
-2018-03-28 06:00:00,8953.0
-2018-03-28 07:00:00,9583.0
-2018-03-28 08:00:00,10483.0
-2018-03-28 09:00:00,10905.0
-2018-03-28 10:00:00,11129.0
-2018-03-28 11:00:00,11133.0
-2018-03-28 12:00:00,11099.0
-2018-03-28 13:00:00,10976.0
-2018-03-28 14:00:00,10911.0
-2018-03-28 15:00:00,10847.0
-2018-03-28 16:00:00,10710.0
-2018-03-28 17:00:00,10567.0
-2018-03-28 18:00:00,10473.0
-2018-03-28 19:00:00,10490.0
-2018-03-28 20:00:00,10478.0
-2018-03-28 21:00:00,10890.0
-2018-03-28 22:00:00,10823.0
-2018-03-28 23:00:00,10435.0
-2018-03-29 00:00:00,9866.0
-2018-03-27 01:00:00,9560.0
-2018-03-27 02:00:00,9152.0
-2018-03-27 03:00:00,8890.0
-2018-03-27 04:00:00,8743.0
-2018-03-27 05:00:00,8650.0
-2018-03-27 06:00:00,8878.0
-2018-03-27 07:00:00,9469.0
-2018-03-27 08:00:00,10402.0
-2018-03-27 09:00:00,10904.0
-2018-03-27 10:00:00,11133.0
-2018-03-27 11:00:00,11260.0
-2018-03-27 12:00:00,11356.0
-2018-03-27 13:00:00,11297.0
-2018-03-27 14:00:00,11193.0
-2018-03-27 15:00:00,11174.0
-2018-03-27 16:00:00,11099.0
-2018-03-27 17:00:00,10990.0
-2018-03-27 18:00:00,10909.0
-2018-03-27 19:00:00,10860.0
-2018-03-27 20:00:00,10801.0
-2018-03-27 21:00:00,11085.0
-2018-03-27 22:00:00,10973.0
-2018-03-27 23:00:00,10604.0
-2018-03-28 00:00:00,10034.0
-2018-03-26 01:00:00,9554.0
-2018-03-26 02:00:00,9289.0
-2018-03-26 03:00:00,9157.0
-2018-03-26 04:00:00,9128.0
-2018-03-26 05:00:00,9168.0
-2018-03-26 06:00:00,9462.0
-2018-03-26 07:00:00,10198.0
-2018-03-26 08:00:00,11165.0
-2018-03-26 09:00:00,11549.0
-2018-03-26 10:00:00,11606.0
-2018-03-26 11:00:00,11470.0
-2018-03-26 12:00:00,11410.0
-2018-03-26 13:00:00,11365.0
-2018-03-26 14:00:00,11271.0
-2018-03-26 15:00:00,11212.0
-2018-03-26 16:00:00,11112.0
-2018-03-26 17:00:00,11023.0
-2018-03-26 18:00:00,10964.0
-2018-03-26 19:00:00,10937.0
-2018-03-26 20:00:00,10944.0
-2018-03-26 21:00:00,11234.0
-2018-03-26 22:00:00,11061.0
-2018-03-26 23:00:00,10669.0
-2018-03-27 00:00:00,10111.0
-2018-03-25 01:00:00,9590.0
-2018-03-25 02:00:00,9321.0
-2018-03-25 03:00:00,9096.0
-2018-03-25 04:00:00,8993.0
-2018-03-25 05:00:00,9047.0
-2018-03-25 06:00:00,9113.0
-2018-03-25 07:00:00,9289.0
-2018-03-25 08:00:00,9569.0
-2018-03-25 09:00:00,9535.0
-2018-03-25 10:00:00,9687.0
-2018-03-25 11:00:00,9716.0
-2018-03-25 12:00:00,9715.0
-2018-03-25 13:00:00,9699.0
-2018-03-25 14:00:00,9624.0
-2018-03-25 15:00:00,9501.0
-2018-03-25 16:00:00,9373.0
-2018-03-25 17:00:00,9354.0
-2018-03-25 18:00:00,9394.0
-2018-03-25 19:00:00,9527.0
-2018-03-25 20:00:00,9678.0
-2018-03-25 21:00:00,10322.0
-2018-03-25 22:00:00,10488.0
-2018-03-25 23:00:00,10265.0
-2018-03-26 00:00:00,9908.0
-2018-03-24 01:00:00,9954.0
-2018-03-24 02:00:00,9545.0
-2018-03-24 03:00:00,9230.0
-2018-03-24 04:00:00,9084.0
-2018-03-24 05:00:00,9007.0
-2018-03-24 06:00:00,9157.0
-2018-03-24 07:00:00,9363.0
-2018-03-24 08:00:00,9912.0
-2018-03-24 09:00:00,10132.0
-2018-03-24 10:00:00,10549.0
-2018-03-24 11:00:00,10782.0
-2018-03-24 12:00:00,10881.0
-2018-03-24 13:00:00,10902.0
-2018-03-24 14:00:00,10737.0
-2018-03-24 15:00:00,10544.0
-2018-03-24 16:00:00,10411.0
-2018-03-24 17:00:00,10252.0
-2018-03-24 18:00:00,10221.0
-2018-03-24 19:00:00,10266.0
-2018-03-24 20:00:00,10301.0
-2018-03-24 21:00:00,10657.0
-2018-03-24 22:00:00,10684.0
-2018-03-24 23:00:00,10459.0
-2018-03-25 00:00:00,10085.0
-2018-03-23 01:00:00,9774.0
-2018-03-23 02:00:00,9374.0
-2018-03-23 03:00:00,9148.0
-2018-03-23 04:00:00,9073.0
-2018-03-23 05:00:00,9089.0
-2018-03-23 06:00:00,9410.0
-2018-03-23 07:00:00,10116.0
-2018-03-23 08:00:00,11147.0
-2018-03-23 09:00:00,11521.0
-2018-03-23 10:00:00,11544.0
-2018-03-23 11:00:00,11464.0
-2018-03-23 12:00:00,11412.0
-2018-03-23 13:00:00,11272.0
-2018-03-23 14:00:00,11170.0
-2018-03-23 15:00:00,11065.0
-2018-03-23 16:00:00,10921.0
-2018-03-23 17:00:00,10733.0
-2018-03-23 18:00:00,10722.0
-2018-03-23 19:00:00,10768.0
-2018-03-23 20:00:00,10886.0
-2018-03-23 21:00:00,11381.0
-2018-03-23 22:00:00,11357.0
-2018-03-23 23:00:00,11120.0
-2018-03-24 00:00:00,10551.0
-2018-03-22 01:00:00,10005.0
-2018-03-22 02:00:00,9628.0
-2018-03-22 03:00:00,9432.0
-2018-03-22 04:00:00,9351.0
-2018-03-22 05:00:00,9378.0
-2018-03-22 06:00:00,9685.0
-2018-03-22 07:00:00,10391.0
-2018-03-22 08:00:00,11494.0
-2018-03-22 09:00:00,11846.0
-2018-03-22 10:00:00,11797.0
-2018-03-22 11:00:00,11652.0
-2018-03-22 12:00:00,11552.0
-2018-03-22 13:00:00,11418.0
-2018-03-22 14:00:00,11242.0
-2018-03-22 15:00:00,11177.0
-2018-03-22 16:00:00,10994.0
-2018-03-22 17:00:00,10783.0
-2018-03-22 18:00:00,10667.0
-2018-03-22 19:00:00,10610.0
-2018-03-22 20:00:00,10663.0
-2018-03-22 21:00:00,11217.0
-2018-03-22 22:00:00,11248.0
-2018-03-22 23:00:00,10913.0
-2018-03-23 00:00:00,10345.0
-2018-03-21 01:00:00,10141.0
-2018-03-21 02:00:00,9756.0
-2018-03-21 03:00:00,9485.0
-2018-03-21 04:00:00,9378.0
-2018-03-21 05:00:00,9369.0
-2018-03-21 06:00:00,9618.0
-2018-03-21 07:00:00,10349.0
-2018-03-21 08:00:00,11461.0
-2018-03-21 09:00:00,11845.0
-2018-03-21 10:00:00,11923.0
-2018-03-21 11:00:00,11837.0
-2018-03-21 12:00:00,11749.0
-2018-03-21 13:00:00,11615.0
-2018-03-21 14:00:00,11470.0
-2018-03-21 15:00:00,11414.0
-2018-03-21 16:00:00,11214.0
-2018-03-21 17:00:00,11032.0
-2018-03-21 18:00:00,10954.0
-2018-03-21 19:00:00,10966.0
-2018-03-21 20:00:00,10968.0
-2018-03-21 21:00:00,11552.0
-2018-03-21 22:00:00,11583.0
-2018-03-21 23:00:00,11207.0
-2018-03-22 00:00:00,10616.0
-2018-03-20 01:00:00,9919.0
-2018-03-20 02:00:00,9564.0
-2018-03-20 03:00:00,9354.0
-2018-03-20 04:00:00,9269.0
-2018-03-20 05:00:00,9283.0
-2018-03-20 06:00:00,9599.0
-2018-03-20 07:00:00,10354.0
-2018-03-20 08:00:00,11447.0
-2018-03-20 09:00:00,11821.0
-2018-03-20 10:00:00,11954.0
-2018-03-20 11:00:00,11916.0
-2018-03-20 12:00:00,11828.0
-2018-03-20 13:00:00,11737.0
-2018-03-20 14:00:00,11609.0
-2018-03-20 15:00:00,11563.0
-2018-03-20 16:00:00,11422.0
-2018-03-20 17:00:00,11315.0
-2018-03-20 18:00:00,11308.0
-2018-03-20 19:00:00,11387.0
-2018-03-20 20:00:00,11487.0
-2018-03-20 21:00:00,11948.0
-2018-03-20 22:00:00,11839.0
-2018-03-20 23:00:00,11409.0
-2018-03-21 00:00:00,10791.0
-2018-03-19 01:00:00,8915.0
-2018-03-19 02:00:00,8630.0
-2018-03-19 03:00:00,8491.0
-2018-03-19 04:00:00,8450.0
-2018-03-19 05:00:00,8503.0
-2018-03-19 06:00:00,8841.0
-2018-03-19 07:00:00,9652.0
-2018-03-19 08:00:00,10871.0
-2018-03-19 09:00:00,11410.0
-2018-03-19 10:00:00,11466.0
-2018-03-19 11:00:00,11337.0
-2018-03-19 12:00:00,11319.0
-2018-03-19 13:00:00,11245.0
-2018-03-19 14:00:00,11171.0
-2018-03-19 15:00:00,11135.0
-2018-03-19 16:00:00,11021.0
-2018-03-19 17:00:00,10913.0
-2018-03-19 18:00:00,10904.0
-2018-03-19 19:00:00,10957.0
-2018-03-19 20:00:00,11043.0
-2018-03-19 21:00:00,11612.0
-2018-03-19 22:00:00,11571.0
-2018-03-19 23:00:00,11203.0
-2018-03-20 00:00:00,10524.0
-2018-03-18 01:00:00,9518.0
-2018-03-18 02:00:00,9171.0
-2018-03-18 03:00:00,8994.0
-2018-03-18 04:00:00,8857.0
-2018-03-18 05:00:00,8862.0
-2018-03-18 06:00:00,8815.0
-2018-03-18 07:00:00,9029.0
-2018-03-18 08:00:00,9285.0
-2018-03-18 09:00:00,9305.0
-2018-03-18 10:00:00,9408.0
-2018-03-18 11:00:00,9406.0
-2018-03-18 12:00:00,9378.0
-2018-03-18 13:00:00,9279.0
-2018-03-18 14:00:00,9192.0
-2018-03-18 15:00:00,9076.0
-2018-03-18 16:00:00,8971.0
-2018-03-18 17:00:00,8922.0
-2018-03-18 18:00:00,8907.0
-2018-03-18 19:00:00,9017.0
-2018-03-18 20:00:00,9199.0
-2018-03-18 21:00:00,9830.0
-2018-03-18 22:00:00,9886.0
-2018-03-18 23:00:00,9664.0
-2018-03-19 00:00:00,9302.0
-2018-03-17 01:00:00,10118.0
-2018-03-17 02:00:00,9767.0
-2018-03-17 03:00:00,9484.0
-2018-03-17 04:00:00,9291.0
-2018-03-17 05:00:00,9316.0
-2018-03-17 06:00:00,9361.0
-2018-03-17 07:00:00,9672.0
-2018-03-17 08:00:00,10090.0
-2018-03-17 09:00:00,10379.0
-2018-03-17 10:00:00,10694.0
-2018-03-17 11:00:00,10835.0
-2018-03-17 12:00:00,10801.0
-2018-03-17 13:00:00,10659.0
-2018-03-17 14:00:00,10464.0
-2018-03-17 15:00:00,10097.0
-2018-03-17 16:00:00,9899.0
-2018-03-17 17:00:00,9642.0
-2018-03-17 18:00:00,9574.0
-2018-03-17 19:00:00,9508.0
-2018-03-17 20:00:00,9692.0
-2018-03-17 21:00:00,10272.0
-2018-03-17 22:00:00,10372.0
-2018-03-17 23:00:00,10251.0
-2018-03-18 00:00:00,9888.0
-2018-03-16 01:00:00,10100.0
-2018-03-16 02:00:00,9700.0
-2018-03-16 03:00:00,9510.0
-2018-03-16 04:00:00,9414.0
-2018-03-16 05:00:00,9429.0
-2018-03-16 06:00:00,9714.0
-2018-03-16 07:00:00,10386.0
-2018-03-16 08:00:00,11480.0
-2018-03-16 09:00:00,12015.0
-2018-03-16 10:00:00,12131.0
-2018-03-16 11:00:00,12142.0
-2018-03-16 12:00:00,12000.0
-2018-03-16 13:00:00,11851.0
-2018-03-16 14:00:00,11712.0
-2018-03-16 15:00:00,11586.0
-2018-03-16 16:00:00,11416.0
-2018-03-16 17:00:00,11304.0
-2018-03-16 18:00:00,11257.0
-2018-03-16 19:00:00,11322.0
-2018-03-16 20:00:00,11394.0
-2018-03-16 21:00:00,11855.0
-2018-03-16 22:00:00,11711.0
-2018-03-16 23:00:00,11322.0
-2018-03-17 00:00:00,10710.0
-2018-03-15 01:00:00,9896.0
-2018-03-15 02:00:00,9499.0
-2018-03-15 03:00:00,9246.0
-2018-03-15 04:00:00,9167.0
-2018-03-15 05:00:00,9212.0
-2018-03-15 06:00:00,9482.0
-2018-03-15 07:00:00,10226.0
-2018-03-15 08:00:00,11364.0
-2018-03-15 09:00:00,11785.0
-2018-03-15 10:00:00,11759.0
-2018-03-15 11:00:00,11634.0
-2018-03-15 12:00:00,11510.0
-2018-03-15 13:00:00,11413.0
-2018-03-15 14:00:00,11269.0
-2018-03-15 15:00:00,11220.0
-2018-03-15 16:00:00,11045.0
-2018-03-15 17:00:00,10853.0
-2018-03-15 18:00:00,10812.0
-2018-03-15 19:00:00,10816.0
-2018-03-15 20:00:00,10927.0
-2018-03-15 21:00:00,11571.0
-2018-03-15 22:00:00,11574.0
-2018-03-15 23:00:00,11257.0
-2018-03-16 00:00:00,10665.0
-2018-03-14 01:00:00,10599.0
-2018-03-14 02:00:00,10213.0
-2018-03-14 03:00:00,9994.0
-2018-03-14 04:00:00,9913.0
-2018-03-14 05:00:00,9939.0
-2018-03-14 06:00:00,10164.0
-2018-03-14 07:00:00,10892.0
-2018-03-14 08:00:00,11951.0
-2018-03-14 09:00:00,12388.0
-2018-03-14 10:00:00,12347.0
-2018-03-14 11:00:00,12152.0
-2018-03-14 12:00:00,12059.0
-2018-03-14 13:00:00,11965.0
-2018-03-14 14:00:00,11832.0
-2018-03-14 15:00:00,11646.0
-2018-03-14 16:00:00,11459.0
-2018-03-14 17:00:00,11211.0
-2018-03-14 18:00:00,11092.0
-2018-03-14 19:00:00,11041.0
-2018-03-14 20:00:00,11107.0
-2018-03-14 21:00:00,11616.0
-2018-03-14 22:00:00,11549.0
-2018-03-14 23:00:00,11159.0
-2018-03-15 00:00:00,10513.0
-2018-03-13 01:00:00,10104.0
-2018-03-13 02:00:00,9746.0
-2018-03-13 03:00:00,9535.0
-2018-03-13 04:00:00,9407.0
-2018-03-13 05:00:00,9464.0
-2018-03-13 06:00:00,9755.0
-2018-03-13 07:00:00,10463.0
-2018-03-13 08:00:00,11581.0
-2018-03-13 09:00:00,12044.0
-2018-03-13 10:00:00,12030.0
-2018-03-13 11:00:00,11935.0
-2018-03-13 12:00:00,11922.0
-2018-03-13 13:00:00,11958.0
-2018-03-13 14:00:00,11919.0
-2018-03-13 15:00:00,11984.0
-2018-03-13 16:00:00,11937.0
-2018-03-13 17:00:00,11950.0
-2018-03-13 18:00:00,11926.0
-2018-03-13 19:00:00,11900.0
-2018-03-13 20:00:00,11996.0
-2018-03-13 21:00:00,12411.0
-2018-03-13 22:00:00,12312.0
-2018-03-13 23:00:00,11883.0
-2018-03-14 00:00:00,11227.0
-2018-03-12 01:00:00,9629.0
-2018-03-12 02:00:00,9249.0
-2018-03-12 03:00:00,9071.0
-2018-03-12 04:00:00,8970.0
-2018-03-12 05:00:00,9100.0
-2018-03-12 06:00:00,9255.0
-2018-03-12 07:00:00,10031.0
-2018-03-12 08:00:00,11161.0
-2018-03-12 09:00:00,11826.0
-2018-03-12 10:00:00,11923.0
-2018-03-12 11:00:00,11973.0
-2018-03-12 12:00:00,11960.0
-2018-03-12 13:00:00,11914.0
-2018-03-12 14:00:00,11725.0
-2018-03-12 15:00:00,11599.0
-2018-03-12 16:00:00,11449.0
-2018-03-12 17:00:00,11304.0
-2018-03-12 18:00:00,11276.0
-2018-03-12 19:00:00,11321.0
-2018-03-12 20:00:00,11468.0
-2018-03-12 21:00:00,11865.0
-2018-03-12 22:00:00,11750.0
-2018-03-12 23:00:00,11362.0
-2018-03-13 00:00:00,10740.0
-2018-03-11 01:00:00,9632.0
-2018-03-11 02:00:00,9360.0
-2018-03-11 04:00:00,9126.0
-2018-03-11 05:00:00,9031.0
-2018-03-11 06:00:00,8966.0
-2018-03-11 07:00:00,9127.0
-2018-03-11 08:00:00,9384.0
-2018-03-11 09:00:00,9431.0
-2018-03-11 10:00:00,9485.0
-2018-03-11 11:00:00,9568.0
-2018-03-11 12:00:00,9628.0
-2018-03-11 13:00:00,9638.0
-2018-03-11 14:00:00,9609.0
-2018-03-11 15:00:00,9562.0
-2018-03-11 16:00:00,9460.0
-2018-03-11 17:00:00,9440.0
-2018-03-11 18:00:00,9441.0
-2018-03-11 19:00:00,9523.0
-2018-03-11 20:00:00,9877.0
-2018-03-11 21:00:00,10574.0
-2018-03-11 22:00:00,10647.0
-2018-03-11 23:00:00,10463.0
-2018-03-12 00:00:00,10052.0
-2018-03-10 01:00:00,10230.0
-2018-03-10 02:00:00,9851.0
-2018-03-10 03:00:00,9638.0
-2018-03-10 04:00:00,9545.0
-2018-03-10 05:00:00,9473.0
-2018-03-10 06:00:00,9621.0
-2018-03-10 07:00:00,9890.0
-2018-03-10 08:00:00,10109.0
-2018-03-10 09:00:00,10263.0
-2018-03-10 10:00:00,10443.0
-2018-03-10 11:00:00,10523.0
-2018-03-10 12:00:00,10483.0
-2018-03-10 13:00:00,10378.0
-2018-03-10 14:00:00,10182.0
-2018-03-10 15:00:00,9978.0
-2018-03-10 16:00:00,9807.0
-2018-03-10 17:00:00,9745.0
-2018-03-10 18:00:00,9871.0
-2018-03-10 19:00:00,10177.0
-2018-03-10 20:00:00,10783.0
-2018-03-10 21:00:00,10860.0
-2018-03-10 22:00:00,10743.0
-2018-03-10 23:00:00,10489.0
-2018-03-11 00:00:00,10056.0
-2018-03-09 01:00:00,10381.0
-2018-03-09 02:00:00,10037.0
-2018-03-09 03:00:00,9882.0
-2018-03-09 04:00:00,9762.0
-2018-03-09 05:00:00,9772.0
-2018-03-09 06:00:00,10087.0
-2018-03-09 07:00:00,10793.0
-2018-03-09 08:00:00,11543.0
-2018-03-09 09:00:00,11860.0
-2018-03-09 10:00:00,11875.0
-2018-03-09 11:00:00,11839.0
-2018-03-09 12:00:00,11792.0
-2018-03-09 13:00:00,11701.0
-2018-03-09 14:00:00,11510.0
-2018-03-09 15:00:00,11405.0
-2018-03-09 16:00:00,11200.0
-2018-03-09 17:00:00,11067.0
-2018-03-09 18:00:00,11103.0
-2018-03-09 19:00:00,11414.0
-2018-03-09 20:00:00,11984.0
-2018-03-09 21:00:00,11853.0
-2018-03-09 22:00:00,11621.0
-2018-03-09 23:00:00,11318.0
-2018-03-10 00:00:00,10750.0
-2018-03-08 01:00:00,10464.0
-2018-03-08 02:00:00,10101.0
-2018-03-08 03:00:00,9924.0
-2018-03-08 04:00:00,9822.0
-2018-03-08 05:00:00,9834.0
-2018-03-08 06:00:00,10163.0
-2018-03-08 07:00:00,10857.0
-2018-03-08 08:00:00,11710.0
-2018-03-08 09:00:00,12068.0
-2018-03-08 10:00:00,12120.0
-2018-03-08 11:00:00,12072.0
-2018-03-08 12:00:00,12062.0
-2018-03-08 13:00:00,11981.0
-2018-03-08 14:00:00,11894.0
-2018-03-08 15:00:00,11826.0
-2018-03-08 16:00:00,11735.0
-2018-03-08 17:00:00,11639.0
-2018-03-08 18:00:00,11707.0
-2018-03-08 19:00:00,11930.0
-2018-03-08 20:00:00,12442.0
-2018-03-08 21:00:00,12354.0
-2018-03-08 22:00:00,12119.0
-2018-03-08 23:00:00,11633.0
-2018-03-09 00:00:00,10952.0
-2018-03-07 01:00:00,10244.0
-2018-03-07 02:00:00,9854.0
-2018-03-07 03:00:00,9682.0
-2018-03-07 04:00:00,9613.0
-2018-03-07 05:00:00,9672.0
-2018-03-07 06:00:00,9984.0
-2018-03-07 07:00:00,10704.0
-2018-03-07 08:00:00,11611.0
-2018-03-07 09:00:00,11994.0
-2018-03-07 10:00:00,12017.0
-2018-03-07 11:00:00,11952.0
-2018-03-07 12:00:00,11958.0
-2018-03-07 13:00:00,11882.0
-2018-03-07 14:00:00,11818.0
-2018-03-07 15:00:00,11810.0
-2018-03-07 16:00:00,11711.0
-2018-03-07 17:00:00,11726.0
-2018-03-07 18:00:00,11878.0
-2018-03-07 19:00:00,12247.0
-2018-03-07 20:00:00,12535.0
-2018-03-07 21:00:00,12401.0
-2018-03-07 22:00:00,12203.0
-2018-03-07 23:00:00,11703.0
-2018-03-08 00:00:00,11031.0
-2018-03-06 01:00:00,10138.0
-2018-03-06 02:00:00,9699.0
-2018-03-06 03:00:00,9420.0
-2018-03-06 04:00:00,9329.0
-2018-03-06 05:00:00,9330.0
-2018-03-06 06:00:00,9567.0
-2018-03-06 07:00:00,10268.0
-2018-03-06 08:00:00,11185.0
-2018-03-06 09:00:00,11674.0
-2018-03-06 10:00:00,11840.0
-2018-03-06 11:00:00,11904.0
-2018-03-06 12:00:00,11893.0
-2018-03-06 13:00:00,11769.0
-2018-03-06 14:00:00,11799.0
-2018-03-06 15:00:00,11815.0
-2018-03-06 16:00:00,11706.0
-2018-03-06 17:00:00,11609.0
-2018-03-06 18:00:00,11711.0
-2018-03-06 19:00:00,11990.0
-2018-03-06 20:00:00,12274.0
-2018-03-06 21:00:00,12146.0
-2018-03-06 22:00:00,11891.0
-2018-03-06 23:00:00,11432.0
-2018-03-07 00:00:00,10776.0
-2018-03-05 01:00:00,9379.0
-2018-03-05 02:00:00,9124.0
-2018-03-05 03:00:00,9030.0
-2018-03-05 04:00:00,8977.0
-2018-03-05 05:00:00,9021.0
-2018-03-05 06:00:00,9335.0
-2018-03-05 07:00:00,10129.0
-2018-03-05 08:00:00,11029.0
-2018-03-05 09:00:00,11666.0
-2018-03-05 10:00:00,11897.0
-2018-03-05 11:00:00,12058.0
-2018-03-05 12:00:00,12037.0
-2018-03-05 13:00:00,12011.0
-2018-03-05 14:00:00,11981.0
-2018-03-05 15:00:00,11900.0
-2018-03-05 16:00:00,11826.0
-2018-03-05 17:00:00,11816.0
-2018-03-05 18:00:00,12004.0
-2018-03-05 19:00:00,12362.0
-2018-03-05 20:00:00,12446.0
-2018-03-05 21:00:00,12261.0
-2018-03-05 22:00:00,11956.0
-2018-03-05 23:00:00,11448.0
-2018-03-06 00:00:00,10750.0
-2018-03-04 01:00:00,9450.0
-2018-03-04 02:00:00,9128.0
-2018-03-04 03:00:00,8968.0
-2018-03-04 04:00:00,8831.0
-2018-03-04 05:00:00,8769.0
-2018-03-04 06:00:00,8854.0
-2018-03-04 07:00:00,8999.0
-2018-03-04 08:00:00,9087.0
-2018-03-04 09:00:00,9139.0
-2018-03-04 10:00:00,9279.0
-2018-03-04 11:00:00,9373.0
-2018-03-04 12:00:00,9383.0
-2018-03-04 13:00:00,9357.0
-2018-03-04 14:00:00,9336.0
-2018-03-04 15:00:00,9152.0
-2018-03-04 16:00:00,9092.0
-2018-03-04 17:00:00,9153.0
-2018-03-04 18:00:00,9338.0
-2018-03-04 19:00:00,9820.0
-2018-03-04 20:00:00,10486.0
-2018-03-04 21:00:00,10554.0
-2018-03-04 22:00:00,10384.0
-2018-03-04 23:00:00,10167.0
-2018-03-05 00:00:00,9700.0
-2018-03-03 01:00:00,9943.0
-2018-03-03 02:00:00,9526.0
-2018-03-03 03:00:00,9281.0
-2018-03-03 04:00:00,9102.0
-2018-03-03 05:00:00,9041.0
-2018-03-03 06:00:00,9159.0
-2018-03-03 07:00:00,9434.0
-2018-03-03 08:00:00,9744.0
-2018-03-03 09:00:00,9919.0
-2018-03-03 10:00:00,10083.0
-2018-03-03 11:00:00,10148.0
-2018-03-03 12:00:00,10156.0
-2018-03-03 13:00:00,10085.0
-2018-03-03 14:00:00,9915.0
-2018-03-03 15:00:00,9679.0
-2018-03-03 16:00:00,9518.0
-2018-03-03 17:00:00,9472.0
-2018-03-03 18:00:00,9586.0
-2018-03-03 19:00:00,9938.0
-2018-03-03 20:00:00,10568.0
-2018-03-03 21:00:00,10575.0
-2018-03-03 22:00:00,10480.0
-2018-03-03 23:00:00,10280.0
-2018-03-04 00:00:00,9863.0
-2018-03-02 01:00:00,10035.0
-2018-03-02 02:00:00,9635.0
-2018-03-02 03:00:00,9480.0
-2018-03-02 04:00:00,9346.0
-2018-03-02 05:00:00,9350.0
-2018-03-02 06:00:00,9639.0
-2018-03-02 07:00:00,10347.0
-2018-03-02 08:00:00,11147.0
-2018-03-02 09:00:00,11409.0
-2018-03-02 10:00:00,11403.0
-2018-03-02 11:00:00,11403.0
-2018-03-02 12:00:00,11420.0
-2018-03-02 13:00:00,11299.0
-2018-03-02 14:00:00,11162.0
-2018-03-02 15:00:00,11079.0
-2018-03-02 16:00:00,10908.0
-2018-03-02 17:00:00,10738.0
-2018-03-02 18:00:00,10742.0
-2018-03-02 19:00:00,11021.0
-2018-03-02 20:00:00,11530.0
-2018-03-02 21:00:00,11446.0
-2018-03-02 22:00:00,11258.0
-2018-03-02 23:00:00,11033.0
-2018-03-03 00:00:00,10475.0
-2018-03-01 01:00:00,9616.0
-2018-03-01 02:00:00,9217.0
-2018-03-01 03:00:00,9008.0
-2018-03-01 04:00:00,8887.0
-2018-03-01 05:00:00,8929.0
-2018-03-01 06:00:00,9226.0
-2018-03-01 07:00:00,10012.0
-2018-03-01 08:00:00,11129.0
-2018-03-01 09:00:00,11753.0
-2018-03-01 10:00:00,11945.0
-2018-03-01 11:00:00,11935.0
-2018-03-01 12:00:00,11984.0
-2018-03-01 13:00:00,11917.0
-2018-03-01 14:00:00,11713.0
-2018-03-01 15:00:00,11596.0
-2018-03-01 16:00:00,11334.0
-2018-03-01 17:00:00,11247.0
-2018-03-01 18:00:00,11250.0
-2018-03-01 19:00:00,11488.0
-2018-03-01 20:00:00,12004.0
-2018-03-01 21:00:00,11872.0
-2018-03-01 22:00:00,11640.0
-2018-03-01 23:00:00,11251.0
-2018-03-02 00:00:00,10558.0
-2018-02-28 01:00:00,9282.0
-2018-02-28 02:00:00,8881.0
-2018-02-28 03:00:00,8654.0
-2018-02-28 04:00:00,8510.0
-2018-02-28 05:00:00,8467.0
-2018-02-28 06:00:00,8697.0
-2018-02-28 07:00:00,9365.0
-2018-02-28 08:00:00,10280.0
-2018-02-28 09:00:00,10662.0
-2018-02-28 10:00:00,10734.0
-2018-02-28 11:00:00,10781.0
-2018-02-28 12:00:00,10836.0
-2018-02-28 13:00:00,10807.0
-2018-02-28 14:00:00,10740.0
-2018-02-28 15:00:00,10788.0
-2018-02-28 16:00:00,10807.0
-2018-02-28 17:00:00,10789.0
-2018-02-28 18:00:00,11030.0
-2018-02-28 19:00:00,11406.0
-2018-02-28 20:00:00,11604.0
-2018-02-28 21:00:00,11494.0
-2018-02-28 22:00:00,11278.0
-2018-02-28 23:00:00,10833.0
-2018-03-01 00:00:00,10185.0
-2018-02-27 01:00:00,9695.0
-2018-02-27 02:00:00,9337.0
-2018-02-27 03:00:00,9113.0
-2018-02-27 04:00:00,9009.0
-2018-02-27 05:00:00,8994.0
-2018-02-27 06:00:00,9224.0
-2018-02-27 07:00:00,9929.0
-2018-02-27 08:00:00,10873.0
-2018-02-27 09:00:00,11225.0
-2018-02-27 10:00:00,11360.0
-2018-02-27 11:00:00,11299.0
-2018-02-27 12:00:00,11183.0
-2018-02-27 13:00:00,11105.0
-2018-02-27 14:00:00,10988.0
-2018-02-27 15:00:00,10955.0
-2018-02-27 16:00:00,10812.0
-2018-02-27 17:00:00,10625.0
-2018-02-27 18:00:00,10654.0
-2018-02-27 19:00:00,10925.0
-2018-02-27 20:00:00,11345.0
-2018-02-27 21:00:00,11176.0
-2018-02-27 22:00:00,10943.0
-2018-02-27 23:00:00,10488.0
-2018-02-28 00:00:00,9857.0
-2018-02-26 01:00:00,9414.0
-2018-02-26 02:00:00,9123.0
-2018-02-26 03:00:00,9060.0
-2018-02-26 04:00:00,9040.0
-2018-02-26 05:00:00,9113.0
-2018-02-26 06:00:00,9442.0
-2018-02-26 07:00:00,10275.0
-2018-02-26 08:00:00,11223.0
-2018-02-26 09:00:00,11573.0
-2018-02-26 10:00:00,11579.0
-2018-02-26 11:00:00,11441.0
-2018-02-26 12:00:00,11382.0
-2018-02-26 13:00:00,11288.0
-2018-02-26 14:00:00,11162.0
-2018-02-26 15:00:00,11095.0
-2018-02-26 16:00:00,10940.0
-2018-02-26 17:00:00,10789.0
-2018-02-26 18:00:00,10800.0
-2018-02-26 19:00:00,11096.0
-2018-02-26 20:00:00,11545.0
-2018-02-26 21:00:00,11444.0
-2018-02-26 22:00:00,11221.0
-2018-02-26 23:00:00,10773.0
-2018-02-27 00:00:00,10210.0
-2018-02-25 01:00:00,9383.0
-2018-02-25 02:00:00,9053.0
-2018-02-25 03:00:00,8896.0
-2018-02-25 04:00:00,8886.0
-2018-02-25 05:00:00,8902.0
-2018-02-25 06:00:00,8990.0
-2018-02-25 07:00:00,9131.0
-2018-02-25 08:00:00,9327.0
-2018-02-25 09:00:00,9409.0
-2018-02-25 10:00:00,9566.0
-2018-02-25 11:00:00,9648.0
-2018-02-25 12:00:00,9674.0
-2018-02-25 13:00:00,9642.0
-2018-02-25 14:00:00,9575.0
-2018-02-25 15:00:00,9502.0
-2018-02-25 16:00:00,9408.0
-2018-02-25 17:00:00,9426.0
-2018-02-25 18:00:00,9591.0
-2018-02-25 19:00:00,10113.0
-2018-02-25 20:00:00,10683.0
-2018-02-25 21:00:00,10668.0
-2018-02-25 22:00:00,10561.0
-2018-02-25 23:00:00,10224.0
-2018-02-26 00:00:00,9810.0
-2018-02-24 01:00:00,10072.0
-2018-02-24 02:00:00,9631.0
-2018-02-24 03:00:00,9429.0
-2018-02-24 04:00:00,9267.0
-2018-02-24 05:00:00,9209.0
-2018-02-24 06:00:00,9316.0
-2018-02-24 07:00:00,9606.0
-2018-02-24 08:00:00,10052.0
-2018-02-24 09:00:00,10304.0
-2018-02-24 10:00:00,10639.0
-2018-02-24 11:00:00,10787.0
-2018-02-24 12:00:00,10859.0
-2018-02-24 13:00:00,10682.0
-2018-02-24 14:00:00,10576.0
-2018-02-24 15:00:00,10406.0
-2018-02-24 16:00:00,10300.0
-2018-02-24 17:00:00,10360.0
-2018-02-24 18:00:00,10545.0
-2018-02-24 19:00:00,10927.0
-2018-02-24 20:00:00,10989.0
-2018-02-24 21:00:00,10859.0
-2018-02-24 22:00:00,10658.0
-2018-02-24 23:00:00,10243.0
-2018-02-25 00:00:00,9771.0
-2018-02-23 01:00:00,10068.0
-2018-02-23 02:00:00,9651.0
-2018-02-23 03:00:00,9417.0
-2018-02-23 04:00:00,9251.0
-2018-02-23 05:00:00,9277.0
-2018-02-23 06:00:00,9500.0
-2018-02-23 07:00:00,10150.0
-2018-02-23 08:00:00,11070.0
-2018-02-23 09:00:00,11481.0
-2018-02-23 10:00:00,11632.0
-2018-02-23 11:00:00,11790.0
-2018-02-23 12:00:00,11866.0
-2018-02-23 13:00:00,11862.0
-2018-02-23 14:00:00,11796.0
-2018-02-23 15:00:00,11749.0
-2018-02-23 16:00:00,11647.0
-2018-02-23 17:00:00,11530.0
-2018-02-23 18:00:00,11599.0
-2018-02-23 19:00:00,11862.0
-2018-02-23 20:00:00,11954.0
-2018-02-23 21:00:00,11786.0
-2018-02-23 22:00:00,11508.0
-2018-02-23 23:00:00,11183.0
-2018-02-24 00:00:00,10584.0
-2018-02-22 01:00:00,10582.0
-2018-02-22 02:00:00,10211.0
-2018-02-22 03:00:00,9953.0
-2018-02-22 04:00:00,9807.0
-2018-02-22 05:00:00,9773.0
-2018-02-22 06:00:00,10046.0
-2018-02-22 07:00:00,10699.0
-2018-02-22 08:00:00,11715.0
-2018-02-22 09:00:00,12125.0
-2018-02-22 10:00:00,12212.0
-2018-02-22 11:00:00,12168.0
-2018-02-22 12:00:00,12138.0
-2018-02-22 13:00:00,11947.0
-2018-02-22 14:00:00,11796.0
-2018-02-22 15:00:00,11796.0
-2018-02-22 16:00:00,11764.0
-2018-02-22 17:00:00,11766.0
-2018-02-22 18:00:00,11831.0
-2018-02-22 19:00:00,12192.0
-2018-02-22 20:00:00,12300.0
-2018-02-22 21:00:00,12101.0
-2018-02-22 22:00:00,11821.0
-2018-02-22 23:00:00,11350.0
-2018-02-23 00:00:00,10681.0
-2018-02-21 01:00:00,10102.0
-2018-02-21 02:00:00,9775.0
-2018-02-21 03:00:00,9599.0
-2018-02-21 04:00:00,9537.0
-2018-02-21 05:00:00,9519.0
-2018-02-21 06:00:00,9821.0
-2018-02-21 07:00:00,10558.0
-2018-02-21 08:00:00,11601.0
-2018-02-21 09:00:00,12059.0
-2018-02-21 10:00:00,12231.0
-2018-02-21 11:00:00,12279.0
-2018-02-21 12:00:00,12242.0
-2018-02-21 13:00:00,12199.0
-2018-02-21 14:00:00,12091.0
-2018-02-21 15:00:00,12106.0
-2018-02-21 16:00:00,12032.0
-2018-02-21 17:00:00,12045.0
-2018-02-21 18:00:00,12195.0
-2018-02-21 19:00:00,12585.0
-2018-02-21 20:00:00,12739.0
-2018-02-21 21:00:00,12611.0
-2018-02-21 22:00:00,12346.0
-2018-02-21 23:00:00,11870.0
-2018-02-22 00:00:00,11153.0
-2018-02-20 01:00:00,9614.0
-2018-02-20 02:00:00,9158.0
-2018-02-20 03:00:00,8836.0
-2018-02-20 04:00:00,8726.0
-2018-02-20 05:00:00,8709.0
-2018-02-20 06:00:00,8953.0
-2018-02-20 07:00:00,9578.0
-2018-02-20 08:00:00,10555.0
-2018-02-20 09:00:00,11017.0
-2018-02-20 10:00:00,11157.0
-2018-02-20 11:00:00,11200.0
-2018-02-20 12:00:00,11329.0
-2018-02-20 13:00:00,11349.0
-2018-02-20 14:00:00,11413.0
-2018-02-20 15:00:00,11516.0
-2018-02-20 16:00:00,11375.0
-2018-02-20 17:00:00,11302.0
-2018-02-20 18:00:00,11426.0
-2018-02-20 19:00:00,11809.0
-2018-02-20 20:00:00,11927.0
-2018-02-20 21:00:00,11803.0
-2018-02-20 22:00:00,11596.0
-2018-02-20 23:00:00,11213.0
-2018-02-21 00:00:00,10610.0
-2018-02-19 01:00:00,9668.0
-2018-02-19 02:00:00,9361.0
-2018-02-19 03:00:00,9183.0
-2018-02-19 04:00:00,9055.0
-2018-02-19 05:00:00,9074.0
-2018-02-19 06:00:00,9339.0
-2018-02-19 07:00:00,9918.0
-2018-02-19 08:00:00,10793.0
-2018-02-19 09:00:00,11150.0
-2018-02-19 10:00:00,11455.0
-2018-02-19 11:00:00,11665.0
-2018-02-19 12:00:00,11765.0
-2018-02-19 13:00:00,11756.0
-2018-02-19 14:00:00,11645.0
-2018-02-19 15:00:00,11576.0
-2018-02-19 16:00:00,11441.0
-2018-02-19 17:00:00,11365.0
-2018-02-19 18:00:00,11466.0
-2018-02-19 19:00:00,11789.0
-2018-02-19 20:00:00,11752.0
-2018-02-19 21:00:00,11514.0
-2018-02-19 22:00:00,11249.0
-2018-02-19 23:00:00,10834.0
-2018-02-20 00:00:00,10186.0
-2018-02-18 01:00:00,10152.0
-2018-02-18 02:00:00,9824.0
-2018-02-18 03:00:00,9634.0
-2018-02-18 04:00:00,9544.0
-2018-02-18 05:00:00,9557.0
-2018-02-18 06:00:00,9655.0
-2018-02-18 07:00:00,9847.0
-2018-02-18 08:00:00,10061.0
-2018-02-18 09:00:00,10127.0
-2018-02-18 10:00:00,10236.0
-2018-02-18 11:00:00,10307.0
-2018-02-18 12:00:00,10370.0
-2018-02-18 13:00:00,10242.0
-2018-02-18 14:00:00,10135.0
-2018-02-18 15:00:00,9986.0
-2018-02-18 16:00:00,9924.0
-2018-02-18 17:00:00,9928.0
-2018-02-18 18:00:00,10144.0
-2018-02-18 19:00:00,10750.0
-2018-02-18 20:00:00,11218.0
-2018-02-18 21:00:00,11141.0
-2018-02-18 22:00:00,10945.0
-2018-02-18 23:00:00,10628.0
-2018-02-19 00:00:00,10135.0
-2018-02-17 01:00:00,10823.0
-2018-02-17 02:00:00,10421.0
-2018-02-17 03:00:00,10280.0
-2018-02-17 04:00:00,10122.0
-2018-02-17 05:00:00,10123.0
-2018-02-17 06:00:00,10176.0
-2018-02-17 07:00:00,10503.0
-2018-02-17 08:00:00,10882.0
-2018-02-17 09:00:00,11078.0
-2018-02-17 10:00:00,11339.0
-2018-02-17 11:00:00,11503.0
-2018-02-17 12:00:00,11390.0
-2018-02-17 13:00:00,11164.0
-2018-02-17 14:00:00,10986.0
-2018-02-17 15:00:00,10825.0
-2018-02-17 16:00:00,10812.0
-2018-02-17 17:00:00,10906.0
-2018-02-17 18:00:00,11057.0
-2018-02-17 19:00:00,11382.0
-2018-02-17 20:00:00,11609.0
-2018-02-17 21:00:00,11502.0
-2018-02-17 22:00:00,11357.0
-2018-02-17 23:00:00,11051.0
-2018-02-18 00:00:00,10603.0
-2018-02-16 01:00:00,9995.0
-2018-02-16 02:00:00,9673.0
-2018-02-16 03:00:00,9478.0
-2018-02-16 04:00:00,9367.0
-2018-02-16 05:00:00,9360.0
-2018-02-16 06:00:00,9641.0
-2018-02-16 07:00:00,10323.0
-2018-02-16 08:00:00,11334.0
-2018-02-16 09:00:00,11788.0
-2018-02-16 10:00:00,12005.0
-2018-02-16 11:00:00,12135.0
-2018-02-16 12:00:00,12101.0
-2018-02-16 13:00:00,11884.0
-2018-02-16 14:00:00,11719.0
-2018-02-16 15:00:00,11621.0
-2018-02-16 16:00:00,11474.0
-2018-02-16 17:00:00,11329.0
-2018-02-16 18:00:00,11430.0
-2018-02-16 19:00:00,11975.0
-2018-02-16 20:00:00,12368.0
-2018-02-16 21:00:00,12287.0
-2018-02-16 22:00:00,12095.0
-2018-02-16 23:00:00,11829.0
-2018-02-17 00:00:00,11282.0
-2018-02-15 01:00:00,10106.0
-2018-02-15 02:00:00,9686.0
-2018-02-15 03:00:00,9428.0
-2018-02-15 04:00:00,9287.0
-2018-02-15 05:00:00,9266.0
-2018-02-15 06:00:00,9486.0
-2018-02-15 07:00:00,10182.0
-2018-02-15 08:00:00,11219.0
-2018-02-15 09:00:00,11621.0
-2018-02-15 10:00:00,11818.0
-2018-02-15 11:00:00,11872.0
-2018-02-15 12:00:00,11871.0
-2018-02-15 13:00:00,11822.0
-2018-02-15 14:00:00,11665.0
-2018-02-15 15:00:00,11634.0
-2018-02-15 16:00:00,11480.0
-2018-02-15 17:00:00,11414.0
-2018-02-15 18:00:00,11533.0
-2018-02-15 19:00:00,12002.0
-2018-02-15 20:00:00,12082.0
-2018-02-15 21:00:00,11904.0
-2018-02-15 22:00:00,11659.0
-2018-02-15 23:00:00,11220.0
-2018-02-16 00:00:00,10538.0
-2018-02-14 01:00:00,10896.0
-2018-02-14 02:00:00,10512.0
-2018-02-14 03:00:00,10284.0
-2018-02-14 04:00:00,10145.0
-2018-02-14 05:00:00,10125.0
-2018-02-14 06:00:00,10391.0
-2018-02-14 07:00:00,11081.0
-2018-02-14 08:00:00,12054.0
-2018-02-14 09:00:00,12352.0
-2018-02-14 10:00:00,12276.0
-2018-02-14 11:00:00,12103.0
-2018-02-14 12:00:00,11997.0
-2018-02-14 13:00:00,11905.0
-2018-02-14 14:00:00,11746.0
-2018-02-14 15:00:00,11674.0
-2018-02-14 16:00:00,11585.0
-2018-02-14 17:00:00,11613.0
-2018-02-14 18:00:00,11818.0
-2018-02-14 19:00:00,12307.0
-2018-02-14 20:00:00,12386.0
-2018-02-14 21:00:00,12197.0
-2018-02-14 22:00:00,11908.0
-2018-02-14 23:00:00,11428.0
-2018-02-15 00:00:00,10725.0
-2018-02-13 01:00:00,11347.0
-2018-02-13 02:00:00,11011.0
-2018-02-13 03:00:00,10852.0
-2018-02-13 04:00:00,10736.0
-2018-02-13 05:00:00,10747.0
-2018-02-13 06:00:00,10989.0
-2018-02-13 07:00:00,11636.0
-2018-02-13 08:00:00,12590.0
-2018-02-13 09:00:00,12935.0
-2018-02-13 10:00:00,13070.0
-2018-02-13 11:00:00,13079.0
-2018-02-13 12:00:00,13008.0
-2018-02-13 13:00:00,12808.0
-2018-02-13 14:00:00,12617.0
-2018-02-13 15:00:00,12451.0
-2018-02-13 16:00:00,12339.0
-2018-02-13 17:00:00,12250.0
-2018-02-13 18:00:00,12293.0
-2018-02-13 19:00:00,12735.0
-2018-02-13 20:00:00,13003.0
-2018-02-13 21:00:00,12870.0
-2018-02-13 22:00:00,12653.0
-2018-02-13 23:00:00,12185.0
-2018-02-14 00:00:00,11516.0
-2018-02-12 01:00:00,11045.0
-2018-02-12 02:00:00,10827.0
-2018-02-12 03:00:00,10643.0
-2018-02-12 04:00:00,10623.0
-2018-02-12 05:00:00,10707.0
-2018-02-12 06:00:00,10993.0
-2018-02-12 07:00:00,11719.0
-2018-02-12 08:00:00,12739.0
-2018-02-12 09:00:00,13059.0
-2018-02-12 10:00:00,13053.0
-2018-02-12 11:00:00,12894.0
-2018-02-12 12:00:00,12789.0
-2018-02-12 13:00:00,12663.0
-2018-02-12 14:00:00,12586.0
-2018-02-12 15:00:00,12495.0
-2018-02-12 16:00:00,12385.0
-2018-02-12 17:00:00,12394.0
-2018-02-12 18:00:00,12611.0
-2018-02-12 19:00:00,13184.0
-2018-02-12 20:00:00,13436.0
-2018-02-12 21:00:00,13300.0
-2018-02-12 22:00:00,13090.0
-2018-02-12 23:00:00,12634.0
-2018-02-13 00:00:00,11966.0
-2018-02-11 01:00:00,10794.0
-2018-02-11 02:00:00,10443.0
-2018-02-11 03:00:00,10244.0
-2018-02-11 04:00:00,10099.0
-2018-02-11 05:00:00,10051.0
-2018-02-11 06:00:00,10082.0
-2018-02-11 07:00:00,10252.0
-2018-02-11 08:00:00,10451.0
-2018-02-11 09:00:00,10489.0
-2018-02-11 10:00:00,10749.0
-2018-02-11 11:00:00,10969.0
-2018-02-11 12:00:00,11056.0
-2018-02-11 13:00:00,11041.0
-2018-02-11 14:00:00,11072.0
-2018-02-11 15:00:00,11028.0
-2018-02-11 16:00:00,10924.0
-2018-02-11 17:00:00,10847.0
-2018-02-11 18:00:00,11217.0
-2018-02-11 19:00:00,11953.0
-2018-02-11 20:00:00,12468.0
-2018-02-11 21:00:00,12327.0
-2018-02-11 22:00:00,12249.0
-2018-02-11 23:00:00,11940.0
-2018-02-12 00:00:00,11453.0
-2018-02-10 01:00:00,11062.0
-2018-02-10 02:00:00,10683.0
-2018-02-10 03:00:00,10479.0
-2018-02-10 04:00:00,10305.0
-2018-02-10 05:00:00,10294.0
-2018-02-10 06:00:00,10433.0
-2018-02-10 07:00:00,10740.0
-2018-02-10 08:00:00,11125.0
-2018-02-10 09:00:00,11300.0
-2018-02-10 10:00:00,11671.0
-2018-02-10 11:00:00,11887.0
-2018-02-10 12:00:00,11906.0
-2018-02-10 13:00:00,11862.0
-2018-02-10 14:00:00,11712.0
-2018-02-10 15:00:00,11555.0
-2018-02-10 16:00:00,11428.0
-2018-02-10 17:00:00,11424.0
-2018-02-10 18:00:00,11589.0
-2018-02-10 19:00:00,12123.0
-2018-02-10 20:00:00,12328.0
-2018-02-10 21:00:00,12198.0
-2018-02-10 22:00:00,11978.0
-2018-02-10 23:00:00,11669.0
-2018-02-11 00:00:00,11140.0
-2018-02-09 01:00:00,11362.0
-2018-02-09 02:00:00,10973.0
-2018-02-09 03:00:00,10686.0
-2018-02-09 04:00:00,10534.0
-2018-02-09 05:00:00,10502.0
-2018-02-09 06:00:00,10670.0
-2018-02-09 07:00:00,11136.0
-2018-02-09 08:00:00,11797.0
-2018-02-09 09:00:00,12074.0
-2018-02-09 10:00:00,12436.0
-2018-02-09 11:00:00,12622.0
-2018-02-09 12:00:00,12758.0
-2018-02-09 13:00:00,12804.0
-2018-02-09 14:00:00,12796.0
-2018-02-09 15:00:00,12733.0
-2018-02-09 16:00:00,12596.0
-2018-02-09 17:00:00,12522.0
-2018-02-09 18:00:00,12595.0
-2018-02-09 19:00:00,13138.0
-2018-02-09 20:00:00,13139.0
-2018-02-09 21:00:00,12884.0
-2018-02-09 22:00:00,12596.0
-2018-02-09 23:00:00,12228.0
-2018-02-10 00:00:00,11611.0
-2018-02-08 01:00:00,11729.0
-2018-02-08 02:00:00,11412.0
-2018-02-08 03:00:00,11223.0
-2018-02-08 04:00:00,11128.0
-2018-02-08 05:00:00,11156.0
-2018-02-08 06:00:00,11378.0
-2018-02-08 07:00:00,12014.0
-2018-02-08 08:00:00,12988.0
-2018-02-08 09:00:00,13400.0
-2018-02-08 10:00:00,13492.0
-2018-02-08 11:00:00,13485.0
-2018-02-08 12:00:00,13427.0
-2018-02-08 13:00:00,13168.0
-2018-02-08 14:00:00,12967.0
-2018-02-08 15:00:00,12912.0
-2018-02-08 16:00:00,12866.0
-2018-02-08 17:00:00,12813.0
-2018-02-08 18:00:00,13010.0
-2018-02-08 19:00:00,13544.0
-2018-02-08 20:00:00,13643.0
-2018-02-08 21:00:00,13464.0
-2018-02-08 22:00:00,13180.0
-2018-02-08 23:00:00,12670.0
-2018-02-09 00:00:00,11974.0
-2018-02-07 01:00:00,11402.0
-2018-02-07 02:00:00,11013.0
-2018-02-07 03:00:00,10805.0
-2018-02-07 04:00:00,10756.0
-2018-02-07 05:00:00,10770.0
-2018-02-07 06:00:00,11040.0
-2018-02-07 07:00:00,11705.0
-2018-02-07 08:00:00,12700.0
-2018-02-07 09:00:00,13080.0
-2018-02-07 10:00:00,13186.0
-2018-02-07 11:00:00,13132.0
-2018-02-07 12:00:00,13155.0
-2018-02-07 13:00:00,13071.0
-2018-02-07 14:00:00,13022.0
-2018-02-07 15:00:00,12918.0
-2018-02-07 16:00:00,12884.0
-2018-02-07 17:00:00,12976.0
-2018-02-07 18:00:00,13251.0
-2018-02-07 19:00:00,13778.0
-2018-02-07 20:00:00,13877.0
-2018-02-07 21:00:00,13710.0
-2018-02-07 22:00:00,13471.0
-2018-02-07 23:00:00,12966.0
-2018-02-08 00:00:00,12298.0
-2018-02-06 01:00:00,11845.0
-2018-02-06 02:00:00,11498.0
-2018-02-06 03:00:00,11288.0
-2018-02-06 04:00:00,11248.0
-2018-02-06 05:00:00,11227.0
-2018-02-06 06:00:00,11523.0
-2018-02-06 07:00:00,12155.0
-2018-02-06 08:00:00,13108.0
-2018-02-06 09:00:00,13445.0
-2018-02-06 10:00:00,13374.0
-2018-02-06 11:00:00,13253.0
-2018-02-06 12:00:00,13158.0
-2018-02-06 13:00:00,13001.0
-2018-02-06 14:00:00,12828.0
-2018-02-06 15:00:00,12801.0
-2018-02-06 16:00:00,12742.0
-2018-02-06 17:00:00,12800.0
-2018-02-06 18:00:00,13037.0
-2018-02-06 19:00:00,13595.0
-2018-02-06 20:00:00,13675.0
-2018-02-06 21:00:00,13475.0
-2018-02-06 22:00:00,13177.0
-2018-02-06 23:00:00,12670.0
-2018-02-07 00:00:00,11988.0
-2018-02-05 01:00:00,11318.0
-2018-02-05 02:00:00,11098.0
-2018-02-05 03:00:00,10995.0
-2018-02-05 04:00:00,10974.0
-2018-02-05 05:00:00,11108.0
-2018-02-05 06:00:00,11349.0
-2018-02-05 07:00:00,12178.0
-2018-02-05 08:00:00,13223.0
-2018-02-05 09:00:00,13649.0
-2018-02-05 10:00:00,13775.0
-2018-02-05 11:00:00,13739.0
-2018-02-05 12:00:00,13599.0
-2018-02-05 13:00:00,13517.0
-2018-02-05 14:00:00,13612.0
-2018-02-05 15:00:00,13676.0
-2018-02-05 16:00:00,13598.0
-2018-02-05 17:00:00,13573.0
-2018-02-05 18:00:00,13772.0
-2018-02-05 19:00:00,14292.0
-2018-02-05 20:00:00,14292.0
-2018-02-05 21:00:00,14103.0
-2018-02-05 22:00:00,13781.0
-2018-02-05 23:00:00,13236.0
-2018-02-06 00:00:00,12478.0
-2018-02-04 01:00:00,10330.0
-2018-02-04 02:00:00,9937.0
-2018-02-04 03:00:00,9638.0
-2018-02-04 04:00:00,9484.0
-2018-02-04 05:00:00,9418.0
-2018-02-04 06:00:00,9519.0
-2018-02-04 07:00:00,9684.0
-2018-02-04 08:00:00,10091.0
-2018-02-04 09:00:00,10275.0
-2018-02-04 10:00:00,10643.0
-2018-02-04 11:00:00,11021.0
-2018-02-04 12:00:00,11310.0
-2018-02-04 13:00:00,11459.0
-2018-02-04 14:00:00,11598.0
-2018-02-04 15:00:00,11636.0
-2018-02-04 16:00:00,11610.0
-2018-02-04 17:00:00,11610.0
-2018-02-04 18:00:00,11750.0
-2018-02-04 19:00:00,12356.0
-2018-02-04 20:00:00,12541.0
-2018-02-04 21:00:00,12444.0
-2018-02-04 22:00:00,12323.0
-2018-02-04 23:00:00,12110.0
-2018-02-05 00:00:00,11715.0
-2018-02-03 01:00:00,11501.0
-2018-02-03 02:00:00,11038.0
-2018-02-03 03:00:00,10763.0
-2018-02-03 04:00:00,10509.0
-2018-02-03 05:00:00,10451.0
-2018-02-03 06:00:00,10492.0
-2018-02-03 07:00:00,10775.0
-2018-02-03 08:00:00,11188.0
-2018-02-03 09:00:00,11427.0
-2018-02-03 10:00:00,11689.0
-2018-02-03 11:00:00,11831.0
-2018-02-03 12:00:00,11881.0
-2018-02-03 13:00:00,11765.0
-2018-02-03 14:00:00,11643.0
-2018-02-03 15:00:00,11414.0
-2018-02-03 16:00:00,11253.0
-2018-02-03 17:00:00,11122.0
-2018-02-03 18:00:00,11254.0
-2018-02-03 19:00:00,11768.0
-2018-02-03 20:00:00,11845.0
-2018-02-03 21:00:00,11705.0
-2018-02-03 22:00:00,11522.0
-2018-02-03 23:00:00,11280.0
-2018-02-04 00:00:00,10833.0
-2018-02-02 01:00:00,11743.0
-2018-02-02 02:00:00,11444.0
-2018-02-02 03:00:00,11265.0
-2018-02-02 04:00:00,11140.0
-2018-02-02 05:00:00,11173.0
-2018-02-02 06:00:00,11408.0
-2018-02-02 07:00:00,12073.0
-2018-02-02 08:00:00,13050.0
-2018-02-02 09:00:00,13456.0
-2018-02-02 10:00:00,13509.0
-2018-02-02 11:00:00,13435.0
-2018-02-02 12:00:00,13414.0
-2018-02-02 13:00:00,13263.0
-2018-02-02 14:00:00,13099.0
-2018-02-02 15:00:00,12895.0
-2018-02-02 16:00:00,12719.0
-2018-02-02 17:00:00,12613.0
-2018-02-02 18:00:00,12852.0
-2018-02-02 19:00:00,13495.0
-2018-02-02 20:00:00,13527.0
-2018-02-02 21:00:00,13341.0
-2018-02-02 22:00:00,13102.0
-2018-02-02 23:00:00,12708.0
-2018-02-03 00:00:00,12069.0
-2018-02-01 01:00:00,10355.0
-2018-02-01 02:00:00,9978.0
-2018-02-01 03:00:00,9803.0
-2018-02-01 04:00:00,9686.0
-2018-02-01 05:00:00,9720.0
-2018-02-01 06:00:00,10014.0
-2018-02-01 07:00:00,10772.0
-2018-02-01 08:00:00,11874.0
-2018-02-01 09:00:00,12451.0
-2018-02-01 10:00:00,12719.0
-2018-02-01 11:00:00,12582.0
-2018-02-01 12:00:00,12664.0
-2018-02-01 13:00:00,12623.0
-2018-02-01 14:00:00,12603.0
-2018-02-01 15:00:00,12553.0
-2018-02-01 16:00:00,12522.0
-2018-02-01 17:00:00,12554.0
-2018-02-01 18:00:00,12927.0
-2018-02-01 19:00:00,13665.0
-2018-02-01 20:00:00,13820.0
-2018-02-01 21:00:00,13700.0
-2018-02-01 22:00:00,13436.0
-2018-02-01 23:00:00,12994.0
-2018-02-02 00:00:00,12286.0
-2018-01-31 01:00:00,10986.0
-2018-01-31 02:00:00,10603.0
-2018-01-31 03:00:00,10346.0
-2018-01-31 04:00:00,10183.0
-2018-01-31 05:00:00,10141.0
-2018-01-31 06:00:00,10400.0
-2018-01-31 07:00:00,11098.0
-2018-01-31 08:00:00,12151.0
-2018-01-31 09:00:00,12519.0
-2018-01-31 10:00:00,12494.0
-2018-01-31 11:00:00,12293.0
-2018-01-31 12:00:00,12322.0
-2018-01-31 13:00:00,12256.0
-2018-01-31 14:00:00,12132.0
-2018-01-31 15:00:00,12062.0
-2018-01-31 16:00:00,11975.0
-2018-01-31 17:00:00,11923.0
-2018-01-31 18:00:00,12144.0
-2018-01-31 19:00:00,12665.0
-2018-01-31 20:00:00,12597.0
-2018-01-31 21:00:00,12379.0
-2018-01-31 22:00:00,12114.0
-2018-01-31 23:00:00,11614.0
-2018-02-01 00:00:00,10975.0
-2018-01-30 01:00:00,11111.0
-2018-01-30 02:00:00,10802.0
-2018-01-30 03:00:00,10624.0
-2018-01-30 04:00:00,10509.0
-2018-01-30 05:00:00,10536.0
-2018-01-30 06:00:00,10833.0
-2018-01-30 07:00:00,11577.0
-2018-01-30 08:00:00,12643.0
-2018-01-30 09:00:00,13066.0
-2018-01-30 10:00:00,12949.0
-2018-01-30 11:00:00,12809.0
-2018-01-30 12:00:00,12749.0
-2018-01-30 13:00:00,12650.0
-2018-01-30 14:00:00,12445.0
-2018-01-30 15:00:00,12375.0
-2018-01-30 16:00:00,12399.0
-2018-01-30 17:00:00,12466.0
-2018-01-30 18:00:00,12814.0
-2018-01-30 19:00:00,13373.0
-2018-01-30 20:00:00,13268.0
-2018-01-30 21:00:00,13110.0
-2018-01-30 22:00:00,12771.0
-2018-01-30 23:00:00,12282.0
-2018-01-31 00:00:00,11646.0
-2018-01-29 01:00:00,9728.0
-2018-01-29 02:00:00,9499.0
-2018-01-29 03:00:00,9425.0
-2018-01-29 04:00:00,9377.0
-2018-01-29 05:00:00,9474.0
-2018-01-29 06:00:00,9785.0
-2018-01-29 07:00:00,10648.0
-2018-01-29 08:00:00,11785.0
-2018-01-29 09:00:00,12434.0
-2018-01-29 10:00:00,12545.0
-2018-01-29 11:00:00,12684.0
-2018-01-29 12:00:00,12780.0
-2018-01-29 13:00:00,12742.0
-2018-01-29 14:00:00,12670.0
-2018-01-29 15:00:00,12642.0
-2018-01-29 16:00:00,12606.0
-2018-01-29 17:00:00,12591.0
-2018-01-29 18:00:00,12795.0
-2018-01-29 19:00:00,13321.0
-2018-01-29 20:00:00,13247.0
-2018-01-29 21:00:00,13058.0
-2018-01-29 22:00:00,12794.0
-2018-01-29 23:00:00,12341.0
-2018-01-30 00:00:00,11699.0
-2018-01-28 01:00:00,9405.0
-2018-01-28 02:00:00,9027.0
-2018-01-28 03:00:00,8857.0
-2018-01-28 04:00:00,8796.0
-2018-01-28 05:00:00,8730.0
-2018-01-28 06:00:00,8838.0
-2018-01-28 07:00:00,8982.0
-2018-01-28 08:00:00,9331.0
-2018-01-28 09:00:00,9359.0
-2018-01-28 10:00:00,9504.0
-2018-01-28 11:00:00,9562.0
-2018-01-28 12:00:00,9619.0
-2018-01-28 13:00:00,9648.0
-2018-01-28 14:00:00,9693.0
-2018-01-28 15:00:00,9765.0
-2018-01-28 16:00:00,9938.0
-2018-01-28 17:00:00,10139.0
-2018-01-28 18:00:00,10555.0
-2018-01-28 19:00:00,11119.0
-2018-01-28 20:00:00,11175.0
-2018-01-28 21:00:00,11113.0
-2018-01-28 22:00:00,10938.0
-2018-01-28 23:00:00,10605.0
-2018-01-29 00:00:00,10201.0
-2018-01-27 01:00:00,9836.0
-2018-01-27 02:00:00,9417.0
-2018-01-27 03:00:00,9124.0
-2018-01-27 04:00:00,8901.0
-2018-01-27 05:00:00,8757.0
-2018-01-27 06:00:00,8852.0
-2018-01-27 07:00:00,9070.0
-2018-01-27 08:00:00,9549.0
-2018-01-27 09:00:00,9825.0
-2018-01-27 10:00:00,10054.0
-2018-01-27 11:00:00,10130.0
-2018-01-27 12:00:00,10180.0
-2018-01-27 13:00:00,10025.0
-2018-01-27 14:00:00,9907.0
-2018-01-27 15:00:00,9671.0
-2018-01-27 16:00:00,9576.0
-2018-01-27 17:00:00,9532.0
-2018-01-27 18:00:00,9770.0
-2018-01-27 19:00:00,10489.0
-2018-01-27 20:00:00,10619.0
-2018-01-27 21:00:00,10540.0
-2018-01-27 22:00:00,10401.0
-2018-01-27 23:00:00,10191.0
-2018-01-28 00:00:00,9798.0
-2018-01-26 01:00:00,10334.0
-2018-01-26 02:00:00,9956.0
-2018-01-26 03:00:00,9721.0
-2018-01-26 04:00:00,9587.0
-2018-01-26 05:00:00,9562.0
-2018-01-26 06:00:00,9810.0
-2018-01-26 07:00:00,10480.0
-2018-01-26 08:00:00,11508.0
-2018-01-26 09:00:00,11868.0
-2018-01-26 10:00:00,11846.0
-2018-01-26 11:00:00,11777.0
-2018-01-26 12:00:00,11746.0
-2018-01-26 13:00:00,11624.0
-2018-01-26 14:00:00,11550.0
-2018-01-26 15:00:00,11544.0
-2018-01-26 16:00:00,11510.0
-2018-01-26 17:00:00,11392.0
-2018-01-26 18:00:00,11621.0
-2018-01-26 19:00:00,12087.0
-2018-01-26 20:00:00,11923.0
-2018-01-26 21:00:00,11711.0
-2018-01-26 22:00:00,11425.0
-2018-01-26 23:00:00,11000.0
-2018-01-27 00:00:00,10428.0
-2018-01-25 01:00:00,10742.0
-2018-01-25 02:00:00,10359.0
-2018-01-25 03:00:00,10161.0
-2018-01-25 04:00:00,10057.0
-2018-01-25 05:00:00,10036.0
-2018-01-25 06:00:00,10310.0
-2018-01-25 07:00:00,11010.0
-2018-01-25 08:00:00,12064.0
-2018-01-25 09:00:00,12515.0
-2018-01-25 10:00:00,12491.0
-2018-01-25 11:00:00,12371.0
-2018-01-25 12:00:00,12243.0
-2018-01-25 13:00:00,12086.0
-2018-01-25 14:00:00,11904.0
-2018-01-25 15:00:00,11814.0
-2018-01-25 16:00:00,11660.0
-2018-01-25 17:00:00,11591.0
-2018-01-25 18:00:00,11812.0
-2018-01-25 19:00:00,12472.0
-2018-01-25 20:00:00,12459.0
-2018-01-25 21:00:00,12332.0
-2018-01-25 22:00:00,12061.0
-2018-01-25 23:00:00,11622.0
-2018-01-26 00:00:00,10935.0
-2018-01-24 01:00:00,10523.0
-2018-01-24 02:00:00,10156.0
-2018-01-24 03:00:00,9945.0
-2018-01-24 04:00:00,9804.0
-2018-01-24 05:00:00,9787.0
-2018-01-24 06:00:00,10080.0
-2018-01-24 07:00:00,10806.0
-2018-01-24 08:00:00,11844.0
-2018-01-24 09:00:00,12397.0
-2018-01-24 10:00:00,12467.0
-2018-01-24 11:00:00,12522.0
-2018-01-24 12:00:00,12620.0
-2018-01-24 13:00:00,12631.0
-2018-01-24 14:00:00,12617.0
-2018-01-24 15:00:00,12675.0
-2018-01-24 16:00:00,12545.0
-2018-01-24 17:00:00,12470.0
-2018-01-24 18:00:00,12775.0
-2018-01-24 19:00:00,13194.0
-2018-01-24 20:00:00,13037.0
-2018-01-24 21:00:00,12869.0
-2018-01-24 22:00:00,12542.0
-2018-01-24 23:00:00,12072.0
-2018-01-25 00:00:00,11315.0
-2018-01-23 01:00:00,9848.0
-2018-01-23 02:00:00,9512.0
-2018-01-23 03:00:00,9321.0
-2018-01-23 04:00:00,9226.0
-2018-01-23 05:00:00,9263.0
-2018-01-23 06:00:00,9596.0
-2018-01-23 07:00:00,10350.0
-2018-01-23 08:00:00,11495.0
-2018-01-23 09:00:00,12108.0
-2018-01-23 10:00:00,12210.0
-2018-01-23 11:00:00,12337.0
-2018-01-23 12:00:00,12491.0
-2018-01-23 13:00:00,12499.0
-2018-01-23 14:00:00,12485.0
-2018-01-23 15:00:00,12517.0
-2018-01-23 16:00:00,12445.0
-2018-01-23 17:00:00,12450.0
-2018-01-23 18:00:00,12698.0
-2018-01-23 19:00:00,13078.0
-2018-01-23 20:00:00,12911.0
-2018-01-23 21:00:00,12638.0
-2018-01-23 22:00:00,12358.0
-2018-01-23 23:00:00,11845.0
-2018-01-24 00:00:00,11177.0
-2018-01-22 01:00:00,9313.0
-2018-01-22 02:00:00,9022.0
-2018-01-22 03:00:00,8900.0
-2018-01-22 04:00:00,8788.0
-2018-01-22 05:00:00,8904.0
-2018-01-22 06:00:00,9173.0
-2018-01-22 07:00:00,9979.0
-2018-01-22 08:00:00,10990.0
-2018-01-22 09:00:00,11673.0
-2018-01-22 10:00:00,11697.0
-2018-01-22 11:00:00,11711.0
-2018-01-22 12:00:00,11779.0
-2018-01-22 13:00:00,11802.0
-2018-01-22 14:00:00,11751.0
-2018-01-22 15:00:00,11699.0
-2018-01-22 16:00:00,11449.0
-2018-01-22 17:00:00,11288.0
-2018-01-22 18:00:00,11536.0
-2018-01-22 19:00:00,12058.0
-2018-01-22 20:00:00,11968.0
-2018-01-22 21:00:00,11792.0
-2018-01-22 22:00:00,11555.0
-2018-01-22 23:00:00,11050.0
-2018-01-23 00:00:00,10434.0
-2018-01-21 01:00:00,9446.0
-2018-01-21 02:00:00,9108.0
-2018-01-21 03:00:00,8875.0
-2018-01-21 04:00:00,8706.0
-2018-01-21 05:00:00,8674.0
-2018-01-21 06:00:00,8669.0
-2018-01-21 07:00:00,8876.0
-2018-01-21 08:00:00,9117.0
-2018-01-21 09:00:00,9283.0
-2018-01-21 10:00:00,9494.0
-2018-01-21 11:00:00,9741.0
-2018-01-21 12:00:00,9916.0
-2018-01-21 13:00:00,10005.0
-2018-01-21 14:00:00,10044.0
-2018-01-21 15:00:00,10007.0
-2018-01-21 16:00:00,10087.0
-2018-01-21 17:00:00,10172.0
-2018-01-21 18:00:00,10550.0
-2018-01-21 19:00:00,11060.0
-2018-01-21 20:00:00,11011.0
-2018-01-21 21:00:00,10910.0
-2018-01-21 22:00:00,10621.0
-2018-01-21 23:00:00,10263.0
-2018-01-22 00:00:00,9769.0
-2018-01-20 01:00:00,10423.0
-2018-01-20 02:00:00,10067.0
-2018-01-20 03:00:00,9756.0
-2018-01-20 04:00:00,9533.0
-2018-01-20 05:00:00,9498.0
-2018-01-20 06:00:00,9527.0
-2018-01-20 07:00:00,9895.0
-2018-01-20 08:00:00,10316.0
-2018-01-20 09:00:00,10565.0
-2018-01-20 10:00:00,10681.0
-2018-01-20 11:00:00,10698.0
-2018-01-20 12:00:00,10682.0
-2018-01-20 13:00:00,10505.0
-2018-01-20 14:00:00,10357.0
-2018-01-20 15:00:00,10077.0
-2018-01-20 16:00:00,9976.0
-2018-01-20 17:00:00,9917.0
-2018-01-20 18:00:00,10296.0
-2018-01-20 19:00:00,10962.0
-2018-01-20 20:00:00,10997.0
-2018-01-20 21:00:00,10849.0
-2018-01-20 22:00:00,10657.0
-2018-01-20 23:00:00,10377.0
-2018-01-21 00:00:00,9920.0
-2018-01-19 01:00:00,11099.0
-2018-01-19 02:00:00,10726.0
-2018-01-19 03:00:00,10482.0
-2018-01-19 04:00:00,10362.0
-2018-01-19 05:00:00,10375.0
-2018-01-19 06:00:00,10604.0
-2018-01-19 07:00:00,11245.0
-2018-01-19 08:00:00,12284.0
-2018-01-19 09:00:00,12667.0
-2018-01-19 10:00:00,12586.0
-2018-01-19 11:00:00,12502.0
-2018-01-19 12:00:00,12432.0
-2018-01-19 13:00:00,12291.0
-2018-01-19 14:00:00,12148.0
-2018-01-19 15:00:00,12111.0
-2018-01-19 16:00:00,11961.0
-2018-01-19 17:00:00,11851.0
-2018-01-19 18:00:00,12244.0
-2018-01-19 19:00:00,12851.0
-2018-01-19 20:00:00,12729.0
-2018-01-19 21:00:00,12444.0
-2018-01-19 22:00:00,12132.0
-2018-01-19 23:00:00,11692.0
-2018-01-20 00:00:00,11073.0
-2018-01-18 01:00:00,11968.0
-2018-01-18 02:00:00,11601.0
-2018-01-18 03:00:00,11363.0
-2018-01-18 04:00:00,11239.0
-2018-01-18 05:00:00,11195.0
-2018-01-18 06:00:00,11476.0
-2018-01-18 07:00:00,12074.0
-2018-01-18 08:00:00,13134.0
-2018-01-18 09:00:00,13549.0
-2018-01-18 10:00:00,13483.0
-2018-01-18 11:00:00,13353.0
-2018-01-18 12:00:00,13253.0
-2018-01-18 13:00:00,13018.0
-2018-01-18 14:00:00,12850.0
-2018-01-18 15:00:00,12734.0
-2018-01-18 16:00:00,12588.0
-2018-01-18 17:00:00,12527.0
-2018-01-18 18:00:00,12846.0
-2018-01-18 19:00:00,13572.0
-2018-01-18 20:00:00,13496.0
-2018-01-18 21:00:00,13306.0
-2018-01-18 22:00:00,13001.0
-2018-01-18 23:00:00,12454.0
-2018-01-19 00:00:00,11745.0
-2018-01-17 01:00:00,11905.0
-2018-01-17 02:00:00,11578.0
-2018-01-17 03:00:00,11368.0
-2018-01-17 04:00:00,11326.0
-2018-01-17 05:00:00,11340.0
-2018-01-17 06:00:00,11593.0
-2018-01-17 07:00:00,12262.0
-2018-01-17 08:00:00,13351.0
-2018-01-17 09:00:00,13864.0
-2018-01-17 10:00:00,13798.0
-2018-01-17 11:00:00,13648.0
-2018-01-17 12:00:00,13572.0
-2018-01-17 13:00:00,13410.0
-2018-01-17 14:00:00,13279.0
-2018-01-17 15:00:00,13218.0
-2018-01-17 16:00:00,13098.0
-2018-01-17 17:00:00,13085.0
-2018-01-17 18:00:00,13484.0
-2018-01-17 19:00:00,14257.0
-2018-01-17 20:00:00,14244.0
-2018-01-17 21:00:00,14128.0
-2018-01-17 22:00:00,13848.0
-2018-01-17 23:00:00,13298.0
-2018-01-18 00:00:00,12590.0
-2018-01-16 01:00:00,12073.0
-2018-01-16 02:00:00,11735.0
-2018-01-16 03:00:00,11559.0
-2018-01-16 04:00:00,11475.0
-2018-01-16 05:00:00,11506.0
-2018-01-16 06:00:00,11684.0
-2018-01-16 07:00:00,12285.0
-2018-01-16 08:00:00,13219.0
-2018-01-16 09:00:00,13690.0
-2018-01-16 10:00:00,13687.0
-2018-01-16 11:00:00,13603.0
-2018-01-16 12:00:00,13511.0
-2018-01-16 13:00:00,13355.0
-2018-01-16 14:00:00,13110.0
-2018-01-16 15:00:00,13080.0
-2018-01-16 16:00:00,12958.0
-2018-01-16 17:00:00,12918.0
-2018-01-16 18:00:00,13319.0
-2018-01-16 19:00:00,14023.0
-2018-01-16 20:00:00,13992.0
-2018-01-16 21:00:00,13848.0
-2018-01-16 22:00:00,13586.0
-2018-01-16 23:00:00,13124.0
-2018-01-17 00:00:00,12487.0
-2018-01-15 01:00:00,11433.0
-2018-01-15 02:00:00,11170.0
-2018-01-15 03:00:00,10984.0
-2018-01-15 04:00:00,10789.0
-2018-01-15 05:00:00,10837.0
-2018-01-15 06:00:00,11060.0
-2018-01-15 07:00:00,11497.0
-2018-01-15 08:00:00,12318.0
-2018-01-15 09:00:00,12763.0
-2018-01-15 10:00:00,12967.0
-2018-01-15 11:00:00,13168.0
-2018-01-15 12:00:00,13137.0
-2018-01-15 13:00:00,13149.0
-2018-01-15 14:00:00,13190.0
-2018-01-15 15:00:00,13298.0
-2018-01-15 16:00:00,13310.0
-2018-01-15 17:00:00,13342.0
-2018-01-15 18:00:00,13667.0
-2018-01-15 19:00:00,14304.0
-2018-01-15 20:00:00,14191.0
-2018-01-15 21:00:00,14006.0
-2018-01-15 22:00:00,13756.0
-2018-01-15 23:00:00,13260.0
-2018-01-16 00:00:00,12642.0
-2018-01-14 01:00:00,11673.0
-2018-01-14 02:00:00,11383.0
-2018-01-14 03:00:00,11200.0
-2018-01-14 04:00:00,11063.0
-2018-01-14 05:00:00,11014.0
-2018-01-14 06:00:00,11049.0
-2018-01-14 07:00:00,11291.0
-2018-01-14 08:00:00,11567.0
-2018-01-14 09:00:00,11671.0
-2018-01-14 10:00:00,11656.0
-2018-01-14 11:00:00,11727.0
-2018-01-14 12:00:00,11812.0
-2018-01-14 13:00:00,11762.0
-2018-01-14 14:00:00,11746.0
-2018-01-14 15:00:00,11699.0
-2018-01-14 16:00:00,11778.0
-2018-01-14 17:00:00,11918.0
-2018-01-14 18:00:00,12467.0
-2018-01-14 19:00:00,12986.0
-2018-01-14 20:00:00,13004.0
-2018-01-14 21:00:00,12966.0
-2018-01-14 22:00:00,12738.0
-2018-01-14 23:00:00,12423.0
-2018-01-15 00:00:00,11942.0
-2018-01-13 01:00:00,11805.0
-2018-01-13 02:00:00,11415.0
-2018-01-13 03:00:00,11171.0
-2018-01-13 04:00:00,11024.0
-2018-01-13 05:00:00,10992.0
-2018-01-13 06:00:00,11143.0
-2018-01-13 07:00:00,11467.0
-2018-01-13 08:00:00,11884.0
-2018-01-13 09:00:00,12150.0
-2018-01-13 10:00:00,12231.0
-2018-01-13 11:00:00,12245.0
-2018-01-13 12:00:00,12191.0
-2018-01-13 13:00:00,12210.0
-2018-01-13 14:00:00,12077.0
-2018-01-13 15:00:00,11848.0
-2018-01-13 16:00:00,11714.0
-2018-01-13 17:00:00,11765.0
-2018-01-13 18:00:00,12172.0
-2018-01-13 19:00:00,12938.0
-2018-01-13 20:00:00,12928.0
-2018-01-13 21:00:00,12830.0
-2018-01-13 22:00:00,12706.0
-2018-01-13 23:00:00,12483.0
-2018-01-14 00:00:00,12113.0
-2018-01-12 01:00:00,10608.0
-2018-01-12 02:00:00,10278.0
-2018-01-12 03:00:00,10093.0
-2018-01-12 04:00:00,10058.0
-2018-01-12 05:00:00,10071.0
-2018-01-12 06:00:00,10345.0
-2018-01-12 07:00:00,11055.0
-2018-01-12 08:00:00,12101.0
-2018-01-12 09:00:00,12762.0
-2018-01-12 10:00:00,12967.0
-2018-01-12 11:00:00,13109.0
-2018-01-12 12:00:00,13232.0
-2018-01-12 13:00:00,13223.0
-2018-01-12 14:00:00,13221.0
-2018-01-12 15:00:00,13264.0
-2018-01-12 16:00:00,13175.0
-2018-01-12 17:00:00,13115.0
-2018-01-12 18:00:00,13425.0
-2018-01-12 19:00:00,13868.0
-2018-01-12 20:00:00,13749.0
-2018-01-12 21:00:00,13550.0
-2018-01-12 22:00:00,13321.0
-2018-01-12 23:00:00,12985.0
-2018-01-13 00:00:00,12391.0
-2018-01-11 01:00:00,9886.0
-2018-01-11 02:00:00,9427.0
-2018-01-11 03:00:00,9110.0
-2018-01-11 04:00:00,8947.0
-2018-01-11 05:00:00,8919.0
-2018-01-11 06:00:00,9125.0
-2018-01-11 07:00:00,9760.0
-2018-01-11 08:00:00,10694.0
-2018-01-11 09:00:00,11334.0
-2018-01-11 10:00:00,11396.0
-2018-01-11 11:00:00,11479.0
-2018-01-11 12:00:00,11528.0
-2018-01-11 13:00:00,11528.0
-2018-01-11 14:00:00,11527.0
-2018-01-11 15:00:00,11555.0
-2018-01-11 16:00:00,11470.0
-2018-01-11 17:00:00,11521.0
-2018-01-11 18:00:00,11955.0
-2018-01-11 19:00:00,12264.0
-2018-01-11 20:00:00,12242.0
-2018-01-11 21:00:00,12173.0
-2018-01-11 22:00:00,12074.0
-2018-01-11 23:00:00,11750.0
-2018-01-12 00:00:00,11155.0
-2018-01-10 01:00:00,10814.0
-2018-01-10 02:00:00,10372.0
-2018-01-10 03:00:00,10134.0
-2018-01-10 04:00:00,9995.0
-2018-01-10 05:00:00,9945.0
-2018-01-10 06:00:00,10193.0
-2018-01-10 07:00:00,10793.0
-2018-01-10 08:00:00,11782.0
-2018-01-10 09:00:00,12305.0
-2018-01-10 10:00:00,12317.0
-2018-01-10 11:00:00,12357.0
-2018-01-10 12:00:00,12408.0
-2018-01-10 13:00:00,12350.0
-2018-01-10 14:00:00,12278.0
-2018-01-10 15:00:00,12219.0
-2018-01-10 16:00:00,12134.0
-2018-01-10 17:00:00,12086.0
-2018-01-10 18:00:00,12429.0
-2018-01-10 19:00:00,12673.0
-2018-01-10 20:00:00,12405.0
-2018-01-10 21:00:00,12141.0
-2018-01-10 22:00:00,11797.0
-2018-01-10 23:00:00,11256.0
-2018-01-11 00:00:00,10546.0
-2018-01-09 01:00:00,10891.0
-2018-01-09 02:00:00,10452.0
-2018-01-09 03:00:00,10180.0
-2018-01-09 04:00:00,10039.0
-2018-01-09 05:00:00,10075.0
-2018-01-09 06:00:00,10362.0
-2018-01-09 07:00:00,11023.0
-2018-01-09 08:00:00,12075.0
-2018-01-09 09:00:00,12602.0
-2018-01-09 10:00:00,12597.0
-2018-01-09 11:00:00,12636.0
-2018-01-09 12:00:00,12602.0
-2018-01-09 13:00:00,12450.0
-2018-01-09 14:00:00,12302.0
-2018-01-09 15:00:00,12236.0
-2018-01-09 16:00:00,12138.0
-2018-01-09 17:00:00,12162.0
-2018-01-09 18:00:00,12663.0
-2018-01-09 19:00:00,13189.0
-2018-01-09 20:00:00,13064.0
-2018-01-09 21:00:00,12876.0
-2018-01-09 22:00:00,12610.0
-2018-01-09 23:00:00,12137.0
-2018-01-10 00:00:00,11442.0
-2018-01-08 01:00:00,10866.0
-2018-01-08 02:00:00,10525.0
-2018-01-08 03:00:00,10254.0
-2018-01-08 04:00:00,10060.0
-2018-01-08 05:00:00,10099.0
-2018-01-08 06:00:00,10312.0
-2018-01-08 07:00:00,10977.0
-2018-01-08 08:00:00,11998.0
-2018-01-08 09:00:00,12515.0
-2018-01-08 10:00:00,12514.0
-2018-01-08 11:00:00,12522.0
-2018-01-08 12:00:00,12445.0
-2018-01-08 13:00:00,12315.0
-2018-01-08 14:00:00,12221.0
-2018-01-08 15:00:00,12175.0
-2018-01-08 16:00:00,12032.0
-2018-01-08 17:00:00,11992.0
-2018-01-08 18:00:00,12469.0
-2018-01-08 19:00:00,13199.0
-2018-01-08 20:00:00,13105.0
-2018-01-08 21:00:00,12981.0
-2018-01-08 22:00:00,12733.0
-2018-01-08 23:00:00,12240.0
-2018-01-09 00:00:00,11540.0
-2018-01-07 01:00:00,12231.0
-2018-01-07 02:00:00,11820.0
-2018-01-07 03:00:00,11560.0
-2018-01-07 04:00:00,11310.0
-2018-01-07 05:00:00,11230.0
-2018-01-07 06:00:00,11187.0
-2018-01-07 07:00:00,11306.0
-2018-01-07 08:00:00,11417.0
-2018-01-07 09:00:00,11507.0
-2018-01-07 10:00:00,11727.0
-2018-01-07 11:00:00,11890.0
-2018-01-07 12:00:00,12053.0
-2018-01-07 13:00:00,12111.0
-2018-01-07 14:00:00,12066.0
-2018-01-07 15:00:00,12002.0
-2018-01-07 16:00:00,11988.0
-2018-01-07 17:00:00,11992.0
-2018-01-07 18:00:00,12483.0
-2018-01-07 19:00:00,12924.0
-2018-01-07 20:00:00,12828.0
-2018-01-07 21:00:00,12607.0
-2018-01-07 22:00:00,12361.0
-2018-01-07 23:00:00,11982.0
-2018-01-08 00:00:00,11409.0
-2018-01-06 01:00:00,12846.0
-2018-01-06 02:00:00,12423.0
-2018-01-06 03:00:00,12167.0
-2018-01-06 04:00:00,12013.0
-2018-01-06 05:00:00,11970.0
-2018-01-06 06:00:00,12032.0
-2018-01-06 07:00:00,12306.0
-2018-01-06 08:00:00,12691.0
-2018-01-06 09:00:00,12900.0
-2018-01-06 10:00:00,13008.0
-2018-01-06 11:00:00,13060.0
-2018-01-06 12:00:00,12967.0
-2018-01-06 13:00:00,12878.0
-2018-01-06 14:00:00,12630.0
-2018-01-06 15:00:00,12437.0
-2018-01-06 16:00:00,12235.0
-2018-01-06 17:00:00,12289.0
-2018-01-06 18:00:00,12814.0
-2018-01-06 19:00:00,13630.0
-2018-01-06 20:00:00,13666.0
-2018-01-06 21:00:00,13612.0
-2018-01-06 22:00:00,13461.0
-2018-01-06 23:00:00,13217.0
-2018-01-07 00:00:00,12725.0
-2018-01-05 01:00:00,12806.0
-2018-01-05 02:00:00,12388.0
-2018-01-05 03:00:00,12167.0
-2018-01-05 04:00:00,12032.0
-2018-01-05 05:00:00,12057.0
-2018-01-05 06:00:00,12243.0
-2018-01-05 07:00:00,12795.0
-2018-01-05 08:00:00,13647.0
-2018-01-05 09:00:00,14065.0
-2018-01-05 10:00:00,14152.0
-2018-01-05 11:00:00,14135.0
-2018-01-05 12:00:00,14123.0
-2018-01-05 13:00:00,13998.0
-2018-01-05 14:00:00,13844.0
-2018-01-05 15:00:00,13765.0
-2018-01-05 16:00:00,13640.0
-2018-01-05 17:00:00,13628.0
-2018-01-05 18:00:00,14143.0
-2018-01-05 19:00:00,14785.0
-2018-01-05 20:00:00,14783.0
-2018-01-05 21:00:00,14628.0
-2018-01-05 22:00:00,14418.0
-2018-01-05 23:00:00,14072.0
-2018-01-06 00:00:00,13426.0
-2018-01-04 01:00:00,12649.0
-2018-01-04 02:00:00,12250.0
-2018-01-04 03:00:00,12010.0
-2018-01-04 04:00:00,11867.0
-2018-01-04 05:00:00,11890.0
-2018-01-04 06:00:00,12099.0
-2018-01-04 07:00:00,12669.0
-2018-01-04 08:00:00,13507.0
-2018-01-04 09:00:00,13939.0
-2018-01-04 10:00:00,14054.0
-2018-01-04 11:00:00,14022.0
-2018-01-04 12:00:00,14000.0
-2018-01-04 13:00:00,13915.0
-2018-01-04 14:00:00,13794.0
-2018-01-04 15:00:00,13721.0
-2018-01-04 16:00:00,13624.0
-2018-01-04 17:00:00,13607.0
-2018-01-04 18:00:00,14149.0
-2018-01-04 19:00:00,14906.0
-2018-01-04 20:00:00,14875.0
-2018-01-04 21:00:00,14735.0
-2018-01-04 22:00:00,14518.0
-2018-01-04 23:00:00,14027.0
-2018-01-05 00:00:00,13453.0
-2018-01-03 01:00:00,12995.0
-2018-01-03 02:00:00,12494.0
-2018-01-03 03:00:00,12135.0
-2018-01-03 04:00:00,11901.0
-2018-01-03 05:00:00,11787.0
-2018-01-03 06:00:00,11923.0
-2018-01-03 07:00:00,12395.0
-2018-01-03 08:00:00,13135.0
-2018-01-03 09:00:00,13575.0
-2018-01-03 10:00:00,13753.0
-2018-01-03 11:00:00,13858.0
-2018-01-03 12:00:00,13913.0
-2018-01-03 13:00:00,13847.0
-2018-01-03 14:00:00,13802.0
-2018-01-03 15:00:00,13739.0
-2018-01-03 16:00:00,13672.0
-2018-01-03 17:00:00,13744.0
-2018-01-03 18:00:00,14294.0
-2018-01-03 19:00:00,14887.0
-2018-01-03 20:00:00,14866.0
-2018-01-03 21:00:00,14595.0
-2018-01-03 22:00:00,14314.0
-2018-01-03 23:00:00,13880.0
-2018-01-04 00:00:00,13234.0
-2018-01-02 01:00:00,12315.0
-2018-01-02 02:00:00,11981.0
-2018-01-02 03:00:00,11805.0
-2018-01-02 04:00:00,11684.0
-2018-01-02 05:00:00,11728.0
-2018-01-02 06:00:00,11991.0
-2018-01-02 07:00:00,12559.0
-2018-01-02 08:00:00,13379.0
-2018-01-02 09:00:00,13854.0
-2018-01-02 10:00:00,14040.0
-2018-01-02 11:00:00,14179.0
-2018-01-02 12:00:00,14241.0
-2018-01-02 13:00:00,14204.0
-2018-01-02 14:00:00,14138.0
-2018-01-02 15:00:00,14078.0
-2018-01-02 16:00:00,13984.0
-2018-01-02 17:00:00,14011.0
-2018-01-02 18:00:00,14614.0
-2018-01-02 19:00:00,15405.0
-2018-01-02 20:00:00,15408.0
-2018-01-02 21:00:00,15246.0
-2018-01-02 22:00:00,14933.0
-2018-01-02 23:00:00,14437.0
-2018-01-03 00:00:00,13704.0
-2018-01-01 01:00:00,12263.0
-2018-01-01 02:00:00,11982.0
-2018-01-01 03:00:00,11747.0
-2018-01-01 04:00:00,11581.0
-2018-01-01 05:00:00,11565.0
-2018-01-01 06:00:00,11585.0
-2018-01-01 07:00:00,11773.0
-2018-01-01 08:00:00,11949.0
-2018-01-01 09:00:00,11940.0
-2018-01-01 10:00:00,11891.0
-2018-01-01 11:00:00,11979.0
-2018-01-01 12:00:00,12096.0
-2018-01-01 13:00:00,12155.0
-2018-01-01 14:00:00,12131.0
-2018-01-01 15:00:00,12064.0
-2018-01-01 16:00:00,12053.0
-2018-01-01 17:00:00,12183.0
-2018-01-01 18:00:00,12926.0
-2018-01-01 19:00:00,13809.0
-2018-01-01 20:00:00,13858.0
-2018-01-01 21:00:00,13758.0
-2018-01-01 22:00:00,13627.0
-2018-01-01 23:00:00,13336.0
-2018-01-02 00:00:00,12816.0
diff --git a/docker/images/pinot-thirdeye/config/pinot-quickstart/data/pageviews.csv b/docker/images/pinot-thirdeye/config/pinot-quickstart/data/pageviews.csv
deleted file mode 100644
index ccba33d4efe8..000000000000
--- a/docker/images/pinot-thirdeye/config/pinot-quickstart/data/pageviews.csv
+++ /dev/null
@@ -1,67 +0,0 @@
-timestamp,country,device,pageviews
-2011-01-01,us,android,1985
-2011-01-01,us,ios,985
-2011-01-01,in,android,2000
-2011-01-01,in,ios,909
-2011-01-01,cn,android,1983
-2011-01-01,cn,ios,1200
-2011-01-02,us,android,1785
-2011-01-02,us,ios,1085
-2011-01-02,in,android,2100
-2011-01-02,in,ios,919
-2011-01-02,cn,android,1883
-2011-01-02,cn,ios,1100
-2011-01-03,us,android,1885
-2011-01-03,us,ios,985
-2011-01-03,in,android,1990
-2011-01-03,in,ios,920
-2011-01-03,cn,android,1893
-2011-01-03,cn,ios,1200
-2011-01-04,us,android,1985
-2011-01-04,us,ios,885
-2011-01-04,in,android,1890
-2011-01-04,in,ios,820
-2011-01-04,cn,android,1993
-2011-01-04,cn,ios,1280
-2011-01-05,us,android,1890
-2011-01-05,us,ios,905
-2011-01-05,in,android,1890
-2011-01-05,in,ios,870
-2011-01-05,cn,android,1693
-2011-01-05,cn,ios,900
-2011-01-06,us,android,1690
-2011-01-06,us,ios,995
-2011-01-06,in,android,1790
-2011-01-06,in,ios,890
-2011-01-06,cn,android,1613
-2011-01-06,cn,ios,880
-2011-01-07,us,android,1785
-2011-01-07,us,ios,1085
-2011-01-07,in,android,2100
-2011-01-07,in,ios,919
-2011-01-07,cn,android,1883
-2011-01-07,cn,ios,1100
-2011-01-08,us,android,1995
-2011-01-08,us,ios,1085
-2011-01-08,in,android,950
-2011-01-08,in,ios,999
-2011-01-08,cn,android,1183
-2011-01-08,cn,ios,800
-2011-01-09,us,android,1990
-2011-01-09,us,ios,995
-2011-01-09,in,android,1790
-2011-01-09,in,ios,890
-2011-01-09,cn,android,1613
-2011-01-09,cn,ios,980
-2011-01-10,us,android,1690
-2011-01-10,us,ios,1095
-2011-01-10,in,android,1590
-2011-01-10,in,ios,790
-2011-01-10,cn,android,1713
-2011-01-10,cn,ios,999
-2011-01-11,us,android,1590
-2011-01-11,us,ios,1195
-2011-01-11,in,android,1890
-2011-01-11,in,ios,990
-2011-01-11,cn,android,1513
-2011-01-11,cn,ios,1300
\ No newline at end of file
diff --git a/docker/images/pinot-thirdeye/config/pinot-quickstart/detector-config/anomaly-functions/alertFilter.properties b/docker/images/pinot-thirdeye/config/pinot-quickstart/detector-config/anomaly-functions/alertFilter.properties
deleted file mode 100644
index e69de29bb2d1..000000000000
diff --git a/docker/images/pinot-thirdeye/config/pinot-quickstart/detector-config/anomaly-functions/alertFilterAutotune.properties b/docker/images/pinot-thirdeye/config/pinot-quickstart/detector-config/anomaly-functions/alertFilterAutotune.properties
deleted file mode 100644
index e69de29bb2d1..000000000000
diff --git a/docker/images/pinot-thirdeye/config/pinot-quickstart/detector-config/anomaly-functions/anomalyClassifier.properties b/docker/images/pinot-thirdeye/config/pinot-quickstart/detector-config/anomaly-functions/anomalyClassifier.properties
deleted file mode 100644
index e69de29bb2d1..000000000000
diff --git a/docker/images/pinot-thirdeye/config/pinot-quickstart/detector-config/anomaly-functions/functions.properties b/docker/images/pinot-thirdeye/config/pinot-quickstart/detector-config/anomaly-functions/functions.properties
deleted file mode 100644
index e69de29bb2d1..000000000000
diff --git a/docker/images/pinot-thirdeye/config/pinot-quickstart/detector.yml b/docker/images/pinot-thirdeye/config/pinot-quickstart/detector.yml
deleted file mode 100644
index 1ad3312dbf3d..000000000000
--- a/docker/images/pinot-thirdeye/config/pinot-quickstart/detector.yml
+++ /dev/null
@@ -1,127 +0,0 @@
-logging:
- type: external
-server:
- requestLog:
- type: external
- type: default
- rootPath: '/api/*'
- applicationContextPath: /
- adminContextPath: /admin
- applicationConnectors:
- - type: http
- port: 1867
- adminConnectors:
- - type: http
- port: 1868
-alert: false
-autoload: true
-classifier: false
-holidayEventsLoader: false
-mockEventsLoader: true
-monitor: true
-pinotProxy: false
-scheduler: true
-worker: true
-detectionPipeline: true
-detectionAlert: true
-dashboardHost: "http://localhost:1426"
-id: 0
-alerterConfiguration:
- smtpConfiguration:
- smtpHost: "localhost"
- smtpPort: 25
-# jiraConfiguration:
-# jiraUser:
-# jiraPassword:
-# jiraUrl:
-# jiraDefaultProject:
-# jiraIssueTypeId: 19
-failureFromAddress: "thirdeye@localhost"
-failureToAddress: "thirdeye@localhost"
-phantomJsPath: "/usr/local/bin/jstf"
-swagger:
- resourcePackage: "org.apache.pinot.thirdeye.dashboard.resources,org.apache.pinot.thirdeye.dashboard.resources.v2,org.apache.pinot.thirdeye.anomaly.onboard"
-holidayEventsLoaderConfiguration:
- calendars:
- - "en.australian#holiday@group.v.calendar.google.com"
- - "en.austrian#holiday@group.v.calendar.google.com"
- - "en.brazilian#holiday@group.v.calendar.google.com"
- - "en.canadian#holiday@group.v.calendar.google.com"
- - "en.china#holiday@group.v.calendar.google.com"
- - "en.christian#holiday@group.v.calendar.google.com"
- - "en.danish#holiday@group.v.calendar.google.com"
- - "en.dutch#holiday@group.v.calendar.google.com"
- - "en.finnish#holiday@group.v.calendar.google.com"
- - "en.french#holiday@group.v.calendar.google.com"
- - "en.german#holiday@group.v.calendar.google.com"
- - "en.greek#holiday@group.v.calendar.google.com"
- - "en.hong_kong#holiday@group.v.calendar.google.com"
- - "en.indian#holiday@group.v.calendar.google.com"
- - "en.indonesian#holiday@group.v.calendar.google.com"
- - "en.irish#holiday@group.v.calendar.google.com"
- - "en.islamic#holiday@group.v.calendar.google.com"
- - "en.italian#holiday@group.v.calendar.google.com"
- - "en.japanese#holiday@group.v.calendar.google.com"
- - "en.jewish#holiday@group.v.calendar.google.com"
- - "en.malaysia#holiday@group.v.calendar.google.com"
- - "en.mexican#holiday@group.v.calendar.google.com"
- - "en.new_zealand#holiday@group.v.calendar.google.com"
- - "en.norwegian#holiday@group.v.calendar.google.com"
- - "en.philippines#holiday@group.v.calendar.google.com"
- - "en.polish#holiday@group.v.calendar.google.com"
- - "en.portuguese#holiday@group.v.calendar.google.com"
- - "en.russian#holiday@group.v.calendar.google.com"
- - "en.singapore#holiday@group.v.calendar.google.com"
- - "en.sa#holiday@group.v.calendar.google.com"
- - "en.south_korea#holiday@group.v.calendar.google.com"
- - "en.spain#holiday@group.v.calendar.google.com"
- - "en.swedish#holiday@group.v.calendar.google.com"
- - "en.taiwan#holiday@group.v.calendar.google.com"
- - "en.thai#holiday@group.v.calendar.google.com"
- - "en.uk#holiday@group.v.calendar.google.com"
- - "en.usa#holiday@group.v.calendar.google.com"
- - "en.vietnamese#holiday@group.v.calendar.google.com"
- holidayLoadRange: 2592000000
- runFrequency: 7
-mockEventsLoaderConfiguration:
- generators:
- - type: HOLIDAY
- arrivalType: exponential
- arrivalMean: 86400000
- durationType: fixed
- durationMean: 86400000
- seed: 0
- namePrefixes: [First, Second, Third, Last, Funky, Happy, Sad, Glorious, Jolly, Unity, Pinot's]
- nameSuffixes: [day, day, days, celebration, rememberance, occurrence, moment]
- - type: INFORMED
- arrivalType: exponential
- arrivalMean: 43200000
- durationType: exponential
- durationMean: 3600000
- seed: 1
- namePrefixes: [Login, Web, Search, Catalog, Integration, Network, Backup, Ingress, Proxy, Failure, Pinot, ThirdEye]
- nameSuffixes: [backend, frontend, v1.1, v1.2, v1.3, v2.0, v3, v4, v5, storage, topic, container, database]
- - type: CM
- arrivalType: exponential
- arrivalMean: 21600000
- durationType: fixed
- durationMean: 1800000
- seed: 2
- namePrefixes: [Database, Web, Search, Catalog, Integration, Network, Backup, Ingress, Proxy, Failure, Pinot, ThirdEye]
- - type: CUSTOM
- arrivalType: exponential
- arrivalMean: 432000000
- durationType: exponential
- durationMean: 86400000
- seed: 3
- namePrefixes: [Marketing, Onboarding, Vaction, Outreach, InDay]
- nameSuffixes: [integration, campaign, meeting]
- - type: LIX
- arrivalType: exponential
- arrivalMean: 259200000
- durationType: exponential
- durationMean: 604800000
- seed: 4
- namePrefixes: [System, Model, Campaign, Welcome, Pinot, ThirdEye]
- nameSuffixes: [tuning, bugfix, rollout, test]
-
diff --git a/docker/images/pinot-thirdeye/config/pinot-quickstart/persistence.yml b/docker/images/pinot-thirdeye/config/pinot-quickstart/persistence.yml
deleted file mode 100644
index 991d18dcf07e..000000000000
--- a/docker/images/pinot-thirdeye/config/pinot-quickstart/persistence.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-databaseConfiguration:
- url: jdbc:h2:tcp://localhost/h2db
- user: sa
- password: sa
- driver: org.h2.Driver
diff --git a/docker/images/pinot-thirdeye/config/pinot-quickstart/rca.yml b/docker/images/pinot-thirdeye/config/pinot-quickstart/rca.yml
deleted file mode 100644
index aecfd76a85fe..000000000000
--- a/docker/images/pinot-thirdeye/config/pinot-quickstart/rca.yml
+++ /dev/null
@@ -1,98 +0,0 @@
-frameworks:
- identity:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.NullPipeline
-
- metricRelated:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.MetricMappingPipeline
-
- metricAnalysis:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.MetricAnalysisPipeline
-
- metricBreakdown:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.MetricBreakdownPipeline
-
- metricComponentAnalysis:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.MetricComponentAnalysisPipeline
- properties:
- excludeDimensions: ["environment", "continent"]
- parallelism: 5
- k: 5
-
- eventExperiment:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.ThirdEyeEventsPipeline
- properties:
- strategy: COMPOUND
- k: 500
- eventType: LIX
-
- eventHoliday:
- - outputName: METRIC_RELATED
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.MetricAnalysisPipeline
-
- - outputName: OUTPUT
- inputNames: [INPUT, METRIC_RELATED]
- className: org.apache.pinot.thirdeye.rootcause.impl.ThirdEyeEventsPipeline
- properties:
- strategy: COMPOUND
- k: 500
- eventType: HOLIDAY
-
- eventCustom:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.ThirdEyeEventsPipeline
- properties:
- strategy: COMPOUND
- k: 500
- eventType: CUSTOM
-
- eventAnomaly:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.AnomalyEventsPipeline
- properties:
- strategyClass: org.apache.pinot.thirdeye.rootcause.impl.AnomalyEventsPipeline$TimeRangeScoreStrategy
- strategyProperties:
- type: HYPERBOLA
- k: 500
-
- eventIssue:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.EmptyPipeline
-
- eventChange:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.ThirdEyeEventsPipeline
- properties:
- strategy: COMPOUND
- k: 500
- eventType: CM
-
- eventDeployment:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.ThirdEyeEventsPipeline
- properties:
- strategy: COMPOUND
- k: 500
- eventType: INFORMED
-
- eventAC:
- - outputName: OUTPUT
- inputNames: [INPUT]
- className: org.apache.pinot.thirdeye.rootcause.impl.EmptyPipeline
diff --git a/docker/images/pinot-thirdeye/docker-build-and-push.sh b/docker/images/pinot-thirdeye/docker-build-and-push.sh
deleted file mode 100755
index 6b3895245faf..000000000000
--- a/docker/images/pinot-thirdeye/docker-build-and-push.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-
-
-sh docker-build.sh $@
-if [[ "$#" -gt 0 ]]
-then
- DOCKER_TAG=$1
-else
- DOCKER_TAG="apachepinot/thirdeye:latest"
-fi
-echo "Trying to push docker image to ${DOCKER_TAG}"
-docker push ${DOCKER_TAG}
diff --git a/docker/images/pinot-thirdeye/docker-build.sh b/docker/images/pinot-thirdeye/docker-build.sh
deleted file mode 100755
index 6e94608da5ca..000000000000
--- a/docker/images/pinot-thirdeye/docker-build.sh
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/bin/bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-
-
-if [[ "$#" -gt 0 ]]
-then
- DOCKER_TAG=$1
-else
- DOCKER_TAG="thirdeye:latest"
- echo "Not specified a Docker Tag, using default tag: ${DOCKER_TAG}."
-fi
-
-if [[ "$#" -gt 1 ]]
-then
- PINOT_BRANCH=$2
-else
- PINOT_BRANCH=master
- echo "Not specified a Pinot branch to build, using default branch: ${PINOT_BRANCH}."
-fi
-
-if [[ "$#" -gt 2 ]]
-then
- PINOT_GIT_URL=$3
-else
- PINOT_GIT_URL="https://github.com/apache/pinot.git"
-fi
-
-echo "Trying to build Thirdeye docker image from Git URL: [ ${PINOT_GIT_URL} ] on branch: [ ${PINOT_BRANCH} ] and tag it as: [ ${DOCKER_TAG} ]."
-
-docker build -t ${DOCKER_TAG} --build-arg PINOT_BRANCH=${PINOT_BRANCH} --build-arg PINOT_GIT_URL=${PINOT_GIT_URL} -f Dockerfile .
diff --git a/docker/images/pinot-thirdeye/docker-push.sh b/docker/images/pinot-thirdeye/docker-push.sh
deleted file mode 100755
index a6baa9aca5b7..000000000000
--- a/docker/images/pinot-thirdeye/docker-push.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-
-
-if [[ "$#" -gt 0 ]]
-then
- DOCKER_TAG=$1
-else
- DOCKER_TAG="apachepinot/thirdeye:latest"
-fi
-echo "Trying to push docker image to ${DOCKER_TAG}"
-docker push ${DOCKER_TAG}
diff --git a/docker/images/pinot/Dockerfile b/docker/images/pinot/Dockerfile
index 499060ed7c7d..3378b6f6454e 100644
--- a/docker/images/pinot/Dockerfile
+++ b/docker/images/pinot/Dockerfile
@@ -16,16 +16,20 @@
# specific language governing permissions and limitations
# under the License.
#
-ARG PINOT_BASE_IMAGE_TAG=openjdk11
+ARG PINOT_BASE_IMAGE_TAG=11-amazoncorretto
FROM apachepinot/pinot-base-build:${PINOT_BASE_IMAGE_TAG} AS pinot_build_env
LABEL MAINTAINER=dev@pinot.apache.org
ARG PINOT_BRANCH=master
-ARG KAFKA_VERSION=2.0
ARG JDK_VERSION=11
ARG PINOT_GIT_URL="https://github.com/apache/pinot.git"
-RUN echo "Trying to build Pinot from [ ${PINOT_GIT_URL} ] on branch [ ${PINOT_BRANCH} ] with Kafka version [ ${KAFKA_VERSION} ]"
+ARG CI=true
+
+RUN echo "Build Pinot based on image: apachepinot/pinot-base-build:${PINOT_BASE_IMAGE_TAG}"
+RUN echo "Current build system CPU arch is [ $(uname -m) ]"
+
+RUN echo "Trying to build Pinot from [ ${PINOT_GIT_URL} ] on branch [ ${PINOT_BRANCH} ] and CI [ ${CI} ]"
ENV PINOT_HOME=/opt/pinot
ENV PINOT_BUILD_DIR=/opt/pinot-build
ENV MAVEN_HOME /usr/share/maven
@@ -35,6 +39,7 @@ RUN git clone ${PINOT_GIT_URL} ${PINOT_BUILD_DIR} && \
cd ${PINOT_BUILD_DIR} && \
git checkout ${PINOT_BRANCH} && \
mvn install package -DskipTests -Pbin-dist -Pbuild-shaded-jar -Djdk.version=${JDK_VERSION} -T1C && \
+ rm -rf /root/.m2 && \
mkdir -p ${PINOT_HOME}/configs && \
mkdir -p ${PINOT_HOME}/data && \
cp -r build/* ${PINOT_HOME}/. && \
@@ -54,9 +59,8 @@ COPY bin ${PINOT_HOME}/bin
COPY etc ${PINOT_HOME}/etc
COPY examples ${PINOT_HOME}/examples
-RUN wget -O ${PINOT_HOME}/etc/jmx_prometheus_javaagent/jmx_prometheus_javaagent-0.12.0.jar https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent/0.12.0/jmx_prometheus_javaagent-0.12.0.jar
-RUN wget -O ${PINOT_HOME}/etc/jmx_prometheus_javaagent/jmx_prometheus_javaagent-0.16.1.jar https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent/0.16.1/jmx_prometheus_javaagent-0.16.1.jar && \
- ln -s ${PINOT_HOME}/etc/jmx_prometheus_javaagent/jmx_prometheus_javaagent-0.16.1.jar ${PINOT_HOME}/etc/jmx_prometheus_javaagent/jmx_prometheus_javaagent.jar
+RUN wget -O ${PINOT_HOME}/etc/jmx_prometheus_javaagent/jmx_prometheus_javaagent-0.18.0.jar https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent/0.18.0/jmx_prometheus_javaagent-0.18.0.jar && \
+ ln -s ${PINOT_HOME}/etc/jmx_prometheus_javaagent/jmx_prometheus_javaagent-0.18.0.jar ${PINOT_HOME}/etc/jmx_prometheus_javaagent/jmx_prometheus_javaagent.jar
# expose ports for controller/broker/server/admin
EXPOSE 9000 8099 8098 8097 8096
diff --git a/docker/images/pinot/Dockerfile.build b/docker/images/pinot/Dockerfile.build
new file mode 100644
index 000000000000..9da9ebbf6fa2
--- /dev/null
+++ b/docker/images/pinot/Dockerfile.build
@@ -0,0 +1,59 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+ARG PINOT_BASE_IMAGE_TAG=11-amazoncorretto
+FROM apachepinot/pinot-base-build:${PINOT_BASE_IMAGE_TAG} AS pinot_build_env
+
+LABEL MAINTAINER=dev@pinot.apache.org
+
+ARG PINOT_BRANCH=master
+ARG JDK_VERSION=11
+ARG PINOT_GIT_URL="https://github.com/apache/pinot.git"
+ARG CI=true
+
+RUN echo "Build Pinot based on image: apachepinot/pinot-base-build:${PINOT_BASE_IMAGE_TAG}"
+RUN echo "Current build system CPU arch is [ $(uname -m) ]"
+
+RUN echo "Trying to build Pinot from [ ${PINOT_GIT_URL} ] on branch [ ${PINOT_BRANCH} ] and CI [ ${CI} ]"
+ENV PINOT_HOME=/opt/pinot
+ENV PINOT_BUILD_DIR=/opt/pinot-build
+ENV MAVEN_HOME /usr/share/maven
+ENV MAVEN_CONFIG /opt/.m2
+
+RUN git clone ${PINOT_GIT_URL} ${PINOT_BUILD_DIR} && \
+ cd ${PINOT_BUILD_DIR} && \
+ git checkout ${PINOT_BRANCH} && \
+ mvn install package -DskipTests -Pbin-dist -Pbuild-shaded-jar -Djdk.version=${JDK_VERSION} -T1C --batch-mode -pl \!:pinot-connectors,\!:pinot-spark-common,\!:pinot-spark-common,\!:pinot-spark-2-connector,\!:pinot-spark-3-connector,\!:pinot-flink-connector,\!:pinot-compatibility-verifier,\!:pinot-perf,\!:pinot-integration-tests,\!:pinot-integration-test-base && \
+ rm -rf /root/.m2 && \
+ mkdir -p ${PINOT_HOME}/configs && \
+ mkdir -p ${PINOT_HOME}/data && \
+ cp -r build/* ${PINOT_HOME}/. && \
+ chmod +x ${PINOT_HOME}/bin/*.sh
+
+ENV JAVA_OPTS="-Xms4G -Xmx4G -Dpinot.admin.system.exit=false"
+
+VOLUME ["${PINOT_HOME}/configs", "${PINOT_HOME}/data"]
+
+# expose ports for controller/broker/server/admin
+EXPOSE 9000 8099 8098 8097 8096
+
+WORKDIR ${PINOT_HOME}
+
+ENTRYPOINT ["./bin/pinot-admin.sh"]
+
+CMD ["-help"]
diff --git a/docker/images/pinot/Dockerfile.package b/docker/images/pinot/Dockerfile.package
new file mode 100644
index 000000000000..6e10fdc161ac
--- /dev/null
+++ b/docker/images/pinot/Dockerfile.package
@@ -0,0 +1,45 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+ARG PINOT_BUILD_IMAGE_TAG=11-amazoncorretto
+ARG PINOT_RUNTIME_IMAGE_TAG=${PINOT_BUILD_IMAGE_TAG}
+FROM pinot-build:${PINOT_BUILD_IMAGE_TAG} AS pinot_build_dist
+FROM apachepinot/pinot-base-runtime:${PINOT_RUNTIME_IMAGE_TAG}
+LABEL MAINTAINER=dev@pinot.apache.org
+
+ENV PINOT_HOME=/opt/pinot
+ENV JAVA_OPTS="-Xms4G -Xmx4G -Dpinot.admin.system.exit=false"
+
+VOLUME ["${PINOT_HOME}/configs", "${PINOT_HOME}/data"]
+
+COPY --from=pinot_build_dist ${PINOT_HOME} ${PINOT_HOME}
+COPY bin ${PINOT_HOME}/bin
+COPY etc ${PINOT_HOME}/etc
+COPY examples ${PINOT_HOME}/examples
+
+RUN wget -O ${PINOT_HOME}/etc/jmx_prometheus_javaagent/jmx_prometheus_javaagent-0.18.0.jar https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent/0.18.0/jmx_prometheus_javaagent-0.18.0.jar && \
+ ln -s ${PINOT_HOME}/etc/jmx_prometheus_javaagent/jmx_prometheus_javaagent-0.18.0.jar ${PINOT_HOME}/etc/jmx_prometheus_javaagent/jmx_prometheus_javaagent.jar
+
+# expose ports for controller/broker/server/admin
+EXPOSE 9000 8099 8098 8097 8096
+
+WORKDIR ${PINOT_HOME}
+
+ENTRYPOINT ["./bin/pinot-admin.sh"]
+
+CMD ["-help"]
diff --git a/docker/images/pinot/etc/conf/pinot-minion-log4j2.xml b/docker/images/pinot/etc/conf/pinot-minion-log4j2.xml
new file mode 100644
index 000000000000..6907f5e9f9d9
--- /dev/null
+++ b/docker/images/pinot/etc/conf/pinot-minion-log4j2.xml
@@ -0,0 +1,80 @@
+
+
+
+
+ logs/pinotMinion
+
+
+
+
+ %d{yyyy/MM/dd HH:mm:ss.SSS} %p [%c{1}] [%t] %m%n
+
+
+
+
+ %d{yyyy/MM/dd HH:mm:ss.SSS} %p [%c{1}] [%t] %m%n
+
+
+
+
+
+
+
+
+
+
+ %d{yyyy/MM/dd HH:mm:ss.SSS} %p [%c{1}] [%t] %m%n
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docker/images/pinot/etc/jmx_prometheus_javaagent/README.md b/docker/images/pinot/etc/jmx_prometheus_javaagent/README.md
index bcb6b348019c..e1d1f059e11e 100644
--- a/docker/images/pinot/etc/jmx_prometheus_javaagent/README.md
+++ b/docker/images/pinot/etc/jmx_prometheus_javaagent/README.md
@@ -6,17 +6,27 @@ Prometheus is not a full-fledged dashboarding solution and needs to be hooked up
#### How do Pinot metrics end up in Prometheus?
-Currently, Pinot metrics are exposed as JMX mbeans through the PinotJmxReporter. These JMX mbeans are consumed by Prometheus using the [Prometheus JMX Exporter](https://github.com/prometheus/jmx_exporter). A fairly comprehensive Prometheus JMX Exporter config can be found under `docker/images/pinot/etc/jmx_prometheus_javaagent/configs/pinot.yml`.
+Currently, Pinot metrics are exposed as JMX mbeans through the PinotJmxReporter.
+These JMX mbeans are consumed by Prometheus using the [Prometheus JMX Exporter](https://github.com/prometheus/jmx_exporter).
+Fairly comprehensive Prometheus JMX Exporter config files can be found under
+[docker/images/pinot/etc/jmx_prometheus_javaagent/configs/](docker/images/pinot/etc/jmx_prometheus_javaagent/configs/).
See the [Pinot docs](https://docs.pinot.apache.org/operators/operating-pinot/monitoring) for more info.
#### How can I view and test metrics?
-First, you need to make sure the metrics are exposed though JMX. Note, that if no metric has been published (e.g. no values recorded), the metric will not show up in JMX or Prometheus server.
-With a local Pinot deployment, you can launch `jconsole`, select your local deployment and view all the metrics exposed as jmx mbeans. To see if the metrics are being consumed with the Prometheus JMX Exporter and your config file, you can set the JAVA_OPTS env variable before running Pinot locally.
+First, you need to make sure the metrics are exposed though JMX.
+Note, that if no metric has been published (e.g. no values recorded), the metric will not show up in JMX or Prometheus server.
+With a local Pinot deployment, you can launch `jconsole`, select your local deployment and view all the metrics exposed as jmx mbeans.
+Alternative, you can use [jmxterm](https://docs.cyclopsgroup.org/jmxterm) in order to read them using a CLI.
+To see if the metrics are being consumed with the Prometheus JMX Exporter and your config file,
+you can set the JAVA_OPTS env variable before running Pinot locally.
`export JAVA_OPTS="-javaagent:jmx_prometheus_javaagent.jar=8080:pinot.yml -Xms4G -Xmx4G -XX:MaxDirectMemorySize=30g -Dlog4j2.configurationFile=conf/pinot-admin-log4j2.xml -Dplugins.dir=$BASEDIR/plugins"
bin/pinot-admin.sh ....
`
+Remember that it is recommended to use service specific prometheus configurations (like `broker.yml`, `server.yml`, etc)
+in production instead of `pinot.xml`.
+
This will expose a port at 8080 to dump metrics as Prometheus format for Prometheus scraper to fetch.
diff --git a/docker/images/pinot/etc/jmx_prometheus_javaagent/configs/broker.yml b/docker/images/pinot/etc/jmx_prometheus_javaagent/configs/broker.yml
index 450de902c694..3e74ae244ebc 100644
--- a/docker/images/pinot/etc/jmx_prometheus_javaagent/configs/broker.yml
+++ b/docker/images/pinot/etc/jmx_prometheus_javaagent/configs/broker.yml
@@ -1,151 +1,241 @@
rules:
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_authorization_$2"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_authorization_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_documentsScanned_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_documentsScanned_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_entriesScannedInFilter_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_entriesScannedInFilter_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_entriesScannedPostFilter_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_entriesScannedPostFilter_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_freshnessLagMs_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_freshnessLagMs_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_queries_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_queries_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_queryExecution_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_queryExecution_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_queryRouting_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_queryRouting_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_reduce_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_reduce_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_requestCompilation_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_requestCompilation_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_scatterGather_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_requestSize_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_totalServerResponseSize_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_scatterGather_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_groupBySize_$3"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_totalServerResponseSize_$4"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_noServingHostForSegment_$3"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_groupBySize_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_noServingHostForSegment_$5"
+ cache: true
+ labels:
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_broker_healthcheck_$1_$2"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_broker_helix_$1_$2"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_broker_helix_zookeeper_$1_$2"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_broker_nettyConnection_$1_$2"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_broker_unhealthyServers_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_broker_clusterChangeCheck_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_broker_proactiveClusterChangeCheck_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_broker_exceptions_$1_$2"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_broker_routingTableUpdateTime_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_brokerResponsesWithPartialServersResponded_$2"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_adaptiveServerSelectorType_$1"
+ cache: true
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_adaptiveServerSelectorType_$1_$2"
+ cache: true
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_brokerResponsesWithPartialServersResponded_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_noServerFoundExceptions_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_brokerResponsesWithTimeouts_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_brokerResponsesWithProcessingExceptions_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_noServerFoundExceptions_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_brokerResponsesWithNumGroupsLimitReached_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_brokerResponsesWithProcessingExceptions_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_queryQuotaExceeded_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_brokerResponsesWithNumGroupsLimitReached_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_queryTotalTimeMs_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_queryQuotaExceeded_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_serverMissingForRouting_$3"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_queryTotalTimeMs_$4"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_deserialization_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_serverMissingForRouting_$5"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_requestConnectionWait_$2"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_deserialization_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_broker_version"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_broker_requestConnectionWait_$4"
cache: true
labels:
- version: "$1"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_version"
+ cache: true
+ labels:
+ version: "$2"
+
+ ## Metrics that fit the catch-all patterns above should not be added to this file.
+ ## In case a metric does not fit the catch-all patterns, add them before this comment
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_$2_$8"
+ cache: true
+ labels:
+ database: "$4"
+ table: "$3$5"
+ tableType: "$6"
+ partition: "$7"
+ # This is a catch-all pattern for pinot table metrics with offline/realtime suffix without kafka topic
+ # Patterns after this line may be skipped.
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_$6_$7"
+ cache: true
+ labels:
+ database: "$3"
+ table: "$2$4"
+ tableType: "$5"
+ #when there is no partition in the metric
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_$2_$7"
+ cache: true
+ labels:
+ database: "$4"
+ table: "$3$5"
+ tableType: "$6"
+ #This is a catch-all pattern for pinot table metrics with offline/realtime suffix that also contain kafka topic
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_$2_$9"
+ cache: true
+ labels:
+ database: "$4"
+ table: "$3$5"
+ tableType: "$6"
+ topic: "$7"
+ partition: "$8"
+ # This is a catch-all pattern for pinot table metrics. Patterns after this line may be skipped.
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_$5_$6"
+ cache: true
+ labels:
+ database: "$3"
+ table: "$2$4"
+ # This is a catch-all pattern for pinot controller metrics not related to tables. Patterns after this line may be skipped.
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_$2_$3"
+ cache: true
diff --git a/docker/images/pinot/etc/jmx_prometheus_javaagent/configs/controller.yml b/docker/images/pinot/etc/jmx_prometheus_javaagent/configs/controller.yml
index d258161b4213..81bb7b0e5b84 100644
--- a/docker/images/pinot/etc/jmx_prometheus_javaagent/configs/controller.yml
+++ b/docker/images/pinot/etc/jmx_prometheus_javaagent/configs/controller.yml
@@ -1,188 +1,291 @@
rules:
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_$1_$2"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_helix_$1_$2"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_helix_ZookeeperReconnects_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_idealstateZnodeSize_$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_idealstateZnodeSize_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_idealstateZnodeByteSize_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_idealstateZnodeByteSize_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_replicationFromConfig_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_replicationFromConfig_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_numberOfReplicas_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_numberOfReplicas_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_percentOfReplicas_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_percentOfReplicas_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_percentSegmentsAvailable_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_percentSegmentsAvailable_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_segmentCount_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_segmentCount_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_segmentsInErrorState_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_segmentsInErrorState_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_dataDir_$1_$2"
+ cache: true
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_numberSegmentUploadTimeoutExceeded_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_numberTimesScheduleTasksCalled_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_periodicTaskNumTablesProcessed_$1_$2"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_pinotControllerLeader_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_partitionLeader_$1_$2"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_realtimeTableCount_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_offlineTableCount_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_validateion_$2_$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_tierBackendTableCount_$1_$2"
+ cache: true
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_validateion_$4_$5"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_cronSchedulerJobScheduled_$3"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_cronSchedulerJobScheduled_$5"
cache: true
labels:
- table: "$1"
- taskType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_cronSchedulerTriggered_$3"
+ database: "$2"
+ table: "$1$3"
+ taskType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_cronSchedulerJobTriggered_$5"
cache: true
labels:
- table: "$1"
- taskType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_cronSchedulerSkipped_$3"
+ database: "$2"
+ table: "$1$3"
+ taskType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_cronSchedulerJobSkipped_$5"
cache: true
labels:
- table: "$1"
- taskType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_cronSchedulerJobExecutionTimeMs_$3"
+ database: "$2"
+ table: "$1$3"
+ taskType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_cronSchedulerJobExecutionTimeMs_$5"
cache: true
labels:
- table: "$1"
- taskType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+ database: "$2"
+ table: "$1$3"
+ taskType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_tableRebalanceExecutionTimeMs_$5"
+ cache: true
+ labels:
+ database: "$2"
+ table: "$1$3"
+ result: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_taskStatus_$3"
cache: true
labels:
taskType: "$1"
status: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_timeMsSinceLastMinionTaskMetadataUpdate_$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_timeMsSinceLastMinionTaskMetadataUpdate_$6"
+ cache: true
+ labels:
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+ taskType: "$5"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_$1_$7"
cache: true
labels:
- table: "$1"
- tableType: "$2"
- taskType: "$3"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_timeMsSinceLastSuccessfulMinionTaskGeneration_$4"
+ database: "$3"
+ table: "$2$4"
+ tableType: "$5"
+ taskType: "$6"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_$1_$3"
+ cache: true
+ labels:
+ taskType: "$2"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_timeMsSinceLastSuccessfulMinionTaskGeneration_$6"
cache: true
labels:
- table: "$1"
- tableType: "$2"
- taskType: "$3"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_lastMinionTaskGenerationEncountersError_$4"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+ taskType: "$5"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_lastMinionTaskGenerationEncountersError_$6"
cache: true
labels:
- table: "$1"
- tableType: "$2"
- taskType: "$3"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+ taskType: "$5"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_pinotLeadControllerResourceEnabled_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_offlineTableEstimatedSize_$2"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_offlineTableEstimatedSize_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_tableQuota_$3"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_tableQuota_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_periodicTaskError_$4"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_periodicTaskError_$6"
cache: true
labels:
- table: "$1"
- tableType: "$2"
- periodicTask: "$3"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_tableStorageQuotaUtilization_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+ periodicTask: "$5"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_tableStorageQuotaUtilization_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_tableStorageEstMissingSegmentPercent_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_tableStorageEstMissingSegmentPercent_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_tableTotalSizeOnServer_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_tableTotalSizeOnServer_$5"
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_tableSizePerReplicaOnServer_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_tableSizePerReplicaOnServer_$5"
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_tableCompressedSize_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_tableCompressedSize_$5"
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_version"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+# Controller periodic task metrics
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_periodicTaskRun_$1_$2"
+ cache: true
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_version"
+ cache: true
+ labels:
+ version: "$2"
+
+ ## Metrics that fit the catch-all patterns above should not be added to this file.
+ ## In case a metric does not fit the catch-all patterns, add them before this comment
+ # This is a catch-all pattern for pinot table metrics with offline/realtime suffix without kafka topic
+ # Patterns after this line may be skipped.
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_$2_$8"
+ cache: true
+ labels:
+ database: "$4"
+ table: "$3$5"
+ tableType: "$6"
+ partition: "$7"
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_$6_$7"
+ cache: true
+ labels:
+ database: "$3"
+ table: "$2$4"
+ tableType: "$5"
+ #This is a catch-all pattern for pinot table metrics with offline/realtime suffix that also contain kafka topic
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_$2_$9"
+ cache: true
+ labels:
+ database: "$4"
+ table: "$3$5"
+ tableType: "$6"
+ topic: "$7"
+ partition: "$8"
+ #when there is no partition in the metric
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_$2_$7"
cache: true
labels:
- version: "$1"
+ database: "$4"
+ table: "$3$5"
+ tableType: "$6"
+ # This is a catch-all pattern for pinot table metrics. Patterns after this line may be skipped.
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_$5_$6"
+ cache: true
+ labels:
+ database: "$3"
+ table: "$2$4"
+ # This is a catch-all pattern for pinot controller metrics not related to tables. Patterns after this line may be skipped.
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_$2_$3"
+ cache: true
diff --git a/docker/images/pinot/etc/jmx_prometheus_javaagent/configs/minion.yml b/docker/images/pinot/etc/jmx_prometheus_javaagent/configs/minion.yml
index 622da8861a53..4d21107a1b9f 100644
--- a/docker/images/pinot/etc/jmx_prometheus_javaagent/configs/minion.yml
+++ b/docker/images/pinot/etc/jmx_prometheus_javaagent/configs/minion.yml
@@ -1,27 +1,58 @@
rules:
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_minion_version"
cache: true
labels:
version: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_minion_numberOfTasks_$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_minion_numberOfTasks_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_minion_$4_$5"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_minion_$6_$7"
cache: true
labels:
- table: "$1"
- tableType: "$2"
- taskType: "$3"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+ taskType: "$5"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_minion_$1_$2"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_minion_$2_$3"
cache: true
labels:
id: "$1"
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_version"
+ cache: true
+ labels:
+ version: "$2"
+
+ ## Metrics that fit the catch-all patterns above should not be added to this file.
+ ## In case a metric does not fit the catch-all patterns, add them before this comment
+
+ # This is a catch-all pattern for pinot table metrics with offline/realtime suffix.
+ # Patterns after this line may be skipped.
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_$6_$7"
+ cache: true
+ labels:
+ database: "$3"
+ table: "$2$4"
+ tableType: "$5"
+ # This is a catch-all pattern for pinot table metrics. Patterns after this line may be skipped.
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_$5_$6"
+ cache: true
+ labels:
+ database: "$3"
+ table: "$2$4"
+ # This is a catch-all pattern for pinot controller metrics not related to tables. Patterns after this line may be skipped.
+- pattern: "\"?org\\.apache\\.pinot\\.common\\.metrics\"?<>(\\w+)"
+ name: "pinot_$1_$2_$3"
+ cache: true
diff --git a/docker/images/pinot/etc/jmx_prometheus_javaagent/configs/pinot.yml b/docker/images/pinot/etc/jmx_prometheus_javaagent/configs/pinot.yml
index af618eeb567c..b530a79b363b 100644
--- a/docker/images/pinot/etc/jmx_prometheus_javaagent/configs/pinot.yml
+++ b/docker/images/pinot/etc/jmx_prometheus_javaagent/configs/pinot.yml
@@ -1,456 +1,681 @@
+# It is recommended to use the specific service yml file (like broker.yml, controller.yml, etc)
+# instead of this file.
+# Prometheus executes rules in a linear time, so the more rules your configuration has, the more CPU will be spent by
+# Prometheus Java agent.
+
rules:
# Pinot Controller
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_$1_$2"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_helix_$1_$2"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_helix_ZookeeperReconnects_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_idealstateZnodeSize_$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_idealstateZnodeSize_$5"
+ cache: true
+ labels:
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_idealstateZnodeByteSize_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_idealstateZnodeByteSize_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_replicationFromConfig_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_numberOfReplicas_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_numberOfReplicas_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_percentOfReplicas_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_percentOfReplicas_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_percentSegmentsAvailable_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_percentSegmentsAvailable_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_segmentCount_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_segmentCount_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_segmentsInErrorState_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_segmentsInErrorState_$5"
cache: true
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_numberSegmentUploadTimeoutExceeded_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_numberTimesScheduleTasksCalled_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_periodicTaskNumTablesProcessed_$1_$2"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_pinotControllerLeader_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_partitionLeader_$1_$2"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_realtimeTableCount_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_offlineTableCount_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_validateion_$2_$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_validateion_$4_$5"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_cronSchedulerJobScheduled_$3"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_cronSchedulerJobScheduled_$5"
cache: true
labels:
- table: "$1"
- taskType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_cronSchedulerTriggered_$3"
+ database: "$2"
+ table: "$1$3"
+ taskType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_cronSchedulerJobTriggered_$5"
cache: true
labels:
- table: "$1"
- taskType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_cronSchedulerJobExecutionTimeMs_$3"
+ database: "$2"
+ table: "$1$3"
+ taskType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_cronSchedulerJobSkipped_$5"
cache: true
labels:
- table: "$1"
- taskType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+ database: "$2"
+ table: "$1$3"
+ taskType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_cronSchedulerJobExecutionTimeMs_$5"
+ cache: true
+ labels:
+ database: "$2"
+ table: "$1$3"
+ taskType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_tableRebalanceExecutionTimeMs_$5"
+ cache: true
+ labels:
+ database: "$2"
+ table: "$1$3"
+ result: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_taskStatus_$3"
cache: true
labels:
taskType: "$1"
status: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_timeMsSinceLastMinionTaskMetadataUpdate_$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_timeMsSinceLastMinionTaskMetadataUpdate_$6"
cache: true
labels:
- table: "$1"
- tableType: "$2"
- taskType: "$3"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_timeMsSinceLastSuccessfulMinionTaskGeneration_$4"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+ taskType: "$5"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_$1_$7"
cache: true
labels:
- table: "$1"
- tableType: "$2"
- taskType: "$3"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_lastMinionTaskGenerationEncountersError_$4"
+ database: "$3"
+ table: "$2$4"
+ tableType: "$5"
+ taskType: "$6"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_$1_$3"
cache: true
labels:
- table: "$1"
- tableType: "$2"
- taskType: "$3"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
+ taskType: "$2"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_timeMsSinceLastSuccessfulMinionTaskGeneration_$6"
+ cache: true
+ labels:
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+ taskType: "$5"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_lastMinionTaskGenerationEncountersError_$6"
+ cache: true
+ labels:
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+ taskType: "$5"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
name: "pinot_controller_pinotLeadControllerResourceEnabled_$1"
cache: true
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_offlineTableEstimatedSize_$2"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_offlineTableEstimatedSize_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_largestSegmentSizeOnServer_$2"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_largestSegmentSizeOnServer_$4"
cache: true
labels:
- table: "$1"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_tableTotalSizeOnServer_$3"
+ database: "$2"
+ table: "$1$3"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_tableTotalSizeOnServer_$5"
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_tableSizePerReplicaOnServer_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"<>(\\w+)"
+ name: "pinot_controller_tableSizePerReplicaOnServer_$5"
labels:
- table: "$1"
- tableType: "$2"
-- pattern: "\"org.apache.pinot.common.metrics\"<>(\\w+)"
- name: "pinot_controller_tableCompressedSize_$3"
+ database: "$2"
+ table: "$1$3"
+ tableType: "$4"
+- pattern: "\"org\\.apache\\.pinot\\.common\\.metrics\"